ctf_top.c 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297
  1. /*
  2. * Copyright (c) 2018 Oticon A/S
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <zephyr.h>
  7. #include <kernel_structs.h>
  8. #include <kernel_internal.h>
  9. #include <ctf_top.h>
  10. static void _get_thread_name(struct k_thread *thread,
  11. ctf_bounded_string_t *name)
  12. {
  13. const char *tname = k_thread_name_get(thread);
  14. if (tname != NULL && tname[0] != '\0') {
  15. strncpy(name->buf, tname, sizeof(name->buf));
  16. /* strncpy may not always null-terminate */
  17. name->buf[sizeof(name->buf) - 1] = 0;
  18. }
  19. }
  20. void sys_trace_k_thread_switched_out(void)
  21. {
  22. ctf_bounded_string_t name = { "unknown" };
  23. struct k_thread *thread;
  24. thread = k_current_get();
  25. _get_thread_name(thread, &name);
  26. ctf_top_thread_switched_out((uint32_t)(uintptr_t)thread, name);
  27. }
  28. void sys_trace_k_thread_switched_in(void)
  29. {
  30. struct k_thread *thread;
  31. ctf_bounded_string_t name = { "unknown" };
  32. thread = k_current_get();
  33. _get_thread_name(thread, &name);
  34. ctf_top_thread_switched_in((uint32_t)(uintptr_t)thread, name);
  35. }
  36. void sys_trace_k_thread_priority_set(struct k_thread *thread)
  37. {
  38. ctf_bounded_string_t name = { "unknown" };
  39. _get_thread_name(thread, &name);
  40. ctf_top_thread_priority_set((uint32_t)(uintptr_t)thread,
  41. thread->base.prio, name);
  42. }
  43. void sys_trace_k_thread_create(struct k_thread *thread, size_t stack_size, int prio)
  44. {
  45. ctf_bounded_string_t name = { "unknown" };
  46. _get_thread_name(thread, &name);
  47. ctf_top_thread_create(
  48. (uint32_t)(uintptr_t)thread,
  49. thread->base.prio,
  50. name
  51. );
  52. #if defined(CONFIG_THREAD_STACK_INFO)
  53. ctf_top_thread_info(
  54. (uint32_t)(uintptr_t)thread,
  55. name,
  56. thread->stack_info.start,
  57. thread->stack_info.size
  58. );
  59. #endif
  60. }
  61. void sys_trace_k_thread_abort(struct k_thread *thread)
  62. {
  63. ctf_bounded_string_t name = { "unknown" };
  64. _get_thread_name(thread, &name);
  65. ctf_top_thread_abort((uint32_t)(uintptr_t)thread, name);
  66. }
  67. void sys_trace_k_thread_suspend(struct k_thread *thread)
  68. {
  69. ctf_bounded_string_t name = { "unknown" };
  70. _get_thread_name(thread, &name);
  71. ctf_top_thread_suspend((uint32_t)(uintptr_t)thread, name);
  72. }
  73. void sys_trace_k_thread_resume(struct k_thread *thread)
  74. {
  75. ctf_bounded_string_t name = { "unknown" };
  76. _get_thread_name(thread, &name);
  77. ctf_top_thread_resume((uint32_t)(uintptr_t)thread, name);
  78. }
  79. void sys_trace_k_thread_ready(struct k_thread *thread)
  80. {
  81. ctf_bounded_string_t name = { "unknown" };
  82. _get_thread_name(thread, &name);
  83. ctf_top_thread_ready((uint32_t)(uintptr_t)thread, name);
  84. }
  85. void sys_trace_k_thread_start(struct k_thread *thread)
  86. {
  87. }
  88. void sys_trace_k_thread_pend(struct k_thread *thread)
  89. {
  90. ctf_bounded_string_t name = { "unknown" };
  91. _get_thread_name(thread, &name);
  92. ctf_top_thread_pend((uint32_t)(uintptr_t)thread, name);
  93. }
  94. void sys_trace_k_thread_info(struct k_thread *thread)
  95. {
  96. #if defined(CONFIG_THREAD_STACK_INFO)
  97. ctf_bounded_string_t name = { "unknown" };
  98. _get_thread_name(thread, &name);
  99. ctf_top_thread_info(
  100. (uint32_t)(uintptr_t)thread,
  101. name,
  102. thread->stack_info.start,
  103. thread->stack_info.size
  104. );
  105. #endif
  106. }
  107. void sys_trace_k_thread_name_set(struct k_thread *thread, int ret)
  108. {
  109. ctf_bounded_string_t name = { "unknown" };
  110. _get_thread_name(thread, &name);
  111. ctf_top_thread_name_set(
  112. (uint32_t)(uintptr_t)thread,
  113. name
  114. );
  115. }
  116. void sys_trace_isr_enter(void)
  117. {
  118. ctf_top_isr_enter();
  119. }
  120. void sys_trace_isr_exit(void)
  121. {
  122. ctf_top_isr_exit();
  123. }
  124. void sys_trace_isr_exit_to_scheduler(void)
  125. {
  126. ctf_top_isr_exit_to_scheduler();
  127. }
  128. void sys_trace_idle(void)
  129. {
  130. ctf_top_idle();
  131. }
  132. /* Semaphore */
  133. void sys_trace_k_sem_init(struct k_sem *sem, int ret)
  134. {
  135. ctf_top_semaphore_init(
  136. (uint32_t)(uintptr_t)sem,
  137. (int32_t)ret
  138. );
  139. }
  140. void sys_trace_k_sem_take_enter(struct k_sem *sem, k_timeout_t timeout)
  141. {
  142. ctf_top_semaphore_take_enter(
  143. (uint32_t)(uintptr_t)sem,
  144. k_ticks_to_ms_floor32((uint32_t)timeout.ticks)
  145. );
  146. }
  147. void sys_trace_k_sem_take_blocking(struct k_sem *sem, k_timeout_t timeout)
  148. {
  149. ctf_top_semaphore_take_blocking(
  150. (uint32_t)(uintptr_t)sem,
  151. k_ticks_to_ms_floor32((uint32_t)timeout.ticks)
  152. );
  153. }
  154. void sys_trace_k_sem_take_exit(struct k_sem *sem, k_timeout_t timeout, int ret)
  155. {
  156. ctf_top_semaphore_take_exit(
  157. (uint32_t)(uintptr_t)sem,
  158. k_ticks_to_ms_floor32((uint32_t)timeout.ticks),
  159. (uint32_t)ret
  160. );
  161. }
  162. void sys_trace_k_sem_reset(struct k_sem *sem)
  163. {
  164. ctf_top_semaphore_reset(
  165. (uint32_t)(uintptr_t)sem
  166. );
  167. }
  168. void sys_trace_k_sem_give_enter(struct k_sem *sem)
  169. {
  170. ctf_top_semaphore_give_enter(
  171. (uint32_t)(uintptr_t)sem
  172. );
  173. }
  174. void sys_trace_k_sem_give_exit(struct k_sem *sem)
  175. {
  176. ctf_top_semaphore_give_exit(
  177. (uint32_t)(uintptr_t)sem
  178. );
  179. }
  180. /* Mutex */
  181. void sys_trace_k_mutex_init(struct k_mutex *mutex, int ret)
  182. {
  183. ctf_top_mutex_init(
  184. (uint32_t)(uintptr_t)mutex,
  185. (int32_t)ret
  186. );
  187. }
  188. void sys_trace_k_mutex_lock_enter(struct k_mutex *mutex, k_timeout_t timeout)
  189. {
  190. ctf_top_mutex_lock_enter(
  191. (uint32_t)(uintptr_t)mutex,
  192. k_ticks_to_ms_floor32((uint32_t)timeout.ticks)
  193. );
  194. }
  195. void sys_trace_k_mutex_lock_blocking(struct k_mutex *mutex, k_timeout_t timeout)
  196. {
  197. ctf_top_mutex_lock_blocking(
  198. (uint32_t)(uintptr_t)mutex,
  199. k_ticks_to_ms_floor32((uint32_t)timeout.ticks)
  200. );
  201. }
  202. void sys_trace_k_mutex_lock_exit(struct k_mutex *mutex, k_timeout_t timeout, int ret)
  203. {
  204. ctf_top_mutex_lock_exit(
  205. (uint32_t)(uintptr_t)mutex,
  206. k_ticks_to_ms_floor32((uint32_t)timeout.ticks),
  207. (int32_t)ret
  208. );
  209. }
  210. void sys_trace_k_mutex_unlock_enter(struct k_mutex *mutex)
  211. {
  212. ctf_top_mutex_unlock_enter(
  213. (uint32_t)(uintptr_t)mutex
  214. );
  215. }
  216. void sys_trace_k_mutex_unlock_exit(struct k_mutex *mutex, int ret)
  217. {
  218. ctf_top_mutex_unlock_exit(
  219. (uint32_t)(uintptr_t)mutex,
  220. (int32_t)ret
  221. );
  222. }
  223. /* Timer */
  224. void sys_trace_k_timer_init(struct k_timer *timer, k_timer_expiry_t expiry_fn,
  225. k_timer_expiry_t stop_fn)
  226. {
  227. }
  228. void sys_trace_k_timer_start(struct k_timer *timer, k_timeout_t duration,
  229. k_timeout_t period)
  230. {
  231. }
  232. void sys_trace_k_timer_stop(struct k_timer *timer)
  233. {
  234. }
  235. void sys_trace_k_timer_status_sync_blocking(struct k_timer *timer)
  236. {
  237. }
  238. void sys_trace_k_timer_status_sync_exit(struct k_timer *timer, uint32_t result)
  239. {
  240. }