]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/CORTEX_M4_ATSAM4S_Atmel_Studio/src/asf/sam/utils/linker_scripts/sam4s/sam4s16/gcc/flash.ld
Add FreeRTOS-Plus directory.
[freertos] / FreeRTOS / Demo / CORTEX_M4_ATSAM4S_Atmel_Studio / src / asf / sam / utils / linker_scripts / sam4s / sam4s16 / gcc / flash.ld
1 /**\r
2  * \file\r
3  *\r
4  * \brief Flash Linker script for SAM.\r
5  *\r
6  * Copyright (c) 2011 Atmel Corporation. All rights reserved.\r
7  *\r
8  * \asf_license_start\r
9  *\r
10  * Redistribution and use in source and binary forms, with or without\r
11  * modification, are permitted provided that the following conditions are met:\r
12  * \r
13  * 1. Redistributions of source code must retain the above copyright notice, \r
14  *    this list of conditions and the following disclaimer.\r
15  * \r
16  * 2. Redistributions in binary form must reproduce the above copyright notice,\r
17  *    this list of conditions and the following disclaimer in the documentation\r
18  *    and/or other materials provided with the distribution.\r
19  * \r
20  * 3. The name of Atmel may not be used to endorse or promote products derived\r
21  *    from this software without specific prior written permission.\r
22  * \r
23  * 4. This software may only be redistributed and used in connection with an \r
24  *    Atmel microcontroller product.\r
25  * \r
26  * THIS SOFTWARE IS PROVIDED BY ATMEL "AS IS" AND ANY EXPRESS OR IMPLIED\r
27  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\r
28  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT ARE\r
29  * EXPRESSLY AND SPECIFICALLY DISCLAIMED. IN NO EVENT SHALL ATMEL BE LIABLE FOR\r
30  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\r
31  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS\r
32  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)\r
33  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,\r
34  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN\r
35  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\r
36  * POSSIBILITY OF SUCH DAMAGE.\r
37  *\r
38  * \asf_license_stop\r
39  *\r
40  */\r
41 \r
42 OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")\r
43 OUTPUT_ARCH(arm)\r
44 SEARCH_DIR(.)\r
45 \r
46 /* Memory Spaces Definitions */\r
47 MEMORY\r
48 {\r
49         rom (rx)  : ORIGIN = 0x00400000, LENGTH = 0x00100000 /* flash, 1024K */\r
50         ram (rwx) : ORIGIN = 0x20000000, LENGTH = 0x00020000 /* sram, 128K */\r
51 }\r
52 \r
53 /* The stack size used by the application. NOTE: you need to adjust according to your application. */\r
54 STACK_SIZE = 0x3000;\r
55 \r
56 /* Section Definitions */\r
57 SECTIONS\r
58 {\r
59     .text :\r
60     {\r
61         . = ALIGN(4);\r
62         _sfixed = .;\r
63         KEEP(*(.vectors .vectors.*))\r
64         *(.text .text.* .gnu.linkonce.t.*)\r
65         *(.glue_7t) *(.glue_7)\r
66         *(.rodata .rodata* .gnu.linkonce.r.*)\r
67         *(.ARM.extab* .gnu.linkonce.armextab.*)\r
68 \r
69         /* Support C constructors, and C destructors in both user code\r
70            and the C library. This also provides support for C++ code. */\r
71         . = ALIGN(4);\r
72         KEEP(*(.init))\r
73         . = ALIGN(4);\r
74         __preinit_array_start = .;\r
75         KEEP (*(.preinit_array))\r
76         __preinit_array_end = .;\r
77 \r
78         . = ALIGN(4);\r
79         __init_array_start = .;\r
80         KEEP (*(SORT(.init_array.*)))\r
81         KEEP (*(.init_array))\r
82         __init_array_end = .;\r
83 \r
84         . = ALIGN(0x4);\r
85         KEEP (*crtbegin.o(.ctors))\r
86         KEEP (*(EXCLUDE_FILE (*crtend.o) .ctors))\r
87         KEEP (*(SORT(.ctors.*)))\r
88         KEEP (*crtend.o(.ctors))\r
89 \r
90         . = ALIGN(4);\r
91         KEEP(*(.fini))\r
92 \r
93         . = ALIGN(4);\r
94         __fini_array_start = .;\r
95         KEEP (*(.fini_array))\r
96         KEEP (*(SORT(.fini_array.*)))\r
97         __fini_array_end = .;\r
98 \r
99         KEEP (*crtbegin.o(.dtors))\r
100         KEEP (*(EXCLUDE_FILE (*crtend.o) .dtors))\r
101         KEEP (*(SORT(.dtors.*)))\r
102         KEEP (*crtend.o(.dtors))\r
103 \r
104         . = ALIGN(4);\r
105         _efixed = .;            /* End of text section */\r
106     } > rom\r
107 \r
108     /* .ARM.exidx is sorted, so has to go in its own output section.  */\r
109     PROVIDE_HIDDEN (__exidx_start = .);\r
110     .ARM.exidx :\r
111     {\r
112       *(.ARM.exidx* .gnu.linkonce.armexidx.*)\r
113     } > rom\r
114     PROVIDE_HIDDEN (__exidx_end = .);\r
115 \r
116     . = ALIGN(4);\r
117     _etext = .;\r
118 \r
119     .relocate : AT (_etext)\r
120     {\r
121         . = ALIGN(4);\r
122         _srelocate = .;\r
123         *(.ramfunc .ramfunc.*);\r
124         *(.data .data.*);\r
125         . = ALIGN(4);\r
126         _erelocate = .;\r
127     } > ram\r
128 \r
129     /* .bss section which is used for uninitialized data */\r
130     .bss (NOLOAD) :\r
131     {\r
132         . = ALIGN(4);\r
133         _sbss = . ;\r
134         _szero = .;\r
135         *(.bss .bss.*)\r
136         *(COMMON)\r
137         . = ALIGN(4);\r
138         _ebss = . ;\r
139         _ezero = .;\r
140     } > ram\r
141 \r
142     /* stack section */\r
143     .stack (NOLOAD):\r
144     {\r
145         . = ALIGN(8);\r
146          _sstack = .;\r
147         . = . + STACK_SIZE;\r
148         . = ALIGN(8);\r
149         _estack = .;\r
150     } > ram\r
151 \r
152     . = ALIGN(4);\r
153     _end = . ;\r
154 }\r