summaryrefslogtreecommitdiff
path: root/src/soc/intel/broadwell/pch/acpi.c
diff options
context:
space:
mode:
authorAngel Pons <th3fanbus@gmail.com>2020-11-23 12:40:07 +0100
committerPatrick Georgi <pgeorgi@google.com>2021-02-10 07:27:57 +0000
commitf21e5c06cd7d731857ffb2483ce6f39ef0afa1b1 (patch)
treeb092d62bf96277ec96839856ea86a9ad343f29ea /src/soc/intel/broadwell/pch/acpi.c
parente0f058ffa8309bd902802074418b5c6e0075a8aa (diff)
soc/intel/broadwell/pch: Drop `acpi_sci_irq` function
The SCI IRQ is always set to IRQ 9 in the bootblock. To allow using common MADT code on Broadwell, hardcode it as 9 everywhere. Change-Id: I84345b7985b1996369cecc4bcb0a3668d002a922 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/46888 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'src/soc/intel/broadwell/pch/acpi.c')
-rw-r--r--src/soc/intel/broadwell/pch/acpi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/broadwell/pch/acpi.c b/src/soc/intel/broadwell/pch/acpi.c
index 48a83df7b2..d3e7fcfcd2 100644
--- a/src/soc/intel/broadwell/pch/acpi.c
+++ b/src/soc/intel/broadwell/pch/acpi.c
@@ -21,7 +21,7 @@
unsigned long acpi_fill_madt(unsigned long current)
{
- int sci = acpi_sci_irq();
+ int sci = 9;
acpi_madt_irqoverride_t *irqovr;
uint16_t flags = MP_IRQ_TRIGGER_LEVEL;