mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-17 18:14:24 +00:00
feat(sgi): increase sp memmap size
With FF-A enabled on SP at SEL0 enabled, SPMC at EL3 needs more entries to map newly added regions(SP, Rx/Tx buffer and Manifest). Increase the PLAT_SP_IMAGE_MMAP_REGIONS to 14 and MAX_XLAT_TABLES to 9. Signed-off-by: Sayanta Pattanayak <sayanta.pattanayak@arm.com> Signed-off-by: Nishant Sharma <nishant.sharma@arm.com> Change-Id: I96fd291db8eb178f7aa73b5a9e38cfc67c66fa91
This commit is contained in:
parent
e03dcc8f5e
commit
7c33bcab59
1 changed files with 4 additions and 4 deletions
|
@ -34,10 +34,10 @@
|
|||
*/
|
||||
#if defined(IMAGE_BL31)
|
||||
# if SPM_MM || (SPMC_AT_EL3 && SPMC_AT_EL3_SEL0_SP)
|
||||
# define PLAT_ARM_MMAP_ENTRIES (9 + ((CSS_SGI_CHIP_COUNT - 1) * 3))
|
||||
# define MAX_XLAT_TABLES (7 + ((CSS_SGI_CHIP_COUNT - 1) * 3))
|
||||
# define PLAT_SP_IMAGE_MMAP_REGIONS 10
|
||||
# define PLAT_SP_IMAGE_MAX_XLAT_TABLES 12
|
||||
# define PLAT_ARM_MMAP_ENTRIES (10 + ((CSS_SGI_CHIP_COUNT - 1) * 3))
|
||||
# define MAX_XLAT_TABLES (8 + ((CSS_SGI_CHIP_COUNT - 1) * 3))
|
||||
# define PLAT_SP_IMAGE_MMAP_REGIONS 12
|
||||
# define PLAT_SP_IMAGE_MAX_XLAT_TABLES 14
|
||||
# else
|
||||
# define PLAT_ARM_MMAP_ENTRIES (5 + ((CSS_SGI_CHIP_COUNT - 1) * 3))
|
||||
# define MAX_XLAT_TABLES (6 + ((CSS_SGI_CHIP_COUNT - 1) * 3))
|
||||
|
|
Loading…
Add table
Reference in a new issue