xref: /rk3399_ARM-atf/bl32/sp_min/sp_min.ld.S (revision 09d40e0e08283a249e7dce0e106c07c5141f9b7e)
1c11ba852SSoby Mathew/*
2883d1b5dSAntonio Nino Diaz * Copyright (c) 2016-2018, ARM Limited and Contributors. All rights reserved.
3c11ba852SSoby Mathew *
482cb2c1aSdp-arm * SPDX-License-Identifier: BSD-3-Clause
5c11ba852SSoby Mathew */
6c11ba852SSoby Mathew
7c11ba852SSoby Mathew#include <platform_def.h>
8*09d40e0eSAntonio Nino Diaz
9*09d40e0eSAntonio Nino Diaz#include <lib/xlat_tables/xlat_tables_defs.h>
10c11ba852SSoby Mathew
11c11ba852SSoby MathewOUTPUT_FORMAT(elf32-littlearm)
12c11ba852SSoby MathewOUTPUT_ARCH(arm)
13c11ba852SSoby MathewENTRY(sp_min_vector_table)
14c11ba852SSoby Mathew
15c11ba852SSoby MathewMEMORY {
16c11ba852SSoby Mathew    RAM (rwx): ORIGIN = BL32_BASE, LENGTH = BL32_LIMIT - BL32_BASE
17c11ba852SSoby Mathew}
18c11ba852SSoby Mathew
19c11ba852SSoby Mathew
20c11ba852SSoby MathewSECTIONS
21c11ba852SSoby Mathew{
22c11ba852SSoby Mathew    . = BL32_BASE;
23a2aedac2SAntonio Nino Diaz   ASSERT(. == ALIGN(PAGE_SIZE),
24c11ba852SSoby Mathew          "BL32_BASE address is not aligned on a page boundary.")
25c11ba852SSoby Mathew
26c11ba852SSoby Mathew#if SEPARATE_CODE_AND_RODATA
27c11ba852SSoby Mathew    .text . : {
28c11ba852SSoby Mathew        __TEXT_START__ = .;
29c11ba852SSoby Mathew        *entrypoint.o(.text*)
30c11ba852SSoby Mathew        *(.text*)
313bdf0e5dSYatharth Kochar        *(.vectors)
325629b2b1SRoberto Vargas        . = ALIGN(PAGE_SIZE);
33c11ba852SSoby Mathew        __TEXT_END__ = .;
34c11ba852SSoby Mathew    } >RAM
35c11ba852SSoby Mathew
36ad925094SRoberto Vargas     /* .ARM.extab and .ARM.exidx are only added because Clang need them */
37ad925094SRoberto Vargas     .ARM.extab . : {
38ad925094SRoberto Vargas        *(.ARM.extab* .gnu.linkonce.armextab.*)
39ad925094SRoberto Vargas     } >RAM
40ad925094SRoberto Vargas
41ad925094SRoberto Vargas     .ARM.exidx . : {
42ad925094SRoberto Vargas        *(.ARM.exidx* .gnu.linkonce.armexidx.*)
43ad925094SRoberto Vargas     } >RAM
44ad925094SRoberto Vargas
45c11ba852SSoby Mathew    .rodata . : {
46c11ba852SSoby Mathew        __RODATA_START__ = .;
47c11ba852SSoby Mathew        *(.rodata*)
48c11ba852SSoby Mathew
49c11ba852SSoby Mathew        /* Ensure 4-byte alignment for descriptors and ensure inclusion */
50c11ba852SSoby Mathew        . = ALIGN(4);
51c11ba852SSoby Mathew        __RT_SVC_DESCS_START__ = .;
52c11ba852SSoby Mathew        KEEP(*(rt_svc_descs))
53c11ba852SSoby Mathew        __RT_SVC_DESCS_END__ = .;
54c11ba852SSoby Mathew
55c11ba852SSoby Mathew        /*
56c11ba852SSoby Mathew         * Ensure 4-byte alignment for cpu_ops so that its fields are also
57c11ba852SSoby Mathew         * aligned. Also ensure cpu_ops inclusion.
58c11ba852SSoby Mathew         */
59c11ba852SSoby Mathew        . = ALIGN(4);
60c11ba852SSoby Mathew        __CPU_OPS_START__ = .;
61c11ba852SSoby Mathew        KEEP(*(cpu_ops))
62c11ba852SSoby Mathew        __CPU_OPS_END__ = .;
63c11ba852SSoby Mathew
648e743bcdSJeenu Viswambharan        /* Place pubsub sections for events */
658e743bcdSJeenu Viswambharan        . = ALIGN(8);
66*09d40e0eSAntonio Nino Diaz#include <lib/el3_runtime/pubsub_events.h>
678e743bcdSJeenu Viswambharan
685629b2b1SRoberto Vargas        . = ALIGN(PAGE_SIZE);
69c11ba852SSoby Mathew        __RODATA_END__ = .;
70c11ba852SSoby Mathew    } >RAM
71c11ba852SSoby Mathew#else
72c11ba852SSoby Mathew    ro . : {
73c11ba852SSoby Mathew        __RO_START__ = .;
74c11ba852SSoby Mathew        *entrypoint.o(.text*)
75c11ba852SSoby Mathew        *(.text*)
76c11ba852SSoby Mathew        *(.rodata*)
77c11ba852SSoby Mathew
78c11ba852SSoby Mathew        /* Ensure 4-byte alignment for descriptors and ensure inclusion */
79c11ba852SSoby Mathew        . = ALIGN(4);
80c11ba852SSoby Mathew        __RT_SVC_DESCS_START__ = .;
81c11ba852SSoby Mathew        KEEP(*(rt_svc_descs))
82c11ba852SSoby Mathew        __RT_SVC_DESCS_END__ = .;
83c11ba852SSoby Mathew
84c11ba852SSoby Mathew        /*
85c11ba852SSoby Mathew         * Ensure 4-byte alignment for cpu_ops so that its fields are also
86c11ba852SSoby Mathew         * aligned. Also ensure cpu_ops inclusion.
87c11ba852SSoby Mathew         */
88c11ba852SSoby Mathew        . = ALIGN(4);
89c11ba852SSoby Mathew        __CPU_OPS_START__ = .;
90c11ba852SSoby Mathew        KEEP(*(cpu_ops))
91c11ba852SSoby Mathew        __CPU_OPS_END__ = .;
92c11ba852SSoby Mathew
938e743bcdSJeenu Viswambharan        /* Place pubsub sections for events */
948e743bcdSJeenu Viswambharan        . = ALIGN(8);
95*09d40e0eSAntonio Nino Diaz#include <lib/el3_runtime/pubsub_events.h>
968e743bcdSJeenu Viswambharan
973bdf0e5dSYatharth Kochar        *(.vectors)
98c11ba852SSoby Mathew        __RO_END_UNALIGNED__ = .;
99c11ba852SSoby Mathew
100c11ba852SSoby Mathew        /*
101c11ba852SSoby Mathew         * Memory page(s) mapped to this section will be marked as
102c11ba852SSoby Mathew         * read-only, executable.  No RW data from the next section must
103c11ba852SSoby Mathew         * creep in.  Ensure the rest of the current memory block is unused.
104c11ba852SSoby Mathew         */
1055629b2b1SRoberto Vargas        . = ALIGN(PAGE_SIZE);
106c11ba852SSoby Mathew        __RO_END__ = .;
107c11ba852SSoby Mathew    } >RAM
108c11ba852SSoby Mathew#endif
109c11ba852SSoby Mathew
110c11ba852SSoby Mathew    ASSERT(__CPU_OPS_END__ > __CPU_OPS_START__,
111c11ba852SSoby Mathew           "cpu_ops not defined for this platform.")
112c11ba852SSoby Mathew    /*
113c11ba852SSoby Mathew     * Define a linker symbol to mark start of the RW memory area for this
114c11ba852SSoby Mathew     * image.
115c11ba852SSoby Mathew     */
116c11ba852SSoby Mathew    __RW_START__ = . ;
117c11ba852SSoby Mathew
118c11ba852SSoby Mathew    .data . : {
119c11ba852SSoby Mathew        __DATA_START__ = .;
120c11ba852SSoby Mathew        *(.data*)
121c11ba852SSoby Mathew        __DATA_END__ = .;
122c11ba852SSoby Mathew    } >RAM
123c11ba852SSoby Mathew
1245744e874SSoby Mathew#ifdef BL32_PROGBITS_LIMIT
1255744e874SSoby Mathew    ASSERT(. <= BL32_PROGBITS_LIMIT, "BL32 progbits has exceeded its limit.")
1265744e874SSoby Mathew#endif
1275744e874SSoby Mathew
128c11ba852SSoby Mathew    stacks (NOLOAD) : {
129c11ba852SSoby Mathew        __STACKS_START__ = .;
130c11ba852SSoby Mathew        *(tzfw_normal_stacks)
131c11ba852SSoby Mathew        __STACKS_END__ = .;
132c11ba852SSoby Mathew    } >RAM
133c11ba852SSoby Mathew
134c11ba852SSoby Mathew    /*
135c11ba852SSoby Mathew     * The .bss section gets initialised to 0 at runtime.
136308d359bSDouglas Raillard     * Its base address should be 8-byte aligned for better performance of the
137308d359bSDouglas Raillard     * zero-initialization code.
138c11ba852SSoby Mathew     */
139308d359bSDouglas Raillard    .bss (NOLOAD) : ALIGN(8) {
140c11ba852SSoby Mathew        __BSS_START__ = .;
141c11ba852SSoby Mathew        *(.bss*)
142c11ba852SSoby Mathew        *(COMMON)
143c11ba852SSoby Mathew#if !USE_COHERENT_MEM
144c11ba852SSoby Mathew        /*
145c11ba852SSoby Mathew         * Bakery locks are stored in normal .bss memory
146c11ba852SSoby Mathew         *
147c11ba852SSoby Mathew         * Each lock's data is spread across multiple cache lines, one per CPU,
148c11ba852SSoby Mathew         * but multiple locks can share the same cache line.
149c11ba852SSoby Mathew         * The compiler will allocate enough memory for one CPU's bakery locks,
150c11ba852SSoby Mathew         * the remaining cache lines are allocated by the linker script
151c11ba852SSoby Mathew         */
152c11ba852SSoby Mathew        . = ALIGN(CACHE_WRITEBACK_GRANULE);
153c11ba852SSoby Mathew        __BAKERY_LOCK_START__ = .;
154c11ba852SSoby Mathew        *(bakery_lock)
155c11ba852SSoby Mathew        . = ALIGN(CACHE_WRITEBACK_GRANULE);
156c11ba852SSoby Mathew        __PERCPU_BAKERY_LOCK_SIZE__ = ABSOLUTE(. - __BAKERY_LOCK_START__);
157c11ba852SSoby Mathew        . = . + (__PERCPU_BAKERY_LOCK_SIZE__ * (PLATFORM_CORE_COUNT - 1));
158c11ba852SSoby Mathew        __BAKERY_LOCK_END__ = .;
159c11ba852SSoby Mathew#ifdef PLAT_PERCPU_BAKERY_LOCK_SIZE
160c11ba852SSoby Mathew    ASSERT(__PERCPU_BAKERY_LOCK_SIZE__ == PLAT_PERCPU_BAKERY_LOCK_SIZE,
161c11ba852SSoby Mathew        "PLAT_PERCPU_BAKERY_LOCK_SIZE does not match bakery lock requirements");
162c11ba852SSoby Mathew#endif
163c11ba852SSoby Mathew#endif
164c11ba852SSoby Mathew
165c11ba852SSoby Mathew#if ENABLE_PMF
166c11ba852SSoby Mathew        /*
167c11ba852SSoby Mathew         * Time-stamps are stored in normal .bss memory
168c11ba852SSoby Mathew         *
169c11ba852SSoby Mathew         * The compiler will allocate enough memory for one CPU's time-stamps,
170c11ba852SSoby Mathew         * the remaining memory for other CPU's is allocated by the
171c11ba852SSoby Mathew         * linker script
172c11ba852SSoby Mathew         */
173c11ba852SSoby Mathew        . = ALIGN(CACHE_WRITEBACK_GRANULE);
174c11ba852SSoby Mathew        __PMF_TIMESTAMP_START__ = .;
175c11ba852SSoby Mathew        KEEP(*(pmf_timestamp_array))
176c11ba852SSoby Mathew        . = ALIGN(CACHE_WRITEBACK_GRANULE);
177c11ba852SSoby Mathew        __PMF_PERCPU_TIMESTAMP_END__ = .;
178c11ba852SSoby Mathew        __PERCPU_TIMESTAMP_SIZE__ = ABSOLUTE(. - __PMF_TIMESTAMP_START__);
179c11ba852SSoby Mathew        . = . + (__PERCPU_TIMESTAMP_SIZE__ * (PLATFORM_CORE_COUNT - 1));
180c11ba852SSoby Mathew        __PMF_TIMESTAMP_END__ = .;
181c11ba852SSoby Mathew#endif /* ENABLE_PMF */
182c11ba852SSoby Mathew
183c11ba852SSoby Mathew        __BSS_END__ = .;
184c11ba852SSoby Mathew    } >RAM
185c11ba852SSoby Mathew
186c11ba852SSoby Mathew    /*
187c11ba852SSoby Mathew     * The xlat_table section is for full, aligned page tables (4K).
188c11ba852SSoby Mathew     * Removing them from .bss avoids forcing 4K alignment on
189883d1b5dSAntonio Nino Diaz     * the .bss section. The tables are initialized to zero by the translation
190883d1b5dSAntonio Nino Diaz     * tables library.
191c11ba852SSoby Mathew     */
192c11ba852SSoby Mathew    xlat_table (NOLOAD) : {
193c11ba852SSoby Mathew        *(xlat_table)
194c11ba852SSoby Mathew    } >RAM
195c11ba852SSoby Mathew
196c11ba852SSoby Mathew     __BSS_SIZE__ = SIZEOF(.bss);
197c11ba852SSoby Mathew
198c11ba852SSoby Mathew#if USE_COHERENT_MEM
199c11ba852SSoby Mathew    /*
200c11ba852SSoby Mathew     * The base address of the coherent memory section must be page-aligned (4K)
201c11ba852SSoby Mathew     * to guarantee that the coherent data are stored on their own pages and
202c11ba852SSoby Mathew     * are not mixed with normal data.  This is required to set up the correct
203c11ba852SSoby Mathew     * memory attributes for the coherent data page tables.
204c11ba852SSoby Mathew     */
205a2aedac2SAntonio Nino Diaz    coherent_ram (NOLOAD) : ALIGN(PAGE_SIZE) {
206c11ba852SSoby Mathew        __COHERENT_RAM_START__ = .;
207c11ba852SSoby Mathew        /*
208c11ba852SSoby Mathew         * Bakery locks are stored in coherent memory
209c11ba852SSoby Mathew         *
210c11ba852SSoby Mathew         * Each lock's data is contiguous and fully allocated by the compiler
211c11ba852SSoby Mathew         */
212c11ba852SSoby Mathew        *(bakery_lock)
213c11ba852SSoby Mathew        *(tzfw_coherent_mem)
214c11ba852SSoby Mathew        __COHERENT_RAM_END_UNALIGNED__ = .;
215c11ba852SSoby Mathew        /*
216c11ba852SSoby Mathew         * Memory page(s) mapped to this section will be marked
217c11ba852SSoby Mathew         * as device memory.  No other unexpected data must creep in.
218c11ba852SSoby Mathew         * Ensure the rest of the current memory page is unused.
219c11ba852SSoby Mathew         */
2205629b2b1SRoberto Vargas        . = ALIGN(PAGE_SIZE);
221c11ba852SSoby Mathew        __COHERENT_RAM_END__ = .;
222c11ba852SSoby Mathew    } >RAM
223c11ba852SSoby Mathew
224c11ba852SSoby Mathew    __COHERENT_RAM_UNALIGNED_SIZE__ =
225c11ba852SSoby Mathew        __COHERENT_RAM_END_UNALIGNED__ - __COHERENT_RAM_START__;
226c11ba852SSoby Mathew#endif
227c11ba852SSoby Mathew
228c11ba852SSoby Mathew    /*
229c11ba852SSoby Mathew     * Define a linker symbol to mark end of the RW memory area for this
230c11ba852SSoby Mathew     * image.
231c11ba852SSoby Mathew     */
232c11ba852SSoby Mathew    __RW_END__ = .;
233c11ba852SSoby Mathew
234c11ba852SSoby Mathew   __BL32_END__ = .;
235c11ba852SSoby Mathew}
236