6#ifndef ZEPHYR_INCLUDE_SYS_P4WQ_H_
7#define ZEPHYR_INCLUDE_SYS_P4WQ_H_
53#define K_P4WQ_QUEUE_PER_THREAD BIT(0)
54#define K_P4WQ_DELAYED_START BIT(1)
55#define K_P4WQ_USER_CPU_MASK BIT(2)
96 struct z_thread_stack_element *
stacks;
113#define K_P4WQ_DEFINE_WITH_DONE_HANDLER(name, n_threads, stack_sz, dn_handler) \
114 static K_THREAD_STACK_ARRAY_DEFINE(_p4stacks_##name, \
115 n_threads, stack_sz); \
116 static struct k_thread _p4threads_##name[n_threads]; \
117 static struct k_p4wq name; \
118 static const STRUCT_SECTION_ITERABLE(k_p4wq_initparam, \
121 .stack_size = stack_sz, \
122 .threads = _p4threads_##name, \
123 .stacks = &(_p4stacks_##name[0][0]), \
126 .done_handler = dn_handler, \
136#define K_P4WQ_DEFINE(name, n_threads, stack_sz) \
137 K_P4WQ_DEFINE_WITH_DONE_HANDLER(name, n_threads, stack_sz, NULL)
152#define K_P4WQ_ARRAY_DEFINE_WITH_DONE_HANDLER(name, n_threads, stack_sz, flg, dn_handler) \
153 static K_THREAD_STACK_ARRAY_DEFINE(_p4stacks_##name, \
154 n_threads, stack_sz); \
155 static struct k_thread _p4threads_##name[n_threads]; \
156 static struct k_p4wq name[n_threads]; \
157 static const STRUCT_SECTION_ITERABLE(k_p4wq_initparam, \
160 .stack_size = stack_sz, \
161 .threads = _p4threads_##name, \
162 .stacks = &(_p4stacks_##name[0][0]), \
164 .flags = K_P4WQ_QUEUE_PER_THREAD | flg, \
165 .done_handler = dn_handler, \
175#define K_P4WQ_ARRAY_DEFINE(name, n_threads, stack_sz, flg) \
176 K_P4WQ_ARRAY_DEFINE_WITH_DONE_HANDLER(name, n_threads, stack_sz, flg, NULL)
struct z_thread_stack_element k_thread_stack_t
Typedef of struct z_thread_stack_element.
Definition arch_interface.h:46
struct _dnode sys_dlist_t
Doubly-linked list structure.
Definition dlist.h:50
void k_p4wq_submit(struct k_p4wq *queue, struct k_p4wq_work *item)
Submit work item to a P4 queue.
int k_p4wq_wait(struct k_p4wq_work *work, k_timeout_t timeout)
Regain ownership of the work item, wait for completion if it's synchronous.
void k_p4wq_enable_static_thread(struct k_p4wq *queue, struct k_thread *thread, uint32_t cpu_mask)
void k_p4wq_add_thread(struct k_p4wq *queue, struct k_thread *thread, k_thread_stack_t *stack, size_t stack_size)
Dynamically add a thread object to a P4 Queue pool.
void(* k_p4wq_handler_t)(struct k_p4wq_work *work)
P4 Queue handler callback.
Definition p4wq.h:19
void k_p4wq_init(struct k_p4wq *queue)
Initialize P4 Queue.
bool k_p4wq_cancel(struct k_p4wq *queue, struct k_p4wq_work *item)
Cancel submitted P4 work item.
void(* k_p4wq_done_handler_t)(struct k_p4wq_work *work)
Optional P4 Queue done callback.
Definition p4wq.h:26
__UINT32_TYPE__ uint32_t
Definition stdint.h:90
__INT32_TYPE__ int32_t
Definition stdint.h:74
__UINTPTR_TYPE__ uintptr_t
Definition stdint.h:105
uint32_t num
Definition p4wq.h:92
struct z_thread_stack_element * stacks
Definition p4wq.h:96
uint32_t flags
Definition p4wq.h:97
struct k_thread * threads
Definition p4wq.h:95
k_p4wq_done_handler_t done_handler
Definition p4wq.h:98
struct k_p4wq * queue
Definition p4wq.h:94
uintptr_t stack_size
Definition p4wq.h:93
P4 Queue Work Item.
Definition p4wq.h:36
bool sync
Definition p4wq.h:41
int32_t deadline
Definition p4wq.h:39
struct k_sem done_sem
Definition p4wq.h:42
struct k_thread * thread
Definition p4wq.h:49
sys_dlist_t dlnode
Definition p4wq.h:47
int32_t priority
Definition p4wq.h:38
k_p4wq_handler_t handler
Definition p4wq.h:40
struct k_p4wq * queue
Definition p4wq.h:50
P4 Queue.
Definition p4wq.h:62
k_p4wq_done_handler_t done_handler
Definition p4wq.h:88
uint32_t flags
Definition p4wq.h:83
_wait_q_t waitq
Definition p4wq.h:74
struct rbtree queue
Definition p4wq.h:77
struct k_spinlock lock
Definition p4wq.h:63
sys_dlist_t active
Definition p4wq.h:80
Kernel Spin Lock.
Definition spinlock.h:45
Thread Structure.
Definition thread.h:259
Kernel timeout type.
Definition sys_clock.h:65
Balanced red/black tree node structure.
Definition rb.h:58
Balanced red/black tree structure.
Definition rb.h:91