My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

ldscript.ld 6.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. /*
  2. *****************************************************************************
  3. **
  4. ** File : LinkerScript.ld
  5. **
  6. ** Abstract : Linker script for STM32F407ZGTx 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. **
  17. ** Distribution: The file is distributed as is, without any warranty
  18. ** of any kind.
  19. **
  20. *****************************************************************************
  21. ** @attention
  22. **
  23. ** <h2><center>&copy; COPYRIGHT(c) 2014 Ac6</center></h2>
  24. **
  25. ** Redistribution and use in source and binary forms, with or without modification,
  26. ** are permitted provided that the following conditions are met:
  27. ** 1. Redistributions of source code must retain the above copyright notice,
  28. ** this list of conditions and the following disclaimer.
  29. ** 2. Redistributions in binary form must reproduce the above copyright notice,
  30. ** this list of conditions and the following disclaimer in the documentation
  31. ** and/or other materials provided with the distribution.
  32. ** 3. Neither the name of Ac6 nor the names of its contributors
  33. ** may be used to endorse or promote products derived from this software
  34. ** without specific prior written permission.
  35. **
  36. ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  37. ** AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  38. ** IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  39. ** DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
  40. ** FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  41. ** DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  42. ** SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  43. ** CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  44. ** OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  45. ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  46. **
  47. *****************************************************************************
  48. */
  49. /* Entry Point */
  50. ENTRY(Reset_Handler)
  51. /* Highest address of the user mode stack */
  52. _estack = 0x20020000; /* end of RAM */
  53. /* Generate a link error if heap and stack don't fit into RAM */
  54. _Min_Heap_Size = 0x200;; /* required amount of heap */
  55. _Min_Stack_Size = 0x400;; /* required amount of stack */
  56. /* Specify the memory areas */
  57. MEMORY
  58. {
  59. FLASH (rx) : ORIGIN = 0x8008000, LENGTH = 1024K
  60. RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 128K
  61. CCMRAM (rw) : ORIGIN = 0x10000000, LENGTH = 64K
  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 ALIGN(4):
  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 ALIGN(4):
  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. _siccmram = LOADADDR(.ccmram);
  134. /* CCM-RAM section
  135. *
  136. * IMPORTANT NOTE!
  137. * If initialized variables will be placed in this section,
  138. * the startup code needs to be modified to copy the init-values.
  139. */
  140. .ccmram :
  141. {
  142. . = ALIGN(4);
  143. _sccmram = .; /* create a global symbol at ccmram start */
  144. *(.ccmram)
  145. *(.ccmram*)
  146. . = ALIGN(4);
  147. _eccmram = .; /* create a global symbol at ccmram end */
  148. } >CCMRAM AT> FLASH
  149. /* Uninitialized data section */
  150. . = ALIGN(4);
  151. .bss :
  152. {
  153. /* This is used by the startup in order to initialize the .bss secion */
  154. _sbss = .; /* define a global symbol at bss start */
  155. __bss_start__ = _sbss;
  156. *(.bss)
  157. *(.bss*)
  158. *(COMMON)
  159. . = ALIGN(4);
  160. _ebss = .; /* define a global symbol at bss end */
  161. __bss_end__ = _ebss;
  162. } >RAM
  163. /* User_heap_stack section, used to check that there is enough RAM left */
  164. ._user_heap_stack :
  165. {
  166. . = ALIGN(4);
  167. PROVIDE ( end = . );
  168. PROVIDE ( _end = . );
  169. . = . + _Min_Heap_Size;
  170. . = . + _Min_Stack_Size;
  171. . = ALIGN(4);
  172. } >RAM
  173. /* Remove information from the standard libraries */
  174. /DISCARD/ :
  175. {
  176. libc.a ( * )
  177. libm.a ( * )
  178. libgcc.a ( * )
  179. }
  180. .ARM.attributes 0 : { *(.ARM.attributes) }
  181. }