Kconfig 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909
  1. # Kernel configuration options
  2. # Copyright (c) 2014-2015 Wind River Systems, Inc.
  3. # SPDX-License-Identifier: Apache-2.0
  4. menu "General Kernel Options"
  5. module = KERNEL
  6. module-str = kernel
  7. source "subsys/logging/Kconfig.template.log_config"
  8. source "kernel/Kconfig.acts"
  9. config MULTITHREADING
  10. bool "Multi-threading" if ARCH_HAS_SINGLE_THREAD_SUPPORT
  11. default y
  12. help
  13. If disabled, only the main thread is available, so a main() function
  14. must be provided. Interrupts are available. Kernel objects will most
  15. probably not behave as expected, especially with regards to pending,
  16. since the main thread cannot pend, it being the only thread in the
  17. system.
  18. Many drivers and subsystems will not work with this option
  19. set to 'n'; disable only when you REALLY know what you are
  20. doing.
  21. config NUM_COOP_PRIORITIES
  22. int "Number of coop priorities" if MULTITHREADING
  23. default 1 if !MULTITHREADING
  24. default 16
  25. range 0 128
  26. help
  27. Number of cooperative priorities configured in the system. Gives access
  28. to priorities:
  29. K_PRIO_COOP(0) to K_PRIO_COOP(CONFIG_NUM_COOP_PRIORITIES - 1)
  30. or seen another way, priorities:
  31. -CONFIG_NUM_COOP_PRIORITIES to -1
  32. This can be set to zero to disable cooperative scheduling. Cooperative
  33. threads always preempt preemptible threads.
  34. The total number of priorities is
  35. NUM_COOP_PRIORITIES + NUM_PREEMPT_PRIORITIES + 1
  36. The extra one is for the idle thread, which must run at the lowest
  37. priority, and be the only thread at that priority.
  38. config NUM_PREEMPT_PRIORITIES
  39. int "Number of preemptible priorities" if MULTITHREADING
  40. default 0 if !MULTITHREADING
  41. default 15
  42. range 0 128
  43. help
  44. Number of preemptible priorities available in the system. Gives access
  45. to priorities 0 to CONFIG_NUM_PREEMPT_PRIORITIES - 1.
  46. This can be set to 0 to disable preemptible scheduling.
  47. The total number of priorities is
  48. NUM_COOP_PRIORITIES + NUM_PREEMPT_PRIORITIES + 1
  49. The extra one is for the idle thread, which must run at the lowest
  50. priority, and be the only thread at that priority.
  51. config MAIN_THREAD_PRIORITY
  52. int "Priority of initialization/main thread"
  53. default -2 if !PREEMPT_ENABLED
  54. default 0
  55. help
  56. Priority at which the initialization thread runs, including the start
  57. of the main() function. main() can then change its priority if desired.
  58. config COOP_ENABLED
  59. def_bool (NUM_COOP_PRIORITIES != 0)
  60. config PREEMPT_ENABLED
  61. def_bool (NUM_PREEMPT_PRIORITIES != 0)
  62. config PRIORITY_CEILING
  63. int "Priority inheritance ceiling"
  64. default -127
  65. help
  66. This defines the minimum priority value (i.e. the logically
  67. highest priority) that a thread will acquire as part of
  68. k_mutex priority inheritance.
  69. config NUM_METAIRQ_PRIORITIES
  70. int "Number of very-high priority 'preemptor' threads"
  71. default 0
  72. help
  73. This defines a set of priorities at the (numerically) lowest
  74. end of the range which have "meta-irq" behavior. Runnable
  75. threads at these priorities will always be scheduled before
  76. threads at lower priorities, EVEN IF those threads are
  77. otherwise cooperative and/or have taken a scheduler lock.
  78. Making such a thread runnable in any way thus has the effect
  79. of "interrupting" the current task and running the meta-irq
  80. thread synchronously, like an exception or system call. The
  81. intent is to use these priorities to implement "interrupt
  82. bottom half" or "tasklet" behavior, allowing driver
  83. subsystems to return from interrupt context but be guaranteed
  84. that user code will not be executed (on the current CPU)
  85. until the remaining work is finished. As this breaks the
  86. "promise" of non-preemptibility granted by the current API
  87. for cooperative threads, this tool probably shouldn't be used
  88. from application code.
  89. config SCHED_DEADLINE
  90. bool "Enable earliest-deadline-first scheduling"
  91. help
  92. This enables a simple "earliest deadline first" scheduling
  93. mode where threads can set "deadline" deltas measured in
  94. k_cycle_get_32() units. Priority decisions within (!!) a
  95. single priority will choose the next expiring deadline and
  96. not simply the least recently added thread.
  97. config SCHED_CPU_MASK
  98. bool "Enable CPU mask affinity/pinning API"
  99. depends on SCHED_DUMB
  100. help
  101. When true, the application will have access to the
  102. k_thread_cpu_mask_*() APIs which control per-CPU affinity masks in
  103. SMP mode, allowing applications to pin threads to specific CPUs or
  104. disallow threads from running on given CPUs. Note that as currently
  105. implemented, this involves an inherent O(N) scaling in the number of
  106. idle-but-runnable threads, and thus works only with the DUMB
  107. scheduler (as SCALABLE and MULTIQ would see no benefit).
  108. Note that this setting does not technically depend on SMP and is
  109. implemented without it for testing purposes, but for obvious reasons
  110. makes sense as an application API only where there is more than one
  111. CPU. With one CPU, it's just a higher overhead version of
  112. k_thread_start/stop().
  113. config MAIN_STACK_SIZE
  114. int "Size of stack for initialization and main thread"
  115. default 2048 if COVERAGE_GCOV
  116. default 1024 if TEST_ARM_CORTEX_M
  117. default 512 if ZTEST && !(RISCV || X86)
  118. default 1024
  119. help
  120. When the initialization is complete, the thread executing it then
  121. executes the main() routine, so as to reuse the stack used by the
  122. initialization, which would be wasted RAM otherwise.
  123. After initialization is complete, the thread runs main().
  124. config IDLE_STACK_SIZE
  125. int "Size of stack for idle thread"
  126. default 2048 if COVERAGE_GCOV
  127. default 1024 if XTENSA
  128. default 512 if RISCV
  129. default 384 if DYNAMIC_OBJECTS
  130. default 320 if ARC || (ARM && CPU_HAS_FPU) || (X86 && MMU)
  131. default 256
  132. help
  133. Depending on the work that the idle task must do, most likely due to
  134. power management but possibly to other features like system event
  135. logging (e.g. logging when the system goes to sleep), the idle thread
  136. may need more stack space than the default value.
  137. config ISR_STACK_SIZE
  138. int "ISR and initialization stack size (in bytes)"
  139. default 2048
  140. help
  141. This option specifies the size of the stack used by interrupt
  142. service routines (ISRs), and during kernel initialization.
  143. config THREAD_STACK_INFO
  144. bool "Thread stack info"
  145. help
  146. This option allows each thread to store the thread stack info into
  147. the k_thread data structure.
  148. config THREAD_CUSTOM_DATA
  149. bool "Thread custom data"
  150. help
  151. This option allows each thread to store 32 bits of custom data,
  152. which can be accessed using the k_thread_custom_data_xxx() APIs.
  153. config THREAD_USERSPACE_LOCAL_DATA
  154. bool
  155. depends on USERSPACE
  156. default y if ERRNO && !ERRNO_IN_TLS
  157. config ERRNO
  158. bool "Enable errno support"
  159. default y
  160. help
  161. Enable per-thread errno in the kernel. Application and library code must
  162. include errno.h provided by the C library (libc) to use the errno
  163. symbol. The C library must access the per-thread errno via the
  164. z_errno() symbol.
  165. config ERRNO_IN_TLS
  166. bool "Store errno in thread local storage (TLS)"
  167. depends on ERRNO && THREAD_LOCAL_STORAGE
  168. default y
  169. help
  170. Use thread local storage to store errno instead of storing it in
  171. the kernel thread struct. This avoids a syscall if userspace is enabled.
  172. choice SCHED_ALGORITHM
  173. prompt "Scheduler priority queue algorithm"
  174. default SCHED_DUMB
  175. help
  176. The kernel can be built with with several choices for the
  177. ready queue implementation, offering different choices between
  178. code size, constant factor runtime overhead and performance
  179. scaling when many threads are added.
  180. config SCHED_DUMB
  181. bool "Simple linked-list ready queue"
  182. help
  183. When selected, the scheduler ready queue will be implemented
  184. as a simple unordered list, with very fast constant time
  185. performance for single threads and very low code size.
  186. Choose this on systems with constrained code size that will
  187. never see more than a small number (3, maybe) of runnable
  188. threads in the queue at any given time. On most platforms
  189. (that are not otherwise using the red/black tree) this
  190. results in a savings of ~2k of code size.
  191. config SCHED_SCALABLE
  192. bool "Red/black tree ready queue"
  193. help
  194. When selected, the scheduler ready queue will be implemented
  195. as a red/black tree. This has rather slower constant-time
  196. insertion and removal overhead, and on most platforms (that
  197. are not otherwise using the rbtree somewhere) requires an
  198. extra ~2kb of code. But the resulting behavior will scale
  199. cleanly and quickly into the many thousands of threads. Use
  200. this on platforms where you may have many threads (very
  201. roughly: more than 20 or so) marked as runnable at a given
  202. time. Most applications don't want this.
  203. config SCHED_MULTIQ
  204. bool "Traditional multi-queue ready queue"
  205. depends on !SCHED_DEADLINE
  206. help
  207. When selected, the scheduler ready queue will be implemented
  208. as the classic/textbook array of lists, one per priority
  209. (max 32 priorities). This corresponds to the scheduler
  210. algorithm used in Zephyr versions prior to 1.12. It incurs
  211. only a tiny code size overhead vs. the "dumb" scheduler and
  212. runs in O(1) time in almost all circumstances with very low
  213. constant factor. But it requires a fairly large RAM budget
  214. to store those list heads, and the limited features make it
  215. incompatible with features like deadline scheduling that
  216. need to sort threads more finely, and SMP affinity which
  217. need to traverse the list of threads. Typical applications
  218. with small numbers of runnable threads probably want the
  219. DUMB scheduler.
  220. endchoice # SCHED_ALGORITHM
  221. choice WAITQ_ALGORITHM
  222. prompt "Wait queue priority algorithm"
  223. default WAITQ_DUMB
  224. help
  225. The wait_q abstraction used in IPC primitives to pend
  226. threads for later wakeup shares the same backend data
  227. structure choices as the scheduler, and can use the same
  228. options.
  229. config WAITQ_SCALABLE
  230. bool "Use scalable wait_q implementation"
  231. help
  232. When selected, the wait_q will be implemented with a
  233. balanced tree. Choose this if you expect to have many
  234. threads waiting on individual primitives. There is a ~2kb
  235. code size increase over WAITQ_DUMB (which may be shared with
  236. SCHED_SCALABLE) if the rbtree is not used elsewhere in the
  237. application, and pend/unpend operations on "small" queues
  238. will be somewhat slower (though this is not generally a
  239. performance path).
  240. config WAITQ_DUMB
  241. bool "Simple linked-list wait_q"
  242. help
  243. When selected, the wait_q will be implemented with a
  244. doubly-linked list. Choose this if you expect to have only
  245. a few threads blocked on any single IPC primitive.
  246. endchoice # WAITQ_ALGORITHM
  247. config DEVICE_HANDLE_PADDING
  248. int "Number of additional device handles to use for padding"
  249. default 0
  250. range 0 10
  251. help
  252. This is a "fudge factor" which works around build system
  253. limitations. It is safe to ignore unless you get a specific
  254. build system error about it.
  255. The option's value is the number of superfluous device handle
  256. values which are introduced into the array pointed to by each
  257. device's 'handles' member during the first linker pass.
  258. Each handle uses 2 bytes, so a value of 3 would use an extra
  259. 6 bytes of ROM for every device.
  260. menu "Kernel Debugging and Metrics"
  261. config INIT_STACKS
  262. bool "Initialize stack areas"
  263. help
  264. This option instructs the kernel to initialize stack areas with a
  265. known value (0xaa) before they are first used, so that the high
  266. water mark can be easily determined. This applies to the stack areas
  267. for threads, as well as to the interrupt stack.
  268. config BOOT_BANNER
  269. bool "Boot banner"
  270. default y
  271. depends on CONSOLE_HAS_DRIVER
  272. select PRINTK
  273. select EARLY_CONSOLE
  274. help
  275. This option outputs a banner to the console device during boot up.
  276. config KALLSYMS
  277. bool "Load all symbols for debugging/ksymoops"
  278. default n
  279. select INIT_STACKS
  280. help
  281. Say Y here to let the kernel print out symbolic crash information and
  282. symbolic stack backtraces. This increases the size of the kernel
  283. somewhat, as all symbols have to be loaded into the kernel image.
  284. config KALLSYMS_NO_NAME
  285. bool "Disable output symbols name for kallsyms"
  286. default n
  287. depends on KALLSYMS
  288. help
  289. Say Y here to Disable output symbols name for kallsyms to save image size.
  290. config SECTION_OVERLAY
  291. bool "Support section overlay"
  292. default n
  293. help
  294. This enable section overlay feature in link file. We can reuse RAM space
  295. for these mutually exclusive modules.
  296. config BOOT_DELAY
  297. int "Boot delay in milliseconds"
  298. default 0
  299. help
  300. This option delays bootup for the specified amount of
  301. milliseconds. This is used to allow serial ports to get ready
  302. before starting to print information on them during boot, as
  303. some systems might boot to fast for a receiving endpoint to
  304. detect the new USB serial bus, enumerate it and get ready to
  305. receive before it actually gets data. A similar effect can be
  306. achieved by waiting for DCD on the serial port--however, not
  307. all serial ports have DCD.
  308. config THREAD_MONITOR
  309. bool "Thread monitoring"
  310. help
  311. This option instructs the kernel to maintain a list of all threads
  312. (excluding those that have not yet started or have already
  313. terminated).
  314. config THREAD_NAME
  315. bool "Thread name"
  316. help
  317. This option allows to set a name for a thread.
  318. config THREAD_MAX_NAME_LEN
  319. int "Max length of a thread name"
  320. default 32
  321. default 64 if ZTEST
  322. range 8 128
  323. depends on THREAD_NAME
  324. help
  325. Thread names get stored in the k_thread struct. Indicate the max
  326. name length, including the terminating NULL byte. Reduce this value
  327. to conserve memory.
  328. config THREAD_TIMER
  329. bool
  330. prompt "Thread timer"
  331. default n
  332. help
  333. This option enable thread timer support.
  334. config INSTRUMENT_THREAD_SWITCHING
  335. bool
  336. menuconfig THREAD_RUNTIME_STATS
  337. bool "Thread runtime statistics"
  338. select INSTRUMENT_THREAD_SWITCHING
  339. help
  340. Gather thread runtime statistics.
  341. For example:
  342. - Thread total execution cycles
  343. if THREAD_RUNTIME_STATS
  344. config THREAD_RUNTIME_STATS_USE_TIMING_FUNCTIONS
  345. bool "Use timing functions to gather statistics"
  346. select TIMING_FUNCTIONS_NEED_AT_BOOT
  347. help
  348. Use timing functions to gather thread runtime statistics.
  349. Note that timing functions may use a different timer than
  350. the default timer for OS timekeeping.
  351. endif # THREAD_RUNTIME_STATS
  352. endmenu
  353. menu "Work Queue Options"
  354. config SYSTEM_WORKQUEUE_STACK_SIZE
  355. int "System workqueue stack size"
  356. default 4096 if COVERAGE
  357. default 1024
  358. config SYSTEM_WORKQUEUE_PRIORITY
  359. int "System workqueue priority"
  360. default -2 if COOP_ENABLED && !PREEMPT_ENABLED
  361. default 0 if !COOP_ENABLED
  362. default -1
  363. help
  364. By default, system work queue priority is the lowest cooperative
  365. priority. This means that any work handler, once started, won't
  366. be preempted by any other thread until finished.
  367. config SYSTEM_WORKQUEUE_NO_YIELD
  368. bool "Select whether system work queue yields"
  369. help
  370. By default, the system work queue yields between each work item, to
  371. prevent other threads from being starved. Selecting this removes
  372. this yield, which may be useful if the work queue thread is
  373. cooperative and a sequence of work items is expected to complete
  374. without yielding.
  375. endmenu
  376. menu "Atomic Operations"
  377. config ATOMIC_OPERATIONS_BUILTIN
  378. bool
  379. help
  380. Use the compiler builtin functions for atomic operations. This is
  381. the preferred method. However, support for all arches in GCC is
  382. incomplete.
  383. config ATOMIC_OPERATIONS_ARCH
  384. bool
  385. help
  386. Use when there isn't support for compiler built-ins, but you have
  387. written optimized assembly code under arch/ which implements these.
  388. config ATOMIC_OPERATIONS_C
  389. bool
  390. help
  391. Use atomic operations routines that are implemented entirely
  392. in C by locking interrupts. Selected by architectures which either
  393. do not have support for atomic operations in their instruction
  394. set, or haven't been implemented yet during bring-up, and also
  395. the compiler does not have support for the atomic __sync_* builtins.
  396. endmenu
  397. menu "Timer API Options"
  398. config TIMESLICING
  399. bool "Thread time slicing"
  400. default y
  401. depends on SYS_CLOCK_EXISTS && (NUM_PREEMPT_PRIORITIES != 0)
  402. help
  403. This option enables time slicing between preemptible threads of
  404. equal priority.
  405. config TIMESLICE_SIZE
  406. int "Time slice size (in ms)"
  407. default 0
  408. range 0 2147483647
  409. depends on TIMESLICING
  410. help
  411. This option specifies the maximum amount of time a thread can execute
  412. before other threads of equal priority are given an opportunity to run.
  413. A time slice size of zero means "no limit" (i.e. an infinitely large
  414. time slice).
  415. config TIMESLICE_PRIORITY
  416. int "Time slicing thread priority ceiling"
  417. default 0
  418. range 0 NUM_PREEMPT_PRIORITIES
  419. depends on TIMESLICING
  420. help
  421. This option specifies the thread priority level at which time slicing
  422. takes effect; threads having a higher priority than this ceiling are
  423. not subject to time slicing.
  424. config POLL
  425. bool "Async I/O Framework"
  426. help
  427. Asynchronous notification framework. Enable the k_poll() and
  428. k_poll_signal_raise() APIs. The former can wait on multiple events
  429. concurrently, which can be either directly triggered or triggered by
  430. the availability of some kernel objects (semaphores and FIFOs).
  431. endmenu
  432. menu "Other Kernel Object Options"
  433. config MEM_SLAB_TRACE_MAX_UTILIZATION
  434. bool "Enable getting maximum slab utilization"
  435. help
  436. This adds variable to the k_mem_slab structure to hold
  437. maximum utilization of the slab.
  438. config NUM_MBOX_ASYNC_MSGS
  439. int "Maximum number of in-flight asynchronous mailbox messages"
  440. default 10
  441. help
  442. This option specifies the total number of asynchronous mailbox
  443. messages that can exist simultaneously, across all mailboxes
  444. in the system.
  445. Setting this option to 0 disables support for asynchronous
  446. mailbox messages.
  447. config NUM_PIPE_ASYNC_MSGS
  448. int "Maximum number of in-flight asynchronous pipe messages"
  449. default 10
  450. help
  451. This option specifies the total number of asynchronous pipe
  452. messages that can exist simultaneously, across all pipes in
  453. the system.
  454. Setting this option to 0 disables support for asynchronous
  455. pipe messages.
  456. config KERNEL_MEM_POOL
  457. bool "Use Kernel Memory Pool"
  458. default y
  459. help
  460. Enable the use of kernel memory pool.
  461. Say y if unsure.
  462. if KERNEL_MEM_POOL
  463. config HEAP_MEM_POOL_SIZE
  464. int "Heap memory pool size (in bytes)"
  465. default 0 if !POSIX_MQUEUE
  466. default 1024 if POSIX_MQUEUE
  467. help
  468. This option specifies the size of the heap memory pool used when
  469. dynamically allocating memory using k_malloc(). The maximum size of
  470. the memory pool is only limited to available memory. A size of zero
  471. means that no heap memory pool is defined.
  472. endif # KERNEL_MEM_POOL
  473. endmenu
  474. config ARCH_HAS_CUSTOM_SWAP_TO_MAIN
  475. bool
  476. help
  477. It's possible that an architecture port cannot use _Swap() to swap to
  478. the _main() thread, but instead must do something custom. It must
  479. enable this option in that case.
  480. config SWAP_NONATOMIC
  481. bool
  482. help
  483. On some architectures, the _Swap() primitive cannot be made
  484. atomic with respect to the irq_lock being released. That
  485. is, interrupts may be received between the entry to _Swap
  486. and the completion of the context switch. There are a
  487. handful of workaround cases in the kernel that need to be
  488. enabled when this is true. Currently, this only happens on
  489. ARM when the PendSV exception priority sits below that of
  490. Zephyr-handled interrupts.
  491. config ARCH_HAS_CUSTOM_BUSY_WAIT
  492. bool
  493. help
  494. It's possible that an architecture port cannot or does not want to use
  495. the provided k_busy_wait(), but instead must do something custom. It must
  496. enable this option in that case.
  497. config SYS_CLOCK_TICKS_PER_SEC
  498. int "System tick frequency (in ticks/second)"
  499. default 100 if QEMU_TARGET || SOC_POSIX
  500. default 10000 if TICKLESS_KERNEL
  501. default 100
  502. help
  503. This option specifies the nominal frequency of the system clock in Hz.
  504. For asynchronous timekeeping, the kernel defines a "ticks" concept. A
  505. "tick" is the internal count in which the kernel does all its internal
  506. uptime and timeout bookkeeping. Interrupts are expected to be delivered
  507. on tick boundaries to the extent practical, and no fractional ticks
  508. are tracked.
  509. The choice of tick rate is configurable by this option. Also the number
  510. of cycles per tick should be chosen so that 1 millisecond is exactly
  511. represented by an integral number of ticks. Defaults on most hardware
  512. platforms (ones that support setting arbitrary interrupt timeouts) are
  513. expected to be in the range of 10 kHz, with software emulation
  514. platforms and legacy drivers using a more traditional 100 Hz value.
  515. Note that when available and enabled, in "tickless" mode
  516. this config variable specifies the minimum available timing
  517. granularity, not necessarily the number or frequency of
  518. interrupts delivered to the kernel.
  519. A value of 0 completely disables timer support in the kernel.
  520. config SYS_CLOCK_HW_CYCLES_PER_SEC
  521. int "System clock's h/w timer frequency"
  522. help
  523. This option specifies the frequency of the hardware timer used for the
  524. system clock (in Hz). This option is set by the SOC's or board's Kconfig file
  525. and the user should generally avoid modifying it via the menu configuration.
  526. config SYS_CLOCK_EXISTS
  527. bool "System clock exists and is enabled"
  528. default y
  529. help
  530. This option specifies that the kernel lacks timer support.
  531. Some device configurations can eliminate significant code if
  532. this is disabled. Obviously timeout-related APIs will not
  533. work.
  534. config TIMEOUT_64BIT
  535. bool "Store kernel timeouts in 64 bit precision"
  536. default y
  537. help
  538. When this option is true, the k_ticks_t values passed to
  539. kernel APIs will be a 64 bit quantity, allowing the use of
  540. larger values (and higher precision tick rates) without fear
  541. of overflowing the 32 bit word. This feature also gates the
  542. availability of absolute timeout values (which require the
  543. extra precision).
  544. config XIP
  545. bool "Execute in place"
  546. help
  547. This option allows the kernel to operate with its text and read-only
  548. sections residing in ROM (or similar read-only memory). Not all boards
  549. support this option so it must be used with care; you must also
  550. supply a linker command file when building your image. Enabling this
  551. option increases both the code and data footprint of the image.
  552. menu "Initialization Priorities"
  553. config KERNEL_INIT_PRIORITY_OBJECTS
  554. int "Kernel objects initialization priority"
  555. default 30
  556. help
  557. Kernel objects use this priority for initialization. This
  558. priority needs to be higher than minimal default initialization
  559. priority.
  560. config KERNEL_INIT_PRIORITY_DEFAULT
  561. int "Default init priority"
  562. default 40
  563. help
  564. Default minimal init priority for each init level.
  565. config KERNEL_INIT_PRIORITY_DEVICE
  566. int "Default init priority for device drivers"
  567. default 50
  568. help
  569. Device driver, that depends on common components, such as
  570. interrupt controller, but does not depend on other devices,
  571. uses this init priority.
  572. config APPLICATION_INIT_PRIORITY
  573. int "Default init priority for application level drivers"
  574. default 90
  575. help
  576. This priority level is for end-user drivers such as sensors and display
  577. which have no inward dependencies.
  578. endmenu
  579. menu "Security Options"
  580. config STACK_CANARIES
  581. bool "Compiler stack canaries"
  582. depends on ENTROPY_GENERATOR || TEST_RANDOM_GENERATOR
  583. help
  584. This option enables compiler stack canaries.
  585. If stack canaries are supported by the compiler, it will emit
  586. extra code that inserts a canary value into the stack frame when
  587. a function is entered and validates this value upon exit.
  588. Stack corruption (such as that caused by buffer overflow) results
  589. in a fatal error condition for the running entity.
  590. Enabling this option can result in a significant increase
  591. in footprint and an associated decrease in performance.
  592. If stack canaries are not supported by the compiler an error
  593. will occur at build time.
  594. config EXECUTE_XOR_WRITE
  595. bool "Enable W^X for memory partitions"
  596. depends on USERSPACE
  597. depends on ARCH_HAS_EXECUTABLE_PAGE_BIT
  598. default y
  599. help
  600. When enabled, will enforce that a writable page isn't executable
  601. and vice versa. This might not be acceptable in all scenarios,
  602. so this option is given for those unafraid of shooting themselves
  603. in the foot.
  604. If unsure, say Y.
  605. config STACK_POINTER_RANDOM
  606. int "Initial stack pointer randomization bounds"
  607. depends on !STACK_GROWS_UP
  608. depends on MULTITHREADING
  609. depends on TEST_RANDOM_GENERATOR || ENTROPY_HAS_DRIVER
  610. default 0
  611. help
  612. This option performs a limited form of Address Space Layout
  613. Randomization by offsetting some random value to a thread's
  614. initial stack pointer upon creation. This hinders some types of
  615. security attacks by making the location of any given stack frame
  616. non-deterministic.
  617. This feature can waste up to the specified size in bytes the stack
  618. region, which is carved out of the total size of the stack region.
  619. A reasonable minimum value would be around 100 bytes if this can
  620. be spared.
  621. This is currently only implemented for systems whose stack pointers
  622. grow towards lower memory addresses.
  623. config BOUNDS_CHECK_BYPASS_MITIGATION
  624. bool "Enable bounds check bypass mitigations for speculative execution"
  625. depends on USERSPACE
  626. help
  627. Untrusted parameters from user mode may be used in system calls to
  628. index arrays during speculative execution, also known as the Spectre
  629. V1 vulnerability. When enabled, various macros defined in
  630. misc/speculation.h will insert fence instructions or other appropriate
  631. mitigations after bounds checking any array index parameters passed
  632. in from untrusted sources (user mode threads). When disabled, these
  633. macros do nothing.
  634. endmenu
  635. config MAX_DOMAIN_PARTITIONS
  636. int "Maximum number of partitions per memory domain"
  637. default 16
  638. range 0 255
  639. depends on USERSPACE
  640. help
  641. Configure the maximum number of partitions per memory domain.
  642. config ARCH_MEM_DOMAIN_DATA
  643. bool
  644. depends on USERSPACE
  645. help
  646. This hidden option is selected by the target architecture if
  647. architecture-specific data is needed on a per memory domain basis.
  648. If so, the architecture defines a 'struct arch_mem_domain' which is
  649. embedded within every struct k_mem_domain. The architecture
  650. must also define the arch_mem_domain_init() function to set this up
  651. when a memory domain is created.
  652. Typical uses might be a set of page tables for that memory domain.
  653. config ARCH_MEM_DOMAIN_SYNCHRONOUS_API
  654. bool
  655. depends on USERSPACE
  656. help
  657. This hidden option is selected by the target architecture if
  658. modifying a memory domain's partitions at runtime, or changing
  659. a memory domain's thread membership requires synchronous calls
  660. into the architecture layer.
  661. If enabled, the architecture layer must implement the following
  662. APIs:
  663. arch_mem_domain_thread_add
  664. arch_mem_domain_thread_remove
  665. arch_mem_domain_partition_remove
  666. arch_mem_domain_partition_add
  667. It's important to note that although supervisor threads can be
  668. members of memory domains, they have no implications on supervisor
  669. thread access to memory. Memory domain APIs may only be invoked from
  670. supervisor mode.
  671. For these reasons, on uniprocessor systems unless memory access
  672. policy is managed in separate software constructions like page
  673. tables, these APIs don't need to be implemented as the underlying
  674. memory management hardware will be reprogrammed on context switch
  675. anyway.
  676. menu "SMP Options"
  677. config USE_SWITCH
  678. bool "Use new-style _arch_switch instead of arch_swap"
  679. depends on USE_SWITCH_SUPPORTED
  680. help
  681. The _arch_switch() API is a lower level context switching
  682. primitive than the original arch_swap mechanism. It is required
  683. for an SMP-aware scheduler, or if the architecture does not
  684. provide arch_swap. In uniprocess situations where the
  685. architecture provides both, _arch_switch incurs more somewhat
  686. overhead and may be slower.
  687. config USE_SWITCH_SUPPORTED
  688. bool
  689. help
  690. Indicates whether _arch_switch() API is supported by the
  691. currently enabled platform. This option should be selected by
  692. platforms that implement it.
  693. config SMP
  694. bool "Enable symmetric multithreading support"
  695. depends on USE_SWITCH
  696. help
  697. When true, kernel will be built with SMP support, allowing
  698. more than one CPU to schedule Zephyr tasks at a time.
  699. config SMP_BOOT_DELAY
  700. bool "Delay booting secondary cores"
  701. depends on SMP
  702. help
  703. By default Zephyr will boot all available CPUs during start up.
  704. Select this option to skip this and allow architecture code boot
  705. secondary CPUs at a later time.
  706. config MP_NUM_CPUS
  707. int "Number of CPUs/cores"
  708. default 1
  709. range 1 4
  710. help
  711. Number of multiprocessing-capable cores available to the
  712. multicpu API and SMP features.
  713. config SCHED_IPI_SUPPORTED
  714. bool
  715. help
  716. True if the architecture supports a call to
  717. arch_sched_ipi() to broadcast an interrupt that will call
  718. z_sched_ipi() on other CPUs in the system. Required for
  719. k_thread_abort() to operate with reasonable latency
  720. (otherwise we might have to wait for the other thread to
  721. take an interrupt, which can be arbitrarily far in the
  722. future).
  723. config TRACE_SCHED_IPI
  724. bool "Enable Test IPI"
  725. help
  726. When true, it will add a hook into z_sched_ipi(), in order
  727. to check if schedule IPI has called or not, for testing
  728. purpose.
  729. depends on SCHED_IPI_SUPPORTED
  730. depends on MP_NUM_CPUS>1
  731. config KERNEL_COHERENCE
  732. bool "Place all shared data into coherent memory"
  733. depends on ARCH_HAS_COHERENCE
  734. default y if SMP && MP_NUM_CPUS > 1
  735. select THREAD_STACK_INFO
  736. help
  737. When available and selected, the kernel will build in a mode
  738. where all shared data is placed in multiprocessor-coherent
  739. (generally "uncached") memory. Thread stacks will remain
  740. cached, as will application memory declared with
  741. __incoherent. This is intended for Zephyr SMP kernels
  742. running on cache-incoherent architectures only. Note that
  743. when this is selected, there is an implicit API change that
  744. assumes cache coherence to any memory passed to the kernel.
  745. Code that creates kernel data structures in uncached regions
  746. may fail strangely. Some assertions exist to catch these
  747. mistakes, but not all circumstances can be tested.
  748. endmenu
  749. config TICKLESS_KERNEL
  750. bool "Tickless kernel"
  751. default y if TICKLESS_CAPABLE
  752. depends on TICKLESS_CAPABLE
  753. help
  754. This option enables a fully event driven kernel. Periodic system
  755. clock interrupt generation would be stopped at all times.
  756. config TOOLCHAIN_SUPPORTS_THREAD_LOCAL_STORAGE
  757. bool
  758. default y if "$(ZEPHYR_TOOLCHAIN_VARIANT)" = "zephyr"
  759. help
  760. Hidden option to signal that toolchain supports generating code
  761. with thread local storage.
  762. config THREAD_LOCAL_STORAGE
  763. bool "Thread Local Storage (TLS)"
  764. depends on ARCH_HAS_THREAD_LOCAL_STORAGE && TOOLCHAIN_SUPPORTS_THREAD_LOCAL_STORAGE
  765. select NEED_LIBC_MEM_PARTITION if (CPU_CORTEX_M && USERSPACE)
  766. help
  767. This option enables thread local storage (TLS) support in kernel.
  768. endmenu