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