Kconfig 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352
  1. # Console driver configuration options
  2. # Copyright (c) 2014-2015 Wind River Systems, Inc.
  3. # Copyright (c) 2016 Cadence Design Systems, Inc.
  4. # SPDX-License-Identifier: Apache-2.0
  5. # Setting shared by different subsystems
  6. # Workaround for not being able to have commas in macro arguments
  7. DT_CHOSEN_Z_CONSOLE := zephyr,console
  8. config UART_CONSOLE_ON_DEV_NAME
  9. string "Device Name of UART Device for UART Console"
  10. default "$(dt_chosen_label,$(DT_CHOSEN_Z_CONSOLE))" if HAS_DTS
  11. default "UART_0"
  12. depends on (UART_CONSOLE || CONSOLE_SUBSYS)
  13. help
  14. This option specifies the name of UART device to be used for
  15. UART console.
  16. config UART_DC5V_ON_DEV_NAME
  17. string "Device Name of UART Device for DC5V Communication"
  18. default "UART_2"
  19. help
  20. This option specifies the name of UART device to be used for
  21. DC5V Uart.
  22. menuconfig CONSOLE
  23. bool "Console drivers"
  24. if CONSOLE
  25. config CONSOLE_INPUT_MAX_LINE_LEN
  26. int "Console maximum input line length"
  27. default 128
  28. help
  29. This option can be used to modify the maximum length a console input
  30. can be.
  31. config CONSOLE_HAS_DRIVER
  32. bool
  33. help
  34. This is an option to be enabled by console drivers to signal
  35. that some kind of console exists.
  36. config CONSOLE_HANDLER
  37. bool "Enable console input handler"
  38. depends on UART_CONSOLE && SERIAL_SUPPORT_INTERRUPT
  39. select UART_INTERRUPT_DRIVEN
  40. help
  41. This option enables console input handler allowing to write simple
  42. interaction between serial console and the OS.
  43. config UART_CONSOLE
  44. bool "Use UART for console"
  45. depends on SERIAL && SERIAL_HAS_DRIVER
  46. select CONSOLE_HAS_DRIVER
  47. help
  48. Enable this option to use one UART for console.
  49. config UART_CONSOLE_INIT_PRIORITY
  50. int "Init priority"
  51. default 95 if USB_UART_CONSOLE
  52. default 60
  53. depends on UART_CONSOLE
  54. help
  55. Device driver initialization priority.
  56. Console has to be initialized after the UART driver
  57. it uses.
  58. config UART_CONSOLE_DEBUG_SERVER_HOOKS
  59. bool "Debug server hooks in debug console"
  60. depends on UART_CONSOLE
  61. help
  62. This option allows a debug server agent such as GDB to take over the
  63. handling of traffic that goes through the console logic. The debug
  64. server looks at characters received and decides to handle them itself if
  65. they are some sort of control characters, or let the regular console
  66. code handle them if they are of no special significance to it.
  67. config UART_CONSOLE_MCUMGR
  68. bool "Enable UART console mcumgr passthrough"
  69. depends on UART_CONSOLE
  70. help
  71. Enables the UART console to receive mcumgr frames for image upgrade
  72. and device management. When enabled, the UART console does not
  73. process mcumgr frames, but it hands them up to a higher level module
  74. (e.g., the shell). If unset, incoming mcumgr frames are dropped.
  75. config UART_CONSOLE_INPUT_EXPIRED
  76. bool "Enable support for UART console input expired mechanism"
  77. default y
  78. depends on UART_CONSOLE && PM
  79. help
  80. This option allows a notification to the power management module that
  81. the module for UART console is in use now. If the interval of console
  82. module doesn't receive any input message exceeds expired timeout, such
  83. as UART_CONSOLE_INPUT_EXPIRED_TIMEOUT, the power management module is
  84. allowed to enter sleep/deep sleep state and turn off the clock of UART
  85. console module. This mechanism gives a window in which the users can
  86. organize input message if CONFIG_PM is enabled.
  87. config UART_CONSOLE_INPUT_EXPIRED_TIMEOUT
  88. int "Fixed amount of time to keep the UART console in use flag true"
  89. default 15000
  90. depends on UART_CONSOLE_INPUT_EXPIRED
  91. help
  92. Fixed amount of time which unit is milliseconds to keep the UART
  93. console in use flag true.
  94. config USB_UART_CONSOLE
  95. bool "Use USB port for console outputs"
  96. select UART_CONSOLE
  97. select USB_CDC_ACM
  98. help
  99. Enable this option to use the USB CDC ACM class for console.
  100. As for the console driver, this option only changes the initialization
  101. level.
  102. config DC5V_UART_CONSOLE
  103. bool "Use dc5v port for console outputs"
  104. select UART_DMA_DRIVEN
  105. default n
  106. help
  107. Enable this option to use the dc5v UART for console output. The output
  108. config RAM_CONSOLE
  109. bool "Use RAM console"
  110. select CONSOLE_HAS_DRIVER
  111. help
  112. Emit console messages to a RAM buffer "ram_console" which can
  113. be examined at runtime with a debugger. Useful in board bring-up
  114. if there aren't any working serial drivers.
  115. config RAM_CONSOLE_BUFFER_SIZE
  116. int "Ram Console buffer size"
  117. default 1024
  118. depends on RAM_CONSOLE
  119. help
  120. Size of the RAM console buffer. Messages will wrap around if the
  121. length is exceeded.
  122. config RTT_CONSOLE
  123. bool "Use RTT console"
  124. depends on USE_SEGGER_RTT
  125. select CONSOLE_HAS_DRIVER
  126. help
  127. Emit console messages to a RAM buffer that is then read by the
  128. Segger J-Link software and displayed on a computer in real-time.
  129. Requires support for Segger J-Link on the companion IC onboard.
  130. if RTT_CONSOLE
  131. config RTT_TX_RETRY_CNT
  132. int "Number of TX retries"
  133. default 2
  134. help
  135. Number of TX retries before dropping the byte and assuming that
  136. RTT session is inactive.
  137. config RTT_TX_RETRY_DELAY_MS
  138. int "Delay between TX retries in milliseconds"
  139. default 2
  140. help
  141. Sleep period between TX retry attempts. During RTT session, host pulls data
  142. periodically. Period starts from 1-2 milliseconds and can be increased
  143. if traffic on RTT increases (also from host to device). In case of
  144. heavy traffic data can be lost and it may be necessary to increase
  145. delay or number of retries.
  146. config RTT_TX_RETRY_IN_INTERRUPT
  147. bool "Busy wait in the interrupt context for TX retry"
  148. help
  149. If enabled RTT console will busy wait between TX retries when console
  150. assumes that RTT session is active. In case of heavy traffic data can
  151. be lost and it may be necessary to increase delay or number of
  152. retries.
  153. endif
  154. config IPM_CONSOLE_SENDER
  155. bool "Inter-processor Mailbox console sender"
  156. select CONSOLE_HAS_DRIVER
  157. help
  158. Enable the sending side of IPM console
  159. config IPM_CONSOLE_RECEIVER
  160. bool "Inter-processor Mailbox console receiver"
  161. select RING_BUFFER
  162. help
  163. Enable the receiving side of IPM console
  164. config IPM_CONSOLE_STACK_SIZE
  165. int "Stack size for IPM console receiver thread"
  166. depends on IPM_CONSOLE_RECEIVER
  167. default 2048 if COVERAGE
  168. default 512
  169. help
  170. Each instance of the IPM console receiver driver creates a worker
  171. thread to print out incoming messages from the remote CPU. Specify the
  172. stack size for these threads here.
  173. config IPM_CONSOLE
  174. bool "Inter-processor Mailbox console"
  175. depends on IPM
  176. select CONSOLE_HAS_DRIVER
  177. help
  178. Enable console over Inter-processor Mailbox.
  179. # Workaround for not being able to have commas in macro arguments
  180. DT_CHOSEN_Z_IPM_CONSOLE := zephyr,console
  181. config IPM_CONSOLE_ON_DEV_NAME
  182. string "IPM device name used by console"
  183. default "$(dt_chosen_label,$(DT_CHOSEN_Z_IPM_CONSOLE))" if HAS_DTS
  184. default "IPM_0"
  185. depends on IPM_CONSOLE
  186. help
  187. IPM device name used by IPM console driver.
  188. config IPM_CONSOLE_LINE_BUF_LEN
  189. int "IPM console line buffer length"
  190. default 128
  191. depends on IPM_CONSOLE
  192. help
  193. IPM console line buffer length specify amount of the buffer
  194. where characters are stored before sending the whole line.
  195. config UART_PIPE
  196. bool "Enable pipe UART driver"
  197. select UART_INTERRUPT_DRIVEN
  198. help
  199. Enable pipe UART driver. This driver allows application to communicate
  200. over UART with custom defined protocol. Driver doesn't inspect received
  201. data (as contrary to console UART driver) and all aspects of received
  202. protocol data are handled by application provided callback.
  203. # Workaround for not being able to have commas in macro arguments
  204. DT_CHOSEN_Z_UART_PIPE := zephyr,uart-pipe
  205. config UART_PIPE_ON_DEV_NAME
  206. string "Device Name of UART Device for pipe UART"
  207. default "$(dt_chosen_label,$(DT_CHOSEN_Z_UART_PIPE))" if HAS_DTS
  208. default "UART_0"
  209. depends on UART_PIPE
  210. help
  211. This option specifies the name of UART device to be used
  212. for pipe UART.
  213. config UART_MCUMGR
  214. bool "Enable mcumgr UART driver"
  215. select UART_INTERRUPT_DRIVEN
  216. help
  217. Enable the mcumgr UART driver. This driver allows the application to
  218. communicate over UART using the mcumgr protocol for image upgrade and
  219. device management. The driver doesn't inspect received data (as
  220. contrary to console UART driver) and all aspects of received protocol
  221. data are handled by an application provided callback.
  222. if UART_MCUMGR
  223. config UART_MCUMGR_RX_BUF_SIZE
  224. int "Size of receive buffer for mcumgr fragments received over UART, in bytes"
  225. default 128
  226. help
  227. Specifies the size of the mcumgr UART receive buffer, in bytes. This
  228. value must be large enough to accommodate any line sent by an mcumgr
  229. client.
  230. config UART_MCUMGR_RX_BUF_COUNT
  231. int "Number of receive buffers for mcumgr fragments received over UART"
  232. default 2
  233. help
  234. Specifies the number of the mcumgr UART receive buffers. Receive
  235. buffers hold received mcumgr fragments prior to reassembly. This
  236. setting's value must satisfy the following relation:
  237. UART_MCUMGR_RX_BUF_COUNT * UART_MCUMGR_RX_BUF_SIZE >=
  238. MCUMGR_SMP_UART_MTU
  239. endif # UART_MCUMGR
  240. config XTENSA_SIM_CONSOLE
  241. bool "Use Xtensa simulator console"
  242. depends on SIMULATOR_XTENSA
  243. select CONSOLE_HAS_DRIVER
  244. default y
  245. help
  246. Use simulator console to print messages.
  247. config NATIVE_POSIX_CONSOLE
  248. bool "Use the host terminal for console"
  249. depends on ARCH_POSIX
  250. select CONSOLE_HAS_DRIVER
  251. help
  252. Use the host terminal (where the native_posix binary was launched) for the
  253. Zephyr console
  254. config NATIVE_POSIX_STDIN_CONSOLE
  255. bool "Use the host terminal stdin"
  256. depends on NATIVE_POSIX_CONSOLE
  257. help
  258. No current use. Kept only as there is plans to start using these
  259. drivers with the shell
  260. config NATIVE_STDIN_POLL_PERIOD
  261. int "Polling period for stdin"
  262. depends on NATIVE_POSIX_STDIN_CONSOLE
  263. default 20
  264. help
  265. In ms, polling period for stdin
  266. config NATIVE_POSIX_STDOUT_CONSOLE
  267. bool "Print to the host terminal stdout"
  268. depends on NATIVE_POSIX_CONSOLE
  269. default y
  270. help
  271. Zephyr's printk messages will be directed to the host terminal stdout.
  272. config XTENSA_CONSOLE_INIT_PRIORITY
  273. int "Init priority"
  274. default 60
  275. depends on XTENSA_SIM_CONSOLE
  276. help
  277. Device driver initialization priority.
  278. config NATIVE_POSIX_CONSOLE_INIT_PRIORITY
  279. int "Init priority"
  280. default 99
  281. depends on NATIVE_POSIX_CONSOLE
  282. help
  283. Device driver initialization priority.
  284. config SEMIHOST_CONSOLE
  285. bool "Use semihosting for console"
  286. select CONSOLE_HAS_DRIVER
  287. depends on CPU_CORTEX_M || ARM64
  288. help
  289. Enable this option to use semihosting for console.
  290. Semihosting is a mechanism that enables code running on an ARM target
  291. to communicate and use the Input/Output facilities on a host computer
  292. that is running a debugger.
  293. Additional information can be found in:
  294. https://developer.arm.com/docs/dui0471/k/what-is-semihosting/what-is-semihosting
  295. This option is compatible with hardware and with QEMU, through the
  296. (automatic) use of the -semihosting-config switch when invoking it.
  297. module = UART_CONSOLE
  298. module-str = UART console
  299. source "subsys/logging/Kconfig.template.log_config"
  300. endif # CONSOLE