diff options
| author | Haavard Skinnemoen <hskinnemoen@atmel.com> | 2006-09-26 02:32:13 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-09-26 11:48:54 -0400 |
| commit | 5f97f7f9400de47ae837170bb274e90ad3934386 (patch) | |
| tree | 514451e6dc6b46253293a00035d375e77b1c65ed /arch/avr32/kernel/vmlinux.lds.c | |
| parent | 53e62d3aaa60590d4a69b4e07c29f448b5151047 (diff) | |
[PATCH] avr32 architecture
This adds support for the Atmel AVR32 architecture as well as the AT32AP7000
CPU and the AT32STK1000 development board.
AVR32 is a new high-performance 32-bit RISC microprocessor core, designed for
cost-sensitive embedded applications, with particular emphasis on low power
consumption and high code density. The AVR32 architecture is not binary
compatible with earlier 8-bit AVR architectures.
The AVR32 architecture, including the instruction set, is described by the
AVR32 Architecture Manual, available from
http://www.atmel.com/dyn/resources/prod_documents/doc32000.pdf
The Atmel AT32AP7000 is the first CPU implementing the AVR32 architecture. It
features a 7-stage pipeline, 16KB instruction and data caches and a full
Memory Management Unit. It also comes with a large set of integrated
peripherals, many of which are shared with the AT91 ARM-based controllers from
Atmel.
Full data sheet is available from
http://www.atmel.com/dyn/resources/prod_documents/doc32003.pdf
while the CPU core implementation including caches and MMU is documented by
the AVR32 AP Technical Reference, available from
http://www.atmel.com/dyn/resources/prod_documents/doc32001.pdf
Information about the AT32STK1000 development board can be found at
http://www.atmel.com/dyn/products/tools_card.asp?tool_id=3918
including a BSP CD image with an earlier version of this patch, development
tools (binaries and source/patches) and a root filesystem image suitable for
booting from SD card.
Alternatively, there's a preliminary "getting started" guide available at
http://avr32linux.org/twiki/bin/view/Main/GettingStarted which provides links
to the sources and patches you will need in order to set up a cross-compiling
environment for avr32-linux.
This patch, as well as the other patches included with the BSP and the
toolchain patches, is actively supported by Atmel Corporation.
[dmccr@us.ibm.com: Fix more pxx_page macro locations]
[bunk@stusta.de: fix `make defconfig']
Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Dave McCracken <dmccr@us.ibm.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/avr32/kernel/vmlinux.lds.c')
| -rw-r--r-- | arch/avr32/kernel/vmlinux.lds.c | 139 |
1 files changed, 139 insertions, 0 deletions
diff --git a/arch/avr32/kernel/vmlinux.lds.c b/arch/avr32/kernel/vmlinux.lds.c new file mode 100644 index 000000000000..cdd627c6b7dc --- /dev/null +++ b/arch/avr32/kernel/vmlinux.lds.c | |||
| @@ -0,0 +1,139 @@ | |||
| 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> | ||
| 12 | |||
| 13 | OUTPUT_FORMAT("elf32-avr32", "elf32-avr32", "elf32-avr32") | ||
| 14 | OUTPUT_ARCH(avr32) | ||
| 15 | ENTRY(_start) | ||
| 16 | |||
| 17 | /* Big endian */ | ||
| 18 | jiffies = jiffies_64 + 4; | ||
| 19 | |||
| 20 | SECTIONS | ||
| 21 | { | ||
| 22 | . = CONFIG_ENTRY_ADDRESS; | ||
| 23 | .init : AT(ADDR(.init) - LOAD_OFFSET) { | ||
| 24 | _stext = .; | ||
| 25 | __init_begin = .; | ||
| 26 | _sinittext = .; | ||
| 27 | *(.text.reset) | ||
| 28 | *(.init.text) | ||
| 29 | _einittext = .; | ||
| 30 | . = ALIGN(4); | ||
| 31 | __tagtable_begin = .; | ||
| 32 | *(.taglist) | ||
| 33 | __tagtable_end = .; | ||
| 34 | *(.init.data) | ||
| 35 | . = ALIGN(16); | ||
| 36 | __setup_start = .; | ||
| 37 | *(.init.setup) | ||
| 38 | __setup_end = .; | ||
| 39 | . = ALIGN(4); | ||
| 40 | __initcall_start = .; | ||
| 41 | *(.initcall1.init) | ||
| 42 | *(.initcall2.init) | ||
| 43 | *(.initcall3.init) | ||
| 44 | *(.initcall4.init) | ||
| 45 | *(.initcall5.init) | ||
| 46 | *(.initcall6.init) | ||
| 47 | *(.initcall7.init) | ||
| 48 | __initcall_end = .; | ||
| 49 | __con_initcall_start = .; | ||
| 50 | *(.con_initcall.init) | ||
| 51 | __con_initcall_end = .; | ||
| 52 | __security_initcall_start = .; | ||
| 53 | *(.security_initcall.init) | ||
| 54 | __security_initcall_end = .; | ||
| 55 | . = ALIGN(32); | ||
| 56 | __initramfs_start = .; | ||
| 57 | *(.init.ramfs) | ||
| 58 | __initramfs_end = .; | ||
| 59 | . = ALIGN(4096); | ||
| 60 | __init_end = .; | ||
| 61 | } | ||
| 62 | |||
| 63 | . = ALIGN(8192); | ||
| 64 | .text : AT(ADDR(.text) - LOAD_OFFSET) { | ||
| 65 | _evba = .; | ||
| 66 | _text = .; | ||
| 67 | *(.ex.text) | ||
| 68 | . = 0x50; | ||
| 69 | *(.tlbx.ex.text) | ||
| 70 | . = 0x60; | ||
| 71 | *(.tlbr.ex.text) | ||
| 72 | . = 0x70; | ||
| 73 | *(.tlbw.ex.text) | ||
| 74 | . = 0x100; | ||
| 75 | *(.scall.text) | ||
| 76 | *(.irq.text) | ||
| 77 | *(.text) | ||
| 78 | SCHED_TEXT | ||
| 79 | LOCK_TEXT | ||
| 80 | KPROBES_TEXT | ||
| 81 | *(.fixup) | ||
| 82 | *(.gnu.warning) | ||
| 83 | _etext = .; | ||
| 84 | } = 0xd703d703 | ||
| 85 | |||
| 86 | . = ALIGN(4); | ||
| 87 | __ex_table : AT(ADDR(__ex_table) - LOAD_OFFSET) { | ||
| 88 | __start___ex_table = .; | ||
| 89 | *(__ex_table) | ||
| 90 | __stop___ex_table = .; | ||
| 91 | } | ||
| 92 | |||
| 93 | RODATA | ||
| 94 | |||
| 95 | . = ALIGN(8192); | ||
| 96 | |||
| 97 | .data : AT(ADDR(.data) - LOAD_OFFSET) { | ||
| 98 | _data = .; | ||
| 99 | _sdata = .; | ||
| 100 | /* | ||
| 101 | * First, the init task union, aligned to an 8K boundary. | ||
| 102 | */ | ||
| 103 | *(.data.init_task) | ||
| 104 | |||
| 105 | /* Then, the cacheline aligned data */ | ||
| 106 | . = ALIGN(32); | ||
| 107 | *(.data.cacheline_aligned) | ||
| 108 | |||
| 109 | /* And the rest... */ | ||
| 110 | *(.data.rel*) | ||
| 111 | *(.data) | ||
| 112 | CONSTRUCTORS | ||
| 113 | |||
| 114 | _edata = .; | ||
| 115 | } | ||
| 116 | |||
| 117 | |||
| 118 | . = ALIGN(8); | ||
| 119 | .bss : AT(ADDR(.bss) - LOAD_OFFSET) { | ||
| 120 | __bss_start = .; | ||
| 121 | *(.bss) | ||
| 122 | *(COMMON) | ||
| 123 | . = ALIGN(8); | ||
| 124 | __bss_stop = .; | ||
| 125 | _end = .; | ||
| 126 | } | ||
| 127 | |||
| 128 | /* When something in the kernel is NOT compiled as a module, the module | ||
| 129 | * cleanup code and data are put into these segments. Both can then be | ||
| 130 | * thrown away, as cleanup code is never called unless it's a module. | ||
| 131 | */ | ||
| 132 | /DISCARD/ : { | ||
| 133 | *(.exit.text) | ||
| 134 | *(.exit.data) | ||
| 135 | *(.exitcall.exit) | ||
| 136 | } | ||
| 137 | |||
| 138 | DWARF_DEBUG | ||
| 139 | } | ||
