diff options
author | Louis Mayencourt <louis.mayencourt@arm.com> | 2019-03-13 17:11:35 +0000 |
---|---|---|
committer | Soby Mathew <soby.mathew@arm.com> | 2019-03-14 16:02:15 +0000 |
commit | 01aa5247f0c1ea1663650ff91287d98fcdee5a93 (patch) | |
tree | 1959b5f519b238fc4f09d32d80894639921ac789 /plat | |
parent | 620d9832f96ffcaf86d38b703ca913438d6eea7c (diff) | |
download | platform_external_arm-trusted-firmware-01aa5247f0c1ea1663650ff91287d98fcdee5a93.tar.gz platform_external_arm-trusted-firmware-01aa5247f0c1ea1663650ff91287d98fcdee5a93.tar.bz2 platform_external_arm-trusted-firmware-01aa5247f0c1ea1663650ff91287d98fcdee5a93.zip |
fvp: Increase the size of the stack for FVP
When RECLAIM_INIT_CODE is 1, the stack is used to contain the .text.init
section. This is by default enable on FVP. Due to the size increase of
the .text.init section, the stack had to be adjusted contain it.
Change-Id: Ia392341970fb86c0426cf2229b1a7295453e2e32
Signed-off-by: Louis Mayencourt <louis.mayencourt@arm.com>
Diffstat (limited to 'plat')
-rw-r--r-- | plat/arm/board/fvp/include/platform_def.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/plat/arm/board/fvp/include/platform_def.h b/plat/arm/board/fvp/include/platform_def.h index 780e6fcbf..6856a286f 100644 --- a/plat/arm/board/fvp/include/platform_def.h +++ b/plat/arm/board/fvp/include/platform_def.h @@ -146,13 +146,7 @@ #elif defined(IMAGE_BL2U) # define PLATFORM_STACK_SIZE UL(0x400) #elif defined(IMAGE_BL31) -# if ENABLE_SPM -# define PLATFORM_STACK_SIZE UL(0x600) -# elif PLAT_XLAT_TABLES_DYNAMIC # define PLATFORM_STACK_SIZE UL(0x800) -# else -# define PLATFORM_STACK_SIZE UL(0x400) -# endif #elif defined(IMAGE_BL32) # define PLATFORM_STACK_SIZE UL(0x440) #endif |