Attention is currently required from: Jason Glenesk, Marshall Dawson, Felix Held. Raul Rangel has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/50562 )
Change subject: soc/amd/cezanne/acpi: Generate MADT LAPIC NMI settings ......................................................................
soc/amd/cezanne/acpi: Generate MADT LAPIC NMI settings
I'm not actually sure how to verify that LINT1 is connected to NMI.
Signed-off-by: Raul E Rangel rrangel@chromium.org Change-Id: Ia391ec5a015d909462ff8aaf3cb047c6fd45fe0a --- M src/soc/amd/cezanne/acpi.c 1 file changed, 8 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/62/50562/1
diff --git a/src/soc/amd/cezanne/acpi.c b/src/soc/amd/cezanne/acpi.c index 5687f9b..370a946 100644 --- a/src/soc/amd/cezanne/acpi.c +++ b/src/soc/amd/cezanne/acpi.c @@ -28,6 +28,14 @@ (acpi_madt_irqoverride_t *)current, MP_BUS_ISA, ACPI_SCI_IRQ, ACPI_SCI_IRQ, MP_IRQ_TRIGGER_LEVEL | MP_IRQ_POLARITY_LOW); + current = acpi_fill_madt_irqoverride(current); + + /* create all subtables for processors */ + current += acpi_create_madt_lapic_nmi( + (acpi_madt_lapic_nmi_t *)current, + ACPI_MADT_LAPIC_NMI_ALL_PROCESSORS, + MP_IRQ_TRIGGER_EDGE | MP_IRQ_POLARITY_HIGH, + 1 /* 1: LINT1 connect to NMI */);
return current; }