Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Arm Trusted Firmware
Commits
01ebe3d2
Commit
01ebe3d2
authored
Aug 25, 2017
by
davidcunado-arm
Committed by
GitHub
Aug 25, 2017
Browse files
Merge pull request #1059 from kenkuang/intergration
fix a typo abort sctlr_el2
parents
f91e8d1a
2e09d4f8
Changes
1
Hide whitespace changes
Inline
Side-by-side
lib/el3_runtime/aarch64/context_mgmt.c
View file @
01ebe3d2
...
@@ -229,7 +229,7 @@ void cm_prepare_el3_exit(uint32_t security_state)
...
@@ -229,7 +229,7 @@ void cm_prepare_el3_exit(uint32_t security_state)
/* Use SCTLR_EL1.EE value to initialise sctlr_el2 */
/* Use SCTLR_EL1.EE value to initialise sctlr_el2 */
sctlr_elx
=
read_ctx_reg
(
get_sysregs_ctx
(
ctx
),
sctlr_elx
=
read_ctx_reg
(
get_sysregs_ctx
(
ctx
),
CTX_SCTLR_EL1
);
CTX_SCTLR_EL1
);
sctlr_elx
&=
~
SCTLR_EE_BIT
;
sctlr_elx
&=
SCTLR_EE_BIT
;
sctlr_elx
|=
SCTLR_EL2_RES1
;
sctlr_elx
|=
SCTLR_EL2_RES1
;
write_sctlr_el2
(
sctlr_elx
);
write_sctlr_el2
(
sctlr_elx
);
}
else
if
(
EL_IMPLEMENTED
(
2
))
{
}
else
if
(
EL_IMPLEMENTED
(
2
))
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment