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