kernel_structs.h 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  1. /*
  2. * Copyright (c) 2016 Wind River Systems, Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /*
  7. * The purpose of this file is to provide essential/minimal kernel structure
  8. * definitions, so that they can be used without including kernel.h.
  9. *
  10. * The following rules must be observed:
  11. * 1. kernel_structs.h shall not depend on kernel.h both directly and
  12. * indirectly (i.e. it shall not include any header files that include
  13. * kernel.h in their dependency chain).
  14. * 2. kernel.h shall imply kernel_structs.h, such that it shall not be
  15. * necessary to include kernel_structs.h explicitly when kernel.h is
  16. * included.
  17. */
  18. #ifndef ZEPHYR_KERNEL_INCLUDE_KERNEL_STRUCTS_H_
  19. #define ZEPHYR_KERNEL_INCLUDE_KERNEL_STRUCTS_H_
  20. #if !defined(_ASMLANGUAGE)
  21. #include <sys/atomic.h>
  22. #include <zephyr/types.h>
  23. #include <kernel/sched_priq.h>
  24. #include <sys/dlist.h>
  25. #include <sys/util.h>
  26. #include <sys/sys_heap.h>
  27. #include <arch/structs.h>
  28. #endif
  29. #ifdef __cplusplus
  30. extern "C" {
  31. #endif
  32. /*
  33. * Bitmask definitions for the struct k_thread.thread_state field.
  34. *
  35. * Must be before kerneL_arch_data.h because it might need them to be already
  36. * defined.
  37. */
  38. /* states: common uses low bits, arch-specific use high bits */
  39. /* Not a real thread */
  40. #define _THREAD_DUMMY (BIT(0))
  41. /* Thread is waiting on an object */
  42. #define _THREAD_PENDING (BIT(1))
  43. /* Thread has not yet started */
  44. #define _THREAD_PRESTART (BIT(2))
  45. /* Thread has terminated */
  46. #define _THREAD_DEAD (BIT(3))
  47. /* Thread is suspended */
  48. #define _THREAD_SUSPENDED (BIT(4))
  49. /* Thread is being aborted */
  50. #define _THREAD_ABORTING (BIT(5))
  51. /* Thread is present in the ready queue */
  52. #define _THREAD_QUEUED (BIT(7))
  53. /* end - states */
  54. #ifdef CONFIG_STACK_SENTINEL
  55. /* Magic value in lowest bytes of the stack */
  56. #define STACK_SENTINEL 0xF0F0F0F0
  57. #endif
  58. /* lowest value of _thread_base.preempt at which a thread is non-preemptible */
  59. #define _NON_PREEMPT_THRESHOLD 0x0080U
  60. /* highest value of _thread_base.preempt at which a thread is preemptible */
  61. #define _PREEMPT_THRESHOLD (_NON_PREEMPT_THRESHOLD - 1U)
  62. #if !defined(_ASMLANGUAGE)
  63. struct _ready_q {
  64. #ifndef CONFIG_SMP
  65. /* always contains next thread to run: cannot be NULL */
  66. struct k_thread *cache;
  67. #endif
  68. #if defined(CONFIG_SCHED_DUMB)
  69. sys_dlist_t runq;
  70. #elif defined(CONFIG_SCHED_SCALABLE)
  71. struct _priq_rb runq;
  72. #elif defined(CONFIG_SCHED_MULTIQ)
  73. struct _priq_mq runq;
  74. #endif
  75. };
  76. typedef struct _ready_q _ready_q_t;
  77. struct _cpu {
  78. /* nested interrupt count */
  79. uint32_t nested;
  80. /* interrupt stack pointer base */
  81. char *irq_stack;
  82. /* currently scheduled thread */
  83. struct k_thread *current;
  84. /* one assigned idle thread per CPU */
  85. struct k_thread *idle_thread;
  86. #if (CONFIG_NUM_METAIRQ_PRIORITIES > 0) && (CONFIG_NUM_COOP_PRIORITIES > 0)
  87. /* Coop thread preempted by current metairq, or NULL */
  88. struct k_thread *metairq_preempted;
  89. #endif
  90. #ifdef CONFIG_TIMESLICING
  91. /* number of ticks remaining in current time slice */
  92. int slice_ticks;
  93. #endif
  94. uint8_t id;
  95. #ifdef CONFIG_SMP
  96. /* True when _current is allowed to context switch */
  97. uint8_t swap_ok;
  98. #endif
  99. /* Per CPU architecture specifics */
  100. struct _cpu_arch arch;
  101. };
  102. typedef struct _cpu _cpu_t;
  103. struct z_kernel {
  104. struct _cpu cpus[CONFIG_MP_NUM_CPUS];
  105. #ifdef CONFIG_PM
  106. int32_t idle; /* Number of ticks for kernel idling */
  107. #endif
  108. /*
  109. * ready queue: can be big, keep after small fields, since some
  110. * assembly (e.g. ARC) are limited in the encoding of the offset
  111. */
  112. struct _ready_q ready_q;
  113. #ifdef CONFIG_FPU_SHARING
  114. /*
  115. * A 'current_sse' field does not exist in addition to the 'current_fp'
  116. * field since it's not possible to divide the IA-32 non-integer
  117. * registers into 2 distinct blocks owned by differing threads. In
  118. * other words, given that the 'fxnsave/fxrstor' instructions
  119. * save/restore both the X87 FPU and XMM registers, it's not possible
  120. * for a thread to only "own" the XMM registers.
  121. */
  122. /* thread that owns the FP regs */
  123. struct k_thread *current_fp;
  124. #endif
  125. #if defined(CONFIG_THREAD_MONITOR)
  126. struct k_thread *threads; /* singly linked list of ALL threads */
  127. #endif
  128. };
  129. typedef struct z_kernel _kernel_t;
  130. extern struct z_kernel _kernel;
  131. #ifdef CONFIG_SMP
  132. /* True if the current context can be preempted and migrated to
  133. * another SMP CPU.
  134. */
  135. bool z_smp_cpu_mobile(void);
  136. #define _current_cpu ({ __ASSERT_NO_MSG(!z_smp_cpu_mobile()); \
  137. arch_curr_cpu(); })
  138. #define _current z_current_get()
  139. #else
  140. #define _current_cpu (&_kernel.cpus[0])
  141. #define _current _kernel.cpus[0].current
  142. #endif
  143. /* kernel wait queue record */
  144. #ifdef CONFIG_WAITQ_SCALABLE
  145. typedef struct {
  146. struct _priq_rb waitq;
  147. } _wait_q_t;
  148. extern bool z_priq_rb_lessthan(struct rbnode *a, struct rbnode *b);
  149. #define Z_WAIT_Q_INIT(wait_q) { { { .lessthan_fn = z_priq_rb_lessthan } } }
  150. #else
  151. typedef struct {
  152. sys_dlist_t waitq;
  153. } _wait_q_t;
  154. #define Z_WAIT_Q_INIT(wait_q) { SYS_DLIST_STATIC_INIT(&(wait_q)->waitq) }
  155. #endif
  156. /* kernel timeout record */
  157. struct _timeout;
  158. typedef void (*_timeout_func_t)(struct _timeout *t);
  159. struct _timeout {
  160. sys_dnode_t node;
  161. _timeout_func_t fn;
  162. #ifdef CONFIG_TIMEOUT_64BIT
  163. /* Can't use k_ticks_t for header dependency reasons */
  164. int64_t dticks;
  165. #else
  166. int32_t dticks;
  167. #endif
  168. };
  169. #ifdef __cplusplus
  170. }
  171. #endif
  172. #endif /* _ASMLANGUAGE */
  173. #endif /* ZEPHYR_KERNEL_INCLUDE_KERNEL_STRUCTS_H_ */