Kconfig 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. # Copyright (c) 2016 Intel Corporation
  2. # SPDX-License-Identifier: Apache-2.0
  3. menu "OS Support Library"
  4. config JSON_LIBRARY
  5. bool "Build JSON library"
  6. help
  7. Build a minimal JSON parsing/encoding library. Used by sample
  8. applications such as the NATS client.
  9. config RING_BUFFER
  10. bool "Enable ring buffers"
  11. help
  12. Enable usage of ring buffers. This is similar to kernel FIFOs but ring
  13. buffers manage their own buffer memory and can store arbitrary data.
  14. For optimal performance, use buffer sizes that are a power of 2.
  15. config BASE64
  16. bool "Enable base64 encoding and decoding"
  17. help
  18. Enable base64 encoding and decoding functionality
  19. config SYS_HEAP_VALIDATE
  20. bool "Enable internal heap validity checking"
  21. help
  22. The sys_heap implementation is instrumented for extensive
  23. internal validation. Leave this off by default, unless
  24. modifying the heap code or (maybe) when running in
  25. environments that require sensitive detection of memory
  26. corruption.
  27. config SYS_HEAP_ALLOC_LOOPS
  28. int "Number of tries in the inner heap allocation loop"
  29. default 3
  30. help
  31. The sys_heap allocator bounds the number of tries from the
  32. smallest chunk level (the one that might not fit the
  33. requested allocation) to maintain constant time performance.
  34. Setting this to a high level will cause the heap to return
  35. more successful allocations in situations of high
  36. fragmentation, at the cost of potentially significant
  37. (linear time) searching of the free list. The default is
  38. three, which results in an allocator with good statistical
  39. properties ("most" allocations that fit will succeed) but
  40. keeps the maximum runtime at a tight bound so that the heap
  41. is useful in locked or ISR contexts.
  42. config PRINTK_SYNC
  43. bool "Serialize printk() calls"
  44. default y if SMP && MP_NUM_CPUS > 1
  45. help
  46. When true, a spinlock will be taken around the output from a
  47. single printk() call, preventing the output data from
  48. interleaving with concurrent usage from another CPU or an
  49. preempting interrupt.
  50. config MPSC_PBUF
  51. bool "Multi producer, single consumer packet buffer"
  52. select TIMEOUT_64BIT
  53. help
  54. Enable usage of mpsc packet buffer. Packet buffer is capable of
  55. storing variable length packets in a circular way and operate directly
  56. on the buffer memory.
  57. if MPSC_PBUF
  58. config MPSC_CLEAR_ALLOCATED
  59. bool "Clear allocated packet"
  60. help
  61. When enabled packet space is zeroed before returning from allocation.
  62. endif
  63. config REBOOT
  64. bool "Reboot functionality"
  65. select SYSTEM_CLOCK_DISABLE
  66. help
  67. Enable the sys_reboot() API. Enabling this can drag in other subsystems
  68. needed to perform a "safe" reboot (e.g. SYSTEM_CLOCK_DISABLE, to stop the
  69. system clock before issuing a reset).
  70. rsource "Kconfig.cbprintf"
  71. endmenu