Zephyr Project API 4.1.0
A Scalable Open Source RTOS
Loading...
Searching...
No Matches
p4wq.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2020 Intel Corporation
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6#ifndef ZEPHYR_INCLUDE_SYS_P4WQ_H_
7#define ZEPHYR_INCLUDE_SYS_P4WQ_H_
8
9#include <zephyr/kernel.h>
11
12/* Zephyr Pooled Parallel Preemptible Priority-based Work Queues */
13
14struct k_p4wq_work;
15
19typedef void (*k_p4wq_handler_t)(struct k_p4wq_work *work);
20
26typedef void (*k_p4wq_done_handler_t)(struct k_p4wq_work *work);
27
37 /* Filled out by submitting code */
41 bool sync;
42 struct k_sem done_sem;
43
44 /* reserved for implementation */
45 union {
46 struct rbnode rbnode;
48 };
50 struct k_p4wq *queue;
51};
52
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)
56
62struct k_p4wq {
64
65 /* Pending threads waiting for work items
66 *
67 * FIXME: a waitq isn't really the right data structure here.
68 * Wait queues are priority-sorted, but we don't want that
69 * sorting overhead since we're effectively doing it ourselves
70 * by directly mutating the priority when a thread is
71 * unpended. We just want "blocked threads on a list", but
72 * there's no clean scheduler API for that.
73 */
74 _wait_q_t waitq;
75
76 /* Work items waiting for processing */
77 struct rbtree queue;
78
79 /* Work items in progress */
81
82 /* K_P4WQ_* flags above */
84
85 /* done handler which is called every time after work was successfully executed
86 * and k_p4wq_work is not needed by p4wq anymore
87 */
89};
90
100
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, \
119 _init_##name) = { \
120 .num = n_threads, \
121 .stack_size = stack_sz, \
122 .threads = _p4threads_##name, \
123 .stacks = &(_p4stacks_##name[0][0]), \
124 .queue = &name, \
125 .flags = 0, \
126 .done_handler = dn_handler, \
127 }
128
136#define K_P4WQ_DEFINE(name, n_threads, stack_sz) \
137 K_P4WQ_DEFINE_WITH_DONE_HANDLER(name, n_threads, stack_sz, NULL)
138
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, \
158 _init_##name) = { \
159 .num = n_threads, \
160 .stack_size = stack_sz, \
161 .threads = _p4threads_##name, \
162 .stacks = &(_p4stacks_##name[0][0]), \
163 .queue = name, \
164 .flags = K_P4WQ_QUEUE_PER_THREAD | flg, \
165 .done_handler = dn_handler, \
166 }
167
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)
177
187void k_p4wq_init(struct k_p4wq *queue);
188
201void k_p4wq_add_thread(struct k_p4wq *queue, struct k_thread *thread,
202 k_thread_stack_t *stack,
203 size_t stack_size);
204
226void k_p4wq_submit(struct k_p4wq *queue, struct k_p4wq_work *item);
227
238bool k_p4wq_cancel(struct k_p4wq *queue, struct k_p4wq_work *item);
239
243int k_p4wq_wait(struct k_p4wq_work *work, k_timeout_t timeout);
244
245void k_p4wq_enable_static_thread(struct k_p4wq *queue, struct k_thread *thread,
246 uint32_t cpu_mask);
247
248#endif /* ZEPHYR_INCLUDE_SYS_P4WQ_H_ */
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
Public kernel APIs.
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
Definition p4wq.h:91
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