Juan Manuel Cruz | d15251f | 2015-05-20 11:40:39 -0500 | [diff] [blame] | 1 | # Kconfig - kernel configuration options |
| 2 | |
| 3 | # |
| 4 | # Copyright (c) 2014-2015 Wind River Systems, Inc. |
| 5 | # |
David B. Kinder | ac74d8b | 2017-01-18 17:01:01 -0800 | [diff] [blame] | 6 | # SPDX-License-Identifier: Apache-2.0 |
Juan Manuel Cruz | d15251f | 2015-05-20 11:40:39 -0500 | [diff] [blame] | 7 | # |
| 8 | |
Juan Manuel Cruz | 0e301cc | 2015-03-11 12:44:14 -0600 | [diff] [blame] | 9 | |
| 10 | menu "General Kernel Options" |
Andy Gross | bb06316 | 2017-01-29 23:53:17 -0600 | [diff] [blame] | 11 | |
Anas Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 12 | config MULTITHREADING |
| 13 | bool |
| 14 | prompt "Multi-threading" |
| 15 | default y |
| 16 | help |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 17 | 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 Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 22 | |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 23 | Many drivers and subsystems will not work with this option; use only |
| 24 | when you REALLY know what you are doing. |
Anas Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 25 | |
| 26 | config NUM_COOP_PRIORITIES |
| 27 | int |
| 28 | prompt "Number of coop priorities" if MULTITHREADING |
| 29 | default 16 |
| 30 | default 1 if !MULTITHREADING |
Benjamin Walsh | f955476 | 2016-12-21 15:38:54 -0500 | [diff] [blame] | 31 | range 0 128 |
Anas Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 32 | help |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 33 | Number of cooperative priorities configured in the system. Gives access |
| 34 | to priorities: |
Anas Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 35 | |
| 36 | K_PRIO_COOP(0) to K_PRIO_COOP(CONFIG_NUM_COOP_PRIORITIES - 1) |
| 37 | |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 38 | or seen another way, priorities: |
Anas Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 39 | |
| 40 | -CONFIG_NUM_COOP_PRIORITIES to -1 |
| 41 | |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 42 | This can be set to zero to disable cooperative scheduling. Cooperative |
| 43 | threads always preempt preemptible threads. |
Anas Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 44 | |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 45 | 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 Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 48 | |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 49 | The total number of priorities is |
Anas Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 50 | |
| 51 | NUM_COOP_PRIORITIES + NUM_PREEMPT_PRIORITIES + 1 |
| 52 | |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 53 | 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 Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 55 | |
| 56 | config NUM_PREEMPT_PRIORITIES |
| 57 | int |
| 58 | prompt "Number of preemptible priorities" if MULTITHREADING |
| 59 | default 15 |
| 60 | default 0 if !MULTITHREADING |
Benjamin Walsh | f955476 | 2016-12-21 15:38:54 -0500 | [diff] [blame] | 61 | range 0 128 |
Anas Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 62 | help |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 63 | Number of preemptible priorities available in the system. Gives access |
| 64 | to priorities 0 to CONFIG_NUM_PREEMPT_PRIORITIES - 1. |
Anas Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 65 | |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 66 | This can be set to 0 to disable preemptible scheduling. |
Anas Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 67 | |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 68 | 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 Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 71 | |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 72 | The total number of priorities is |
Anas Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 73 | |
| 74 | NUM_COOP_PRIORITIES + NUM_PREEMPT_PRIORITIES + 1 |
| 75 | |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 76 | 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 Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 78 | |
| 79 | config MAIN_THREAD_PRIORITY |
| 80 | int |
| 81 | prompt "Priority of initialization/main thread" |
| 82 | default 0 |
Benjamin Walsh | e669559 | 2017-01-14 18:50:22 -0500 | [diff] [blame] | 83 | default -2 if !PREEMPT_ENABLED |
Anas Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 84 | help |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 85 | Priority at which the initialization thread runs, including the start |
| 86 | of the main() function. main() can then change its priority if desired. |
Anas Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 87 | |
| 88 | config COOP_ENABLED |
| 89 | bool |
| 90 | default y |
| 91 | default n if (NUM_COOP_PRIORITIES = 0) |
| 92 | |
| 93 | config PREEMPT_ENABLED |
| 94 | bool |
| 95 | default y |
| 96 | default n if (NUM_PREEMPT_PRIORITIES = 0) |
| 97 | |
| 98 | config PRIORITY_CEILING |
| 99 | int |
| 100 | prompt "Priority inheritance ceiling" |
| 101 | default 0 |
| 102 | |
| 103 | config MAIN_STACK_SIZE |
| 104 | int |
| 105 | prompt "Size of stack for initialization and main thread" |
| 106 | default 1024 |
Kumar Gala | bd9a154 | 2017-08-10 16:38:14 -0500 | [diff] [blame] | 107 | default 512 if ZTEST |
Anas Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 108 | help |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 109 | 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 Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 112 | |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 113 | After initialization is complete, the thread runs main(). |
Anas Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 114 | |
| 115 | config IDLE_STACK_SIZE |
| 116 | int |
| 117 | prompt "Size of stack for idle thread" |
| 118 | default 256 |
Florian Vaussard | 8fcb780 | 2017-03-10 15:12:44 +0100 | [diff] [blame] | 119 | default 320 if ARC || (ARM && CPU_HAS_FPU) |
Jean-Paul Etienne | c76abee | 2017-01-11 00:24:30 +0100 | [diff] [blame] | 120 | default 512 if RISCV32 |
Mazen NEIFER | 5718676 | 2017-01-31 22:50:42 +0100 | [diff] [blame] | 121 | default 1024 if XTENSA |
Anas Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 122 | help |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 123 | 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 Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 127 | |
| 128 | config ISR_STACK_SIZE |
| 129 | int |
| 130 | prompt "ISR and initialization stack size (in bytes)" |
| 131 | default 2048 |
| 132 | help |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 133 | This option specifies the size of the stack used by interrupt |
| 134 | service routines (ISRs), and during kernel initialization. |
Anas Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 135 | |
Vincenzo Frascino | dfed8c4 | 2017-03-27 15:52:42 +0100 | [diff] [blame] | 136 | config THREAD_STACK_INFO |
| 137 | bool |
| 138 | prompt "Thread stack info" |
| 139 | default n |
| 140 | help |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 141 | This option allows each thread to store the thread stack info into |
| 142 | the k_thread data structure. |
Vincenzo Frascino | dfed8c4 | 2017-03-27 15:52:42 +0100 | [diff] [blame] | 143 | |
Anas Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 144 | config THREAD_CUSTOM_DATA |
| 145 | bool |
| 146 | prompt "Thread custom data" |
| 147 | default n |
| 148 | help |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 149 | 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 Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 151 | |
Anas Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 152 | config ERRNO |
| 153 | bool |
| 154 | prompt "Enable errno support" |
| 155 | default y |
| 156 | help |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 157 | 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 Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 161 | |
Andrew Boie | 2dc207c | 2017-06-19 10:19:57 -0700 | [diff] [blame] | 162 | config APPLICATION_MEMORY |
| 163 | bool |
| 164 | prompt "Split kernel and application memory" |
| 165 | default n |
| 166 | help |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 167 | 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 Boie | 2dc207c | 2017-06-19 10:19:57 -0700 | [diff] [blame] | 171 | |
Anas Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 172 | menu "Kernel Debugging and Metrics" |
Anas Nashif | 8470b4d | 2018-02-25 22:18:17 -0500 | [diff] [blame] | 173 | |
| 174 | config 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 Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 184 | config 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 | |
| 194 | config BOOT_BANNER |
| 195 | bool |
| 196 | prompt "Boot banner" |
Anas Nashif | a805c97 | 2018-01-06 14:29:47 -0500 | [diff] [blame] | 197 | default y |
Kumar Gala | a3629e8 | 2017-01-11 08:05:20 -0600 | [diff] [blame] | 198 | depends on CONSOLE_HAS_DRIVER |
Anas Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 199 | select PRINTK |
| 200 | select EARLY_CONSOLE |
| 201 | help |
Anas Nashif | 54d19f2 | 2017-11-23 11:23:49 -0500 | [diff] [blame] | 202 | 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 Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 205 | |
Inaky Perez-Gonzalez | c51f73f | 2017-06-20 17:01:09 -0700 | [diff] [blame] | 206 | config BOOT_DELAY |
Paul Sokolovsky | b1e7481 | 2017-07-19 00:15:42 +0300 | [diff] [blame] | 207 | int |
| 208 | prompt "Boot delay in milliseconds" |
Inaky Perez-Gonzalez | c51f73f | 2017-06-20 17:01:09 -0700 | [diff] [blame] | 209 | default 0 |
| 210 | help |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 211 | 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-Gonzalez | c51f73f | 2017-06-20 17:01:09 -0700 | [diff] [blame] | 219 | |
Anas Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 220 | config BUILD_TIMESTAMP |
| 221 | bool |
Josh Triplett | 18cb832 | 2018-04-09 14:33:38 -0700 | [diff] [blame] | 222 | default n |
Anas Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 223 | prompt "Build Timestamp" |
| 224 | help |
Josh Triplett | 18cb832 | 2018-04-09 14:33:38 -0700 | [diff] [blame] | 225 | 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 Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 228 | |
| 229 | config INT_LATENCY_BENCHMARK |
| 230 | bool |
| 231 | prompt "Interrupt latency metrics [EXPERIMENTAL]" |
| 232 | default n |
| 233 | depends on ARCH="x86" |
| 234 | help |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 235 | 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 Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 240 | |
Adithya Baglody | d03b249 | 2017-05-03 13:11:51 +0530 | [diff] [blame] | 241 | config EXECUTION_BENCHMARKING |
| 242 | bool |
| 243 | prompt "Timing metrics " |
| 244 | default n |
| 245 | help |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 246 | 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 Baglody | d03b249 | 2017-05-03 13:11:51 +0530 | [diff] [blame] | 250 | |
Anas Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 251 | config 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). |
| 259 | endmenu |
| 260 | |
| 261 | menu "Work Queue Options" |
| 262 | config SYSTEM_WORKQUEUE_STACK_SIZE |
| 263 | int "System workqueue stack size" |
| 264 | default 1024 |
| 265 | |
| 266 | config SYSTEM_WORKQUEUE_PRIORITY |
| 267 | int "System workqueue priority" |
| 268 | default -1 |
Benjamin Walsh | e669559 | 2017-01-14 18:50:22 -0500 | [diff] [blame] | 269 | default 0 if !COOP_ENABLED |
| 270 | default -2 if COOP_ENABLED && !PREEMPT_ENABLED |
Anas Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 271 | |
| 272 | config OFFLOAD_WORKQUEUE_STACK_SIZE |
| 273 | int "Workqueue stack size for thread offload requests" |
| 274 | default 1024 |
| 275 | |
| 276 | config OFFLOAD_WORKQUEUE_PRIORITY |
| 277 | int "Offload requests workqueue priority" |
| 278 | default -1 |
| 279 | |
| 280 | endmenu |
| 281 | |
| 282 | menu "Atomic Operations" |
| 283 | config ATOMIC_OPERATIONS_BUILTIN |
| 284 | bool |
| 285 | help |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 286 | 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 Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 289 | |
| 290 | config ATOMIC_OPERATIONS_CUSTOM |
| 291 | bool |
| 292 | help |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 293 | Use when there isn't support for compiler built-ins, but you have |
| 294 | written optimized assembly code under arch/ which implements these. |
Anas Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 295 | |
| 296 | config ATOMIC_OPERATIONS_C |
| 297 | bool |
| 298 | help |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 299 | 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 Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 304 | endmenu |
| 305 | |
| 306 | menu "Timer API Options" |
| 307 | |
| 308 | config TIMESLICING |
| 309 | bool "Thread time slicing" |
| 310 | default y |
| 311 | depends on SYS_CLOCK_EXISTS && (NUM_PREEMPT_PRIORITIES != 0) |
| 312 | help |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 313 | This option enables time slicing between preemptible threads of |
| 314 | equal priority. |
Anas Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 315 | |
| 316 | config TIMESLICE_SIZE |
| 317 | int "Time slice size (in ms)" |
| 318 | default 0 |
| 319 | range 0 2147483647 |
| 320 | depends on TIMESLICING |
| 321 | help |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 322 | 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 Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 326 | |
| 327 | config 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 Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 333 | 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 Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 336 | |
Benjamin Walsh | acc68c1 | 2017-01-29 18:57:45 -0500 | [diff] [blame] | 337 | config POLL |
| 338 | bool |
Anas Nashif | 8470b4d | 2018-02-25 22:18:17 -0500 | [diff] [blame] | 339 | prompt "Async I/O Framework" |
Benjamin Walsh | acc68c1 | 2017-01-29 18:57:45 -0500 | [diff] [blame] | 340 | default n |
| 341 | help |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 342 | 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 Walsh | acc68c1 | 2017-01-29 18:57:45 -0500 | [diff] [blame] | 346 | |
Anas Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 347 | endmenu |
| 348 | |
| 349 | menu "Other Kernel Object Options" |
Anas Nashif | 70a2e13 | 2017-01-07 08:43:32 -0500 | [diff] [blame] | 350 | |
Anas Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 351 | config NUM_MBOX_ASYNC_MSGS |
| 352 | int "Maximum number of in-flight asynchronous mailbox messages" |
| 353 | default 10 |
| 354 | help |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 355 | This option specifies the total number of asynchronous mailbox |
| 356 | messages that can exist simultaneously, across all mailboxes |
| 357 | in the system. |
Anas Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 358 | |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 359 | Setting this option to 0 disables support for asynchronous |
| 360 | mailbox messages. |
Anas Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 361 | |
| 362 | config NUM_PIPE_ASYNC_MSGS |
| 363 | int "Maximum number of in-flight asynchronous pipe messages" |
| 364 | default 10 |
| 365 | help |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 366 | This option specifies the total number of asynchronous pipe |
| 367 | messages that can exist simultaneously, across all pipes in |
| 368 | the system. |
Anas Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 369 | |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 370 | Setting this option to 0 disables support for asynchronous |
| 371 | pipe messages. |
Andrew Boie | 945af95 | 2017-08-22 13:15:23 -0700 | [diff] [blame] | 372 | |
Anas Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 373 | config HEAP_MEM_POOL_SIZE |
| 374 | int |
| 375 | prompt "Heap memory pool size (in bytes)" |
Youvedeep Singh | 4a8b2d2 | 2018-03-19 20:45:27 +0530 | [diff] [blame] | 376 | default 0 if !POSIX_MQUEUE |
| 377 | default 1024 if POSIX_MQUEUE |
Anas Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 378 | help |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 379 | 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 Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 383 | endmenu |
| 384 | |
Anas Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 385 | config ARCH_HAS_CUSTOM_SWAP_TO_MAIN |
| 386 | bool |
| 387 | # hidden |
| 388 | default n |
| 389 | help |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 390 | 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 Cruz | 0e301cc | 2015-03-11 12:44:14 -0600 | [diff] [blame] | 393 | |
Anas Nashif | 94d034d | 2017-12-21 18:23:34 -0500 | [diff] [blame] | 394 | config 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 Cruz | 0e301cc | 2015-03-11 12:44:14 -0600 | [diff] [blame] | 403 | config SYS_CLOCK_TICKS_PER_SEC |
| 404 | int |
| 405 | prompt "System tick frequency (in ticks/second)" |
| 406 | default 100 |
Juan Manuel Cruz | 0e301cc | 2015-03-11 12:44:14 -0600 | [diff] [blame] | 407 | help |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 408 | This option specifies the frequency of the system clock in Hz. |
Juan Manuel Cruz | 0e301cc | 2015-03-11 12:44:14 -0600 | [diff] [blame] | 409 | |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 410 | 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 Walsh | 6209218 | 2016-12-20 14:39:08 -0500 | [diff] [blame] | 413 | |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 414 | 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 Walsh | 6209218 | 2016-12-20 14:39:08 -0500 | [diff] [blame] | 418 | |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 419 | 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 Walsh | 6209218 | 2016-12-20 14:39:08 -0500 | [diff] [blame] | 423 | |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 424 | 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 Walsh | 6209218 | 2016-12-20 14:39:08 -0500 | [diff] [blame] | 428 | |
Juan Manuel Cruz | 0e301cc | 2015-03-11 12:44:14 -0600 | [diff] [blame] | 429 | config SYS_CLOCK_HW_CYCLES_PER_SEC |
Peter Mitsis | d285740 | 2015-07-22 16:22:25 -0400 | [diff] [blame] | 430 | int "System clock's h/w timer frequency" |
Juan Manuel Cruz | 0e301cc | 2015-03-11 12:44:14 -0600 | [diff] [blame] | 431 | help |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 432 | 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 Cruz | 0e301cc | 2015-03-11 12:44:14 -0600 | [diff] [blame] | 435 | |
Kumar Gala | 9ec2f3b | 2016-05-24 18:17:13 -0500 | [diff] [blame] | 436 | config SYS_CLOCK_EXISTS |
Juan Manuel Cruz | c818cd2 | 2015-05-05 10:12:02 -0500 | [diff] [blame] | 437 | bool |
| 438 | # omit prompt to signify a "hidden" option |
Anas Nashif | 97f2fe9 | 2015-05-15 07:43:52 -0400 | [diff] [blame] | 439 | default y |
Daniel Leung | 8df10d4 | 2016-03-25 14:30:50 -0700 | [diff] [blame] | 440 | default n if (SYS_CLOCK_TICKS_PER_SEC = 0) |
Juan Manuel Cruz | c818cd2 | 2015-05-05 10:12:02 -0500 | [diff] [blame] | 441 | help |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 442 | This option specifies that the kernel lacks timer support. |
Juan Manuel Cruz | c818cd2 | 2015-05-05 10:12:02 -0500 | [diff] [blame] | 443 | |
Kumar Gala | 9ec2f3b | 2016-05-24 18:17:13 -0500 | [diff] [blame] | 444 | config XIP |
Juan Manuel Cruz | 0e301cc | 2015-03-11 12:44:14 -0600 | [diff] [blame] | 445 | bool |
| 446 | prompt "Execute in place" |
| 447 | help |
| 448 | This option allows the kernel to operate with its text and read-only |
David B. Kinder | d748577 | 2016-08-17 16:33:08 -0700 | [diff] [blame] | 449 | sections residing in ROM (or similar read-only memory). Not all boards |
Juan Manuel Cruz | 0e301cc | 2015-03-11 12:44:14 -0600 | [diff] [blame] | 450 | 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 Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 454 | menu "Initialization Priorities" |
Anas Nashif | 3d8e86c | 2016-12-19 18:41:17 -0500 | [diff] [blame] | 455 | |
Dmitriy Korovkin | 4223ba7 | 2016-09-09 11:20:23 -0400 | [diff] [blame] | 456 | config KERNEL_INIT_PRIORITY_OBJECTS |
| 457 | int |
| 458 | prompt "Kernel objects initialization priority" |
| 459 | default 30 |
| 460 | help |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 461 | Kernel objects use this priority for initialization. This |
| 462 | priority needs to be higher than minimal default initialization |
| 463 | priority. |
Dmitriy Korovkin | 4223ba7 | 2016-09-09 11:20:23 -0400 | [diff] [blame] | 464 | |
Dmitriy Korovkin | 57f2741 | 2015-10-26 15:56:02 -0400 | [diff] [blame] | 465 | config KERNEL_INIT_PRIORITY_DEFAULT |
| 466 | int |
| 467 | prompt "Default init priority" |
Daniel Leung | 546b8ad | 2016-03-28 14:05:33 -0700 | [diff] [blame] | 468 | default 40 |
Dmitriy Korovkin | 57f2741 | 2015-10-26 15:56:02 -0400 | [diff] [blame] | 469 | help |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 470 | Default minimal init priority for each init level. |
Dmitriy Korovkin | 57f2741 | 2015-10-26 15:56:02 -0400 | [diff] [blame] | 471 | |
| 472 | config KERNEL_INIT_PRIORITY_DEVICE |
| 473 | int |
| 474 | prompt "Default init priority for device drivers" |
Daniel Leung | 546b8ad | 2016-03-28 14:05:33 -0700 | [diff] [blame] | 475 | default 50 |
Dmitriy Korovkin | 57f2741 | 2015-10-26 15:56:02 -0400 | [diff] [blame] | 476 | help |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 477 | 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 Brandewie | feee30c | 2015-09-29 07:08:58 -0700 | [diff] [blame] | 480 | |
Anas Nashif | 33118f9 | 2016-10-07 13:03:51 -0400 | [diff] [blame] | 481 | config APPLICATION_INIT_PRIORITY |
| 482 | int |
| 483 | prompt "Default init priority for application level drivers" |
| 484 | default 90 |
| 485 | help |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 486 | This priority level is for end-user drivers such as sensors and display |
| 487 | which have no inward dependencies. |
Andy Ross | 53c8599 | 2017-07-24 14:59:55 -0700 | [diff] [blame] | 488 | |
Anas Nashif | 8470b4d | 2018-02-25 22:18:17 -0500 | [diff] [blame] | 489 | |
| 490 | endmenu |
| 491 | |
Juan Manuel Cruz | 0e301cc | 2015-03-11 12:44:14 -0600 | [diff] [blame] | 492 | menu "Security Options" |
Juan Manuel Cruz | 0e301cc | 2015-03-11 12:44:14 -0600 | [diff] [blame] | 493 | |
Juan Manuel Cruz | 0e301cc | 2015-03-11 12:44:14 -0600 | [diff] [blame] | 494 | config STACK_CANARIES |
| 495 | bool |
Dirk Brandewie | feee30c | 2015-09-29 07:08:58 -0700 | [diff] [blame] | 496 | prompt "Compiler stack canaries" |
Juan Manuel Cruz | 0e301cc | 2015-03-11 12:44:14 -0600 | [diff] [blame] | 497 | default n |
| 498 | help |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 499 | This option enables compiler stack canaries support kernel functions. |
Juan Manuel Cruz | 0e301cc | 2015-03-11 12:44:14 -0600 | [diff] [blame] | 500 | |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 501 | 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 Cruz | 0e301cc | 2015-03-11 12:44:14 -0600 | [diff] [blame] | 508 | |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 509 | If stack canaries are not supported by the compiler, enabling this |
| 510 | option has no effect. |
Leandro Pereira | b007b64 | 2017-10-17 17:01:48 -0700 | [diff] [blame] | 511 | |
| 512 | config 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 Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 518 | 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 Pereira | b007b64 | 2017-10-17 17:01:48 -0700 | [diff] [blame] | 522 | |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 523 | If unsure, say Y. |
Leandro Pereira | b007b64 | 2017-10-17 17:01:48 -0700 | [diff] [blame] | 524 | |
Andrew Boie | 83752c1 | 2018-03-02 07:54:13 -0800 | [diff] [blame] | 525 | config 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 Cruz | 0e301cc | 2015-03-11 12:44:14 -0600 | [diff] [blame] | 545 | endmenu |
| 546 | |
Chunlin Han | e9c9702 | 2017-07-07 20:29:30 +0800 | [diff] [blame] | 547 | config 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 Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 554 | Configure the maximum number of partitions per memory domain. |
Chunlin Han | e9c9702 | 2017-07-07 20:29:30 +0800 | [diff] [blame] | 555 | |
Anas Nashif | ee9bebf | 2018-02-25 22:12:35 -0500 | [diff] [blame] | 556 | menu "SMP Options" |
Andy Ross | 042d8ec | 2017-12-09 08:37:20 -0800 | [diff] [blame] | 557 | config USE_SWITCH |
| 558 | bool |
| 559 | prompt "Use new-style _arch_switch instead of __swap" |
| 560 | default n |
| 561 | help |
Anas Nashif | ee9bebf | 2018-02-25 22:12:35 -0500 | [diff] [blame] | 562 | 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 Ross | 042d8ec | 2017-12-09 08:37:20 -0800 | [diff] [blame] | 568 | |
Andy Ross | d3376f2 | 2018-01-25 14:03:02 -0800 | [diff] [blame] | 569 | config SMP |
| 570 | bool |
| 571 | prompt "Enable symmetric multithreading support" |
| 572 | default n |
| 573 | help |
Anas Nashif | ee9bebf | 2018-02-25 22:12:35 -0500 | [diff] [blame] | 574 | When true, kernel will be built with SMP support, allowing |
| 575 | more than one CPU to schedule Zephyr tasks at a time. |
Andy Ross | d3376f2 | 2018-01-25 14:03:02 -0800 | [diff] [blame] | 576 | |
| 577 | config MP_NUM_CPUS |
| 578 | int |
| 579 | prompt "Number of CPUs/cores" |
| 580 | default 1 |
| 581 | help |
Anas Nashif | ee9bebf | 2018-02-25 22:12:35 -0500 | [diff] [blame] | 582 | Number of multiprocessing-capable cores available to the |
| 583 | multicpu API and SMP features. |
| 584 | |
| 585 | endmenu |
Andy Ross | d3376f2 | 2018-01-25 14:03:02 -0800 | [diff] [blame] | 586 | |
Anas Nashif | 59a7de8 | 2016-12-17 12:18:10 -0500 | [diff] [blame] | 587 | source "kernel/Kconfig.event_logger" |
Anas Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 588 | |
Anas Nashif | ed116ac | 2016-12-17 12:26:40 -0500 | [diff] [blame] | 589 | source "kernel/Kconfig.power_mgmt" |
| 590 | |
Anas Nashif | 9463dc0 | 2016-12-17 17:36:20 -0500 | [diff] [blame] | 591 | endmenu |