[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v5 5/9] hw/pci: Add pci_bus_range() to get PCI bus number range
From: |
Wang Xingang |
Subject: |
[PATCH v5 5/9] hw/pci: Add pci_bus_range() to get PCI bus number range |
Date: |
Thu, 8 Jul 2021 12:55:15 +0000 |
From: Xingang Wang <wangxingang5@huawei.com>
This helps to get the min and max bus number of a PCI bus hierarchy.
Signed-off-by: Xingang Wang <wangxingang5@huawei.com>
Reviewed-by: Eric Auger <eric.auger@redhat.com>
---
hw/pci/pci.c | 16 ++++++++++++++++
include/hw/pci/pci.h | 1 +
2 files changed, 17 insertions(+)
diff --git a/hw/pci/pci.c b/hw/pci/pci.c
index 27d588e268..23d2ae2ab2 100644
--- a/hw/pci/pci.c
+++ b/hw/pci/pci.c
@@ -537,6 +537,22 @@ int pci_bus_num(PCIBus *s)
return PCI_BUS_GET_CLASS(s)->bus_num(s);
}
+/* Returns the min and max bus numbers of a PCI bus hierarchy */
+void pci_bus_range(PCIBus *bus, int *min_bus, int *max_bus)
+{
+ int i;
+ *min_bus = *max_bus = pci_bus_num(bus);
+
+ for (i = 0; i < ARRAY_SIZE(bus->devices); ++i) {
+ PCIDevice *dev = bus->devices[i];
+
+ if (dev && PCI_DEVICE_GET_CLASS(dev)->is_bridge) {
+ *min_bus = MIN(*min_bus, dev->config[PCI_SECONDARY_BUS]);
+ *max_bus = MAX(*max_bus, dev->config[PCI_SUBORDINATE_BUS]);
+ }
+ }
+}
+
int pci_bus_numa_node(PCIBus *bus)
{
return PCI_BUS_GET_CLASS(bus)->numa_node(bus);
diff --git a/include/hw/pci/pci.h b/include/hw/pci/pci.h
index f4d51b672b..d0f4266e37 100644
--- a/include/hw/pci/pci.h
+++ b/include/hw/pci/pci.h
@@ -450,6 +450,7 @@ static inline PCIBus *pci_get_bus(const PCIDevice *dev)
return PCI_BUS(qdev_get_parent_bus(DEVICE(dev)));
}
int pci_bus_num(PCIBus *s);
+void pci_bus_range(PCIBus *bus, int *min_bus, int *max_bus);
static inline int pci_dev_bus_num(const PCIDevice *dev)
{
return pci_bus_num(pci_get_bus(dev));
--
2.19.1
- [PATCH v5 0/9] IOMMU: Add support for IOMMU Bypass Feature, Wang Xingang, 2021/07/08
- [PATCH v5 7/9] hw/i386/acpi-build: Add DMAR support to bypass iommu, Wang Xingang, 2021/07/08
- [PATCH v5 6/9] hw/arm/virt-acpi-build: Add IORT support to bypass SMMUv3, Wang Xingang, 2021/07/08
- [PATCH v5 8/9] hw/i386/acpi-build: Add IVRS support to bypass iommu, Wang Xingang, 2021/07/08
- [PATCH v5 2/9] hw/pxb: Add a bypass iommu property, Wang Xingang, 2021/07/08
- [PATCH v5 9/9] docs: Add documentation for iommu bypass, Wang Xingang, 2021/07/08
- [PATCH v5 5/9] hw/pci: Add pci_bus_range() to get PCI bus number range,
Wang Xingang <=
- [PATCH v5 1/9] hw/pci/pci_host: Allow PCI host to bypass iommu, Wang Xingang, 2021/07/08
- [PATCH v5 3/9] hw/arm/virt: Add default_bus_bypass_iommu machine option, Wang Xingang, 2021/07/08
- [PATCH v5 4/9] hw/i386: Add a default_bus_bypass_iommu pc machine option, Wang Xingang, 2021/07/08