blob: 475affae41ad9b2665e16dae3f9a90d38e2a2952 [file] [log] [blame]
Soby Mathewec8ac1c2016-05-05 14:32:05 +01001/*
Yann Gautier514e59c2020-10-05 11:02:54 +02002 * Copyright (c) 2016-2021, ARM Limited and Contributors. All rights reserved.
Soby Mathewec8ac1c2016-05-05 14:32:05 +01003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Soby Mathewec8ac1c2016-05-05 14:32:05 +01005 */
6
Masahiro Yamada0b67e562020-03-09 17:39:48 +09007#include <common/bl_common.ld.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00008#include <lib/xlat_tables/xlat_tables_defs.h>
Soby Mathewec8ac1c2016-05-05 14:32:05 +01009
10OUTPUT_FORMAT(elf32-littlearm)
11OUTPUT_ARCH(arm)
12ENTRY(sp_min_vector_table)
13
14MEMORY {
15 RAM (rwx): ORIGIN = BL32_BASE, LENGTH = BL32_LIMIT - BL32_BASE
16}
17
Heiko Stuebner95ba3552019-04-11 15:26:07 +020018#ifdef PLAT_SP_MIN_EXTRA_LD_SCRIPT
19#include <plat_sp_min.ld.S>
20#endif
Soby Mathewec8ac1c2016-05-05 14:32:05 +010021
22SECTIONS
23{
24 . = BL32_BASE;
Yann Gautier876be652020-10-05 09:54:09 +020025 ASSERT(. == ALIGN(PAGE_SIZE),
26 "BL32_BASE address is not aligned on a page boundary.")
Soby Mathewec8ac1c2016-05-05 14:32:05 +010027
28#if SEPARATE_CODE_AND_RODATA
29 .text . : {
30 __TEXT_START__ = .;
31 *entrypoint.o(.text*)
Yann Gautier876be652020-10-05 09:54:09 +020032 *(SORT_BY_ALIGNMENT(.text*))
Yatharth Kochar06460cd2016-06-30 15:02:31 +010033 *(.vectors)
Roberto Vargasd93fde32018-04-11 11:53:31 +010034 . = ALIGN(PAGE_SIZE);
Soby Mathewec8ac1c2016-05-05 14:32:05 +010035 __TEXT_END__ = .;
36 } >RAM
37
Roberto Vargas1d04c632018-05-10 11:01:16 +010038 /* .ARM.extab and .ARM.exidx are only added because Clang need them */
39 .ARM.extab . : {
40 *(.ARM.extab* .gnu.linkonce.armextab.*)
41 } >RAM
42
43 .ARM.exidx . : {
44 *(.ARM.exidx* .gnu.linkonce.armexidx.*)
45 } >RAM
46
Soby Mathewec8ac1c2016-05-05 14:32:05 +010047 .rodata . : {
48 __RODATA_START__ = .;
Yann Gautier876be652020-10-05 09:54:09 +020049 *(SORT_BY_ALIGNMENT(.rodata*))
Soby Mathewec8ac1c2016-05-05 14:32:05 +010050
Masahiro Yamada583f8dd2020-03-26 10:57:12 +090051 RODATA_COMMON
Soby Mathewec8ac1c2016-05-05 14:32:05 +010052
Jeenu Viswambharane3f22002017-09-22 08:32:10 +010053 /* Place pubsub sections for events */
54 . = ALIGN(8);
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000055#include <lib/el3_runtime/pubsub_events.h>
Jeenu Viswambharane3f22002017-09-22 08:32:10 +010056
Roberto Vargasd93fde32018-04-11 11:53:31 +010057 . = ALIGN(PAGE_SIZE);
Soby Mathewec8ac1c2016-05-05 14:32:05 +010058 __RODATA_END__ = .;
59 } >RAM
60#else
61 ro . : {
62 __RO_START__ = .;
63 *entrypoint.o(.text*)
Yann Gautier876be652020-10-05 09:54:09 +020064 *(SORT_BY_ALIGNMENT(.text*))
65 *(SORT_BY_ALIGNMENT(.rodata*))
Soby Mathewec8ac1c2016-05-05 14:32:05 +010066
Masahiro Yamada583f8dd2020-03-26 10:57:12 +090067 RODATA_COMMON
Soby Mathewec8ac1c2016-05-05 14:32:05 +010068
Jeenu Viswambharane3f22002017-09-22 08:32:10 +010069 /* Place pubsub sections for events */
70 . = ALIGN(8);
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000071#include <lib/el3_runtime/pubsub_events.h>
Jeenu Viswambharane3f22002017-09-22 08:32:10 +010072
Yatharth Kochar06460cd2016-06-30 15:02:31 +010073 *(.vectors)
Soby Mathewec8ac1c2016-05-05 14:32:05 +010074 __RO_END_UNALIGNED__ = .;
75
76 /*
77 * Memory page(s) mapped to this section will be marked as
78 * read-only, executable. No RW data from the next section must
Yann Gautier876be652020-10-05 09:54:09 +020079 * creep in. Ensure the rest of the current memory page is unused.
Soby Mathewec8ac1c2016-05-05 14:32:05 +010080 */
Roberto Vargasd93fde32018-04-11 11:53:31 +010081 . = ALIGN(PAGE_SIZE);
Soby Mathewec8ac1c2016-05-05 14:32:05 +010082 __RO_END__ = .;
83 } >RAM
84#endif
85
86 ASSERT(__CPU_OPS_END__ > __CPU_OPS_START__,
87 "cpu_ops not defined for this platform.")
88 /*
89 * Define a linker symbol to mark start of the RW memory area for this
90 * image.
91 */
92 __RW_START__ = . ;
93
Masahiro Yamadac5864d82020-04-22 10:50:12 +090094 DATA_SECTION >RAM
Yann Gautier514e59c2020-10-05 11:02:54 +020095 RELA_SECTION >RAM
Soby Mathewec8ac1c2016-05-05 14:32:05 +010096
Soby Mathewbf169232017-11-14 14:10:10 +000097#ifdef BL32_PROGBITS_LIMIT
98 ASSERT(. <= BL32_PROGBITS_LIMIT, "BL32 progbits has exceeded its limit.")
99#endif
100
Masahiro Yamada403990e2020-04-07 13:04:24 +0900101 STACK_SECTION >RAM
Masahiro Yamadadd053b62020-03-26 13:16:33 +0900102 BSS_SECTION >RAM
Masahiro Yamada0b67e562020-03-09 17:39:48 +0900103 XLAT_TABLE_SECTION >RAM
Soby Mathewec8ac1c2016-05-05 14:32:05 +0100104
105 __BSS_SIZE__ = SIZEOF(.bss);
106
107#if USE_COHERENT_MEM
108 /*
109 * The base address of the coherent memory section must be page-aligned (4K)
110 * to guarantee that the coherent data are stored on their own pages and
111 * are not mixed with normal data. This is required to set up the correct
112 * memory attributes for the coherent data page tables.
113 */
Antonio Nino Diaz2ce2b092017-11-15 11:45:35 +0000114 coherent_ram (NOLOAD) : ALIGN(PAGE_SIZE) {
Soby Mathewec8ac1c2016-05-05 14:32:05 +0100115 __COHERENT_RAM_START__ = .;
116 /*
117 * Bakery locks are stored in coherent memory
118 *
119 * Each lock's data is contiguous and fully allocated by the compiler
120 */
121 *(bakery_lock)
122 *(tzfw_coherent_mem)
123 __COHERENT_RAM_END_UNALIGNED__ = .;
124 /*
125 * Memory page(s) mapped to this section will be marked
126 * as device memory. No other unexpected data must creep in.
127 * Ensure the rest of the current memory page is unused.
128 */
Roberto Vargasd93fde32018-04-11 11:53:31 +0100129 . = ALIGN(PAGE_SIZE);
Soby Mathewec8ac1c2016-05-05 14:32:05 +0100130 __COHERENT_RAM_END__ = .;
131 } >RAM
132
133 __COHERENT_RAM_UNALIGNED_SIZE__ =
134 __COHERENT_RAM_END_UNALIGNED__ - __COHERENT_RAM_START__;
135#endif
136
137 /*
Yann Gautier876be652020-10-05 09:54:09 +0200138 * Define a linker symbol to mark the end of the RW memory area for this
Soby Mathewec8ac1c2016-05-05 14:32:05 +0100139 * image.
140 */
141 __RW_END__ = .;
142
Yann Gautier876be652020-10-05 09:54:09 +0200143 __BL32_END__ = .;
Yann Gautier1b4d6ae2020-10-05 11:39:19 +0200144
Yann Gautier514e59c2020-10-05 11:02:54 +0200145 /DISCARD/ : {
146 *(.dynsym .dynstr .hash .gnu.hash)
147 }
148
Yann Gautier1b4d6ae2020-10-05 11:39:19 +0200149 ASSERT(. <= BL32_LIMIT, "BL32 image has exceeded its limit.")
Soby Mathewec8ac1c2016-05-05 14:32:05 +0100150}