stm32_flash.ld 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. /*
  2. *****************************************************************************
  3. **
  4. ** File : stm32_flash.ld
  5. **
  6. ** Abstract : Linker script for STM32F407VG Device with
  7. ** 512KByte FLASH, 192KByte RAM
  8. **
  9. ** Set heap size, stack size and stack location according
  10. ** to application requirements.
  11. **
  12. ** Set memory bank area and size if external memory is used.
  13. **
  14. ** Target : STMicroelectronics STM32
  15. **
  16. ** Environment : Atollic TrueSTUDIO(R)
  17. **
  18. ** Distribution: The file is distributed �as is,� without any warranty
  19. ** of any kind.
  20. **
  21. ** (c)Copyright Atollic AB.
  22. ** You may use this file as-is or modify it according to the needs of your
  23. ** project. Distribution of this file (unmodified or modified) is not
  24. ** permitted. Atollic AB permit registered Atollic TrueSTUDIO(R) users the
  25. ** rights to distribute the assembled, compiled & linked contents of this
  26. ** file as part of an application binary file, provided that it is built
  27. ** using the Atollic TrueSTUDIO(R) toolchain.
  28. **
  29. *****************************************************************************
  30. */
  31. /* Entry Point */
  32. ENTRY(Reset_Handler)
  33. /* Highest address of the user mode stack */
  34. _estack = 0x2001ffff; /* end of 128K RAM on AHB bus*/
  35. /* Generate a link error if heap and stack don't fit into RAM */
  36. _Min_Heap_Size = 0x800; /* required amount of heap */
  37. _Min_Stack_Size = 0x100; /* required amount of stack */
  38. /* Specify the memory areas */
  39. MEMORY
  40. {
  41. BOOTLOADER_P1 (rx) : ORIGIN = 0x08000000, LENGTH = 16K
  42. SETTINGS (rx) : ORIGIN = 0x08004000, LENGTH = 16K
  43. BOOTLOADER (rx) : ORIGIN = 0x08008000, LENGTH = 96K
  44. FLASH (rx) : ORIGIN = 0x08020000, LENGTH = 640K
  45. RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 128K
  46. MEMORY_B1 (rx) : ORIGIN = 0x10000000, LENGTH = 64K
  47. }
  48. /* Define output sections */
  49. SECTIONS
  50. {
  51. /* The startup code goes first into FLASH */
  52. .isr_vector :
  53. {
  54. . = ALIGN(4);
  55. KEEP(*(.isr_vector)) /* Startup code */
  56. . = ALIGN(4);
  57. } >BOOTLOADER_P1
  58. /* The program code and other data goes into FLASH */
  59. .text :
  60. {
  61. . = ALIGN(4);
  62. *(.text) /* .text sections (code) */
  63. *(.text*) /* .text* sections (code) */
  64. *(.rodata) /* .rodata sections (constants, strings, etc.) */
  65. *(.rodata*) /* .rodata* sections (constants, strings, etc.) */
  66. *(.glue_7) /* glue arm to thumb code */
  67. *(.glue_7t) /* glue thumb to arm code */
  68. *(.eh_frame)
  69. KEEP (*(.init))
  70. KEEP (*(.fini))
  71. . = ALIGN(4);
  72. _etext = .; /* define a global symbols at end of code */
  73. _exit = .;
  74. } >BOOTLOADER
  75. .ARM.extab : { *(.ARM.extab* .gnu.linkonce.armextab.*) } >BOOTLOADER
  76. .ARM : {
  77. __exidx_start = .;
  78. *(.ARM.exidx*)
  79. __exidx_end = .;
  80. } >BOOTLOADER
  81. .preinit_array :
  82. {
  83. PROVIDE_HIDDEN (__preinit_array_start = .);
  84. KEEP (*(.preinit_array*))
  85. PROVIDE_HIDDEN (__preinit_array_end = .);
  86. } >BOOTLOADER
  87. .init_array :
  88. {
  89. PROVIDE_HIDDEN (__init_array_start = .);
  90. KEEP (*(SORT(.init_array.*)))
  91. KEEP (*(.init_array*))
  92. PROVIDE_HIDDEN (__init_array_end = .);
  93. } >BOOTLOADER
  94. .fini_array :
  95. {
  96. PROVIDE_HIDDEN (__fini_array_start = .);
  97. /* _fini = .; */
  98. KEEP (*(.fini_array*))
  99. KEEP (*(SORT(.fini_array.*)))
  100. PROVIDE_HIDDEN (__fini_array_end = .);
  101. } >BOOTLOADER
  102. /* used by the startup to initialize data */
  103. _sidata = .;
  104. /* Initialized data sections goes into RAM, load LMA copy after code */
  105. .data : AT ( _sidata )
  106. {
  107. . = ALIGN(4);
  108. _sdata = .; /* create a global symbol at data start */
  109. *(.data) /* .data sections */
  110. *(.data*) /* .data* sections */
  111. . = ALIGN(4);
  112. _edata = .; /* define a global symbol at data end */
  113. } >RAM
  114. /* Uninitialized data section */
  115. . = ALIGN(4);
  116. .bss :
  117. {
  118. /* This is used by the startup in order to initialize the .bss secion */
  119. _sbss = .; /* define a global symbol at bss start */
  120. __bss_start__ = _sbss;
  121. *(.bss)
  122. *(.bss*)
  123. *(COMMON)
  124. . = ALIGN(4);
  125. _ebss = .; /* define a global symbol at bss end */
  126. __bss_end__ = _ebss;
  127. } >RAM
  128. /* User_heap_stack section, used to check that there is enough RAM left */
  129. ._user_heap_stack :
  130. {
  131. . = ALIGN(4);
  132. PROVIDE ( end = . );
  133. PROVIDE ( _end = . );
  134. . = . + _Min_Heap_Size;
  135. . = . + _Min_Stack_Size;
  136. . = ALIGN(4);
  137. } >RAM
  138. /* MEMORY_bank1 section, code must be located here explicitly */
  139. /* Example: extern int foo(void) __attribute__ ((section (".mb1text"))); */
  140. .memory_b1_text :
  141. {
  142. *(.mb1text) /* .mb1text sections (code) */
  143. *(.mb1text*) /* .mb1text* sections (code) */
  144. *(.mb1rodata) /* read-only data (constants) */
  145. *(.mb1rodata*)
  146. } >MEMORY_B1
  147. /* Remove information from the standard libraries */
  148. /DISCARD/ :
  149. {
  150. libc.a ( * )
  151. libm.a ( * )
  152. libgcc.a ( * )
  153. }
  154. .settings :
  155. {
  156. . = ALIGN(4);
  157. FILL(0xFF);
  158. . = ORIGIN(SETTINGS) + LENGTH(SETTINGS) - 1;
  159. BYTE(0xFF)
  160. } >SETTINGS
  161. .ARM.attributes 0 : { *(.ARM.attributes) }
  162. }