ctf_top.h 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293
  1. /*
  2. * Copyright (c) 2018 Oticon A/S
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef SUBSYS_DEBUG_TRACING_CTF_TOP_H
  7. #define SUBSYS_DEBUG_TRACING_CTF_TOP_H
  8. #include <stddef.h>
  9. #include <string.h>
  10. #include <ctf_map.h>
  11. #include <tracing/tracing_format.h>
  12. /* Limit strings to 20 bytes to optimize bandwidth */
  13. #define CTF_MAX_STRING_LEN 20
  14. /*
  15. * Obtain a field's size at compile-time.
  16. */
  17. #define CTF_INTERNAL_FIELD_SIZE(x) + sizeof(x)
  18. /*
  19. * Append a field to current event-packet.
  20. */
  21. #define CTF_INTERNAL_FIELD_APPEND(x) \
  22. { \
  23. memcpy(epacket_cursor, &(x), sizeof(x)); \
  24. epacket_cursor += sizeof(x); \
  25. }
  26. /*
  27. * Gather fields to a contiguous event-packet, then atomically emit.
  28. */
  29. #define CTF_GATHER_FIELDS(...) \
  30. { \
  31. uint8_t epacket[0 MAP(CTF_INTERNAL_FIELD_SIZE, ##__VA_ARGS__)]; \
  32. uint8_t *epacket_cursor = &epacket[0]; \
  33. \
  34. MAP(CTF_INTERNAL_FIELD_APPEND, ##__VA_ARGS__) \
  35. tracing_format_raw_data(epacket, sizeof(epacket)); \
  36. }
  37. #ifdef CONFIG_TRACING_CTF_TIMESTAMP
  38. #define CTF_EVENT(...) \
  39. { \
  40. const uint32_t tstamp = k_cyc_to_ns_floor64(k_cycle_get_32()); \
  41. \
  42. CTF_GATHER_FIELDS(tstamp, __VA_ARGS__) \
  43. }
  44. #else
  45. #define CTF_EVENT(...) \
  46. { \
  47. CTF_GATHER_FIELDS(__VA_ARGS__) \
  48. }
  49. #endif
  50. /* Anonymous compound literal with 1 member. Legal since C99.
  51. * This permits us to take the address of literals, like so:
  52. * &CTF_LITERAL(int, 1234)
  53. *
  54. * This may be required if a ctf_bottom layer uses memcpy.
  55. *
  56. * NOTE string literals already support address-of and sizeof,
  57. * so string literals should not be wrapped with CTF_LITERAL.
  58. */
  59. #define CTF_LITERAL(type, value) ((type) { (type)(value) })
  60. typedef enum {
  61. CTF_EVENT_THREAD_SWITCHED_OUT = 0x10,
  62. CTF_EVENT_THREAD_SWITCHED_IN = 0x11,
  63. CTF_EVENT_THREAD_PRIORITY_SET = 0x12,
  64. CTF_EVENT_THREAD_CREATE = 0x13,
  65. CTF_EVENT_THREAD_ABORT = 0x14,
  66. CTF_EVENT_THREAD_SUSPEND = 0x15,
  67. CTF_EVENT_THREAD_RESUME = 0x16,
  68. CTF_EVENT_THREAD_READY = 0x17,
  69. CTF_EVENT_THREAD_PENDING = 0x18,
  70. CTF_EVENT_THREAD_INFO = 0x19,
  71. CTF_EVENT_THREAD_NAME_SET = 0x1A,
  72. CTF_EVENT_ISR_ENTER = 0x1B,
  73. CTF_EVENT_ISR_EXIT = 0x1C,
  74. CTF_EVENT_ISR_EXIT_TO_SCHEDULER = 0x1D,
  75. CTF_EVENT_IDLE = 0x1E,
  76. CTF_EVENT_ID_START_CALL = 0x1F,
  77. CTF_EVENT_ID_END_CALL = 0x20,
  78. CTF_EVENT_SEMAPHORE_INIT = 0x21,
  79. CTF_EVENT_SEMAPHORE_GIVE_ENTER = 0x22,
  80. CTF_EVENT_SEMAPHORE_GIVE_EXIT = 0x23,
  81. CTF_EVENT_SEMAPHORE_TAKE_ENTER = 0x24,
  82. CTF_EVENT_SEMAPHORE_TAKE_BLOCKING = 0x25,
  83. CTF_EVENT_SEMAPHORE_TAKE_EXIT = 0x26,
  84. CTF_EVENT_SEMAPHORE_RESET = 0x27,
  85. CTF_EVENT_MUTEX_INIT = 0x28,
  86. CTF_EVENT_MUTEX_LOCK_ENTER = 0x29,
  87. CTF_EVENT_MUTEX_LOCK_BLOCKING = 0x2A,
  88. CTF_EVENT_MUTEX_LOCK_EXIT = 0x2B,
  89. CTF_EVENT_MUTEX_UNLOCK_ENTER = 0x2C,
  90. CTF_EVENT_MUTEX_UNLOCK_EXIT = 0x2D,
  91. } ctf_event_t;
  92. typedef struct {
  93. char buf[CTF_MAX_STRING_LEN];
  94. } ctf_bounded_string_t;
  95. static inline void ctf_top_thread_switched_out(uint32_t thread_id,
  96. ctf_bounded_string_t name)
  97. {
  98. CTF_EVENT(CTF_LITERAL(uint8_t, CTF_EVENT_THREAD_SWITCHED_OUT),
  99. thread_id, name);
  100. }
  101. static inline void ctf_top_thread_switched_in(uint32_t thread_id,
  102. ctf_bounded_string_t name)
  103. {
  104. CTF_EVENT(CTF_LITERAL(uint8_t, CTF_EVENT_THREAD_SWITCHED_IN), thread_id,
  105. name);
  106. }
  107. static inline void ctf_top_thread_priority_set(uint32_t thread_id, int8_t prio,
  108. ctf_bounded_string_t name)
  109. {
  110. CTF_EVENT(CTF_LITERAL(uint8_t, CTF_EVENT_THREAD_PRIORITY_SET),
  111. thread_id, name, prio);
  112. }
  113. static inline void ctf_top_thread_create(uint32_t thread_id, int8_t prio,
  114. ctf_bounded_string_t name)
  115. {
  116. CTF_EVENT(CTF_LITERAL(uint8_t, CTF_EVENT_THREAD_CREATE), thread_id,
  117. name);
  118. }
  119. static inline void ctf_top_thread_abort(uint32_t thread_id,
  120. ctf_bounded_string_t name)
  121. {
  122. CTF_EVENT(CTF_LITERAL(uint8_t, CTF_EVENT_THREAD_ABORT), thread_id,
  123. name);
  124. }
  125. static inline void ctf_top_thread_suspend(uint32_t thread_id,
  126. ctf_bounded_string_t name)
  127. {
  128. CTF_EVENT(CTF_LITERAL(uint8_t, CTF_EVENT_THREAD_SUSPEND), thread_id,
  129. name);
  130. }
  131. static inline void ctf_top_thread_resume(uint32_t thread_id,
  132. ctf_bounded_string_t name)
  133. {
  134. CTF_EVENT(CTF_LITERAL(uint8_t, CTF_EVENT_THREAD_RESUME), thread_id,
  135. name);
  136. }
  137. static inline void ctf_top_thread_ready(uint32_t thread_id,
  138. ctf_bounded_string_t name)
  139. {
  140. CTF_EVENT(CTF_LITERAL(uint8_t, CTF_EVENT_THREAD_READY), thread_id,
  141. name);
  142. }
  143. static inline void ctf_top_thread_pend(uint32_t thread_id,
  144. ctf_bounded_string_t name)
  145. {
  146. CTF_EVENT(CTF_LITERAL(uint8_t, CTF_EVENT_THREAD_PENDING), thread_id,
  147. name);
  148. }
  149. static inline void ctf_top_thread_info(uint32_t thread_id,
  150. ctf_bounded_string_t name,
  151. uint32_t stack_base, uint32_t stack_size)
  152. {
  153. CTF_EVENT(CTF_LITERAL(uint8_t, CTF_EVENT_THREAD_INFO), thread_id, name,
  154. stack_base, stack_size);
  155. }
  156. static inline void ctf_top_thread_name_set(uint32_t thread_id,
  157. ctf_bounded_string_t name)
  158. {
  159. CTF_EVENT(CTF_LITERAL(uint8_t, CTF_EVENT_THREAD_NAME_SET), thread_id,
  160. name);
  161. }
  162. static inline void ctf_top_isr_enter(void)
  163. {
  164. CTF_EVENT(CTF_LITERAL(uint8_t, CTF_EVENT_ISR_ENTER));
  165. }
  166. static inline void ctf_top_isr_exit(void)
  167. {
  168. CTF_EVENT(CTF_LITERAL(uint8_t, CTF_EVENT_ISR_EXIT));
  169. }
  170. static inline void ctf_top_isr_exit_to_scheduler(void)
  171. {
  172. CTF_EVENT(CTF_LITERAL(uint8_t, CTF_EVENT_ISR_EXIT_TO_SCHEDULER));
  173. }
  174. static inline void ctf_top_idle(void)
  175. {
  176. CTF_EVENT(CTF_LITERAL(uint8_t, CTF_EVENT_IDLE));
  177. }
  178. static inline void ctf_top_void(uint32_t id)
  179. {
  180. CTF_EVENT(CTF_LITERAL(uint8_t, CTF_EVENT_ID_START_CALL), id);
  181. }
  182. static inline void ctf_top_end_call(uint32_t id)
  183. {
  184. CTF_EVENT(CTF_LITERAL(uint8_t, CTF_EVENT_ID_END_CALL), id);
  185. }
  186. /* Semaphore */
  187. static inline void ctf_top_semaphore_init(uint32_t sem_id,
  188. int32_t ret)
  189. {
  190. CTF_EVENT(CTF_LITERAL(uint8_t, CTF_EVENT_SEMAPHORE_INIT), sem_id, ret);
  191. }
  192. static inline void ctf_top_semaphore_reset(uint32_t sem_id)
  193. {
  194. CTF_EVENT(CTF_LITERAL(uint8_t, CTF_EVENT_SEMAPHORE_RESET), sem_id);
  195. }
  196. static inline void ctf_top_semaphore_take_enter(uint32_t sem_id,
  197. uint32_t timeout)
  198. {
  199. CTF_EVENT(CTF_LITERAL(uint8_t, CTF_EVENT_SEMAPHORE_TAKE_ENTER), sem_id,
  200. timeout);
  201. }
  202. static inline void ctf_top_semaphore_take_blocking(uint32_t sem_id,
  203. uint32_t timeout)
  204. {
  205. CTF_EVENT(CTF_LITERAL(uint8_t, CTF_EVENT_SEMAPHORE_TAKE_BLOCKING),
  206. sem_id, timeout);
  207. }
  208. static inline void ctf_top_semaphore_take_exit(uint32_t sem_id,
  209. uint32_t timeout, int32_t ret)
  210. {
  211. CTF_EVENT(CTF_LITERAL(uint8_t, CTF_EVENT_SEMAPHORE_TAKE_EXIT), sem_id,
  212. timeout, ret);
  213. }
  214. static inline void ctf_top_semaphore_give_enter(uint32_t sem_id)
  215. {
  216. CTF_EVENT(CTF_LITERAL(uint8_t, CTF_EVENT_SEMAPHORE_GIVE_ENTER), sem_id);
  217. }
  218. static inline void ctf_top_semaphore_give_exit(uint32_t sem_id)
  219. {
  220. CTF_EVENT(CTF_LITERAL(uint8_t, CTF_EVENT_SEMAPHORE_GIVE_EXIT), sem_id);
  221. }
  222. /* Mutex */
  223. static inline void ctf_top_mutex_init(uint32_t mutex_id, int32_t ret)
  224. {
  225. CTF_EVENT(CTF_LITERAL(uint8_t, CTF_EVENT_MUTEX_INIT), mutex_id, ret);
  226. }
  227. static inline void ctf_top_mutex_lock_enter(uint32_t mutex_id, uint32_t timeout)
  228. {
  229. CTF_EVENT(CTF_LITERAL(uint8_t, CTF_EVENT_MUTEX_LOCK_ENTER), mutex_id,
  230. timeout);
  231. }
  232. static inline void ctf_top_mutex_lock_blocking(uint32_t mutex_id,
  233. uint32_t timeout)
  234. {
  235. CTF_EVENT(CTF_LITERAL(uint8_t, CTF_EVENT_MUTEX_LOCK_BLOCKING), mutex_id,
  236. timeout);
  237. }
  238. static inline void ctf_top_mutex_lock_exit(uint32_t mutex_id, uint32_t timeout,
  239. int32_t ret)
  240. {
  241. CTF_EVENT(CTF_LITERAL(uint8_t, CTF_EVENT_MUTEX_LOCK_EXIT), mutex_id,
  242. timeout, ret);
  243. }
  244. static inline void ctf_top_mutex_unlock_enter(uint32_t mutex_id)
  245. {
  246. CTF_EVENT(CTF_LITERAL(uint8_t, CTF_EVENT_MUTEX_UNLOCK_ENTER), mutex_id);
  247. }
  248. static inline void ctf_top_mutex_unlock_exit(uint32_t mutex_id, int32_t ret)
  249. {
  250. CTF_EVENT(CTF_LITERAL(uint8_t, CTF_EVENT_MUTEX_UNLOCK_EXIT), mutex_id);
  251. }
  252. #endif /* SUBSYS_DEBUG_TRACING_CTF_TOP_H */