blob: baab4eb8bfe463613ccdc25e9a248d5ed04ce4a4 [file] [log] [blame]
Catalin Marinas8c2c3df2012-04-20 14:45:54 +01001config ARM64
2 def_bool y
3 select ARCH_HAS_ATOMIC64_DEC_IF_POSITIVE
Will Deacon5686b062013-10-09 15:54:27 +01004 select ARCH_USE_CMPXCHG_LOCKREF
Lorenzo Pieralisi1f850082013-09-04 10:55:17 +01005 select ARCH_HAS_TICK_BROADCAST if GENERIC_CLOCKEVENTS_BROADCAST
Arnd Bergmann91701002013-02-21 11:42:57 +01006 select ARCH_WANT_OPTIONAL_GPIOLIB
Will Deacon6212a512012-11-07 14:16:28 +00007 select ARCH_WANT_COMPAT_IPC_PARSE_VERSION
Catalin Marinasb6f35982013-01-29 18:25:41 +00008 select ARCH_WANT_FRAME_POINTERS
Catalin Marinas25c92a32012-12-18 15:26:13 +00009 select ARM_AMBA
Mark Rutland1aee5d72012-11-20 10:06:00 +000010 select ARM_ARCH_TIMER
Catalin Marinasc4188ed2013-01-14 12:39:31 +000011 select ARM_GIC
Will Deaconadace892013-05-08 17:29:24 +010012 select BUILDTIME_EXTABLE_SORT
Catalin Marinasdb2789b2012-12-18 15:27:25 +000013 select CLONE_BACKWARDS
Deepak Saxena7ca2ef32012-09-22 10:33:36 -070014 select COMMON_CLK
Catalin Marinas8c2c3df2012-04-20 14:45:54 +010015 select GENERIC_CLOCKEVENTS
Lorenzo Pieralisi1f850082013-09-04 10:55:17 +010016 select GENERIC_CLOCKEVENTS_BROADCAST if SMP
Catalin Marinas8c2c3df2012-04-20 14:45:54 +010017 select GENERIC_IOMAP
18 select GENERIC_IRQ_PROBE
19 select GENERIC_IRQ_SHOW
Stephen Boyd65cd4f62013-07-18 16:21:18 -070020 select GENERIC_SCHED_CLOCK
Catalin Marinas8c2c3df2012-04-20 14:45:54 +010021 select GENERIC_SMP_IDLE_THREAD
22 select GENERIC_TIME_VSYSCALL
23 select HARDIRQS_SW_RESEND
24 select HAVE_ARCH_TRACEHOOK
Catalin Marinas9b2a60c2012-10-08 16:28:13 -070025 select HAVE_DEBUG_BUGVERBOSE
Catalin Marinasb69ec422012-10-08 16:28:11 -070026 select HAVE_DEBUG_KMEMLEAK
Catalin Marinas8c2c3df2012-04-20 14:45:54 +010027 select HAVE_DMA_API_DEBUG
28 select HAVE_DMA_ATTRS
29 select HAVE_GENERIC_DMA_COHERENT
Catalin Marinas8c2c3df2012-04-20 14:45:54 +010030 select HAVE_HW_BREAKPOINT if PERF_EVENTS
Catalin Marinas8c2c3df2012-04-20 14:45:54 +010031 select HAVE_MEMBLOCK
32 select HAVE_PERF_EVENTS
Catalin Marinas8c2c3df2012-04-20 14:45:54 +010033 select IRQ_DOMAIN
Catalin Marinasfea2aca2012-10-16 11:26:57 +010034 select MODULES_USE_ELF_RELA
Catalin Marinas8c2c3df2012-04-20 14:45:54 +010035 select NO_BOOTMEM
36 select OF
37 select OF_EARLY_FLATTREE
38 select PERF_USE_VMALLOC
Catalin Marinasaa1e8ec2013-02-28 18:14:37 +000039 select POWER_RESET
40 select POWER_SUPPLY
Catalin Marinas8c2c3df2012-04-20 14:45:54 +010041 select RTC_LIB
42 select SPARSE_IRQ
Catalin Marinas7ac57a82012-10-08 16:28:16 -070043 select SYSCTL_EXCEPTION_TRACE
Catalin Marinas8c2c3df2012-04-20 14:45:54 +010044 help
45 ARM 64-bit (AArch64) Linux support.
46
47config 64BIT
48 def_bool y
49
50config ARCH_PHYS_ADDR_T_64BIT
51 def_bool y
52
53config MMU
54 def_bool y
55
56config NO_IOPORT
57 def_bool y
58
59config STACKTRACE_SUPPORT
60 def_bool y
61
62config LOCKDEP_SUPPORT
63 def_bool y
64
65config TRACE_IRQFLAGS_SUPPORT
66 def_bool y
67
Catalin Marinas8c2c3df2012-04-20 14:45:54 +010068config RWSEM_GENERIC_SPINLOCK
69 def_bool y
70
71config GENERIC_HWEIGHT
72 def_bool y
73
74config GENERIC_CSUM
75 def_bool y
76
77config GENERIC_CALIBRATE_DELAY
78 def_bool y
79
80config ZONE_DMA32
81 def_bool y
82
83config ARCH_DMA_ADDR_T_64BIT
84 def_bool y
85
86config NEED_DMA_MAP_STATE
87 def_bool y
88
89config NEED_SG_DMA_LENGTH
90 def_bool y
91
92config SWIOTLB
93 def_bool y
94
95config IOMMU_HELPER
96 def_bool SWIOTLB
97
Ard Biesheuvel4cfb3612013-07-09 14:18:12 +010098config KERNEL_MODE_NEON
99 def_bool y
100
Catalin Marinas8c2c3df2012-04-20 14:45:54 +0100101source "init/Kconfig"
102
103source "kernel/Kconfig.freezer"
104
Catalin Marinas1ae90e72012-09-05 17:47:44 +0100105menu "Platform selection"
106
107config ARCH_VEXPRESS
108 bool "ARMv8 software model (Versatile Express)"
109 select ARCH_REQUIRE_GPIOLIB
110 select COMMON_CLK_VERSATILE
Catalin Marinasaa1e8ec2013-02-28 18:14:37 +0000111 select POWER_RESET_VEXPRESS
Catalin Marinas1ae90e72012-09-05 17:47:44 +0100112 select VEXPRESS_CONFIG
113 help
114 This enables support for the ARMv8 software model (Versatile
115 Express).
Catalin Marinas8c2c3df2012-04-20 14:45:54 +0100116
Vinayak Kale15942852013-04-24 10:06:57 +0100117config ARCH_XGENE
118 bool "AppliedMicro X-Gene SOC Family"
119 help
120 This enables support for AppliedMicro X-Gene SOC Family
121
Catalin Marinas8c2c3df2012-04-20 14:45:54 +0100122endmenu
123
124menu "Bus support"
125
126config ARM_AMBA
127 bool
128
129endmenu
130
131menu "Kernel Features"
132
Catalin Marinas8c2c3df2012-04-20 14:45:54 +0100133config ARM64_64K_PAGES
134 bool "Enable 64KB pages support"
135 help
136 This feature enables 64KB pages support (4KB by default)
137 allowing only two levels of page tables and faster TLB
138 look-up. AArch32 emulation is not available when this feature
139 is enabled.
140
Will Deacona8720132013-10-11 14:52:19 +0100141config CPU_BIG_ENDIAN
142 bool "Build big-endian kernel"
143 help
144 Say Y if you plan on running a kernel in big-endian mode.
145
Catalin Marinas8c2c3df2012-04-20 14:45:54 +0100146config SMP
147 bool "Symmetric Multi-Processing"
Catalin Marinas8c2c3df2012-04-20 14:45:54 +0100148 help
149 This enables support for systems with more than one CPU. If
150 you say N here, the kernel will run on single and
151 multiprocessor machines, but will use only one CPU of a
152 multiprocessor machine. If you say Y here, the kernel will run
153 on many, but not all, single processor machines. On a single
154 processor machine, the kernel will run faster if you say N
155 here.
156
157 If you don't know what to do here, say N.
158
159config NR_CPUS
160 int "Maximum number of CPUs (2-32)"
161 range 2 32
162 depends on SMP
Vinayak Kale15942852013-04-24 10:06:57 +0100163 # These have to remain sorted largest to smallest
Rob Herring62aceb82013-11-22 21:07:31 +0000164 default "8"
Catalin Marinas8c2c3df2012-04-20 14:45:54 +0100165
Mark Rutland9327e2c2013-10-24 20:30:18 +0100166config HOTPLUG_CPU
167 bool "Support for hot-pluggable CPUs"
168 depends on SMP
169 help
170 Say Y here to experiment with turning CPUs off and on. CPUs
171 can be controlled through /sys/devices/system/cpu.
172
Catalin Marinas8c2c3df2012-04-20 14:45:54 +0100173source kernel/Kconfig.preempt
174
175config HZ
176 int
177 default 100
178
179config ARCH_HAS_HOLES_MEMORYMODEL
180 def_bool y if SPARSEMEM
181
182config ARCH_SPARSEMEM_ENABLE
183 def_bool y
184 select SPARSEMEM_VMEMMAP_ENABLE
185
186config ARCH_SPARSEMEM_DEFAULT
187 def_bool ARCH_SPARSEMEM_ENABLE
188
189config ARCH_SELECT_MEMORY_MODEL
190 def_bool ARCH_SPARSEMEM_ENABLE
191
192config HAVE_ARCH_PFN_VALID
193 def_bool ARCH_HAS_HOLES_MEMORYMODEL || !SPARSEMEM
194
195config HW_PERF_EVENTS
196 bool "Enable hardware performance counter support for perf events"
197 depends on PERF_EVENTS
198 default y
199 help
200 Enable hardware performance counter support for perf events. If
201 disabled, perf events will use software events only.
202
Steve Capper084bd292013-04-10 13:48:00 +0100203config SYS_SUPPORTS_HUGETLBFS
204 def_bool y
205
206config ARCH_WANT_GENERAL_HUGETLB
207 def_bool y
208
209config ARCH_WANT_HUGE_PMD_SHARE
210 def_bool y if !ARM64_64K_PAGES
211
Steve Capperaf074842013-04-19 16:23:57 +0100212config HAVE_ARCH_TRANSPARENT_HUGEPAGE
213 def_bool y
214
Catalin Marinas8c2c3df2012-04-20 14:45:54 +0100215source "mm/Kconfig"
216
Stefano Stabelliniaa42aa12013-06-03 17:05:43 +0000217config XEN_DOM0
218 def_bool y
219 depends on XEN
220
221config XEN
222 bool "Xen guest support on ARM64 (EXPERIMENTAL)"
223 depends on ARM64 && OF
Stefano Stabellini83862cc2013-10-10 13:40:44 +0000224 select SWIOTLB_XEN
Stefano Stabelliniaa42aa12013-06-03 17:05:43 +0000225 help
226 Say Y if you want to run Linux in a Virtual Machine on Xen on ARM64.
227
Steve Capperd03bb142013-04-25 15:19:21 +0100228config FORCE_MAX_ZONEORDER
229 int
230 default "14" if (ARM64_64K_PAGES && TRANSPARENT_HUGEPAGE)
231 default "11"
232
Catalin Marinas8c2c3df2012-04-20 14:45:54 +0100233endmenu
234
235menu "Boot options"
236
237config CMDLINE
238 string "Default kernel command string"
239 default ""
240 help
241 Provide a set of default command-line options at build time by
242 entering them here. As a minimum, you should specify the the
243 root device (e.g. root=/dev/nfs).
244
245config CMDLINE_FORCE
246 bool "Always use the default kernel command string"
247 help
248 Always use the default kernel command string, even if the boot
249 loader passes other arguments to the kernel.
250 This is useful if you cannot or don't want to change the
251 command-line options your boot loader passes to the kernel.
252
253endmenu
254
255menu "Userspace binary formats"
256
257source "fs/Kconfig.binfmt"
258
259config COMPAT
260 bool "Kernel support for 32-bit EL0"
261 depends on !ARM64_64K_PAGES
262 select COMPAT_BINFMT_ELF
Catalin Marinasaf1839e2012-10-08 16:28:08 -0700263 select HAVE_UID16
Al Viro84b9e9b2012-12-25 16:29:11 -0500264 select OLD_SIGSUSPEND3
Al Viro51682032012-12-25 19:31:29 -0500265 select COMPAT_OLD_SIGACTION
Catalin Marinas8c2c3df2012-04-20 14:45:54 +0100266 help
267 This option enables support for a 32-bit EL0 running under a 64-bit
268 kernel at EL1. AArch32-specific components such as system calls,
269 the user helper functions, VFP support and the ptrace interface are
270 handled appropriately by the kernel.
271
272 If you want to execute 32-bit userspace applications, say Y.
273
274config SYSVIPC_COMPAT
275 def_bool y
276 depends on COMPAT && SYSVIPC
277
278endmenu
279
280source "net/Kconfig"
281
282source "drivers/Kconfig"
283
284source "fs/Kconfig"
285
Marc Zyngierc3eb5b12013-07-04 13:34:32 +0100286source "arch/arm64/kvm/Kconfig"
287
Catalin Marinas8c2c3df2012-04-20 14:45:54 +0100288source "arch/arm64/Kconfig.debug"
289
290source "security/Kconfig"
291
292source "crypto/Kconfig"
293
294source "lib/Kconfig"