Haavard Skinnemoen | 5f97f7f | 2006-09-25 23:32:13 -0700 | [diff] [blame] | 1 | /* |
| 2 | * AVR32 linker script for the Linux kernel |
| 3 | * |
| 4 | * Copyright (C) 2004-2006 Atmel Corporation |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License version 2 as |
| 8 | * published by the Free Software Foundation. |
| 9 | */ |
| 10 | #define LOAD_OFFSET 0x00000000 |
| 11 | #include <asm-generic/vmlinux.lds.h> |
Haavard Skinnemoen | 7cf6ac2 | 2007-09-17 11:08:28 +0200 | [diff] [blame] | 12 | #include <asm/cache.h> |
| 13 | #include <asm/thread_info.h> |
Haavard Skinnemoen | 5f97f7f | 2006-09-25 23:32:13 -0700 | [diff] [blame] | 14 | |
| 15 | OUTPUT_FORMAT("elf32-avr32", "elf32-avr32", "elf32-avr32") |
| 16 | OUTPUT_ARCH(avr32) |
| 17 | ENTRY(_start) |
| 18 | |
| 19 | /* Big endian */ |
| 20 | jiffies = jiffies_64 + 4; |
| 21 | |
| 22 | SECTIONS |
| 23 | { |
| 24 | . = CONFIG_ENTRY_ADDRESS; |
| 25 | .init : AT(ADDR(.init) - LOAD_OFFSET) { |
| 26 | _stext = .; |
| 27 | __init_begin = .; |
| 28 | _sinittext = .; |
| 29 | *(.text.reset) |
| 30 | *(.init.text) |
Haavard Skinnemoen | 623b035 | 2007-03-13 17:59:11 +0100 | [diff] [blame] | 31 | /* |
| 32 | * .exit.text is discarded at runtime, not |
| 33 | * link time, to deal with references from |
| 34 | * __bug_table |
| 35 | */ |
| 36 | *(.exit.text) |
Haavard Skinnemoen | 5f97f7f | 2006-09-25 23:32:13 -0700 | [diff] [blame] | 37 | _einittext = .; |
| 38 | . = ALIGN(4); |
| 39 | __tagtable_begin = .; |
Haavard Skinnemoen | b3cfe0c | 2007-05-09 09:26:18 +0200 | [diff] [blame] | 40 | *(.taglist.init) |
Haavard Skinnemoen | 5f97f7f | 2006-09-25 23:32:13 -0700 | [diff] [blame] | 41 | __tagtable_end = .; |
| 42 | *(.init.data) |
| 43 | . = ALIGN(16); |
| 44 | __setup_start = .; |
| 45 | *(.init.setup) |
| 46 | __setup_end = .; |
| 47 | . = ALIGN(4); |
| 48 | __initcall_start = .; |
Andrew Morton | 61ce1ef | 2006-10-27 11:41:44 -0700 | [diff] [blame] | 49 | INITCALLS |
Haavard Skinnemoen | 5f97f7f | 2006-09-25 23:32:13 -0700 | [diff] [blame] | 50 | __initcall_end = .; |
| 51 | __con_initcall_start = .; |
| 52 | *(.con_initcall.init) |
| 53 | __con_initcall_end = .; |
| 54 | __security_initcall_start = .; |
| 55 | *(.security_initcall.init) |
| 56 | __security_initcall_end = .; |
Jean-Paul Saman | 67d3822 | 2007-02-10 01:44:44 -0800 | [diff] [blame] | 57 | #ifdef CONFIG_BLK_DEV_INITRD |
Haavard Skinnemoen | 5f97f7f | 2006-09-25 23:32:13 -0700 | [diff] [blame] | 58 | . = ALIGN(32); |
| 59 | __initramfs_start = .; |
| 60 | *(.init.ramfs) |
| 61 | __initramfs_end = .; |
Jean-Paul Saman | 67d3822 | 2007-02-10 01:44:44 -0800 | [diff] [blame] | 62 | #endif |
Haavard Skinnemoen | 7cf6ac2 | 2007-09-17 11:08:28 +0200 | [diff] [blame] | 63 | . = ALIGN(PAGE_SIZE); |
Haavard Skinnemoen | 5f97f7f | 2006-09-25 23:32:13 -0700 | [diff] [blame] | 64 | __init_end = .; |
| 65 | } |
| 66 | |
Haavard Skinnemoen | 5f97f7f | 2006-09-25 23:32:13 -0700 | [diff] [blame] | 67 | .text : AT(ADDR(.text) - LOAD_OFFSET) { |
| 68 | _evba = .; |
| 69 | _text = .; |
| 70 | *(.ex.text) |
| 71 | . = 0x50; |
| 72 | *(.tlbx.ex.text) |
| 73 | . = 0x60; |
| 74 | *(.tlbr.ex.text) |
| 75 | . = 0x70; |
| 76 | *(.tlbw.ex.text) |
| 77 | . = 0x100; |
| 78 | *(.scall.text) |
| 79 | *(.irq.text) |
Sam Ravnborg | 7664709 | 2007-05-13 00:31:33 +0200 | [diff] [blame] | 80 | TEXT_TEXT |
Haavard Skinnemoen | 5f97f7f | 2006-09-25 23:32:13 -0700 | [diff] [blame] | 81 | SCHED_TEXT |
| 82 | LOCK_TEXT |
| 83 | KPROBES_TEXT |
| 84 | *(.fixup) |
| 85 | *(.gnu.warning) |
| 86 | _etext = .; |
| 87 | } = 0xd703d703 |
| 88 | |
| 89 | . = ALIGN(4); |
| 90 | __ex_table : AT(ADDR(__ex_table) - LOAD_OFFSET) { |
| 91 | __start___ex_table = .; |
| 92 | *(__ex_table) |
| 93 | __stop___ex_table = .; |
| 94 | } |
| 95 | |
Haavard Skinnemoen | 623b035 | 2007-03-13 17:59:11 +0100 | [diff] [blame] | 96 | BUG_TABLE |
| 97 | |
Haavard Skinnemoen | 5f97f7f | 2006-09-25 23:32:13 -0700 | [diff] [blame] | 98 | RODATA |
| 99 | |
Haavard Skinnemoen | 7cf6ac2 | 2007-09-17 11:08:28 +0200 | [diff] [blame] | 100 | . = ALIGN(THREAD_SIZE); |
Haavard Skinnemoen | 5f97f7f | 2006-09-25 23:32:13 -0700 | [diff] [blame] | 101 | |
| 102 | .data : AT(ADDR(.data) - LOAD_OFFSET) { |
| 103 | _data = .; |
| 104 | _sdata = .; |
| 105 | /* |
| 106 | * First, the init task union, aligned to an 8K boundary. |
| 107 | */ |
| 108 | *(.data.init_task) |
| 109 | |
| 110 | /* Then, the cacheline aligned data */ |
Haavard Skinnemoen | 7cf6ac2 | 2007-09-17 11:08:28 +0200 | [diff] [blame] | 111 | . = ALIGN(L1_CACHE_BYTES); |
Haavard Skinnemoen | 5f97f7f | 2006-09-25 23:32:13 -0700 | [diff] [blame] | 112 | *(.data.cacheline_aligned) |
| 113 | |
| 114 | /* And the rest... */ |
| 115 | *(.data.rel*) |
Sam Ravnborg | ca96725 | 2007-05-17 13:38:44 +0200 | [diff] [blame] | 116 | DATA_DATA |
Haavard Skinnemoen | 5f97f7f | 2006-09-25 23:32:13 -0700 | [diff] [blame] | 117 | CONSTRUCTORS |
| 118 | |
| 119 | _edata = .; |
| 120 | } |
| 121 | |
| 122 | |
| 123 | . = ALIGN(8); |
| 124 | .bss : AT(ADDR(.bss) - LOAD_OFFSET) { |
| 125 | __bss_start = .; |
| 126 | *(.bss) |
| 127 | *(COMMON) |
| 128 | . = ALIGN(8); |
| 129 | __bss_stop = .; |
| 130 | _end = .; |
| 131 | } |
| 132 | |
| 133 | /* When something in the kernel is NOT compiled as a module, the module |
| 134 | * cleanup code and data are put into these segments. Both can then be |
| 135 | * thrown away, as cleanup code is never called unless it's a module. |
| 136 | */ |
| 137 | /DISCARD/ : { |
Haavard Skinnemoen | 5f97f7f | 2006-09-25 23:32:13 -0700 | [diff] [blame] | 138 | *(.exit.data) |
| 139 | *(.exitcall.exit) |
| 140 | } |
| 141 | |
| 142 | DWARF_DEBUG |
| 143 | } |