aboutsummaryrefslogtreecommitdiff
path: root/plat/juno/platform.h
diff options
context:
space:
mode:
Diffstat (limited to 'plat/juno/platform.h')
-rw-r--r--plat/juno/platform.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/plat/juno/platform.h b/plat/juno/platform.h
index fcf63b7..aa46366 100644
--- a/plat/juno/platform.h
+++ b/plat/juno/platform.h
@@ -47,7 +47,16 @@
/*******************************************************************************
* Generic platform constants
******************************************************************************/
-#define PLATFORM_STACK_SIZE 0x800
+
+/* Size of cacheable stacks */
+#define PLATFORM_STACK_SIZE 0x800
+
+/* Size of coherent stacks for debug and release builds */
+#if DEBUG
+#define PCPU_DV_MEM_STACK_SIZE 0x400
+#else
+#define PCPU_DV_MEM_STACK_SIZE 0x300
+#endif
#define FIRMWARE_WELCOME_STR "Booting trusted firmware boot loader stage 1\n\r"