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>
This commit is contained in:
parent
66b5e1b32d
commit
c87814d750
|
@ -8,7 +8,7 @@ unsigned long acpi_fill_madt(unsigned long current)
|
|||
struct device *bdev, *dev = NULL;
|
||||
struct resource *res = NULL;
|
||||
|
||||
current = acpi_create_madt_lapics(current);
|
||||
current = acpi_create_madt_lapics_with_nmis(current);
|
||||
|
||||
/* Southbridge IOAPIC */
|
||||
current += acpi_create_madt_ioapic_from_hw((acpi_madt_ioapic_t *)current, 0xfec00000);
|
||||
|
|
|
@ -11,7 +11,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);
|
||||
|
|
|
@ -89,7 +89,7 @@ int acpi_sci_irq(void)
|
|||
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);
|
||||
|
|
|
@ -329,7 +329,7 @@ static unsigned long acpi_madt_irq_overrides(unsigned long current)
|
|||
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);
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue