xref: /rk3399_ARM-atf/bl32/tsp/tsp.ld.S (revision 7593252cee8745bbf1b05deb2f4a5f742d36c412)
1/*
2 * Copyright (c) 2013-2017, ARM Limited and Contributors. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <platform_def.h>
8#include <xlat_tables_defs.h>
9
10OUTPUT_FORMAT(PLATFORM_LINKER_FORMAT)
11OUTPUT_ARCH(PLATFORM_LINKER_ARCH)
12ENTRY(tsp_entrypoint)
13
14
15MEMORY {
16    RAM (rwx): ORIGIN = TSP_SEC_MEM_BASE, LENGTH = TSP_SEC_MEM_SIZE
17}
18
19
20SECTIONS
21{
22    . = BL32_BASE;
23    ASSERT(. == ALIGN(PAGE_SIZE),
24           "BL32_BASE address is not aligned on a page boundary.")
25
26#if SEPARATE_CODE_AND_RODATA
27    .text . : {
28        __TEXT_START__ = .;
29        *tsp_entrypoint.o(.text*)
30        *(.text*)
31        *(.vectors)
32        . = NEXT(PAGE_SIZE);
33        __TEXT_END__ = .;
34    } >RAM
35
36    .rodata . : {
37        __RODATA_START__ = .;
38        *(.rodata*)
39        . = NEXT(PAGE_SIZE);
40        __RODATA_END__ = .;
41    } >RAM
42#else
43    ro . : {
44        __RO_START__ = .;
45        *tsp_entrypoint.o(.text*)
46        *(.text*)
47        *(.rodata*)
48        *(.vectors)
49        __RO_END_UNALIGNED__ = .;
50        /*
51         * Memory page(s) mapped to this section will be marked as
52         * read-only, executable.  No RW data from the next section must
53         * creep in.  Ensure the rest of the current memory page is unused.
54         */
55        . = NEXT(PAGE_SIZE);
56        __RO_END__ = .;
57    } >RAM
58#endif
59
60    /*
61     * Define a linker symbol to mark start of the RW memory area for this
62     * image.
63     */
64    __RW_START__ = . ;
65
66    .data . : {
67        __DATA_START__ = .;
68        *(.data*)
69        __DATA_END__ = .;
70    } >RAM
71
72#ifdef TSP_PROGBITS_LIMIT
73    ASSERT(. <= TSP_PROGBITS_LIMIT, "TSP progbits has exceeded its limit.")
74#endif
75
76    stacks (NOLOAD) : {
77        __STACKS_START__ = .;
78        *(tzfw_normal_stacks)
79        __STACKS_END__ = .;
80    } >RAM
81
82    /*
83     * The .bss section gets initialised to 0 at runtime.
84     * Its base address should be 16-byte aligned for better performance of the
85     * zero-initialization code.
86     */
87    .bss : ALIGN(16) {
88        __BSS_START__ = .;
89        *(SORT_BY_ALIGNMENT(.bss*))
90        *(COMMON)
91        __BSS_END__ = .;
92    } >RAM
93
94    /*
95     * The xlat_table section is for full, aligned page tables (4K).
96     * Removing them from .bss avoids forcing 4K alignment on
97     * the .bss section and eliminates the unecessary zero init
98     */
99    xlat_table (NOLOAD) : {
100        *(xlat_table)
101    } >RAM
102
103#if USE_COHERENT_MEM
104    /*
105     * The base address of the coherent memory section must be page-aligned (4K)
106     * to guarantee that the coherent data are stored on their own pages and
107     * are not mixed with normal data.  This is required to set up the correct
108     * memory attributes for the coherent data page tables.
109     */
110    coherent_ram (NOLOAD) : ALIGN(PAGE_SIZE) {
111        __COHERENT_RAM_START__ = .;
112        *(tzfw_coherent_mem)
113        __COHERENT_RAM_END_UNALIGNED__ = .;
114        /*
115         * Memory page(s) mapped to this section will be marked
116         * as device memory.  No other unexpected data must creep in.
117         * Ensure the rest of the current memory page is unused.
118         */
119        . = NEXT(PAGE_SIZE);
120        __COHERENT_RAM_END__ = .;
121    } >RAM
122#endif
123
124    /*
125     * Define a linker symbol to mark the end of the RW memory area for this
126     * image.
127     */
128    __RW_END__ = .;
129    __BL32_END__ = .;
130
131    __BSS_SIZE__ = SIZEOF(.bss);
132#if USE_COHERENT_MEM
133    __COHERENT_RAM_UNALIGNED_SIZE__ =
134        __COHERENT_RAM_END_UNALIGNED__ - __COHERENT_RAM_START__;
135#endif
136
137    ASSERT(. <= BL32_LIMIT, "BL32 image has exceeded its limit.")
138}
139