[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH RFC v2 3/6] hw/pci: Add pci_root_bus_max_bus
From: |
Wang Xingang |
Subject: |
[PATCH RFC v2 3/6] hw/pci: Add pci_root_bus_max_bus |
Date: |
Wed, 24 Mar 2021 13:16:32 +0000 |
From: Xingang Wang <wangxingang5@huawei.com>
This helps to find max bus number of a root bus.
Signed-off-by: Xingang Wang <wangxingang5@huawei.com>
Signed-off-by: Jiahui Cen <cenjiahui@huawei.com>
---
hw/pci/pci.c | 34 ++++++++++++++++++++++++++++++++++
include/hw/pci/pci.h | 1 +
2 files changed, 35 insertions(+)
diff --git a/hw/pci/pci.c b/hw/pci/pci.c
index b82f39af10..ca26ab7750 100644
--- a/hw/pci/pci.c
+++ b/hw/pci/pci.c
@@ -537,6 +537,40 @@ int pci_bus_num(PCIBus *s)
return PCI_BUS_GET_CLASS(s)->bus_num(s);
}
+int pci_root_bus_max_bus(PCIBus *bus)
+{
+ PCIHostState *host;
+ PCIDevice *dev;
+ int max_bus = 0;
+ int type, devfn;
+ uint8_t subordinate;
+
+ if (!pci_bus_is_root(bus)) {
+ return 0;
+ }
+
+ host = PCI_HOST_BRIDGE(BUS(bus)->parent);
+ max_bus = pci_bus_num(host->bus);
+
+ for (devfn = 0; devfn < ARRAY_SIZE(host->bus->devices); devfn++) {
+ dev = host->bus->devices[devfn];
+
+ if (!dev) {
+ continue;
+ }
+
+ type = dev->config[PCI_HEADER_TYPE] & ~PCI_HEADER_TYPE_MULTI_FUNCTION;
+ if (type == PCI_HEADER_TYPE_BRIDGE) {
+ subordinate = dev->config[PCI_SUBORDINATE_BUS];
+ if (subordinate > max_bus) {
+ max_bus = subordinate;
+ }
+ }
+ }
+
+ return max_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 300332bc2c..96adf0220a 100644
--- a/include/hw/pci/pci.h
+++ b/include/hw/pci/pci.h
@@ -449,6 +449,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);
+int pci_root_bus_max_bus(PCIBus *bus);
static inline int pci_dev_bus_num(const PCIDevice *dev)
{
return pci_bus_num(pci_get_bus(dev));
--
2.19.1
- [PATCH RFC v2 0/6] Introduce IOMMU Option For PCI Root Bus, Wang Xingang, 2021/03/24
- [PATCH RFC v2 1/6] hw/pci/pci_host: Add iommu property for pci host, Wang Xingang, 2021/03/24
- [PATCH RFC v2 2/6] hw/pci: Add iommu option for pci root bus, Wang Xingang, 2021/03/24
- [PATCH RFC v2 6/6] hw/i386/acpi-build: Add iommu filter in IVRS table, Wang Xingang, 2021/03/24
- [PATCH RFC v2 3/6] hw/pci: Add pci_root_bus_max_bus,
Wang Xingang <=
- [PATCH RFC v2 5/6] hw/i386/acpi-build: Add explicit scope in DMAR table, Wang Xingang, 2021/03/24
- [PATCH RFC v2 4/6] hw/arm/virt-acpi-build: Add explicit idmap info in IORT table, Wang Xingang, 2021/03/24