summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorHeinrich Schuchardt <[email protected]>2024-12-13 10:20:32 +0100
committerHeinrich Schuchardt <[email protected]>2025-01-05 02:30:49 +0100
commit6a87a5d0688491e7bd30b243adb6d67ea813d234 (patch)
treecc607f2dd0dfc37d6fd7ff158785855c084733c2 /include
parent60c9b794e71e2862a64e6e2a08fda20c4eb3befb (diff)
cmd: efidebug: update output of memory attributes
* add EFI_MEMORY_CPU_CRYPTO, EFI_MEMORY_HOT_PLUGGABLE * correct output for EFI_MEMORY_XP * remove duplicate list entry for EFI_MEMORY_UC Reviewed-by: Ilias Apalodimas <[email protected]> Signed-off-by: Heinrich Schuchardt <[email protected]>
Diffstat (limited to 'include')
-rw-r--r--include/efi.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/efi.h b/include/efi.h
index d50b3d3cec9..d005cb6181e 100644
--- a/include/efi.h
+++ b/include/efi.h
@@ -266,6 +266,8 @@ enum efi_memory_type {
#define EFI_MEMORY_RO ((u64)0x0000000000020000ULL) /* read-only */
#define EFI_MEMORY_SP ((u64)0x0000000000040000ULL) /* specific-purpose memory (SPM) */
#define EFI_MEMORY_CPU_CRYPTO ((u64)0x0000000000080000ULL) /* cryptographically protectable */
+#define EFI_MEMORY_HOT_PLUGGABLE \
+ ((u64)0x0000000000100000ULL) /* hot pluggable */
#define EFI_MEMORY_RUNTIME ((u64)0x8000000000000000ULL) /* range requires runtime mapping */
#define EFI_MEM_DESC_VERSION 1