arm64: don't select PERF_USE_VMALLOC by default
[cascardo/linux.git] / arch / arm64 / Kconfig
1 config ARM64
2         def_bool y
3         select ACPI_CCA_REQUIRED if ACPI
4         select ACPI_GENERIC_GSI if ACPI
5         select ACPI_REDUCED_HARDWARE_ONLY if ACPI
6         select ACPI_MCFG if ACPI
7         select ARCH_HAS_DEVMEM_IS_ALLOWED
8         select ARCH_HAS_ACPI_TABLE_UPGRADE if ACPI
9         select ARCH_HAS_ATOMIC64_DEC_IF_POSITIVE
10         select ARCH_HAS_ELF_RANDOMIZE
11         select ARCH_HAS_GCOV_PROFILE_ALL
12         select ARCH_HAS_KCOV
13         select ARCH_HAS_SG_CHAIN
14         select ARCH_HAS_TICK_BROADCAST if GENERIC_CLOCKEVENTS_BROADCAST
15         select ARCH_USE_CMPXCHG_LOCKREF
16         select ARCH_SUPPORTS_ATOMIC_RMW
17         select ARCH_SUPPORTS_NUMA_BALANCING
18         select ARCH_WANT_OPTIONAL_GPIOLIB
19         select ARCH_WANT_COMPAT_IPC_PARSE_VERSION
20         select ARCH_WANT_FRAME_POINTERS
21         select ARCH_HAS_UBSAN_SANITIZE_ALL
22         select ARM_AMBA
23         select ARM_ARCH_TIMER
24         select ARM_GIC
25         select AUDIT_ARCH_COMPAT_GENERIC
26         select ARM_GIC_V2M if PCI
27         select ARM_GIC_V3
28         select ARM_GIC_V3_ITS if PCI
29         select ARM_PSCI_FW
30         select BUILDTIME_EXTABLE_SORT
31         select CLONE_BACKWARDS
32         select COMMON_CLK
33         select CPU_PM if (SUSPEND || CPU_IDLE)
34         select DCACHE_WORD_ACCESS
35         select EDAC_SUPPORT
36         select FRAME_POINTER
37         select GENERIC_ALLOCATOR
38         select GENERIC_CLOCKEVENTS
39         select GENERIC_CLOCKEVENTS_BROADCAST
40         select GENERIC_CPU_AUTOPROBE
41         select GENERIC_EARLY_IOREMAP
42         select GENERIC_IDLE_POLL_SETUP
43         select GENERIC_IRQ_PROBE
44         select GENERIC_IRQ_SHOW
45         select GENERIC_IRQ_SHOW_LEVEL
46         select GENERIC_PCI_IOMAP
47         select GENERIC_SCHED_CLOCK
48         select GENERIC_SMP_IDLE_THREAD
49         select GENERIC_STRNCPY_FROM_USER
50         select GENERIC_STRNLEN_USER
51         select GENERIC_TIME_VSYSCALL
52         select HANDLE_DOMAIN_IRQ
53         select HARDIRQS_SW_RESEND
54         select HAVE_ALIGNED_STRUCT_PAGE if SLUB
55         select HAVE_ARCH_AUDITSYSCALL
56         select HAVE_ARCH_BITREVERSE
57         select HAVE_ARCH_HARDENED_USERCOPY
58         select HAVE_ARCH_HUGE_VMAP
59         select HAVE_ARCH_JUMP_LABEL
60         select HAVE_ARCH_KASAN if SPARSEMEM_VMEMMAP && !(ARM64_16K_PAGES && ARM64_VA_BITS_48)
61         select HAVE_ARCH_KGDB
62         select HAVE_ARCH_MMAP_RND_BITS
63         select HAVE_ARCH_MMAP_RND_COMPAT_BITS if COMPAT
64         select HAVE_ARCH_SECCOMP_FILTER
65         select HAVE_ARCH_TRACEHOOK
66         select HAVE_ARCH_TRANSPARENT_HUGEPAGE
67         select HAVE_ARM_SMCCC
68         select HAVE_EBPF_JIT
69         select HAVE_C_RECORDMCOUNT
70         select HAVE_CC_STACKPROTECTOR
71         select HAVE_CMPXCHG_DOUBLE
72         select HAVE_CMPXCHG_LOCAL
73         select HAVE_CONTEXT_TRACKING
74         select HAVE_DEBUG_BUGVERBOSE
75         select HAVE_DEBUG_KMEMLEAK
76         select HAVE_DMA_API_DEBUG
77         select HAVE_DMA_CONTIGUOUS
78         select HAVE_DYNAMIC_FTRACE
79         select HAVE_EFFICIENT_UNALIGNED_ACCESS
80         select HAVE_FTRACE_MCOUNT_RECORD
81         select HAVE_FUNCTION_TRACER
82         select HAVE_FUNCTION_GRAPH_TRACER
83         select HAVE_GCC_PLUGINS
84         select HAVE_GENERIC_DMA_COHERENT
85         select HAVE_HW_BREAKPOINT if PERF_EVENTS
86         select HAVE_IRQ_TIME_ACCOUNTING
87         select HAVE_MEMBLOCK
88         select HAVE_MEMBLOCK_NODE_MAP if NUMA
89         select HAVE_PATA_PLATFORM
90         select HAVE_PERF_EVENTS
91         select HAVE_PERF_REGS
92         select HAVE_PERF_USER_STACK_DUMP
93         select HAVE_REGS_AND_STACK_ACCESS_API
94         select HAVE_RCU_TABLE_FREE
95         select HAVE_SYSCALL_TRACEPOINTS
96         select HAVE_KPROBES
97         select HAVE_KRETPROBES if HAVE_KPROBES
98         select IOMMU_DMA if IOMMU_SUPPORT
99         select IRQ_DOMAIN
100         select IRQ_FORCED_THREADING
101         select MODULES_USE_ELF_RELA
102         select NO_BOOTMEM
103         select OF
104         select OF_EARLY_FLATTREE
105         select OF_NUMA if NUMA && OF
106         select OF_RESERVED_MEM
107         select PCI_ECAM if ACPI
108         select POWER_RESET
109         select POWER_SUPPLY
110         select SPARSE_IRQ
111         select SYSCTL_EXCEPTION_TRACE
112         help
113           ARM 64-bit (AArch64) Linux support.
114
115 config 64BIT
116         def_bool y
117
118 config ARCH_PHYS_ADDR_T_64BIT
119         def_bool y
120
121 config MMU
122         def_bool y
123
124 config DEBUG_RODATA
125         def_bool y
126
127 config ARM64_PAGE_SHIFT
128         int
129         default 16 if ARM64_64K_PAGES
130         default 14 if ARM64_16K_PAGES
131         default 12
132
133 config ARM64_CONT_SHIFT
134         int
135         default 5 if ARM64_64K_PAGES
136         default 7 if ARM64_16K_PAGES
137         default 4
138
139 config ARCH_MMAP_RND_BITS_MIN
140        default 14 if ARM64_64K_PAGES
141        default 16 if ARM64_16K_PAGES
142        default 18
143
144 # max bits determined by the following formula:
145 #  VA_BITS - PAGE_SHIFT - 3
146 config ARCH_MMAP_RND_BITS_MAX
147        default 19 if ARM64_VA_BITS=36
148        default 24 if ARM64_VA_BITS=39
149        default 27 if ARM64_VA_BITS=42
150        default 30 if ARM64_VA_BITS=47
151        default 29 if ARM64_VA_BITS=48 && ARM64_64K_PAGES
152        default 31 if ARM64_VA_BITS=48 && ARM64_16K_PAGES
153        default 33 if ARM64_VA_BITS=48
154        default 14 if ARM64_64K_PAGES
155        default 16 if ARM64_16K_PAGES
156        default 18
157
158 config ARCH_MMAP_RND_COMPAT_BITS_MIN
159        default 7 if ARM64_64K_PAGES
160        default 9 if ARM64_16K_PAGES
161        default 11
162
163 config ARCH_MMAP_RND_COMPAT_BITS_MAX
164        default 16
165
166 config NO_IOPORT_MAP
167         def_bool y if !PCI
168
169 config STACKTRACE_SUPPORT
170         def_bool y
171
172 config ILLEGAL_POINTER_VALUE
173         hex
174         default 0xdead000000000000
175
176 config LOCKDEP_SUPPORT
177         def_bool y
178
179 config TRACE_IRQFLAGS_SUPPORT
180         def_bool y
181
182 config RWSEM_XCHGADD_ALGORITHM
183         def_bool y
184
185 config GENERIC_BUG
186         def_bool y
187         depends on BUG
188
189 config GENERIC_BUG_RELATIVE_POINTERS
190         def_bool y
191         depends on GENERIC_BUG
192
193 config GENERIC_HWEIGHT
194         def_bool y
195
196 config GENERIC_CSUM
197         def_bool y
198
199 config GENERIC_CALIBRATE_DELAY
200         def_bool y
201
202 config ZONE_DMA
203         def_bool y
204
205 config HAVE_GENERIC_RCU_GUP
206         def_bool y
207
208 config ARCH_DMA_ADDR_T_64BIT
209         def_bool y
210
211 config NEED_DMA_MAP_STATE
212         def_bool y
213
214 config NEED_SG_DMA_LENGTH
215         def_bool y
216
217 config SMP
218         def_bool y
219
220 config SWIOTLB
221         def_bool y
222
223 config IOMMU_HELPER
224         def_bool SWIOTLB
225
226 config KERNEL_MODE_NEON
227         def_bool y
228
229 config FIX_EARLYCON_MEM
230         def_bool y
231
232 config PGTABLE_LEVELS
233         int
234         default 2 if ARM64_16K_PAGES && ARM64_VA_BITS_36
235         default 2 if ARM64_64K_PAGES && ARM64_VA_BITS_42
236         default 3 if ARM64_64K_PAGES && ARM64_VA_BITS_48
237         default 3 if ARM64_4K_PAGES && ARM64_VA_BITS_39
238         default 3 if ARM64_16K_PAGES && ARM64_VA_BITS_47
239         default 4 if !ARM64_64K_PAGES && ARM64_VA_BITS_48
240
241 source "init/Kconfig"
242
243 source "kernel/Kconfig.freezer"
244
245 source "arch/arm64/Kconfig.platforms"
246
247 menu "Bus support"
248
249 config PCI
250         bool "PCI support"
251         help
252           This feature enables support for PCI bus system. If you say Y
253           here, the kernel will include drivers and infrastructure code
254           to support PCI bus devices.
255
256 config PCI_DOMAINS
257         def_bool PCI
258
259 config PCI_DOMAINS_GENERIC
260         def_bool PCI
261
262 config PCI_SYSCALL
263         def_bool PCI
264
265 source "drivers/pci/Kconfig"
266
267 endmenu
268
269 menu "Kernel Features"
270
271 menu "ARM errata workarounds via the alternatives framework"
272
273 config ARM64_ERRATUM_826319
274         bool "Cortex-A53: 826319: System might deadlock if a write cannot complete until read data is accepted"
275         default y
276         help
277           This option adds an alternative code sequence to work around ARM
278           erratum 826319 on Cortex-A53 parts up to r0p2 with an AMBA 4 ACE or
279           AXI master interface and an L2 cache.
280
281           If a Cortex-A53 uses an AMBA AXI4 ACE interface to other processors
282           and is unable to accept a certain write via this interface, it will
283           not progress on read data presented on the read data channel and the
284           system can deadlock.
285
286           The workaround promotes data cache clean instructions to
287           data cache clean-and-invalidate.
288           Please note that this does not necessarily enable the workaround,
289           as it depends on the alternative framework, which will only patch
290           the kernel if an affected CPU is detected.
291
292           If unsure, say Y.
293
294 config ARM64_ERRATUM_827319
295         bool "Cortex-A53: 827319: Data cache clean instructions might cause overlapping transactions to the interconnect"
296         default y
297         help
298           This option adds an alternative code sequence to work around ARM
299           erratum 827319 on Cortex-A53 parts up to r0p2 with an AMBA 5 CHI
300           master interface and an L2 cache.
301
302           Under certain conditions this erratum can cause a clean line eviction
303           to occur at the same time as another transaction to the same address
304           on the AMBA 5 CHI interface, which can cause data corruption if the
305           interconnect reorders the two transactions.
306
307           The workaround promotes data cache clean instructions to
308           data cache clean-and-invalidate.
309           Please note that this does not necessarily enable the workaround,
310           as it depends on the alternative framework, which will only patch
311           the kernel if an affected CPU is detected.
312
313           If unsure, say Y.
314
315 config ARM64_ERRATUM_824069
316         bool "Cortex-A53: 824069: Cache line might not be marked as clean after a CleanShared snoop"
317         default y
318         help
319           This option adds an alternative code sequence to work around ARM
320           erratum 824069 on Cortex-A53 parts up to r0p2 when it is connected
321           to a coherent interconnect.
322
323           If a Cortex-A53 processor is executing a store or prefetch for
324           write instruction at the same time as a processor in another
325           cluster is executing a cache maintenance operation to the same
326           address, then this erratum might cause a clean cache line to be
327           incorrectly marked as dirty.
328
329           The workaround promotes data cache clean instructions to
330           data cache clean-and-invalidate.
331           Please note that this option does not necessarily enable the
332           workaround, as it depends on the alternative framework, which will
333           only patch the kernel if an affected CPU is detected.
334
335           If unsure, say Y.
336
337 config ARM64_ERRATUM_819472
338         bool "Cortex-A53: 819472: Store exclusive instructions might cause data corruption"
339         default y
340         help
341           This option adds an alternative code sequence to work around ARM
342           erratum 819472 on Cortex-A53 parts up to r0p1 with an L2 cache
343           present when it is connected to a coherent interconnect.
344
345           If the processor is executing a load and store exclusive sequence at
346           the same time as a processor in another cluster is executing a cache
347           maintenance operation to the same address, then this erratum might
348           cause data corruption.
349
350           The workaround promotes data cache clean instructions to
351           data cache clean-and-invalidate.
352           Please note that this does not necessarily enable the workaround,
353           as it depends on the alternative framework, which will only patch
354           the kernel if an affected CPU is detected.
355
356           If unsure, say Y.
357
358 config ARM64_ERRATUM_832075
359         bool "Cortex-A57: 832075: possible deadlock on mixing exclusive memory accesses with device loads"
360         default y
361         help
362           This option adds an alternative code sequence to work around ARM
363           erratum 832075 on Cortex-A57 parts up to r1p2.
364
365           Affected Cortex-A57 parts might deadlock when exclusive load/store
366           instructions to Write-Back memory are mixed with Device loads.
367
368           The workaround is to promote device loads to use Load-Acquire
369           semantics.
370           Please note that this does not necessarily enable the workaround,
371           as it depends on the alternative framework, which will only patch
372           the kernel if an affected CPU is detected.
373
374           If unsure, say Y.
375
376 config ARM64_ERRATUM_834220
377         bool "Cortex-A57: 834220: Stage 2 translation fault might be incorrectly reported in presence of a Stage 1 fault"
378         depends on KVM
379         default y
380         help
381           This option adds an alternative code sequence to work around ARM
382           erratum 834220 on Cortex-A57 parts up to r1p2.
383
384           Affected Cortex-A57 parts might report a Stage 2 translation
385           fault as the result of a Stage 1 fault for load crossing a
386           page boundary when there is a permission or device memory
387           alignment fault at Stage 1 and a translation fault at Stage 2.
388
389           The workaround is to verify that the Stage 1 translation
390           doesn't generate a fault before handling the Stage 2 fault.
391           Please note that this does not necessarily enable the workaround,
392           as it depends on the alternative framework, which will only patch
393           the kernel if an affected CPU is detected.
394
395           If unsure, say Y.
396
397 config ARM64_ERRATUM_845719
398         bool "Cortex-A53: 845719: a load might read incorrect data"
399         depends on COMPAT
400         default y
401         help
402           This option adds an alternative code sequence to work around ARM
403           erratum 845719 on Cortex-A53 parts up to r0p4.
404
405           When running a compat (AArch32) userspace on an affected Cortex-A53
406           part, a load at EL0 from a virtual address that matches the bottom 32
407           bits of the virtual address used by a recent load at (AArch64) EL1
408           might return incorrect data.
409
410           The workaround is to write the contextidr_el1 register on exception
411           return to a 32-bit task.
412           Please note that this does not necessarily enable the workaround,
413           as it depends on the alternative framework, which will only patch
414           the kernel if an affected CPU is detected.
415
416           If unsure, say Y.
417
418 config ARM64_ERRATUM_843419
419         bool "Cortex-A53: 843419: A load or store might access an incorrect address"
420         default y
421         select ARM64_MODULE_CMODEL_LARGE if MODULES
422         help
423           This option links the kernel with '--fix-cortex-a53-843419' and
424           builds modules using the large memory model in order to avoid the use
425           of the ADRP instruction, which can cause a subsequent memory access
426           to use an incorrect address on Cortex-A53 parts up to r0p4.
427
428           If unsure, say Y.
429
430 config CAVIUM_ERRATUM_22375
431         bool "Cavium erratum 22375, 24313"
432         default y
433         help
434           Enable workaround for erratum 22375, 24313.
435
436           This implements two gicv3-its errata workarounds for ThunderX. Both
437           with small impact affecting only ITS table allocation.
438
439             erratum 22375: only alloc 8MB table size
440             erratum 24313: ignore memory access type
441
442           The fixes are in ITS initialization and basically ignore memory access
443           type and table size provided by the TYPER and BASER registers.
444
445           If unsure, say Y.
446
447 config CAVIUM_ERRATUM_23144
448         bool "Cavium erratum 23144: ITS SYNC hang on dual socket system"
449         depends on NUMA
450         default y
451         help
452           ITS SYNC command hang for cross node io and collections/cpu mapping.
453
454           If unsure, say Y.
455
456 config CAVIUM_ERRATUM_23154
457         bool "Cavium erratum 23154: Access to ICC_IAR1_EL1 is not sync'ed"
458         default y
459         help
460           The gicv3 of ThunderX requires a modified version for
461           reading the IAR status to ensure data synchronization
462           (access to icc_iar1_el1 is not sync'ed before and after).
463
464           If unsure, say Y.
465
466 config CAVIUM_ERRATUM_27456
467         bool "Cavium erratum 27456: Broadcast TLBI instructions may cause icache corruption"
468         default y
469         help
470           On ThunderX T88 pass 1.x through 2.1 parts, broadcast TLBI
471           instructions may cause the icache to become corrupted if it
472           contains data for a non-current ASID.  The fix is to
473           invalidate the icache when changing the mm context.
474
475           If unsure, say Y.
476
477 endmenu
478
479
480 choice
481         prompt "Page size"
482         default ARM64_4K_PAGES
483         help
484           Page size (translation granule) configuration.
485
486 config ARM64_4K_PAGES
487         bool "4KB"
488         help
489           This feature enables 4KB pages support.
490
491 config ARM64_16K_PAGES
492         bool "16KB"
493         help
494           The system will use 16KB pages support. AArch32 emulation
495           requires applications compiled with 16K (or a multiple of 16K)
496           aligned segments.
497
498 config ARM64_64K_PAGES
499         bool "64KB"
500         help
501           This feature enables 64KB pages support (4KB by default)
502           allowing only two levels of page tables and faster TLB
503           look-up. AArch32 emulation requires applications compiled
504           with 64K aligned segments.
505
506 endchoice
507
508 choice
509         prompt "Virtual address space size"
510         default ARM64_VA_BITS_39 if ARM64_4K_PAGES
511         default ARM64_VA_BITS_47 if ARM64_16K_PAGES
512         default ARM64_VA_BITS_42 if ARM64_64K_PAGES
513         help
514           Allows choosing one of multiple possible virtual address
515           space sizes. The level of translation table is determined by
516           a combination of page size and virtual address space size.
517
518 config ARM64_VA_BITS_36
519         bool "36-bit" if EXPERT
520         depends on ARM64_16K_PAGES
521
522 config ARM64_VA_BITS_39
523         bool "39-bit"
524         depends on ARM64_4K_PAGES
525
526 config ARM64_VA_BITS_42
527         bool "42-bit"
528         depends on ARM64_64K_PAGES
529
530 config ARM64_VA_BITS_47
531         bool "47-bit"
532         depends on ARM64_16K_PAGES
533
534 config ARM64_VA_BITS_48
535         bool "48-bit"
536
537 endchoice
538
539 config ARM64_VA_BITS
540         int
541         default 36 if ARM64_VA_BITS_36
542         default 39 if ARM64_VA_BITS_39
543         default 42 if ARM64_VA_BITS_42
544         default 47 if ARM64_VA_BITS_47
545         default 48 if ARM64_VA_BITS_48
546
547 config CPU_BIG_ENDIAN
548        bool "Build big-endian kernel"
549        help
550          Say Y if you plan on running a kernel in big-endian mode.
551
552 config SCHED_MC
553         bool "Multi-core scheduler support"
554         help
555           Multi-core scheduler support improves the CPU scheduler's decision
556           making when dealing with multi-core CPU chips at a cost of slightly
557           increased overhead in some places. If unsure say N here.
558
559 config SCHED_SMT
560         bool "SMT scheduler support"
561         help
562           Improves the CPU scheduler's decision making when dealing with
563           MultiThreading at a cost of slightly increased overhead in some
564           places. If unsure say N here.
565
566 config NR_CPUS
567         int "Maximum number of CPUs (2-4096)"
568         range 2 4096
569         # These have to remain sorted largest to smallest
570         default "64"
571
572 config HOTPLUG_CPU
573         bool "Support for hot-pluggable CPUs"
574         select GENERIC_IRQ_MIGRATION
575         help
576           Say Y here to experiment with turning CPUs off and on.  CPUs
577           can be controlled through /sys/devices/system/cpu.
578
579 # Common NUMA Features
580 config NUMA
581         bool "Numa Memory Allocation and Scheduler Support"
582         depends on SMP
583         help
584           Enable NUMA (Non Uniform Memory Access) support.
585
586           The kernel will try to allocate memory used by a CPU on the
587           local memory of the CPU and add some more
588           NUMA awareness to the kernel.
589
590 config NODES_SHIFT
591         int "Maximum NUMA Nodes (as a power of 2)"
592         range 1 10
593         default "2"
594         depends on NEED_MULTIPLE_NODES
595         help
596           Specify the maximum number of NUMA Nodes available on the target
597           system.  Increases memory reserved to accommodate various tables.
598
599 config USE_PERCPU_NUMA_NODE_ID
600         def_bool y
601         depends on NUMA
602
603 source kernel/Kconfig.preempt
604 source kernel/Kconfig.hz
605
606 config ARCH_SUPPORTS_DEBUG_PAGEALLOC
607         def_bool y
608
609 config ARCH_HAS_HOLES_MEMORYMODEL
610         def_bool y if SPARSEMEM
611
612 config ARCH_SPARSEMEM_ENABLE
613         def_bool y
614         select SPARSEMEM_VMEMMAP_ENABLE
615
616 config ARCH_SPARSEMEM_DEFAULT
617         def_bool ARCH_SPARSEMEM_ENABLE
618
619 config ARCH_SELECT_MEMORY_MODEL
620         def_bool ARCH_SPARSEMEM_ENABLE
621
622 config HAVE_ARCH_PFN_VALID
623         def_bool ARCH_HAS_HOLES_MEMORYMODEL || !SPARSEMEM
624
625 config HW_PERF_EVENTS
626         def_bool y
627         depends on ARM_PMU
628
629 config SYS_SUPPORTS_HUGETLBFS
630         def_bool y
631
632 config ARCH_WANT_HUGE_PMD_SHARE
633         def_bool y if ARM64_4K_PAGES || (ARM64_16K_PAGES && !ARM64_VA_BITS_36)
634
635 config ARCH_HAS_CACHE_LINE_SIZE
636         def_bool y
637
638 source "mm/Kconfig"
639
640 config SECCOMP
641         bool "Enable seccomp to safely compute untrusted bytecode"
642         ---help---
643           This kernel feature is useful for number crunching applications
644           that may need to compute untrusted bytecode during their
645           execution. By using pipes or other transports made available to
646           the process as file descriptors supporting the read/write
647           syscalls, it's possible to isolate those applications in
648           their own address space using seccomp. Once seccomp is
649           enabled via prctl(PR_SET_SECCOMP), it cannot be disabled
650           and the task is only allowed to execute a few safe syscalls
651           defined by each seccomp mode.
652
653 config PARAVIRT
654         bool "Enable paravirtualization code"
655         help
656           This changes the kernel so it can modify itself when it is run
657           under a hypervisor, potentially improving performance significantly
658           over full virtualization.
659
660 config PARAVIRT_TIME_ACCOUNTING
661         bool "Paravirtual steal time accounting"
662         select PARAVIRT
663         default n
664         help
665           Select this option to enable fine granularity task steal time
666           accounting. Time spent executing other tasks in parallel with
667           the current vCPU is discounted from the vCPU power. To account for
668           that, there can be a small performance impact.
669
670           If in doubt, say N here.
671
672 config KEXEC
673         depends on PM_SLEEP_SMP
674         select KEXEC_CORE
675         bool "kexec system call"
676         ---help---
677           kexec is a system call that implements the ability to shutdown your
678           current kernel, and to start another kernel.  It is like a reboot
679           but it is independent of the system firmware.   And like a reboot
680           you can start any kernel with it, not just Linux.
681
682 config XEN_DOM0
683         def_bool y
684         depends on XEN
685
686 config XEN
687         bool "Xen guest support on ARM64"
688         depends on ARM64 && OF
689         select SWIOTLB_XEN
690         select PARAVIRT
691         help
692           Say Y if you want to run Linux in a Virtual Machine on Xen on ARM64.
693
694 config FORCE_MAX_ZONEORDER
695         int
696         default "14" if (ARM64_64K_PAGES && TRANSPARENT_HUGEPAGE)
697         default "12" if (ARM64_16K_PAGES && TRANSPARENT_HUGEPAGE)
698         default "11"
699         help
700           The kernel memory allocator divides physically contiguous memory
701           blocks into "zones", where each zone is a power of two number of
702           pages.  This option selects the largest power of two that the kernel
703           keeps in the memory allocator.  If you need to allocate very large
704           blocks of physically contiguous memory, then you may need to
705           increase this value.
706
707           This config option is actually maximum order plus one. For example,
708           a value of 11 means that the largest free memory block is 2^10 pages.
709
710           We make sure that we can allocate upto a HugePage size for each configuration.
711           Hence we have :
712                 MAX_ORDER = (PMD_SHIFT - PAGE_SHIFT) + 1 => PAGE_SHIFT - 2
713
714           However for 4K, we choose a higher default value, 11 as opposed to 10, giving us
715           4M allocations matching the default size used by generic code.
716
717 menuconfig ARMV8_DEPRECATED
718         bool "Emulate deprecated/obsolete ARMv8 instructions"
719         depends on COMPAT
720         help
721           Legacy software support may require certain instructions
722           that have been deprecated or obsoleted in the architecture.
723
724           Enable this config to enable selective emulation of these
725           features.
726
727           If unsure, say Y
728
729 if ARMV8_DEPRECATED
730
731 config SWP_EMULATION
732         bool "Emulate SWP/SWPB instructions"
733         help
734           ARMv8 obsoletes the use of A32 SWP/SWPB instructions such that
735           they are always undefined. Say Y here to enable software
736           emulation of these instructions for userspace using LDXR/STXR.
737
738           In some older versions of glibc [<=2.8] SWP is used during futex
739           trylock() operations with the assumption that the code will not
740           be preempted. This invalid assumption may be more likely to fail
741           with SWP emulation enabled, leading to deadlock of the user
742           application.
743
744           NOTE: when accessing uncached shared regions, LDXR/STXR rely
745           on an external transaction monitoring block called a global
746           monitor to maintain update atomicity. If your system does not
747           implement a global monitor, this option can cause programs that
748           perform SWP operations to uncached memory to deadlock.
749
750           If unsure, say Y
751
752 config CP15_BARRIER_EMULATION
753         bool "Emulate CP15 Barrier instructions"
754         help
755           The CP15 barrier instructions - CP15ISB, CP15DSB, and
756           CP15DMB - are deprecated in ARMv8 (and ARMv7). It is
757           strongly recommended to use the ISB, DSB, and DMB
758           instructions instead.
759
760           Say Y here to enable software emulation of these
761           instructions for AArch32 userspace code. When this option is
762           enabled, CP15 barrier usage is traced which can help
763           identify software that needs updating.
764
765           If unsure, say Y
766
767 config SETEND_EMULATION
768         bool "Emulate SETEND instruction"
769         help
770           The SETEND instruction alters the data-endianness of the
771           AArch32 EL0, and is deprecated in ARMv8.
772
773           Say Y here to enable software emulation of the instruction
774           for AArch32 userspace code.
775
776           Note: All the cpus on the system must have mixed endian support at EL0
777           for this feature to be enabled. If a new CPU - which doesn't support mixed
778           endian - is hotplugged in after this feature has been enabled, there could
779           be unexpected results in the applications.
780
781           If unsure, say Y
782 endif
783
784 menu "ARMv8.1 architectural features"
785
786 config ARM64_HW_AFDBM
787         bool "Support for hardware updates of the Access and Dirty page flags"
788         default y
789         help
790           The ARMv8.1 architecture extensions introduce support for
791           hardware updates of the access and dirty information in page
792           table entries. When enabled in TCR_EL1 (HA and HD bits) on
793           capable processors, accesses to pages with PTE_AF cleared will
794           set this bit instead of raising an access flag fault.
795           Similarly, writes to read-only pages with the DBM bit set will
796           clear the read-only bit (AP[2]) instead of raising a
797           permission fault.
798
799           Kernels built with this configuration option enabled continue
800           to work on pre-ARMv8.1 hardware and the performance impact is
801           minimal. If unsure, say Y.
802
803 config ARM64_PAN
804         bool "Enable support for Privileged Access Never (PAN)"
805         default y
806         help
807          Privileged Access Never (PAN; part of the ARMv8.1 Extensions)
808          prevents the kernel or hypervisor from accessing user-space (EL0)
809          memory directly.
810
811          Choosing this option will cause any unprotected (not using
812          copy_to_user et al) memory access to fail with a permission fault.
813
814          The feature is detected at runtime, and will remain as a 'nop'
815          instruction if the cpu does not implement the feature.
816
817 config ARM64_LSE_ATOMICS
818         bool "Atomic instructions"
819         help
820           As part of the Large System Extensions, ARMv8.1 introduces new
821           atomic instructions that are designed specifically to scale in
822           very large systems.
823
824           Say Y here to make use of these instructions for the in-kernel
825           atomic routines. This incurs a small overhead on CPUs that do
826           not support these instructions and requires the kernel to be
827           built with binutils >= 2.25.
828
829 config ARM64_VHE
830         bool "Enable support for Virtualization Host Extensions (VHE)"
831         default y
832         help
833           Virtualization Host Extensions (VHE) allow the kernel to run
834           directly at EL2 (instead of EL1) on processors that support
835           it. This leads to better performance for KVM, as they reduce
836           the cost of the world switch.
837
838           Selecting this option allows the VHE feature to be detected
839           at runtime, and does not affect processors that do not
840           implement this feature.
841
842 endmenu
843
844 menu "ARMv8.2 architectural features"
845
846 config ARM64_UAO
847         bool "Enable support for User Access Override (UAO)"
848         default y
849         help
850           User Access Override (UAO; part of the ARMv8.2 Extensions)
851           causes the 'unprivileged' variant of the load/store instructions to
852           be overriden to be privileged.
853
854           This option changes get_user() and friends to use the 'unprivileged'
855           variant of the load/store instructions. This ensures that user-space
856           really did have access to the supplied memory. When addr_limit is
857           set to kernel memory the UAO bit will be set, allowing privileged
858           access to kernel memory.
859
860           Choosing this option will cause copy_to_user() et al to use user-space
861           memory permissions.
862
863           The feature is detected at runtime, the kernel will use the
864           regular load/store instructions if the cpu does not implement the
865           feature.
866
867 endmenu
868
869 config ARM64_MODULE_CMODEL_LARGE
870         bool
871
872 config ARM64_MODULE_PLTS
873         bool
874         select ARM64_MODULE_CMODEL_LARGE
875         select HAVE_MOD_ARCH_SPECIFIC
876
877 config RELOCATABLE
878         bool
879         help
880           This builds the kernel as a Position Independent Executable (PIE),
881           which retains all relocation metadata required to relocate the
882           kernel binary at runtime to a different virtual address than the
883           address it was linked at.
884           Since AArch64 uses the RELA relocation format, this requires a
885           relocation pass at runtime even if the kernel is loaded at the
886           same address it was linked at.
887
888 config RANDOMIZE_BASE
889         bool "Randomize the address of the kernel image"
890         select ARM64_MODULE_PLTS if MODULES
891         select RELOCATABLE
892         help
893           Randomizes the virtual address at which the kernel image is
894           loaded, as a security feature that deters exploit attempts
895           relying on knowledge of the location of kernel internals.
896
897           It is the bootloader's job to provide entropy, by passing a
898           random u64 value in /chosen/kaslr-seed at kernel entry.
899
900           When booting via the UEFI stub, it will invoke the firmware's
901           EFI_RNG_PROTOCOL implementation (if available) to supply entropy
902           to the kernel proper. In addition, it will randomise the physical
903           location of the kernel Image as well.
904
905           If unsure, say N.
906
907 config RANDOMIZE_MODULE_REGION_FULL
908         bool "Randomize the module region independently from the core kernel"
909         depends on RANDOMIZE_BASE
910         default y
911         help
912           Randomizes the location of the module region without considering the
913           location of the core kernel. This way, it is impossible for modules
914           to leak information about the location of core kernel data structures
915           but it does imply that function calls between modules and the core
916           kernel will need to be resolved via veneers in the module PLT.
917
918           When this option is not set, the module region will be randomized over
919           a limited range that contains the [_stext, _etext] interval of the
920           core kernel, so branch relocations are always in range.
921
922 endmenu
923
924 menu "Boot options"
925
926 config ARM64_ACPI_PARKING_PROTOCOL
927         bool "Enable support for the ARM64 ACPI parking protocol"
928         depends on ACPI
929         help
930           Enable support for the ARM64 ACPI parking protocol. If disabled
931           the kernel will not allow booting through the ARM64 ACPI parking
932           protocol even if the corresponding data is present in the ACPI
933           MADT table.
934
935 config CMDLINE
936         string "Default kernel command string"
937         default ""
938         help
939           Provide a set of default command-line options at build time by
940           entering them here. As a minimum, you should specify the the
941           root device (e.g. root=/dev/nfs).
942
943 config CMDLINE_FORCE
944         bool "Always use the default kernel command string"
945         help
946           Always use the default kernel command string, even if the boot
947           loader passes other arguments to the kernel.
948           This is useful if you cannot or don't want to change the
949           command-line options your boot loader passes to the kernel.
950
951 config EFI_STUB
952         bool
953
954 config EFI
955         bool "UEFI runtime support"
956         depends on OF && !CPU_BIG_ENDIAN
957         select LIBFDT
958         select UCS2_STRING
959         select EFI_PARAMS_FROM_FDT
960         select EFI_RUNTIME_WRAPPERS
961         select EFI_STUB
962         select EFI_ARMSTUB
963         default y
964         help
965           This option provides support for runtime services provided
966           by UEFI firmware (such as non-volatile variables, realtime
967           clock, and platform reset). A UEFI stub is also provided to
968           allow the kernel to be booted as an EFI application. This
969           is only useful on systems that have UEFI firmware.
970
971 config DMI
972         bool "Enable support for SMBIOS (DMI) tables"
973         depends on EFI
974         default y
975         help
976           This enables SMBIOS/DMI feature for systems.
977
978           This option is only useful on systems that have UEFI firmware.
979           However, even with this option, the resultant kernel should
980           continue to boot on existing non-UEFI platforms.
981
982 endmenu
983
984 menu "Userspace binary formats"
985
986 source "fs/Kconfig.binfmt"
987
988 config COMPAT
989         bool "Kernel support for 32-bit EL0"
990         depends on ARM64_4K_PAGES || EXPERT
991         select COMPAT_BINFMT_ELF
992         select HAVE_UID16
993         select OLD_SIGSUSPEND3
994         select COMPAT_OLD_SIGACTION
995         help
996           This option enables support for a 32-bit EL0 running under a 64-bit
997           kernel at EL1. AArch32-specific components such as system calls,
998           the user helper functions, VFP support and the ptrace interface are
999           handled appropriately by the kernel.
1000
1001           If you use a page size other than 4KB (i.e, 16KB or 64KB), please be aware
1002           that you will only be able to execute AArch32 binaries that were compiled
1003           with page size aligned segments.
1004
1005           If you want to execute 32-bit userspace applications, say Y.
1006
1007 config SYSVIPC_COMPAT
1008         def_bool y
1009         depends on COMPAT && SYSVIPC
1010
1011 endmenu
1012
1013 menu "Power management options"
1014
1015 source "kernel/power/Kconfig"
1016
1017 config ARCH_HIBERNATION_POSSIBLE
1018         def_bool y
1019         depends on CPU_PM
1020
1021 config ARCH_HIBERNATION_HEADER
1022         def_bool y
1023         depends on HIBERNATION
1024
1025 config ARCH_SUSPEND_POSSIBLE
1026         def_bool y
1027
1028 endmenu
1029
1030 menu "CPU Power Management"
1031
1032 source "drivers/cpuidle/Kconfig"
1033
1034 source "drivers/cpufreq/Kconfig"
1035
1036 endmenu
1037
1038 source "net/Kconfig"
1039
1040 source "drivers/Kconfig"
1041
1042 source "drivers/firmware/Kconfig"
1043
1044 source "drivers/acpi/Kconfig"
1045
1046 source "fs/Kconfig"
1047
1048 source "arch/arm64/kvm/Kconfig"
1049
1050 source "arch/arm64/Kconfig.debug"
1051
1052 source "security/Kconfig"
1053
1054 source "crypto/Kconfig"
1055 if CRYPTO
1056 source "arch/arm64/crypto/Kconfig"
1057 endif
1058
1059 source "lib/Kconfig"