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
613b7e5e
Commit
613b7e5e
authored
Nov 10, 2015
by
Achin Gupta
Browse files
Merge pull request #424 from jcastillo-arm/jc/tf-issues/327
IMF: postpone SCR_EL3 update if context is not initialized
parents
42662283
5c943f7f
Changes
1
Hide whitespace changes
Inline
Side-by-side
bl31/interrupt_mgmt.c
View file @
613b7e5e
...
...
@@ -129,7 +129,12 @@ static void set_scr_el3_from_rm(uint32_t type,
flag
=
get_interrupt_rm_flag
(
interrupt_type_flags
,
security_state
);
bit_pos
=
plat_interrupt_type_to_line
(
type
,
security_state
);
intr_type_descs
[
type
].
scr_el3
[
security_state
]
=
flag
<<
bit_pos
;
cm_write_scr_el3_bit
(
security_state
,
bit_pos
,
flag
);
/* Update scr_el3 only if there is a context available. If not, it
* will be updated later during context initialization which will obtain
* the scr_el3 value to be used via get_scr_el3_from_routing_model() */
if
(
cm_get_context
(
security_state
))
cm_write_scr_el3_bit
(
security_state
,
bit_pos
,
flag
);
}
/*******************************************************************************
...
...
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