blob: 018e4a711d7927cef577e347dac93fb3a22afd75 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* ld script to make M32R Linux kernel
2 */
3
Linus Torvalds1da177e2005-04-16 15:20:36 -07004#include <asm-generic/vmlinux.lds.h>
5#include <asm/addrspace.h>
6#include <asm/page.h>
Tim Abbott85233c432009-09-18 16:32:49 -04007#include <asm/thread_info.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008
9OUTPUT_ARCH(m32r)
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#if defined(__LITTLE_ENDIAN__)
11 jiffies = jiffies_64;
12#else
13 jiffies = jiffies_64 + 4;
14#endif
Hirokazu Takata3d60f842007-02-10 01:43:39 -080015
16kernel_entry = boot - 0x80000000;
17ENTRY(kernel_entry)
18
Linus Torvalds1da177e2005-04-16 15:20:36 -070019SECTIONS
20{
21 . = CONFIG_MEMORY_START + __PAGE_OFFSET;
22 eit_vector = .;
23
24 . = . + 0x1000;
25 .empty_zero_page : { *(.empty_zero_page) } = 0
26
27 /* read-only */
28 _text = .; /* Text and read-only data */
29 .boot : { *(.boot) } = 0
30 .text : {
Tim Abbott34963692009-04-25 22:11:02 -040031 HEAD_TEXT
Sam Ravnborg76647092007-05-13 00:31:33 +020032 TEXT_TEXT
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 SCHED_TEXT
34 LOCK_TEXT
35 *(.fixup)
36 *(.gnu.warning)
37 } = 0x9090
38#ifdef CONFIG_SMP
39 . = ALIGN(65536);
40 .eit_vector4 : { *(.eit_vector4) }
41#endif
42 _etext = .; /* End of text section */
43
Tim Abbott85233c432009-09-18 16:32:49 -040044 EXCEPTION_TABLE(16)
Hirokazu Takatae968b8d2009-10-05 00:10:55 +090045 NOTES
46
Steven Rostedta2d063a2011-05-19 21:34:58 -040047 _sdata = .; /* Start of data section */
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 RODATA
Tim Abbott85233c432009-09-18 16:32:49 -040049 RW_DATA_SECTION(32, PAGE_SIZE, THREAD_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 _edata = .; /* End of data section */
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 /* will be freed after init */
Tim Abbott85233c432009-09-18 16:32:49 -040053 . = ALIGN(PAGE_SIZE); /* Init code and data */
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 __init_begin = .;
Tim Abbott85233c432009-09-18 16:32:49 -040055 INIT_TEXT_SECTION(PAGE_SIZE)
56 INIT_DATA_SECTION(16)
Tejun Heo0415b00d12011-03-24 18:50:09 +010057 PERCPU_SECTION(32)
Tim Abbott85233c432009-09-18 16:32:49 -040058 . = ALIGN(PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 __init_end = .;
60 /* freed after init ends here */
61
Tim Abbott85233c432009-09-18 16:32:49 -040062 BSS_SECTION(0, 0, 4)
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64 _end = . ;
65
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 /* Stabs debugging sections. */
67 .stab 0 : { *(.stab) }
68 .stabstr 0 : { *(.stabstr) }
69 .stab.excl 0 : { *(.stab.excl) }
70 .stab.exclstr 0 : { *(.stab.exclstr) }
71 .stab.index 0 : { *(.stab.index) }
72 .stab.indexstr 0 : { *(.stab.indexstr) }
73 .comment 0 : { *(.comment) }
Tejun Heo023bf6f2009-07-09 11:27:40 +090074
75 /* Sections to be discarded */
76 DISCARDS
Linus Torvalds1da177e2005-04-16 15:20:36 -070077}