[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH RFC RESEND v2 6/6] hw/i386/acpi-build: Add iommu filter in IVRS t
From: |
Wang Xingang |
Subject: |
[PATCH RFC RESEND v2 6/6] hw/i386/acpi-build: Add iommu filter in IVRS table |
Date: |
Thu, 25 Mar 2021 07:22:45 +0000 |
From: Xingang Wang <wangxingang5@huawei.com>
When building amd IVRS table, only devices attached to root bus with
IOMMU flag should be scanned.
Signed-off-by: Xingang Wang <wangxingang5@huawei.com>
Signed-off-by: Jiahui Cen <cenjiahui@huawei.com>
---
hw/i386/acpi-build.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/hw/i386/acpi-build.c b/hw/i386/acpi-build.c
index 6936889cad..e0f38305da 100644
--- a/hw/i386/acpi-build.c
+++ b/hw/i386/acpi-build.c
@@ -2229,7 +2229,7 @@ ivrs_host_bridges(Object *obj, void *opaque)
if (object_dynamic_cast(obj, TYPE_PCI_HOST_BRIDGE)) {
PCIBus *bus = PCI_HOST_BRIDGE(obj)->bus;
- if (bus) {
+ if (bus && pci_root_bus_has_iommu(bus)) {
pci_for_each_device(bus, pci_bus_num(bus), insert_ivhd, ivhd_blob);
}
}
--
2.19.1
- [PATCH RFC RESEND v2 0/6] Introduce IOMMU Option For PCI Root Bus, Wang Xingang, 2021/03/25
- [PATCH RFC RESEND v2 2/6] hw/pci: Add iommu option for pci root bus, Wang Xingang, 2021/03/25
- [PATCH RFC RESEND v2 3/6] hw/pci: Add pci_root_bus_max_bus, Wang Xingang, 2021/03/25
- [PATCH RFC RESEND v2 1/6] hw/pci/pci_host: Add iommu property for pci host, Wang Xingang, 2021/03/25
- [PATCH RFC RESEND v2 6/6] hw/i386/acpi-build: Add iommu filter in IVRS table,
Wang Xingang <=
- [PATCH RFC RESEND v2 4/6] hw/arm/virt-acpi-build: Add explicit idmap info in IORT table, Wang Xingang, 2021/03/25
- [PATCH RFC RESEND v2 5/6] hw/i386/acpi-build: Add explicit scope in DMAR table, Wang Xingang, 2021/03/25
- Re: [PATCH RFC RESEND v2 0/6] Introduce IOMMU Option For PCI Root Bus, Wang Xingang, 2021/03/31