Thomas Gleixner | ec8f24b | 2019-05-19 13:07:45 +0100 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0-only |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 2 | # |
| 3 | # For a description of the syntax of this configuration file, |
Mauro Carvalho Chehab | cd238ef | 2019-06-12 14:52:48 -0300 | [diff] [blame] | 4 | # see Documentation/kbuild/kconfig-language.rst. |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 5 | # |
| 6 | |
Christoph Hellwig | c3e4ed0 | 2018-04-27 08:38:23 +0200 | [diff] [blame] | 7 | config 64BIT |
| 8 | bool |
| 9 | |
| 10 | config 32BIT |
| 11 | bool |
| 12 | |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 13 | config RISCV |
| 14 | def_bool y |
Christoph Hellwig | d4a451d | 2018-04-03 16:24:20 +0200 | [diff] [blame] | 15 | # even on 32-bit, physical (and DMA) addresses are > 32-bits |
| 16 | select PHYS_ADDR_T_64BIT |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 17 | select OF |
| 18 | select OF_EARLY_FLATTREE |
| 19 | select OF_IRQ |
Christoph Hellwig | ad97f9d | 2019-06-13 09:09:03 +0200 | [diff] [blame] | 20 | select ARCH_HAS_BINFMT_FLAT |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 21 | select ARCH_WANT_FRAME_POINTERS |
| 22 | select CLONE_BACKWARDS |
| 23 | select COMMON_CLK |
| 24 | select GENERIC_CLOCKEVENTS |
| 25 | select GENERIC_CPU_DEVICES |
| 26 | select GENERIC_IRQ_SHOW |
| 27 | select GENERIC_PCI_IOMAP |
Anup Patel | 9b9afe4 | 2018-12-04 15:59:51 +0530 | [diff] [blame] | 28 | select GENERIC_SCHED_CLOCK |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 29 | select GENERIC_STRNCPY_FROM_USER |
| 30 | select GENERIC_STRNLEN_USER |
| 31 | select GENERIC_SMP_IDLE_THREAD |
Christoph Hellwig | 09afac7 | 2019-04-15 11:14:35 +0200 | [diff] [blame] | 32 | select GENERIC_ATOMIC64 if !64BIT |
David Abdurachmanov | efe75c4 | 2018-10-29 11:48:53 +0100 | [diff] [blame] | 33 | select HAVE_ARCH_AUDITSYSCALL |
Masahiro Yamada | 2ff2b7e | 2019-08-19 14:54:20 +0900 | [diff] [blame] | 34 | select HAVE_ASM_MODVERSIONS |
Christoph Hellwig | 5ec9c4f | 2018-01-16 09:37:50 +0100 | [diff] [blame] | 35 | select HAVE_MEMBLOCK_NODE_MAP |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 36 | select HAVE_DMA_CONTIGUOUS |
Jim Wilson | b90edb3 | 2018-10-16 14:42:59 -0700 | [diff] [blame] | 37 | select HAVE_FUTEX_CMPXCHG if FUTEX |
Alan Kao | 178e9fc | 2018-04-20 07:27:49 +0800 | [diff] [blame] | 38 | select HAVE_PERF_EVENTS |
Mao Han | 98a93b0 | 2019-09-05 11:46:35 +0800 | [diff] [blame] | 39 | select HAVE_PERF_REGS |
| 40 | select HAVE_PERF_USER_STACK_DUMP |
David Abdurachmanov | 5aeb1b3 | 2018-12-06 16:26:35 +0100 | [diff] [blame] | 41 | select HAVE_SYSCALL_TRACEPOINTS |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 42 | select IRQ_DOMAIN |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 43 | select SPARSE_IRQ |
| 44 | select SYSCTL_EXCEPTION_TRACE |
| 45 | select HAVE_ARCH_TRACEHOOK |
Christoph Hellwig | eb01d42 | 2018-11-15 20:05:32 +0100 | [diff] [blame] | 46 | select HAVE_PCI |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 47 | select MODULES_USE_ELF_RELA if MODULES |
Zong Li | 2cffc95 | 2018-12-07 17:02:16 +0800 | [diff] [blame] | 48 | select MODULE_SECTIONS if MODULES |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 49 | select THREAD_INFO_IN_TASK |
Christoph Hellwig | 2eac9c2 | 2018-11-15 20:05:33 +0100 | [diff] [blame] | 50 | select PCI_DOMAINS_GENERIC if PCI |
Christoph Hellwig | eb01d42 | 2018-11-15 20:05:32 +0100 | [diff] [blame] | 51 | select PCI_MSI if PCI |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 52 | select RISCV_TIMER |
Palmer Dabbelt | cc6c984 | 2018-03-07 15:57:28 -0800 | [diff] [blame] | 53 | select GENERIC_IRQ_MULTI_HANDLER |
Atish Patra | 03f11f0 | 2019-06-27 12:53:00 -0700 | [diff] [blame] | 54 | select GENERIC_ARCH_TOPOLOGY if SMP |
Laurent Dufour | 3010a5e | 2018-06-07 17:06:08 -0700 | [diff] [blame] | 55 | select ARCH_HAS_PTE_SPECIAL |
Will Deacon | b012980 | 2019-02-22 14:45:42 +0000 | [diff] [blame] | 56 | select ARCH_HAS_MMIOWB |
Björn Töpel | 2353ecc | 2019-02-05 13:41:22 +0100 | [diff] [blame] | 57 | select HAVE_EBPF_JIT if 64BIT |
Yash Shah | 91abaea | 2019-05-06 16:57:06 +0530 | [diff] [blame] | 58 | select EDAC_SUPPORT |
Alexandre Ghiti | 9e953cd | 2019-05-26 08:50:38 -0400 | [diff] [blame] | 59 | select ARCH_HAS_GIGANTIC_PAGE |
| 60 | select ARCH_WANT_HUGE_PMD_SHARE if 64BIT |
Logan Gunthorpe | d95f1a5 | 2019-08-28 15:40:54 -0600 | [diff] [blame] | 61 | select SPARSEMEM_STATIC if 32BIT |
Alexandre Ghiti | 54c95a1 | 2019-09-23 15:39:21 -0700 | [diff] [blame] | 62 | select ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT if MMU |
| 63 | select HAVE_ARCH_MMAP_RND_BITS |
| 64 | |
| 65 | config ARCH_MMAP_RND_BITS_MIN |
| 66 | default 18 if 64BIT |
| 67 | default 8 |
| 68 | |
| 69 | # max bits determined by the following formula: |
| 70 | # VA_BITS - PAGE_SHIFT - 3 |
| 71 | config ARCH_MMAP_RND_BITS_MAX |
| 72 | default 24 if 64BIT # SV39 based |
| 73 | default 17 |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 74 | |
Christoph Hellwig | a4c3733 | 2019-10-28 13:10:32 +0100 | [diff] [blame^] | 75 | # set if we run in machine mode, cleared if we run in supervisor mode |
| 76 | config RISCV_M_MODE |
| 77 | bool |
| 78 | |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 79 | config MMU |
| 80 | def_bool y |
| 81 | |
Christoph Hellwig | 5ec9c4f | 2018-01-16 09:37:50 +0100 | [diff] [blame] | 82 | config ZONE_DMA32 |
| 83 | bool |
Christoph Hellwig | f1306f0 | 2018-04-27 08:41:09 +0200 | [diff] [blame] | 84 | default y if 64BIT |
Christoph Hellwig | 5ec9c4f | 2018-01-16 09:37:50 +0100 | [diff] [blame] | 85 | |
Logan Gunthorpe | d95f1a5 | 2019-08-28 15:40:54 -0600 | [diff] [blame] | 86 | config VA_BITS |
| 87 | int |
| 88 | default 32 if 32BIT |
| 89 | default 39 if 64BIT |
| 90 | |
| 91 | config PA_BITS |
| 92 | int |
| 93 | default 34 if 32BIT |
| 94 | default 56 if 64BIT |
| 95 | |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 96 | config PAGE_OFFSET |
| 97 | hex |
| 98 | default 0xC0000000 if 32BIT && MAXPHYSMEM_2GB |
| 99 | default 0xffffffff80000000 if 64BIT && MAXPHYSMEM_2GB |
| 100 | default 0xffffffe000000000 if 64BIT && MAXPHYSMEM_128GB |
| 101 | |
Logan Gunthorpe | d95f1a5 | 2019-08-28 15:40:54 -0600 | [diff] [blame] | 102 | config ARCH_FLATMEM_ENABLE |
| 103 | def_bool y |
| 104 | |
| 105 | config ARCH_SPARSEMEM_ENABLE |
| 106 | def_bool y |
| 107 | select SPARSEMEM_VMEMMAP_ENABLE |
| 108 | |
| 109 | config ARCH_SELECT_MEMORY_MODEL |
| 110 | def_bool ARCH_SPARSEMEM_ENABLE |
| 111 | |
Alexandre Ghiti | 9e953cd | 2019-05-26 08:50:38 -0400 | [diff] [blame] | 112 | config ARCH_WANT_GENERAL_HUGETLB |
| 113 | def_bool y |
| 114 | |
| 115 | config SYS_SUPPORTS_HUGETLBFS |
| 116 | def_bool y |
| 117 | |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 118 | config STACKTRACE_SUPPORT |
| 119 | def_bool y |
| 120 | |
Alan Kao | 10626c3 | 2017-12-18 17:52:48 +0800 | [diff] [blame] | 121 | config TRACE_IRQFLAGS_SUPPORT |
| 122 | def_bool y |
| 123 | |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 124 | config GENERIC_BUG |
| 125 | def_bool y |
| 126 | depends on BUG |
| 127 | select GENERIC_BUG_RELATIVE_POINTERS if 64BIT |
| 128 | |
| 129 | config GENERIC_BUG_RELATIVE_POINTERS |
| 130 | bool |
| 131 | |
| 132 | config GENERIC_CALIBRATE_DELAY |
| 133 | def_bool y |
| 134 | |
| 135 | config GENERIC_CSUM |
| 136 | def_bool y |
| 137 | |
| 138 | config GENERIC_HWEIGHT |
| 139 | def_bool y |
| 140 | |
Anup Patel | f2c17aa | 2019-01-07 20:57:01 +0530 | [diff] [blame] | 141 | config FIX_EARLYCON_MEM |
| 142 | def_bool y |
| 143 | |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 144 | config PGTABLE_LEVELS |
| 145 | int |
| 146 | default 3 if 64BIT |
| 147 | default 2 |
| 148 | |
Loys Ollivier | 0cbb8a3 | 2019-06-17 21:29:48 +0200 | [diff] [blame] | 149 | source "arch/riscv/Kconfig.socs" |
| 150 | |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 151 | menu "Platform type" |
| 152 | |
| 153 | choice |
| 154 | prompt "Base ISA" |
| 155 | default ARCH_RV64I |
| 156 | help |
Antony Pavlov | 86cca81 | 2019-01-08 22:45:57 +0300 | [diff] [blame] | 157 | This selects the base ISA that this kernel will target and must match |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 158 | the target platform. |
| 159 | |
| 160 | config ARCH_RV32I |
| 161 | bool "RV32I" |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 162 | select 32BIT |
Matt Redfearn | e3d5980 | 2018-04-11 08:50:17 +0100 | [diff] [blame] | 163 | select GENERIC_LIB_ASHLDI3 |
| 164 | select GENERIC_LIB_ASHRDI3 |
| 165 | select GENERIC_LIB_LSHRDI3 |
Zong Li | 8f79125 | 2018-06-25 16:49:38 +0800 | [diff] [blame] | 166 | select GENERIC_LIB_UCMPDI2 |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 167 | |
| 168 | config ARCH_RV64I |
| 169 | bool "RV64I" |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 170 | select 64BIT |
Masahiro Yamada | ee59288 | 2018-08-24 17:33:53 +0900 | [diff] [blame] | 171 | select ARCH_SUPPORTS_INT128 if GCC_VERSION >= 50000 |
Alan Kao | 10626c3 | 2017-12-18 17:52:48 +0800 | [diff] [blame] | 172 | select HAVE_FUNCTION_TRACER |
| 173 | select HAVE_FUNCTION_GRAPH_TRACER |
Alan Kao | a1d2a6b | 2018-02-13 13:13:16 +0800 | [diff] [blame] | 174 | select HAVE_FTRACE_MCOUNT_RECORD |
Alan Kao | c15ac4f | 2018-02-13 13:13:17 +0800 | [diff] [blame] | 175 | select HAVE_DYNAMIC_FTRACE |
Alan Kao | aea4c67 | 2018-02-13 13:13:20 +0800 | [diff] [blame] | 176 | select HAVE_DYNAMIC_FTRACE_WITH_REGS |
Christoph Hellwig | 10314e0 | 2018-04-27 08:43:14 +0200 | [diff] [blame] | 177 | select SWIOTLB |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 178 | |
| 179 | endchoice |
| 180 | |
| 181 | # We must be able to map all physical memory into the kernel, but the compiler |
| 182 | # is still a bit more efficient when generating code if it's setup in a manner |
| 183 | # such that it can only map 2GiB of memory. |
| 184 | choice |
| 185 | prompt "Kernel Code Model" |
| 186 | default CMODEL_MEDLOW if 32BIT |
| 187 | default CMODEL_MEDANY if 64BIT |
| 188 | |
| 189 | config CMODEL_MEDLOW |
| 190 | bool "medium low code model" |
| 191 | config CMODEL_MEDANY |
| 192 | bool "medium any code model" |
| 193 | endchoice |
| 194 | |
Zong Li | ab1ef68 | 2018-03-15 16:50:41 +0800 | [diff] [blame] | 195 | config MODULE_SECTIONS |
| 196 | bool |
| 197 | select HAVE_MOD_ARCH_SPECIFIC |
| 198 | |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 199 | choice |
| 200 | prompt "Maximum Physical Memory" |
| 201 | default MAXPHYSMEM_2GB if 32BIT |
| 202 | default MAXPHYSMEM_2GB if 64BIT && CMODEL_MEDLOW |
| 203 | default MAXPHYSMEM_128GB if 64BIT && CMODEL_MEDANY |
| 204 | |
| 205 | config MAXPHYSMEM_2GB |
| 206 | bool "2GiB" |
| 207 | config MAXPHYSMEM_128GB |
| 208 | depends on 64BIT && CMODEL_MEDANY |
| 209 | bool "128GiB" |
| 210 | endchoice |
| 211 | |
| 212 | |
| 213 | config SMP |
| 214 | bool "Symmetric Multi-Processing" |
| 215 | help |
| 216 | This enables support for systems with more than one CPU. If |
| 217 | you say N here, the kernel will run on single and |
| 218 | multiprocessor machines, but will use only one CPU of a |
| 219 | multiprocessor machine. If you say Y here, the kernel will run |
| 220 | on many, but not all, single processor machines. On a single |
| 221 | processor machine, the kernel will run faster if you say N |
| 222 | here. |
| 223 | |
| 224 | If you don't know what to do here, say N. |
| 225 | |
| 226 | config NR_CPUS |
| 227 | int "Maximum number of CPUs (2-32)" |
| 228 | range 2 32 |
| 229 | depends on SMP |
| 230 | default "8" |
| 231 | |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 232 | choice |
| 233 | prompt "CPU Tuning" |
| 234 | default TUNE_GENERIC |
| 235 | |
| 236 | config TUNE_GENERIC |
| 237 | bool "generic" |
| 238 | |
| 239 | endchoice |
| 240 | |
| 241 | config RISCV_ISA_C |
| 242 | bool "Emit compressed instructions when building Linux" |
| 243 | default y |
| 244 | help |
| 245 | Adds "C" to the ISA subsets that the toolchain is allowed to emit |
| 246 | when building Linux, which results in compressed instructions in the |
| 247 | Linux binary. |
| 248 | |
| 249 | If you don't know what to do here, say Y. |
| 250 | |
Alan Kao | 178e9fc | 2018-04-20 07:27:49 +0800 | [diff] [blame] | 251 | menu "supported PMU type" |
| 252 | depends on PERF_EVENTS |
| 253 | |
| 254 | config RISCV_BASE_PMU |
| 255 | bool "Base Performance Monitoring Unit" |
| 256 | def_bool y |
| 257 | help |
| 258 | A base PMU that serves as a reference implementation and has limited |
| 259 | feature of perf. It can run on any RISC-V machines so serves as the |
| 260 | fallback, but this option can also be disable to reduce kernel size. |
| 261 | |
| 262 | endmenu |
| 263 | |
Alan Kao | 9671f70 | 2018-10-09 10:18:33 +0800 | [diff] [blame] | 264 | config FPU |
| 265 | bool "FPU support" |
| 266 | default y |
| 267 | help |
| 268 | Say N here if you want to disable all floating-point related procedure |
| 269 | in the kernel. |
| 270 | |
| 271 | If you don't know what to do here, say Y. |
| 272 | |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 273 | endmenu |
| 274 | |
Nick Kossifidis | aef53f9 | 2018-09-20 01:48:15 +0300 | [diff] [blame] | 275 | menu "Kernel features" |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 276 | |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 277 | source "kernel/Kconfig.hz" |
| 278 | |
| 279 | endmenu |
| 280 | |
Nick Kossifidis | aef53f9 | 2018-09-20 01:48:15 +0300 | [diff] [blame] | 281 | menu "Boot options" |
| 282 | |
Nick Kossifidis | aef53f9 | 2018-09-20 01:48:15 +0300 | [diff] [blame] | 283 | config CMDLINE |
Nick Kossifidis | 3aed8c4 | 2018-11-18 02:06:56 +0200 | [diff] [blame] | 284 | string "Built-in kernel command line" |
Nick Kossifidis | aef53f9 | 2018-09-20 01:48:15 +0300 | [diff] [blame] | 285 | help |
Nick Kossifidis | 3aed8c4 | 2018-11-18 02:06:56 +0200 | [diff] [blame] | 286 | For most platforms, the arguments for the kernel's command line |
| 287 | are provided at run-time, during boot. However, there are cases |
| 288 | where either no arguments are being provided or the provided |
| 289 | arguments are insufficient or even invalid. |
| 290 | |
| 291 | When that occurs, it is possible to define a built-in command |
| 292 | line here and choose how the kernel should use it later on. |
| 293 | |
| 294 | choice |
| 295 | prompt "Built-in command line usage" if CMDLINE != "" |
| 296 | default CMDLINE_FALLBACK |
| 297 | help |
| 298 | Choose how the kernel will handle the provided built-in command |
| 299 | line. |
| 300 | |
| 301 | config CMDLINE_FALLBACK |
| 302 | bool "Use bootloader kernel arguments if available" |
| 303 | help |
| 304 | Use the built-in command line as fallback in case we get nothing |
| 305 | during boot. This is the default behaviour. |
| 306 | |
| 307 | config CMDLINE_EXTEND |
| 308 | bool "Extend bootloader kernel arguments" |
| 309 | help |
| 310 | The command-line arguments provided during boot will be |
| 311 | appended to the built-in command line. This is useful in |
| 312 | cases where the provided arguments are insufficient and |
| 313 | you don't want to or cannot modify them. |
| 314 | |
Nick Kossifidis | aef53f9 | 2018-09-20 01:48:15 +0300 | [diff] [blame] | 315 | |
| 316 | config CMDLINE_FORCE |
Nick Kossifidis | 3aed8c4 | 2018-11-18 02:06:56 +0200 | [diff] [blame] | 317 | bool "Always use the default kernel command string" |
Nick Kossifidis | aef53f9 | 2018-09-20 01:48:15 +0300 | [diff] [blame] | 318 | help |
Nick Kossifidis | 3aed8c4 | 2018-11-18 02:06:56 +0200 | [diff] [blame] | 319 | Always use the built-in command line, even if we get one during |
| 320 | boot. This is useful in case you need to override the provided |
| 321 | command line on systems where you don't have or want control |
| 322 | over it. |
Nick Kossifidis | aef53f9 | 2018-09-20 01:48:15 +0300 | [diff] [blame] | 323 | |
Nick Kossifidis | 3aed8c4 | 2018-11-18 02:06:56 +0200 | [diff] [blame] | 324 | endchoice |
Nick Kossifidis | aef53f9 | 2018-09-20 01:48:15 +0300 | [diff] [blame] | 325 | |
| 326 | endmenu |
| 327 | |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 328 | menu "Power management options" |
| 329 | |
Masahiro Yamada | 8636a1f | 2018-12-11 20:01:04 +0900 | [diff] [blame] | 330 | source "kernel/power/Kconfig" |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 331 | |
| 332 | endmenu |