mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-18 18:44:22 +00:00
Increase coherent stack sizes
This patch increases coherent stack size for both debug and release builds in order to accommodate stack-heavy printf() and extended EL3 functionality Change-Id: I30ef30530a01517a97e63d703873374828c09f20
This commit is contained in:
parent
caa84939a4
commit
ca823d2c88
1 changed files with 6 additions and 3 deletions
|
@ -42,11 +42,14 @@
|
|||
.weak plat_report_exception
|
||||
|
||||
/* -----------------------------------------------------
|
||||
* 512 bytes of coherent stack for each cpu
|
||||
* Coherent stack sizes for debug and release builds
|
||||
* -----------------------------------------------------
|
||||
*/
|
||||
#define PCPU_DV_MEM_STACK_SIZE 0x200
|
||||
|
||||
#if DEBUG
|
||||
#define PCPU_DV_MEM_STACK_SIZE 0x400
|
||||
#else
|
||||
#define PCPU_DV_MEM_STACK_SIZE 0x300
|
||||
#endif
|
||||
|
||||
.section .text, "ax"; .align 3
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue