user_work.c 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /*
  2. * Copyright (c) 2018 Intel Corporation
  3. * Copyright (c) 2016 Wind River Systems, Inc.
  4. *
  5. * SPDX-License-Identifier: Apache-2.0
  6. */
  7. #include <kernel.h>
  8. static void z_work_user_q_main(void *work_q_ptr, void *p2, void *p3)
  9. {
  10. struct k_work_user_q *work_q = work_q_ptr;
  11. uint32_t start_time, stop_time;
  12. ARG_UNUSED(p2);
  13. ARG_UNUSED(p3);
  14. while (true) {
  15. struct k_work_user *work;
  16. k_work_user_handler_t handler;
  17. work = k_queue_get(&work_q->queue, K_FOREVER);
  18. if (work == NULL) {
  19. continue;
  20. }
  21. handler = work->handler;
  22. __ASSERT(handler != NULL, "handler must be provided");
  23. /* Reset pending state so it can be resubmitted by handler */
  24. if (atomic_test_and_clear_bit(&work->flags,
  25. K_WORK_USER_STATE_PENDING)) {
  26. handler(work);
  27. stop_time = k_uptime_get_32();
  28. if ((stop_time - start_time) > 10) {
  29. printk("work %p run too long %d ms!!!\n", handler, stop_time - start_time);
  30. }
  31. }
  32. /* Make sure we don't hog up the CPU if the FIFO never (or
  33. * very rarely) gets empty.
  34. */
  35. k_yield();
  36. }
  37. }
  38. void k_work_user_queue_start(struct k_work_user_q *work_q, k_thread_stack_t *stack,
  39. size_t stack_size, int prio, const char *name)
  40. {
  41. k_queue_init(&work_q->queue);
  42. /* Created worker thread will inherit object permissions and memory
  43. * domain configuration of the caller
  44. */
  45. k_thread_create(&work_q->thread, stack, stack_size, z_work_user_q_main,
  46. work_q, NULL, NULL, prio, K_USER | K_INHERIT_PERMS,
  47. K_FOREVER);
  48. k_object_access_grant(&work_q->queue, &work_q->thread);
  49. if (name != NULL) {
  50. k_thread_name_set(&work_q->thread, name);
  51. }
  52. k_thread_start(&work_q->thread);
  53. }