Merge pull request #10558 from iNavFlight/MrD_Correct-comments-on-OSD-symbols
[inav.git] / src / main / target / link / stm32_flash_f7.ld
blob090ce49d632c9e42e619202899d18b0d92a2c105
1 /*
2 *****************************************************************************
3 **
4 **  File        : stm32_flash.ld
5 **
6 **  Abstract    : Common linker script for STM32 devices.
7 **
8 *****************************************************************************
9 */
11 /* Entry Point */
12 ENTRY(Reset_Handler)
14 /* Highest address of the user mode stack */
15 _estack = ORIGIN(STACKRAM) + LENGTH(STACKRAM);    /* end of RAM */
17 /* Base address where the config is stored. */
18 __config_start = ORIGIN(FLASH_CONFIG);
19 __config_end = ORIGIN(FLASH_CONFIG) + LENGTH(FLASH_CONFIG);
21 /* Define output sections */
22 SECTIONS
24   /* The startup code goes first into FLASH */
25   .isr_vector :
26   {
27     . = ALIGN(4);
28     PROVIDE (isr_vector_table_base = .);
29     KEEP(*(.isr_vector)) /* Startup code */
30     . = ALIGN(4);
31   } >FLASH
33   /* The program code and other data goes into FLASH */
34   .text :
35   {
36     . = ALIGN(4);
37     *(.text)           /* .text sections (code) */
38     *(.text*)          /* .text* sections (code) */
39     *(.rodata)         /* .rodata sections (constants, strings, etc.) */
40     *(.rodata*)        /* .rodata* sections (constants, strings, etc.) */
41     *(.glue_7)         /* glue arm to thumb code */
42     *(.glue_7t)        /* glue thumb to arm code */
43     *(.eh_frame)
45     KEEP (*(.init))
46     KEEP (*(.fini))
48     . = ALIGN(4);
49     _etext = .;        /* define a global symbols at end of code */
50   } >FLASH
52   tcm_code = LOADADDR(.tcm_code);
53   .tcm_code (NOLOAD) :
54   {
55     . = ALIGN(4);
56     tcm_code_start = .;
57     *(.tcm_code)
58     *(.tcm_code*)
59     . = ALIGN(4);
60     tcm_code_end = .;
61   } >ITCM_RAM AT >FLASH
63    .ARM.extab   : { *(.ARM.extab* .gnu.linkonce.armextab.*) } >FLASH
64     .ARM : {
65     __exidx_start = .;
66       *(.ARM.exidx*)
67       __exidx_end = .;
68     } >FLASH
70   .preinit_array     :
71   {
72     PROVIDE_HIDDEN (__preinit_array_start = .);
73     KEEP (*(.preinit_array*))
74     PROVIDE_HIDDEN (__preinit_array_end = .);
75   } >FLASH
76   .init_array :
77   {
78     PROVIDE_HIDDEN (__init_array_start = .);
79     KEEP (*(SORT(.init_array.*)))
80     KEEP (*(.init_array*))
81     PROVIDE_HIDDEN (__init_array_end = .);
82   } >FLASH
83   .fini_array :
84   {
85     PROVIDE_HIDDEN (__fini_array_start = .);
86     KEEP (*(.fini_array*))
87     KEEP (*(SORT(.fini_array.*)))
88     PROVIDE_HIDDEN (__fini_array_end = .);
89   } >FLASH
90   .pg_registry :
91   {
92     PROVIDE_HIDDEN (__pg_registry_start = .);
93     KEEP (*(.pg_registry))
94     KEEP (*(SORT(.pg_registry.*)))
95     PROVIDE_HIDDEN (__pg_registry_end = .);
96   } >FLASH
97   .pg_resetdata :
98   {
99     PROVIDE_HIDDEN (__pg_resetdata_start = .);
100     KEEP (*(.pg_resetdata))
101     PROVIDE_HIDDEN (__pg_resetdata_end = .);
102   } >FLASH
103   .busdev_registry :
104   {
105     PROVIDE_HIDDEN (__busdev_registry_start = .);
106     KEEP (*(.busdev_registry))
107     KEEP (*(SORT(.busdev_registry.*)))
108     PROVIDE_HIDDEN (__busdev_registry_end = .);
109   } >FLASH
111   /* used by the startup to initialize data */
112   _sidata = .;
114   /* Initialized data sections goes into RAM, load LMA copy after code */
115   .data :
116   {
117     . = ALIGN(4);
118     _sdata = .;        /* create a global symbol at data start */
119     *(.data)           /* .data sections */
120     *(.data*)          /* .data* sections */
122     . = ALIGN(4);
123     _edata = .;        /* define a global symbol at data end */
124   } >RAM AT> FLASH
126   /* Uninitialized data section */
127   . = ALIGN(4);
128   .bss :
129   {
130     /* This is used by the startup in order to initialize the .bss secion */
131     _sbss = .;         /* define a global symbol at bss start */
132     __bss_start__ = _sbss;
133     *(.bss)
134     *(SORT_BY_ALIGNMENT(.bss*))
135     *(COMMON)
137     . = ALIGN(4);
138     _ebss = .;         /* define a global symbol at bss end */
139     __bss_end__ = _ebss;
140   } >RAM
142   .fastram_bss (NOLOAD) :
143   {
144     __fastram_bss_start__ = .;
145     *(.fastram_bss)
146     *(SORT_BY_ALIGNMENT(.fastram_bss*))
147     . = ALIGN(4);
148     __fastram_bss_end__ = .;
149   } >FASTRAM
151   /* User_heap_stack section, used to check that there is enough RAM left */
152   _heap_stack_end = ORIGIN(STACKRAM)+LENGTH(STACKRAM) - 8; /* 8 bytes to allow for alignment */
153   _heap_stack_begin = _heap_stack_end - _Min_Stack_Size  - _Min_Heap_Size;
154   . = _heap_stack_begin;
155   ._user_heap_stack :
156   {
157     . = ALIGN(4);
158     PROVIDE ( end = . );
159     PROVIDE ( _end = . );
160     . = . + _Min_Heap_Size;
161     . = . + _Min_Stack_Size;
162     . = ALIGN(4);
163   } >STACKRAM = 0xa5
165   /* MEMORY_bank1 section, code must be located here explicitly            */
166   /* Example: extern int foo(void) __attribute__ ((section (".mb1text"))); */
167   .memory_b1_text :
168   {
169     *(.mb1text)        /* .mb1text sections (code) */
170     *(.mb1text*)       /* .mb1text* sections (code)  */
171     *(.mb1rodata)      /* read-only data (constants) */
172     *(.mb1rodata*)
173   } >MEMORY_B1
175   /* Remove information from the standard libraries */
176   /DISCARD/ :
177   {
178     libc.a ( * )
179     libm.a ( * )
180     libgcc.a ( * )
181   }
183   .ARM.attributes 0 : { *(.ARM.attributes) }