xref: /linux/arch/arm/Kconfig (revision 2cd3c92738722d4b510830e948ffad9c7f60adf8)
11da177e4SLinus Torvaldsconfig ARM
21da177e4SLinus Torvalds	bool
31da177e4SLinus Torvalds	default y
4b1b3f49cSRussell King	select ARCH_BINFMT_ELF_RANDOMIZE_PIE
57463449bSCatalin Marinas	select ARCH_HAS_ATOMIC64_DEC_IF_POSITIVE
6b1b3f49cSRussell King	select ARCH_HAVE_CUSTOM_GPIO_H
73d06770eSMark Rutland	select ARCH_HAS_TICK_BROADCAST if GENERIC_CLOCKEVENTS_BROADCAST
8b1b3f49cSRussell King	select ARCH_WANT_IPC_PARSE_VERSION
9ee951c63SStephen Boyd	select BUILDTIME_EXTABLE_SORT if MMU
10b1b3f49cSRussell King	select CPU_PM if (SUSPEND || CPU_IDLE)
1139b175a0SWill Deacon	select DCACHE_WORD_ACCESS if (CPU_V6 || CPU_V6K || CPU_V7) && !CPU_BIG_ENDIAN && MMU
12b1b3f49cSRussell King	select GENERIC_ATOMIC64 if (CPU_V6 || !CPU_32v6K || !AEABI)
13b1b3f49cSRussell King	select GENERIC_CLOCKEVENTS_BROADCAST if SMP
14b1b3f49cSRussell King	select GENERIC_IRQ_PROBE
15b1b3f49cSRussell King	select GENERIC_IRQ_SHOW
16b1b3f49cSRussell King	select GENERIC_PCI_IOMAP
17b1b3f49cSRussell King	select GENERIC_SMP_IDLE_THREAD
18f7b861b7SThomas Gleixner	select GENERIC_IDLE_POLL_SETUP
19b1b3f49cSRussell King	select GENERIC_STRNCPY_FROM_USER
20b1b3f49cSRussell King	select GENERIC_STRNLEN_USER
21b1b3f49cSRussell King	select HARDIRQS_SW_RESEND
22b1b3f49cSRussell King	select HAVE_AOUT
2309f05d85SRabin Vincent	select HAVE_ARCH_JUMP_LABEL if !XIP_KERNEL
245cbad0ebSJason Wessel	select HAVE_ARCH_KGDB
254095ccc3SWill Drewry	select HAVE_ARCH_SECCOMP_FILTER
260693bf68SWade Farnsworth	select HAVE_ARCH_TRACEHOOK
27b1b3f49cSRussell King	select HAVE_BPF_JIT
28b1b3f49cSRussell King	select HAVE_C_RECORDMCOUNT
29b1b3f49cSRussell King	select HAVE_DEBUG_KMEMLEAK
30b1b3f49cSRussell King	select HAVE_DMA_API_DEBUG
31b1b3f49cSRussell King	select HAVE_DMA_ATTRS
32b1b3f49cSRussell King	select HAVE_DMA_CONTIGUOUS if MMU
33b1b3f49cSRussell King	select HAVE_DYNAMIC_FTRACE if (!XIP_KERNEL)
34b1b3f49cSRussell King	select HAVE_FTRACE_MCOUNT_RECORD if (!XIP_KERNEL)
35b1b3f49cSRussell King	select HAVE_FUNCTION_GRAPH_TRACER if (!THUMB2_KERNEL)
36b1b3f49cSRussell King	select HAVE_FUNCTION_TRACER if (!XIP_KERNEL)
37b1b3f49cSRussell King	select HAVE_GENERIC_DMA_COHERENT
38b1b3f49cSRussell King	select HAVE_GENERIC_HARDIRQS
39b1b3f49cSRussell King	select HAVE_HW_BREAKPOINT if (PERF_EVENTS && (CPU_V6 || CPU_V6K || CPU_V7))
40b1b3f49cSRussell King	select HAVE_IDE if PCI || ISA || PCMCIA
4187c46b6cSRussell King	select HAVE_IRQ_TIME_ACCOUNTING
42b1b3f49cSRussell King	select HAVE_KERNEL_GZIP
43b1b3f49cSRussell King	select HAVE_KERNEL_LZMA
44b1b3f49cSRussell King	select HAVE_KERNEL_LZO
45b1b3f49cSRussell King	select HAVE_KERNEL_XZ
46856bc356SJon Medhurst	select HAVE_KPROBES if !XIP_KERNEL
479edddaa2SAnanth N Mavinakayanahalli	select HAVE_KRETPROBES if (HAVE_KPROBES)
48b1b3f49cSRussell King	select HAVE_MEMBLOCK
49b1b3f49cSRussell King	select HAVE_OPROFILE if (HAVE_PERF_EVENTS)
507ada189fSJamie Iles	select HAVE_PERF_EVENTS
51e513f8bfSWill Deacon	select HAVE_REGS_AND_STACK_ACCESS_API
52b1b3f49cSRussell King	select HAVE_SYSCALL_TRACEPOINTS
53af1839ebSCatalin Marinas	select HAVE_UID16
543d92a71aSAnna-Maria Gleixner	select KTIME_SCALAR
55b1b3f49cSRussell King	select PERF_USE_VMALLOC
56b1b3f49cSRussell King	select RTC_LIB
57b1b3f49cSRussell King	select SYS_SUPPORTS_APM_EMULATION
58786d35d4SDavid Howells	select HAVE_MOD_ARCH_SPECIFIC if ARM_UNWIND
59786d35d4SDavid Howells	select MODULES_USE_ELF_REL
6038a61b6bSAl Viro	select CLONE_BACKWARDS
61b68fec24SAl Viro	select OLD_SIGSUSPEND3
6250bcb7e4SAl Viro	select OLD_SIGACTION
63b0088480SKevin Hilman	select HAVE_CONTEXT_TRACKING
641da177e4SLinus Torvalds	help
651da177e4SLinus Torvalds	  The ARM series is a line of low-power-consumption RISC chip designs
66f6c8965aSMartin Michlmayr	  licensed by ARM Ltd and targeted at embedded applications and
671da177e4SLinus Torvalds	  handhelds such as the Compaq IPAQ.  ARM-based PCs are no longer
681da177e4SLinus Torvalds	  manufactured, but legacy ARM-based PC hardware remains popular in
691da177e4SLinus Torvalds	  Europe.  There is an ARM Linux project with a web page at
701da177e4SLinus Torvalds	  <http://www.arm.linux.org.uk/>.
711da177e4SLinus Torvalds
7274facffeSRussell Kingconfig ARM_HAS_SG_CHAIN
7374facffeSRussell King	bool
7474facffeSRussell King
754ce63fcdSMarek Szyprowskiconfig NEED_SG_DMA_LENGTH
764ce63fcdSMarek Szyprowski	bool
774ce63fcdSMarek Szyprowski
784ce63fcdSMarek Szyprowskiconfig ARM_DMA_USE_IOMMU
794ce63fcdSMarek Szyprowski	bool
80b1b3f49cSRussell King	select ARM_HAS_SG_CHAIN
81b1b3f49cSRussell King	select NEED_SG_DMA_LENGTH
824ce63fcdSMarek Szyprowski
8360460abfSSeung-Woo Kimif ARM_DMA_USE_IOMMU
8460460abfSSeung-Woo Kim
8560460abfSSeung-Woo Kimconfig ARM_DMA_IOMMU_ALIGNMENT
8660460abfSSeung-Woo Kim	int "Maximum PAGE_SIZE order of alignment for DMA IOMMU buffers"
8760460abfSSeung-Woo Kim	range 4 9
8860460abfSSeung-Woo Kim	default 8
8960460abfSSeung-Woo Kim	help
9060460abfSSeung-Woo Kim	  DMA mapping framework by default aligns all buffers to the smallest
9160460abfSSeung-Woo Kim	  PAGE_SIZE order which is greater than or equal to the requested buffer
9260460abfSSeung-Woo Kim	  size. This works well for buffers up to a few hundreds kilobytes, but
9360460abfSSeung-Woo Kim	  for larger buffers it just a waste of address space. Drivers which has
9460460abfSSeung-Woo Kim	  relatively small addressing window (like 64Mib) might run out of
9560460abfSSeung-Woo Kim	  virtual space with just a few allocations.
9660460abfSSeung-Woo Kim
9760460abfSSeung-Woo Kim	  With this parameter you can specify the maximum PAGE_SIZE order for
9860460abfSSeung-Woo Kim	  DMA IOMMU buffers. Larger buffers will be aligned only to this
9960460abfSSeung-Woo Kim	  specified order. The order is expressed as a power of two multiplied
10060460abfSSeung-Woo Kim	  by the PAGE_SIZE.
10160460abfSSeung-Woo Kim
10260460abfSSeung-Woo Kimendif
10360460abfSSeung-Woo Kim
1041a189b97SRussell Kingconfig HAVE_PWM
1051a189b97SRussell King	bool
1061a189b97SRussell King
1070b05da72SHans Ulli Krollconfig MIGHT_HAVE_PCI
1080b05da72SHans Ulli Kroll	bool
1090b05da72SHans Ulli Kroll
11075e7153aSRalf Baechleconfig SYS_SUPPORTS_APM_EMULATION
11175e7153aSRalf Baechle	bool
11275e7153aSRalf Baechle
113bc581770SLinus Walleijconfig HAVE_TCM
114bc581770SLinus Walleij	bool
115bc581770SLinus Walleij	select GENERIC_ALLOCATOR
116bc581770SLinus Walleij
117e119bfffSRussell Kingconfig HAVE_PROC_CPU
118e119bfffSRussell King	bool
119e119bfffSRussell King
1205ea81769SAl Viroconfig NO_IOPORT
1215ea81769SAl Viro	bool
1225ea81769SAl Viro
1231da177e4SLinus Torvaldsconfig EISA
1241da177e4SLinus Torvalds	bool
1251da177e4SLinus Torvalds	---help---
1261da177e4SLinus Torvalds	  The Extended Industry Standard Architecture (EISA) bus was
1271da177e4SLinus Torvalds	  developed as an open alternative to the IBM MicroChannel bus.
1281da177e4SLinus Torvalds
1291da177e4SLinus Torvalds	  The EISA bus provided some of the features of the IBM MicroChannel
1301da177e4SLinus Torvalds	  bus while maintaining backward compatibility with cards made for
1311da177e4SLinus Torvalds	  the older ISA bus.  The EISA bus saw limited use between 1988 and
1321da177e4SLinus Torvalds	  1995 when it was made obsolete by the PCI bus.
1331da177e4SLinus Torvalds
1341da177e4SLinus Torvalds	  Say Y here if you are building a kernel for an EISA-based machine.
1351da177e4SLinus Torvalds
1361da177e4SLinus Torvalds	  Otherwise, say N.
1371da177e4SLinus Torvalds
1381da177e4SLinus Torvaldsconfig SBUS
1391da177e4SLinus Torvalds	bool
1401da177e4SLinus Torvalds
141f16fb1ecSRussell Kingconfig STACKTRACE_SUPPORT
142f16fb1ecSRussell King	bool
143f16fb1ecSRussell King	default y
144f16fb1ecSRussell King
145f76e9154SNicolas Pitreconfig HAVE_LATENCYTOP_SUPPORT
146f76e9154SNicolas Pitre	bool
147f76e9154SNicolas Pitre	depends on !SMP
148f76e9154SNicolas Pitre	default y
149f76e9154SNicolas Pitre
150f16fb1ecSRussell Kingconfig LOCKDEP_SUPPORT
151f16fb1ecSRussell King	bool
152f16fb1ecSRussell King	default y
153f16fb1ecSRussell King
1547ad1bcb2SRussell Kingconfig TRACE_IRQFLAGS_SUPPORT
1557ad1bcb2SRussell King	bool
1567ad1bcb2SRussell King	default y
1577ad1bcb2SRussell King
1581da177e4SLinus Torvaldsconfig RWSEM_GENERIC_SPINLOCK
1591da177e4SLinus Torvalds	bool
1601da177e4SLinus Torvalds	default y
1611da177e4SLinus Torvalds
1621da177e4SLinus Torvaldsconfig RWSEM_XCHGADD_ALGORITHM
1631da177e4SLinus Torvalds	bool
1641da177e4SLinus Torvalds
165f0d1b0b3SDavid Howellsconfig ARCH_HAS_ILOG2_U32
166f0d1b0b3SDavid Howells	bool
167f0d1b0b3SDavid Howells
168f0d1b0b3SDavid Howellsconfig ARCH_HAS_ILOG2_U64
169f0d1b0b3SDavid Howells	bool
170f0d1b0b3SDavid Howells
17189c52ed4SBen Dooksconfig ARCH_HAS_CPUFREQ
17289c52ed4SBen Dooks	bool
17389c52ed4SBen Dooks	help
17489c52ed4SBen Dooks	  Internal node to signify that the ARCH has CPUFREQ support
17589c52ed4SBen Dooks	  and that the relevant menu configurations are displayed for
17689c52ed4SBen Dooks	  it.
17789c52ed4SBen Dooks
178b89c3b16SAkinobu Mitaconfig GENERIC_HWEIGHT
179b89c3b16SAkinobu Mita	bool
180b89c3b16SAkinobu Mita	default y
181b89c3b16SAkinobu Mita
1821da177e4SLinus Torvaldsconfig GENERIC_CALIBRATE_DELAY
1831da177e4SLinus Torvalds	bool
1841da177e4SLinus Torvalds	default y
1851da177e4SLinus Torvalds
186a08b6b79Sviro@ZenIV.linux.org.ukconfig ARCH_MAY_HAVE_PC_FDC
187a08b6b79Sviro@ZenIV.linux.org.uk	bool
188a08b6b79Sviro@ZenIV.linux.org.uk
1895ac6da66SChristoph Lameterconfig ZONE_DMA
1905ac6da66SChristoph Lameter	bool
1915ac6da66SChristoph Lameter
192ccd7ab7fSFUJITA Tomonoriconfig NEED_DMA_MAP_STATE
193ccd7ab7fSFUJITA Tomonori       def_bool y
194ccd7ab7fSFUJITA Tomonori
19558af4a24SRob Herringconfig ARCH_HAS_DMA_SET_COHERENT_MASK
19658af4a24SRob Herring	bool
19758af4a24SRob Herring
1981da177e4SLinus Torvaldsconfig GENERIC_ISA_DMA
1991da177e4SLinus Torvalds	bool
2001da177e4SLinus Torvalds
2011da177e4SLinus Torvaldsconfig FIQ
2021da177e4SLinus Torvalds	bool
2031da177e4SLinus Torvalds
20413a5045dSRob Herringconfig NEED_RET_TO_USER
20513a5045dSRob Herring	bool
20613a5045dSRob Herring
207034d2f5aSAl Viroconfig ARCH_MTD_XIP
208034d2f5aSAl Viro	bool
209034d2f5aSAl Viro
210c760fc19SHyok S. Choiconfig VECTORS_BASE
211c760fc19SHyok S. Choi	hex
2126afd6faeSHyok S. Choi	default 0xffff0000 if MMU || CPU_HIGH_VECTOR
213c760fc19SHyok S. Choi	default DRAM_BASE if REMAP_VECTORS_TO_RAM
214c760fc19SHyok S. Choi	default 0x00000000
215c760fc19SHyok S. Choi	help
216c760fc19SHyok S. Choi	  The base address of exception vectors.
217c760fc19SHyok S. Choi
218dc21af99SRussell Kingconfig ARM_PATCH_PHYS_VIRT
219c1becedcSRussell King	bool "Patch physical to virtual translations at runtime" if EMBEDDED
220c1becedcSRussell King	default y
221b511d75dSNicolas Pitre	depends on !XIP_KERNEL && MMU
222dc21af99SRussell King	depends on !ARCH_REALVIEW || !SPARSEMEM
223dc21af99SRussell King	help
224111e9a5cSRussell King	  Patch phys-to-virt and virt-to-phys translation functions at
225111e9a5cSRussell King	  boot and module load time according to the position of the
226111e9a5cSRussell King	  kernel in system memory.
227dc21af99SRussell King
228111e9a5cSRussell King	  This can only be used with non-XIP MMU kernels where the base
229daece596SNicolas Pitre	  of physical memory is at a 16MB boundary.
230dc21af99SRussell King
231c1becedcSRussell King	  Only disable this option if you know that you do not require
232c1becedcSRussell King	  this feature (eg, building a kernel for a single machine) and
233c1becedcSRussell King	  you need to shrink the kernel to the minimal size.
234c1becedcSRussell King
23501464226SRob Herringconfig NEED_MACH_GPIO_H
23601464226SRob Herring	bool
23701464226SRob Herring	help
23801464226SRob Herring	  Select this when mach/gpio.h is required to provide special
23901464226SRob Herring	  definitions for this platform. The need for mach/gpio.h should
24001464226SRob Herring	  be avoided when possible.
24101464226SRob Herring
242c334bc15SRob Herringconfig NEED_MACH_IO_H
243c334bc15SRob Herring	bool
244c334bc15SRob Herring	help
245c334bc15SRob Herring	  Select this when mach/io.h is required to provide special
246c334bc15SRob Herring	  definitions for this platform.  The need for mach/io.h should
247c334bc15SRob Herring	  be avoided when possible.
248c334bc15SRob Herring
2490cdc8b92SNicolas Pitreconfig NEED_MACH_MEMORY_H
2501b9f95f8SNicolas Pitre	bool
251111e9a5cSRussell King	help
2520cdc8b92SNicolas Pitre	  Select this when mach/memory.h is required to provide special
2530cdc8b92SNicolas Pitre	  definitions for this platform.  The need for mach/memory.h should
2540cdc8b92SNicolas Pitre	  be avoided when possible.
2551b9f95f8SNicolas Pitre
2561b9f95f8SNicolas Pitreconfig PHYS_OFFSET
257974c0724SNicolas Pitre	hex "Physical address of main memory" if MMU
2580cdc8b92SNicolas Pitre	depends on !ARM_PATCH_PHYS_VIRT && !NEED_MACH_MEMORY_H
259974c0724SNicolas Pitre	default DRAM_BASE if !MMU
2601b9f95f8SNicolas Pitre	help
2611b9f95f8SNicolas Pitre	  Please provide the physical address corresponding to the
2621b9f95f8SNicolas Pitre	  location of main memory in your system.
263cada3c08SRussell King
26487e040b6SSimon Glassconfig GENERIC_BUG
26587e040b6SSimon Glass	def_bool y
26687e040b6SSimon Glass	depends on BUG
26787e040b6SSimon Glass
2681da177e4SLinus Torvaldssource "init/Kconfig"
2691da177e4SLinus Torvalds
270dc52ddc0SMatt Helsleysource "kernel/Kconfig.freezer"
271dc52ddc0SMatt Helsley
2721da177e4SLinus Torvaldsmenu "System Type"
2731da177e4SLinus Torvalds
2743c427975SHyok S. Choiconfig MMU
2753c427975SHyok S. Choi	bool "MMU-based Paged Memory Management Support"
2763c427975SHyok S. Choi	default y
2773c427975SHyok S. Choi	help
2783c427975SHyok S. Choi	  Select if you want MMU-based virtualised addressing space
2793c427975SHyok S. Choi	  support by paged memory management. If unsure, say 'Y'.
2803c427975SHyok S. Choi
281ccf50e23SRussell King#
282ccf50e23SRussell King# The "ARM system type" choice list is ordered alphabetically by option
283ccf50e23SRussell King# text.  Please add new entries in the option alphabetic order.
284ccf50e23SRussell King#
2851da177e4SLinus Torvaldschoice
2861da177e4SLinus Torvalds	prompt "ARM system type"
2871420b22bSArnd Bergmann	default ARCH_VERSATILE if !MMU
2881420b22bSArnd Bergmann	default ARCH_MULTIPLATFORM if MMU
2891da177e4SLinus Torvalds
290387798b3SRob Herringconfig ARCH_MULTIPLATFORM
291387798b3SRob Herring	bool "Allow multiple platforms to be selected"
292b1b3f49cSRussell King	depends on MMU
293387798b3SRob Herring	select ARM_PATCH_PHYS_VIRT
294387798b3SRob Herring	select AUTO_ZRELADDR
29566314223SDinh Nguyen	select COMMON_CLK
296387798b3SRob Herring	select MULTI_IRQ_HANDLER
29766314223SDinh Nguyen	select SPARSE_IRQ
29866314223SDinh Nguyen	select USE_OF
29966314223SDinh Nguyen
3004af6fee1SDeepak Saxenaconfig ARCH_INTEGRATOR
3014af6fee1SDeepak Saxena	bool "ARM Ltd. Integrator family"
30289c52ed4SBen Dooks	select ARCH_HAS_CPUFREQ
303b1b3f49cSRussell King	select ARM_AMBA
304a613163dSLinus Walleij	select COMMON_CLK
305f9a6aa43SLinus Walleij	select COMMON_CLK_VERSATILE
306b1b3f49cSRussell King	select GENERIC_CLOCKEVENTS
3079904f793SLinus Walleij	select HAVE_TCM
308c5a0adb5SRussell King	select ICST
309b1b3f49cSRussell King	select MULTI_IRQ_HANDLER
310b1b3f49cSRussell King	select NEED_MACH_MEMORY_H
311f4b8b319SRussell King	select PLAT_VERSATILE
312695436e3SLinus Walleij	select SPARSE_IRQ
3132389d501SLinus Walleij	select VERSATILE_FPGA_IRQ
3144af6fee1SDeepak Saxena	help
3154af6fee1SDeepak Saxena	  Support for ARM's Integrator platform.
3164af6fee1SDeepak Saxena
3174af6fee1SDeepak Saxenaconfig ARCH_REALVIEW
3184af6fee1SDeepak Saxena	bool "ARM Ltd. RealView family"
319b1b3f49cSRussell King	select ARCH_WANT_OPTIONAL_GPIOLIB
3204af6fee1SDeepak Saxena	select ARM_AMBA
321b1b3f49cSRussell King	select ARM_TIMER_SP804
322f9a6aa43SLinus Walleij	select COMMON_CLK
323f9a6aa43SLinus Walleij	select COMMON_CLK_VERSATILE
324ae30ceacSCatalin Marinas	select GENERIC_CLOCKEVENTS
325b1b3f49cSRussell King	select GPIO_PL061 if GPIOLIB
326b1b3f49cSRussell King	select ICST
327b1b3f49cSRussell King	select NEED_MACH_MEMORY_H
328f4b8b319SRussell King	select PLAT_VERSATILE
3293cb5ee49SRussell King	select PLAT_VERSATILE_CLCD
3304af6fee1SDeepak Saxena	help
3314af6fee1SDeepak Saxena	  This enables support for ARM Ltd RealView boards.
3324af6fee1SDeepak Saxena
3334af6fee1SDeepak Saxenaconfig ARCH_VERSATILE
3344af6fee1SDeepak Saxena	bool "ARM Ltd. Versatile family"
335b1b3f49cSRussell King	select ARCH_WANT_OPTIONAL_GPIOLIB
3364af6fee1SDeepak Saxena	select ARM_AMBA
337b1b3f49cSRussell King	select ARM_TIMER_SP804
3384af6fee1SDeepak Saxena	select ARM_VIC
3396d803ba7SJean-Christop PLAGNIOL-VILLARD	select CLKDEV_LOOKUP
340b1b3f49cSRussell King	select GENERIC_CLOCKEVENTS
341aa3831cfSKyungmin Park	select HAVE_MACH_CLKDEV
342c5a0adb5SRussell King	select ICST
343f4b8b319SRussell King	select PLAT_VERSATILE
3443414ba8cSRussell King	select PLAT_VERSATILE_CLCD
345b1b3f49cSRussell King	select PLAT_VERSATILE_CLOCK
3462389d501SLinus Walleij	select VERSATILE_FPGA_IRQ
3474af6fee1SDeepak Saxena	help
3484af6fee1SDeepak Saxena	  This enables support for ARM Ltd Versatile board.
3494af6fee1SDeepak Saxena
3508fc5ffa0SAndrew Victorconfig ARCH_AT91
3518fc5ffa0SAndrew Victor	bool "Atmel AT91"
352f373e8c0SRyan Mallon	select ARCH_REQUIRE_GPIOLIB
353bd602995SJean-Christophe PLAGNIOL-VILLARD	select CLKDEV_LOOKUP
354b1b3f49cSRussell King	select HAVE_CLK
355e261501dSNicolas Ferre	select IRQ_DOMAIN
35601464226SRob Herring	select NEED_MACH_GPIO_H
3571ac02d79SRob Herring	select NEED_MACH_IO_H if PCCARD
3586732ae5cSJean-Christophe PLAGNIOL-VILLARD	select PINCTRL
3596732ae5cSJean-Christophe PLAGNIOL-VILLARD	select PINCTRL_AT91 if USE_OF
3604af6fee1SDeepak Saxena	help
361929e994fSNicolas Ferre	  This enables support for systems based on Atmel
362929e994fSNicolas Ferre	  AT91RM9200 and AT91SAM9* processors.
3634af6fee1SDeepak Saxena
36493e22567SRussell Kingconfig ARCH_CLPS711X
36593e22567SRussell King	bool "Cirrus Logic CLPS711x/EP721x/EP731x-based"
366a3b8d4a5SAlexander Shiyan	select ARCH_REQUIRE_GPIOLIB
367ea7d1bc9SAlexander Shiyan	select AUTO_ZRELADDR
36893e22567SRussell King	select CLKDEV_LOOKUP
36993e22567SRussell King	select COMMON_CLK
37093e22567SRussell King	select CPU_ARM720T
3714a8355c4SAlexander Shiyan	select GENERIC_CLOCKEVENTS
37299f04c8fSAlexander Shiyan	select MULTI_IRQ_HANDLER
37393e22567SRussell King	select NEED_MACH_MEMORY_H
3740d8be81cSAlexander Shiyan	select SPARSE_IRQ
37593e22567SRussell King	help
37693e22567SRussell King	  Support for Cirrus Logic 711x/721x/731x based boards.
37793e22567SRussell King
378788c9700SRussell Kingconfig ARCH_GEMINI
379788c9700SRussell King	bool "Cortina Systems Gemini"
380788c9700SRussell King	select ARCH_REQUIRE_GPIOLIB
3815cfc8ee0SJohn Stultz	select ARCH_USES_GETTIMEOFFSET
382662146b1SArnd Bergmann	select NEED_MACH_GPIO_H
383b1b3f49cSRussell King	select CPU_FA526
384788c9700SRussell King	help
385788c9700SRussell King	  Support for the Cortina Systems Gemini family SoCs
386788c9700SRussell King
3871da177e4SLinus Torvaldsconfig ARCH_EBSA110
3881da177e4SLinus Torvalds	bool "EBSA-110"
389b1b3f49cSRussell King	select ARCH_USES_GETTIMEOFFSET
390c750815eSRussell King	select CPU_SA110
391f7e68bbfSRussell King	select ISA
392c334bc15SRob Herring	select NEED_MACH_IO_H
3930cdc8b92SNicolas Pitre	select NEED_MACH_MEMORY_H
394b1b3f49cSRussell King	select NO_IOPORT
3951da177e4SLinus Torvalds	help
3961da177e4SLinus Torvalds	  This is an evaluation board for the StrongARM processor available
397f6c8965aSMartin Michlmayr	  from Digital. It has limited hardware on-board, including an
3981da177e4SLinus Torvalds	  Ethernet interface, two PCMCIA sockets, two serial ports and a
3991da177e4SLinus Torvalds	  parallel port.
4001da177e4SLinus Torvalds
401e7736d47SLennert Buytenhekconfig ARCH_EP93XX
402e7736d47SLennert Buytenhek	bool "EP93xx-based"
403b1b3f49cSRussell King	select ARCH_HAS_HOLES_MEMORYMODEL
404b1b3f49cSRussell King	select ARCH_REQUIRE_GPIOLIB
405b1b3f49cSRussell King	select ARCH_USES_GETTIMEOFFSET
406e7736d47SLennert Buytenhek	select ARM_AMBA
407e7736d47SLennert Buytenhek	select ARM_VIC
4086d803ba7SJean-Christop PLAGNIOL-VILLARD	select CLKDEV_LOOKUP
409b1b3f49cSRussell King	select CPU_ARM920T
4105725aeaeSArnd Bergmann	select NEED_MACH_MEMORY_H
411e7736d47SLennert Buytenhek	help
412e7736d47SLennert Buytenhek	  This enables support for the Cirrus EP93xx series of CPUs.
413e7736d47SLennert Buytenhek
4141da177e4SLinus Torvaldsconfig ARCH_FOOTBRIDGE
4151da177e4SLinus Torvalds	bool "FootBridge"
416c750815eSRussell King	select CPU_SA110
4171da177e4SLinus Torvalds	select FOOTBRIDGE
4184e8d7637SRussell King	select GENERIC_CLOCKEVENTS
419d0ee9f40SArnd Bergmann	select HAVE_IDE
4208ef6e620SRob Herring	select NEED_MACH_IO_H if !MMU
4210cdc8b92SNicolas Pitre	select NEED_MACH_MEMORY_H
422f999b8bdSMartin Michlmayr	help
423f999b8bdSMartin Michlmayr	  Support for systems based on the DC21285 companion chip
424f999b8bdSMartin Michlmayr	  ("FootBridge"), such as the Simtec CATS and the Rebel NetWinder.
4251da177e4SLinus Torvalds
4264af6fee1SDeepak Saxenaconfig ARCH_NETX
4274af6fee1SDeepak Saxena	bool "Hilscher NetX based"
428b1b3f49cSRussell King	select ARM_VIC
429234b6cedSRussell King	select CLKSRC_MMIO
430c750815eSRussell King	select CPU_ARM926T
4312fcfe6b8SUwe Kleine-König	select GENERIC_CLOCKEVENTS
432f999b8bdSMartin Michlmayr	help
4334af6fee1SDeepak Saxena	  This enables support for systems based on the Hilscher NetX Soc
4344af6fee1SDeepak Saxena
4353b938be6SRussell Kingconfig ARCH_IOP13XX
4363b938be6SRussell King	bool "IOP13xx-based"
4373b938be6SRussell King	depends on MMU
4383b938be6SRussell King	select ARCH_SUPPORTS_MSI
439b1b3f49cSRussell King	select CPU_XSC3
4400cdc8b92SNicolas Pitre	select NEED_MACH_MEMORY_H
44113a5045dSRob Herring	select NEED_RET_TO_USER
442b1b3f49cSRussell King	select PCI
443b1b3f49cSRussell King	select PLAT_IOP
444b1b3f49cSRussell King	select VMSPLIT_1G
4453b938be6SRussell King	help
4463b938be6SRussell King	  Support for Intel's IOP13XX (XScale) family of processors.
4473b938be6SRussell King
4483f7e5815SLennert Buytenhekconfig ARCH_IOP32X
4493f7e5815SLennert Buytenhek	bool "IOP32x-based"
450a4f7e763SRussell King	depends on MMU
451b1b3f49cSRussell King	select ARCH_REQUIRE_GPIOLIB
452c750815eSRussell King	select CPU_XSCALE
45301464226SRob Herring	select NEED_MACH_GPIO_H
45413a5045dSRob Herring	select NEED_RET_TO_USER
455f7e68bbfSRussell King	select PCI
456b1b3f49cSRussell King	select PLAT_IOP
457f999b8bdSMartin Michlmayr	help
4583f7e5815SLennert Buytenhek	  Support for Intel's 80219 and IOP32X (XScale) family of
4593f7e5815SLennert Buytenhek	  processors.
4603f7e5815SLennert Buytenhek
4613f7e5815SLennert Buytenhekconfig ARCH_IOP33X
4623f7e5815SLennert Buytenhek	bool "IOP33x-based"
4633f7e5815SLennert Buytenhek	depends on MMU
464b1b3f49cSRussell King	select ARCH_REQUIRE_GPIOLIB
465c750815eSRussell King	select CPU_XSCALE
46601464226SRob Herring	select NEED_MACH_GPIO_H
46713a5045dSRob Herring	select NEED_RET_TO_USER
4683f7e5815SLennert Buytenhek	select PCI
469b1b3f49cSRussell King	select PLAT_IOP
4703f7e5815SLennert Buytenhek	help
4713f7e5815SLennert Buytenhek	  Support for Intel's IOP33X (XScale) family of processors.
4721da177e4SLinus Torvalds
4733b938be6SRussell Kingconfig ARCH_IXP4XX
4743b938be6SRussell King	bool "IXP4xx-based"
475a4f7e763SRussell King	depends on MMU
47658af4a24SRob Herring	select ARCH_HAS_DMA_SET_COHERENT_MASK
477b1b3f49cSRussell King	select ARCH_REQUIRE_GPIOLIB
478234b6cedSRussell King	select CLKSRC_MMIO
479c750815eSRussell King	select CPU_XSCALE
480b1b3f49cSRussell King	select DMABOUNCE if PCI
4813b938be6SRussell King	select GENERIC_CLOCKEVENTS
4820b05da72SHans Ulli Kroll	select MIGHT_HAVE_PCI
483c334bc15SRob Herring	select NEED_MACH_IO_H
4849296d94dSFlorian Fainelli	select USB_EHCI_BIG_ENDIAN_MMIO
4859296d94dSFlorian Fainelli	select USB_EHCI_BIG_ENDIAN_DESC
486c4713074SLennert Buytenhek	help
4873b938be6SRussell King	  Support for Intel's IXP4XX (XScale) family of processors.
488c4713074SLennert Buytenhek
489edabd38eSSaeed Bisharaconfig ARCH_DOVE
490edabd38eSSaeed Bishara	bool "Marvell Dove"
491edabd38eSSaeed Bishara	select ARCH_REQUIRE_GPIOLIB
492756b2531SSebastian Hesselbarth	select CPU_PJ4
493edabd38eSSaeed Bishara	select GENERIC_CLOCKEVENTS
4940f81bd43SRussell King	select MIGHT_HAVE_PCI
4959139acd1SSebastian Hesselbarth	select PINCTRL
4969139acd1SSebastian Hesselbarth	select PINCTRL_DOVE
497abcda1dcSThomas Petazzoni	select PLAT_ORION_LEGACY
4980f81bd43SRussell King	select USB_ARCH_HAS_EHCI
4997d554902SThomas Petazzoni	select MVEBU_MBUS
500edabd38eSSaeed Bishara	help
501edabd38eSSaeed Bishara	  Support for the Marvell Dove SoC 88AP510
502edabd38eSSaeed Bishara
503651c74c7SSaeed Bisharaconfig ARCH_KIRKWOOD
504651c74c7SSaeed Bishara	bool "Marvell Kirkwood"
505a8865655SErik Benada	select ARCH_REQUIRE_GPIOLIB
506b1b3f49cSRussell King	select CPU_FEROCEON
507651c74c7SSaeed Bishara	select GENERIC_CLOCKEVENTS
508b1b3f49cSRussell King	select PCI
5091dc831bfSJason Gunthorpe	select PCI_QUIRKS
510f9e75922SAndrew Lunn	select PINCTRL
511f9e75922SAndrew Lunn	select PINCTRL_KIRKWOOD
512abcda1dcSThomas Petazzoni	select PLAT_ORION_LEGACY
5135cc0673aSThomas Petazzoni	select MVEBU_MBUS
514651c74c7SSaeed Bishara	help
515651c74c7SSaeed Bishara	  Support for the following Marvell Kirkwood series SoCs:
516651c74c7SSaeed Bishara	  88F6180, 88F6192 and 88F6281.
517651c74c7SSaeed Bishara
518788c9700SRussell Kingconfig ARCH_MV78XX0
519788c9700SRussell King	bool "Marvell MV78xx0"
520a8865655SErik Benada	select ARCH_REQUIRE_GPIOLIB
521b1b3f49cSRussell King	select CPU_FEROCEON
522788c9700SRussell King	select GENERIC_CLOCKEVENTS
523b1b3f49cSRussell King	select PCI
524abcda1dcSThomas Petazzoni	select PLAT_ORION_LEGACY
52595b80e0aSThomas Petazzoni	select MVEBU_MBUS
526788c9700SRussell King	help
527788c9700SRussell King	  Support for the following Marvell MV78xx0 series SoCs:
528788c9700SRussell King	  MV781x0, MV782x0.
529788c9700SRussell King
530788c9700SRussell Kingconfig ARCH_ORION5X
531788c9700SRussell King	bool "Marvell Orion"
532788c9700SRussell King	depends on MMU
533a8865655SErik Benada	select ARCH_REQUIRE_GPIOLIB
534b1b3f49cSRussell King	select CPU_FEROCEON
535788c9700SRussell King	select GENERIC_CLOCKEVENTS
536b1b3f49cSRussell King	select PCI
537abcda1dcSThomas Petazzoni	select PLAT_ORION_LEGACY
5385d1190eaSThomas Petazzoni	select MVEBU_MBUS
539788c9700SRussell King	help
540788c9700SRussell King	  Support for the following Marvell Orion 5x series SoCs:
541788c9700SRussell King	  Orion-1 (5181), Orion-VoIP (5181L), Orion-NAS (5182),
542788c9700SRussell King	  Orion-2 (5281), Orion-1-90 (6183).
543788c9700SRussell King
544788c9700SRussell Kingconfig ARCH_MMP
5452f7e8faeSHaojian Zhuang	bool "Marvell PXA168/910/MMP2"
546788c9700SRussell King	depends on MMU
547788c9700SRussell King	select ARCH_REQUIRE_GPIOLIB
5486d803ba7SJean-Christop PLAGNIOL-VILLARD	select CLKDEV_LOOKUP
549b1b3f49cSRussell King	select GENERIC_ALLOCATOR
550788c9700SRussell King	select GENERIC_CLOCKEVENTS
551157d2644SHaojian Zhuang	select GPIO_PXA
552c24b3114SHaojian Zhuang	select IRQ_DOMAIN
553b1b3f49cSRussell King	select NEED_MACH_GPIO_H
5547c8f86a4SAxel Lin	select PINCTRL
555788c9700SRussell King	select PLAT_PXA
5560bd86961SHaojian Zhuang	select SPARSE_IRQ
557788c9700SRussell King	help
5582f7e8faeSHaojian Zhuang	  Support for Marvell's PXA168/PXA910(MMP) and MMP2 processor line.
559788c9700SRussell King
560c53c9cf6SAndrew Victorconfig ARCH_KS8695
561c53c9cf6SAndrew Victor	bool "Micrel/Kendin KS8695"
56272880ad8SDaniel Silverstone	select ARCH_REQUIRE_GPIOLIB
563c7e783d6SLinus Walleij	select CLKSRC_MMIO
564b1b3f49cSRussell King	select CPU_ARM922T
565c7e783d6SLinus Walleij	select GENERIC_CLOCKEVENTS
566b1b3f49cSRussell King	select NEED_MACH_MEMORY_H
567c53c9cf6SAndrew Victor	help
568c53c9cf6SAndrew Victor	  Support for Micrel/Kendin KS8695 "Centaur" (ARM922T) based
569c53c9cf6SAndrew Victor	  System-on-Chip devices.
570c53c9cf6SAndrew Victor
571788c9700SRussell Kingconfig ARCH_W90X900
572788c9700SRussell King	bool "Nuvoton W90X900 CPU"
573c52d3d68Swanzongshun	select ARCH_REQUIRE_GPIOLIB
5746d803ba7SJean-Christop PLAGNIOL-VILLARD	select CLKDEV_LOOKUP
5756fa5d5f7SRussell King	select CLKSRC_MMIO
576b1b3f49cSRussell King	select CPU_ARM926T
57758b5369eSwanzongshun	select GENERIC_CLOCKEVENTS
578777f9bebSLennert Buytenhek	help
579a8bc4eadSwanzongshun	  Support for Nuvoton (Winbond logic dept.) ARM9 processor,
580a8bc4eadSwanzongshun	  At present, the w90x900 has been renamed nuc900, regarding
581a8bc4eadSwanzongshun	  the ARM series product line, you can login the following
582a8bc4eadSwanzongshun	  link address to know more.
583a8bc4eadSwanzongshun
584a8bc4eadSwanzongshun	  <http://www.nuvoton.com/hq/enu/ProductAndSales/ProductLines/
585a8bc4eadSwanzongshun		ConsumerElectronicsIC/ARMMicrocontroller/ARMMicrocontroller>
586585cf175STzachi Perelstein
58793e22567SRussell Kingconfig ARCH_LPC32XX
58893e22567SRussell King	bool "NXP LPC32XX"
58993e22567SRussell King	select ARCH_REQUIRE_GPIOLIB
59093e22567SRussell King	select ARM_AMBA
5914073723aSRussell King	select CLKDEV_LOOKUP
592234b6cedSRussell King	select CLKSRC_MMIO
59393e22567SRussell King	select CPU_ARM926T
59493e22567SRussell King	select GENERIC_CLOCKEVENTS
59593e22567SRussell King	select HAVE_IDE
59693e22567SRussell King	select HAVE_PWM
59793e22567SRussell King	select USB_ARCH_HAS_OHCI
59893e22567SRussell King	select USE_OF
59993e22567SRussell King	help
60093e22567SRussell King	  Support for the NXP LPC32XX family of processors
60193e22567SRussell King
6021da177e4SLinus Torvaldsconfig ARCH_PXA
6032c8086a5Seric miao	bool "PXA2xx/PXA3xx-based"
604a4f7e763SRussell King	depends on MMU
60589c52ed4SBen Dooks	select ARCH_HAS_CPUFREQ
606b1b3f49cSRussell King	select ARCH_MTD_XIP
607b1b3f49cSRussell King	select ARCH_REQUIRE_GPIOLIB
608b1b3f49cSRussell King	select ARM_CPU_SUSPEND if PM
609b1b3f49cSRussell King	select AUTO_ZRELADDR
6106d803ba7SJean-Christop PLAGNIOL-VILLARD	select CLKDEV_LOOKUP
611234b6cedSRussell King	select CLKSRC_MMIO
612981d0f39SEric Miao	select GENERIC_CLOCKEVENTS
613157d2644SHaojian Zhuang	select GPIO_PXA
614b1b3f49cSRussell King	select HAVE_IDE
615b1b3f49cSRussell King	select MULTI_IRQ_HANDLER
616b1b3f49cSRussell King	select NEED_MACH_GPIO_H
617bd5ce433SEric Miao	select PLAT_PXA
6186ac6b817SHaojian Zhuang	select SPARSE_IRQ
619f999b8bdSMartin Michlmayr	help
6202c8086a5Seric miao	  Support for Intel/Marvell's PXA2xx/PXA3xx processor line.
6211da177e4SLinus Torvalds
622788c9700SRussell Kingconfig ARCH_MSM
623788c9700SRussell King	bool "Qualcomm MSM"
624923a081cSPavel Machek	select ARCH_REQUIRE_GPIOLIB
625bd32344aSStephen Boyd	select CLKDEV_LOOKUP
626b1b3f49cSRussell King	select GENERIC_CLOCKEVENTS
627b1b3f49cSRussell King	select HAVE_CLK
62849cbe786SEric Miao	help
6294b53eb4fSDaniel Walker	  Support for Qualcomm MSM/QSD based systems.  This runs on the
6304b53eb4fSDaniel Walker	  apps processor of the MSM/QSD and depends on a shared memory
6314b53eb4fSDaniel Walker	  interface to the modem processor which runs the baseband
6324b53eb4fSDaniel Walker	  stack and controls some vital subsystems
6334b53eb4fSDaniel Walker	  (clock and power control, etc).
63449cbe786SEric Miao
635c793c1b0SMagnus Dammconfig ARCH_SHMOBILE
6366d72ad35SPaul Mundt	bool "Renesas SH-Mobile / R-Mobile"
6375e93c6b4SPaul Mundt	select CLKDEV_LOOKUP
638b1b3f49cSRussell King	select GENERIC_CLOCKEVENTS
6394c3ffffdSStephen Boyd	select HAVE_ARM_SCU if SMP
6404c3ffffdSStephen Boyd	select HAVE_ARM_TWD if LOCAL_TIMERS
641b1b3f49cSRussell King	select HAVE_CLK
642aa3831cfSKyungmin Park	select HAVE_MACH_CLKDEV
6433b55658aSDave Martin	select HAVE_SMP
644ce5ea9f3SDave Martin	select MIGHT_HAVE_CACHE_L2X0
64560f1435cSMagnus Damm	select MULTI_IRQ_HANDLER
6460cdc8b92SNicolas Pitre	select NEED_MACH_MEMORY_H
647b1b3f49cSRussell King	select NO_IOPORT
648*2cd3c927SLaurent Pinchart	select PINCTRL
649b1b3f49cSRussell King	select PM_GENERIC_DOMAINS if PM
650b1b3f49cSRussell King	select SPARSE_IRQ
651c793c1b0SMagnus Damm	help
6526d72ad35SPaul Mundt	  Support for Renesas's SH-Mobile and R-Mobile ARM platforms.
653c793c1b0SMagnus Damm
6541da177e4SLinus Torvaldsconfig ARCH_RPC
6551da177e4SLinus Torvalds	bool "RiscPC"
6561da177e4SLinus Torvalds	select ARCH_ACORN
657a08b6b79Sviro@ZenIV.linux.org.uk	select ARCH_MAY_HAVE_PC_FDC
65807f841b7SRussell King	select ARCH_SPARSEMEM_ENABLE
6595cfc8ee0SJohn Stultz	select ARCH_USES_GETTIMEOFFSET
660b1b3f49cSRussell King	select FIQ
661d0ee9f40SArnd Bergmann	select HAVE_IDE
662b1b3f49cSRussell King	select HAVE_PATA_PLATFORM
663b1b3f49cSRussell King	select ISA_DMA_API
664c334bc15SRob Herring	select NEED_MACH_IO_H
6650cdc8b92SNicolas Pitre	select NEED_MACH_MEMORY_H
666b1b3f49cSRussell King	select NO_IOPORT
667b4811bacSArnd Bergmann	select VIRT_TO_BUS
6681da177e4SLinus Torvalds	help
6691da177e4SLinus Torvalds	  On the Acorn Risc-PC, Linux can support the internal IDE disk and
6701da177e4SLinus Torvalds	  CD-ROM interface, serial and parallel port, and the floppy drive.
6711da177e4SLinus Torvalds
6721da177e4SLinus Torvaldsconfig ARCH_SA1100
6731da177e4SLinus Torvalds	bool "SA1100-based"
67489c52ed4SBen Dooks	select ARCH_HAS_CPUFREQ
675b1b3f49cSRussell King	select ARCH_MTD_XIP
6767444a72eSMichael Buesch	select ARCH_REQUIRE_GPIOLIB
677b1b3f49cSRussell King	select ARCH_SPARSEMEM_ENABLE
678b1b3f49cSRussell King	select CLKDEV_LOOKUP
679b1b3f49cSRussell King	select CLKSRC_MMIO
680b1b3f49cSRussell King	select CPU_FREQ
681b1b3f49cSRussell King	select CPU_SA1100
682b1b3f49cSRussell King	select GENERIC_CLOCKEVENTS
683d0ee9f40SArnd Bergmann	select HAVE_IDE
684b1b3f49cSRussell King	select ISA
68501464226SRob Herring	select NEED_MACH_GPIO_H
6860cdc8b92SNicolas Pitre	select NEED_MACH_MEMORY_H
687375dec92SRussell King	select SPARSE_IRQ
688f999b8bdSMartin Michlmayr	help
689f999b8bdSMartin Michlmayr	  Support for StrongARM 11x0 based boards.
6901da177e4SLinus Torvalds
691b130d5c2SKukjin Kimconfig ARCH_S3C24XX
692b130d5c2SKukjin Kim	bool "Samsung S3C24XX SoCs"
6939d56c02aSBen Dooks	select ARCH_HAS_CPUFREQ
69453650430SKukjin Kim	select ARCH_REQUIRE_GPIOLIB
695b1b3f49cSRussell King	select CLKDEV_LOOKUP
6967f78b6ebSRomain Naour	select CLKSRC_MMIO
6977f78b6ebSRomain Naour	select GENERIC_CLOCKEVENTS
698b1b3f49cSRussell King	select HAVE_CLK
69920676c15SKukjin Kim	select HAVE_S3C2410_I2C if I2C
700b130d5c2SKukjin Kim	select HAVE_S3C2410_WATCHDOG if WATCHDOG
701b1b3f49cSRussell King	select HAVE_S3C_RTC if RTC_CLASS
70217453dd2SHeiko Stuebner	select MULTI_IRQ_HANDLER
70301464226SRob Herring	select NEED_MACH_GPIO_H
704c334bc15SRob Herring	select NEED_MACH_IO_H
7051da177e4SLinus Torvalds	help
706b130d5c2SKukjin Kim	  Samsung S3C2410, S3C2412, S3C2413, S3C2416, S3C2440, S3C2442, S3C2443
707b130d5c2SKukjin Kim	  and S3C2450 SoCs based systems, such as the Simtec Electronics BAST
708b130d5c2SKukjin Kim	  (<http://www.simtec.co.uk/products/EB110ITX/>), the IPAQ 1940 or the
709b130d5c2SKukjin Kim	  Samsung SMDK2410 development board (and derivatives).
71063b1f51bSBen Dooks
711a08ab637SBen Dooksconfig ARCH_S3C64XX
712a08ab637SBen Dooks	bool "Samsung S3C64XX"
71389c52ed4SBen Dooks	select ARCH_HAS_CPUFREQ
71489f0ce72SBen Dooks	select ARCH_REQUIRE_GPIOLIB
715b1b3f49cSRussell King	select ARM_VIC
716b1b3f49cSRussell King	select CLKDEV_LOOKUP
71704a49b71SRomain Naour	select CLKSRC_MMIO
718b1b3f49cSRussell King	select CPU_V6
71904a49b71SRomain Naour	select GENERIC_CLOCKEVENTS
720b1b3f49cSRussell King	select HAVE_CLK
72120676c15SKukjin Kim	select HAVE_S3C2410_I2C if I2C
722c39d8d55SKyungmin Park	select HAVE_S3C2410_WATCHDOG if WATCHDOG
723b1b3f49cSRussell King	select HAVE_TCM
72401464226SRob Herring	select NEED_MACH_GPIO_H
725b1b3f49cSRussell King	select NO_IOPORT
726b1b3f49cSRussell King	select PLAT_SAMSUNG
727b1b3f49cSRussell King	select S3C_DEV_NAND
728b1b3f49cSRussell King	select S3C_GPIO_TRACK
729b1b3f49cSRussell King	select SAMSUNG_CLKSRC
730b1b3f49cSRussell King	select SAMSUNG_GPIOLIB_4BIT
731b1b3f49cSRussell King	select SAMSUNG_IRQ_VIC_TIMER
732b1b3f49cSRussell King	select USB_ARCH_HAS_OHCI
733a08ab637SBen Dooks	help
734a08ab637SBen Dooks	  Samsung S3C64XX series based systems
735a08ab637SBen Dooks
73649b7a491SKukjin Kimconfig ARCH_S5P64X0
73749b7a491SKukjin Kim	bool "Samsung S5P6440 S5P6450"
738d8b22d25SThomas Abraham	select CLKDEV_LOOKUP
7390665ccc4SChanwoo Choi	select CLKSRC_MMIO
740b1b3f49cSRussell King	select CPU_V6
7419e65bbf2SSangbeom Kim	select GENERIC_CLOCKEVENTS
742b1b3f49cSRussell King	select HAVE_CLK
74320676c15SKukjin Kim	select HAVE_S3C2410_I2C if I2C
744b1b3f49cSRussell King	select HAVE_S3C2410_WATCHDOG if WATCHDOG
745754961a8SKukjin Kim	select HAVE_S3C_RTC if RTC_CLASS
74601464226SRob Herring	select NEED_MACH_GPIO_H
747c4ffccddSKukjin Kim	help
74849b7a491SKukjin Kim	  Samsung S5P64X0 CPU based systems, such as the Samsung SMDK6440,
74949b7a491SKukjin Kim	  SMDK6450.
750c4ffccddSKukjin Kim
751acc84707SMarek Szyprowskiconfig ARCH_S5PC100
752acc84707SMarek Szyprowski	bool "Samsung S5PC100"
75353650430SKukjin Kim	select ARCH_REQUIRE_GPIOLIB
75429e8eb0fSThomas Abraham	select CLKDEV_LOOKUP
7556a5a2e3bSRomain Naour	select CLKSRC_MMIO
7565a7652f2SByungho Min	select CPU_V7
7576a5a2e3bSRomain Naour	select GENERIC_CLOCKEVENTS
758b1b3f49cSRussell King	select HAVE_CLK
75920676c15SKukjin Kim	select HAVE_S3C2410_I2C if I2C
760c39d8d55SKyungmin Park	select HAVE_S3C2410_WATCHDOG if WATCHDOG
761b1b3f49cSRussell King	select HAVE_S3C_RTC if RTC_CLASS
76201464226SRob Herring	select NEED_MACH_GPIO_H
7635a7652f2SByungho Min	help
764acc84707SMarek Szyprowski	  Samsung S5PC100 series based systems
7655a7652f2SByungho Min
766170f4e42SKukjin Kimconfig ARCH_S5PV210
767170f4e42SKukjin Kim	bool "Samsung S5PV210/S5PC110"
768b1b3f49cSRussell King	select ARCH_HAS_CPUFREQ
7690f75a96bSKamil Debski	select ARCH_HAS_HOLES_MEMORYMODEL
770b1b3f49cSRussell King	select ARCH_SPARSEMEM_ENABLE
771b2a9dd46SThomas Abraham	select CLKDEV_LOOKUP
7720665ccc4SChanwoo Choi	select CLKSRC_MMIO
773b1b3f49cSRussell King	select CPU_V7
7749e65bbf2SSangbeom Kim	select GENERIC_CLOCKEVENTS
775b1b3f49cSRussell King	select HAVE_CLK
77620676c15SKukjin Kim	select HAVE_S3C2410_I2C if I2C
777c39d8d55SKyungmin Park	select HAVE_S3C2410_WATCHDOG if WATCHDOG
778b1b3f49cSRussell King	select HAVE_S3C_RTC if RTC_CLASS
77901464226SRob Herring	select NEED_MACH_GPIO_H
7800cdc8b92SNicolas Pitre	select NEED_MACH_MEMORY_H
781170f4e42SKukjin Kim	help
782170f4e42SKukjin Kim	  Samsung S5PV210/S5PC110 series based systems
783170f4e42SKukjin Kim
78483014579SKukjin Kimconfig ARCH_EXYNOS
78593e22567SRussell King	bool "Samsung EXYNOS"
786b1b3f49cSRussell King	select ARCH_HAS_CPUFREQ
7870f75a96bSKamil Debski	select ARCH_HAS_HOLES_MEMORYMODEL
788b1b3f49cSRussell King	select ARCH_SPARSEMEM_ENABLE
789b1b3f49cSRussell King	select CLKDEV_LOOKUP
790340fcb5cSOlof Johansson	select COMMON_CLK
791b1b3f49cSRussell King	select CPU_V7
792b1b3f49cSRussell King	select GENERIC_CLOCKEVENTS
793cc0e72b8SChanghwan Youn	select HAVE_CLK
79420676c15SKukjin Kim	select HAVE_S3C2410_I2C if I2C
795c39d8d55SKyungmin Park	select HAVE_S3C2410_WATCHDOG if WATCHDOG
796b1b3f49cSRussell King	select HAVE_S3C_RTC if RTC_CLASS
79701464226SRob Herring	select NEED_MACH_GPIO_H
7980cdc8b92SNicolas Pitre	select NEED_MACH_MEMORY_H
799cc0e72b8SChanghwan Youn	help
80083014579SKukjin Kim	  Support for SAMSUNG's EXYNOS SoCs (EXYNOS4/5)
801cc0e72b8SChanghwan Youn
8021da177e4SLinus Torvaldsconfig ARCH_SHARK
8031da177e4SLinus Torvalds	bool "Shark"
804b1b3f49cSRussell King	select ARCH_USES_GETTIMEOFFSET
805c750815eSRussell King	select CPU_SA110
806f7e68bbfSRussell King	select ISA
807f7e68bbfSRussell King	select ISA_DMA
8080cdc8b92SNicolas Pitre	select NEED_MACH_MEMORY_H
809b1b3f49cSRussell King	select PCI
810b4811bacSArnd Bergmann	select VIRT_TO_BUS
811b1b3f49cSRussell King	select ZONE_DMA
812f999b8bdSMartin Michlmayr	help
813f999b8bdSMartin Michlmayr	  Support for the StrongARM based Digital DNARD machine, also known
814f999b8bdSMartin Michlmayr	  as "Shark" (<http://www.shark-linux.de/shark.html>).
8151da177e4SLinus Torvalds
816d98aac75SLinus Walleijconfig ARCH_U300
817d98aac75SLinus Walleij	bool "ST-Ericsson U300 Series"
818d98aac75SLinus Walleij	depends on MMU
819b1b3f49cSRussell King	select ARCH_REQUIRE_GPIOLIB
820d98aac75SLinus Walleij	select ARM_AMBA
8215485c1e0SLinus Walleij	select ARM_PATCH_PHYS_VIRT
822d98aac75SLinus Walleij	select ARM_VIC
8236d803ba7SJean-Christop PLAGNIOL-VILLARD	select CLKDEV_LOOKUP
824b1b3f49cSRussell King	select CLKSRC_MMIO
82550667d63SLinus Walleij	select COMMON_CLK
826b1b3f49cSRussell King	select CPU_ARM926T
827b1b3f49cSRussell King	select GENERIC_CLOCKEVENTS
828b1b3f49cSRussell King	select HAVE_TCM
829a4fe292fSLinus Walleij	select SPARSE_IRQ
830d98aac75SLinus Walleij	help
831d98aac75SLinus Walleij	  Support for ST-Ericsson U300 series mobile platforms.
832d98aac75SLinus Walleij
8337c6337e2SKevin Hilmanconfig ARCH_DAVINCI
8347c6337e2SKevin Hilman	bool "TI DaVinci"
835b1b3f49cSRussell King	select ARCH_HAS_HOLES_MEMORYMODEL
836dce1115bSDavid Brownell	select ARCH_REQUIRE_GPIOLIB
8376d803ba7SJean-Christop PLAGNIOL-VILLARD	select CLKDEV_LOOKUP
83820e9969bSDavid Brownell	select GENERIC_ALLOCATOR
839b1b3f49cSRussell King	select GENERIC_CLOCKEVENTS
840dc7ad3b3SRussell King	select GENERIC_IRQ_CHIP
841b1b3f49cSRussell King	select HAVE_IDE
84201464226SRob Herring	select NEED_MACH_GPIO_H
843689e331fSSekhar Nori	select USE_OF
844b1b3f49cSRussell King	select ZONE_DMA
8457c6337e2SKevin Hilman	help
8467c6337e2SKevin Hilman	  Support for TI's DaVinci platform.
8477c6337e2SKevin Hilman
848a0694861STony Lindgrenconfig ARCH_OMAP1
849a0694861STony Lindgren	bool "TI OMAP1"
85000a36698SArnd Bergmann	depends on MMU
85189c52ed4SBen Dooks	select ARCH_HAS_CPUFREQ
852b1b3f49cSRussell King	select ARCH_HAS_HOLES_MEMORYMODEL
853a0694861STony Lindgren	select ARCH_OMAP
85421f47fbcSAlexey Charkov	select ARCH_REQUIRE_GPIOLIB
855e9a91de7STony Prisk	select CLKDEV_LOOKUP
856cee37e50Sviresh kumar	select CLKSRC_MMIO
857b1b3f49cSRussell King	select GENERIC_CLOCKEVENTS
858a0694861STony Lindgren	select GENERIC_IRQ_CHIP
859b1b3f49cSRussell King	select HAVE_CLK
860a0694861STony Lindgren	select HAVE_IDE
861a0694861STony Lindgren	select IRQ_DOMAIN
862a0694861STony Lindgren	select NEED_MACH_IO_H if PCCARD
863a0694861STony Lindgren	select NEED_MACH_MEMORY_H
86421f47fbcSAlexey Charkov	help
865a0694861STony Lindgren	  Support for older TI OMAP1 (omap7xx, omap15xx or omap16xx)
86602c981c0SBinghua Duan
8671da177e4SLinus Torvaldsendchoice
8681da177e4SLinus Torvalds
869387798b3SRob Herringmenu "Multiple platform selection"
870387798b3SRob Herring	depends on ARCH_MULTIPLATFORM
871387798b3SRob Herring
872387798b3SRob Herringcomment "CPU Core family selection"
873387798b3SRob Herring
874387798b3SRob Herringconfig ARCH_MULTI_V4
875387798b3SRob Herring	bool "ARMv4 based platforms (FA526, StrongARM)"
876387798b3SRob Herring	depends on !ARCH_MULTI_V6_V7
877b1b3f49cSRussell King	select ARCH_MULTI_V4_V5
878387798b3SRob Herring
879387798b3SRob Herringconfig ARCH_MULTI_V4T
880387798b3SRob Herring	bool "ARMv4T based platforms (ARM720T, ARM920T, ...)"
881387798b3SRob Herring	depends on !ARCH_MULTI_V6_V7
882b1b3f49cSRussell King	select ARCH_MULTI_V4_V5
883387798b3SRob Herring
884387798b3SRob Herringconfig ARCH_MULTI_V5
885387798b3SRob Herring	bool "ARMv5 based platforms (ARM926T, XSCALE, PJ1, ...)"
886387798b3SRob Herring	depends on !ARCH_MULTI_V6_V7
887b1b3f49cSRussell King	select ARCH_MULTI_V4_V5
888387798b3SRob Herring
889387798b3SRob Herringconfig ARCH_MULTI_V4_V5
890387798b3SRob Herring	bool
891387798b3SRob Herring
892387798b3SRob Herringconfig ARCH_MULTI_V6
8938dda05ccSStephen Boyd	bool "ARMv6 based platforms (ARM11)"
894387798b3SRob Herring	select ARCH_MULTI_V6_V7
895b1b3f49cSRussell King	select CPU_V6
896387798b3SRob Herring
897387798b3SRob Herringconfig ARCH_MULTI_V7
8988dda05ccSStephen Boyd	bool "ARMv7 based platforms (Cortex-A, PJ4, Scorpion, Krait)"
899387798b3SRob Herring	default y
900387798b3SRob Herring	select ARCH_MULTI_V6_V7
901b1b3f49cSRussell King	select CPU_V7
902387798b3SRob Herring
903387798b3SRob Herringconfig ARCH_MULTI_V6_V7
904387798b3SRob Herring	bool
905387798b3SRob Herring
906387798b3SRob Herringconfig ARCH_MULTI_CPU_AUTO
907387798b3SRob Herring	def_bool !(ARCH_MULTI_V4 || ARCH_MULTI_V4T || ARCH_MULTI_V6_V7)
908387798b3SRob Herring	select ARCH_MULTI_V5
909387798b3SRob Herring
910387798b3SRob Herringendmenu
911387798b3SRob Herring
912ccf50e23SRussell King#
913ccf50e23SRussell King# This is sorted alphabetically by mach-* pathname.  However, plat-*
914ccf50e23SRussell King# Kconfigs may be included either alphabetically (according to the
915ccf50e23SRussell King# plat- suffix) or along side the corresponding mach-* source.
916ccf50e23SRussell King#
9173e93a22bSGregory CLEMENTsource "arch/arm/mach-mvebu/Kconfig"
9183e93a22bSGregory CLEMENT
91995b8f20fSRussell Kingsource "arch/arm/mach-at91/Kconfig"
92095b8f20fSRussell King
9218ac49e04SChristian Daudtsource "arch/arm/mach-bcm/Kconfig"
9228ac49e04SChristian Daudt
923f1ac922dSStephen Warrensource "arch/arm/mach-bcm2835/Kconfig"
924f1ac922dSStephen Warren
9251da177e4SLinus Torvaldssource "arch/arm/mach-clps711x/Kconfig"
9261da177e4SLinus Torvalds
927d94f944eSAnton Vorontsovsource "arch/arm/mach-cns3xxx/Kconfig"
928d94f944eSAnton Vorontsov
92995b8f20fSRussell Kingsource "arch/arm/mach-davinci/Kconfig"
93095b8f20fSRussell King
93195b8f20fSRussell Kingsource "arch/arm/mach-dove/Kconfig"
93295b8f20fSRussell King
933e7736d47SLennert Buytenheksource "arch/arm/mach-ep93xx/Kconfig"
934e7736d47SLennert Buytenhek
9351da177e4SLinus Torvaldssource "arch/arm/mach-footbridge/Kconfig"
9361da177e4SLinus Torvalds
93759d3a193SPaulius Zaleckassource "arch/arm/mach-gemini/Kconfig"
93859d3a193SPaulius Zaleckas
939387798b3SRob Herringsource "arch/arm/mach-highbank/Kconfig"
940387798b3SRob Herring
9411da177e4SLinus Torvaldssource "arch/arm/mach-integrator/Kconfig"
9421da177e4SLinus Torvalds
9433f7e5815SLennert Buytenheksource "arch/arm/mach-iop32x/Kconfig"
9443f7e5815SLennert Buytenhek
9453f7e5815SLennert Buytenheksource "arch/arm/mach-iop33x/Kconfig"
9461da177e4SLinus Torvalds
947285f5fa7SDan Williamssource "arch/arm/mach-iop13xx/Kconfig"
948285f5fa7SDan Williams
9491da177e4SLinus Torvaldssource "arch/arm/mach-ixp4xx/Kconfig"
9501da177e4SLinus Torvalds
95195b8f20fSRussell Kingsource "arch/arm/mach-kirkwood/Kconfig"
95295b8f20fSRussell King
95395b8f20fSRussell Kingsource "arch/arm/mach-ks8695/Kconfig"
95495b8f20fSRussell King
95595b8f20fSRussell Kingsource "arch/arm/mach-msm/Kconfig"
95695b8f20fSRussell King
957794d15b2SStanislav Samsonovsource "arch/arm/mach-mv78xx0/Kconfig"
958794d15b2SStanislav Samsonov
9593995eb82SShawn Guosource "arch/arm/mach-imx/Kconfig"
9601da177e4SLinus Torvalds
9611d3f33d5SShawn Guosource "arch/arm/mach-mxs/Kconfig"
9621d3f33d5SShawn Guo
96395b8f20fSRussell Kingsource "arch/arm/mach-netx/Kconfig"
96449cbe786SEric Miao
96595b8f20fSRussell Kingsource "arch/arm/mach-nomadik/Kconfig"
96695b8f20fSRussell King
967d48af15eSTony Lindgrensource "arch/arm/plat-omap/Kconfig"
968d48af15eSTony Lindgren
969d48af15eSTony Lindgrensource "arch/arm/mach-omap1/Kconfig"
9701da177e4SLinus Torvalds
9711dbae815STony Lindgrensource "arch/arm/mach-omap2/Kconfig"
9721dbae815STony Lindgren
9739dd0b194SLennert Buytenheksource "arch/arm/mach-orion5x/Kconfig"
974585cf175STzachi Perelstein
975387798b3SRob Herringsource "arch/arm/mach-picoxcell/Kconfig"
976387798b3SRob Herring
97795b8f20fSRussell Kingsource "arch/arm/mach-pxa/Kconfig"
97895b8f20fSRussell Kingsource "arch/arm/plat-pxa/Kconfig"
9791da177e4SLinus Torvalds
98095b8f20fSRussell Kingsource "arch/arm/mach-mmp/Kconfig"
98195b8f20fSRussell King
98295b8f20fSRussell Kingsource "arch/arm/mach-realview/Kconfig"
98395b8f20fSRussell King
98495b8f20fSRussell Kingsource "arch/arm/mach-sa1100/Kconfig"
985edabd38eSSaeed Bishara
986cf383678SBen Dookssource "arch/arm/plat-samsung/Kconfig"
987a21765a7SBen Dooks
988387798b3SRob Herringsource "arch/arm/mach-socfpga/Kconfig"
989387798b3SRob Herring
990a7ed099fSArnd Bergmannsource "arch/arm/mach-spear/Kconfig"
991a21765a7SBen Dooks
99285fd6d63SKukjin Kimsource "arch/arm/mach-s3c24xx/Kconfig"
9931da177e4SLinus Torvalds
994a08ab637SBen Dooksif ARCH_S3C64XX
995431107eaSBen Dookssource "arch/arm/mach-s3c64xx/Kconfig"
996a08ab637SBen Dooksendif
997a08ab637SBen Dooks
99849b7a491SKukjin Kimsource "arch/arm/mach-s5p64x0/Kconfig"
999c4ffccddSKukjin Kim
10005a7652f2SByungho Minsource "arch/arm/mach-s5pc100/Kconfig"
10015a7652f2SByungho Min
1002170f4e42SKukjin Kimsource "arch/arm/mach-s5pv210/Kconfig"
1003170f4e42SKukjin Kim
100483014579SKukjin Kimsource "arch/arm/mach-exynos/Kconfig"
1005cc0e72b8SChanghwan Youn
1006882d01f9SRussell Kingsource "arch/arm/mach-shmobile/Kconfig"
10071da177e4SLinus Torvalds
10083b52634fSMaxime Ripardsource "arch/arm/mach-sunxi/Kconfig"
10093b52634fSMaxime Ripard
1010156a0997SBarry Songsource "arch/arm/mach-prima2/Kconfig"
1011156a0997SBarry Song
1012c5f80065SErik Gillingsource "arch/arm/mach-tegra/Kconfig"
1013c5f80065SErik Gilling
101495b8f20fSRussell Kingsource "arch/arm/mach-u300/Kconfig"
10151da177e4SLinus Torvalds
101695b8f20fSRussell Kingsource "arch/arm/mach-ux500/Kconfig"
10171da177e4SLinus Torvalds
10181da177e4SLinus Torvaldssource "arch/arm/mach-versatile/Kconfig"
10191da177e4SLinus Torvalds
1020ceade897SRussell Kingsource "arch/arm/mach-vexpress/Kconfig"
1021420c34e4SRussell Kingsource "arch/arm/plat-versatile/Kconfig"
1022ceade897SRussell King
10232a0ba738SMarc Zyngiersource "arch/arm/mach-virt/Kconfig"
10242a0ba738SMarc Zyngier
10256f35f9a9STony Prisksource "arch/arm/mach-vt8500/Kconfig"
10266f35f9a9STony Prisk
10277ec80ddfSwanzongshunsource "arch/arm/mach-w90x900/Kconfig"
10287ec80ddfSwanzongshun
10299a45eb69SJosh Cartwrightsource "arch/arm/mach-zynq/Kconfig"
10309a45eb69SJosh Cartwright
10311da177e4SLinus Torvalds# Definitions to make life easier
10321da177e4SLinus Torvaldsconfig ARCH_ACORN
10331da177e4SLinus Torvalds	bool
10341da177e4SLinus Torvalds
10357ae1f7ecSLennert Buytenhekconfig PLAT_IOP
10367ae1f7ecSLennert Buytenhek	bool
1037469d3044SMikael Pettersson	select GENERIC_CLOCKEVENTS
10387ae1f7ecSLennert Buytenhek
103969b02f6aSLennert Buytenhekconfig PLAT_ORION
104069b02f6aSLennert Buytenhek	bool
1041bfe45e0bSRussell King	select CLKSRC_MMIO
1042b1b3f49cSRussell King	select COMMON_CLK
1043dc7ad3b3SRussell King	select GENERIC_IRQ_CHIP
1044278b45b0SAndrew Lunn	select IRQ_DOMAIN
104569b02f6aSLennert Buytenhek
1046abcda1dcSThomas Petazzoniconfig PLAT_ORION_LEGACY
1047abcda1dcSThomas Petazzoni	bool
1048abcda1dcSThomas Petazzoni	select PLAT_ORION
1049abcda1dcSThomas Petazzoni
1050bd5ce433SEric Miaoconfig PLAT_PXA
1051bd5ce433SEric Miao	bool
1052bd5ce433SEric Miao
1053f4b8b319SRussell Kingconfig PLAT_VERSATILE
1054f4b8b319SRussell King	bool
1055f4b8b319SRussell King
1056e3887714SRussell Kingconfig ARM_TIMER_SP804
1057e3887714SRussell King	bool
1058bfe45e0bSRussell King	select CLKSRC_MMIO
10597a0eca71SRob Herring	select CLKSRC_OF if OF
1060e3887714SRussell King
10611da177e4SLinus Torvaldssource arch/arm/mm/Kconfig
10621da177e4SLinus Torvalds
1063958cab0fSRussell Kingconfig ARM_NR_BANKS
1064958cab0fSRussell King	int
1065958cab0fSRussell King	default 16 if ARCH_EP93XX
1066958cab0fSRussell King	default 8
1067958cab0fSRussell King
1068afe4b25eSLennert Buytenhekconfig IWMMXT
1069698613b6SRussell King	bool "Enable iWMMXt support" if !CPU_PJ4
1070ef6c8445SHaojian Zhuang	depends on CPU_XSCALE || CPU_XSC3 || CPU_MOHAWK || CPU_PJ4
1071698613b6SRussell King	default y if PXA27x || PXA3xx || ARCH_MMP || CPU_PJ4
1072afe4b25eSLennert Buytenhek	help
1073afe4b25eSLennert Buytenhek	  Enable support for iWMMXt context switching at run time if
1074afe4b25eSLennert Buytenhek	  running on a CPU that supports it.
1075afe4b25eSLennert Buytenhek
10761da177e4SLinus Torvaldsconfig XSCALE_PMU
10771da177e4SLinus Torvalds	bool
1078bfc994b5SPaul Bolle	depends on CPU_XSCALE
10791da177e4SLinus Torvalds	default y
10801da177e4SLinus Torvalds
108152108641Seric miaoconfig MULTI_IRQ_HANDLER
108252108641Seric miao	bool
108352108641Seric miao	help
108452108641Seric miao	  Allow each machine to specify it's own IRQ handler at run time.
108552108641Seric miao
10863b93e7b0SHyok S. Choiif !MMU
10873b93e7b0SHyok S. Choisource "arch/arm/Kconfig-nommu"
10883b93e7b0SHyok S. Choiendif
10893b93e7b0SHyok S. Choi
1090f0c4b8d6SWill Deaconconfig ARM_ERRATA_326103
1091f0c4b8d6SWill Deacon	bool "ARM errata: FSR write bit incorrect on a SWP to read-only memory"
1092f0c4b8d6SWill Deacon	depends on CPU_V6
1093f0c4b8d6SWill Deacon	help
1094f0c4b8d6SWill Deacon	  Executing a SWP instruction to read-only memory does not set bit 11
1095f0c4b8d6SWill Deacon	  of the FSR on the ARM 1136 prior to r1p0. This causes the kernel to
1096f0c4b8d6SWill Deacon	  treat the access as a read, preventing a COW from occurring and
1097f0c4b8d6SWill Deacon	  causing the faulting task to livelock.
1098f0c4b8d6SWill Deacon
10999cba3cccSCatalin Marinasconfig ARM_ERRATA_411920
11009cba3cccSCatalin Marinas	bool "ARM errata: Invalidation of the Instruction Cache operation can fail"
1101e399b1a4SRussell King	depends on CPU_V6 || CPU_V6K
11029cba3cccSCatalin Marinas	help
11039cba3cccSCatalin Marinas	  Invalidation of the Instruction Cache operation can
11049cba3cccSCatalin Marinas	  fail. This erratum is present in 1136 (before r1p4), 1156 and 1176.
11059cba3cccSCatalin Marinas	  It does not affect the MPCore. This option enables the ARM Ltd.
11069cba3cccSCatalin Marinas	  recommended workaround.
11079cba3cccSCatalin Marinas
11087ce236fcSCatalin Marinasconfig ARM_ERRATA_430973
11097ce236fcSCatalin Marinas	bool "ARM errata: Stale prediction on replaced interworking branch"
11107ce236fcSCatalin Marinas	depends on CPU_V7
11117ce236fcSCatalin Marinas	help
11127ce236fcSCatalin Marinas	  This option enables the workaround for the 430973 Cortex-A8
11137ce236fcSCatalin Marinas	  (r1p0..r1p2) erratum. If a code sequence containing an ARM/Thumb
11147ce236fcSCatalin Marinas	  interworking branch is replaced with another code sequence at the
11157ce236fcSCatalin Marinas	  same virtual address, whether due to self-modifying code or virtual
11167ce236fcSCatalin Marinas	  to physical address re-mapping, Cortex-A8 does not recover from the
11177ce236fcSCatalin Marinas	  stale interworking branch prediction. This results in Cortex-A8
11187ce236fcSCatalin Marinas	  executing the new code sequence in the incorrect ARM or Thumb state.
11197ce236fcSCatalin Marinas	  The workaround enables the BTB/BTAC operations by setting ACTLR.IBE
11207ce236fcSCatalin Marinas	  and also flushes the branch target cache at every context switch.
11217ce236fcSCatalin Marinas	  Note that setting specific bits in the ACTLR register may not be
11227ce236fcSCatalin Marinas	  available in non-secure mode.
11237ce236fcSCatalin Marinas
1124855c551fSCatalin Marinasconfig ARM_ERRATA_458693
1125855c551fSCatalin Marinas	bool "ARM errata: Processor deadlock when a false hazard is created"
1126855c551fSCatalin Marinas	depends on CPU_V7
112762e4d357SRob Herring	depends on !ARCH_MULTIPLATFORM
1128855c551fSCatalin Marinas	help
1129855c551fSCatalin Marinas	  This option enables the workaround for the 458693 Cortex-A8 (r2p0)
1130855c551fSCatalin Marinas	  erratum. For very specific sequences of memory operations, it is
1131855c551fSCatalin Marinas	  possible for a hazard condition intended for a cache line to instead
1132855c551fSCatalin Marinas	  be incorrectly associated with a different cache line. This false
1133855c551fSCatalin Marinas	  hazard might then cause a processor deadlock. The workaround enables
1134855c551fSCatalin Marinas	  the L1 caching of the NEON accesses and disables the PLD instruction
1135855c551fSCatalin Marinas	  in the ACTLR register. Note that setting specific bits in the ACTLR
1136855c551fSCatalin Marinas	  register may not be available in non-secure mode.
1137855c551fSCatalin Marinas
11380516e464SCatalin Marinasconfig ARM_ERRATA_460075
11390516e464SCatalin Marinas	bool "ARM errata: Data written to the L2 cache can be overwritten with stale data"
11400516e464SCatalin Marinas	depends on CPU_V7
114162e4d357SRob Herring	depends on !ARCH_MULTIPLATFORM
11420516e464SCatalin Marinas	help
11430516e464SCatalin Marinas	  This option enables the workaround for the 460075 Cortex-A8 (r2p0)
11440516e464SCatalin Marinas	  erratum. Any asynchronous access to the L2 cache may encounter a
11450516e464SCatalin Marinas	  situation in which recent store transactions to the L2 cache are lost
11460516e464SCatalin Marinas	  and overwritten with stale memory contents from external memory. The
11470516e464SCatalin Marinas	  workaround disables the write-allocate mode for the L2 cache via the
11480516e464SCatalin Marinas	  ACTLR register. Note that setting specific bits in the ACTLR register
11490516e464SCatalin Marinas	  may not be available in non-secure mode.
11500516e464SCatalin Marinas
11519f05027cSWill Deaconconfig ARM_ERRATA_742230
11529f05027cSWill Deacon	bool "ARM errata: DMB operation may be faulty"
11539f05027cSWill Deacon	depends on CPU_V7 && SMP
115462e4d357SRob Herring	depends on !ARCH_MULTIPLATFORM
11559f05027cSWill Deacon	help
11569f05027cSWill Deacon	  This option enables the workaround for the 742230 Cortex-A9
11579f05027cSWill Deacon	  (r1p0..r2p2) erratum. Under rare circumstances, a DMB instruction
11589f05027cSWill Deacon	  between two write operations may not ensure the correct visibility
11599f05027cSWill Deacon	  ordering of the two writes. This workaround sets a specific bit in
11609f05027cSWill Deacon	  the diagnostic register of the Cortex-A9 which causes the DMB
11619f05027cSWill Deacon	  instruction to behave as a DSB, ensuring the correct behaviour of
11629f05027cSWill Deacon	  the two writes.
11639f05027cSWill Deacon
1164a672e99bSWill Deaconconfig ARM_ERRATA_742231
1165a672e99bSWill Deacon	bool "ARM errata: Incorrect hazard handling in the SCU may lead to data corruption"
1166a672e99bSWill Deacon	depends on CPU_V7 && SMP
116762e4d357SRob Herring	depends on !ARCH_MULTIPLATFORM
1168a672e99bSWill Deacon	help
1169a672e99bSWill Deacon	  This option enables the workaround for the 742231 Cortex-A9
1170a672e99bSWill Deacon	  (r2p0..r2p2) erratum. Under certain conditions, specific to the
1171a672e99bSWill Deacon	  Cortex-A9 MPCore micro-architecture, two CPUs working in SMP mode,
1172a672e99bSWill Deacon	  accessing some data located in the same cache line, may get corrupted
1173a672e99bSWill Deacon	  data due to bad handling of the address hazard when the line gets
1174a672e99bSWill Deacon	  replaced from one of the CPUs at the same time as another CPU is
1175a672e99bSWill Deacon	  accessing it. This workaround sets specific bits in the diagnostic
1176a672e99bSWill Deacon	  register of the Cortex-A9 which reduces the linefill issuing
1177a672e99bSWill Deacon	  capabilities of the processor.
1178a672e99bSWill Deacon
11799e65582aSSantosh Shilimkarconfig PL310_ERRATA_588369
1180fa0ce403SWill Deacon	bool "PL310 errata: Clean & Invalidate maintenance operations do not invalidate clean lines"
11812839e06cSSantosh Shilimkar	depends on CACHE_L2X0
11829e65582aSSantosh Shilimkar	help
11839e65582aSSantosh Shilimkar	   The PL310 L2 cache controller implements three types of Clean &
11849e65582aSSantosh Shilimkar	   Invalidate maintenance operations: by Physical Address
11859e65582aSSantosh Shilimkar	   (offset 0x7F0), by Index/Way (0x7F8) and by Way (0x7FC).
11869e65582aSSantosh Shilimkar	   They are architecturally defined to behave as the execution of a
11879e65582aSSantosh Shilimkar	   clean operation followed immediately by an invalidate operation,
11889e65582aSSantosh Shilimkar	   both performing to the same memory location. This functionality
11899e65582aSSantosh Shilimkar	   is not correctly implemented in PL310 as clean lines are not
11902839e06cSSantosh Shilimkar	   invalidated as a result of these operations.
1191cdf357f1SWill Deacon
1192cdf357f1SWill Deaconconfig ARM_ERRATA_720789
1193cdf357f1SWill Deacon	bool "ARM errata: TLBIASIDIS and TLBIMVAIS operations can broadcast a faulty ASID"
1194e66dc745SDave Martin	depends on CPU_V7
1195cdf357f1SWill Deacon	help
1196cdf357f1SWill Deacon	  This option enables the workaround for the 720789 Cortex-A9 (prior to
1197cdf357f1SWill Deacon	  r2p0) erratum. A faulty ASID can be sent to the other CPUs for the
1198cdf357f1SWill Deacon	  broadcasted CP15 TLB maintenance operations TLBIASIDIS and TLBIMVAIS.
1199cdf357f1SWill Deacon	  As a consequence of this erratum, some TLB entries which should be
1200cdf357f1SWill Deacon	  invalidated are not, resulting in an incoherency in the system page
1201cdf357f1SWill Deacon	  tables. The workaround changes the TLB flushing routines to invalidate
1202cdf357f1SWill Deacon	  entries regardless of the ASID.
1203475d92fcSWill Deacon
12041f0090a1SRussell Kingconfig PL310_ERRATA_727915
1205fa0ce403SWill Deacon	bool "PL310 errata: Background Clean & Invalidate by Way operation can cause data corruption"
12061f0090a1SRussell King	depends on CACHE_L2X0
12071f0090a1SRussell King	help
12081f0090a1SRussell King	  PL310 implements the Clean & Invalidate by Way L2 cache maintenance
12091f0090a1SRussell King	  operation (offset 0x7FC). This operation runs in background so that
12101f0090a1SRussell King	  PL310 can handle normal accesses while it is in progress. Under very
12111f0090a1SRussell King	  rare circumstances, due to this erratum, write data can be lost when
12121f0090a1SRussell King	  PL310 treats a cacheable write transaction during a Clean &
12131f0090a1SRussell King	  Invalidate by Way operation.
12141f0090a1SRussell King
1215475d92fcSWill Deaconconfig ARM_ERRATA_743622
1216475d92fcSWill Deacon	bool "ARM errata: Faulty hazard checking in the Store Buffer may lead to data corruption"
1217475d92fcSWill Deacon	depends on CPU_V7
121862e4d357SRob Herring	depends on !ARCH_MULTIPLATFORM
1219475d92fcSWill Deacon	help
1220475d92fcSWill Deacon	  This option enables the workaround for the 743622 Cortex-A9
1221efbc74acSWill Deacon	  (r2p*) erratum. Under very rare conditions, a faulty
1222475d92fcSWill Deacon	  optimisation in the Cortex-A9 Store Buffer may lead to data
1223475d92fcSWill Deacon	  corruption. This workaround sets a specific bit in the diagnostic
1224475d92fcSWill Deacon	  register of the Cortex-A9 which disables the Store Buffer
1225475d92fcSWill Deacon	  optimisation, preventing the defect from occurring. This has no
1226475d92fcSWill Deacon	  visible impact on the overall performance or power consumption of the
1227475d92fcSWill Deacon	  processor.
1228475d92fcSWill Deacon
12299a27c27cSWill Deaconconfig ARM_ERRATA_751472
12309a27c27cSWill Deacon	bool "ARM errata: Interrupted ICIALLUIS may prevent completion of broadcasted operation"
1231ba90c516SDave Martin	depends on CPU_V7
123262e4d357SRob Herring	depends on !ARCH_MULTIPLATFORM
12339a27c27cSWill Deacon	help
12349a27c27cSWill Deacon	  This option enables the workaround for the 751472 Cortex-A9 (prior
12359a27c27cSWill Deacon	  to r3p0) erratum. An interrupted ICIALLUIS operation may prevent the
12369a27c27cSWill Deacon	  completion of a following broadcasted operation if the second
12379a27c27cSWill Deacon	  operation is received by a CPU before the ICIALLUIS has completed,
12389a27c27cSWill Deacon	  potentially leading to corrupted entries in the cache or TLB.
12399a27c27cSWill Deacon
1240fa0ce403SWill Deaconconfig PL310_ERRATA_753970
1241fa0ce403SWill Deacon	bool "PL310 errata: cache sync operation may be faulty"
1242885028e4SSrinidhi Kasagar	depends on CACHE_PL310
1243885028e4SSrinidhi Kasagar	help
1244885028e4SSrinidhi Kasagar	  This option enables the workaround for the 753970 PL310 (r3p0) erratum.
1245885028e4SSrinidhi Kasagar
1246885028e4SSrinidhi Kasagar	  Under some condition the effect of cache sync operation on
1247885028e4SSrinidhi Kasagar	  the store buffer still remains when the operation completes.
1248885028e4SSrinidhi Kasagar	  This means that the store buffer is always asked to drain and
1249885028e4SSrinidhi Kasagar	  this prevents it from merging any further writes. The workaround
1250885028e4SSrinidhi Kasagar	  is to replace the normal offset of cache sync operation (0x730)
1251885028e4SSrinidhi Kasagar	  by another offset targeting an unmapped PL310 register 0x740.
1252885028e4SSrinidhi Kasagar	  This has the same effect as the cache sync operation: store buffer
1253885028e4SSrinidhi Kasagar	  drain and waiting for all buffers empty.
1254885028e4SSrinidhi Kasagar
1255fcbdc5feSWill Deaconconfig ARM_ERRATA_754322
1256fcbdc5feSWill Deacon	bool "ARM errata: possible faulty MMU translations following an ASID switch"
1257fcbdc5feSWill Deacon	depends on CPU_V7
1258fcbdc5feSWill Deacon	help
1259fcbdc5feSWill Deacon	  This option enables the workaround for the 754322 Cortex-A9 (r2p*,
1260fcbdc5feSWill Deacon	  r3p*) erratum. A speculative memory access may cause a page table walk
1261fcbdc5feSWill Deacon	  which starts prior to an ASID switch but completes afterwards. This
1262fcbdc5feSWill Deacon	  can populate the micro-TLB with a stale entry which may be hit with
1263fcbdc5feSWill Deacon	  the new ASID. This workaround places two dsb instructions in the mm
1264fcbdc5feSWill Deacon	  switching code so that no page table walks can cross the ASID switch.
1265fcbdc5feSWill Deacon
12665dab26afSWill Deaconconfig ARM_ERRATA_754327
12675dab26afSWill Deacon	bool "ARM errata: no automatic Store Buffer drain"
12685dab26afSWill Deacon	depends on CPU_V7 && SMP
12695dab26afSWill Deacon	help
12705dab26afSWill Deacon	  This option enables the workaround for the 754327 Cortex-A9 (prior to
12715dab26afSWill Deacon	  r2p0) erratum. The Store Buffer does not have any automatic draining
12725dab26afSWill Deacon	  mechanism and therefore a livelock may occur if an external agent
12735dab26afSWill Deacon	  continuously polls a memory location waiting to observe an update.
12745dab26afSWill Deacon	  This workaround defines cpu_relax() as smp_mb(), preventing correctly
12755dab26afSWill Deacon	  written polling loops from denying visibility of updates to memory.
12765dab26afSWill Deacon
1277145e10e1SCatalin Marinasconfig ARM_ERRATA_364296
1278145e10e1SCatalin Marinas	bool "ARM errata: Possible cache data corruption with hit-under-miss enabled"
1279145e10e1SCatalin Marinas	depends on CPU_V6 && !SMP
1280145e10e1SCatalin Marinas	help
1281145e10e1SCatalin Marinas	  This options enables the workaround for the 364296 ARM1136
1282145e10e1SCatalin Marinas	  r0p2 erratum (possible cache data corruption with
1283145e10e1SCatalin Marinas	  hit-under-miss enabled). It sets the undocumented bit 31 in
1284145e10e1SCatalin Marinas	  the auxiliary control register and the FI bit in the control
1285145e10e1SCatalin Marinas	  register, thus disabling hit-under-miss without putting the
1286145e10e1SCatalin Marinas	  processor into full low interrupt latency mode. ARM11MPCore
1287145e10e1SCatalin Marinas	  is not affected.
1288145e10e1SCatalin Marinas
1289f630c1bdSWill Deaconconfig ARM_ERRATA_764369
1290f630c1bdSWill Deacon	bool "ARM errata: Data cache line maintenance operation by MVA may not succeed"
1291f630c1bdSWill Deacon	depends on CPU_V7 && SMP
1292f630c1bdSWill Deacon	help
1293f630c1bdSWill Deacon	  This option enables the workaround for erratum 764369
1294f630c1bdSWill Deacon	  affecting Cortex-A9 MPCore with two or more processors (all
1295f630c1bdSWill Deacon	  current revisions). Under certain timing circumstances, a data
1296f630c1bdSWill Deacon	  cache line maintenance operation by MVA targeting an Inner
1297f630c1bdSWill Deacon	  Shareable memory region may fail to proceed up to either the
1298f630c1bdSWill Deacon	  Point of Coherency or to the Point of Unification of the
1299f630c1bdSWill Deacon	  system. This workaround adds a DSB instruction before the
1300f630c1bdSWill Deacon	  relevant cache maintenance functions and sets a specific bit
1301f630c1bdSWill Deacon	  in the diagnostic control register of the SCU.
1302f630c1bdSWill Deacon
130311ed0ba1SWill Deaconconfig PL310_ERRATA_769419
130411ed0ba1SWill Deacon	bool "PL310 errata: no automatic Store Buffer drain"
130511ed0ba1SWill Deacon	depends on CACHE_L2X0
130611ed0ba1SWill Deacon	help
130711ed0ba1SWill Deacon	  On revisions of the PL310 prior to r3p2, the Store Buffer does
130811ed0ba1SWill Deacon	  not automatically drain. This can cause normal, non-cacheable
130911ed0ba1SWill Deacon	  writes to be retained when the memory system is idle, leading
131011ed0ba1SWill Deacon	  to suboptimal I/O performance for drivers using coherent DMA.
131111ed0ba1SWill Deacon	  This option adds a write barrier to the cpu_idle loop so that,
131211ed0ba1SWill Deacon	  on systems with an outer cache, the store buffer is drained
131311ed0ba1SWill Deacon	  explicitly.
131411ed0ba1SWill Deacon
13157253b85cSSimon Hormanconfig ARM_ERRATA_775420
13167253b85cSSimon Horman       bool "ARM errata: A data cache maintenance operation which aborts, might lead to deadlock"
13177253b85cSSimon Horman       depends on CPU_V7
13187253b85cSSimon Horman       help
13197253b85cSSimon Horman	 This option enables the workaround for the 775420 Cortex-A9 (r2p2,
13207253b85cSSimon Horman	 r2p6,r2p8,r2p10,r3p0) erratum. In case a date cache maintenance
13217253b85cSSimon Horman	 operation aborts with MMU exception, it might cause the processor
13227253b85cSSimon Horman	 to deadlock. This workaround puts DSB before executing ISB if
13237253b85cSSimon Horman	 an abort may occur on cache maintenance.
13247253b85cSSimon Horman
132593dc6887SCatalin Marinasconfig ARM_ERRATA_798181
132693dc6887SCatalin Marinas	bool "ARM errata: TLBI/DSB failure on Cortex-A15"
132793dc6887SCatalin Marinas	depends on CPU_V7 && SMP
132893dc6887SCatalin Marinas	help
132993dc6887SCatalin Marinas	  On Cortex-A15 (r0p0..r3p2) the TLBI*IS/DSB operations are not
133093dc6887SCatalin Marinas	  adequately shooting down all use of the old entries. This
133193dc6887SCatalin Marinas	  option enables the Linux kernel workaround for this erratum
133293dc6887SCatalin Marinas	  which sends an IPI to the CPUs that are running the same ASID
133393dc6887SCatalin Marinas	  as the one being invalidated.
133493dc6887SCatalin Marinas
13351da177e4SLinus Torvaldsendmenu
13361da177e4SLinus Torvalds
13371da177e4SLinus Torvaldssource "arch/arm/common/Kconfig"
13381da177e4SLinus Torvalds
13391da177e4SLinus Torvaldsmenu "Bus support"
13401da177e4SLinus Torvalds
13411da177e4SLinus Torvaldsconfig ARM_AMBA
13421da177e4SLinus Torvalds	bool
13431da177e4SLinus Torvalds
13441da177e4SLinus Torvaldsconfig ISA
13451da177e4SLinus Torvalds	bool
13461da177e4SLinus Torvalds	help
13471da177e4SLinus Torvalds	  Find out whether you have ISA slots on your motherboard.  ISA is the
13481da177e4SLinus Torvalds	  name of a bus system, i.e. the way the CPU talks to the other stuff
13491da177e4SLinus Torvalds	  inside your box.  Other bus systems are PCI, EISA, MicroChannel
13501da177e4SLinus Torvalds	  (MCA) or VESA.  ISA is an older system, now being displaced by PCI;
13511da177e4SLinus Torvalds	  newer boards don't support it.  If you have ISA, say Y, otherwise N.
13521da177e4SLinus Torvalds
1353065909b9SRussell King# Select ISA DMA controller support
13541da177e4SLinus Torvaldsconfig ISA_DMA
13551da177e4SLinus Torvalds	bool
1356065909b9SRussell King	select ISA_DMA_API
13571da177e4SLinus Torvalds
1358065909b9SRussell King# Select ISA DMA interface
13595cae841bSAl Viroconfig ISA_DMA_API
13605cae841bSAl Viro	bool
13615cae841bSAl Viro
13621da177e4SLinus Torvaldsconfig PCI
13630b05da72SHans Ulli Kroll	bool "PCI support" if MIGHT_HAVE_PCI
13641da177e4SLinus Torvalds	help
13651da177e4SLinus Torvalds	  Find out whether you have a PCI motherboard. PCI is the name of a
13661da177e4SLinus Torvalds	  bus system, i.e. the way the CPU talks to the other stuff inside
13671da177e4SLinus Torvalds	  your box. Other bus systems are ISA, EISA, MicroChannel (MCA) or
13681da177e4SLinus Torvalds	  VESA. If you have PCI, say Y, otherwise N.
13691da177e4SLinus Torvalds
137052882173SAnton Vorontsovconfig PCI_DOMAINS
137152882173SAnton Vorontsov	bool
137252882173SAnton Vorontsov	depends on PCI
137352882173SAnton Vorontsov
1374b080ac8aSMarcelo Roberto Jimenezconfig PCI_NANOENGINE
1375b080ac8aSMarcelo Roberto Jimenez	bool "BSE nanoEngine PCI support"
1376b080ac8aSMarcelo Roberto Jimenez	depends on SA1100_NANOENGINE
1377b080ac8aSMarcelo Roberto Jimenez	help
1378b080ac8aSMarcelo Roberto Jimenez	  Enable PCI on the BSE nanoEngine board.
1379b080ac8aSMarcelo Roberto Jimenez
138036e23590SMatthew Wilcoxconfig PCI_SYSCALL
138136e23590SMatthew Wilcox	def_bool PCI
138236e23590SMatthew Wilcox
13831da177e4SLinus Torvalds# Select the host bridge type
13841da177e4SLinus Torvaldsconfig PCI_HOST_VIA82C505
13851da177e4SLinus Torvalds	bool
13861da177e4SLinus Torvalds	depends on PCI && ARCH_SHARK
13871da177e4SLinus Torvalds	default y
13881da177e4SLinus Torvalds
1389a0113a99SMike Rapoportconfig PCI_HOST_ITE8152
1390a0113a99SMike Rapoport	bool
1391a0113a99SMike Rapoport	depends on PCI && MACH_ARMCORE
1392a0113a99SMike Rapoport	default y
1393a0113a99SMike Rapoport	select DMABOUNCE
1394a0113a99SMike Rapoport
13951da177e4SLinus Torvaldssource "drivers/pci/Kconfig"
13961da177e4SLinus Torvalds
13971da177e4SLinus Torvaldssource "drivers/pcmcia/Kconfig"
13981da177e4SLinus Torvalds
13991da177e4SLinus Torvaldsendmenu
14001da177e4SLinus Torvalds
14011da177e4SLinus Torvaldsmenu "Kernel Features"
14021da177e4SLinus Torvalds
14033b55658aSDave Martinconfig HAVE_SMP
14043b55658aSDave Martin	bool
14053b55658aSDave Martin	help
14063b55658aSDave Martin	  This option should be selected by machines which have an SMP-
14073b55658aSDave Martin	  capable CPU.
14083b55658aSDave Martin
14093b55658aSDave Martin	  The only effect of this option is to make the SMP-related
14103b55658aSDave Martin	  options available to the user for configuration.
14113b55658aSDave Martin
14121da177e4SLinus Torvaldsconfig SMP
1413bb2d8130SRussell King	bool "Symmetric Multi-Processing"
1414fbb4ddacSRussell King	depends on CPU_V6K || CPU_V7
1415bc28248eSRussell King	depends on GENERIC_CLOCKEVENTS
14163b55658aSDave Martin	depends on HAVE_SMP
14179934ebb8SArnd Bergmann	depends on MMU
1418b1b3f49cSRussell King	select USE_GENERIC_SMP_HELPERS
14191da177e4SLinus Torvalds	help
14201da177e4SLinus Torvalds	  This enables support for systems with more than one CPU. If you have
14211da177e4SLinus Torvalds	  a system with only one CPU, like most personal computers, say N. If
14221da177e4SLinus Torvalds	  you have a system with more than one CPU, say Y.
14231da177e4SLinus Torvalds
14241da177e4SLinus Torvalds	  If you say N here, the kernel will run on single and multiprocessor
14251da177e4SLinus Torvalds	  machines, but will use only one CPU of a multiprocessor machine. If
14261da177e4SLinus Torvalds	  you say Y here, the kernel will run on many, but not all, single
14271da177e4SLinus Torvalds	  processor machines. On a single processor machine, the kernel will
14281da177e4SLinus Torvalds	  run faster if you say N here.
14291da177e4SLinus Torvalds
1430395cf969SPaul Bolle	  See also <file:Documentation/x86/i386/IO-APIC.txt>,
14311da177e4SLinus Torvalds	  <file:Documentation/nmi_watchdog.txt> and the SMP-HOWTO available at
143250a23e6eSJustin P. Mattock	  <http://tldp.org/HOWTO/SMP-HOWTO.html>.
14331da177e4SLinus Torvalds
14341da177e4SLinus Torvalds	  If you don't know what to do here, say N.
14351da177e4SLinus Torvalds
1436f00ec48fSRussell Kingconfig SMP_ON_UP
1437f00ec48fSRussell King	bool "Allow booting SMP kernel on uniprocessor systems (EXPERIMENTAL)"
14384d2692a7SNicolas Pitre	depends on SMP && !XIP_KERNEL
1439f00ec48fSRussell King	default y
1440f00ec48fSRussell King	help
1441f00ec48fSRussell King	  SMP kernels contain instructions which fail on non-SMP processors.
1442f00ec48fSRussell King	  Enabling this option allows the kernel to modify itself to make
1443f00ec48fSRussell King	  these instructions safe.  Disabling it allows about 1K of space
1444f00ec48fSRussell King	  savings.
1445f00ec48fSRussell King
1446f00ec48fSRussell King	  If you don't know what to do here, say Y.
1447f00ec48fSRussell King
1448c9018aabSVincent Guittotconfig ARM_CPU_TOPOLOGY
1449c9018aabSVincent Guittot	bool "Support cpu topology definition"
1450c9018aabSVincent Guittot	depends on SMP && CPU_V7
1451c9018aabSVincent Guittot	default y
1452c9018aabSVincent Guittot	help
1453c9018aabSVincent Guittot	  Support ARM cpu topology definition. The MPIDR register defines
1454c9018aabSVincent Guittot	  affinity between processors which is then used to describe the cpu
1455c9018aabSVincent Guittot	  topology of an ARM System.
1456c9018aabSVincent Guittot
1457c9018aabSVincent Guittotconfig SCHED_MC
1458c9018aabSVincent Guittot	bool "Multi-core scheduler support"
1459c9018aabSVincent Guittot	depends on ARM_CPU_TOPOLOGY
1460c9018aabSVincent Guittot	help
1461c9018aabSVincent Guittot	  Multi-core scheduler support improves the CPU scheduler's decision
1462c9018aabSVincent Guittot	  making when dealing with multi-core CPU chips at a cost of slightly
1463c9018aabSVincent Guittot	  increased overhead in some places. If unsure say N here.
1464c9018aabSVincent Guittot
1465c9018aabSVincent Guittotconfig SCHED_SMT
1466c9018aabSVincent Guittot	bool "SMT scheduler support"
1467c9018aabSVincent Guittot	depends on ARM_CPU_TOPOLOGY
1468c9018aabSVincent Guittot	help
1469c9018aabSVincent Guittot	  Improves the CPU scheduler's decision making when dealing with
1470c9018aabSVincent Guittot	  MultiThreading at a cost of slightly increased overhead in some
1471c9018aabSVincent Guittot	  places. If unsure say N here.
1472c9018aabSVincent Guittot
1473a8cbcd92SRussell Kingconfig HAVE_ARM_SCU
1474a8cbcd92SRussell King	bool
1475a8cbcd92SRussell King	help
1476a8cbcd92SRussell King	  This option enables support for the ARM system coherency unit
1477a8cbcd92SRussell King
14788a4da6e3SMark Rutlandconfig HAVE_ARM_ARCH_TIMER
1479022c03a2SMarc Zyngier	bool "Architected timer support"
1480022c03a2SMarc Zyngier	depends on CPU_V7
14818a4da6e3SMark Rutland	select ARM_ARCH_TIMER
1482022c03a2SMarc Zyngier	help
1483022c03a2SMarc Zyngier	  This option enables support for the ARM architected timer
1484022c03a2SMarc Zyngier
1485f32f4ce2SRussell Kingconfig HAVE_ARM_TWD
1486f32f4ce2SRussell King	bool
1487f32f4ce2SRussell King	depends on SMP
1488da4a686aSRob Herring	select CLKSRC_OF if OF
1489f32f4ce2SRussell King	help
1490f32f4ce2SRussell King	  This options enables support for the ARM timer and watchdog unit
1491f32f4ce2SRussell King
1492e8db288eSNicolas Pitreconfig MCPM
1493e8db288eSNicolas Pitre	bool "Multi-Cluster Power Management"
1494e8db288eSNicolas Pitre	depends on CPU_V7 && SMP
1495e8db288eSNicolas Pitre	help
1496e8db288eSNicolas Pitre	  This option provides the common power management infrastructure
1497e8db288eSNicolas Pitre	  for (multi-)cluster based systems, such as big.LITTLE based
1498e8db288eSNicolas Pitre	  systems.
1499e8db288eSNicolas Pitre
15008d5796d2SLennert Buytenhekchoice
15018d5796d2SLennert Buytenhek	prompt "Memory split"
15028d5796d2SLennert Buytenhek	default VMSPLIT_3G
15038d5796d2SLennert Buytenhek	help
15048d5796d2SLennert Buytenhek	  Select the desired split between kernel and user memory.
15058d5796d2SLennert Buytenhek
15068d5796d2SLennert Buytenhek	  If you are not absolutely sure what you are doing, leave this
15078d5796d2SLennert Buytenhek	  option alone!
15088d5796d2SLennert Buytenhek
15098d5796d2SLennert Buytenhek	config VMSPLIT_3G
15108d5796d2SLennert Buytenhek		bool "3G/1G user/kernel split"
15118d5796d2SLennert Buytenhek	config VMSPLIT_2G
15128d5796d2SLennert Buytenhek		bool "2G/2G user/kernel split"
15138d5796d2SLennert Buytenhek	config VMSPLIT_1G
15148d5796d2SLennert Buytenhek		bool "1G/3G user/kernel split"
15158d5796d2SLennert Buytenhekendchoice
15168d5796d2SLennert Buytenhek
15178d5796d2SLennert Buytenhekconfig PAGE_OFFSET
15188d5796d2SLennert Buytenhek	hex
15198d5796d2SLennert Buytenhek	default 0x40000000 if VMSPLIT_1G
15208d5796d2SLennert Buytenhek	default 0x80000000 if VMSPLIT_2G
15218d5796d2SLennert Buytenhek	default 0xC0000000
15228d5796d2SLennert Buytenhek
15231da177e4SLinus Torvaldsconfig NR_CPUS
15241da177e4SLinus Torvalds	int "Maximum number of CPUs (2-32)"
15251da177e4SLinus Torvalds	range 2 32
15261da177e4SLinus Torvalds	depends on SMP
15271da177e4SLinus Torvalds	default "4"
15281da177e4SLinus Torvalds
1529a054a811SRussell Kingconfig HOTPLUG_CPU
153000b7dedeSRussell King	bool "Support for hot-pluggable CPUs"
153100b7dedeSRussell King	depends on SMP && HOTPLUG
1532a054a811SRussell King	help
1533a054a811SRussell King	  Say Y here to experiment with turning CPUs off and on.  CPUs
1534a054a811SRussell King	  can be controlled through /sys/devices/system/cpu.
1535a054a811SRussell King
15362bdd424fSWill Deaconconfig ARM_PSCI
15372bdd424fSWill Deacon	bool "Support for the ARM Power State Coordination Interface (PSCI)"
15382bdd424fSWill Deacon	depends on CPU_V7
15392bdd424fSWill Deacon	help
15402bdd424fSWill Deacon	  Say Y here if you want Linux to communicate with system firmware
15412bdd424fSWill Deacon	  implementing the PSCI specification for CPU-centric power
15422bdd424fSWill Deacon	  management operations described in ARM document number ARM DEN
15432bdd424fSWill Deacon	  0022A ("Power State Coordination Interface System Software on
15442bdd424fSWill Deacon	  ARM processors").
15452bdd424fSWill Deacon
154637ee16aeSRussell Kingconfig LOCAL_TIMERS
154737ee16aeSRussell King	bool "Use local timer interrupts"
1548971acb9bSRussell King	depends on SMP
154937ee16aeSRussell King	default y
155037ee16aeSRussell King	help
155137ee16aeSRussell King	  Enable support for local timers on SMP platforms, rather then the
155237ee16aeSRussell King	  legacy IPI broadcast method.  Local timers allows the system
155337ee16aeSRussell King	  accounting to be spread across the timer interval, preventing a
155437ee16aeSRussell King	  "thundering herd" at every timer tick.
155537ee16aeSRussell King
15562a6ad871SMaxime Ripard# The GPIO number here must be sorted by descending number. In case of
15572a6ad871SMaxime Ripard# a multiplatform kernel, we just want the highest value required by the
15582a6ad871SMaxime Ripard# selected platforms.
155944986ab0SPeter De Schrijver (NVIDIA)config ARCH_NR_GPIO
156044986ab0SPeter De Schrijver (NVIDIA)	int
15613dea19e8SPeter De Schrijver (NVIDIA)	default 1024 if ARCH_SHMOBILE || ARCH_TEGRA
156239f47d9fSTarun Kanti DebBarma	default 512 if SOC_OMAP5
156306b851e5SOlof Johansson	default 392 if ARCH_U8500
156401bb914cSTony Prisk	default 352 if ARCH_VT8500
156501bb914cSTony Prisk	default 288 if ARCH_SUNXI
15662a6ad871SMaxime Ripard	default 264 if MACH_H4700
156744986ab0SPeter De Schrijver (NVIDIA)	default 0
156844986ab0SPeter De Schrijver (NVIDIA)	help
156944986ab0SPeter De Schrijver (NVIDIA)	  Maximum number of GPIOs in the system.
157044986ab0SPeter De Schrijver (NVIDIA)
157144986ab0SPeter De Schrijver (NVIDIA)	  If unsure, leave the default value.
157244986ab0SPeter De Schrijver (NVIDIA)
1573d45a398fSUwe Kleine-Königsource kernel/Kconfig.preempt
15741da177e4SLinus Torvalds
1575f8065813SRussell Kingconfig HZ
1576f8065813SRussell King	int
1577b130d5c2SKukjin Kim	default 200 if ARCH_EBSA110 || ARCH_S3C24XX || ARCH_S5P64X0 || \
1578a73ddc61SKukjin Kim		ARCH_S5PV210 || ARCH_EXYNOS4
15795248c657SDavid Brownell	default AT91_TIMER_HZ if ARCH_AT91
15805da3e714SMagnus Damm	default SHMOBILE_TIMER_HZ if ARCH_SHMOBILE
1581f8065813SRussell King	default 100
1582f8065813SRussell King
1583b28748fbSRussell Kingconfig SCHED_HRTICK
1584b28748fbSRussell King	def_bool HIGH_RES_TIMERS
1585b28748fbSRussell King
158616c79651SCatalin Marinasconfig THUMB2_KERNEL
1587bc7dea00SUwe Kleine-König	bool "Compile the kernel in Thumb-2 mode" if !CPU_THUMBONLY
158800b7dedeSRussell King	depends on CPU_V7 && !CPU_V6 && !CPU_V6K
1589bc7dea00SUwe Kleine-König	default y if CPU_THUMBONLY
159016c79651SCatalin Marinas	select AEABI
159116c79651SCatalin Marinas	select ARM_ASM_UNIFIED
159289bace65SArnd Bergmann	select ARM_UNWIND
159316c79651SCatalin Marinas	help
159416c79651SCatalin Marinas	  By enabling this option, the kernel will be compiled in
159516c79651SCatalin Marinas	  Thumb-2 mode. A compiler/assembler that understand the unified
159616c79651SCatalin Marinas	  ARM-Thumb syntax is needed.
159716c79651SCatalin Marinas
159816c79651SCatalin Marinas	  If unsure, say N.
159916c79651SCatalin Marinas
16006f685c5cSDave Martinconfig THUMB2_AVOID_R_ARM_THM_JUMP11
16016f685c5cSDave Martin	bool "Work around buggy Thumb-2 short branch relocations in gas"
16026f685c5cSDave Martin	depends on THUMB2_KERNEL && MODULES
16036f685c5cSDave Martin	default y
16046f685c5cSDave Martin	help
16056f685c5cSDave Martin	  Various binutils versions can resolve Thumb-2 branches to
16066f685c5cSDave Martin	  locally-defined, preemptible global symbols as short-range "b.n"
16076f685c5cSDave Martin	  branch instructions.
16086f685c5cSDave Martin
16096f685c5cSDave Martin	  This is a problem, because there's no guarantee the final
16106f685c5cSDave Martin	  destination of the symbol, or any candidate locations for a
16116f685c5cSDave Martin	  trampoline, are within range of the branch.  For this reason, the
16126f685c5cSDave Martin	  kernel does not support fixing up the R_ARM_THM_JUMP11 (102)
16136f685c5cSDave Martin	  relocation in modules at all, and it makes little sense to add
16146f685c5cSDave Martin	  support.
16156f685c5cSDave Martin
16166f685c5cSDave Martin	  The symptom is that the kernel fails with an "unsupported
16176f685c5cSDave Martin	  relocation" error when loading some modules.
16186f685c5cSDave Martin
16196f685c5cSDave Martin	  Until fixed tools are available, passing
16206f685c5cSDave Martin	  -fno-optimize-sibling-calls to gcc should prevent gcc generating
16216f685c5cSDave Martin	  code which hits this problem, at the cost of a bit of extra runtime
16226f685c5cSDave Martin	  stack usage in some cases.
16236f685c5cSDave Martin
16246f685c5cSDave Martin	  The problem is described in more detail at:
16256f685c5cSDave Martin	      https://bugs.launchpad.net/binutils-linaro/+bug/725126
16266f685c5cSDave Martin
16276f685c5cSDave Martin	  Only Thumb-2 kernels are affected.
16286f685c5cSDave Martin
16296f685c5cSDave Martin	  Unless you are sure your tools don't have this problem, say Y.
16306f685c5cSDave Martin
16310becb088SCatalin Marinasconfig ARM_ASM_UNIFIED
16320becb088SCatalin Marinas	bool
16330becb088SCatalin Marinas
1634704bdda0SNicolas Pitreconfig AEABI
1635704bdda0SNicolas Pitre	bool "Use the ARM EABI to compile the kernel"
1636704bdda0SNicolas Pitre	help
1637704bdda0SNicolas Pitre	  This option allows for the kernel to be compiled using the latest
1638704bdda0SNicolas Pitre	  ARM ABI (aka EABI).  This is only useful if you are using a user
1639704bdda0SNicolas Pitre	  space environment that is also compiled with EABI.
1640704bdda0SNicolas Pitre
1641704bdda0SNicolas Pitre	  Since there are major incompatibilities between the legacy ABI and
1642704bdda0SNicolas Pitre	  EABI, especially with regard to structure member alignment, this
1643704bdda0SNicolas Pitre	  option also changes the kernel syscall calling convention to
1644704bdda0SNicolas Pitre	  disambiguate both ABIs and allow for backward compatibility support
1645704bdda0SNicolas Pitre	  (selected with CONFIG_OABI_COMPAT).
1646704bdda0SNicolas Pitre
1647704bdda0SNicolas Pitre	  To use this you need GCC version 4.0.0 or later.
1648704bdda0SNicolas Pitre
16496c90c872SNicolas Pitreconfig OABI_COMPAT
1650a73a3ff1SRussell King	bool "Allow old ABI binaries to run with this kernel (EXPERIMENTAL)"
1651d6f94fa0SKees Cook	depends on AEABI && !THUMB2_KERNEL
16526c90c872SNicolas Pitre	default y
16536c90c872SNicolas Pitre	help
16546c90c872SNicolas Pitre	  This option preserves the old syscall interface along with the
16556c90c872SNicolas Pitre	  new (ARM EABI) one. It also provides a compatibility layer to
16566c90c872SNicolas Pitre	  intercept syscalls that have structure arguments which layout
16576c90c872SNicolas Pitre	  in memory differs between the legacy ABI and the new ARM EABI
16586c90c872SNicolas Pitre	  (only for non "thumb" binaries). This option adds a tiny
16596c90c872SNicolas Pitre	  overhead to all syscalls and produces a slightly larger kernel.
16606c90c872SNicolas Pitre	  If you know you'll be using only pure EABI user space then you
16616c90c872SNicolas Pitre	  can say N here. If this option is not selected and you attempt
16626c90c872SNicolas Pitre	  to execute a legacy ABI binary then the result will be
16636c90c872SNicolas Pitre	  UNPREDICTABLE (in fact it can be predicted that it won't work
16646c90c872SNicolas Pitre	  at all). If in doubt say Y.
16656c90c872SNicolas Pitre
1666eb33575cSMel Gormanconfig ARCH_HAS_HOLES_MEMORYMODEL
1667e80d6a24SMel Gorman	bool
1668e80d6a24SMel Gorman
166905944d74SRussell Kingconfig ARCH_SPARSEMEM_ENABLE
167005944d74SRussell King	bool
167105944d74SRussell King
167207a2f737SRussell Kingconfig ARCH_SPARSEMEM_DEFAULT
167307a2f737SRussell King	def_bool ARCH_SPARSEMEM_ENABLE
167407a2f737SRussell King
167505944d74SRussell Kingconfig ARCH_SELECT_MEMORY_MODEL
1676be370302SRussell King	def_bool ARCH_SPARSEMEM_ENABLE
1677c80d79d7SYasunori Goto
16787b7bf499SWill Deaconconfig HAVE_ARCH_PFN_VALID
16797b7bf499SWill Deacon	def_bool ARCH_HAS_HOLES_MEMORYMODEL || !SPARSEMEM
16807b7bf499SWill Deacon
1681053a96caSNicolas Pitreconfig HIGHMEM
1682e8db89a2SRussell King	bool "High Memory Support"
1683e8db89a2SRussell King	depends on MMU
1684053a96caSNicolas Pitre	help
1685053a96caSNicolas Pitre	  The address space of ARM processors is only 4 Gigabytes large
1686053a96caSNicolas Pitre	  and it has to accommodate user address space, kernel address
1687053a96caSNicolas Pitre	  space as well as some memory mapped IO. That means that, if you
1688053a96caSNicolas Pitre	  have a large amount of physical memory and/or IO, not all of the
1689053a96caSNicolas Pitre	  memory can be "permanently mapped" by the kernel. The physical
1690053a96caSNicolas Pitre	  memory that is not permanently mapped is called "high memory".
1691053a96caSNicolas Pitre
1692053a96caSNicolas Pitre	  Depending on the selected kernel/user memory split, minimum
1693053a96caSNicolas Pitre	  vmalloc space and actual amount of RAM, you may not need this
1694053a96caSNicolas Pitre	  option which should result in a slightly faster kernel.
1695053a96caSNicolas Pitre
1696053a96caSNicolas Pitre	  If unsure, say n.
1697053a96caSNicolas Pitre
169865cec8e3SRussell Kingconfig HIGHPTE
169965cec8e3SRussell King	bool "Allocate 2nd-level pagetables from highmem"
170065cec8e3SRussell King	depends on HIGHMEM
170165cec8e3SRussell King
17021b8873a0SJamie Ilesconfig HW_PERF_EVENTS
17031b8873a0SJamie Iles	bool "Enable hardware performance counter support for perf events"
1704f0d1bc47SWill Deacon	depends on PERF_EVENTS
17051b8873a0SJamie Iles	default y
17061b8873a0SJamie Iles	help
17071b8873a0SJamie Iles	  Enable hardware performance counter support for perf events. If
17081b8873a0SJamie Iles	  disabled, perf events will use software events only.
17091b8873a0SJamie Iles
17103f22ab27SDave Hansensource "mm/Kconfig"
17113f22ab27SDave Hansen
1712c1b2d970SMagnus Dammconfig FORCE_MAX_ZONEORDER
1713c1b2d970SMagnus Damm	int "Maximum zone order" if ARCH_SHMOBILE
1714c1b2d970SMagnus Damm	range 11 64 if ARCH_SHMOBILE
1715898f08e1SYegor Yefremov	default "12" if SOC_AM33XX
1716c1b2d970SMagnus Damm	default "9" if SA1111
1717c1b2d970SMagnus Damm	default "11"
1718c1b2d970SMagnus Damm	help
1719c1b2d970SMagnus Damm	  The kernel memory allocator divides physically contiguous memory
1720c1b2d970SMagnus Damm	  blocks into "zones", where each zone is a power of two number of
1721c1b2d970SMagnus Damm	  pages.  This option selects the largest power of two that the kernel
1722c1b2d970SMagnus Damm	  keeps in the memory allocator.  If you need to allocate very large
1723c1b2d970SMagnus Damm	  blocks of physically contiguous memory, then you may need to
1724c1b2d970SMagnus Damm	  increase this value.
1725c1b2d970SMagnus Damm
1726c1b2d970SMagnus Damm	  This config option is actually maximum order plus one. For example,
1727c1b2d970SMagnus Damm	  a value of 11 means that the largest free memory block is 2^10 pages.
1728c1b2d970SMagnus Damm
17291da177e4SLinus Torvaldsconfig ALIGNMENT_TRAP
17301da177e4SLinus Torvalds	bool
1731f12d0d7cSHyok S. Choi	depends on CPU_CP15_MMU
17321da177e4SLinus Torvalds	default y if !ARCH_EBSA110
1733e119bfffSRussell King	select HAVE_PROC_CPU if PROC_FS
17341da177e4SLinus Torvalds	help
17351da177e4SLinus Torvalds	  ARM processors cannot fetch/store information which is not
17361da177e4SLinus Torvalds	  naturally aligned on the bus, i.e., a 4 byte fetch must start at an
17371da177e4SLinus Torvalds	  address divisible by 4. On 32-bit ARM processors, these non-aligned
17381da177e4SLinus Torvalds	  fetch/store instructions will be emulated in software if you say
17391da177e4SLinus Torvalds	  here, which has a severe performance impact. This is necessary for
17401da177e4SLinus Torvalds	  correct operation of some network protocols. With an IP-only
17411da177e4SLinus Torvalds	  configuration it is safe to say N, otherwise say Y.
17421da177e4SLinus Torvalds
174339ec58f3SLennert Buytenhekconfig UACCESS_WITH_MEMCPY
174438ef2ad5SLinus Walleij	bool "Use kernel mem{cpy,set}() for {copy_to,clear}_user()"
174538ef2ad5SLinus Walleij	depends on MMU
174639ec58f3SLennert Buytenhek	default y if CPU_FEROCEON
174739ec58f3SLennert Buytenhek	help
174839ec58f3SLennert Buytenhek	  Implement faster copy_to_user and clear_user methods for CPU
174939ec58f3SLennert Buytenhek	  cores where a 8-word STM instruction give significantly higher
175039ec58f3SLennert Buytenhek	  memory write throughput than a sequence of individual 32bit stores.
175139ec58f3SLennert Buytenhek
175239ec58f3SLennert Buytenhek	  A possible side effect is a slight increase in scheduling latency
175339ec58f3SLennert Buytenhek	  between threads sharing the same address space if they invoke
175439ec58f3SLennert Buytenhek	  such copy operations with large buffers.
175539ec58f3SLennert Buytenhek
175639ec58f3SLennert Buytenhek	  However, if the CPU data cache is using a write-allocate mode,
175739ec58f3SLennert Buytenhek	  this option is unlikely to provide any performance gain.
175839ec58f3SLennert Buytenhek
175970c70d97SNicolas Pitreconfig SECCOMP
176070c70d97SNicolas Pitre	bool
176170c70d97SNicolas Pitre	prompt "Enable seccomp to safely compute untrusted bytecode"
176270c70d97SNicolas Pitre	---help---
176370c70d97SNicolas Pitre	  This kernel feature is useful for number crunching applications
176470c70d97SNicolas Pitre	  that may need to compute untrusted bytecode during their
176570c70d97SNicolas Pitre	  execution. By using pipes or other transports made available to
176670c70d97SNicolas Pitre	  the process as file descriptors supporting the read/write
176770c70d97SNicolas Pitre	  syscalls, it's possible to isolate those applications in
176870c70d97SNicolas Pitre	  their own address space using seccomp. Once seccomp is
176970c70d97SNicolas Pitre	  enabled via prctl(PR_SET_SECCOMP), it cannot be disabled
177070c70d97SNicolas Pitre	  and the task is only allowed to execute a few safe syscalls
177170c70d97SNicolas Pitre	  defined by each seccomp mode.
177270c70d97SNicolas Pitre
1773c743f380SNicolas Pitreconfig CC_STACKPROTECTOR
1774c743f380SNicolas Pitre	bool "Enable -fstack-protector buffer overflow detection (EXPERIMENTAL)"
1775c743f380SNicolas Pitre	help
1776c743f380SNicolas Pitre	  This option turns on the -fstack-protector GCC feature. This
1777c743f380SNicolas Pitre	  feature puts, at the beginning of functions, a canary value on
1778c743f380SNicolas Pitre	  the stack just before the return address, and validates
1779c743f380SNicolas Pitre	  the value just before actually returning.  Stack based buffer
1780c743f380SNicolas Pitre	  overflows (that need to overwrite this return address) now also
1781c743f380SNicolas Pitre	  overwrite the canary, which gets detected and the attack is then
1782c743f380SNicolas Pitre	  neutralized via a kernel panic.
1783c743f380SNicolas Pitre	  This feature requires gcc version 4.2 or above.
1784c743f380SNicolas Pitre
1785eff8d644SStefano Stabelliniconfig XEN_DOM0
1786eff8d644SStefano Stabellini	def_bool y
1787eff8d644SStefano Stabellini	depends on XEN
1788eff8d644SStefano Stabellini
1789eff8d644SStefano Stabelliniconfig XEN
1790eff8d644SStefano Stabellini	bool "Xen guest support on ARM (EXPERIMENTAL)"
179185323a99SIan Campbell	depends on ARM && AEABI && OF
1792f880b67dSArnd Bergmann	depends on CPU_V7 && !CPU_V6
179385323a99SIan Campbell	depends on !GENERIC_ATOMIC64
179417b7ab80SStefano Stabellini	select ARM_PSCI
1795eff8d644SStefano Stabellini	help
1796eff8d644SStefano Stabellini	  Say Y if you want to run Linux in a Virtual Machine on Xen on ARM.
1797eff8d644SStefano Stabellini
17981da177e4SLinus Torvaldsendmenu
17991da177e4SLinus Torvalds
18001da177e4SLinus Torvaldsmenu "Boot options"
18011da177e4SLinus Torvalds
18029eb8f674SGrant Likelyconfig USE_OF
18039eb8f674SGrant Likely	bool "Flattened Device Tree support"
1804b1b3f49cSRussell King	select IRQ_DOMAIN
18059eb8f674SGrant Likely	select OF
18069eb8f674SGrant Likely	select OF_EARLY_FLATTREE
18079eb8f674SGrant Likely	help
18089eb8f674SGrant Likely	  Include support for flattened device tree machine descriptions.
18099eb8f674SGrant Likely
1810bd51e2f5SNicolas Pitreconfig ATAGS
1811bd51e2f5SNicolas Pitre	bool "Support for the traditional ATAGS boot data passing" if USE_OF
1812bd51e2f5SNicolas Pitre	default y
1813bd51e2f5SNicolas Pitre	help
1814bd51e2f5SNicolas Pitre	  This is the traditional way of passing data to the kernel at boot
1815bd51e2f5SNicolas Pitre	  time. If you are solely relying on the flattened device tree (or
1816bd51e2f5SNicolas Pitre	  the ARM_ATAG_DTB_COMPAT option) then you may unselect this option
1817bd51e2f5SNicolas Pitre	  to remove ATAGS support from your kernel binary.  If unsure,
1818bd51e2f5SNicolas Pitre	  leave this to y.
1819bd51e2f5SNicolas Pitre
1820bd51e2f5SNicolas Pitreconfig DEPRECATED_PARAM_STRUCT
1821bd51e2f5SNicolas Pitre	bool "Provide old way to pass kernel parameters"
1822bd51e2f5SNicolas Pitre	depends on ATAGS
1823bd51e2f5SNicolas Pitre	help
1824bd51e2f5SNicolas Pitre	  This was deprecated in 2001 and announced to live on for 5 years.
1825bd51e2f5SNicolas Pitre	  Some old boot loaders still use this way.
1826bd51e2f5SNicolas Pitre
18271da177e4SLinus Torvalds# Compressed boot loader in ROM.  Yes, we really want to ask about
18281da177e4SLinus Torvalds# TEXT and BSS so we preserve their values in the config files.
18291da177e4SLinus Torvaldsconfig ZBOOT_ROM_TEXT
18301da177e4SLinus Torvalds	hex "Compressed ROM boot loader base address"
18311da177e4SLinus Torvalds	default "0"
18321da177e4SLinus Torvalds	help
18331da177e4SLinus Torvalds	  The physical address at which the ROM-able zImage is to be
18341da177e4SLinus Torvalds	  placed in the target.  Platforms which normally make use of
18351da177e4SLinus Torvalds	  ROM-able zImage formats normally set this to a suitable
18361da177e4SLinus Torvalds	  value in their defconfig file.
18371da177e4SLinus Torvalds
18381da177e4SLinus Torvalds	  If ZBOOT_ROM is not enabled, this has no effect.
18391da177e4SLinus Torvalds
18401da177e4SLinus Torvaldsconfig ZBOOT_ROM_BSS
18411da177e4SLinus Torvalds	hex "Compressed ROM boot loader BSS address"
18421da177e4SLinus Torvalds	default "0"
18431da177e4SLinus Torvalds	help
1844f8c440b2SDan Fandrich	  The base address of an area of read/write memory in the target
1845f8c440b2SDan Fandrich	  for the ROM-able zImage which must be available while the
1846f8c440b2SDan Fandrich	  decompressor is running. It must be large enough to hold the
1847f8c440b2SDan Fandrich	  entire decompressed kernel plus an additional 128 KiB.
1848f8c440b2SDan Fandrich	  Platforms which normally make use of ROM-able zImage formats
1849f8c440b2SDan Fandrich	  normally set this to a suitable value in their defconfig file.
18501da177e4SLinus Torvalds
18511da177e4SLinus Torvalds	  If ZBOOT_ROM is not enabled, this has no effect.
18521da177e4SLinus Torvalds
18531da177e4SLinus Torvaldsconfig ZBOOT_ROM
18541da177e4SLinus Torvalds	bool "Compressed boot loader in ROM/flash"
18551da177e4SLinus Torvalds	depends on ZBOOT_ROM_TEXT != ZBOOT_ROM_BSS
18561da177e4SLinus Torvalds	help
18571da177e4SLinus Torvalds	  Say Y here if you intend to execute your compressed kernel image
18581da177e4SLinus Torvalds	  (zImage) directly from ROM or flash.  If unsure, say N.
18591da177e4SLinus Torvalds
1860090ab3ffSSimon Hormanchoice
1861090ab3ffSSimon Horman	prompt "Include SD/MMC loader in zImage (EXPERIMENTAL)"
1862d6f94fa0SKees Cook	depends on ZBOOT_ROM && ARCH_SH7372
1863090ab3ffSSimon Horman	default ZBOOT_ROM_NONE
1864090ab3ffSSimon Horman	help
1865090ab3ffSSimon Horman	  Include experimental SD/MMC loading code in the ROM-able zImage.
186659bf8964SMasanari Iida	  With this enabled it is possible to write the ROM-able zImage
1867090ab3ffSSimon Horman	  kernel image to an MMC or SD card and boot the kernel straight
1868090ab3ffSSimon Horman	  from the reset vector. At reset the processor Mask ROM will load
186959bf8964SMasanari Iida	  the first part of the ROM-able zImage which in turn loads the
1870090ab3ffSSimon Horman	  rest the kernel image to RAM.
1871090ab3ffSSimon Horman
1872090ab3ffSSimon Hormanconfig ZBOOT_ROM_NONE
1873090ab3ffSSimon Horman	bool "No SD/MMC loader in zImage (EXPERIMENTAL)"
1874090ab3ffSSimon Horman	help
1875090ab3ffSSimon Horman	  Do not load image from SD or MMC
1876090ab3ffSSimon Horman
1877f45b1149SSimon Hormanconfig ZBOOT_ROM_MMCIF
1878f45b1149SSimon Horman	bool "Include MMCIF loader in zImage (EXPERIMENTAL)"
1879f45b1149SSimon Horman	help
1880090ab3ffSSimon Horman	  Load image from MMCIF hardware block.
1881090ab3ffSSimon Horman
1882090ab3ffSSimon Hormanconfig ZBOOT_ROM_SH_MOBILE_SDHI
1883090ab3ffSSimon Horman	bool "Include SuperH Mobile SDHI loader in zImage (EXPERIMENTAL)"
1884090ab3ffSSimon Horman	help
1885090ab3ffSSimon Horman	  Load image from SDHI hardware block
1886090ab3ffSSimon Horman
1887090ab3ffSSimon Hormanendchoice
1888f45b1149SSimon Horman
1889e2a6a3aaSJohn Bonesioconfig ARM_APPENDED_DTB
1890e2a6a3aaSJohn Bonesio	bool "Use appended device tree blob to zImage (EXPERIMENTAL)"
1891d6f94fa0SKees Cook	depends on OF && !ZBOOT_ROM
1892e2a6a3aaSJohn Bonesio	help
1893e2a6a3aaSJohn Bonesio	  With this option, the boot code will look for a device tree binary
1894e2a6a3aaSJohn Bonesio	  (DTB) appended to zImage
1895e2a6a3aaSJohn Bonesio	  (e.g. cat zImage <filename>.dtb > zImage_w_dtb).
1896e2a6a3aaSJohn Bonesio
1897e2a6a3aaSJohn Bonesio	  This is meant as a backward compatibility convenience for those
1898e2a6a3aaSJohn Bonesio	  systems with a bootloader that can't be upgraded to accommodate
1899e2a6a3aaSJohn Bonesio	  the documented boot protocol using a device tree.
1900e2a6a3aaSJohn Bonesio
1901e2a6a3aaSJohn Bonesio	  Beware that there is very little in terms of protection against
1902e2a6a3aaSJohn Bonesio	  this option being confused by leftover garbage in memory that might
1903e2a6a3aaSJohn Bonesio	  look like a DTB header after a reboot if no actual DTB is appended
1904e2a6a3aaSJohn Bonesio	  to zImage.  Do not leave this option active in a production kernel
1905e2a6a3aaSJohn Bonesio	  if you don't intend to always append a DTB.  Proper passing of the
1906e2a6a3aaSJohn Bonesio	  location into r2 of a bootloader provided DTB is always preferable
1907e2a6a3aaSJohn Bonesio	  to this option.
1908e2a6a3aaSJohn Bonesio
1909b90b9a38SNicolas Pitreconfig ARM_ATAG_DTB_COMPAT
1910b90b9a38SNicolas Pitre	bool "Supplement the appended DTB with traditional ATAG information"
1911b90b9a38SNicolas Pitre	depends on ARM_APPENDED_DTB
1912b90b9a38SNicolas Pitre	help
1913b90b9a38SNicolas Pitre	  Some old bootloaders can't be updated to a DTB capable one, yet
1914b90b9a38SNicolas Pitre	  they provide ATAGs with memory configuration, the ramdisk address,
1915b90b9a38SNicolas Pitre	  the kernel cmdline string, etc.  Such information is dynamically
1916b90b9a38SNicolas Pitre	  provided by the bootloader and can't always be stored in a static
1917b90b9a38SNicolas Pitre	  DTB.  To allow a device tree enabled kernel to be used with such
1918b90b9a38SNicolas Pitre	  bootloaders, this option allows zImage to extract the information
1919b90b9a38SNicolas Pitre	  from the ATAG list and store it at run time into the appended DTB.
1920b90b9a38SNicolas Pitre
1921d0f34a11SGenoud Richardchoice
1922d0f34a11SGenoud Richard	prompt "Kernel command line type" if ARM_ATAG_DTB_COMPAT
1923d0f34a11SGenoud Richard	default ARM_ATAG_DTB_COMPAT_CMDLINE_FROM_BOOTLOADER
1924d0f34a11SGenoud Richard
1925d0f34a11SGenoud Richardconfig ARM_ATAG_DTB_COMPAT_CMDLINE_FROM_BOOTLOADER
1926d0f34a11SGenoud Richard	bool "Use bootloader kernel arguments if available"
1927d0f34a11SGenoud Richard	help
1928d0f34a11SGenoud Richard	  Uses the command-line options passed by the boot loader instead of
1929d0f34a11SGenoud Richard	  the device tree bootargs property. If the boot loader doesn't provide
1930d0f34a11SGenoud Richard	  any, the device tree bootargs property will be used.
1931d0f34a11SGenoud Richard
1932d0f34a11SGenoud Richardconfig ARM_ATAG_DTB_COMPAT_CMDLINE_EXTEND
1933d0f34a11SGenoud Richard	bool "Extend with bootloader kernel arguments"
1934d0f34a11SGenoud Richard	help
1935d0f34a11SGenoud Richard	  The command-line arguments provided by the boot loader will be
1936d0f34a11SGenoud Richard	  appended to the the device tree bootargs property.
1937d0f34a11SGenoud Richard
1938d0f34a11SGenoud Richardendchoice
1939d0f34a11SGenoud Richard
19401da177e4SLinus Torvaldsconfig CMDLINE
19411da177e4SLinus Torvalds	string "Default kernel command string"
19421da177e4SLinus Torvalds	default ""
19431da177e4SLinus Torvalds	help
19441da177e4SLinus Torvalds	  On some architectures (EBSA110 and CATS), there is currently no way
19451da177e4SLinus Torvalds	  for the boot loader to pass arguments to the kernel. For these
19461da177e4SLinus Torvalds	  architectures, you should supply some command-line options at build
19471da177e4SLinus Torvalds	  time by entering them here. As a minimum, you should specify the
19481da177e4SLinus Torvalds	  memory size and the root device (e.g., mem=64M root=/dev/nfs).
19491da177e4SLinus Torvalds
19504394c124SVictor Boiviechoice
19514394c124SVictor Boivie	prompt "Kernel command line type" if CMDLINE != ""
19524394c124SVictor Boivie	default CMDLINE_FROM_BOOTLOADER
1953bd51e2f5SNicolas Pitre	depends on ATAGS
19544394c124SVictor Boivie
19554394c124SVictor Boivieconfig CMDLINE_FROM_BOOTLOADER
19564394c124SVictor Boivie	bool "Use bootloader kernel arguments if available"
19574394c124SVictor Boivie	help
19584394c124SVictor Boivie	  Uses the command-line options passed by the boot loader. If
19594394c124SVictor Boivie	  the boot loader doesn't provide any, the default kernel command
19604394c124SVictor Boivie	  string provided in CMDLINE will be used.
19614394c124SVictor Boivie
19624394c124SVictor Boivieconfig CMDLINE_EXTEND
19634394c124SVictor Boivie	bool "Extend bootloader kernel arguments"
19644394c124SVictor Boivie	help
19654394c124SVictor Boivie	  The command-line arguments provided by the boot loader will be
19664394c124SVictor Boivie	  appended to the default kernel command string.
19674394c124SVictor Boivie
196892d2040dSAlexander Hollerconfig CMDLINE_FORCE
196992d2040dSAlexander Holler	bool "Always use the default kernel command string"
197092d2040dSAlexander Holler	help
197192d2040dSAlexander Holler	  Always use the default kernel command string, even if the boot
197292d2040dSAlexander Holler	  loader passes other arguments to the kernel.
197392d2040dSAlexander Holler	  This is useful if you cannot or don't want to change the
197492d2040dSAlexander Holler	  command-line options your boot loader passes to the kernel.
19754394c124SVictor Boivieendchoice
197692d2040dSAlexander Holler
19771da177e4SLinus Torvaldsconfig XIP_KERNEL
19781da177e4SLinus Torvalds	bool "Kernel Execute-In-Place from ROM"
1979387798b3SRob Herring	depends on !ZBOOT_ROM && !ARM_LPAE && !ARCH_MULTIPLATFORM
19801da177e4SLinus Torvalds	help
19811da177e4SLinus Torvalds	  Execute-In-Place allows the kernel to run from non-volatile storage
19821da177e4SLinus Torvalds	  directly addressable by the CPU, such as NOR flash. This saves RAM
19831da177e4SLinus Torvalds	  space since the text section of the kernel is not loaded from flash
19841da177e4SLinus Torvalds	  to RAM.  Read-write sections, such as the data section and stack,
19851da177e4SLinus Torvalds	  are still copied to RAM.  The XIP kernel is not compressed since
19861da177e4SLinus Torvalds	  it has to run directly from flash, so it will take more space to
19871da177e4SLinus Torvalds	  store it.  The flash address used to link the kernel object files,
19881da177e4SLinus Torvalds	  and for storing it, is configuration dependent. Therefore, if you
19891da177e4SLinus Torvalds	  say Y here, you must know the proper physical address where to
19901da177e4SLinus Torvalds	  store the kernel image depending on your own flash memory usage.
19911da177e4SLinus Torvalds
19921da177e4SLinus Torvalds	  Also note that the make target becomes "make xipImage" rather than
19931da177e4SLinus Torvalds	  "make zImage" or "make Image".  The final kernel binary to put in
19941da177e4SLinus Torvalds	  ROM memory will be arch/arm/boot/xipImage.
19951da177e4SLinus Torvalds
19961da177e4SLinus Torvalds	  If unsure, say N.
19971da177e4SLinus Torvalds
19981da177e4SLinus Torvaldsconfig XIP_PHYS_ADDR
19991da177e4SLinus Torvalds	hex "XIP Kernel Physical Location"
20001da177e4SLinus Torvalds	depends on XIP_KERNEL
20011da177e4SLinus Torvalds	default "0x00080000"
20021da177e4SLinus Torvalds	help
20031da177e4SLinus Torvalds	  This is the physical address in your flash memory the kernel will
20041da177e4SLinus Torvalds	  be linked for and stored to.  This address is dependent on your
20051da177e4SLinus Torvalds	  own flash usage.
20061da177e4SLinus Torvalds
2007c587e4a6SRichard Purdieconfig KEXEC
2008c587e4a6SRichard Purdie	bool "Kexec system call (EXPERIMENTAL)"
2009d6f94fa0SKees Cook	depends on (!SMP || HOTPLUG_CPU)
2010c587e4a6SRichard Purdie	help
2011c587e4a6SRichard Purdie	  kexec is a system call that implements the ability to shutdown your
2012c587e4a6SRichard Purdie	  current kernel, and to start another kernel.  It is like a reboot
201301dd2fbfSMatt LaPlante	  but it is independent of the system firmware.   And like a reboot
2014c587e4a6SRichard Purdie	  you can start any kernel with it, not just Linux.
2015c587e4a6SRichard Purdie
2016c587e4a6SRichard Purdie	  It is an ongoing process to be certain the hardware in a machine
2017c587e4a6SRichard Purdie	  is properly shutdown, so do not be surprised if this code does not
2018c587e4a6SRichard Purdie	  initially work for you.  It may help to enable device hotplugging
2019c587e4a6SRichard Purdie	  support.
2020c587e4a6SRichard Purdie
20214cd9d6f7SRichard Purdieconfig ATAGS_PROC
20224cd9d6f7SRichard Purdie	bool "Export atags in procfs"
2023bd51e2f5SNicolas Pitre	depends on ATAGS && KEXEC
2024b98d7291SUli Luckas	default y
20254cd9d6f7SRichard Purdie	help
20264cd9d6f7SRichard Purdie	  Should the atags used to boot the kernel be exported in an "atags"
20274cd9d6f7SRichard Purdie	  file in procfs. Useful with kexec.
20284cd9d6f7SRichard Purdie
2029cb5d39b3SMika Westerbergconfig CRASH_DUMP
2030cb5d39b3SMika Westerberg	bool "Build kdump crash kernel (EXPERIMENTAL)"
2031cb5d39b3SMika Westerberg	help
2032cb5d39b3SMika Westerberg	  Generate crash dump after being started by kexec. This should
2033cb5d39b3SMika Westerberg	  be normally only set in special crash dump kernels which are
2034cb5d39b3SMika Westerberg	  loaded in the main kernel with kexec-tools into a specially
2035cb5d39b3SMika Westerberg	  reserved region and then later executed after a crash by
2036cb5d39b3SMika Westerberg	  kdump/kexec. The crash dump kernel must be compiled to a
2037cb5d39b3SMika Westerberg	  memory address not used by the main kernel
2038cb5d39b3SMika Westerberg
2039cb5d39b3SMika Westerberg	  For more details see Documentation/kdump/kdump.txt
2040cb5d39b3SMika Westerberg
2041e69edc79SEric Miaoconfig AUTO_ZRELADDR
2042e69edc79SEric Miao	bool "Auto calculation of the decompressed kernel image address"
2043e69edc79SEric Miao	depends on !ZBOOT_ROM && !ARCH_U300
2044e69edc79SEric Miao	help
2045e69edc79SEric Miao	  ZRELADDR is the physical address where the decompressed kernel
2046e69edc79SEric Miao	  image will be placed. If AUTO_ZRELADDR is selected, the address
2047e69edc79SEric Miao	  will be determined at run-time by masking the current IP with
2048e69edc79SEric Miao	  0xf8000000. This assumes the zImage being placed in the first 128MB
2049e69edc79SEric Miao	  from start of memory.
2050e69edc79SEric Miao
20511da177e4SLinus Torvaldsendmenu
20521da177e4SLinus Torvalds
2053ac9d7efcSRussell Kingmenu "CPU Power Management"
20541da177e4SLinus Torvalds
205589c52ed4SBen Dooksif ARCH_HAS_CPUFREQ
20561da177e4SLinus Torvaldssource "drivers/cpufreq/Kconfig"
20571da177e4SLinus Torvalds
20589d56c02aSBen Dooksconfig CPU_FREQ_S3C
20599d56c02aSBen Dooks	bool
20609d56c02aSBen Dooks	help
20619d56c02aSBen Dooks	  Internal configuration node for common cpufreq on Samsung SoC
20629d56c02aSBen Dooks
20639d56c02aSBen Dooksconfig CPU_FREQ_S3C24XX
20644a50bfe3SRussell King	bool "CPUfreq driver for Samsung S3C24XX series CPUs (EXPERIMENTAL)"
2065d6f94fa0SKees Cook	depends on ARCH_S3C24XX && CPU_FREQ
20669d56c02aSBen Dooks	select CPU_FREQ_S3C
20679d56c02aSBen Dooks	help
20689d56c02aSBen Dooks	  This enables the CPUfreq driver for the Samsung S3C24XX family
20699d56c02aSBen Dooks	  of CPUs.
20709d56c02aSBen Dooks
20719d56c02aSBen Dooks	  For details, take a look at <file:Documentation/cpu-freq>.
20729d56c02aSBen Dooks
20739d56c02aSBen Dooks	  If in doubt, say N.
20749d56c02aSBen Dooks
20759d56c02aSBen Dooksconfig CPU_FREQ_S3C24XX_PLL
20764a50bfe3SRussell King	bool "Support CPUfreq changing of PLL frequency (EXPERIMENTAL)"
2077d6f94fa0SKees Cook	depends on CPU_FREQ_S3C24XX
20789d56c02aSBen Dooks	help
20799d56c02aSBen Dooks	  Compile in support for changing the PLL frequency from the
20809d56c02aSBen Dooks	  S3C24XX series CPUfreq driver. The PLL takes time to settle
20819d56c02aSBen Dooks	  after a frequency change, so by default it is not enabled.
20829d56c02aSBen Dooks
20839d56c02aSBen Dooks	  This also means that the PLL tables for the selected CPU(s) will
20849d56c02aSBen Dooks	  be built which may increase the size of the kernel image.
20859d56c02aSBen Dooks
20869d56c02aSBen Dooksconfig CPU_FREQ_S3C24XX_DEBUG
20879d56c02aSBen Dooks	bool "Debug CPUfreq Samsung driver core"
20889d56c02aSBen Dooks	depends on CPU_FREQ_S3C24XX
20899d56c02aSBen Dooks	help
20909d56c02aSBen Dooks	  Enable s3c_freq_dbg for the Samsung S3C CPUfreq core
20919d56c02aSBen Dooks
20929d56c02aSBen Dooksconfig CPU_FREQ_S3C24XX_IODEBUG
20939d56c02aSBen Dooks	bool "Debug CPUfreq Samsung driver IO timing"
20949d56c02aSBen Dooks	depends on CPU_FREQ_S3C24XX
20959d56c02aSBen Dooks	help
20969d56c02aSBen Dooks	  Enable s3c_freq_iodbg for the Samsung S3C CPUfreq core
20979d56c02aSBen Dooks
2098e6d197a6SBen Dooksconfig CPU_FREQ_S3C24XX_DEBUGFS
2099e6d197a6SBen Dooks	bool "Export debugfs for CPUFreq"
2100e6d197a6SBen Dooks	depends on CPU_FREQ_S3C24XX && DEBUG_FS
2101e6d197a6SBen Dooks	help
2102e6d197a6SBen Dooks	  Export status information via debugfs.
2103e6d197a6SBen Dooks
21041da177e4SLinus Torvaldsendif
21051da177e4SLinus Torvalds
2106ac9d7efcSRussell Kingsource "drivers/cpuidle/Kconfig"
2107ac9d7efcSRussell King
2108ac9d7efcSRussell Kingendmenu
2109ac9d7efcSRussell King
21101da177e4SLinus Torvaldsmenu "Floating point emulation"
21111da177e4SLinus Torvalds
21121da177e4SLinus Torvaldscomment "At least one emulation must be selected"
21131da177e4SLinus Torvalds
21141da177e4SLinus Torvaldsconfig FPE_NWFPE
21151da177e4SLinus Torvalds	bool "NWFPE math emulation"
2116593c252aSDave Martin	depends on (!AEABI || OABI_COMPAT) && !THUMB2_KERNEL
21171da177e4SLinus Torvalds	---help---
21181da177e4SLinus Torvalds	  Say Y to include the NWFPE floating point emulator in the kernel.
21191da177e4SLinus Torvalds	  This is necessary to run most binaries. Linux does not currently
21201da177e4SLinus Torvalds	  support floating point hardware so you need to say Y here even if
21211da177e4SLinus Torvalds	  your machine has an FPA or floating point co-processor podule.
21221da177e4SLinus Torvalds
21231da177e4SLinus Torvalds	  You may say N here if you are going to load the Acorn FPEmulator
21241da177e4SLinus Torvalds	  early in the bootup.
21251da177e4SLinus Torvalds
21261da177e4SLinus Torvaldsconfig FPE_NWFPE_XP
21271da177e4SLinus Torvalds	bool "Support extended precision"
2128bedf142bSLennert Buytenhek	depends on FPE_NWFPE
21291da177e4SLinus Torvalds	help
21301da177e4SLinus Torvalds	  Say Y to include 80-bit support in the kernel floating-point
21311da177e4SLinus Torvalds	  emulator.  Otherwise, only 32 and 64-bit support is compiled in.
21321da177e4SLinus Torvalds	  Note that gcc does not generate 80-bit operations by default,
21331da177e4SLinus Torvalds	  so in most cases this option only enlarges the size of the
21341da177e4SLinus Torvalds	  floating point emulator without any good reason.
21351da177e4SLinus Torvalds
21361da177e4SLinus Torvalds	  You almost surely want to say N here.
21371da177e4SLinus Torvalds
21381da177e4SLinus Torvaldsconfig FPE_FASTFPE
21391da177e4SLinus Torvalds	bool "FastFPE math emulation (EXPERIMENTAL)"
2140d6f94fa0SKees Cook	depends on (!AEABI || OABI_COMPAT) && !CPU_32v3
21411da177e4SLinus Torvalds	---help---
21421da177e4SLinus Torvalds	  Say Y here to include the FAST floating point emulator in the kernel.
21431da177e4SLinus Torvalds	  This is an experimental much faster emulator which now also has full
21441da177e4SLinus Torvalds	  precision for the mantissa.  It does not support any exceptions.
21451da177e4SLinus Torvalds	  It is very simple, and approximately 3-6 times faster than NWFPE.
21461da177e4SLinus Torvalds
21471da177e4SLinus Torvalds	  It should be sufficient for most programs.  It may be not suitable
21481da177e4SLinus Torvalds	  for scientific calculations, but you have to check this for yourself.
21491da177e4SLinus Torvalds	  If you do not feel you need a faster FP emulation you should better
21501da177e4SLinus Torvalds	  choose NWFPE.
21511da177e4SLinus Torvalds
21521da177e4SLinus Torvaldsconfig VFP
21531da177e4SLinus Torvalds	bool "VFP-format floating point maths"
2154e399b1a4SRussell King	depends on CPU_V6 || CPU_V6K || CPU_ARM926T || CPU_V7 || CPU_FEROCEON
21551da177e4SLinus Torvalds	help
21561da177e4SLinus Torvalds	  Say Y to include VFP support code in the kernel. This is needed
21571da177e4SLinus Torvalds	  if your hardware includes a VFP unit.
21581da177e4SLinus Torvalds
21591da177e4SLinus Torvalds	  Please see <file:Documentation/arm/VFP/release-notes.txt> for
21601da177e4SLinus Torvalds	  release notes and additional status information.
21611da177e4SLinus Torvalds
21621da177e4SLinus Torvalds	  Say N if your target does not have VFP hardware.
21631da177e4SLinus Torvalds
216425ebee02SCatalin Marinasconfig VFPv3
216525ebee02SCatalin Marinas	bool
216625ebee02SCatalin Marinas	depends on VFP
216725ebee02SCatalin Marinas	default y if CPU_V7
216825ebee02SCatalin Marinas
2169b5872db4SCatalin Marinasconfig NEON
2170b5872db4SCatalin Marinas	bool "Advanced SIMD (NEON) Extension support"
2171b5872db4SCatalin Marinas	depends on VFPv3 && CPU_V7
2172b5872db4SCatalin Marinas	help
2173b5872db4SCatalin Marinas	  Say Y to include support code for NEON, the ARMv7 Advanced SIMD
2174b5872db4SCatalin Marinas	  Extension.
2175b5872db4SCatalin Marinas
21761da177e4SLinus Torvaldsendmenu
21771da177e4SLinus Torvalds
21781da177e4SLinus Torvaldsmenu "Userspace binary formats"
21791da177e4SLinus Torvalds
21801da177e4SLinus Torvaldssource "fs/Kconfig.binfmt"
21811da177e4SLinus Torvalds
21821da177e4SLinus Torvaldsconfig ARTHUR
21831da177e4SLinus Torvalds	tristate "RISC OS personality"
2184704bdda0SNicolas Pitre	depends on !AEABI
21851da177e4SLinus Torvalds	help
21861da177e4SLinus Torvalds	  Say Y here to include the kernel code necessary if you want to run
21871da177e4SLinus Torvalds	  Acorn RISC OS/Arthur binaries under Linux. This code is still very
21881da177e4SLinus Torvalds	  experimental; if this sounds frightening, say N and sleep in peace.
21891da177e4SLinus Torvalds	  You can also say M here to compile this support as a module (which
21901da177e4SLinus Torvalds	  will be called arthur).
21911da177e4SLinus Torvalds
21921da177e4SLinus Torvaldsendmenu
21931da177e4SLinus Torvalds
21941da177e4SLinus Torvaldsmenu "Power management options"
21951da177e4SLinus Torvalds
2196eceab4acSRussell Kingsource "kernel/power/Kconfig"
21971da177e4SLinus Torvalds
2198f4cb5700SJohannes Bergconfig ARCH_SUSPEND_POSSIBLE
21994b1082caSStephen Warren	depends on !ARCH_S5PC100
22006a786182SRussell King	depends on CPU_ARM920T || CPU_ARM926T || CPU_SA1100 || \
22013f5d0819SChao Xie		CPU_V6 || CPU_V6K || CPU_V7 || CPU_XSC3 || CPU_XSCALE || CPU_MOHAWK
2202f4cb5700SJohannes Berg	def_bool y
2203f4cb5700SJohannes Berg
220415e0d9e3SArnd Bergmannconfig ARM_CPU_SUSPEND
220515e0d9e3SArnd Bergmann	def_bool PM_SLEEP
220615e0d9e3SArnd Bergmann
22071da177e4SLinus Torvaldsendmenu
22081da177e4SLinus Torvalds
2209d5950b43SSam Ravnborgsource "net/Kconfig"
2210d5950b43SSam Ravnborg
2211ac25150fSUwe Kleine-Königsource "drivers/Kconfig"
22121da177e4SLinus Torvalds
22131da177e4SLinus Torvaldssource "fs/Kconfig"
22141da177e4SLinus Torvalds
22151da177e4SLinus Torvaldssource "arch/arm/Kconfig.debug"
22161da177e4SLinus Torvalds
22171da177e4SLinus Torvaldssource "security/Kconfig"
22181da177e4SLinus Torvalds
22191da177e4SLinus Torvaldssource "crypto/Kconfig"
22201da177e4SLinus Torvalds
22211da177e4SLinus Torvaldssource "lib/Kconfig"
2222749cf76cSChristoffer Dall
2223749cf76cSChristoffer Dallsource "arch/arm/kvm/Kconfig"
2224