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