Kconfig 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351
  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. default n
  105. help
  106. Enable this option to use the dc5v UART for console output. The output
  107. config RAM_CONSOLE
  108. bool "Use RAM console"
  109. select CONSOLE_HAS_DRIVER
  110. help
  111. Emit console messages to a RAM buffer "ram_console" which can
  112. be examined at runtime with a debugger. Useful in board bring-up
  113. if there aren't any working serial drivers.
  114. config RAM_CONSOLE_BUFFER_SIZE
  115. int "Ram Console buffer size"
  116. default 1024
  117. depends on RAM_CONSOLE
  118. help
  119. Size of the RAM console buffer. Messages will wrap around if the
  120. length is exceeded.
  121. config RTT_CONSOLE
  122. bool "Use RTT console"
  123. depends on USE_SEGGER_RTT
  124. select CONSOLE_HAS_DRIVER
  125. help
  126. Emit console messages to a RAM buffer that is then read by the
  127. Segger J-Link software and displayed on a computer in real-time.
  128. Requires support for Segger J-Link on the companion IC onboard.
  129. if RTT_CONSOLE
  130. config RTT_TX_RETRY_CNT
  131. int "Number of TX retries"
  132. default 2
  133. help
  134. Number of TX retries before dropping the byte and assuming that
  135. RTT session is inactive.
  136. config RTT_TX_RETRY_DELAY_MS
  137. int "Delay between TX retries in milliseconds"
  138. default 2
  139. help
  140. Sleep period between TX retry attempts. During RTT session, host pulls data
  141. periodically. Period starts from 1-2 milliseconds and can be increased
  142. if traffic on RTT increases (also from host to device). In case of
  143. heavy traffic data can be lost and it may be necessary to increase
  144. delay or number of retries.
  145. config RTT_TX_RETRY_IN_INTERRUPT
  146. bool "Busy wait in the interrupt context for TX retry"
  147. help
  148. If enabled RTT console will busy wait between TX retries when console
  149. assumes that RTT session is active. In case of heavy traffic data can
  150. be lost and it may be necessary to increase delay or number of
  151. retries.
  152. endif
  153. config IPM_CONSOLE_SENDER
  154. bool "Inter-processor Mailbox console sender"
  155. select CONSOLE_HAS_DRIVER
  156. help
  157. Enable the sending side of IPM console
  158. config IPM_CONSOLE_RECEIVER
  159. bool "Inter-processor Mailbox console receiver"
  160. select RING_BUFFER
  161. help
  162. Enable the receiving side of IPM console
  163. config IPM_CONSOLE_STACK_SIZE
  164. int "Stack size for IPM console receiver thread"
  165. depends on IPM_CONSOLE_RECEIVER
  166. default 2048 if COVERAGE
  167. default 512
  168. help
  169. Each instance of the IPM console receiver driver creates a worker
  170. thread to print out incoming messages from the remote CPU. Specify the
  171. stack size for these threads here.
  172. config IPM_CONSOLE
  173. bool "Inter-processor Mailbox console"
  174. depends on IPM
  175. select CONSOLE_HAS_DRIVER
  176. help
  177. Enable console over Inter-processor Mailbox.
  178. # Workaround for not being able to have commas in macro arguments
  179. DT_CHOSEN_Z_IPM_CONSOLE := zephyr,console
  180. config IPM_CONSOLE_ON_DEV_NAME
  181. string "IPM device name used by console"
  182. default "$(dt_chosen_label,$(DT_CHOSEN_Z_IPM_CONSOLE))" if HAS_DTS
  183. default "IPM_0"
  184. depends on IPM_CONSOLE
  185. help
  186. IPM device name used by IPM console driver.
  187. config IPM_CONSOLE_LINE_BUF_LEN
  188. int "IPM console line buffer length"
  189. default 128
  190. depends on IPM_CONSOLE
  191. help
  192. IPM console line buffer length specify amount of the buffer
  193. where characters are stored before sending the whole line.
  194. config UART_PIPE
  195. bool "Enable pipe UART driver"
  196. select UART_INTERRUPT_DRIVEN
  197. help
  198. Enable pipe UART driver. This driver allows application to communicate
  199. over UART with custom defined protocol. Driver doesn't inspect received
  200. data (as contrary to console UART driver) and all aspects of received
  201. protocol data are handled by application provided callback.
  202. # Workaround for not being able to have commas in macro arguments
  203. DT_CHOSEN_Z_UART_PIPE := zephyr,uart-pipe
  204. config UART_PIPE_ON_DEV_NAME
  205. string "Device Name of UART Device for pipe UART"
  206. default "$(dt_chosen_label,$(DT_CHOSEN_Z_UART_PIPE))" if HAS_DTS
  207. default "UART_0"
  208. depends on UART_PIPE
  209. help
  210. This option specifies the name of UART device to be used
  211. for pipe UART.
  212. config UART_MCUMGR
  213. bool "Enable mcumgr UART driver"
  214. select UART_INTERRUPT_DRIVEN
  215. help
  216. Enable the mcumgr UART driver. This driver allows the application to
  217. communicate over UART using the mcumgr protocol for image upgrade and
  218. device management. The driver doesn't inspect received data (as
  219. contrary to console UART driver) and all aspects of received protocol
  220. data are handled by an application provided callback.
  221. if UART_MCUMGR
  222. config UART_MCUMGR_RX_BUF_SIZE
  223. int "Size of receive buffer for mcumgr fragments received over UART, in bytes"
  224. default 128
  225. help
  226. Specifies the size of the mcumgr UART receive buffer, in bytes. This
  227. value must be large enough to accommodate any line sent by an mcumgr
  228. client.
  229. config UART_MCUMGR_RX_BUF_COUNT
  230. int "Number of receive buffers for mcumgr fragments received over UART"
  231. default 2
  232. help
  233. Specifies the number of the mcumgr UART receive buffers. Receive
  234. buffers hold received mcumgr fragments prior to reassembly. This
  235. setting's value must satisfy the following relation:
  236. UART_MCUMGR_RX_BUF_COUNT * UART_MCUMGR_RX_BUF_SIZE >=
  237. MCUMGR_SMP_UART_MTU
  238. endif # UART_MCUMGR
  239. config XTENSA_SIM_CONSOLE
  240. bool "Use Xtensa simulator console"
  241. depends on SIMULATOR_XTENSA
  242. select CONSOLE_HAS_DRIVER
  243. default y
  244. help
  245. Use simulator console to print messages.
  246. config NATIVE_POSIX_CONSOLE
  247. bool "Use the host terminal for console"
  248. depends on ARCH_POSIX
  249. select CONSOLE_HAS_DRIVER
  250. help
  251. Use the host terminal (where the native_posix binary was launched) for the
  252. Zephyr console
  253. config NATIVE_POSIX_STDIN_CONSOLE
  254. bool "Use the host terminal stdin"
  255. depends on NATIVE_POSIX_CONSOLE
  256. help
  257. No current use. Kept only as there is plans to start using these
  258. drivers with the shell
  259. config NATIVE_STDIN_POLL_PERIOD
  260. int "Polling period for stdin"
  261. depends on NATIVE_POSIX_STDIN_CONSOLE
  262. default 20
  263. help
  264. In ms, polling period for stdin
  265. config NATIVE_POSIX_STDOUT_CONSOLE
  266. bool "Print to the host terminal stdout"
  267. depends on NATIVE_POSIX_CONSOLE
  268. default y
  269. help
  270. Zephyr's printk messages will be directed to the host terminal stdout.
  271. config XTENSA_CONSOLE_INIT_PRIORITY
  272. int "Init priority"
  273. default 60
  274. depends on XTENSA_SIM_CONSOLE
  275. help
  276. Device driver initialization priority.
  277. config NATIVE_POSIX_CONSOLE_INIT_PRIORITY
  278. int "Init priority"
  279. default 99
  280. depends on NATIVE_POSIX_CONSOLE
  281. help
  282. Device driver initialization priority.
  283. config SEMIHOST_CONSOLE
  284. bool "Use semihosting for console"
  285. select CONSOLE_HAS_DRIVER
  286. depends on CPU_CORTEX_M || ARM64
  287. help
  288. Enable this option to use semihosting for console.
  289. Semihosting is a mechanism that enables code running on an ARM target
  290. to communicate and use the Input/Output facilities on a host computer
  291. that is running a debugger.
  292. Additional information can be found in:
  293. https://developer.arm.com/docs/dui0471/k/what-is-semihosting/what-is-semihosting
  294. This option is compatible with hardware and with QEMU, through the
  295. (automatic) use of the -semihosting-config switch when invoking it.
  296. module = UART_CONSOLE
  297. module-str = UART console
  298. source "subsys/logging/Kconfig.template.log_config"
  299. endif # CONSOLE