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:
Shruti Gupta 2022-08-09 10:46:07 +01:00
parent e9b1f300a9
commit 5b7bd2af0b
2 changed files with 12 additions and 1 deletions
changelog.yaml
plat/arm/board/fvp/include

View file

@ -546,6 +546,13 @@ subsections:
- title: BL31
scope: bl31
- title: BL32
scope: bl32
subsections:
- title: TSP
scope: tsp
- title: Services
scope: services

View file

@ -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