Skip to content
Snippets Groups Projects
Commit ed264fa9 authored by Yann Gautier's avatar Yann Gautier Committed by Sebastien Pasdeloup
Browse files

tzc400: correct FAIL_CONTROL Privileged bit


When bit 20 of TZC400 Fail control register is set to 1, it means
Privileged access, the macros FAIL_CONTROL_PRIV_PRIV and
FAIL_CONTROL_PRIV_UNPRIV are then updated to reflect this.

Change-Id: I01e522fded5cf66c9827293ddcf543c79f9e509e
Signed-off-by: default avatarYann Gautier <yann.gautier@st.com>
Reviewed-on: https://gerrit.st.com/c/mpu/oe/st/tf-a/+/183494


Reviewed-by: default avatarCITOOLS <smet-aci-reviews@lists.codex.cro.st.com>
Reviewed-by: default avatarCIBUILD <smet-aci-builds@lists.codex.cro.st.com>
Reviewed-by: default avatarLionel DEBIEVE <lionel.debieve@st.com>
parent d306965e
No related branches found
No related tags found
No related merge requests found
...@@ -65,8 +65,8 @@ ...@@ -65,8 +65,8 @@
#define FAIL_CONTROL_NS_SECURE U(0) #define FAIL_CONTROL_NS_SECURE U(0)
#define FAIL_CONTROL_NS_NONSECURE U(1) #define FAIL_CONTROL_NS_NONSECURE U(1)
#define FAIL_CONTROL_PRIV_SHIFT 20 #define FAIL_CONTROL_PRIV_SHIFT 20
#define FAIL_CONTROL_PRIV_PRIV U(0) #define FAIL_CONTROL_PRIV_UNPRIV U(0)
#define FAIL_CONTROL_PRIV_UNPRIV U(1) #define FAIL_CONTROL_PRIV_PRIV U(1)
/* /*
* FAIL_ID_ID_MASK depends on AID_WIDTH which is platform specific. * FAIL_ID_ID_MASK depends on AID_WIDTH which is platform specific.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment