mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-25 14:25:44 +00:00
feat(tsp): increase stack size for tsp
TSP testcases for EL3 SPMC have higher stack usage. Change-Id: Ib5bfdccc6d0f65174e257f3b0e8b41bcd3c704a6 Signed-off-by: Shruti Gupta <shruti.gupta@arm.com>
This commit is contained in:
parent
e9b1f300a9
commit
5b7bd2af0b
2 changed files with 12 additions and 1 deletions
|
@ -546,6 +546,13 @@ subsections:
|
|||
- title: BL31
|
||||
scope: bl31
|
||||
|
||||
- title: BL32
|
||||
scope: bl32
|
||||
|
||||
subsections:
|
||||
- title: TSP
|
||||
scope: tsp
|
||||
|
||||
- title: Services
|
||||
scope: services
|
||||
|
||||
|
|
|
@ -249,7 +249,11 @@
|
|||
#elif defined(IMAGE_BL31)
|
||||
# define PLATFORM_STACK_SIZE UL(0x800)
|
||||
#elif defined(IMAGE_BL32)
|
||||
# define PLATFORM_STACK_SIZE UL(0x440)
|
||||
# if SPMC_AT_EL3
|
||||
# define PLATFORM_STACK_SIZE UL(0x1000)
|
||||
# else
|
||||
# define PLATFORM_STACK_SIZE UL(0x440)
|
||||
# endif /* SPMC_AT_EL3 */
|
||||
#elif defined(IMAGE_RMM)
|
||||
# define PLATFORM_STACK_SIZE UL(0x440)
|
||||
#endif
|
||||
|
|
Loading…
Add table
Reference in a new issue