1
0

STM32F407VGTx_FLASH.ld 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. /*
  2. ******************************************************************************
  3. **
  4. ** File : LinkerScript.ld
  5. **
  6. ** Author : Auto-generated by Ac6 System Workbench
  7. **
  8. ** Abstract : Linker script for STM32F407VGTx series
  9. ** 1024Kbytes FLASH and 128Kbytes RAM
  10. **
  11. ** Set heap size, stack size and stack location according
  12. ** to application requirements.
  13. **
  14. ** Set memory bank area and size if external memory is used.
  15. **
  16. ** Target : STMicroelectronics STM32
  17. **
  18. ** Distribution: The file is distributed ¡§as is,¡¨ without any warranty
  19. ** of any kind.
  20. **
  21. *****************************************************************************
  22. ** @attention
  23. **
  24. ** <h2><center>&copy; COPYRIGHT(c) 2014 Ac6</center></h2>
  25. **
  26. ** Redistribution and use in source and binary forms, with or without modification,
  27. ** are permitted provided that the following conditions are met:
  28. ** 1. Redistributions of source code must retain the above copyright notice,
  29. ** this list of conditions and the following disclaimer.
  30. ** 2. Redistributions in binary form must reproduce the above copyright notice,
  31. ** this list of conditions and the following disclaimer in the documentation
  32. ** and/or other materials provided with the distribution.
  33. ** 3. Neither the name of Ac6 nor the names of its contributors
  34. ** may be used to endorse or promote products derived from this software
  35. ** without specific prior written permission.
  36. **
  37. ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  38. ** AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  39. ** IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  40. ** DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
  41. ** FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  42. ** DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  43. ** SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  44. ** CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  45. ** OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  46. ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  47. **
  48. *****************************************************************************
  49. */
  50. /* Entry Point */
  51. ENTRY(Reset_Handler)
  52. /* Highest address of the user mode stack */
  53. _estack = 0x20020000; /* end of RAM */
  54. /* Generate a link error if heap and stack don't fit into RAM */
  55. _Min_Heap_Size = 0x2000; /* required amount of heap */
  56. _Min_Stack_Size = 0x4000; /* required amount of stack */
  57. /* Specify the memory areas */
  58. MEMORY
  59. {
  60. RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 128K
  61. CCMRAM (rw) : ORIGIN = 0x10000000, LENGTH = 64K
  62. FLASH (rx) : ORIGIN = 0x8010000, LENGTH = 1024K
  63. }
  64. /* Define output sections */
  65. SECTIONS
  66. {
  67. /* The startup code goes first into FLASH */
  68. .isr_vector :
  69. {
  70. . = ALIGN(4);
  71. KEEP(*(.isr_vector)) /* Startup code */
  72. . = ALIGN(4);
  73. } >FLASH
  74. /* The program code and other data goes into FLASH */
  75. .text :
  76. {
  77. . = ALIGN(4);
  78. *(.text) /* .text sections (code) */
  79. *(.text*) /* .text* sections (code) */
  80. *(.glue_7) /* glue arm to thumb code */
  81. *(.glue_7t) /* glue thumb to arm code */
  82. *(.eh_frame)
  83. KEEP (*(.init))
  84. KEEP (*(.fini))
  85. . = ALIGN(4);
  86. _etext = .; /* define a global symbols at end of code */
  87. } >FLASH
  88. /* Constant data goes into FLASH */
  89. .rodata :
  90. {
  91. . = ALIGN(4);
  92. *(.rodata) /* .rodata sections (constants, strings, etc.) */
  93. *(.rodata*) /* .rodata* sections (constants, strings, etc.) */
  94. . = ALIGN(4);
  95. } >FLASH
  96. .ARM.extab : { *(.ARM.extab* .gnu.linkonce.armextab.*) } >FLASH
  97. .ARM : {
  98. __exidx_start = .;
  99. *(.ARM.exidx*)
  100. __exidx_end = .;
  101. } >FLASH
  102. .preinit_array :
  103. {
  104. PROVIDE_HIDDEN (__preinit_array_start = .);
  105. KEEP (*(.preinit_array*))
  106. PROVIDE_HIDDEN (__preinit_array_end = .);
  107. } >FLASH
  108. .init_array :
  109. {
  110. PROVIDE_HIDDEN (__init_array_start = .);
  111. KEEP (*(SORT(.init_array.*)))
  112. KEEP (*(.init_array*))
  113. PROVIDE_HIDDEN (__init_array_end = .);
  114. } >FLASH
  115. .fini_array :
  116. {
  117. PROVIDE_HIDDEN (__fini_array_start = .);
  118. KEEP (*(SORT(.fini_array.*)))
  119. KEEP (*(.fini_array*))
  120. PROVIDE_HIDDEN (__fini_array_end = .);
  121. } >FLASH
  122. /* used by the startup to initialize data */
  123. _sidata = LOADADDR(.data);
  124. /* Initialized data sections goes into RAM, load LMA copy after code */
  125. .data :
  126. {
  127. . = ALIGN(4);
  128. _sdata = .; /* create a global symbol at data start */
  129. *(.data) /* .data sections */
  130. *(.data*) /* .data* sections */
  131. . = ALIGN(4);
  132. _edata = .; /* define a global symbol at data end */
  133. } >RAM AT> FLASH
  134. _siccmram = LOADADDR(.ccmram);
  135. /* CCM-RAM section
  136. *
  137. * IMPORTANT NOTE!
  138. * If initialized variables will be placed in this section,
  139. * the startup code needs to be modified to copy the init-values.
  140. */
  141. .ccmram :
  142. {
  143. . = ALIGN(4);
  144. _sccmram = .; /* create a global symbol at ccmram start */
  145. *(.ccmram)
  146. *(.ccmram*)
  147. . = ALIGN(4);
  148. _eccmram = .; /* create a global symbol at ccmram end */
  149. } >CCMRAM AT> FLASH
  150. /* Uninitialized data section */
  151. . = ALIGN(4);
  152. .bss :
  153. {
  154. /* This is used by the startup in order to initialize the .bss secion */
  155. _sbss = .; /* define a global symbol at bss start */
  156. __bss_start__ = _sbss;
  157. *(.bss)
  158. *(.bss*)
  159. *(COMMON)
  160. . = ALIGN(4);
  161. _ebss = .; /* define a global symbol at bss end */
  162. __bss_end__ = _ebss;
  163. } >RAM
  164. /* User_heap_stack section, used to check that there is enough RAM left */
  165. ._user_heap_stack :
  166. {
  167. . = ALIGN(8);
  168. PROVIDE ( end = . );
  169. PROVIDE ( _end = . );
  170. . = . + _Min_Heap_Size;
  171. . = . + _Min_Stack_Size;
  172. . = ALIGN(8);
  173. } >RAM
  174. /* Remove information from the standard libraries */
  175. /DISCARD/ :
  176. {
  177. libc.a ( * )
  178. libm.a ( * )
  179. libgcc.a ( * )
  180. }
  181. .ARM.attributes 0 : { *(.ARM.attributes) }
  182. }