riscv: disable stack-protector for vDSO
[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_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_GCOV_PROFILE_ALL
22         select ARCH_HAS_GIGANTIC_PAGE
23         select ARCH_HAS_KCOV
24         select ARCH_HAS_MMIOWB
25         select ARCH_HAS_PTE_SPECIAL
26         select ARCH_HAS_SET_DIRECT_MAP
27         select ARCH_HAS_SET_MEMORY
28         select ARCH_HAS_STRICT_KERNEL_RWX if MMU
29         select ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT if MMU
30         select ARCH_WANT_FRAME_POINTERS
31         select ARCH_WANT_HUGE_PMD_SHARE if 64BIT
32         select CLONE_BACKWARDS
33         select COMMON_CLK
34         select EDAC_SUPPORT
35         select GENERIC_ARCH_TOPOLOGY if SMP
36         select GENERIC_ATOMIC64 if !64BIT
37         select GENERIC_CLOCKEVENTS
38         select GENERIC_GETTIMEOFDAY if HAVE_GENERIC_VDSO
39         select GENERIC_IOREMAP
40         select GENERIC_IRQ_MULTI_HANDLER
41         select GENERIC_IRQ_SHOW
42         select GENERIC_PCI_IOMAP
43         select GENERIC_PTDUMP if MMU
44         select GENERIC_SCHED_CLOCK
45         select GENERIC_SMP_IDLE_THREAD
46         select GENERIC_STRNCPY_FROM_USER if MMU
47         select GENERIC_STRNLEN_USER if MMU
48         select GENERIC_TIME_VSYSCALL if MMU && 64BIT
49         select HANDLE_DOMAIN_IRQ
50         select HAVE_ARCH_AUDITSYSCALL
51         select HAVE_ARCH_JUMP_LABEL
52         select HAVE_ARCH_JUMP_LABEL_RELATIVE
53         select HAVE_ARCH_KASAN if MMU && 64BIT
54         select HAVE_ARCH_KGDB
55         select HAVE_ARCH_KGDB_QXFER_PKT
56         select HAVE_ARCH_MMAP_RND_BITS if MMU
57         select HAVE_ARCH_SECCOMP_FILTER
58         select HAVE_ARCH_TRACEHOOK
59         select HAVE_ASM_MODVERSIONS
60         select HAVE_CONTEXT_TRACKING
61         select HAVE_COPY_THREAD_TLS
62         select HAVE_DEBUG_KMEMLEAK
63         select HAVE_DMA_CONTIGUOUS if MMU
64         select HAVE_EBPF_JIT if MMU
65         select HAVE_FUTEX_CMPXCHG if FUTEX
66         select HAVE_GCC_PLUGINS
67         select HAVE_GENERIC_VDSO if MMU && 64BIT
68         select HAVE_PCI
69         select HAVE_PERF_EVENTS
70         select HAVE_PERF_REGS
71         select HAVE_PERF_USER_STACK_DUMP
72         select HAVE_STACKPROTECTOR
73         select HAVE_SYSCALL_TRACEPOINTS
74         select IRQ_DOMAIN
75         select MODULES_USE_ELF_RELA if MODULES
76         select MODULE_SECTIONS if MODULES
77         select OF
78         select OF_EARLY_FLATTREE
79         select OF_IRQ
80         select PCI_DOMAINS_GENERIC if PCI
81         select PCI_MSI if PCI
82         select RISCV_INTC
83         select RISCV_TIMER
84         select SPARSEMEM_STATIC if 32BIT
85         select SPARSE_IRQ
86         select SYSCTL_EXCEPTION_TRACE
87         select THREAD_INFO_IN_TASK
88
89 config ARCH_MMAP_RND_BITS_MIN
90         default 18 if 64BIT
91         default 8
92
93 # max bits determined by the following formula:
94 #  VA_BITS - PAGE_SHIFT - 3
95 config ARCH_MMAP_RND_BITS_MAX
96         default 24 if 64BIT # SV39 based
97         default 17
98
99 # set if we run in machine mode, cleared if we run in supervisor mode
100 config RISCV_M_MODE
101         bool
102         default !MMU
103
104 # set if we are running in S-mode and can use SBI calls
105 config RISCV_SBI
106         bool
107         depends on !RISCV_M_MODE
108         default y
109
110 config MMU
111         bool "MMU-based Paged Memory Management Support"
112         default y
113         help
114           Select if you want MMU-based virtualised addressing space
115           support by paged memory management. If unsure, say 'Y'.
116
117 config ZONE_DMA32
118         bool
119         default y if 64BIT
120
121 config VA_BITS
122         int
123         default 32 if 32BIT
124         default 39 if 64BIT
125
126 config PA_BITS
127         int
128         default 34 if 32BIT
129         default 56 if 64BIT
130
131 config PAGE_OFFSET
132         hex
133         default 0xC0000000 if 32BIT && MAXPHYSMEM_2GB
134         default 0x80000000 if 64BIT && !MMU
135         default 0xffffffff80000000 if 64BIT && MAXPHYSMEM_2GB
136         default 0xffffffe000000000 if 64BIT && MAXPHYSMEM_128GB
137
138 config ARCH_FLATMEM_ENABLE
139         def_bool y
140
141 config ARCH_SPARSEMEM_ENABLE
142         def_bool y
143         depends on MMU
144         select SPARSEMEM_VMEMMAP_ENABLE
145
146 config ARCH_SELECT_MEMORY_MODEL
147         def_bool ARCH_SPARSEMEM_ENABLE
148
149 config ARCH_WANT_GENERAL_HUGETLB
150         def_bool y
151
152 config ARCH_SUPPORTS_DEBUG_PAGEALLOC
153         def_bool y
154
155 config SYS_SUPPORTS_HUGETLBFS
156         depends on MMU
157         def_bool y
158
159 config STACKTRACE_SUPPORT
160         def_bool y
161
162 config TRACE_IRQFLAGS_SUPPORT
163         def_bool y
164
165 config GENERIC_BUG
166         def_bool y
167         depends on BUG
168         select GENERIC_BUG_RELATIVE_POINTERS if 64BIT
169
170 config GENERIC_BUG_RELATIVE_POINTERS
171         bool
172
173 config GENERIC_CALIBRATE_DELAY
174         def_bool y
175
176 config GENERIC_CSUM
177         def_bool y
178
179 config GENERIC_HWEIGHT
180         def_bool y
181
182 config FIX_EARLYCON_MEM
183         def_bool MMU
184
185 config PGTABLE_LEVELS
186         int
187         default 3 if 64BIT
188         default 2
189
190 config LOCKDEP_SUPPORT
191         def_bool y
192
193 source "arch/riscv/Kconfig.socs"
194
195 menu "Platform type"
196
197 choice
198         prompt "Base ISA"
199         default ARCH_RV64I
200         help
201           This selects the base ISA that this kernel will target and must match
202           the target platform.
203
204 config ARCH_RV32I
205         bool "RV32I"
206         select 32BIT
207         select GENERIC_LIB_ASHLDI3
208         select GENERIC_LIB_ASHRDI3
209         select GENERIC_LIB_LSHRDI3
210         select GENERIC_LIB_UCMPDI2
211         select MMU
212
213 config ARCH_RV64I
214         bool "RV64I"
215         select 64BIT
216         select ARCH_SUPPORTS_INT128 if CC_HAS_INT128 && GCC_VERSION >= 50000
217         select HAVE_DYNAMIC_FTRACE if MMU
218         select HAVE_DYNAMIC_FTRACE_WITH_REGS if HAVE_DYNAMIC_FTRACE
219         select HAVE_FTRACE_MCOUNT_RECORD
220         select HAVE_FUNCTION_GRAPH_TRACER
221         select HAVE_FUNCTION_TRACER
222         select SWIOTLB if MMU
223
224 endchoice
225
226 # We must be able to map all physical memory into the kernel, but the compiler
227 # is still a bit more efficient when generating code if it's setup in a manner
228 # such that it can only map 2GiB of memory.
229 choice
230         prompt "Kernel Code Model"
231         default CMODEL_MEDLOW if 32BIT
232         default CMODEL_MEDANY if 64BIT
233
234         config CMODEL_MEDLOW
235                 bool "medium low code model"
236         config CMODEL_MEDANY
237                 bool "medium any code model"
238 endchoice
239
240 config MODULE_SECTIONS
241         bool
242         select HAVE_MOD_ARCH_SPECIFIC
243
244 choice
245         prompt "Maximum Physical Memory"
246         default MAXPHYSMEM_2GB if 32BIT
247         default MAXPHYSMEM_2GB if 64BIT && CMODEL_MEDLOW
248         default MAXPHYSMEM_128GB if 64BIT && CMODEL_MEDANY
249
250         config MAXPHYSMEM_2GB
251                 bool "2GiB"
252         config MAXPHYSMEM_128GB
253                 depends on 64BIT && CMODEL_MEDANY
254                 bool "128GiB"
255 endchoice
256
257
258 config SMP
259         bool "Symmetric Multi-Processing"
260         help
261           This enables support for systems with more than one CPU.  If
262           you say N here, the kernel will run on single and
263           multiprocessor machines, but will use only one CPU of a
264           multiprocessor machine. If you say Y here, the kernel will run
265           on many, but not all, single processor machines. On a single
266           processor machine, the kernel will run faster if you say N
267           here.
268
269           If you don't know what to do here, say N.
270
271 config NR_CPUS
272         int "Maximum number of CPUs (2-32)"
273         range 2 32
274         depends on SMP
275         default "8"
276
277 config HOTPLUG_CPU
278         bool "Support for hot-pluggable CPUs"
279         depends on SMP
280         select GENERIC_IRQ_MIGRATION
281         help
282
283           Say Y here to experiment with turning CPUs off and on.  CPUs
284           can be controlled through /sys/devices/system/cpu.
285
286           Say N if you want to disable CPU hotplug.
287
288 choice
289         prompt "CPU Tuning"
290         default TUNE_GENERIC
291
292 config TUNE_GENERIC
293         bool "generic"
294
295 endchoice
296
297 config RISCV_ISA_C
298         bool "Emit compressed instructions when building Linux"
299         default y
300         help
301            Adds "C" to the ISA subsets that the toolchain is allowed to emit
302            when building Linux, which results in compressed instructions in the
303            Linux binary.
304
305            If you don't know what to do here, say Y.
306
307 menu "supported PMU type"
308         depends on PERF_EVENTS
309
310 config RISCV_BASE_PMU
311         bool "Base Performance Monitoring Unit"
312         def_bool y
313         help
314           A base PMU that serves as a reference implementation and has limited
315           feature of perf.  It can run on any RISC-V machines so serves as the
316           fallback, but this option can also be disable to reduce kernel size.
317
318 endmenu
319
320 config FPU
321         bool "FPU support"
322         default y
323         help
324           Say N here if you want to disable all floating-point related procedure
325           in the kernel.
326
327           If you don't know what to do here, say Y.
328
329 endmenu
330
331 menu "Kernel features"
332
333 source "kernel/Kconfig.hz"
334
335 config SECCOMP
336         bool "Enable seccomp to safely compute untrusted bytecode"
337         help
338           This kernel feature is useful for number crunching applications
339           that may need to compute untrusted bytecode during their
340           execution. By using pipes or other transports made available to
341           the process as file descriptors supporting the read/write
342           syscalls, it's possible to isolate those applications in
343           their own address space using seccomp. Once seccomp is
344           enabled via prctl(PR_SET_SECCOMP), it cannot be disabled
345           and the task is only allowed to execute a few safe syscalls
346           defined by each seccomp mode.
347
348 config RISCV_SBI_V01
349         bool "SBI v0.1 support"
350         default y
351         depends on RISCV_SBI
352         help
353           This config allows kernel to use SBI v0.1 APIs. This will be
354           deprecated in future once legacy M-mode software are no longer in use.
355 endmenu
356
357 menu "Boot options"
358
359 config CMDLINE
360         string "Built-in kernel command line"
361         help
362           For most platforms, the arguments for the kernel's command line
363           are provided at run-time, during boot. However, there are cases
364           where either no arguments are being provided or the provided
365           arguments are insufficient or even invalid.
366
367           When that occurs, it is possible to define a built-in command
368           line here and choose how the kernel should use it later on.
369
370 choice
371         prompt "Built-in command line usage" if CMDLINE != ""
372         default CMDLINE_FALLBACK
373         help
374           Choose how the kernel will handle the provided built-in command
375           line.
376
377 config CMDLINE_FALLBACK
378         bool "Use bootloader kernel arguments if available"
379         help
380           Use the built-in command line as fallback in case we get nothing
381           during boot. This is the default behaviour.
382
383 config CMDLINE_EXTEND
384         bool "Extend bootloader kernel arguments"
385         help
386           The command-line arguments provided during boot will be
387           appended to the built-in command line. This is useful in
388           cases where the provided arguments are insufficient and
389           you don't want to or cannot modify them.
390
391
392 config CMDLINE_FORCE
393         bool "Always use the default kernel command string"
394         help
395           Always use the built-in command line, even if we get one during
396           boot. This is useful in case you need to override the provided
397           command line on systems where you don't have or want control
398           over it.
399
400 endchoice
401
402 endmenu
403
404 config BUILTIN_DTB
405         def_bool n
406         depends on RISCV_M_MODE
407         depends on OF
408
409 menu "Power management options"
410
411 source "kernel/power/Kconfig"
412
413 endmenu