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