mirror of https://github.com/acidanthera/audk.git
EmbeddedPkg/AcpiLib: add GICD table init macro for ACPI 6.0
Add macro to help initialize GICD structure in MADT table according to ACPI 6.0. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Heyi Guo <heyi.guo@linaro.org> Reviewed-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
This commit is contained in:
parent
40e06cad13
commit
d354963f0d
|
@ -38,6 +38,13 @@
|
|||
GicDistHwId, GicDistBase, GicDistVector, EFI_ACPI_RESERVED_DWORD \
|
||||
}
|
||||
|
||||
#define EFI_ACPI_6_0_GIC_DISTRIBUTOR_INIT(GicDistHwId, GicDistBase, GicDistVector, GicVersion) \
|
||||
{ \
|
||||
EFI_ACPI_6_0_GICD, sizeof (EFI_ACPI_6_0_GIC_DISTRIBUTOR_STRUCTURE), EFI_ACPI_RESERVED_WORD, \
|
||||
GicDistHwId, GicDistBase, GicDistVector, GicVersion, \
|
||||
{EFI_ACPI_RESERVED_BYTE, EFI_ACPI_RESERVED_BYTE, EFI_ACPI_RESERVED_BYTE} \
|
||||
}
|
||||
|
||||
// Note the parking protocol is configured by UEFI if required
|
||||
#define EFI_ACPI_5_0_GIC_STRUCTURE_INIT(GicId, AcpiCpuId, Flags, PmuIrq, GicBase) \
|
||||
{ \
|
||||
|
|
Loading…
Reference in New Issue