diff options
author | Vikram Kanigiri <vikram.kanigiri@arm.com> | 2015-07-22 11:53:52 +0100 |
---|---|---|
committer | Vikram Kanigiri <vikram.kanigiri@arm.com> | 2015-11-13 13:52:48 +0000 |
commit | 6cd12daa403e64ba7252c6bfd5bd6a8e393f2a7e (patch) | |
tree | 0c535d83f7afbdf2a0d4e417a758c5380be4b45d /include | |
parent | 4266228306de468dff34609581474f2f43d781fa (diff) |
Add missing RES1 bit in SCTLR_EL1
As per Section D7.2.81 in the ARMv8-A Reference Manual (DDI0487A Issue A.h),
bits[29:28], bits[23:22], bit[20] and bit[11] in the SCTLR_EL1 are RES1. This
patch adds the missing bit[20] to the SCTLR_EL1_RES1 macro.
Change-Id: I827982fa2856d04def6b22d8200a79fe6922a28e
Diffstat (limited to 'include')
-rw-r--r-- | include/lib/aarch64/arch.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/lib/aarch64/arch.h b/include/lib/aarch64/arch.h index 912643d2..9aea2c9d 100644 --- a/include/lib/aarch64/arch.h +++ b/include/lib/aarch64/arch.h @@ -134,7 +134,7 @@ (1 << 4)) #define SCTLR_EL1_RES1 ((1 << 29) | (1 << 28) | (1 << 23) | (1 << 22) | \ - (1 << 11)) + (1 << 20) | (1 << 11)) #define SCTLR_AARCH32_EL1_RES1 \ ((1 << 23) | (1 << 22) | (1 << 11) | (1 << 4) | \ (1 << 3)) |