mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-26 06:50:10 +00:00
feat(fvp): increase BL31's stack size for DRTM support
The stack size of BL31 has been increased to accommodate the introduction of mbedTLS support for DRTM. Signed-off-by: Manish V Badarkhe <manish.badarkhe@arm.com> Signed-off-by: Lucian Paul-Trifu <lucian.paultrifu@gmail.com> Change-Id: Id0beacf4df553af4ecbe714af20e71604ccfed59
This commit is contained in:
parent
d72c486b52
commit
44df105ff8
1 changed files with 4 additions and 0 deletions
|
@ -247,7 +247,11 @@
|
|||
#elif defined(IMAGE_BL2U)
|
||||
# define PLATFORM_STACK_SIZE UL(0x400)
|
||||
#elif defined(IMAGE_BL31)
|
||||
# if DRTM_SUPPORT
|
||||
# define PLATFORM_STACK_SIZE UL(0x1000)
|
||||
# else
|
||||
# define PLATFORM_STACK_SIZE UL(0x800)
|
||||
# endif /* DRTM_SUPPORT */
|
||||
#elif defined(IMAGE_BL32)
|
||||
# if SPMC_AT_EL3
|
||||
# define PLATFORM_STACK_SIZE UL(0x1000)
|
||||
|
|
Loading…
Add table
Reference in a new issue