STM32F417IG_FLASH.ld 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. /*
  2. *****************************************************************************
  3. **
  4. ** File : stm32_flash.ld
  5. **
  6. ** Abstract : Linker script for STM32F417IG Device with
  7. ** 1024KByte FLASH, 128KByte 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. This file may only be built (assembled or compiled and linked)
  24. ** using the Atollic TrueSTUDIO(R) product. The use of this file together
  25. ** with other tools than Atollic TrueSTUDIO(R) is not permitted.
  26. **
  27. *****************************************************************************
  28. */
  29. /* Entry Point */
  30. ENTRY(Reset_Handler)
  31. /* Highest address of the user mode stack */
  32. _estack = 0x2001FFFF; /* end of RAM */
  33. /* Generate a link error if heap and stack don't fit into RAM */
  34. _Min_Heap_Size = 0x200; /* required amount of heap */
  35. _Min_Stack_Size = 0x400; /* required amount of stack */
  36. /* Specify the memory areas */
  37. MEMORY
  38. {
  39. FLASH (rx) : ORIGIN = 0x8010000, LENGTH = 1024K
  40. RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 128K
  41. CCMRAM (rw) : ORIGIN = 0x10000000, LENGTH = 64K
  42. }
  43. /* Define output sections */
  44. SECTIONS
  45. {
  46. /* The startup code goes first into FLASH */
  47. .isr_vector :
  48. {
  49. . = ALIGN(4);
  50. KEEP(*(.isr_vector)) /* Startup code */
  51. . = ALIGN(4);
  52. } >FLASH
  53. /* The program code and other data goes into FLASH */
  54. .text :
  55. {
  56. . = ALIGN(4);
  57. *(.text) /* .text sections (code) */
  58. *(.text*) /* .text* sections (code) */
  59. *(.glue_7) /* glue arm to thumb code */
  60. *(.glue_7t) /* glue thumb to arm code */
  61. *(.eh_frame)
  62. KEEP (*(.init))
  63. KEEP (*(.fini))
  64. . = ALIGN(4);
  65. _etext = .; /* define a global symbols at end of code */
  66. } >FLASH
  67. /* Constant data goes into FLASH */
  68. .rodata :
  69. {
  70. . = ALIGN(4);
  71. *(.rodata) /* .rodata sections (constants, strings, etc.) */
  72. *(.rodata*) /* .rodata* sections (constants, strings, etc.) */
  73. . = ALIGN(4);
  74. } >FLASH
  75. .ARM.extab : { *(.ARM.extab* .gnu.linkonce.armextab.*) } >FLASH
  76. .ARM : {
  77. __exidx_start = .;
  78. *(.ARM.exidx*)
  79. __exidx_end = .;
  80. } >FLASH
  81. .preinit_array :
  82. {
  83. PROVIDE_HIDDEN (__preinit_array_start = .);
  84. KEEP (*(.preinit_array*))
  85. PROVIDE_HIDDEN (__preinit_array_end = .);
  86. } >FLASH
  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. } >FLASH
  94. .fini_array :
  95. {
  96. PROVIDE_HIDDEN (__fini_array_start = .);
  97. KEEP (*(SORT(.fini_array.*)))
  98. KEEP (*(.fini_array*))
  99. PROVIDE_HIDDEN (__fini_array_end = .);
  100. } >FLASH
  101. /* used by the startup to initialize data */
  102. _sidata = LOADADDR(.data);
  103. /* Initialized data sections goes into RAM, load LMA copy after code */
  104. .data :
  105. {
  106. . = ALIGN(4);
  107. _sdata = .; /* create a global symbol at data start */
  108. *(.data) /* .data sections */
  109. *(.data*) /* .data* sections */
  110. . = ALIGN(4);
  111. _edata = .; /* define a global symbol at data end */
  112. } >RAM AT> FLASH
  113. _siccmram = LOADADDR(.ccmram);
  114. /* CCM-RAM section
  115. *
  116. * IMPORTANT NOTE!
  117. * If initialized variables will be placed in this section,
  118. * the startup code needs to be modified to copy the init-values.
  119. */
  120. .ccmram :
  121. {
  122. . = ALIGN(4);
  123. _sccmram = .; /* create a global symbol at ccmram start */
  124. KEEP(*(ccmram))
  125. . = ALIGN(4);
  126. _eccmram = .; /* create a global symbol at ccmram end */
  127. } >CCMRAM AT> FLASH
  128. /* Uninitialized data section */
  129. . = ALIGN(4);
  130. .bss :
  131. {
  132. /* This is used by the startup in order to initialize the .bss secion */
  133. _sbss = .; /* define a global symbol at bss start */
  134. __bss_start__ = _sbss;
  135. *(.bss)
  136. *(.bss*)
  137. *(COMMON)
  138. . = ALIGN(4);
  139. _ebss = .; /* define a global symbol at bss end */
  140. __bss_end__ = _ebss;
  141. } >RAM
  142. /* User_heap_stack section, used to check that there is enough RAM left */
  143. ._user_heap_stack :
  144. {
  145. . = ALIGN(4);
  146. PROVIDE ( end = . );
  147. PROVIDE ( _end = . );
  148. . = . + _Min_Heap_Size;
  149. . = . + _Min_Stack_Size;
  150. . = ALIGN(4);
  151. } >RAM
  152. /* Remove information from the standard libraries */
  153. /DISCARD/ :
  154. {
  155. libc.a ( * )
  156. libm.a ( * )
  157. libgcc.a ( * )
  158. }
  159. .ARM.attributes 0 : { *(.ARM.attributes) }
  160. }