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 |
Vincent Chen | ad5d112 | 2020-06-09 22:14:48 +0800 | [diff] [blame] | 15 | select ARCH_CLOCKSOURCE_INIT |
Chenxi Mao | 234e9d7 | 2020-06-05 13:15:10 +0800 | [diff] [blame] | 16 | select ARCH_SUPPORTS_ATOMIC_RMW |
Christoph Hellwig | ad97f9d | 2019-06-13 09:09:03 +0200 | [diff] [blame] | 17 | select ARCH_HAS_BINFMT_FLAT |
Emil Renner Berthing | 925ac7b | 2020-07-14 23:26:11 +0200 | [diff] [blame] | 18 | select ARCH_HAS_DEBUG_VM_PGTABLE |
Palmer Dabbelt | e8c7ef7 | 2020-06-04 13:55:14 -0700 | [diff] [blame] | 19 | select ARCH_HAS_DEBUG_VIRTUAL if MMU |
Zong Li | b422d28 | 2020-06-03 16:03:55 -0700 | [diff] [blame] | 20 | select ARCH_HAS_DEBUG_WX |
Palmer Dabbelt | e8c7ef7 | 2020-06-04 13:55:14 -0700 | [diff] [blame] | 21 | select ARCH_HAS_GCOV_PROFILE_ALL |
| 22 | select ARCH_HAS_GIGANTIC_PAGE |
Tobias Klauser | 20d38f7 | 2020-06-26 14:40:56 +0200 | [diff] [blame] | 23 | select ARCH_HAS_KCOV |
Palmer Dabbelt | e8c7ef7 | 2020-06-04 13:55:14 -0700 | [diff] [blame] | 24 | select ARCH_HAS_MMIOWB |
| 25 | select ARCH_HAS_PTE_SPECIAL |
| 26 | select ARCH_HAS_SET_DIRECT_MAP |
| 27 | select ARCH_HAS_SET_MEMORY |
| 28 | select ARCH_HAS_STRICT_KERNEL_RWX if MMU |
Vincent Chen | fc0c769 | 2020-06-23 13:36:59 +0800 | [diff] [blame] | 29 | select ARCH_OPTIONAL_KERNEL_RWX if ARCH_HAS_STRICT_KERNEL_RWX |
| 30 | select ARCH_OPTIONAL_KERNEL_RWX_DEFAULT |
Palmer Dabbelt | e8c7ef7 | 2020-06-04 13:55:14 -0700 | [diff] [blame] | 31 | select ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT if MMU |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 32 | select ARCH_WANT_FRAME_POINTERS |
Palmer Dabbelt | e8c7ef7 | 2020-06-04 13:55:14 -0700 | [diff] [blame] | 33 | select ARCH_WANT_HUGE_PMD_SHARE if 64BIT |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 34 | select CLONE_BACKWARDS |
| 35 | select COMMON_CLK |
Palmer Dabbelt | e8c7ef7 | 2020-06-04 13:55:14 -0700 | [diff] [blame] | 36 | select EDAC_SUPPORT |
| 37 | select GENERIC_ARCH_TOPOLOGY if SMP |
| 38 | select GENERIC_ATOMIC64 if !64BIT |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 39 | select GENERIC_CLOCKEVENTS |
Atish Patra | 6262f66 | 2020-09-17 15:37:11 -0700 | [diff] [blame] | 40 | select GENERIC_EARLY_IOREMAP |
Vincent Chen | ad5d112 | 2020-06-09 22:14:48 +0800 | [diff] [blame] | 41 | select GENERIC_GETTIMEOFDAY if HAVE_GENERIC_VDSO |
Palmer Dabbelt | e8c7ef7 | 2020-06-04 13:55:14 -0700 | [diff] [blame] | 42 | select GENERIC_IOREMAP |
| 43 | select GENERIC_IRQ_MULTI_HANDLER |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 44 | select GENERIC_IRQ_SHOW |
| 45 | select GENERIC_PCI_IOMAP |
Palmer Dabbelt | e8c7ef7 | 2020-06-04 13:55:14 -0700 | [diff] [blame] | 46 | select GENERIC_PTDUMP if MMU |
Anup Patel | 9b9afe4 | 2018-12-04 15:59:51 +0530 | [diff] [blame] | 47 | select GENERIC_SCHED_CLOCK |
Palmer Dabbelt | e8c7ef7 | 2020-06-04 13:55:14 -0700 | [diff] [blame] | 48 | select GENERIC_SMP_IDLE_THREAD |
Christoph Hellwig | 6bd33e1 | 2019-10-28 13:10:41 +0100 | [diff] [blame] | 49 | select GENERIC_STRNCPY_FROM_USER if MMU |
| 50 | select GENERIC_STRNLEN_USER if MMU |
Vincent Chen | ad5d112 | 2020-06-09 22:14:48 +0800 | [diff] [blame] | 51 | select GENERIC_TIME_VSYSCALL if MMU && 64BIT |
Anup Patel | 6b7ce892 | 2020-06-01 14:45:40 +0530 | [diff] [blame] | 52 | select HANDLE_DOMAIN_IRQ |
David Abdurachmanov | efe75c4 | 2018-10-29 11:48:53 +0100 | [diff] [blame] | 53 | select HAVE_ARCH_AUDITSYSCALL |
Emil Renner Berthing | ebc00dd | 2020-07-14 09:40:44 +0200 | [diff] [blame] | 54 | select HAVE_ARCH_JUMP_LABEL |
| 55 | select HAVE_ARCH_JUMP_LABEL_RELATIVE |
Palmer Dabbelt | e8c7ef7 | 2020-06-04 13:55:14 -0700 | [diff] [blame] | 56 | select HAVE_ARCH_KASAN if MMU && 64BIT |
| 57 | select HAVE_ARCH_KGDB |
| 58 | select HAVE_ARCH_KGDB_QXFER_PKT |
| 59 | select HAVE_ARCH_MMAP_RND_BITS if MMU |
David Abdurachmanov | 5340627 | 2019-10-04 17:12:22 -0700 | [diff] [blame] | 60 | select HAVE_ARCH_SECCOMP_FILTER |
Palmer Dabbelt | e8c7ef7 | 2020-06-04 13:55:14 -0700 | [diff] [blame] | 61 | select HAVE_ARCH_TRACEHOOK |
Masahiro Yamada | 2ff2b7e | 2019-08-19 14:54:20 +0900 | [diff] [blame] | 62 | select HAVE_ASM_MODVERSIONS |
Greentime Hu | ed48b29 | 2020-06-24 17:03:16 +0800 | [diff] [blame] | 63 | select HAVE_CONTEXT_TRACKING |
Tobias Klauser | cbb3d91 | 2020-06-27 12:50:50 +0200 | [diff] [blame] | 64 | select HAVE_DEBUG_KMEMLEAK |
Christoph Hellwig | 6bd33e1 | 2019-10-28 13:10:41 +0100 | [diff] [blame] | 65 | select HAVE_DMA_CONTIGUOUS if MMU |
Palmer Dabbelt | e8c7ef7 | 2020-06-04 13:55:14 -0700 | [diff] [blame] | 66 | select HAVE_EBPF_JIT if MMU |
Jim Wilson | b90edb3 | 2018-10-16 14:42:59 -0700 | [diff] [blame] | 67 | select HAVE_FUTEX_CMPXCHG if FUTEX |
Tobias Klauser | 20d38f7 | 2020-06-26 14:40:56 +0200 | [diff] [blame] | 68 | select HAVE_GCC_PLUGINS |
Vincent Chen | ad5d112 | 2020-06-09 22:14:48 +0800 | [diff] [blame] | 69 | select HAVE_GENERIC_VDSO if MMU && 64BIT |
Palmer Dabbelt | e8c7ef7 | 2020-06-04 13:55:14 -0700 | [diff] [blame] | 70 | select HAVE_PCI |
Alan Kao | 178e9fc | 2018-04-20 07:27:49 +0800 | [diff] [blame] | 71 | select HAVE_PERF_EVENTS |
Mao Han | 98a93b0 | 2019-09-05 11:46:35 +0800 | [diff] [blame] | 72 | select HAVE_PERF_REGS |
| 73 | select HAVE_PERF_USER_STACK_DUMP |
Guo Ren | f2c9699 | 2020-07-10 16:19:57 +0000 | [diff] [blame] | 74 | select HAVE_STACKPROTECTOR |
David Abdurachmanov | 5aeb1b3 | 2018-12-06 16:26:35 +0100 | [diff] [blame] | 75 | select HAVE_SYSCALL_TRACEPOINTS |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 76 | select IRQ_DOMAIN |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 77 | select MODULES_USE_ELF_RELA if MODULES |
Zong Li | 2cffc95 | 2018-12-07 17:02:16 +0800 | [diff] [blame] | 78 | select MODULE_SECTIONS if MODULES |
Palmer Dabbelt | e8c7ef7 | 2020-06-04 13:55:14 -0700 | [diff] [blame] | 79 | select OF |
| 80 | select OF_EARLY_FLATTREE |
| 81 | select OF_IRQ |
Christoph Hellwig | 2eac9c2 | 2018-11-15 20:05:33 +0100 | [diff] [blame] | 82 | select PCI_DOMAINS_GENERIC if PCI |
Christoph Hellwig | eb01d42 | 2018-11-15 20:05:32 +0100 | [diff] [blame] | 83 | select PCI_MSI if PCI |
Anup Patel | e71ee06 | 2020-06-01 14:45:43 +0530 | [diff] [blame] | 84 | select RISCV_INTC |
Anup Patel | 2bc3fc8 | 2020-08-17 18:12:50 +0530 | [diff] [blame] | 85 | select RISCV_TIMER if RISCV_SBI |
Logan Gunthorpe | d95f1a5 | 2019-08-28 15:40:54 -0600 | [diff] [blame] | 86 | select SPARSEMEM_STATIC if 32BIT |
Palmer Dabbelt | e8c7ef7 | 2020-06-04 13:55:14 -0700 | [diff] [blame] | 87 | select SPARSE_IRQ |
| 88 | select SYSCTL_EXCEPTION_TRACE |
| 89 | select THREAD_INFO_IN_TASK |
Christoph Hellwig | 5e6e985 | 2020-09-03 16:22:35 +0200 | [diff] [blame] | 90 | select SET_FS |
Christoph Hellwig | 11129e8 | 2020-09-07 07:58:22 +0200 | [diff] [blame^] | 91 | select UACCESS_MEMCPY if !MMU |
Alexandre Ghiti | 54c95a1 | 2019-09-23 15:39:21 -0700 | [diff] [blame] | 92 | |
| 93 | config ARCH_MMAP_RND_BITS_MIN |
| 94 | default 18 if 64BIT |
| 95 | default 8 |
| 96 | |
| 97 | # max bits determined by the following formula: |
| 98 | # VA_BITS - PAGE_SHIFT - 3 |
| 99 | config ARCH_MMAP_RND_BITS_MAX |
| 100 | default 24 if 64BIT # SV39 based |
| 101 | default 17 |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 102 | |
Christoph Hellwig | a4c3733 | 2019-10-28 13:10:32 +0100 | [diff] [blame] | 103 | # set if we run in machine mode, cleared if we run in supervisor mode |
| 104 | config RISCV_M_MODE |
| 105 | bool |
Christoph Hellwig | 6bd33e1 | 2019-10-28 13:10:41 +0100 | [diff] [blame] | 106 | default !MMU |
Christoph Hellwig | a4c3733 | 2019-10-28 13:10:32 +0100 | [diff] [blame] | 107 | |
Damien Le Moal | eded8bc | 2019-10-28 13:10:33 +0100 | [diff] [blame] | 108 | # set if we are running in S-mode and can use SBI calls |
| 109 | config RISCV_SBI |
| 110 | bool |
| 111 | depends on !RISCV_M_MODE |
| 112 | default y |
| 113 | |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 114 | config MMU |
Christoph Hellwig | 6bd33e1 | 2019-10-28 13:10:41 +0100 | [diff] [blame] | 115 | bool "MMU-based Paged Memory Management Support" |
| 116 | default y |
| 117 | help |
| 118 | Select if you want MMU-based virtualised addressing space |
| 119 | support by paged memory management. If unsure, say 'Y'. |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 120 | |
Christoph Hellwig | 5ec9c4f | 2018-01-16 09:37:50 +0100 | [diff] [blame] | 121 | config ZONE_DMA32 |
| 122 | bool |
Christoph Hellwig | f1306f0 | 2018-04-27 08:41:09 +0200 | [diff] [blame] | 123 | default y if 64BIT |
Christoph Hellwig | 5ec9c4f | 2018-01-16 09:37:50 +0100 | [diff] [blame] | 124 | |
Logan Gunthorpe | d95f1a5 | 2019-08-28 15:40:54 -0600 | [diff] [blame] | 125 | config VA_BITS |
| 126 | int |
| 127 | default 32 if 32BIT |
| 128 | default 39 if 64BIT |
| 129 | |
| 130 | config PA_BITS |
| 131 | int |
| 132 | default 34 if 32BIT |
| 133 | default 56 if 64BIT |
| 134 | |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 135 | config PAGE_OFFSET |
| 136 | hex |
| 137 | default 0xC0000000 if 32BIT && MAXPHYSMEM_2GB |
Christoph Hellwig | 6bd33e1 | 2019-10-28 13:10:41 +0100 | [diff] [blame] | 138 | default 0x80000000 if 64BIT && !MMU |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 139 | default 0xffffffff80000000 if 64BIT && MAXPHYSMEM_2GB |
| 140 | default 0xffffffe000000000 if 64BIT && MAXPHYSMEM_128GB |
| 141 | |
Logan Gunthorpe | d95f1a5 | 2019-08-28 15:40:54 -0600 | [diff] [blame] | 142 | config ARCH_FLATMEM_ENABLE |
| 143 | def_bool y |
| 144 | |
| 145 | config ARCH_SPARSEMEM_ENABLE |
| 146 | def_bool y |
Damien Le Moal | aa273420 | 2020-02-12 19:34:24 +0900 | [diff] [blame] | 147 | depends on MMU |
Logan Gunthorpe | d95f1a5 | 2019-08-28 15:40:54 -0600 | [diff] [blame] | 148 | select SPARSEMEM_VMEMMAP_ENABLE |
| 149 | |
| 150 | config ARCH_SELECT_MEMORY_MODEL |
| 151 | def_bool ARCH_SPARSEMEM_ENABLE |
| 152 | |
Alexandre Ghiti | 9e953cd | 2019-05-26 08:50:38 -0400 | [diff] [blame] | 153 | config ARCH_WANT_GENERAL_HUGETLB |
| 154 | def_bool y |
| 155 | |
Zong Li | 5fde3db | 2020-03-10 00:55:38 +0800 | [diff] [blame] | 156 | config ARCH_SUPPORTS_DEBUG_PAGEALLOC |
| 157 | def_bool y |
| 158 | |
Alexandre Ghiti | 9e953cd | 2019-05-26 08:50:38 -0400 | [diff] [blame] | 159 | config SYS_SUPPORTS_HUGETLBFS |
Kefeng Wang | 6986841 | 2020-05-11 10:19:58 +0800 | [diff] [blame] | 160 | depends on MMU |
Alexandre Ghiti | 9e953cd | 2019-05-26 08:50:38 -0400 | [diff] [blame] | 161 | def_bool y |
| 162 | |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 163 | config STACKTRACE_SUPPORT |
| 164 | def_bool y |
| 165 | |
Alan Kao | 10626c3 | 2017-12-18 17:52:48 +0800 | [diff] [blame] | 166 | config TRACE_IRQFLAGS_SUPPORT |
| 167 | def_bool y |
| 168 | |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 169 | config GENERIC_BUG |
| 170 | def_bool y |
| 171 | depends on BUG |
| 172 | select GENERIC_BUG_RELATIVE_POINTERS if 64BIT |
| 173 | |
| 174 | config GENERIC_BUG_RELATIVE_POINTERS |
| 175 | bool |
| 176 | |
| 177 | config GENERIC_CALIBRATE_DELAY |
| 178 | def_bool y |
| 179 | |
| 180 | config GENERIC_CSUM |
| 181 | def_bool y |
| 182 | |
| 183 | config GENERIC_HWEIGHT |
| 184 | def_bool y |
| 185 | |
Anup Patel | f2c17aa | 2019-01-07 20:57:01 +0530 | [diff] [blame] | 186 | config FIX_EARLYCON_MEM |
Andreas Schwab | 0312a3d | 2019-12-17 12:15:16 +0100 | [diff] [blame] | 187 | def_bool MMU |
Anup Patel | f2c17aa | 2019-01-07 20:57:01 +0530 | [diff] [blame] | 188 | |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 189 | config PGTABLE_LEVELS |
| 190 | int |
| 191 | default 3 if 64BIT |
| 192 | default 2 |
| 193 | |
Guo Ren | 3c46979 | 2020-06-27 13:57:08 +0000 | [diff] [blame] | 194 | config LOCKDEP_SUPPORT |
| 195 | def_bool y |
| 196 | |
Loys Ollivier | 0cbb8a3 | 2019-06-17 21:29:48 +0200 | [diff] [blame] | 197 | source "arch/riscv/Kconfig.socs" |
| 198 | |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 199 | menu "Platform type" |
| 200 | |
| 201 | choice |
| 202 | prompt "Base ISA" |
| 203 | default ARCH_RV64I |
| 204 | help |
Antony Pavlov | 86cca81 | 2019-01-08 22:45:57 +0300 | [diff] [blame] | 205 | 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] | 206 | the target platform. |
| 207 | |
| 208 | config ARCH_RV32I |
| 209 | bool "RV32I" |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 210 | select 32BIT |
Matt Redfearn | e3d5980 | 2018-04-11 08:50:17 +0100 | [diff] [blame] | 211 | select GENERIC_LIB_ASHLDI3 |
| 212 | select GENERIC_LIB_ASHRDI3 |
| 213 | select GENERIC_LIB_LSHRDI3 |
Zong Li | 8f79125 | 2018-06-25 16:49:38 +0800 | [diff] [blame] | 214 | select GENERIC_LIB_UCMPDI2 |
Christoph Hellwig | 6bd33e1 | 2019-10-28 13:10:41 +0100 | [diff] [blame] | 215 | select MMU |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 216 | |
| 217 | config ARCH_RV64I |
| 218 | bool "RV64I" |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 219 | select 64BIT |
Ard Biesheuvel | c12d336 | 2019-11-08 13:22:27 +0100 | [diff] [blame] | 220 | select ARCH_SUPPORTS_INT128 if CC_HAS_INT128 && GCC_VERSION >= 50000 |
Christoph Hellwig | 6bd33e1 | 2019-10-28 13:10:41 +0100 | [diff] [blame] | 221 | select HAVE_DYNAMIC_FTRACE if MMU |
| 222 | select HAVE_DYNAMIC_FTRACE_WITH_REGS if HAVE_DYNAMIC_FTRACE |
Palmer Dabbelt | e8c7ef7 | 2020-06-04 13:55:14 -0700 | [diff] [blame] | 223 | select HAVE_FTRACE_MCOUNT_RECORD |
| 224 | select HAVE_FUNCTION_GRAPH_TRACER |
| 225 | select HAVE_FUNCTION_TRACER |
Christoph Hellwig | 6bd33e1 | 2019-10-28 13:10:41 +0100 | [diff] [blame] | 226 | select SWIOTLB if MMU |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 227 | |
| 228 | endchoice |
| 229 | |
| 230 | # We must be able to map all physical memory into the kernel, but the compiler |
| 231 | # is still a bit more efficient when generating code if it's setup in a manner |
| 232 | # such that it can only map 2GiB of memory. |
| 233 | choice |
| 234 | prompt "Kernel Code Model" |
| 235 | default CMODEL_MEDLOW if 32BIT |
| 236 | default CMODEL_MEDANY if 64BIT |
| 237 | |
| 238 | config CMODEL_MEDLOW |
| 239 | bool "medium low code model" |
| 240 | config CMODEL_MEDANY |
| 241 | bool "medium any code model" |
| 242 | endchoice |
| 243 | |
Zong Li | ab1ef68 | 2018-03-15 16:50:41 +0800 | [diff] [blame] | 244 | config MODULE_SECTIONS |
| 245 | bool |
| 246 | select HAVE_MOD_ARCH_SPECIFIC |
| 247 | |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 248 | choice |
| 249 | prompt "Maximum Physical Memory" |
| 250 | default MAXPHYSMEM_2GB if 32BIT |
| 251 | default MAXPHYSMEM_2GB if 64BIT && CMODEL_MEDLOW |
| 252 | default MAXPHYSMEM_128GB if 64BIT && CMODEL_MEDANY |
| 253 | |
| 254 | config MAXPHYSMEM_2GB |
| 255 | bool "2GiB" |
| 256 | config MAXPHYSMEM_128GB |
| 257 | depends on 64BIT && CMODEL_MEDANY |
| 258 | bool "128GiB" |
| 259 | endchoice |
| 260 | |
| 261 | |
| 262 | config SMP |
| 263 | bool "Symmetric Multi-Processing" |
| 264 | help |
| 265 | This enables support for systems with more than one CPU. If |
| 266 | you say N here, the kernel will run on single and |
| 267 | multiprocessor machines, but will use only one CPU of a |
| 268 | multiprocessor machine. If you say Y here, the kernel will run |
| 269 | on many, but not all, single processor machines. On a single |
| 270 | processor machine, the kernel will run faster if you say N |
| 271 | here. |
| 272 | |
| 273 | If you don't know what to do here, say N. |
| 274 | |
| 275 | config NR_CPUS |
| 276 | int "Maximum number of CPUs (2-32)" |
| 277 | range 2 32 |
| 278 | depends on SMP |
| 279 | default "8" |
| 280 | |
Atish Patra | f1e5858 | 2020-03-17 18:11:44 -0700 | [diff] [blame] | 281 | config HOTPLUG_CPU |
| 282 | bool "Support for hot-pluggable CPUs" |
| 283 | depends on SMP |
| 284 | select GENERIC_IRQ_MIGRATION |
| 285 | help |
| 286 | |
| 287 | Say Y here to experiment with turning CPUs off and on. CPUs |
| 288 | can be controlled through /sys/devices/system/cpu. |
| 289 | |
| 290 | Say N if you want to disable CPU hotplug. |
| 291 | |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 292 | choice |
| 293 | prompt "CPU Tuning" |
| 294 | default TUNE_GENERIC |
| 295 | |
| 296 | config TUNE_GENERIC |
| 297 | bool "generic" |
| 298 | |
| 299 | endchoice |
| 300 | |
| 301 | config RISCV_ISA_C |
| 302 | bool "Emit compressed instructions when building Linux" |
| 303 | default y |
| 304 | help |
| 305 | Adds "C" to the ISA subsets that the toolchain is allowed to emit |
| 306 | when building Linux, which results in compressed instructions in the |
| 307 | Linux binary. |
| 308 | |
| 309 | If you don't know what to do here, say Y. |
| 310 | |
Alan Kao | 178e9fc | 2018-04-20 07:27:49 +0800 | [diff] [blame] | 311 | menu "supported PMU type" |
| 312 | depends on PERF_EVENTS |
| 313 | |
| 314 | config RISCV_BASE_PMU |
| 315 | bool "Base Performance Monitoring Unit" |
| 316 | def_bool y |
| 317 | help |
| 318 | A base PMU that serves as a reference implementation and has limited |
| 319 | feature of perf. It can run on any RISC-V machines so serves as the |
| 320 | fallback, but this option can also be disable to reduce kernel size. |
| 321 | |
| 322 | endmenu |
| 323 | |
Alan Kao | 9671f70 | 2018-10-09 10:18:33 +0800 | [diff] [blame] | 324 | config FPU |
| 325 | bool "FPU support" |
| 326 | default y |
| 327 | help |
| 328 | Say N here if you want to disable all floating-point related procedure |
| 329 | in the kernel. |
| 330 | |
| 331 | If you don't know what to do here, say Y. |
| 332 | |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 333 | endmenu |
| 334 | |
Nick Kossifidis | aef53f9 | 2018-09-20 01:48:15 +0300 | [diff] [blame] | 335 | menu "Kernel features" |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 336 | |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 337 | source "kernel/Kconfig.hz" |
| 338 | |
David Abdurachmanov | 5340627 | 2019-10-04 17:12:22 -0700 | [diff] [blame] | 339 | config SECCOMP |
| 340 | bool "Enable seccomp to safely compute untrusted bytecode" |
| 341 | help |
| 342 | This kernel feature is useful for number crunching applications |
| 343 | that may need to compute untrusted bytecode during their |
| 344 | execution. By using pipes or other transports made available to |
| 345 | the process as file descriptors supporting the read/write |
| 346 | syscalls, it's possible to isolate those applications in |
| 347 | their own address space using seccomp. Once seccomp is |
| 348 | enabled via prctl(PR_SET_SECCOMP), it cannot be disabled |
| 349 | and the task is only allowed to execute a few safe syscalls |
| 350 | defined by each seccomp mode. |
| 351 | |
Atish Patra | efca139 | 2020-03-17 18:11:37 -0700 | [diff] [blame] | 352 | config RISCV_SBI_V01 |
| 353 | bool "SBI v0.1 support" |
| 354 | default y |
| 355 | depends on RISCV_SBI |
| 356 | help |
| 357 | This config allows kernel to use SBI v0.1 APIs. This will be |
| 358 | deprecated in future once legacy M-mode software are no longer in use. |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 359 | endmenu |
| 360 | |
Nick Kossifidis | aef53f9 | 2018-09-20 01:48:15 +0300 | [diff] [blame] | 361 | menu "Boot options" |
| 362 | |
Nick Kossifidis | aef53f9 | 2018-09-20 01:48:15 +0300 | [diff] [blame] | 363 | config CMDLINE |
Nick Kossifidis | 3aed8c4 | 2018-11-18 02:06:56 +0200 | [diff] [blame] | 364 | string "Built-in kernel command line" |
Nick Kossifidis | aef53f9 | 2018-09-20 01:48:15 +0300 | [diff] [blame] | 365 | help |
Nick Kossifidis | 3aed8c4 | 2018-11-18 02:06:56 +0200 | [diff] [blame] | 366 | For most platforms, the arguments for the kernel's command line |
| 367 | are provided at run-time, during boot. However, there are cases |
| 368 | where either no arguments are being provided or the provided |
| 369 | arguments are insufficient or even invalid. |
| 370 | |
| 371 | When that occurs, it is possible to define a built-in command |
| 372 | line here and choose how the kernel should use it later on. |
| 373 | |
| 374 | choice |
| 375 | prompt "Built-in command line usage" if CMDLINE != "" |
| 376 | default CMDLINE_FALLBACK |
| 377 | help |
| 378 | Choose how the kernel will handle the provided built-in command |
| 379 | line. |
| 380 | |
| 381 | config CMDLINE_FALLBACK |
| 382 | bool "Use bootloader kernel arguments if available" |
| 383 | help |
| 384 | Use the built-in command line as fallback in case we get nothing |
| 385 | during boot. This is the default behaviour. |
| 386 | |
| 387 | config CMDLINE_EXTEND |
| 388 | bool "Extend bootloader kernel arguments" |
| 389 | help |
| 390 | The command-line arguments provided during boot will be |
| 391 | appended to the built-in command line. This is useful in |
| 392 | cases where the provided arguments are insufficient and |
| 393 | you don't want to or cannot modify them. |
| 394 | |
Nick Kossifidis | aef53f9 | 2018-09-20 01:48:15 +0300 | [diff] [blame] | 395 | |
| 396 | config CMDLINE_FORCE |
Nick Kossifidis | 3aed8c4 | 2018-11-18 02:06:56 +0200 | [diff] [blame] | 397 | bool "Always use the default kernel command string" |
Nick Kossifidis | aef53f9 | 2018-09-20 01:48:15 +0300 | [diff] [blame] | 398 | help |
Nick Kossifidis | 3aed8c4 | 2018-11-18 02:06:56 +0200 | [diff] [blame] | 399 | Always use the built-in command line, even if we get one during |
| 400 | boot. This is useful in case you need to override the provided |
| 401 | command line on systems where you don't have or want control |
| 402 | over it. |
Nick Kossifidis | aef53f9 | 2018-09-20 01:48:15 +0300 | [diff] [blame] | 403 | |
Nick Kossifidis | 3aed8c4 | 2018-11-18 02:06:56 +0200 | [diff] [blame] | 404 | endchoice |
Nick Kossifidis | aef53f9 | 2018-09-20 01:48:15 +0300 | [diff] [blame] | 405 | |
Atish Patra | d707174 | 2020-09-17 15:37:14 -0700 | [diff] [blame] | 406 | config EFI_STUB |
| 407 | bool |
| 408 | |
| 409 | config EFI |
| 410 | bool "UEFI runtime support" |
| 411 | depends on OF |
| 412 | select LIBFDT |
| 413 | select UCS2_STRING |
| 414 | select EFI_PARAMS_FROM_FDT |
| 415 | select EFI_STUB |
| 416 | select EFI_GENERIC_STUB |
Atish Patra | b91540d | 2020-09-17 15:37:15 -0700 | [diff] [blame] | 417 | select EFI_RUNTIME_WRAPPERS |
Atish Patra | d707174 | 2020-09-17 15:37:14 -0700 | [diff] [blame] | 418 | select RISCV_ISA_C |
Atish Patra | b91540d | 2020-09-17 15:37:15 -0700 | [diff] [blame] | 419 | depends on MMU |
Atish Patra | d707174 | 2020-09-17 15:37:14 -0700 | [diff] [blame] | 420 | default y |
| 421 | help |
| 422 | This option provides support for runtime services provided |
| 423 | by UEFI firmware (such as non-volatile variables, realtime |
| 424 | clock, and platform reset). A UEFI stub is also provided to |
| 425 | allow the kernel to be booted as an EFI application. This |
| 426 | is only useful on systems that have UEFI firmware. |
| 427 | |
Nick Kossifidis | aef53f9 | 2018-09-20 01:48:15 +0300 | [diff] [blame] | 428 | endmenu |
| 429 | |
Palmer Dabbelt | 2d26825 | 2020-04-14 13:43:24 +0900 | [diff] [blame] | 430 | config BUILTIN_DTB |
| 431 | def_bool n |
| 432 | depends on RISCV_M_MODE |
| 433 | depends on OF |
| 434 | |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 435 | menu "Power management options" |
| 436 | |
Masahiro Yamada | 8636a1f | 2018-12-11 20:01:04 +0900 | [diff] [blame] | 437 | source "kernel/power/Kconfig" |
Palmer Dabbelt | fbe934d | 2017-07-10 18:08:08 -0700 | [diff] [blame] | 438 | |
| 439 | endmenu |
Atish Patra | d707174 | 2020-09-17 15:37:14 -0700 | [diff] [blame] | 440 | |
| 441 | source "drivers/firmware/Kconfig" |