-
Notifications
You must be signed in to change notification settings - Fork 1
/
linker_script_ch32v103x8_nodebug.ld
192 lines (160 loc) · 4.73 KB
/
linker_script_ch32v103x8_nodebug.ld
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
/*!****************************************************************************
* @file
* linker_script_ch32v103x8_nodebug.ld
*
* @brief
* Default linker script for CH32V103x8 application code.
*
* @note
* THIS LINKER CONFIGURATION DOES NOT PROVISION A DEBUGGER IVT
*
* @date 30.03.2023
* @date 02.10.2023 Added unused glue_7/glue_7t selectors
******************************************************************************/
/* Entry Point assignment */
ENTRY( _start )
/* Reserved bootloader space at the start of FLASH */
__boot_size = 0;
/* Stack and heap memory size definitions */
__min_heap_size = 0; /* Minimum required heap size */
__stack_size = 2048; /* Reserved stack size */
/* Memories definition */
MEMORY
{
FLASH (rx) : ORIGIN = 0x00000000 + __boot_size,
LENGTH = 64K - __boot_size
RAM (xrw) : ORIGIN = 0x20000000,
LENGTH = 20K
}
/* Sections definition */
SECTIONS
{
/* Debugger Init at start of FLASH */
.init :
{
. = ALIGN(4);
_sinit = .;
KEEP(*(SORT_NONE(.init)))
. = ALIGN(4);
_einit = .;
} >FLASH_DBG
/* Interrupt Vector Table at start of app memory */
.isr_vector :
{
. = ALIGN(4);
KEEP( *(.isr_vector))
KEEP( *(.isr_vector.*))
. = ALIGN(64);
} >FLASH
/* Code and read-only constants in FLASH memory */
.text :
{
. = ALIGN(4);
*(.text)
*(.text.*)
*(.rodata)
*(.rodata*)
*(.gnu.linkonce.t.*)
. = ALIGN(4);
} >FLASH
/* LibC init, constructors and destructors */
.fini :
{
KEEP(*(SORT_NONE(.fini)))
. = ALIGN(4);
} >FLASH
.preinit_array :
{
PROVIDE_HIDDEN (__preinit_array_start = .);
KEEP (*(.preinit_array))
PROVIDE_HIDDEN (__preinit_array_end = .);
} >FLASH
.init_array :
{
PROVIDE_HIDDEN (__init_array_start = .);
KEEP (*(SORT_BY_INIT_PRIORITY(.init_array.*) SORT_BY_INIT_PRIORITY(.ctors.*)))
KEEP (*(.init_array EXCLUDE_FILE (*crtbegin.o *crtbegin?.o *crtend.o *crtend?.o ) .ctors))
PROVIDE_HIDDEN (__init_array_end = .);
} >FLASH
.fini_array :
{
PROVIDE_HIDDEN (__fini_array_start = .);
KEEP (*(SORT_BY_INIT_PRIORITY(.fini_array.*) SORT_BY_INIT_PRIORITY(.dtors.*)))
KEEP (*(.fini_array EXCLUDE_FILE (*crtbegin.o *crtbegin?.o *crtend.o *crtend?.o ) .dtors))
PROVIDE_HIDDEN (__fini_array_end = .);
} >FLASH
.ctors :
{
KEEP (*crtbegin.o(.ctors))
KEEP (*crtbegin?.o(.ctors))
KEEP (*(EXCLUDE_FILE (*crtend.o *crtend?.o ) .ctors))
KEEP (*(SORT(.ctors.*)))
KEEP (*(.ctors))
} >FLASH
.dtors :
{
KEEP (*crtbegin.o(.dtors))
KEEP (*crtbegin?.o(.dtors))
KEEP (*(EXCLUDE_FILE (*crtend.o *crtend?.o ) .dtors))
KEEP (*(SORT(.dtors.*)))
KEEP (*(.dtors))
} >FLASH
/* Initialised data section */
.data :
{
. = ALIGN(4);
_sdata = .;
*(.gnu.linkonce.r.*)
*(.data .data.*)
*(.gnu.linkonce.d.*)
. = ALIGN(8);
*(.sdata .sdata.*)
*(.sdata2.*)
*(.gnu.linkonce.s.*)
. = ALIGN(8);
*(.srodata.cst16)
*(.srodata.cst8)
*(.srodata.cst4)
*(.srodata.cst2)
*(.srodata .srodata.*)
. = ALIGN(4);
_edata = .;
} >RAM AT>FLASH
/* Initialisation data location in FLASH */
_sidata = LOADADDR(.data);
/* Zero-initialised data section */
.bss (NOLOAD) :
{
. = ALIGN(4);
_sbss = .;
*(.sbss*)
*(.gnu.linkonce.sb.*)
*(.bss .bss.*)
*(.gnu.linkonce.b.*)
*(COMMON*)
. = ALIGN(4);
_ebss = .;
PROVIDE( end = . );
} >RAM
/* Calculate GP for maximum coverage */
__global_pointer$ = MIN(_sdata + 0x800, MAX(_sdata + 0x800, _ebss - 0x800));
/* Stack/Heap collision detection */
.heap (NOLOAD) :
{
. = ALIGN(4);
_sheap = .;
/* Calculate available heap size */
__avail_heap_size = LENGTH(RAM) - __stack_size - (_sheap - ORIGIN(RAM));
. = . + MAX(__min_heap_size, __avail_heap_size);
. = ALIGN(4);
_eheap = .;
} >RAM
/* Stack at the end of RAM */
.stack (NOLOAD) :
{
. = ALIGN(4);
_sstack = .;
. = . + __stack_size;
_estack = .;
} >RAM
}