From e80e53cac667709db9d357e3ab7ee171b9246e05 Mon Sep 17 00:00:00 2001 From: Kevin Chiu Date: Fri, 11 Feb 2022 20:09:32 +0800 Subject: [PATCH] soc/amd/common: Scan bridge devices behind SoCs GPU Controller Scan devices behind SoCs GPU controller to expose more buses. BUG=b:204401306 BRANCH=guybrush TEST=emerge-guybrush coreboot Change-Id: Ib78e6570f101c71efaf9cc1843defcb05301cd30 Signed-off-by: Kevin Chiu Reviewed-on: https://review.coreboot.org/c/coreboot/+/61860 Tested-by: build bot (Jenkins) Reviewed-by: Raul Rangel --- src/soc/amd/common/block/graphics/graphics.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/soc/amd/common/block/graphics/graphics.c b/src/soc/amd/common/block/graphics/graphics.c index d237da5d9a..38a422c6b7 100644 --- a/src/soc/amd/common/block/graphics/graphics.c +++ b/src/soc/amd/common/block/graphics/graphics.c @@ -173,6 +173,7 @@ static const struct device_operations graphics_ops = { .set_resources = graphics_set_resources, .enable_resources = pci_dev_enable_resources, .init = graphics_dev_init, + .scan_bus = scan_static_bus, .ops_pci = &pci_dev_ops_pci, .write_acpi_tables = pci_rom_write_acpi_tables, .acpi_fill_ssdt = graphics_fill_ssdt,