link.x 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. PROVIDE(_stext = ORIGIN(REGION_TEXT));
  2. PROVIDE(_stack_start = ORIGIN(REGION_STACK) + LENGTH(REGION_STACK));
  3. PROVIDE(_max_hart_id = 0);
  4. PROVIDE(_hart_stack_size = 2K);
  5. PROVIDE(_heap_size = 0);
  6. PROVIDE(UserSoft = DefaultHandler);
  7. PROVIDE(SupervisorSoft = DefaultHandler);
  8. PROVIDE(MachineSoft = DefaultHandler);
  9. PROVIDE(UserTimer = DefaultHandler);
  10. PROVIDE(SupervisorTimer = DefaultHandler);
  11. PROVIDE(MachineTimer = DefaultHandler);
  12. PROVIDE(UserExternal = DefaultHandler);
  13. PROVIDE(SupervisorExternal = DefaultHandler);
  14. PROVIDE(MachineExternal = DefaultHandler);
  15. PROVIDE(DefaultHandler = DefaultInterruptHandler);
  16. PROVIDE(ExceptionHandler = DefaultExceptionHandler);
  17. /* # Pre-initialization function */
  18. /* If the user overrides this using the `#[pre_init]` attribute or by creating a `__pre_init` function,
  19. then the function this points to will be called before the RAM is initialized. */
  20. PROVIDE(__pre_init = default_pre_init);
  21. /* A PAC/HAL defined routine that should initialize custom interrupt controller if needed. */
  22. PROVIDE(_setup_interrupts = default_setup_interrupts);
  23. /* # Multi-processing hook function
  24. fn _mp_hook() -> bool;
  25. This function is called from all the harts and must return true only for one hart,
  26. which will perform memory initialization. For other harts it must return false
  27. and implement wake-up in platform-dependent way (e.g. after waiting for a user interrupt).
  28. */
  29. PROVIDE(_mp_hook = default_mp_hook);
  30. /* # Start trap function override
  31. By default uses the riscv crates default trap handler
  32. but by providing the `_start_trap` symbol external crates can override.
  33. */
  34. PROVIDE(_start_trap = default_start_trap);
  35. SECTIONS
  36. {
  37. .text.dummy (NOLOAD) :
  38. {
  39. /* This section is intended to make _stext address work */
  40. . = ABSOLUTE(_stext);
  41. } > REGION_TEXT
  42. .text _stext :
  43. {
  44. /* Put reset handler first in .text section so it ends up as the entry */
  45. /* point of the program. */
  46. KEEP(*(.init));
  47. KEEP(*(.init.rust));
  48. . = ALIGN(4);
  49. *(.trap);
  50. *(.trap.rust);
  51. *(.text.abort);
  52. *(.text .text.*);
  53. } > REGION_TEXT
  54. .rodata : ALIGN(4)
  55. {
  56. *(.srodata .srodata.*);
  57. *(.rodata .rodata.*);
  58. /* 4-byte align the end (VMA) of this section.
  59. This is required by LLD to ensure the LMA of the following .data
  60. section will have the correct alignment. */
  61. . = ALIGN(4);
  62. } > REGION_RODATA
  63. .data : ALIGN(4)
  64. {
  65. _sidata = LOADADDR(.data);
  66. _sdata = .;
  67. /* Must be called __global_pointer$ for linker relaxations to work. */
  68. PROVIDE(__global_pointer$ = . + 0x800);
  69. *(.sdata .sdata.* .sdata2 .sdata2.*);
  70. *(.data .data.*);
  71. . = ALIGN(4);
  72. _edata = .;
  73. } > REGION_DATA AT > REGION_RODATA
  74. .bss (NOLOAD) :
  75. {
  76. _sbss = .;
  77. *(.sbss .sbss.* .bss .bss.*);
  78. . = ALIGN(4);
  79. _ebss = .;
  80. } > REGION_BSS
  81. /* fictitious region that represents the memory available for the heap */
  82. .heap (NOLOAD) :
  83. {
  84. _sheap = .;
  85. . += _heap_size;
  86. . = ALIGN(4);
  87. _eheap = .;
  88. } > REGION_HEAP
  89. /* fictitious region that represents the memory available for the stack */
  90. .stack (NOLOAD) :
  91. {
  92. _estack = .;
  93. . = ABSOLUTE(_stack_start);
  94. _sstack = .;
  95. } > REGION_STACK
  96. /* fake output .got section */
  97. /* Dynamic relocations are unsupported. This section is only used to detect
  98. relocatable code in the input files and raise an error if relocatable code
  99. is found */
  100. .got (INFO) :
  101. {
  102. KEEP(*(.got .got.*));
  103. }
  104. .eh_frame (INFO) : { KEEP(*(.eh_frame)) }
  105. .eh_frame_hdr (INFO) : { *(.eh_frame_hdr) }
  106. }
  107. /* Do not exceed this mark in the error messages above | */
  108. ASSERT(ORIGIN(REGION_TEXT) % 4 == 0, "
  109. ERROR(riscv-rt): the start of the REGION_TEXT must be 4-byte aligned");
  110. ASSERT(ORIGIN(REGION_RODATA) % 4 == 0, "
  111. ERROR(riscv-rt): the start of the REGION_RODATA must be 4-byte aligned");
  112. ASSERT(ORIGIN(REGION_DATA) % 4 == 0, "
  113. ERROR(riscv-rt): the start of the REGION_DATA must be 4-byte aligned");
  114. ASSERT(ORIGIN(REGION_HEAP) % 4 == 0, "
  115. ERROR(riscv-rt): the start of the REGION_HEAP must be 4-byte aligned");
  116. ASSERT(ORIGIN(REGION_TEXT) % 4 == 0, "
  117. ERROR(riscv-rt): the start of the REGION_TEXT must be 4-byte aligned");
  118. ASSERT(ORIGIN(REGION_STACK) % 4 == 0, "
  119. ERROR(riscv-rt): the start of the REGION_STACK must be 4-byte aligned");
  120. ASSERT(_stext % 4 == 0, "
  121. ERROR(riscv-rt): `_stext` must be 4-byte aligned");
  122. ASSERT(_sdata % 4 == 0 && _edata % 4 == 0, "
  123. BUG(riscv-rt): .data is not 4-byte aligned");
  124. ASSERT(_sidata % 4 == 0, "
  125. BUG(riscv-rt): the LMA of .data is not 4-byte aligned");
  126. ASSERT(_sbss % 4 == 0 && _ebss % 4 == 0, "
  127. BUG(riscv-rt): .bss is not 4-byte aligned");
  128. ASSERT(_sheap % 4 == 0, "
  129. BUG(riscv-rt): start of .heap is not 4-byte aligned");
  130. ASSERT(_stext + SIZEOF(.text) < ORIGIN(REGION_TEXT) + LENGTH(REGION_TEXT), "
  131. ERROR(riscv-rt): The .text section must be placed inside the REGION_TEXT region.
  132. Set _stext to an address smaller than 'ORIGIN(REGION_TEXT) + LENGTH(REGION_TEXT)'");
  133. ASSERT(SIZEOF(.stack) > (_max_hart_id + 1) * _hart_stack_size, "
  134. ERROR(riscv-rt): .stack section is too small for allocating stacks for all the harts.
  135. Consider changing `_max_hart_id` or `_hart_stack_size`.");
  136. ASSERT(SIZEOF(.got) == 0, "
  137. .got section detected in the input files. Dynamic relocations are not
  138. supported. If you are linking to C code compiled using the `gcc` crate
  139. then modify your build script to compile the C code _without_ the
  140. -fPIC flag. See the documentation of the `gcc::Config.fpic` method for
  141. details.");
  142. /* Do not exceed this mark in the error messages above | */