diff options
author | Raul E Rangel <rrangel@chromium.org> | 2021-02-11 11:27:56 -0700 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2021-02-13 21:54:54 +0000 |
commit | f5552cef97c90ace253dc2fa095d754b58979285 (patch) | |
tree | 1f1b6f8ec1a07c621146735cff4d80ff16693254 | |
parent | 86024954dfa06af9a9a7e5f19ab5aae32eb14909 (diff) |
include/acpi/acpi.h: Add ACPI_MADT_LAPIC_NMI_ALL_PROCESSORS
This is a magic value that means all processors.
See Table 5-52 Local APIC NMI Structure in ACPI Spec 6.3.
Signed-off-by: Raul E Rangel <rrangel@chromium.org>
Change-Id: Ic2fc060fda21bec44258bcae62ddb230be542759
Reviewed-on: https://review.coreboot.org/c/coreboot/+/50561
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com>
-rw-r--r-- | src/include/acpi/acpi.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/include/acpi/acpi.h b/src/include/acpi/acpi.h index 058c0d0217..775fc316e7 100644 --- a/src/include/acpi/acpi.h +++ b/src/include/acpi/acpi.h @@ -514,6 +514,8 @@ typedef struct acpi_madt_lapic_nmi { u8 lint; /* Local APIC LINT# */ } __packed acpi_madt_lapic_nmi_t; +#define ACPI_MADT_LAPIC_NMI_ALL_PROCESSORS 0xff + /* MADT: I/O APIC Structure */ typedef struct acpi_madt_ioapic { u8 type; /* Type (1) */ |