diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2023-01-14 00:39:08 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-01-16 15:45:14 +0000 |
commit | 8c41000862a1031782e6890b833b25704a3b378d (patch) | |
tree | 84dd74ba6c2fd5bd821ed59b41c9b759129f3798 /src/mainboard/amd/bilby | |
parent | c2ed1e9ba006610d4909e38cfeb30e5cc0f9a71f (diff) |
soc/amd/picasso/include/acpi: introduce and use ACPI_SCI_IRQ definition
The newer AMD SoCs define ACPI_SCI_IRQ in the SoC's acpi.h header file
and use this definition in the mainboard code, so port this back to
Picasso.
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Change-Id: Ib569747aa388d7953e79de747905fb52c2a05e74
Reviewed-on: https://review.coreboot.org/c/coreboot/+/71912
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Fred Reitberger <reitbergerfred@gmail.com>
Diffstat (limited to 'src/mainboard/amd/bilby')
-rw-r--r-- | src/mainboard/amd/bilby/mainboard.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mainboard/amd/bilby/mainboard.c b/src/mainboard/amd/bilby/mainboard.c index a751126ef7..5e209462ae 100644 --- a/src/mainboard/amd/bilby/mainboard.c +++ b/src/mainboard/amd/bilby/mainboard.c @@ -5,6 +5,7 @@ #include <amdblocks/amd_pci_util.h> #include <FspsUpd.h> #include <gpio.h> +#include <soc/acpi.h> #include <soc/cpu.h> #include <soc/southbridge.h> #include <soc/pci_devs.h> @@ -26,7 +27,7 @@ static const struct fch_irq_routing fch_irq_map[] = { { PIRQ_B, 10, 17 }, { PIRQ_C, 11, 18 }, { PIRQ_D, 12, 19 }, - { PIRQ_SCI, 9, 9 }, + { PIRQ_SCI, ACPI_SCI_IRQ, ACPI_SCI_IRQ }, { PIRQ_SD, PIRQ_NC, 16 }, { PIRQ_SDIO, PIRQ_NC, 16 }, { PIRQ_SATA, PIRQ_NC, 19 }, |