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