]> git.sur5r.net Git - openocd/blob - testing/examples/SAM7X256Test/prj/sam7x256_rom.ld
e38746c2c74805d1c76a3c59202fdb430dfde860
[openocd] / testing / examples / SAM7X256Test / prj / sam7x256_rom.ld
1 /****************************************************************************\r
2 *  Copyright (c) 2006 by Michael Fischer. All rights reserved.\r
3 *\r
4 *  Redistribution and use in source and binary forms, with or without \r
5 *  modification, are permitted provided that the following conditions \r
6 *  are met:\r
7 *  \r
8 *  1. Redistributions of source code must retain the above copyright \r
9 *     notice, this list of conditions and the following disclaimer.\r
10 *  2. Redistributions in binary form must reproduce the above copyright\r
11 *     notice, this list of conditions and the following disclaimer in the \r
12 *     documentation and/or other materials provided with the distribution.\r
13 *  3. Neither the name of the author nor the names of its contributors may \r
14 *     be used to endorse or promote products derived from this software \r
15 *     without specific prior written permission.\r
16 *\r
17 *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \r
18 *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT \r
19 *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS \r
20 *  FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL \r
21 *  THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, \r
22 *  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, \r
23 *  BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS \r
24 *  OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED \r
25 *  AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, \r
26 *  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF \r
27 *  THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF \r
28 *  SUCH DAMAGE.\r
29 *\r
30 ****************************************************************************\r
31 *\r
32 *  History:\r
33 *\r
34 *  26.01.08  mifi   First Version\r
35 ****************************************************************************/\r
36 \r
37 \r
38 ENTRY(ResetHandler)\r
39 SEARCH_DIR(.)\r
40 \r
41 /*\r
42  * Define stack size here\r
43  */\r
44 FIQ_STACK_SIZE = 0x0100;\r
45 IRQ_STACK_SIZE = 0x0100;\r
46 ABT_STACK_SIZE = 0x0100;\r
47 UND_STACK_SIZE = 0x0100;\r
48 SVC_STACK_SIZE = 0x0400;\r
49 \r
50 \r
51 MEMORY\r
52 {\r
53   rom : org = 0x00100000, len = 256k\r
54   ram : org = 0x00200000, len = 64k\r
55 }\r
56 \r
57 /*\r
58  * Do not change the next code\r
59  */\r
60 SECTIONS\r
61 {\r
62   .text :\r
63   {\r
64     *(.vectors);\r
65     . = ALIGN(4);\r
66     *(.init);\r
67     . = ALIGN(4);\r
68     *(.text);\r
69     . = ALIGN(4);\r
70     *(.rodata);\r
71     . = ALIGN(4);\r
72     *(.rodata*);\r
73     . = ALIGN(4);\r
74     *(.glue_7t);\r
75     . = ALIGN(4);\r
76     *(.glue_7);\r
77     . = ALIGN(4);\r
78     etext = .;\r
79   } > rom\r
80 \r
81   .data :\r
82   {\r
83     PROVIDE (__data_start = .);\r
84     *(.data)\r
85     . = ALIGN(4);\r
86     edata = .;\r
87     _edata = .;\r
88     PROVIDE (__data_end = .);\r
89   } > ram\r
90 \r
91   .bss :\r
92   {\r
93     PROVIDE (__bss_start = .);\r
94     *(.bss)\r
95     *(COMMON)\r
96     . = ALIGN(4);\r
97     PROVIDE (__bss_end = .);\r
98     \r
99     . = ALIGN(256);\r
100     \r
101     PROVIDE (__stack_start = .);\r
102     \r
103     PROVIDE (__stack_fiq_start = .);\r
104     . += FIQ_STACK_SIZE;\r
105     . = ALIGN(4);\r
106     PROVIDE (__stack_fiq_end = .);\r
107 \r
108     PROVIDE (__stack_irq_start = .);\r
109     . += IRQ_STACK_SIZE;\r
110     . = ALIGN(4);\r
111     PROVIDE (__stack_irq_end = .);\r
112 \r
113     PROVIDE (__stack_abt_start = .);\r
114     . += ABT_STACK_SIZE;\r
115     . = ALIGN(4);\r
116     PROVIDE (__stack_abt_end = .);\r
117 \r
118     PROVIDE (__stack_und_start = .);\r
119     . += UND_STACK_SIZE;\r
120     . = ALIGN(4);\r
121     PROVIDE (__stack_und_end = .);\r
122 \r
123     PROVIDE (__stack_svc_start = .);\r
124     . += SVC_STACK_SIZE;\r
125     . = ALIGN(4);\r
126     PROVIDE (__stack_svc_end = .);\r
127     PROVIDE (__stack_end = .);\r
128     PROVIDE (__heap_start = .);   \r
129   } > ram\r
130     \r
131 }\r
132 /*** EOF ***/\r
133 \r