diff options
author | achingupta <achin.gupta@arm.com> | 2014-09-17 11:53:12 +0100 |
---|---|---|
committer | achingupta <achin.gupta@arm.com> | 2014-09-17 11:53:12 +0100 |
commit | 8e0bbcb3a9be810ad46af36bee65aada70becb27 (patch) | |
tree | fffe0d9efa51f14d256b55be29de4aa2fc8ab2ba /include/lib | |
parent | 087b67a62b0a98b486e5ac332d979a6e5490fe8a (diff) | |
parent | aa5da46138e1583990086b76b56e0a9186cb7b7d (diff) |
Merge pull request #211 from jenswi-linaro/optee_140916
Dispatcher for OPTEE from Linaro SWG
Diffstat (limited to 'include/lib')
-rw-r--r-- | include/lib/aarch64/arch.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/lib/aarch64/arch.h b/include/lib/aarch64/arch.h index 40562607..e5b2bf8c 100644 --- a/include/lib/aarch64/arch.h +++ b/include/lib/aarch64/arch.h @@ -121,6 +121,10 @@ #define SCTLR_EL1_RES1 ((1 << 29) | (1 << 28) | (1 << 23) | (1 << 22) | \ (1 << 11)) +#define SCTLR_AARCH32_EL1_RES1 \ + ((1 << 23) | (1 << 22) | (1 << 11) | (1 << 4) | \ + (1 << 3)) + #define SCTLR_M_BIT (1 << 0) #define SCTLR_A_BIT (1 << 1) #define SCTLR_C_BIT (1 << 2) |