os_wrapper.c 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  1. /*
  2. * Copyright (c) 2017 Actions Semi Co., Ltd.
  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. * Author: wh<wanghui@actions-semi.com>
  16. *
  17. * Change log:
  18. * 2017/7/7: Created by wh.
  19. */
  20. #include "os_common_api.h"
  21. #include "string.h"
  22. #include <zephyr.h>
  23. #include <sys/atomic.h>
  24. #define MAX_THREAD_TERMINAL_NUM 3
  25. struct thread_terminal_info_t{
  26. os_thread *wait_terminal_thread;
  27. os_sem terminal_sem;
  28. };
  29. static struct thread_terminal_info_t thread_terminal_info[MAX_THREAD_TERMINAL_NUM] = {0};
  30. /**thread function */
  31. int os_thread_create(char *stack, size_t stack_size,
  32. void (*entry)(void *, void *, void*),
  33. void *p1, void *p2, void *p3,
  34. int prio, u32_t options, int delay) {
  35. k_tid_t tid = NULL;
  36. os_thread *thread = NULL;
  37. thread = (os_thread *)stack;
  38. tid = k_thread_create(thread, (os_thread_stack_t *)&stack[sizeof(os_thread)],
  39. stack_size - sizeof(os_thread),
  40. entry,
  41. p1, p2, p3,
  42. prio,
  43. options,
  44. SYS_TIMEOUT_MS(delay));
  45. return (int)tid;
  46. }
  47. int os_thread_prepare_terminal(int tid)
  48. {
  49. int ret = 0;
  50. struct thread_terminal_info_t *terminal_info = NULL;
  51. os_sched_lock();
  52. for (int i = 0; i < MAX_THREAD_TERMINAL_NUM; i++){
  53. if(!thread_terminal_info[i].wait_terminal_thread) {
  54. terminal_info = &thread_terminal_info[i];
  55. break;
  56. }
  57. }
  58. if (!terminal_info) {
  59. SYS_LOG_ERR("%d busy\n", tid);
  60. ret = -EBUSY;
  61. goto exit;
  62. }
  63. terminal_info->wait_terminal_thread = (os_thread *)tid;
  64. os_sem_init(&terminal_info->terminal_sem, 0, 1);
  65. SYS_LOG_INF(" 0x%x ok\n",tid);
  66. exit:
  67. os_sched_unlock();
  68. return ret;
  69. }
  70. int os_thread_wait_terminal(int tid)
  71. {
  72. int ret = 0;
  73. struct thread_terminal_info_t *terminal_info = NULL;
  74. os_sched_lock();
  75. for (int i = 0; i < MAX_THREAD_TERMINAL_NUM; i++){
  76. if((uintptr_t)thread_terminal_info[i].wait_terminal_thread == tid) {
  77. terminal_info = &thread_terminal_info[i];
  78. }
  79. }
  80. os_sched_unlock();
  81. if (!terminal_info) {
  82. SYS_LOG_ERR("terminal tid %d not found\n",tid);
  83. ret = -EBUSY;
  84. goto exit;
  85. }
  86. if (k_thread_join(terminal_info->wait_terminal_thread, SYS_TIMEOUT_MS(5000))) {
  87. SYS_LOG_ERR("timeout \n");
  88. ret = -EBUSY;
  89. goto exit;
  90. }
  91. os_sched_lock();
  92. terminal_info->wait_terminal_thread = NULL;
  93. os_sched_unlock();
  94. SYS_LOG_INF(" 0x%x ok\n",tid);
  95. exit:
  96. return ret;
  97. }
  98. const char *os_thread_get_name_by_prio(int prio)
  99. {
  100. struct k_thread *thread_list = (struct k_thread *)(_kernel.threads);
  101. unsigned int key = irq_lock();
  102. while (thread_list != NULL) {
  103. int thread_prio = k_thread_priority_get(thread_list);
  104. if (prio == thread_prio) {
  105. break;
  106. }
  107. thread_list = (struct k_thread *)thread_list->next_thread;
  108. }
  109. irq_unlock(key);
  110. if (thread_list) {
  111. return k_thread_name_get(thread_list);
  112. }
  113. return "NULL";
  114. }
  115. static bool low_latency_mode = true;
  116. int system_check_low_latencey_mode(void)
  117. {
  118. #ifdef CONFIG_OS_LOW_LATENCY_MODE
  119. return low_latency_mode ? 1 : 0;
  120. #else
  121. return 0;
  122. #endif
  123. }
  124. void system_set_low_latencey_mode(bool low_latencey)
  125. {
  126. low_latency_mode = low_latencey;
  127. }
  128. s32_t os_sleep(int timeout)
  129. {
  130. return k_sleep(SYS_TIMEOUT_MS(timeout));
  131. }
  132. int os_sem_take(os_sem *sem, s32_t timeout)
  133. {
  134. return k_sem_take(sem, SYS_TIMEOUT_MS(timeout));
  135. }
  136. int os_mutex_lock(os_mutex * mutex, s32_t timeout)
  137. {
  138. return k_mutex_lock(mutex, SYS_TIMEOUT_MS(timeout));
  139. }
  140. int os_delayed_work_submit(os_delayed_work *work, s32_t delay)
  141. {
  142. return k_delayed_work_submit(work, SYS_TIMEOUT_MS(delay));
  143. }
  144. int os_delayed_work_submit_to_queue(os_work_q *work_q, os_delayed_work *work, s32_t delay)
  145. {
  146. return k_delayed_work_submit_to_queue(work_q, work, SYS_TIMEOUT_MS(delay));
  147. }
  148. void *os_fifo_get(os_fifo *fifo, int32_t timeout)
  149. {
  150. return k_fifo_get(fifo, SYS_TIMEOUT_MS(timeout));
  151. }
  152. int os_msgq_put(os_msgq *msgq, const void *data, int32_t timeout)
  153. {
  154. return k_msgq_put(msgq, data, SYS_TIMEOUT_MS(timeout));
  155. }
  156. int os_msgq_get(os_msgq *msgq, void *data, int32_t timeout)
  157. {
  158. return k_msgq_get(msgq, data, SYS_TIMEOUT_MS(timeout));
  159. }
  160. bool os_is_in_isr(void)
  161. {
  162. return k_is_in_isr();
  163. }
  164. void os_printk(const char *fmt, ...)
  165. {
  166. va_list ap;
  167. va_start(ap, fmt);
  168. if (IS_ENABLED(CONFIG_LOG_PRINTK)) {
  169. log_printk(fmt, ap);
  170. } else {
  171. vprintk(fmt, ap);
  172. }
  173. va_end(ap);
  174. }
  175. #ifndef CONFIG_ACTLOG_USE_NANOLOG
  176. void actlog_printk_nano(uint32_t pack_data, const char *fmt, ...)
  177. {
  178. va_list ap;
  179. va_start(ap, fmt);
  180. if (IS_ENABLED(CONFIG_LOG_PRINTK)) {
  181. log_printk(fmt, ap);
  182. } else {
  183. vprintk(fmt, ap);
  184. }
  185. va_end(ap);
  186. }
  187. #endif