Kconfig.backends 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372
  1. # Copyright (c) 2021 Nordic Semiconductor ASA
  2. # SPDX-License-Identifier: Apache-2.0
  3. menu "Backends"
  4. config LOG_BACKEND_UART
  5. bool "Enable UART backend"
  6. depends on UART_CONSOLE
  7. default y if !SHELL_BACKEND_SERIAL
  8. help
  9. When enabled backend is using UART to output logs.
  10. if LOG_BACKEND_UART
  11. config LOG_BACKEND_UART_OUTPUT_DICTIONARY
  12. bool
  13. depends on LOG2
  14. select LOG_DICTIONARY_SUPPORT
  15. help
  16. UART backend is in dictionary-based logging output mode.
  17. choice
  18. prompt "UART Backend Output Mode"
  19. default LOG_BACKEND_UART_OUTPUT_TEXT
  20. config LOG_BACKEND_UART_OUTPUT_TEXT
  21. bool "Text"
  22. help
  23. Output in text.
  24. config LOG_BACKEND_UART_SYST_ENABLE
  25. bool "MIPI SyS-T"
  26. depends on LOG_BACKEND_UART
  27. depends on LOG_MIPI_SYST_ENABLE
  28. help
  29. When enabled backend is using UART to output syst format logs.
  30. config LOG_BACKEND_UART_OUTPUT_DICTIONARY_HEX
  31. bool "Dictionary (hexadecimal)"
  32. depends on LOG2
  33. select LOG_BACKEND_UART_OUTPUT_DICTIONARY
  34. help
  35. Dictionary-based logging output in hexadecimal.
  36. config LOG_BACKEND_UART_OUTPUT_DICTIONARY_BIN
  37. bool "Dictionary (binary)"
  38. depends on LOG2
  39. select LOG_BACKEND_UART_OUTPUT_DICTIONARY
  40. help
  41. Dictionary-based logging output in binary.
  42. endchoice
  43. endif # LOG_BACKEND_UART
  44. config LOG_BACKEND_SWO
  45. bool "Enable Serial Wire Output (SWO) backend"
  46. depends on HAS_SWO
  47. help
  48. When enabled, backend will use SWO for logging.
  49. if LOG_BACKEND_SWO
  50. config LOG_BACKEND_SWO_FREQ_HZ
  51. int "Set SWO output frequency"
  52. default 0
  53. help
  54. Set SWO output frequency. Value 0 will select maximum frequency
  55. supported by the given MCU. Not all debug probes support high
  56. frequency SWO operation. In this case the frequency has to be set
  57. manually.
  58. SWO value defined by this option will be configured at boot. Most SWO
  59. viewer programs will configure SWO frequency when attached to the
  60. debug probe. Such configuration will persist only until the device
  61. reset. To ensure flawless operation the frequency configured here and
  62. by the SWO viewer program has to match.
  63. config LOG_BACKEND_SWO_SYST_ENABLE
  64. bool "Enable SWO syst backend"
  65. depends on LOG_MIPI_SYST_ENABLE
  66. help
  67. When enabled backend is using SWO to output syst format logs.
  68. endif # LOG_BACKEND_SWO
  69. config LOG_BACKEND_RTT
  70. bool "Enable Segger J-Link RTT backend"
  71. depends on USE_SEGGER_RTT
  72. default y if !SHELL_BACKEND_RTT
  73. select SEGGER_RTT_CUSTOM_LOCKING
  74. help
  75. When enabled, backend will use RTT for logging. This backend works on a per
  76. message basis. Only a whole message (terminated with a carriage return: '\r')
  77. is transferred to up-buffer at once depending on available space and
  78. selected mode.
  79. In panic mode backend always blocks and waits until there is space
  80. in up-buffer for a message and message is transferred to host.
  81. if LOG_BACKEND_RTT
  82. choice
  83. prompt "Logger behavior"
  84. default LOG_BACKEND_RTT_MODE_BLOCK
  85. config LOG_BACKEND_RTT_MODE_DROP
  86. bool "Drop messages that do not fit in up-buffer."
  87. help
  88. If there is not enough space in up-buffer for a message, drop it.
  89. Number of dropped messages will be logged.
  90. Increase up-buffer size helps to reduce dropping of messages.
  91. config LOG_BACKEND_RTT_MODE_BLOCK
  92. bool "Block until message is transferred to host."
  93. help
  94. Waits until there is enough space in the up-buffer for a message.
  95. config LOG_BACKEND_RTT_SYST_ENABLE
  96. bool "Enable RTT syst backend"
  97. depends on LOG_MIPI_SYST_ENABLE
  98. help
  99. When enabled backend is using RTT to output syst format logs.
  100. endchoice
  101. config LOG_BACKEND_RTT_MESSAGE_SIZE
  102. int "Size of internal buffer for storing messages."
  103. range 32 256
  104. default 128
  105. depends on LOG_BACKEND_RTT_MODE_DROP
  106. help
  107. This option defines maximum message size transferable to up-buffer.
  108. if LOG_BACKEND_RTT_MODE_BLOCK
  109. config LOG_BACKEND_RTT_OUTPUT_BUFFER_SIZE
  110. int "Size of the output buffer"
  111. default 16
  112. help
  113. Buffer is used by log_output module for preparing output data (e.g.
  114. string formatting).
  115. config LOG_BACKEND_RTT_RETRY_CNT
  116. int "Number of retries"
  117. default 4
  118. help
  119. Number of TX retries before dropping the data and assuming that
  120. RTT session is inactive.
  121. config LOG_BACKEND_RTT_RETRY_DELAY_MS
  122. int "Delay between TX retries in milliseconds"
  123. default 5
  124. help
  125. Sleep period between TX retry attempts. During RTT session, host pulls
  126. data periodically. Period starts from 1-2 milliseconds and can be
  127. increased if traffic on RTT increases (also from host to device). In
  128. case of heavy traffic data can be lost and it may be necessary to
  129. increase delay or number of retries.
  130. endif # LOG_BACKEND_RTT_MODE_BLOCK
  131. config LOG_BACKEND_RTT_BUFFER
  132. int "Buffer number used for logger output."
  133. range 0 SEGGER_RTT_MAX_NUM_UP_BUFFERS
  134. default 0
  135. help
  136. Select index of up-buffer used for logger output, by default it uses
  137. terminal up-buffer and its settings.
  138. config LOG_BACKEND_RTT_BUFFER_SIZE
  139. int "Size of reserved up-buffer for logger output."
  140. default 1024
  141. depends on LOG_BACKEND_RTT_BUFFER > 0
  142. help
  143. Specify reserved size of up-buffer used for logger output.
  144. # Enable processing of printk calls using log if terminal buffer is used.
  145. # Same buffer is used by RTT console. If printk would go through RTT console
  146. # that will lead to corruption of RTT data which is not protected against being
  147. # interrupted by an interrupt.
  148. config LOG_BACKEND_RTT_FORCE_PRINTK
  149. bool
  150. default y if LOG_BACKEND_RTT_BUFFER = 0 && RTT_CONSOLE
  151. select LOG_PRINTK
  152. endif # LOG_BACKEND_RTT
  153. config LOG_BACKEND_SPINEL
  154. bool "Enable OpenThread dedicated Spinel protocol backend"
  155. depends on !LOG_BACKEND_UART
  156. depends on NET_L2_OPENTHREAD
  157. help
  158. When enabled, backend will use OpenThread dedicated SPINEL protocol for logging.
  159. This protocol is byte oriented and wrapps given messages into serial frames.
  160. Backend should be enabled only to OpenThread purposes and when UART backend is disabled
  161. or works on antoher UART device to avoid interference.
  162. if LOG_BACKEND_SPINEL
  163. config LOG_BACKEND_SPINEL_BUFFER_SIZE
  164. int "Size of reserved up-buffer for logger output."
  165. default 64
  166. help
  167. Specify reserved size of up-buffer used for logger output.
  168. endif # LOG_BACKEND_SPINEL
  169. config LOG_BACKEND_NATIVE_POSIX
  170. bool "Enable native backend"
  171. depends on ARCH_POSIX
  172. help
  173. Enable backend in native_posix
  174. config LOG_BACKEND_XTENSA_SIM
  175. bool "Enable xtensa simulator backend"
  176. depends on SOC_XTENSA_SAMPLE_CONTROLLER || SOC_FAMILY_INTEL_ADSP
  177. help
  178. Enable backend in xtensa simulator
  179. config LOG_BACKEND_XTENSA_OUTPUT_BUFFER_SIZE
  180. int "Size of the output buffer"
  181. default 16
  182. depends on LOG_BACKEND_XTENSA_SIM
  183. help
  184. Buffer is used by log_output module for preparing output data (e.g.
  185. string formatting).
  186. # Immediate mode cannot be used with network backend as it would cause the sent
  187. # rsyslog message to be malformed.
  188. config LOG_BACKEND_NET
  189. bool "Enable networking backend"
  190. depends on NETWORKING && NET_UDP && !LOG_IMMEDIATE
  191. select NET_CONTEXT_NET_PKT_POOL
  192. help
  193. Send syslog messages to network server.
  194. See RFC 5424 (syslog protocol) and RFC 5426 (syslog over UDP)
  195. specifications for details.
  196. if LOG_BACKEND_NET
  197. config LOG_BACKEND_NET_SERVER
  198. string "Syslog server IP address"
  199. help
  200. This can be either IPv4 or IPv6 address.
  201. Server listen UDP port number can be configured here too.
  202. Following syntax is supported:
  203. 192.0.2.1:514
  204. 192.0.2.42
  205. [2001:db8::1]:514
  206. [2001:db8::2]
  207. 2001:db::42
  208. config LOG_BACKEND_NET_MAX_BUF
  209. int "How many network buffers to allocate for sending messages"
  210. range 3 256
  211. default 3
  212. help
  213. Each syslog message should fit into a network packet that will be
  214. sent to server. This number tells how many syslog messages can be
  215. in transit to the server.
  216. config LOG_BACKEND_NET_MAX_BUF_SIZE
  217. int "Max syslog message size"
  218. range 64 1180
  219. default 1180 if NET_IPV6
  220. default 480 if NET_IPV4
  221. default 256
  222. help
  223. As each syslog message needs to fit to UDP packet, set this value
  224. so that messages are not truncated.
  225. The RFC 5426 recommends that for IPv4 the size is 480 octets and for
  226. IPv6 the size is 1180 octets. As each buffer will use RAM, the value
  227. should be selected so that typical messages will fit the buffer.
  228. config LOG_BACKEND_NET_SYST_ENABLE
  229. bool "Enable networking syst backend"
  230. depends on LOG_MIPI_SYST_ENABLE
  231. help
  232. When enabled backend is using networking to output syst format logs.
  233. config LOG_BACKEND_NET_AUTOSTART
  234. bool "Automatically start networking backend"
  235. default y if NET_CONFIG_NEED_IPV4 || NET_CONFIG_NEED_IPV6
  236. help
  237. When enabled automatically start the networking backend on
  238. application start. If no routes to the logging server are available
  239. on application startup, this must be set to n and the backend must be
  240. started by the application later on. Otherwise the logging
  241. thread might block.
  242. endif # LOG_BACKEND_NET
  243. config LOG_BACKEND_ADSP
  244. bool "Enable Intel ADSP buffer backend"
  245. depends on SOC_FAMILY_INTEL_ADSP
  246. help
  247. Enable backend for the host trace protocol of the Intel ADSP
  248. family of audio processors
  249. config LOG_BACKEND_FS
  250. bool "Enable file system backend"
  251. depends on FILE_SYSTEM
  252. help
  253. When enabled, backend is using the configured file system to output logs.
  254. As the file system must be mounted for the logging to work, it must be
  255. either configured for auto-mount or manually mounted by the application.
  256. Log messages are discarded as long as the file system is not mounted.
  257. if LOG_BACKEND_FS
  258. config LOG_BACKEND_FS_OUTPUT_DICTIONARY
  259. bool
  260. depends on LOG2
  261. select LOG_DICTIONARY_SUPPORT
  262. help
  263. FS backend is in dictionary-based logging output mode.
  264. choice
  265. prompt "FS Backend Output Mode"
  266. default LOG_BACKEND_FS_OUTPUT_TEXT
  267. config LOG_BACKEND_FS_OUTPUT_TEXT
  268. bool "Text"
  269. help
  270. Output in text.
  271. config LOG_BACKEND_FS_OUTPUT_DICTIONARY_BIN
  272. bool "Dictionary (binary)"
  273. depends on LOG2
  274. select LOG_BACKEND_FS_OUTPUT_DICTIONARY
  275. help
  276. Dictionary-based logging output in binary.
  277. endchoice
  278. config LOG_BACKEND_FS_OVERWRITE
  279. bool "Enable old log files overwrite"
  280. default y
  281. help
  282. When enabled backend overwrites oldest log files.
  283. In other case, when memory is full, new messages are dropped.
  284. config LOG_BACKEND_FS_FILE_PREFIX
  285. string "Log file name prefix"
  286. default "log."
  287. help
  288. User defined name of log files saved in the file system.
  289. The prefix is followed by the number of log file.
  290. config LOG_BACKEND_FS_DIR
  291. string "Log directory"
  292. default "/lfs1"
  293. help
  294. Directory to which log files will be written.
  295. config LOG_BACKEND_FS_FILE_SIZE
  296. int "User defined log file size"
  297. default 4096
  298. range 128 1073741824
  299. help
  300. Max log file size (in bytes).
  301. config LOG_BACKEND_FS_FILES_LIMIT
  302. int "Max number of files containing logs"
  303. default 10
  304. help
  305. Limit of number of files with logs. It is also limited by
  306. size of file system partition.
  307. endif # LOG_BACKEND_FS
  308. endmenu