From ffdf840dbba3223edbb275e007cf9d748f976b25 Mon Sep 17 00:00:00 2001 From: Raul E Rangel Date: Thu, 11 Feb 2021 13:14:26 -0700 Subject: [PATCH] mb/amd/majolica/mainboard: Set ACPI IRQ We now pass the ACPI SCI IRQ to the OS, so make sure the board routes it correctly. Signed-off-by: Raul E Rangel Change-Id: I1b4d5e0bfb1d9df9ac8a8c41cdf466a67f2673d6 Reviewed-on: https://review.coreboot.org/c/coreboot/+/50566 Tested-by: build bot (Jenkins) Reviewed-by: Marshall Dawson Reviewed-by: Mathew King --- src/mainboard/amd/majolica/mainboard.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mainboard/amd/majolica/mainboard.c b/src/mainboard/amd/majolica/mainboard.c index 0ba103e10d..cbb1145a69 100644 --- a/src/mainboard/amd/majolica/mainboard.c +++ b/src/mainboard/amd/majolica/mainboard.c @@ -46,7 +46,7 @@ static const struct fch_irq_routing { { PIRQ_G, PIRQ_NC, PIRQ_NC }, { PIRQ_H, PIRQ_NC, PIRQ_NC }, - { PIRQ_SCI, PIRQ_NC, PIRQ_NC }, + { PIRQ_SCI, ACPI_SCI_IRQ, ACPI_SCI_IRQ }, { PIRQ_SD, PIRQ_NC, PIRQ_NC }, { PIRQ_SDIO, PIRQ_NC, PIRQ_NC }, { PIRQ_SATA, PIRQ_NC, PIRQ_NC },