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