Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 1 | # |
| 2 | # For a description of the syntax of this configuration file, |
| 3 | # see Documentation/kbuild/kconfig-language.txt. |
| 4 | # |
| 5 | |
Christoph Hellwig | c3e4ed0 | 2018-04-27 08:38:23 +0200 | [diff] [blame] | 6 | config 64BIT |
| 7 | bool |
| 8 | |
| 9 | config 32BIT |
| 10 | bool |
| 11 | |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 12 | config RISCV |
| 13 | def_bool y |
Christoph Hellwig | d4a451d | 2018-04-03 16:24:20 +0200 | [diff] [blame] | 14 | # even on 32-bit, physical (and DMA) addresses are > 32-bits |
| 15 | select PHYS_ADDR_T_64BIT |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 16 | select OF |
| 17 | select OF_EARLY_FLATTREE |
| 18 | select OF_IRQ |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 19 | select ARCH_WANT_FRAME_POINTERS |
| 20 | select CLONE_BACKWARDS |
| 21 | select COMMON_CLK |
Christoph Hellwig | 86e1175 | 2018-04-16 14:53:51 +0200 | [diff] [blame] | 22 | select DMA_DIRECT_OPS |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 23 | select GENERIC_CLOCKEVENTS |
| 24 | select GENERIC_CPU_DEVICES |
| 25 | select GENERIC_IRQ_SHOW |
| 26 | select GENERIC_PCI_IOMAP |
| 27 | select GENERIC_STRNCPY_FROM_USER |
| 28 | select GENERIC_STRNLEN_USER |
| 29 | select GENERIC_SMP_IDLE_THREAD |
| 30 | select GENERIC_ATOMIC64 if !64BIT || !RISCV_ISA_A |
Christoph Hellwig | 5ec9c4f | 2018-01-16 09:37:50 +0100 | [diff] [blame] | 31 | select HAVE_MEMBLOCK_NODE_MAP |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 32 | select HAVE_DMA_CONTIGUOUS |
Jim Wilson | b90edb3 | 2018-10-16 14:42:59 -0700 | [diff] [blame] | 33 | select HAVE_FUTEX_CMPXCHG if FUTEX |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 34 | select HAVE_GENERIC_DMA_COHERENT |
Alan Kao | 178e9fc | 2018-04-20 07:27:49 +0800 | [diff] [blame] | 35 | select HAVE_PERF_EVENTS |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 36 | select IRQ_DOMAIN |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 37 | select RISCV_ISA_A if SMP |
| 38 | select SPARSE_IRQ |
| 39 | select SYSCTL_EXCEPTION_TRACE |
| 40 | select HAVE_ARCH_TRACEHOOK |
Christoph Hellwig | eb01d42 | 2018-11-15 20:05:32 +0100 | [diff] [blame^] | 41 | select HAVE_PCI |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 42 | select MODULES_USE_ELF_RELA if MODULES |
| 43 | select THREAD_INFO_IN_TASK |
Christoph Hellwig | eb01d42 | 2018-11-15 20:05:32 +0100 | [diff] [blame^] | 44 | select PCI_MSI if PCI |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 45 | select RISCV_TIMER |
Palmer Dabbelt | cc6c984 | 2018-03-07 15:57:28 -0800 | [diff] [blame] | 46 | select GENERIC_IRQ_MULTI_HANDLER |
Laurent Dufour | 3010a5e | 2018-06-07 17:06:08 -0700 | [diff] [blame] | 47 | select ARCH_HAS_PTE_SPECIAL |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 48 | |
| 49 | config MMU |
| 50 | def_bool y |
| 51 | |
Christoph Hellwig | 5ec9c4f | 2018-01-16 09:37:50 +0100 | [diff] [blame] | 52 | config ZONE_DMA32 |
| 53 | bool |
Christoph Hellwig | f1306f0 | 2018-04-27 08:41:09 +0200 | [diff] [blame] | 54 | default y if 64BIT |
Christoph Hellwig | 5ec9c4f | 2018-01-16 09:37:50 +0100 | [diff] [blame] | 55 | |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 56 | config PAGE_OFFSET |
| 57 | hex |
| 58 | default 0xC0000000 if 32BIT && MAXPHYSMEM_2GB |
| 59 | default 0xffffffff80000000 if 64BIT && MAXPHYSMEM_2GB |
| 60 | default 0xffffffe000000000 if 64BIT && MAXPHYSMEM_128GB |
| 61 | |
| 62 | config STACKTRACE_SUPPORT |
| 63 | def_bool y |
| 64 | |
Alan Kao | 10626c3 | 2017-12-18 17:52:48 +0800 | [diff] [blame] | 65 | config TRACE_IRQFLAGS_SUPPORT |
| 66 | def_bool y |
| 67 | |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 68 | config RWSEM_GENERIC_SPINLOCK |
| 69 | def_bool y |
| 70 | |
| 71 | config GENERIC_BUG |
| 72 | def_bool y |
| 73 | depends on BUG |
| 74 | select GENERIC_BUG_RELATIVE_POINTERS if 64BIT |
| 75 | |
| 76 | config GENERIC_BUG_RELATIVE_POINTERS |
| 77 | bool |
| 78 | |
| 79 | config GENERIC_CALIBRATE_DELAY |
| 80 | def_bool y |
| 81 | |
| 82 | config GENERIC_CSUM |
| 83 | def_bool y |
| 84 | |
| 85 | config GENERIC_HWEIGHT |
| 86 | def_bool y |
| 87 | |
| 88 | config PGTABLE_LEVELS |
| 89 | int |
| 90 | default 3 if 64BIT |
| 91 | default 2 |
| 92 | |
| 93 | config HAVE_KPROBES |
| 94 | def_bool n |
| 95 | |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 96 | menu "Platform type" |
| 97 | |
| 98 | choice |
| 99 | prompt "Base ISA" |
| 100 | default ARCH_RV64I |
| 101 | help |
| 102 | This selects the base ISA that this kernel will traget and must match |
| 103 | the target platform. |
| 104 | |
| 105 | config ARCH_RV32I |
| 106 | bool "RV32I" |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 107 | select 32BIT |
Matt Redfearn | e3d5980 | 2018-04-11 08:50:17 +0100 | [diff] [blame] | 108 | select GENERIC_LIB_ASHLDI3 |
| 109 | select GENERIC_LIB_ASHRDI3 |
| 110 | select GENERIC_LIB_LSHRDI3 |
Zong Li | 8f79125 | 2018-06-25 16:49:38 +0800 | [diff] [blame] | 111 | select GENERIC_LIB_UCMPDI2 |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 112 | |
| 113 | config ARCH_RV64I |
| 114 | bool "RV64I" |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 115 | select 64BIT |
Masahiro Yamada | ee59288 | 2018-08-24 17:33:53 +0900 | [diff] [blame] | 116 | select ARCH_SUPPORTS_INT128 if GCC_VERSION >= 50000 |
Alan Kao | 10626c3 | 2017-12-18 17:52:48 +0800 | [diff] [blame] | 117 | select HAVE_FUNCTION_TRACER |
| 118 | select HAVE_FUNCTION_GRAPH_TRACER |
Alan Kao | a1d2a6b | 2018-02-13 13:13:16 +0800 | [diff] [blame] | 119 | select HAVE_FTRACE_MCOUNT_RECORD |
Alan Kao | c15ac4f | 2018-02-13 13:13:17 +0800 | [diff] [blame] | 120 | select HAVE_DYNAMIC_FTRACE |
Alan Kao | aea4c67 | 2018-02-13 13:13:20 +0800 | [diff] [blame] | 121 | select HAVE_DYNAMIC_FTRACE_WITH_REGS |
Christoph Hellwig | 10314e0 | 2018-04-27 08:43:14 +0200 | [diff] [blame] | 122 | select SWIOTLB |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 123 | |
| 124 | endchoice |
| 125 | |
| 126 | # We must be able to map all physical memory into the kernel, but the compiler |
| 127 | # is still a bit more efficient when generating code if it's setup in a manner |
| 128 | # such that it can only map 2GiB of memory. |
| 129 | choice |
| 130 | prompt "Kernel Code Model" |
| 131 | default CMODEL_MEDLOW if 32BIT |
| 132 | default CMODEL_MEDANY if 64BIT |
| 133 | |
| 134 | config CMODEL_MEDLOW |
| 135 | bool "medium low code model" |
| 136 | config CMODEL_MEDANY |
| 137 | bool "medium any code model" |
| 138 | endchoice |
| 139 | |
Zong Li | ab1ef68 | 2018-03-15 16:50:41 +0800 | [diff] [blame] | 140 | config MODULE_SECTIONS |
| 141 | bool |
| 142 | select HAVE_MOD_ARCH_SPECIFIC |
| 143 | |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 144 | choice |
| 145 | prompt "Maximum Physical Memory" |
| 146 | default MAXPHYSMEM_2GB if 32BIT |
| 147 | default MAXPHYSMEM_2GB if 64BIT && CMODEL_MEDLOW |
| 148 | default MAXPHYSMEM_128GB if 64BIT && CMODEL_MEDANY |
| 149 | |
| 150 | config MAXPHYSMEM_2GB |
| 151 | bool "2GiB" |
| 152 | config MAXPHYSMEM_128GB |
| 153 | depends on 64BIT && CMODEL_MEDANY |
Zong Li | ab1ef68 | 2018-03-15 16:50:41 +0800 | [diff] [blame] | 154 | select MODULE_SECTIONS if MODULES |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 155 | bool "128GiB" |
| 156 | endchoice |
| 157 | |
| 158 | |
| 159 | config SMP |
| 160 | bool "Symmetric Multi-Processing" |
| 161 | help |
| 162 | This enables support for systems with more than one CPU. If |
| 163 | you say N here, the kernel will run on single and |
| 164 | multiprocessor machines, but will use only one CPU of a |
| 165 | multiprocessor machine. If you say Y here, the kernel will run |
| 166 | on many, but not all, single processor machines. On a single |
| 167 | processor machine, the kernel will run faster if you say N |
| 168 | here. |
| 169 | |
| 170 | If you don't know what to do here, say N. |
| 171 | |
| 172 | config NR_CPUS |
| 173 | int "Maximum number of CPUs (2-32)" |
| 174 | range 2 32 |
| 175 | depends on SMP |
| 176 | default "8" |
| 177 | |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 178 | choice |
| 179 | prompt "CPU Tuning" |
| 180 | default TUNE_GENERIC |
| 181 | |
| 182 | config TUNE_GENERIC |
| 183 | bool "generic" |
| 184 | |
| 185 | endchoice |
| 186 | |
| 187 | config RISCV_ISA_C |
| 188 | bool "Emit compressed instructions when building Linux" |
| 189 | default y |
| 190 | help |
| 191 | Adds "C" to the ISA subsets that the toolchain is allowed to emit |
| 192 | when building Linux, which results in compressed instructions in the |
| 193 | Linux binary. |
| 194 | |
| 195 | If you don't know what to do here, say Y. |
| 196 | |
| 197 | config RISCV_ISA_A |
| 198 | def_bool y |
| 199 | |
Alan Kao | 178e9fc | 2018-04-20 07:27:49 +0800 | [diff] [blame] | 200 | menu "supported PMU type" |
| 201 | depends on PERF_EVENTS |
| 202 | |
| 203 | config RISCV_BASE_PMU |
| 204 | bool "Base Performance Monitoring Unit" |
| 205 | def_bool y |
| 206 | help |
| 207 | A base PMU that serves as a reference implementation and has limited |
| 208 | feature of perf. It can run on any RISC-V machines so serves as the |
| 209 | fallback, but this option can also be disable to reduce kernel size. |
| 210 | |
| 211 | endmenu |
| 212 | |
Alan Kao | 9671f70 | 2018-10-09 10:18:33 +0800 | [diff] [blame] | 213 | config FPU |
| 214 | bool "FPU support" |
| 215 | default y |
| 216 | help |
| 217 | Say N here if you want to disable all floating-point related procedure |
| 218 | in the kernel. |
| 219 | |
| 220 | If you don't know what to do here, say Y. |
| 221 | |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 222 | endmenu |
| 223 | |
Nick Kossifidis | aef53f9 | 2018-09-20 01:48:15 +0300 | [diff] [blame] | 224 | menu "Kernel features" |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 225 | |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 226 | source "kernel/Kconfig.hz" |
| 227 | |
| 228 | endmenu |
| 229 | |
Nick Kossifidis | aef53f9 | 2018-09-20 01:48:15 +0300 | [diff] [blame] | 230 | menu "Boot options" |
| 231 | |
| 232 | config CMDLINE_BOOL |
| 233 | bool "Built-in kernel command line" |
| 234 | help |
| 235 | For most platforms, it is firmware or second stage bootloader |
| 236 | that by default specifies the kernel command line options. |
| 237 | However, it might be necessary or advantageous to either override |
| 238 | the default kernel command line or add a few extra options to it. |
| 239 | For such cases, this option allows hardcoding command line options |
| 240 | directly into the kernel. |
| 241 | |
| 242 | For that, choose 'Y' here and fill in the extra boot parameters |
| 243 | in CONFIG_CMDLINE. |
| 244 | |
| 245 | The built-in options will be concatenated to the default command |
| 246 | line if CMDLINE_FORCE is set to 'N'. Otherwise, the default |
| 247 | command line will be ignored and replaced by the built-in string. |
| 248 | |
| 249 | config CMDLINE |
| 250 | string "Built-in kernel command string" |
| 251 | depends on CMDLINE_BOOL |
| 252 | default "" |
| 253 | help |
| 254 | Supply command-line options at build time by entering them here. |
| 255 | |
| 256 | config CMDLINE_FORCE |
| 257 | bool "Built-in command line overrides bootloader arguments" |
| 258 | depends on CMDLINE_BOOL |
| 259 | help |
| 260 | Set this option to 'Y' to have the kernel ignore the bootloader |
| 261 | or firmware command line. Instead, the built-in command line |
| 262 | will be used exclusively. |
| 263 | |
| 264 | If you don't know what to do here, say N. |
| 265 | |
| 266 | endmenu |
| 267 | |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 268 | config PCI_DOMAINS |
| 269 | def_bool PCI |
| 270 | |
| 271 | config PCI_DOMAINS_GENERIC |
| 272 | def_bool PCI |
| 273 | |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 274 | menu "Power management options" |
| 275 | |
| 276 | source kernel/power/Kconfig |
| 277 | |
| 278 | endmenu |