summaryrefslogtreecommitdiff
path: root/bl31/head_data.c
diff options
context:
space:
mode:
authorAndre Przywara <andre.przywara@arm.com>2016-05-01 22:50:27 +0100
committerAndre Przywara <andre.przywara@arm.com>2016-06-02 01:29:47 +0100
commitb0ff32bc4142aecfb71234c602e9bd4b1c020ebb (patch)
tree93b86ab9d0384ba833851821cd2cfdd261de734c /bl31/head_data.c
parent44633abadb46ecf9bf661591e48a88f3e2d652ec (diff)
bl31: remove no longer needed boot0 header
As ATF now lives in SRAM, we can't load it directly as the ATF binary anymore (it would always be loaded into DRAM then). Instead we disguise it as the SCP, which does not require a specific boot0 header. Remove all the code that was prefixing the binary with the boot0 header (which was a bit misplaced in generic code anyway). Signed-off-by: Andre Przywara <andre.przywara@arm.com>
Diffstat (limited to 'bl31/head_data.c')
-rw-r--r--bl31/head_data.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/bl31/head_data.c b/bl31/head_data.c
deleted file mode 100644
index ebb3b9e..0000000
--- a/bl31/head_data.c
+++ /dev/null
@@ -1,22 +0,0 @@
-/*
- *
- * Header for semelis
- *
- */
-
-#include <head_data.h>
-#include <platform_def.h>
-
-struct spare_boot_ctrl_head
-monitor_head __attribute__ ((section(".head_data"))) =
-{
- (0x14000000 | ((sizeof(struct spare_boot_ctrl_head) / sizeof(int)) & 0x00FFFFFF)),
- "monitor",
- 0,
- 0,
- 0,
- 0,
- "2.0",
- "monitor",
- {BL31_BASE}
-};