diff options
author | Ard Biesheuvel <ardb@kernel.org> | 2024-11-12 16:18:01 +0100 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2024-11-26 23:53:16 +0000 |
commit | c2827283a8e7d02d4662f618d427ddb08ae7cc92 (patch) | |
tree | 2ad6d9fb62f3089c597f4b2e589c7eda1ef95ae3 /MdePkg/Include/AArch64/AArch64Mmu.h | |
parent | a25eb7557f3c37d015f498c21a804aae52a9cbfd (diff) | |
download | edk2-c2827283a8e7d02d4662f618d427ddb08ae7cc92.tar.gz |
MdePkg/AArch64: Add some missing MMU related constants
Add definitions for the non-global page tables descriptor attribute, as
well as the E2H TCR bit, so that we can use them in the MMU code.
Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
Diffstat (limited to 'MdePkg/Include/AArch64/AArch64Mmu.h')
-rw-r--r-- | MdePkg/Include/AArch64/AArch64Mmu.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/MdePkg/Include/AArch64/AArch64Mmu.h b/MdePkg/Include/AArch64/AArch64Mmu.h index 2ea2cc0a87..763dc53908 100644 --- a/MdePkg/Include/AArch64/AArch64Mmu.h +++ b/MdePkg/Include/AArch64/AArch64Mmu.h @@ -67,6 +67,7 @@ #define TT_NS BIT5
#define TT_AF BIT10
+#define TT_NG BIT11
#define TT_SH_NON_SHAREABLE (0x0 << 8)
#define TT_SH_OUTER_SHAREABLE (0x2 << 8)
|