diff options
author | Kevin Chiu <kevin.chiu.17802@gmail.com> | 2022-02-11 20:09:32 +0800 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-02-12 16:46:07 +0000 |
commit | e80e53cac667709db9d357e3ab7ee171b9246e05 (patch) | |
tree | 11d91c3ccbe7d56cc6a7688bd1873e763b8e1e1d /src/soc/amd | |
parent | 6c5ec8e31ccbe3d9bbf201c956fc3b54703a9767 (diff) | |
download | coreboot-e80e53cac667709db9d357e3ab7ee171b9246e05.tar.gz coreboot-e80e53cac667709db9d357e3ab7ee171b9246e05.tar.bz2 coreboot-e80e53cac667709db9d357e3ab7ee171b9246e05.zip |
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 <kevin.chiu.17802@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/61860
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Raul Rangel <rrangel@chromium.org>
Diffstat (limited to 'src/soc/amd')
-rw-r--r-- | src/soc/amd/common/block/graphics/graphics.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/soc/amd/common/block/graphics/graphics.c b/src/soc/amd/common/block/graphics/graphics.c index d237da5d9a9a..38a422c6b7a6 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, |