]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - arch/arm64/Kconfig
arm64: mm: enable RCU fast_gup
[karo-tx-linux.git] / arch / arm64 / Kconfig
1 config ARM64
2         def_bool y
3         select ARCH_HAS_ATOMIC64_DEC_IF_POSITIVE
4         select ARCH_HAS_SG_CHAIN
5         select ARCH_HAS_TICK_BROADCAST if GENERIC_CLOCKEVENTS_BROADCAST
6         select ARCH_USE_CMPXCHG_LOCKREF
7         select ARCH_SUPPORTS_ATOMIC_RMW
8         select ARCH_WANT_OPTIONAL_GPIOLIB
9         select ARCH_WANT_COMPAT_IPC_PARSE_VERSION
10         select ARCH_WANT_FRAME_POINTERS
11         select ARM_AMBA
12         select ARM_ARCH_TIMER
13         select ARM_GIC
14         select AUDIT_ARCH_COMPAT_GENERIC
15         select ARM_GIC_V3
16         select BUILDTIME_EXTABLE_SORT
17         select CLONE_BACKWARDS
18         select COMMON_CLK
19         select CPU_PM if (SUSPEND || CPU_IDLE)
20         select DCACHE_WORD_ACCESS
21         select GENERIC_ALLOCATOR
22         select GENERIC_CLOCKEVENTS
23         select GENERIC_CLOCKEVENTS_BROADCAST if SMP
24         select GENERIC_CPU_AUTOPROBE
25         select GENERIC_EARLY_IOREMAP
26         select GENERIC_IOMAP
27         select GENERIC_IRQ_PROBE
28         select GENERIC_IRQ_SHOW
29         select GENERIC_SCHED_CLOCK
30         select GENERIC_SMP_IDLE_THREAD
31         select GENERIC_STRNCPY_FROM_USER
32         select GENERIC_STRNLEN_USER
33         select GENERIC_TIME_VSYSCALL
34         select HANDLE_DOMAIN_IRQ
35         select HARDIRQS_SW_RESEND
36         select HAVE_ARCH_AUDITSYSCALL
37         select HAVE_ARCH_JUMP_LABEL
38         select HAVE_ARCH_KGDB
39         select HAVE_ARCH_TRACEHOOK
40         select HAVE_BPF_JIT
41         select HAVE_C_RECORDMCOUNT
42         select HAVE_CC_STACKPROTECTOR
43         select HAVE_DEBUG_BUGVERBOSE
44         select HAVE_DEBUG_KMEMLEAK
45         select HAVE_DMA_API_DEBUG
46         select HAVE_DMA_ATTRS
47         select HAVE_DMA_CONTIGUOUS
48         select HAVE_DYNAMIC_FTRACE
49         select HAVE_EFFICIENT_UNALIGNED_ACCESS
50         select HAVE_FTRACE_MCOUNT_RECORD
51         select HAVE_FUNCTION_TRACER
52         select HAVE_FUNCTION_GRAPH_TRACER
53         select HAVE_GENERIC_DMA_COHERENT
54         select HAVE_HW_BREAKPOINT if PERF_EVENTS
55         select HAVE_MEMBLOCK
56         select HAVE_PATA_PLATFORM
57         select HAVE_PERF_EVENTS
58         select HAVE_PERF_REGS
59         select HAVE_PERF_USER_STACK_DUMP
60         select HAVE_RCU_TABLE_FREE
61         select HAVE_SYSCALL_TRACEPOINTS
62         select IRQ_DOMAIN
63         select MODULES_USE_ELF_RELA
64         select NO_BOOTMEM
65         select OF
66         select OF_EARLY_FLATTREE
67         select OF_RESERVED_MEM
68         select PERF_USE_VMALLOC
69         select POWER_RESET
70         select POWER_SUPPLY
71         select RTC_LIB
72         select SPARSE_IRQ
73         select SYSCTL_EXCEPTION_TRACE
74         select HAVE_CONTEXT_TRACKING
75         help
76           ARM 64-bit (AArch64) Linux support.
77
78 config 64BIT
79         def_bool y
80
81 config ARCH_PHYS_ADDR_T_64BIT
82         def_bool y
83
84 config MMU
85         def_bool y
86
87 config NO_IOPORT_MAP
88         def_bool y
89
90 config STACKTRACE_SUPPORT
91         def_bool y
92
93 config LOCKDEP_SUPPORT
94         def_bool y
95
96 config TRACE_IRQFLAGS_SUPPORT
97         def_bool y
98
99 config RWSEM_XCHGADD_ALGORITHM
100         def_bool y
101
102 config GENERIC_HWEIGHT
103         def_bool y
104
105 config GENERIC_CSUM
106         def_bool y
107
108 config GENERIC_CALIBRATE_DELAY
109         def_bool y
110
111 config ZONE_DMA
112         def_bool y
113
114 config HAVE_GENERIC_RCU_GUP
115         def_bool y
116
117 config ARCH_DMA_ADDR_T_64BIT
118         def_bool y
119
120 config NEED_DMA_MAP_STATE
121         def_bool y
122
123 config NEED_SG_DMA_LENGTH
124         def_bool y
125
126 config SWIOTLB
127         def_bool y
128
129 config IOMMU_HELPER
130         def_bool SWIOTLB
131
132 config KERNEL_MODE_NEON
133         def_bool y
134
135 config FIX_EARLYCON_MEM
136         def_bool y
137
138 source "init/Kconfig"
139
140 source "kernel/Kconfig.freezer"
141
142 menu "Platform selection"
143
144 config ARCH_THUNDER
145         bool "Cavium Inc. Thunder SoC Family"
146         help
147           This enables support for Cavium's Thunder Family of SoCs.
148
149 config ARCH_VEXPRESS
150         bool "ARMv8 software model (Versatile Express)"
151         select ARCH_REQUIRE_GPIOLIB
152         select COMMON_CLK_VERSATILE
153         select POWER_RESET_VEXPRESS
154         select VEXPRESS_CONFIG
155         help
156           This enables support for the ARMv8 software model (Versatile
157           Express).
158
159 config ARCH_XGENE
160         bool "AppliedMicro X-Gene SOC Family"
161         help
162           This enables support for AppliedMicro X-Gene SOC Family
163
164 endmenu
165
166 menu "Bus support"
167
168 config ARM_AMBA
169         bool
170
171 endmenu
172
173 menu "Kernel Features"
174
175 choice
176         prompt "Page size"
177         default ARM64_4K_PAGES
178         help
179           Page size (translation granule) configuration.
180
181 config ARM64_4K_PAGES
182         bool "4KB"
183         help
184           This feature enables 4KB pages support.
185
186 config ARM64_64K_PAGES
187         bool "64KB"
188         help
189           This feature enables 64KB pages support (4KB by default)
190           allowing only two levels of page tables and faster TLB
191           look-up. AArch32 emulation is not available when this feature
192           is enabled.
193
194 endchoice
195
196 choice
197         prompt "Virtual address space size"
198         default ARM64_VA_BITS_39 if ARM64_4K_PAGES
199         default ARM64_VA_BITS_42 if ARM64_64K_PAGES
200         help
201           Allows choosing one of multiple possible virtual address
202           space sizes. The level of translation table is determined by
203           a combination of page size and virtual address space size.
204
205 config ARM64_VA_BITS_39
206         bool "39-bit"
207         depends on ARM64_4K_PAGES
208
209 config ARM64_VA_BITS_42
210         bool "42-bit"
211         depends on ARM64_64K_PAGES
212
213 config ARM64_VA_BITS_48
214         bool "48-bit"
215         depends on BROKEN
216
217 endchoice
218
219 config ARM64_VA_BITS
220         int
221         default 39 if ARM64_VA_BITS_39
222         default 42 if ARM64_VA_BITS_42
223         default 48 if ARM64_VA_BITS_48
224
225 config ARM64_PGTABLE_LEVELS
226         int
227         default 2 if ARM64_64K_PAGES && ARM64_VA_BITS_42
228         default 3 if ARM64_64K_PAGES && ARM64_VA_BITS_48
229         default 3 if ARM64_4K_PAGES && ARM64_VA_BITS_39
230         default 4 if ARM64_4K_PAGES && ARM64_VA_BITS_48
231
232 config CPU_BIG_ENDIAN
233        bool "Build big-endian kernel"
234        help
235          Say Y if you plan on running a kernel in big-endian mode.
236
237 config SMP
238         bool "Symmetric Multi-Processing"
239         help
240           This enables support for systems with more than one CPU.  If
241           you say N here, the kernel will run on single and
242           multiprocessor machines, but will use only one CPU of a
243           multiprocessor machine. If you say Y here, the kernel will run
244           on many, but not all, single processor machines. On a single
245           processor machine, the kernel will run faster if you say N
246           here.
247
248           If you don't know what to do here, say N.
249
250 config SCHED_MC
251         bool "Multi-core scheduler support"
252         depends on SMP
253         help
254           Multi-core scheduler support improves the CPU scheduler's decision
255           making when dealing with multi-core CPU chips at a cost of slightly
256           increased overhead in some places. If unsure say N here.
257
258 config SCHED_SMT
259         bool "SMT scheduler support"
260         depends on SMP
261         help
262           Improves the CPU scheduler's decision making when dealing with
263           MultiThreading at a cost of slightly increased overhead in some
264           places. If unsure say N here.
265
266 config NR_CPUS
267         int "Maximum number of CPUs (2-64)"
268         range 2 64
269         depends on SMP
270         # These have to remain sorted largest to smallest
271         default "64"
272
273 config HOTPLUG_CPU
274         bool "Support for hot-pluggable CPUs"
275         depends on SMP
276         help
277           Say Y here to experiment with turning CPUs off and on.  CPUs
278           can be controlled through /sys/devices/system/cpu.
279
280 source kernel/Kconfig.preempt
281
282 config HZ
283         int
284         default 100
285
286 config ARCH_HAS_HOLES_MEMORYMODEL
287         def_bool y if SPARSEMEM
288
289 config ARCH_SPARSEMEM_ENABLE
290         def_bool y
291         select SPARSEMEM_VMEMMAP_ENABLE
292
293 config ARCH_SPARSEMEM_DEFAULT
294         def_bool ARCH_SPARSEMEM_ENABLE
295
296 config ARCH_SELECT_MEMORY_MODEL
297         def_bool ARCH_SPARSEMEM_ENABLE
298
299 config HAVE_ARCH_PFN_VALID
300         def_bool ARCH_HAS_HOLES_MEMORYMODEL || !SPARSEMEM
301
302 config HW_PERF_EVENTS
303         bool "Enable hardware performance counter support for perf events"
304         depends on PERF_EVENTS
305         default y
306         help
307           Enable hardware performance counter support for perf events. If
308           disabled, perf events will use software events only.
309
310 config SYS_SUPPORTS_HUGETLBFS
311         def_bool y
312
313 config ARCH_WANT_GENERAL_HUGETLB
314         def_bool y
315
316 config ARCH_WANT_HUGE_PMD_SHARE
317         def_bool y if !ARM64_64K_PAGES
318
319 config HAVE_ARCH_TRANSPARENT_HUGEPAGE
320         def_bool y
321
322 config ARCH_HAS_CACHE_LINE_SIZE
323         def_bool y
324
325 source "mm/Kconfig"
326
327 config XEN_DOM0
328         def_bool y
329         depends on XEN
330
331 config XEN
332         bool "Xen guest support on ARM64 (EXPERIMENTAL)"
333         depends on ARM64 && OF
334         select SWIOTLB_XEN
335         help
336           Say Y if you want to run Linux in a Virtual Machine on Xen on ARM64.
337
338 config FORCE_MAX_ZONEORDER
339         int
340         default "14" if (ARM64_64K_PAGES && TRANSPARENT_HUGEPAGE)
341         default "11"
342
343 endmenu
344
345 menu "Boot options"
346
347 config CMDLINE
348         string "Default kernel command string"
349         default ""
350         help
351           Provide a set of default command-line options at build time by
352           entering them here. As a minimum, you should specify the the
353           root device (e.g. root=/dev/nfs).
354
355 config CMDLINE_FORCE
356         bool "Always use the default kernel command string"
357         help
358           Always use the default kernel command string, even if the boot
359           loader passes other arguments to the kernel.
360           This is useful if you cannot or don't want to change the
361           command-line options your boot loader passes to the kernel.
362
363 config EFI_STUB
364         bool
365
366 config EFI
367         bool "UEFI runtime support"
368         depends on OF && !CPU_BIG_ENDIAN
369         select LIBFDT
370         select UCS2_STRING
371         select EFI_PARAMS_FROM_FDT
372         select EFI_RUNTIME_WRAPPERS
373         select EFI_STUB
374         select EFI_ARMSTUB
375         default y
376         help
377           This option provides support for runtime services provided
378           by UEFI firmware (such as non-volatile variables, realtime
379           clock, and platform reset). A UEFI stub is also provided to
380           allow the kernel to be booted as an EFI application. This
381           is only useful on systems that have UEFI firmware.
382
383 endmenu
384
385 menu "Userspace binary formats"
386
387 source "fs/Kconfig.binfmt"
388
389 config COMPAT
390         bool "Kernel support for 32-bit EL0"
391         depends on !ARM64_64K_PAGES
392         select COMPAT_BINFMT_ELF
393         select HAVE_UID16
394         select OLD_SIGSUSPEND3
395         select COMPAT_OLD_SIGACTION
396         help
397           This option enables support for a 32-bit EL0 running under a 64-bit
398           kernel at EL1. AArch32-specific components such as system calls,
399           the user helper functions, VFP support and the ptrace interface are
400           handled appropriately by the kernel.
401
402           If you want to execute 32-bit userspace applications, say Y.
403
404 config SYSVIPC_COMPAT
405         def_bool y
406         depends on COMPAT && SYSVIPC
407
408 endmenu
409
410 menu "Power management options"
411
412 source "kernel/power/Kconfig"
413
414 config ARCH_SUSPEND_POSSIBLE
415         def_bool y
416
417 config ARM64_CPU_SUSPEND
418         def_bool PM_SLEEP
419
420 endmenu
421
422 menu "CPU Power Management"
423
424 source "drivers/cpuidle/Kconfig"
425
426 source "drivers/cpufreq/Kconfig"
427
428 endmenu
429
430 source "net/Kconfig"
431
432 source "drivers/Kconfig"
433
434 source "drivers/firmware/Kconfig"
435
436 source "fs/Kconfig"
437
438 source "arch/arm64/kvm/Kconfig"
439
440 source "arch/arm64/Kconfig.debug"
441
442 source "security/Kconfig"
443
444 source "crypto/Kconfig"
445 if CRYPTO
446 source "arch/arm64/crypto/Kconfig"
447 endif
448
449 source "lib/Kconfig"