Commit d3c10e6c authored by Sandrine Bailleux's avatar Sandrine Bailleux
Browse files

juno: Fix build further to changes on UP/MP stacks

These changes are necessary because of commit 2bf28e62.

Change-Id: I3e42e97638fe895c885bcbf44392a899284956f8
parent 2b80760d
......@@ -33,10 +33,6 @@
#include <xlat_tables.h>
#include <assert.h>
unsigned char platform_normal_stacks[PLATFORM_STACK_SIZE][PLATFORM_CORE_COUNT]
__attribute__ ((aligned(PLATFORM_CACHE_LINE_SIZE),
section("tzfw_normal_stacks")));
void enable_mmu()
{
......
......@@ -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"
......
......@@ -63,11 +63,13 @@ PLAT_BL_COMMON_SOURCES := mmio.c \
BL1_SOURCES += bl1_plat_setup.c \
bl1_plat_helpers.S \
plat_helpers.S \
platform_up_stack.S \
plat_common.c \
cci400.c
BL2_SOURCES += bakery_lock.c \
bl2_plat_setup.c \
platform_up_stack.S \
mhu.c \
plat_helpers.S \
plat_common.c \
......@@ -77,6 +79,7 @@ BL2_SOURCES += bakery_lock.c \
BL31_SOURCES += bl31_plat_setup.c \
mhu.c \
plat_helpers.S \
platform_mp_stack.S \
plat_common.c \
plat_pm.c \
plat_topology.c \
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment