Merge branch 'v3.10/topic/arm64-hmp' into linux-linaro-lsk-v3.10
[firefly-linux-kernel-4.4.55.git] / arch / arm64 / Kconfig
1 config ARM64
2         def_bool y
3         select ARCH_HAS_ATOMIC64_DEC_IF_POSITIVE
4         select ARCH_HAS_OPP
5         select ARCH_USE_CMPXCHG_LOCKREF
6         select ARCH_HAS_OPP
7         select ARCH_HAS_TICK_BROADCAST if GENERIC_CLOCKEVENTS_BROADCAST
8         select ARCH_SUPPORTS_ATOMIC_RMW
9         select ARCH_HAS_GCOV_PROFILE_ALL
10         select ARCH_WANT_OPTIONAL_GPIOLIB
11         select ARCH_WANT_COMPAT_IPC_PARSE_VERSION
12         select ARCH_WANT_FRAME_POINTERS
13         select ARM_AMBA
14         select ARM_ARCH_TIMER
15         select ARM_GIC
16         select ARM_GIC_V3
17         select BUILDTIME_EXTABLE_SORT
18         select CLONE_BACKWARDS
19         select COMMON_CLK
20         select CPU_PM if (SUSPEND || CPU_IDLE)
21         select DCACHE_WORD_ACCESS
22         select GENERIC_ALLOCATOR
23         select GENERIC_CLOCKEVENTS
24         select GENERIC_CLOCKEVENTS_BROADCAST if SMP
25         select GENERIC_CPU_AUTOPROBE
26         select GENERIC_EARLY_IOREMAP
27         select GENERIC_IOMAP
28         select GENERIC_IRQ_PROBE
29         select GENERIC_IRQ_SHOW
30         select GENERIC_SMP_IDLE_THREAD
31         select GENERIC_STRNCPY_FROM_USER
32         select GENERIC_STRNLEN_USER
33         select GENERIC_TIME_VSYSCALL
34         select HARDIRQS_SW_RESEND
35         select HAVE_ARCH_JUMP_LABEL
36         select HAVE_ARCH_KGDB
37         select HAVE_ARCH_TRACEHOOK
38         select HAVE_C_RECORDMCOUNT
39         select HAVE_CC_STACKPROTECTOR
40         select HAVE_DEBUG_BUGVERBOSE
41         select HAVE_DEBUG_KMEMLEAK
42         select HAVE_DMA_API_DEBUG
43         select HAVE_DMA_ATTRS
44         select HAVE_DMA_CONTIGUOUS
45         select HAVE_DYNAMIC_FTRACE
46         select HAVE_EFFICIENT_UNALIGNED_ACCESS
47         select HAVE_FTRACE_MCOUNT_RECORD
48         select HAVE_FUNCTION_TRACER
49         select HAVE_FUNCTION_GRAPH_TRACER
50         select HAVE_GENERIC_DMA_COHERENT
51         select HAVE_GENERIC_HARDIRQS
52         select HAVE_HW_BREAKPOINT if PERF_EVENTS
53         select HAVE_MEMBLOCK
54         select HAVE_PATA_PLATFORM
55         select HAVE_PERF_EVENTS
56         select HAVE_PERF_REGS
57         select HAVE_PERF_USER_STACK_DUMP
58         select HAVE_SYSCALL_TRACEPOINTS
59         select IRQ_DOMAIN
60         select MODULES_USE_ELF_RELA
61         select NO_BOOTMEM
62         select OF
63         select OF_EARLY_FLATTREE
64         select OF_RESERVED_MEM
65         select PERF_USE_VMALLOC
66         select POWER_RESET
67         select POWER_SUPPLY
68         select RTC_LIB
69         select SPARSE_IRQ
70         select SYSCTL_EXCEPTION_TRACE
71         help
72           ARM 64-bit (AArch64) Linux support.
73
74 config 64BIT
75         def_bool y
76
77 config ARCH_PHYS_ADDR_T_64BIT
78         def_bool y
79
80 config MMU
81         def_bool y
82
83 config NO_IOPORT
84         def_bool y
85
86 config STACKTRACE_SUPPORT
87         def_bool y
88
89 config LOCKDEP_SUPPORT
90         def_bool y
91
92 config TRACE_IRQFLAGS_SUPPORT
93         def_bool y
94
95 config RWSEM_XCHGADD_ALGORITHM
96         def_bool y
97
98 config GENERIC_HWEIGHT
99         def_bool y
100
101 config GENERIC_CSUM
102         def_bool y
103
104 config GENERIC_CALIBRATE_DELAY
105         def_bool y
106
107 config ZONE_DMA
108         def_bool y
109
110 config ARCH_DMA_ADDR_T_64BIT
111         def_bool y
112
113 config NEED_DMA_MAP_STATE
114         def_bool y
115
116 config NEED_SG_DMA_LENGTH
117         def_bool y
118
119 config SWIOTLB
120         def_bool y
121
122 config IOMMU_HELPER
123         def_bool SWIOTLB
124
125 config FIX_EARLYCON_MEM
126         def_bool y
127
128 source "init/Kconfig"
129
130 source "kernel/Kconfig.freezer"
131
132 menu "Platform selection"
133
134 config ARCH_VEXPRESS
135         bool "ARMv8 software model (Versatile Express)"
136         select ARCH_REQUIRE_GPIOLIB
137         select COMMON_CLK_VERSATILE
138         select POWER_RESET_VEXPRESS
139         select VEXPRESS_CONFIG
140         help
141           This enables support for the ARMv8 software model (Versatile
142           Express).
143
144 config ARCH_XGENE
145         bool "AppliedMicro X-Gene SOC Family"
146         help
147           This enables support for AppliedMicro X-Gene SOC Family
148
149 endmenu
150
151 menu "Bus support"
152
153 config ARM_AMBA
154         bool
155
156 endmenu
157
158 menu "Kernel Features"
159
160 menu "ARM errata workarounds"
161
162 config ARM64_ERRATUM_845719
163         bool "Cortex-A53: 845719: a load might read incorrect data"
164         depends on COMPAT
165         default n
166         help
167           This option adds an alternative code sequence to work around ARM
168           erratum 845719 on Cortex-A53 parts up to r0p4.
169
170           When running a compat (AArch32) userspace on an affected Cortex-A53
171           part, a load at EL0 from a virtual address that matches the bottom 32
172           bits of the virtual address used by a recent load at (AArch64) EL1
173           might return incorrect data.
174
175           The workaround is to write the contextidr_el1 register on exception
176           return to a 32-bit task.
177           Please note that this does not necessarily enable the workaround,
178           as it depends on the alternative framework, which will only patch
179           the kernel if an affected CPU is detected.
180
181           If unsure, say Y.
182
183 endmenu
184
185
186 config ARM64_64K_PAGES
187         bool "Enable 64KB pages support"
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 config CPU_BIG_ENDIAN
195        bool "Build big-endian kernel"
196        help
197          Say Y if you plan on running a kernel in big-endian mode.
198
199 config SMP
200         bool "Symmetric Multi-Processing"
201         select USE_GENERIC_SMP_HELPERS
202         help
203           This enables support for systems with more than one CPU.  If
204           you say N here, the kernel will run on single and
205           multiprocessor machines, but will use only one CPU of a
206           multiprocessor machine. If you say Y here, the kernel will run
207           on many, but not all, single processor machines. On a single
208           processor machine, the kernel will run faster if you say N
209           here.
210
211           If you don't know what to do here, say N.
212
213 config SCHED_MC
214         bool "Multi-core scheduler support"
215         depends on SMP
216         help
217           Multi-core scheduler support improves the CPU scheduler's decision
218           making when dealing with multi-core CPU chips at a cost of slightly
219           increased overhead in some places. If unsure say N here.
220
221 config SCHED_SMT
222         bool "SMT scheduler support"
223         depends on SMP
224         help
225           Improves the CPU scheduler's decision making when dealing with
226           MultiThreading at a cost of slightly increased overhead in some
227           places. If unsure say N here.
228
229 config DISABLE_CPU_SCHED_DOMAIN_BALANCE
230         bool "(EXPERIMENTAL) Disable CPU level scheduler load-balancing"
231         help
232           Disables scheduler load-balancing at CPU sched domain level.
233
234 config SCHED_HMP
235         bool "(EXPERIMENTAL) Heterogenous multiprocessor scheduling"
236         depends on DISABLE_CPU_SCHED_DOMAIN_BALANCE && SCHED_MC && FAIR_GROUP_SCHED && !SCHED_AUTOGROUP
237         help
238           Experimental scheduler optimizations for heterogeneous platforms.
239           Attempts to introspectively select task affinity to optimize power
240           and performance. Basic support for multiple (>2) cpu types is in place,
241           but it has only been tested with two types of cpus.
242           There is currently no support for migration of task groups, hence
243           !SCHED_AUTOGROUP. Furthermore, normal load-balancing must be disabled
244           between cpus of different type (DISABLE_CPU_SCHED_DOMAIN_BALANCE).
245
246 config SCHED_HMP_PRIO_FILTER
247         bool "(EXPERIMENTAL) Filter HMP migrations by task priority"
248         depends on SCHED_HMP
249         help
250           Enables task priority based HMP migration filter. Any task with
251           a NICE value above the threshold will always be on low-power cpus
252           with less compute capacity.
253
254 config SCHED_HMP_PRIO_FILTER_VAL
255         int "NICE priority threshold"
256         default 5
257         depends on SCHED_HMP_PRIO_FILTER
258
259 config HMP_FAST_CPU_MASK
260         string "HMP scheduler fast CPU mask"
261         depends on SCHED_HMP
262         help
263           Leave empty to use device tree information.
264           Specify the cpuids of the fast CPUs in the system as a list string,
265           e.g. cpuid 0+1 should be specified as 0-1.
266
267 config HMP_SLOW_CPU_MASK
268         string "HMP scheduler slow CPU mask"
269         depends on SCHED_HMP
270         help
271           Leave empty to use device tree information.
272           Specify the cpuids of the slow CPUs in the system as a list string,
273           e.g. cpuid 0+1 should be specified as 0-1.
274
275 config HMP_VARIABLE_SCALE
276         bool "Allows changing the load tracking scale through sysfs"
277         depends on SCHED_HMP
278         help
279           When turned on, this option exports the thresholds and load average
280           period value for the load tracking patches through sysfs.
281           The values can be modified to change the rate of load accumulation
282           and the thresholds used for HMP migration.
283           The load_avg_period_ms is the time in ms to reach a load average of
284           0.5 for an idle task of 0 load average ratio that start a busy loop.
285           The up_threshold and down_threshold is the value to go to a faster
286           CPU or to go back to a slower cpu.
287           The {up,down}_threshold are devided by 1024 before being compared
288           to the load average.
289           For examples, with load_avg_period_ms = 128 and up_threshold = 512,
290           a running task with a load of 0 will be migrated to a bigger CPU after
291           128ms, because after 128ms its load_avg_ratio is 0.5 and the real
292           up_threshold is 0.5.
293           This patch has the same behavior as changing the Y of the load
294           average computation to
295                 (1002/1024)^(LOAD_AVG_PERIOD/load_avg_period_ms)
296           but it remove intermadiate overflows in computation.
297
298 config HMP_FREQUENCY_INVARIANT_SCALE
299         bool "(EXPERIMENTAL) Frequency-Invariant Tracked Load for HMP"
300         depends on HMP_VARIABLE_SCALE && CPU_FREQ
301         help
302           Scales the current load contribution in line with the frequency
303           of the CPU that the task was executed on.
304           In this version, we use a simple linear scale derived from the
305           maximum frequency reported by CPUFreq.
306           Restricting tracked load to be scaled by the CPU's frequency
307           represents the consumption of possible compute capacity
308           (rather than consumption of actual instantaneous capacity as
309           normal) and allows the HMP migration's simple threshold
310           migration strategy to interact more predictably with CPUFreq's
311           asynchronous compute capacity changes.
312
313 config SCHED_HMP_LITTLE_PACKING
314         bool "Small task packing for HMP"
315         depends on SCHED_HMP
316         default n
317         help
318           Allows the HMP Scheduler to pack small tasks into CPUs in the
319           smallest HMP domain.
320           Controlled by two sysfs files in sys/kernel/hmp.
321           packing_enable: 1 to enable, 0 to disable packing. Default 1.
322           packing_limit: runqueue load ratio where a RQ is considered
323             to be full. Default is NICE_0_LOAD * 9/8.
324
325 config NR_CPUS
326         int "Maximum number of CPUs (2-32)"
327         range 2 32
328         depends on SMP
329         # These have to remain sorted largest to smallest
330         default "8"
331
332 config HOTPLUG_CPU
333         bool "Support for hot-pluggable CPUs"
334         depends on SMP
335         help
336           Say Y here to experiment with turning CPUs off and on.  CPUs
337           can be controlled through /sys/devices/system/cpu.
338
339 source kernel/Kconfig.preempt
340
341 config HZ
342         int
343         default 100
344
345 config ARCH_HAS_HOLES_MEMORYMODEL
346         def_bool y if SPARSEMEM
347
348 config ARCH_SPARSEMEM_ENABLE
349         def_bool y
350         select SPARSEMEM_VMEMMAP_ENABLE
351
352 config ARCH_SPARSEMEM_DEFAULT
353         def_bool ARCH_SPARSEMEM_ENABLE
354
355 config ARCH_SELECT_MEMORY_MODEL
356         def_bool ARCH_SPARSEMEM_ENABLE
357
358 config HAVE_ARCH_PFN_VALID
359         def_bool ARCH_HAS_HOLES_MEMORYMODEL || !SPARSEMEM
360
361 config HW_PERF_EVENTS
362         bool "Enable hardware performance counter support for perf events"
363         depends on PERF_EVENTS
364         default y
365         help
366           Enable hardware performance counter support for perf events. If
367           disabled, perf events will use software events only.
368
369 config SYS_SUPPORTS_HUGETLBFS
370         def_bool y
371
372 config ARCH_WANT_GENERAL_HUGETLB
373         def_bool y
374
375 config ARCH_WANT_HUGE_PMD_SHARE
376         def_bool y if !ARM64_64K_PAGES
377
378 config HAVE_ARCH_TRANSPARENT_HUGEPAGE
379         def_bool y
380
381 source "mm/Kconfig"
382
383 config FORCE_MAX_ZONEORDER
384         int
385         default "14" if (ARM64_64K_PAGES && TRANSPARENT_HUGEPAGE)
386         default "11"
387
388 endmenu
389
390 menu "Boot options"
391
392 config CMDLINE
393         string "Default kernel command string"
394         default ""
395         help
396           Provide a set of default command-line options at build time by
397           entering them here. As a minimum, you should specify the the
398           root device (e.g. root=/dev/nfs).
399
400 config CMDLINE_FORCE
401         bool "Always use the default kernel command string"
402         help
403           Always use the default kernel command string, even if the boot
404           loader passes other arguments to the kernel.
405           This is useful if you cannot or don't want to change the
406           command-line options your boot loader passes to the kernel.
407
408 config EFI
409         bool "UEFI runtime support"
410         depends on OF && !CPU_BIG_ENDIAN
411         select LIBFDT
412         select UCS2_STRING
413         select EFI_PARAMS_FROM_FDT
414         default y
415         help
416           This option provides support for runtime services provided
417           by UEFI firmware (such as non-volatile variables, realtime
418           clock, and platform reset). A UEFI stub is also provided to
419           allow the kernel to be booted as an EFI application. This
420           is only useful on systems that have UEFI firmware.
421
422 endmenu
423
424 menu "Userspace binary formats"
425
426 source "fs/Kconfig.binfmt"
427
428 config COMPAT
429         bool "Kernel support for 32-bit EL0"
430         depends on !ARM64_64K_PAGES
431         select COMPAT_BINFMT_ELF
432         select HAVE_UID16
433         select OLD_SIGSUSPEND3
434         select COMPAT_OLD_SIGACTION
435         help
436           This option enables support for a 32-bit EL0 running under a 64-bit
437           kernel at EL1. AArch32-specific components such as system calls,
438           the user helper functions, VFP support and the ptrace interface are
439           handled appropriately by the kernel.
440
441           If you want to execute 32-bit userspace applications, say Y.
442
443 config SYSVIPC_COMPAT
444         def_bool y
445         depends on COMPAT && SYSVIPC
446
447 endmenu
448
449 menu "Power management options"
450
451 source "kernel/power/Kconfig"
452
453 source "drivers/cpufreq/Kconfig"
454 config ARCH_SUSPEND_POSSIBLE
455         def_bool y
456
457 config ARM64_CPU_SUSPEND
458         def_bool PM_SLEEP
459
460 endmenu
461
462 menu "CPU Power Management"
463
464 source "drivers/cpuidle/Kconfig"
465
466 endmenu
467
468 source "net/Kconfig"
469
470 source "drivers/Kconfig"
471
472 source "drivers/firmware/Kconfig"
473
474 source "fs/Kconfig"
475
476 source "arch/arm64/kvm/Kconfig"
477
478 source "arch/arm64/Kconfig.debug"
479
480 source "security/Kconfig"
481
482 source "crypto/Kconfig"
483 if CRYPTO
484 source "arch/arm64/crypto/Kconfig"
485 endif
486
487 source "lib/Kconfig"