cortex-m3: add basic support for the lm3s1968 board.
[bertos.git] / bertos / cpu / cortex-m3 / scripts / lm3s1968_rom.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 2007 Develer S.r.l. (http://www.develer.com/)
30  *
31  * -->
32  *
33  * \author Manuele Fanelli <qwert@develer.com>
34  *
35  * \brief Script for Luminary Micro LM3S1968 Cortex M3 family processors.
36  *
37  */
38
39 SEARCH_DIR(.)
40 OUTPUT_FORMAT("elf32-littlearm", "elf32-bigarm", "elf32-littlearm")
41 OUTPUT_ARCH(arm)
42
43 /*
44  * Define memory configuration for LM3S1968 board
45  */
46 MEMORY
47 {
48   rom(rx) : org = 0x00000000, len = 256k
49   ram(rwx) : org = 0x20000000, len = 64k
50 }
51
52
53 /*
54  * Define stack size here
55  */
56 FIQ_STACK_SIZE = 0x0100;
57 IRQ_STACK_SIZE = 0x0100;
58 ABT_STACK_SIZE = 0x0100;
59 UND_STACK_SIZE = 0x0100;
60 SVC_STACK_SIZE = 0x0400;
61
62 /*
63  * Allocate section memory
64  */
65 SECTIONS
66 {
67         .text :
68         {
69                 KEEP(*(.vectors));
70                 . = ALIGN (4);
71                 KEEP(*(.init));
72                 . = ALIGN (4);
73                 *(.rodata .rodata.*);
74                 . = ALIGN (4);
75                 *(.text .text.*);
76                 . = ALIGN (4);
77                 *(.glue_7t);
78                 . = ALIGN(4);
79                 *(.glue_7);
80                 . = ALIGN(4);
81         } > rom
82
83         _etext = .;
84         PROVIDE (__etext = .);
85
86         .data : AT (_etext)
87         {
88                 PROVIDE (__data_start = .);
89                 *(vtable)
90                 . = ALIGN (0x400);
91                 *(.data .data.*)
92                 . = ALIGN (4);
93                 _edata = .;
94                 PROVIDE (__data_end = .);
95         } > ram
96
97         .bss :
98         {
99                 PROVIDE (__bss_start = .);
100                 *(.bss .bss.*)
101                 . = ALIGN(4);
102                 *(COMMON)
103                 . = ALIGN(4);
104                 PROVIDE (__bss_end = .);
105         } > ram
106
107         /*
108          * Allocated stack at the end of bss section.
109          * Data heap is allocate at end of stack.
110          */
111         PROVIDE (__stack_start = .);
112
113         PROVIDE (__stack_fiq_start = .);
114         . += FIQ_STACK_SIZE;
115         . = ALIGN(4);
116         PROVIDE (__stack_fiq_end = .);
117
118         PROVIDE (__stack_irq_start = .);
119         . += IRQ_STACK_SIZE;
120         . = ALIGN(4);
121         PROVIDE (__stack_irq_end = .);
122
123         PROVIDE (__stack_abt_start = .);
124         . += ABT_STACK_SIZE;
125         . = ALIGN(4);
126         PROVIDE (__stack_abt_end = .);
127
128         PROVIDE (__stack_und_start = .);
129         . += UND_STACK_SIZE;
130         . = ALIGN(4);
131         PROVIDE (__stack_und_end = .);
132
133         PROVIDE (__stack_svc_start = .);
134         . += SVC_STACK_SIZE;
135         . = ALIGN(4);
136         PROVIDE (__stack_svc_end = .);
137
138         PROVIDE (__stack_end = .);
139
140         PROVIDE (__heap_start = .);
141 }