sync hh.org
[hh.org.git] / arch / xtensa / kernel / vmlinux.lds.S
blobcfe75f52872593f9bdefa8c7871421e4bc89848b
1 /*
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  */
17 #include <asm-generic/vmlinux.lds.h>
19 #define _NOCLANGUAGE
20 #include <xtensa/config/core.h>
21 #include <xtensa/config/system.h>
22 OUTPUT_ARCH(xtensa)
23 ENTRY(_start)
25 #if XCHAL_MEMORY_ORDER == XTHAL_BIGENDIAN
26 jiffies = jiffies_64 + 4;
27 #else
28 jiffies = jiffies_64;
29 #endif
31 #define KERNELOFFSET 0x1000
33 /* 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.  */
41 /* Macro for a relocation entry */
43 #define RELOCATE_ENTRY(sym, section)            \
44         LONG(sym ## _start);                    \
45         LONG(sym ## _end);                      \
46         LONG(LOADADDR(section))
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  */
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   }
73  *  Mapping of input sections to output sections when linking.
74  */
76 SECTIONS
78   . = XCHAL_KSEG_CACHED_VADDR + KERNELOFFSET;
79   /* .text section */
81   _text = .;
82   _stext = .;
83   _ftext = .;
85   .text :
86   {
87     /* The .head.text section must be the first section! */
88     *(.head.text)
89     *(.literal .text)
90     *(.srom.text)
91     VMLINUX_SYMBOL(__sched_text_start) = .;
92     *(.sched.literal .sched.text)
93     VMLINUX_SYMBOL(__sched_text_end) = .;
94     VMLINUX_SYMBOL(__lock_text_start) = .;
95     *(.spinlock.literal .spinlock.text)
96     VMLINUX_SYMBOL(__lock_text_end) = .;
98   }
99   _etext = .;
101   . = ALIGN(16);
103   RODATA
105   /*  Relocation table */
107   . = ALIGN(16);
108   __boot_reloc_table_start = ABSOLUTE(.);
110   __relocate : {
112     RELOCATE_ENTRY(_WindowVectors_text,
113                    .WindowVectors.text);
114 #if 0
115     RELOCATE_ENTRY(_KernelExceptionVector_literal,
116                    .KernelExceptionVector.literal);
117 #endif
118     RELOCATE_ENTRY(_KernelExceptionVector_text,
119                    .KernelExceptionVector.text);
120 #if 0
121     RELOCATE_ENTRY(_UserExceptionVector_literal,
122                    .UserExceptionVector.literal);
123 #endif
124     RELOCATE_ENTRY(_UserExceptionVector_text,
125                    .UserExceptionVector.text);
126     RELOCATE_ENTRY(_DoubleExceptionVector_literal,
127                    .DoubleExceptionVector.literal);
128     RELOCATE_ENTRY(_DoubleExceptionVector_text,
129                    .DoubleExceptionVector.text);
130   }
131   __boot_reloc_table_end = ABSOLUTE(.) ;
133   .fixup   : { *(.fixup) }
135   . = ALIGN(16);
137   __ex_table : {
138     __start___ex_table = .;
139     *(__ex_table)
140     __stop___ex_table = .;
141   }
143   /* Data section */
145   . = ALIGN(XCHAL_ICACHE_LINESIZE);
146   _fdata = .;
147   .data :
148   {
149     *(.data) CONSTRUCTORS
150     . = ALIGN(XCHAL_ICACHE_LINESIZE);
151     *(.data.cacheline_aligned)
152   }
154   _edata = .;
156   /* The initial task */
157   . = ALIGN(8192);
158   .data.init_task : { *(.data.init_task) }
160   /* Initialization code and data: */
162   . = ALIGN(1<<XCHAL_MMU_MIN_PTE_PAGE_SIZE);
163   __init_begin = .;
164   .init.text : {
165         _sinittext = .;
166         *(.init.literal) *(.init.text)
167         _einittext = .;
168   }
170   .init.data :
171   {
172     *(.init.data)
173     . = ALIGN(0x4);
174     __tagtable_begin = .;
175     *(.taglist)
176     __tagtable_end = .;
177   }
179   . = ALIGN(XCHAL_ICACHE_LINESIZE);
181   __setup_start = .;
182   .init.setup : { *(.init.setup) }
183   __setup_end = .;
185   __initcall_start = .;
186   .initcall.init : {
187         INITCALLS
188   }
189   __initcall_end = .;
191   __con_initcall_start = .;
192   .con_initcall.init : { *(.con_initcall.init) }
193   __con_initcall_end = .;
195   SECURITY_INIT
197   . = ALIGN(4);
199   __start___ftr_fixup = .;
200   __ftr_fixup : { *(__ftr_fixup) }
201   __stop___ftr_fixup = .;
203   . = ALIGN(32);
204   __per_cpu_start = .;
205   .data.percpu  : { *(.data.percpu) }
206   __per_cpu_end = .;
208   . = ALIGN(4096);
209   __initramfs_start =.;
210   .init.ramfs : { *(.init.ramfs) }
211   __initramfs_end = .;
213   /* We need this dummy segment here */
215   . = ALIGN(4);
216   .dummy : { LONG(0) }
218   /* The vectors are relocated to the real position at startup time */
220   SECTION_VECTOR (_WindowVectors_text,
221                   .WindowVectors.text,
222                   XCHAL_WINDOW_VECTORS_VADDR, 4,
223                   .dummy)
224   SECTION_VECTOR (_DebugInterruptVector_literal,
225                   .DebugInterruptVector.literal,
226                   XCHAL_INTLEVEL_VECTOR_VADDR(XCHAL_DEBUGLEVEL) - 4,
227                   SIZEOF(.WindowVectors.text),
228                   .WindowVectors.text)
229   SECTION_VECTOR (_DebugInterruptVector_text,
230                   .DebugInterruptVector.text,
231                   XCHAL_INTLEVEL_VECTOR_VADDR(XCHAL_DEBUGLEVEL),
232                   4,
233                   .DebugInterruptVector.literal)
234   SECTION_VECTOR (_KernelExceptionVector_literal,
235                   .KernelExceptionVector.literal,
236                   XCHAL_KERNELEXC_VECTOR_VADDR - 4,
237                   SIZEOF(.DebugInterruptVector.text),
238                   .DebugInterruptVector.text)
239   SECTION_VECTOR (_KernelExceptionVector_text,
240                   .KernelExceptionVector.text,
241                   XCHAL_KERNELEXC_VECTOR_VADDR,
242                   4,
243                   .KernelExceptionVector.literal)
244   SECTION_VECTOR (_UserExceptionVector_literal,
245                   .UserExceptionVector.literal,
246                   XCHAL_USEREXC_VECTOR_VADDR - 4,
247                   SIZEOF(.KernelExceptionVector.text),
248                   .KernelExceptionVector.text)
249   SECTION_VECTOR (_UserExceptionVector_text,
250                   .UserExceptionVector.text,
251                   XCHAL_USEREXC_VECTOR_VADDR,
252                   4,
253                   .UserExceptionVector.literal)
254   SECTION_VECTOR (_DoubleExceptionVector_literal,
255                   .DoubleExceptionVector.literal,
256                   XCHAL_DOUBLEEXC_VECTOR_VADDR - 16,
257                   SIZEOF(.UserExceptionVector.text),
258                   .UserExceptionVector.text)
259   SECTION_VECTOR (_DoubleExceptionVector_text,
260                   .DoubleExceptionVector.text,
261                   XCHAL_DOUBLEEXC_VECTOR_VADDR,
262                   32,
263                   .DoubleExceptionVector.literal)
265   . = (LOADADDR( .DoubleExceptionVector.text ) + SIZEOF( .DoubleExceptionVector.text ) + 3) & ~ 3;
266   . = ALIGN(1<<XCHAL_MMU_MIN_PTE_PAGE_SIZE);
268   __init_end = .;
270   . = ALIGN(8192);
272   /* BSS section */
273   _bss_start = .;
274   .sbss : { *(.sbss) *(.scommon) }
275   .bss : { *(COMMON) *(.bss) }
276   _bss_end = .;
277   _end = .;
279   /* only used by the boot loader  */
281   . = ALIGN(0x10);
282   .bootstrap : { *(.bootstrap.literal .bootstrap.text .bootstrap.data) }
284   . = ALIGN(0x1000);
285   __initrd_start = .;
286   .initrd : { *(.initrd) }
287   __initrd_end = .;
289   .ResetVector.text XCHAL_RESET_VECTOR_VADDR :
290   {
291     *(.ResetVector.text)
292   }
295   /* Sections to be discarded */
296   /DISCARD/ :
297   {
298         *(.text.exit)
299         *(.text.exit.literal)
300         *(.data.exit)
301         *(.exitcall.exit)
302   }
305   .debug  0 :  { *(.debug) }
306   .line  0 :  { *(.line) }
307   .debug_srcinfo  0 :  { *(.debug_srcinfo) }
308   .debug_sfnames  0 :  { *(.debug_sfnames) }
309   .debug_aranges  0 :  { *(.debug_aranges) }
310   .debug_pubnames  0 :  { *(.debug_pubnames) }
311   .debug_info  0 :  { *(.debug_info) }
312   .debug_abbrev  0 :  { *(.debug_abbrev) }
313   .debug_line  0 :  { *(.debug_line) }
314   .debug_frame  0 :  { *(.debug_frame) }
315   .debug_str  0 :  { *(.debug_str) }
316   .debug_loc  0 :  { *(.debug_loc) }
317   .debug_macinfo  0 :  { *(.debug_macinfo) }
318   .debug_weaknames  0 :  { *(.debug_weaknames) }
319   .debug_funcnames  0 :  { *(.debug_funcnames) }
320   .debug_typenames  0 :  { *(.debug_typenames) }
321   .debug_varnames  0 :  { *(.debug_varnames) }
323   .xt.insn 0 :
324   {
325     *(.xt.insn)
326     *(.gnu.linkonce.x*)
327   }
329   .xt.lit 0 :
330   {
331     *(.xt.lit)
332     *(.gnu.linkonce.p*)
333   }