Kconfig 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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. default y
  22. help
  23. The sys_heap implementation is instrumented for extensive
  24. internal validation. Leave this off by default, unless
  25. modifying the heap code or (maybe) when running in
  26. environments that require sensitive detection of memory
  27. corruption.
  28. config SYS_HEAP_ALLOC_LOOPS
  29. int "Number of tries in the inner heap allocation loop"
  30. default 3
  31. help
  32. The sys_heap allocator bounds the number of tries from the
  33. smallest chunk level (the one that might not fit the
  34. requested allocation) to maintain constant time performance.
  35. Setting this to a high level will cause the heap to return
  36. more successful allocations in situations of high
  37. fragmentation, at the cost of potentially significant
  38. (linear time) searching of the free list. The default is
  39. three, which results in an allocator with good statistical
  40. properties ("most" allocations that fit will succeed) but
  41. keeps the maximum runtime at a tight bound so that the heap
  42. is useful in locked or ISR contexts.
  43. config PRINTK_SYNC
  44. bool "Serialize printk() calls"
  45. default y if SMP && MP_NUM_CPUS > 1
  46. help
  47. When true, a spinlock will be taken around the output from a
  48. single printk() call, preventing the output data from
  49. interleaving with concurrent usage from another CPU or an
  50. preempting interrupt.
  51. config MPSC_PBUF
  52. bool "Multi producer, single consumer packet buffer"
  53. select TIMEOUT_64BIT
  54. help
  55. Enable usage of mpsc packet buffer. Packet buffer is capable of
  56. storing variable length packets in a circular way and operate directly
  57. on the buffer memory.
  58. if MPSC_PBUF
  59. config MPSC_CLEAR_ALLOCATED
  60. bool "Clear allocated packet"
  61. help
  62. When enabled packet space is zeroed before returning from allocation.
  63. endif
  64. config REBOOT
  65. bool "Reboot functionality"
  66. select SYSTEM_CLOCK_DISABLE
  67. help
  68. Enable the sys_reboot() API. Enabling this can drag in other subsystems
  69. needed to perform a "safe" reboot (e.g. SYSTEM_CLOCK_DISABLE, to stop the
  70. system clock before issuing a reset).
  71. rsource "Kconfig.cbprintf"
  72. endmenu