thread.h 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301
  1. /*
  2. * Copyright (c) 2016, Wind River Systems, Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_KERNEL_THREAD_H_
  7. #define ZEPHYR_INCLUDE_KERNEL_THREAD_H_
  8. #ifdef CONFIG_DEMAND_PAGING_THREAD_STATS
  9. #include <sys/mem_manage.h>
  10. #endif
  11. /**
  12. * @typedef k_thread_entry_t
  13. * @brief Thread entry point function type.
  14. *
  15. * A thread's entry point function is invoked when the thread starts executing.
  16. * Up to 3 argument values can be passed to the function.
  17. *
  18. * The thread terminates execution permanently if the entry point function
  19. * returns. The thread is responsible for releasing any shared resources
  20. * it may own (such as mutexes and dynamically allocated memory), prior to
  21. * returning.
  22. *
  23. * @param p1 First argument.
  24. * @param p2 Second argument.
  25. * @param p3 Third argument.
  26. *
  27. * @return N/A
  28. */
  29. #ifdef CONFIG_THREAD_MONITOR
  30. struct __thread_entry {
  31. k_thread_entry_t pEntry;
  32. void *parameter1;
  33. void *parameter2;
  34. void *parameter3;
  35. };
  36. #endif
  37. /* can be used for creating 'dummy' threads, e.g. for pending on objects */
  38. struct _thread_base {
  39. /* this thread's entry in a ready/wait queue */
  40. union {
  41. sys_dnode_t qnode_dlist;
  42. struct rbnode qnode_rb;
  43. };
  44. /* wait queue on which the thread is pended (needed only for
  45. * trees, not dumb lists)
  46. */
  47. _wait_q_t *pended_on;
  48. /* user facing 'thread options'; values defined in include/kernel.h */
  49. uint8_t user_options;
  50. /* thread state */
  51. uint8_t thread_state;
  52. /*
  53. * scheduler lock count and thread priority
  54. *
  55. * These two fields control the preemptibility of a thread.
  56. *
  57. * When the scheduler is locked, sched_locked is decremented, which
  58. * means that the scheduler is locked for values from 0xff to 0x01. A
  59. * thread is coop if its prio is negative, thus 0x80 to 0xff when
  60. * looked at the value as unsigned.
  61. *
  62. * By putting them end-to-end, this means that a thread is
  63. * non-preemptible if the bundled value is greater than or equal to
  64. * 0x0080.
  65. */
  66. union {
  67. struct {
  68. #if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
  69. uint8_t sched_locked;
  70. int8_t prio;
  71. #else /* LITTLE and PDP */
  72. int8_t prio;
  73. uint8_t sched_locked;
  74. #endif
  75. };
  76. uint16_t preempt;
  77. };
  78. #ifdef CONFIG_SCHED_DEADLINE
  79. int prio_deadline;
  80. #endif
  81. uint32_t order_key;
  82. #ifdef CONFIG_SMP
  83. /* True for the per-CPU idle threads */
  84. uint8_t is_idle;
  85. /* CPU index on which thread was last run */
  86. uint8_t cpu;
  87. /* Recursive count of irq_lock() calls */
  88. uint8_t global_lock_count;
  89. #endif
  90. #ifdef CONFIG_SCHED_CPU_MASK
  91. /* "May run on" bits for each CPU */
  92. uint8_t cpu_mask;
  93. #endif
  94. /* data returned by APIs */
  95. void *swap_data;
  96. #ifdef CONFIG_SYS_CLOCK_EXISTS
  97. /* this thread's entry in a timeout queue */
  98. struct _timeout timeout;
  99. #endif
  100. };
  101. typedef struct _thread_base _thread_base_t;
  102. #if defined(CONFIG_THREAD_STACK_INFO)
  103. /* Contains the stack information of a thread */
  104. struct _thread_stack_info {
  105. /* Stack start - Represents the start address of the thread-writable
  106. * stack area.
  107. */
  108. uintptr_t start;
  109. /* Thread writable stack buffer size. Represents the size of the actual
  110. * buffer, starting from the 'start' member, that should be writable by
  111. * the thread. This comprises of the thread stack area, any area reserved
  112. * for local thread data storage, as well as any area left-out due to
  113. * random adjustments applied to the initial thread stack pointer during
  114. * thread initialization.
  115. */
  116. size_t size;
  117. /* Adjustment value to the size member, removing any storage
  118. * used for TLS or random stack base offsets. (start + size - delta)
  119. * is the initial stack pointer for a thread. May be 0.
  120. */
  121. size_t delta;
  122. };
  123. typedef struct _thread_stack_info _thread_stack_info_t;
  124. #endif /* CONFIG_THREAD_STACK_INFO */
  125. #if defined(CONFIG_USERSPACE)
  126. struct _mem_domain_info {
  127. /** memory domain queue node */
  128. sys_dnode_t mem_domain_q_node;
  129. /** memory domain of the thread */
  130. struct k_mem_domain *mem_domain;
  131. };
  132. #endif /* CONFIG_USERSPACE */
  133. #ifdef CONFIG_THREAD_USERSPACE_LOCAL_DATA
  134. struct _thread_userspace_local_data {
  135. #if defined(CONFIG_ERRNO) && !defined(CONFIG_ERRNO_IN_TLS)
  136. int errno_var;
  137. #endif
  138. };
  139. #endif
  140. #ifdef CONFIG_THREAD_RUNTIME_STATS
  141. struct k_thread_runtime_stats {
  142. /* Thread execution cycles */
  143. #ifdef CONFIG_THREAD_RUNTIME_STATS_USE_TIMING_FUNCTIONS
  144. timing_t execution_cycles;
  145. #else
  146. uint64_t execution_cycles;
  147. #endif
  148. };
  149. typedef struct k_thread_runtime_stats k_thread_runtime_stats_t;
  150. struct _thread_runtime_stats {
  151. /* Timestamp when last switched in */
  152. #ifdef CONFIG_THREAD_RUNTIME_STATS_USE_TIMING_FUNCTIONS
  153. timing_t last_switched_in;
  154. #else
  155. uint32_t last_switched_in;
  156. #endif
  157. k_thread_runtime_stats_t stats;
  158. };
  159. #endif
  160. struct z_poller {
  161. bool is_polling;
  162. uint8_t mode;
  163. };
  164. /**
  165. * @ingroup thread_apis
  166. * Thread Structure
  167. */
  168. struct k_thread {
  169. struct _thread_base base;
  170. /** defined by the architecture, but all archs need these */
  171. struct _callee_saved callee_saved;
  172. /** static thread init data */
  173. void *init_data;
  174. /** threads waiting in k_thread_join() */
  175. _wait_q_t join_queue;
  176. #if defined(CONFIG_POLL)
  177. struct z_poller poller;
  178. #endif
  179. #if defined(CONFIG_THREAD_MONITOR)
  180. /** thread entry and parameters description */
  181. struct __thread_entry entry;
  182. /** next item in list of all threads */
  183. struct k_thread *next_thread;
  184. #endif
  185. #if defined(CONFIG_THREAD_NAME)
  186. /** Thread name */
  187. char name[CONFIG_THREAD_MAX_NAME_LEN];
  188. #endif
  189. #ifdef CONFIG_THREAD_CUSTOM_DATA
  190. /** crude thread-local storage */
  191. void *custom_data;
  192. #endif
  193. #ifdef CONFIG_THREAD_USERSPACE_LOCAL_DATA
  194. struct _thread_userspace_local_data *userspace_local_data;
  195. #endif
  196. #if defined(CONFIG_ERRNO) && !defined(CONFIG_ERRNO_IN_TLS)
  197. #ifndef CONFIG_USERSPACE
  198. /** per-thread errno variable */
  199. int errno_var;
  200. #endif
  201. #endif
  202. #if defined(CONFIG_THREAD_STACK_INFO)
  203. /** Stack Info */
  204. struct _thread_stack_info stack_info;
  205. #endif /* CONFIG_THREAD_STACK_INFO */
  206. #if defined(CONFIG_USERSPACE)
  207. /** memory domain info of the thread */
  208. struct _mem_domain_info mem_domain_info;
  209. /** Base address of thread stack */
  210. k_thread_stack_t *stack_obj;
  211. /** current syscall frame pointer */
  212. void *syscall_frame;
  213. #endif /* CONFIG_USERSPACE */
  214. #if defined(CONFIG_THREAD_TIMER)
  215. sys_dlist_t thread_timer_q;
  216. #endif
  217. #if defined(CONFIG_USE_SWITCH)
  218. /* When using __switch() a few previously arch-specific items
  219. * become part of the core OS
  220. */
  221. /** z_swap() return value */
  222. int swap_retval;
  223. /** Context handle returned via arch_switch() */
  224. void *switch_handle;
  225. #endif
  226. /** resource pool */
  227. struct k_heap *resource_pool;
  228. #if defined(CONFIG_THREAD_LOCAL_STORAGE)
  229. /* Pointer to arch-specific TLS area */
  230. uintptr_t tls;
  231. #endif /* CONFIG_THREAD_LOCAL_STORAGE */
  232. #ifdef CONFIG_THREAD_RUNTIME_STATS
  233. /** Runtime statistics */
  234. struct _thread_runtime_stats rt_stats;
  235. #endif
  236. #ifdef CONFIG_DEMAND_PAGING_THREAD_STATS
  237. /** Paging statistics */
  238. struct k_mem_paging_stats_t paging_stats;
  239. #endif
  240. /** arch-specifics: must always be at the end */
  241. struct _thread_arch arch;
  242. };
  243. typedef struct k_thread _thread_t;
  244. typedef struct k_thread *k_tid_t;
  245. #endif