ARM7TDMI: add sections for exception handlers.
[bertos.git] / bertos / cpu / arm / scripts / arm7tdmi_ram.ld
1 /**
2  * \file
3  * <!--
4  * This file is part of BeRTOS.
5  *
6  * Bertos is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  * As a special exception, you may use this file as part of a free software
21  * library without restriction.  Specifically, if other files instantiate
22  * templates or use macros or inline functions from this file, or you compile
23  * this file and link it with other files to produce an executable, this
24  * file does not by itself cause the resulting executable to be covered by
25  * the GNU General Public License.  This exception does not however
26  * invalidate any other reasons why the executable file might be covered by
27  * the GNU General Public License.
28  *
29  * Copyright 2010 Develer S.r.l. (http://www.develer.com/)
30  *
31  * -->
32  *
33  * \author Daniele Basile <asterix@develer.com>
34  *
35  * \brief Linker Script for Atmel AT91SAM7 family processors, RAM execution.
36  *
37  */
38
39 OUTPUT_FORMAT("elf32-littlearm", "elf32-bigarm", "elf32-littlearm")
40 OUTPUT_ARCH(arm)
41
42 /*
43  * Define stack size here
44  */
45 FIQ_STACK_SIZE = 0x0100;
46 IRQ_STACK_SIZE = 0x0400;
47 ABT_STACK_SIZE = 0x0100;
48 UND_STACK_SIZE = 0x0100;
49 SVC_STACK_SIZE = 0x1000;
50
51 /*
52  * Allocate section memory
53  */
54 SECTIONS
55 {
56         .text :
57         {
58                 KEEP(*(.vectors));
59                 . = ALIGN (4);
60                 KEEP(*(.exceptions));
61                 . = ALIGN (4);
62                 *(.init);
63                 . = ALIGN (4);
64                 *(.rodata .rodata.*);
65                 . = ALIGN (4);
66                 *(.text .text.*);
67                 . = ALIGN (4);
68                 *(.glue_7t);
69                 . = ALIGN(4);
70                 *(.glue_7);
71                 . = ALIGN(4);
72                 *(.gcc*);
73                 . = ALIGN(4);
74                 *(.ctors);
75                 . = ALIGN(4);
76                 *(.dtors);
77                 _etext = .;
78                 PROVIDE (__etext = .);
79         } > ram
80
81
82         .data : AT (_etext)
83         {
84                 PROVIDE (__data_start = .);
85                 *(.data .data.*)
86                 . = ALIGN (4);
87                 _edata = .;
88                 PROVIDE (__data_end = .);
89         } > ram
90
91         .bss :
92         {
93                 PROVIDE (__bss_start = .);
94                 *(.bss .bss.*)
95                 . = ALIGN(4);
96                 *(COMMON)
97                 . = ALIGN(4);
98                 PROVIDE (__bss_end = .);
99         } > ram
100
101         /*
102          * Allocate stack at the end of bss section.
103          * Data heap is allocated at end of stack.
104          */
105         PROVIDE (__stack_start = .);
106
107         PROVIDE (__stack_fiq_start = .);
108         . += FIQ_STACK_SIZE;
109         . = ALIGN(8);
110         PROVIDE (__stack_fiq_end = .);
111
112         PROVIDE (__stack_irq_start = .);
113         . += IRQ_STACK_SIZE;
114         . = ALIGN(8);
115         PROVIDE (__stack_irq_end = .);
116
117         PROVIDE (__stack_abt_start = .);
118         . += ABT_STACK_SIZE;
119         . = ALIGN(8);
120         PROVIDE (__stack_abt_end = .);
121
122         PROVIDE (__stack_und_start = .);
123         . += UND_STACK_SIZE;
124         . = ALIGN(8);
125         PROVIDE (__stack_und_end = .);
126
127         PROVIDE (__stack_svc_start = .);
128         . += SVC_STACK_SIZE;
129         . = ALIGN(8);
130         PROVIDE (__stack_svc_end = .);
131
132         PROVIDE (__stack_end = .);
133
134         PROVIDE (__heap_start = .);
135 }