Merge tag 'riscv-for-linus-5.15-mw0' of git://git.kernel.org/pub/scm/linux/kernel...
[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_ENABLE_HUGEPAGE_MIGRATION if HUGETLB_PAGE && MIGRATION
17         select ARCH_HAS_BINFMT_FLAT
18         select ARCH_HAS_DEBUG_VM_PGTABLE
19         select ARCH_HAS_DEBUG_VIRTUAL if MMU
20         select ARCH_HAS_DEBUG_WX
21         select ARCH_HAS_FORTIFY_SOURCE
22         select ARCH_HAS_GCOV_PROFILE_ALL
23         select ARCH_HAS_GIGANTIC_PAGE
24         select ARCH_HAS_KCOV
25         select ARCH_HAS_MMIOWB
26         select ARCH_HAS_PTE_SPECIAL
27         select ARCH_HAS_SET_DIRECT_MAP if MMU
28         select ARCH_HAS_SET_MEMORY if MMU
29         select ARCH_HAS_STRICT_KERNEL_RWX if MMU && !XIP_KERNEL
30         select ARCH_HAS_STRICT_MODULE_RWX if MMU && !XIP_KERNEL
31         select ARCH_HAS_TICK_BROADCAST if GENERIC_CLOCKEVENTS_BROADCAST
32         select ARCH_HAS_UBSAN_SANITIZE_ALL
33         select ARCH_OPTIONAL_KERNEL_RWX if ARCH_HAS_STRICT_KERNEL_RWX
34         select ARCH_OPTIONAL_KERNEL_RWX_DEFAULT
35         select ARCH_STACKWALK
36         select ARCH_SUPPORTS_ATOMIC_RMW
37         select ARCH_SUPPORTS_DEBUG_PAGEALLOC if MMU
38         select ARCH_SUPPORTS_HUGETLBFS if MMU
39         select ARCH_USE_MEMTEST
40         select ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT if MMU
41         select ARCH_WANT_FRAME_POINTERS
42         select ARCH_WANT_HUGE_PMD_SHARE if 64BIT
43         select BINFMT_FLAT_NO_DATA_START_OFFSET if !MMU
44         select CLONE_BACKWARDS
45         select CLINT_TIMER if !MMU
46         select COMMON_CLK
47         select EDAC_SUPPORT
48         select GENERIC_ARCH_TOPOLOGY if SMP
49         select GENERIC_ATOMIC64 if !64BIT
50         select GENERIC_CLOCKEVENTS_BROADCAST if SMP
51         select GENERIC_EARLY_IOREMAP
52         select GENERIC_GETTIMEOFDAY if HAVE_GENERIC_VDSO
53         select GENERIC_IDLE_POLL_SETUP
54         select GENERIC_IOREMAP
55         select GENERIC_IRQ_MULTI_HANDLER
56         select GENERIC_IRQ_SHOW
57         select GENERIC_IRQ_SHOW_LEVEL
58         select GENERIC_LIB_DEVMEM_IS_ALLOWED
59         select GENERIC_PCI_IOMAP
60         select GENERIC_PTDUMP if MMU
61         select GENERIC_SCHED_CLOCK
62         select GENERIC_SMP_IDLE_THREAD
63         select GENERIC_TIME_VSYSCALL if MMU && 64BIT
64         select HANDLE_DOMAIN_IRQ
65         select HAVE_ARCH_AUDITSYSCALL
66         select HAVE_ARCH_JUMP_LABEL if !XIP_KERNEL
67         select HAVE_ARCH_JUMP_LABEL_RELATIVE if !XIP_KERNEL
68         select HAVE_ARCH_KASAN if MMU && 64BIT
69         select HAVE_ARCH_KASAN_VMALLOC if MMU && 64BIT
70         select HAVE_ARCH_KFENCE if MMU && 64BIT
71         select HAVE_ARCH_KGDB if !XIP_KERNEL
72         select HAVE_ARCH_KGDB_QXFER_PKT
73         select HAVE_ARCH_MMAP_RND_BITS if MMU
74         select HAVE_ARCH_SECCOMP_FILTER
75         select HAVE_ARCH_TRACEHOOK
76         select HAVE_ARCH_TRANSPARENT_HUGEPAGE if 64BIT && MMU
77         select HAVE_ARCH_THREAD_STRUCT_WHITELIST
78         select HAVE_ARCH_VMAP_STACK if MMU && 64BIT
79         select HAVE_ASM_MODVERSIONS
80         select HAVE_CONTEXT_TRACKING
81         select HAVE_DEBUG_KMEMLEAK
82         select HAVE_DMA_CONTIGUOUS if MMU
83         select HAVE_EBPF_JIT if MMU
84         select HAVE_FUNCTION_ERROR_INJECTION
85         select HAVE_FUTEX_CMPXCHG if FUTEX
86         select HAVE_GCC_PLUGINS
87         select HAVE_GENERIC_VDSO if MMU && 64BIT
88         select HAVE_IRQ_TIME_ACCOUNTING
89         select HAVE_KPROBES if !XIP_KERNEL
90         select HAVE_KPROBES_ON_FTRACE if !XIP_KERNEL
91         select HAVE_KRETPROBES if !XIP_KERNEL
92         select HAVE_MOVE_PMD
93         select HAVE_MOVE_PUD
94         select HAVE_PCI
95         select HAVE_PERF_EVENTS
96         select HAVE_PERF_REGS
97         select HAVE_PERF_USER_STACK_DUMP
98         select HAVE_REGS_AND_STACK_ACCESS_API
99         select HAVE_FUNCTION_ARG_ACCESS_API
100         select HAVE_STACKPROTECTOR
101         select HAVE_SYSCALL_TRACEPOINTS
102         select IRQ_DOMAIN
103         select IRQ_FORCED_THREADING
104         select MODULES_USE_ELF_RELA if MODULES
105         select MODULE_SECTIONS if MODULES
106         select OF
107         select OF_EARLY_FLATTREE
108         select OF_IRQ
109         select PCI_DOMAINS_GENERIC if PCI
110         select PCI_MSI if PCI
111         select RISCV_INTC
112         select RISCV_TIMER if RISCV_SBI
113         select SPARSE_IRQ
114         select SYSCTL_EXCEPTION_TRACE
115         select THREAD_INFO_IN_TASK
116         select UACCESS_MEMCPY if !MMU
117         select ZONE_DMA32 if 64BIT
118
119 config ARCH_MMAP_RND_BITS_MIN
120         default 18 if 64BIT
121         default 8
122
123 # max bits determined by the following formula:
124 #  VA_BITS - PAGE_SHIFT - 3
125 config ARCH_MMAP_RND_BITS_MAX
126         default 24 if 64BIT # SV39 based
127         default 17
128
129 # set if we run in machine mode, cleared if we run in supervisor mode
130 config RISCV_M_MODE
131         bool
132         default !MMU
133
134 # set if we are running in S-mode and can use SBI calls
135 config RISCV_SBI
136         bool
137         depends on !RISCV_M_MODE
138         default y
139
140 config MMU
141         bool "MMU-based Paged Memory Management Support"
142         default y
143         help
144           Select if you want MMU-based virtualised addressing space
145           support by paged memory management. If unsure, say 'Y'.
146
147 config VA_BITS
148         int
149         default 32 if 32BIT
150         default 39 if 64BIT
151
152 config PA_BITS
153         int
154         default 34 if 32BIT
155         default 56 if 64BIT
156
157 config PAGE_OFFSET
158         hex
159         default 0xC0000000 if 32BIT && MAXPHYSMEM_1GB
160         default 0x80000000 if 64BIT && !MMU
161         default 0xffffffff80000000 if 64BIT && MAXPHYSMEM_2GB
162         default 0xffffffe000000000 if 64BIT && MAXPHYSMEM_128GB
163
164 config ARCH_FLATMEM_ENABLE
165         def_bool !NUMA
166
167 config ARCH_SPARSEMEM_ENABLE
168         def_bool y
169         depends on MMU
170         select SPARSEMEM_STATIC if 32BIT && SPARSEMEM
171         select SPARSEMEM_VMEMMAP_ENABLE if 64BIT
172
173 config ARCH_SELECT_MEMORY_MODEL
174         def_bool ARCH_SPARSEMEM_ENABLE
175
176 config ARCH_WANT_GENERAL_HUGETLB
177         def_bool y
178
179 config ARCH_SUPPORTS_UPROBES
180         def_bool y
181
182 config STACKTRACE_SUPPORT
183         def_bool y
184
185 config TRACE_IRQFLAGS_SUPPORT
186         def_bool y
187
188 config GENERIC_BUG
189         def_bool y
190         depends on BUG
191         select GENERIC_BUG_RELATIVE_POINTERS if 64BIT
192
193 config GENERIC_BUG_RELATIVE_POINTERS
194         bool
195
196 config GENERIC_CALIBRATE_DELAY
197         def_bool y
198
199 config GENERIC_CSUM
200         def_bool y
201
202 config GENERIC_HWEIGHT
203         def_bool y
204
205 config FIX_EARLYCON_MEM
206         def_bool MMU
207
208 config PGTABLE_LEVELS
209         int
210         default 3 if 64BIT
211         default 2
212
213 config LOCKDEP_SUPPORT
214         def_bool y
215
216 source "arch/riscv/Kconfig.socs"
217 source "arch/riscv/Kconfig.erratas"
218
219 menu "Platform type"
220
221 choice
222         prompt "Base ISA"
223         default ARCH_RV64I
224         help
225           This selects the base ISA that this kernel will target and must match
226           the target platform.
227
228 config ARCH_RV32I
229         bool "RV32I"
230         select 32BIT
231         select GENERIC_LIB_ASHLDI3
232         select GENERIC_LIB_ASHRDI3
233         select GENERIC_LIB_LSHRDI3
234         select GENERIC_LIB_UCMPDI2
235         select MMU
236
237 config ARCH_RV64I
238         bool "RV64I"
239         select 64BIT
240         select ARCH_SUPPORTS_INT128 if CC_HAS_INT128 && GCC_VERSION >= 50000
241         select HAVE_DYNAMIC_FTRACE if !XIP_KERNEL && MMU && $(cc-option,-fpatchable-function-entry=8)
242         select HAVE_DYNAMIC_FTRACE_WITH_REGS if HAVE_DYNAMIC_FTRACE
243         select HAVE_FTRACE_MCOUNT_RECORD if !XIP_KERNEL
244         select HAVE_FUNCTION_GRAPH_TRACER
245         select HAVE_FUNCTION_TRACER if !XIP_KERNEL
246         select SWIOTLB if MMU
247
248 endchoice
249
250 # We must be able to map all physical memory into the kernel, but the compiler
251 # is still a bit more efficient when generating code if it's setup in a manner
252 # such that it can only map 2GiB of memory.
253 choice
254         prompt "Kernel Code Model"
255         default CMODEL_MEDLOW if 32BIT
256         default CMODEL_MEDANY if 64BIT
257
258         config CMODEL_MEDLOW
259                 bool "medium low code model"
260         config CMODEL_MEDANY
261                 bool "medium any code model"
262 endchoice
263
264 config MODULE_SECTIONS
265         bool
266         select HAVE_MOD_ARCH_SPECIFIC
267
268 choice
269         prompt "Maximum Physical Memory"
270         default MAXPHYSMEM_1GB if 32BIT
271         default MAXPHYSMEM_2GB if 64BIT && CMODEL_MEDLOW
272         default MAXPHYSMEM_128GB if 64BIT && CMODEL_MEDANY
273
274         config MAXPHYSMEM_1GB
275                 depends on 32BIT
276                 bool "1GiB"
277         config MAXPHYSMEM_2GB
278                 depends on 64BIT && CMODEL_MEDLOW
279                 bool "2GiB"
280         config MAXPHYSMEM_128GB
281                 depends on 64BIT && CMODEL_MEDANY
282                 bool "128GiB"
283 endchoice
284
285
286 config SMP
287         bool "Symmetric Multi-Processing"
288         help
289           This enables support for systems with more than one CPU.  If
290           you say N here, the kernel will run on single and
291           multiprocessor machines, but will use only one CPU of a
292           multiprocessor machine. If you say Y here, the kernel will run
293           on many, but not all, single processor machines. On a single
294           processor machine, the kernel will run faster if you say N
295           here.
296
297           If you don't know what to do here, say N.
298
299 config NR_CPUS
300         int "Maximum number of CPUs (2-32)"
301         range 2 32
302         depends on SMP
303         default "8"
304
305 config HOTPLUG_CPU
306         bool "Support for hot-pluggable CPUs"
307         depends on SMP
308         select GENERIC_IRQ_MIGRATION
309         help
310
311           Say Y here to experiment with turning CPUs off and on.  CPUs
312           can be controlled through /sys/devices/system/cpu.
313
314           Say N if you want to disable CPU hotplug.
315
316 choice
317         prompt "CPU Tuning"
318         default TUNE_GENERIC
319
320 config TUNE_GENERIC
321         bool "generic"
322
323 endchoice
324
325 # Common NUMA Features
326 config NUMA
327         bool "NUMA Memory Allocation and Scheduler Support"
328         depends on SMP && MMU
329         select GENERIC_ARCH_NUMA
330         select OF_NUMA
331         select ARCH_SUPPORTS_NUMA_BALANCING
332         help
333           Enable NUMA (Non-Uniform Memory Access) support.
334
335           The kernel will try to allocate memory used by a CPU on the
336           local memory of the CPU and add some more NUMA awareness to the kernel.
337
338 config NODES_SHIFT
339         int "Maximum NUMA Nodes (as a power of 2)"
340         range 1 10
341         default "2"
342         depends on NUMA
343         help
344           Specify the maximum number of NUMA Nodes available on the target
345           system.  Increases memory reserved to accommodate various tables.
346
347 config USE_PERCPU_NUMA_NODE_ID
348         def_bool y
349         depends on NUMA
350
351 config NEED_PER_CPU_EMBED_FIRST_CHUNK
352         def_bool y
353         depends on NUMA
354
355 config RISCV_ISA_C
356         bool "Emit compressed instructions when building Linux"
357         default y
358         help
359            Adds "C" to the ISA subsets that the toolchain is allowed to emit
360            when building Linux, which results in compressed instructions in the
361            Linux binary.
362
363            If you don't know what to do here, say Y.
364
365 menu "supported PMU type"
366         depends on PERF_EVENTS
367
368 config RISCV_BASE_PMU
369         bool "Base Performance Monitoring Unit"
370         def_bool y
371         help
372           A base PMU that serves as a reference implementation and has limited
373           feature of perf.  It can run on any RISC-V machines so serves as the
374           fallback, but this option can also be disable to reduce kernel size.
375
376 endmenu
377
378 config FPU
379         bool "FPU support"
380         default y
381         help
382           Say N here if you want to disable all floating-point related procedure
383           in the kernel.
384
385           If you don't know what to do here, say Y.
386
387 endmenu
388
389 menu "Kernel features"
390
391 source "kernel/Kconfig.hz"
392
393 config RISCV_SBI_V01
394         bool "SBI v0.1 support"
395         default y
396         depends on RISCV_SBI
397         help
398           This config allows kernel to use SBI v0.1 APIs. This will be
399           deprecated in future once legacy M-mode software are no longer in use.
400
401 config KEXEC
402         bool "Kexec system call"
403         select KEXEC_CORE
404         select HOTPLUG_CPU if SMP
405         depends on MMU
406         help
407           kexec is a system call that implements the ability to shutdown your
408           current kernel, and to start another kernel. It is like a reboot
409           but it is independent of the system firmware. And like a reboot
410           you can start any kernel with it, not just Linux.
411
412           The name comes from the similarity to the exec system call.
413
414 config CRASH_DUMP
415         bool "Build kdump crash kernel"
416         help
417           Generate crash dump after being started by kexec. This should
418           be normally only set in special crash dump kernels which are
419           loaded in the main kernel with kexec-tools into a specially
420           reserved region and then later executed after a crash by
421           kdump/kexec.
422
423           For more details see Documentation/admin-guide/kdump/kdump.rst
424
425 endmenu
426
427 menu "Boot options"
428
429 config CMDLINE
430         string "Built-in kernel command line"
431         help
432           For most platforms, the arguments for the kernel's command line
433           are provided at run-time, during boot. However, there are cases
434           where either no arguments are being provided or the provided
435           arguments are insufficient or even invalid.
436
437           When that occurs, it is possible to define a built-in command
438           line here and choose how the kernel should use it later on.
439
440 choice
441         prompt "Built-in command line usage" if CMDLINE != ""
442         default CMDLINE_FALLBACK
443         help
444           Choose how the kernel will handle the provided built-in command
445           line.
446
447 config CMDLINE_FALLBACK
448         bool "Use bootloader kernel arguments if available"
449         help
450           Use the built-in command line as fallback in case we get nothing
451           during boot. This is the default behaviour.
452
453 config CMDLINE_EXTEND
454         bool "Extend bootloader kernel arguments"
455         help
456           The command-line arguments provided during boot will be
457           appended to the built-in command line. This is useful in
458           cases where the provided arguments are insufficient and
459           you don't want to or cannot modify them.
460
461
462 config CMDLINE_FORCE
463         bool "Always use the default kernel command string"
464         help
465           Always use the built-in command line, even if we get one during
466           boot. This is useful in case you need to override the provided
467           command line on systems where you don't have or want control
468           over it.
469
470 endchoice
471
472 config EFI_STUB
473         bool
474
475 config EFI
476         bool "UEFI runtime support"
477         depends on OF && !XIP_KERNEL
478         select LIBFDT
479         select UCS2_STRING
480         select EFI_PARAMS_FROM_FDT
481         select EFI_STUB
482         select EFI_GENERIC_STUB
483         select EFI_RUNTIME_WRAPPERS
484         select RISCV_ISA_C
485         depends on MMU
486         default y
487         help
488           This option provides support for runtime services provided
489           by UEFI firmware (such as non-volatile variables, realtime
490           clock, and platform reset). A UEFI stub is also provided to
491           allow the kernel to be booted as an EFI application. This
492           is only useful on systems that have UEFI firmware.
493
494 config CC_HAVE_STACKPROTECTOR_TLS
495         def_bool $(cc-option,-mstack-protector-guard=tls -mstack-protector-guard-reg=tp -mstack-protector-guard-offset=0)
496
497 config STACKPROTECTOR_PER_TASK
498         def_bool y
499         depends on !GCC_PLUGIN_RANDSTRUCT
500         depends on STACKPROTECTOR && CC_HAVE_STACKPROTECTOR_TLS
501
502 config PHYS_RAM_BASE_FIXED
503         bool "Explicitly specified physical RAM address"
504         default n
505
506 config PHYS_RAM_BASE
507         hex "Platform Physical RAM address"
508         depends on PHYS_RAM_BASE_FIXED
509         default "0x80000000"
510         help
511           This is the physical address of RAM in the system. It has to be
512           explicitly specified to run early relocations of read-write data
513           from flash to RAM.
514
515 config XIP_KERNEL
516         bool "Kernel Execute-In-Place from ROM"
517         depends on MMU && SPARSEMEM
518         # This prevents XIP from being enabled by all{yes,mod}config, which
519         # fail to build since XIP doesn't support large kernels.
520         depends on !COMPILE_TEST
521         select PHYS_RAM_BASE_FIXED
522         help
523           Execute-In-Place allows the kernel to run from non-volatile storage
524           directly addressable by the CPU, such as NOR flash. This saves RAM
525           space since the text section of the kernel is not loaded from flash
526           to RAM.  Read-write sections, such as the data section and stack,
527           are still copied to RAM.  The XIP kernel is not compressed since
528           it has to run directly from flash, so it will take more space to
529           store it.  The flash address used to link the kernel object files,
530           and for storing it, is configuration dependent. Therefore, if you
531           say Y here, you must know the proper physical address where to
532           store the kernel image depending on your own flash memory usage.
533
534           Also note that the make target becomes "make xipImage" rather than
535           "make zImage" or "make Image".  The final kernel binary to put in
536           ROM memory will be arch/riscv/boot/xipImage.
537
538           SPARSEMEM is required because the kernel text and rodata that are
539           flash resident are not backed by memmap, then any attempt to get
540           a struct page on those regions will trigger a fault.
541
542           If unsure, say N.
543
544 config XIP_PHYS_ADDR
545         hex "XIP Kernel Physical Location"
546         depends on XIP_KERNEL
547         default "0x21000000"
548         help
549           This is the physical address in your flash memory the kernel will
550           be linked for and stored to.  This address is dependent on your
551           own flash usage.
552
553 endmenu
554
555 config BUILTIN_DTB
556         bool
557         depends on OF
558         default y if XIP_KERNEL
559
560 menu "Power management options"
561
562 source "kernel/power/Kconfig"
563
564 endmenu
565
566 source "drivers/firmware/Kconfig"