blob: 86b7e8b0471cd0e5cfd0704e0b002d398d5c0a88 [file] [log] [blame]
Thomas Gleixnerec8f24b2019-05-19 13:07:45 +01001# SPDX-License-Identifier: GPL-2.0-only
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -07002#
3# For a description of the syntax of this configuration file,
Mauro Carvalho Chehabcd238ef2019-06-12 14:52:48 -03004# see Documentation/kbuild/kconfig-language.rst.
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -07005#
6
Christoph Hellwigc3e4ed02018-04-27 08:38:23 +02007config 64BIT
8 bool
9
10config 32BIT
11 bool
12
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -070013config RISCV
14 def_bool y
Christoph Hellwigd4a451d2018-04-03 16:24:20 +020015 # even on 32-bit, physical (and DMA) addresses are > 32-bits
16 select PHYS_ADDR_T_64BIT
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -070017 select OF
18 select OF_EARLY_FLATTREE
19 select OF_IRQ
Christoph Hellwigad97f9d2019-06-13 09:09:03 +020020 select ARCH_HAS_BINFMT_FLAT
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -070021 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 Patel9b9afe42018-12-04 15:59:51 +053028 select GENERIC_SCHED_CLOCK
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -070029 select GENERIC_STRNCPY_FROM_USER
30 select GENERIC_STRNLEN_USER
31 select GENERIC_SMP_IDLE_THREAD
Christoph Hellwig09afac72019-04-15 11:14:35 +020032 select GENERIC_ATOMIC64 if !64BIT
David Abdurachmanovefe75c42018-10-29 11:48:53 +010033 select HAVE_ARCH_AUDITSYSCALL
Masahiro Yamada2ff2b7e2019-08-19 14:54:20 +090034 select HAVE_ASM_MODVERSIONS
Christoph Hellwig5ec9c4f2018-01-16 09:37:50 +010035 select HAVE_MEMBLOCK_NODE_MAP
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -070036 select HAVE_DMA_CONTIGUOUS
Jim Wilsonb90edb32018-10-16 14:42:59 -070037 select HAVE_FUTEX_CMPXCHG if FUTEX
Alan Kao178e9fc2018-04-20 07:27:49 +080038 select HAVE_PERF_EVENTS
Mao Han98a93b02019-09-05 11:46:35 +080039 select HAVE_PERF_REGS
40 select HAVE_PERF_USER_STACK_DUMP
David Abdurachmanov5aeb1b32018-12-06 16:26:35 +010041 select HAVE_SYSCALL_TRACEPOINTS
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -070042 select IRQ_DOMAIN
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -070043 select SPARSE_IRQ
44 select SYSCTL_EXCEPTION_TRACE
45 select HAVE_ARCH_TRACEHOOK
Christoph Hellwigeb01d422018-11-15 20:05:32 +010046 select HAVE_PCI
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -070047 select MODULES_USE_ELF_RELA if MODULES
Zong Li2cffc952018-12-07 17:02:16 +080048 select MODULE_SECTIONS if MODULES
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -070049 select THREAD_INFO_IN_TASK
Christoph Hellwig2eac9c22018-11-15 20:05:33 +010050 select PCI_DOMAINS_GENERIC if PCI
Christoph Hellwigeb01d422018-11-15 20:05:32 +010051 select PCI_MSI if PCI
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -070052 select RISCV_TIMER
Palmer Dabbeltcc6c9842018-03-07 15:57:28 -080053 select GENERIC_IRQ_MULTI_HANDLER
Atish Patra03f11f02019-06-27 12:53:00 -070054 select GENERIC_ARCH_TOPOLOGY if SMP
Laurent Dufour3010a5e2018-06-07 17:06:08 -070055 select ARCH_HAS_PTE_SPECIAL
Will Deaconb0129802019-02-22 14:45:42 +000056 select ARCH_HAS_MMIOWB
Björn Töpel2353ecc2019-02-05 13:41:22 +010057 select HAVE_EBPF_JIT if 64BIT
Yash Shah91abaea2019-05-06 16:57:06 +053058 select EDAC_SUPPORT
Alexandre Ghiti9e953cd2019-05-26 08:50:38 -040059 select ARCH_HAS_GIGANTIC_PAGE
60 select ARCH_WANT_HUGE_PMD_SHARE if 64BIT
Logan Gunthorped95f1a52019-08-28 15:40:54 -060061 select SPARSEMEM_STATIC if 32BIT
Alexandre Ghiti54c95a12019-09-23 15:39:21 -070062 select ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT if MMU
63 select HAVE_ARCH_MMAP_RND_BITS
64
65config 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
71config ARCH_MMAP_RND_BITS_MAX
72 default 24 if 64BIT # SV39 based
73 default 17
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -070074
Christoph Hellwiga4c37332019-10-28 13:10:32 +010075# set if we run in machine mode, cleared if we run in supervisor mode
76config RISCV_M_MODE
77 bool
78
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -070079config MMU
80 def_bool y
81
Christoph Hellwig5ec9c4f2018-01-16 09:37:50 +010082config ZONE_DMA32
83 bool
Christoph Hellwigf1306f02018-04-27 08:41:09 +020084 default y if 64BIT
Christoph Hellwig5ec9c4f2018-01-16 09:37:50 +010085
Logan Gunthorped95f1a52019-08-28 15:40:54 -060086config VA_BITS
87 int
88 default 32 if 32BIT
89 default 39 if 64BIT
90
91config PA_BITS
92 int
93 default 34 if 32BIT
94 default 56 if 64BIT
95
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -070096config 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 Gunthorped95f1a52019-08-28 15:40:54 -0600102config ARCH_FLATMEM_ENABLE
103 def_bool y
104
105config ARCH_SPARSEMEM_ENABLE
106 def_bool y
107 select SPARSEMEM_VMEMMAP_ENABLE
108
109config ARCH_SELECT_MEMORY_MODEL
110 def_bool ARCH_SPARSEMEM_ENABLE
111
Alexandre Ghiti9e953cd2019-05-26 08:50:38 -0400112config ARCH_WANT_GENERAL_HUGETLB
113 def_bool y
114
115config SYS_SUPPORTS_HUGETLBFS
116 def_bool y
117
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -0700118config STACKTRACE_SUPPORT
119 def_bool y
120
Alan Kao10626c32017-12-18 17:52:48 +0800121config TRACE_IRQFLAGS_SUPPORT
122 def_bool y
123
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -0700124config GENERIC_BUG
125 def_bool y
126 depends on BUG
127 select GENERIC_BUG_RELATIVE_POINTERS if 64BIT
128
129config GENERIC_BUG_RELATIVE_POINTERS
130 bool
131
132config GENERIC_CALIBRATE_DELAY
133 def_bool y
134
135config GENERIC_CSUM
136 def_bool y
137
138config GENERIC_HWEIGHT
139 def_bool y
140
Anup Patelf2c17aa2019-01-07 20:57:01 +0530141config FIX_EARLYCON_MEM
142 def_bool y
143
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -0700144config PGTABLE_LEVELS
145 int
146 default 3 if 64BIT
147 default 2
148
Loys Ollivier0cbb8a32019-06-17 21:29:48 +0200149source "arch/riscv/Kconfig.socs"
150
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -0700151menu "Platform type"
152
153choice
154 prompt "Base ISA"
155 default ARCH_RV64I
156 help
Antony Pavlov86cca812019-01-08 22:45:57 +0300157 This selects the base ISA that this kernel will target and must match
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -0700158 the target platform.
159
160config ARCH_RV32I
161 bool "RV32I"
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -0700162 select 32BIT
Matt Redfearne3d59802018-04-11 08:50:17 +0100163 select GENERIC_LIB_ASHLDI3
164 select GENERIC_LIB_ASHRDI3
165 select GENERIC_LIB_LSHRDI3
Zong Li8f791252018-06-25 16:49:38 +0800166 select GENERIC_LIB_UCMPDI2
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -0700167
168config ARCH_RV64I
169 bool "RV64I"
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -0700170 select 64BIT
Masahiro Yamadaee592882018-08-24 17:33:53 +0900171 select ARCH_SUPPORTS_INT128 if GCC_VERSION >= 50000
Alan Kao10626c32017-12-18 17:52:48 +0800172 select HAVE_FUNCTION_TRACER
173 select HAVE_FUNCTION_GRAPH_TRACER
Alan Kaoa1d2a6b2018-02-13 13:13:16 +0800174 select HAVE_FTRACE_MCOUNT_RECORD
Alan Kaoc15ac4f2018-02-13 13:13:17 +0800175 select HAVE_DYNAMIC_FTRACE
Alan Kaoaea4c672018-02-13 13:13:20 +0800176 select HAVE_DYNAMIC_FTRACE_WITH_REGS
Christoph Hellwig10314e02018-04-27 08:43:14 +0200177 select SWIOTLB
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -0700178
179endchoice
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.
184choice
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"
193endchoice
194
Zong Liab1ef682018-03-15 16:50:41 +0800195config MODULE_SECTIONS
196 bool
197 select HAVE_MOD_ARCH_SPECIFIC
198
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -0700199choice
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"
210endchoice
211
212
213config 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
226config NR_CPUS
227 int "Maximum number of CPUs (2-32)"
228 range 2 32
229 depends on SMP
230 default "8"
231
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -0700232choice
233 prompt "CPU Tuning"
234 default TUNE_GENERIC
235
236config TUNE_GENERIC
237 bool "generic"
238
239endchoice
240
241config 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 Kao178e9fc2018-04-20 07:27:49 +0800251menu "supported PMU type"
252 depends on PERF_EVENTS
253
254config 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
262endmenu
263
Alan Kao9671f702018-10-09 10:18:33 +0800264config 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 Dabbeltfbe934d2017-07-10 18:08:08 -0700273endmenu
274
Nick Kossifidisaef53f92018-09-20 01:48:15 +0300275menu "Kernel features"
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -0700276
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -0700277source "kernel/Kconfig.hz"
278
279endmenu
280
Nick Kossifidisaef53f92018-09-20 01:48:15 +0300281menu "Boot options"
282
Nick Kossifidisaef53f92018-09-20 01:48:15 +0300283config CMDLINE
Nick Kossifidis3aed8c42018-11-18 02:06:56 +0200284 string "Built-in kernel command line"
Nick Kossifidisaef53f92018-09-20 01:48:15 +0300285 help
Nick Kossifidis3aed8c42018-11-18 02:06:56 +0200286 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
294choice
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
301config 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
307config 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 Kossifidisaef53f92018-09-20 01:48:15 +0300315
316config CMDLINE_FORCE
Nick Kossifidis3aed8c42018-11-18 02:06:56 +0200317 bool "Always use the default kernel command string"
Nick Kossifidisaef53f92018-09-20 01:48:15 +0300318 help
Nick Kossifidis3aed8c42018-11-18 02:06:56 +0200319 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 Kossifidisaef53f92018-09-20 01:48:15 +0300323
Nick Kossifidis3aed8c42018-11-18 02:06:56 +0200324endchoice
Nick Kossifidisaef53f92018-09-20 01:48:15 +0300325
326endmenu
327
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -0700328menu "Power management options"
329
Masahiro Yamada8636a1f2018-12-11 20:01:04 +0900330source "kernel/power/Kconfig"
Palmer Dabbeltfbe934d2017-07-10 18:08:08 -0700331
332endmenu