mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-08-30 02:41:45 +02:00
Merge "feat(zynqmp): make stack size configurable" into integration
This commit is contained in:
commit
d2309b49ea
@ -89,6 +89,16 @@ the build command example is;
|
||||
make CROSS_COMPILE=aarch64-none-elf- PLAT=zynqmp RESET_TO_BL31=1 DEBUG=1 \
|
||||
ZYNQMP_ATF_MEM_BASE=0x40000 ZYNQMP_ATF_MEM_SIZE=<size>
|
||||
|
||||
Configurable Stack Size
|
||||
-----------------------
|
||||
|
||||
The stack size in TF-A for ZynqMP platform is configurable.
|
||||
The custom package can define the desired stack size as per the requirement in
|
||||
the make file as follows,
|
||||
|
||||
PLATFORM_STACK_SIZE := <value>
|
||||
$(eval $(call add_define,PLATFORM_STACK_SIZE))
|
||||
|
||||
FSBL->TF-A Parameter Passing
|
||||
----------------------------
|
||||
|
||||
|
@ -21,7 +21,9 @@
|
||||
******************************************************************************/
|
||||
|
||||
/* Size of cacheable stacks */
|
||||
#ifndef PLATFORM_STACK_SIZE
|
||||
#define PLATFORM_STACK_SIZE 0x440
|
||||
#endif
|
||||
|
||||
#define PLATFORM_CORE_COUNT U(4)
|
||||
#define PLAT_NUM_POWER_DOMAINS U(5)
|
||||
|
Loading…
x
Reference in New Issue
Block a user