mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-17 10:04:26 +00:00
Merge "juno/sgm: Align SCP_BL2 to page boundary" into integration
This commit is contained in:
commit
6428938ff4
2 changed files with 6 additions and 2 deletions
|
@ -253,7 +253,9 @@
|
|||
* anything else in this memory region and is handed over to the SCP before
|
||||
* BL31 is loaded over the top.
|
||||
*/
|
||||
#define PLAT_CSS_MAX_SCP_BL2_SIZE (SCP_BL2_LIMIT - ARM_TB_FW_CONFIG_LIMIT)
|
||||
#define PLAT_CSS_MAX_SCP_BL2_SIZE \
|
||||
((SCP_BL2_LIMIT - ARM_TB_FW_CONFIG_LIMIT) & ~PAGE_SIZE_MASK)
|
||||
|
||||
#define PLAT_CSS_MAX_SCP_BL2U_SIZE PLAT_CSS_MAX_SCP_BL2_SIZE
|
||||
|
||||
#define PLAT_ARM_G1S_IRQ_PROPS(grp) \
|
||||
|
|
|
@ -137,7 +137,9 @@
|
|||
* anything else in this memory region and is handed over to the SCP before
|
||||
* BL31 is loaded over the top.
|
||||
*/
|
||||
#define PLAT_CSS_MAX_SCP_BL2_SIZE (SCP_BL2_LIMIT - ARM_TB_FW_CONFIG_LIMIT)
|
||||
#define PLAT_CSS_MAX_SCP_BL2_SIZE \
|
||||
((SCP_BL2_LIMIT - ARM_TB_FW_CONFIG_LIMIT) & ~PAGE_SIZE_MASK)
|
||||
|
||||
#define PLAT_CSS_MAX_SCP_BL2U_SIZE PLAT_CSS_MAX_SCP_BL2_SIZE
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Reference in a new issue