]> bbs.cooldavid.org Git - net-next-2.6.git/blame - arch/cris/kernel/vmlinux.lds.S
[CRIS] Remove links from CRIS build
[net-next-2.6.git] / arch / cris / kernel / vmlinux.lds.S
CommitLineData
51533b61
MS
1/* ld script to make the Linux/CRIS kernel
2 * Authors: Bjorn Wesen (bjornw@axis.com)
3 *
4 * It is VERY DANGEROUS to fiddle around with the symbols in this
5 * script. It is for example quite vital that all generated sections
6 * that are used are actually named here, otherwise the linker will
7 * put them at the end, where the init stuff is which is FREED after
8 * the kernel has booted.
9 */
10
c5ec6fb0 11#include <linux/autoconf.h>
51533b61 12#include <asm-generic/vmlinux.lds.h>
baa69b12
JN
13#include <asm/page.h>
14
15#ifdef CONFIG_ETRAX_VMEM_SIZE
16#define __CONFIG_ETRAX_VMEM_SIZE CONFIG_ETRAX_VMEM_SIZE
17#else
18#define __CONFIG_ETRAX_VMEM_SIZE 0
19#endif
51533b61 20
c5ec6fb0 21
51533b61
MS
22jiffies = jiffies_64;
23SECTIONS
24{
25 . = DRAM_VIRTUAL_BASE;
26 dram_start = .;
c5ec6fb0
JN
27#ifdef CONFIG_ETRAX_ARCH_V10
28 ibr_start = .;
29#else
51533b61 30 ebp_start = .;
baa69b12
JN
31 /* The boot section is only necessary until the VCS top */
32 /* level testbench includes both flash and DRAM. */
51533b61 33 .boot : { *(.boot) }
c5ec6fb0 34#endif
51533b61 35
c5ec6fb0 36 /* see head.S and pages reserved at the start */
baa69b12 37 . = DRAM_VIRTUAL_BASE + 0x4000;
51533b61 38
c5ec6fb0
JN
39 _text = .; /* Text and read-only data. */
40 text_start = .; /* Lots of aliases. */
51533b61
MS
41 _stext = .;
42 __stext = .;
43 .text : {
baa69b12 44 TEXT_TEXT
51533b61
MS
45 SCHED_TEXT
46 LOCK_TEXT
47 *(.fixup)
48 *(.text.__*)
49 }
50
c5ec6fb0 51 _etext = . ; /* End of text section. */
51533b61
MS
52 __etext = .;
53
c5ec6fb0 54 . = ALIGN(4); /* Exception table. */
baa69b12
JN
55 __start___ex_table = .;
56 __ex_table : { *(__ex_table) }
57 __stop___ex_table = .;
51533b61
MS
58
59 RODATA
60
61 . = ALIGN (4);
62 ___data_start = . ;
63 __Sdata = . ;
c5ec6fb0 64 .data : { /* Data */
5c617c6f 65 DATA_DATA
51533b61 66 }
c5ec6fb0 67 __edata = . ; /* End of data section. */
51533b61
MS
68 _edata = . ;
69
baa69b12
JN
70 . = ALIGN(PAGE_SIZE); /* init_task and stack, must be aligned. */
71 .data.init_task : { *(.data.init_task) }
51533b61 72
c5ec6fb0 73 . = ALIGN(PAGE_SIZE); /* Init code and data. */
baa69b12 74 __init_begin = .;
51533b61
MS
75 .init.text : {
76 _sinittext = .;
01ba2bdc 77 INIT_TEXT
51533b61
MS
78 _einittext = .;
79 }
01ba2bdc 80 .init.data : { INIT_DATA }
baa69b12
JN
81 . = ALIGN(16);
82 __setup_start = .;
83 .init.setup : { *(.init.setup) }
84 __setup_end = .;
c5ec6fb0 85#ifdef CONFIG_ETRAX_ARCH_V32
51533b61
MS
86 __start___param = .;
87 __param : { *(__param) }
88 __stop___param = .;
c5ec6fb0 89#endif
baa69b12 90 .initcall.init : {
51533b61 91 __initcall_start = .;
baa69b12 92 INITCALLS
51533b61
MS
93 __initcall_end = .;
94 }
95
96 .con_initcall.init : {
97 __con_initcall_start = .;
98 *(.con_initcall.init)
99 __con_initcall_end = .;
100 }
101 SECURITY_INIT
102
c5ec6fb0
JN
103#ifdef CONFIG_ETRAX_ARCH_V10
104#ifdef CONFIG_BLK_DEV_INITRD
105 .init.ramfs : {
106 __initramfs_start = .;
107 *(.init.ramfs)
108 __initramfs_end = .;
109 }
110#endif
111#endif
112 __vmlinux_end = .; /* Last address of the physical file. */
113#ifdef CONFIG_ETRAX_ARCH_V32
baa69b12 114 PERCPU(PAGE_SIZE)
51533b61
MS
115
116 .init.ramfs : {
117 __initramfs_start = .;
118 *(.init.ramfs)
119 __initramfs_end = .;
51533b61 120 }
c5ec6fb0 121#endif
51533b61 122
baa69b12
JN
123 /*
124 * We fill to the next page, so we can discard all init
125 * pages without needing to consider what payload might be
126 * appended to the kernel image.
127 */
c5ec6fb0 128 . = ALIGN(PAGE_SIZE);
baa69b12
JN
129
130 __init_end = .;
51533b61 131
c5ec6fb0
JN
132 __data_end = . ; /* Move to _edata ? */
133 __bss_start = .; /* BSS. */
51533b61
MS
134 .bss : {
135 *(COMMON)
136 *(.bss)
137 }
138
139 . = ALIGN (0x20);
140 _end = .;
141 __end = .;
142
143 /* Sections to be discarded */
baa69b12 144 /DISCARD/ : {
01ba2bdc
SR
145 EXIT_TEXT
146 EXIT_DATA
51533b61
MS
147 *(.exitcall.exit)
148 }
149
baa69b12 150 dram_end = dram_start + (CONFIG_ETRAX_DRAM_SIZE - __CONFIG_ETRAX_VMEM_SIZE)*1024*1024;
51533b61 151}