From f9608cd8f4c563163875fb545fc30ff4fee5734e Mon Sep 17 00:00:00 2001 From: Felix Held Date: Thu, 3 Dec 2020 16:57:02 +0100 Subject: soc/amd/picasso: add missing GNB I/O APIC initialization Change-Id: Iddb0c20e769e6921ba5d0dd4a84ab9e494d522e1 Signed-off-by: Felix Held Reviewed-on: https://review.coreboot.org/c/coreboot/+/48269 Reviewed-by: Marshall Dawson Reviewed-by: Raul Rangel Reviewed-by: Nikolai Vyssotski Tested-by: build bot (Jenkins) --- src/soc/amd/picasso/root_complex.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/soc/amd/picasso/root_complex.c b/src/soc/amd/picasso/root_complex.c index 045f30cf4c..5166fe5ba7 100644 --- a/src/soc/amd/picasso/root_complex.c +++ b/src/soc/amd/picasso/root_complex.c @@ -1,6 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0-only */ #include +#include #include #include #include @@ -181,6 +182,11 @@ static void read_resources(struct device *dev) gnb_apic->flags = IORESOURCE_MEM | IORESOURCE_ASSIGNED | IORESOURCE_FIXED; } +static void root_complex_init(struct device *dev) +{ + setup_ioapic((u8 *)GNB_IO_APIC_ADDR, CONFIG_PICASSO_GNB_IOAPIC_ID); +} + static void dptc_call_alib(const char *buf_name, uint8_t *buffer, size_t size) { /* Name (buf_name, Buffer(size) {...} */ @@ -266,6 +272,7 @@ static struct device_operations root_complex_operations = { .read_resources = read_resources, .set_resources = noop_set_resources, .enable_resources = pci_dev_enable_resources, + .init = root_complex_init, .acpi_fill_ssdt = root_complex_fill_ssdt, }; -- cgit v1.2.3