diff options
author | Chris Jones <christopher.jones@arm.com> | 2021-07-20 17:20:44 +0100 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2021-08-11 01:53:28 +0000 |
commit | d910e83299cbf82ed26debb14a705469e43e3c23 (patch) | |
tree | 7aad149346517d1d87809710f75c03a284af0373 | |
parent | 4d7137f26112b0965acd84a6aad82be54dfd9cc0 (diff) | |
download | edk2-d910e83299cbf82ed26debb14a705469e43e3c23.tar.gz |
MdePkg: Rename SBSA Generic Watchdog to Arm Generic Watchdog
Bugzilla: 3516 (https://bugzilla.tianocore.org/show_bug.cgi?id=3516)
Make changes to ACPI 6.4 header according to the latest specification:
- ACPI 6.4 January 2021, Section 5.2.24, Table 5.100 & Section 5.2.24.2
- Mantis ID 2126 (https://mantis.uefi.org/mantis/view.php?id=2126)
Signed-off-by: Chris Jones <christopher.jones@arm.com>
Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>
Reviewed-by: Sami Mujawar <sami.mujawar@arm.com>
-rw-r--r-- | MdePkg/Include/IndustryStandard/Acpi64.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/MdePkg/Include/IndustryStandard/Acpi64.h b/MdePkg/Include/IndustryStandard/Acpi64.h index 5a0e5b29c7..9a1339c78e 100644 --- a/MdePkg/Include/IndustryStandard/Acpi64.h +++ b/MdePkg/Include/IndustryStandard/Acpi64.h @@ -1373,7 +1373,7 @@ typedef struct { /// Platform Timer Type
///
#define EFI_ACPI_6_4_GTDT_GT_BLOCK 0
-#define EFI_ACPI_6_4_GTDT_SBSA_GENERIC_WATCHDOG 1
+#define EFI_ACPI_6_4_GTDT_ARM_GENERIC_WATCHDOG 1
///
/// GT Block Structure
@@ -1415,7 +1415,7 @@ typedef struct { #define EFI_ACPI_6_4_GTDT_GT_BLOCK_COMMON_FLAG_ALWAYS_ON_CAPABILITY BIT1
///
-/// SBSA Generic Watchdog Structure
+/// Arm Generic Watchdog Structure
///
typedef struct {
UINT8 Type;
@@ -1425,14 +1425,14 @@ typedef struct { UINT64 WatchdogControlFramePhysicalAddress;
UINT32 WatchdogTimerGSIV;
UINT32 WatchdogTimerFlags;
-} EFI_ACPI_6_4_GTDT_SBSA_GENERIC_WATCHDOG_STRUCTURE;
+} EFI_ACPI_6_4_GTDT_ARM_GENERIC_WATCHDOG_STRUCTURE;
///
-/// SBSA Generic Watchdog Timer Flags. All other bits are reserved and must be 0.
+/// Arm Generic Watchdog Timer Flags. All other bits are reserved and must be 0.
///
-#define EFI_ACPI_6_4_GTDT_SBSA_GENERIC_WATCHDOG_FLAG_TIMER_INTERRUPT_MODE BIT0
-#define EFI_ACPI_6_4_GTDT_SBSA_GENERIC_WATCHDOG_FLAG_TIMER_INTERRUPT_POLARITY BIT1
-#define EFI_ACPI_6_4_GTDT_SBSA_GENERIC_WATCHDOG_FLAG_SECURE_TIMER BIT2
+#define EFI_ACPI_6_4_GTDT_ARM_GENERIC_WATCHDOG_FLAG_TIMER_INTERRUPT_MODE BIT0
+#define EFI_ACPI_6_4_GTDT_ARM_GENERIC_WATCHDOG_FLAG_TIMER_INTERRUPT_POLARITY BIT1
+#define EFI_ACPI_6_4_GTDT_ARM_GENERIC_WATCHDOG_FLAG_SECURE_TIMER BIT2
//
// NVDIMM Firmware Interface Table definition.
|