-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathkernel.ld
More file actions
138 lines (121 loc) · 2.78 KB
/
Copy pathkernel.ld
File metadata and controls
138 lines (121 loc) · 2.78 KB
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
/* Specify the memory areas */
MEMORY
{
RAM(xrw): ORIGIN = 0x81000000, LENGTH = 0x01000000
DMARAM(xrw): ORIGIN = 0xa3000000, LENGTH = 0x01000000
}
/* Entry Point */
ENTRY(_entry)
__stack_size__ = 16 * 1024;
__heap_size__ = 16 * 1024;
/* Define output sections */
SECTIONS
{
/* The program code and other data goes into TEXT */
.text :
{
. = ALIGN(4);
*(.text) /* .text sections (code) */
*(.text*) /* .text* sections (code) */
*(.glue_7) /* glue arm to thumb code */
*(.glue_7t) /* glue thumb to arm code */
*(.eh_frame)
KEEP(*(.init))
KEEP(*(.fini))
. = ALIGN(4);
_etext = .; /* define a global symbols at end of code */
} >RAM
/* Constant data goes into TEXT */
.rodata :
{
. = ALIGN(4);
*(.rodata) /* .rodata sections (constants, strings, etc.) */
*(.rodata*) /* .rodata* sections (constants, strings, etc.) */
. = ALIGN(4);
} >RAM
.preinit_array :
{
PROVIDE_HIDDEN (__preinit_array_start = .);
KEEP(*(.preinit_array*))
PROVIDE_HIDDEN (__preinit_array_end = .);
} >RAM
.init_array :
{
PROVIDE_HIDDEN (__init_array_start = .);
KEEP(*(SORT(.init_array.*)))
KEEP(*(.init_array*))
PROVIDE_HIDDEN (__init_array_end = .);
} >RAM
.fini_array :
{
PROVIDE_HIDDEN (__fini_array_start = .);
KEEP(*(SORT(.fini_array.*)))
KEEP(*(.fini_array*))
PROVIDE_HIDDEN (__fini_array_end = .);
} >RAM
/* Initialized data sections goes into RAM, load LMA copy after code */
. = ALIGN(4);
/* used by the startup to initialize data */
__data_load__ = LOADADDR(.data);
.data :
{
__data_start__ = .;
. = ALIGN(4);
*(.data) /* .data sections */
*(.data*) /* .data* sections */
/* Special program code inside RAM */
*(.ram)
*(.ram*)
. = ALIGN(4);
__data_end__ = .;
} >RAM
/* Uninitialized data section */
. = ALIGN(4);
.bss (NOLOAD) :
{
/* This is used by the startup in order to initialize the .bss secion */
__bss_start__ = .;
*(.bss)
*(.bss*)
*(COMMON)
. = ALIGN(4);
__bss_end__ = .;
} >RAM
/* Heap section */
. = ALIGN(4);
.heap (NOLOAD) :
{
. = ALIGN(4);
__stack_start__ = .;
/* Reserve space */
. += __stack_size__;
. = ALIGN(4);
__stack_end__ = .;
} >RAM
/* Heap section */
. = ALIGN(4);
.heap (NOLOAD) :
{
. = ALIGN(4);
__heap_start__ = .;
/* Reserve space */
. += __heap_size__;
. = ALIGN(4);
__heap_end__ = .;
} >RAM
/* Special uncached DMA ram */
.dma (NOLOAD):
{
. = ALIGN(16);
*(.dma)
*(.dma*)
} >DMARAM
/* Remove information from the standard libraries */
/DISCARD/ :
{
libc.a ( * )
libm.a ( * )
libgcc.a ( * )
*(.olist.*)
}
}