1 #include <asm/asm-offsets.h>
2 #include <asm-generic/vmlinux.lds.h>
11 #ifdef CONFIG_BOOT_ELF64
12 /* Read-only sections, merged into text segment: */
13 /* . = 0xc000000000000000; */
15 /* This is the value for an Origin kernel, taken from an IRIX kernel. */
16 /* . = 0xc00000000001c000; */
18 /* Set the vaddr for the text segment to a value
19 >= 0xa800 0000 0001 9000 if no symmon is going to configured
20 >= 0xa800 0000 0030 0000 otherwise */
22 /* . = 0xa800000000300000; */
23 /* . = 0xa800000000300000; */
24 . = 0xffffffff80300000;
28 _text = .; /* Text and read-only data */
37 _etext = .; /* End of text section */
39 . = ALIGN(16); /* Exception table */
40 __start___ex_table = .;
41 __ex_table : { *(__ex_table) }
42 __stop___ex_table = .;
44 __start___dbe_table = .; /* Exception table for data bus errors */
45 __dbe_table : { *(__dbe_table) }
46 __stop___dbe_table = .;
52 . = . + DATAOFFSET; /* for CONFIG_MAPPED_KERNEL */
54 * This ALIGN is needed as a workaround for a bug a gcc bug upto 4.1 which
55 * limits the maximum alignment to at most 32kB and results in the following
58 * CC arch/mips/kernel/init_task.o
59 * arch/mips/kernel/init_task.c:30: warning: alignment of ‘init_thread_union’
60 * is greater than maximum object file alignment. Using 32768
62 . = ALIGN(_PAGE_SIZE);
72 /* We want the small data sections together, so single-instruction offsets
73 can access them all, and initialized data all before uninitialized, so
74 we can shorten the on-disk segment size. */
75 .sdata : { *(.sdata) }
77 . = ALIGN(_PAGE_SIZE);
79 .data_nosave : { *(.data.nosave) }
80 . = ALIGN(_PAGE_SIZE);
84 .data.cacheline_aligned : { *(.data.cacheline_aligned) }
86 _edata = .; /* End of data section */
88 /* will be freed after init */
89 . = ALIGN(_PAGE_SIZE); /* Init code and data */
96 .init.data : { *(.init.data) }
99 .init.setup : { *(.init.setup) }
102 __initcall_start = .;
108 __con_initcall_start = .;
109 .con_initcall.init : { *(.con_initcall.init) }
110 __con_initcall_end = .;
112 /* .exit.text is discarded at runtime, not link time, to deal with
113 references from .rodata */
114 .exit.text : { *(.exit.text) }
115 .exit.data : { *(.exit.data) }
116 #if defined(CONFIG_BLK_DEV_INITRD)
117 . = ALIGN(_PAGE_SIZE);
118 __initramfs_start = .;
119 .init.ramfs : { *(.init.ramfs) }
123 . = ALIGN(_PAGE_SIZE);
125 /* freed after init ends here */
127 __bss_start = .; /* BSS */
140 /* Sections to be discarded */
144 /* ABI crap starts here */
151 /* These mark the ABI of the kernel for debuggers. */
152 .mdebug.abi32 : { KEEP(*(.mdebug.abi32)) }
153 .mdebug.abi64 : { KEEP(*(.mdebug.abi64)) }
155 /* This is the MIPS specific mdebug section. */
156 .mdebug : { *(.mdebug) }
162 /* These must appear regardless of . */
163 .gptab.sdata : { *(.gptab.data) *(.gptab.sdata) }
164 .gptab.sbss : { *(.gptab.bss) *(.gptab.sbss) }