diff options
author | Sami Mujawar <sami.mujawar@arm.com> | 2023-09-22 15:35:05 +0100 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2023-10-30 12:16:56 +0000 |
commit | f9925c89532bbbe22c277ed56e2ffa8d21532d05 (patch) | |
tree | 8a21e344ecef1c870993c14fbdcd5de28b561f16 | |
parent | 822c54eb0177833d7949049cb9eb1e18dc3572a9 (diff) | |
download | edk2-f9925c89532bbbe22c277ed56e2ffa8d21532d05.tar.gz |
MdePkg: MADT: Add TRBE interrupt to GICC
The ASWG ECR 2303 introduces a new field 'TRBE
interrupt' to GICC structure in ACPI 6.5.
The Trace Buffer Extension (TRBE) interrupt is a
Processor Private interrupt (PPI) and is used to
specify a platform-specific interrupt to signal
TRBE events.
Signed-off-by: Sami Mujawar <sami.mujawar@arm.com>
Reviewed-by: Pierre Gondois <pierre.gondois@arm.com>
Reviewed-by: Leif Lindholm <quic_llindhol@quicinc.com>
-rw-r--r-- | MdePkg/Include/IndustryStandard/Acpi65.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/MdePkg/Include/IndustryStandard/Acpi65.h b/MdePkg/Include/IndustryStandard/Acpi65.h index 9e2828bc04..fab613d3a7 100644 --- a/MdePkg/Include/IndustryStandard/Acpi65.h +++ b/MdePkg/Include/IndustryStandard/Acpi65.h @@ -525,6 +525,7 @@ typedef struct { UINT8 ProcessorPowerEfficiencyClass;
UINT8 Reserved2;
UINT16 SpeOverflowInterrupt;
+ UINT16 TrbeInterrupt;
} EFI_ACPI_6_5_GIC_STRUCTURE;
///
|