link.x.in 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. /* # Developer notes
  2. - Symbols that start with a double underscore (__) are considered "private"
  3. - Symbols that start with a single underscore (_) are considered "semi-public"; they can be
  4. overridden in a user linker script, but should not be referred from user code (e.g. `extern "C" {
  5. static mut _heap_size }`).
  6. - `EXTERN` forces the linker to keep a symbol in the final binary. We use this to make sure a
  7. symbol if not dropped if it appears in or near the front of the linker arguments and "it's not
  8. needed" by any of the preceding objects (linker arguments)
  9. - `PROVIDE` is used to provide default values that can be overridden by a user linker script
  10. - In this linker script, you may find symbols that look like `${...}` (e.g., `${ARCH_WIDTH}`).
  11. These are wildcards used by the `build.rs` script to adapt to different target particularities.
  12. Check `build.rs` for more details about these symbols.
  13. - On alignment: it's important for correctness that the VMA boundaries of both .bss and .data *and*
  14. the LMA of .data are all `${ARCH_WIDTH}`-byte aligned. These alignments are assumed by the RAM
  15. initialization routine. There's also a second benefit: `${ARCH_WIDTH}`-byte aligned boundaries
  16. means that you won't see "Address (..) is out of bounds" in the disassembly produced by `objdump`.
  17. */
  18. PROVIDE(_stext = ORIGIN(REGION_TEXT));
  19. PROVIDE(_stack_start = ORIGIN(REGION_STACK) + LENGTH(REGION_STACK));
  20. PROVIDE(_max_hart_id = 0);
  21. PROVIDE(_hart_stack_size = 2K);
  22. PROVIDE(_heap_size = 0);
  23. PROVIDE(InstructionMisaligned = ExceptionHandler);
  24. PROVIDE(InstructionFault = ExceptionHandler);
  25. PROVIDE(IllegalInstruction = ExceptionHandler);
  26. PROVIDE(Breakpoint = ExceptionHandler);
  27. PROVIDE(LoadMisaligned = ExceptionHandler);
  28. PROVIDE(LoadFault = ExceptionHandler);
  29. PROVIDE(StoreMisaligned = ExceptionHandler);
  30. PROVIDE(StoreFault = ExceptionHandler);;
  31. PROVIDE(UserEnvCall = ExceptionHandler);
  32. PROVIDE(SupervisorEnvCall = ExceptionHandler);
  33. PROVIDE(MachineEnvCall = ExceptionHandler);
  34. PROVIDE(InstructionPageFault = ExceptionHandler);
  35. PROVIDE(LoadPageFault = ExceptionHandler);
  36. PROVIDE(StorePageFault = ExceptionHandler);
  37. PROVIDE(SupervisorSoft = DefaultHandler);
  38. PROVIDE(MachineSoft = DefaultHandler);
  39. PROVIDE(SupervisorTimer = DefaultHandler);
  40. PROVIDE(MachineTimer = DefaultHandler);
  41. PROVIDE(SupervisorExternal = DefaultHandler);
  42. PROVIDE(MachineExternal = DefaultHandler);
  43. PROVIDE(DefaultHandler = DefaultInterruptHandler);
  44. PROVIDE(ExceptionHandler = DefaultExceptionHandler);
  45. /* # Pre-initialization function */
  46. /* If the user overrides this using the `#[pre_init]` attribute or by creating a `__pre_init` function,
  47. then the function this points to will be called before the RAM is initialized. */
  48. PROVIDE(__pre_init = default_pre_init);
  49. /* A PAC/HAL defined routine that should initialize custom interrupt controller if needed. */
  50. PROVIDE(_setup_interrupts = default_setup_interrupts);
  51. /* # Multi-processing hook function
  52. fn _mp_hook() -> bool;
  53. This function is called from all the harts and must return true only for one hart,
  54. which will perform memory initialization. For other harts it must return false
  55. and implement wake-up in platform-dependent way (e.g. after waiting for a user interrupt).
  56. */
  57. PROVIDE(_mp_hook = default_mp_hook);
  58. /* # Start trap function override
  59. By default uses the riscv crates default trap handler
  60. but by providing the `_start_trap` symbol external crates can override.
  61. */
  62. PROVIDE(_start_trap = default_start_trap);
  63. SECTIONS
  64. {
  65. .text.dummy (NOLOAD) :
  66. {
  67. /* This section is intended to make _stext address work */
  68. . = ABSOLUTE(_stext);
  69. } > REGION_TEXT
  70. .text _stext :
  71. {
  72. /* Put reset handler first in .text section so it ends up as the entry */
  73. /* point of the program. */
  74. KEEP(*(.init));
  75. KEEP(*(.init.rust));
  76. . = ALIGN(4);
  77. *(.trap);
  78. *(.trap.rust);
  79. *(.text.abort);
  80. *(.text .text.*);
  81. } > REGION_TEXT
  82. .rodata : ALIGN(4)
  83. {
  84. *(.srodata .srodata.*);
  85. *(.rodata .rodata.*);
  86. /* 4-byte align the end (VMA) of this section.
  87. This is required by LLD to ensure the LMA of the following .data
  88. section will have the correct alignment. */
  89. . = ALIGN(4);
  90. } > REGION_RODATA
  91. .data : ALIGN(${ARCH_WIDTH})
  92. {
  93. _sidata = LOADADDR(.data);
  94. _sdata = .;
  95. /* Must be called __global_pointer$ for linker relaxations to work. */
  96. PROVIDE(__global_pointer$ = . + 0x800);
  97. *(.sdata .sdata.* .sdata2 .sdata2.*);
  98. *(.data .data.*);
  99. . = ALIGN(${ARCH_WIDTH});
  100. _edata = .;
  101. } > REGION_DATA AT > REGION_RODATA
  102. .bss (NOLOAD) : ALIGN(${ARCH_WIDTH})
  103. {
  104. _sbss = .;
  105. *(.sbss .sbss.* .bss .bss.*);
  106. . = ALIGN(${ARCH_WIDTH});
  107. _ebss = .;
  108. } > REGION_BSS
  109. /* fictitious region that represents the memory available for the heap */
  110. .heap (NOLOAD) :
  111. {
  112. _sheap = .;
  113. . += _heap_size;
  114. . = ALIGN(4);
  115. _eheap = .;
  116. } > REGION_HEAP
  117. /* fictitious region that represents the memory available for the stack */
  118. .stack (NOLOAD) :
  119. {
  120. _estack = .;
  121. . = ABSOLUTE(_stack_start);
  122. _sstack = .;
  123. } > REGION_STACK
  124. /* fake output .got section */
  125. /* Dynamic relocations are unsupported. This section is only used to detect
  126. relocatable code in the input files and raise an error if relocatable code
  127. is found */
  128. .got (INFO) :
  129. {
  130. KEEP(*(.got .got.*));
  131. }
  132. .eh_frame (INFO) : { KEEP(*(.eh_frame)) }
  133. .eh_frame_hdr (INFO) : { *(.eh_frame_hdr) }
  134. }
  135. /* Do not exceed this mark in the error messages above | */
  136. ASSERT(ORIGIN(REGION_TEXT) % 4 == 0, "
  137. ERROR(riscv-rt): the start of the REGION_TEXT must be 4-byte aligned");
  138. ASSERT(ORIGIN(REGION_RODATA) % 4 == 0, "
  139. ERROR(riscv-rt): the start of the REGION_RODATA must be 4-byte aligned");
  140. ASSERT(ORIGIN(REGION_DATA) % ${ARCH_WIDTH} == 0, "
  141. ERROR(riscv-rt): the start of the REGION_DATA must be ${ARCH_WIDTH}-byte aligned");
  142. ASSERT(ORIGIN(REGION_HEAP) % 4 == 0, "
  143. ERROR(riscv-rt): the start of the REGION_HEAP must be 4-byte aligned");
  144. ASSERT(ORIGIN(REGION_TEXT) % 4 == 0, "
  145. ERROR(riscv-rt): the start of the REGION_TEXT must be 4-byte aligned");
  146. ASSERT(ORIGIN(REGION_STACK) % 4 == 0, "
  147. ERROR(riscv-rt): the start of the REGION_STACK must be 4-byte aligned");
  148. ASSERT(_stext % 4 == 0, "
  149. ERROR(riscv-rt): `_stext` must be 4-byte aligned");
  150. ASSERT(_sdata % ${ARCH_WIDTH} == 0 && _edata % ${ARCH_WIDTH} == 0, "
  151. BUG(riscv-rt): .data is not ${ARCH_WIDTH}-byte aligned");
  152. ASSERT(_sidata % ${ARCH_WIDTH} == 0, "
  153. BUG(riscv-rt): the LMA of .data is not ${ARCH_WIDTH}-byte aligned");
  154. ASSERT(_sbss % ${ARCH_WIDTH} == 0 && _ebss % ${ARCH_WIDTH} == 0, "
  155. BUG(riscv-rt): .bss is not ${ARCH_WIDTH}-byte aligned");
  156. ASSERT(_sheap % 4 == 0, "
  157. BUG(riscv-rt): start of .heap is not 4-byte aligned");
  158. ASSERT(_stext + SIZEOF(.text) < ORIGIN(REGION_TEXT) + LENGTH(REGION_TEXT), "
  159. ERROR(riscv-rt): The .text section must be placed inside the REGION_TEXT region.
  160. Set _stext to an address smaller than 'ORIGIN(REGION_TEXT) + LENGTH(REGION_TEXT)'");
  161. ASSERT(SIZEOF(.stack) > (_max_hart_id + 1) * _hart_stack_size, "
  162. ERROR(riscv-rt): .stack section is too small for allocating stacks for all the harts.
  163. Consider changing `_max_hart_id` or `_hart_stack_size`.");
  164. ASSERT(SIZEOF(.got) == 0, "
  165. .got section detected in the input files. Dynamic relocations are not
  166. supported. If you are linking to C code compiled using the `gcc` crate
  167. then modify your build script to compile the C code _without_ the
  168. -fPIC flag. See the documentation of the `gcc::Config.fpic` method for
  169. details.");
  170. /* Do not exceed this mark in the error messages above | */