blob: 31411fc82662c82ec127188ccdb5fc3ac818e4e9 [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 *
Marc Gauthier2d1c6452013-01-05 04:57:17 +040010 * Copyright (C) 2001 - 2008 Tensilica Inc.
Chris Zankel5a0015d2005-06-23 22:01:16 -070011 *
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>
Tim Abbottcd3db322009-09-24 10:36:19 -040018#include <asm/page.h>
19#include <asm/thread_info.h>
Chris Zankel5a0015d2005-06-23 22:01:16 -070020
Max Filippove85e3352012-12-03 15:01:43 +040021#include <asm/vectors.h>
Chris Zankel367b8112008-11-06 06:40:46 -080022#include <variant/core.h>
Johannes Weiner6770fa02009-03-04 16:21:32 +010023#include <platform/hardware.h>
Chris Zankel5a0015d2005-06-23 22:01:16 -070024OUTPUT_ARCH(xtensa)
25ENTRY(_start)
26
Chris Zankel173d66812006-12-10 02:18:48 -080027#ifdef __XTENSA_EB__
Chris Zankel5a0015d2005-06-23 22:01:16 -070028jiffies = jiffies_64 + 4;
29#else
30jiffies = jiffies_64;
31#endif
32
Chris Zankel5a0015d2005-06-23 22:01:16 -070033/* Note: In the following macros, it would be nice to specify only the
34 vector name and section kind and construct "sym" and "section" using
35 CPP concatenation, but that does not work reliably. Concatenating a
36 string with "." produces an invalid token. CPP will not print a
37 warning because it thinks this is an assembly file, but it leaves
38 them as multiple tokens and there may or may not be whitespace
39 between them. */
40
41/* Macro for a relocation entry */
42
43#define RELOCATE_ENTRY(sym, section) \
44 LONG(sym ## _start); \
45 LONG(sym ## _end); \
46 LONG(LOADADDR(section))
47
48/* Macro to define a section for a vector.
49 *
50 * Use of the MIN function catches the types of errors illustrated in
51 * the following example:
52 *
53 * Assume the section .DoubleExceptionVector.literal is completely
54 * full. Then a programmer adds code to .DoubleExceptionVector.text
55 * that produces another literal. The final literal position will
56 * overlay onto the first word of the adjacent code section
57 * .DoubleExceptionVector.text. (In practice, the literals will
58 * overwrite the code, and the first few instructions will be
59 * garbage.)
60 */
61
62#define SECTION_VECTOR(sym, section, addr, max_prevsec_size, prevsec) \
63 section addr : AT((MIN(LOADADDR(prevsec) + max_prevsec_size, \
64 LOADADDR(prevsec) + SIZEOF(prevsec)) + 3) & ~ 3) \
65 { \
66 . = ALIGN(4); \
67 sym ## _start = ABSOLUTE(.); \
68 *(section) \
69 sym ## _end = ABSOLUTE(.); \
70 }
71
72/*
73 * Mapping of input sections to output sections when linking.
74 */
75
76SECTIONS
77{
Chris Zankel173d66812006-12-10 02:18:48 -080078 . = KERNELOFFSET;
Chris Zankel5a0015d2005-06-23 22:01:16 -070079 /* .text section */
80
81 _text = .;
82 _stext = .;
Chris Zankel5a0015d2005-06-23 22:01:16 -070083
84 .text :
85 {
Tim Abbott0ebdcb42009-04-25 22:10:57 -040086 /* The HEAD_TEXT section must be the first section! */
87 HEAD_TEXT
Chris Zankel78f3cdf2009-04-21 00:34:15 -070088 TEXT_TEXT
Chris Zankel5a0015d2005-06-23 22:01:16 -070089 VMLINUX_SYMBOL(__sched_text_start) = .;
Chris Zankel813e6782005-07-12 13:58:25 -070090 *(.sched.literal .sched.text)
Chris Zankel5a0015d2005-06-23 22:01:16 -070091 VMLINUX_SYMBOL(__sched_text_end) = .;
Chris Metcalf6727ad92016-10-07 17:02:55 -070092 VMLINUX_SYMBOL(__cpuidle_text_start) = .;
93 *(.cpuidle.literal .cpuidle.text)
94 VMLINUX_SYMBOL(__cpuidle_text_end) = .;
Chris Zankel5a0015d2005-06-23 22:01:16 -070095 VMLINUX_SYMBOL(__lock_text_start) = .;
Chris Zankel813e6782005-07-12 13:58:25 -070096 *(.spinlock.literal .spinlock.text)
Chris Zankel5a0015d2005-06-23 22:01:16 -070097 VMLINUX_SYMBOL(__lock_text_end) = .;
98
99 }
100 _etext = .;
Chris Zankelde4f6e52007-05-31 17:47:01 -0700101 PROVIDE (etext = .);
Chris Zankel5a0015d2005-06-23 22:01:16 -0700102
103 . = ALIGN(16);
104
105 RODATA
106
107 /* Relocation table */
108
Chris Zankel5a0015d2005-06-23 22:01:16 -0700109 .fixup : { *(.fixup) }
110
Tim Abbottcd3db322009-09-24 10:36:19 -0400111 EXCEPTION_TABLE(16)
Chris Zankel5a0015d2005-06-23 22:01:16 -0700112 /* Data section */
113
Geert Uytterhoeven5e7b6ed2012-06-20 12:52:58 -0700114 _sdata = .;
Tim Abbottcd3db322009-09-24 10:36:19 -0400115 RW_DATA_SECTION(XCHAL_ICACHE_LINESIZE, PAGE_SIZE, THREAD_SIZE)
Chris Zankel5a0015d2005-06-23 22:01:16 -0700116 _edata = .;
117
Chris Zankel5a0015d2005-06-23 22:01:16 -0700118 /* Initialization code and data: */
119
Tim Abbottcd3db322009-09-24 10:36:19 -0400120 . = ALIGN(PAGE_SIZE);
Chris Zankel5a0015d2005-06-23 22:01:16 -0700121 __init_begin = .;
Tim Abbottcd3db322009-09-24 10:36:19 -0400122 INIT_TEXT_SECTION(PAGE_SIZE)
Chris Zankel5a0015d2005-06-23 22:01:16 -0700123
124 .init.data :
125 {
Sam Ravnborg01ba2bd2008-01-20 14:15:03 +0100126 INIT_DATA
Chris Zankel5a0015d2005-06-23 22:01:16 -0700127 . = ALIGN(0x4);
128 __tagtable_begin = .;
129 *(.taglist)
130 __tagtable_end = .;
Chris Zankelde4f6e52007-05-31 17:47:01 -0700131
132 . = ALIGN(16);
133 __boot_reloc_table_start = ABSOLUTE(.);
134
135 RELOCATE_ENTRY(_WindowVectors_text,
136 .WindowVectors.text);
Marc Gauthier2d1c6452013-01-05 04:57:17 +0400137#if XCHAL_EXCM_LEVEL >= 2
138 RELOCATE_ENTRY(_Level2InterruptVector_text,
139 .Level2InterruptVector.text);
140#endif
141#if XCHAL_EXCM_LEVEL >= 3
142 RELOCATE_ENTRY(_Level3InterruptVector_text,
143 .Level3InterruptVector.text);
144#endif
145#if XCHAL_EXCM_LEVEL >= 4
146 RELOCATE_ENTRY(_Level4InterruptVector_text,
147 .Level4InterruptVector.text);
148#endif
149#if XCHAL_EXCM_LEVEL >= 5
150 RELOCATE_ENTRY(_Level5InterruptVector_text,
151 .Level5InterruptVector.text);
152#endif
153#if XCHAL_EXCM_LEVEL >= 6
154 RELOCATE_ENTRY(_Level6InterruptVector_text,
155 .Level6InterruptVector.text);
156#endif
Chris Zankelde4f6e52007-05-31 17:47:01 -0700157 RELOCATE_ENTRY(_KernelExceptionVector_text,
158 .KernelExceptionVector.text);
159 RELOCATE_ENTRY(_UserExceptionVector_text,
160 .UserExceptionVector.text);
161 RELOCATE_ENTRY(_DoubleExceptionVector_literal,
162 .DoubleExceptionVector.literal);
163 RELOCATE_ENTRY(_DoubleExceptionVector_text,
164 .DoubleExceptionVector.text);
Marc Gauthier6d15d102007-12-30 22:00:54 -0800165 RELOCATE_ENTRY(_DebugInterruptVector_text,
166 .DebugInterruptVector.text);
Max Filippovf6151362013-10-17 02:42:26 +0400167#if defined(CONFIG_SMP)
Max Filippovf6151362013-10-17 02:42:26 +0400168 RELOCATE_ENTRY(_SecondaryResetVector_text,
169 .SecondaryResetVector.text);
170#endif
171
Chris Zankelde4f6e52007-05-31 17:47:01 -0700172
173 __boot_reloc_table_end = ABSOLUTE(.) ;
Tim Abbottcd3db322009-09-24 10:36:19 -0400174
175 INIT_SETUP(XCHAL_ICACHE_LINESIZE)
176 INIT_CALLS
177 CON_INITCALL
178 SECURITY_INITCALL
179 INIT_RAM_FS
Chris Zankel5a0015d2005-06-23 22:01:16 -0700180 }
181
Tejun Heo0415b00d12011-03-24 18:50:09 +0100182 PERCPU_SECTION(XCHAL_ICACHE_LINESIZE)
Chris Zankelde4f6e52007-05-31 17:47:01 -0700183
Chris Zankel5a0015d2005-06-23 22:01:16 -0700184 /* We need this dummy segment here */
185
186 . = ALIGN(4);
187 .dummy : { LONG(0) }
188
189 /* The vectors are relocated to the real position at startup time */
190
191 SECTION_VECTOR (_WindowVectors_text,
192 .WindowVectors.text,
Max Filippove85e3352012-12-03 15:01:43 +0400193 WINDOW_VECTORS_VADDR, 4,
Chris Zankel5a0015d2005-06-23 22:01:16 -0700194 .dummy)
195 SECTION_VECTOR (_DebugInterruptVector_literal,
196 .DebugInterruptVector.literal,
Max Filippove85e3352012-12-03 15:01:43 +0400197 DEBUG_VECTOR_VADDR - 4,
Chris Zankel5a0015d2005-06-23 22:01:16 -0700198 SIZEOF(.WindowVectors.text),
199 .WindowVectors.text)
200 SECTION_VECTOR (_DebugInterruptVector_text,
201 .DebugInterruptVector.text,
Max Filippove85e3352012-12-03 15:01:43 +0400202 DEBUG_VECTOR_VADDR,
Chris Zankel5a0015d2005-06-23 22:01:16 -0700203 4,
204 .DebugInterruptVector.literal)
Marc Gauthier2d1c6452013-01-05 04:57:17 +0400205#undef LAST
206#define LAST .DebugInterruptVector.text
207#if XCHAL_EXCM_LEVEL >= 2
208 SECTION_VECTOR (_Level2InterruptVector_text,
209 .Level2InterruptVector.text,
Max Filippove85e3352012-12-03 15:01:43 +0400210 INTLEVEL2_VECTOR_VADDR,
Marc Gauthier2d1c6452013-01-05 04:57:17 +0400211 SIZEOF(LAST), LAST)
212# undef LAST
213# define LAST .Level2InterruptVector.text
214#endif
215#if XCHAL_EXCM_LEVEL >= 3
216 SECTION_VECTOR (_Level3InterruptVector_text,
217 .Level3InterruptVector.text,
Max Filippove85e3352012-12-03 15:01:43 +0400218 INTLEVEL3_VECTOR_VADDR,
Marc Gauthier2d1c6452013-01-05 04:57:17 +0400219 SIZEOF(LAST), LAST)
220# undef LAST
221# define LAST .Level3InterruptVector.text
222#endif
223#if XCHAL_EXCM_LEVEL >= 4
224 SECTION_VECTOR (_Level4InterruptVector_text,
225 .Level4InterruptVector.text,
Max Filippove85e3352012-12-03 15:01:43 +0400226 INTLEVEL4_VECTOR_VADDR,
Marc Gauthier2d1c6452013-01-05 04:57:17 +0400227 SIZEOF(LAST), LAST)
228# undef LAST
229# define LAST .Level4InterruptVector.text
230#endif
231#if XCHAL_EXCM_LEVEL >= 5
232 SECTION_VECTOR (_Level5InterruptVector_text,
233 .Level5InterruptVector.text,
Max Filippove85e3352012-12-03 15:01:43 +0400234 INTLEVEL5_VECTOR_VADDR,
Marc Gauthier2d1c6452013-01-05 04:57:17 +0400235 SIZEOF(LAST), LAST)
236# undef LAST
237# define LAST .Level5InterruptVector.text
238#endif
239#if XCHAL_EXCM_LEVEL >= 6
240 SECTION_VECTOR (_Level6InterruptVector_text,
241 .Level6InterruptVector.text,
Max Filippove85e3352012-12-03 15:01:43 +0400242 INTLEVEL6_VECTOR_VADDR,
Marc Gauthier2d1c6452013-01-05 04:57:17 +0400243 SIZEOF(LAST), LAST)
244# undef LAST
245# define LAST .Level6InterruptVector.text
246#endif
Chris Zankel5a0015d2005-06-23 22:01:16 -0700247 SECTION_VECTOR (_KernelExceptionVector_literal,
248 .KernelExceptionVector.literal,
Max Filippove85e3352012-12-03 15:01:43 +0400249 KERNEL_VECTOR_VADDR - 4,
Marc Gauthier2d1c6452013-01-05 04:57:17 +0400250 SIZEOF(LAST), LAST)
251#undef LAST
Chris Zankel5a0015d2005-06-23 22:01:16 -0700252 SECTION_VECTOR (_KernelExceptionVector_text,
253 .KernelExceptionVector.text,
Max Filippove85e3352012-12-03 15:01:43 +0400254 KERNEL_VECTOR_VADDR,
Chris Zankel5a0015d2005-06-23 22:01:16 -0700255 4,
256 .KernelExceptionVector.literal)
257 SECTION_VECTOR (_UserExceptionVector_literal,
258 .UserExceptionVector.literal,
Max Filippove85e3352012-12-03 15:01:43 +0400259 USER_VECTOR_VADDR - 4,
Chris Zankel5a0015d2005-06-23 22:01:16 -0700260 SIZEOF(.KernelExceptionVector.text),
261 .KernelExceptionVector.text)
262 SECTION_VECTOR (_UserExceptionVector_text,
263 .UserExceptionVector.text,
Max Filippove85e3352012-12-03 15:01:43 +0400264 USER_VECTOR_VADDR,
Chris Zankel5a0015d2005-06-23 22:01:16 -0700265 4,
266 .UserExceptionVector.literal)
267 SECTION_VECTOR (_DoubleExceptionVector_literal,
268 .DoubleExceptionVector.literal,
Max Filippov3cfc0962014-08-07 01:03:01 +0400269 DOUBLEEXC_VECTOR_VADDR - 48,
Chris Zankel5a0015d2005-06-23 22:01:16 -0700270 SIZEOF(.UserExceptionVector.text),
271 .UserExceptionVector.text)
272 SECTION_VECTOR (_DoubleExceptionVector_text,
273 .DoubleExceptionVector.text,
Max Filippove85e3352012-12-03 15:01:43 +0400274 DOUBLEEXC_VECTOR_VADDR,
Max Filippov3cfc0962014-08-07 01:03:01 +0400275 48,
Chris Zankel5a0015d2005-06-23 22:01:16 -0700276 .DoubleExceptionVector.literal)
277
278 . = (LOADADDR( .DoubleExceptionVector.text ) + SIZEOF( .DoubleExceptionVector.text ) + 3) & ~ 3;
Max Filippovf6151362013-10-17 02:42:26 +0400279
280#if defined(CONFIG_SMP)
281
Max Filippovf6151362013-10-17 02:42:26 +0400282 SECTION_VECTOR (_SecondaryResetVector_text,
283 .SecondaryResetVector.text,
284 RESET_VECTOR1_VADDR,
Max Filippovab45fb12015-10-16 17:01:04 +0300285 SIZEOF(.DoubleExceptionVector.text),
286 .DoubleExceptionVector.text)
Max Filippovf6151362013-10-17 02:42:26 +0400287
288 . = LOADADDR(.SecondaryResetVector.text)+SIZEOF(.SecondaryResetVector.text);
289
290#endif
291
Tim Abbottcd3db322009-09-24 10:36:19 -0400292 . = ALIGN(PAGE_SIZE);
Chris Zankel5a0015d2005-06-23 22:01:16 -0700293
294 __init_end = .;
295
Tim Abbottcd3db322009-09-24 10:36:19 -0400296 BSS_SECTION(0, 8192, 0)
Chris Zankelde4f6e52007-05-31 17:47:01 -0700297
Chris Zankel5a0015d2005-06-23 22:01:16 -0700298 _end = .;
299
Chris Zankelde4f6e52007-05-31 17:47:01 -0700300 .xt.lit : { *(.xt.lit) }
301 .xt.prop : { *(.xt.prop) }
Chris Zankel5a0015d2005-06-23 22:01:16 -0700302
303 .debug 0 : { *(.debug) }
304 .line 0 : { *(.line) }
305 .debug_srcinfo 0 : { *(.debug_srcinfo) }
306 .debug_sfnames 0 : { *(.debug_sfnames) }
307 .debug_aranges 0 : { *(.debug_aranges) }
308 .debug_pubnames 0 : { *(.debug_pubnames) }
309 .debug_info 0 : { *(.debug_info) }
310 .debug_abbrev 0 : { *(.debug_abbrev) }
311 .debug_line 0 : { *(.debug_line) }
312 .debug_frame 0 : { *(.debug_frame) }
313 .debug_str 0 : { *(.debug_str) }
314 .debug_loc 0 : { *(.debug_loc) }
315 .debug_macinfo 0 : { *(.debug_macinfo) }
316 .debug_weaknames 0 : { *(.debug_weaknames) }
317 .debug_funcnames 0 : { *(.debug_funcnames) }
318 .debug_typenames 0 : { *(.debug_typenames) }
319 .debug_varnames 0 : { *(.debug_varnames) }
320
321 .xt.insn 0 :
322 {
323 *(.xt.insn)
324 *(.gnu.linkonce.x*)
325 }
326
327 .xt.lit 0 :
328 {
329 *(.xt.lit)
330 *(.gnu.linkonce.p*)
331 }
Tejun Heo023bf6f2009-07-09 11:27:40 +0900332
333 /* Sections to be discarded */
334 DISCARDS
335 /DISCARD/ : { *(.exit.literal) }
Chris Zankel5a0015d2005-06-23 22:01:16 -0700336}