]> asedeno.scripts.mit.edu Git - linux.git/blob - arch/arm/Kconfig
Merge tag 'armsoc-fixes-nc' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc
[linux.git] / arch / arm / Kconfig
1 config ARM
2         bool
3         default y
4         select ARCH_HAS_ATOMIC64_DEC_IF_POSITIVE
5         select ARCH_HAS_ELF_RANDOMIZE
6         select ARCH_HAS_TICK_BROADCAST if GENERIC_CLOCKEVENTS_BROADCAST
7         select ARCH_HAVE_CUSTOM_GPIO_H
8         select ARCH_HAS_GCOV_PROFILE_ALL
9         select ARCH_MIGHT_HAVE_PC_PARPORT
10         select ARCH_SUPPORTS_ATOMIC_RMW
11         select ARCH_USE_BUILTIN_BSWAP
12         select ARCH_USE_CMPXCHG_LOCKREF
13         select ARCH_WANT_IPC_PARSE_VERSION
14         select BUILDTIME_EXTABLE_SORT if MMU
15         select CLONE_BACKWARDS
16         select CPU_PM if (SUSPEND || CPU_IDLE)
17         select DCACHE_WORD_ACCESS if HAVE_EFFICIENT_UNALIGNED_ACCESS
18         select EDAC_SUPPORT
19         select EDAC_ATOMIC_SCRUB
20         select GENERIC_ALLOCATOR
21         select GENERIC_ATOMIC64 if (CPU_V7M || CPU_V6 || !CPU_32v6K || !AEABI)
22         select GENERIC_CLOCKEVENTS_BROADCAST if SMP
23         select GENERIC_IDLE_POLL_SETUP
24         select GENERIC_IRQ_PROBE
25         select GENERIC_IRQ_SHOW
26         select GENERIC_IRQ_SHOW_LEVEL
27         select GENERIC_PCI_IOMAP
28         select GENERIC_SCHED_CLOCK
29         select GENERIC_SMP_IDLE_THREAD
30         select GENERIC_STRNCPY_FROM_USER
31         select GENERIC_STRNLEN_USER
32         select HANDLE_DOMAIN_IRQ
33         select HARDIRQS_SW_RESEND
34         select HAVE_ARCH_AUDITSYSCALL if (AEABI && !OABI_COMPAT)
35         select HAVE_ARCH_BITREVERSE if (CPU_32v7M || CPU_32v7) && !CPU_32v6
36         select HAVE_ARCH_JUMP_LABEL if !XIP_KERNEL && !CPU_ENDIAN_BE32
37         select HAVE_ARCH_KGDB if !CPU_ENDIAN_BE32
38         select HAVE_ARCH_SECCOMP_FILTER if (AEABI && !OABI_COMPAT)
39         select HAVE_ARCH_TRACEHOOK
40         select HAVE_BPF_JIT
41         select HAVE_CC_STACKPROTECTOR
42         select HAVE_CONTEXT_TRACKING
43         select HAVE_C_RECORDMCOUNT
44         select HAVE_DEBUG_KMEMLEAK
45         select HAVE_DMA_API_DEBUG
46         select HAVE_DMA_ATTRS
47         select HAVE_DMA_CONTIGUOUS if MMU
48         select HAVE_DYNAMIC_FTRACE if (!XIP_KERNEL) && !CPU_ENDIAN_BE32
49         select HAVE_EFFICIENT_UNALIGNED_ACCESS if (CPU_V6 || CPU_V6K || CPU_V7) && MMU
50         select HAVE_FTRACE_MCOUNT_RECORD if (!XIP_KERNEL)
51         select HAVE_FUNCTION_GRAPH_TRACER if (!THUMB2_KERNEL)
52         select HAVE_FUNCTION_TRACER if (!XIP_KERNEL)
53         select HAVE_GENERIC_DMA_COHERENT
54         select HAVE_HW_BREAKPOINT if (PERF_EVENTS && (CPU_V6 || CPU_V6K || CPU_V7))
55         select HAVE_IDE if PCI || ISA || PCMCIA
56         select HAVE_IRQ_TIME_ACCOUNTING
57         select HAVE_KERNEL_GZIP
58         select HAVE_KERNEL_LZ4
59         select HAVE_KERNEL_LZMA
60         select HAVE_KERNEL_LZO
61         select HAVE_KERNEL_XZ
62         select HAVE_KPROBES if !XIP_KERNEL && !CPU_ENDIAN_BE32 && !CPU_V7M
63         select HAVE_KRETPROBES if (HAVE_KPROBES)
64         select HAVE_MEMBLOCK
65         select HAVE_MOD_ARCH_SPECIFIC
66         select HAVE_OPROFILE if (HAVE_PERF_EVENTS)
67         select HAVE_OPTPROBES if !THUMB2_KERNEL
68         select HAVE_PERF_EVENTS
69         select HAVE_PERF_REGS
70         select HAVE_PERF_USER_STACK_DUMP
71         select HAVE_RCU_TABLE_FREE if (SMP && ARM_LPAE)
72         select HAVE_REGS_AND_STACK_ACCESS_API
73         select HAVE_SYSCALL_TRACEPOINTS
74         select HAVE_UID16
75         select HAVE_VIRT_CPU_ACCOUNTING_GEN
76         select IRQ_FORCED_THREADING
77         select MODULES_USE_ELF_REL
78         select NO_BOOTMEM
79         select OLD_SIGACTION
80         select OLD_SIGSUSPEND3
81         select PERF_USE_VMALLOC
82         select RTC_LIB
83         select SYS_SUPPORTS_APM_EMULATION
84         # Above selects are sorted alphabetically; please add new ones
85         # according to that.  Thanks.
86         help
87           The ARM series is a line of low-power-consumption RISC chip designs
88           licensed by ARM Ltd and targeted at embedded applications and
89           handhelds such as the Compaq IPAQ.  ARM-based PCs are no longer
90           manufactured, but legacy ARM-based PC hardware remains popular in
91           Europe.  There is an ARM Linux project with a web page at
92           <http://www.arm.linux.org.uk/>.
93
94 config ARM_HAS_SG_CHAIN
95         select ARCH_HAS_SG_CHAIN
96         bool
97
98 config NEED_SG_DMA_LENGTH
99         bool
100
101 config ARM_DMA_USE_IOMMU
102         bool
103         select ARM_HAS_SG_CHAIN
104         select NEED_SG_DMA_LENGTH
105
106 if ARM_DMA_USE_IOMMU
107
108 config ARM_DMA_IOMMU_ALIGNMENT
109         int "Maximum PAGE_SIZE order of alignment for DMA IOMMU buffers"
110         range 4 9
111         default 8
112         help
113           DMA mapping framework by default aligns all buffers to the smallest
114           PAGE_SIZE order which is greater than or equal to the requested buffer
115           size. This works well for buffers up to a few hundreds kilobytes, but
116           for larger buffers it just a waste of address space. Drivers which has
117           relatively small addressing window (like 64Mib) might run out of
118           virtual space with just a few allocations.
119
120           With this parameter you can specify the maximum PAGE_SIZE order for
121           DMA IOMMU buffers. Larger buffers will be aligned only to this
122           specified order. The order is expressed as a power of two multiplied
123           by the PAGE_SIZE.
124
125 endif
126
127 config MIGHT_HAVE_PCI
128         bool
129
130 config SYS_SUPPORTS_APM_EMULATION
131         bool
132
133 config HAVE_TCM
134         bool
135         select GENERIC_ALLOCATOR
136
137 config HAVE_PROC_CPU
138         bool
139
140 config NO_IOPORT_MAP
141         bool
142
143 config EISA
144         bool
145         ---help---
146           The Extended Industry Standard Architecture (EISA) bus was
147           developed as an open alternative to the IBM MicroChannel bus.
148
149           The EISA bus provided some of the features of the IBM MicroChannel
150           bus while maintaining backward compatibility with cards made for
151           the older ISA bus.  The EISA bus saw limited use between 1988 and
152           1995 when it was made obsolete by the PCI bus.
153
154           Say Y here if you are building a kernel for an EISA-based machine.
155
156           Otherwise, say N.
157
158 config SBUS
159         bool
160
161 config STACKTRACE_SUPPORT
162         bool
163         default y
164
165 config HAVE_LATENCYTOP_SUPPORT
166         bool
167         depends on !SMP
168         default y
169
170 config LOCKDEP_SUPPORT
171         bool
172         default y
173
174 config TRACE_IRQFLAGS_SUPPORT
175         bool
176         default !CPU_V7M
177
178 config RWSEM_XCHGADD_ALGORITHM
179         bool
180         default y
181
182 config ARCH_HAS_ILOG2_U32
183         bool
184
185 config ARCH_HAS_ILOG2_U64
186         bool
187
188 config ARCH_HAS_BANDGAP
189         bool
190
191 config GENERIC_HWEIGHT
192         bool
193         default y
194
195 config GENERIC_CALIBRATE_DELAY
196         bool
197         default y
198
199 config ARCH_MAY_HAVE_PC_FDC
200         bool
201
202 config ZONE_DMA
203         bool
204
205 config NEED_DMA_MAP_STATE
206        def_bool y
207
208 config ARCH_SUPPORTS_UPROBES
209         def_bool y
210
211 config ARCH_HAS_DMA_SET_COHERENT_MASK
212         bool
213
214 config GENERIC_ISA_DMA
215         bool
216
217 config FIQ
218         bool
219
220 config NEED_RET_TO_USER
221         bool
222
223 config ARCH_MTD_XIP
224         bool
225
226 config VECTORS_BASE
227         hex
228         default 0xffff0000 if MMU || CPU_HIGH_VECTOR
229         default DRAM_BASE if REMAP_VECTORS_TO_RAM
230         default 0x00000000
231         help
232           The base address of exception vectors.  This must be two pages
233           in size.
234
235 config ARM_PATCH_PHYS_VIRT
236         bool "Patch physical to virtual translations at runtime" if EMBEDDED
237         default y
238         depends on !XIP_KERNEL && MMU
239         depends on !ARCH_REALVIEW || !SPARSEMEM
240         help
241           Patch phys-to-virt and virt-to-phys translation functions at
242           boot and module load time according to the position of the
243           kernel in system memory.
244
245           This can only be used with non-XIP MMU kernels where the base
246           of physical memory is at a 16MB boundary.
247
248           Only disable this option if you know that you do not require
249           this feature (eg, building a kernel for a single machine) and
250           you need to shrink the kernel to the minimal size.
251
252 config NEED_MACH_IO_H
253         bool
254         help
255           Select this when mach/io.h is required to provide special
256           definitions for this platform.  The need for mach/io.h should
257           be avoided when possible.
258
259 config NEED_MACH_MEMORY_H
260         bool
261         help
262           Select this when mach/memory.h is required to provide special
263           definitions for this platform.  The need for mach/memory.h should
264           be avoided when possible.
265
266 config PHYS_OFFSET
267         hex "Physical address of main memory" if MMU
268         depends on !ARM_PATCH_PHYS_VIRT
269         default DRAM_BASE if !MMU
270         default 0x00000000 if ARCH_EBSA110 || \
271                         EP93XX_SDCE3_SYNC_PHYS_OFFSET || \
272                         ARCH_FOOTBRIDGE || \
273                         ARCH_INTEGRATOR || \
274                         ARCH_IOP13XX || \
275                         ARCH_KS8695 || \
276                         (ARCH_REALVIEW && !REALVIEW_HIGH_PHYS_OFFSET)
277         default 0x10000000 if ARCH_OMAP1 || ARCH_RPC
278         default 0x20000000 if ARCH_S5PV210
279         default 0x70000000 if REALVIEW_HIGH_PHYS_OFFSET
280         default 0xc0000000 if EP93XX_SDCE0_PHYS_OFFSET || ARCH_SA1100
281         default 0xd0000000 if EP93XX_SDCE1_PHYS_OFFSET
282         default 0xe0000000 if EP93XX_SDCE2_PHYS_OFFSET
283         default 0xf0000000 if EP93XX_SDCE3_ASYNC_PHYS_OFFSET
284         help
285           Please provide the physical address corresponding to the
286           location of main memory in your system.
287
288 config GENERIC_BUG
289         def_bool y
290         depends on BUG
291
292 config PGTABLE_LEVELS
293         int
294         default 3 if ARM_LPAE
295         default 2
296
297 source "init/Kconfig"
298
299 source "kernel/Kconfig.freezer"
300
301 menu "System Type"
302
303 config MMU
304         bool "MMU-based Paged Memory Management Support"
305         default y
306         help
307           Select if you want MMU-based virtualised addressing space
308           support by paged memory management. If unsure, say 'Y'.
309
310 #
311 # The "ARM system type" choice list is ordered alphabetically by option
312 # text.  Please add new entries in the option alphabetic order.
313 #
314 choice
315         prompt "ARM system type"
316         default ARCH_VERSATILE if !MMU
317         default ARCH_MULTIPLATFORM if MMU
318
319 config ARCH_MULTIPLATFORM
320         bool "Allow multiple platforms to be selected"
321         depends on MMU
322         select ARCH_WANT_OPTIONAL_GPIOLIB
323         select ARM_HAS_SG_CHAIN
324         select ARM_PATCH_PHYS_VIRT
325         select AUTO_ZRELADDR
326         select CLKSRC_OF
327         select COMMON_CLK
328         select GENERIC_CLOCKEVENTS
329         select MIGHT_HAVE_PCI
330         select MULTI_IRQ_HANDLER
331         select SPARSE_IRQ
332         select USE_OF
333
334 config ARM_SINGLE_ARMV7M
335         bool "ARMv7-M based platforms (Cortex-M0/M3/M4)"
336         depends on !MMU
337         select ARCH_WANT_OPTIONAL_GPIOLIB
338         select ARM_NVIC
339         select AUTO_ZRELADDR
340         select CLKSRC_OF
341         select COMMON_CLK
342         select CPU_V7M
343         select GENERIC_CLOCKEVENTS
344         select NO_IOPORT_MAP
345         select SPARSE_IRQ
346         select USE_OF
347
348 config ARCH_REALVIEW
349         bool "ARM Ltd. RealView family"
350         select ARCH_WANT_OPTIONAL_GPIOLIB
351         select ARM_AMBA
352         select ARM_TIMER_SP804
353         select COMMON_CLK
354         select COMMON_CLK_VERSATILE
355         select GENERIC_CLOCKEVENTS
356         select GPIO_PL061 if GPIOLIB
357         select ICST
358         select NEED_MACH_MEMORY_H
359         select PLAT_VERSATILE
360         select PLAT_VERSATILE_SCHED_CLOCK
361         help
362           This enables support for ARM Ltd RealView boards.
363
364 config ARCH_VERSATILE
365         bool "ARM Ltd. Versatile family"
366         select ARCH_WANT_OPTIONAL_GPIOLIB
367         select ARM_AMBA
368         select ARM_TIMER_SP804
369         select ARM_VIC
370         select CLKDEV_LOOKUP
371         select GENERIC_CLOCKEVENTS
372         select HAVE_MACH_CLKDEV
373         select ICST
374         select PLAT_VERSATILE
375         select PLAT_VERSATILE_CLOCK
376         select PLAT_VERSATILE_SCHED_CLOCK
377         select VERSATILE_FPGA_IRQ
378         help
379           This enables support for ARM Ltd Versatile board.
380
381 config ARCH_CLPS711X
382         bool "Cirrus Logic CLPS711x/EP721x/EP731x-based"
383         select ARCH_REQUIRE_GPIOLIB
384         select AUTO_ZRELADDR
385         select CLKSRC_MMIO
386         select COMMON_CLK
387         select CPU_ARM720T
388         select GENERIC_CLOCKEVENTS
389         select MFD_SYSCON
390         select SOC_BUS
391         help
392           Support for Cirrus Logic 711x/721x/731x based boards.
393
394 config ARCH_GEMINI
395         bool "Cortina Systems Gemini"
396         select ARCH_REQUIRE_GPIOLIB
397         select CLKSRC_MMIO
398         select CPU_FA526
399         select GENERIC_CLOCKEVENTS
400         help
401           Support for the Cortina Systems Gemini family SoCs
402
403 config ARCH_EBSA110
404         bool "EBSA-110"
405         select ARCH_USES_GETTIMEOFFSET
406         select CPU_SA110
407         select ISA
408         select NEED_MACH_IO_H
409         select NEED_MACH_MEMORY_H
410         select NO_IOPORT_MAP
411         help
412           This is an evaluation board for the StrongARM processor available
413           from Digital. It has limited hardware on-board, including an
414           Ethernet interface, two PCMCIA sockets, two serial ports and a
415           parallel port.
416
417 config ARCH_EP93XX
418         bool "EP93xx-based"
419         select ARCH_HAS_HOLES_MEMORYMODEL
420         select ARCH_REQUIRE_GPIOLIB
421         select ARCH_USES_GETTIMEOFFSET
422         select ARM_AMBA
423         select ARM_VIC
424         select CLKDEV_LOOKUP
425         select CPU_ARM920T
426         help
427           This enables support for the Cirrus EP93xx series of CPUs.
428
429 config ARCH_FOOTBRIDGE
430         bool "FootBridge"
431         select CPU_SA110
432         select FOOTBRIDGE
433         select GENERIC_CLOCKEVENTS
434         select HAVE_IDE
435         select NEED_MACH_IO_H if !MMU
436         select NEED_MACH_MEMORY_H
437         help
438           Support for systems based on the DC21285 companion chip
439           ("FootBridge"), such as the Simtec CATS and the Rebel NetWinder.
440
441 config ARCH_NETX
442         bool "Hilscher NetX based"
443         select ARM_VIC
444         select CLKSRC_MMIO
445         select CPU_ARM926T
446         select GENERIC_CLOCKEVENTS
447         help
448           This enables support for systems based on the Hilscher NetX Soc
449
450 config ARCH_IOP13XX
451         bool "IOP13xx-based"
452         depends on MMU
453         select CPU_XSC3
454         select NEED_MACH_MEMORY_H
455         select NEED_RET_TO_USER
456         select PCI
457         select PLAT_IOP
458         select VMSPLIT_1G
459         select SPARSE_IRQ
460         help
461           Support for Intel's IOP13XX (XScale) family of processors.
462
463 config ARCH_IOP32X
464         bool "IOP32x-based"
465         depends on MMU
466         select ARCH_REQUIRE_GPIOLIB
467         select CPU_XSCALE
468         select GPIO_IOP
469         select NEED_RET_TO_USER
470         select PCI
471         select PLAT_IOP
472         help
473           Support for Intel's 80219 and IOP32X (XScale) family of
474           processors.
475
476 config ARCH_IOP33X
477         bool "IOP33x-based"
478         depends on MMU
479         select ARCH_REQUIRE_GPIOLIB
480         select CPU_XSCALE
481         select GPIO_IOP
482         select NEED_RET_TO_USER
483         select PCI
484         select PLAT_IOP
485         help
486           Support for Intel's IOP33X (XScale) family of processors.
487
488 config ARCH_IXP4XX
489         bool "IXP4xx-based"
490         depends on MMU
491         select ARCH_HAS_DMA_SET_COHERENT_MASK
492         select ARCH_REQUIRE_GPIOLIB
493         select ARCH_SUPPORTS_BIG_ENDIAN
494         select CLKSRC_MMIO
495         select CPU_XSCALE
496         select DMABOUNCE if PCI
497         select GENERIC_CLOCKEVENTS
498         select MIGHT_HAVE_PCI
499         select NEED_MACH_IO_H
500         select USB_EHCI_BIG_ENDIAN_DESC
501         select USB_EHCI_BIG_ENDIAN_MMIO
502         help
503           Support for Intel's IXP4XX (XScale) family of processors.
504
505 config ARCH_DOVE
506         bool "Marvell Dove"
507         select ARCH_REQUIRE_GPIOLIB
508         select CPU_PJ4
509         select GENERIC_CLOCKEVENTS
510         select MIGHT_HAVE_PCI
511         select MVEBU_MBUS
512         select PINCTRL
513         select PINCTRL_DOVE
514         select PLAT_ORION_LEGACY
515         help
516           Support for the Marvell Dove SoC 88AP510
517
518 config ARCH_MV78XX0
519         bool "Marvell MV78xx0"
520         select ARCH_REQUIRE_GPIOLIB
521         select CPU_FEROCEON
522         select GENERIC_CLOCKEVENTS
523         select MVEBU_MBUS
524         select PCI
525         select PLAT_ORION_LEGACY
526         help
527           Support for the following Marvell MV78xx0 series SoCs:
528           MV781x0, MV782x0.
529
530 config ARCH_ORION5X
531         bool "Marvell Orion"
532         depends on MMU
533         select ARCH_REQUIRE_GPIOLIB
534         select CPU_FEROCEON
535         select GENERIC_CLOCKEVENTS
536         select MVEBU_MBUS
537         select PCI
538         select PLAT_ORION_LEGACY
539         select MULTI_IRQ_HANDLER
540         help
541           Support for the following Marvell Orion 5x series SoCs:
542           Orion-1 (5181), Orion-VoIP (5181L), Orion-NAS (5182),
543           Orion-2 (5281), Orion-1-90 (6183).
544
545 config ARCH_MMP
546         bool "Marvell PXA168/910/MMP2"
547         depends on MMU
548         select ARCH_REQUIRE_GPIOLIB
549         select CLKDEV_LOOKUP
550         select GENERIC_ALLOCATOR
551         select GENERIC_CLOCKEVENTS
552         select GPIO_PXA
553         select IRQ_DOMAIN
554         select MULTI_IRQ_HANDLER
555         select PINCTRL
556         select PLAT_PXA
557         select SPARSE_IRQ
558         help
559           Support for Marvell's PXA168/PXA910(MMP) and MMP2 processor line.
560
561 config ARCH_KS8695
562         bool "Micrel/Kendin KS8695"
563         select ARCH_REQUIRE_GPIOLIB
564         select CLKSRC_MMIO
565         select CPU_ARM922T
566         select GENERIC_CLOCKEVENTS
567         select NEED_MACH_MEMORY_H
568         help
569           Support for Micrel/Kendin KS8695 "Centaur" (ARM922T) based
570           System-on-Chip devices.
571
572 config ARCH_W90X900
573         bool "Nuvoton W90X900 CPU"
574         select ARCH_REQUIRE_GPIOLIB
575         select CLKDEV_LOOKUP
576         select CLKSRC_MMIO
577         select CPU_ARM926T
578         select GENERIC_CLOCKEVENTS
579         help
580           Support for Nuvoton (Winbond logic dept.) ARM9 processor,
581           At present, the w90x900 has been renamed nuc900, regarding
582           the ARM series product line, you can login the following
583           link address to know more.
584
585           <http://www.nuvoton.com/hq/enu/ProductAndSales/ProductLines/
586                 ConsumerElectronicsIC/ARMMicrocontroller/ARMMicrocontroller>
587
588 config ARCH_LPC32XX
589         bool "NXP LPC32XX"
590         select ARCH_REQUIRE_GPIOLIB
591         select ARM_AMBA
592         select CLKDEV_LOOKUP
593         select CLKSRC_MMIO
594         select CPU_ARM926T
595         select GENERIC_CLOCKEVENTS
596         select HAVE_IDE
597         select USE_OF
598         help
599           Support for the NXP LPC32XX family of processors
600
601 config ARCH_PXA
602         bool "PXA2xx/PXA3xx-based"
603         depends on MMU
604         select ARCH_MTD_XIP
605         select ARCH_REQUIRE_GPIOLIB
606         select ARM_CPU_SUSPEND if PM
607         select AUTO_ZRELADDR
608         select COMMON_CLK
609         select CLKDEV_LOOKUP
610         select CLKSRC_MMIO
611         select CLKSRC_OF
612         select GENERIC_CLOCKEVENTS
613         select GPIO_PXA
614         select HAVE_IDE
615         select IRQ_DOMAIN
616         select MULTI_IRQ_HANDLER
617         select PLAT_PXA
618         select SPARSE_IRQ
619         help
620           Support for Intel/Marvell's PXA2xx/PXA3xx processor line.
621
622 config ARCH_SHMOBILE_LEGACY
623         bool "Renesas ARM SoCs (non-multiplatform)"
624         select ARCH_SHMOBILE
625         select ARM_PATCH_PHYS_VIRT if MMU
626         select CLKDEV_LOOKUP
627         select CPU_V7
628         select GENERIC_CLOCKEVENTS
629         select HAVE_ARM_SCU if SMP
630         select HAVE_ARM_TWD if SMP
631         select HAVE_SMP
632         select MIGHT_HAVE_CACHE_L2X0
633         select MULTI_IRQ_HANDLER
634         select NO_IOPORT_MAP
635         select PINCTRL
636         select PM_GENERIC_DOMAINS if PM
637         select SH_CLK_CPG
638         select SPARSE_IRQ
639         help
640           Support for Renesas ARM SoC platforms using a non-multiplatform
641           kernel. This includes the SH-Mobile, R-Mobile, EMMA-Mobile, R-Car
642           and RZ families.
643
644 config ARCH_RPC
645         bool "RiscPC"
646         select ARCH_ACORN
647         select ARCH_MAY_HAVE_PC_FDC
648         select ARCH_SPARSEMEM_ENABLE
649         select ARCH_USES_GETTIMEOFFSET
650         select CPU_SA110
651         select FIQ
652         select HAVE_IDE
653         select HAVE_PATA_PLATFORM
654         select ISA_DMA_API
655         select NEED_MACH_IO_H
656         select NEED_MACH_MEMORY_H
657         select NO_IOPORT_MAP
658         select VIRT_TO_BUS
659         help
660           On the Acorn Risc-PC, Linux can support the internal IDE disk and
661           CD-ROM interface, serial and parallel port, and the floppy drive.
662
663 config ARCH_SA1100
664         bool "SA1100-based"
665         select ARCH_MTD_XIP
666         select ARCH_REQUIRE_GPIOLIB
667         select ARCH_SPARSEMEM_ENABLE
668         select CLKDEV_LOOKUP
669         select CLKSRC_MMIO
670         select CPU_FREQ
671         select CPU_SA1100
672         select GENERIC_CLOCKEVENTS
673         select HAVE_IDE
674         select IRQ_DOMAIN
675         select ISA
676         select MULTI_IRQ_HANDLER
677         select NEED_MACH_MEMORY_H
678         select SPARSE_IRQ
679         help
680           Support for StrongARM 11x0 based boards.
681
682 config ARCH_S3C24XX
683         bool "Samsung S3C24XX SoCs"
684         select ARCH_REQUIRE_GPIOLIB
685         select ATAGS
686         select CLKDEV_LOOKUP
687         select CLKSRC_SAMSUNG_PWM
688         select GENERIC_CLOCKEVENTS
689         select GPIO_SAMSUNG
690         select HAVE_S3C2410_I2C if I2C
691         select HAVE_S3C2410_WATCHDOG if WATCHDOG
692         select HAVE_S3C_RTC if RTC_CLASS
693         select MULTI_IRQ_HANDLER
694         select NEED_MACH_IO_H
695         select SAMSUNG_ATAGS
696         help
697           Samsung S3C2410, S3C2412, S3C2413, S3C2416, S3C2440, S3C2442, S3C2443
698           and S3C2450 SoCs based systems, such as the Simtec Electronics BAST
699           (<http://www.simtec.co.uk/products/EB110ITX/>), the IPAQ 1940 or the
700           Samsung SMDK2410 development board (and derivatives).
701
702 config ARCH_S3C64XX
703         bool "Samsung S3C64XX"
704         select ARCH_REQUIRE_GPIOLIB
705         select ARM_AMBA
706         select ARM_VIC
707         select ATAGS
708         select CLKDEV_LOOKUP
709         select CLKSRC_SAMSUNG_PWM
710         select COMMON_CLK_SAMSUNG
711         select CPU_V6K
712         select GENERIC_CLOCKEVENTS
713         select GPIO_SAMSUNG
714         select HAVE_S3C2410_I2C if I2C
715         select HAVE_S3C2410_WATCHDOG if WATCHDOG
716         select HAVE_TCM
717         select NO_IOPORT_MAP
718         select PLAT_SAMSUNG
719         select PM_GENERIC_DOMAINS if PM
720         select S3C_DEV_NAND
721         select S3C_GPIO_TRACK
722         select SAMSUNG_ATAGS
723         select SAMSUNG_WAKEMASK
724         select SAMSUNG_WDT_RESET
725         help
726           Samsung S3C64XX series based systems
727
728 config ARCH_DAVINCI
729         bool "TI DaVinci"
730         select ARCH_HAS_HOLES_MEMORYMODEL
731         select ARCH_REQUIRE_GPIOLIB
732         select CLKDEV_LOOKUP
733         select GENERIC_ALLOCATOR
734         select GENERIC_CLOCKEVENTS
735         select GENERIC_IRQ_CHIP
736         select HAVE_IDE
737         select TI_PRIV_EDMA
738         select USE_OF
739         select ZONE_DMA
740         help
741           Support for TI's DaVinci platform.
742
743 config ARCH_OMAP1
744         bool "TI OMAP1"
745         depends on MMU
746         select ARCH_HAS_HOLES_MEMORYMODEL
747         select ARCH_OMAP
748         select ARCH_REQUIRE_GPIOLIB
749         select CLKDEV_LOOKUP
750         select CLKSRC_MMIO
751         select GENERIC_CLOCKEVENTS
752         select GENERIC_IRQ_CHIP
753         select HAVE_IDE
754         select IRQ_DOMAIN
755         select MULTI_IRQ_HANDLER
756         select NEED_MACH_IO_H if PCCARD
757         select NEED_MACH_MEMORY_H
758         select SPARSE_IRQ
759         help
760           Support for older TI OMAP1 (omap7xx, omap15xx or omap16xx)
761
762 endchoice
763
764 menu "Multiple platform selection"
765         depends on ARCH_MULTIPLATFORM
766
767 comment "CPU Core family selection"
768
769 config ARCH_MULTI_V4
770         bool "ARMv4 based platforms (FA526)"
771         depends on !ARCH_MULTI_V6_V7
772         select ARCH_MULTI_V4_V5
773         select CPU_FA526
774
775 config ARCH_MULTI_V4T
776         bool "ARMv4T based platforms (ARM720T, ARM920T, ...)"
777         depends on !ARCH_MULTI_V6_V7
778         select ARCH_MULTI_V4_V5
779         select CPU_ARM920T if !(CPU_ARM7TDMI || CPU_ARM720T || \
780                 CPU_ARM740T || CPU_ARM9TDMI || CPU_ARM922T || \
781                 CPU_ARM925T || CPU_ARM940T)
782
783 config ARCH_MULTI_V5
784         bool "ARMv5 based platforms (ARM926T, XSCALE, PJ1, ...)"
785         depends on !ARCH_MULTI_V6_V7
786         select ARCH_MULTI_V4_V5
787         select CPU_ARM926T if !(CPU_ARM946E || CPU_ARM1020 || \
788                 CPU_ARM1020E || CPU_ARM1022 || CPU_ARM1026 || \
789                 CPU_XSCALE || CPU_XSC3 || CPU_MOHAWK || CPU_FEROCEON)
790
791 config ARCH_MULTI_V4_V5
792         bool
793
794 config ARCH_MULTI_V6
795         bool "ARMv6 based platforms (ARM11)"
796         select ARCH_MULTI_V6_V7
797         select CPU_V6K
798
799 config ARCH_MULTI_V7
800         bool "ARMv7 based platforms (Cortex-A, PJ4, Scorpion, Krait)"
801         default y
802         select ARCH_MULTI_V6_V7
803         select CPU_V7
804         select HAVE_SMP
805
806 config ARCH_MULTI_V6_V7
807         bool
808         select MIGHT_HAVE_CACHE_L2X0
809
810 config ARCH_MULTI_CPU_AUTO
811         def_bool !(ARCH_MULTI_V4 || ARCH_MULTI_V4T || ARCH_MULTI_V6_V7)
812         select ARCH_MULTI_V5
813
814 endmenu
815
816 config ARCH_VIRT
817         bool "Dummy Virtual Machine" if ARCH_MULTI_V7
818         select ARM_AMBA
819         select ARM_GIC
820         select ARM_PSCI
821         select HAVE_ARM_ARCH_TIMER
822
823 #
824 # This is sorted alphabetically by mach-* pathname.  However, plat-*
825 # Kconfigs may be included either alphabetically (according to the
826 # plat- suffix) or along side the corresponding mach-* source.
827 #
828 source "arch/arm/mach-mvebu/Kconfig"
829
830 source "arch/arm/mach-alpine/Kconfig"
831
832 source "arch/arm/mach-asm9260/Kconfig"
833
834 source "arch/arm/mach-at91/Kconfig"
835
836 source "arch/arm/mach-axxia/Kconfig"
837
838 source "arch/arm/mach-bcm/Kconfig"
839
840 source "arch/arm/mach-berlin/Kconfig"
841
842 source "arch/arm/mach-clps711x/Kconfig"
843
844 source "arch/arm/mach-cns3xxx/Kconfig"
845
846 source "arch/arm/mach-davinci/Kconfig"
847
848 source "arch/arm/mach-digicolor/Kconfig"
849
850 source "arch/arm/mach-dove/Kconfig"
851
852 source "arch/arm/mach-ep93xx/Kconfig"
853
854 source "arch/arm/mach-footbridge/Kconfig"
855
856 source "arch/arm/mach-gemini/Kconfig"
857
858 source "arch/arm/mach-highbank/Kconfig"
859
860 source "arch/arm/mach-hisi/Kconfig"
861
862 source "arch/arm/mach-integrator/Kconfig"
863
864 source "arch/arm/mach-iop32x/Kconfig"
865
866 source "arch/arm/mach-iop33x/Kconfig"
867
868 source "arch/arm/mach-iop13xx/Kconfig"
869
870 source "arch/arm/mach-ixp4xx/Kconfig"
871
872 source "arch/arm/mach-keystone/Kconfig"
873
874 source "arch/arm/mach-ks8695/Kconfig"
875
876 source "arch/arm/mach-meson/Kconfig"
877
878 source "arch/arm/mach-moxart/Kconfig"
879
880 source "arch/arm/mach-mv78xx0/Kconfig"
881
882 source "arch/arm/mach-imx/Kconfig"
883
884 source "arch/arm/mach-mediatek/Kconfig"
885
886 source "arch/arm/mach-mxs/Kconfig"
887
888 source "arch/arm/mach-netx/Kconfig"
889
890 source "arch/arm/mach-nomadik/Kconfig"
891
892 source "arch/arm/mach-nspire/Kconfig"
893
894 source "arch/arm/plat-omap/Kconfig"
895
896 source "arch/arm/mach-omap1/Kconfig"
897
898 source "arch/arm/mach-omap2/Kconfig"
899
900 source "arch/arm/mach-orion5x/Kconfig"
901
902 source "arch/arm/mach-picoxcell/Kconfig"
903
904 source "arch/arm/mach-pxa/Kconfig"
905 source "arch/arm/plat-pxa/Kconfig"
906
907 source "arch/arm/mach-mmp/Kconfig"
908
909 source "arch/arm/mach-qcom/Kconfig"
910
911 source "arch/arm/mach-realview/Kconfig"
912
913 source "arch/arm/mach-rockchip/Kconfig"
914
915 source "arch/arm/mach-sa1100/Kconfig"
916
917 source "arch/arm/mach-socfpga/Kconfig"
918
919 source "arch/arm/mach-spear/Kconfig"
920
921 source "arch/arm/mach-sti/Kconfig"
922
923 source "arch/arm/mach-s3c24xx/Kconfig"
924
925 source "arch/arm/mach-s3c64xx/Kconfig"
926
927 source "arch/arm/mach-s5pv210/Kconfig"
928
929 source "arch/arm/mach-exynos/Kconfig"
930 source "arch/arm/plat-samsung/Kconfig"
931
932 source "arch/arm/mach-shmobile/Kconfig"
933
934 source "arch/arm/mach-sunxi/Kconfig"
935
936 source "arch/arm/mach-prima2/Kconfig"
937
938 source "arch/arm/mach-tegra/Kconfig"
939
940 source "arch/arm/mach-u300/Kconfig"
941
942 source "arch/arm/mach-uniphier/Kconfig"
943
944 source "arch/arm/mach-ux500/Kconfig"
945
946 source "arch/arm/mach-versatile/Kconfig"
947
948 source "arch/arm/mach-vexpress/Kconfig"
949 source "arch/arm/plat-versatile/Kconfig"
950
951 source "arch/arm/mach-vt8500/Kconfig"
952
953 source "arch/arm/mach-w90x900/Kconfig"
954
955 source "arch/arm/mach-zx/Kconfig"
956
957 source "arch/arm/mach-zynq/Kconfig"
958
959 # ARMv7-M architecture
960 config ARCH_EFM32
961         bool "Energy Micro efm32"
962         depends on ARM_SINGLE_ARMV7M
963         select ARCH_REQUIRE_GPIOLIB
964         help
965           Support for Energy Micro's (now Silicon Labs) efm32 Giant Gecko
966           processors.
967
968 config ARCH_LPC18XX
969         bool "NXP LPC18xx/LPC43xx"
970         depends on ARM_SINGLE_ARMV7M
971         select ARCH_HAS_RESET_CONTROLLER
972         select ARM_AMBA
973         select CLKSRC_LPC32XX
974         select PINCTRL
975         help
976           Support for NXP's LPC18xx Cortex-M3 and LPC43xx Cortex-M4
977           high performance microcontrollers.
978
979 config ARCH_STM32
980         bool "STMicrolectronics STM32"
981         depends on ARM_SINGLE_ARMV7M
982         select ARCH_HAS_RESET_CONTROLLER
983         select ARMV7M_SYSTICK
984         select CLKSRC_STM32
985         select RESET_CONTROLLER
986         help
987           Support for STMicroelectronics STM32 processors.
988
989 # Definitions to make life easier
990 config ARCH_ACORN
991         bool
992
993 config PLAT_IOP
994         bool
995         select GENERIC_CLOCKEVENTS
996
997 config PLAT_ORION
998         bool
999         select CLKSRC_MMIO
1000         select COMMON_CLK
1001         select GENERIC_IRQ_CHIP
1002         select IRQ_DOMAIN
1003
1004 config PLAT_ORION_LEGACY
1005         bool
1006         select PLAT_ORION
1007
1008 config PLAT_PXA
1009         bool
1010
1011 config PLAT_VERSATILE
1012         bool
1013
1014 source "arch/arm/firmware/Kconfig"
1015
1016 source arch/arm/mm/Kconfig
1017
1018 config IWMMXT
1019         bool "Enable iWMMXt support"
1020         depends on CPU_XSCALE || CPU_XSC3 || CPU_MOHAWK || CPU_PJ4 || CPU_PJ4B
1021         default y if PXA27x || PXA3xx || ARCH_MMP || CPU_PJ4 || CPU_PJ4B
1022         help
1023           Enable support for iWMMXt context switching at run time if
1024           running on a CPU that supports it.
1025
1026 config MULTI_IRQ_HANDLER
1027         bool
1028         help
1029           Allow each machine to specify it's own IRQ handler at run time.
1030
1031 if !MMU
1032 source "arch/arm/Kconfig-nommu"
1033 endif
1034
1035 config PJ4B_ERRATA_4742
1036         bool "PJ4B Errata 4742: IDLE Wake Up Commands can Cause the CPU Core to Cease Operation"
1037         depends on CPU_PJ4B && MACH_ARMADA_370
1038         default y
1039         help
1040           When coming out of either a Wait for Interrupt (WFI) or a Wait for
1041           Event (WFE) IDLE states, a specific timing sensitivity exists between
1042           the retiring WFI/WFE instructions and the newly issued subsequent
1043           instructions.  This sensitivity can result in a CPU hang scenario.
1044           Workaround:
1045           The software must insert either a Data Synchronization Barrier (DSB)
1046           or Data Memory Barrier (DMB) command immediately after the WFI/WFE
1047           instruction
1048
1049 config ARM_ERRATA_326103
1050         bool "ARM errata: FSR write bit incorrect on a SWP to read-only memory"
1051         depends on CPU_V6
1052         help
1053           Executing a SWP instruction to read-only memory does not set bit 11
1054           of the FSR on the ARM 1136 prior to r1p0. This causes the kernel to
1055           treat the access as a read, preventing a COW from occurring and
1056           causing the faulting task to livelock.
1057
1058 config ARM_ERRATA_411920
1059         bool "ARM errata: Invalidation of the Instruction Cache operation can fail"
1060         depends on CPU_V6 || CPU_V6K
1061         help
1062           Invalidation of the Instruction Cache operation can
1063           fail. This erratum is present in 1136 (before r1p4), 1156 and 1176.
1064           It does not affect the MPCore. This option enables the ARM Ltd.
1065           recommended workaround.
1066
1067 config ARM_ERRATA_430973
1068         bool "ARM errata: Stale prediction on replaced interworking branch"
1069         depends on CPU_V7
1070         help
1071           This option enables the workaround for the 430973 Cortex-A8
1072           r1p* erratum. If a code sequence containing an ARM/Thumb
1073           interworking branch is replaced with another code sequence at the
1074           same virtual address, whether due to self-modifying code or virtual
1075           to physical address re-mapping, Cortex-A8 does not recover from the
1076           stale interworking branch prediction. This results in Cortex-A8
1077           executing the new code sequence in the incorrect ARM or Thumb state.
1078           The workaround enables the BTB/BTAC operations by setting ACTLR.IBE
1079           and also flushes the branch target cache at every context switch.
1080           Note that setting specific bits in the ACTLR register may not be
1081           available in non-secure mode.
1082
1083 config ARM_ERRATA_458693
1084         bool "ARM errata: Processor deadlock when a false hazard is created"
1085         depends on CPU_V7
1086         depends on !ARCH_MULTIPLATFORM
1087         help
1088           This option enables the workaround for the 458693 Cortex-A8 (r2p0)
1089           erratum. For very specific sequences of memory operations, it is
1090           possible for a hazard condition intended for a cache line to instead
1091           be incorrectly associated with a different cache line. This false
1092           hazard might then cause a processor deadlock. The workaround enables
1093           the L1 caching of the NEON accesses and disables the PLD instruction
1094           in the ACTLR register. Note that setting specific bits in the ACTLR
1095           register may not be available in non-secure mode.
1096
1097 config ARM_ERRATA_460075
1098         bool "ARM errata: Data written to the L2 cache can be overwritten with stale data"
1099         depends on CPU_V7
1100         depends on !ARCH_MULTIPLATFORM
1101         help
1102           This option enables the workaround for the 460075 Cortex-A8 (r2p0)
1103           erratum. Any asynchronous access to the L2 cache may encounter a
1104           situation in which recent store transactions to the L2 cache are lost
1105           and overwritten with stale memory contents from external memory. The
1106           workaround disables the write-allocate mode for the L2 cache via the
1107           ACTLR register. Note that setting specific bits in the ACTLR register
1108           may not be available in non-secure mode.
1109
1110 config ARM_ERRATA_742230
1111         bool "ARM errata: DMB operation may be faulty"
1112         depends on CPU_V7 && SMP
1113         depends on !ARCH_MULTIPLATFORM
1114         help
1115           This option enables the workaround for the 742230 Cortex-A9
1116           (r1p0..r2p2) erratum. Under rare circumstances, a DMB instruction
1117           between two write operations may not ensure the correct visibility
1118           ordering of the two writes. This workaround sets a specific bit in
1119           the diagnostic register of the Cortex-A9 which causes the DMB
1120           instruction to behave as a DSB, ensuring the correct behaviour of
1121           the two writes.
1122
1123 config ARM_ERRATA_742231
1124         bool "ARM errata: Incorrect hazard handling in the SCU may lead to data corruption"
1125         depends on CPU_V7 && SMP
1126         depends on !ARCH_MULTIPLATFORM
1127         help
1128           This option enables the workaround for the 742231 Cortex-A9
1129           (r2p0..r2p2) erratum. Under certain conditions, specific to the
1130           Cortex-A9 MPCore micro-architecture, two CPUs working in SMP mode,
1131           accessing some data located in the same cache line, may get corrupted
1132           data due to bad handling of the address hazard when the line gets
1133           replaced from one of the CPUs at the same time as another CPU is
1134           accessing it. This workaround sets specific bits in the diagnostic
1135           register of the Cortex-A9 which reduces the linefill issuing
1136           capabilities of the processor.
1137
1138 config ARM_ERRATA_643719
1139         bool "ARM errata: LoUIS bit field in CLIDR register is incorrect"
1140         depends on CPU_V7 && SMP
1141         default y
1142         help
1143           This option enables the workaround for the 643719 Cortex-A9 (prior to
1144           r1p0) erratum. On affected cores the LoUIS bit field of the CLIDR
1145           register returns zero when it should return one. The workaround
1146           corrects this value, ensuring cache maintenance operations which use
1147           it behave as intended and avoiding data corruption.
1148
1149 config ARM_ERRATA_720789
1150         bool "ARM errata: TLBIASIDIS and TLBIMVAIS operations can broadcast a faulty ASID"
1151         depends on CPU_V7
1152         help
1153           This option enables the workaround for the 720789 Cortex-A9 (prior to
1154           r2p0) erratum. A faulty ASID can be sent to the other CPUs for the
1155           broadcasted CP15 TLB maintenance operations TLBIASIDIS and TLBIMVAIS.
1156           As a consequence of this erratum, some TLB entries which should be
1157           invalidated are not, resulting in an incoherency in the system page
1158           tables. The workaround changes the TLB flushing routines to invalidate
1159           entries regardless of the ASID.
1160
1161 config ARM_ERRATA_743622
1162         bool "ARM errata: Faulty hazard checking in the Store Buffer may lead to data corruption"
1163         depends on CPU_V7
1164         depends on !ARCH_MULTIPLATFORM
1165         help
1166           This option enables the workaround for the 743622 Cortex-A9
1167           (r2p*) erratum. Under very rare conditions, a faulty
1168           optimisation in the Cortex-A9 Store Buffer may lead to data
1169           corruption. This workaround sets a specific bit in the diagnostic
1170           register of the Cortex-A9 which disables the Store Buffer
1171           optimisation, preventing the defect from occurring. This has no
1172           visible impact on the overall performance or power consumption of the
1173           processor.
1174
1175 config ARM_ERRATA_751472
1176         bool "ARM errata: Interrupted ICIALLUIS may prevent completion of broadcasted operation"
1177         depends on CPU_V7
1178         depends on !ARCH_MULTIPLATFORM
1179         help
1180           This option enables the workaround for the 751472 Cortex-A9 (prior
1181           to r3p0) erratum. An interrupted ICIALLUIS operation may prevent the
1182           completion of a following broadcasted operation if the second
1183           operation is received by a CPU before the ICIALLUIS has completed,
1184           potentially leading to corrupted entries in the cache or TLB.
1185
1186 config ARM_ERRATA_754322
1187         bool "ARM errata: possible faulty MMU translations following an ASID switch"
1188         depends on CPU_V7
1189         help
1190           This option enables the workaround for the 754322 Cortex-A9 (r2p*,
1191           r3p*) erratum. A speculative memory access may cause a page table walk
1192           which starts prior to an ASID switch but completes afterwards. This
1193           can populate the micro-TLB with a stale entry which may be hit with
1194           the new ASID. This workaround places two dsb instructions in the mm
1195           switching code so that no page table walks can cross the ASID switch.
1196
1197 config ARM_ERRATA_754327
1198         bool "ARM errata: no automatic Store Buffer drain"
1199         depends on CPU_V7 && SMP
1200         help
1201           This option enables the workaround for the 754327 Cortex-A9 (prior to
1202           r2p0) erratum. The Store Buffer does not have any automatic draining
1203           mechanism and therefore a livelock may occur if an external agent
1204           continuously polls a memory location waiting to observe an update.
1205           This workaround defines cpu_relax() as smp_mb(), preventing correctly
1206           written polling loops from denying visibility of updates to memory.
1207
1208 config ARM_ERRATA_364296
1209         bool "ARM errata: Possible cache data corruption with hit-under-miss enabled"
1210         depends on CPU_V6
1211         help
1212           This options enables the workaround for the 364296 ARM1136
1213           r0p2 erratum (possible cache data corruption with
1214           hit-under-miss enabled). It sets the undocumented bit 31 in
1215           the auxiliary control register and the FI bit in the control
1216           register, thus disabling hit-under-miss without putting the
1217           processor into full low interrupt latency mode. ARM11MPCore
1218           is not affected.
1219
1220 config ARM_ERRATA_764369
1221         bool "ARM errata: Data cache line maintenance operation by MVA may not succeed"
1222         depends on CPU_V7 && SMP
1223         help
1224           This option enables the workaround for erratum 764369
1225           affecting Cortex-A9 MPCore with two or more processors (all
1226           current revisions). Under certain timing circumstances, a data
1227           cache line maintenance operation by MVA targeting an Inner
1228           Shareable memory region may fail to proceed up to either the
1229           Point of Coherency or to the Point of Unification of the
1230           system. This workaround adds a DSB instruction before the
1231           relevant cache maintenance functions and sets a specific bit
1232           in the diagnostic control register of the SCU.
1233
1234 config ARM_ERRATA_775420
1235        bool "ARM errata: A data cache maintenance operation which aborts, might lead to deadlock"
1236        depends on CPU_V7
1237        help
1238          This option enables the workaround for the 775420 Cortex-A9 (r2p2,
1239          r2p6,r2p8,r2p10,r3p0) erratum. In case a date cache maintenance
1240          operation aborts with MMU exception, it might cause the processor
1241          to deadlock. This workaround puts DSB before executing ISB if
1242          an abort may occur on cache maintenance.
1243
1244 config ARM_ERRATA_798181
1245         bool "ARM errata: TLBI/DSB failure on Cortex-A15"
1246         depends on CPU_V7 && SMP
1247         help
1248           On Cortex-A15 (r0p0..r3p2) the TLBI*IS/DSB operations are not
1249           adequately shooting down all use of the old entries. This
1250           option enables the Linux kernel workaround for this erratum
1251           which sends an IPI to the CPUs that are running the same ASID
1252           as the one being invalidated.
1253
1254 config ARM_ERRATA_773022
1255         bool "ARM errata: incorrect instructions may be executed from loop buffer"
1256         depends on CPU_V7
1257         help
1258           This option enables the workaround for the 773022 Cortex-A15
1259           (up to r0p4) erratum. In certain rare sequences of code, the
1260           loop buffer may deliver incorrect instructions. This
1261           workaround disables the loop buffer to avoid the erratum.
1262
1263 endmenu
1264
1265 source "arch/arm/common/Kconfig"
1266
1267 menu "Bus support"
1268
1269 config ISA
1270         bool
1271         help
1272           Find out whether you have ISA slots on your motherboard.  ISA is the
1273           name of a bus system, i.e. the way the CPU talks to the other stuff
1274           inside your box.  Other bus systems are PCI, EISA, MicroChannel
1275           (MCA) or VESA.  ISA is an older system, now being displaced by PCI;
1276           newer boards don't support it.  If you have ISA, say Y, otherwise N.
1277
1278 # Select ISA DMA controller support
1279 config ISA_DMA
1280         bool
1281         select ISA_DMA_API
1282
1283 # Select ISA DMA interface
1284 config ISA_DMA_API
1285         bool
1286
1287 config PCI
1288         bool "PCI support" if MIGHT_HAVE_PCI
1289         help
1290           Find out whether you have a PCI motherboard. PCI is the name of a
1291           bus system, i.e. the way the CPU talks to the other stuff inside
1292           your box. Other bus systems are ISA, EISA, MicroChannel (MCA) or
1293           VESA. If you have PCI, say Y, otherwise N.
1294
1295 config PCI_DOMAINS
1296         bool
1297         depends on PCI
1298
1299 config PCI_DOMAINS_GENERIC
1300         def_bool PCI_DOMAINS
1301
1302 config PCI_NANOENGINE
1303         bool "BSE nanoEngine PCI support"
1304         depends on SA1100_NANOENGINE
1305         help
1306           Enable PCI on the BSE nanoEngine board.
1307
1308 config PCI_SYSCALL
1309         def_bool PCI
1310
1311 config PCI_HOST_ITE8152
1312         bool
1313         depends on PCI && MACH_ARMCORE
1314         default y
1315         select DMABOUNCE
1316
1317 source "drivers/pci/Kconfig"
1318 source "drivers/pci/pcie/Kconfig"
1319
1320 source "drivers/pcmcia/Kconfig"
1321
1322 endmenu
1323
1324 menu "Kernel Features"
1325
1326 config HAVE_SMP
1327         bool
1328         help
1329           This option should be selected by machines which have an SMP-
1330           capable CPU.
1331
1332           The only effect of this option is to make the SMP-related
1333           options available to the user for configuration.
1334
1335 config SMP
1336         bool "Symmetric Multi-Processing"
1337         depends on CPU_V6K || CPU_V7
1338         depends on GENERIC_CLOCKEVENTS
1339         depends on HAVE_SMP
1340         depends on MMU || ARM_MPU
1341         select IRQ_WORK
1342         help
1343           This enables support for systems with more than one CPU. If you have
1344           a system with only one CPU, say N. If you have a system with more
1345           than one CPU, say Y.
1346
1347           If you say N here, the kernel will run on uni- and multiprocessor
1348           machines, but will use only one CPU of a multiprocessor machine. If
1349           you say Y here, the kernel will run on many, but not all,
1350           uniprocessor machines. On a uniprocessor machine, the kernel
1351           will run faster if you say N here.
1352
1353           See also <file:Documentation/x86/i386/IO-APIC.txt>,
1354           <file:Documentation/nmi_watchdog.txt> and the SMP-HOWTO available at
1355           <http://tldp.org/HOWTO/SMP-HOWTO.html>.
1356
1357           If you don't know what to do here, say N.
1358
1359 config SMP_ON_UP
1360         bool "Allow booting SMP kernel on uniprocessor systems"
1361         depends on SMP && !XIP_KERNEL && MMU
1362         default y
1363         help
1364           SMP kernels contain instructions which fail on non-SMP processors.
1365           Enabling this option allows the kernel to modify itself to make
1366           these instructions safe.  Disabling it allows about 1K of space
1367           savings.
1368
1369           If you don't know what to do here, say Y.
1370
1371 config ARM_CPU_TOPOLOGY
1372         bool "Support cpu topology definition"
1373         depends on SMP && CPU_V7
1374         default y
1375         help
1376           Support ARM cpu topology definition. The MPIDR register defines
1377           affinity between processors which is then used to describe the cpu
1378           topology of an ARM System.
1379
1380 config SCHED_MC
1381         bool "Multi-core scheduler support"
1382         depends on ARM_CPU_TOPOLOGY
1383         help
1384           Multi-core scheduler support improves the CPU scheduler's decision
1385           making when dealing with multi-core CPU chips at a cost of slightly
1386           increased overhead in some places. If unsure say N here.
1387
1388 config SCHED_SMT
1389         bool "SMT scheduler support"
1390         depends on ARM_CPU_TOPOLOGY
1391         help
1392           Improves the CPU scheduler's decision making when dealing with
1393           MultiThreading at a cost of slightly increased overhead in some
1394           places. If unsure say N here.
1395
1396 config HAVE_ARM_SCU
1397         bool
1398         help
1399           This option enables support for the ARM system coherency unit
1400
1401 config HAVE_ARM_ARCH_TIMER
1402         bool "Architected timer support"
1403         depends on CPU_V7
1404         select ARM_ARCH_TIMER
1405         select GENERIC_CLOCKEVENTS
1406         help
1407           This option enables support for the ARM architected timer
1408
1409 config HAVE_ARM_TWD
1410         bool
1411         depends on SMP
1412         select CLKSRC_OF if OF
1413         help
1414           This options enables support for the ARM timer and watchdog unit
1415
1416 config MCPM
1417         bool "Multi-Cluster Power Management"
1418         depends on CPU_V7 && SMP
1419         help
1420           This option provides the common power management infrastructure
1421           for (multi-)cluster based systems, such as big.LITTLE based
1422           systems.
1423
1424 config MCPM_QUAD_CLUSTER
1425         bool
1426         depends on MCPM
1427         help
1428           To avoid wasting resources unnecessarily, MCPM only supports up
1429           to 2 clusters by default.
1430           Platforms with 3 or 4 clusters that use MCPM must select this
1431           option to allow the additional clusters to be managed.
1432
1433 config BIG_LITTLE
1434         bool "big.LITTLE support (Experimental)"
1435         depends on CPU_V7 && SMP
1436         select MCPM
1437         help
1438           This option enables support selections for the big.LITTLE
1439           system architecture.
1440
1441 config BL_SWITCHER
1442         bool "big.LITTLE switcher support"
1443         depends on BIG_LITTLE && MCPM && HOTPLUG_CPU
1444         select ARM_CPU_SUSPEND
1445         select CPU_PM
1446         help
1447           The big.LITTLE "switcher" provides the core functionality to
1448           transparently handle transition between a cluster of A15's
1449           and a cluster of A7's in a big.LITTLE system.
1450
1451 config BL_SWITCHER_DUMMY_IF
1452         tristate "Simple big.LITTLE switcher user interface"
1453         depends on BL_SWITCHER && DEBUG_KERNEL
1454         help
1455           This is a simple and dummy char dev interface to control
1456           the big.LITTLE switcher core code.  It is meant for
1457           debugging purposes only.
1458
1459 choice
1460         prompt "Memory split"
1461         depends on MMU
1462         default VMSPLIT_3G
1463         help
1464           Select the desired split between kernel and user memory.
1465
1466           If you are not absolutely sure what you are doing, leave this
1467           option alone!
1468
1469         config VMSPLIT_3G
1470                 bool "3G/1G user/kernel split"
1471         config VMSPLIT_2G
1472                 bool "2G/2G user/kernel split"
1473         config VMSPLIT_1G
1474                 bool "1G/3G user/kernel split"
1475 endchoice
1476
1477 config PAGE_OFFSET
1478         hex
1479         default PHYS_OFFSET if !MMU
1480         default 0x40000000 if VMSPLIT_1G
1481         default 0x80000000 if VMSPLIT_2G
1482         default 0xC0000000
1483
1484 config NR_CPUS
1485         int "Maximum number of CPUs (2-32)"
1486         range 2 32
1487         depends on SMP
1488         default "4"
1489
1490 config HOTPLUG_CPU
1491         bool "Support for hot-pluggable CPUs"
1492         depends on SMP
1493         help
1494           Say Y here to experiment with turning CPUs off and on.  CPUs
1495           can be controlled through /sys/devices/system/cpu.
1496
1497 config ARM_PSCI
1498         bool "Support for the ARM Power State Coordination Interface (PSCI)"
1499         depends on CPU_V7
1500         help
1501           Say Y here if you want Linux to communicate with system firmware
1502           implementing the PSCI specification for CPU-centric power
1503           management operations described in ARM document number ARM DEN
1504           0022A ("Power State Coordination Interface System Software on
1505           ARM processors").
1506
1507 # The GPIO number here must be sorted by descending number. In case of
1508 # a multiplatform kernel, we just want the highest value required by the
1509 # selected platforms.
1510 config ARCH_NR_GPIO
1511         int
1512         default 1024 if ARCH_BRCMSTB || ARCH_SHMOBILE || ARCH_TEGRA || \
1513                 ARCH_ZYNQ
1514         default 512 if ARCH_EXYNOS || ARCH_KEYSTONE || SOC_OMAP5 || \
1515                 SOC_DRA7XX || ARCH_S3C24XX || ARCH_S3C64XX || ARCH_S5PV210
1516         default 416 if ARCH_SUNXI
1517         default 392 if ARCH_U8500
1518         default 352 if ARCH_VT8500
1519         default 288 if ARCH_ROCKCHIP
1520         default 264 if MACH_H4700
1521         default 0
1522         help
1523           Maximum number of GPIOs in the system.
1524
1525           If unsure, leave the default value.
1526
1527 source kernel/Kconfig.preempt
1528
1529 config HZ_FIXED
1530         int
1531         default 200 if ARCH_EBSA110 || ARCH_S3C24XX || \
1532                 ARCH_S5PV210 || ARCH_EXYNOS4
1533         default 128 if SOC_AT91RM9200
1534         default SHMOBILE_TIMER_HZ if ARCH_SHMOBILE_LEGACY
1535         default 0
1536
1537 choice
1538         depends on HZ_FIXED = 0
1539         prompt "Timer frequency"
1540
1541 config HZ_100
1542         bool "100 Hz"
1543
1544 config HZ_200
1545         bool "200 Hz"
1546
1547 config HZ_250
1548         bool "250 Hz"
1549
1550 config HZ_300
1551         bool "300 Hz"
1552
1553 config HZ_500
1554         bool "500 Hz"
1555
1556 config HZ_1000
1557         bool "1000 Hz"
1558
1559 endchoice
1560
1561 config HZ
1562         int
1563         default HZ_FIXED if HZ_FIXED != 0
1564         default 100 if HZ_100
1565         default 200 if HZ_200
1566         default 250 if HZ_250
1567         default 300 if HZ_300
1568         default 500 if HZ_500
1569         default 1000
1570
1571 config SCHED_HRTICK
1572         def_bool HIGH_RES_TIMERS
1573
1574 config THUMB2_KERNEL
1575         bool "Compile the kernel in Thumb-2 mode" if !CPU_THUMBONLY
1576         depends on (CPU_V7 || CPU_V7M) && !CPU_V6 && !CPU_V6K
1577         default y if CPU_THUMBONLY
1578         select AEABI
1579         select ARM_ASM_UNIFIED
1580         select ARM_UNWIND
1581         help
1582           By enabling this option, the kernel will be compiled in
1583           Thumb-2 mode. A compiler/assembler that understand the unified
1584           ARM-Thumb syntax is needed.
1585
1586           If unsure, say N.
1587
1588 config THUMB2_AVOID_R_ARM_THM_JUMP11
1589         bool "Work around buggy Thumb-2 short branch relocations in gas"
1590         depends on THUMB2_KERNEL && MODULES
1591         default y
1592         help
1593           Various binutils versions can resolve Thumb-2 branches to
1594           locally-defined, preemptible global symbols as short-range "b.n"
1595           branch instructions.
1596
1597           This is a problem, because there's no guarantee the final
1598           destination of the symbol, or any candidate locations for a
1599           trampoline, are within range of the branch.  For this reason, the
1600           kernel does not support fixing up the R_ARM_THM_JUMP11 (102)
1601           relocation in modules at all, and it makes little sense to add
1602           support.
1603
1604           The symptom is that the kernel fails with an "unsupported
1605           relocation" error when loading some modules.
1606
1607           Until fixed tools are available, passing
1608           -fno-optimize-sibling-calls to gcc should prevent gcc generating
1609           code which hits this problem, at the cost of a bit of extra runtime
1610           stack usage in some cases.
1611
1612           The problem is described in more detail at:
1613               https://bugs.launchpad.net/binutils-linaro/+bug/725126
1614
1615           Only Thumb-2 kernels are affected.
1616
1617           Unless you are sure your tools don't have this problem, say Y.
1618
1619 config ARM_ASM_UNIFIED
1620         bool
1621
1622 config AEABI
1623         bool "Use the ARM EABI to compile the kernel"
1624         help
1625           This option allows for the kernel to be compiled using the latest
1626           ARM ABI (aka EABI).  This is only useful if you are using a user
1627           space environment that is also compiled with EABI.
1628
1629           Since there are major incompatibilities between the legacy ABI and
1630           EABI, especially with regard to structure member alignment, this
1631           option also changes the kernel syscall calling convention to
1632           disambiguate both ABIs and allow for backward compatibility support
1633           (selected with CONFIG_OABI_COMPAT).
1634
1635           To use this you need GCC version 4.0.0 or later.
1636
1637 config OABI_COMPAT
1638         bool "Allow old ABI binaries to run with this kernel (EXPERIMENTAL)"
1639         depends on AEABI && !THUMB2_KERNEL
1640         help
1641           This option preserves the old syscall interface along with the
1642           new (ARM EABI) one. It also provides a compatibility layer to
1643           intercept syscalls that have structure arguments which layout
1644           in memory differs between the legacy ABI and the new ARM EABI
1645           (only for non "thumb" binaries). This option adds a tiny
1646           overhead to all syscalls and produces a slightly larger kernel.
1647
1648           The seccomp filter system will not be available when this is
1649           selected, since there is no way yet to sensibly distinguish
1650           between calling conventions during filtering.
1651
1652           If you know you'll be using only pure EABI user space then you
1653           can say N here. If this option is not selected and you attempt
1654           to execute a legacy ABI binary then the result will be
1655           UNPREDICTABLE (in fact it can be predicted that it won't work
1656           at all). If in doubt say N.
1657
1658 config ARCH_HAS_HOLES_MEMORYMODEL
1659         bool
1660
1661 config ARCH_SPARSEMEM_ENABLE
1662         bool
1663
1664 config ARCH_SPARSEMEM_DEFAULT
1665         def_bool ARCH_SPARSEMEM_ENABLE
1666
1667 config ARCH_SELECT_MEMORY_MODEL
1668         def_bool ARCH_SPARSEMEM_ENABLE
1669
1670 config HAVE_ARCH_PFN_VALID
1671         def_bool ARCH_HAS_HOLES_MEMORYMODEL || !SPARSEMEM
1672
1673 config HAVE_GENERIC_RCU_GUP
1674         def_bool y
1675         depends on ARM_LPAE
1676
1677 config HIGHMEM
1678         bool "High Memory Support"
1679         depends on MMU
1680         help
1681           The address space of ARM processors is only 4 Gigabytes large
1682           and it has to accommodate user address space, kernel address
1683           space as well as some memory mapped IO. That means that, if you
1684           have a large amount of physical memory and/or IO, not all of the
1685           memory can be "permanently mapped" by the kernel. The physical
1686           memory that is not permanently mapped is called "high memory".
1687
1688           Depending on the selected kernel/user memory split, minimum
1689           vmalloc space and actual amount of RAM, you may not need this
1690           option which should result in a slightly faster kernel.
1691
1692           If unsure, say n.
1693
1694 config HIGHPTE
1695         bool "Allocate 2nd-level pagetables from highmem"
1696         depends on HIGHMEM
1697         help
1698           The VM uses one page of physical memory for each page table.
1699           For systems with a lot of processes, this can use a lot of
1700           precious low memory, eventually leading to low memory being
1701           consumed by page tables.  Setting this option will allow
1702           user-space 2nd level page tables to reside in high memory.
1703
1704 config HW_PERF_EVENTS
1705         bool "Enable hardware performance counter support for perf events"
1706         depends on PERF_EVENTS
1707         default y
1708         help
1709           Enable hardware performance counter support for perf events. If
1710           disabled, perf events will use software events only.
1711
1712 config SYS_SUPPORTS_HUGETLBFS
1713        def_bool y
1714        depends on ARM_LPAE
1715
1716 config HAVE_ARCH_TRANSPARENT_HUGEPAGE
1717        def_bool y
1718        depends on ARM_LPAE
1719
1720 config ARCH_WANT_GENERAL_HUGETLB
1721         def_bool y
1722
1723 config ARM_MODULE_PLTS
1724         bool "Use PLTs to allow module memory to spill over into vmalloc area"
1725         depends on MODULES
1726         help
1727           Allocate PLTs when loading modules so that jumps and calls whose
1728           targets are too far away for their relative offsets to be encoded
1729           in the instructions themselves can be bounced via veneers in the
1730           module's PLT. This allows modules to be allocated in the generic
1731           vmalloc area after the dedicated module memory area has been
1732           exhausted. The modules will use slightly more memory, but after
1733           rounding up to page size, the actual memory footprint is usually
1734           the same.
1735
1736           Say y if you are getting out of memory errors while loading modules
1737
1738 source "mm/Kconfig"
1739
1740 config FORCE_MAX_ZONEORDER
1741         int "Maximum zone order" if ARCH_SHMOBILE_LEGACY
1742         range 11 64 if ARCH_SHMOBILE_LEGACY
1743         default "12" if SOC_AM33XX
1744         default "9" if SA1111 || ARCH_EFM32
1745         default "11"
1746         help
1747           The kernel memory allocator divides physically contiguous memory
1748           blocks into "zones", where each zone is a power of two number of
1749           pages.  This option selects the largest power of two that the kernel
1750           keeps in the memory allocator.  If you need to allocate very large
1751           blocks of physically contiguous memory, then you may need to
1752           increase this value.
1753
1754           This config option is actually maximum order plus one. For example,
1755           a value of 11 means that the largest free memory block is 2^10 pages.
1756
1757 config ALIGNMENT_TRAP
1758         bool
1759         depends on CPU_CP15_MMU
1760         default y if !ARCH_EBSA110
1761         select HAVE_PROC_CPU if PROC_FS
1762         help
1763           ARM processors cannot fetch/store information which is not
1764           naturally aligned on the bus, i.e., a 4 byte fetch must start at an
1765           address divisible by 4. On 32-bit ARM processors, these non-aligned
1766           fetch/store instructions will be emulated in software if you say
1767           here, which has a severe performance impact. This is necessary for
1768           correct operation of some network protocols. With an IP-only
1769           configuration it is safe to say N, otherwise say Y.
1770
1771 config UACCESS_WITH_MEMCPY
1772         bool "Use kernel mem{cpy,set}() for {copy_to,clear}_user()"
1773         depends on MMU
1774         default y if CPU_FEROCEON
1775         help
1776           Implement faster copy_to_user and clear_user methods for CPU
1777           cores where a 8-word STM instruction give significantly higher
1778           memory write throughput than a sequence of individual 32bit stores.
1779
1780           A possible side effect is a slight increase in scheduling latency
1781           between threads sharing the same address space if they invoke
1782           such copy operations with large buffers.
1783
1784           However, if the CPU data cache is using a write-allocate mode,
1785           this option is unlikely to provide any performance gain.
1786
1787 config SECCOMP
1788         bool
1789         prompt "Enable seccomp to safely compute untrusted bytecode"
1790         ---help---
1791           This kernel feature is useful for number crunching applications
1792           that may need to compute untrusted bytecode during their
1793           execution. By using pipes or other transports made available to
1794           the process as file descriptors supporting the read/write
1795           syscalls, it's possible to isolate those applications in
1796           their own address space using seccomp. Once seccomp is
1797           enabled via prctl(PR_SET_SECCOMP), it cannot be disabled
1798           and the task is only allowed to execute a few safe syscalls
1799           defined by each seccomp mode.
1800
1801 config SWIOTLB
1802         def_bool y
1803
1804 config IOMMU_HELPER
1805         def_bool SWIOTLB
1806
1807 config XEN_DOM0
1808         def_bool y
1809         depends on XEN
1810
1811 config XEN
1812         bool "Xen guest support on ARM"
1813         depends on ARM && AEABI && OF
1814         depends on CPU_V7 && !CPU_V6
1815         depends on !GENERIC_ATOMIC64
1816         depends on MMU
1817         select ARCH_DMA_ADDR_T_64BIT
1818         select ARM_PSCI
1819         select SWIOTLB_XEN
1820         help
1821           Say Y if you want to run Linux in a Virtual Machine on Xen on ARM.
1822
1823 endmenu
1824
1825 menu "Boot options"
1826
1827 config USE_OF
1828         bool "Flattened Device Tree support"
1829         select IRQ_DOMAIN
1830         select OF
1831         select OF_EARLY_FLATTREE
1832         select OF_RESERVED_MEM
1833         help
1834           Include support for flattened device tree machine descriptions.
1835
1836 config ATAGS
1837         bool "Support for the traditional ATAGS boot data passing" if USE_OF
1838         default y
1839         help
1840           This is the traditional way of passing data to the kernel at boot
1841           time. If you are solely relying on the flattened device tree (or
1842           the ARM_ATAG_DTB_COMPAT option) then you may unselect this option
1843           to remove ATAGS support from your kernel binary.  If unsure,
1844           leave this to y.
1845
1846 config DEPRECATED_PARAM_STRUCT
1847         bool "Provide old way to pass kernel parameters"
1848         depends on ATAGS
1849         help
1850           This was deprecated in 2001 and announced to live on for 5 years.
1851           Some old boot loaders still use this way.
1852
1853 # Compressed boot loader in ROM.  Yes, we really want to ask about
1854 # TEXT and BSS so we preserve their values in the config files.
1855 config ZBOOT_ROM_TEXT
1856         hex "Compressed ROM boot loader base address"
1857         default "0"
1858         help
1859           The physical address at which the ROM-able zImage is to be
1860           placed in the target.  Platforms which normally make use of
1861           ROM-able zImage formats normally set this to a suitable
1862           value in their defconfig file.
1863
1864           If ZBOOT_ROM is not enabled, this has no effect.
1865
1866 config ZBOOT_ROM_BSS
1867         hex "Compressed ROM boot loader BSS address"
1868         default "0"
1869         help
1870           The base address of an area of read/write memory in the target
1871           for the ROM-able zImage which must be available while the
1872           decompressor is running. It must be large enough to hold the
1873           entire decompressed kernel plus an additional 128 KiB.
1874           Platforms which normally make use of ROM-able zImage formats
1875           normally set this to a suitable value in their defconfig file.
1876
1877           If ZBOOT_ROM is not enabled, this has no effect.
1878
1879 config ZBOOT_ROM
1880         bool "Compressed boot loader in ROM/flash"
1881         depends on ZBOOT_ROM_TEXT != ZBOOT_ROM_BSS
1882         depends on !ARM_APPENDED_DTB && !XIP_KERNEL && !AUTO_ZRELADDR
1883         help
1884           Say Y here if you intend to execute your compressed kernel image
1885           (zImage) directly from ROM or flash.  If unsure, say N.
1886
1887 config ARM_APPENDED_DTB
1888         bool "Use appended device tree blob to zImage (EXPERIMENTAL)"
1889         depends on OF
1890         help
1891           With this option, the boot code will look for a device tree binary
1892           (DTB) appended to zImage
1893           (e.g. cat zImage <filename>.dtb > zImage_w_dtb).
1894
1895           This is meant as a backward compatibility convenience for those
1896           systems with a bootloader that can't be upgraded to accommodate
1897           the documented boot protocol using a device tree.
1898
1899           Beware that there is very little in terms of protection against
1900           this option being confused by leftover garbage in memory that might
1901           look like a DTB header after a reboot if no actual DTB is appended
1902           to zImage.  Do not leave this option active in a production kernel
1903           if you don't intend to always append a DTB.  Proper passing of the
1904           location into r2 of a bootloader provided DTB is always preferable
1905           to this option.
1906
1907 config ARM_ATAG_DTB_COMPAT
1908         bool "Supplement the appended DTB with traditional ATAG information"
1909         depends on ARM_APPENDED_DTB
1910         help
1911           Some old bootloaders can't be updated to a DTB capable one, yet
1912           they provide ATAGs with memory configuration, the ramdisk address,
1913           the kernel cmdline string, etc.  Such information is dynamically
1914           provided by the bootloader and can't always be stored in a static
1915           DTB.  To allow a device tree enabled kernel to be used with such
1916           bootloaders, this option allows zImage to extract the information
1917           from the ATAG list and store it at run time into the appended DTB.
1918
1919 choice
1920         prompt "Kernel command line type" if ARM_ATAG_DTB_COMPAT
1921         default ARM_ATAG_DTB_COMPAT_CMDLINE_FROM_BOOTLOADER
1922
1923 config ARM_ATAG_DTB_COMPAT_CMDLINE_FROM_BOOTLOADER
1924         bool "Use bootloader kernel arguments if available"
1925         help
1926           Uses the command-line options passed by the boot loader instead of
1927           the device tree bootargs property. If the boot loader doesn't provide
1928           any, the device tree bootargs property will be used.
1929
1930 config ARM_ATAG_DTB_COMPAT_CMDLINE_EXTEND
1931         bool "Extend with bootloader kernel arguments"
1932         help
1933           The command-line arguments provided by the boot loader will be
1934           appended to the the device tree bootargs property.
1935
1936 endchoice
1937
1938 config CMDLINE
1939         string "Default kernel command string"
1940         default ""
1941         help
1942           On some architectures (EBSA110 and CATS), there is currently no way
1943           for the boot loader to pass arguments to the kernel. For these
1944           architectures, you should supply some command-line options at build
1945           time by entering them here. As a minimum, you should specify the
1946           memory size and the root device (e.g., mem=64M root=/dev/nfs).
1947
1948 choice
1949         prompt "Kernel command line type" if CMDLINE != ""
1950         default CMDLINE_FROM_BOOTLOADER
1951         depends on ATAGS
1952
1953 config CMDLINE_FROM_BOOTLOADER
1954         bool "Use bootloader kernel arguments if available"
1955         help
1956           Uses the command-line options passed by the boot loader. If
1957           the boot loader doesn't provide any, the default kernel command
1958           string provided in CMDLINE will be used.
1959
1960 config CMDLINE_EXTEND
1961         bool "Extend bootloader kernel arguments"
1962         help
1963           The command-line arguments provided by the boot loader will be
1964           appended to the default kernel command string.
1965
1966 config CMDLINE_FORCE
1967         bool "Always use the default kernel command string"
1968         help
1969           Always use the default kernel command string, even if the boot
1970           loader passes other arguments to the kernel.
1971           This is useful if you cannot or don't want to change the
1972           command-line options your boot loader passes to the kernel.
1973 endchoice
1974
1975 config XIP_KERNEL
1976         bool "Kernel Execute-In-Place from ROM"
1977         depends on !ARM_LPAE && !ARCH_MULTIPLATFORM
1978         help
1979           Execute-In-Place allows the kernel to run from non-volatile storage
1980           directly addressable by the CPU, such as NOR flash. This saves RAM
1981           space since the text section of the kernel is not loaded from flash
1982           to RAM.  Read-write sections, such as the data section and stack,
1983           are still copied to RAM.  The XIP kernel is not compressed since
1984           it has to run directly from flash, so it will take more space to
1985           store it.  The flash address used to link the kernel object files,
1986           and for storing it, is configuration dependent. Therefore, if you
1987           say Y here, you must know the proper physical address where to
1988           store the kernel image depending on your own flash memory usage.
1989
1990           Also note that the make target becomes "make xipImage" rather than
1991           "make zImage" or "make Image".  The final kernel binary to put in
1992           ROM memory will be arch/arm/boot/xipImage.
1993
1994           If unsure, say N.
1995
1996 config XIP_PHYS_ADDR
1997         hex "XIP Kernel Physical Location"
1998         depends on XIP_KERNEL
1999         default "0x00080000"
2000         help
2001           This is the physical address in your flash memory the kernel will
2002           be linked for and stored to.  This address is dependent on your
2003           own flash usage.
2004
2005 config KEXEC
2006         bool "Kexec system call (EXPERIMENTAL)"
2007         depends on (!SMP || PM_SLEEP_SMP)
2008         depends on !CPU_V7M
2009         help
2010           kexec is a system call that implements the ability to shutdown your
2011           current kernel, and to start another kernel.  It is like a reboot
2012           but it is independent of the system firmware.   And like a reboot
2013           you can start any kernel with it, not just Linux.
2014
2015           It is an ongoing process to be certain the hardware in a machine
2016           is properly shutdown, so do not be surprised if this code does not
2017           initially work for you.
2018
2019 config ATAGS_PROC
2020         bool "Export atags in procfs"
2021         depends on ATAGS && KEXEC
2022         default y
2023         help
2024           Should the atags used to boot the kernel be exported in an "atags"
2025           file in procfs. Useful with kexec.
2026
2027 config CRASH_DUMP
2028         bool "Build kdump crash kernel (EXPERIMENTAL)"
2029         help
2030           Generate crash dump after being started by kexec. This should
2031           be normally only set in special crash dump kernels which are
2032           loaded in the main kernel with kexec-tools into a specially
2033           reserved region and then later executed after a crash by
2034           kdump/kexec. The crash dump kernel must be compiled to a
2035           memory address not used by the main kernel
2036
2037           For more details see Documentation/kdump/kdump.txt
2038
2039 config AUTO_ZRELADDR
2040         bool "Auto calculation of the decompressed kernel image address"
2041         help
2042           ZRELADDR is the physical address where the decompressed kernel
2043           image will be placed. If AUTO_ZRELADDR is selected, the address
2044           will be determined at run-time by masking the current IP with
2045           0xf8000000. This assumes the zImage being placed in the first 128MB
2046           from start of memory.
2047
2048 endmenu
2049
2050 menu "CPU Power Management"
2051
2052 source "drivers/cpufreq/Kconfig"
2053
2054 source "drivers/cpuidle/Kconfig"
2055
2056 endmenu
2057
2058 menu "Floating point emulation"
2059
2060 comment "At least one emulation must be selected"
2061
2062 config FPE_NWFPE
2063         bool "NWFPE math emulation"
2064         depends on (!AEABI || OABI_COMPAT) && !THUMB2_KERNEL
2065         ---help---
2066           Say Y to include the NWFPE floating point emulator in the kernel.
2067           This is necessary to run most binaries. Linux does not currently
2068           support floating point hardware so you need to say Y here even if
2069           your machine has an FPA or floating point co-processor podule.
2070
2071           You may say N here if you are going to load the Acorn FPEmulator
2072           early in the bootup.
2073
2074 config FPE_NWFPE_XP
2075         bool "Support extended precision"
2076         depends on FPE_NWFPE
2077         help
2078           Say Y to include 80-bit support in the kernel floating-point
2079           emulator.  Otherwise, only 32 and 64-bit support is compiled in.
2080           Note that gcc does not generate 80-bit operations by default,
2081           so in most cases this option only enlarges the size of the
2082           floating point emulator without any good reason.
2083
2084           You almost surely want to say N here.
2085
2086 config FPE_FASTFPE
2087         bool "FastFPE math emulation (EXPERIMENTAL)"
2088         depends on (!AEABI || OABI_COMPAT) && !CPU_32v3
2089         ---help---
2090           Say Y here to include the FAST floating point emulator in the kernel.
2091           This is an experimental much faster emulator which now also has full
2092           precision for the mantissa.  It does not support any exceptions.
2093           It is very simple, and approximately 3-6 times faster than NWFPE.
2094
2095           It should be sufficient for most programs.  It may be not suitable
2096           for scientific calculations, but you have to check this for yourself.
2097           If you do not feel you need a faster FP emulation you should better
2098           choose NWFPE.
2099
2100 config VFP
2101         bool "VFP-format floating point maths"
2102         depends on CPU_V6 || CPU_V6K || CPU_ARM926T || CPU_V7 || CPU_FEROCEON
2103         help
2104           Say Y to include VFP support code in the kernel. This is needed
2105           if your hardware includes a VFP unit.
2106
2107           Please see <file:Documentation/arm/VFP/release-notes.txt> for
2108           release notes and additional status information.
2109
2110           Say N if your target does not have VFP hardware.
2111
2112 config VFPv3
2113         bool
2114         depends on VFP
2115         default y if CPU_V7
2116
2117 config NEON
2118         bool "Advanced SIMD (NEON) Extension support"
2119         depends on VFPv3 && CPU_V7
2120         help
2121           Say Y to include support code for NEON, the ARMv7 Advanced SIMD
2122           Extension.
2123
2124 config KERNEL_MODE_NEON
2125         bool "Support for NEON in kernel mode"
2126         depends on NEON && AEABI
2127         help
2128           Say Y to include support for NEON in kernel mode.
2129
2130 endmenu
2131
2132 menu "Userspace binary formats"
2133
2134 source "fs/Kconfig.binfmt"
2135
2136 endmenu
2137
2138 menu "Power management options"
2139
2140 source "kernel/power/Kconfig"
2141
2142 config ARCH_SUSPEND_POSSIBLE
2143         depends on CPU_ARM920T || CPU_ARM926T || CPU_FEROCEON || CPU_SA1100 || \
2144                 CPU_V6 || CPU_V6K || CPU_V7 || CPU_V7M || CPU_XSC3 || CPU_XSCALE || CPU_MOHAWK
2145         def_bool y
2146
2147 config ARM_CPU_SUSPEND
2148         def_bool PM_SLEEP
2149
2150 config ARCH_HIBERNATION_POSSIBLE
2151         bool
2152         depends on MMU
2153         default y if ARCH_SUSPEND_POSSIBLE
2154
2155 endmenu
2156
2157 source "net/Kconfig"
2158
2159 source "drivers/Kconfig"
2160
2161 source "drivers/firmware/Kconfig"
2162
2163 source "fs/Kconfig"
2164
2165 source "arch/arm/Kconfig.debug"
2166
2167 source "security/Kconfig"
2168
2169 source "crypto/Kconfig"
2170 if CRYPTO
2171 source "arch/arm/crypto/Kconfig"
2172 endif
2173
2174 source "lib/Kconfig"
2175
2176 source "arch/arm/kvm/Kconfig"