[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 21/23] hw/i386/acpi-build: Add IVRS support to bypass iommu
|
From: |
Michael S. Tsirkin |
|
Subject: |
[PULL 21/23] hw/i386/acpi-build: Add IVRS support to bypass iommu |
|
Date: |
Tue, 13 Jul 2021 18:11:15 -0400 |
From: Xingang Wang <wangxingang5@huawei.com>
Check bypass_iommu to exclude the devices which will bypass iommu.
Signed-off-by: Xingang Wang <wangxingang5@huawei.com>
Message-Id: <1625748919-52456-9-git-send-email-wangxingang5@huawei.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.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 7efc6285ac..17836149fe 100644
--- a/hw/i386/acpi-build.c
+++ b/hw/i386/acpi-build.c
@@ -2263,7 +2263,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_bus_bypass_iommu(bus)) {
pci_for_each_device(bus, pci_bus_num(bus), insert_ivhd, ivhd_blob);
}
}
--
MST
- [PULL 09/23] vhost-user-rng: backend: Add RNG vhost-user daemon implementation, (continued)
- [PULL 09/23] vhost-user-rng: backend: Add RNG vhost-user daemon implementation, Michael S. Tsirkin, 2021/07/13
- [PULL 11/23] hw/virtio: add boilerplate for vhost-user-i2c device, Michael S. Tsirkin, 2021/07/13
- [PULL 12/23] hw/virtio: add vhost-user-i2c-pci boilerplate, Michael S. Tsirkin, 2021/07/13
- [PULL 13/23] docs: Add '-device intel-iommu' entry, Michael S. Tsirkin, 2021/07/13
- [PULL 14/23] hw/pci/pci_host: Allow PCI host to bypass iommu, Michael S. Tsirkin, 2021/07/13
- [PULL 15/23] hw/pxb: Add a bypass iommu property, Michael S. Tsirkin, 2021/07/13
- [PULL 17/23] hw/i386: Add a default_bus_bypass_iommu pc machine option, Michael S. Tsirkin, 2021/07/13
- [PULL 18/23] hw/pci: Add pci_bus_range() to get PCI bus number range, Michael S. Tsirkin, 2021/07/13
- [PULL 19/23] hw/arm/virt-acpi-build: Add IORT support to bypass SMMUv3, Michael S. Tsirkin, 2021/07/13
- [PULL 20/23] hw/i386/acpi-build: Add DMAR support to bypass iommu, Michael S. Tsirkin, 2021/07/13
- [PULL 21/23] hw/i386/acpi-build: Add IVRS support to bypass iommu,
Michael S. Tsirkin <=
- [PULL 22/23] docs: Add documentation for iommu bypass, Michael S. Tsirkin, 2021/07/13
- [PULL 23/23] vhost-vsock: SOCK_SEQPACKET feature bit support, Michael S. Tsirkin, 2021/07/13
- [PULL 06/23] bios-tables-test: Update golden binaries, Michael S. Tsirkin, 2021/07/13
- [PULL 04/23] bios-tables-test: Allow changes in DSDT ACPI tables, Michael S. Tsirkin, 2021/07/13
- [PULL 16/23] hw/arm/virt: Add default_bus_bypass_iommu machine option, Michael S. Tsirkin, 2021/07/13
- [PULL 10/23] docs: Add documentation for vhost based RNG implementation, Michael S. Tsirkin, 2021/07/13
- Re: [PULL 00/23] pc,pci,virtio: lots of new features, Peter Maydell, 2021/07/14