diff options
author | Graeme Gregory <graeme.gregory@linaro.org> | 2016-07-05 21:15:39 +0100 |
---|---|---|
committer | Ard Biesheuvel <ard.biesheuvel@linaro.org> | 2016-07-06 10:51:38 +0200 |
commit | 6ff71a134f5b974549bf991aa594986bc5f873ee (patch) | |
tree | 26f515c0803995d98b542b8195b1412012cb7a98 /EmbeddedPkg | |
parent | a91f1a0e88d07dd3817737f9886bc247cc737a4f (diff) | |
download | edk2-6ff71a134f5b974549bf991aa594986bc5f873ee.tar.gz edk2-6ff71a134f5b974549bf991aa594986bc5f873ee.tar.bz2 edk2-6ff71a134f5b974549bf991aa594986bc5f873ee.zip |
EmbeddedPkg/AcpiLib: add GICC table init macro for ACPI 6.0
ACPI 6.0 added a processor efficiency field and 3 reserved bytes at the
end of the GICC structure so add a new macro to initialise the new
field.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Graeme Gregory <graeme.gregory@linaro.org>
Reviewed-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Diffstat (limited to 'EmbeddedPkg')
-rw-r--r-- | EmbeddedPkg/Include/Library/AcpiLib.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/EmbeddedPkg/Include/Library/AcpiLib.h b/EmbeddedPkg/Include/Library/AcpiLib.h index e5bcf56c29..704a2cdcac 100644 --- a/EmbeddedPkg/Include/Library/AcpiLib.h +++ b/EmbeddedPkg/Include/Library/AcpiLib.h @@ -61,6 +61,15 @@ GsivId, GicRBase, Mpidr \
}
+#define EFI_ACPI_6_0_GICC_STRUCTURE_INIT(GicId, AcpiCpuUid, Mpidr, Flags, PmuIrq, \
+ GicBase, GicVBase, GicHBase, GsivId, GicRBase, Efficiency) \
+ { \
+ EFI_ACPI_6_0_GIC, sizeof (EFI_ACPI_6_0_GIC_STRUCTURE), EFI_ACPI_RESERVED_WORD, \
+ GicId, AcpiCpuUid, Flags, 0, PmuIrq, 0, GicBase, GicVBase, GicHBase, \
+ GsivId, GicRBase, Mpidr, Efficiency, \
+ {EFI_ACPI_RESERVED_BYTE, EFI_ACPI_RESERVED_BYTE, EFI_ACPI_RESERVED_BYTE} \
+ }
+
#define EFI_ACPI_6_0_GIC_MSI_FRAME_INIT(GicMsiFrameId, PhysicalBaseAddress, Flags, SPICount, SPIBase) \
{ \
EFI_ACPI_6_0_GIC_MSI_FRAME, sizeof (EFI_ACPI_6_0_GIC_MSI_FRAME_STRUCTURE), EFI_ACPI_RESERVED_WORD, \
|