Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2016, Wind River Systems, Inc. |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | /** |
| 18 | * @file |
| 19 | * |
| 20 | * @brief Public kernel APIs. |
| 21 | */ |
| 22 | |
| 23 | #ifndef _kernel__h_ |
| 24 | #define _kernel__h_ |
| 25 | |
| 26 | #include <stddef.h> |
| 27 | #include <stdint.h> |
| 28 | #include <toolchain.h> |
| 29 | #include <sections.h> |
| 30 | #include <atomic.h> |
| 31 | #include <errno.h> |
| 32 | #include <misc/__assert.h> |
| 33 | #include <misc/dlist.h> |
| 34 | #include <misc/slist.h> |
| 35 | |
| 36 | #ifdef __cplusplus |
| 37 | extern "C" { |
| 38 | #endif |
| 39 | |
| 40 | #ifdef CONFIG_KERNEL_V2_DEBUG |
| 41 | #define K_DEBUG(fmt, ...) printk("[%s] " fmt, __func__, ##__VA_ARGS__) |
| 42 | #else |
| 43 | #define K_DEBUG(fmt, ...) |
| 44 | #endif |
| 45 | |
| 46 | #define K_PRIO_COOP(x) (-(CONFIG_NUM_COOP_PRIORITIES - (x))) |
| 47 | #define K_PRIO_PREEMPT(x) (x) |
| 48 | |
| 49 | #define K_FOREVER (-1) |
| 50 | #define K_NO_WAIT 0 |
| 51 | |
| 52 | #define K_ANY NULL |
| 53 | #define K_END NULL |
| 54 | |
| 55 | #define K_OBJ(name, size) char name[size] __aligned(4) |
| 56 | |
| 57 | #if CONFIG_NUM_COOP_PRIORITIES > 0 |
| 58 | #define K_HIGHEST_THREAD_PRIO (-CONFIG_NUM_COOP_PRIORITIES) |
| 59 | #else |
| 60 | #define K_HIGHEST_THREAD_PRIO 0 |
| 61 | #endif |
| 62 | |
| 63 | #if CONFIG_NUM_PREEMPT_PRIORITIES > 0 |
| 64 | #define K_LOWEST_THREAD_PRIO CONFIG_NUM_PREEMPT_PRIORITIES |
| 65 | #else |
| 66 | #define K_LOWEST_THREAD_PRIO -1 |
| 67 | #endif |
| 68 | |
| 69 | #define K_HIGHEST_APPLICATION_THREAD_PRIO (K_HIGHEST_THREAD_PRIO) |
| 70 | #define K_LOWEST_APPLICATION_THREAD_PRIO (K_LOWEST_THREAD_PRIO - 1) |
| 71 | |
| 72 | typedef sys_dlist_t _wait_q_t; |
| 73 | |
| 74 | #ifdef CONFIG_DEBUG_TRACING_KERNEL_OBJECTS |
| 75 | #define _DEBUG_TRACING_KERNEL_OBJECTS_NEXT_PTR(type) struct type *__next |
| 76 | #define _DEBUG_TRACING_KERNEL_OBJECTS_INIT .__next = NULL, |
| 77 | #else |
| 78 | #define _DEBUG_TRACING_KERNEL_OBJECTS_INIT |
| 79 | #define _DEBUG_TRACING_KERNEL_OBJECTS_NEXT_PTR(type) |
| 80 | #endif |
| 81 | |
| 82 | #define k_thread tcs |
| 83 | struct tcs; |
| 84 | struct k_mutex; |
| 85 | struct k_sem; |
| 86 | struct k_event; |
| 87 | struct k_msgq; |
| 88 | struct k_mbox; |
| 89 | struct k_pipe; |
| 90 | struct k_fifo; |
| 91 | struct k_lifo; |
| 92 | struct k_stack; |
| 93 | struct k_mem_map; |
| 94 | struct k_mem_pool; |
| 95 | struct k_timer; |
| 96 | |
| 97 | typedef struct tcs *k_tid_t; |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 98 | |
| 99 | /* threads/scheduler/execution contexts */ |
| 100 | |
| 101 | enum execution_context_types { |
| 102 | K_ISR = 0, |
| 103 | K_COOP_THREAD, |
| 104 | K_PREEMPT_THREAD, |
| 105 | }; |
| 106 | |
| 107 | struct k_thread_config { |
| 108 | char *stack; |
| 109 | unsigned stack_size; |
| 110 | unsigned prio; |
| 111 | }; |
| 112 | |
| 113 | typedef void (*k_thread_entry_t)(void *p1, void *p2, void *p3); |
| 114 | extern k_tid_t k_thread_spawn(char *stack, unsigned stack_size, |
| 115 | void (*entry)(void *, void *, void*), |
| 116 | void *p1, void *p2, void *p3, |
| 117 | int32_t prio, uint32_t options, int32_t delay); |
| 118 | |
| 119 | extern void k_sleep(int32_t duration); |
| 120 | extern void k_busy_wait(uint32_t usec_to_wait); |
| 121 | extern void k_yield(void); |
| 122 | extern void k_wakeup(k_tid_t thread); |
| 123 | extern k_tid_t k_current_get(void); |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 124 | extern int k_current_priority_get(void); |
| 125 | extern int k_thread_cancel(k_tid_t thread); |
| 126 | |
| 127 | extern void k_thread_abort(k_tid_t thread); |
| 128 | |
| 129 | #define K_THREAD_GROUP_EXE 0x1 |
| 130 | #define K_THREAD_GROUP_SYS 0x2 |
| 131 | #define K_THREAD_GROUP_FPU 0x4 |
| 132 | |
| 133 | /* XXX - doesn't work because CONFIG_ARCH is a string */ |
| 134 | #if 0 |
| 135 | /* arch-specific groups */ |
| 136 | #if CONFIG_ARCH == "x86" |
| 137 | #define K_THREAD_GROUP_SSE 0x4 |
| 138 | #endif |
| 139 | #endif |
| 140 | |
| 141 | #ifdef CONFIG_NANO_TIMEOUTS |
| 142 | #define _THREAD_TIMEOUT_INIT(obj) \ |
| 143 | (obj).nano_timeout = { \ |
| 144 | .node = { {0}, {0} }, \ |
| 145 | .tcs = NULL, \ |
| 146 | .wait_q = NULL, \ |
| 147 | .delta_ticks_from_prev = -1, \ |
| 148 | }, |
| 149 | #else |
| 150 | #define _THREAD_TIMEOUT_INIT(obj) |
| 151 | #endif |
| 152 | |
| 153 | #ifdef CONFIG_ERRNO |
| 154 | #define _THREAD_ERRNO_INIT(obj) (obj).errno_var = 0, |
| 155 | #else |
| 156 | #define _THREAD_ERRNO_INIT(obj) |
| 157 | #endif |
| 158 | |
Peter Mitsis | a04c0d7 | 2016-09-28 19:26:00 -0400 | [diff] [blame] | 159 | struct _static_thread_data { |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 160 | uint32_t init_groups; |
| 161 | int init_prio; |
| 162 | void (*init_entry)(void *, void *, void *); |
| 163 | void *init_p1; |
| 164 | void *init_p2; |
| 165 | void *init_p3; |
| 166 | void (*init_abort)(void); |
| 167 | union { |
| 168 | char *init_stack; |
| 169 | struct k_thread *thread; |
| 170 | }; |
| 171 | unsigned int init_stack_size; |
| 172 | }; |
| 173 | |
| 174 | #define K_THREAD_INITIALIZER(stack, stack_size, \ |
| 175 | entry, p1, p2, p3, \ |
| 176 | abort, prio, groups) \ |
| 177 | { \ |
| 178 | .init_groups = (groups), \ |
| 179 | .init_prio = (prio), \ |
| 180 | .init_entry = entry, \ |
| 181 | .init_p1 = (void *)p1, \ |
| 182 | .init_p2 = (void *)p2, \ |
| 183 | .init_p3 = (void *)p3, \ |
| 184 | .init_abort = abort, \ |
| 185 | .init_stack = (stack), \ |
| 186 | .init_stack_size = (stack_size), \ |
| 187 | } |
| 188 | |
| 189 | /* |
| 190 | * Define thread initializer object and initialize it |
| 191 | * NOTE: For thread group functions thread initializers must be organized |
| 192 | * in array and thus should not have gaps between them. |
| 193 | * On x86 by default compiler aligns them by 32 byte boundary. To prevent |
| 194 | * this 32-bit alignment in specified here. |
Peter Mitsis | a04c0d7 | 2016-09-28 19:26:00 -0400 | [diff] [blame] | 195 | * _static_thread_data structure sise needs to be kept 32-bit aligned as well |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 196 | */ |
| 197 | #define K_THREAD_OBJ_DEFINE(name, stack_size, \ |
| 198 | entry, p1, p2, p3, \ |
| 199 | abort, prio, groups) \ |
| 200 | extern void entry(void *, void *, void *); \ |
| 201 | char __noinit __stack _k_thread_obj_##name[stack_size]; \ |
Peter Mitsis | a04c0d7 | 2016-09-28 19:26:00 -0400 | [diff] [blame] | 202 | struct _static_thread_data _k_thread_data_##name __aligned(4) \ |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 203 | __in_section(_k_task_list, private, task) = \ |
| 204 | K_THREAD_INITIALIZER(_k_thread_obj_##name, stack_size, \ |
| 205 | entry, p1, p2, p3, abort, prio, groups) |
| 206 | |
| 207 | #define K_THREAD_DEFINE(name, stack_size, entry, p1, p2, p3, \ |
| 208 | abort, prio, groups) \ |
| 209 | K_THREAD_OBJ_DEFINE(name, stack_size, entry, p1, p2, p3, \ |
| 210 | abort, prio, groups); \ |
| 211 | k_tid_t const name = (k_tid_t)_k_thread_obj_##name |
| 212 | |
| 213 | /* extern int k_thread_prio_get(k_tid_t thread); in sched.h */ |
| 214 | extern void k_thread_priority_set(k_tid_t thread, int prio); |
| 215 | |
Benjamin Walsh | 71d5228 | 2016-09-29 10:49:48 -0400 | [diff] [blame] | 216 | extern void k_thread_suspend(k_tid_t thread); |
| 217 | extern void k_thread_resume(k_tid_t thread); |
| 218 | extern void k_thread_abort_handler_set(void (*handler)(void)); |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 219 | #if 0 |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 220 | extern int k_thread_entry_set(k_tid_t thread, |
| 221 | void (*entry)(void*, void*, void*); |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 222 | #endif |
| 223 | |
| 224 | extern void k_sched_time_slice_set(int32_t slice, int prio); |
| 225 | extern int k_workload_get(void); |
| 226 | extern void k_workload_time_slice_set(int32_t slice); |
| 227 | |
| 228 | extern int k_am_in_isr(void); |
| 229 | |
| 230 | extern void k_thread_custom_data_set(void *value); |
| 231 | extern void *k_thread_custom_data_get(void); |
| 232 | |
| 233 | /** |
| 234 | * kernel timing |
| 235 | */ |
| 236 | |
Benjamin Walsh | a9604bd | 2016-09-21 11:05:56 -0400 | [diff] [blame] | 237 | #include <sys_clock.h> |
| 238 | |
| 239 | /* private internal time manipulation (users should never play with ticks) */ |
| 240 | |
| 241 | static int64_t __ticks_to_ms(int64_t ticks) |
| 242 | { |
| 243 | return (MSEC_PER_SEC * (uint64_t)ticks) / sys_clock_ticks_per_sec; |
| 244 | } |
| 245 | |
| 246 | |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 247 | /* timeouts */ |
| 248 | |
| 249 | struct _timeout; |
| 250 | typedef void (*_timeout_func_t)(struct _timeout *t); |
| 251 | |
| 252 | struct _timeout { |
| 253 | sys_dlist_t node; |
| 254 | struct tcs *tcs; |
| 255 | sys_dlist_t *wait_q; |
| 256 | int32_t delta_ticks_from_prev; |
| 257 | _timeout_func_t func; |
| 258 | }; |
| 259 | |
| 260 | /* timers */ |
| 261 | |
| 262 | struct k_timer { |
| 263 | /* |
| 264 | * _timeout structure must be first here if we want to use |
| 265 | * dynamic timer allocation. timeout.node is used in the double-linked |
| 266 | * list of free timers |
| 267 | */ |
| 268 | struct _timeout timeout; |
| 269 | |
| 270 | /* wait queue for the threads waiting on this timer */ |
| 271 | _wait_q_t wait_q; |
| 272 | |
| 273 | /* runs in ISR context */ |
| 274 | void (*handler)(void *); |
| 275 | void *handler_arg; |
| 276 | |
| 277 | /* runs in the context of the thread that calls k_timer_stop() */ |
| 278 | void (*stop_handler)(void *); |
| 279 | void *stop_handler_arg; |
| 280 | |
| 281 | /* timer period */ |
| 282 | int32_t period; |
| 283 | |
| 284 | /* user supplied data pointer returned to the thread*/ |
| 285 | void *user_data; |
| 286 | |
| 287 | /* user supplied data pointer */ |
| 288 | void *user_data_internal; |
| 289 | |
| 290 | _DEBUG_TRACING_KERNEL_OBJECTS_NEXT_PTR(k_timer); |
| 291 | }; |
| 292 | |
| 293 | #define K_TIMER_INITIALIZER(obj) \ |
| 294 | { \ |
| 295 | .wait_q = SYS_DLIST_STATIC_INIT(&obj.wait_q), \ |
| 296 | _DEBUG_TRACING_KERNEL_OBJECTS_INIT \ |
| 297 | } |
| 298 | |
| 299 | #define K_TIMER_DEFINE(name) \ |
| 300 | struct k_timer name = K_TIMER_INITIALIZER(name) |
| 301 | |
| 302 | extern void k_timer_init(struct k_timer *timer, void *data); |
Andy Ross | 8d8b2ac | 2016-09-23 10:08:54 -0700 | [diff] [blame] | 303 | |
| 304 | #if (CONFIG_NUM_DYNAMIC_TIMERS > 0) |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 305 | extern struct k_timer *k_timer_alloc(void); |
| 306 | extern void k_timer_free(struct k_timer *timer); |
Andy Ross | 8d8b2ac | 2016-09-23 10:08:54 -0700 | [diff] [blame] | 307 | #endif |
| 308 | |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 309 | extern void k_timer_start(struct k_timer *timer, |
| 310 | int32_t duration, int32_t period, |
| 311 | void (*handler)(void *), void *handler_arg, |
| 312 | void (*stop_handler)(void *), void *stop_handler_arg); |
| 313 | extern void k_timer_restart(struct k_timer *timer, int32_t duration, |
| 314 | int32_t period); |
| 315 | extern void k_timer_stop(struct k_timer *timer); |
| 316 | extern int k_timer_test(struct k_timer *timer, void **data, int wait); |
| 317 | extern int32_t k_timer_remaining_get(struct k_timer *timer); |
Benjamin Walsh | ba5ddc1 | 2016-09-21 16:01:22 -0400 | [diff] [blame] | 318 | |
| 319 | |
| 320 | /** |
| 321 | * @brief Get the time elapsed since the system booted (uptime) |
| 322 | * |
| 323 | * @return The current uptime of the system in ms |
| 324 | */ |
| 325 | |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 326 | extern int64_t k_uptime_get(void); |
Benjamin Walsh | ba5ddc1 | 2016-09-21 16:01:22 -0400 | [diff] [blame] | 327 | |
| 328 | /** |
| 329 | * @brief Get the lower 32-bit of time elapsed since the system booted (uptime) |
| 330 | * |
| 331 | * This function is potentially less onerous in both the time it takes to |
| 332 | * execute, the interrupt latency it introduces and the amount of 64-bit math |
| 333 | * it requires than k_uptime_get(), but it only provides an uptime value of |
| 334 | * 32-bits. The user must handle possible rollovers/spillovers. |
| 335 | * |
| 336 | * At a rate of increment of 1000 per second, it rolls over approximately every |
| 337 | * 50 days. |
| 338 | * |
| 339 | * @return The current uptime of the system in ms |
| 340 | */ |
| 341 | |
| 342 | extern uint32_t k_uptime_get_32(void); |
| 343 | |
| 344 | /** |
| 345 | * @brief Get the difference between a reference time and the current uptime |
| 346 | * |
| 347 | * @param reftime A pointer to a reference time. It is updated with the current |
| 348 | * uptime upon return. |
| 349 | * |
| 350 | * @return The delta between the reference time and the current uptime. |
| 351 | */ |
| 352 | |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 353 | extern int64_t k_uptime_delta(int64_t *reftime); |
Benjamin Walsh | ba5ddc1 | 2016-09-21 16:01:22 -0400 | [diff] [blame] | 354 | |
| 355 | /** |
| 356 | * @brief Get the difference between a reference time and the current uptime |
| 357 | * |
| 358 | * The 32-bit version of k_uptime_delta(). It has the same perks and issues as |
| 359 | * k_uptime_get_32(). |
| 360 | * |
| 361 | * @param reftime A pointer to a reference time. It is updated with the current |
| 362 | * uptime upon return. |
| 363 | * |
| 364 | * @return The delta between the reference time and the current uptime. |
| 365 | */ |
| 366 | |
| 367 | extern uint32_t k_uptime_delta_32(int64_t *reftime); |
| 368 | |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 369 | extern bool k_timer_pool_is_empty(void); |
| 370 | |
| 371 | extern uint32_t k_cycle_get_32(void); |
| 372 | |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 373 | /** |
| 374 | * data transfers (basic) |
| 375 | */ |
| 376 | |
| 377 | /* fifos */ |
| 378 | |
| 379 | struct k_fifo { |
| 380 | _wait_q_t wait_q; |
| 381 | sys_slist_t data_q; |
| 382 | |
| 383 | _DEBUG_TRACING_KERNEL_OBJECTS_NEXT_PTR(k_fifo); |
| 384 | }; |
| 385 | |
| 386 | extern void k_fifo_init(struct k_fifo *fifo); |
| 387 | extern void k_fifo_put(struct k_fifo *fifo, void *data); |
| 388 | extern void k_fifo_put_list(struct k_fifo *fifo, void *head, void *tail); |
| 389 | extern void k_fifo_put_slist(struct k_fifo *fifo, sys_slist_t *list); |
| 390 | extern void *k_fifo_get(struct k_fifo *fifo, int32_t timeout); |
| 391 | |
| 392 | #define K_FIFO_INITIALIZER(obj) \ |
| 393 | { \ |
| 394 | .wait_q = SYS_DLIST_STATIC_INIT(&obj.wait_q), \ |
Benjamin Walsh | 9091e5d | 2016-09-30 10:42:47 -0400 | [diff] [blame] | 395 | .data_q = SYS_SLIST_STATIC_INIT(&obj.data_q), \ |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 396 | _DEBUG_TRACING_KERNEL_OBJECTS_INIT \ |
| 397 | } |
| 398 | |
| 399 | #define K_FIFO_DEFINE(name) \ |
Benjamin Walsh | 0bee91d | 2016-09-15 17:16:38 -0400 | [diff] [blame] | 400 | struct k_fifo name = K_FIFO_INITIALIZER(name) |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 401 | |
| 402 | /* lifos */ |
| 403 | |
| 404 | struct k_lifo { |
| 405 | _wait_q_t wait_q; |
| 406 | void *list; |
| 407 | |
| 408 | _DEBUG_TRACING_KERNEL_OBJECTS_NEXT_PTR(k_lifo); |
| 409 | }; |
| 410 | |
| 411 | extern void k_lifo_init(struct k_lifo *lifo); |
| 412 | extern void k_lifo_put(struct k_lifo *lifo, void *data); |
| 413 | extern void *k_lifo_get(struct k_lifo *lifo, int32_t timeout); |
| 414 | |
| 415 | #define K_LIFO_INITIALIZER(obj) \ |
| 416 | { \ |
| 417 | .wait_q = SYS_DLIST_STATIC_INIT(&obj.wait_q), \ |
| 418 | .list = NULL, \ |
| 419 | _DEBUG_TRACING_KERNEL_OBJECTS_INIT \ |
| 420 | } |
| 421 | |
| 422 | #define K_LIFO_DEFINE(name) \ |
Benjamin Walsh | 0bee91d | 2016-09-15 17:16:38 -0400 | [diff] [blame] | 423 | struct k_lifo name = K_LIFO_INITIALIZER(name) |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 424 | |
| 425 | /* stacks */ |
| 426 | |
| 427 | struct k_stack { |
| 428 | _wait_q_t wait_q; |
| 429 | uint32_t *base, *next, *top; |
| 430 | |
| 431 | _DEBUG_TRACING_KERNEL_OBJECTS_NEXT_PTR(k_stack); |
| 432 | }; |
| 433 | |
| 434 | extern void k_stack_init(struct k_stack *stack, int num_entries); |
| 435 | extern void k_stack_init_with_buffer(struct k_stack *stack, int num_entries, |
| 436 | uint32_t *buffer); |
| 437 | extern void k_stack_push(struct k_stack *stack, uint32_t data); |
| 438 | extern int k_stack_pop(struct k_stack *stack, uint32_t *data, int32_t timeout); |
| 439 | |
| 440 | #define K_STACK_INITIALIZER(obj, stack_num_entries, stack_buffer) \ |
| 441 | { \ |
| 442 | .wait_q = SYS_DLIST_STATIC_INIT(&obj.wait_q), \ |
| 443 | .base = stack_buffer, \ |
| 444 | .next = stack_buffer, \ |
| 445 | .top = stack_buffer + stack_num_entries, \ |
| 446 | _DEBUG_TRACING_KERNEL_OBJECTS_INIT \ |
| 447 | } |
| 448 | |
| 449 | #define K_STACK_DEFINE(name, stack_num_entries) \ |
| 450 | uint32_t __noinit _k_stack_buf_##name[stack_num_entries]; \ |
Benjamin Walsh | 0bee91d | 2016-09-15 17:16:38 -0400 | [diff] [blame] | 451 | struct k_stack name = \ |
| 452 | K_STACK_INITIALIZER(name, stack_num_entries, \ |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 453 | _k_stack_buf_##name); \ |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 454 | |
| 455 | #define K_STACK_SIZE(stack_num_entries) \ |
| 456 | (sizeof(struct k_stack) + (stack_num_entries * sizeof(uint32_t))) |
| 457 | |
| 458 | /** |
| 459 | * workqueues |
| 460 | */ |
| 461 | |
| 462 | struct k_work; |
| 463 | |
| 464 | typedef void (*k_work_handler_t)(struct k_work *); |
| 465 | |
| 466 | /** |
| 467 | * A workqueue is a fiber that executes @ref k_work items that are |
| 468 | * queued to it. This is useful for drivers which need to schedule |
| 469 | * execution of code which might sleep from ISR context. The actual |
| 470 | * fiber identifier is not stored in the structure in order to save |
| 471 | * space. |
| 472 | */ |
| 473 | struct k_work_q { |
| 474 | struct k_fifo fifo; |
| 475 | }; |
| 476 | |
| 477 | /** |
| 478 | * @brief Work flags. |
| 479 | */ |
| 480 | enum { |
Iván Briano | 9c7b5ea | 2016-10-04 18:11:05 -0300 | [diff] [blame] | 481 | K_WORK_STATE_PENDING, /* Work item pending state */ |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 482 | }; |
| 483 | |
| 484 | /** |
| 485 | * @brief An item which can be scheduled on a @ref k_work_q. |
| 486 | */ |
| 487 | struct k_work { |
| 488 | void *_reserved; /* Used by k_fifo implementation. */ |
| 489 | k_work_handler_t handler; |
| 490 | atomic_t flags[1]; |
| 491 | }; |
| 492 | |
| 493 | /** |
| 494 | * @brief Statically initialize work item |
| 495 | */ |
| 496 | #define K_WORK_INITIALIZER(work_handler) \ |
| 497 | { \ |
| 498 | ._reserved = NULL, \ |
| 499 | .handler = work_handler, \ |
Luiz Augusto von Dentz | ee1e99b | 2016-09-26 09:36:49 +0300 | [diff] [blame] | 500 | .flags = { 0 } \ |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 501 | } |
| 502 | |
| 503 | /** |
| 504 | * @brief Dynamically initialize work item |
| 505 | */ |
| 506 | static inline void k_work_init(struct k_work *work, k_work_handler_t handler) |
| 507 | { |
Luiz Augusto von Dentz | ee1e99b | 2016-09-26 09:36:49 +0300 | [diff] [blame] | 508 | atomic_clear_bit(work->flags, K_WORK_STATE_PENDING); |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 509 | work->handler = handler; |
| 510 | } |
| 511 | |
| 512 | /** |
| 513 | * @brief Submit a work item to a workqueue. |
Luiz Augusto von Dentz | 4ab9d32 | 2016-09-26 09:39:27 +0300 | [diff] [blame] | 514 | * |
| 515 | * This procedure schedules a work item to be processed. |
| 516 | * In the case where the work item has already been submitted and is pending |
| 517 | * execution, calling this function will result in a no-op. In this case, the |
| 518 | * work item must not be modified externally (e.g. by the caller of this |
| 519 | * function), since that could cause the work item to be processed in a |
| 520 | * corrupted state. |
| 521 | * |
| 522 | * @param work_q to schedule the work item |
| 523 | * @param work work item |
| 524 | * |
| 525 | * @return N/A |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 526 | */ |
| 527 | static inline void k_work_submit_to_queue(struct k_work_q *work_q, |
| 528 | struct k_work *work) |
| 529 | { |
Luiz Augusto von Dentz | 4ab9d32 | 2016-09-26 09:39:27 +0300 | [diff] [blame] | 530 | if (!atomic_test_and_set_bit(work->flags, K_WORK_STATE_PENDING)) { |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 531 | k_fifo_put(&work_q->fifo, work); |
| 532 | } |
| 533 | } |
| 534 | |
| 535 | /** |
Luiz Augusto von Dentz | ee1e99b | 2016-09-26 09:36:49 +0300 | [diff] [blame] | 536 | * @brief Check if work item is pending. |
| 537 | */ |
| 538 | static inline int k_work_pending(struct k_work *work) |
| 539 | { |
Iván Briano | 9c7b5ea | 2016-10-04 18:11:05 -0300 | [diff] [blame] | 540 | return atomic_test_bit(work->flags, K_WORK_STATE_PENDING); |
Luiz Augusto von Dentz | ee1e99b | 2016-09-26 09:36:49 +0300 | [diff] [blame] | 541 | } |
| 542 | |
| 543 | /** |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 544 | * @brief Start a new workqueue. This routine can be called from either |
| 545 | * fiber or task context. |
| 546 | */ |
| 547 | extern void k_work_q_start(struct k_work_q *work_q, |
| 548 | const struct k_thread_config *config); |
| 549 | |
| 550 | #if defined(CONFIG_NANO_TIMEOUTS) |
| 551 | |
| 552 | /* |
| 553 | * @brief An item which can be scheduled on a @ref k_work_q with a |
| 554 | * delay. |
| 555 | */ |
| 556 | struct k_delayed_work { |
| 557 | struct k_work work; |
| 558 | struct _timeout timeout; |
| 559 | struct k_work_q *work_q; |
| 560 | }; |
| 561 | |
| 562 | /** |
| 563 | * @brief Initialize delayed work |
| 564 | */ |
Benjamin Walsh | 72e5a39 | 2016-09-30 11:32:33 -0400 | [diff] [blame] | 565 | extern void k_delayed_work_init(struct k_delayed_work *work, |
| 566 | k_work_handler_t handler); |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 567 | |
| 568 | /** |
| 569 | * @brief Submit a delayed work item to a workqueue. |
| 570 | * |
| 571 | * This procedure schedules a work item to be processed after a delay. |
| 572 | * Once the delay has passed, the work item is submitted to the work queue: |
| 573 | * at this point, it is no longer possible to cancel it. Once the work item's |
| 574 | * handler is about to be executed, the work is considered complete and can be |
| 575 | * resubmitted. |
| 576 | * |
| 577 | * Care must be taken if the handler blocks or yield as there is no implicit |
| 578 | * mutual exclusion mechanism. Such usage is not recommended and if necessary, |
| 579 | * it should be explicitly done between the submitter and the handler. |
| 580 | * |
| 581 | * @param work_q to schedule the work item |
| 582 | * @param work Delayed work item |
| 583 | * @param ticks Ticks to wait before scheduling the work item |
| 584 | * |
| 585 | * @return 0 in case of success or negative value in case of error. |
| 586 | */ |
Benjamin Walsh | 72e5a39 | 2016-09-30 11:32:33 -0400 | [diff] [blame] | 587 | extern int k_delayed_work_submit_to_queue(struct k_work_q *work_q, |
| 588 | struct k_delayed_work *work, |
| 589 | int32_t ticks); |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 590 | |
| 591 | /** |
| 592 | * @brief Cancel a delayed work item |
| 593 | * |
| 594 | * This procedure cancels a scheduled work item. If the work has been completed |
| 595 | * or is idle, this will do nothing. The only case where this can fail is when |
| 596 | * the work has been submitted to the work queue, but the handler has not run |
| 597 | * yet. |
| 598 | * |
| 599 | * @param work Delayed work item to be canceled |
| 600 | * |
| 601 | * @return 0 in case of success or negative value in case of error. |
| 602 | */ |
Benjamin Walsh | 72e5a39 | 2016-09-30 11:32:33 -0400 | [diff] [blame] | 603 | extern int k_delayed_work_cancel(struct k_delayed_work *work); |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 604 | |
| 605 | #endif /* CONFIG_NANO_TIMEOUTS */ |
| 606 | |
| 607 | #if defined(CONFIG_SYSTEM_WORKQUEUE) |
| 608 | |
| 609 | extern struct k_work_q k_sys_work_q; |
| 610 | |
| 611 | /* |
| 612 | * @brief Submit a work item to the system workqueue. |
| 613 | * |
| 614 | * @ref k_work_submit_to_queue |
| 615 | * |
| 616 | * When using the system workqueue it is not recommended to block or yield |
| 617 | * on the handler since its fiber is shared system wide it may cause |
| 618 | * unexpected behavior. |
| 619 | */ |
| 620 | static inline void k_work_submit(struct k_work *work) |
| 621 | { |
| 622 | k_work_submit_to_queue(&k_sys_work_q, work); |
| 623 | } |
| 624 | |
| 625 | #if defined(CONFIG_NANO_TIMEOUTS) |
| 626 | /* |
| 627 | * @brief Submit a delayed work item to the system workqueue. |
| 628 | * |
| 629 | * @ref k_delayed_work_submit_to_queue |
| 630 | * |
| 631 | * When using the system workqueue it is not recommended to block or yield |
| 632 | * on the handler since its fiber is shared system wide it may cause |
| 633 | * unexpected behavior. |
| 634 | */ |
| 635 | static inline int k_delayed_work_submit(struct k_delayed_work *work, |
| 636 | int ticks) |
| 637 | { |
| 638 | return k_delayed_work_submit_to_queue(&k_sys_work_q, work, ticks); |
| 639 | } |
| 640 | |
| 641 | #endif /* CONFIG_NANO_TIMEOUTS */ |
| 642 | #endif /* CONFIG_SYSTEM_WORKQUEUE */ |
| 643 | |
| 644 | /** |
| 645 | * synchronization |
| 646 | */ |
| 647 | |
| 648 | /* mutexes */ |
| 649 | |
| 650 | struct k_mutex { |
| 651 | _wait_q_t wait_q; |
| 652 | struct tcs *owner; |
| 653 | uint32_t lock_count; |
| 654 | int owner_orig_prio; |
| 655 | #ifdef CONFIG_OBJECT_MONITOR |
| 656 | int num_lock_state_changes; |
| 657 | int num_conflicts; |
| 658 | #endif |
| 659 | |
| 660 | _DEBUG_TRACING_KERNEL_OBJECTS_NEXT_PTR(k_mutex); |
| 661 | }; |
| 662 | |
| 663 | #ifdef CONFIG_OBJECT_MONITOR |
| 664 | #define _MUTEX_INIT_OBJECT_MONITOR \ |
| 665 | .num_lock_state_changes = 0, .num_conflicts = 0, |
| 666 | #else |
| 667 | #define _MUTEX_INIT_OBJECT_MONITOR |
| 668 | #endif |
| 669 | |
| 670 | #define K_MUTEX_INITIALIZER(obj) \ |
| 671 | { \ |
| 672 | .wait_q = SYS_DLIST_STATIC_INIT(&obj.wait_q), \ |
| 673 | .owner = NULL, \ |
| 674 | .lock_count = 0, \ |
| 675 | .owner_orig_prio = K_LOWEST_THREAD_PRIO, \ |
| 676 | _MUTEX_INIT_OBJECT_MONITOR \ |
| 677 | _DEBUG_TRACING_KERNEL_OBJECTS_INIT \ |
| 678 | } |
| 679 | |
| 680 | #define K_MUTEX_DEFINE(name) \ |
| 681 | struct k_mutex name = K_MUTEX_INITIALIZER(name) |
| 682 | |
| 683 | extern void k_mutex_init(struct k_mutex *mutex); |
| 684 | extern int k_mutex_lock(struct k_mutex *mutex, int32_t timeout); |
| 685 | extern void k_mutex_unlock(struct k_mutex *mutex); |
| 686 | |
| 687 | /* semaphores */ |
| 688 | |
| 689 | struct k_sem { |
| 690 | _wait_q_t wait_q; |
| 691 | unsigned int count; |
| 692 | unsigned int limit; |
| 693 | |
| 694 | _DEBUG_TRACING_KERNEL_OBJECTS_NEXT_PTR(k_sem); |
| 695 | }; |
| 696 | |
| 697 | extern void k_sem_init(struct k_sem *sem, unsigned int initial_count, |
| 698 | unsigned int limit); |
| 699 | extern int k_sem_take(struct k_sem *sem, int32_t timeout); |
| 700 | extern void k_sem_give(struct k_sem *sem); |
| 701 | |
Benjamin Walsh | 70c68b9 | 2016-09-21 10:37:34 -0400 | [diff] [blame] | 702 | static inline void k_sem_reset(struct k_sem *sem) |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 703 | { |
| 704 | sem->count = 0; |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 705 | } |
| 706 | |
Tomasz Bursztyka | 276086d | 2016-09-21 16:03:21 +0200 | [diff] [blame] | 707 | static inline unsigned int k_sem_count_get(struct k_sem *sem) |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 708 | { |
| 709 | return sem->count; |
| 710 | } |
| 711 | |
Peter Mitsis | 4540367 | 2016-09-09 14:24:06 -0400 | [diff] [blame] | 712 | #ifdef CONFIG_SEMAPHORE_GROUPS |
| 713 | /** |
| 714 | * @brief Take the first available semaphore |
| 715 | * |
| 716 | * Given a list of semaphore pointers, this routine will attempt to take one |
| 717 | * of them, waiting up to a maximum of @a timeout ms to do so. The taken |
| 718 | * semaphore is identified by @a sem (set to NULL on error). |
| 719 | * |
| 720 | * Be aware that the more semaphores specified in the group, the more stack |
| 721 | * space is required by the waiting thread. |
| 722 | * |
| 723 | * @param sem_array Array of semaphore pointers terminated by a K_END entry |
| 724 | * @param sem Identifies the semaphore that was taken |
| 725 | * @param timeout Maximum number of milliseconds to wait |
| 726 | * |
| 727 | * @retval 0 A semaphore was successfully taken |
| 728 | * @retval -EBUSY No semaphore was available (@a timeout = K_NO_WAIT) |
| 729 | * @retval -EAGAIN Time out occurred while waiting for semaphore |
| 730 | */ |
| 731 | |
| 732 | extern int k_sem_group_take(struct k_sem *sem_array[], struct k_sem **sem, |
| 733 | int32_t timeout); |
| 734 | |
| 735 | /** |
| 736 | * @brief Give all the semaphores in the group |
| 737 | * |
| 738 | * This routine will give each semaphore in the array of semaphore pointers. |
| 739 | * |
| 740 | * @param sem_array Array of semaphore pointers terminated by a K_END entry |
| 741 | * |
| 742 | * @return N/A |
| 743 | */ |
| 744 | extern void k_sem_group_give(struct k_sem *sem_array[]); |
| 745 | |
| 746 | /** |
| 747 | * @brief Reset the count to zero on each semaphore in the array |
| 748 | * |
| 749 | * This routine resets the count of each semaphore in the group to zero. |
| 750 | * Note that it does NOT have any impact on any thread that might have |
| 751 | * been previously pending on any of the semaphores. |
| 752 | * |
| 753 | * @param sem_array Array of semaphore pointers terminated by a K_END entry |
| 754 | * |
| 755 | * @return N/A |
| 756 | */ |
| 757 | extern void k_sem_group_reset(struct k_sem *sem_array[]); |
| 758 | #endif |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 759 | |
| 760 | #define K_SEM_INITIALIZER(obj, initial_count, count_limit) \ |
| 761 | { \ |
| 762 | .wait_q = SYS_DLIST_STATIC_INIT(&obj.wait_q), \ |
| 763 | .count = initial_count, \ |
| 764 | .limit = count_limit, \ |
| 765 | _DEBUG_TRACING_KERNEL_OBJECTS_INIT \ |
| 766 | } |
| 767 | |
| 768 | #define K_SEM_DEFINE(name, initial_count, count_limit) \ |
| 769 | struct k_sem name = \ |
| 770 | K_SEM_INITIALIZER(name, initial_count, count_limit) |
| 771 | |
| 772 | /* events */ |
| 773 | |
| 774 | #define K_EVT_DEFAULT NULL |
| 775 | #define K_EVT_IGNORE ((void *)(-1)) |
| 776 | |
| 777 | typedef int (*k_event_handler_t)(struct k_event *); |
| 778 | |
| 779 | struct k_event { |
| 780 | k_event_handler_t handler; |
| 781 | atomic_t send_count; |
| 782 | struct k_work work_item; |
| 783 | struct k_sem sem; |
| 784 | |
| 785 | _DEBUG_TRACING_KERNEL_OBJECTS_NEXT_PTR(k_event); |
| 786 | }; |
| 787 | |
| 788 | extern void _k_event_deliver(struct k_work *work); |
| 789 | |
| 790 | #define K_EVENT_INITIALIZER(obj, event_handler) \ |
| 791 | { \ |
| 792 | .handler = (k_event_handler_t)event_handler, \ |
| 793 | .send_count = ATOMIC_INIT(0), \ |
| 794 | .work_item = K_WORK_INITIALIZER(_k_event_deliver), \ |
| 795 | .sem = K_SEM_INITIALIZER(obj.sem, 0, 1), \ |
| 796 | _DEBUG_TRACING_KERNEL_OBJECTS_INIT \ |
| 797 | } |
| 798 | |
| 799 | #define K_EVENT_DEFINE(name, event_handler) \ |
| 800 | struct k_event name \ |
| 801 | __in_section(_k_event_list, event, name) = \ |
| 802 | K_EVENT_INITIALIZER(name, event_handler) |
| 803 | |
| 804 | extern void k_event_init(struct k_event *event, k_event_handler_t handler); |
| 805 | extern int k_event_recv(struct k_event *event, int32_t timeout); |
| 806 | extern void k_event_send(struct k_event *event); |
| 807 | |
| 808 | /** |
| 809 | * data transfers (complex) |
| 810 | */ |
| 811 | |
| 812 | /* message queues */ |
| 813 | |
| 814 | struct k_msgq { |
| 815 | _wait_q_t wait_q; |
| 816 | uint32_t msg_size; |
| 817 | uint32_t max_msgs; |
| 818 | char *buffer_start; |
| 819 | char *buffer_end; |
| 820 | char *read_ptr; |
| 821 | char *write_ptr; |
| 822 | uint32_t used_msgs; |
| 823 | |
| 824 | _DEBUG_TRACING_KERNEL_OBJECTS_NEXT_PTR(k_msgq); |
| 825 | }; |
| 826 | |
| 827 | #define K_MSGQ_INITIALIZER(obj, q_depth, q_width, q_buffer) \ |
| 828 | { \ |
| 829 | .wait_q = SYS_DLIST_STATIC_INIT(&obj.wait_q), \ |
| 830 | .max_msgs = q_depth, \ |
| 831 | .msg_size = q_width, \ |
| 832 | .buffer_start = q_buffer, \ |
| 833 | .buffer_end = q_buffer + (q_depth * q_width), \ |
| 834 | .read_ptr = q_buffer, \ |
| 835 | .write_ptr = q_buffer, \ |
| 836 | .used_msgs = 0, \ |
| 837 | _DEBUG_TRACING_KERNEL_OBJECTS_INIT \ |
| 838 | } |
| 839 | |
| 840 | #define K_MSGQ_DEFINE(name, q_depth, q_width) \ |
| 841 | static char __noinit _k_fifo_buf_##name[(q_depth) * (q_width)]; \ |
| 842 | struct k_msgq name = \ |
| 843 | K_MSGQ_INITIALIZER(name, q_depth, q_width, _k_fifo_buf_##name) |
| 844 | |
| 845 | #define K_MSGQ_SIZE(q_depth, q_width) \ |
| 846 | ((sizeof(struct k_msgq)) + ((q_width) * (q_depth))) |
| 847 | |
Benjamin Walsh | 72e5a39 | 2016-09-30 11:32:33 -0400 | [diff] [blame] | 848 | extern void k_msgq_init(struct k_msgq *q, uint32_t msg_size, |
| 849 | uint32_t max_msgs, char *buffer); |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 850 | extern int k_msgq_put(struct k_msgq *q, void *data, int32_t timeout); |
| 851 | extern int k_msgq_get(struct k_msgq *q, void *data, int32_t timeout); |
| 852 | extern void k_msgq_purge(struct k_msgq *q); |
| 853 | |
| 854 | static inline int k_msgq_num_used_get(struct k_msgq *q) |
| 855 | { |
| 856 | return q->used_msgs; |
| 857 | } |
| 858 | |
| 859 | struct k_mem_block { |
Peter Mitsis | 0cb65c3 | 2016-09-29 14:07:36 -0400 | [diff] [blame] | 860 | struct k_mem_pool *pool_id; |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 861 | void *addr_in_pool; |
| 862 | void *data; |
| 863 | uint32_t req_size; |
| 864 | }; |
| 865 | |
| 866 | /* mailboxes */ |
| 867 | |
| 868 | struct k_mbox_msg { |
| 869 | /** internal use only - needed for legacy API support */ |
| 870 | uint32_t _mailbox; |
| 871 | /** size of message (in bytes) */ |
| 872 | uint32_t size; |
| 873 | /** application-defined information value */ |
| 874 | uint32_t info; |
| 875 | /** sender's message data buffer */ |
| 876 | void *tx_data; |
| 877 | /** internal use only - needed for legacy API support */ |
| 878 | void *_rx_data; |
| 879 | /** message data block descriptor */ |
| 880 | struct k_mem_block tx_block; |
| 881 | /** source thread id */ |
| 882 | k_tid_t rx_source_thread; |
| 883 | /** target thread id */ |
| 884 | k_tid_t tx_target_thread; |
| 885 | /** internal use only - thread waiting on send (may be a dummy) */ |
| 886 | k_tid_t _syncing_thread; |
| 887 | #if (CONFIG_NUM_MBOX_ASYNC_MSGS > 0) |
| 888 | /** internal use only - semaphore used during asynchronous send */ |
| 889 | struct k_sem *_async_sem; |
| 890 | #endif |
| 891 | }; |
| 892 | |
| 893 | struct k_mbox { |
| 894 | _wait_q_t tx_msg_queue; |
| 895 | _wait_q_t rx_msg_queue; |
| 896 | |
| 897 | _DEBUG_TRACING_KERNEL_OBJECTS_NEXT_PTR(k_mbox); |
| 898 | }; |
| 899 | |
| 900 | #define K_MBOX_INITIALIZER(obj) \ |
| 901 | { \ |
| 902 | .tx_msg_queue = SYS_DLIST_STATIC_INIT(&obj.tx_msg_queue), \ |
| 903 | .rx_msg_queue = SYS_DLIST_STATIC_INIT(&obj.rx_msg_queue), \ |
| 904 | _DEBUG_TRACING_KERNEL_OBJECTS_INIT \ |
| 905 | } |
| 906 | |
| 907 | #define K_MBOX_DEFINE(name) \ |
| 908 | struct k_mbox name = \ |
| 909 | K_MBOX_INITIALIZER(name) \ |
| 910 | |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 911 | extern void k_mbox_init(struct k_mbox *mbox); |
| 912 | |
| 913 | extern int k_mbox_put(struct k_mbox *mbox, struct k_mbox_msg *msg, |
| 914 | int32_t timeout); |
| 915 | extern void k_mbox_async_put(struct k_mbox *mbox, struct k_mbox_msg *msg, |
| 916 | struct k_sem *sem); |
| 917 | |
| 918 | extern int k_mbox_get(struct k_mbox *mbox, struct k_mbox_msg *msg, |
| 919 | void *buffer, int32_t timeout); |
| 920 | extern void k_mbox_data_get(struct k_mbox_msg *msg, void *buffer); |
Peter Mitsis | 0cb65c3 | 2016-09-29 14:07:36 -0400 | [diff] [blame] | 921 | extern int k_mbox_data_block_get(struct k_mbox_msg *msg, |
| 922 | struct k_mem_pool *pool, |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 923 | struct k_mem_block *block, int32_t timeout); |
| 924 | |
| 925 | /* pipes */ |
| 926 | |
| 927 | struct k_pipe { |
| 928 | unsigned char *buffer; /* Pipe buffer: may be NULL */ |
| 929 | size_t size; /* Buffer size */ |
| 930 | size_t bytes_used; /* # bytes used in buffer */ |
| 931 | size_t read_index; /* Where in buffer to read from */ |
| 932 | size_t write_index; /* Where in buffer to write */ |
| 933 | |
| 934 | struct { |
| 935 | _wait_q_t readers; /* Reader wait queue */ |
| 936 | _wait_q_t writers; /* Writer wait queue */ |
| 937 | } wait_q; |
| 938 | |
| 939 | _DEBUG_TRACING_KERNEL_OBJECTS_NEXT_PTR(k_pipe); |
| 940 | }; |
| 941 | |
| 942 | #define K_PIPE_INITIALIZER(obj, pipe_buffer_size, pipe_buffer) \ |
| 943 | { \ |
| 944 | .buffer = pipe_buffer, \ |
| 945 | .size = pipe_buffer_size, \ |
| 946 | .bytes_used = 0, \ |
| 947 | .read_index = 0, \ |
| 948 | .write_index = 0, \ |
| 949 | .wait_q.writers = SYS_DLIST_STATIC_INIT(&obj.wait_q.writers), \ |
| 950 | .wait_q.readers = SYS_DLIST_STATIC_INIT(&obj.wait_q.readers), \ |
| 951 | _DEBUG_TRACING_KERNEL_OBJECTS_INIT \ |
| 952 | } |
| 953 | |
| 954 | #define K_PIPE_DEFINE(name, pipe_buffer_size) \ |
| 955 | static unsigned char __noinit _k_pipe_buf_##name[pipe_buffer_size]; \ |
| 956 | struct k_pipe name = \ |
| 957 | K_PIPE_INITIALIZER(name, pipe_buffer_size, _k_pipe_buf_##name) |
| 958 | |
| 959 | #define K_PIPE_SIZE(buffer_size) (sizeof(struct k_pipe) + buffer_size) |
| 960 | |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 961 | /** |
| 962 | * @brief Runtime initialization of a pipe |
| 963 | * |
| 964 | * @param pipe Pointer to pipe to initialize |
| 965 | * @param buffer Pointer to buffer to use for pipe's ring buffer |
| 966 | * @param size Size of the pipe's ring buffer |
| 967 | * |
| 968 | * @return N/A |
| 969 | */ |
| 970 | extern void k_pipe_init(struct k_pipe *pipe, unsigned char *buffer, |
| 971 | size_t size); |
| 972 | |
| 973 | /** |
| 974 | * @brief Put a message into the specified pipe |
| 975 | * |
| 976 | * This routine synchronously adds a message into the pipe specified by |
| 977 | * @a pipe. It will wait up to @a timeout for the pipe to accept |
| 978 | * @a num_bytes_to_write bytes of data. If by @a timeout, the pipe could not |
| 979 | * accept @a min_bytes bytes of data, it fails. Fewer than @a min_bytes will |
| 980 | * only ever be written to the pipe if K_NO_WAIT < @a timeout < K_FOREVER. |
| 981 | * |
| 982 | * @param pipe Pointer to the pipe |
| 983 | * @param buffer Data to put into the pipe |
| 984 | * @param num_bytes_to_write Desired number of bytes to put into the pipe |
| 985 | * @param num_bytes_written Number of bytes the pipe accepted |
| 986 | * @param min_bytes Minimum number of bytes accepted for success |
| 987 | * @param timeout Maximum number of milliseconds to wait |
| 988 | * |
| 989 | * @retval 0 At least @a min_bytes were sent |
| 990 | * @retval -EIO Request can not be satisfied (@a timeout is K_NO_WAIT) |
| 991 | * @retval -EAGAIN Fewer than @a min_bytes were sent |
| 992 | */ |
| 993 | extern int k_pipe_put(struct k_pipe *pipe, void *buffer, |
| 994 | size_t num_bytes_to_write, size_t *num_bytes_written, |
| 995 | size_t min_bytes, int32_t timeout); |
| 996 | |
| 997 | /** |
| 998 | * @brief Get a message from the specified pipe |
| 999 | * |
| 1000 | * This routine synchronously retrieves a message from the pipe specified by |
| 1001 | * @a pipe. It will wait up to @a timeout to retrieve @a num_bytes_to_read |
| 1002 | * bytes of data from the pipe. If by @a timeout, the pipe could not retrieve |
| 1003 | * @a min_bytes bytes of data, it fails. Fewer than @a min_bytes will |
| 1004 | * only ever be retrieved from the pipe if K_NO_WAIT < @a timeout < K_FOREVER. |
| 1005 | * |
| 1006 | * @param pipe Pointer to the pipe |
| 1007 | * @param buffer Location to place retrieved data |
| 1008 | * @param num_bytes_to_read Desired number of bytes to retrieve from the pipe |
| 1009 | * @param num_bytes_read Number of bytes retrieved from the pipe |
| 1010 | * @param min_bytes Minimum number of bytes retrieved for success |
| 1011 | * @param timeout Maximum number of milliseconds to wait |
| 1012 | * |
| 1013 | * @retval 0 At least @a min_bytes were transferred |
| 1014 | * @retval -EIO Request can not be satisfied (@a timeout is K_NO_WAIT) |
| 1015 | * @retval -EAGAIN Fewer than @a min_bytes were retrieved |
| 1016 | */ |
| 1017 | extern int k_pipe_get(struct k_pipe *pipe, void *buffer, |
| 1018 | size_t num_bytes_to_read, size_t *num_bytes_read, |
| 1019 | size_t min_bytes, int32_t timeout); |
| 1020 | |
| 1021 | /** |
| 1022 | * @brief Send a message to the specified pipe |
| 1023 | * |
| 1024 | * This routine asynchronously sends a message from the pipe specified by |
| 1025 | * @a pipe. Once all @a size bytes have been accepted by the pipe, it will |
| 1026 | * free the memory block @a block and give the semaphore @a sem (if specified). |
| 1027 | * Up to CONFIG_NUM_PIPE_ASYNC_MSGS asynchronous pipe messages can be in-flight |
| 1028 | * at any given time. |
| 1029 | * |
| 1030 | * @param pipe Pointer to the pipe |
| 1031 | * @param block Memory block containing data to send |
| 1032 | * @param size Number of data bytes in memory block to send |
| 1033 | * @param sem Semaphore to signal upon completion (else NULL) |
| 1034 | * |
| 1035 | * @retval N/A |
| 1036 | */ |
| 1037 | extern void k_pipe_block_put(struct k_pipe *pipe, struct k_mem_block *block, |
| 1038 | size_t size, struct k_sem *sem); |
| 1039 | |
| 1040 | /** |
| 1041 | * memory management |
| 1042 | */ |
| 1043 | |
| 1044 | /* memory maps */ |
| 1045 | |
| 1046 | struct k_mem_map { |
| 1047 | _wait_q_t wait_q; |
| 1048 | int num_blocks; |
| 1049 | int block_size; |
| 1050 | char *buffer; |
| 1051 | char *free_list; |
| 1052 | int num_used; |
| 1053 | |
| 1054 | _DEBUG_TRACING_KERNEL_OBJECTS_NEXT_PTR(k_mem_map); |
| 1055 | }; |
| 1056 | |
| 1057 | #define K_MEM_MAP_INITIALIZER(obj, map_num_blocks, map_block_size, \ |
| 1058 | map_buffer) \ |
| 1059 | { \ |
| 1060 | .wait_q = SYS_DLIST_STATIC_INIT(&obj.wait_q), \ |
| 1061 | .num_blocks = map_num_blocks, \ |
| 1062 | .block_size = map_block_size, \ |
| 1063 | .buffer = map_buffer, \ |
| 1064 | .free_list = NULL, \ |
| 1065 | .num_used = 0, \ |
| 1066 | _DEBUG_TRACING_KERNEL_OBJECTS_INIT \ |
| 1067 | } |
| 1068 | |
| 1069 | #define K_MEM_MAP_DEFINE(name, map_num_blocks, map_block_size) \ |
| 1070 | char _k_mem_map_buf_##name[(map_num_blocks) * (map_block_size)]; \ |
| 1071 | struct k_mem_map name \ |
| 1072 | __in_section(_k_mem_map_ptr, private, mem_map) = \ |
| 1073 | K_MEM_MAP_INITIALIZER(name, map_num_blocks, \ |
| 1074 | map_block_size, _k_mem_map_buf_##name) |
| 1075 | |
| 1076 | #define K_MEM_MAP_SIZE(map_num_blocks, map_block_size) \ |
| 1077 | (sizeof(struct k_mem_map) + ((map_num_blocks) * (map_block_size))) |
| 1078 | |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 1079 | extern void k_mem_map_init(struct k_mem_map *map, int num_blocks, |
| 1080 | int block_size, void *buffer); |
| 1081 | extern int k_mem_map_alloc(struct k_mem_map *map, void **mem, int32_t timeout); |
| 1082 | extern void k_mem_map_free(struct k_mem_map *map, void **mem); |
| 1083 | |
| 1084 | static inline int k_mem_map_num_used_get(struct k_mem_map *map) |
| 1085 | { |
| 1086 | return map->num_used; |
| 1087 | } |
| 1088 | |
| 1089 | /* memory pools */ |
| 1090 | |
Dmitriy Korovkin | 3c42688 | 2016-09-01 18:14:17 -0400 | [diff] [blame] | 1091 | /* |
| 1092 | * Memory pool requires a buffer and two arrays of structures for the |
| 1093 | * memory block accounting: |
| 1094 | * A set of arrays of k_mem_pool_quad_block structures where each keeps a |
| 1095 | * status of four blocks of memory. |
| 1096 | */ |
| 1097 | struct k_mem_pool_quad_block { |
| 1098 | char *mem_blocks; /* pointer to the first of four memory blocks */ |
| 1099 | uint32_t mem_status; /* four bits. If bit is set, memory block is |
| 1100 | allocated */ |
| 1101 | }; |
| 1102 | /* |
| 1103 | * Memory pool mechanism uses one array of k_mem_pool_quad_block for accounting |
| 1104 | * blocks of one size. Block sizes go from maximal to minimal. Next memory |
| 1105 | * block size is 4 times less than the previous one and thus requires 4 times |
| 1106 | * bigger array of k_mem_pool_quad_block structures to keep track of the |
| 1107 | * memory blocks. |
| 1108 | */ |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 1109 | |
Dmitriy Korovkin | 3c42688 | 2016-09-01 18:14:17 -0400 | [diff] [blame] | 1110 | /* |
| 1111 | * The array of k_mem_pool_block_set keeps the information of each array of |
| 1112 | * k_mem_pool_quad_block structures |
| 1113 | */ |
| 1114 | struct k_mem_pool_block_set { |
| 1115 | int block_size; /* memory block size */ |
| 1116 | int nr_of_entries; /* nr of quad block structures in the array */ |
| 1117 | struct k_mem_pool_quad_block *quad_block; |
| 1118 | int count; |
| 1119 | }; |
| 1120 | |
| 1121 | /* Memory pool descriptor */ |
| 1122 | struct k_mem_pool { |
| 1123 | int max_block_size; |
| 1124 | int min_block_size; |
| 1125 | int nr_of_maxblocks; |
| 1126 | int nr_of_block_sets; |
| 1127 | struct k_mem_pool_block_set *block_set; |
| 1128 | char *bufblock; |
| 1129 | _wait_q_t wait_q; |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 1130 | _DEBUG_TRACING_KERNEL_OBJECTS_NEXT_PTR(k_mem_pool); |
| 1131 | }; |
| 1132 | |
Dmitriy Korovkin | 3c42688 | 2016-09-01 18:14:17 -0400 | [diff] [blame] | 1133 | #ifdef CONFIG_ARM |
| 1134 | #define _SECTION_TYPE_SIGN "%" |
| 1135 | #else |
| 1136 | #define _SECTION_TYPE_SIGN "@" |
| 1137 | #endif |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 1138 | |
Dmitriy Korovkin | 3c42688 | 2016-09-01 18:14:17 -0400 | [diff] [blame] | 1139 | /* |
| 1140 | * Static memory pool initialization |
| 1141 | */ |
| 1142 | /* |
| 1143 | * Use .altmacro to be able to recalculate values and pass them as string |
| 1144 | * arguments when calling assembler macros resursively |
| 1145 | */ |
| 1146 | __asm__(".altmacro\n\t"); |
| 1147 | |
| 1148 | /* |
| 1149 | * Recursively calls a macro |
| 1150 | * The followig global symbols need to be initialized: |
| 1151 | * __memory_pool_max_block_size - maximal size of the memory block |
| 1152 | * __memory_pool_min_block_size - minimal size of the memory block |
| 1153 | * Notes: |
| 1154 | * Global symbols are used due the fact that assembler macro allows only |
| 1155 | * one argument be passed with the % conversion |
| 1156 | * Some assemblers do not get division operation ("/"). To avoid it >> 2 |
| 1157 | * is used instead of / 4. |
| 1158 | * n_max argument needs to go first in the invoked macro, as some |
| 1159 | * assemblers concatenate \name and %(\n_max * 4) arguments |
| 1160 | * if \name goes first |
| 1161 | */ |
| 1162 | __asm__(".macro __do_recurse macro_name, name, n_max\n\t" |
| 1163 | ".ifge __memory_pool_max_block_size >> 2 -" |
| 1164 | " __memory_pool_min_block_size\n\t\t" |
| 1165 | "__memory_pool_max_block_size = __memory_pool_max_block_size >> 2\n\t\t" |
| 1166 | "\\macro_name %(\\n_max * 4) \\name\n\t" |
| 1167 | ".endif\n\t" |
| 1168 | ".endm\n"); |
| 1169 | |
| 1170 | /* |
| 1171 | * Build quad blocks |
| 1172 | * Macro allocates space in memory for the array of k_mem_pool_quad_block |
| 1173 | * structures and recursively calls itself for the next array, 4 times |
| 1174 | * larger. |
| 1175 | * The followig global symbols need to be initialized: |
| 1176 | * __memory_pool_max_block_size - maximal size of the memory block |
| 1177 | * __memory_pool_min_block_size - minimal size of the memory block |
| 1178 | * __memory_pool_quad_block_size - sizeof(struct k_mem_pool_quad_block) |
| 1179 | */ |
| 1180 | __asm__(".macro _build_quad_blocks n_max, name\n\t" |
| 1181 | "_mem_pool_quad_blocks_\\name\\()_\\n_max:\n\t" |
| 1182 | ".skip __memory_pool_quad_block_size * \\n_max >> 2\n\t" |
| 1183 | ".if \\n_max % 4\n\t\t" |
| 1184 | ".skip __memory_pool_quad_block_size\n\t" |
| 1185 | ".endif\n\t" |
| 1186 | "__do_recurse _build_quad_blocks \\name \\n_max\n\t" |
| 1187 | ".endm\n"); |
| 1188 | |
| 1189 | /* |
| 1190 | * Build block sets and initialize them |
| 1191 | * Macro initializes the k_mem_pool_block_set structure and |
| 1192 | * recursively calls itself for the next one. |
| 1193 | * The followig global symbols need to be initialized: |
| 1194 | * __memory_pool_max_block_size - maximal size of the memory block |
| 1195 | * __memory_pool_min_block_size - minimal size of the memory block |
| 1196 | * __memory_pool_block_set_count, the number of the elements in the |
| 1197 | * block set array must be set to 0. Macro calculates it's real |
| 1198 | * value. |
| 1199 | * Since the macro initializes pointers to an array of k_mem_pool_quad_block |
| 1200 | * structures, _build_quad_blocks must be called prior it. |
| 1201 | */ |
| 1202 | __asm__(".macro _build_block_set n_max, name\n\t" |
| 1203 | ".int __memory_pool_max_block_size\n\t" /* block_size */ |
| 1204 | ".if \\n_max % 4\n\t\t" |
| 1205 | ".int \\n_max >> 2 + 1\n\t" /* nr_of_entries */ |
| 1206 | ".else\n\t\t" |
| 1207 | ".int \\n_max >> 2\n\t" |
| 1208 | ".endif\n\t" |
| 1209 | ".int _mem_pool_quad_blocks_\\name\\()_\\n_max\n\t" /* quad_block */ |
| 1210 | ".int 0\n\t" /* count */ |
| 1211 | "__memory_pool_block_set_count = __memory_pool_block_set_count + 1\n\t" |
| 1212 | "__do_recurse _build_block_set \\name \\n_max\n\t" |
| 1213 | ".endm\n"); |
| 1214 | |
| 1215 | /* |
| 1216 | * Build a memory pool structure and initialize it |
| 1217 | * Macro uses __memory_pool_block_set_count global symbol, |
| 1218 | * block set addresses and buffer address, it may be called only after |
| 1219 | * _build_block_set |
| 1220 | */ |
| 1221 | __asm__(".macro _build_mem_pool name, min_size, max_size, n_max\n\t" |
| 1222 | ".pushsection ._k_memory_pool,\"aw\"," |
| 1223 | _SECTION_TYPE_SIGN "progbits\n\t" |
| 1224 | ".globl \\name\n\t" |
| 1225 | "\\name:\n\t" |
| 1226 | ".int \\max_size\n\t" /* max_block_size */ |
| 1227 | ".int \\min_size\n\t" /* min_block_size */ |
| 1228 | ".int \\n_max\n\t" /* nr_of_maxblocks */ |
| 1229 | ".int __memory_pool_block_set_count\n\t" /* nr_of_block_sets */ |
| 1230 | ".int _mem_pool_block_sets_\\name\n\t" /* block_set */ |
| 1231 | ".int _mem_pool_buffer_\\name\n\t" /* bufblock */ |
| 1232 | ".int 0\n\t" /* wait_q->head */ |
| 1233 | ".int 0\n\t" /* wait_q->next */ |
| 1234 | ".popsection\n\t" |
| 1235 | ".endm\n"); |
| 1236 | |
| 1237 | #define _MEMORY_POOL_QUAD_BLOCK_DEFINE(name, min_size, max_size, n_max) \ |
| 1238 | __asm__(".pushsection ._k_memory_pool.struct,\"aw\"," \ |
| 1239 | _SECTION_TYPE_SIGN "progbits\n\t"); \ |
| 1240 | __asm__("__memory_pool_min_block_size = " STRINGIFY(min_size) "\n\t"); \ |
| 1241 | __asm__("__memory_pool_max_block_size = " STRINGIFY(max_size) "\n\t"); \ |
| 1242 | __asm__("_build_quad_blocks " STRINGIFY(n_max) " " \ |
| 1243 | STRINGIFY(name) "\n\t"); \ |
| 1244 | __asm__(".popsection\n\t") |
| 1245 | |
| 1246 | #define _MEMORY_POOL_BLOCK_SETS_DEFINE(name, min_size, max_size, n_max) \ |
| 1247 | __asm__("__memory_pool_block_set_count = 0\n\t"); \ |
| 1248 | __asm__("__memory_pool_max_block_size = " STRINGIFY(max_size) "\n\t"); \ |
| 1249 | __asm__(".pushsection ._k_memory_pool.struct,\"aw\"," \ |
| 1250 | _SECTION_TYPE_SIGN "progbits\n\t"); \ |
| 1251 | __asm__("_mem_pool_block_sets_" STRINGIFY(name) ":\n\t"); \ |
| 1252 | __asm__("_build_block_set " STRINGIFY(n_max) " " \ |
| 1253 | STRINGIFY(name) "\n\t"); \ |
| 1254 | __asm__("_mem_pool_block_set_count_" STRINGIFY(name) ":\n\t"); \ |
| 1255 | __asm__(".int __memory_pool_block_set_count\n\t"); \ |
| 1256 | __asm__(".popsection\n\t"); \ |
| 1257 | extern uint32_t _mem_pool_block_set_count_##name; \ |
| 1258 | extern struct k_mem_pool_block_set _mem_pool_block_sets_##name[] |
| 1259 | |
| 1260 | #define _MEMORY_POOL_BUFFER_DEFINE(name, max_size, n_max) \ |
| 1261 | char __noinit _mem_pool_buffer_##name[(max_size) * (n_max)] |
| 1262 | |
| 1263 | #define K_MEMORY_POOL_DEFINE(name, min_size, max_size, n_max) \ |
| 1264 | _MEMORY_POOL_QUAD_BLOCK_DEFINE(name, min_size, max_size, n_max); \ |
| 1265 | _MEMORY_POOL_BLOCK_SETS_DEFINE(name, min_size, max_size, n_max); \ |
| 1266 | _MEMORY_POOL_BUFFER_DEFINE(name, max_size, n_max); \ |
| 1267 | __asm__("_build_mem_pool " STRINGIFY(name) " " STRINGIFY(min_size) " " \ |
| 1268 | STRINGIFY(max_size) " " STRINGIFY(n_max) "\n\t"); \ |
| 1269 | extern struct k_mem_pool name |
| 1270 | |
| 1271 | /* |
| 1272 | * Dummy function that assigns the value of sizeof(struct k_mem_pool_quad_block) |
| 1273 | * to __memory_pool_quad_block_size absolute symbol. |
| 1274 | * This function does not get called, but compiler calculates the value and |
| 1275 | * assigns it to the absolute symbol, that, in turn is used by assembler macros. |
| 1276 | */ |
| 1277 | static void __attribute__ ((used)) __k_mem_pool_quad_block_size_define(void) |
| 1278 | { |
| 1279 | __asm__(".globl __memory_pool_quad_block_size\n\t" |
| 1280 | "__memory_pool_quad_block_size = %c0\n\t" |
| 1281 | : |
| 1282 | : "n"(sizeof(struct k_mem_pool_quad_block))); |
| 1283 | } |
| 1284 | |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 1285 | #define K_MEM_POOL_SIZE(max_block_size, num_max_blocks) \ |
| 1286 | (sizeof(struct k_mem_pool) + ((max_block_size) * (num_max_blocks))) |
| 1287 | |
Dmitriy Korovkin | 3c42688 | 2016-09-01 18:14:17 -0400 | [diff] [blame] | 1288 | extern int k_mem_pool_alloc(struct k_mem_pool *pool, struct k_mem_block *block, |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 1289 | int size, int32_t timeout); |
| 1290 | extern void k_mem_pool_free(struct k_mem_block *block); |
Dmitriy Korovkin | 3c42688 | 2016-09-01 18:14:17 -0400 | [diff] [blame] | 1291 | extern void k_mem_pool_defrag(struct k_mem_pool *pool); |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 1292 | extern void *k_malloc(uint32_t size); |
| 1293 | extern void k_free(void *p); |
| 1294 | |
| 1295 | /* |
| 1296 | * legacy.h must be before arch/cpu.h to allow the ioapic/loapic drivers to |
| 1297 | * hook into the device subsystem, which itself uses nanokernel semaphores, |
| 1298 | * and thus currently requires the definition of nano_sem. |
| 1299 | */ |
| 1300 | #include <legacy.h> |
| 1301 | #include <arch/cpu.h> |
| 1302 | |
| 1303 | /* |
| 1304 | * private APIs that are utilized by one or more public APIs |
| 1305 | */ |
| 1306 | |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 1307 | extern int _is_thread_essential(void); |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 1308 | extern void _init_static_threads(void); |
| 1309 | |
| 1310 | #ifdef __cplusplus |
| 1311 | } |
| 1312 | #endif |
| 1313 | |
| 1314 | #endif /* _kernel__h_ */ |