app_memdomain.h 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. /*
  2. * Copyright (c) 2019 Intel Corporation
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_APP_MEMORY_APP_MEMDOMAIN_H_
  7. #define ZEPHYR_INCLUDE_APP_MEMORY_APP_MEMDOMAIN_H_
  8. #include <linker/linker-defs.h>
  9. #include <sys/dlist.h>
  10. #include <kernel.h>
  11. #ifdef CONFIG_USERSPACE
  12. /**
  13. * @brief Name of the data section for a particular partition
  14. *
  15. * Useful for defining memory pools, or any other macro that takes a
  16. * section name as a parameter.
  17. *
  18. * @param id Partition name
  19. */
  20. #define K_APP_DMEM_SECTION(id) data_smem_##id##_data
  21. /**
  22. * @brief Name of the bss section for a particular partition
  23. *
  24. * Useful for defining memory pools, or any other macro that takes a
  25. * section name as a parameter.
  26. *
  27. * @param id Partition name
  28. */
  29. #define K_APP_BMEM_SECTION(id) data_smem_##id##_bss
  30. /**
  31. * @brief Place data in a partition's data section
  32. *
  33. * Globals tagged with this will end up in the data section for the
  34. * specified memory partition. This data should be initialized to some
  35. * desired value.
  36. *
  37. * @param id Name of the memory partition to associate this data
  38. */
  39. #define K_APP_DMEM(id) Z_GENERIC_SECTION(K_APP_DMEM_SECTION(id))
  40. /**
  41. * @brief Place data in a partition's bss section
  42. *
  43. * Globals tagged with this will end up in the bss section for the
  44. * specified memory partition. This data will be zeroed at boot.
  45. *
  46. * @param id Name of the memory partition to associate this data
  47. */
  48. #define K_APP_BMEM(id) Z_GENERIC_SECTION(K_APP_BMEM_SECTION(id))
  49. struct z_app_region {
  50. void *bss_start;
  51. size_t bss_size;
  52. };
  53. #define Z_APP_START(id) z_data_smem_##id##_part_start
  54. #define Z_APP_SIZE(id) z_data_smem_##id##_part_size
  55. #define Z_APP_BSS_START(id) z_data_smem_##id##_bss_start
  56. #define Z_APP_BSS_SIZE(id) z_data_smem_##id##_bss_size
  57. /* If a partition is declared with K_APPMEM_PARTITION, but never has any
  58. * data assigned to its contents, then no symbols with its prefix will end
  59. * up in the symbol table. This prevents gen_app_partitions.py from detecting
  60. * that the partition exists, and the linker symbols which specify partition
  61. * bounds will not be generated, resulting in build errors.
  62. *
  63. * What this inline assembly code does is define a symbol with no data.
  64. * This should work for all arches that produce ELF binaries, see
  65. * https://sourceware.org/binutils/docs/as/Section.html
  66. *
  67. * We don't know what active flags/type of the pushed section were, so we are
  68. * specific: "aw" indicates section is allocatable and writable,
  69. * and "@progbits" indicates the section has data.
  70. */
  71. #if defined(CONFIG_ARM) || defined(CONFIG_ARM64)
  72. /* ARM has a quirk in that '@' denotes a comment, so we have to send
  73. * %progbits to the assembler instead.
  74. */
  75. #define Z_PROGBITS_SYM "\%"
  76. #else
  77. #define Z_PROGBITS_SYM "@"
  78. #endif
  79. #if defined(CONFIG_ARC) && defined(__CCAC__)
  80. /* ARC MWDT assembler has slightly different pushsection/popsection directives
  81. * names.
  82. */
  83. #define Z_PUSHSECTION_DIRECTIV ".pushsect"
  84. #define Z_POPSECTION_DIRECTIVE ".popsect"
  85. #else
  86. #define Z_PUSHSECTION_DIRECTIV ".pushsection"
  87. #define Z_POPSECTION_DIRECTIVE ".popsection"
  88. #endif
  89. #define Z_APPMEM_PLACEHOLDER(name) \
  90. __asm__ ( \
  91. Z_PUSHSECTION_DIRECTIV " " STRINGIFY(K_APP_DMEM_SECTION(name)) \
  92. ",\"aw\"," Z_PROGBITS_SYM "progbits\n\t" \
  93. ".global " STRINGIFY(name) "_placeholder\n\t" \
  94. STRINGIFY(name) "_placeholder:\n\t" \
  95. Z_POPSECTION_DIRECTIVE "\n\t")
  96. /**
  97. * @brief Define an application memory partition with linker support
  98. *
  99. * Defines a k_mem_paritition with the provided name.
  100. * This name may be used with the K_APP_DMEM and K_APP_BMEM macros to
  101. * place globals automatically in this partition.
  102. *
  103. * NOTE: placeholder char variable is defined here to prevent build errors
  104. * if a partition is defined but nothing ever placed in it.
  105. *
  106. * @param name Name of the k_mem_partition to declare
  107. */
  108. #define K_APPMEM_PARTITION_DEFINE(name) \
  109. extern char Z_APP_START(name)[]; \
  110. extern char Z_APP_SIZE(name)[]; \
  111. struct k_mem_partition name = { \
  112. .start = (uintptr_t) &Z_APP_START(name), \
  113. .size = (size_t) &Z_APP_SIZE(name), \
  114. .attr = K_MEM_PARTITION_P_RW_U_RW \
  115. }; \
  116. extern char Z_APP_BSS_START(name)[]; \
  117. extern char Z_APP_BSS_SIZE(name)[]; \
  118. Z_GENERIC_SECTION(.app_regions.name) \
  119. const struct z_app_region name##_region = { \
  120. .bss_start = &Z_APP_BSS_START(name), \
  121. .bss_size = (size_t) &Z_APP_BSS_SIZE(name) \
  122. }; \
  123. Z_APPMEM_PLACEHOLDER(name)
  124. #else
  125. #define K_APP_BMEM(ptn)
  126. #define K_APP_DMEM(ptn)
  127. #define K_APP_DMEM_SECTION(ptn) .data
  128. #define K_APP_BMEM_SECTION(ptn) .bss
  129. #define K_APPMEM_PARTITION_DEFINE(name)
  130. #endif /* CONFIG_USERSPACE */
  131. #endif /* ZEPHYR_INCLUDE_APP_MEMORY_APP_MEMDOMAIN_H_ */