You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

103 line
2.3KB

  1. MEMORY
  2. {
  3. ITCM (rwx): ORIGIN = 0x00000000, LENGTH = 512K
  4. DTCM (rwx): ORIGIN = 0x20000000, LENGTH = 512K
  5. RAM (rwx): ORIGIN = 0x20200000, LENGTH = 512K
  6. FLASH (rwx): ORIGIN = 0x60000000, LENGTH = 16128K
  7. }
  8. ENTRY(ImageVectorTable)
  9. SECTIONS
  10. {
  11. .text.progmem : {
  12. KEEP(*(.flashconfig))
  13. FILL(0xFF)
  14. . = ORIGIN(FLASH) + 0x1000;
  15. KEEP(*(.ivt))
  16. KEEP(*(.bootdata))
  17. KEEP(*(.startup))
  18. *(.flashmem*)
  19. *(.progmem*)
  20. . = ALIGN(4);
  21. KEEP(*(.init))
  22. __preinit_array_start = .;
  23. KEEP (*(.preinit_array))
  24. __preinit_array_end = .;
  25. __init_array_start = .;
  26. KEEP (*(.init_array))
  27. __init_array_end = .;
  28. . = ALIGN(16);
  29. } > FLASH
  30. .text.itcm : {
  31. . = . + 32; /* MPU to trap NULL pointer deref */
  32. *(.fastrun)
  33. *(.text*)
  34. . = ALIGN(16);
  35. } > ITCM AT> FLASH
  36. .ARM.exidx : {
  37. __exidx_start = .;
  38. *(.ARM.exidx* .gnu.linkonce.armexidx.*)
  39. __exidx_end = .;
  40. } > ITCM AT> FLASH
  41. .text.itcm.padding (NOLOAD) : {
  42. . = ALIGN(32768);
  43. } > ITCM
  44. .data : {
  45. *(.rodata*)
  46. *(.data*)
  47. } > DTCM AT> FLASH
  48. .bss ALIGN(4) : {
  49. *(.bss*)
  50. *(COMMON)
  51. . = ALIGN(32);
  52. . = . + 32; /* MPU to trap stack overflow */
  53. } > DTCM
  54. .bss.dma (NOLOAD) : {
  55. *(.hab_log)
  56. *(.dmabuffers)
  57. . = ALIGN(32);
  58. } > RAM
  59. .text.csf : {
  60. FILL(0xFF)
  61. . = ALIGN(4);
  62. KEEP(*(.csf))
  63. } > FLASH
  64. _stext = ADDR(.text.itcm);
  65. _etext = ADDR(.text.itcm) + SIZEOF(.text.itcm) + SIZEOF(.ARM.exidx);
  66. _stextload = LOADADDR(.text.itcm);
  67. _sdata = ADDR(.data);
  68. _edata = ADDR(.data) + SIZEOF(.data);
  69. _sdataload = LOADADDR(.data);
  70. _sbss = ADDR(.bss);
  71. _ebss = ADDR(.bss) + SIZEOF(.bss);
  72. _heap_start = ADDR(.bss.dma) + SIZEOF(.bss.dma);
  73. _heap_end = ORIGIN(RAM) + LENGTH(RAM);
  74. _itcm_block_count = (SIZEOF(.text.itcm) + SIZEOF(.ARM.exidx) + 0x7FFF) >> 15;
  75. _flexram_bank_config = 0xAAAAAAAA | ((1 << (_itcm_block_count * 2)) - 1);
  76. _estack = ORIGIN(DTCM) + ((16 - _itcm_block_count) << 15);
  77. _flashimagelen = SIZEOF(.text.progmem) + SIZEOF(.text.itcm) + SIZEOF(.ARM.exidx) + SIZEOF(.data) + SIZEOF(.text.csf);
  78. _teensy_model_identifier = 0x26;
  79. .debug_info 0 : { *(.debug_info) }
  80. .debug_abbrev 0 : { *(.debug_abbrev) }
  81. .debug_line 0 : { *(.debug_line) }
  82. .debug_frame 0 : { *(.debug_frame) }
  83. .debug_str 0 : { *(.debug_str) }
  84. .debug_loc 0 : { *(.debug_loc) }
  85. }