Kconfig 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381
  1. # Debug configuration options
  2. # Copyright (c) 2015 Wind River Systems, Inc.
  3. # SPDX-License-Identifier: Apache-2.0
  4. menu "System Monitoring Options"
  5. menuconfig THREAD_ANALYZER
  6. bool "Enable Thread analyzer"
  7. select INIT_STACKS
  8. select THREAD_MONITOR
  9. select THREAD_STACK_INFO
  10. select THREAD_RUNTIME_STATS
  11. help
  12. Enable thread analyzer functionality and all the required modules.
  13. This module may be used to debug thread configuration issues, e.g.
  14. stack size configuration to find stack overflow or to find stacks
  15. which may be optimized.
  16. if THREAD_ANALYZER
  17. module = THREAD_ANALYZER
  18. module-str = thread analyzer
  19. source "${ZEPHYR_BASE}/subsys/logging/Kconfig.template.log_config"
  20. choice
  21. prompt "Thread analysis print mode"
  22. config THREAD_ANALYZER_USE_LOG
  23. bool "Use logger output"
  24. select LOG
  25. help
  26. Use logger output to print thread information.
  27. config THREAD_ANALYZER_USE_PRINTK
  28. bool "Use printk function"
  29. help
  30. Use kernel printk function to print thread information.
  31. endchoice
  32. config THREAD_ANALYZER_RUN_UNLOCKED
  33. bool "Run analysis with interrupts unlocked"
  34. default y
  35. help
  36. The thread analysis takes quite a long time.
  37. Every thread it finds is analyzed word by word to find any that
  38. does not match the magic number.
  39. Normally while thread are analyzed the k_thread_foreach function
  40. is used.
  41. While this is a safe run from the thread list perspective it may lock
  42. the interrupts for a long time - long enough to disconnect when
  43. Bluetooth communication is used.
  44. Setting this flag will force thread analyzer to use
  45. the k_thread_foreach_unlocked function.
  46. This will allow the interrupts to be processed while the thread is
  47. analyzed.
  48. For the limitation of such configuration see the k_thread_foreach
  49. documentation.
  50. config THREAD_ANALYZER_AUTO
  51. bool "Run periodic thread analysis in a thread"
  52. help
  53. Run the thread analyzer automatically, without the need to add
  54. any code to the application.
  55. Thread analysis would be called periodically.
  56. if THREAD_ANALYZER_AUTO
  57. config THREAD_ANALYZER_AUTO_INTERVAL
  58. int "Thread analysis interval"
  59. default 60
  60. range 5 3600
  61. help
  62. The time in seconds to call thread analyzer periodic printing function.
  63. config THREAD_ANALYZER_AUTO_STACK_SIZE
  64. int "Stack size for the periodic thread analysis thread"
  65. default 1024
  66. endif # THREAD_ANALYZER_AUTO
  67. endif # THREAD_ANALYZER
  68. endmenu
  69. menu "Debugging Options"
  70. config DEBUG
  71. bool "Build kernel with debugging enabled"
  72. help
  73. Build a kernel suitable for debugging. Right now, this option
  74. only disables optimization, more debugging variants can be selected
  75. from here to allow more debugging.
  76. config ASAN
  77. bool "Build with address sanitizer"
  78. depends on ARCH_POSIX
  79. help
  80. Builds Zephyr with Address Sanitizer enabled. This is currently
  81. only supported by boards based on the posix architecture, and requires a
  82. recent-ish compiler with the ``-fsanitize=address`` command line option,
  83. and the libasan library.
  84. Note that at exit leak detection is disabled for 64-bit boards when
  85. GCC is used due to potential risk of a deadlock in libasan.
  86. This behavior can be changes by adding leak_check_at_exit=1 to the
  87. environment variable ASAN_OPTIONS.
  88. config ASAN_NOP_DLCLOSE
  89. bool "Override host OS dlclose() with a NOP"
  90. default y if HAS_SDL
  91. depends on ASAN
  92. help
  93. Override host OS dlclose() with a NOP.
  94. This NOP implementation is needed as workaround for a known limitation in
  95. LSAN (leak sanitizer) that if dlcose is called before performing the leak
  96. check, "<unknown module>" is reported in the stack traces during the leak
  97. check and these can not be suppressed, see
  98. https://github.com/google/sanitizers/issues/89 for more info.
  99. config UBSAN
  100. bool "Build with undefined behavior sanitizer"
  101. depends on ARCH_POSIX
  102. help
  103. Builds Zephyr with Undefined Behavior Sanitizer enabled.
  104. This is currently only supported by boards based on the posix
  105. architecture, and requires a recent-ish compiler with the
  106. ``-fsanitize=undefined`` command line option.
  107. config STACK_USAGE
  108. bool "Generate stack usage information"
  109. help
  110. Generate an extra file that specifies the maximum amount of stack used,
  111. on a per-function basis.
  112. config STACK_SENTINEL
  113. bool "Enable stack sentinel"
  114. select THREAD_STACK_INFO
  115. depends on MULTITHREADING
  116. depends on !USERSPACE
  117. help
  118. Store a magic value at the lowest addresses of a thread's stack.
  119. Periodically check that this value is still present and kill the
  120. thread gracefully if it isn't. This is currently checked in four
  121. places:
  122. 1) Upon any context switch for the outgoing thread
  123. 2) Any hardware interrupt that doesn't context switch, the check is
  124. performed for the interrupted thread
  125. 3) When a thread returns from its entry point
  126. 4) When a thread calls k_yield() but doesn't context switch
  127. This feature doesn't prevent corruption and the system may be
  128. in an unusable state. However, given the bizarre behavior associated
  129. with stack overflows, knowledge that this is happening is very
  130. useful.
  131. This feature is intended for those systems which lack hardware support
  132. for stack overflow protection, or have insufficient system resources
  133. to use that hardware support.
  134. config PRINTK
  135. bool "Send printk() to console"
  136. default y
  137. help
  138. This option directs printk() debugging output to the supported
  139. console device, rather than suppressing the generation
  140. of printk() output entirely. Output is sent immediately, without
  141. any mutual exclusion or buffering.
  142. config PRINTK_BUFFER_SIZE
  143. int "printk() buffer size"
  144. depends on PRINTK
  145. depends on USERSPACE
  146. default 32
  147. help
  148. If userspace is enabled, printk() calls are buffered so that we do
  149. not have to make a system call for every character emitted. Specify
  150. the size of this buffer.
  151. config EARLY_CONSOLE
  152. bool "Send stdout at the earliest stage possible"
  153. help
  154. This option will enable stdout as early as possible, for debugging
  155. purpose. For instance, in case of STDOUT_CONSOLE being set it will
  156. initialize its driver earlier than normal, in order to get the stdout
  157. sent through the console at the earliest stage possible.
  158. config ASSERT
  159. bool "Enable __ASSERT() macro"
  160. default y if TEST
  161. help
  162. This enables the __ASSERT() macro in the kernel code. If an assertion
  163. fails, the policy for what to do is controlled by the implementation
  164. of the assert_post_action() function, which by default will trigger
  165. a fatal error.
  166. Disabling this option will cause assertions to compile to nothing,
  167. improving performance and system footprint.
  168. config ASSERT_LEVEL
  169. int "__ASSERT() level"
  170. default 2
  171. range 0 2
  172. depends on ASSERT
  173. help
  174. This option specifies the assertion level used by the __ASSERT()
  175. macro. It can be set to one of three possible values:
  176. Level 0: off
  177. Level 1: on + warning in every file that includes __assert.h
  178. Level 2: on + no warning
  179. config SPIN_VALIDATE
  180. bool "Enable spinlock validation"
  181. depends on ASSERT
  182. depends on MULTITHREADING
  183. depends on MP_NUM_CPUS <= 4
  184. default y if !FLASH || FLASH_SIZE > 32
  185. help
  186. There's a spinlock validation framework available when asserts are
  187. enabled. It adds a relatively hefty overhead (about 3k or so) to
  188. kernel code size, don't use on platforms known to be small.
  189. config FORCE_NO_ASSERT
  190. bool "Force-disable no assertions"
  191. help
  192. This boolean option disables Zephyr assertion testing even
  193. in circumstances (twister) where it is enabled via
  194. CFLAGS and not Kconfig. Added solely to be able to work
  195. around compiler bugs for specific tests.
  196. config ASSERT_VERBOSE
  197. bool "Enable verbose assertions"
  198. default y
  199. help
  200. This option enables printing an assert message with information about
  201. the assertion that occurred. This includes printing the location,
  202. the conditional expression and additional message specific to the
  203. assert.
  204. config ASSERT_NO_FILE_INFO
  205. bool "Disable file info for asserts"
  206. help
  207. This option removes the name and the path of the source file
  208. in which the assertion occurred. Enabling this will save
  209. target code space, and thus may be necessary for tiny targets.
  210. config ASSERT_NO_COND_INFO
  211. bool "Disable condition info for asserts"
  212. help
  213. This option removes the assert condition from the printed assert
  214. message. Enabling this will save target code space, and thus may be
  215. necessary for tiny targets. It is recommended to disable condition
  216. info before disabling file info since the condition can be found in
  217. the source using file info.
  218. config ASSERT_NO_MSG_INFO
  219. bool "Disable message for asserts"
  220. help
  221. This option removes the additional message from the printed assert.
  222. Enabling this will save target code space, and thus may be
  223. necessary for tiny targets. It is recommended to disable message
  224. before disabling file info since the message can be found in the
  225. source using file info.
  226. config OVERRIDE_FRAME_POINTER_DEFAULT
  227. bool "Override compiler defaults for -fomit-frame-pointer"
  228. help
  229. Omitting the frame pointer prevents the compiler from putting the stack
  230. frame pointer into a register. Saves a few instructions in function
  231. prologues/epilogues and frees up a register for general-purpose use,
  232. which can provide good performance improvements on register-constrained
  233. architectures like x86. On some architectures (including x86) omitting
  234. frame pointers impedes debugging as local variables are harder to
  235. locate. At -O1 and above gcc will enable -fomit-frame-pointer
  236. automatically but only if the architecture does not require if for
  237. effective debugging.
  238. Choose Y if you want to override the default frame pointer behavior
  239. of your compiler, otherwise choose N.
  240. config OMIT_FRAME_POINTER
  241. bool "Omit frame pointer"
  242. depends on OVERRIDE_FRAME_POINTER_DEFAULT
  243. help
  244. Choose Y for best performance. On some architectures (including x86)
  245. this will favor code size and performance over debugability.
  246. Choose N in you wish to retain the frame pointer. This option may
  247. be useful if your application uses runtime backtracing and does not
  248. support parsing unwind tables.
  249. If unsure, disable OVERRIDE_FRAME_POINTER_DEFAULT to allow the compiler
  250. to adopt sensible defaults for your architecture.
  251. #
  252. # Generic Debugging Options
  253. #
  254. config DEBUG_INFO
  255. bool "Enable system debugging information"
  256. help
  257. This option enables the addition of various information that can be
  258. used by debuggers in debugging the system, or enable additional
  259. debugging information to be reported at runtime.
  260. config EXCEPTION_STACK_TRACE
  261. bool "Attempt to print stack traces upon exceptions"
  262. default y
  263. depends on PRINTK
  264. depends on DEBUG_INFO
  265. depends on !OMIT_FRAME_POINTER
  266. help
  267. If the architecture fatal handling code supports it, attempt to
  268. print a stack trace of function memory addresses when an
  269. exception is reported.
  270. #
  271. # Miscellaneous debugging options
  272. #
  273. config OPENOCD_SUPPORT
  274. bool "OpenOCD support (DEPRECATED)"
  275. select DEBUG_THREAD_INFO
  276. help
  277. This is deprecated, please use DEBUG_THREAD_INFO instead.
  278. config DEBUG_THREAD_INFO
  279. bool "Thread awareness support"
  280. depends on !SMP
  281. select THREAD_MONITOR
  282. select THREAD_NAME
  283. help
  284. This option exports an array of offsets to kernel structs to allow
  285. for debugger RTOS plugins to determine the state of running threads.
  286. config MAGIC_SYSRQ
  287. bool "Magic SysRq key"
  288. default y if ARM
  289. depends on SHELL_BACKEND_SERIAL
  290. help
  291. If you say Y here, you will have some control over the system even
  292. if the system crashes for example during kernel debugging. Don't
  293. say Y unless you really know what this hack does.
  294. rsource "coredump/Kconfig"
  295. endmenu
  296. config GDBSTUB
  297. bool "GDB remote serial protocol support [EXPERIMENTAL]"
  298. depends on ARCH_HAS_GDBSTUB
  299. help
  300. This option enable support the target using GDB, or any other
  301. application that supports GDB protocol.
  302. if GDBSTUB
  303. choice
  304. prompt "GDB backend"
  305. config GDBSTUB_SERIAL_BACKEND
  306. bool "Use serial backend"
  307. depends on SERIAL
  308. help
  309. Use serial as backenf for GDB
  310. endchoice
  311. config GDBSTUB_SERIAL_BACKEND_NAME
  312. string "Serial Name"
  313. depends on GDBSTUB_SERIAL_BACKEND
  314. default "UART_0"
  315. help
  316. Use serial as backenf for GDB
  317. endif