tracing.h 54 KB

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