Kconfig 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342
  1. # Debug configuration options
  2. # Copyright (c) 2015 Wind River Systems, Inc.
  3. # SPDX-License-Identifier: Apache-2.0
  4. DT_CHOSEN_Z_CONSOLE := zephyr,console
  5. config TRACING
  6. bool "Tracing Support"
  7. imply THREAD_NAME
  8. imply THREAD_STACK_INFO
  9. imply THREAD_MONITOR
  10. select INSTRUMENT_THREAD_SWITCHING
  11. help
  12. Enable system tracing. This requires a backend such as SEGGER
  13. Systemview to be enabled as well.
  14. if TRACING
  15. config TRACING_CORE
  16. bool
  17. help
  18. Automatically selected by formats that require the core
  19. tracing infrastructure.
  20. choice
  21. prompt "Tracing Format"
  22. default TRACING_NONE
  23. config TRACING_NONE
  24. bool "No tracing format selected"
  25. help
  26. None of the available tracing formats is selected.
  27. config PERCEPIO_TRACERECORDER
  28. bool "Percepio Tracealyzer support"
  29. select THREAD_NAME
  30. select INIT_STACKS
  31. select THREAD_MONITOR
  32. depends on ZEPHYR_TRACERECORDER_MODULE
  33. config SEGGER_SYSTEMVIEW
  34. bool "Segger SystemView support"
  35. select CONSOLE
  36. select RTT_CONSOLE
  37. select USE_SEGGER_RTT
  38. select THREAD_MONITOR
  39. select SEGGER_RTT_CUSTOM_LOCKING
  40. config TRACING_CTF
  41. bool "Tracing via Common Trace Format support"
  42. select TRACING_CORE
  43. help
  44. Enable tracing to a Common Trace Format stream.
  45. config TRACING_TEST
  46. bool "Tracing for test usage"
  47. select TRACING_CORE
  48. help
  49. Enable tracing for testing kinds of format purpose. It must
  50. implement the tracing hooks defined in tracing_test.h
  51. config TRACING_USER
  52. bool "Tracing using user-defined functions"
  53. help
  54. Use user-defined functions for tracing task switching and irqs
  55. endchoice
  56. config TRACING_CTF_TIMESTAMP
  57. bool "Enable CTF internal timestamp"
  58. default y
  59. depends on TRACING_CTF
  60. help
  61. Timestamp prefix will be added to the beginning of CTF
  62. event internally.
  63. choice
  64. prompt "Tracing Method"
  65. default TRACING_ASYNC
  66. config TRACING_SYNC
  67. bool "Synchronous Tracing"
  68. select RING_BUFFER
  69. help
  70. Enable synchronous tracing. This requires the backend to be
  71. very low-latency.
  72. config TRACING_ASYNC
  73. bool "Asynchronous Tracing"
  74. select RING_BUFFER
  75. help
  76. Enable asynchronous tracing. This will buffer all the tracing
  77. packets to the ring buffer first, tracing thread will try to
  78. output as much data as possible from the buffer when tracing
  79. thread get scheduled.
  80. endchoice
  81. config TRACING_THREAD_STACK_SIZE
  82. int "Stack size of tracing thread"
  83. default 1024
  84. depends on TRACING_ASYNC
  85. help
  86. Stack size of tracing thread.
  87. config TRACING_THREAD_WAIT_THRESHOLD
  88. int "Tracing thread waiting threshold"
  89. default 100
  90. depends on TRACING_ASYNC
  91. help
  92. Tracing thread waiting period given in milliseconds after
  93. every first packet put to tracing buffer.
  94. config TRACING_BUFFER_SIZE
  95. int "Size of tracing buffer"
  96. default 2048 if TRACING_ASYNC
  97. default TRACING_PACKET_MAX_SIZE if TRACING_SYNC
  98. range 32 65536
  99. help
  100. Size of tracing buffer. If TRACING_ASYNC is enabled, tracing buffer
  101. is used as a ring buffer to buffer data packet and string packet. If
  102. TRACING_SYNC is enabled, the buffer is used to hold the formated data.
  103. config TRACING_PACKET_MAX_SIZE
  104. int "Max size of one tracing packet"
  105. default 32
  106. help
  107. Max size of one tracing packet.
  108. choice
  109. prompt "Tracing Backend"
  110. default TRACING_BACKEND_UART
  111. config TRACING_BACKEND_UART
  112. bool "Enable UART backend"
  113. depends on UART_CONSOLE
  114. help
  115. Use UART to output tracing data.
  116. config TRACING_BACKEND_USB
  117. bool "Enable USB backend"
  118. depends on USB_DEVICE_STACK
  119. depends on TRACING_ASYNC
  120. help
  121. Use USB to output tracing data.
  122. config TRACING_BACKEND_POSIX
  123. bool "Enable posix architecture (native) backend"
  124. depends on TRACING_SYNC
  125. depends on ARCH_POSIX
  126. help
  127. Use posix architecture to output tracing data to file system.
  128. config TRACING_BACKEND_RAM
  129. bool "Enable RAM backend"
  130. help
  131. Use a ram buffer to output tracing data which can
  132. be dumped to a file at runtime with a debugger.
  133. See gdb dump binary memory documentation for example.
  134. config RAM_TRACING_BUFFER_SIZE
  135. int "Ram Tracing buffer size"
  136. default 4096
  137. depends on TRACING_BACKEND_RAM
  138. help
  139. Size of the RAM trace buffer. Trace will be discarded if the
  140. length is exceeded.
  141. endchoice
  142. config TRACING_BACKEND_UART_NAME
  143. string "Device Name of UART Device for UART backend"
  144. default "$(dt_chosen_label,$(DT_CHOSEN_Z_CONSOLE))" if HAS_DTS
  145. default "UART_0"
  146. depends on TRACING_BACKEND_UART
  147. help
  148. This option specifies the name of UART device to be used for
  149. tracing backend.
  150. config TRACING_USB_MPS
  151. int "USB backend max packet size"
  152. default 64
  153. depends on TRACING_BACKEND_USB
  154. help
  155. USB tracing backend max packet size(endpoint MPS).
  156. config TRACING_HANDLE_HOST_CMD
  157. bool "Enable host command handle"
  158. select UART_INTERRUPT_DRIVEN if TRACING_BACKEND_UART
  159. help
  160. When enabled tracing will handle cmd from host to dynamically
  161. enable and disable tracing to have host capture tracing stream
  162. data conveniently.
  163. config TRACING_CMD_BUFFER_SIZE
  164. int "Size of tracing command buffer"
  165. default 32
  166. range 32 128
  167. help
  168. Size of tracing command buffer.
  169. menu "Tracing Configuration"
  170. config SYSCALL_TRACING
  171. bool "Enable tracing Syscalls"
  172. default y
  173. help
  174. Enable tracing Syscalls.
  175. config TRACING_THREAD
  176. bool "Enable tracing Threads"
  177. default y
  178. help
  179. Enable tracing Threads.
  180. config TRACING_WORK
  181. bool "Enable tracing Work"
  182. default y
  183. help
  184. Enable tracing Work and Work queue events
  185. config TRACING_ISR
  186. bool "Enable tracing ISRs"
  187. default y
  188. help
  189. Enable tracing ISRs. This requires the backend to be
  190. very low-latency.
  191. config TRACING_SEMAPHORE
  192. bool "Enable tracing Semaphores"
  193. default y
  194. help
  195. Enable tracing Semaphores.
  196. config TRACING_MUTEX
  197. bool "Enable tracing Mutexes"
  198. default y
  199. help
  200. Enable tracing Mutexes.
  201. config TRACING_CONDVAR
  202. bool "Enable tracing Condition Variables"
  203. default y
  204. help
  205. Enable tracing Condition Variables
  206. config TRACING_QUEUE
  207. bool "Enable tracing Queues"
  208. default y
  209. help
  210. Enable tracing Queues.
  211. config TRACING_FIFO
  212. bool "Enable tracing FIFO queues"
  213. default y
  214. help
  215. Enable tracing FIFO queues.
  216. config TRACING_LIFO
  217. bool "Enable tracing LIFO queues"
  218. default y
  219. help
  220. Enable tracing LIFO queues.
  221. config TRACING_STACK
  222. bool "Enable tracing Memory Stacks"
  223. default y
  224. help
  225. Enable tracing Memory Stacks.
  226. config TRACING_MESSAGE_QUEUE
  227. bool "Enable tracing Message Queues"
  228. default y
  229. help
  230. Enable tracing Message Queues.
  231. config TRACING_MAILBOX
  232. bool "Enable tracing Mailboxes"
  233. default y
  234. help
  235. Enable tracing Mailboxes.
  236. config TRACING_PIPE
  237. bool "Enable tracing Pipes"
  238. default y
  239. help
  240. Enable tracing Pipes.
  241. config TRACING_HEAP
  242. bool "Enable tracing Memory Heaps"
  243. default y
  244. help
  245. Enable tracing Memory Heaps.
  246. config TRACING_MEMORY_SLAB
  247. bool "Enable tracing Memory Slabs"
  248. default y
  249. help
  250. Enable tracing Memory Slabs.
  251. config TRACING_TIMER
  252. bool "Enable tracing Timers"
  253. default y
  254. help
  255. Enable tracing Timers.
  256. endmenu # Tracing Configuration
  257. endif
  258. config TRACING_IRQ_PROFILER
  259. bool "Enable tracing ISRs profile"
  260. default n
  261. help
  262. Enable tracing ISRs profiler. This requires the backend to be
  263. very low-latency.
  264. config TRACING_IRQ_PROFILER_MAX_LATENCY
  265. bool "Enable tracing ISRs max latency time"
  266. default n
  267. help
  268. Enable tracing ISRs max latency time. This requires the backend to be
  269. very low-latency.
  270. config TRACING_IRQ_PROFILE_MAX_LATENCY_CYCLES
  271. int "Enable tracing ISRs max latency time cycles(24MHZ)"
  272. default 320000
  273. help
  274. Enable tracing ISRs max latency time cycles. This requires the backend to be
  275. very low-latency.
  276. config TRACING_IRQ_PROFILER_IRQLOADING
  277. bool "Enable tracing ISRs irq loading"
  278. default n
  279. help
  280. Enable tracing ISRs irq loading. This requires the backend to be
  281. very low-latency.
  282. source "subsys/tracing/sysview/Kconfig"