xref: /rk3399_ARM-atf/bl32/sp_min/sp_min.ld.S (revision 8e743bcd6a69bce2ac782319951061c69798558d)
1c11ba852SSoby Mathew/*
2308d359bSDouglas Raillard * Copyright (c) 2016-2017, 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>
8c11ba852SSoby Mathew
9c11ba852SSoby MathewOUTPUT_FORMAT(elf32-littlearm)
10c11ba852SSoby MathewOUTPUT_ARCH(arm)
11c11ba852SSoby MathewENTRY(sp_min_vector_table)
12c11ba852SSoby Mathew
13c11ba852SSoby MathewMEMORY {
14c11ba852SSoby Mathew    RAM (rwx): ORIGIN = BL32_BASE, LENGTH = BL32_LIMIT - BL32_BASE
15c11ba852SSoby Mathew}
16c11ba852SSoby Mathew
17c11ba852SSoby Mathew
18c11ba852SSoby MathewSECTIONS
19c11ba852SSoby Mathew{
20c11ba852SSoby Mathew    . = BL32_BASE;
21c11ba852SSoby Mathew   ASSERT(. == ALIGN(4096),
22c11ba852SSoby Mathew          "BL32_BASE address is not aligned on a page boundary.")
23c11ba852SSoby Mathew
24c11ba852SSoby Mathew#if SEPARATE_CODE_AND_RODATA
25c11ba852SSoby Mathew    .text . : {
26c11ba852SSoby Mathew        __TEXT_START__ = .;
27c11ba852SSoby Mathew        *entrypoint.o(.text*)
28c11ba852SSoby Mathew        *(.text*)
293bdf0e5dSYatharth Kochar        *(.vectors)
30c11ba852SSoby Mathew        . = NEXT(4096);
31c11ba852SSoby Mathew        __TEXT_END__ = .;
32c11ba852SSoby Mathew    } >RAM
33c11ba852SSoby Mathew
34c11ba852SSoby Mathew    .rodata . : {
35c11ba852SSoby Mathew        __RODATA_START__ = .;
36c11ba852SSoby Mathew        *(.rodata*)
37c11ba852SSoby Mathew
38c11ba852SSoby Mathew        /* Ensure 4-byte alignment for descriptors and ensure inclusion */
39c11ba852SSoby Mathew        . = ALIGN(4);
40c11ba852SSoby Mathew        __RT_SVC_DESCS_START__ = .;
41c11ba852SSoby Mathew        KEEP(*(rt_svc_descs))
42c11ba852SSoby Mathew        __RT_SVC_DESCS_END__ = .;
43c11ba852SSoby Mathew
44c11ba852SSoby Mathew        /*
45c11ba852SSoby Mathew         * Ensure 4-byte alignment for cpu_ops so that its fields are also
46c11ba852SSoby Mathew         * aligned. Also ensure cpu_ops inclusion.
47c11ba852SSoby Mathew         */
48c11ba852SSoby Mathew        . = ALIGN(4);
49c11ba852SSoby Mathew        __CPU_OPS_START__ = .;
50c11ba852SSoby Mathew        KEEP(*(cpu_ops))
51c11ba852SSoby Mathew        __CPU_OPS_END__ = .;
52c11ba852SSoby Mathew
53*8e743bcdSJeenu Viswambharan        /* Place pubsub sections for events */
54*8e743bcdSJeenu Viswambharan        . = ALIGN(8);
55*8e743bcdSJeenu Viswambharan#include <pubsub_events.h>
56*8e743bcdSJeenu Viswambharan
57c11ba852SSoby Mathew        . = NEXT(4096);
58c11ba852SSoby Mathew        __RODATA_END__ = .;
59c11ba852SSoby Mathew    } >RAM
60c11ba852SSoby Mathew#else
61c11ba852SSoby Mathew    ro . : {
62c11ba852SSoby Mathew        __RO_START__ = .;
63c11ba852SSoby Mathew        *entrypoint.o(.text*)
64c11ba852SSoby Mathew        *(.text*)
65c11ba852SSoby Mathew        *(.rodata*)
66c11ba852SSoby Mathew
67c11ba852SSoby Mathew        /* Ensure 4-byte alignment for descriptors and ensure inclusion */
68c11ba852SSoby Mathew        . = ALIGN(4);
69c11ba852SSoby Mathew        __RT_SVC_DESCS_START__ = .;
70c11ba852SSoby Mathew        KEEP(*(rt_svc_descs))
71c11ba852SSoby Mathew        __RT_SVC_DESCS_END__ = .;
72c11ba852SSoby Mathew
73c11ba852SSoby Mathew        /*
74c11ba852SSoby Mathew         * Ensure 4-byte alignment for cpu_ops so that its fields are also
75c11ba852SSoby Mathew         * aligned. Also ensure cpu_ops inclusion.
76c11ba852SSoby Mathew         */
77c11ba852SSoby Mathew        . = ALIGN(4);
78c11ba852SSoby Mathew        __CPU_OPS_START__ = .;
79c11ba852SSoby Mathew        KEEP(*(cpu_ops))
80c11ba852SSoby Mathew        __CPU_OPS_END__ = .;
81c11ba852SSoby Mathew
82*8e743bcdSJeenu Viswambharan        /* Place pubsub sections for events */
83*8e743bcdSJeenu Viswambharan        . = ALIGN(8);
84*8e743bcdSJeenu Viswambharan#include <pubsub_events.h>
85*8e743bcdSJeenu Viswambharan
863bdf0e5dSYatharth Kochar        *(.vectors)
87c11ba852SSoby Mathew        __RO_END_UNALIGNED__ = .;
88c11ba852SSoby Mathew
89c11ba852SSoby Mathew        /*
90c11ba852SSoby Mathew         * Memory page(s) mapped to this section will be marked as
91c11ba852SSoby Mathew         * read-only, executable.  No RW data from the next section must
92c11ba852SSoby Mathew         * creep in.  Ensure the rest of the current memory block is unused.
93c11ba852SSoby Mathew         */
94c11ba852SSoby Mathew        . = NEXT(4096);
95c11ba852SSoby Mathew        __RO_END__ = .;
96c11ba852SSoby Mathew    } >RAM
97c11ba852SSoby Mathew#endif
98c11ba852SSoby Mathew
99c11ba852SSoby Mathew    ASSERT(__CPU_OPS_END__ > __CPU_OPS_START__,
100c11ba852SSoby Mathew           "cpu_ops not defined for this platform.")
101c11ba852SSoby Mathew    /*
102c11ba852SSoby Mathew     * Define a linker symbol to mark start of the RW memory area for this
103c11ba852SSoby Mathew     * image.
104c11ba852SSoby Mathew     */
105c11ba852SSoby Mathew    __RW_START__ = . ;
106c11ba852SSoby Mathew
107c11ba852SSoby Mathew    .data . : {
108c11ba852SSoby Mathew        __DATA_START__ = .;
109c11ba852SSoby Mathew        *(.data*)
110c11ba852SSoby Mathew        __DATA_END__ = .;
111c11ba852SSoby Mathew    } >RAM
112c11ba852SSoby Mathew
113c11ba852SSoby Mathew    stacks (NOLOAD) : {
114c11ba852SSoby Mathew        __STACKS_START__ = .;
115c11ba852SSoby Mathew        *(tzfw_normal_stacks)
116c11ba852SSoby Mathew        __STACKS_END__ = .;
117c11ba852SSoby Mathew    } >RAM
118c11ba852SSoby Mathew
119c11ba852SSoby Mathew    /*
120c11ba852SSoby Mathew     * The .bss section gets initialised to 0 at runtime.
121308d359bSDouglas Raillard     * Its base address should be 8-byte aligned for better performance of the
122308d359bSDouglas Raillard     * zero-initialization code.
123c11ba852SSoby Mathew     */
124308d359bSDouglas Raillard    .bss (NOLOAD) : ALIGN(8) {
125c11ba852SSoby Mathew        __BSS_START__ = .;
126c11ba852SSoby Mathew        *(.bss*)
127c11ba852SSoby Mathew        *(COMMON)
128c11ba852SSoby Mathew#if !USE_COHERENT_MEM
129c11ba852SSoby Mathew        /*
130c11ba852SSoby Mathew         * Bakery locks are stored in normal .bss memory
131c11ba852SSoby Mathew         *
132c11ba852SSoby Mathew         * Each lock's data is spread across multiple cache lines, one per CPU,
133c11ba852SSoby Mathew         * but multiple locks can share the same cache line.
134c11ba852SSoby Mathew         * The compiler will allocate enough memory for one CPU's bakery locks,
135c11ba852SSoby Mathew         * the remaining cache lines are allocated by the linker script
136c11ba852SSoby Mathew         */
137c11ba852SSoby Mathew        . = ALIGN(CACHE_WRITEBACK_GRANULE);
138c11ba852SSoby Mathew        __BAKERY_LOCK_START__ = .;
139c11ba852SSoby Mathew        *(bakery_lock)
140c11ba852SSoby Mathew        . = ALIGN(CACHE_WRITEBACK_GRANULE);
141c11ba852SSoby Mathew        __PERCPU_BAKERY_LOCK_SIZE__ = ABSOLUTE(. - __BAKERY_LOCK_START__);
142c11ba852SSoby Mathew        . = . + (__PERCPU_BAKERY_LOCK_SIZE__ * (PLATFORM_CORE_COUNT - 1));
143c11ba852SSoby Mathew        __BAKERY_LOCK_END__ = .;
144c11ba852SSoby Mathew#ifdef PLAT_PERCPU_BAKERY_LOCK_SIZE
145c11ba852SSoby Mathew    ASSERT(__PERCPU_BAKERY_LOCK_SIZE__ == PLAT_PERCPU_BAKERY_LOCK_SIZE,
146c11ba852SSoby Mathew        "PLAT_PERCPU_BAKERY_LOCK_SIZE does not match bakery lock requirements");
147c11ba852SSoby Mathew#endif
148c11ba852SSoby Mathew#endif
149c11ba852SSoby Mathew
150c11ba852SSoby Mathew#if ENABLE_PMF
151c11ba852SSoby Mathew        /*
152c11ba852SSoby Mathew         * Time-stamps are stored in normal .bss memory
153c11ba852SSoby Mathew         *
154c11ba852SSoby Mathew         * The compiler will allocate enough memory for one CPU's time-stamps,
155c11ba852SSoby Mathew         * the remaining memory for other CPU's is allocated by the
156c11ba852SSoby Mathew         * linker script
157c11ba852SSoby Mathew         */
158c11ba852SSoby Mathew        . = ALIGN(CACHE_WRITEBACK_GRANULE);
159c11ba852SSoby Mathew        __PMF_TIMESTAMP_START__ = .;
160c11ba852SSoby Mathew        KEEP(*(pmf_timestamp_array))
161c11ba852SSoby Mathew        . = ALIGN(CACHE_WRITEBACK_GRANULE);
162c11ba852SSoby Mathew        __PMF_PERCPU_TIMESTAMP_END__ = .;
163c11ba852SSoby Mathew        __PERCPU_TIMESTAMP_SIZE__ = ABSOLUTE(. - __PMF_TIMESTAMP_START__);
164c11ba852SSoby Mathew        . = . + (__PERCPU_TIMESTAMP_SIZE__ * (PLATFORM_CORE_COUNT - 1));
165c11ba852SSoby Mathew        __PMF_TIMESTAMP_END__ = .;
166c11ba852SSoby Mathew#endif /* ENABLE_PMF */
167c11ba852SSoby Mathew
168c11ba852SSoby Mathew        __BSS_END__ = .;
169c11ba852SSoby Mathew    } >RAM
170c11ba852SSoby Mathew
171c11ba852SSoby Mathew    /*
172c11ba852SSoby Mathew     * The xlat_table section is for full, aligned page tables (4K).
173c11ba852SSoby Mathew     * Removing them from .bss avoids forcing 4K alignment on
174c11ba852SSoby Mathew     * the .bss section and eliminates the unecessary zero init
175c11ba852SSoby Mathew     */
176c11ba852SSoby Mathew    xlat_table (NOLOAD) : {
177c11ba852SSoby Mathew        *(xlat_table)
178c11ba852SSoby Mathew    } >RAM
179c11ba852SSoby Mathew
180c11ba852SSoby Mathew     __BSS_SIZE__ = SIZEOF(.bss);
181c11ba852SSoby Mathew
182c11ba852SSoby Mathew#if USE_COHERENT_MEM
183c11ba852SSoby Mathew    /*
184c11ba852SSoby Mathew     * The base address of the coherent memory section must be page-aligned (4K)
185c11ba852SSoby Mathew     * to guarantee that the coherent data are stored on their own pages and
186c11ba852SSoby Mathew     * are not mixed with normal data.  This is required to set up the correct
187c11ba852SSoby Mathew     * memory attributes for the coherent data page tables.
188c11ba852SSoby Mathew     */
189c11ba852SSoby Mathew    coherent_ram (NOLOAD) : ALIGN(4096) {
190c11ba852SSoby Mathew        __COHERENT_RAM_START__ = .;
191c11ba852SSoby Mathew        /*
192c11ba852SSoby Mathew         * Bakery locks are stored in coherent memory
193c11ba852SSoby Mathew         *
194c11ba852SSoby Mathew         * Each lock's data is contiguous and fully allocated by the compiler
195c11ba852SSoby Mathew         */
196c11ba852SSoby Mathew        *(bakery_lock)
197c11ba852SSoby Mathew        *(tzfw_coherent_mem)
198c11ba852SSoby Mathew        __COHERENT_RAM_END_UNALIGNED__ = .;
199c11ba852SSoby Mathew        /*
200c11ba852SSoby Mathew         * Memory page(s) mapped to this section will be marked
201c11ba852SSoby Mathew         * as device memory.  No other unexpected data must creep in.
202c11ba852SSoby Mathew         * Ensure the rest of the current memory page is unused.
203c11ba852SSoby Mathew         */
204c11ba852SSoby Mathew        . = NEXT(4096);
205c11ba852SSoby Mathew        __COHERENT_RAM_END__ = .;
206c11ba852SSoby Mathew    } >RAM
207c11ba852SSoby Mathew
208c11ba852SSoby Mathew    __COHERENT_RAM_UNALIGNED_SIZE__ =
209c11ba852SSoby Mathew        __COHERENT_RAM_END_UNALIGNED__ - __COHERENT_RAM_START__;
210c11ba852SSoby Mathew#endif
211c11ba852SSoby Mathew
212c11ba852SSoby Mathew    /*
213c11ba852SSoby Mathew     * Define a linker symbol to mark end of the RW memory area for this
214c11ba852SSoby Mathew     * image.
215c11ba852SSoby Mathew     */
216c11ba852SSoby Mathew    __RW_END__ = .;
217c11ba852SSoby Mathew
218c11ba852SSoby Mathew   __BL32_END__ = .;
219c11ba852SSoby Mathew}
220