aboutsummaryrefslogtreecommitdiff
path: root/src/southbridge
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2022-11-12 20:51:23 +0200
committerKyösti Mälkki <kyosti.malkki@gmail.com>2022-11-25 15:02:47 +0000
commitc87814d750073ba89c2a88d8dcc6c7611952ddbc (patch)
tree6366d356a1b41a949b25db6bd7bd593d1657fd1d /src/southbridge
parent66b5e1b32ddac58b6d4c7679a0ea274041225a24 (diff)
ACPI MADT: Add LINT1 as NMI source
Set of boards and platforms did not have LINT1 configured as NMI source. Change-Id: I65044125562bda363b3a0d92da6137c77a28b587 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/69528 Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/southbridge')
-rw-r--r--src/southbridge/intel/common/madt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/southbridge/intel/common/madt.c b/src/southbridge/intel/common/madt.c
index eb11c21770..b85e110187 100644
--- a/src/southbridge/intel/common/madt.c
+++ b/src/southbridge/intel/common/madt.c
@@ -7,7 +7,7 @@
unsigned long acpi_fill_madt(unsigned long current)
{
/* Local APICs */
- current = acpi_create_madt_lapics(current);
+ current = acpi_create_madt_lapics_with_nmis(current);
/* IOAPIC */
current += acpi_create_madt_ioapic_from_hw((acpi_madt_ioapic_t *)current, IO_APIC_ADDR);