Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* ld script to make ARM Linux kernel |
| 2 | * taken from the i386 version by Russell King |
| 3 | * Written by Martin Mares <mj@atrey.karlin.mff.cuni.cz> |
| 4 | */ |
| 5 | |
| 6 | #include <asm-generic/vmlinux.lds.h> |
Russell King | 4f7a181 | 2005-05-05 13:11:00 +0100 | [diff] [blame] | 7 | #include <asm/thread_info.h> |
Nicolas Pitre | 37d07b7 | 2005-10-29 21:44:56 +0100 | [diff] [blame] | 8 | #include <asm/memory.h> |
Linus Walleij | f6430a9 | 2009-06-24 23:38:56 +0100 | [diff] [blame] | 9 | #include <asm/page.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | |
| 11 | OUTPUT_ARCH(arm) |
| 12 | ENTRY(stext) |
Nicolas Pitre | 37d07b7 | 2005-10-29 21:44:56 +0100 | [diff] [blame] | 13 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #ifndef __ARMEB__ |
| 15 | jiffies = jiffies_64; |
| 16 | #else |
| 17 | jiffies = jiffies_64 + 4; |
| 18 | #endif |
Nicolas Pitre | 37d07b7 | 2005-10-29 21:44:56 +0100 | [diff] [blame] | 19 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | SECTIONS |
| 21 | { |
Russell King | 9d4f13e | 2006-01-03 17:28:33 +0000 | [diff] [blame] | 22 | #ifdef CONFIG_XIP_KERNEL |
| 23 | . = XIP_VIRT_ADDR(CONFIG_XIP_PHYS_ADDR); |
| 24 | #else |
| 25 | . = PAGE_OFFSET + TEXT_OFFSET; |
| 26 | #endif |
Russell King | 08fdffd | 2007-05-08 15:15:45 +0100 | [diff] [blame] | 27 | .text.head : { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | _stext = .; |
Russell King | 08fdffd | 2007-05-08 15:15:45 +0100 | [diff] [blame] | 29 | _sinittext = .; |
| 30 | *(.text.head) |
| 31 | } |
| 32 | |
| 33 | .init : { /* Init code and data */ |
Sam Ravnborg | 01ba2bd | 2008-01-20 14:15:03 +0100 | [diff] [blame] | 34 | INIT_TEXT |
Russell King | 08fdffd | 2007-05-08 15:15:45 +0100 | [diff] [blame] | 35 | _einittext = .; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | __proc_info_begin = .; |
Ben Dooks | 02b7dd1 | 2005-09-20 16:35:03 +0100 | [diff] [blame] | 37 | *(.proc.info.init) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | __proc_info_end = .; |
| 39 | __arch_info_begin = .; |
Ben Dooks | 9d0fd1e | 2005-09-20 16:45:20 +0100 | [diff] [blame] | 40 | *(.arch.info.init) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | __arch_info_end = .; |
| 42 | __tagtable_begin = .; |
Ben Dooks | 9506057 | 2005-09-20 16:20:49 +0100 | [diff] [blame] | 43 | *(.taglist.init) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | __tagtable_end = .; |
| 45 | . = ALIGN(16); |
| 46 | __setup_start = .; |
| 47 | *(.init.setup) |
| 48 | __setup_end = .; |
| 49 | __early_begin = .; |
Ben Dooks | bfe6815 | 2005-09-20 16:25:12 +0100 | [diff] [blame] | 50 | *(.early_param.init) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | __early_end = .; |
| 52 | __initcall_start = .; |
Andrew Morton | 61ce1ef | 2006-10-27 11:41:44 -0700 | [diff] [blame] | 53 | INITCALLS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | __initcall_end = .; |
| 55 | __con_initcall_start = .; |
| 56 | *(.con_initcall.init) |
| 57 | __con_initcall_end = .; |
| 58 | __security_initcall_start = .; |
| 59 | *(.security_initcall.init) |
| 60 | __security_initcall_end = .; |
Jean-Paul Saman | 67d3822 | 2007-02-10 01:44:44 -0800 | [diff] [blame] | 61 | #ifdef CONFIG_BLK_DEV_INITRD |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | . = ALIGN(32); |
| 63 | __initramfs_start = .; |
| 64 | usr/built-in.o(.init.ramfs) |
| 65 | __initramfs_end = .; |
Jean-Paul Saman | 67d3822 | 2007-02-10 01:44:44 -0800 | [diff] [blame] | 66 | #endif |
Linus Walleij | f6430a9 | 2009-06-24 23:38:56 +0100 | [diff] [blame] | 67 | . = ALIGN(PAGE_SIZE); |
Tejun Heo | 19390c4 | 2009-03-10 16:27:48 +0900 | [diff] [blame] | 68 | __per_cpu_load = .; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | __per_cpu_start = .; |
Tejun Heo | 74e7904 | 2009-01-17 15:26:32 +0900 | [diff] [blame] | 70 | *(.data.percpu.page_aligned) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | *(.data.percpu) |
Fenghua Yu | 5fb7dc3 | 2007-07-19 01:48:12 -0700 | [diff] [blame] | 72 | *(.data.percpu.shared_aligned) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | __per_cpu_end = .; |
| 74 | #ifndef CONFIG_XIP_KERNEL |
| 75 | __init_begin = _stext; |
Sam Ravnborg | 01ba2bd | 2008-01-20 14:15:03 +0100 | [diff] [blame] | 76 | INIT_DATA |
Linus Walleij | f6430a9 | 2009-06-24 23:38:56 +0100 | [diff] [blame] | 77 | . = ALIGN(PAGE_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | __init_end = .; |
| 79 | #endif |
| 80 | } |
| 81 | |
| 82 | /DISCARD/ : { /* Exit code and data */ |
Sam Ravnborg | 01ba2bd | 2008-01-20 14:15:03 +0100 | [diff] [blame] | 83 | EXIT_TEXT |
| 84 | EXIT_DATA |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | *(.exitcall.exit) |
Catalin Marinas | bff595c | 2009-02-16 11:41:36 +0100 | [diff] [blame] | 86 | *(.ARM.exidx.exit.text) |
| 87 | *(.ARM.extab.exit.text) |
Catalin Marinas | 7436127 | 2009-06-19 16:39:29 +0100 | [diff] [blame] | 88 | #ifndef CONFIG_HOTPLUG_CPU |
| 89 | *(.ARM.exidx.cpuexit.text) |
| 90 | *(.ARM.extab.cpuexit.text) |
| 91 | #endif |
| 92 | #ifndef CONFIG_HOTPLUG |
| 93 | *(.ARM.exidx.devexit.text) |
| 94 | *(.ARM.extab.devexit.text) |
| 95 | #endif |
Russell King | 9641c7c | 2006-06-21 20:38:17 +0100 | [diff] [blame] | 96 | #ifndef CONFIG_MMU |
| 97 | *(.fixup) |
| 98 | *(__ex_table) |
| 99 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | } |
| 101 | |
| 102 | .text : { /* Real text segment */ |
| 103 | _text = .; /* Text and read-only data */ |
Russell King | 7ab3f8d | 2007-03-02 15:01:36 +0000 | [diff] [blame] | 104 | __exception_text_start = .; |
| 105 | *(.exception.text) |
| 106 | __exception_text_end = .; |
Sam Ravnborg | 7664709 | 2007-05-13 00:31:33 +0200 | [diff] [blame] | 107 | TEXT_TEXT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | SCHED_TEXT |
| 109 | LOCK_TEXT |
Nicolas Pitre | 785d3cd | 2007-12-03 15:27:56 -0500 | [diff] [blame] | 110 | KPROBES_TEXT |
Russell King | 9641c7c | 2006-06-21 20:38:17 +0100 | [diff] [blame] | 111 | #ifdef CONFIG_MMU |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | *(.fixup) |
Russell King | 9641c7c | 2006-06-21 20:38:17 +0100 | [diff] [blame] | 113 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | *(.gnu.warning) |
| 115 | *(.rodata) |
| 116 | *(.rodata.*) |
| 117 | *(.glue_7) |
| 118 | *(.glue_7t) |
| 119 | *(.got) /* Global offset table */ |
| 120 | } |
| 121 | |
Linus Walleij | f6430a9 | 2009-06-24 23:38:56 +0100 | [diff] [blame] | 122 | RO_DATA(PAGE_SIZE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | |
| 124 | _etext = .; /* End of text and rodata section */ |
| 125 | |
Catalin Marinas | bff595c | 2009-02-16 11:41:36 +0100 | [diff] [blame] | 126 | #ifdef CONFIG_ARM_UNWIND |
| 127 | /* |
| 128 | * Stack unwinding tables |
| 129 | */ |
| 130 | . = ALIGN(8); |
| 131 | .ARM.unwind_idx : { |
| 132 | __start_unwind_idx = .; |
| 133 | *(.ARM.exidx*) |
| 134 | __stop_unwind_idx = .; |
| 135 | } |
| 136 | .ARM.unwind_tab : { |
| 137 | __start_unwind_tab = .; |
| 138 | *(.ARM.extab*) |
| 139 | __stop_unwind_tab = .; |
| 140 | } |
| 141 | #endif |
| 142 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | #ifdef CONFIG_XIP_KERNEL |
| 144 | __data_loc = ALIGN(4); /* location in binary */ |
Russell King | 9d4f13e | 2006-01-03 17:28:33 +0000 | [diff] [blame] | 145 | . = PAGE_OFFSET + TEXT_OFFSET; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | #else |
Russell King | 4f7a181 | 2005-05-05 13:11:00 +0100 | [diff] [blame] | 147 | . = ALIGN(THREAD_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | __data_loc = .; |
| 149 | #endif |
| 150 | |
| 151 | .data : AT(__data_loc) { |
Russell King | 37efe64 | 2008-12-01 11:53:07 +0000 | [diff] [blame] | 152 | _data = .; /* address in memory */ |
Catalin Marinas | 8c7e657 | 2009-05-30 14:00:17 +0100 | [diff] [blame] | 153 | _sdata = .; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | |
| 155 | /* |
| 156 | * first, the init task union, aligned |
| 157 | * to an 8192 byte boundary. |
| 158 | */ |
Russell King | 4efb448 | 2007-05-08 12:39:37 +0100 | [diff] [blame] | 159 | *(.data.init_task) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | |
| 161 | #ifdef CONFIG_XIP_KERNEL |
Linus Walleij | f6430a9 | 2009-06-24 23:38:56 +0100 | [diff] [blame] | 162 | . = ALIGN(PAGE_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | __init_begin = .; |
Sam Ravnborg | 01ba2bd | 2008-01-20 14:15:03 +0100 | [diff] [blame] | 164 | INIT_DATA |
Linus Walleij | f6430a9 | 2009-06-24 23:38:56 +0100 | [diff] [blame] | 165 | . = ALIGN(PAGE_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | __init_end = .; |
| 167 | #endif |
| 168 | |
Linus Walleij | f6430a9 | 2009-06-24 23:38:56 +0100 | [diff] [blame] | 169 | . = ALIGN(PAGE_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | __nosave_begin = .; |
| 171 | *(.data.nosave) |
Linus Walleij | f6430a9 | 2009-06-24 23:38:56 +0100 | [diff] [blame] | 172 | . = ALIGN(PAGE_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | __nosave_end = .; |
| 174 | |
| 175 | /* |
| 176 | * then the cacheline aligned data |
| 177 | */ |
| 178 | . = ALIGN(32); |
| 179 | *(.data.cacheline_aligned) |
| 180 | |
| 181 | /* |
Nicolas Pitre | 13b1f64 | 2005-10-13 22:04:37 +0100 | [diff] [blame] | 182 | * The exception fixup table (might need resorting at runtime) |
| 183 | */ |
| 184 | . = ALIGN(32); |
| 185 | __start___ex_table = .; |
Russell King | 9641c7c | 2006-06-21 20:38:17 +0100 | [diff] [blame] | 186 | #ifdef CONFIG_MMU |
Nicolas Pitre | 13b1f64 | 2005-10-13 22:04:37 +0100 | [diff] [blame] | 187 | *(__ex_table) |
Russell King | 9641c7c | 2006-06-21 20:38:17 +0100 | [diff] [blame] | 188 | #endif |
Nicolas Pitre | 13b1f64 | 2005-10-13 22:04:37 +0100 | [diff] [blame] | 189 | __stop___ex_table = .; |
| 190 | |
| 191 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | * and the usual data section |
| 193 | */ |
Sam Ravnborg | ca96725 | 2007-05-17 13:38:44 +0200 | [diff] [blame] | 194 | DATA_DATA |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | CONSTRUCTORS |
| 196 | |
| 197 | _edata = .; |
| 198 | } |
Nicolas Pitre | e98ff7f | 2007-02-22 16:18:09 +0100 | [diff] [blame] | 199 | _edata_loc = __data_loc + SIZEOF(.data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | |
Linus Walleij | bc58177 | 2009-09-15 17:30:37 +0100 | [diff] [blame^] | 201 | #ifdef CONFIG_HAVE_TCM |
| 202 | /* |
| 203 | * We align everything to a page boundary so we can |
| 204 | * free it after init has commenced and TCM contents have |
| 205 | * been copied to its destination. |
| 206 | */ |
| 207 | .tcm_start : { |
| 208 | . = ALIGN(PAGE_SIZE); |
| 209 | __tcm_start = .; |
| 210 | __itcm_start = .; |
| 211 | } |
| 212 | |
| 213 | /* |
| 214 | * Link these to the ITCM RAM |
| 215 | * Put VMA to the TCM address and LMA to the common RAM |
| 216 | * and we'll upload the contents from RAM to TCM and free |
| 217 | * the used RAM after that. |
| 218 | */ |
| 219 | .text_itcm ITCM_OFFSET : AT(__itcm_start) |
| 220 | { |
| 221 | __sitcm_text = .; |
| 222 | *(.tcm.text) |
| 223 | *(.tcm.rodata) |
| 224 | . = ALIGN(4); |
| 225 | __eitcm_text = .; |
| 226 | } |
| 227 | |
| 228 | /* |
| 229 | * Reset the dot pointer, this is needed to create the |
| 230 | * relative __dtcm_start below (to be used as extern in code). |
| 231 | */ |
| 232 | . = ADDR(.tcm_start) + SIZEOF(.tcm_start) + SIZEOF(.text_itcm); |
| 233 | |
| 234 | .dtcm_start : { |
| 235 | __dtcm_start = .; |
| 236 | } |
| 237 | |
| 238 | /* TODO: add remainder of ITCM as well, that can be used for data! */ |
| 239 | .data_dtcm DTCM_OFFSET : AT(__dtcm_start) |
| 240 | { |
| 241 | . = ALIGN(4); |
| 242 | __sdtcm_data = .; |
| 243 | *(.tcm.data) |
| 244 | . = ALIGN(4); |
| 245 | __edtcm_data = .; |
| 246 | } |
| 247 | |
| 248 | /* Reset the dot pointer or the linker gets confused */ |
| 249 | . = ADDR(.dtcm_start) + SIZEOF(.data_dtcm); |
| 250 | |
| 251 | /* End marker for freeing TCM copy in linked object */ |
| 252 | .tcm_end : AT(ADDR(.dtcm_start) + SIZEOF(.data_dtcm)){ |
| 253 | . = ALIGN(PAGE_SIZE); |
| 254 | __tcm_end = .; |
| 255 | } |
| 256 | #endif |
| 257 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | .bss : { |
| 259 | __bss_start = .; /* BSS */ |
| 260 | *(.bss) |
| 261 | *(COMMON) |
Catalin Marinas | 8c7e657 | 2009-05-30 14:00:17 +0100 | [diff] [blame] | 262 | __bss_stop = .; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | _end = .; |
| 264 | } |
| 265 | /* Stabs debugging sections. */ |
| 266 | .stab 0 : { *(.stab) } |
| 267 | .stabstr 0 : { *(.stabstr) } |
| 268 | .stab.excl 0 : { *(.stab.excl) } |
| 269 | .stab.exclstr 0 : { *(.stab.exclstr) } |
| 270 | .stab.index 0 : { *(.stab.index) } |
| 271 | .stab.indexstr 0 : { *(.stab.indexstr) } |
| 272 | .comment 0 : { *(.comment) } |
| 273 | } |
| 274 | |
Russell King | 728f5c0 | 2005-11-17 16:43:14 +0000 | [diff] [blame] | 275 | /* |
| 276 | * These must never be empty |
| 277 | * If you have to comment these two assert statements out, your |
| 278 | * binutils is too old (for other reasons as well) |
| 279 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | ASSERT((__proc_info_end - __proc_info_begin), "missing CPU support") |
| 281 | ASSERT((__arch_info_end - __arch_info_begin), "no machine record defined") |