Fix IP22 timer calibration.
[linux-2.6/linux-mips.git] / arch / alpha / vmlinux.lds.S
blob7afd00d5d46bee0af89de6fafade9d9e835107a7
1 #include <linux/config.h>
2 #include <asm-generic/vmlinux.lds.h>
4 OUTPUT_FORMAT("elf64-alpha")
5 OUTPUT_ARCH(alpha)
6 ENTRY(__start)
7 PHDRS { kernel PT_LOAD ; }
8 jiffies = jiffies_64;
9 SECTIONS
11 #ifdef CONFIG_ALPHA_LEGACY_START_ADDRESS
12   . = 0xfffffc0000310000;
13 #else
14   . = 0xfffffc0001010000;
15 #endif
17   _text = .;                                    /* Text and read-only data */
18   .text : { 
19         *(.text) 
20         *(.fixup)
21         *(.gnu.warning)
22   } :kernel
23   _etext = .;                                   /* End of text section */
25   . = ALIGN(16);
26   __start___ex_table = .;                       /* Exception table */
27   __ex_table : { *(__ex_table) }
28   __stop___ex_table = .;
30   RODATA
32   /* Will be freed after init */
33   . = ALIGN(8192);                              /* Init code and data */
34   __init_begin = .;
35   .init.text : { 
36         _sinittext = .;
37         *(.init.text)
38         _einittext = .;
39   }
40   .init.data : { *(.init.data) }
42   . = ALIGN(16);
43   __setup_start = .;
44   .init.setup : { *(.init.setup) }
45   __setup_end = .;
47   . = ALIGN(8);
48   __start___param = .;
49   __param : { *(__param) }
50   __stop___param = .;
52   . = ALIGN(8);
53   __initcall_start = .;
54   .initcall.init : {
55         *(.initcall1.init) 
56         *(.initcall2.init) 
57         *(.initcall3.init) 
58         *(.initcall4.init) 
59         *(.initcall5.init) 
60         *(.initcall6.init) 
61         *(.initcall7.init)
62   }
63   __initcall_end = .;
65   . = ALIGN(8192);
66   __initramfs_start = .;
67   .init.ramfs : { *(.init.ramfs) }
68   __initramfs_end = .;
70   . = ALIGN(8);
71   .con_initcall.init : {
72         __con_initcall_start = .;
73         *(.con_initcall.init)
74         __con_initcall_end = .;
75   }
77   . = ALIGN(8);
78   SECURITY_INIT
80   . = ALIGN(64);
81   __per_cpu_start = .;
82   .data.percpu : { *(.data.percpu) }
83   __per_cpu_end = .;
85   . = ALIGN(2*8192);
86   __init_end = .;
87   /* Freed after init ends here */
89   /* Note 2 page alignment above.  */
90   .data.init_thread : { *(.data.init_thread) }
92   . = ALIGN(8192);
93   .data.page_aligned : { *(.data.page_aligned) }
95   . = ALIGN(64);
96   .data.cacheline_aligned : { *(.data.cacheline_aligned) }
98   _data = .;
99   .data : {                                     /* Data */
100         *(.data)
101         CONSTRUCTORS
102   }
104   .got : { *(.got) }
105   .sdata : { *(.sdata) }
107   _edata = .;                                   /* End of data section */
109   __bss_start = .;
110   .sbss : { *(.sbss) *(.scommon) }
111   .bss : { *(.bss) *(COMMON) }
112   __bss_stop = .;
114   _end = .;
116   /* Sections to be discarded */
117   /DISCARD/ : { *(.exit.text) *(.exit.data) *(.exitcall.exit) }
119   .mdebug 0 : { *(.mdebug) }
120   .note 0 : { *(.note) }
121   .comment 0 : { *(.comment) }
123   /* Stabs debugging sections */
124   .stab 0 : { *(.stab) }
125   .stabstr 0 : { *(.stabstr) }
126   .stab.excl 0 : { *(.stab.excl) }
127   .stab.exclstr 0 : { *(.stab.exclstr) }
128   .stab.index 0 : { *(.stab.index) }
129   .stab.indexstr 0 : { *(.stab.indexstr) }
130   /* DWARF 1 */
131   .debug          0 : { *(.debug) }
132   .line           0 : { *(.line) }
133   /* GNU DWARF 1 extensions */
134   .debug_srcinfo  0 : { *(.debug_srcinfo) }
135   .debug_sfnames  0 : { *(.debug_sfnames) }
136   /* DWARF 1.1 and DWARF 2 */
137   .debug_aranges  0 : { *(.debug_aranges) }
138   .debug_pubnames 0 : { *(.debug_pubnames) }
139   /* DWARF 2 */
140   .debug_info     0 : { *(.debug_info) }
141   .debug_abbrev   0 : { *(.debug_abbrev) }
142   .debug_line     0 : { *(.debug_line) }
143   .debug_frame    0 : { *(.debug_frame) }
144   .debug_str      0 : { *(.debug_str) }
145   .debug_loc      0 : { *(.debug_loc) }
146   .debug_macinfo  0 : { *(.debug_macinfo) }
147   /* SGI/MIPS DWARF 2 extensions */
148   .debug_weaknames 0 : { *(.debug_weaknames) }
149   .debug_funcnames 0 : { *(.debug_funcnames) }
150   .debug_typenames 0 : { *(.debug_typenames) }
151   .debug_varnames  0 : { *(.debug_varnames) }