mirror of https://github.com/acidanthera/audk.git
EmbeddedPkg/AcpiLib.h: Added some helper macros for ACPI 5.1
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Olivier Martin <olivier.martin@arm.com> Reviewed-by: Graeme Gregory <graeme.gregory@linaro.org> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16653 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
3399d5beb8
commit
7c1712f05a
|
@ -43,6 +43,25 @@
|
||||||
GicId, AcpiCpuId, Flags, 0, PmuIrq, 0, GicBase \
|
GicId, AcpiCpuId, Flags, 0, PmuIrq, 0, GicBase \
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Note the parking protocol is configured by UEFI if required
|
||||||
|
#define EFI_ACPI_5_1_GICC_STRUCTURE_INIT(GicId, AcpiCpuUid, Mpidr, Flags, PmuIrq, \
|
||||||
|
GicBase, GicVBase, GicHBase, GsivId, GicRBase) \
|
||||||
|
{ \
|
||||||
|
EFI_ACPI_5_1_GIC, sizeof (EFI_ACPI_5_1_GIC_STRUCTURE), EFI_ACPI_RESERVED_WORD, \
|
||||||
|
GicId, AcpiCpuUid, Flags, 0, PmuIrq, 0, GicBase, GicVBase, GicHBase, \
|
||||||
|
GsivId, GicRBase, Mpidr \
|
||||||
|
}
|
||||||
|
|
||||||
|
//
|
||||||
|
// SBSA Generic Watchdog
|
||||||
|
//
|
||||||
|
#define EFI_ACPI_5_1_SBSA_GENERIC_WATCHDOG_STRUCTURE_INIT(RefreshFramePhysicalAddress, \
|
||||||
|
ControlFramePhysicalAddress, WatchdogTimerGSIV, WatchdogTimerFlags) \
|
||||||
|
{ \
|
||||||
|
EFI_ACPI_5_1_GTDT_SBSA_GENERIC_WATCHDOG, sizeof(EFI_ACPI_5_1_GTDT_SBSA_GENERIC_WATCHDOG_STRUCTURE), \
|
||||||
|
EFI_ACPI_RESERVED_WORD, RefreshFramePhysicalAddress, ControlFramePhysicalAddress, \
|
||||||
|
WatchdogTimerGSIV, WatchdogTimerFlags \
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Locate and Install the ACPI tables from the Firmware Volume
|
Locate and Install the ACPI tables from the Firmware Volume
|
||||||
|
|
Loading…
Reference in New Issue