summaryrefslogtreecommitdiff
path: root/framework/main.c
diff options
context:
space:
mode:
authorVikram Kanigiri <vikram.kanigiri@arm.com>2014-08-07 16:43:34 +0100
committerSandrine Bailleux <sandrine.bailleux@arm.com>2014-08-08 17:01:27 +0100
commit52d7c048502dd834ca8f64d414530e2ce3a9b9d2 (patch)
tree1f2753f5afd6bf033e62e3730de130372e62616d /framework/main.c
parent6f5c87dadd3c664f7f4458774d50fe9856af5aa2 (diff)
Remove the dead stack initialisation code
Stack initialisation in TFTF now uses the method and code of ARM TF. This patch removes the dead TFTF stack initialisation code. Change-Id: Idbeb180dd46de115f42bec143ea8fe32d7d3e285
Diffstat (limited to 'framework/main.c')
-rw-r--r--framework/main.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/framework/main.c b/framework/main.c
index 3220eb1..1617554 100644
--- a/framework/main.c
+++ b/framework/main.c
@@ -62,15 +62,6 @@ static bakery_lock_t testcase_output_lock
__attribute__ ((section("tftf_coherent_mem")));
-//
-// Stacks - Each core has one
-//
-char tftf_nonsec_primary_stack[TFTF_PRIMARY_STACK_SIZE]
-__attribute__ ((aligned (PLATFORM_CACHE_LINE_SIZE),
- section("tftf_coherent_stacks")));
-char tftf_nonsec_secondary_stacks[PLATFORM_CORE_COUNT-1][TFTF_SECONDARY_STACK_SIZE]
-__attribute__ ((aligned (PLATFORM_CACHE_LINE_SIZE),
- section("tftf_coherent_stacks")));
#define GET_TASK(core_pos) (TFTF_TASK)mmio_read_64((UINTN)&(mp_task_entries[core_pos].task))