From 9a8ba2f3c19390a7ab522a5a1bc6fccd530f97c5 Mon Sep 17 00:00:00 2001 From: Erik Schmauss Date: Mon, 19 Aug 2019 17:29:13 +0800 Subject: [PATCH] ACPICA: ACPI 6.3: MADT: add support for statistical profiling in GICC mainline inclusion from mainline-5.1-rc1 commit e646e0a50cfa category: feature bugzilla: 16072 CVE: NA --------------------------- ACPICA commit 31b184052a986dc8d80c878edeca574d4ffa1cf5 Link: https://github.com/acpica/acpica/commit/31b18405 Signed-off-by: Erik Schmauss Signed-off-by: Bob Moore Signed-off-by: Rafael J. Wysocki Signed-off-by: Hongbo Yao Reviewed-by: Hanjun Guo Signed-off-by: Yang Yingliang --- include/acpi/actbl2.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/include/acpi/actbl2.h b/include/acpi/actbl2.h index af2c321b17cf..20b008e6f6b0 100644 --- a/include/acpi/actbl2.h +++ b/include/acpi/actbl2.h @@ -623,7 +623,7 @@ struct acpi_madt_local_x2apic_nmi { u8 reserved[3]; /* reserved - must be zero */ }; -/* 11: Generic Interrupt (ACPI 5.0 + ACPI 6.0 changes) */ +/* 11: Generic interrupt - GICC (ACPI 5.0 + ACPI 6.0 + ACPI 6.3 changes) */ struct acpi_madt_generic_interrupt { struct acpi_subtable_header header; @@ -641,7 +641,8 @@ struct acpi_madt_generic_interrupt { u64 gicr_base_address; u64 arm_mpidr; u8 efficiency_class; - u8 reserved2[3]; + u8 reserved2[1]; + u16 spe_interrupt; /* ACPI 6.3 */ }; /* Masks for Flags field above */ -- GitLab