common-rom.ld 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. /* SPDX-License-Identifier: Apache-2.0 */
  2. SECTION_PROLOGUE(initlevel,,)
  3. {
  4. /*
  5. * link in initialization objects for all objects that are
  6. * automatically initialized by the kernel; the objects are
  7. * sorted in the order they will be initialized (i.e. ordered
  8. * by level, sorted by priority within a level)
  9. */
  10. __init_start = .;
  11. CREATE_OBJ_LEVEL(init, PRE_KERNEL_1)
  12. CREATE_OBJ_LEVEL(init, PRE_KERNEL_2)
  13. CREATE_OBJ_LEVEL(init, POST_KERNEL)
  14. CREATE_OBJ_LEVEL(init, APPLICATION)
  15. CREATE_OBJ_LEVEL(init, SMP)
  16. CREATE_OBJ_LEVEL(init, POWER_MAX)
  17. __init_end = .;
  18. } GROUP_ROM_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
  19. SECTION_PROLOGUE(devices,,)
  20. {
  21. /* Link in devices objects, which are tied to the init ones;
  22. * the objects are thus sorted the same way as their init
  23. * object parent. See above and include/device.h.
  24. */
  25. __device_start = .;
  26. CREATE_OBJ_LEVEL(device, PRE_KERNEL_1)
  27. CREATE_OBJ_LEVEL(device, PRE_KERNEL_2)
  28. CREATE_OBJ_LEVEL(device, POST_KERNEL)
  29. CREATE_OBJ_LEVEL(device, APPLICATION)
  30. CREATE_OBJ_LEVEL(device, SMP)
  31. CREATE_OBJ_LEVEL(device, POWER_MAX)
  32. __device_end = .;
  33. } GROUP_ROM_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
  34. #if defined(CONFIG_GEN_SW_ISR_TABLE) && !defined(CONFIG_DYNAMIC_INTERRUPTS)
  35. SECTION_PROLOGUE(sw_isr_table,,)
  36. {
  37. /*
  38. * Some arch requires an entry to be aligned to arch
  39. * specific boundary for using double word load
  40. * instruction. See include/sw_isr_table.h.
  41. */
  42. . = ALIGN(CONFIG_ARCH_SW_ISR_TABLE_ALIGN);
  43. *(_SW_ISR_TABLE_SECTION_SYMS)
  44. } GROUP_ROM_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
  45. #endif
  46. /* verify we don't have rogue .z_init_<something> initlevel sections */
  47. SECTION_PROLOGUE(initlevel_error,,)
  48. {
  49. KEEP(*(SORT(.z_init_[_A-Z0-9]*)))
  50. }
  51. ASSERT(SIZEOF(initlevel_error) == 0, "Undefined initialization levels used.")
  52. #ifdef CONFIG_CPP_STATIC_INIT_GNU
  53. SECTION_PROLOGUE(_CTOR_SECTION_NAME,,)
  54. {
  55. /*
  56. * The compiler fills the constructor pointers table below,
  57. * hence symbol __CTOR_LIST__ must be aligned on word
  58. * boundary. To align with the C++ standard, the first elment
  59. * of the array contains the number of actual constructors. The
  60. * last element is NULL.
  61. */
  62. #ifdef CONFIG_64BIT
  63. . = ALIGN(8);
  64. __CTOR_LIST__ = .;
  65. QUAD((__CTOR_END__ - __CTOR_LIST__) / 8 - 2)
  66. KEEP(*(SORT_BY_NAME(".ctors*")))
  67. QUAD(0)
  68. __CTOR_END__ = .;
  69. #else
  70. . = ALIGN(4);
  71. __CTOR_LIST__ = .;
  72. LONG((__CTOR_END__ - __CTOR_LIST__) / 4 - 2)
  73. KEEP(*(SORT_BY_NAME(".ctors*")))
  74. LONG(0)
  75. __CTOR_END__ = .;
  76. #endif
  77. } GROUP_ROM_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
  78. SECTION_PROLOGUE(init_array,,)
  79. {
  80. . = ALIGN(4);
  81. __init_array_start = .;
  82. KEEP(*(SORT_BY_NAME(".init_array*")))
  83. __init_array_end = .;
  84. } GROUP_ROM_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
  85. #endif
  86. #ifdef CONFIG_USERSPACE
  87. /* Build-time assignment of permissions to kernel objects to
  88. * threads declared with K_THREAD_DEFINE()
  89. */
  90. ITERABLE_SECTION_ROM(z_object_assignment, 4)
  91. #endif
  92. SECTION_DATA_PROLOGUE(app_shmem_regions,,)
  93. {
  94. __app_shmem_regions_start = .;
  95. KEEP(*(SORT(.app_regions.*)));
  96. __app_shmem_regions_end = .;
  97. } GROUP_ROM_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
  98. #if defined(CONFIG_NET_SOCKETS)
  99. ITERABLE_SECTION_ROM(net_socket_register, 4)
  100. #endif
  101. #if defined(CONFIG_NET_L2_PPP)
  102. ITERABLE_SECTION_ROM(ppp_protocol_handler, 4)
  103. #endif
  104. ITERABLE_SECTION_ROM(bt_l2cap_fixed_chan, 4)
  105. #if defined(CONFIG_BT_BREDR)
  106. ITERABLE_SECTION_ROM(bt_l2cap_br_fixed_chan, 4)
  107. #endif
  108. #if defined(CONFIG_BT_CONN)
  109. ITERABLE_SECTION_ROM(bt_conn_cb, 4)
  110. #endif
  111. ITERABLE_SECTION_ROM(bt_gatt_service_static, 4)
  112. #if defined(CONFIG_BT_MESH)
  113. ITERABLE_SECTION_ROM(bt_mesh_subnet_cb, 4)
  114. ITERABLE_SECTION_ROM(bt_mesh_app_key_cb, 4)
  115. ITERABLE_SECTION_ROM(bt_mesh_hb_cb, 4)
  116. #endif
  117. #if defined(CONFIG_BT_MESH_FRIEND)
  118. ITERABLE_SECTION_ROM(bt_mesh_friend_cb, 4)
  119. #endif
  120. #if defined(CONFIG_BT_MESH_LOW_POWER)
  121. ITERABLE_SECTION_ROM(bt_mesh_lpn_cb, 4)
  122. #endif
  123. #if defined(CONFIG_BT_MESH_GATT_PROXY)
  124. ITERABLE_SECTION_ROM(bt_mesh_proxy_cb, 4)
  125. #endif
  126. #if defined(CONFIG_EC_HOST_CMD)
  127. ITERABLE_SECTION_ROM(ec_host_cmd_handler, 4)
  128. #endif
  129. #if defined(CONFIG_SETTINGS)
  130. ITERABLE_SECTION_ROM(settings_handler_static, 4)
  131. #endif
  132. ITERABLE_SECTION_ROM(k_p4wq_initparam, 4)
  133. #if defined(CONFIG_EMUL)
  134. SECTION_DATA_PROLOGUE(emulators_section,,)
  135. {
  136. __emul_list_start = .;
  137. KEEP(*(SORT_BY_NAME(".emulators")));
  138. __emul_list_end = .;
  139. } GROUP_LINK_IN(ROMABLE_REGION)
  140. #endif /* CONFIG_EMUL */
  141. #if defined(CONFIG_DNS_SD)
  142. ITERABLE_SECTION_ROM(dns_sd_rec, 4)
  143. #endif
  144. #if defined(CONFIG_PCIE)
  145. SECTION_DATA_PROLOGUE(irq_alloc,,)
  146. {
  147. __irq_alloc_start = .;
  148. KEEP(*(SORT_BY_NAME("._irq_alloc*")));
  149. __irq_alloc_end = .;
  150. } GROUP_LINK_IN(ROMABLE_REGION)
  151. #endif /* CONFIG_PCIE */
  152. SECTION_DATA_PROLOGUE(log_strings_sections,,)
  153. {
  154. __log_strings_start = .;
  155. KEEP(*(SORT(.log_strings*)));
  156. __log_strings_end = .;
  157. } GROUP_ROM_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
  158. SECTION_DATA_PROLOGUE(log_const_sections,,)
  159. {
  160. __log_const_start = .;
  161. KEEP(*(SORT(.log_const_*)));
  162. __log_const_end = .;
  163. } GROUP_ROM_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
  164. SECTION_DATA_PROLOGUE(log_backends_sections,,)
  165. {
  166. __log_backends_start = .;
  167. KEEP(*("._log_backend.*"));
  168. __log_backends_end = .;
  169. } GROUP_ROM_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
  170. ITERABLE_SECTION_ROM(shell, 4)
  171. SECTION_DATA_PROLOGUE(shell_root_cmds_sections,,)
  172. {
  173. __shell_root_cmds_start = .;
  174. KEEP(*(SORT(.shell_root_cmd_*)));
  175. __shell_root_cmds_end = .;
  176. } GROUP_ROM_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
  177. SECTION_DATA_PROLOGUE(font_entry_sections,,)
  178. {
  179. __font_entry_start = .;
  180. KEEP(*(SORT_BY_NAME("._cfb_font.*")))
  181. __font_entry_end = .;
  182. } GROUP_ROM_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
  183. ITERABLE_SECTION_ROM(tracing_backend, 4)
  184. SECTION_DATA_PROLOGUE(zephyr_dbg_info,,)
  185. {
  186. KEEP(*(".dbg_thread_info"));
  187. } GROUP_ROM_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
  188. SECTION_DATA_PROLOGUE(device_handles,,)
  189. {
  190. __device_handles_start = .;
  191. #ifdef LINKER_ZEPHYR_FINAL
  192. KEEP(*(SORT(.__device_handles_pass2*)));
  193. #else /* LINKER_ZEPHYR_FINAL */
  194. KEEP(*(SORT(.__device_handles_pass1*)));
  195. #endif /* LINKER_ZEPHYR_FINAL */
  196. __device_handles_end = .;
  197. } GROUP_ROM_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)