mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-16 09:34:18 +00:00
refactor(fvp_r): update set_config_info function call
Pass NS-load address as ~0UL to the 'set_config_info' function while updating FW_CONFIG device tree information since it is always loaded into secure memory. Change-Id: I64e8531e0ad5cda63f14d838efb9da9cf20beea8 Signed-off-by: Manish V Badarkhe <Manish.Badarkhe@arm.com>
This commit is contained in:
parent
046cb19b49
commit
ddbf43b4a0
1 changed files with 2 additions and 1 deletions
|
@ -154,7 +154,8 @@ void arm_bl1_platform_setup(void)
|
|||
|
||||
/* Set global DTB info for fixed fw_config information */
|
||||
fw_config_max_size = ARM_FW_CONFIG_LIMIT - ARM_FW_CONFIG_BASE;
|
||||
set_config_info(ARM_FW_CONFIG_BASE, fw_config_max_size, FW_CONFIG_ID);
|
||||
set_config_info(ARM_FW_CONFIG_BASE, ~0UL, fw_config_max_size,
|
||||
FW_CONFIG_ID);
|
||||
|
||||
assert(bl1_plat_get_image_desc(BL33_IMAGE_ID) != NULL);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue