Kconfig.processing 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. # Copyright (c) 2021 Nordic Semiconductor ASA
  2. # SPDX-License-Identifier: Apache-2.0
  3. menu "Processing"
  4. if !LOG_MINIMAL
  5. config LOG_PRINTK
  6. bool "Process printk messages"
  7. help
  8. LOG_PRINTK messages are formatted in place and logged unconditionally.
  9. config LOG_PRINTK_MAX_STRING_LENGTH
  10. int "Maximum string length supported by LOG_PRINTK"
  11. depends on LOG_PRINTK
  12. depends on (!LOG_IMMEDIATE || USERSPACE)
  13. default 128
  14. help
  15. Array is allocated on the stack.
  16. if !LOG_IMMEDIATE
  17. config LOG_MODE_OVERFLOW
  18. bool "Drop oldest message when full"
  19. default y
  20. help
  21. If enabled, then if there is no space to log a new message, the
  22. oldest one is dropped. If disabled, current message is dropped.
  23. config LOG_BLOCK_IN_THREAD
  24. bool "Block in thread context on full"
  25. depends on MULTITHREADING
  26. help
  27. When enabled logger will block (if in the thread context) when
  28. internal logger buffer is full and new message cannot be allocated.
  29. config LOG_BLOCK_IN_THREAD_TIMEOUT_MS
  30. int "Maximum time (in milliseconds) thread can be blocked"
  31. default 1000
  32. range -1 10000
  33. depends on LOG_BLOCK_IN_THREAD
  34. help
  35. If new buffer for a log message cannot be allocated in that time, log
  36. message is dropped. Forever blocking (-1) is possible however may lead
  37. to the logger deadlock if logging is enabled in threads used for
  38. logging (e.g. logger or shell thread).
  39. config LOG_PROCESS_TRIGGER_THRESHOLD
  40. int "Number of buffered log messages before flushing"
  41. default 10
  42. depends on MULTITHREADING
  43. help
  44. When number of buffered messages reaches the threshold thread is waken
  45. up. Log processing thread ID is provided during log initialization.
  46. Set 0 to disable the feature. If LOG_PROCESS_THREAD is enabled then
  47. this threshold is used by the internal thread.
  48. config LOG_PROCESS_THREAD
  49. bool "Use internal thread for log processing"
  50. depends on MULTITHREADING
  51. default y
  52. help
  53. When enabled thread is created by the logger subsystem. Thread is
  54. waken up periodically (see LOG_PROCESS_THREAD_SLEEP_MS) and whenever
  55. number of buffered messages exceeds the threshold (see
  56. LOG_PROCESS_TRIGGER_THR).
  57. if LOG_PROCESS_THREAD
  58. config LOG_PROCESS_THREAD_STARTUP_DELAY_MS
  59. int "Set log processing thread startup delay"
  60. default 0
  61. help
  62. Log processing thread starts after requested delay given in
  63. milliseconds. When started, thread process any buffered messages.
  64. config LOG_PROCESS_THREAD_SLEEP_MS
  65. int "Set internal log processing thread sleep period"
  66. default 1000
  67. help
  68. Log processing thread sleeps for requested period given in
  69. milliseconds. When waken up, thread process any buffered messages.
  70. config LOG_PROCESS_THREAD_STACK_SIZE
  71. int "Stack size for the internal log processing thread"
  72. default 4096 if (X86 && X86_64)
  73. default 4096 if ARM64
  74. default 4096 if (ARC && 64BIT)
  75. default 4096 if SPARC
  76. default 2048 if COVERAGE_GCOV
  77. default 2048 if (RISCV && 64BIT)
  78. default 2048 if LOG_BACKEND_FS
  79. default 1152 if LOG_BACKEND_NET
  80. default 1024 if NO_OPTIMIZATIONS
  81. default 1024 if XTENSA
  82. default 768
  83. help
  84. Set the internal stack size for log processing thread.
  85. endif # LOG_PROCESS_THREAD
  86. config LOG_BUFFER_SIZE
  87. int "Number of bytes dedicated for the logger internal buffer"
  88. default 1024
  89. range 128 65536
  90. help
  91. Number of bytes dedicated for the logger internal buffer.
  92. endif # !LOG_IMMEDIATE
  93. if LOG_MODE_DEFERRED
  94. config LOG_DETECT_MISSED_STRDUP
  95. bool "Detect missed handling of transient strings"
  96. default y if !LOG_IMMEDIATE
  97. help
  98. If enabled, logger will assert and log error message is it detects
  99. that string format specifier (%s) and string address which is not from
  100. read only memory section and not from pool used for string duplicates.
  101. String argument must be duplicated in that case using log_strdup().
  102. Detection is performed during log processing thus it does not impact
  103. logging timing.
  104. config LOG_STRDUP_MAX_STRING
  105. int "Longest string that can be duplicated using log_strdup()"
  106. range 1 8192
  107. default 66 if BT
  108. default 46 if NETWORKING
  109. default 32
  110. help
  111. Longer strings are truncated.
  112. config LOG_STRDUP_BUF_COUNT
  113. int "Number of buffers in the pool used by log_strdup()"
  114. default 8 if BT
  115. default 4
  116. help
  117. Number of calls to log_strdup() which can be pending before flushed
  118. to output. If "<log_strdup alloc failed>" message is seen in the log
  119. output, it means this value is too small and should be increased.
  120. Each entry takes CONFIG_LOG_STRDUP_MAX_STRING bytes of memory plus
  121. some additional fixed overhead.
  122. config LOG_STRDUP_POOL_PROFILING
  123. bool "Enable profiling of pool used for log_strdup()"
  124. help
  125. When enabled, maximal utilization of the pool is tracked. It can
  126. be read out using shell command.
  127. endif # LOG_MODE_DEFERRED
  128. if LOG2
  129. config LOG_TRACE_SHORT_TIMESTAMP
  130. bool "Use 24 bit timestamp for tracing"
  131. default y
  132. help
  133. When enabled, shorter timestamp is used and trace message is
  134. compressed.
  135. config LOG_TIMESTAMP_64BIT
  136. bool "Use 64 bit timestamp"
  137. config LOG_SPEED
  138. bool "Prefer performance over size"
  139. help
  140. If enabled, logging may take more code size to get faster logging.
  141. endif # LOG2
  142. endif # !LOG_MINIMAL
  143. endmenu