7b5bb48055e70de6bb0a1bcfa51d0d13d02432e1
[linux-2.6-microblaze.git] / arch / riscv / Kconfig
1 # SPDX-License-Identifier: GPL-2.0-only
2 #
3 # For a description of the syntax of this configuration file,
4 # see Documentation/kbuild/kconfig-language.rst.
5 #
6
7 config 64BIT
8         bool
9
10 config 32BIT
11         bool
12
13 config RISCV
14         def_bool y
15         select ARCH_CLOCKSOURCE_INIT
16         select ARCH_SUPPORTS_ATOMIC_RMW
17         select ARCH_SUPPORTS_DEBUG_PAGEALLOC if MMU
18         select ARCH_STACKWALK
19         select ARCH_HAS_BINFMT_FLAT
20         select ARCH_HAS_DEBUG_VM_PGTABLE
21         select ARCH_HAS_DEBUG_VIRTUAL if MMU
22         select ARCH_HAS_DEBUG_WX
23         select ARCH_HAS_GCOV_PROFILE_ALL
24         select ARCH_HAS_GIGANTIC_PAGE
25         select ARCH_HAS_KCOV
26         select ARCH_HAS_MMIOWB
27         select ARCH_HAS_PTE_SPECIAL
28         select ARCH_HAS_SET_DIRECT_MAP
29         select ARCH_HAS_SET_MEMORY
30         select ARCH_HAS_STRICT_KERNEL_RWX if MMU
31         select ARCH_OPTIONAL_KERNEL_RWX if ARCH_HAS_STRICT_KERNEL_RWX
32         select ARCH_OPTIONAL_KERNEL_RWX_DEFAULT
33         select ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT if MMU
34         select ARCH_WANT_FRAME_POINTERS
35         select ARCH_WANT_HUGE_PMD_SHARE if 64BIT
36         select CLONE_BACKWARDS
37         select CLINT_TIMER if !MMU
38         select COMMON_CLK
39         select EDAC_SUPPORT
40         select GENERIC_ARCH_TOPOLOGY if SMP
41         select GENERIC_ATOMIC64 if !64BIT
42         select GENERIC_EARLY_IOREMAP
43         select GENERIC_GETTIMEOFDAY if HAVE_GENERIC_VDSO
44         select GENERIC_IOREMAP
45         select GENERIC_IRQ_MULTI_HANDLER
46         select GENERIC_IRQ_SHOW
47         select GENERIC_LIB_DEVMEM_IS_ALLOWED
48         select GENERIC_PCI_IOMAP
49         select GENERIC_PTDUMP if MMU
50         select GENERIC_SCHED_CLOCK
51         select GENERIC_SMP_IDLE_THREAD
52         select GENERIC_STRNCPY_FROM_USER if MMU
53         select GENERIC_STRNLEN_USER if MMU
54         select GENERIC_TIME_VSYSCALL if MMU && 64BIT
55         select HANDLE_DOMAIN_IRQ
56         select HAVE_ARCH_AUDITSYSCALL
57         select HAVE_ARCH_JUMP_LABEL
58         select HAVE_ARCH_JUMP_LABEL_RELATIVE
59         select HAVE_ARCH_KASAN if MMU && 64BIT
60         select HAVE_ARCH_KGDB
61         select HAVE_ARCH_KGDB_QXFER_PKT
62         select HAVE_ARCH_MMAP_RND_BITS if MMU
63         select HAVE_ARCH_SECCOMP_FILTER
64         select HAVE_ARCH_TRACEHOOK
65         select HAVE_ASM_MODVERSIONS
66         select HAVE_CONTEXT_TRACKING
67         select HAVE_DEBUG_KMEMLEAK
68         select HAVE_DMA_CONTIGUOUS if MMU
69         select HAVE_EBPF_JIT if MMU
70         select HAVE_FUTEX_CMPXCHG if FUTEX
71         select HAVE_GCC_PLUGINS
72         select HAVE_GENERIC_VDSO if MMU && 64BIT
73         select HAVE_IRQ_TIME_ACCOUNTING
74         select HAVE_KPROBES
75         select HAVE_KPROBES_ON_FTRACE
76         select HAVE_KRETPROBES
77         select HAVE_PCI
78         select HAVE_PERF_EVENTS
79         select HAVE_PERF_REGS
80         select HAVE_PERF_USER_STACK_DUMP
81         select HAVE_REGS_AND_STACK_ACCESS_API
82         select HAVE_STACKPROTECTOR
83         select HAVE_SYSCALL_TRACEPOINTS
84         select IRQ_DOMAIN
85         select MODULES_USE_ELF_RELA if MODULES
86         select MODULE_SECTIONS if MODULES
87         select OF
88         select OF_EARLY_FLATTREE
89         select OF_IRQ
90         select PCI_DOMAINS_GENERIC if PCI
91         select PCI_MSI if PCI
92         select RISCV_INTC
93         select RISCV_TIMER if RISCV_SBI
94         select SPARSEMEM_STATIC if 32BIT
95         select SPARSE_IRQ
96         select SYSCTL_EXCEPTION_TRACE
97         select THREAD_INFO_IN_TASK
98         select UACCESS_MEMCPY if !MMU
99
100 config ARCH_MMAP_RND_BITS_MIN
101         default 18 if 64BIT
102         default 8
103
104 # max bits determined by the following formula:
105 #  VA_BITS - PAGE_SHIFT - 3
106 config ARCH_MMAP_RND_BITS_MAX
107         default 24 if 64BIT # SV39 based
108         default 17
109
110 # set if we run in machine mode, cleared if we run in supervisor mode
111 config RISCV_M_MODE
112         bool
113         default !MMU
114
115 # set if we are running in S-mode and can use SBI calls
116 config RISCV_SBI
117         bool
118         depends on !RISCV_M_MODE
119         default y
120
121 config MMU
122         bool "MMU-based Paged Memory Management Support"
123         default y
124         help
125           Select if you want MMU-based virtualised addressing space
126           support by paged memory management. If unsure, say 'Y'.
127
128 config ZONE_DMA32
129         bool
130         default y if 64BIT
131
132 config VA_BITS
133         int
134         default 32 if 32BIT
135         default 39 if 64BIT
136
137 config PA_BITS
138         int
139         default 34 if 32BIT
140         default 56 if 64BIT
141
142 config PAGE_OFFSET
143         hex
144         default 0xC0000000 if 32BIT && MAXPHYSMEM_2GB
145         default 0x80000000 if 64BIT && !MMU
146         default 0xffffffff80000000 if 64BIT && MAXPHYSMEM_2GB
147         default 0xffffffe000000000 if 64BIT && MAXPHYSMEM_128GB
148
149 config ARCH_FLATMEM_ENABLE
150         def_bool !NUMA
151
152 config ARCH_SPARSEMEM_ENABLE
153         def_bool y
154         depends on MMU
155         select SPARSEMEM_VMEMMAP_ENABLE
156
157 config ARCH_SELECT_MEMORY_MODEL
158         def_bool ARCH_SPARSEMEM_ENABLE
159
160 config ARCH_WANT_GENERAL_HUGETLB
161         def_bool y
162
163 config ARCH_SUPPORTS_UPROBES
164         def_bool y
165
166 config SYS_SUPPORTS_HUGETLBFS
167         depends on MMU
168         def_bool y
169
170 config STACKTRACE_SUPPORT
171         def_bool y
172
173 config TRACE_IRQFLAGS_SUPPORT
174         def_bool y
175
176 config GENERIC_BUG
177         def_bool y
178         depends on BUG
179         select GENERIC_BUG_RELATIVE_POINTERS if 64BIT
180
181 config GENERIC_BUG_RELATIVE_POINTERS
182         bool
183
184 config GENERIC_CALIBRATE_DELAY
185         def_bool y
186
187 config GENERIC_CSUM
188         def_bool y
189
190 config GENERIC_HWEIGHT
191         def_bool y
192
193 config FIX_EARLYCON_MEM
194         def_bool MMU
195
196 config PGTABLE_LEVELS
197         int
198         default 3 if 64BIT
199         default 2
200
201 config LOCKDEP_SUPPORT
202         def_bool y
203
204 source "arch/riscv/Kconfig.socs"
205
206 menu "Platform type"
207
208 choice
209         prompt "Base ISA"
210         default ARCH_RV64I
211         help
212           This selects the base ISA that this kernel will target and must match
213           the target platform.
214
215 config ARCH_RV32I
216         bool "RV32I"
217         select 32BIT
218         select GENERIC_LIB_ASHLDI3
219         select GENERIC_LIB_ASHRDI3
220         select GENERIC_LIB_LSHRDI3
221         select GENERIC_LIB_UCMPDI2
222         select MMU
223
224 config ARCH_RV64I
225         bool "RV64I"
226         select 64BIT
227         select ARCH_SUPPORTS_INT128 if CC_HAS_INT128 && GCC_VERSION >= 50000
228         select HAVE_DYNAMIC_FTRACE if MMU
229         select HAVE_DYNAMIC_FTRACE_WITH_REGS if HAVE_DYNAMIC_FTRACE
230         select HAVE_FTRACE_MCOUNT_RECORD
231         select HAVE_FUNCTION_GRAPH_TRACER
232         select HAVE_FUNCTION_TRACER
233         select SWIOTLB if MMU
234
235 endchoice
236
237 # We must be able to map all physical memory into the kernel, but the compiler
238 # is still a bit more efficient when generating code if it's setup in a manner
239 # such that it can only map 2GiB of memory.
240 choice
241         prompt "Kernel Code Model"
242         default CMODEL_MEDLOW if 32BIT
243         default CMODEL_MEDANY if 64BIT
244
245         config CMODEL_MEDLOW
246                 bool "medium low code model"
247         config CMODEL_MEDANY
248                 bool "medium any code model"
249 endchoice
250
251 config MODULE_SECTIONS
252         bool
253         select HAVE_MOD_ARCH_SPECIFIC
254
255 choice
256         prompt "Maximum Physical Memory"
257         default MAXPHYSMEM_2GB if 32BIT
258         default MAXPHYSMEM_2GB if 64BIT && CMODEL_MEDLOW
259         default MAXPHYSMEM_128GB if 64BIT && CMODEL_MEDANY
260
261         config MAXPHYSMEM_2GB
262                 bool "2GiB"
263         config MAXPHYSMEM_128GB
264                 depends on 64BIT && CMODEL_MEDANY
265                 bool "128GiB"
266 endchoice
267
268
269 config SMP
270         bool "Symmetric Multi-Processing"
271         help
272           This enables support for systems with more than one CPU.  If
273           you say N here, the kernel will run on single and
274           multiprocessor machines, but will use only one CPU of a
275           multiprocessor machine. If you say Y here, the kernel will run
276           on many, but not all, single processor machines. On a single
277           processor machine, the kernel will run faster if you say N
278           here.
279
280           If you don't know what to do here, say N.
281
282 config NR_CPUS
283         int "Maximum number of CPUs (2-32)"
284         range 2 32
285         depends on SMP
286         default "8"
287
288 config HOTPLUG_CPU
289         bool "Support for hot-pluggable CPUs"
290         depends on SMP
291         select GENERIC_IRQ_MIGRATION
292         help
293
294           Say Y here to experiment with turning CPUs off and on.  CPUs
295           can be controlled through /sys/devices/system/cpu.
296
297           Say N if you want to disable CPU hotplug.
298
299 choice
300         prompt "CPU Tuning"
301         default TUNE_GENERIC
302
303 config TUNE_GENERIC
304         bool "generic"
305
306 endchoice
307
308 # Common NUMA Features
309 config NUMA
310         bool "NUMA Memory Allocation and Scheduler Support"
311         select GENERIC_ARCH_NUMA
312         select OF_NUMA
313         select ARCH_SUPPORTS_NUMA_BALANCING
314         help
315           Enable NUMA (Non-Uniform Memory Access) support.
316
317           The kernel will try to allocate memory used by a CPU on the
318           local memory of the CPU and add some more NUMA awareness to the kernel.
319
320 config NODES_SHIFT
321         int "Maximum NUMA Nodes (as a power of 2)"
322         range 1 10
323         default "2"
324         depends on NEED_MULTIPLE_NODES
325         help
326           Specify the maximum number of NUMA Nodes available on the target
327           system.  Increases memory reserved to accommodate various tables.
328
329 config USE_PERCPU_NUMA_NODE_ID
330         def_bool y
331         depends on NUMA
332
333 config NEED_PER_CPU_EMBED_FIRST_CHUNK
334         def_bool y
335         depends on NUMA
336
337 config RISCV_ISA_C
338         bool "Emit compressed instructions when building Linux"
339         default y
340         help
341            Adds "C" to the ISA subsets that the toolchain is allowed to emit
342            when building Linux, which results in compressed instructions in the
343            Linux binary.
344
345            If you don't know what to do here, say Y.
346
347 menu "supported PMU type"
348         depends on PERF_EVENTS
349
350 config RISCV_BASE_PMU
351         bool "Base Performance Monitoring Unit"
352         def_bool y
353         help
354           A base PMU that serves as a reference implementation and has limited
355           feature of perf.  It can run on any RISC-V machines so serves as the
356           fallback, but this option can also be disable to reduce kernel size.
357
358 endmenu
359
360 config FPU
361         bool "FPU support"
362         default y
363         help
364           Say N here if you want to disable all floating-point related procedure
365           in the kernel.
366
367           If you don't know what to do here, say Y.
368
369 endmenu
370
371 menu "Kernel features"
372
373 source "kernel/Kconfig.hz"
374
375 config RISCV_SBI_V01
376         bool "SBI v0.1 support"
377         default y
378         depends on RISCV_SBI
379         help
380           This config allows kernel to use SBI v0.1 APIs. This will be
381           deprecated in future once legacy M-mode software are no longer in use.
382 endmenu
383
384 menu "Boot options"
385
386 config CMDLINE
387         string "Built-in kernel command line"
388         help
389           For most platforms, the arguments for the kernel's command line
390           are provided at run-time, during boot. However, there are cases
391           where either no arguments are being provided or the provided
392           arguments are insufficient or even invalid.
393
394           When that occurs, it is possible to define a built-in command
395           line here and choose how the kernel should use it later on.
396
397 choice
398         prompt "Built-in command line usage" if CMDLINE != ""
399         default CMDLINE_FALLBACK
400         help
401           Choose how the kernel will handle the provided built-in command
402           line.
403
404 config CMDLINE_FALLBACK
405         bool "Use bootloader kernel arguments if available"
406         help
407           Use the built-in command line as fallback in case we get nothing
408           during boot. This is the default behaviour.
409
410 config CMDLINE_EXTEND
411         bool "Extend bootloader kernel arguments"
412         help
413           The command-line arguments provided during boot will be
414           appended to the built-in command line. This is useful in
415           cases where the provided arguments are insufficient and
416           you don't want to or cannot modify them.
417
418
419 config CMDLINE_FORCE
420         bool "Always use the default kernel command string"
421         help
422           Always use the built-in command line, even if we get one during
423           boot. This is useful in case you need to override the provided
424           command line on systems where you don't have or want control
425           over it.
426
427 endchoice
428
429 config EFI_STUB
430         bool
431
432 config EFI
433         bool "UEFI runtime support"
434         depends on OF
435         select LIBFDT
436         select UCS2_STRING
437         select EFI_PARAMS_FROM_FDT
438         select EFI_STUB
439         select EFI_GENERIC_STUB
440         select EFI_RUNTIME_WRAPPERS
441         select RISCV_ISA_C
442         depends on MMU
443         default y
444         help
445           This option provides support for runtime services provided
446           by UEFI firmware (such as non-volatile variables, realtime
447           clock, and platform reset). A UEFI stub is also provided to
448           allow the kernel to be booted as an EFI application. This
449           is only useful on systems that have UEFI firmware.
450
451 endmenu
452
453 config BUILTIN_DTB
454         def_bool n
455         depends on RISCV_M_MODE
456         depends on OF
457
458 menu "Power management options"
459
460 source "kernel/power/Kconfig"
461
462 endmenu
463
464 source "drivers/firmware/Kconfig"