linker-defs.h 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510
  1. /*
  2. * Copyright (c) 2013-2014, Wind River Systems, Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /*
  7. * DESCRIPTION
  8. * Platform independent, commonly used macros and defines related to linker
  9. * script.
  10. *
  11. * This file may be included by:
  12. * - Linker script files: for linker section declarations
  13. * - C files: for external declaration of address or size of linker section
  14. * - Assembly files: for external declaration of address or size of linker
  15. * section
  16. */
  17. #ifndef ZEPHYR_INCLUDE_LINKER_LINKER_DEFS_H_
  18. #define ZEPHYR_INCLUDE_LINKER_LINKER_DEFS_H_
  19. #include <toolchain.h>
  20. #include <toolchain/common.h>
  21. #include <linker/sections.h>
  22. #include <sys/util.h>
  23. #include <offsets.h>
  24. /* We need to dummy out DT_NODE_HAS_STATUS when building the unittests.
  25. * Including devicetree.h would require generating dummy header files
  26. * to match what gen_defines creates, so it's easier to just dummy out
  27. * DT_NODE_HAS_STATUS.
  28. */
  29. #ifdef ZTEST_UNITTEST
  30. #define DT_NODE_HAS_STATUS(node, status) 0
  31. #else
  32. #include <linker/devicetree_reserved.h>
  33. #include <devicetree.h>
  34. #endif
  35. #ifdef _LINKER
  36. /**
  37. * @addtogroup iterable_section_apis
  38. * @{
  39. */
  40. #define Z_LINK_ITERABLE(struct_type) \
  41. _CONCAT(_##struct_type, _list_start) = .; \
  42. KEEP(*(SORT_BY_NAME(._##struct_type.static.*))); \
  43. _CONCAT(_##struct_type, _list_end) = .
  44. #define Z_LINK_ITERABLE_ALIGNED(struct_type, align) \
  45. . = ALIGN(align); \
  46. Z_LINK_ITERABLE(struct_type);
  47. #define Z_LINK_ITERABLE_GC_ALLOWED(struct_type) \
  48. _CONCAT(_##struct_type, _list_start) = .; \
  49. *(SORT_BY_NAME(._##struct_type.static.*)); \
  50. _CONCAT(_##struct_type, _list_end) = .
  51. /**
  52. * @brief Define a read-only iterable section output.
  53. *
  54. * @details
  55. * Define an output section which will set up an iterable area
  56. * of equally-sized data structures. For use with STRUCT_SECTION_ITERABLE().
  57. * Input sections will be sorted by name, per ld's SORT_BY_NAME.
  58. *
  59. * This macro should be used for read-only data.
  60. *
  61. * Note that this keeps the symbols in the image even though
  62. * they are not being directly referenced. Use this when symbols
  63. * are indirectly referenced by iterating through the section.
  64. */
  65. #define ITERABLE_SECTION_ROM(struct_type, subalign) \
  66. SECTION_PROLOGUE(struct_type##_area,,SUBALIGN(subalign)) \
  67. { \
  68. Z_LINK_ITERABLE(struct_type); \
  69. } GROUP_ROM_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
  70. #define Z_ITERABLE_SECTION_ROM(struct_type, subalign) \
  71. ITERABLE_SECTION_ROM(struct_type, subalign)
  72. /**
  73. * @brief Define a garbage collectable read-only iterable section output.
  74. *
  75. * @details
  76. * Define an output section which will set up an iterable area
  77. * of equally-sized data structures. For use with STRUCT_SECTION_ITERABLE().
  78. * Input sections will be sorted by name, per ld's SORT_BY_NAME.
  79. *
  80. * This macro should be used for read-only data.
  81. *
  82. * Note that the symbols within the section can be garbage collected.
  83. */
  84. #define ITERABLE_SECTION_ROM_GC_ALLOWED(struct_type, subalign) \
  85. SECTION_PROLOGUE(struct_type##_area,,SUBALIGN(subalign)) \
  86. { \
  87. Z_LINK_ITERABLE_GC_ALLOWED(struct_type); \
  88. } GROUP_LINK_IN(ROMABLE_REGION)
  89. #define Z_ITERABLE_SECTION_ROM_GC_ALLOWED(struct_type, subalign) \
  90. ITERABLE_SECTION_ROM_GC_ALLOWED(struct_type, subalign)
  91. /**
  92. * @brief Define a read-write iterable section output.
  93. *
  94. * @details
  95. * Define an output section which will set up an iterable area
  96. * of equally-sized data structures. For use with STRUCT_SECTION_ITERABLE().
  97. * Input sections will be sorted by name, per ld's SORT_BY_NAME.
  98. *
  99. * This macro should be used for read-write data that is modified at runtime.
  100. *
  101. * Note that this keeps the symbols in the image even though
  102. * they are not being directly referenced. Use this when symbols
  103. * are indirectly referenced by iterating through the section.
  104. */
  105. #define ITERABLE_SECTION_RAM(struct_type, subalign) \
  106. SECTION_DATA_PROLOGUE(struct_type##_area,,SUBALIGN(subalign)) \
  107. { \
  108. Z_LINK_ITERABLE(struct_type); \
  109. } GROUP_DATA_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
  110. #define Z_ITERABLE_SECTION_RAM(struct_type, subalign) \
  111. ITERABLE_SECTION_RAM(struct_type, subalign)
  112. /**
  113. * @brief Define a garbage collectable read-write iterable section output.
  114. *
  115. * @details
  116. * Define an output section which will set up an iterable area
  117. * of equally-sized data structures. For use with STRUCT_SECTION_ITERABLE().
  118. * Input sections will be sorted by name, per ld's SORT_BY_NAME.
  119. *
  120. * This macro should be used for read-write data that is modified at runtime.
  121. *
  122. * Note that the symbols within the section can be garbage collected.
  123. */
  124. #define ITERABLE_SECTION_RAM_GC_ALLOWED(struct_type, subalign) \
  125. SECTION_DATA_PROLOGUE(struct_type##_area,,SUBALIGN(subalign)) \
  126. { \
  127. Z_LINK_ITERABLE_GC_ALLOWED(struct_type); \
  128. } GROUP_DATA_LINK_IN(RAMABLE_REGION, ROMABLE_REGION)
  129. #define Z_ITERABLE_SECTION_RAM_GC_ALLOWED(struct_type, subalign) \
  130. ITERABLE_SECTION_RAM_GC_ALLOWED(struct_type, subalign)
  131. /**
  132. * @}
  133. */ /* end of struct_section_apis */
  134. /*
  135. * generate a symbol to mark the start of the objects array for
  136. * the specified object and level, then link all of those objects
  137. * (sorted by priority). Ensure the objects aren't discarded if there is
  138. * no direct reference to them
  139. */
  140. #define CREATE_OBJ_LEVEL(object, level) \
  141. __##object##_##level##_start = .; \
  142. KEEP(*(SORT(.z_##object##_##level[0-9]_*))); \
  143. KEEP(*(SORT(.z_##object##_##level[1-9][0-9]_*)));
  144. /*
  145. * link in shell initialization objects for all modules that use shell and
  146. * their shell commands are automatically initialized by the kernel.
  147. */
  148. #elif defined(_ASMLANGUAGE)
  149. /* Assembly FILES: declaration defined by the linker script */
  150. GDATA(__bss_start)
  151. GDATA(__bss_num_words)
  152. #ifdef CONFIG_XIP
  153. GDATA(__data_region_load_start)
  154. GDATA(__data_region_start)
  155. GDATA(__data_region_num_words)
  156. #endif
  157. #else /* ! _ASMLANGUAGE */
  158. #include <zephyr/types.h>
  159. /*
  160. * Memory owned by the kernel, to be used as shared memory between
  161. * application threads.
  162. *
  163. * The following are extern symbols from the linker. This enables
  164. * the dynamic k_mem_domain and k_mem_partition creation and alignment
  165. * to the section produced in the linker.
  166. * The policy for this memory will be to initially configure all of it as
  167. * kernel / supervisor thread accessible.
  168. */
  169. extern char _app_smem_start[];
  170. extern char _app_smem_end[];
  171. extern char _app_smem_size[];
  172. extern char _app_smem_rom_start[];
  173. extern char _app_smem_num_words[];
  174. #ifdef CONFIG_LINKER_USE_PINNED_SECTION
  175. extern char _app_smem_pinned_start[];
  176. extern char _app_smem_pinned_end[];
  177. extern char _app_smem_pinned_size[];
  178. extern char _app_smem_pinned_num_words[];
  179. #endif
  180. /* Memory owned by the kernel. Start and end will be aligned for memory
  181. * management/protection hardware for the target architecture.
  182. *
  183. * Consists of all kernel-side globals, all kernel objects, all thread stacks,
  184. * and all currently unused RAM.
  185. *
  186. * Except for the stack of the currently executing thread, none of this memory
  187. * is normally accessible to user threads unless specifically granted at
  188. * runtime.
  189. */
  190. extern char __kernel_ram_start[];
  191. extern char __kernel_ram_end[];
  192. extern char __kernel_ram_size[];
  193. extern char __kernel_ram_save_end[];
  194. /* Used by z_bss_zero or arch-specific implementation */
  195. extern char __bss_start[];
  196. extern char __bss_end[];
  197. /* Used by z_psram_bss_zero or arch-specific implementation */
  198. extern char __psram_bss_start[];
  199. extern char __psram_bss_end[];
  200. /* Used by z_sram_bss_zero or arch-specific implementation */
  201. extern char __sram_bss_start[];
  202. extern char __sram_bss_end[];
  203. /* Used by z_data_copy or arch-specific implementation */
  204. extern char __sensor_func_start[];
  205. extern char __sensor_func_end[];
  206. extern char __sensor_func_size[];
  207. extern char __sensor_func_load_start[];
  208. extern char __sensor_data_start[];
  209. extern char __sensor_data_end[];
  210. extern char __sensor_data_size[];
  211. extern char __sensor_data_load_start[];
  212. /* Used by z_bss_zero or arch-specific implementation */
  213. extern char __sensor_bss_start[];
  214. extern char __sensor_bss_end[];
  215. extern char __sensor_bss_size[];
  216. /* Used by z_data_copy() or arch-specific implementation */
  217. #ifdef CONFIG_XIP
  218. extern char __data_region_load_start[];
  219. extern char __data_region_start[];
  220. extern char __data_region_end[];
  221. #endif /* CONFIG_XIP */
  222. #ifdef CONFIG_MMU
  223. /* Virtual addresses of page-aligned kernel image mapped into RAM at boot */
  224. extern char z_mapped_start[];
  225. extern char z_mapped_end[];
  226. #endif /* CONFIG_MMU */
  227. /* Includes text and rodata */
  228. extern char __rom_region_start[];
  229. extern char __rom_region_end[];
  230. extern char __rom_region_size[];
  231. /* Includes all ROMable data, i.e. the size of the output image file. */
  232. extern char _flash_used[];
  233. /* datas, bss, noinit */
  234. extern char _image_ram_start[];
  235. extern char _image_ram_end[];
  236. extern char __text_region_start[];
  237. extern char __text_region_end[];
  238. extern char __text_region_size[];
  239. extern char __rodata_region_start[];
  240. extern char __rodata_region_end[];
  241. extern char __rodata_region_size[];
  242. extern char _vector_start[];
  243. extern char _vector_end[];
  244. /* Used by soc_sleep for saving power through shutting down sram */
  245. extern char _sleep_shutdown_ram_start[];
  246. extern char _sleep_shutdown_ram_end[];
  247. /* Used by ramdump for saving sram/psram */
  248. extern char __ramdump_sram_start[];
  249. extern char __ramdump_sram_end[];
  250. extern char __ramdump_psram_start[];
  251. extern char __ramdump_psram_end[];
  252. #if DT_NODE_HAS_STATUS(_NODE_RESERVED, okay)
  253. LINKER_DT_RESERVED_MEM_SYMBOLS()
  254. #endif
  255. #ifdef CONFIG_SW_VECTOR_RELAY
  256. extern char __vector_relay_table[];
  257. #endif
  258. #ifdef CONFIG_COVERAGE_GCOV
  259. extern char __gcov_bss_start[];
  260. extern char __gcov_bss_end[];
  261. extern char __gcov_bss_size[];
  262. #endif /* CONFIG_COVERAGE_GCOV */
  263. /* end address of image, used by newlib for the heap */
  264. extern char _end[];
  265. /* The total size used in flash device */
  266. extern char _flash_used[];
  267. #if DT_NODE_HAS_STATUS(DT_CHOSEN(zephyr_ccm), okay)
  268. extern char __ccm_data_rom_start[];
  269. extern char __ccm_start[];
  270. extern char __ccm_data_start[];
  271. extern char __ccm_data_end[];
  272. extern char __ccm_bss_start[];
  273. extern char __ccm_bss_end[];
  274. extern char __ccm_noinit_start[];
  275. extern char __ccm_noinit_end[];
  276. extern char __ccm_end[];
  277. #endif
  278. #if DT_NODE_HAS_STATUS(DT_CHOSEN(zephyr_itcm), okay)
  279. extern char __itcm_start[];
  280. extern char __itcm_end[];
  281. extern char __itcm_size[];
  282. extern char __itcm_load_start[];
  283. #endif
  284. #if DT_NODE_HAS_STATUS(DT_CHOSEN(zephyr_dtcm), okay)
  285. extern char __dtcm_data_start[];
  286. extern char __dtcm_data_end[];
  287. extern char __dtcm_bss_start[];
  288. extern char __dtcm_bss_end[];
  289. extern char __dtcm_noinit_start[];
  290. extern char __dtcm_noinit_end[];
  291. extern char __dtcm_data_load_start[];
  292. extern char __dtcm_start[];
  293. extern char __dtcm_end[];
  294. #endif
  295. /* Used by the Security Attribution Unit to configure the
  296. * Non-Secure Callable region.
  297. */
  298. #ifdef CONFIG_ARM_FIRMWARE_HAS_SECURE_ENTRY_FUNCS
  299. extern char __sg_start[];
  300. extern char __sg_end[];
  301. extern char __sg_size[];
  302. #endif /* CONFIG_ARM_FIRMWARE_HAS_SECURE_ENTRY_FUNCS */
  303. /*
  304. * Non-cached kernel memory region, currently only available on ARM Cortex-M7
  305. * with a MPU. Start and end will be aligned for memory management/protection
  306. * hardware for the target architecture.
  307. *
  308. * All the functions with '__nocache' keyword will be placed into this
  309. * section.
  310. */
  311. #ifdef CONFIG_NOCACHE_MEMORY
  312. extern char _nocache_ram_start[];
  313. extern char _nocache_ram_end[];
  314. extern char _nocache_ram_size[];
  315. #endif /* CONFIG_NOCACHE_MEMORY */
  316. /* Memory owned by the kernel. Start and end will be aligned for memory
  317. * management/protection hardware for the target architecture.
  318. *
  319. * All the functions with '__ramfunc' keyword will be placed into this
  320. * section, stored in RAM instead of FLASH.
  321. */
  322. #ifdef CONFIG_ARCH_HAS_RAMFUNC_SUPPORT
  323. extern char __ramfunc_start[];
  324. extern char __ramfunc_end[];
  325. extern char __ramfunc_size[];
  326. extern char __ramfunc_load_start[];
  327. #endif /* CONFIG_ARCH_HAS_RAMFUNC_SUPPORT */
  328. #ifdef CONFIG_SLEEP_FUNC_IN_SRAM
  329. #define __sleepfunc __attribute__((noinline)) \
  330. __attribute__((long_call, section(".sleepfunc")))
  331. extern char _sram_data_start[];
  332. extern char _sram_data_end[];
  333. extern char _sram_data_ram_size[];
  334. extern char _sram_data_rom_start[];
  335. #else
  336. #define __sleepfunc __ramfunc
  337. #endif
  338. #define __de_func __attribute__((noinline)) \
  339. __attribute__((long_call, section(".defunc")))
  340. #define __lvgl_func __attribute__((noinline)) \
  341. __attribute__((long_call, section(".lvglfunc")))
  342. #ifdef CONFIG_SIM_FLASH_ACTS
  343. extern char __sim_flash_ram_start[];
  344. extern char __sim_flash_ram_end[];
  345. #endif
  346. /* Memory owned by the kernel. Memory region for thread privilege stack buffers,
  347. * currently only applicable on ARM Cortex-M architecture when building with
  348. * support for User Mode.
  349. *
  350. * All thread privilege stack buffers will be placed into this section.
  351. */
  352. #ifdef CONFIG_USERSPACE
  353. extern char z_priv_stacks_ram_start[];
  354. extern char z_priv_stacks_ram_end[];
  355. extern char z_user_stacks_start[];
  356. extern char z_user_stacks_end[];
  357. extern char z_kobject_data_begin[];
  358. #endif /* CONFIG_USERSPACE */
  359. #ifdef CONFIG_THREAD_LOCAL_STORAGE
  360. extern char __tdata_start[];
  361. extern char __tdata_end[];
  362. extern char __tdata_size[];
  363. extern char __tdata_align[];
  364. extern char __tbss_start[];
  365. extern char __tbss_end[];
  366. extern char __tbss_size[];
  367. extern char __tbss_align[];
  368. extern char __tls_start[];
  369. extern char __tls_end[];
  370. extern char __tls_size[];
  371. #endif /* CONFIG_THREAD_LOCAL_STORAGE */
  372. #ifdef CONFIG_LINKER_USE_BOOT_SECTION
  373. /* lnkr_boot_start[] and lnkr_boot_end[]
  374. * must encapsulate all the boot sections.
  375. */
  376. extern char lnkr_boot_start[];
  377. extern char lnkr_boot_end[];
  378. extern char lnkr_boot_text_start[];
  379. extern char lnkr_boot_text_end[];
  380. extern char lnkr_boot_text_size[];
  381. extern char lnkr_boot_data_start[];
  382. extern char lnkr_boot_data_end[];
  383. extern char lnkr_boot_data_size[];
  384. extern char lnkr_boot_rodata_start[];
  385. extern char lnkr_boot_rodata_end[];
  386. extern char lnkr_boot_rodata_size[];
  387. extern char lnkr_boot_bss_start[];
  388. extern char lnkr_boot_bss_end[];
  389. extern char lnkr_boot_bss_size[];
  390. extern char lnkr_boot_noinit_start[];
  391. extern char lnkr_boot_noinit_end[];
  392. extern char lnkr_boot_noinit_size[];
  393. #endif /* CONFIG_LINKER_USE_BOOT_SECTION */
  394. #ifdef CONFIG_LINKER_USE_PINNED_SECTION
  395. /* lnkr_pinned_start[] and lnkr_pinned_end[] must encapsulate
  396. * all the pinned sections as these are used by
  397. * the MMU code to mark the physical page frames with
  398. * Z_PAGE_FRAME_PINNED.
  399. */
  400. extern char lnkr_pinned_start[];
  401. extern char lnkr_pinned_end[];
  402. extern char lnkr_pinned_text_start[];
  403. extern char lnkr_pinned_text_end[];
  404. extern char lnkr_pinned_text_size[];
  405. extern char lnkr_pinned_data_start[];
  406. extern char lnkr_pinned_data_end[];
  407. extern char lnkr_pinned_data_size[];
  408. extern char lnkr_pinned_rodata_start[];
  409. extern char lnkr_pinned_rodata_end[];
  410. extern char lnkr_pinned_rodata_size[];
  411. extern char lnkr_pinned_bss_start[];
  412. extern char lnkr_pinned_bss_end[];
  413. extern char lnkr_pinned_bss_size[];
  414. extern char lnkr_pinned_noinit_start[];
  415. extern char lnkr_pinned_noinit_end[];
  416. extern char lnkr_pinned_noinit_size[];
  417. __pinned_func
  418. static inline bool lnkr_is_pinned(uint8_t *addr)
  419. {
  420. if ((addr >= (uint8_t *)lnkr_pinned_start) &&
  421. (addr < (uint8_t *)lnkr_pinned_end)) {
  422. return true;
  423. } else {
  424. return false;
  425. }
  426. }
  427. __pinned_func
  428. static inline bool lnkr_is_region_pinned(uint8_t *addr, size_t sz)
  429. {
  430. if ((addr >= (uint8_t *)lnkr_pinned_start) &&
  431. ((addr + sz) < (uint8_t *)lnkr_pinned_end)) {
  432. return true;
  433. } else {
  434. return false;
  435. }
  436. }
  437. #endif /* CONFIG_LINKER_USE_PINNED_SECTION */
  438. #endif /* ! _ASMLANGUAGE */
  439. #endif /* ZEPHYR_INCLUDE_LINKER_LINKER_DEFS_H_ */