Fix doc path
[opentx.git] / radio / src / targets / taranis / stm32f2_flash.ld
blobe696af604996ed8eb457a99a550420e0a519904e
1 /*
2 *****************************************************************************
3 **
4 **  File        : stm32f2_flash.ld
5 **
6 **  Abstract    : Linker script for STM32F205 Device with
7 **                0.5MByte FLASH, 128KByte SRAM
8 **
9 **                Set heap size, stack size and stack location according
10 **                to application requirements.
12 **                Set memory bank area and size if external memory is used.
14 **  Target      : STMicroelectronics STM32
16 *****************************************************************************
19 /* Entry Point */
20 ENTRY(Reset_Handler)
22 /* Highest address of the user mode stack */
23 _estack = 0x20020000;    /* end of 128K SRAM */
25 /* Generate a link error if heap and stack don't fit into RAM */
26 _Min_Heap_Size = 0;      /* required amount of heap  */
27 _Main_Stack_Size = 1024; /* required amount of stack for interrupt stack (Main stack) */
29 /* Main stack end */
30 _main_stack_start = _estack - _Main_Stack_Size;
31 _heap_end = _main_stack_start;
33 /* Specify the memory areas */
34 MEMORY
36   FLASH (rx)      : ORIGIN = 0x08000000, LENGTH = 512K
37   RAM (xrw)       : ORIGIN = 0x20000000, LENGTH = 128K
38   MEMORY_B1 (rx)  : ORIGIN = 0x60000000, LENGTH = 0K
41 /* Define output sections */
42 SECTIONS
44   /* The startup code goes first into FLASH */
46   /* The program code and other data goes into FLASH */
47   .text :
48   {
49     FILL(0xFFFF)
50       
51     CREATE_OBJECT_SYMBOLS
53     KEEP(*(.bootloader)) /* Bootloader code */
54       
55     . = 32768;           /* Set the start of the main program */
56     _stext = .;          /* Provide the name for the start of this section */
57          . = ALIGN(4);
58     KEEP(*(.isr_vector)) /* Startup code */
59     KEEP(*(.fwversiondata))
60     *(.text)           /* .text sections (code) */
61     *(.text*)          /* .text* sections (code) */
62     *(.rodata)         /* .rodata sections (constants, strings, etc.) */
63     *(.rodata*)        /* .rodata* sections (constants, strings, etc.) */
64     *(.glue_7)         /* glue arm to thumb code */
65     *(.glue_7t)        /* glue thumb to arm code */
66         *(.eh_frame)
68     KEEP (*(.init))
69     KEEP (*(.fini))
71     . = ALIGN(4);
72     _etext = .;        /* define a global symbols at end of code */
73   } >FLASH
76    .ARM.extab   : { *(.ARM.extab* .gnu.linkonce.armextab.*) } >FLASH
77     .ARM : {
78     __exidx_start = .;
79       *(.ARM.exidx*)
80       __exidx_end = .;
81     } >FLASH
83   .preinit_array     :
84   {
85     PROVIDE_HIDDEN (__preinit_array_start = .);
86     KEEP (*(.preinit_array*))
87     PROVIDE_HIDDEN (__preinit_array_end = .);
88   } >FLASH
89   .init_array :
90   {
91     PROVIDE_HIDDEN (__init_array_start = .);
92     KEEP (*(SORT(.init_array.*)))
93     KEEP (*(.init_array*))
94     PROVIDE_HIDDEN (__init_array_end = .);
95   } >FLASH
96   .fini_array :
97   {
98     PROVIDE_HIDDEN (__fini_array_start = .);
99     KEEP (*(.fini_array*))
100     KEEP (*(SORT(.fini_array.*)))
101     PROVIDE_HIDDEN (__fini_array_end = .);
102   } >FLASH
104   /* used by the startup to initialize data */
105   _sidata = .;
107   /* Initialized data sections goes into RAM, load LMA copy after code */
108   .data : AT ( _sidata )
109   {
110     . = ALIGN(4);
111     _sdata = .;        /* create a global symbol at data start */
112     *(.data)           /* .data sections */
113     *(.data*)          /* .data* sections */
115     . = ALIGN(4);
116     _edata = .;        /* define a global symbol at data end */
117   } >RAM
119   /* Uninitialized data section */
120   . = ALIGN(4);
121   .bss :
122   {
123     /* This is used by the startup in order to initialize the .bss secion */
124     _sbss = .;         /* define a global symbol at bss start */
125     __bss_start__ = _sbss;
126     *(.bss)
127     *(.bss*)
128     *(COMMON)
130     . = ALIGN(4);
131     _ebss = .;         /* define a global symbol at bss end */
132     __bss_end__ = _ebss;
133   } >RAM
135   PROVIDE ( end = _ebss );
136   PROVIDE ( _end = _ebss );
138   /* User_heap_stack section, used to check that there is enough RAM left */
139   ._user_heap_stack :
140   {
141     . = ALIGN(4);
142     . = . + _Min_Heap_Size;
143     . = . + _Main_Stack_Size;
144     . = ALIGN(4);
145   } >RAM
147   /* MEMORY_bank1 section, code must be located here explicitly            */
148   /* Example: extern int foo(void) __attribute__ ((section (".mb1text"))); */
149   .memory_b1_text :
150   {
151     *(.mb1text)        /* .mb1text sections (code) */
152     *(.mb1text*)       /* .mb1text* sections (code)  */
153     *(.mb1rodata)      /* read-only data (constants) */
154     *(.mb1rodata*)
155   } >MEMORY_B1
157   /* Remove information from the standard libraries */
158   /DISCARD/ :
159   {
160     libc.a ( * )
161     libm.a ( * )
162     libgcc.a ( * )
163   }
165   .ARM.attributes 0 : { *(.ARM.attributes) }