diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2020-05-19 07:20:46 +0200 |
---|---|---|
committer | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2020-05-21 10:00:17 +0200 |
commit | 255a47333cc3e430d544fadf419b290213c5b11b (patch) | |
tree | ef6bd3a7025ab06b564c8d13f275dbc54255f1e9 /include/efi.h | |
parent | 9de6ce807edaee02ae448a5130e9e78d60cc9b90 (diff) | |
download | u-boot-255a47333cc3e430d544fadf419b290213c5b11b.tar.gz |
efi_loader: add EFI_MEMORY_SP to memory attributes
The UEFI 2.8 specification has introduced the EFI_MEMORY_SP memory
attribute. Add it to the 'efidebug memmap' and 'efi mem' commands.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'include/efi.h')
-rw-r--r-- | include/efi.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/efi.h b/include/efi.h index e12697a5d5..f986aad877 100644 --- a/include/efi.h +++ b/include/efi.h @@ -196,6 +196,7 @@ enum efi_mem_type { #define EFI_MEMORY_MORE_RELIABLE \ ((u64)0x0000000000010000ULL) /* higher reliability */ #define EFI_MEMORY_RO ((u64)0x0000000000020000ULL) /* read-only */ +#define EFI_MEMORY_SP ((u64)0x0000000000040000ULL) /* specific-purpose memory (SPM) */ #define EFI_MEMORY_RUNTIME ((u64)0x8000000000000000ULL) /* range requires runtime mapping */ #define EFI_MEM_DESC_VERSION 1 |