blob: 3e31512109f9c198c355f9497dc11ad54fdd2c05 [file] [log] [blame]
Chris Zankel5a0015d2005-06-23 22:01:16 -07001/*
2 * arch/xtensa/kernel/vmlinux.lds.S
3 *
4 * Xtensa linker script
5 *
6 * This file is subject to the terms and conditions of the GNU General Public
7 * License. See the file "COPYING" in the main directory of this archive
8 * for more details.
9 *
10 * Copyright (C) 2001 - 2005 Tensilica Inc.
11 *
12 * Chris Zankel <chris@zankel.net>
13 * Marc Gauthier <marc@tensilica.com, marc@alumni.uwaterloo.ca>
14 * Joe Taylor <joe@tensilica.com, joetylr@yahoo.com>
15 */
16
17#include <asm-generic/vmlinux.lds.h>
18
Chris Zankel173d6682006-12-10 02:18:48 -080019#include <asm/variant/core.h>
Chris Zankel5a0015d2005-06-23 22:01:16 -070020OUTPUT_ARCH(xtensa)
21ENTRY(_start)
22
Chris Zankel173d6682006-12-10 02:18:48 -080023#ifdef __XTENSA_EB__
Chris Zankel5a0015d2005-06-23 22:01:16 -070024jiffies = jiffies_64 + 4;
25#else
26jiffies = jiffies_64;
27#endif
28
Chris Zankel173d6682006-12-10 02:18:48 -080029#define KERNELOFFSET 0xd0001000
Chris Zankel5a0015d2005-06-23 22:01:16 -070030
31/* Note: In the following macros, it would be nice to specify only the
32 vector name and section kind and construct "sym" and "section" using
33 CPP concatenation, but that does not work reliably. Concatenating a
34 string with "." produces an invalid token. CPP will not print a
35 warning because it thinks this is an assembly file, but it leaves
36 them as multiple tokens and there may or may not be whitespace
37 between them. */
38
39/* Macro for a relocation entry */
40
41#define RELOCATE_ENTRY(sym, section) \
42 LONG(sym ## _start); \
43 LONG(sym ## _end); \
44 LONG(LOADADDR(section))
45
46/* Macro to define a section for a vector.
47 *
48 * Use of the MIN function catches the types of errors illustrated in
49 * the following example:
50 *
51 * Assume the section .DoubleExceptionVector.literal is completely
52 * full. Then a programmer adds code to .DoubleExceptionVector.text
53 * that produces another literal. The final literal position will
54 * overlay onto the first word of the adjacent code section
55 * .DoubleExceptionVector.text. (In practice, the literals will
56 * overwrite the code, and the first few instructions will be
57 * garbage.)
58 */
59
60#define SECTION_VECTOR(sym, section, addr, max_prevsec_size, prevsec) \
61 section addr : AT((MIN(LOADADDR(prevsec) + max_prevsec_size, \
62 LOADADDR(prevsec) + SIZEOF(prevsec)) + 3) & ~ 3) \
63 { \
64 . = ALIGN(4); \
65 sym ## _start = ABSOLUTE(.); \
66 *(section) \
67 sym ## _end = ABSOLUTE(.); \
68 }
69
70/*
71 * Mapping of input sections to output sections when linking.
72 */
73
74SECTIONS
75{
Chris Zankel173d6682006-12-10 02:18:48 -080076 . = KERNELOFFSET;
Chris Zankel5a0015d2005-06-23 22:01:16 -070077 /* .text section */
78
79 _text = .;
80 _stext = .;
81 _ftext = .;
82
83 .text :
84 {
85 /* The .head.text section must be the first section! */
86 *(.head.text)
Chris Zankelde4f6e52007-05-31 17:47:01 -070087 *(.literal .text)
Chris Zankel5a0015d2005-06-23 22:01:16 -070088 VMLINUX_SYMBOL(__sched_text_start) = .;
Chris Zankel813e6782005-07-12 13:58:25 -070089 *(.sched.literal .sched.text)
Chris Zankel5a0015d2005-06-23 22:01:16 -070090 VMLINUX_SYMBOL(__sched_text_end) = .;
91 VMLINUX_SYMBOL(__lock_text_start) = .;
Chris Zankel813e6782005-07-12 13:58:25 -070092 *(.spinlock.literal .spinlock.text)
Chris Zankel5a0015d2005-06-23 22:01:16 -070093 VMLINUX_SYMBOL(__lock_text_end) = .;
94
95 }
96 _etext = .;
Chris Zankelde4f6e52007-05-31 17:47:01 -070097 PROVIDE (etext = .);
Chris Zankel5a0015d2005-06-23 22:01:16 -070098
99 . = ALIGN(16);
100
101 RODATA
102
103 /* Relocation table */
104
Chris Zankel5a0015d2005-06-23 22:01:16 -0700105 .fixup : { *(.fixup) }
106
107 . = ALIGN(16);
108
109 __ex_table : {
110 __start___ex_table = .;
111 *(__ex_table)
112 __stop___ex_table = .;
113 }
114
115 /* Data section */
116
117 . = ALIGN(XCHAL_ICACHE_LINESIZE);
118 _fdata = .;
119 .data :
120 {
Chris Zankelde4f6e52007-05-31 17:47:01 -0700121 *(.data) CONSTRUCTORS
Chris Zankel5a0015d2005-06-23 22:01:16 -0700122 . = ALIGN(XCHAL_ICACHE_LINESIZE);
123 *(.data.cacheline_aligned)
124 }
125
126 _edata = .;
127
128 /* The initial task */
129 . = ALIGN(8192);
130 .data.init_task : { *(.data.init_task) }
131
132 /* Initialization code and data: */
133
Chris Zankel173d6682006-12-10 02:18:48 -0800134 . = ALIGN(1 << 12);
Chris Zankel5a0015d2005-06-23 22:01:16 -0700135 __init_begin = .;
136 .init.text : {
137 _sinittext = .;
Chris Zankel813e6782005-07-12 13:58:25 -0700138 *(.init.literal) *(.init.text)
Chris Zankel5a0015d2005-06-23 22:01:16 -0700139 _einittext = .;
140 }
141
142 .init.data :
143 {
144 *(.init.data)
145 . = ALIGN(0x4);
146 __tagtable_begin = .;
147 *(.taglist)
148 __tagtable_end = .;
Chris Zankelde4f6e52007-05-31 17:47:01 -0700149
150 . = ALIGN(16);
151 __boot_reloc_table_start = ABSOLUTE(.);
152
153 RELOCATE_ENTRY(_WindowVectors_text,
154 .WindowVectors.text);
155 RELOCATE_ENTRY(_KernelExceptionVector_text,
156 .KernelExceptionVector.text);
157 RELOCATE_ENTRY(_UserExceptionVector_text,
158 .UserExceptionVector.text);
159 RELOCATE_ENTRY(_DoubleExceptionVector_literal,
160 .DoubleExceptionVector.literal);
161 RELOCATE_ENTRY(_DoubleExceptionVector_text,
162 .DoubleExceptionVector.text);
163
164 __boot_reloc_table_end = ABSOLUTE(.) ;
Chris Zankel5a0015d2005-06-23 22:01:16 -0700165 }
166
167 . = ALIGN(XCHAL_ICACHE_LINESIZE);
168
169 __setup_start = .;
170 .init.setup : { *(.init.setup) }
171 __setup_end = .;
172
173 __initcall_start = .;
174 .initcall.init : {
Andrew Morton61ce1ef2006-10-27 11:41:44 -0700175 INITCALLS
Chris Zankel5a0015d2005-06-23 22:01:16 -0700176 }
177 __initcall_end = .;
178
179 __con_initcall_start = .;
180 .con_initcall.init : { *(.con_initcall.init) }
181 __con_initcall_end = .;
182
183 SECURITY_INIT
184
Chris Zankel5a0015d2005-06-23 22:01:16 -0700185
Jean-Paul Saman67d38222007-02-10 01:44:44 -0800186#ifdef CONFIG_BLK_DEV_INITRD
Chris Zankel5a0015d2005-06-23 22:01:16 -0700187 . = ALIGN(4096);
188 __initramfs_start =.;
189 .init.ramfs : { *(.init.ramfs) }
190 __initramfs_end = .;
Jean-Paul Saman67d38222007-02-10 01:44:44 -0800191#endif
Chris Zankel5a0015d2005-06-23 22:01:16 -0700192
Fenghua Yu5fb7dc32007-07-19 01:48:12 -0700193 PERCPU(4096)
Chris Zankelde4f6e52007-05-31 17:47:01 -0700194
195
Chris Zankel5a0015d2005-06-23 22:01:16 -0700196 /* We need this dummy segment here */
197
198 . = ALIGN(4);
199 .dummy : { LONG(0) }
200
201 /* The vectors are relocated to the real position at startup time */
202
203 SECTION_VECTOR (_WindowVectors_text,
204 .WindowVectors.text,
205 XCHAL_WINDOW_VECTORS_VADDR, 4,
206 .dummy)
207 SECTION_VECTOR (_DebugInterruptVector_literal,
208 .DebugInterruptVector.literal,
Chris Zankel173d6682006-12-10 02:18:48 -0800209 XCHAL_DEBUG_VECTOR_VADDR - 4,
Chris Zankel5a0015d2005-06-23 22:01:16 -0700210 SIZEOF(.WindowVectors.text),
211 .WindowVectors.text)
212 SECTION_VECTOR (_DebugInterruptVector_text,
213 .DebugInterruptVector.text,
Chris Zankel173d6682006-12-10 02:18:48 -0800214 XCHAL_DEBUG_VECTOR_VADDR,
Chris Zankel5a0015d2005-06-23 22:01:16 -0700215 4,
216 .DebugInterruptVector.literal)
217 SECTION_VECTOR (_KernelExceptionVector_literal,
218 .KernelExceptionVector.literal,
Chris Zankel173d6682006-12-10 02:18:48 -0800219 XCHAL_KERNEL_VECTOR_VADDR - 4,
Chris Zankel5a0015d2005-06-23 22:01:16 -0700220 SIZEOF(.DebugInterruptVector.text),
221 .DebugInterruptVector.text)
222 SECTION_VECTOR (_KernelExceptionVector_text,
223 .KernelExceptionVector.text,
Chris Zankel173d6682006-12-10 02:18:48 -0800224 XCHAL_KERNEL_VECTOR_VADDR,
Chris Zankel5a0015d2005-06-23 22:01:16 -0700225 4,
226 .KernelExceptionVector.literal)
227 SECTION_VECTOR (_UserExceptionVector_literal,
228 .UserExceptionVector.literal,
Chris Zankel173d6682006-12-10 02:18:48 -0800229 XCHAL_USER_VECTOR_VADDR - 4,
Chris Zankel5a0015d2005-06-23 22:01:16 -0700230 SIZEOF(.KernelExceptionVector.text),
231 .KernelExceptionVector.text)
232 SECTION_VECTOR (_UserExceptionVector_text,
233 .UserExceptionVector.text,
Chris Zankel173d6682006-12-10 02:18:48 -0800234 XCHAL_USER_VECTOR_VADDR,
Chris Zankel5a0015d2005-06-23 22:01:16 -0700235 4,
236 .UserExceptionVector.literal)
237 SECTION_VECTOR (_DoubleExceptionVector_literal,
238 .DoubleExceptionVector.literal,
239 XCHAL_DOUBLEEXC_VECTOR_VADDR - 16,
240 SIZEOF(.UserExceptionVector.text),
241 .UserExceptionVector.text)
242 SECTION_VECTOR (_DoubleExceptionVector_text,
243 .DoubleExceptionVector.text,
244 XCHAL_DOUBLEEXC_VECTOR_VADDR,
245 32,
246 .DoubleExceptionVector.literal)
247
248 . = (LOADADDR( .DoubleExceptionVector.text ) + SIZEOF( .DoubleExceptionVector.text ) + 3) & ~ 3;
Chris Zankel173d6682006-12-10 02:18:48 -0800249 . = ALIGN(1 << 12);
Chris Zankel5a0015d2005-06-23 22:01:16 -0700250
251 __init_end = .;
252
253 . = ALIGN(8192);
254
255 /* BSS section */
256 _bss_start = .;
Chris Zankelde4f6e52007-05-31 17:47:01 -0700257 .bss : { *(.bss.page_aligned) *(.bss) }
Chris Zankel5a0015d2005-06-23 22:01:16 -0700258 _bss_end = .;
Chris Zankelde4f6e52007-05-31 17:47:01 -0700259
Chris Zankel5a0015d2005-06-23 22:01:16 -0700260 _end = .;
261
262 /* only used by the boot loader */
263
264 . = ALIGN(0x10);
265 .bootstrap : { *(.bootstrap.literal .bootstrap.text .bootstrap.data) }
266
267 . = ALIGN(0x1000);
268 __initrd_start = .;
269 .initrd : { *(.initrd) }
270 __initrd_end = .;
271
272 .ResetVector.text XCHAL_RESET_VECTOR_VADDR :
273 {
274 *(.ResetVector.text)
275 }
276
Chris Zankel5a0015d2005-06-23 22:01:16 -0700277 /* Sections to be discarded */
278 /DISCARD/ :
279 {
Chris Zankelde4f6e52007-05-31 17:47:01 -0700280 *(.exit.literal .exit.text)
281 *(.exit.data)
Chris Zankel5a0015d2005-06-23 22:01:16 -0700282 *(.exitcall.exit)
283 }
284
Chris Zankelde4f6e52007-05-31 17:47:01 -0700285 .xt.lit : { *(.xt.lit) }
286 .xt.prop : { *(.xt.prop) }
Chris Zankel5a0015d2005-06-23 22:01:16 -0700287
288 .debug 0 : { *(.debug) }
289 .line 0 : { *(.line) }
290 .debug_srcinfo 0 : { *(.debug_srcinfo) }
291 .debug_sfnames 0 : { *(.debug_sfnames) }
292 .debug_aranges 0 : { *(.debug_aranges) }
293 .debug_pubnames 0 : { *(.debug_pubnames) }
294 .debug_info 0 : { *(.debug_info) }
295 .debug_abbrev 0 : { *(.debug_abbrev) }
296 .debug_line 0 : { *(.debug_line) }
297 .debug_frame 0 : { *(.debug_frame) }
298 .debug_str 0 : { *(.debug_str) }
299 .debug_loc 0 : { *(.debug_loc) }
300 .debug_macinfo 0 : { *(.debug_macinfo) }
301 .debug_weaknames 0 : { *(.debug_weaknames) }
302 .debug_funcnames 0 : { *(.debug_funcnames) }
303 .debug_typenames 0 : { *(.debug_typenames) }
304 .debug_varnames 0 : { *(.debug_varnames) }
305
306 .xt.insn 0 :
307 {
308 *(.xt.insn)
309 *(.gnu.linkonce.x*)
310 }
311
312 .xt.lit 0 :
313 {
314 *(.xt.lit)
315 *(.gnu.linkonce.p*)
316 }
317}