mirror of https://github.com/acidanthera/audk.git
DynamicTablesPkg: Add TRBE interrupt to GICC object parser
ACPI 6.5 introduces a new filed to the MADT GICC structure to specify the Trace Buffer Extension (TRBE) interrupt. The TRBE interrupt is a Processor Private interrupt (PPI) and is used to specify a platform-specific interrupt to signal TRBE events. This field has already been added to the CM_ARM_GICC_INFO structure in a previous patch. Therefore, update the Configuration Manager Object Parser to reflect the addition of the TRBE interrupt field. Signed-off-by: Sami Mujawar <sami.mujawar@arm.com> Reviewed-by: Pierre Gondois <pierre.gondois@arm.com>
This commit is contained in:
parent
db9800dce8
commit
cf62548a35
|
@ -83,7 +83,8 @@ STATIC CONST CM_OBJ_PARSER CmArmGicCInfoParser[] = {
|
|||
{ "ProximityDomain", 4, "0x%x", NULL },
|
||||
{ "ClockDomain", 4, "0x%x", NULL },
|
||||
{ "AffinityFlags", 4, "0x%x", NULL },
|
||||
{ "CpcToken", sizeof (CM_OBJECT_TOKEN), "0x%p", NULL }
|
||||
{ "CpcToken", sizeof (CM_OBJECT_TOKEN), "0x%p", NULL },
|
||||
{ "TRBEInterrupt", 2, "0x%x", NULL }
|
||||
};
|
||||
|
||||
/** A parser for EArmObjGicDInfo.
|
||||
|
|
Loading…
Reference in New Issue