blob: 1a1002de05bd5ed063f22c451661a54236560f9d [file] [log] [blame]
Juan Manuel Cruzd15251f2015-05-20 11:40:39 -05001# Kconfig - kernel configuration options
2
3#
4# Copyright (c) 2014-2015 Wind River Systems, Inc.
5#
David B. Kinderac74d8b2017-01-18 17:01:01 -08006# SPDX-License-Identifier: Apache-2.0
Juan Manuel Cruzd15251f2015-05-20 11:40:39 -05007#
8
Juan Manuel Cruz0e301cc2015-03-11 12:44:14 -06009
10menu "General Kernel Options"
Andy Grossbb063162017-01-29 23:53:17 -060011
Anas Nashif9463dc02016-12-17 17:36:20 -050012config MULTITHREADING
13 bool
14 prompt "Multi-threading"
15 default y
16 help
Anas Nashif429c2a42017-12-13 10:08:21 -050017 If disabled, only the main thread is available, so a main() function
18 must be provided. Interrupts are available. Kernel objects will most
19 probably not behave as expected, especially with regards to pending,
20 since the main thread cannot pend, it being the only thread in the
21 system.
Anas Nashif9463dc02016-12-17 17:36:20 -050022
Anas Nashif429c2a42017-12-13 10:08:21 -050023 Many drivers and subsystems will not work with this option; use only
24 when you REALLY know what you are doing.
Anas Nashif9463dc02016-12-17 17:36:20 -050025
26config NUM_COOP_PRIORITIES
27 int
28 prompt "Number of coop priorities" if MULTITHREADING
29 default 16
30 default 1 if !MULTITHREADING
Benjamin Walshf9554762016-12-21 15:38:54 -050031 range 0 128
Anas Nashif9463dc02016-12-17 17:36:20 -050032 help
Anas Nashif429c2a42017-12-13 10:08:21 -050033 Number of cooperative priorities configured in the system. Gives access
34 to priorities:
Anas Nashif9463dc02016-12-17 17:36:20 -050035
36 K_PRIO_COOP(0) to K_PRIO_COOP(CONFIG_NUM_COOP_PRIORITIES - 1)
37
Anas Nashif429c2a42017-12-13 10:08:21 -050038 or seen another way, priorities:
Anas Nashif9463dc02016-12-17 17:36:20 -050039
40 -CONFIG_NUM_COOP_PRIORITIES to -1
41
Anas Nashif429c2a42017-12-13 10:08:21 -050042 This can be set to zero to disable cooperative scheduling. Cooperative
43 threads always preempt preemptible threads.
Anas Nashif9463dc02016-12-17 17:36:20 -050044
Anas Nashif429c2a42017-12-13 10:08:21 -050045 Each priority requires an extra 8 bytes of RAM. Each set of 32 extra
46 total priorities require an extra 4 bytes and add one possible
47 iteration to loops that search for the next thread to run.
Anas Nashif9463dc02016-12-17 17:36:20 -050048
Anas Nashif429c2a42017-12-13 10:08:21 -050049 The total number of priorities is
Anas Nashif9463dc02016-12-17 17:36:20 -050050
51 NUM_COOP_PRIORITIES + NUM_PREEMPT_PRIORITIES + 1
52
Anas Nashif429c2a42017-12-13 10:08:21 -050053 The extra one is for the idle thread, which must run at the lowest
54 priority, and be the only thread at that priority.
Anas Nashif9463dc02016-12-17 17:36:20 -050055
56config NUM_PREEMPT_PRIORITIES
57 int
58 prompt "Number of preemptible priorities" if MULTITHREADING
59 default 15
60 default 0 if !MULTITHREADING
Benjamin Walshf9554762016-12-21 15:38:54 -050061 range 0 128
Anas Nashif9463dc02016-12-17 17:36:20 -050062 help
Anas Nashif429c2a42017-12-13 10:08:21 -050063 Number of preemptible priorities available in the system. Gives access
64 to priorities 0 to CONFIG_NUM_PREEMPT_PRIORITIES - 1.
Anas Nashif9463dc02016-12-17 17:36:20 -050065
Anas Nashif429c2a42017-12-13 10:08:21 -050066 This can be set to 0 to disable preemptible scheduling.
Anas Nashif9463dc02016-12-17 17:36:20 -050067
Anas Nashif429c2a42017-12-13 10:08:21 -050068 Each priority requires an extra 8 bytes of RAM. Each set of 32 extra
69 total priorities require an extra 4 bytes and add one possible
70 iteration to loops that search for the next thread to run.
Anas Nashif9463dc02016-12-17 17:36:20 -050071
Anas Nashif429c2a42017-12-13 10:08:21 -050072 The total number of priorities is
Anas Nashif9463dc02016-12-17 17:36:20 -050073
74 NUM_COOP_PRIORITIES + NUM_PREEMPT_PRIORITIES + 1
75
Anas Nashif429c2a42017-12-13 10:08:21 -050076 The extra one is for the idle thread, which must run at the lowest
77 priority, and be the only thread at that priority.
Anas Nashif9463dc02016-12-17 17:36:20 -050078
79config MAIN_THREAD_PRIORITY
80 int
81 prompt "Priority of initialization/main thread"
82 default 0
Benjamin Walshe6695592017-01-14 18:50:22 -050083 default -2 if !PREEMPT_ENABLED
Anas Nashif9463dc02016-12-17 17:36:20 -050084 help
Anas Nashif429c2a42017-12-13 10:08:21 -050085 Priority at which the initialization thread runs, including the start
86 of the main() function. main() can then change its priority if desired.
Anas Nashif9463dc02016-12-17 17:36:20 -050087
88config COOP_ENABLED
89 bool
90 default y
91 default n if (NUM_COOP_PRIORITIES = 0)
92
93config PREEMPT_ENABLED
94 bool
95 default y
96 default n if (NUM_PREEMPT_PRIORITIES = 0)
97
98config PRIORITY_CEILING
99 int
100 prompt "Priority inheritance ceiling"
101 default 0
102
103config MAIN_STACK_SIZE
104 int
105 prompt "Size of stack for initialization and main thread"
106 default 1024
Kumar Galabd9a1542017-08-10 16:38:14 -0500107 default 512 if ZTEST
Anas Nashif9463dc02016-12-17 17:36:20 -0500108 help
Anas Nashif429c2a42017-12-13 10:08:21 -0500109 When the initialization is complete, the thread executing it then
110 executes the main() routine, so as to reuse the stack used by the
111 initialization, which would be wasted RAM otherwise.
Anas Nashif9463dc02016-12-17 17:36:20 -0500112
Anas Nashif429c2a42017-12-13 10:08:21 -0500113 After initialization is complete, the thread runs main().
Anas Nashif9463dc02016-12-17 17:36:20 -0500114
115config IDLE_STACK_SIZE
116 int
117 prompt "Size of stack for idle thread"
118 default 256
Florian Vaussard8fcb7802017-03-10 15:12:44 +0100119 default 320 if ARC || (ARM && CPU_HAS_FPU)
Jean-Paul Etiennec76abee2017-01-11 00:24:30 +0100120 default 512 if RISCV32
Mazen NEIFER57186762017-01-31 22:50:42 +0100121 default 1024 if XTENSA
Anas Nashif9463dc02016-12-17 17:36:20 -0500122 help
Anas Nashif429c2a42017-12-13 10:08:21 -0500123 Depending on the work that the idle task must do, most likely due to
124 power management but possibly to other features like system event
125 logging (e.g. logging when the system goes to sleep), the idle thread
126 may need more stack space than the default value.
Anas Nashif9463dc02016-12-17 17:36:20 -0500127
128config ISR_STACK_SIZE
129 int
130 prompt "ISR and initialization stack size (in bytes)"
131 default 2048
132 help
Anas Nashif429c2a42017-12-13 10:08:21 -0500133 This option specifies the size of the stack used by interrupt
134 service routines (ISRs), and during kernel initialization.
Anas Nashif9463dc02016-12-17 17:36:20 -0500135
Vincenzo Frascinodfed8c42017-03-27 15:52:42 +0100136config THREAD_STACK_INFO
137 bool
138 prompt "Thread stack info"
139 default n
140 help
Anas Nashif429c2a42017-12-13 10:08:21 -0500141 This option allows each thread to store the thread stack info into
142 the k_thread data structure.
Vincenzo Frascinodfed8c42017-03-27 15:52:42 +0100143
Anas Nashif9463dc02016-12-17 17:36:20 -0500144config THREAD_CUSTOM_DATA
145 bool
146 prompt "Thread custom data"
147 default n
148 help
Anas Nashif429c2a42017-12-13 10:08:21 -0500149 This option allows each thread to store 32 bits of custom data,
150 which can be accessed using the k_thread_custom_data_xxx() APIs.
Anas Nashif9463dc02016-12-17 17:36:20 -0500151
Anas Nashif9463dc02016-12-17 17:36:20 -0500152config ERRNO
153 bool
154 prompt "Enable errno support"
155 default y
156 help
Anas Nashif429c2a42017-12-13 10:08:21 -0500157 Enable per-thread errno in the kernel. Application and library code must
158 include errno.h provided by the C library (libc) to use the errno
159 symbol. The C library must access the per-thread errno via the
160 _get_errno() symbol.
Anas Nashif9463dc02016-12-17 17:36:20 -0500161
Andrew Boie2dc207c2017-06-19 10:19:57 -0700162config APPLICATION_MEMORY
163 bool
164 prompt "Split kernel and application memory"
165 default n
166 help
Anas Nashif429c2a42017-12-13 10:08:21 -0500167 For all read-write memory sections (namely bss, noinit, data),
168 separate them into application and kernel areas. The application area
169 will have the project-level application objects and any libraries
170 including the C library in it.
Andrew Boie2dc207c2017-06-19 10:19:57 -0700171
Anas Nashif9463dc02016-12-17 17:36:20 -0500172menu "Kernel Debugging and Metrics"
Anas Nashif8470b4d2018-02-25 22:18:17 -0500173
174config INIT_STACKS
175 bool
176 prompt "Initialize stack areas"
177 default n
178 help
179 This option instructs the kernel to initialize stack areas with a
180 known value (0xaa) before they are first used, so that the high
181 water mark can be easily determined. This applies to the stack areas
182 for threads.
183
Anas Nashif9463dc02016-12-17 17:36:20 -0500184config KERNEL_DEBUG
185 bool
186 prompt "Kernel debugging"
187 default n
188 select INIT_STACKS
189 help
190 Enable kernel debugging.
191
192 Note that debugging the kernel internals can be very verbose.
193
194config BOOT_BANNER
195 bool
196 prompt "Boot banner"
Anas Nashifa805c972018-01-06 14:29:47 -0500197 default y
Kumar Galaa3629e82017-01-11 08:05:20 -0600198 depends on CONSOLE_HAS_DRIVER
Anas Nashif9463dc02016-12-17 17:36:20 -0500199 select PRINTK
200 select EARLY_CONSOLE
201 help
Anas Nashif54d19f22017-11-23 11:23:49 -0500202 This option outputs a banner to the console device during boot up. It
203 also embeds a date & time stamp in the kernel if the BUILD_TIMESTAMP
204 option is enabled.
Anas Nashif9463dc02016-12-17 17:36:20 -0500205
Inaky Perez-Gonzalezc51f73f2017-06-20 17:01:09 -0700206config BOOT_DELAY
Paul Sokolovskyb1e74812017-07-19 00:15:42 +0300207 int
208 prompt "Boot delay in milliseconds"
Inaky Perez-Gonzalezc51f73f2017-06-20 17:01:09 -0700209 default 0
210 help
Anas Nashif429c2a42017-12-13 10:08:21 -0500211 This option delays bootup for the specified amount of
212 milliseconds. This is used to allow serial ports to get ready
213 before starting to print information on them during boot, as
214 some systems might boot to fast for a receiving endpoint to
215 detect the new USB serial bus, enumerate it and get ready to
216 receive before it actually gets data. A similar effect can be
217 achieved by waiting for DCD on the serial port--however, not
218 all serial ports have DCD.
Inaky Perez-Gonzalezc51f73f2017-06-20 17:01:09 -0700219
Anas Nashif9463dc02016-12-17 17:36:20 -0500220config BUILD_TIMESTAMP
221 bool
Josh Triplett18cb8322018-04-09 14:33:38 -0700222 default n
Anas Nashif9463dc02016-12-17 17:36:20 -0500223 prompt "Build Timestamp"
224 help
Josh Triplett18cb8322018-04-09 14:33:38 -0700225 Record a timestamp from the build and add it to the boot banner.
226 Note that this will make the build unreproducible: building
227 Zephyr twice will result in different binaries.
Anas Nashif9463dc02016-12-17 17:36:20 -0500228
229config INT_LATENCY_BENCHMARK
230 bool
231 prompt "Interrupt latency metrics [EXPERIMENTAL]"
232 default n
233 depends on ARCH="x86"
234 help
Anas Nashif429c2a42017-12-13 10:08:21 -0500235 This option enables the tracking of interrupt latency metrics;
236 the exact set of metrics being tracked is board-dependent.
237 Tracking begins when int_latency_init() is invoked by an application.
238 The metrics are displayed (and a new sampling interval is started)
239 each time int_latency_show() is called thereafter.
Anas Nashif9463dc02016-12-17 17:36:20 -0500240
Adithya Baglodyd03b2492017-05-03 13:11:51 +0530241config EXECUTION_BENCHMARKING
242 bool
243 prompt "Timing metrics "
244 default n
245 help
Anas Nashif429c2a42017-12-13 10:08:21 -0500246 This option enables the tracking of various times inside the kernel
247 the exact set of metrics being tracked is board-dependent.
248 All timing measurements are enabled for X86 and ARM based architectures.
249 In other architectures only a subset are enabled.
Adithya Baglodyd03b2492017-05-03 13:11:51 +0530250
Anas Nashif9463dc02016-12-17 17:36:20 -0500251config THREAD_MONITOR
252 bool
253 prompt "Thread monitoring [EXPERIMENTAL]"
254 default n
255 help
256 This option instructs the kernel to maintain a list of all threads
257 (excluding those that have not yet started or have already
258 terminated).
259endmenu
260
261menu "Work Queue Options"
262config SYSTEM_WORKQUEUE_STACK_SIZE
263 int "System workqueue stack size"
264 default 1024
265
266config SYSTEM_WORKQUEUE_PRIORITY
267 int "System workqueue priority"
268 default -1
Benjamin Walshe6695592017-01-14 18:50:22 -0500269 default 0 if !COOP_ENABLED
270 default -2 if COOP_ENABLED && !PREEMPT_ENABLED
Anas Nashif9463dc02016-12-17 17:36:20 -0500271
272config OFFLOAD_WORKQUEUE_STACK_SIZE
273 int "Workqueue stack size for thread offload requests"
274 default 1024
275
276config OFFLOAD_WORKQUEUE_PRIORITY
277 int "Offload requests workqueue priority"
278 default -1
279
280endmenu
281
282menu "Atomic Operations"
283config ATOMIC_OPERATIONS_BUILTIN
284 bool
285 help
Anas Nashif429c2a42017-12-13 10:08:21 -0500286 Use the compiler builtin functions for atomic operations. This is
287 the preferred method. However, support for all arches in GCC is
288 incomplete.
Anas Nashif9463dc02016-12-17 17:36:20 -0500289
290config ATOMIC_OPERATIONS_CUSTOM
291 bool
292 help
Anas Nashif429c2a42017-12-13 10:08:21 -0500293 Use when there isn't support for compiler built-ins, but you have
294 written optimized assembly code under arch/ which implements these.
Anas Nashif9463dc02016-12-17 17:36:20 -0500295
296config ATOMIC_OPERATIONS_C
297 bool
298 help
Anas Nashif429c2a42017-12-13 10:08:21 -0500299 Use atomic operations routines that are implemented entirely
300 in C by locking interrupts. Selected by architectures which either
301 do not have support for atomic operations in their instruction
302 set, or haven't been implemented yet during bring-up, and also
303 the compiler does not have support for the atomic __sync_* builtins.
Anas Nashif9463dc02016-12-17 17:36:20 -0500304endmenu
305
306menu "Timer API Options"
307
308config TIMESLICING
309 bool "Thread time slicing"
310 default y
311 depends on SYS_CLOCK_EXISTS && (NUM_PREEMPT_PRIORITIES != 0)
312 help
Anas Nashif429c2a42017-12-13 10:08:21 -0500313 This option enables time slicing between preemptible threads of
314 equal priority.
Anas Nashif9463dc02016-12-17 17:36:20 -0500315
316config TIMESLICE_SIZE
317 int "Time slice size (in ms)"
318 default 0
319 range 0 2147483647
320 depends on TIMESLICING
321 help
Anas Nashif429c2a42017-12-13 10:08:21 -0500322 This option specifies the maximum amount of time a thread can execute
323 before other threads of equal priority are given an opportunity to run.
324 A time slice size of zero means "no limit" (i.e. an infinitely large
325 time slice).
Anas Nashif9463dc02016-12-17 17:36:20 -0500326
327config TIMESLICE_PRIORITY
328 int "Time slicing thread priority ceiling"
329 default 0
330 range 0 NUM_PREEMPT_PRIORITIES
331 depends on TIMESLICING
332 help
Anas Nashif429c2a42017-12-13 10:08:21 -0500333 This option specifies the thread priority level at which time slicing
334 takes effect; threads having a higher priority than this ceiling are
335 not subject to time slicing.
Anas Nashif9463dc02016-12-17 17:36:20 -0500336
Benjamin Walshacc68c12017-01-29 18:57:45 -0500337config POLL
338 bool
Anas Nashif8470b4d2018-02-25 22:18:17 -0500339 prompt "Async I/O Framework"
Benjamin Walshacc68c12017-01-29 18:57:45 -0500340 default n
341 help
Anas Nashif429c2a42017-12-13 10:08:21 -0500342 Asynchronous notification framework. Enable the k_poll() and
343 k_poll_signal() APIs. The former can wait on multiple events
344 concurrently, which can be either directly triggered or triggered by
345 the availability of some kernel objects (semaphores and fifos).
Benjamin Walshacc68c12017-01-29 18:57:45 -0500346
Anas Nashif9463dc02016-12-17 17:36:20 -0500347endmenu
348
349menu "Other Kernel Object Options"
Anas Nashif70a2e132017-01-07 08:43:32 -0500350
Anas Nashif9463dc02016-12-17 17:36:20 -0500351config NUM_MBOX_ASYNC_MSGS
352 int "Maximum number of in-flight asynchronous mailbox messages"
353 default 10
354 help
Anas Nashif429c2a42017-12-13 10:08:21 -0500355 This option specifies the total number of asynchronous mailbox
356 messages that can exist simultaneously, across all mailboxes
357 in the system.
Anas Nashif9463dc02016-12-17 17:36:20 -0500358
Anas Nashif429c2a42017-12-13 10:08:21 -0500359 Setting this option to 0 disables support for asynchronous
360 mailbox messages.
Anas Nashif9463dc02016-12-17 17:36:20 -0500361
362config NUM_PIPE_ASYNC_MSGS
363 int "Maximum number of in-flight asynchronous pipe messages"
364 default 10
365 help
Anas Nashif429c2a42017-12-13 10:08:21 -0500366 This option specifies the total number of asynchronous pipe
367 messages that can exist simultaneously, across all pipes in
368 the system.
Anas Nashif9463dc02016-12-17 17:36:20 -0500369
Anas Nashif429c2a42017-12-13 10:08:21 -0500370 Setting this option to 0 disables support for asynchronous
371 pipe messages.
Andrew Boie945af952017-08-22 13:15:23 -0700372
Anas Nashif9463dc02016-12-17 17:36:20 -0500373config HEAP_MEM_POOL_SIZE
374 int
375 prompt "Heap memory pool size (in bytes)"
Youvedeep Singh4a8b2d22018-03-19 20:45:27 +0530376 default 0 if !POSIX_MQUEUE
377 default 1024 if POSIX_MQUEUE
Anas Nashif9463dc02016-12-17 17:36:20 -0500378 help
Anas Nashif429c2a42017-12-13 10:08:21 -0500379 This option specifies the size of the heap memory pool used when
380 dynamically allocating memory using k_malloc(). Supported values
381 are: 256, 1024, 4096, and 16384. A size of zero means that no
382 heap memory pool is defined.
Anas Nashif9463dc02016-12-17 17:36:20 -0500383endmenu
384
Anas Nashif9463dc02016-12-17 17:36:20 -0500385config ARCH_HAS_CUSTOM_SWAP_TO_MAIN
386 bool
387 # hidden
388 default n
389 help
Anas Nashif429c2a42017-12-13 10:08:21 -0500390 It's possible that an architecture port cannot use _Swap() to swap to
391 the _main() thread, but instead must do something custom. It must
392 enable this option in that case.
Juan Manuel Cruz0e301cc2015-03-11 12:44:14 -0600393
Anas Nashif94d034d2017-12-21 18:23:34 -0500394config ARCH_HAS_CUSTOM_BUSY_WAIT
395 bool
396 # hidden
397 default n
398 help
399 It's possible that an architecture port cannot or does not want to use
400 the provided k_busy_wait(), but instead must do something custom. It must
401 enable this option in that case.
402
Juan Manuel Cruz0e301cc2015-03-11 12:44:14 -0600403config SYS_CLOCK_TICKS_PER_SEC
404 int
405 prompt "System tick frequency (in ticks/second)"
406 default 100
Juan Manuel Cruz0e301cc2015-03-11 12:44:14 -0600407 help
Anas Nashif429c2a42017-12-13 10:08:21 -0500408 This option specifies the frequency of the system clock in Hz.
Juan Manuel Cruz0e301cc2015-03-11 12:44:14 -0600409
Anas Nashif429c2a42017-12-13 10:08:21 -0500410 Depending on the choice made, an amount of possibly expensive math must
411 occur when converting ticks to milliseconds and vice-versa. Some values
412 are optimized, and yield significantly less math.
Benjamin Walsh62092182016-12-20 14:39:08 -0500413
Anas Nashif429c2a42017-12-13 10:08:21 -0500414 The optimal values from a computational point-of-view are 1000, 500,
415 250 and 125, since in these cases there is either no computation
416 required, or it is all done via bit-shifting. These also give a
417 granularity from 1ms to 8ms.
Benjamin Walsh62092182016-12-20 14:39:08 -0500418
Anas Nashif429c2a42017-12-13 10:08:21 -0500419 Other good values are 100, 50, 25, 20 and 10. In this case, some math
420 is required but is minimized. These are also values that necessitate a
421 reduced number of clock interrupts per second, at the cost of
422 granularity (10ms to 100ms).
Benjamin Walsh62092182016-12-20 14:39:08 -0500423
Anas Nashif429c2a42017-12-13 10:08:21 -0500424 All other values require some extensive 64-bit math, and in some
425 configurations even require calls to compiler built-in functions, and
426 can require a non-trivial extra amount of stack space (e.g. around 80
427 bytes on x86).
Benjamin Walsh62092182016-12-20 14:39:08 -0500428
Juan Manuel Cruz0e301cc2015-03-11 12:44:14 -0600429config SYS_CLOCK_HW_CYCLES_PER_SEC
Peter Mitsisd2857402015-07-22 16:22:25 -0400430 int "System clock's h/w timer frequency"
Juan Manuel Cruz0e301cc2015-03-11 12:44:14 -0600431 help
Anas Nashif429c2a42017-12-13 10:08:21 -0500432 This option specifies the frequency of the hardware timer used for the
433 system clock (in Hz). This option is set by the board's Kconfig file
434 and the user should generally avoid modifying it via the menu configuration.
Juan Manuel Cruz0e301cc2015-03-11 12:44:14 -0600435
Kumar Gala9ec2f3b2016-05-24 18:17:13 -0500436config SYS_CLOCK_EXISTS
Juan Manuel Cruzc818cd22015-05-05 10:12:02 -0500437 bool
438 # omit prompt to signify a "hidden" option
Anas Nashif97f2fe92015-05-15 07:43:52 -0400439 default y
Daniel Leung8df10d42016-03-25 14:30:50 -0700440 default n if (SYS_CLOCK_TICKS_PER_SEC = 0)
Juan Manuel Cruzc818cd22015-05-05 10:12:02 -0500441 help
Anas Nashif429c2a42017-12-13 10:08:21 -0500442 This option specifies that the kernel lacks timer support.
Juan Manuel Cruzc818cd22015-05-05 10:12:02 -0500443
Kumar Gala9ec2f3b2016-05-24 18:17:13 -0500444config XIP
Juan Manuel Cruz0e301cc2015-03-11 12:44:14 -0600445 bool
446 prompt "Execute in place"
447 help
448 This option allows the kernel to operate with its text and read-only
David B. Kinderd7485772016-08-17 16:33:08 -0700449 sections residing in ROM (or similar read-only memory). Not all boards
Juan Manuel Cruz0e301cc2015-03-11 12:44:14 -0600450 support this option so it must be used with care; you must also
451 supply a linker command file when building your image. Enabling this
452 option increases both the code and data footprint of the image.
453
Anas Nashif9463dc02016-12-17 17:36:20 -0500454menu "Initialization Priorities"
Anas Nashif3d8e86c2016-12-19 18:41:17 -0500455
Dmitriy Korovkin4223ba72016-09-09 11:20:23 -0400456config KERNEL_INIT_PRIORITY_OBJECTS
457 int
458 prompt "Kernel objects initialization priority"
459 default 30
460 help
Anas Nashif429c2a42017-12-13 10:08:21 -0500461 Kernel objects use this priority for initialization. This
462 priority needs to be higher than minimal default initialization
463 priority.
Dmitriy Korovkin4223ba72016-09-09 11:20:23 -0400464
Dmitriy Korovkin57f27412015-10-26 15:56:02 -0400465config KERNEL_INIT_PRIORITY_DEFAULT
466 int
467 prompt "Default init priority"
Daniel Leung546b8ad2016-03-28 14:05:33 -0700468 default 40
Dmitriy Korovkin57f27412015-10-26 15:56:02 -0400469 help
Anas Nashif429c2a42017-12-13 10:08:21 -0500470 Default minimal init priority for each init level.
Dmitriy Korovkin57f27412015-10-26 15:56:02 -0400471
472config KERNEL_INIT_PRIORITY_DEVICE
473 int
474 prompt "Default init priority for device drivers"
Daniel Leung546b8ad2016-03-28 14:05:33 -0700475 default 50
Dmitriy Korovkin57f27412015-10-26 15:56:02 -0400476 help
Anas Nashif429c2a42017-12-13 10:08:21 -0500477 Device driver, that depends on common components, such as
478 interrupt controller, but does not depend on other devices,
479 uses this init priority.
Dirk Brandewiefeee30c2015-09-29 07:08:58 -0700480
Anas Nashif33118f92016-10-07 13:03:51 -0400481config APPLICATION_INIT_PRIORITY
482 int
483 prompt "Default init priority for application level drivers"
484 default 90
485 help
Anas Nashif429c2a42017-12-13 10:08:21 -0500486 This priority level is for end-user drivers such as sensors and display
487 which have no inward dependencies.
Andy Ross53c85992017-07-24 14:59:55 -0700488
Anas Nashif8470b4d2018-02-25 22:18:17 -0500489
490endmenu
491
Juan Manuel Cruz0e301cc2015-03-11 12:44:14 -0600492menu "Security Options"
Juan Manuel Cruz0e301cc2015-03-11 12:44:14 -0600493
Juan Manuel Cruz0e301cc2015-03-11 12:44:14 -0600494config STACK_CANARIES
495 bool
Dirk Brandewiefeee30c2015-09-29 07:08:58 -0700496 prompt "Compiler stack canaries"
Juan Manuel Cruz0e301cc2015-03-11 12:44:14 -0600497 default n
498 help
Anas Nashif429c2a42017-12-13 10:08:21 -0500499 This option enables compiler stack canaries support kernel functions.
Juan Manuel Cruz0e301cc2015-03-11 12:44:14 -0600500
Anas Nashif429c2a42017-12-13 10:08:21 -0500501 If stack canaries are supported by the compiler, it will emit
502 extra code that inserts a canary value into the stack frame when
503 a function is entered and validates this value upon exit.
504 Stack corruption (such as that caused by buffer overflow) results
505 in a fatal error condition for the running entity.
506 Enabling this option can result in a significant increase
507 in footprint and an associated decrease in performance.
Juan Manuel Cruz0e301cc2015-03-11 12:44:14 -0600508
Anas Nashif429c2a42017-12-13 10:08:21 -0500509 If stack canaries are not supported by the compiler, enabling this
510 option has no effect.
Leandro Pereirab007b642017-10-17 17:01:48 -0700511
512config EXECUTE_XOR_WRITE
513 bool "Enable W^X for memory partitions"
514 depends on USERSPACE
515 depends on ARCH_HAS_EXECUTABLE_PAGE_BIT
516 default y
517 help
Anas Nashif429c2a42017-12-13 10:08:21 -0500518 When enabled, will enforce that a writable page isn't executable
519 and vice versa. This might not be acceptable in all scenarios,
520 so this option is given for those unafraid of shooting themselves
521 in the foot.
Leandro Pereirab007b642017-10-17 17:01:48 -0700522
Anas Nashif429c2a42017-12-13 10:08:21 -0500523 If unsure, say Y.
Leandro Pereirab007b642017-10-17 17:01:48 -0700524
Andrew Boie83752c12018-03-02 07:54:13 -0800525config STACK_POINTER_RANDOM
526 int
527 prompt "Initial stack pointer randomization bounds"
528 depends on !STACK_GROWS_UP
529 default 0
530 help
531 This option performs a limited form of Address Space Layout
532 Randomization by offsetting some random value to a thread's
533 initial stack pointer upon creation. This hinders some types of
534 security attacks by making the location of any given stack frame
535 non-deterministic.
536
537 This feature can waste up to the specified size in bytes the stack
538 region, which is carved out of the total size of the stack region.
539 A reasonable minimum value would be around 100 bytes if this can
540 be spared.
541
542 This is currently only implemented for systems whose stack pointers
543 grow towards lower memory addresses.
544
Juan Manuel Cruz0e301cc2015-03-11 12:44:14 -0600545endmenu
546
Chunlin Hane9c97022017-07-07 20:29:30 +0800547config MAX_DOMAIN_PARTITIONS
548 int
549 prompt "Maximum number of partitions per memory domain"
550 default 16
551 range 0 255
552 depends on USERSPACE
553 help
Anas Nashif429c2a42017-12-13 10:08:21 -0500554 Configure the maximum number of partitions per memory domain.
Chunlin Hane9c97022017-07-07 20:29:30 +0800555
Anas Nashifee9bebf2018-02-25 22:12:35 -0500556menu "SMP Options"
Andy Ross042d8ec2017-12-09 08:37:20 -0800557config USE_SWITCH
558 bool
559 prompt "Use new-style _arch_switch instead of __swap"
560 default n
561 help
Anas Nashifee9bebf2018-02-25 22:12:35 -0500562 The _arch_switch() API is a lower level context switching
563 primitive than the original __swap mechanism. It is required
564 for an SMP-aware scheduler, or if the architecture does not
565 provide __swap. In uniprocess situations where the
566 architecture provides both, _arch_switch incurs more somewhat
567 overhead and may be slower.
Andy Ross042d8ec2017-12-09 08:37:20 -0800568
Andy Rossd3376f22018-01-25 14:03:02 -0800569config SMP
570 bool
571 prompt "Enable symmetric multithreading support"
572 default n
573 help
Anas Nashifee9bebf2018-02-25 22:12:35 -0500574 When true, kernel will be built with SMP support, allowing
575 more than one CPU to schedule Zephyr tasks at a time.
Andy Rossd3376f22018-01-25 14:03:02 -0800576
577config MP_NUM_CPUS
578 int
579 prompt "Number of CPUs/cores"
580 default 1
581 help
Anas Nashifee9bebf2018-02-25 22:12:35 -0500582 Number of multiprocessing-capable cores available to the
583 multicpu API and SMP features.
584
585endmenu
Andy Rossd3376f22018-01-25 14:03:02 -0800586
Anas Nashif59a7de82016-12-17 12:18:10 -0500587source "kernel/Kconfig.event_logger"
Anas Nashif9463dc02016-12-17 17:36:20 -0500588
Anas Nashifed116ac2016-12-17 12:26:40 -0500589source "kernel/Kconfig.power_mgmt"
590
Anas Nashif9463dc02016-12-17 17:36:20 -0500591endmenu