Ulf Magnusson | bd6e044 | 2019-11-01 13:45:29 +0100 | [diff] [blame] | 1 | # General architecture configuration options |
Juan Manuel Cruz | d15251f | 2015-05-20 11:40:39 -0500 | [diff] [blame] | 2 | |
Juan Manuel Cruz | d15251f | 2015-05-20 11:40:39 -0500 | [diff] [blame] | 3 | # Copyright (c) 2014-2015 Wind River Systems, Inc. |
| 4 | # Copyright (c) 2015 Intel Corporation |
Mazen NEIFER | 1cded67 | 2017-01-13 12:14:33 +0100 | [diff] [blame] | 5 | # Copyright (c) 2016 Cadence Design Systems, Inc. |
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 | |
Ulf Magnusson | ec3eff5 | 2018-07-30 10:57:47 +0200 | [diff] [blame] | 8 | # Include these first so that any properties (e.g. defaults) below can be |
Anas Nashif | f2cb20c | 2019-06-18 14:45:40 -0400 | [diff] [blame] | 9 | # overridden (by defining symbols in multiple locations) |
Ulf Magnusson | ec3eff5 | 2018-07-30 10:57:47 +0200 | [diff] [blame] | 10 | |
Ulf Magnusson | d0e8752 | 2018-09-05 12:58:05 +0200 | [diff] [blame] | 11 | # Note: $ARCH might be a glob pattern |
Klaus Petersen | c66cb76 | 2018-11-15 10:37:46 +0100 | [diff] [blame] | 12 | source "$(ARCH_DIR)/$(ARCH)/Kconfig" |
Ulf Magnusson | ec3eff5 | 2018-07-30 10:57:47 +0200 | [diff] [blame] | 13 | |
Ulf Magnusson | c5839f8 | 2020-02-06 18:26:14 +0100 | [diff] [blame] | 14 | # Architecture symbols |
| 15 | # |
| 16 | # Should be 'select'ed by low-level symbols like SOC_SERIES_* or, lacking that, |
| 17 | # by SOC_*. |
Anas Nashif | 77ba3c3 | 2015-10-09 06:20:52 -0400 | [diff] [blame] | 18 | |
| 19 | config ARC |
Ulf Magnusson | c5839f8 | 2020-02-06 18:26:14 +0100 | [diff] [blame] | 20 | bool |
Ulf Magnusson | de42aea | 2020-02-07 00:48:22 +0100 | [diff] [blame] | 21 | select ARCH_IS_SET |
Kumar Gala | 311e6b9 | 2018-03-14 19:16:40 -0500 | [diff] [blame] | 22 | select HAS_DTS |
Anas Nashif | ce59510 | 2020-08-02 10:45:10 -0400 | [diff] [blame] | 23 | imply XIP |
Daniel Leung | c7704d8 | 2020-10-30 10:21:40 -0700 | [diff] [blame] | 24 | select ARCH_HAS_THREAD_LOCAL_STORAGE |
Ulf Magnusson | c5839f8 | 2020-02-06 18:26:14 +0100 | [diff] [blame] | 25 | help |
| 26 | ARC architecture |
Anas Nashif | 77ba3c3 | 2015-10-09 06:20:52 -0400 | [diff] [blame] | 27 | |
| 28 | config ARM |
Ulf Magnusson | c5839f8 | 2020-02-06 18:26:14 +0100 | [diff] [blame] | 29 | bool |
Ulf Magnusson | de42aea | 2020-02-07 00:48:22 +0100 | [diff] [blame] | 30 | select ARCH_IS_SET |
Daniel Leung | 181d073 | 2020-08-18 12:55:08 -0700 | [diff] [blame] | 31 | select ARCH_SUPPORTS_COREDUMP if CPU_CORTEX_M |
Kumar Gala | 37f9113 | 2018-11-03 07:19:18 -0500 | [diff] [blame] | 32 | select HAS_DTS |
Andrew Boie | 28be793 | 2020-03-11 10:56:19 -0700 | [diff] [blame] | 33 | # FIXME: current state of the code for all ARM requires this, but |
| 34 | # is really only necessary for Cortex-M with ARM MPU! |
Carlo Caione | 3539c2f | 2021-03-25 11:56:15 +0100 | [diff] [blame] | 35 | select GEN_PRIV_STACKS |
Bradley Bolen | c0dd594 | 2021-10-29 19:24:17 -0400 | [diff] [blame] | 36 | select ARCH_HAS_THREAD_LOCAL_STORAGE if CPU_AARCH32_CORTEX_R || CPU_CORTEX_M |
Ulf Magnusson | c5839f8 | 2020-02-06 18:26:14 +0100 | [diff] [blame] | 37 | help |
| 38 | ARM architecture |
Anas Nashif | 77ba3c3 | 2015-10-09 06:20:52 -0400 | [diff] [blame] | 39 | |
Carlo Caione | 3539c2f | 2021-03-25 11:56:15 +0100 | [diff] [blame] | 40 | config ARM64 |
| 41 | bool |
| 42 | select ARCH_IS_SET |
| 43 | select 64BIT |
| 44 | select HAS_DTS |
| 45 | select HAS_ARM_SMCCC |
| 46 | select ARCH_HAS_THREAD_LOCAL_STORAGE |
| 47 | select USE_SWITCH |
| 48 | select USE_SWITCH_SUPPORTED |
Nicolas Pitre | bd941bc | 2022-03-11 21:29:06 -0500 | [diff] [blame] | 49 | select IRQ_OFFLOAD_NESTED if IRQ_OFFLOAD |
Carlo Caione | 3539c2f | 2021-03-25 11:56:15 +0100 | [diff] [blame] | 50 | help |
| 51 | ARM64 (AArch64) architecture |
| 52 | |
Antony Pavlov | 0369998 | 2020-12-01 13:29:58 +0300 | [diff] [blame] | 53 | config MIPS |
| 54 | bool |
| 55 | select ARCH_IS_SET |
| 56 | select ATOMIC_OPERATIONS_C |
| 57 | select HAS_DTS |
| 58 | help |
| 59 | MIPS architecture |
| 60 | |
Martin Åberg | 07160fa | 2020-10-16 20:53:59 +0200 | [diff] [blame] | 61 | config SPARC |
| 62 | bool |
| 63 | select ARCH_IS_SET |
Morten Priess | a0dd44c | 2021-04-21 15:15:26 +0200 | [diff] [blame] | 64 | select HAS_DTS |
Martin Åberg | 07160fa | 2020-10-16 20:53:59 +0200 | [diff] [blame] | 65 | select USE_SWITCH |
| 66 | select USE_SWITCH_SUPPORTED |
| 67 | select BIG_ENDIAN |
| 68 | select ATOMIC_OPERATIONS_BUILTIN if SPARC_CASA |
| 69 | select ATOMIC_OPERATIONS_C if !SPARC_CASA |
Martin Åberg | feae324 | 2020-10-27 12:31:41 +0100 | [diff] [blame] | 70 | select ARCH_HAS_THREAD_LOCAL_STORAGE |
Martin Åberg | 83f733c | 2021-02-16 15:38:58 +0100 | [diff] [blame] | 71 | select ARCH_HAS_EXTRA_EXCEPTION_INFO |
Martin Åberg | 07160fa | 2020-10-16 20:53:59 +0200 | [diff] [blame] | 72 | help |
| 73 | SPARC architecture |
| 74 | |
Anas Nashif | 77ba3c3 | 2015-10-09 06:20:52 -0400 | [diff] [blame] | 75 | config X86 |
Ulf Magnusson | c5839f8 | 2020-02-06 18:26:14 +0100 | [diff] [blame] | 76 | bool |
Ulf Magnusson | de42aea | 2020-02-07 00:48:22 +0100 | [diff] [blame] | 77 | select ARCH_IS_SET |
Andrew Boie | 6a1474e | 2016-07-15 13:15:00 -0700 | [diff] [blame] | 78 | select ATOMIC_OPERATIONS_BUILTIN |
Kumar Gala | 37f9113 | 2018-11-03 07:19:18 -0500 | [diff] [blame] | 79 | select HAS_DTS |
Daniel Leung | 8fbb14e | 2020-08-13 19:18:52 -0700 | [diff] [blame] | 80 | select ARCH_SUPPORTS_COREDUMP |
Andrew Boie | ff294e0 | 2020-06-12 16:50:16 -0700 | [diff] [blame] | 81 | select CPU_HAS_MMU |
Andrew Boie | d2a7227 | 2020-10-27 11:27:37 -0700 | [diff] [blame] | 82 | select ARCH_MEM_DOMAIN_DATA if USERSPACE && !X86_COMMON_PAGE_TABLE |
Andrew Boie | 00f71b0 | 2020-08-25 17:02:38 -0700 | [diff] [blame] | 83 | select ARCH_MEM_DOMAIN_SYNCHRONOUS_API if USERSPACE |
Flavio Ceolin | 5408f31 | 2020-05-21 16:55:28 -0700 | [diff] [blame] | 84 | select ARCH_HAS_GDBSTUB if !X86_64 |
Anas Nashif | 5dec235 | 2020-08-27 23:07:01 -0400 | [diff] [blame] | 85 | select ARCH_HAS_TIMING_FUNCTIONS |
Daniel Leung | 4b38392 | 2020-09-29 15:32:35 -0700 | [diff] [blame] | 86 | select ARCH_HAS_THREAD_LOCAL_STORAGE |
Andrew Boie | ed22064 | 2020-12-09 10:37:52 -0800 | [diff] [blame] | 87 | select ARCH_HAS_DEMAND_PAGING |
Andy Ross | 73453a3 | 2022-02-14 14:30:34 -0800 | [diff] [blame] | 88 | select IRQ_OFFLOAD_NESTED if IRQ_OFFLOAD |
Daniel Leung | 1eba354 | 2021-03-31 14:51:58 -0700 | [diff] [blame] | 89 | select NEED_LIBC_MEM_PARTITION if USERSPACE && TIMING_FUNCTIONS \ |
| 90 | && !BOARD_HAS_TIMING_FUNCTIONS \ |
| 91 | && !SOC_HAS_TIMING_FUNCTIONS |
Ulf Magnusson | c5839f8 | 2020-02-06 18:26:14 +0100 | [diff] [blame] | 92 | help |
| 93 | x86 architecture |
Anas Nashif | 77ba3c3 | 2015-10-09 06:20:52 -0400 | [diff] [blame] | 94 | |
Andrew Boie | 9433895 | 2016-04-21 14:47:09 -0700 | [diff] [blame] | 95 | config NIOS2 |
Ulf Magnusson | c5839f8 | 2020-02-06 18:26:14 +0100 | [diff] [blame] | 96 | bool |
Ulf Magnusson | de42aea | 2020-02-07 00:48:22 +0100 | [diff] [blame] | 97 | select ARCH_IS_SET |
Andrew Boie | 6a1474e | 2016-07-15 13:15:00 -0700 | [diff] [blame] | 98 | select ATOMIC_OPERATIONS_C |
Kumar Gala | 37f9113 | 2018-11-03 07:19:18 -0500 | [diff] [blame] | 99 | select HAS_DTS |
Anas Nashif | ce59510 | 2020-08-02 10:45:10 -0400 | [diff] [blame] | 100 | imply XIP |
Anas Nashif | 150c82c | 2020-08-27 23:16:48 -0400 | [diff] [blame] | 101 | select ARCH_HAS_TIMING_FUNCTIONS |
Ulf Magnusson | c5839f8 | 2020-02-06 18:26:14 +0100 | [diff] [blame] | 102 | help |
| 103 | Nios II Gen 2 architecture |
Andrew Boie | 9433895 | 2016-04-21 14:47:09 -0700 | [diff] [blame] | 104 | |
Nicolas Pitre | 1f4b5dd | 2019-07-17 13:17:05 -0400 | [diff] [blame] | 105 | config RISCV |
Ulf Magnusson | c5839f8 | 2020-02-06 18:26:14 +0100 | [diff] [blame] | 106 | bool |
Ulf Magnusson | de42aea | 2020-02-07 00:48:22 +0100 | [diff] [blame] | 107 | select ARCH_IS_SET |
Kumar Gala | 8ded3fb | 2018-11-02 13:29:59 -0500 | [diff] [blame] | 108 | select HAS_DTS |
Mark Holden | 1a697cc | 2021-11-12 13:21:43 -0800 | [diff] [blame] | 109 | select ARCH_SUPPORTS_COREDUMP |
Daniel Leung | 8a79ce1 | 2020-10-02 13:09:32 -0700 | [diff] [blame] | 110 | select ARCH_HAS_THREAD_LOCAL_STORAGE |
Nicolas Pitre | df852a0 | 2022-03-14 14:51:04 -0400 | [diff] [blame^] | 111 | select IRQ_OFFLOAD_NESTED if IRQ_OFFLOAD |
Ederson de Souza | 2aab236 | 2022-01-05 14:33:11 -0800 | [diff] [blame] | 112 | select SCHED_IPI_SUPPORTED if SMP |
Anas Nashif | ce59510 | 2020-08-02 10:45:10 -0400 | [diff] [blame] | 113 | imply XIP |
Ulf Magnusson | c5839f8 | 2020-02-06 18:26:14 +0100 | [diff] [blame] | 114 | help |
| 115 | RISCV architecture |
Jean-Paul Etienne | cd83e85 | 2017-01-11 00:24:30 +0100 | [diff] [blame] | 116 | |
Mazen NEIFER | 1cded67 | 2017-01-13 12:14:33 +0100 | [diff] [blame] | 117 | config XTENSA |
Ulf Magnusson | c5839f8 | 2020-02-06 18:26:14 +0100 | [diff] [blame] | 118 | bool |
Ulf Magnusson | de42aea | 2020-02-07 00:48:22 +0100 | [diff] [blame] | 119 | select ARCH_IS_SET |
Kumar Gala | 31503a8 | 2019-02-01 07:52:05 -0600 | [diff] [blame] | 120 | select HAS_DTS |
Andrew Boie | 6fd6b7e | 2019-08-13 14:02:29 -0700 | [diff] [blame] | 121 | select USE_SWITCH |
| 122 | select USE_SWITCH_SUPPORTED |
Andy Ross | 73453a3 | 2022-02-14 14:30:34 -0800 | [diff] [blame] | 123 | select IRQ_OFFLOAD_NESTED if IRQ_OFFLOAD |
Daniel Leung | 64e99df | 2021-04-01 11:35:31 -0700 | [diff] [blame] | 124 | imply ATOMIC_OPERATIONS_ARCH |
Ulf Magnusson | c5839f8 | 2020-02-06 18:26:14 +0100 | [diff] [blame] | 125 | help |
| 126 | Xtensa architecture |
Mazen NEIFER | 1cded67 | 2017-01-13 12:14:33 +0100 | [diff] [blame] | 127 | |
Alberto Escolar Piedras | 76f76441 | 2017-10-03 16:31:55 +0200 | [diff] [blame] | 128 | config ARCH_POSIX |
Ulf Magnusson | c5839f8 | 2020-02-06 18:26:14 +0100 | [diff] [blame] | 129 | bool |
Ulf Magnusson | de42aea | 2020-02-07 00:48:22 +0100 | [diff] [blame] | 130 | select ARCH_IS_SET |
Kumar Gala | cd88902 | 2020-04-03 14:08:58 -0500 | [diff] [blame] | 131 | select HAS_DTS |
Alberto Escolar Piedras | 76f76441 | 2017-10-03 16:31:55 +0200 | [diff] [blame] | 132 | select ATOMIC_OPERATIONS_BUILTIN |
| 133 | select ARCH_HAS_CUSTOM_SWAP_TO_MAIN |
| 134 | select ARCH_HAS_CUSTOM_BUSY_WAIT |
| 135 | select ARCH_HAS_THREAD_ABORT |
| 136 | select NATIVE_APPLICATION |
Alberto Escolar Piedras | 2cd70e6 | 2019-02-03 13:04:17 +0100 | [diff] [blame] | 137 | select HAS_COVERAGE_SUPPORT |
Ulf Magnusson | c5839f8 | 2020-02-06 18:26:14 +0100 | [diff] [blame] | 138 | help |
| 139 | POSIX (native) architecture |
Anas Nashif | 46f66f4 | 2017-09-08 21:14:06 -0400 | [diff] [blame] | 140 | |
Ulf Magnusson | de42aea | 2020-02-07 00:48:22 +0100 | [diff] [blame] | 141 | config ARCH_IS_SET |
| 142 | bool |
| 143 | help |
| 144 | Helper symbol to detect SoCs forgetting to select one of the arch |
| 145 | symbols above. See the top-level CMakeLists.txt. |
| 146 | |
Anas Nashif | 46f66f4 | 2017-09-08 21:14:06 -0400 | [diff] [blame] | 147 | menu "General Architecture Options" |
| 148 | |
Anas Nashif | 8e38670 | 2018-09-17 09:56:20 -0500 | [diff] [blame] | 149 | module = ARCH |
| 150 | module-str = arch |
| 151 | source "subsys/logging/Kconfig.template.log_config" |
| 152 | |
| 153 | module = MPU |
| 154 | module-str = mpu |
| 155 | source "subsys/logging/Kconfig.template.log_config" |
| 156 | |
Yasushi SHOJI | 6fc0d77 | 2018-10-09 18:59:16 +0900 | [diff] [blame] | 157 | config BIG_ENDIAN |
Ulf Magnusson | 975de21 | 2019-11-01 10:24:07 +0100 | [diff] [blame] | 158 | bool |
| 159 | help |
| 160 | This option tells the build system that the target system is big-endian. |
| 161 | Little-endian architecture is the default and should leave this option |
| 162 | unselected. This option is selected by arch/$ARCH/Kconfig, |
| 163 | soc/**/Kconfig, or boards/**/Kconfig and the user should generally avoid |
| 164 | modifying it. The option is used to select linker script OUTPUT_FORMAT |
| 165 | and command line option for gen_isr_tables.py. |
Yasushi SHOJI | 6fc0d77 | 2018-10-09 18:59:16 +0900 | [diff] [blame] | 166 | |
Nicolas Pitre | 9bd9b75 | 2019-05-17 15:15:24 -0400 | [diff] [blame] | 167 | config 64BIT |
| 168 | bool |
| 169 | help |
| 170 | This option tells the build system that the target system is |
| 171 | using a 64-bit address space, meaning that pointer and long types |
| 172 | are 64 bits wide. This option is selected by arch/$ARCH/Kconfig, |
| 173 | soc/**/Kconfig, or boards/**/Kconfig and the user should generally |
| 174 | avoid modifying it. |
| 175 | |
Kumar Gala | 8ce0cf0 | 2019-08-28 09:29:26 -0500 | [diff] [blame] | 176 | # Workaround for not being able to have commas in macro arguments |
| 177 | DT_CHOSEN_Z_SRAM := zephyr,sram |
| 178 | |
Kumar Gala | ce7ed18 | 2018-12-07 10:35:04 -0600 | [diff] [blame] | 179 | config SRAM_SIZE |
| 180 | int "SRAM Size in kB" |
Kumar Gala | 22e7449 | 2019-10-23 15:15:59 -0500 | [diff] [blame] | 181 | default $(dt_chosen_reg_size_int,$(DT_CHOSEN_Z_SRAM),0,K) |
Kumar Gala | ce7ed18 | 2018-12-07 10:35:04 -0600 | [diff] [blame] | 182 | help |
Ulf Magnusson | def1f0e | 2019-12-26 16:08:19 +0100 | [diff] [blame] | 183 | The SRAM size in kB. The default value comes from /chosen/zephyr,sram in |
| 184 | devicetree. The user should generally avoid changing it via menuconfig or |
| 185 | in configuration files. |
Kumar Gala | ce7ed18 | 2018-12-07 10:35:04 -0600 | [diff] [blame] | 186 | |
| 187 | config SRAM_BASE_ADDRESS |
| 188 | hex "SRAM Base Address" |
Kumar Gala | 22e7449 | 2019-10-23 15:15:59 -0500 | [diff] [blame] | 189 | default $(dt_chosen_reg_addr_hex,$(DT_CHOSEN_Z_SRAM)) |
Kumar Gala | ce7ed18 | 2018-12-07 10:35:04 -0600 | [diff] [blame] | 190 | help |
Ulf Magnusson | def1f0e | 2019-12-26 16:08:19 +0100 | [diff] [blame] | 191 | The SRAM base address. The default value comes from from |
| 192 | /chosen/zephyr,sram in devicetree. The user should generally avoid |
| 193 | changing it via menuconfig or in configuration files. |
| 194 | |
Carlo Caione | 3539c2f | 2021-03-25 11:56:15 +0100 | [diff] [blame] | 195 | if ARC || ARM || ARM64 || NIOS2 || X86 |
Kumar Gala | ce7ed18 | 2018-12-07 10:35:04 -0600 | [diff] [blame] | 196 | |
Kumar Gala | 8ce0cf0 | 2019-08-28 09:29:26 -0500 | [diff] [blame] | 197 | # Workaround for not being able to have commas in macro arguments |
| 198 | DT_CHOSEN_Z_FLASH := zephyr,flash |
| 199 | |
Kumar Gala | ce7ed18 | 2018-12-07 10:35:04 -0600 | [diff] [blame] | 200 | config FLASH_SIZE |
| 201 | int "Flash Size in kB" |
Carlo Caione | 3539c2f | 2021-03-25 11:56:15 +0100 | [diff] [blame] | 202 | default $(dt_chosen_reg_size_int,$(DT_CHOSEN_Z_FLASH),0,K) if (XIP && (ARM ||ARM64)) || !ARM |
Kumar Gala | ce7ed18 | 2018-12-07 10:35:04 -0600 | [diff] [blame] | 203 | help |
| 204 | This option specifies the size of the flash in kB. It is normally set by |
| 205 | the board's defconfig file and the user should generally avoid modifying |
| 206 | it via the menu configuration. |
| 207 | |
| 208 | config FLASH_BASE_ADDRESS |
| 209 | hex "Flash Base Address" |
Carlo Caione | 3539c2f | 2021-03-25 11:56:15 +0100 | [diff] [blame] | 210 | default $(dt_chosen_reg_addr_hex,$(DT_CHOSEN_Z_FLASH)) if (XIP && (ARM || ARM64)) || !ARM |
Kumar Gala | ce7ed18 | 2018-12-07 10:35:04 -0600 | [diff] [blame] | 211 | help |
Ioannis Glaropoulos | 0348c53 | 2019-02-12 15:16:16 +0100 | [diff] [blame] | 212 | This option specifies the base address of the flash on the board. It is |
Kumar Gala | ce7ed18 | 2018-12-07 10:35:04 -0600 | [diff] [blame] | 213 | normally set by the board's defconfig file and the user should generally |
| 214 | avoid modifying it via the menu configuration. |
| 215 | |
Carlo Caione | 3539c2f | 2021-03-25 11:56:15 +0100 | [diff] [blame] | 216 | endif # ARM || ARM64 || ARC || NIOS2 || X86 |
Kumar Gala | ce7ed18 | 2018-12-07 10:35:04 -0600 | [diff] [blame] | 217 | |
Ioannis Glaropoulos | 1cc66cf | 2018-10-12 09:27:28 +0200 | [diff] [blame] | 218 | if ARCH_HAS_TRUSTED_EXECUTION |
| 219 | |
| 220 | config TRUSTED_EXECUTION_SECURE |
| 221 | bool "Trusted Execution: Secure firmware image" |
| 222 | help |
| 223 | Select this option to enable building a Secure firmware |
| 224 | image for a platform that supports Trusted Execution. A |
| 225 | Secure firmware image will execute in Secure state. It may |
| 226 | allow the CPU to execute in Non-Secure (Normal) state. |
| 227 | Therefore, a Secure firmware image shall be able to |
| 228 | configure security attributions of CPU resources (memory |
| 229 | areas, peripherals, interrupts, etc.) as well as to handle |
| 230 | faults, related to security violations. It may optionally |
| 231 | allow certain functions to be called from the Non-Secure |
| 232 | (Normal) domain. |
| 233 | |
| 234 | config TRUSTED_EXECUTION_NONSECURE |
| 235 | depends on !TRUSTED_EXECUTION_SECURE |
| 236 | bool "Trusted Execution: Non-Secure firmware image" |
| 237 | help |
| 238 | Select this option to enable building a Non-Secure |
| 239 | firmware image for a platform that supports Trusted |
| 240 | Execution. A Non-Secure firmware image will execute |
| 241 | in Non-Secure (Normal) state. Therefore, it shall not |
| 242 | access CPU resources (memory areas, peripherals, |
| 243 | interrupts etc.) belonging to the Secure domain. |
| 244 | |
| 245 | endif # ARCH_HAS_TRUSTED_EXECUTION |
| 246 | |
Anas Nashif | 46f66f4 | 2017-09-08 21:14:06 -0400 | [diff] [blame] | 247 | config HW_STACK_PROTECTION |
| 248 | bool "Hardware Stack Protection" |
| 249 | depends on ARCH_HAS_STACK_PROTECTION |
| 250 | help |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 251 | Select this option to enable hardware-based platform features to |
| 252 | catch stack overflows when the system is running in privileged |
| 253 | mode. If CONFIG_USERSPACE is not enabled, the system is always |
| 254 | running in privileged mode. |
Andrew Boie | 2a8684f | 2017-11-06 11:42:54 -0800 | [diff] [blame] | 255 | |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 256 | Note that this does not necessarily prevent corruption and assertions |
| 257 | about the overall system state when a fault is triggered cannot be |
| 258 | made. |
Anas Nashif | 46f66f4 | 2017-09-08 21:14:06 -0400 | [diff] [blame] | 259 | |
Andrew Boie | 9f70c7b | 2017-09-11 10:34:49 -0700 | [diff] [blame] | 260 | config USERSPACE |
Andrew Boie | 53b5204 | 2019-01-18 11:41:06 -0800 | [diff] [blame] | 261 | bool "User mode threads" |
Andrew Boie | 9f70c7b | 2017-09-11 10:34:49 -0700 | [diff] [blame] | 262 | depends on ARCH_HAS_USERSPACE |
Anas Nashif | 22b95a2 | 2019-11-24 11:28:38 -0500 | [diff] [blame] | 263 | depends on RUNTIME_ERROR_CHECKS |
Andrew Boie | 5a58ad5 | 2020-11-05 14:30:20 -0800 | [diff] [blame] | 264 | depends on SRAM_REGION_PERMISSIONS |
Carlo Caione | d770880 | 2020-11-12 14:44:14 +0100 | [diff] [blame] | 265 | select THREAD_STACK_INFO |
Andrew Boie | 9f70c7b | 2017-09-11 10:34:49 -0700 | [diff] [blame] | 266 | help |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 267 | When enabled, threads may be created or dropped down to user mode, |
| 268 | which has significantly restricted permissions and must interact |
| 269 | with the kernel via system calls. See Zephyr documentation for more |
Dominik Ermel | 86a1252 | 2021-07-15 10:08:48 +0000 | [diff] [blame] | 270 | details about this feature. |
Andrew Boie | 9f70c7b | 2017-09-11 10:34:49 -0700 | [diff] [blame] | 271 | |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 272 | If a user thread overflows its stack, this will be caught and the |
| 273 | kernel itself will be shielded from harm. Enabling this option |
| 274 | may or may not catch stack overflows when the system is in |
| 275 | privileged mode or handling a system call; to ensure these are always |
| 276 | caught, enable CONFIG_HW_STACK_PROTECTION. |
Andrew Boie | 2a8684f | 2017-11-06 11:42:54 -0800 | [diff] [blame] | 277 | |
Chunlin Han | 18560a0 | 2018-02-01 01:19:49 -0600 | [diff] [blame] | 278 | config PRIVILEGED_STACK_SIZE |
| 279 | int "Size of privileged stack" |
Andrew Boie | 606e607 | 2019-03-28 16:48:43 -0700 | [diff] [blame] | 280 | default 1024 |
Chunlin Han | 18560a0 | 2018-02-01 01:19:49 -0600 | [diff] [blame] | 281 | depends on ARCH_HAS_USERSPACE |
| 282 | help |
Anas Nashif | 8949233 | 2018-02-15 07:36:16 -0600 | [diff] [blame] | 283 | This option sets the privileged stack region size that will be used |
| 284 | in addition to the user mode thread stack. During normal execution, |
| 285 | this region will be inaccessible from user mode. During system calls, |
Andrew Boie | 28be793 | 2020-03-11 10:56:19 -0700 | [diff] [blame] | 286 | this region will be utilized by the system call. This value must be |
| 287 | a multiple of the minimum stack alignment. |
Anas Nashif | eb29978 | 2018-10-07 11:41:18 -0400 | [diff] [blame] | 288 | |
| 289 | config KOBJECT_TEXT_AREA |
Daniel Leung | 1117169 | 2021-03-18 14:00:07 -0700 | [diff] [blame] | 290 | int "Size of kobject text area" |
Adithya Baglody | 71e90f9 | 2018-08-29 16:44:16 +0530 | [diff] [blame] | 291 | default 512 if COVERAGE_GCOV |
Sebastian Bøe | efc6d0a | 2019-03-15 10:54:06 +0100 | [diff] [blame] | 292 | default 512 if NO_OPTIMIZATIONS |
Alexandre Mergnat | 4b97619 | 2020-10-29 19:20:06 +0100 | [diff] [blame] | 293 | default 512 if STACK_CANARIES && RISCV |
Andrew Boie | 794d382 | 2019-02-20 14:49:36 -0800 | [diff] [blame] | 294 | default 256 |
Anas Nashif | eb29978 | 2018-10-07 11:41:18 -0400 | [diff] [blame] | 295 | depends on ARCH_HAS_USERSPACE |
| 296 | help |
| 297 | Size of kernel object text area. Used in linker script. |
| 298 | |
Daniel Leung | 1117169 | 2021-03-18 14:00:07 -0700 | [diff] [blame] | 299 | config KOBJECT_DATA_AREA_RESERVE_EXTRA_PERCENT |
| 300 | int "Reserve extra kobject data area (in percentage)" |
| 301 | default 100 |
| 302 | depends on ARCH_HAS_USERSPACE |
| 303 | help |
| 304 | Multiplication factor used to calculate the size of placeholder to |
| 305 | reserve space for kobject metadata hash table. The hash table is |
| 306 | generated via gperf is highly dependent on the absolute addresses of |
| 307 | kobjects which might change between prebuilts. To reserve enough |
| 308 | space for the hash table during final linking passes to keep |
| 309 | kobjects in same place, the size of reserved space is calculated |
| 310 | from the first prebuilt plus additional space calculated with |
| 311 | this percentage (of the kobject data area in first prebuilt). |
| 312 | |
| 313 | config KOBJECT_RODATA_AREA_EXTRA_BYTES |
| 314 | int "Reserve extra bytes for kobject rodata area" |
| 315 | default 16 |
| 316 | depends on ARCH_HAS_USERSPACE |
| 317 | help |
| 318 | Reserve a few more bytes for the RODATA region for kobject metadata. |
| 319 | This is to account for the uncertainty of tables generated by gperf. |
| 320 | |
Andrew Boie | 28be793 | 2020-03-11 10:56:19 -0700 | [diff] [blame] | 321 | config GEN_PRIV_STACKS |
| 322 | bool |
| 323 | help |
| 324 | Selected if the architecture requires that privilege elevation stacks |
| 325 | be allocated in a separate memory area. This is typical of arches |
| 326 | whose MPUs require regions to be power-of-two aligned/sized. |
| 327 | |
| 328 | FIXME: This should be removed and replaced with checks against |
| 329 | CONFIG_MPU_REQUIRES_POWER_OF_TWO_ALIGNMENT, but both ARM and ARC |
| 330 | changes will be necessary for this. |
| 331 | |
Andrew Boie | a967915 | 2018-03-06 13:17:57 -0800 | [diff] [blame] | 332 | config STACK_GROWS_UP |
| 333 | bool "Stack grows towards higher memory addresses" |
Andrew Boie | a967915 | 2018-03-06 13:17:57 -0800 | [diff] [blame] | 334 | help |
| 335 | Select this option if the architecture has upward growing thread |
| 336 | stacks. This is not common. |
| 337 | |
Andrew Boie | efc5fe0 | 2020-02-05 10:41:58 -0800 | [diff] [blame] | 338 | config NO_UNUSED_STACK_INSPECTION |
| 339 | bool |
| 340 | help |
| 341 | Selected if the architecture will generate a fault if unused stack |
| 342 | memory is examined, which is the region between the current stack |
| 343 | pointer and the deepest available address in the current stack |
| 344 | region. |
| 345 | |
Andrew Boie | 9f70c7b | 2017-09-11 10:34:49 -0700 | [diff] [blame] | 346 | config MAX_THREAD_BYTES |
| 347 | int "Bytes to use when tracking object thread permissions" |
| 348 | default 2 |
| 349 | depends on USERSPACE |
| 350 | help |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 351 | Every kernel object will have an associated bitfield to store |
| 352 | thread permissions for that object. This controls the size of the |
| 353 | bitfield (in bytes) and imposes a limit on how many threads can |
| 354 | be created in the system. |
Andrew Boie | 9f70c7b | 2017-09-11 10:34:49 -0700 | [diff] [blame] | 355 | |
Andrew Boie | 31bdfc0 | 2017-11-08 16:38:03 -0800 | [diff] [blame] | 356 | config DYNAMIC_OBJECTS |
Andrew Boie | 97bf001 | 2018-04-24 17:01:37 -0700 | [diff] [blame] | 357 | bool "Allow kernel objects to be allocated at runtime" |
Andrew Boie | 31bdfc0 | 2017-11-08 16:38:03 -0800 | [diff] [blame] | 358 | depends on USERSPACE |
Andrew Boie | 31bdfc0 | 2017-11-08 16:38:03 -0800 | [diff] [blame] | 359 | help |
Ulf Magnusson | 975de21 | 2019-11-01 10:24:07 +0100 | [diff] [blame] | 360 | Enabling this option allows for kernel objects to be requested from |
| 361 | the calling thread's resource pool, at a slight cost in performance |
| 362 | due to the supplemental run-time tables required to validate such |
| 363 | objects. |
Andrew Boie | 97bf001 | 2018-04-24 17:01:37 -0700 | [diff] [blame] | 364 | |
Ulf Magnusson | 975de21 | 2019-11-01 10:24:07 +0100 | [diff] [blame] | 365 | Objects allocated in this way can be freed with a supervisor-only |
| 366 | API call, or when the number of references to that object drops to |
| 367 | zero. |
Andrew Boie | 31bdfc0 | 2017-11-08 16:38:03 -0800 | [diff] [blame] | 368 | |
Aurelien Jarno | 6fd1691 | 2018-11-07 23:40:43 +0100 | [diff] [blame] | 369 | config NOCACHE_MEMORY |
| 370 | bool "Support for uncached memory" |
Ulf Magnusson | 378d6b1 | 2020-02-09 22:26:07 +0100 | [diff] [blame] | 371 | depends on ARCH_HAS_NOCACHE_MEMORY_SUPPORT |
Aurelien Jarno | 6fd1691 | 2018-11-07 23:40:43 +0100 | [diff] [blame] | 372 | help |
| 373 | Add a "nocache" read-write memory section that is configured to |
| 374 | not be cached. This memory section can be used to perform DMA |
| 375 | transfers when cache coherence issues are not optimal or can not |
| 376 | be solved using cache maintenance operations. |
| 377 | |
Anas Nashif | 8379b7b | 2017-09-09 08:39:38 -0400 | [diff] [blame] | 378 | menu "Interrupt Configuration" |
Ulf Magnusson | 4171324 | 2019-12-21 08:17:02 +0100 | [diff] [blame] | 379 | |
Andrew Boie | ff6cce6 | 2018-10-30 16:53:56 -0700 | [diff] [blame] | 380 | config DYNAMIC_INTERRUPTS |
Gerard Marull-Paretas | 95fb0de | 2022-03-09 12:05:12 +0100 | [diff] [blame] | 381 | bool "Installation of IRQs at runtime" |
Andrew Boie | ff6cce6 | 2018-10-30 16:53:56 -0700 | [diff] [blame] | 382 | help |
| 383 | Enable installation of interrupts at runtime, which will move some |
| 384 | interrupt-related data structures to RAM instead of ROM, and |
| 385 | on some architectures increase code size. |
| 386 | |
Anas Nashif | 8379b7b | 2017-09-09 08:39:38 -0400 | [diff] [blame] | 387 | config GEN_ISR_TABLES |
Ulf Magnusson | 8cf8db3 | 2018-08-14 16:19:20 +0200 | [diff] [blame] | 388 | bool "Use generated IRQ tables" |
Anas Nashif | 8379b7b | 2017-09-09 08:39:38 -0400 | [diff] [blame] | 389 | help |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 390 | This option controls whether a platform uses the gen_isr_tables |
| 391 | script to generate its interrupt tables. This mechanism will create |
| 392 | an appropriate hardware vector table and/or software IRQ table. |
Anas Nashif | 8379b7b | 2017-09-09 08:39:38 -0400 | [diff] [blame] | 393 | |
| 394 | config GEN_IRQ_VECTOR_TABLE |
Ulf Magnusson | 8cf8db3 | 2018-08-14 16:19:20 +0200 | [diff] [blame] | 395 | bool "Generate an interrupt vector table" |
Anas Nashif | 8379b7b | 2017-09-09 08:39:38 -0400 | [diff] [blame] | 396 | default y |
| 397 | depends on GEN_ISR_TABLES |
| 398 | help |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 399 | This option controls whether a platform using gen_isr_tables |
| 400 | needs an interrupt vector table created. Only disable this if the |
| 401 | platform does not use a vector table at all, or requires the vector |
| 402 | table to be in a format that is not an array of function pointers |
| 403 | indexed by IRQ line. In the latter case, the vector table must be |
| 404 | supplied by the application or architecture code. |
Anas Nashif | 8379b7b | 2017-09-09 08:39:38 -0400 | [diff] [blame] | 405 | |
| 406 | config GEN_SW_ISR_TABLE |
Ulf Magnusson | 8cf8db3 | 2018-08-14 16:19:20 +0200 | [diff] [blame] | 407 | bool "Generate a software ISR table" |
Anas Nashif | 8379b7b | 2017-09-09 08:39:38 -0400 | [diff] [blame] | 408 | default y |
| 409 | depends on GEN_ISR_TABLES |
| 410 | help |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 411 | This option controls whether a platform using gen_isr_tables |
| 412 | needs a software ISR table table created. This is an array of struct |
| 413 | _isr_table_entry containing the interrupt service routine and supplied |
| 414 | parameter. |
Anas Nashif | 8379b7b | 2017-09-09 08:39:38 -0400 | [diff] [blame] | 415 | |
Yasushi SHOJI | 51bc0a0 | 2019-06-20 18:28:37 +0900 | [diff] [blame] | 416 | config ARCH_SW_ISR_TABLE_ALIGN |
| 417 | int "Alignment size of a software ISR table" |
| 418 | default 0 |
| 419 | depends on GEN_SW_ISR_TABLE |
| 420 | help |
| 421 | This option controls alignment size of generated |
| 422 | _sw_isr_table. Some architecture needs a software ISR table |
| 423 | to be aligned to architecture specific size. The default |
| 424 | size is 0 for no alignment. |
| 425 | |
Anas Nashif | 8379b7b | 2017-09-09 08:39:38 -0400 | [diff] [blame] | 426 | config GEN_IRQ_START_VECTOR |
| 427 | int |
| 428 | default 0 |
| 429 | depends on GEN_ISR_TABLES |
| 430 | help |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 431 | On some architectures, part of the vector table may be reserved for |
| 432 | system exceptions and is declared separately from the tables |
| 433 | created by gen_isr_tables.py. When creating these tables, this value |
| 434 | will be subtracted from CONFIG_NUM_IRQS to properly size them. |
| 435 | This is a hidden option which needs to be set per architecture and |
| 436 | left alone. |
Anas Nashif | 8379b7b | 2017-09-09 08:39:38 -0400 | [diff] [blame] | 437 | |
Anas Nashif | a372eae | 2017-11-23 12:05:55 -0500 | [diff] [blame] | 438 | config IRQ_OFFLOAD |
Gerard Marull-Paretas | 95fb0de | 2022-03-09 12:05:12 +0100 | [diff] [blame] | 439 | bool "IRQ offload" |
Andrew Boie | beba1e0 | 2019-11-07 10:33:09 -0800 | [diff] [blame] | 440 | depends on TEST |
Anas Nashif | a372eae | 2017-11-23 12:05:55 -0500 | [diff] [blame] | 441 | help |
| 442 | Enable irq_offload() API which allows functions to be synchronously |
Andrew Boie | beba1e0 | 2019-11-07 10:33:09 -0800 | [diff] [blame] | 443 | run in interrupt context. Only useful for test cases that need |
| 444 | to validate the correctness of kernel objects in IRQ context. |
Anas Nashif | a372eae | 2017-11-23 12:05:55 -0500 | [diff] [blame] | 445 | |
Andy Ross | 73453a3 | 2022-02-14 14:30:34 -0800 | [diff] [blame] | 446 | config IRQ_OFFLOAD_NESTED |
| 447 | bool "irq_offload() supports nested IRQs" |
| 448 | depends on IRQ_OFFLOAD |
| 449 | help |
| 450 | When set by the arch layer, indicates that irq_offload() may |
| 451 | legally be called in interrupt context to cause a |
| 452 | synchronous nested interrupt on the current CPU. Not all |
| 453 | hardware is capable. |
Chris Coleman | 99a268f | 2020-08-28 09:02:20 -0400 | [diff] [blame] | 454 | |
| 455 | config EXTRA_EXCEPTION_INFO |
| 456 | bool "Collect extra exception info" |
| 457 | depends on ARCH_HAS_EXTRA_EXCEPTION_INFO |
| 458 | help |
| 459 | This option enables the collection of extra information, such as |
| 460 | register state, when a fault occurs. This information can be useful |
| 461 | to collect for post-mortem analysis and debug of issues. |
| 462 | |
Anas Nashif | 8379b7b | 2017-09-09 08:39:38 -0400 | [diff] [blame] | 463 | endmenu # Interrupt configuration |
| 464 | |
Ioannis Glaropoulos | 20a9848 | 2020-10-21 15:48:41 +0200 | [diff] [blame] | 465 | config INIT_ARCH_HW_AT_BOOT |
| 466 | bool "Initialize internal architecture state at boot" |
| 467 | depends on ARCH_SUPPORTS_ARCH_HW_INIT |
| 468 | help |
| 469 | This option instructs Zephyr to force the initialization |
| 470 | of the internal architectural state (for example ARCH-level |
| 471 | HW registers and system control blocks) during boot to |
| 472 | the reset values as specified by the corresponding |
| 473 | architecture manual. The option is useful when the Zephyr |
| 474 | firmware image is chain-loaded, for example, by a debugger |
| 475 | or a bootloader, and we need to guarantee that the internal |
| 476 | states of the architecture core blocks are restored to the |
| 477 | reset values (as specified by the architecture). |
| 478 | |
| 479 | Note: the functionality is architecture-specific. For the |
| 480 | implementation details refer to each architecture where |
| 481 | this feature is supported. |
| 482 | |
Anas Nashif | 46f66f4 | 2017-09-08 21:14:06 -0400 | [diff] [blame] | 483 | endmenu |
| 484 | |
Anas Nashif | 8379b7b | 2017-09-09 08:39:38 -0400 | [diff] [blame] | 485 | # |
| 486 | # Architecture Capabilities |
| 487 | # |
Ulf Magnusson | 4171324 | 2019-12-21 08:17:02 +0100 | [diff] [blame] | 488 | |
Ioannis Glaropoulos | 4084242 | 2021-05-19 17:45:25 +0200 | [diff] [blame] | 489 | config ARCH_HAS_SINGLE_THREAD_SUPPORT |
| 490 | bool |
| 491 | |
Anas Nashif | 5dec235 | 2020-08-27 23:07:01 -0400 | [diff] [blame] | 492 | config ARCH_HAS_TIMING_FUNCTIONS |
| 493 | bool |
| 494 | |
Ioannis Glaropoulos | 1cc66cf | 2018-10-12 09:27:28 +0200 | [diff] [blame] | 495 | config ARCH_HAS_TRUSTED_EXECUTION |
| 496 | bool |
| 497 | |
Anas Nashif | 46f66f4 | 2017-09-08 21:14:06 -0400 | [diff] [blame] | 498 | config ARCH_HAS_STACK_PROTECTION |
| 499 | bool |
| 500 | |
Andrew Boie | 9f70c7b | 2017-09-11 10:34:49 -0700 | [diff] [blame] | 501 | config ARCH_HAS_USERSPACE |
| 502 | bool |
| 503 | |
Leandro Pereira | b007b64 | 2017-10-17 17:01:48 -0700 | [diff] [blame] | 504 | config ARCH_HAS_EXECUTABLE_PAGE_BIT |
| 505 | bool |
| 506 | |
Aurelien Jarno | 6fd1691 | 2018-11-07 23:40:43 +0100 | [diff] [blame] | 507 | config ARCH_HAS_NOCACHE_MEMORY_SUPPORT |
| 508 | bool |
| 509 | |
Aurelien Jarno | 992f29a | 2019-02-10 11:05:51 +0100 | [diff] [blame] | 510 | config ARCH_HAS_RAMFUNC_SUPPORT |
| 511 | bool |
| 512 | |
Ioannis Glaropoulos | f030608 | 2019-10-17 19:13:12 +0200 | [diff] [blame] | 513 | config ARCH_HAS_NESTED_EXCEPTION_DETECTION |
| 514 | bool |
| 515 | |
Daniel Leung | 49206a8 | 2020-08-07 10:47:37 -0700 | [diff] [blame] | 516 | config ARCH_SUPPORTS_COREDUMP |
| 517 | bool |
| 518 | |
Ioannis Glaropoulos | 20a9848 | 2020-10-21 15:48:41 +0200 | [diff] [blame] | 519 | config ARCH_SUPPORTS_ARCH_HW_INIT |
| 520 | bool |
| 521 | |
Chris Coleman | 99a268f | 2020-08-28 09:02:20 -0400 | [diff] [blame] | 522 | config ARCH_HAS_EXTRA_EXCEPTION_INFO |
| 523 | bool |
| 524 | |
Flavio Ceolin | 5408f31 | 2020-05-21 16:55:28 -0700 | [diff] [blame] | 525 | config ARCH_HAS_GDBSTUB |
| 526 | bool |
| 527 | |
Andy Ross | f6d32ab | 2020-05-13 15:34:04 +0000 | [diff] [blame] | 528 | config ARCH_HAS_COHERENCE |
| 529 | bool |
| 530 | help |
| 531 | When selected, the architecture supports the |
| 532 | arch_mem_coherent() API and can link into incoherent/cached |
| 533 | memory using the ".cached" linker section. |
| 534 | |
Daniel Leung | 240beb4 | 2020-09-28 11:03:52 -0700 | [diff] [blame] | 535 | config ARCH_HAS_THREAD_LOCAL_STORAGE |
| 536 | bool |
| 537 | |
Ramesh Thomas | bb19e6f | 2016-03-18 16:43:40 -0700 | [diff] [blame] | 538 | # |
Anas Nashif | f4ddb62 | 2017-12-05 09:07:39 -0500 | [diff] [blame] | 539 | # Other architecture related options |
| 540 | # |
| 541 | |
| 542 | config ARCH_HAS_THREAD_ABORT |
| 543 | bool |
| 544 | |
Ulf Magnusson | 4171324 | 2019-12-21 08:17:02 +0100 | [diff] [blame] | 545 | # |
| 546 | # Hidden CPU family configs |
Anas Nashif | 9c1da0d | 2017-11-23 17:43:54 -0500 | [diff] [blame] | 547 | # |
| 548 | |
Ioannis Glaropoulos | 1cc66cf | 2018-10-12 09:27:28 +0200 | [diff] [blame] | 549 | config CPU_HAS_TEE |
| 550 | bool |
| 551 | help |
| 552 | This option is enabled when the CPU has support for Trusted |
| 553 | Execution Environment (e.g. when it has a security attribution |
| 554 | unit). |
| 555 | |
Stephanos Ioannidis | bc8524e | 2019-10-09 00:52:18 +0900 | [diff] [blame] | 556 | config CPU_HAS_DCLS |
| 557 | bool |
| 558 | help |
| 559 | This option is enabled when the processor hardware is configured in |
| 560 | Dual-redundant Core Lock-step (DCLS) topology. |
| 561 | |
Anas Nashif | 9c1da0d | 2017-11-23 17:43:54 -0500 | [diff] [blame] | 562 | config CPU_HAS_FPU |
| 563 | bool |
Anas Nashif | 9c1da0d | 2017-11-23 17:43:54 -0500 | [diff] [blame] | 564 | help |
| 565 | This option is enabled when the CPU has hardware floating point |
| 566 | unit. |
| 567 | |
Corey Wharton | c8f7cd5 | 2020-04-14 11:06:23 -0700 | [diff] [blame] | 568 | config CPU_HAS_FPU_DOUBLE_PRECISION |
| 569 | bool |
| 570 | select CPU_HAS_FPU |
| 571 | help |
| 572 | When enabled, this indicates that the CPU has a double floating point |
| 573 | precision unit. |
| 574 | |
Anas Nashif | 9c1da0d | 2017-11-23 17:43:54 -0500 | [diff] [blame] | 575 | config CPU_HAS_MPU |
| 576 | bool |
Anas Nashif | 9c1da0d | 2017-11-23 17:43:54 -0500 | [diff] [blame] | 577 | help |
| 578 | This option is enabled when the CPU has a Memory Protection Unit (MPU). |
| 579 | |
Andrew Boie | ff294e0 | 2020-06-12 16:50:16 -0700 | [diff] [blame] | 580 | config CPU_HAS_MMU |
| 581 | bool |
| 582 | help |
| 583 | This hidden option is selected when the CPU has a Memory Management Unit |
| 584 | (MMU). |
Andrew Boie | 5a58ad5 | 2020-11-05 14:30:20 -0800 | [diff] [blame] | 585 | |
Andrew Boie | 56a9e7b | 2020-11-16 11:30:35 -0800 | [diff] [blame] | 586 | config ARCH_HAS_DEMAND_PAGING |
| 587 | bool |
| 588 | help |
| 589 | This hidden configuration should be selected by the architecture if |
| 590 | demand paging is supported. |
| 591 | |
Andrew Boie | 73a3e05 | 2020-11-18 13:11:56 -0800 | [diff] [blame] | 592 | config ARCH_HAS_RESERVED_PAGE_FRAMES |
| 593 | bool |
| 594 | help |
| 595 | This hidden configuration should be selected by the architecture if |
| 596 | certain RAM page frames need to be marked as reserved and never used for |
| 597 | memory mappings. The architecture will need to implement |
| 598 | arch_reserved_pages_update(). |
| 599 | |
Andrew Boie | 14c5d1f | 2021-01-23 14:08:12 -0800 | [diff] [blame] | 600 | config ARCH_MAPS_ALL_RAM |
| 601 | bool |
| 602 | help |
| 603 | This hidden option is selected by the architecture to inform the kernel |
| 604 | that all RAM is mapped at boot, and not just the bounds of the Zephyr image. |
| 605 | If RAM starts at 0x0, the first page must remain un-mapped to catch NULL |
| 606 | pointer dereferences. With this enabled, the kernel will not assume that |
| 607 | virtual memory addresses past the kernel image are available for mappings, |
| 608 | but instead takes into account an entire RAM mapping instead. |
| 609 | |
| 610 | This is typically set by architectures which need direct access to all memory. |
| 611 | It is the architecture's responsibility to mark reserved memory regions |
| 612 | as such in arch_reserved_pages_update(). |
| 613 | |
| 614 | Although the kernel will not disturb this RAM mapping by re-mapping the associated |
| 615 | virtual addresses elsewhere, this is limited to only management of the |
| 616 | virtual address space. The kernel's page frame ontology will not consider |
| 617 | this mapping at all; non-kernel pages will be considered free (unless marked |
| 618 | as reserved) and Z_PAGE_FRAME_MAPPED will not be set. |
| 619 | |
Andrew Boie | 5a58ad5 | 2020-11-05 14:30:20 -0800 | [diff] [blame] | 620 | menuconfig MPU |
Gerard Marull-Paretas | 95fb0de | 2022-03-09 12:05:12 +0100 | [diff] [blame] | 621 | bool "MPU features" |
Andrew Boie | 5a58ad5 | 2020-11-05 14:30:20 -0800 | [diff] [blame] | 622 | depends on CPU_HAS_MPU |
Ioannis Glaropoulos | 39bf24a | 2018-11-27 15:45:36 +0100 | [diff] [blame] | 623 | help |
Andrew Boie | 5a58ad5 | 2020-11-05 14:30:20 -0800 | [diff] [blame] | 624 | This option, when enabled, indicates to the core kernel that an MPU |
| 625 | is enabled. |
Ioannis Glaropoulos | 39bf24a | 2018-11-27 15:45:36 +0100 | [diff] [blame] | 626 | |
Andrew Boie | 5a58ad5 | 2020-11-05 14:30:20 -0800 | [diff] [blame] | 627 | if MPU |
Andy Gross | e8860fe | 2018-02-01 01:12:32 -0600 | [diff] [blame] | 628 | config MPU_REQUIRES_POWER_OF_TWO_ALIGNMENT |
| 629 | bool |
Andy Gross | e8860fe | 2018-02-01 01:12:32 -0600 | [diff] [blame] | 630 | help |
Anas Nashif | 8949233 | 2018-02-15 07:36:16 -0600 | [diff] [blame] | 631 | This option is enabled when the MPU requires a power of two alignment |
| 632 | and size for MPU regions. |
Andy Gross | e8860fe | 2018-02-01 01:12:32 -0600 | [diff] [blame] | 633 | |
Ioannis Glaropoulos | afa7819 | 2018-09-25 14:05:56 +0200 | [diff] [blame] | 634 | config MPU_REQUIRES_NON_OVERLAPPING_REGIONS |
| 635 | bool |
Ioannis Glaropoulos | afa7819 | 2018-09-25 14:05:56 +0200 | [diff] [blame] | 636 | help |
| 637 | This option is enabled when the MPU requires the active (i.e. enabled) |
| 638 | MPU regions to be non-overlapping with each other. |
Andy Gross | e8860fe | 2018-02-01 01:12:32 -0600 | [diff] [blame] | 639 | |
Ioannis Glaropoulos | 6d78951 | 2019-10-24 15:17:09 +0200 | [diff] [blame] | 640 | config MPU_GAP_FILLING |
| 641 | bool "Force MPU to be filling in background memory regions" |
| 642 | depends on MPU_REQUIRES_NON_OVERLAPPING_REGIONS |
Ioannis Glaropoulos | 9820122 | 2019-11-11 12:46:31 +0100 | [diff] [blame] | 643 | default y if !USERSPACE |
Ioannis Glaropoulos | 6d78951 | 2019-10-24 15:17:09 +0200 | [diff] [blame] | 644 | help |
| 645 | This Kconfig option instructs the MPU driver to enforce |
| 646 | a full kernel SRAM partitioning, when it programs the |
| 647 | dynamic MPU regions (user thread stack, PRIV stack guard |
| 648 | and application memory domains) during context-switch. We |
| 649 | allow this to be a configurable option, in order to be able |
| 650 | to switch the option off and have an increased number of MPU |
| 651 | regions available for application memory domain programming. |
| 652 | |
| 653 | Notes: |
| 654 | An increased number of MPU regions should only be required, |
Ioannis Glaropoulos | 9820122 | 2019-11-11 12:46:31 +0100 | [diff] [blame] | 655 | when building with USERSPACE support. As a result, when we |
| 656 | build without USERSPACE support, gap filling should always |
| 657 | be required. |
Ioannis Glaropoulos | 6d78951 | 2019-10-24 15:17:09 +0200 | [diff] [blame] | 658 | |
| 659 | When the option is switched off, access to memory areas not |
| 660 | covered by explicit MPU regions is restricted to privileged |
| 661 | code on an ARCH-specific basis. Refer to ARCH-specific |
| 662 | documentation for more information on how this option is |
| 663 | used. |
| 664 | |
Andrew Boie | 5a58ad5 | 2020-11-05 14:30:20 -0800 | [diff] [blame] | 665 | endif # MPU |
| 666 | |
| 667 | config SRAM_REGION_PERMISSIONS |
| 668 | bool "Assign appropriate permissions to kernel areas in SRAM" |
| 669 | depends on MMU || MPU |
| 670 | default y |
| 671 | help |
| 672 | This option indicates that memory protection hardware |
| 673 | is present, enabled, and regions have been configured at boot for memory |
| 674 | ranges within the kernel image. |
| 675 | |
| 676 | If this option is turned on, certain areas of the kernel image will |
| 677 | have the following access policies applied for all threads, including |
| 678 | supervisor threads: |
| 679 | |
| 680 | 1) All program text will be have read-only, execute memory permission |
| 681 | 2) All read-only data will have read-only permission, and execution |
| 682 | disabled if the hardware supports it. |
| 683 | 3) All other RAM addresses will have read-write permission, and |
| 684 | execution disabled if the hardware supports it. |
| 685 | |
| 686 | Options such as USERSPACE or HW_STACK_PROTECTION may additionally |
| 687 | impose additional policies on the memory map, which may be global |
| 688 | or local to the current running thread. |
| 689 | |
| 690 | This option may consume additional memory to satisfy memory protection |
| 691 | hardware alignment constraints. |
| 692 | |
| 693 | If this option is disabled, the entire kernel will have default memory |
| 694 | access permissions set, typically read/write/execute. It may be desirable |
| 695 | to turn this off on MMU systems which are using the MMU for demand |
| 696 | paging, do not need memory protection, and would rather not use up |
| 697 | RAM for the alignment between regions. |
| 698 | |
Stephanos Ioannidis | 4f4e85c | 2020-04-24 14:06:37 +0900 | [diff] [blame] | 699 | menu "Floating Point Options" |
| 700 | |
| 701 | config FPU |
Gerard Marull-Paretas | 95fb0de | 2022-03-09 12:05:12 +0100 | [diff] [blame] | 702 | bool "Floating point unit (FPU)" |
Sebastian Bøe | 7201a1b | 2018-12-27 16:13:25 +0100 | [diff] [blame] | 703 | depends on CPU_HAS_FPU |
Anas Nashif | 9c1da0d | 2017-11-23 17:43:54 -0500 | [diff] [blame] | 704 | help |
Stephanos Ioannidis | 4f4e85c | 2020-04-24 14:06:37 +0900 | [diff] [blame] | 705 | This option enables the hardware Floating Point Unit (FPU), in order to |
| 706 | support using the floating point registers and instructions. |
Anas Nashif | 9c1da0d | 2017-11-23 17:43:54 -0500 | [diff] [blame] | 707 | |
Stephanos Ioannidis | 4f4e85c | 2020-04-24 14:06:37 +0900 | [diff] [blame] | 708 | When this option is enabled, by default, threads may use the floating |
| 709 | point registers only in an exclusive manner, and this usually means that |
| 710 | only one thread may perform floating point operations. |
| 711 | |
| 712 | If it is necessary for multiple threads to perform concurrent floating |
| 713 | point operations, the "FPU register sharing" option must be enabled to |
| 714 | preserve the floating point registers across context switches. |
| 715 | |
| 716 | Note that this option cannot be selected for the platforms that do not |
| 717 | include a hardware floating point unit; the floating point support for |
| 718 | those platforms is dependent on the availability of the toolchain- |
| 719 | provided software floating point library. |
Anas Nashif | 9c1da0d | 2017-11-23 17:43:54 -0500 | [diff] [blame] | 720 | |
Stephanos Ioannidis | aaf9320 | 2020-05-03 18:03:19 +0900 | [diff] [blame] | 721 | config FPU_SHARING |
Stephanos Ioannidis | 4f4e85c | 2020-04-24 14:06:37 +0900 | [diff] [blame] | 722 | bool "FPU register sharing" |
Ioannis Glaropoulos | 86c1b57 | 2021-01-27 14:24:59 +0100 | [diff] [blame] | 723 | depends on FPU && MULTITHREADING |
Anas Nashif | 9c1da0d | 2017-11-23 17:43:54 -0500 | [diff] [blame] | 724 | help |
Stephanos Ioannidis | 4f4e85c | 2020-04-24 14:06:37 +0900 | [diff] [blame] | 725 | This option enables preservation of the hardware floating point registers |
| 726 | across context switches to allow multiple threads to perform concurrent |
| 727 | floating point operations. |
| 728 | |
Nicolas Pitre | 949ef7c | 2021-04-07 21:41:06 -0400 | [diff] [blame] | 729 | Note that some compiler configurations may activate a floating point |
| 730 | context by generating FP instructions for any thread, and that |
| 731 | context must be preserved when switching such threads in and out. |
| 732 | The developers can still disable the FP sharing mode in their |
| 733 | application projects, and switch to Unshared FP registers mode, |
| 734 | if it is guaranteed that the image code does not generate FP |
| 735 | instructions outside the single thread context that is allowed |
| 736 | to do so. |
Ioannis Glaropoulos | 86c1b57 | 2021-01-27 14:24:59 +0100 | [diff] [blame] | 737 | |
Stephanos Ioannidis | 4f4e85c | 2020-04-24 14:06:37 +0900 | [diff] [blame] | 738 | endmenu |
Anas Nashif | 9c1da0d | 2017-11-23 17:43:54 -0500 | [diff] [blame] | 739 | |
Carlo Caione | 923b3be | 2020-12-02 13:05:37 +0100 | [diff] [blame] | 740 | menu "Cache Options" |
| 741 | |
Carlo Caione | 20f59c8 | 2020-12-03 10:49:00 +0100 | [diff] [blame] | 742 | config CACHE_MANAGEMENT |
Gerard Marull-Paretas | 95fb0de | 2022-03-09 12:05:12 +0100 | [diff] [blame] | 743 | bool "Cache management features" |
Carlo Caione | 923b3be | 2020-12-02 13:05:37 +0100 | [diff] [blame] | 744 | help |
Carlo Caione | 20f59c8 | 2020-12-03 10:49:00 +0100 | [diff] [blame] | 745 | This links in the cache management functions (for d-cache and i-cache |
| 746 | where possible). |
Carlo Caione | 923b3be | 2020-12-02 13:05:37 +0100 | [diff] [blame] | 747 | |
Carlo Caione | e77c841 | 2020-12-02 12:38:58 +0100 | [diff] [blame] | 748 | config DCACHE_LINE_SIZE_DETECT |
| 749 | bool "Detect d-cache line size at runtime" |
| 750 | depends on CACHE_MANAGEMENT |
| 751 | help |
| 752 | This option enables querying some architecture-specific hardware for |
| 753 | finding the d-cache line size at the expense of taking more memory and |
| 754 | code and a slightly increased boot time. |
| 755 | |
| 756 | If the CPU's d-cache line size is known in advance, disable this option and |
| 757 | manually enter the value for DCACHE_LINE_SIZE or set it in the DT |
| 758 | using the 'd-cache-line-size' property. |
| 759 | |
| 760 | config DCACHE_LINE_SIZE |
| 761 | int "d-cache line size" if !DCACHE_LINE_SIZE_DETECT |
| 762 | depends on CACHE_MANAGEMENT |
| 763 | default 0 |
| 764 | help |
| 765 | Size in bytes of a CPU d-cache line. If this is set to 0 the value is |
| 766 | obtained from the 'd-cache-line-size' DT property instead if present. |
| 767 | |
| 768 | |
| 769 | Detect automatically at runtime by selecting DCACHE_LINE_SIZE_DETECT. |
| 770 | |
| 771 | config ICACHE_LINE_SIZE_DETECT |
| 772 | bool "Detect i-cache line size at runtime" |
| 773 | depends on CACHE_MANAGEMENT |
| 774 | help |
| 775 | This option enables querying some architecture-specific hardware for |
| 776 | finding the i-cache line size at the expense of taking more memory and |
| 777 | code and a slightly increased boot time. |
| 778 | |
| 779 | If the CPU's i-cache line size is known in advance, disable this option and |
| 780 | manually enter the value for ICACHE_LINE_SIZE or set it in the DT |
| 781 | using the 'i-cache-line-size' property. |
| 782 | |
| 783 | config ICACHE_LINE_SIZE |
| 784 | int "i-cache line size" if !ICACHE_LINE_SIZE_DETECT |
| 785 | depends on CACHE_MANAGEMENT |
| 786 | default 0 |
| 787 | help |
| 788 | Size in bytes of a CPU i-cache line. If this is set to 0 the value is |
| 789 | obtained from the 'i-cache-line-size' DT property instead if present. |
| 790 | |
| 791 | Detect automatically at runtime by selecting ICACHE_LINE_SIZE_DETECT. |
| 792 | |
Dylan Hung | b61ea62 | 2021-07-13 15:20:47 +0800 | [diff] [blame] | 793 | choice CACHE_TYPE |
Carlo Caione | e233326 | 2021-04-28 10:38:27 +0200 | [diff] [blame] | 794 | prompt "Cache type" |
| 795 | depends on CACHE_MANAGEMENT |
| 796 | default HAS_ARCH_CACHE |
| 797 | |
| 798 | config HAS_ARCH_CACHE |
| 799 | bool "Integrated cache controller" |
| 800 | help |
Nazar Kazakov | f483b1b | 2022-03-16 21:07:43 +0000 | [diff] [blame] | 801 | "Integrated on-core cache controller" |
Carlo Caione | e233326 | 2021-04-28 10:38:27 +0200 | [diff] [blame] | 802 | |
| 803 | config HAS_EXTERNAL_CACHE |
| 804 | bool "External cache controller" |
| 805 | help |
| 806 | "External cache controller or cache management system" |
| 807 | |
| 808 | endchoice |
| 809 | |
Carlo Caione | 923b3be | 2020-12-02 13:05:37 +0100 | [diff] [blame] | 810 | endmenu |
| 811 | |
Anas Nashif | 77ba3c3 | 2015-10-09 06:20:52 -0400 | [diff] [blame] | 812 | config ARCH |
| 813 | string |
| 814 | help |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 815 | System architecture string. |
Anas Nashif | 77ba3c3 | 2015-10-09 06:20:52 -0400 | [diff] [blame] | 816 | |
| 817 | config SOC |
Anas Nashif | a02c34e | 2016-03-31 08:07:42 -0400 | [diff] [blame] | 818 | string |
| 819 | help |
Anas Nashif | 5744437 | 2018-09-03 15:44:13 -0500 | [diff] [blame] | 820 | SoC name which can be found under soc/<arch>/<soc name>. |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 821 | This option holds the directory name used by the build system to locate |
Marti Bolivar | 5ec7ed8 | 2018-11-21 14:42:47 -0500 | [diff] [blame] | 822 | the correct linker and header files for the SoC. |
Anas Nashif | a02c34e | 2016-03-31 08:07:42 -0400 | [diff] [blame] | 823 | |
| 824 | config SOC_SERIES |
| 825 | string |
| 826 | help |
Anas Nashif | 5744437 | 2018-09-03 15:44:13 -0500 | [diff] [blame] | 827 | SoC series name which can be found under soc/<arch>/<family>/<series>. |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 828 | This option holds the directory name used by the build system to locate |
| 829 | the correct linker and header files. |
Anas Nashif | a02c34e | 2016-03-31 08:07:42 -0400 | [diff] [blame] | 830 | |
| 831 | config SOC_FAMILY |
| 832 | string |
| 833 | help |
Anas Nashif | 5744437 | 2018-09-03 15:44:13 -0500 | [diff] [blame] | 834 | SoC family name which can be found under soc/<arch>/<family>. |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 835 | This option holds the directory name used by the build system to locate |
| 836 | the correct linker and header files. |
Anas Nashif | 6623311 | 2015-11-29 19:47:21 -0500 | [diff] [blame] | 837 | |
Anas Nashif | 2d76224 | 2015-12-07 20:20:25 -0500 | [diff] [blame] | 838 | config BOARD |
| 839 | string |
| 840 | help |
Anas Nashif | 429c2a4 | 2017-12-13 10:08:21 -0500 | [diff] [blame] | 841 | This option holds the name of the board and is used to locate the files |
| 842 | related to the board in the source tree (under boards/). |
| 843 | The Board is the first location where we search for a linker.ld file, |
| 844 | if not found we look for the linker file in |
Anas Nashif | 5744437 | 2018-09-03 15:44:13 -0500 | [diff] [blame] | 845 | soc/<arch>/<family>/<series> |
Daniel Leung | 783b207 | 2021-04-23 20:52:38 -0700 | [diff] [blame] | 846 | |
| 847 | config TOOLCHAIN_HAS_BUILTIN_FFS |
| 848 | bool |
| 849 | default y if !(64BIT && RISCV) |
| 850 | help |
| 851 | Hidden option to signal that toolchain has __builtin_ffs*(). |