STM32F103RCTx_FLASH.ld 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. /*
  2. ******************************************************************************
  3. **
  4. ** File : LinkerScript.ld
  5. **
  6. ** Author : STM32CubeMX
  7. **
  8. ** Abstract : Linker script for STM32F103RCTx series
  9. ** 256Kbytes FLASH and 48Kbytes 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) 2019 STMicroelectronics</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 STMicroelectronics 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 = ORIGIN(RAM) + LENGTH(RAM); /* end of RAM */
  54. /* Generate a link error if heap and stack don't fit into RAM */
  55. _Min_Heap_Size = 0x200; /* required amount of heap */
  56. _Min_Stack_Size = 0x400; /* required amount of stack */
  57. /* Specify the memory areas */
  58. MEMORY
  59. {
  60. RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 48K
  61. FLASH (rx) : ORIGIN = 0x8004000, LENGTH = 240K
  62. }
  63. /* Define output sections */
  64. SECTIONS
  65. {
  66. /* The startup code goes first into FLASH */
  67. .isr_vector :
  68. {
  69. . = ALIGN(4);
  70. KEEP(*(.isr_vector)) /* Startup code */
  71. . = ALIGN(4);
  72. } >FLASH
  73. /* The program code and other data goes into FLASH */
  74. .text :
  75. {
  76. . = ALIGN(4);
  77. *(.text) /* .text sections (code) */
  78. *(.text*) /* .text* sections (code) */
  79. *(.glue_7) /* glue arm to thumb code */
  80. *(.glue_7t) /* glue thumb to arm code */
  81. *(.eh_frame)
  82. KEEP (*(.init))
  83. KEEP (*(.fini))
  84. . = ALIGN(4);
  85. _etext = .; /* define a global symbols at end of code */
  86. } >FLASH
  87. /* Constant data goes into FLASH */
  88. .rodata :
  89. {
  90. . = ALIGN(4);
  91. *(.rodata) /* .rodata sections (constants, strings, etc.) */
  92. *(.rodata*) /* .rodata* sections (constants, strings, etc.) */
  93. . = ALIGN(4);
  94. } >FLASH
  95. .ARM.extab : { *(.ARM.extab* .gnu.linkonce.armextab.*) } >FLASH
  96. .ARM : {
  97. __exidx_start = .;
  98. *(.ARM.exidx*)
  99. __exidx_end = .;
  100. } >FLASH
  101. .preinit_array :
  102. {
  103. PROVIDE_HIDDEN (__preinit_array_start = .);
  104. KEEP (*(.preinit_array*))
  105. PROVIDE_HIDDEN (__preinit_array_end = .);
  106. } >FLASH
  107. .init_array :
  108. {
  109. PROVIDE_HIDDEN (__init_array_start = .);
  110. KEEP (*(SORT(.init_array.*)))
  111. KEEP (*(.init_array*))
  112. PROVIDE_HIDDEN (__init_array_end = .);
  113. } >FLASH
  114. .fini_array :
  115. {
  116. PROVIDE_HIDDEN (__fini_array_start = .);
  117. KEEP (*(SORT(.fini_array.*)))
  118. KEEP (*(.fini_array*))
  119. PROVIDE_HIDDEN (__fini_array_end = .);
  120. } >FLASH
  121. /* used by the startup to initialize data */
  122. _sidata = LOADADDR(.data);
  123. /* Initialized data sections goes into RAM, load LMA copy after code */
  124. .data :
  125. {
  126. . = ALIGN(4);
  127. _sdata = .; /* create a global symbol at data start */
  128. *(.data) /* .data sections */
  129. *(.data*) /* .data* sections */
  130. . = ALIGN(4);
  131. _edata = .; /* define a global symbol at data end */
  132. } >RAM AT> FLASH
  133. /* Uninitialized data section */
  134. . = ALIGN(4);
  135. .bss :
  136. {
  137. /* This is used by the startup in order to initialize the .bss secion */
  138. _sbss = .; /* define a global symbol at bss start */
  139. __bss_start__ = _sbss;
  140. *(.bss)
  141. *(.bss*)
  142. *(COMMON)
  143. . = ALIGN(4);
  144. _ebss = .; /* define a global symbol at bss end */
  145. __bss_end__ = _ebss;
  146. } >RAM
  147. /* User_heap_stack section, used to check that there is enough RAM left */
  148. ._user_heap_stack :
  149. {
  150. . = ALIGN(8);
  151. PROVIDE ( end = . );
  152. PROVIDE ( _end = . );
  153. . = . + _Min_Heap_Size;
  154. . = . + _Min_Stack_Size;
  155. . = ALIGN(8);
  156. } >RAM
  157. /* Remove information from the standard libraries */
  158. /DISCARD/ :
  159. {
  160. libc.a ( * )
  161. libm.a ( * )
  162. libgcc.a ( * )
  163. }
  164. .ARM.attributes 0 : { *(.ARM.attributes) }
  165. }