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
4d9a3758
Commit
4d9a3758
authored
Dec 19, 2019
by
Sandrine Bailleux
Committed by
TrustedFirmware Code Review
Dec 19, 2019
Browse files
Merge "TF-A: Fix BL2 bug in dynamic configuration initialisation" into integration
parents
f63e9f4c
5ddcbdd8
Changes
1
Show whitespace changes
Inline
Side-by-side
plat/arm/common/arm_dyn_cfg.c
View file @
4d9a3758
...
...
@@ -243,7 +243,8 @@ void arm_bl2_dyn_cfg_init(void)
#ifdef BL31_BASE
/* Ensure the configs don't overlap with BL31 */
if
((
image_base
>
BL31_BASE
)
||
((
image_base
+
image_size
)
>
BL31_BASE
))
if
((
image_base
>=
BL31_BASE
)
&&
(
image_base
<=
BL31_LIMIT
))
continue
;
#endif
/* Ensure the configs are loaded in a valid address */
...
...
@@ -254,7 +255,8 @@ void arm_bl2_dyn_cfg_init(void)
* If BL32 is present, ensure that the configs don't
* overlap with it.
*/
if
(
image_base
>=
BL32_BASE
&&
image_base
<=
BL32_LIMIT
)
if
((
image_base
>=
BL32_BASE
)
&&
(
image_base
<=
BL32_LIMIT
))
continue
;
#endif
}
...
...
@@ -263,7 +265,10 @@ void arm_bl2_dyn_cfg_init(void)
cfg_mem_params
->
image_info
.
image_base
=
(
uintptr_t
)
image_base
;
cfg_mem_params
->
image_info
.
image_max_size
=
image_size
;
/* Remove the IMAGE_ATTRIB_SKIP_LOADING attribute from HW_CONFIG node */
/*
* Remove the IMAGE_ATTRIB_SKIP_LOADING attribute from
* HW_CONFIG or FW_CONFIG nodes
*/
cfg_mem_params
->
image_info
.
h
.
attr
&=
~
IMAGE_ATTRIB_SKIP_LOADING
;
}
...
...
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