diff options
author | Chris Jones <christopher.jones@arm.com> | 2021-08-16 15:52:17 +0100 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2021-10-05 16:04:44 +0000 |
commit | f09dbf20b946cf0327a6d5ebcb7bd46124f3073e (patch) | |
tree | 9608e507f0193acb50c059d3a0771b808361dcfa /DynamicTablesPkg/Include/ArmNameSpaceObjects.h | |
parent | 06a326caf1259fc51e44ce4cb2361748bea371b2 (diff) | |
download | edk2-f09dbf20b946cf0327a6d5ebcb7bd46124f3073e.tar.gz |
DynamicTablesPkg: Rename SBSA generic watchdog
Buzilla: 3565 (https://bugzilla.tianocore.org/show_bug.cgi?id=3565)
As part of the updates to ACPI 6.4 the "SBSA Generic Watchdog" was
renamed to the "Arm Generic Watchdog". This patch implements that
change by updating the GTDT generator to use Acpi64.h and renames
any occurence of "SBSA Generic Watchdog" to "Arm Generic Watchdog".
Signed-off-by: Chris Jones <christopher.jones@arm.com>
Reviewed-by: Zhichao Gao <zhichao.gao@intel.com>
Reviewed-by: Sami Mujawar <sami.mujawar@arm.com>
Diffstat (limited to 'DynamicTablesPkg/Include/ArmNameSpaceObjects.h')
-rw-r--r-- | DynamicTablesPkg/Include/ArmNameSpaceObjects.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/DynamicTablesPkg/Include/ArmNameSpaceObjects.h b/DynamicTablesPkg/Include/ArmNameSpaceObjects.h index 19dcae13b2..2244eafaf0 100644 --- a/DynamicTablesPkg/Include/ArmNameSpaceObjects.h +++ b/DynamicTablesPkg/Include/ArmNameSpaceObjects.h @@ -395,21 +395,21 @@ typedef struct CmArmGTBlockInfo { } CM_ARM_GTBLOCK_INFO;
/** A structure that describes the
- SBSA Generic Watchdog information for the Platform.
+ Arm Generic Watchdog information for the Platform.
ID: EArmObjPlatformGenericWatchdogInfo
*/
typedef struct CmArmGenericWatchdogInfo {
- /// The physical base address of the SBSA Watchdog control frame
+ /// The physical base address of the Arm Watchdog control frame
UINT64 ControlFrameAddress;
- /// The physical base address of the SBSA Watchdog refresh frame
+ /// The physical base address of the Arm Watchdog refresh frame
UINT64 RefreshFrameAddress;
/// The watchdog interrupt
UINT32 TimerGSIV;
- /** The flags for the watchdog as described by the SBSA watchdog
+ /** The flags for the watchdog as described by the Arm watchdog
structure in the ACPI specification.
*/
UINT32 Flags;
|