thread_stack.h 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669
  1. /*
  2. * Copyright (c) 2020 Intel Corporation
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. *
  9. * @brief Macros for declaring thread stacks
  10. */
  11. /**
  12. * @brief Thread Stack APIs
  13. * @ingroup kernel_apis
  14. * @defgroup thread_stack_api Thread Stack APIs
  15. * @{
  16. * @}
  17. */
  18. #ifndef ZEPHYR_INCLUDE_SYS_THREAD_STACK_H
  19. #define ZEPHYR_INCLUDE_SYS_THREAD_STACK_H
  20. #if !defined(_ASMLANGUAGE)
  21. #include <arch/cpu.h>
  22. #include <sys/util.h>
  23. #ifdef __cplusplus
  24. extern "C" {
  25. #endif
  26. /* Using typedef deliberately here, this is quite intended to be an opaque
  27. * type.
  28. *
  29. * The purpose of this data type is to clearly distinguish between the
  30. * declared symbol for a stack (of type k_thread_stack_t) and the underlying
  31. * buffer which composes the stack data actually used by the underlying
  32. * thread; they cannot be used interchangeably as some arches precede the
  33. * stack buffer region with guard areas that trigger a MPU or MMU fault
  34. * if written to.
  35. *
  36. * APIs that want to work with the buffer inside should continue to use
  37. * char *.
  38. *
  39. * Stacks should always be created with K_THREAD_STACK_DEFINE().
  40. */
  41. struct __packed z_thread_stack_element {
  42. char data;
  43. };
  44. /**
  45. * @typedef k_thread_stack_t
  46. * @brief Typedef of struct z_thread_stack_element
  47. *
  48. * @see z_thread_stack_element
  49. */
  50. /**
  51. * @brief Properly align a CPU stack pointer value
  52. *
  53. * Take the provided value and round it down such that the value is aligned
  54. * to the CPU and ABI requirements. This is not used for any memory protection
  55. * hardware requirements.
  56. *
  57. * @param ptr Proposed stack pointer address
  58. * @return Properly aligned stack pointer address
  59. */
  60. static inline char *z_stack_ptr_align(char *ptr)
  61. {
  62. return (char *)ROUND_DOWN(ptr, ARCH_STACK_PTR_ALIGN);
  63. }
  64. #define Z_STACK_PTR_ALIGN(ptr) ((uintptr_t)z_stack_ptr_align((char *)(ptr)))
  65. /**
  66. * @brief Helper macro for getting a stack frame struct
  67. *
  68. * It is very common for architectures to define a struct which contains
  69. * all the data members that are pre-populated in arch_new_thread().
  70. *
  71. * Given a type and an initial stack pointer, return a properly cast
  72. * pointer to the frame struct.
  73. *
  74. * @param type Type of the initial stack frame struct
  75. * @param ptr Initial aligned stack pointer value
  76. * @return Pointer to stack frame struct within the stack buffer
  77. */
  78. #define Z_STACK_PTR_TO_FRAME(type, ptr) \
  79. (type *)((ptr) - sizeof(type))
  80. #ifdef ARCH_KERNEL_STACK_RESERVED
  81. #define K_KERNEL_STACK_RESERVED ((size_t)ARCH_KERNEL_STACK_RESERVED)
  82. #else
  83. #define K_KERNEL_STACK_RESERVED ((size_t)0)
  84. #endif
  85. #define Z_KERNEL_STACK_SIZE_ADJUST(size) (ROUND_UP(size, \
  86. ARCH_STACK_PTR_ALIGN) + \
  87. K_KERNEL_STACK_RESERVED)
  88. #ifdef ARCH_KERNEL_STACK_OBJ_ALIGN
  89. #define Z_KERNEL_STACK_OBJ_ALIGN ARCH_KERNEL_STACK_OBJ_ALIGN
  90. #else
  91. #define Z_KERNEL_STACK_OBJ_ALIGN ARCH_STACK_PTR_ALIGN
  92. #endif
  93. #define Z_KERNEL_STACK_LEN(size) \
  94. ROUND_UP(Z_KERNEL_STACK_SIZE_ADJUST(size), Z_KERNEL_STACK_OBJ_ALIGN)
  95. /**
  96. * @brief Obtain an extern reference to a stack
  97. *
  98. * This macro properly brings the symbol of a thread stack declared
  99. * elsewhere into scope.
  100. *
  101. * @param sym Thread stack symbol name
  102. */
  103. #define K_KERNEL_STACK_EXTERN(sym) extern k_thread_stack_t sym[]
  104. /**
  105. * @addtogroup thread_stack_api
  106. * @{
  107. */
  108. /**
  109. * @def K_KERNEL_STACK_ARRAY_EXTERN
  110. * @brief Obtain an extern reference to a stack array
  111. *
  112. * This macro properly brings the symbol of a stack array declared
  113. * elsewhere into scope.
  114. *
  115. * @param sym Thread stack symbol name
  116. * @param nmemb Number of stacks to declare
  117. * @param size Size of the stack memory region
  118. */
  119. #define K_KERNEL_STACK_ARRAY_EXTERN(sym, nmemb, size) \
  120. extern struct z_thread_stack_element \
  121. sym[nmemb][Z_KERNEL_STACK_LEN(size)]
  122. /**
  123. * @def K_KERNEL_PINNED_STACK_ARRAY_EXTERN
  124. * @brief Obtain an extern reference to a pinned stack array
  125. *
  126. * This macro properly brings the symbol of a pinned stack array
  127. * declared elsewhere into scope.
  128. *
  129. * @param sym Thread stack symbol name
  130. * @param nmemb Number of stacks to declare
  131. * @param size Size of the stack memory region
  132. */
  133. #define K_KERNEL_PINNED_STACK_ARRAY_EXTERN(sym, nmemb, size) \
  134. extern struct z_thread_stack_element \
  135. sym[nmemb][Z_KERNEL_STACK_LEN(size)]
  136. /**
  137. * @def Z_KERNEL_STACK_DEFINE_IN
  138. * @brief Define a toplevel kernel stack memory region in specified section
  139. *
  140. * This declares a region of memory for use as a thread stack in
  141. * the specified linker section.
  142. *
  143. * It is legal to precede this definition with the 'static' keyword.
  144. *
  145. * It is NOT legal to take the sizeof(sym) and pass that to the stackSize
  146. * parameter of k_thread_create(), it may not be the same as the
  147. * 'size' parameter. Use K_KERNEL_STACK_SIZEOF() instead.
  148. *
  149. * The total amount of memory allocated may be increased to accommodate
  150. * fixed-size stack overflow guards.
  151. *
  152. * @param sym Thread stack symbol name
  153. * @param size Size of the stack memory region
  154. * @param lsect Linker section for this stack
  155. */
  156. #define Z_KERNEL_STACK_DEFINE_IN(sym, size, lsect) \
  157. struct z_thread_stack_element lsect \
  158. __aligned(Z_KERNEL_STACK_OBJ_ALIGN) \
  159. sym[Z_KERNEL_STACK_SIZE_ADJUST(size)]
  160. /**
  161. * @def Z_KERNEL_STACK_ARRAY_DEFINE_IN
  162. * @brief Define a toplevel array of kernel stack memory regions in specified section
  163. *
  164. * @param sym Kernel stack array symbol name
  165. * @param nmemb Number of stacks to declare
  166. * @param size Size of the stack memory region
  167. * @param lsect Linker section for this array of stacks
  168. */
  169. #define Z_KERNEL_STACK_ARRAY_DEFINE_IN(sym, nmemb, size, lsect) \
  170. struct z_thread_stack_element lsect \
  171. __aligned(Z_KERNEL_STACK_OBJ_ALIGN) \
  172. sym[nmemb][Z_KERNEL_STACK_LEN(size)]
  173. /**
  174. * @def K_KERNEL_STACK_DEFINE
  175. * @brief Define a toplevel kernel stack memory region
  176. *
  177. * This declares a region of memory for use as a thread stack, for threads
  178. * that exclusively run in supervisor mode. This is also suitable for
  179. * declaring special stacks for interrupt or exception handling.
  180. *
  181. * Stacks declared with this macro may not host user mode threads.
  182. *
  183. * It is legal to precede this definition with the 'static' keyword.
  184. *
  185. * It is NOT legal to take the sizeof(sym) and pass that to the stackSize
  186. * parameter of k_thread_create(), it may not be the same as the
  187. * 'size' parameter. Use K_KERNEL_STACK_SIZEOF() instead.
  188. *
  189. * The total amount of memory allocated may be increased to accommodate
  190. * fixed-size stack overflow guards.
  191. *
  192. * @param sym Thread stack symbol name
  193. * @param size Size of the stack memory region
  194. */
  195. #define K_KERNEL_STACK_DEFINE(sym, size) \
  196. Z_KERNEL_STACK_DEFINE_IN(sym, size, __kstackmem)
  197. /**
  198. * @def K_KERNEL_PINNED_STACK_DEFINE
  199. * @brief Define a toplevel kernel stack memory region in pinned section
  200. *
  201. * See K_KERNEL_STACK_DEFINE() for more information and constraints.
  202. *
  203. * This puts the stack into the pinned noinit linker section if
  204. * CONFIG_LINKER_USE_PINNED_SECTION is enabled, or else it would
  205. * put the stack into the same section as K_KERNEL_STACK_DEFINE().
  206. *
  207. * @param sym Thread stack symbol name
  208. * @param size Size of the stack memory region
  209. */
  210. #if defined(CONFIG_LINKER_USE_PINNED_SECTION)
  211. #define K_KERNEL_PINNED_STACK_DEFINE(sym, size) \
  212. Z_KERNEL_STACK_DEFINE_IN(sym, size, __pinned_noinit)
  213. #else
  214. #define K_KERNEL_PINNED_STACK_DEFINE(sym, size) \
  215. Z_KERNEL_STACK_DEFINE_IN(sym, size, __kstackmem)
  216. #endif
  217. /**
  218. * @def K_KERNEL_STACK_ARRAY_DEFINE
  219. * @brief Define a toplevel array of kernel stack memory regions
  220. *
  221. * Stacks declared with this macro may not host user mode threads.
  222. *
  223. * @param sym Kernel stack array symbol name
  224. * @param nmemb Number of stacks to declare
  225. * @param size Size of the stack memory region
  226. */
  227. #define K_KERNEL_STACK_ARRAY_DEFINE(sym, nmemb, size) \
  228. Z_KERNEL_STACK_ARRAY_DEFINE_IN(sym, nmemb, size, __kstackmem)
  229. /**
  230. * @def K_KERNEL_PINNED_STACK_ARRAY_DEFINE
  231. * @brief Define a toplevel array of kernel stack memory regions in pinned section
  232. *
  233. * See K_KERNEL_STACK_ARRAY_DEFINE() for more information and constraints.
  234. *
  235. * This puts the stack into the pinned noinit linker section if
  236. * CONFIG_LINKER_USE_PINNED_SECTION is enabled, or else it would
  237. * put the stack into the same section as K_KERNEL_STACK_ARRAY_DEFINE().
  238. *
  239. * @param sym Kernel stack array symbol name
  240. * @param nmemb Number of stacks to declare
  241. * @param size Size of the stack memory region
  242. */
  243. #if defined(CONFIG_LINKER_USE_PINNED_SECTION)
  244. #define K_KERNEL_PINNED_STACK_ARRAY_DEFINE(sym, nmemb, size) \
  245. Z_KERNEL_STACK_ARRAY_DEFINE_IN(sym, nmemb, size, __pinned_noinit)
  246. #else
  247. #define K_KERNEL_PINNED_STACK_ARRAY_DEFINE(sym, nmemb, size) \
  248. Z_KERNEL_STACK_ARRAY_DEFINE_IN(sym, nmemb, size, __kstackmem)
  249. #endif
  250. /**
  251. * @def K_KERNEL_STACK_MEMBER
  252. * @brief Declare an embedded stack memory region
  253. *
  254. * Used for kernel stacks embedded within other data structures.
  255. *
  256. * Stacks declared with this macro may not host user mode threads.
  257. * @param sym Thread stack symbol name
  258. * @param size Size of the stack memory region
  259. */
  260. #define K_KERNEL_STACK_MEMBER(sym, size) \
  261. Z_KERNEL_STACK_DEFINE_IN(sym, size,)
  262. #define K_KERNEL_STACK_SIZEOF(sym) (sizeof(sym) - K_KERNEL_STACK_RESERVED)
  263. /** @} */
  264. static inline char *Z_KERNEL_STACK_BUFFER(k_thread_stack_t *sym)
  265. {
  266. return (char *)sym + K_KERNEL_STACK_RESERVED;
  267. }
  268. #ifndef CONFIG_USERSPACE
  269. #define K_THREAD_STACK_RESERVED K_KERNEL_STACK_RESERVED
  270. #define K_THREAD_STACK_SIZEOF K_KERNEL_STACK_SIZEOF
  271. #define K_THREAD_STACK_LEN Z_KERNEL_STACK_LEN
  272. #define K_THREAD_STACK_DEFINE K_KERNEL_STACK_DEFINE
  273. #define K_THREAD_STACK_ARRAY_DEFINE K_KERNEL_STACK_ARRAY_DEFINE
  274. #define K_THREAD_STACK_MEMBER K_KERNEL_STACK_MEMBER
  275. #define Z_THREAD_STACK_BUFFER Z_KERNEL_STACK_BUFFER
  276. #define K_THREAD_STACK_EXTERN K_KERNEL_STACK_EXTERN
  277. #define K_THREAD_STACK_ARRAY_EXTERN K_KERNEL_STACK_ARRAY_EXTERN
  278. #define K_THREAD_PINNED_STACK_DEFINE K_KERNEL_PINNED_STACK_DEFINE
  279. #define K_THREAD_PINNED_STACK_ARRAY_DEFINE \
  280. K_KERNEL_PINNED_STACK_ARRAY_DEFINE
  281. #else
  282. /**
  283. * @def K_THREAD_STACK_RESERVED
  284. * @brief Indicate how much additional memory is reserved for stack objects
  285. *
  286. * Any given stack declaration may have additional memory in it for guard
  287. * areas, supervisor mode stacks, or platform-specific data. This macro
  288. * indicates how much space is reserved for this.
  289. *
  290. * This value only indicates memory that is permanently reserved in the stack
  291. * object. Memory that is "borrowed" from the thread's stack buffer is never
  292. * accounted for here.
  293. *
  294. * Reserved memory is at the beginning of the stack object. The reserved area
  295. * must be appropriately sized such that the stack buffer immediately following
  296. * it is correctly aligned.
  297. */
  298. #ifdef ARCH_THREAD_STACK_RESERVED
  299. #define K_THREAD_STACK_RESERVED ((size_t)(ARCH_THREAD_STACK_RESERVED))
  300. #else
  301. #define K_THREAD_STACK_RESERVED ((size_t)0U)
  302. #endif
  303. /**
  304. * @brief Properly align the lowest address of a stack object
  305. *
  306. * Return an alignment value for the lowest address of a stack object, taking
  307. * into consideration all alignment constraints imposed by the CPU, ABI, and
  308. * any memory management policies, including any alignment required by
  309. * reserved platform data within the stack object. This will always be at least
  310. * ARCH_STACK_PTR_ALIGN or an even multiple thereof.
  311. *
  312. * Depending on hardware, this is either a fixed value or a function of the
  313. * provided size. The requested size is significant only if
  314. * CONFIG_MPU_REQUIRES_POWER_OF_TWO_ALIGNMENT is enabled.
  315. *
  316. * If CONFIG_USERSPACE is enabled, this determines the alignment of stacks
  317. * which may be used by user mode threads, or threads running in supervisor
  318. * mode which may later drop privileges to user mode.
  319. *
  320. * Arches define this with ARCH_THREAD_STACK_OBJ_ALIGN().
  321. *
  322. * If ARCH_THREAD_STACK_OBJ_ALIGN is not defined assume ARCH_STACK_PTR_ALIGN
  323. * is appropriate.
  324. *
  325. * @param size Requested size of the stack buffer (which could be ignored)
  326. * @return Alignment of the stack object
  327. */
  328. #if defined(ARCH_THREAD_STACK_OBJ_ALIGN)
  329. #define Z_THREAD_STACK_OBJ_ALIGN(size) ARCH_THREAD_STACK_OBJ_ALIGN(size)
  330. #else
  331. #define Z_THREAD_STACK_OBJ_ALIGN(size) ARCH_STACK_PTR_ALIGN
  332. #endif /* ARCH_THREAD_STACK_OBJ_ALIGN */
  333. /**
  334. * @def Z_THREAD_STACK_SIZE_ADJUST
  335. * @brief Round up a requested stack size to satisfy constraints
  336. *
  337. * Given a requested stack buffer size, return an adjusted size value for
  338. * the entire stack object which takes into consideration:
  339. *
  340. * - Reserved memory for platform data
  341. * - Alignment of stack buffer bounds to CPU/ABI constraints
  342. * - Alignment of stack buffer bounds to satisfy memory management hardware
  343. * constraints such that a protection region can cover the stack buffer area
  344. *
  345. * If CONFIG_USERSPACE is enabled, this determines the size of stack objects
  346. * which may be used by user mode threads, or threads running in supervisor
  347. * mode which may later drop privileges to user mode.
  348. *
  349. * Arches define this with ARCH_THREAD_STACK_SIZE_ADJUST().
  350. *
  351. * If ARCH_THREAD_STACK_SIZE_ADJUST is not defined, assume rounding up to
  352. * ARCH_STACK_PTR_ALIGN is appropriate.
  353. *
  354. * Any memory reserved for platform data is also included in the total
  355. * returned.
  356. *
  357. * @param size Requested size of the stack buffer
  358. * @return Adjusted size of the stack object
  359. */
  360. #if defined(ARCH_THREAD_STACK_SIZE_ADJUST)
  361. #define Z_THREAD_STACK_SIZE_ADJUST(size) \
  362. (ARCH_THREAD_STACK_SIZE_ADJUST(size) + K_THREAD_STACK_RESERVED)
  363. #else
  364. #define Z_THREAD_STACK_SIZE_ADJUST(size) \
  365. (ROUND_UP((size), ARCH_STACK_PTR_ALIGN) + K_THREAD_STACK_RESERVED)
  366. #endif /* ARCH_THREAD_STACK_SIZE_ADJUST */
  367. /**
  368. * @brief Obtain an extern reference to a stack
  369. *
  370. * This macro properly brings the symbol of a thread stack declared
  371. * elsewhere into scope.
  372. *
  373. * @param sym Thread stack symbol name
  374. */
  375. #define K_THREAD_STACK_EXTERN(sym) extern k_thread_stack_t sym[]
  376. /**
  377. * @brief Obtain an extern reference to a thread stack array
  378. *
  379. * This macro properly brings the symbol of a stack array declared
  380. * elsewhere into scope.
  381. *
  382. * @param sym Thread stack symbol name
  383. * @param nmemb Number of stacks to declare
  384. * @param size Size of the stack memory region
  385. */
  386. #define K_THREAD_STACK_ARRAY_EXTERN(sym, nmemb, size) \
  387. extern struct z_thread_stack_element \
  388. sym[nmemb][K_THREAD_STACK_LEN(size)]
  389. /**
  390. * @addtogroup thread_stack_api
  391. * @{
  392. */
  393. /**
  394. * @brief Return the size in bytes of a stack memory region
  395. *
  396. * Convenience macro for passing the desired stack size to k_thread_create()
  397. * since the underlying implementation may actually create something larger
  398. * (for instance a guard area).
  399. *
  400. * The value returned here is not guaranteed to match the 'size' parameter
  401. * passed to K_THREAD_STACK_DEFINE and may be larger, but is always safe to
  402. * pass to k_thread_create() for the associated stack object.
  403. *
  404. * @param sym Stack memory symbol
  405. * @return Size of the stack buffer
  406. */
  407. #define K_THREAD_STACK_SIZEOF(sym) (sizeof(sym) - K_THREAD_STACK_RESERVED)
  408. /**
  409. * @brief Declare a toplevel thread stack memory region in specified region
  410. *
  411. * This declares a region of memory suitable for use as a thread's stack
  412. * in specified region.
  413. *
  414. * This is the generic, historical definition. Align to Z_THREAD_STACK_OBJ_ALIGN
  415. * and put in 'noinit' section so that it isn't zeroed at boot
  416. *
  417. * The declared symbol will always be a k_thread_stack_t which can be passed to
  418. * k_thread_create(), but should otherwise not be manipulated. If the buffer
  419. * inside needs to be examined, examine thread->stack_info for the associated
  420. * thread object to obtain the boundaries.
  421. *
  422. * It is legal to precede this definition with the 'static' keyword.
  423. *
  424. * It is NOT legal to take the sizeof(sym) and pass that to the stackSize
  425. * parameter of k_thread_create(), it may not be the same as the
  426. * 'size' parameter. Use K_THREAD_STACK_SIZEOF() instead.
  427. *
  428. * Some arches may round the size of the usable stack region up to satisfy
  429. * alignment constraints. K_THREAD_STACK_SIZEOF() will return the aligned
  430. * size.
  431. *
  432. * @param sym Thread stack symbol name
  433. * @param size Size of the stack memory region
  434. * @param lsect Linker section for this stack
  435. */
  436. #define Z_THREAD_STACK_DEFINE_IN(sym, size, lsect) \
  437. struct z_thread_stack_element lsect \
  438. __aligned(Z_THREAD_STACK_OBJ_ALIGN(size)) \
  439. sym[Z_THREAD_STACK_SIZE_ADJUST(size)]
  440. /**
  441. * @brief Declare a toplevel array of thread stack memory regions in specified region
  442. *
  443. * Create an array of equally sized stacks. See Z_THREAD_STACK_DEFINE_IN
  444. * definition for additional details and constraints.
  445. *
  446. * This is the generic, historical definition. Align to Z_THREAD_STACK_OBJ_ALIGN
  447. * and put in specified section so that it isn't zeroed at boot
  448. *
  449. * @param sym Thread stack symbol name
  450. * @param nmemb Number of stacks to declare
  451. * @param size Size of the stack memory region
  452. * @param lsect Linker section for this stack
  453. */
  454. #define Z_THREAD_STACK_ARRAY_DEFINE_IN(sym, nmemb, size, lsect) \
  455. struct z_thread_stack_element lsect \
  456. __aligned(Z_THREAD_STACK_OBJ_ALIGN(size)) \
  457. sym[nmemb][K_THREAD_STACK_LEN(size)]
  458. /**
  459. * @brief Declare a toplevel thread stack memory region
  460. *
  461. * This declares a region of memory suitable for use as a thread's stack.
  462. *
  463. * This is the generic, historical definition. Align to Z_THREAD_STACK_OBJ_ALIGN
  464. * and put in 'noinit' section so that it isn't zeroed at boot
  465. *
  466. * The declared symbol will always be a k_thread_stack_t which can be passed to
  467. * k_thread_create(), but should otherwise not be manipulated. If the buffer
  468. * inside needs to be examined, examine thread->stack_info for the associated
  469. * thread object to obtain the boundaries.
  470. *
  471. * It is legal to precede this definition with the 'static' keyword.
  472. *
  473. * It is NOT legal to take the sizeof(sym) and pass that to the stackSize
  474. * parameter of k_thread_create(), it may not be the same as the
  475. * 'size' parameter. Use K_THREAD_STACK_SIZEOF() instead.
  476. *
  477. * Some arches may round the size of the usable stack region up to satisfy
  478. * alignment constraints. K_THREAD_STACK_SIZEOF() will return the aligned
  479. * size.
  480. *
  481. * @param sym Thread stack symbol name
  482. * @param size Size of the stack memory region
  483. */
  484. #define K_THREAD_STACK_DEFINE(sym, size) \
  485. Z_THREAD_STACK_DEFINE_IN(sym, size, __stackmem)
  486. /**
  487. * @brief Define a toplevel thread stack memory region in pinned section
  488. *
  489. * This declares a region of memory suitable for use as a thread's stack.
  490. *
  491. * This is the generic, historical definition. Align to Z_THREAD_STACK_OBJ_ALIGN
  492. * and put in 'noinit' section so that it isn't zeroed at boot
  493. *
  494. * The declared symbol will always be a k_thread_stack_t which can be passed to
  495. * k_thread_create(), but should otherwise not be manipulated. If the buffer
  496. * inside needs to be examined, examine thread->stack_info for the associated
  497. * thread object to obtain the boundaries.
  498. *
  499. * It is legal to precede this definition with the 'static' keyword.
  500. *
  501. * It is NOT legal to take the sizeof(sym) and pass that to the stackSize
  502. * parameter of k_thread_create(), it may not be the same as the
  503. * 'size' parameter. Use K_THREAD_STACK_SIZEOF() instead.
  504. *
  505. * Some arches may round the size of the usable stack region up to satisfy
  506. * alignment constraints. K_THREAD_STACK_SIZEOF() will return the aligned
  507. * size.
  508. *
  509. * This puts the stack into the pinned noinit linker section if
  510. * CONFIG_LINKER_USE_PINNED_SECTION is enabled, or else it would
  511. * put the stack into the same section as K_THREAD_STACK_DEFINE().
  512. *
  513. * @param sym Thread stack symbol name
  514. * @param size Size of the stack memory region
  515. */
  516. #if defined(CONFIG_LINKER_USE_PINNED_SECTION)
  517. #define K_THREAD_PINNED_STACK_DEFINE(sym, size) \
  518. Z_THREAD_STACK_DEFINE_IN(sym, size, __pinned_noinit)
  519. #else
  520. #define K_THREAD_PINNED_STACK_DEFINE(sym, size) \
  521. K_THREAD_STACK_DEFINE(sym, size)
  522. #endif
  523. /**
  524. * @brief Calculate size of stacks to be allocated in a stack array
  525. *
  526. * This macro calculates the size to be allocated for the stacks
  527. * inside a stack array. It accepts the indicated "size" as a parameter
  528. * and if required, pads some extra bytes (e.g. for MPU scenarios). Refer
  529. * K_THREAD_STACK_ARRAY_DEFINE definition to see how this is used.
  530. * The returned size ensures each array member will be aligned to the
  531. * required stack base alignment.
  532. *
  533. * @param size Size of the stack memory region
  534. * @return Appropriate size for an array member
  535. */
  536. #define K_THREAD_STACK_LEN(size) \
  537. ROUND_UP(Z_THREAD_STACK_SIZE_ADJUST(size), \
  538. Z_THREAD_STACK_OBJ_ALIGN(Z_THREAD_STACK_SIZE_ADJUST(size)))
  539. /**
  540. * @brief Declare a toplevel array of thread stack memory regions
  541. *
  542. * Create an array of equally sized stacks. See K_THREAD_STACK_DEFINE
  543. * definition for additional details and constraints.
  544. *
  545. * This is the generic, historical definition. Align to Z_THREAD_STACK_OBJ_ALIGN
  546. * and put in 'noinit' section so that it isn't zeroed at boot
  547. *
  548. * @param sym Thread stack symbol name
  549. * @param nmemb Number of stacks to declare
  550. * @param size Size of the stack memory region
  551. */
  552. #define K_THREAD_STACK_ARRAY_DEFINE(sym, nmemb, size) \
  553. Z_THREAD_STACK_ARRAY_DEFINE_IN(sym, nmemb, size, __stackmem)
  554. /**
  555. * @brief Declare a toplevel array of thread stack memory regions in pinned section
  556. *
  557. * Create an array of equally sized stacks. See K_THREAD_STACK_DEFINE
  558. * definition for additional details and constraints.
  559. *
  560. * This is the generic, historical definition. Align to Z_THREAD_STACK_OBJ_ALIGN
  561. * and put in 'noinit' section so that it isn't zeroed at boot
  562. *
  563. * This puts the stack into the pinned noinit linker section if
  564. * CONFIG_LINKER_USE_PINNED_SECTION is enabled, or else it would
  565. * put the stack into the same section as K_THREAD_STACK_DEFINE().
  566. *
  567. * @param sym Thread stack symbol name
  568. * @param nmemb Number of stacks to declare
  569. * @param size Size of the stack memory region
  570. */
  571. #if defined(CONFIG_LINKER_USE_PINNED_SECTION)
  572. #define K_THREAD_PINNED_STACK_ARRAY_DEFINE(sym, nmemb, size) \
  573. Z_THREAD_PINNED_STACK_DEFINE_IN(sym, nmemb, size, __pinned_noinit)
  574. #else
  575. #define K_THREAD_PINNED_STACK_ARRAY_DEFINE(sym, nmemb, size) \
  576. K_THREAD_STACK_ARRAY_DEFINE(sym, nmemb, size)
  577. #endif
  578. /**
  579. * @brief Declare an embedded stack memory region
  580. *
  581. * Used for stacks embedded within other data structures. Use is highly
  582. * discouraged but in some cases necessary. For memory protection scenarios,
  583. * it is very important that any RAM preceding this member not be writable
  584. * by threads else a stack overflow will lead to silent corruption. In other
  585. * words, the containing data structure should live in RAM owned by the kernel.
  586. *
  587. * A user thread can only be started with a stack defined in this way if
  588. * the thread starting it is in supervisor mode.
  589. *
  590. * This is now deprecated, as stacks defined in this way are not usable from
  591. * user mode. Use K_KERNEL_STACK_MEMBER.
  592. *
  593. * @param sym Thread stack symbol name
  594. * @param size Size of the stack memory region
  595. */
  596. #define K_THREAD_STACK_MEMBER(sym, size) \
  597. Z_THREAD_STACK_DEFINE_IN(sym, size,)
  598. /** @} */
  599. /**
  600. * @brief Get a pointer to the physical stack buffer
  601. *
  602. * Obtain a pointer to the non-reserved area of a stack object.
  603. * This is not guaranteed to be the beginning of the thread-writable region;
  604. * this does not account for any memory carved-out for MPU stack overflow
  605. * guards.
  606. *
  607. * Use with care. The true bounds of the stack buffer are available in the
  608. * stack_info member of its associated thread.
  609. *
  610. * @param sym Declared stack symbol name
  611. * @return The buffer itself, a char *
  612. */
  613. static inline char *Z_THREAD_STACK_BUFFER(k_thread_stack_t *sym)
  614. {
  615. return (char *)sym + K_THREAD_STACK_RESERVED;
  616. }
  617. #endif /* CONFIG_USERSPACE */
  618. #ifdef __cplusplus
  619. }
  620. #endif
  621. #endif /* _ASMLANGUAGE */
  622. #endif /* ZEPHYR_INCLUDE_SYS_THREAD_STACK_H */