2 * arch/xtensa/kernel/vmlinux.lds.S
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
10 * Copyright (C) 2001 - 2008 Tensilica Inc.
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>
17 #include <asm-generic/vmlinux.lds.h>
19 #include <asm/thread_info.h>
21 #include <asm/vectors.h>
22 #include <variant/core.h>
23 #include <platform/hardware.h>
28 jiffies = jiffies_64 + 4;
34 #define KERNELOFFSET 0xd0003000
37 /* Note: In the following macros, it would be nice to specify only the
38 vector name and section kind and construct "sym" and "section" using
39 CPP concatenation, but that does not work reliably. Concatenating a
40 string with "." produces an invalid token. CPP will not print a
41 warning because it thinks this is an assembly file, but it leaves
42 them as multiple tokens and there may or may not be whitespace
45 /* Macro for a relocation entry */
47 #define RELOCATE_ENTRY(sym, section) \
48 LONG(sym ## _start); \
50 LONG(LOADADDR(section))
52 /* Macro to define a section for a vector.
54 * Use of the MIN function catches the types of errors illustrated in
55 * the following example:
57 * Assume the section .DoubleExceptionVector.literal is completely
58 * full. Then a programmer adds code to .DoubleExceptionVector.text
59 * that produces another literal. The final literal position will
60 * overlay onto the first word of the adjacent code section
61 * .DoubleExceptionVector.text. (In practice, the literals will
62 * overwrite the code, and the first few instructions will be
66 #define SECTION_VECTOR(sym, section, addr, max_prevsec_size, prevsec) \
67 section addr : AT((MIN(LOADADDR(prevsec) + max_prevsec_size, \
68 LOADADDR(prevsec) + SIZEOF(prevsec)) + 3) & ~ 3) \
71 sym ## _start = ABSOLUTE(.); \
73 sym ## _end = ABSOLUTE(.); \
77 * Mapping of input sections to output sections when linking.
90 /* The HEAD_TEXT section must be the first section! */
93 VMLINUX_SYMBOL(__sched_text_start) = .;
94 *(.sched.literal .sched.text)
95 VMLINUX_SYMBOL(__sched_text_end) = .;
96 VMLINUX_SYMBOL(__lock_text_start) = .;
97 *(.spinlock.literal .spinlock.text)
98 VMLINUX_SYMBOL(__lock_text_end) = .;
108 /* Relocation table */
110 .fixup : { *(.fixup) }
116 RW_DATA_SECTION(XCHAL_ICACHE_LINESIZE, PAGE_SIZE, THREAD_SIZE)
119 /* Initialization code and data: */
121 . = ALIGN(PAGE_SIZE);
123 INIT_TEXT_SECTION(PAGE_SIZE)
129 __tagtable_begin = .;
134 __boot_reloc_table_start = ABSOLUTE(.);
136 RELOCATE_ENTRY(_WindowVectors_text,
137 .WindowVectors.text);
138 #if XCHAL_EXCM_LEVEL >= 2
139 RELOCATE_ENTRY(_Level2InterruptVector_text,
140 .Level2InterruptVector.text);
142 #if XCHAL_EXCM_LEVEL >= 3
143 RELOCATE_ENTRY(_Level3InterruptVector_text,
144 .Level3InterruptVector.text);
146 #if XCHAL_EXCM_LEVEL >= 4
147 RELOCATE_ENTRY(_Level4InterruptVector_text,
148 .Level4InterruptVector.text);
150 #if XCHAL_EXCM_LEVEL >= 5
151 RELOCATE_ENTRY(_Level5InterruptVector_text,
152 .Level5InterruptVector.text);
154 #if XCHAL_EXCM_LEVEL >= 6
155 RELOCATE_ENTRY(_Level6InterruptVector_text,
156 .Level6InterruptVector.text);
158 RELOCATE_ENTRY(_KernelExceptionVector_text,
159 .KernelExceptionVector.text);
160 RELOCATE_ENTRY(_UserExceptionVector_text,
161 .UserExceptionVector.text);
162 RELOCATE_ENTRY(_DoubleExceptionVector_literal,
163 .DoubleExceptionVector.literal);
164 RELOCATE_ENTRY(_DoubleExceptionVector_text,
165 .DoubleExceptionVector.text);
166 RELOCATE_ENTRY(_DebugInterruptVector_text,
167 .DebugInterruptVector.text);
168 #if defined(CONFIG_SMP)
169 RELOCATE_ENTRY(_SecondaryResetVector_literal,
170 .SecondaryResetVector.literal);
171 RELOCATE_ENTRY(_SecondaryResetVector_text,
172 .SecondaryResetVector.text);
176 __boot_reloc_table_end = ABSOLUTE(.) ;
178 INIT_SETUP(XCHAL_ICACHE_LINESIZE)
185 PERCPU_SECTION(XCHAL_ICACHE_LINESIZE)
187 /* We need this dummy segment here */
192 /* The vectors are relocated to the real position at startup time */
194 SECTION_VECTOR (_WindowVectors_text,
196 WINDOW_VECTORS_VADDR, 4,
198 SECTION_VECTOR (_DebugInterruptVector_literal,
199 .DebugInterruptVector.literal,
200 DEBUG_VECTOR_VADDR - 4,
201 SIZEOF(.WindowVectors.text),
203 SECTION_VECTOR (_DebugInterruptVector_text,
204 .DebugInterruptVector.text,
207 .DebugInterruptVector.literal)
209 #define LAST .DebugInterruptVector.text
210 #if XCHAL_EXCM_LEVEL >= 2
211 SECTION_VECTOR (_Level2InterruptVector_text,
212 .Level2InterruptVector.text,
213 INTLEVEL2_VECTOR_VADDR,
216 # define LAST .Level2InterruptVector.text
218 #if XCHAL_EXCM_LEVEL >= 3
219 SECTION_VECTOR (_Level3InterruptVector_text,
220 .Level3InterruptVector.text,
221 INTLEVEL3_VECTOR_VADDR,
224 # define LAST .Level3InterruptVector.text
226 #if XCHAL_EXCM_LEVEL >= 4
227 SECTION_VECTOR (_Level4InterruptVector_text,
228 .Level4InterruptVector.text,
229 INTLEVEL4_VECTOR_VADDR,
232 # define LAST .Level4InterruptVector.text
234 #if XCHAL_EXCM_LEVEL >= 5
235 SECTION_VECTOR (_Level5InterruptVector_text,
236 .Level5InterruptVector.text,
237 INTLEVEL5_VECTOR_VADDR,
240 # define LAST .Level5InterruptVector.text
242 #if XCHAL_EXCM_LEVEL >= 6
243 SECTION_VECTOR (_Level6InterruptVector_text,
244 .Level6InterruptVector.text,
245 INTLEVEL6_VECTOR_VADDR,
248 # define LAST .Level6InterruptVector.text
250 SECTION_VECTOR (_KernelExceptionVector_literal,
251 .KernelExceptionVector.literal,
252 KERNEL_VECTOR_VADDR - 4,
255 SECTION_VECTOR (_KernelExceptionVector_text,
256 .KernelExceptionVector.text,
259 .KernelExceptionVector.literal)
260 SECTION_VECTOR (_UserExceptionVector_literal,
261 .UserExceptionVector.literal,
262 USER_VECTOR_VADDR - 4,
263 SIZEOF(.KernelExceptionVector.text),
264 .KernelExceptionVector.text)
265 SECTION_VECTOR (_UserExceptionVector_text,
266 .UserExceptionVector.text,
269 .UserExceptionVector.literal)
270 SECTION_VECTOR (_DoubleExceptionVector_literal,
271 .DoubleExceptionVector.literal,
272 DOUBLEEXC_VECTOR_VADDR - 48,
273 SIZEOF(.UserExceptionVector.text),
274 .UserExceptionVector.text)
275 SECTION_VECTOR (_DoubleExceptionVector_text,
276 .DoubleExceptionVector.text,
277 DOUBLEEXC_VECTOR_VADDR,
279 .DoubleExceptionVector.literal)
281 . = (LOADADDR( .DoubleExceptionVector.text ) + SIZEOF( .DoubleExceptionVector.text ) + 3) & ~ 3;
283 #if defined(CONFIG_SMP)
285 SECTION_VECTOR (_SecondaryResetVector_literal,
286 .SecondaryResetVector.literal,
287 RESET_VECTOR1_VADDR - 4,
288 SIZEOF(.DoubleExceptionVector.text),
289 .DoubleExceptionVector.text)
291 SECTION_VECTOR (_SecondaryResetVector_text,
292 .SecondaryResetVector.text,
295 .SecondaryResetVector.literal)
297 . = LOADADDR(.SecondaryResetVector.text)+SIZEOF(.SecondaryResetVector.text);
301 . = ALIGN(PAGE_SIZE);
305 BSS_SECTION(0, 8192, 0)
309 /* only used by the boot loader */
312 .bootstrap : { *(.bootstrap.literal .bootstrap.text .bootstrap.data) }
314 .ResetVector.text RESET_VECTOR_VADDR :
321 * This is a remapped copy of the Secondary Reset Vector Code.
322 * It keeps gdb in sync with the PC after switching
323 * to the temporary mapping used while setting up
324 * the V2 MMU mappings for Linux.
326 * Only debug information about this section is put in the kernel image.
328 .SecondaryResetVector.remapped_text 0x46000000 (INFO):
330 *(.SecondaryResetVector.remapped_text)
334 .xt.lit : { *(.xt.lit) }
335 .xt.prop : { *(.xt.prop) }
337 .debug 0 : { *(.debug) }
338 .line 0 : { *(.line) }
339 .debug_srcinfo 0 : { *(.debug_srcinfo) }
340 .debug_sfnames 0 : { *(.debug_sfnames) }
341 .debug_aranges 0 : { *(.debug_aranges) }
342 .debug_pubnames 0 : { *(.debug_pubnames) }
343 .debug_info 0 : { *(.debug_info) }
344 .debug_abbrev 0 : { *(.debug_abbrev) }
345 .debug_line 0 : { *(.debug_line) }
346 .debug_frame 0 : { *(.debug_frame) }
347 .debug_str 0 : { *(.debug_str) }
348 .debug_loc 0 : { *(.debug_loc) }
349 .debug_macinfo 0 : { *(.debug_macinfo) }
350 .debug_weaknames 0 : { *(.debug_weaknames) }
351 .debug_funcnames 0 : { *(.debug_funcnames) }
352 .debug_typenames 0 : { *(.debug_typenames) }
353 .debug_varnames 0 : { *(.debug_varnames) }
367 /* Sections to be discarded */
369 /DISCARD/ : { *(.exit.literal) }