1ffd9a05206bf7b864b984d4b075ff348ba6f17a
[cascardo/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 ARCH_DMA_ADDR_T_64BIT
115         def_bool y
116
117 config NEED_DMA_MAP_STATE
118         def_bool y
119
120 config NEED_SG_DMA_LENGTH
121         def_bool y
122
123 config SWIOTLB
124         def_bool y
125
126 config IOMMU_HELPER
127         def_bool SWIOTLB
128
129 config KERNEL_MODE_NEON
130         def_bool y
131
132 config FIX_EARLYCON_MEM
133         def_bool y
134
135 source "init/Kconfig"
136
137 source "kernel/Kconfig.freezer"
138
139 menu "Platform selection"
140
141 config ARCH_THUNDER
142         bool "Cavium Inc. Thunder SoC Family"
143         help
144           This enables support for Cavium's Thunder Family of SoCs.
145
146 config ARCH_VEXPRESS
147         bool "ARMv8 software model (Versatile Express)"
148         select ARCH_REQUIRE_GPIOLIB
149         select COMMON_CLK_VERSATILE
150         select POWER_RESET_VEXPRESS
151         select VEXPRESS_CONFIG
152         help
153           This enables support for the ARMv8 software model (Versatile
154           Express).
155
156 config ARCH_XGENE
157         bool "AppliedMicro X-Gene SOC Family"
158         help
159           This enables support for AppliedMicro X-Gene SOC Family
160
161 endmenu
162
163 menu "Bus support"
164
165 config ARM_AMBA
166         bool
167
168 endmenu
169
170 menu "Kernel Features"
171
172 choice
173         prompt "Page size"
174         default ARM64_4K_PAGES
175         help
176           Page size (translation granule) configuration.
177
178 config ARM64_4K_PAGES
179         bool "4KB"
180         help
181           This feature enables 4KB pages support.
182
183 config ARM64_64K_PAGES
184         bool "64KB"
185         help
186           This feature enables 64KB pages support (4KB by default)
187           allowing only two levels of page tables and faster TLB
188           look-up. AArch32 emulation is not available when this feature
189           is enabled.
190
191 endchoice
192
193 choice
194         prompt "Virtual address space size"
195         default ARM64_VA_BITS_39 if ARM64_4K_PAGES
196         default ARM64_VA_BITS_42 if ARM64_64K_PAGES
197         help
198           Allows choosing one of multiple possible virtual address
199           space sizes. The level of translation table is determined by
200           a combination of page size and virtual address space size.
201
202 config ARM64_VA_BITS_39
203         bool "39-bit"
204         depends on ARM64_4K_PAGES
205
206 config ARM64_VA_BITS_42
207         bool "42-bit"
208         depends on ARM64_64K_PAGES
209
210 config ARM64_VA_BITS_48
211         bool "48-bit"
212         depends on BROKEN
213
214 endchoice
215
216 config ARM64_VA_BITS
217         int
218         default 39 if ARM64_VA_BITS_39
219         default 42 if ARM64_VA_BITS_42
220         default 48 if ARM64_VA_BITS_48
221
222 config ARM64_PGTABLE_LEVELS
223         int
224         default 2 if ARM64_64K_PAGES && ARM64_VA_BITS_42
225         default 3 if ARM64_64K_PAGES && ARM64_VA_BITS_48
226         default 3 if ARM64_4K_PAGES && ARM64_VA_BITS_39
227         default 4 if ARM64_4K_PAGES && ARM64_VA_BITS_48
228
229 config CPU_BIG_ENDIAN
230        bool "Build big-endian kernel"
231        help
232          Say Y if you plan on running a kernel in big-endian mode.
233
234 config SMP
235         bool "Symmetric Multi-Processing"
236         help
237           This enables support for systems with more than one CPU.  If
238           you say N here, the kernel will run on single and
239           multiprocessor machines, but will use only one CPU of a
240           multiprocessor machine. If you say Y here, the kernel will run
241           on many, but not all, single processor machines. On a single
242           processor machine, the kernel will run faster if you say N
243           here.
244
245           If you don't know what to do here, say N.
246
247 config SCHED_MC
248         bool "Multi-core scheduler support"
249         depends on SMP
250         help
251           Multi-core scheduler support improves the CPU scheduler's decision
252           making when dealing with multi-core CPU chips at a cost of slightly
253           increased overhead in some places. If unsure say N here.
254
255 config SCHED_SMT
256         bool "SMT scheduler support"
257         depends on SMP
258         help
259           Improves the CPU scheduler's decision making when dealing with
260           MultiThreading at a cost of slightly increased overhead in some
261           places. If unsure say N here.
262
263 config NR_CPUS
264         int "Maximum number of CPUs (2-64)"
265         range 2 64
266         depends on SMP
267         # These have to remain sorted largest to smallest
268         default "64"
269
270 config HOTPLUG_CPU
271         bool "Support for hot-pluggable CPUs"
272         depends on SMP
273         help
274           Say Y here to experiment with turning CPUs off and on.  CPUs
275           can be controlled through /sys/devices/system/cpu.
276
277 source kernel/Kconfig.preempt
278
279 config HZ
280         int
281         default 100
282
283 config ARCH_HAS_HOLES_MEMORYMODEL
284         def_bool y if SPARSEMEM
285
286 config ARCH_SPARSEMEM_ENABLE
287         def_bool y
288         select SPARSEMEM_VMEMMAP_ENABLE
289
290 config ARCH_SPARSEMEM_DEFAULT
291         def_bool ARCH_SPARSEMEM_ENABLE
292
293 config ARCH_SELECT_MEMORY_MODEL
294         def_bool ARCH_SPARSEMEM_ENABLE
295
296 config HAVE_ARCH_PFN_VALID
297         def_bool ARCH_HAS_HOLES_MEMORYMODEL || !SPARSEMEM
298
299 config HW_PERF_EVENTS
300         bool "Enable hardware performance counter support for perf events"
301         depends on PERF_EVENTS
302         default y
303         help
304           Enable hardware performance counter support for perf events. If
305           disabled, perf events will use software events only.
306
307 config SYS_SUPPORTS_HUGETLBFS
308         def_bool y
309
310 config ARCH_WANT_GENERAL_HUGETLB
311         def_bool y
312
313 config ARCH_WANT_HUGE_PMD_SHARE
314         def_bool y if !ARM64_64K_PAGES
315
316 config HAVE_ARCH_TRANSPARENT_HUGEPAGE
317         def_bool y
318
319 config ARCH_HAS_CACHE_LINE_SIZE
320         def_bool y
321
322 source "mm/Kconfig"
323
324 config XEN_DOM0
325         def_bool y
326         depends on XEN
327
328 config XEN
329         bool "Xen guest support on ARM64 (EXPERIMENTAL)"
330         depends on ARM64 && OF
331         select SWIOTLB_XEN
332         help
333           Say Y if you want to run Linux in a Virtual Machine on Xen on ARM64.
334
335 config FORCE_MAX_ZONEORDER
336         int
337         default "14" if (ARM64_64K_PAGES && TRANSPARENT_HUGEPAGE)
338         default "11"
339
340 endmenu
341
342 menu "Boot options"
343
344 config CMDLINE
345         string "Default kernel command string"
346         default ""
347         help
348           Provide a set of default command-line options at build time by
349           entering them here. As a minimum, you should specify the the
350           root device (e.g. root=/dev/nfs).
351
352 config CMDLINE_FORCE
353         bool "Always use the default kernel command string"
354         help
355           Always use the default kernel command string, even if the boot
356           loader passes other arguments to the kernel.
357           This is useful if you cannot or don't want to change the
358           command-line options your boot loader passes to the kernel.
359
360 config EFI_STUB
361         bool
362
363 config EFI
364         bool "UEFI runtime support"
365         depends on OF && !CPU_BIG_ENDIAN
366         select LIBFDT
367         select UCS2_STRING
368         select EFI_PARAMS_FROM_FDT
369         select EFI_RUNTIME_WRAPPERS
370         select EFI_STUB
371         select EFI_ARMSTUB
372         default y
373         help
374           This option provides support for runtime services provided
375           by UEFI firmware (such as non-volatile variables, realtime
376           clock, and platform reset). A UEFI stub is also provided to
377           allow the kernel to be booted as an EFI application. This
378           is only useful on systems that have UEFI firmware.
379
380 endmenu
381
382 menu "Userspace binary formats"
383
384 source "fs/Kconfig.binfmt"
385
386 config COMPAT
387         bool "Kernel support for 32-bit EL0"
388         depends on !ARM64_64K_PAGES
389         select COMPAT_BINFMT_ELF
390         select HAVE_UID16
391         select OLD_SIGSUSPEND3
392         select COMPAT_OLD_SIGACTION
393         help
394           This option enables support for a 32-bit EL0 running under a 64-bit
395           kernel at EL1. AArch32-specific components such as system calls,
396           the user helper functions, VFP support and the ptrace interface are
397           handled appropriately by the kernel.
398
399           If you want to execute 32-bit userspace applications, say Y.
400
401 config SYSVIPC_COMPAT
402         def_bool y
403         depends on COMPAT && SYSVIPC
404
405 endmenu
406
407 menu "Power management options"
408
409 source "kernel/power/Kconfig"
410
411 config ARCH_SUSPEND_POSSIBLE
412         def_bool y
413
414 config ARM64_CPU_SUSPEND
415         def_bool PM_SLEEP
416
417 endmenu
418
419 menu "CPU Power Management"
420
421 source "drivers/cpuidle/Kconfig"
422
423 source "drivers/cpufreq/Kconfig"
424
425 endmenu
426
427 source "net/Kconfig"
428
429 source "drivers/Kconfig"
430
431 source "drivers/firmware/Kconfig"
432
433 source "fs/Kconfig"
434
435 source "arch/arm64/kvm/Kconfig"
436
437 source "arch/arm64/Kconfig.debug"
438
439 source "security/Kconfig"
440
441 source "crypto/Kconfig"
442 if CRYPTO
443 source "arch/arm64/crypto/Kconfig"
444 endif
445
446 source "lib/Kconfig"