tracing.h 53 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220
  1. /*
  2. * Copyright (c) 2018 Intel Corporation
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_TRACING_TRACING_H_
  7. #define ZEPHYR_INCLUDE_TRACING_TRACING_H_
  8. #include <kernel.h>
  9. /* Below IDs are user defined IDs used with systemview */
  10. #define SYS_TRACE_ID_USR_OFFSET (200u)
  11. #define SYS_TRACE_ID_TP_IRQ (1u + SYS_TRACE_ID_USR_OFFSET)
  12. #define SYS_TRACE_ID_TP_READ (2u + SYS_TRACE_ID_USR_OFFSET)
  13. #define SYS_TRACE_ID_KEY_READ (3u + SYS_TRACE_ID_USR_OFFSET)
  14. #define SYS_TRACE_ID_VSYNC (4u + SYS_TRACE_ID_USR_OFFSET)
  15. #define SYS_TRACE_ID_LCD_POST (5u + SYS_TRACE_ID_USR_OFFSET)
  16. #define SYS_TRACE_ID_DE_DRAW (6u + SYS_TRACE_ID_USR_OFFSET)
  17. #define SYS_TRACE_ID_GUI_INIT (20u + SYS_TRACE_ID_USR_OFFSET)
  18. #define SYS_TRACE_ID_GUI_DEINIT (21u + SYS_TRACE_ID_USR_OFFSET)
  19. #define SYS_TRACE_ID_GUI_CLEAR (22u + SYS_TRACE_ID_USR_OFFSET)
  20. #define SYS_TRACE_ID_GUI_TASK (23u + SYS_TRACE_ID_USR_OFFSET)
  21. #define SYS_TRACE_ID_GUI_INDEV_TASK (24u + SYS_TRACE_ID_USR_OFFSET)
  22. #define SYS_TRACE_ID_GUI_REFR_TASK (25u + SYS_TRACE_ID_USR_OFFSET)
  23. #define SYS_TRACE_ID_GUI_DISPLAY_CREATE (26u + SYS_TRACE_ID_USR_OFFSET)
  24. #define SYS_TRACE_ID_GUI_DISPLAY_DELETE (27u + SYS_TRACE_ID_USR_OFFSET)
  25. #define SYS_TRACE_ID_GUI_WIDGET_DRAW (28u + SYS_TRACE_ID_USR_OFFSET)
  26. #define SYS_TRACE_ID_GUI_WIDGET_CREATE (29u + SYS_TRACE_ID_USR_OFFSET)
  27. #define SYS_TRACE_ID_GUI_WIDGET_DELETE (30u + SYS_TRACE_ID_USR_OFFSET)
  28. #define SYS_TRACE_ID_GUI_DRAW_COMPLEX (31u + SYS_TRACE_ID_USR_OFFSET)
  29. #define SYS_TRACE_ID_GUI_UPDATE_LAYOUT (32u + SYS_TRACE_ID_USR_OFFSET)
  30. #define SYS_TRACE_ID_GUI_EVENT (33u + SYS_TRACE_ID_USR_OFFSET)
  31. #define SYS_TRACE_ID_GUI_WAIT (34u + SYS_TRACE_ID_USR_OFFSET)
  32. #define SYS_TRACE_ID_VIEW_CREATE (40u + SYS_TRACE_ID_USR_OFFSET)
  33. #define SYS_TRACE_ID_VIEW_PRELOAD (41u + SYS_TRACE_ID_USR_OFFSET)
  34. #define SYS_TRACE_ID_VIEW_LAYOUT (42u + SYS_TRACE_ID_USR_OFFSET)
  35. #define SYS_TRACE_ID_VIEW_PAUSE (43u + SYS_TRACE_ID_USR_OFFSET)
  36. #define SYS_TRACE_ID_VIEW_RESUME (44u + SYS_TRACE_ID_USR_OFFSET)
  37. #define SYS_TRACE_ID_VIEW_DELETE (45u + SYS_TRACE_ID_USR_OFFSET)
  38. #define SYS_TRACE_ID_VIEW_SETPROP (46u + SYS_TRACE_ID_USR_OFFSET)
  39. #define SYS_TRACE_ID_VIEW_DRAW (47u + SYS_TRACE_ID_USR_OFFSET)
  40. #define SYS_TRACE_ID_VIEW_POST (48u + SYS_TRACE_ID_USR_OFFSET)
  41. #define SYS_TRACE_ID_VIEW_PROC_CB (49u + SYS_TRACE_ID_USR_OFFSET)
  42. #define SYS_TRACE_ID_VIEW_NOTIFY_CB (50u + SYS_TRACE_ID_USR_OFFSET)
  43. #define SYS_TRACE_ID_VIEW_COMPRESS (51u + SYS_TRACE_ID_USR_OFFSET)
  44. #define SYS_TRACE_ID_VIEW_DECOMPRESS (52u + SYS_TRACE_ID_USR_OFFSET)
  45. #define SYS_TRACE_ID_VIEW_SWAPBUF (53u + SYS_TRACE_ID_USR_OFFSET)
  46. #define SYS_TRACE_ID_VIEW_UPDATE (54u + SYS_TRACE_ID_USR_OFFSET)
  47. #define SYS_TRACE_ID_RES_SCENE_LOAD (60u + SYS_TRACE_ID_USR_OFFSET)
  48. #define SYS_TRACE_ID_RES_PICS_LOAD (61u + SYS_TRACE_ID_USR_OFFSET)
  49. #define SYS_TRACE_ID_RES_STRS_LOAD (62u + SYS_TRACE_ID_USR_OFFSET)
  50. #define SYS_TRACE_ID_RES_BMP_LOAD_0 (63u + SYS_TRACE_ID_USR_OFFSET)
  51. #define SYS_TRACE_ID_RES_BMP_LOAD_1 (64u + SYS_TRACE_ID_USR_OFFSET)
  52. #define SYS_TRACE_ID_RES_BMP_LOAD_2 (65u + SYS_TRACE_ID_USR_OFFSET)
  53. #define SYS_TRACE_ID_RES_CHECK_PRELOAD (66u + SYS_TRACE_ID_USR_OFFSET)
  54. #define SYS_TRACE_ID_RES_PICS_PRELOAD (67u + SYS_TRACE_ID_USR_OFFSET)
  55. #define SYS_TRACE_ID_RES_UNLOAD (68u + SYS_TRACE_ID_USR_OFFSET)
  56. #define SYS_TRACE_ID_RES_SCENE_PRELOAD_0 (69u + SYS_TRACE_ID_USR_OFFSET)
  57. #define SYS_TRACE_ID_RES_SCENE_PRELOAD_1 (70u + SYS_TRACE_ID_USR_OFFSET)
  58. #define SYS_TRACE_ID_RES_SCENE_PRELOAD_2 (71u + SYS_TRACE_ID_USR_OFFSET)
  59. #define SYS_TRACE_ID_RES_SCENE_PRELOAD_3 (72u + SYS_TRACE_ID_USR_OFFSET)
  60. #if defined CONFIG_SEGGER_SYSTEMVIEW
  61. #include "tracing_sysview.h"
  62. #elif defined CONFIG_TRACING_CTF
  63. #include "tracing_ctf.h"
  64. #define sys_trace_void(id)
  65. #define sys_trace_end_call(id)
  66. #define sys_trace_end_call_u32(id, retv)
  67. #define sys_trace_u32(id, p1)
  68. #define sys_trace_u32x2(id, p1, p2)
  69. #define sys_trace_u32x3(id, p1, p2, p3)
  70. #define sys_trace_u32x4(id, p1, p2, p3, p4)
  71. #define sys_trace_u32x5(id, p1, p2, p3, p4, p5)
  72. #define sys_trace_u32x6(id, p1, p2, p3, p4, p5, p6)
  73. #define sys_trace_u32x7(id, p1, p2, p3, p4, p5, p6, p7)
  74. #define sys_trace_u32x8(id, p1, p2, p3, p4, p5, p6, p7, p8)
  75. #define sys_trace_u32x9(id, p1, p2, p3, p4, p5, p6, p7, p8, p9)
  76. #define sys_trace_u32x10(id, p1, p2, p3, p4, p5, p6, p7, p8, p9, p10)
  77. #define sys_trace_string(id, string)
  78. #elif defined CONFIG_TRACING_TEST
  79. #include "tracing_test.h"
  80. #define sys_trace_void(id)
  81. #define sys_trace_end_call(id)
  82. #define sys_trace_end_call_u32(id, retv)
  83. #define sys_trace_u32(id, p1)
  84. #define sys_trace_u32x2(id, p1, p2)
  85. #define sys_trace_u32x3(id, p1, p2, p3)
  86. #define sys_trace_u32x4(id, p1, p2, p3, p4)
  87. #define sys_trace_u32x5(id, p1, p2, p3, p4, p5)
  88. #define sys_trace_u32x6(id, p1, p2, p3, p4, p5, p6)
  89. #define sys_trace_u32x7(id, p1, p2, p3, p4, p5, p6, p7)
  90. #define sys_trace_u32x8(id, p1, p2, p3, p4, p5, p6, p7, p8)
  91. #define sys_trace_u32x9(id, p1, p2, p3, p4, p5, p6, p7, p8, p9)
  92. #define sys_trace_u32x10(id, p1, p2, p3, p4, p5, p6, p7, p8, p9, p10)
  93. #define sys_trace_string(id, string)
  94. #elif defined CONFIG_TRACING_USER
  95. #include "tracing_user.h"
  96. #else
  97. /**
  98. * @brief Tracing APIs
  99. * @defgroup tracing_apis Tracing APIs
  100. * @{
  101. */
  102. /**
  103. * @brief Can be called with any id signifying a new call
  104. * @param id ID of the operation that was started
  105. */
  106. #define sys_trace_void(id)
  107. /**
  108. * @brief Can be called with any id signifying ending a call
  109. * @param id ID of the operation that was completed
  110. */
  111. #define sys_trace_end_call(id)
  112. /**
  113. * @brief Can be called with any id signifying ending a call
  114. * @param id ID of the operation that was completed
  115. * @param retv return value of the operation that was completed
  116. */
  117. #define sys_trace_end_call_u32(id, retv)
  118. /**
  119. * @brief Can be called with any id signifying a new call
  120. * @param id ID of the operation that was started
  121. * @param p1 1st integer parameter
  122. */
  123. #define sys_trace_u32(id, p1)
  124. /**
  125. * @brief Can be called with any id signifying a new call
  126. * @param id ID of the operation that was started
  127. * @param p1 1st integer parameter
  128. * @param p2 2nd integer parameter
  129. */
  130. #define sys_trace_u32x2(id, p1, p2)
  131. /**
  132. * @brief Can be called with any id signifying a new call
  133. * @param id ID of the operation that was started
  134. * @param p1 1st integer parameter
  135. * @param p2 2nd integer parameter
  136. * @param p3 3rd integer parameter
  137. */
  138. #define sys_trace_u32x3(id, p1, p2, p3)
  139. /**
  140. * @brief Can be called with any id signifying a new call
  141. * @param id ID of the operation that was started
  142. * @param p1 1st integer parameter
  143. * @param p2 2nd integer parameter
  144. * @param p3 3rd integer parameter
  145. * @param p4 4th integer parameter
  146. */
  147. #define sys_trace_u32x4(id, p1, p2, p3, p4)
  148. /**
  149. * @brief Can be called with any id signifying a new call
  150. * @param id ID of the operation that was started
  151. * @param p1 1st integer parameter
  152. * @param p2 2nd integer parameter
  153. * @param p3 3rd integer parameter
  154. * @param p4 4th integer parameter
  155. * @param p5 5th integer parameter
  156. */
  157. #define sys_trace_u32x5(id, p1, p2, p3, p4, p5)
  158. /**
  159. * @brief Can be called with any id signifying a new call
  160. * @param id ID of the operation that was started
  161. * @param p1 1st integer parameter
  162. * @param p2 2nd integer parameter
  163. * @param p3 3rd integer parameter
  164. * @param p4 4th integer parameter
  165. * @param p5 5th integer parameter
  166. * @param p6 6th integer parameter
  167. */
  168. #define sys_trace_u32x6(id, p1, p2, p3, p4, p5, p6)
  169. /**
  170. * @brief Can be called with any id signifying a new call
  171. * @param id ID of the operation that was started
  172. * @param p1 1st integer parameter
  173. * @param p2 2nd integer parameter
  174. * @param p3 3rd integer parameter
  175. * @param p4 4th integer parameter
  176. * @param p5 5th integer parameter
  177. * @param p6 6th integer parameter
  178. * @param p7 7th integer parameter
  179. */
  180. #define sys_trace_u32x7(id, p1, p2, p3, p4, p5, p6, p7)
  181. /**
  182. * @brief Can be called with any id signifying a new call
  183. * @param id ID of the operation that was started
  184. * @param p1 1st integer parameter
  185. * @param p2 2nd integer parameter
  186. * @param p3 3rd integer parameter
  187. * @param p4 4th integer parameter
  188. * @param p5 5th integer parameter
  189. * @param p6 6th integer parameter
  190. * @param p7 7th integer parameter
  191. * @param p8 8th integer parameter
  192. */
  193. #define sys_trace_u32x8(id, p1, p2, p3, p4, p5, p6, p7, p8)
  194. /**
  195. * @brief Can be called with any id signifying a new call
  196. * @param id ID of the operation that was started
  197. * @param p1 1st integer parameter
  198. * @param p2 2nd integer parameter
  199. * @param p3 3rd integer parameter
  200. * @param p4 4th integer parameter
  201. * @param p5 5th integer parameter
  202. * @param p6 6th integer parameter
  203. * @param p7 7th integer parameter
  204. * @param p8 8th integer parameter
  205. * @param p9 9th integer parameter
  206. */
  207. #define sys_trace_u32x9(id, p1, p2, p3, p4, p5, p6, p7, p8, p9)
  208. /**
  209. * @brief Can be called with any id signifying a new call
  210. * @param id ID of the operation that was started
  211. * @param p1 1st integer parameter
  212. * @param p2 2nd integer parameter
  213. * @param p3 3rd integer parameter
  214. * @param p4 4th integer parameter
  215. * @param p5 5th integer parameter
  216. * @param p6 6th integer parameter
  217. * @param p7 7th integer parameter
  218. * @param p8 8th integer parameter
  219. * @param p9 9th integer parameter
  220. * @param p10 10th integer parameter
  221. */
  222. #define sys_trace_u32x10(id, p1, p2, p3, p4, p5, p6, p7, p8, p9, p10)
  223. /**
  224. * @brief Can be called with any id signifying a new call
  225. * @param id ID of the operation that was started
  226. * @param string string parameter
  227. */
  228. #define sys_trace_string(id, string)
  229. /**
  230. * @}
  231. */
  232. /**
  233. * @brief Thread Tracing APIs
  234. * @defgroup thread_tracing_apis Thread Tracing APIs
  235. * @ingroup tracing_apis
  236. * @{
  237. */
  238. /**
  239. * @brief Called when entering a k_thread_foreach call
  240. */
  241. #define sys_port_trace_k_thread_foreach_enter()
  242. /**
  243. * @brief Called when exiting a k_thread_foreach call
  244. */
  245. #define sys_port_trace_k_thread_foreach_exit()
  246. /**
  247. * @brief Called when entering a k_thread_foreach_unlocked
  248. */
  249. #define sys_port_trace_k_thread_foreach_unlocked_enter()
  250. /**
  251. * @brief Called when exiting a k_thread_foreach_unlocked
  252. */
  253. #define sys_port_trace_k_thread_foreach_unlocked_exit()
  254. /**
  255. * @brief Trace creating a Thread
  256. * @param new_thread Thread object
  257. */
  258. #define sys_port_trace_k_thread_create(new_thread)
  259. /**
  260. * @brief Trace Thread entering user mode
  261. */
  262. #define sys_port_trace_k_thread_user_mode_enter()
  263. /**
  264. * @brief Called when entering a k_thread_join
  265. * @param thread Thread object
  266. * @param timeout Timeout period
  267. */
  268. #define sys_port_trace_k_thread_join_enter(thread, timeout)
  269. /**
  270. * @brief Called when k_thread_join blocks
  271. * @param thread Thread object
  272. * @param timeout Timeout period
  273. */
  274. #define sys_port_trace_k_thread_join_blocking(thread, timeout)
  275. /**
  276. * @brief Called when exiting k_thread_join
  277. * @param thread Thread object
  278. * @param timeout Timeout period
  279. * @param ret Return value
  280. */
  281. #define sys_port_trace_k_thread_join_exit(thread, timeout, ret)
  282. /**
  283. * @brief Called when entering k_thread_sleep
  284. * @param timeout Timeout period
  285. */
  286. #define sys_port_trace_k_thread_sleep_enter(timeout)
  287. /**
  288. * @brief Called when exiting k_thread_sleep
  289. * @param timeout Timeout period
  290. * @param ret Return value
  291. */
  292. #define sys_port_trace_k_thread_sleep_exit(timeout, ret)
  293. /**
  294. * @brief Called when entering k_thread_msleep
  295. * @param ms Duration in milliseconds
  296. */
  297. #define sys_port_trace_k_thread_msleep_enter(ms)
  298. /**
  299. * @brief Called when exiting k_thread_msleep
  300. * @param ms Duration in milliseconds
  301. * @param ret Return value
  302. */
  303. #define sys_port_trace_k_thread_msleep_exit(ms, ret)
  304. /**
  305. * @brief Called when entering k_thread_usleep
  306. * @param us Duration in microseconds
  307. */
  308. #define sys_port_trace_k_thread_usleep_enter(us)
  309. /**
  310. * @brief Called when exiting k_thread_usleep
  311. * @param us Duration in microseconds
  312. * @param ret Return value
  313. */
  314. #define sys_port_trace_k_thread_usleep_exit(us, ret)
  315. /**
  316. * @brief Called when entering k_thread_busy_wait
  317. * @param usec_to_wait Duration in microseconds
  318. */
  319. #define sys_port_trace_k_thread_busy_wait_enter(usec_to_wait)
  320. /**
  321. * @brief Called when exiting k_thread_busy_wait
  322. * @param usec_to_wait Duration in microseconds
  323. */
  324. #define sys_port_trace_k_thread_busy_wait_exit(usec_to_wait)
  325. /**
  326. * @brief Called when a thread yields
  327. */
  328. #define sys_port_trace_k_thread_yield()
  329. /**
  330. * @brief Called when a thread wakes up
  331. * @param thread Thread object
  332. */
  333. #define sys_port_trace_k_thread_wakeup(thread)
  334. /**
  335. * @brief Called when a thread is started
  336. * @param thread Thread object
  337. */
  338. #define sys_port_trace_k_thread_start(thread)
  339. /**
  340. * @brief Called when a thread is being aborted
  341. * @param thread Thread object
  342. */
  343. #define sys_port_trace_k_thread_abort(thread)
  344. /**
  345. * @brief Called when a thread enters the k_thread_abort routine
  346. * @param thread Thread object
  347. */
  348. #define sys_port_trace_k_thread_abort_enter(thread)
  349. /**
  350. * @brief Called when a thread exits the k_thread_abort routine
  351. * @param thread Thread object
  352. */
  353. #define sys_port_trace_k_thread_abort_exit(thread)
  354. /**
  355. * @brief Called when setting priority of a thread
  356. * @param thread Thread object
  357. */
  358. #define sys_port_trace_k_thread_priority_set(thread)
  359. /**
  360. * @brief Called when a thread enters the k_thread_suspend
  361. * function.
  362. * @param thread Thread object
  363. */
  364. #define sys_port_trace_k_thread_suspend_enter(thread)
  365. /**
  366. * @brief Called when a thread exits the k_thread_suspend
  367. * function.
  368. * @param thread Thread object
  369. */
  370. #define sys_port_trace_k_thread_suspend_exit(thread)
  371. /**
  372. * @brief Called when a thread enters the resume from suspension
  373. * function.
  374. * @param thread Thread object
  375. */
  376. #define sys_port_trace_k_thread_resume_enter(thread)
  377. /**
  378. * @brief Called when a thread exits the resumed from suspension
  379. * function.
  380. * @param thread Thread object
  381. */
  382. #define sys_port_trace_k_thread_resume_exit(thread)
  383. /**
  384. * @brief Called when the thread scheduler is locked
  385. */
  386. #define sys_port_trace_k_thread_sched_lock()
  387. /**
  388. * @brief Called when the thread sceduler is unlocked
  389. */
  390. #define sys_port_trace_k_thread_sched_unlock()
  391. /**
  392. * @brief Called when a thread name is set
  393. * @param thread Thread object
  394. * @param ret Return value
  395. */
  396. #define sys_port_trace_k_thread_name_set(thread, ret)
  397. /**
  398. * @brief Called before a thread has been selected to run
  399. */
  400. #define sys_port_trace_k_thread_switched_out()
  401. /**
  402. * @brief Called after a thread has been selected to run
  403. */
  404. #define sys_port_trace_k_thread_switched_in()
  405. /**
  406. * @brief Called when a thread is ready to run
  407. * @param thread Thread object
  408. */
  409. #define sys_port_trace_k_thread_ready(thread)
  410. /**
  411. * @brief Called when a thread is pending
  412. * @param thread Thread object
  413. */
  414. #define sys_port_trace_k_thread_pend(thread)
  415. /**
  416. * @brief Provide information about specific thread
  417. * @param thread Thread object
  418. */
  419. #define sys_port_trace_k_thread_info(thread)
  420. /**
  421. * @brief Trace implicit thread wakup invocation by the scheduler
  422. * @param thread Thread object
  423. */
  424. #define sys_port_trace_k_thread_sched_wakeup(thread)
  425. /**
  426. * @brief Trace implicit thread abort invocation by the scheduler
  427. * @param thread Thread object
  428. */
  429. #define sys_port_trace_k_thread_sched_abort(thread)
  430. /**
  431. * @brief Trace implicit thread set priority invocation by the scheduler
  432. * @param thread Thread object
  433. * @param prio Thread priority
  434. */
  435. #define sys_port_trace_k_thread_sched_priority_set(thread, prio)
  436. /**
  437. * @brief Trace implicit thread ready invocation by the scheduler
  438. * @param thread Thread object
  439. */
  440. #define sys_port_trace_k_thread_sched_ready(thread)
  441. /**
  442. * @brief Trace implicit thread pend invocation by the scheduler
  443. * @param thread Thread object
  444. */
  445. #define sys_port_trace_k_thread_sched_pend(thread)
  446. /**
  447. * @brief Trace implicit thread resume invocation by the scheduler
  448. * @param thread Thread object
  449. */
  450. #define sys_port_trace_k_thread_sched_resume(thread)
  451. /**
  452. * @brief Trace implicit thread suspend invocation by the scheduler
  453. * @param thread Thread object
  454. */
  455. #define sys_port_trace_k_thread_sched_suspend(thread)
  456. /**
  457. * @}
  458. */ /* end of thread_tracing_apis */
  459. /**
  460. * @brief Work Tracing APIs
  461. * @defgroup work_tracing_apis Work Tracing APIs
  462. * @ingroup tracing_apis
  463. * @{
  464. */
  465. /**
  466. * @brief Trace initialisation of a Work structure
  467. * @param work Work structure
  468. */
  469. #define sys_port_trace_k_work_init(work)
  470. /**
  471. * @brief Trace submit work to work queue call entry
  472. * @param queue Work queue structure
  473. * @param work Work structure
  474. */
  475. #define sys_port_trace_k_work_submit_to_queue_enter(queue, work)
  476. /**
  477. * @brief Trace submit work to work queue call exit
  478. * @param queue Work queue structure
  479. * @param work Work structure
  480. * @param ret Return value
  481. */
  482. #define sys_port_trace_k_work_submit_to_queue_exit(queue, work, ret)
  483. /**
  484. * @brief Trace submit work to system work queue call entry
  485. * @param work Work structure
  486. */
  487. #define sys_port_trace_k_work_submit_enter(work)
  488. /**
  489. * @brief Trace submit work to system work queue call exit
  490. * @param work Work structure
  491. * @param ret Return value
  492. */
  493. #define sys_port_trace_k_work_submit_exit(work, ret)
  494. /**
  495. * @brief Trace flush work call entry
  496. * @param work Work structure
  497. */
  498. #define sys_port_trace_k_work_flush_enter(work)
  499. /**
  500. * @brief Trace flush work call blocking
  501. * @param work Work structure
  502. * @param timeout Timeout period
  503. */
  504. #define sys_port_trace_k_work_flush_blocking(work, timeout)
  505. /**
  506. * @brief Trace flush work call exit
  507. * @param work Work structure
  508. * @param ret Return value
  509. */
  510. #define sys_port_trace_k_work_flush_exit(work, ret)
  511. /**
  512. * @brief Trace cancel work call entry
  513. * @param work Work structure
  514. */
  515. #define sys_port_trace_k_work_cancel_enter(work)
  516. /**
  517. * @brief Trace cancel work call exit
  518. * @param work Work structure
  519. * @param ret Return value
  520. */
  521. #define sys_port_trace_k_work_cancel_exit(work, ret)
  522. /**
  523. * @brief Trace cancel sync work call entry
  524. * @param work Work structure
  525. * @param sync Sync object
  526. */
  527. #define sys_port_trace_k_work_cancel_sync_enter(work, sync)
  528. /**
  529. * @brief Trace cancel sync work call blocking
  530. * @param work Work structure
  531. * @param sync Sync object
  532. */
  533. #define sys_port_trace_k_work_cancel_sync_blocking(work, sync)
  534. /**
  535. * @brief Trace cancel sync work call exit
  536. * @param work Work structure
  537. * @param sync Sync object
  538. * @param ret Return value
  539. */
  540. #define sys_port_trace_k_work_cancel_sync_exit(work, sync, ret)
  541. /**
  542. * @}
  543. */ /* end of work_tracing_apis */
  544. /**
  545. * @brief Work Queue Tracing APIs
  546. * @defgroup work_q_tracing_apis Work Queue Tracing APIs
  547. * @ingroup tracing_apis
  548. * @{
  549. */
  550. /**
  551. * @brief Trace initialisation of a Work Queue structure
  552. * @param queue Work Queue structure
  553. */
  554. #define sys_port_trace_k_work_queue_init(queue)
  555. /**
  556. * @brief Trace start of a Work Queue call entry
  557. * @param queue Work Queue structure
  558. */
  559. #define sys_port_trace_k_work_queue_start_enter(queue)
  560. /**
  561. * @brief Trace start of a Work Queue call exit
  562. * @param queue Work Queue structure
  563. */
  564. #define sys_port_trace_k_work_queue_start_exit(queue)
  565. /**
  566. * @brief Trace Work Queue drain call entry
  567. * @param queue Work Queue structure
  568. */
  569. #define sys_port_trace_k_work_queue_drain_enter(queue)
  570. /**
  571. * @brief Trace Work Queue drain call exit
  572. * @param queue Work Queue structure
  573. * @param ret Return value
  574. */
  575. #define sys_port_trace_k_work_queue_drain_exit(queue, ret)
  576. /**
  577. * @brief Trace Work Queue unplug call entry
  578. * @param queue Work Queue structure
  579. */
  580. #define sys_port_trace_k_work_queue_unplug_enter(queue)
  581. /**
  582. * @brief Trace Work Queue unplug call exit
  583. * @param queue Work Queue structure
  584. * @param ret Return value
  585. */
  586. #define sys_port_trace_k_work_queue_unplug_exit(queue, ret)
  587. /**
  588. * @}
  589. */ /* end of work_q_tracing_apis */
  590. /**
  591. * @brief Work Delayable Tracing APIs
  592. * @defgroup work_delayable_tracing_apis Work Delayable Tracing APIs
  593. * @ingroup tracing_apis
  594. * @{
  595. */
  596. /**
  597. * @brief Trace initialisation of a Delayable Work structure
  598. * @param dwork Delayable Work structure
  599. */
  600. #define sys_port_trace_k_work_delayable_init(dwork)
  601. /**
  602. * @brief Trace schedule delayable work for queue enter
  603. * @param queue Work Queue structure
  604. * @param dwork Delayable Work structure
  605. * @param delay Delay period
  606. */
  607. #define sys_port_trace_k_work_schedule_for_queue_enter(queue, dwork, delay)
  608. /**
  609. * @brief Trace schedule delayable work for queue exit
  610. * @param queue Work Queue structure
  611. * @param dwork Delayable Work structure
  612. * @param delay Delay period
  613. * @param ret Return value
  614. */
  615. #define sys_port_trace_k_work_schedule_for_queue_exit(queue, dwork, delay, ret)
  616. /**
  617. * @brief Trace schedule delayable work for system work queue enter
  618. * @param dwork Delayable Work structure
  619. * @param delay Delay period
  620. */
  621. #define sys_port_trace_k_work_schedule_enter(dwork, delay)
  622. /**
  623. * @brief Trace schedule delayable work for system work queue exit
  624. * @param dwork Delayable Work structure
  625. * @param delay Delay period
  626. * @param ret Return value
  627. */
  628. #define sys_port_trace_k_work_schedule_exit(dwork, delay, ret)
  629. /**
  630. * @brief Trace reschedule delayable work for queue enter
  631. * @param queue Work Queue structure
  632. * @param dwork Delayable Work structure
  633. * @param delay Delay period
  634. */
  635. #define sys_port_trace_k_work_reschedule_for_queue_enter(queue, dwork, delay)
  636. /**
  637. * @brief Trace reschedule delayable work for queue exit
  638. * @param queue Work Queue structure
  639. * @param dwork Delayable Work structure
  640. * @param delay Delay period
  641. * @param ret Return value
  642. */
  643. #define sys_port_trace_k_work_reschedule_for_queue_exit(queue, dwork, delay, ret)
  644. /**
  645. * @brief Trace reschedule delayable work for system queue enter
  646. * @param dwork Delayable Work structure
  647. * @param delay Delay period
  648. */
  649. #define sys_port_trace_k_work_reschedule_enter(dwork, delay)
  650. /**
  651. * @brief Trace reschedule delayable work for system queue exit
  652. * @param dwork Delayable Work structure
  653. * @param delay Delay period
  654. * @param ret Return value
  655. */
  656. #define sys_port_trace_k_work_reschedule_exit(dwork, delay, ret)
  657. /**
  658. * @brief Trace delayable work flush enter
  659. * @param dwork Delayable Work structure
  660. * @param sync Sync object
  661. */
  662. #define sys_port_trace_k_work_flush_delayable_enter(dwork, sync)
  663. /**
  664. * @brief Trace delayable work flush exit
  665. * @param dwork Delayable Work structure
  666. * @param sync Sync object
  667. * @param ret Return value
  668. */
  669. #define sys_port_trace_k_work_flush_delayable_exit(dwork, sync, ret)
  670. /**
  671. * @brief Trace delayable work cancel enter
  672. * @param dwork Delayable Work structure
  673. */
  674. #define sys_port_trace_k_work_cancel_delayable_enter(dwork)
  675. /**
  676. * @brief Trace delayable work cancel enter
  677. * @param dwork Delayable Work structure
  678. * @param ret Return value
  679. */
  680. #define sys_port_trace_k_work_cancel_delayable_exit(dwork, ret)
  681. /**
  682. * @brief Trace delayable work cancel sync enter
  683. * @param dwork Delayable Work structure
  684. * @param sync Sync object
  685. */
  686. #define sys_port_trace_k_work_cancel_delayable_sync_enter(dwork, sync)
  687. /**
  688. * @brief Trace delayable work cancel sync enter
  689. * @param dwork Delayable Work structure
  690. * @param sync Sync object
  691. * @param ret Return value
  692. */
  693. #define sys_port_trace_k_work_cancel_delayable_sync_exit(dwork, sync, ret)
  694. /**
  695. * @}
  696. */ /* end of work_delayable_tracing_apis */
  697. /**
  698. * @brief Work Poll Tracing APIs
  699. * @defgroup work_poll_tracing_apis Work Poll Tracing APIs
  700. * @ingroup tracing_apis
  701. * @{
  702. */
  703. /**
  704. * @brief Trace initialisation of a Work Poll structure enter
  705. * @param work Work structure
  706. */
  707. #define sys_port_trace_k_work_poll_init_enter(work)
  708. /**
  709. * @brief Trace initialisation of a Work Poll structure exit
  710. * @param work Work structure
  711. */
  712. #define sys_port_trace_k_work_poll_init_exit(work)
  713. /**
  714. * @brief Trace work poll submit to queue enter
  715. * @param work_q Work queue
  716. * @param work Work structure
  717. * @param timeout Timeout period
  718. */
  719. #define sys_port_trace_k_work_poll_submit_to_queue_enter(work_q, work, timeout)
  720. /**
  721. * @brief Trace work poll submit to queue blocking
  722. * @param work_q Work queue
  723. * @param work Work structure
  724. * @param timeout Timeout period
  725. */
  726. #define sys_port_trace_k_work_poll_submit_to_queue_blocking(work_q, work, timeout)
  727. /**
  728. * @brief Trace work poll submit to queue exit
  729. * @param work_q Work queue
  730. * @param work Work structure
  731. * @param timeout Timeout period
  732. * @param ret Return value
  733. */
  734. #define sys_port_trace_k_work_poll_submit_to_queue_exit(work_q, work, timeout, ret)
  735. /**
  736. * @brief Trace work poll submit to system queue enter
  737. * @param work Work structure
  738. * @param timeout Timeout period
  739. */
  740. #define sys_port_trace_k_work_poll_submit_enter(work, timeout)
  741. /**
  742. * @brief Trace work poll submit to system queue exit
  743. * @param work Work structure
  744. * @param timeout Timeout period
  745. * @param ret Return value
  746. */
  747. #define sys_port_trace_k_work_poll_submit_exit(work, timeout, ret)
  748. /**
  749. * @brief Trace work poll cancel enter
  750. * @param work Work structure
  751. */
  752. #define sys_port_trace_k_work_poll_cancel_enter(work)
  753. /**
  754. * @brief Trace work poll cancel exit
  755. * @param work Work structure
  756. * @param ret Return value
  757. */
  758. #define sys_port_trace_k_work_poll_cancel_exit(work, ret)
  759. /**
  760. * @}
  761. */ /* end of work_poll_tracing_apis */
  762. /**
  763. * @brief Poll Tracing APIs
  764. * @defgroup poll_tracing_apis Poll Tracing APIs
  765. * @ingroup tracing_apis
  766. * @{
  767. */
  768. /**
  769. * @brief Trace initialisation of a Poll Event
  770. * @param event Poll Event
  771. */
  772. #define sys_port_trace_k_poll_api_event_init(event)
  773. /**
  774. * @brief Trace Polling call start
  775. * @param events Poll Events
  776. */
  777. #define sys_port_trace_k_poll_api_poll_enter(events)
  778. /**
  779. * @brief Trace Polling call outcome
  780. * @param events Poll Events
  781. * @param ret Return value
  782. */
  783. #define sys_port_trace_k_poll_api_poll_exit(events, ret)
  784. /**
  785. * @brief Trace initialisation of a Poll Signal
  786. * @param signal Poll Signal
  787. */
  788. #define sys_port_trace_k_poll_api_signal_init(signal)
  789. /**
  790. * @brief Trace resetting of Poll Signal
  791. * @param signal Poll Signal
  792. */
  793. #define sys_port_trace_k_poll_api_signal_reset(signal)
  794. /**
  795. * @brief Trace checking of Poll Signal
  796. * @param signal Poll Signal
  797. */
  798. #define sys_port_trace_k_poll_api_signal_check(signal)
  799. /**
  800. * @brief Trace raising of Poll Signal
  801. * @param signal Poll Signal
  802. * @param ret Return value
  803. */
  804. #define sys_port_trace_k_poll_api_signal_raise(signal, ret)
  805. /**
  806. * @}
  807. */ /* end of poll_tracing_apis */
  808. /**
  809. * @brief Semaphore Tracing APIs
  810. * @defgroup sem_tracing_apis Semaphore Tracing APIs
  811. * @ingroup tracing_apis
  812. * @{
  813. */
  814. /**
  815. * @brief Trace initialisation of a Semaphore
  816. * @param sem Semaphore object
  817. * @param ret Return value
  818. */
  819. #define sys_port_trace_k_sem_init(sem, ret)
  820. /**
  821. * @brief Trace giving a Semaphore entry
  822. * @param sem Semaphore object
  823. */
  824. #define sys_port_trace_k_sem_give_enter(sem)
  825. /**
  826. * @brief Trace giving a Semaphore exit
  827. * @param sem Semaphore object
  828. */
  829. #define sys_port_trace_k_sem_give_exit(sem)
  830. /**
  831. * @brief Trace taking a Semaphore attempt start
  832. * @param sem Semaphore object
  833. * @param timeout Timeout period
  834. */
  835. #define sys_port_trace_k_sem_take_enter(sem, timeout)
  836. /**
  837. * @brief Trace taking a Semaphore attempt blocking
  838. * @param sem Semaphore object
  839. * @param timeout Timeout period
  840. */
  841. #define sys_port_trace_k_sem_take_blocking(sem, timeout)
  842. /**
  843. * @brief Trace taking a Semaphore attempt outcome
  844. * @param sem Semaphore object
  845. * @param timeout Timeout period
  846. * @param ret Return value
  847. */
  848. #define sys_port_trace_k_sem_take_exit(sem, timeout, ret)
  849. /**
  850. * @brief Trace resetting a Semaphore
  851. * @param sem Semaphore object
  852. */
  853. #define sys_port_trace_k_sem_reset(sem)
  854. /**
  855. * @}
  856. */ /* end of sem_tracing_apis */
  857. /**
  858. * @brief Mutex Tracing APIs
  859. * @defgroup mutex_tracing_apis Mutex Tracing APIs
  860. * @ingroup tracing_apis
  861. * @{
  862. */
  863. /**
  864. * @brief Trace initialization of Mutex
  865. * @param mutex Mutex object
  866. * @param ret Return value
  867. */
  868. #define sys_port_trace_k_mutex_init(mutex, ret)
  869. /**
  870. * @brief Trace Mutex lock attempt start
  871. * @param mutex Mutex object
  872. * @param timeout Timeout period
  873. */
  874. #define sys_port_trace_k_mutex_lock_enter(mutex, timeout)
  875. /**
  876. * @brief Trace Mutex lock attempt blocking
  877. * @param mutex Mutex object
  878. * @param timeout Timeout period
  879. */
  880. #define sys_port_trace_k_mutex_lock_blocking(mutex, timeout)
  881. /**
  882. * @brief Trace Mutex lock attempt outcome
  883. * @param mutex Mutex object
  884. * @param timeout Timeout period
  885. * @param ret Return value
  886. */
  887. #define sys_port_trace_k_mutex_lock_exit(mutex, timeout, ret)
  888. /**
  889. * @brief Trace Mutex unlock entry
  890. * @param mutex Mutex object
  891. */
  892. #define sys_port_trace_k_mutex_unlock_enter(mutex)
  893. /**
  894. * @brief Trace Mutex unlock exit
  895. */
  896. #define sys_port_trace_k_mutex_unlock_exit(mutex, ret)
  897. /**
  898. * @}
  899. */ /* end of mutex_tracing_apis */
  900. /**
  901. * @brief Conditional Variable Tracing APIs
  902. * @defgroup condvar_tracing_apis Conditional Variable Tracing APIs
  903. * @ingroup tracing_apis
  904. * @{
  905. */
  906. /**
  907. * @brief Trace initialization of Conditional Variable
  908. * @param condvar Conditional Variable object
  909. * @param ret Return value
  910. */
  911. #define sys_port_trace_k_condvar_init(condvar, ret)
  912. /**
  913. * @brief Trace Conditional Variable signaling start
  914. * @param condvar Conditional Variable object
  915. */
  916. #define sys_port_trace_k_condvar_signal_enter(condvar)
  917. /**
  918. * @brief Trace Conditional Variable signaling blocking
  919. * @param condvar Conditional Variable object
  920. * @param timeout Timeout period
  921. */
  922. #define sys_port_trace_k_condvar_signal_blocking(condvar, timeout)
  923. /**
  924. * @brief Trace Conditional Variable signaling outcome
  925. * @param condvar Conditional Variable object
  926. * @param ret Return value
  927. */
  928. #define sys_port_trace_k_condvar_signal_exit(condvar, ret)
  929. /**
  930. * @brief Trace Conditional Variable broadcast enter
  931. * @param condvar Conditional Variable object
  932. */
  933. #define sys_port_trace_k_condvar_broadcast_enter(condvar)
  934. /**
  935. * @brief Trace Conditional Variable broadcast exit
  936. * @param condvar Conditional Variable object
  937. * @param ret Return value
  938. */
  939. #define sys_port_trace_k_condvar_broadcast_exit(condvar, ret)
  940. /**
  941. * @brief Trace Conditional Variable wait enter
  942. * @param condvar Conditional Variable object
  943. */
  944. #define sys_port_trace_k_condvar_wait_enter(condvar)
  945. /**
  946. * @brief Trace Conditional Variable wait exit
  947. * @param condvar Conditional Variable object
  948. * @param ret Return value
  949. */
  950. #define sys_port_trace_k_condvar_wait_exit(condvar, ret)
  951. /**
  952. * @}
  953. */ /* end of condvar_tracing_apis */
  954. /**
  955. * @brief Queue Tracing APIs
  956. * @defgroup queue_tracing_apis Queue Tracing APIs
  957. * @ingroup tracing_apis
  958. * @{
  959. */
  960. /**
  961. * @brief Trace initialization of Queue
  962. * @param queue Queue object
  963. */
  964. #define sys_port_trace_k_queue_init(queue)
  965. /**
  966. * @brief Trace Queue cancel wait
  967. * @param queue Queue object
  968. */
  969. #define sys_port_trace_k_queue_cancel_wait(queue)
  970. /**
  971. * @brief Trace Queue insert attempt entry
  972. * @param queue Queue object
  973. * @param alloc Allocation flag
  974. */
  975. #define sys_port_trace_k_queue_queue_insert_enter(queue, alloc)
  976. /**
  977. * @brief Trace Queue insert attempt blocking
  978. * @param queue Queue object
  979. * @param alloc Allocation flag
  980. * @param timeout Timeout period
  981. */
  982. #define sys_port_trace_k_queue_queue_insert_blocking(queue, alloc, timeout)
  983. /**
  984. * @brief Trace Queue insert attempt outcome
  985. * @param queue Queue object
  986. * @param alloc Allocation flag
  987. * @param ret Return value
  988. */
  989. #define sys_port_trace_k_queue_queue_insert_exit(queue, alloc, ret)
  990. /**
  991. * @brief Trace Queue append enter
  992. * @param queue Queue object
  993. */
  994. #define sys_port_trace_k_queue_append_enter(queue)
  995. /**
  996. * @brief Trace Queue append exit
  997. * @param queue Queue object
  998. */
  999. #define sys_port_trace_k_queue_append_exit(queue)
  1000. /**
  1001. * @brief Trace Queue alloc append enter
  1002. * @param queue Queue object
  1003. */
  1004. #define sys_port_trace_k_queue_alloc_append_enter(queue)
  1005. /**
  1006. * @brief Trace Queue alloc append exit
  1007. * @param queue Queue object
  1008. * @param ret Return value
  1009. */
  1010. #define sys_port_trace_k_queue_alloc_append_exit(queue, ret)
  1011. /**
  1012. * @brief Trace Queue prepend enter
  1013. * @param queue Queue object
  1014. */
  1015. #define sys_port_trace_k_queue_prepend_enter(queue)
  1016. /**
  1017. * @brief Trace Queue prepend exit
  1018. * @param queue Queue object
  1019. */
  1020. #define sys_port_trace_k_queue_prepend_exit(queue)
  1021. /**
  1022. * @brief Trace Queue alloc prepend enter
  1023. * @param queue Queue object
  1024. */
  1025. #define sys_port_trace_k_queue_alloc_prepend_enter(queue)
  1026. /**
  1027. * @brief Trace Queue alloc prepend exit
  1028. * @param queue Queue object
  1029. * @param ret Return value
  1030. */
  1031. #define sys_port_trace_k_queue_alloc_prepend_exit(queue, ret)
  1032. /**
  1033. * @brief Trace Queue insert attempt entry
  1034. * @param queue Queue object
  1035. */
  1036. #define sys_port_trace_k_queue_insert_enter(queue)
  1037. /**
  1038. * @brief Trace Queue insert attempt blocking
  1039. * @param queue Queue object
  1040. * @param timeout Timeout period
  1041. */
  1042. #define sys_port_trace_k_queue_insert_blocking(queue, timeout)
  1043. /**
  1044. * @brief Trace Queue insert attempt exit
  1045. * @param queue Queue object
  1046. */
  1047. #define sys_port_trace_k_queue_insert_exit(queue)
  1048. /**
  1049. * @brief Trace Queue append list enter
  1050. * @param queue Queue object
  1051. */
  1052. #define sys_port_trace_k_queue_append_list_enter(queue)
  1053. /**
  1054. * @brief Trace Queue append list exit
  1055. * @param queue Queue object
  1056. * @param ret Return value
  1057. */
  1058. #define sys_port_trace_k_queue_append_list_exit(queue, ret)
  1059. /**
  1060. * @brief Trace Queue merge slist enter
  1061. * @param queue Queue object
  1062. */
  1063. #define sys_port_trace_k_queue_merge_slist_enter(queue)
  1064. /**
  1065. * @brief Trace Queue merge slist exit
  1066. * @param queue Queue object
  1067. * @param ret Return value
  1068. */
  1069. #define sys_port_trace_k_queue_merge_slist_exit(queue, ret)
  1070. /**
  1071. * @brief Trace Queue get attempt enter
  1072. * @param queue Queue object
  1073. * @param timeout Timeout period
  1074. */
  1075. #define sys_port_trace_k_queue_get_enter(queue, timeout)
  1076. /**
  1077. * @brief Trace Queue get attempt blockings
  1078. * @param queue Queue object
  1079. * @param timeout Timeout period
  1080. */
  1081. #define sys_port_trace_k_queue_get_blocking(queue, timeout)
  1082. /**
  1083. * @brief Trace Queue get attempt outcome
  1084. * @param queue Queue object
  1085. * @param timeout Timeout period
  1086. * @param ret Return value
  1087. */
  1088. #define sys_port_trace_k_queue_get_exit(queue, timeout, ret)
  1089. /**
  1090. * @brief Trace Queue remove enter
  1091. * @param queue Queue object
  1092. */
  1093. #define sys_port_trace_k_queue_remove_enter(queue)
  1094. /**
  1095. * @brief Trace Queue remove exit
  1096. * @param queue Queue object
  1097. * @param ret Return value
  1098. */
  1099. #define sys_port_trace_k_queue_remove_exit(queue, ret)
  1100. /**
  1101. * @brief Trace Queue unique append enter
  1102. * @param queue Queue object
  1103. */
  1104. #define sys_port_trace_k_queue_unique_append_enter(queue)
  1105. /**
  1106. * @brief Trace Queue unique append exit
  1107. * @param queue Queue object
  1108. *
  1109. * @param ret Return value
  1110. */
  1111. #define sys_port_trace_k_queue_unique_append_exit(queue, ret)
  1112. /**
  1113. * @brief Trace Queue peek head
  1114. * @param queue Queue object
  1115. * @param ret Return value
  1116. */
  1117. #define sys_port_trace_k_queue_peek_head(queue, ret)
  1118. /**
  1119. * @brief Trace Queue peek tail
  1120. * @param queue Queue object
  1121. * @param ret Return value
  1122. */
  1123. #define sys_port_trace_k_queue_peek_tail(queue, ret)
  1124. /**
  1125. * @}
  1126. */ /* end of queue_tracing_apis */
  1127. /**
  1128. * @brief FIFO Tracing APIs
  1129. * @defgroup fifo_tracing_apis FIFO Tracing APIs
  1130. * @ingroup tracing_apis
  1131. * @{
  1132. */
  1133. /**
  1134. * @brief Trace initialization of FIFO Queue entry
  1135. * @param fifo FIFO object
  1136. */
  1137. #define sys_port_trace_k_fifo_init_enter(fifo)
  1138. /**
  1139. * @brief Trace initialization of FIFO Queue exit
  1140. * @param fifo FIFO object
  1141. */
  1142. #define sys_port_trace_k_fifo_init_exit(fifo)
  1143. /**
  1144. * @brief Trace FIFO Queue cancel wait entry
  1145. * @param fifo FIFO object
  1146. */
  1147. #define sys_port_trace_k_fifo_cancel_wait_enter(fifo)
  1148. /**
  1149. * @brief Trace FIFO Queue cancel wait exit
  1150. * @param fifo FIFO object
  1151. */
  1152. #define sys_port_trace_k_fifo_cancel_wait_exit(fifo)
  1153. /**
  1154. * @brief Trace FIFO Queue put entry
  1155. * @param fifo FIFO object
  1156. * @param data Data item
  1157. */
  1158. #define sys_port_trace_k_fifo_put_enter(fifo, data)
  1159. /**
  1160. * @brief Trace FIFO Queue put exit
  1161. * @param fifo FIFO object
  1162. * @param data Data item
  1163. */
  1164. #define sys_port_trace_k_fifo_put_exit(fifo, data)
  1165. /**
  1166. * @brief Trace FIFO Queue alloc put entry
  1167. * @param fifo FIFO object
  1168. * @param data Data item
  1169. */
  1170. #define sys_port_trace_k_fifo_alloc_put_enter(fifo, data)
  1171. /**
  1172. * @brief Trace FIFO Queue alloc put exit
  1173. * @param fifo FIFO object
  1174. * @param data Data item
  1175. * @param ret Return value
  1176. */
  1177. #define sys_port_trace_k_fifo_alloc_put_exit(fifo, data, ret)
  1178. /**
  1179. * @brief Trace FIFO Queue put list entry
  1180. * @param fifo FIFO object
  1181. * @param head First ll-node
  1182. * @param tail Last ll-node
  1183. */
  1184. #define sys_port_trace_k_fifo_alloc_put_list_enter(fifo, head, tail)
  1185. /**
  1186. * @brief Trace FIFO Queue put list exit
  1187. * @param fifo FIFO object
  1188. * @param head First ll-node
  1189. * @param tail Last ll-node
  1190. */
  1191. #define sys_port_trace_k_fifo_alloc_put_list_exit(fifo, head, tail)
  1192. /**
  1193. * @brief Trace FIFO Queue put slist entry
  1194. * @param fifo FIFO object
  1195. * @param list Syslist object
  1196. */
  1197. #define sys_port_trace_k_fifo_alloc_put_slist_enter(fifo, list)
  1198. /**
  1199. * @brief Trace FIFO Queue put slist exit
  1200. * @param fifo FIFO object
  1201. * @param list Syslist object
  1202. */
  1203. #define sys_port_trace_k_fifo_alloc_put_slist_exit(fifo, list)
  1204. /**
  1205. * @brief Trace FIFO Queue get entry
  1206. * @param fifo FIFO object
  1207. * @param timeout Timeout period
  1208. */
  1209. #define sys_port_trace_k_fifo_get_enter(fifo, timeout)
  1210. /**
  1211. * @brief Trace FIFO Queue get exit
  1212. * @param fifo FIFO object
  1213. * @param timeout Timeout period
  1214. * @param ret Return value
  1215. */
  1216. #define sys_port_trace_k_fifo_get_exit(fifo, timeout, ret)
  1217. /**
  1218. * @brief Trace FIFO Queue peek head entry
  1219. * @param fifo FIFO object
  1220. */
  1221. #define sys_port_trace_k_fifo_peek_head_entry(fifo)
  1222. /**
  1223. * @brief Trace FIFO Queue peek head exit
  1224. * @param fifo FIFO object
  1225. * @param ret Return value
  1226. */
  1227. #define sys_port_trace_k_fifo_peek_head_exit(fifo, ret)
  1228. /**
  1229. * @brief Trace FIFO Queue peek tail entry
  1230. * @param fifo FIFO object
  1231. */
  1232. #define sys_port_trace_k_fifo_peek_tail_entry(fifo)
  1233. /**
  1234. * @brief Trace FIFO Queue peek tail exit
  1235. * @param fifo FIFO object
  1236. * @param ret Return value
  1237. */
  1238. #define sys_port_trace_k_fifo_peek_tail_exit(fifo, ret)
  1239. /**
  1240. * @}
  1241. */ /* end of fifo_tracing_apis */
  1242. /**
  1243. * @brief LIFO Tracing APIs
  1244. * @defgroup lifo_tracing_apis LIFO Tracing APIs
  1245. * @ingroup tracing_apis
  1246. * @{
  1247. */
  1248. /**
  1249. * @brief Trace initialization of LIFO Queue entry
  1250. * @param lifo LIFO object
  1251. */
  1252. #define sys_port_trace_k_lifo_init_enter(lifo)
  1253. /**
  1254. * @brief Trace initialization of LIFO Queue exit
  1255. * @param lifo LIFO object
  1256. */
  1257. #define sys_port_trace_k_lifo_init_exit(lifo)
  1258. /**
  1259. * @brief Trace LIFO Queue put entry
  1260. * @param lifo LIFO object
  1261. * @param data Data item
  1262. */
  1263. #define sys_port_trace_k_lifo_put_enter(lifo, data)
  1264. /**
  1265. * @brief Trace LIFO Queue put exit
  1266. * @param lifo LIFO object
  1267. * @param data Data item
  1268. */
  1269. #define sys_port_trace_k_lifo_put_exit(lifo, data)
  1270. /**
  1271. * @brief Trace LIFO Queue alloc put entry
  1272. * @param lifo LIFO object
  1273. * @param data Data item
  1274. */
  1275. #define sys_port_trace_k_lifo_alloc_put_enter(lifo, data)
  1276. /**
  1277. * @brief Trace LIFO Queue alloc put exit
  1278. * @param lifo LIFO object
  1279. * @param data Data item
  1280. * @param ret Return value
  1281. */
  1282. #define sys_port_trace_k_lifo_alloc_put_exit(lifo, data, ret)
  1283. /**
  1284. * @brief Trace LIFO Queue get entry
  1285. * @param lifo LIFO object
  1286. * @param timeout Timeout period
  1287. */
  1288. #define sys_port_trace_k_lifo_get_enter(lifo, timeout)
  1289. /**
  1290. * @brief Trace LIFO Queue get exit
  1291. * @param lifo LIFO object
  1292. * @param timeout Timeout period
  1293. * @param ret Return value
  1294. */
  1295. #define sys_port_trace_k_lifo_get_exit(lifo, timeout, ret)
  1296. /**
  1297. * @}
  1298. */ /* end of lifo_tracing_apis */
  1299. /**
  1300. * @brief Stack Tracing APIs
  1301. * @defgroup stack_tracing_apis Stack Tracing APIs
  1302. * @ingroup tracing_apis
  1303. * @{
  1304. */
  1305. /**
  1306. * @brief Trace initialization of Stack
  1307. * @param stack Stack object
  1308. */
  1309. #define sys_port_trace_k_stack_init(stack)
  1310. /**
  1311. * @brief Trace Stack alloc init attempt entry
  1312. * @param stack Stack object
  1313. */
  1314. #define sys_port_trace_k_stack_alloc_init_enter(stack)
  1315. /**
  1316. * @brief Trace Stack alloc init outcome
  1317. * @param stack Stack object
  1318. * @param ret Return value
  1319. */
  1320. #define sys_port_trace_k_stack_alloc_init_exit(stack, ret)
  1321. /**
  1322. * @brief Trace Stack cleanup attempt entry
  1323. * @param stack Stack object
  1324. */
  1325. #define sys_port_trace_k_stack_cleanup_enter(stack)
  1326. /**
  1327. * @brief Trace Stack cleanup outcome
  1328. * @param stack Stack object
  1329. * @param ret Return value
  1330. */
  1331. #define sys_port_trace_k_stack_cleanup_exit(stack, ret)
  1332. /**
  1333. * @brief Trace Stack push attempt entry
  1334. * @param stack Stack object
  1335. */
  1336. #define sys_port_trace_k_stack_push_enter(stack)
  1337. /**
  1338. * @brief Trace Stack push attempt outcome
  1339. * @param stack Stack object
  1340. * @param ret Return value
  1341. */
  1342. #define sys_port_trace_k_stack_push_exit(stack, ret)
  1343. /**
  1344. * @brief Trace Stack pop attempt entry
  1345. * @param stack Stack object
  1346. * @param timeout Timeout period
  1347. */
  1348. #define sys_port_trace_k_stack_pop_enter(stack, timeout)
  1349. /**
  1350. * @brief Trace Stack pop attempt blocking
  1351. * @param stack Stack object
  1352. * @param timeout Timeout period
  1353. */
  1354. #define sys_port_trace_k_stack_pop_blocking(stack, timeout)
  1355. /**
  1356. * @brief Trace Stack pop attempt outcome
  1357. * @param stack Stack object
  1358. * @param timeout Timeout period
  1359. * @param ret Return value
  1360. */
  1361. #define sys_port_trace_k_stack_pop_exit(stack, timeout, ret)
  1362. /**
  1363. * @}
  1364. */ /* end of stack_tracing_apis */
  1365. /**
  1366. * @brief Message Queue Tracing APIs
  1367. * @defgroup msgq_tracing_apis Message Queue Tracing APIs
  1368. * @ingroup tracing_apis
  1369. * @{
  1370. */
  1371. /**
  1372. * @brief Trace initialization of Message Queue
  1373. * @param msgq Message Queue object
  1374. */
  1375. #define sys_port_trace_k_msgq_init(msgq)
  1376. /**
  1377. * @brief Trace Message Queue alloc init attempt entry
  1378. * @param msgq Message Queue object
  1379. */
  1380. #define sys_port_trace_k_msgq_alloc_init_enter(msgq)
  1381. /**
  1382. * @brief Trace Message Queue alloc init attempt outcome
  1383. * @param msgq Message Queue object
  1384. * @param ret Return value
  1385. */
  1386. #define sys_port_trace_k_msgq_alloc_init_exit(msgq, ret)
  1387. /**
  1388. * @brief Trace Message Queue cleanup attempt entry
  1389. * @param msgq Message Queue object
  1390. */
  1391. #define sys_port_trace_k_msgq_cleanup_enter(msgq)
  1392. /**
  1393. * @brief Trace Message Queue cleanup attempt outcome
  1394. * @param msgq Message Queue object
  1395. * @param ret Return value
  1396. */
  1397. #define sys_port_trace_k_msgq_cleanup_exit(msgq, ret)
  1398. /**
  1399. * @brief Trace Message Queue put attempt entry
  1400. * @param msgq Message Queue object
  1401. * @param timeout Timeout period
  1402. */
  1403. #define sys_port_trace_k_msgq_put_enter(msgq, timeout)
  1404. /**
  1405. * @brief Trace Message Queue put attempt blocking
  1406. * @param msgq Message Queue object
  1407. * @param timeout Timeout period
  1408. */
  1409. #define sys_port_trace_k_msgq_put_blocking(msgq, timeout)
  1410. /**
  1411. * @brief Trace Message Queue put attempt outcome
  1412. * @param msgq Message Queue object
  1413. * @param timeout Timeout period
  1414. * @param ret Return value
  1415. */
  1416. #define sys_port_trace_k_msgq_put_exit(msgq, timeout, ret)
  1417. /**
  1418. * @brief Trace Message Queue get attempt entry
  1419. * @param msgq Message Queue object
  1420. * @param timeout Timeout period
  1421. */
  1422. #define sys_port_trace_k_msgq_get_enter(msgq, timeout)
  1423. /**
  1424. * @brief Trace Message Queue get attempt blockings
  1425. * @param msgq Message Queue object
  1426. * @param timeout Timeout period
  1427. */
  1428. #define sys_port_trace_k_msgq_get_blocking(msgq, timeout)
  1429. /**
  1430. * @brief Trace Message Queue get attempt outcome
  1431. * @param msgq Message Queue object
  1432. * @param timeout Timeout period
  1433. * @param ret Return value
  1434. */
  1435. #define sys_port_trace_k_msgq_get_exit(msgq, timeout, ret)
  1436. /**
  1437. * @brief Trace Message Queue peek
  1438. * @param msgq Message Queue object
  1439. * @param ret Return value
  1440. */
  1441. #define sys_port_trace_k_msgq_peek(msgq, ret)
  1442. /**
  1443. * @brief Trace Message Queue purge
  1444. * @param msgq Message Queue object
  1445. */
  1446. #define sys_port_trace_k_msgq_purge(msgq)
  1447. /**
  1448. * @}
  1449. */ /* end of msgq_tracing_apis */
  1450. /**
  1451. * @brief Mailbox Tracing APIs
  1452. * @defgroup mbox_tracing_apis Mailbox Tracing APIs
  1453. * @ingroup tracing_apis
  1454. * @{
  1455. */
  1456. /**
  1457. * @brief Trace initialization of Mailbox
  1458. * @param mbox Mailbox object
  1459. */
  1460. #define sys_port_trace_k_mbox_init(mbox)
  1461. /**
  1462. * @brief Trace Mailbox message put attempt entry
  1463. * @param mbox Mailbox object
  1464. * @param timeout Timeout period
  1465. */
  1466. #define sys_port_trace_k_mbox_message_put_enter(mbox, timeout)
  1467. /**
  1468. * @brief Trace Mailbox message put attempt blocking
  1469. * @param mbox Mailbox object
  1470. * @param timeout Timeout period
  1471. */
  1472. #define sys_port_trace_k_mbox_message_put_blocking(mbox, timeout)
  1473. /**
  1474. * @brief Trace Mailbox message put attempt outcome
  1475. * @param mbox Mailbox object
  1476. * @param timeout Timeout period
  1477. * @param ret Return value
  1478. */
  1479. #define sys_port_trace_k_mbox_message_put_exit(mbox, timeout, ret)
  1480. /**
  1481. * @brief Trace Mailbox put attempt entry
  1482. * @param mbox Mailbox object
  1483. * @param timeout Timeout period
  1484. */
  1485. #define sys_port_trace_k_mbox_put_enter(mbox, timeout)
  1486. /**
  1487. * @brief Trace Mailbox put attempt blocking
  1488. * @param mbox Mailbox object
  1489. * @param timeout Timeout period
  1490. * @param ret Return value
  1491. */
  1492. #define sys_port_trace_k_mbox_put_exit(mbox, timeout, ret)
  1493. /**
  1494. * @brief Trace Mailbox async put entry
  1495. * @param mbox Mailbox object
  1496. * @param sem Semaphore object
  1497. */
  1498. #define sys_port_trace_k_mbox_async_put_enter(mbox, sem)
  1499. /**
  1500. * @brief Trace Mailbox async put exit
  1501. * @param mbox Mailbox object
  1502. * @param sem Semaphore object
  1503. */
  1504. #define sys_port_trace_k_mbox_async_put_exit(mbox, sem)
  1505. /**
  1506. * @brief Trace Mailbox get attempt entry
  1507. * @param mbox Mailbox entry
  1508. * @param timeout Timeout period
  1509. */
  1510. #define sys_port_trace_k_mbox_get_enter(mbox, timeout)
  1511. /**
  1512. * @brief Trace Mailbox get attempt blocking
  1513. * @param mbox Mailbox entry
  1514. * @param timeout Timeout period
  1515. */
  1516. #define sys_port_trace_k_mbox_get_blocking(mbox, timeout)
  1517. /**
  1518. * @brief Trace Mailbox get attempt outcome
  1519. * @param mbox Mailbox entry
  1520. * @param timeout Timeout period
  1521. * @param ret Return value
  1522. */
  1523. #define sys_port_trace_k_mbox_get_exit(mbox, timeout, ret)
  1524. /**
  1525. * @brief Trace Mailbox data get
  1526. * @brief rx_msg Receive Message object
  1527. */
  1528. #define sys_port_trace_k_mbox_data_get(rx_msg)
  1529. /**
  1530. * @}
  1531. */ /* end of mbox_tracing_apis */
  1532. /**
  1533. * @brief Pipe Tracing APIs
  1534. * @defgroup pipe_tracing_apis Pipe Tracing APIs
  1535. * @ingroup tracing_apis
  1536. * @{
  1537. */
  1538. /**
  1539. * @brief Trace initialization of Pipe
  1540. * @param pipe Pipe object
  1541. */
  1542. #define sys_port_trace_k_pipe_init(pipe)
  1543. /**
  1544. * @brief Trace Pipe cleanup entry
  1545. * @param pipe Pipe object
  1546. */
  1547. #define sys_port_trace_k_pipe_cleanup_enter(pipe)
  1548. /**
  1549. * @brief Trace Pipe cleanup exit
  1550. * @param pipe Pipe object
  1551. * @param ret Return value
  1552. */
  1553. #define sys_port_trace_k_pipe_cleanup_exit(pipe, ret)
  1554. /**
  1555. * @brief Trace Pipe alloc init entry
  1556. * @param pipe Pipe object
  1557. */
  1558. #define sys_port_trace_k_pipe_alloc_init_enter(pipe)
  1559. /**
  1560. * @brief Trace Pipe alloc init exit
  1561. * @param pipe Pipe object
  1562. * @param ret Return value
  1563. */
  1564. #define sys_port_trace_k_pipe_alloc_init_exit(pipe, ret)
  1565. /**
  1566. * @brief Trace Pipe put attempt entry
  1567. * @param pipe Pipe object
  1568. * @param timeout Timeout period
  1569. */
  1570. #define sys_port_trace_k_pipe_put_enter(pipe, timeout)
  1571. /**
  1572. * @brief Trace Pipe put attempt blocking
  1573. * @param pipe Pipe object
  1574. * @param timeout Timeout period
  1575. */
  1576. #define sys_port_trace_k_pipe_put_blocking(pipe, timeout)
  1577. /**
  1578. * @brief Trace Pipe put attempt outcome
  1579. * @param pipe Pipe object
  1580. * @param timeout Timeout period
  1581. * @param ret Return value
  1582. */
  1583. #define sys_port_trace_k_pipe_put_exit(pipe, timeout, ret)
  1584. /**
  1585. * @brief Trace Pipe get attempt entry
  1586. * @param pipe Pipe object
  1587. * @param timeout Timeout period
  1588. */
  1589. #define sys_port_trace_k_pipe_get_enter(pipe, timeout)
  1590. /**
  1591. * @brief Trace Pipe get attempt blocking
  1592. * @param pipe Pipe object
  1593. * @param timeout Timeout period
  1594. */
  1595. #define sys_port_trace_k_pipe_get_blocking(pipe, timeout)
  1596. /**
  1597. * @brief Trace Pipe get attempt outcome
  1598. * @param pipe Pipe object
  1599. * @param timeout Timeout period
  1600. * @param ret Return value
  1601. */
  1602. #define sys_port_trace_k_pipe_get_exit(pipe, timeout, ret)
  1603. /**
  1604. * @brief Trace Pipe block put enter
  1605. * @param pipe Pipe object
  1606. * @param sem Semaphore object
  1607. */
  1608. #define sys_port_trace_k_pipe_block_put_enter(pipe, sem)
  1609. /**
  1610. * @brief Trace Pipe block put exit
  1611. * @param pipe Pipe object
  1612. * @param sem Semaphore object
  1613. */
  1614. #define sys_port_trace_k_pipe_block_put_exit(pipe, sem)
  1615. /**
  1616. * @}
  1617. */ /* end of pipe_tracing_apis */
  1618. /**
  1619. * @brief Heap Tracing APIs
  1620. * @defgroup heap_tracing_apis Heap Tracing APIs
  1621. * @ingroup tracing_apis
  1622. * @{
  1623. */
  1624. /**
  1625. * @brief Trace initialization of Heap
  1626. * @param h Heap object
  1627. */
  1628. #define sys_port_trace_k_heap_init(h)
  1629. /**
  1630. * @brief Trace Heap aligned alloc attempt entry
  1631. * @param h Heap object
  1632. * @param timeout Timeout period
  1633. */
  1634. #define sys_port_trace_k_heap_aligned_alloc_enter(h, timeout)
  1635. /**
  1636. * @brief Trace Heap align alloc attempt blocking
  1637. * @param h Heap object
  1638. * @param timeout Timeout period
  1639. */
  1640. #define sys_port_trace_k_heap_aligned_alloc_blocking(h, timeout)
  1641. /**
  1642. * @brief Trace Heap align alloc attempt outcome
  1643. * @param h Heap object
  1644. * @param timeout Timeout period
  1645. * @param ret Return value
  1646. */
  1647. #define sys_port_trace_k_heap_aligned_alloc_exit(h, timeout, ret)
  1648. /**
  1649. * @brief Trace Heap alloc enter
  1650. * @param h Heap object
  1651. * @param timeout Timeout period
  1652. */
  1653. #define sys_port_trace_k_heap_alloc_enter(h, timeout)
  1654. /**
  1655. * @brief Trace Heap alloc exit
  1656. * @param h Heap object
  1657. * @param timeout Timeout period
  1658. * @param ret Return value
  1659. */
  1660. #define sys_port_trace_k_heap_alloc_exit(h, timeout, ret)
  1661. /**
  1662. * @brief Trace Heap free
  1663. * @param h Heap object
  1664. */
  1665. #define sys_port_trace_k_heap_free(h)
  1666. /**
  1667. * @brief Trace System Heap aligned alloc enter
  1668. * @param heap Heap object
  1669. */
  1670. #define sys_port_trace_k_heap_sys_k_aligned_alloc_enter(heap)
  1671. /**
  1672. * @brief Trace System Heap aligned alloc exit
  1673. * @param heap Heap object
  1674. * @param ret Return value
  1675. */
  1676. #define sys_port_trace_k_heap_sys_k_aligned_alloc_exit(heap, ret)
  1677. /**
  1678. * @brief Trace System Heap aligned alloc enter
  1679. * @param heap Heap object
  1680. */
  1681. #define sys_port_trace_k_heap_sys_k_malloc_enter(heap)
  1682. /**
  1683. * @brief Trace System Heap aligned alloc exit
  1684. * @param heap Heap object
  1685. * @param ret Return value
  1686. */
  1687. #define sys_port_trace_k_heap_sys_k_malloc_exit(heap, ret)
  1688. /**
  1689. * @brief Trace System Heap free entry
  1690. * @param heap Heap object
  1691. */
  1692. #define sys_port_trace_k_heap_sys_k_free_enter(heap)
  1693. /**
  1694. * @brief Trace System Heap free exit
  1695. * @param heap Heap object
  1696. */
  1697. #define sys_port_trace_k_heap_sys_k_free_exit(heap)
  1698. /**
  1699. * @brief Trace System heap calloc enter
  1700. * @param heap
  1701. */
  1702. #define sys_port_trace_k_heap_sys_k_calloc_enter(heap)
  1703. /**
  1704. * @brief Trace System heap calloc exit
  1705. * @param heap Heap object
  1706. * @param ret Return value
  1707. */
  1708. #define sys_port_trace_k_heap_sys_k_calloc_exit(heap, ret)
  1709. /**
  1710. * @}
  1711. */ /* end of heap_tracing_apis */
  1712. /**
  1713. * @brief Memory Slab Tracing APIs
  1714. * @defgroup mslab_tracing_apis Memory Slab Tracing APIs
  1715. * @ingroup tracing_apis
  1716. * @{
  1717. */
  1718. /**
  1719. * @brief Trace initialization of Memory Slab
  1720. * @param slab Memory Slab object
  1721. * @param rc Return value
  1722. */
  1723. #define sys_port_trace_k_mem_slab_init(slab, rc)
  1724. /**
  1725. * @brief Trace Memory Slab alloc attempt entry
  1726. * @param slab Memory Slab object
  1727. * @param timeout Timeout period
  1728. */
  1729. #define sys_port_trace_k_mem_slab_alloc_enter(slab, timeout)
  1730. /**
  1731. * @brief Trace Memory Slab alloc attempt blocking
  1732. * @param slab Memory Slab object
  1733. * @param timeout Timeout period
  1734. */
  1735. #define sys_port_trace_k_mem_slab_alloc_blocking(slab, timeout)
  1736. /**
  1737. * @brief Trace Memory Slab alloc attempt outcome
  1738. * @param slab Memory Slab object
  1739. * @param timeout Timeout period
  1740. * @param ret Return value
  1741. */
  1742. #define sys_port_trace_k_mem_slab_alloc_exit(slab, timeout, ret)
  1743. /**
  1744. * @brief Trace Memory Slab free entry
  1745. * @param slab Memory Slab object
  1746. */
  1747. #define sys_port_trace_k_mem_slab_free_enter(slab)
  1748. /**
  1749. * @brief Trace Memory Slab free exit
  1750. * @param slab Memory Slab object
  1751. */
  1752. #define sys_port_trace_k_mem_slab_free_exit(slab)
  1753. /**
  1754. * @}
  1755. */ /* end of mslab_tracing_apis */
  1756. /**
  1757. * @brief Timer Tracing APIs
  1758. * @defgroup timer_tracing_apis Timer Tracing APIs
  1759. * @ingroup tracing_apis
  1760. * @{
  1761. */
  1762. /**
  1763. * @brief Trace initialization of Timer
  1764. * @param timer Timer object
  1765. */
  1766. #define sys_port_trace_k_timer_init(timer)
  1767. /**
  1768. * @brief Trace Timer start
  1769. * @param timer Timer object
  1770. */
  1771. #define sys_port_trace_k_timer_start(timer)
  1772. /**
  1773. * @brief Trace Timer stop
  1774. * @param timer Timer object
  1775. */
  1776. #define sys_port_trace_k_timer_stop(timer)
  1777. /**
  1778. * @brief Trace Timer status sync entry
  1779. * @param timer Timer object
  1780. */
  1781. #define sys_port_trace_k_timer_status_sync_enter(timer)
  1782. /**
  1783. * @brief Trace Timer Status sync blocking
  1784. * @param timer Timer object
  1785. * @param timeout Timeout period
  1786. */
  1787. #define sys_port_trace_k_timer_status_sync_blocking(timer, timeout)
  1788. /**
  1789. * @brief Trace Time Status sync outcome
  1790. * @param timer Timer object
  1791. * @param result Return value
  1792. */
  1793. #define sys_port_trace_k_timer_status_sync_exit(timer, result)
  1794. /**
  1795. * @}
  1796. */ /* end of timer_tracing_apis */
  1797. #define sys_port_trace_pm_system_suspend_enter(ticks)
  1798. #define sys_port_trace_pm_system_suspend_exit(ticks, ret)
  1799. #define sys_port_trace_pm_device_request_enter(dev, target_state)
  1800. #define sys_port_trace_pm_device_request_exit(dev, ret)
  1801. #define sys_port_trace_pm_device_enable_enter(dev)
  1802. #define sys_port_trace_pm_device_enable_exit(dev)
  1803. #define sys_port_trace_pm_device_disable_enter(dev)
  1804. #define sys_port_trace_pm_device_disable_exit(dev)
  1805. #if defined CONFIG_PERCEPIO_TRACERECORDER
  1806. #include "tracing_tracerecorder.h"
  1807. #else
  1808. /**
  1809. * @brief Tracing APIs
  1810. * @defgroup tracing_apis Tracing APIs
  1811. * @{
  1812. */
  1813. /**
  1814. * @brief Called when entering an ISR
  1815. */
  1816. void sys_trace_isr_enter(void);
  1817. /**
  1818. * @brief Called when exiting an ISR
  1819. */
  1820. void sys_trace_isr_exit(void);
  1821. /**
  1822. * @brief Called when exiting an ISR and switching to scheduler
  1823. */
  1824. void sys_trace_isr_exit_to_scheduler(void);
  1825. /**
  1826. * @brief Called when the cpu enters the idle state
  1827. */
  1828. void sys_trace_idle(void);
  1829. /**
  1830. * @}
  1831. */
  1832. #endif
  1833. #endif
  1834. #endif