diff options
author | Patrick Rudolph <patrick.rudolph@9elements.com> | 2024-01-19 08:27:13 +0100 |
---|---|---|
committer | Lean Sheng Tan <sheng.tan@9elements.com> | 2024-01-22 12:07:07 +0000 |
commit | ee0a2f9473de426a21cd1b0c139b0ac50ffe02ec (patch) | |
tree | c3c0c231b6c16992b673c32eee135dbec9fba3cb /src/soc/intel/xeon_sp/chip_common.c | |
parent | d7062425d35aa76e9921fcdb9d4bb874174a4509 (diff) |
soc/intel/xeon_sp: Fix devicetree walking up
Connect the PCI domain to the bus to allow walking the devicetree
up. This is required to figure out which PCI domain a device
belongs to.
Change-Id: I8cc50cabf7ad540c52498e1ffe7f9246550ed87b
Signed-off-by: Patrick Rudolph <patrick.rudolph@9elements.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/80089
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Reviewed-by: Shuo Liu <shuo.liu@intel.com>
Diffstat (limited to 'src/soc/intel/xeon_sp/chip_common.c')
-rw-r--r-- | src/soc/intel/xeon_sp/chip_common.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/soc/intel/xeon_sp/chip_common.c b/src/soc/intel/xeon_sp/chip_common.c index c1b331bc66..0411a0326c 100644 --- a/src/soc/intel/xeon_sp/chip_common.c +++ b/src/soc/intel/xeon_sp/chip_common.c @@ -77,6 +77,7 @@ void iio_pci_domain_scan_bus(struct device *dev) } struct bus *bus = dev->link_list; + bus->dev = dev; bus->secondary = sr->BusBase; bus->subordinate = sr->BusBase; bus->max_subordinate = sr->BusLimit; |