diff options
Diffstat (limited to 'lib/chibios-contrib/ext/mcux-sdk/devices/K32L3A60/gcc/K32L3A60xxx_cm0plus_flash.ld')
-rw-r--r-- | lib/chibios-contrib/ext/mcux-sdk/devices/K32L3A60/gcc/K32L3A60xxx_cm0plus_flash.ld | 228 |
1 files changed, 228 insertions, 0 deletions
diff --git a/lib/chibios-contrib/ext/mcux-sdk/devices/K32L3A60/gcc/K32L3A60xxx_cm0plus_flash.ld b/lib/chibios-contrib/ext/mcux-sdk/devices/K32L3A60/gcc/K32L3A60xxx_cm0plus_flash.ld new file mode 100644 index 000000000..d57855a11 --- /dev/null +++ b/lib/chibios-contrib/ext/mcux-sdk/devices/K32L3A60/gcc/K32L3A60xxx_cm0plus_flash.ld | |||
@@ -0,0 +1,228 @@ | |||
1 | /* | ||
2 | ** ################################################################### | ||
3 | ** Processor: K32L3A60VPJ1A_cm0plus | ||
4 | ** Compiler: GNU C Compiler | ||
5 | ** Reference manual: K32L3ARM, Rev. 0 , 05/2019 | ||
6 | ** Version: rev. 1.0, 2019-04-22 | ||
7 | ** Build: b200723 | ||
8 | ** | ||
9 | ** Abstract: | ||
10 | ** Linker file for the GNU C Compiler | ||
11 | ** | ||
12 | ** Copyright 2016 Freescale Semiconductor, Inc. | ||
13 | ** Copyright 2016-2020 NXP | ||
14 | ** All rights reserved. | ||
15 | ** | ||
16 | ** SPDX-License-Identifier: BSD-3-Clause | ||
17 | ** | ||
18 | ** http: www.nxp.com | ||
19 | ** mail: [email protected] | ||
20 | ** | ||
21 | ** ################################################################### | ||
22 | */ | ||
23 | |||
24 | /* Entry Point */ | ||
25 | ENTRY(Reset_Handler) | ||
26 | |||
27 | HEAP_SIZE = DEFINED(__heap_size__) ? __heap_size__ : 0x0400; | ||
28 | STACK_SIZE = DEFINED(__stack_size__) ? __stack_size__ : 0x0400; | ||
29 | RPMSG_SHMEM_SIZE = DEFINED(__use_shmem__) ? 0x1800 : 0; | ||
30 | |||
31 | /* Specify the memory areas */ | ||
32 | MEMORY | ||
33 | { | ||
34 | m_interrupts (RX) : ORIGIN = 0x01000000, LENGTH = 0x00000140 | ||
35 | m_text (RX) : ORIGIN = 0x01000140, LENGTH = 0x0003FEC0 | ||
36 | m_data (RW) : ORIGIN = 0x09000000, LENGTH = 0x00020000 | ||
37 | rpmsg_sh_mem (RW) : ORIGIN = 0x2002E800, LENGTH = RPMSG_SHMEM_SIZE | ||
38 | m_usb_sram (RW) : ORIGIN = 0x48010000, LENGTH = 0x00000800 | ||
39 | } | ||
40 | |||
41 | /* Define output sections */ | ||
42 | SECTIONS | ||
43 | { | ||
44 | /* NOINIT section for rpmsg_sh_mem */ | ||
45 | .noinit_rpmsg_sh_mem (NOLOAD) : ALIGN(4) | ||
46 | { | ||
47 | __RPMSG_SH_MEM_START__ = .; | ||
48 | *(.noinit.$rpmsg_sh_mem*) | ||
49 | . = ALIGN(4) ; | ||
50 | __RPMSG_SH_MEM_END__ = .; | ||
51 | } > rpmsg_sh_mem | ||
52 | |||
53 | /* The startup code goes first into internal flash */ | ||
54 | .interrupts : | ||
55 | { | ||
56 | . = ALIGN(4); | ||
57 | KEEP(*(.isr_vector)) /* Startup code */ | ||
58 | . = ALIGN(4); | ||
59 | } > m_interrupts | ||
60 | |||
61 | /* The program code and other data goes into internal flash */ | ||
62 | .text : | ||
63 | { | ||
64 | . = ALIGN(4); | ||
65 | *(.text) /* .text sections (code) */ | ||
66 | *(.text*) /* .text* sections (code) */ | ||
67 | *(.rodata) /* .rodata sections (constants, strings, etc.) */ | ||
68 | *(.rodata*) /* .rodata* sections (constants, strings, etc.) */ | ||
69 | *(.glue_7) /* glue arm to thumb code */ | ||
70 | *(.glue_7t) /* glue thumb to arm code */ | ||
71 | *(.eh_frame) | ||
72 | KEEP (*(.init)) | ||
73 | KEEP (*(.fini)) | ||
74 | . = ALIGN(4); | ||
75 | } > m_text | ||
76 | |||
77 | .ARM.extab : | ||
78 | { | ||
79 | *(.ARM.extab* .gnu.linkonce.armextab.*) | ||
80 | } > m_text | ||
81 | |||
82 | .ARM : | ||
83 | { | ||
84 | __exidx_start = .; | ||
85 | *(.ARM.exidx*) | ||
86 | __exidx_end = .; | ||
87 | } > m_text | ||
88 | |||
89 | .ctors : | ||
90 | { | ||
91 | __CTOR_LIST__ = .; | ||
92 | /* gcc uses crtbegin.o to find the start of | ||
93 | the constructors, so we make sure it is | ||
94 | first. Because this is a wildcard, it | ||
95 | doesn't matter if the user does not | ||
96 | actually link against crtbegin.o; the | ||
97 | linker won't look for a file to match a | ||
98 | wildcard. The wildcard also means that it | ||
99 | doesn't matter which directory crtbegin.o | ||
100 | is in. */ | ||
101 | KEEP (*crtbegin.o(.ctors)) | ||
102 | KEEP (*crtbegin?.o(.ctors)) | ||
103 | /* We don't want to include the .ctor section from | ||
104 | from the crtend.o file until after the sorted ctors. | ||
105 | The .ctor section from the crtend file contains the | ||
106 | end of ctors marker and it must be last */ | ||
107 | KEEP (*(EXCLUDE_FILE(*crtend?.o *crtend.o) .ctors)) | ||
108 | KEEP (*(SORT(.ctors.*))) | ||
109 | KEEP (*(.ctors)) | ||
110 | __CTOR_END__ = .; | ||
111 | } > m_text | ||
112 | |||
113 | .dtors : | ||
114 | { | ||
115 | __DTOR_LIST__ = .; | ||
116 | KEEP (*crtbegin.o(.dtors)) | ||
117 | KEEP (*crtbegin?.o(.dtors)) | ||
118 | KEEP (*(EXCLUDE_FILE(*crtend?.o *crtend.o) .dtors)) | ||
119 | KEEP (*(SORT(.dtors.*))) | ||
120 | KEEP (*(.dtors)) | ||
121 | __DTOR_END__ = .; | ||
122 | } > m_text | ||
123 | |||
124 | .preinit_array : | ||
125 | { | ||
126 | PROVIDE_HIDDEN (__preinit_array_start = .); | ||
127 | KEEP (*(.preinit_array*)) | ||
128 | PROVIDE_HIDDEN (__preinit_array_end = .); | ||
129 | } > m_text | ||
130 | |||
131 | .init_array : | ||
132 | { | ||
133 | PROVIDE_HIDDEN (__init_array_start = .); | ||
134 | KEEP (*(SORT(.init_array.*))) | ||
135 | KEEP (*(.init_array*)) | ||
136 | PROVIDE_HIDDEN (__init_array_end = .); | ||
137 | } > m_text | ||
138 | |||
139 | .fini_array : | ||
140 | { | ||
141 | PROVIDE_HIDDEN (__fini_array_start = .); | ||
142 | KEEP (*(SORT(.fini_array.*))) | ||
143 | KEEP (*(.fini_array*)) | ||
144 | PROVIDE_HIDDEN (__fini_array_end = .); | ||
145 | } > m_text | ||
146 | |||
147 | __etext = .; /* define a global symbol at end of code */ | ||
148 | __DATA_ROM = .; /* Symbol is used by startup for data initialization */ | ||
149 | |||
150 | /* reserve MTB memory at the beginning of m_data */ | ||
151 | .mtb : /* MTB buffer address as defined by the hardware */ | ||
152 | { | ||
153 | . = ALIGN(8); | ||
154 | _mtb_start = .; | ||
155 | KEEP(*(.mtb_buf)) /* need to KEEP Micro Trace Buffer as not referenced by application */ | ||
156 | . = ALIGN(8); | ||
157 | _mtb_end = .; | ||
158 | } > m_data | ||
159 | |||
160 | .data : AT(__DATA_ROM) | ||
161 | { | ||
162 | . = ALIGN(4); | ||
163 | __DATA_RAM = .; | ||
164 | __data_start__ = .; /* create a global symbol at data start */ | ||
165 | *(.data) /* .data sections */ | ||
166 | *(.data*) /* .data* sections */ | ||
167 | KEEP(*(.jcr*)) | ||
168 | . = ALIGN(4); | ||
169 | __data_end__ = .; /* define a global symbol at data end */ | ||
170 | } > m_data | ||
171 | |||
172 | __DATA_END = __DATA_ROM + (__data_end__ - __data_start__); | ||
173 | text_end = ORIGIN(m_text) + LENGTH(m_text); | ||
174 | ASSERT(__DATA_END <= text_end, "region m_text overflowed with text and data") | ||
175 | |||
176 | /* Uninitialized data section */ | ||
177 | .bss : | ||
178 | { | ||
179 | /* This is used by the startup in order to initialize the .bss section */ | ||
180 | . = ALIGN(4); | ||
181 | __START_BSS = .; | ||
182 | __bss_start__ = .; | ||
183 | *(.bss) | ||
184 | *(.bss*) | ||
185 | *(COMMON) | ||
186 | . = ALIGN(4); | ||
187 | __bss_end__ = .; | ||
188 | __END_BSS = .; | ||
189 | } > m_data | ||
190 | |||
191 | .heap : | ||
192 | { | ||
193 | . = ALIGN(8); | ||
194 | __end__ = .; | ||
195 | PROVIDE(end = .); | ||
196 | __HeapBase = .; | ||
197 | . += HEAP_SIZE; | ||
198 | __HeapLimit = .; | ||
199 | __heap_limit = .; /* Add for _sbrk */ | ||
200 | } > m_data | ||
201 | |||
202 | .stack : | ||
203 | { | ||
204 | . = ALIGN(8); | ||
205 | . += STACK_SIZE; | ||
206 | } > m_data | ||
207 | |||
208 | m_usb_bdt (NOLOAD) : | ||
209 | { | ||
210 | . = ALIGN(512); | ||
211 | *(m_usb_bdt) | ||
212 | } > m_usb_sram | ||
213 | |||
214 | m_usb_global (NOLOAD) : | ||
215 | { | ||
216 | *(m_usb_global) | ||
217 | } > m_usb_sram | ||
218 | |||
219 | /* Initializes stack on the end of block */ | ||
220 | __StackTop = ORIGIN(m_data) + LENGTH(m_data); | ||
221 | __StackLimit = __StackTop - STACK_SIZE; | ||
222 | PROVIDE(__stack = __StackTop); | ||
223 | |||
224 | .ARM.attributes 0 : { *(.ARM.attributes) } | ||
225 | |||
226 | ASSERT(__StackLimit >= __HeapLimit, "region m_data overflowed with stack and heap") | ||
227 | } | ||
228 | |||