]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - arch/arm/Kconfig
Merge remote-tracking branch 'arm-soc/for-next'
[karo-tx-linux.git] / arch / arm / Kconfig
1 config ARM
2         bool
3         default y
4         select HAVE_AOUT
5         select HAVE_DMA_API_DEBUG
6         select HAVE_IDE
7         select HAVE_MEMBLOCK
8         select RTC_LIB
9         select SYS_SUPPORTS_APM_EMULATION
10         select GENERIC_ATOMIC64 if (CPU_V6 || !CPU_32v6K || !AEABI)
11         select HAVE_OPROFILE if (HAVE_PERF_EVENTS)
12         select HAVE_ARCH_KGDB
13         select HAVE_KPROBES if !XIP_KERNEL
14         select HAVE_KRETPROBES if (HAVE_KPROBES)
15         select HAVE_FUNCTION_TRACER if (!XIP_KERNEL)
16         select HAVE_FTRACE_MCOUNT_RECORD if (!XIP_KERNEL)
17         select HAVE_DYNAMIC_FTRACE if (!XIP_KERNEL)
18         select HAVE_FUNCTION_GRAPH_TRACER if (!THUMB2_KERNEL)
19         select HAVE_GENERIC_DMA_COHERENT
20         select HAVE_KERNEL_GZIP
21         select HAVE_KERNEL_LZO
22         select HAVE_KERNEL_LZMA
23         select HAVE_IRQ_WORK
24         select HAVE_PERF_EVENTS
25         select PERF_USE_VMALLOC
26         select HAVE_REGS_AND_STACK_ACCESS_API
27         select HAVE_HW_BREAKPOINT if (PERF_EVENTS && (CPU_V6 || CPU_V6K || CPU_V7))
28         select HAVE_C_RECORDMCOUNT
29         select HAVE_GENERIC_HARDIRQS
30         select HAVE_SPARSE_IRQ
31         select GENERIC_IRQ_SHOW
32         help
33           The ARM series is a line of low-power-consumption RISC chip designs
34           licensed by ARM Ltd and targeted at embedded applications and
35           handhelds such as the Compaq IPAQ.  ARM-based PCs are no longer
36           manufactured, but legacy ARM-based PC hardware remains popular in
37           Europe.  There is an ARM Linux project with a web page at
38           <http://www.arm.linux.org.uk/>.
39
40 config ARM_HAS_SG_CHAIN
41         bool
42
43 config HAVE_PWM
44         bool
45
46 config MIGHT_HAVE_PCI
47         bool
48
49 config SYS_SUPPORTS_APM_EMULATION
50         bool
51
52 config HAVE_SCHED_CLOCK
53         bool
54
55 config GENERIC_GPIO
56         bool
57
58 config ARCH_USES_GETTIMEOFFSET
59         bool
60         default n
61
62 config GENERIC_CLOCKEVENTS
63         bool
64
65 config GENERIC_CLOCKEVENTS_BROADCAST
66         bool
67         depends on GENERIC_CLOCKEVENTS
68         default y if SMP
69
70 config KTIME_SCALAR
71         bool
72         default y
73
74 config HAVE_TCM
75         bool
76         select GENERIC_ALLOCATOR
77
78 config HAVE_PROC_CPU
79         bool
80
81 config NO_IOPORT
82         bool
83
84 config EISA
85         bool
86         ---help---
87           The Extended Industry Standard Architecture (EISA) bus was
88           developed as an open alternative to the IBM MicroChannel bus.
89
90           The EISA bus provided some of the features of the IBM MicroChannel
91           bus while maintaining backward compatibility with cards made for
92           the older ISA bus.  The EISA bus saw limited use between 1988 and
93           1995 when it was made obsolete by the PCI bus.
94
95           Say Y here if you are building a kernel for an EISA-based machine.
96
97           Otherwise, say N.
98
99 config SBUS
100         bool
101
102 config MCA
103         bool
104         help
105           MicroChannel Architecture is found in some IBM PS/2 machines and
106           laptops.  It is a bus system similar to PCI or ISA. See
107           <file:Documentation/mca.txt> (and especially the web page given
108           there) before attempting to build an MCA bus kernel.
109
110 config STACKTRACE_SUPPORT
111         bool
112         default y
113
114 config HAVE_LATENCYTOP_SUPPORT
115         bool
116         depends on !SMP
117         default y
118
119 config LOCKDEP_SUPPORT
120         bool
121         default y
122
123 config TRACE_IRQFLAGS_SUPPORT
124         bool
125         default y
126
127 config HARDIRQS_SW_RESEND
128         bool
129         default y
130
131 config GENERIC_IRQ_PROBE
132         bool
133         default y
134
135 config GENERIC_LOCKBREAK
136         bool
137         default y
138         depends on SMP && PREEMPT
139
140 config RWSEM_GENERIC_SPINLOCK
141         bool
142         default y
143
144 config RWSEM_XCHGADD_ALGORITHM
145         bool
146
147 config ARCH_HAS_ILOG2_U32
148         bool
149
150 config ARCH_HAS_ILOG2_U64
151         bool
152
153 config ARCH_HAS_CPUFREQ
154         bool
155         help
156           Internal node to signify that the ARCH has CPUFREQ support
157           and that the relevant menu configurations are displayed for
158           it.
159
160 config ARCH_HAS_CPU_IDLE_WAIT
161        def_bool y
162
163 config GENERIC_HWEIGHT
164         bool
165         default y
166
167 config GENERIC_CALIBRATE_DELAY
168         bool
169         default y
170
171 config ARCH_MAY_HAVE_PC_FDC
172         bool
173
174 config ZONE_DMA
175         bool
176
177 config NEED_DMA_MAP_STATE
178        def_bool y
179
180 config GENERIC_ISA_DMA
181         bool
182
183 config FIQ
184         bool
185
186 config ARCH_MTD_XIP
187         bool
188
189 config VECTORS_BASE
190         hex
191         default 0xffff0000 if MMU || CPU_HIGH_VECTOR
192         default DRAM_BASE if REMAP_VECTORS_TO_RAM
193         default 0x00000000
194         help
195           The base address of exception vectors.
196
197 config ARM_PATCH_PHYS_VIRT
198         bool "Patch physical to virtual translations at runtime" if EMBEDDED
199         default y
200         depends on !XIP_KERNEL && MMU
201         depends on !ARCH_REALVIEW || !SPARSEMEM
202         help
203           Patch phys-to-virt and virt-to-phys translation functions at
204           boot and module load time according to the position of the
205           kernel in system memory.
206
207           This can only be used with non-XIP MMU kernels where the base
208           of physical memory is at a 16MB boundary.
209
210           Only disable this option if you know that you do not require
211           this feature (eg, building a kernel for a single machine) and
212           you need to shrink the kernel to the minimal size.
213
214
215 source "init/Kconfig"
216
217 source "kernel/Kconfig.freezer"
218
219 menu "System Type"
220
221 config MMU
222         bool "MMU-based Paged Memory Management Support"
223         default y
224         help
225           Select if you want MMU-based virtualised addressing space
226           support by paged memory management. If unsure, say 'Y'.
227
228 #
229 # The "ARM system type" choice list is ordered alphabetically by option
230 # text.  Please add new entries in the option alphabetic order.
231 #
232 choice
233         prompt "ARM system type"
234         default ARCH_VERSATILE
235
236 config ARCH_INTEGRATOR
237         bool "ARM Ltd. Integrator family"
238         select ARM_AMBA
239         select ARCH_HAS_CPUFREQ
240         select CLKDEV_LOOKUP
241         select HAVE_MACH_CLKDEV
242         select ICST
243         select GENERIC_CLOCKEVENTS
244         select PLAT_VERSATILE
245         select PLAT_VERSATILE_FPGA_IRQ
246         help
247           Support for ARM's Integrator platform.
248
249 config ARCH_REALVIEW
250         bool "ARM Ltd. RealView family"
251         select ARM_AMBA
252         select CLKDEV_LOOKUP
253         select HAVE_MACH_CLKDEV
254         select ICST
255         select GENERIC_CLOCKEVENTS
256         select ARCH_WANT_OPTIONAL_GPIOLIB
257         select PLAT_VERSATILE
258         select PLAT_VERSATILE_CLCD
259         select ARM_TIMER_SP804
260         select GPIO_PL061 if GPIOLIB
261         help
262           This enables support for ARM Ltd RealView boards.
263
264 config ARCH_VERSATILE
265         bool "ARM Ltd. Versatile family"
266         select ARM_AMBA
267         select ARM_VIC
268         select CLKDEV_LOOKUP
269         select HAVE_MACH_CLKDEV
270         select ICST
271         select GENERIC_CLOCKEVENTS
272         select ARCH_WANT_OPTIONAL_GPIOLIB
273         select PLAT_VERSATILE
274         select PLAT_VERSATILE_CLCD
275         select PLAT_VERSATILE_FPGA_IRQ
276         select ARM_TIMER_SP804
277         help
278           This enables support for ARM Ltd Versatile board.
279
280 config ARCH_VEXPRESS
281         bool "ARM Ltd. Versatile Express family"
282         select ARCH_WANT_OPTIONAL_GPIOLIB
283         select ARM_AMBA
284         select ARM_TIMER_SP804
285         select CLKDEV_LOOKUP
286         select HAVE_MACH_CLKDEV
287         select GENERIC_CLOCKEVENTS
288         select HAVE_CLK
289         select HAVE_PATA_PLATFORM
290         select ICST
291         select PLAT_VERSATILE
292         select PLAT_VERSATILE_CLCD
293         help
294           This enables support for the ARM Ltd Versatile Express boards.
295
296 config ARCH_AT91
297         bool "Atmel AT91"
298         select ARCH_REQUIRE_GPIOLIB
299         select HAVE_CLK
300         select CLKDEV_LOOKUP
301         help
302           This enables support for systems based on the Atmel AT91RM9200,
303           AT91SAM9 and AT91CAP9 processors.
304
305 config ARCH_BCMRING
306         bool "Broadcom BCMRING"
307         depends on MMU
308         select CPU_V6
309         select ARM_AMBA
310         select ARM_TIMER_SP804
311         select CLKDEV_LOOKUP
312         select GENERIC_CLOCKEVENTS
313         select ARCH_WANT_OPTIONAL_GPIOLIB
314         help
315           Support for Broadcom's BCMRing platform.
316
317 config ARCH_CLPS711X
318         bool "Cirrus Logic CLPS711x/EP721x-based"
319         select CPU_ARM720T
320         select ARCH_USES_GETTIMEOFFSET
321         help
322           Support for Cirrus Logic 711x/721x based boards.
323
324 config ARCH_CNS3XXX
325         bool "Cavium Networks CNS3XXX family"
326         select CPU_V6K
327         select GENERIC_CLOCKEVENTS
328         select ARM_GIC
329         select MIGHT_HAVE_PCI
330         select PCI_DOMAINS if PCI
331         help
332           Support for Cavium Networks CNS3XXX platform.
333
334 config ARCH_GEMINI
335         bool "Cortina Systems Gemini"
336         select CPU_FA526
337         select ARCH_REQUIRE_GPIOLIB
338         select ARCH_USES_GETTIMEOFFSET
339         help
340           Support for the Cortina Systems Gemini family SoCs
341
342 config ARCH_PRIMA2
343         bool "CSR SiRFSoC PRIMA2 ARM Cortex A9 Platform"
344         select CPU_V7
345         select GENERIC_TIME
346         select NO_IOPORT
347         select GENERIC_CLOCKEVENTS
348         select CLKDEV_LOOKUP
349         select GENERIC_IRQ_CHIP
350         select USE_OF
351         select ZONE_DMA
352         help
353           Support for CSR SiRFSoC ARM Cortex A9 Platform
354
355 config ARCH_EBSA110
356         bool "EBSA-110"
357         select CPU_SA110
358         select ISA
359         select NO_IOPORT
360         select ARCH_USES_GETTIMEOFFSET
361         help
362           This is an evaluation board for the StrongARM processor available
363           from Digital. It has limited hardware on-board, including an
364           Ethernet interface, two PCMCIA sockets, two serial ports and a
365           parallel port.
366
367 config ARCH_EP93XX
368         bool "EP93xx-based"
369         select CPU_ARM920T
370         select ARM_AMBA
371         select ARM_VIC
372         select CLKDEV_LOOKUP
373         select ARCH_REQUIRE_GPIOLIB
374         select ARCH_HAS_HOLES_MEMORYMODEL
375         select ARCH_USES_GETTIMEOFFSET
376         help
377           This enables support for the Cirrus EP93xx series of CPUs.
378
379 config ARCH_FOOTBRIDGE
380         bool "FootBridge"
381         select CPU_SA110
382         select FOOTBRIDGE
383         select GENERIC_CLOCKEVENTS
384         help
385           Support for systems based on the DC21285 companion chip
386           ("FootBridge"), such as the Simtec CATS and the Rebel NetWinder.
387
388 config ARCH_MXC
389         bool "Freescale MXC/iMX-based"
390         select GENERIC_CLOCKEVENTS
391         select ARCH_REQUIRE_GPIOLIB
392         select CLKDEV_LOOKUP
393         select CLKSRC_MMIO
394         select GENERIC_IRQ_CHIP
395         select HAVE_SCHED_CLOCK
396         help
397           Support for Freescale MXC/iMX-based family of processors
398
399 config ARCH_MXS
400         bool "Freescale MXS-based"
401         select GENERIC_CLOCKEVENTS
402         select ARCH_REQUIRE_GPIOLIB
403         select CLKDEV_LOOKUP
404         select CLKSRC_MMIO
405         help
406           Support for Freescale MXS-based family of processors
407
408 config ARCH_NETX
409         bool "Hilscher NetX based"
410         select CLKSRC_MMIO
411         select CPU_ARM926T
412         select ARM_VIC
413         select GENERIC_CLOCKEVENTS
414         help
415           This enables support for systems based on the Hilscher NetX Soc
416
417 config ARCH_H720X
418         bool "Hynix HMS720x-based"
419         select CPU_ARM720T
420         select ISA_DMA_API
421         select ARCH_USES_GETTIMEOFFSET
422         help
423           This enables support for systems based on the Hynix HMS720x
424
425 config ARCH_IOP13XX
426         bool "IOP13xx-based"
427         depends on MMU
428         select CPU_XSC3
429         select PLAT_IOP
430         select PCI
431         select ARCH_SUPPORTS_MSI
432         select VMSPLIT_1G
433         help
434           Support for Intel's IOP13XX (XScale) family of processors.
435
436 config ARCH_IOP32X
437         bool "IOP32x-based"
438         depends on MMU
439         select CPU_XSCALE
440         select PLAT_IOP
441         select PCI
442         select ARCH_REQUIRE_GPIOLIB
443         help
444           Support for Intel's 80219 and IOP32X (XScale) family of
445           processors.
446
447 config ARCH_IOP33X
448         bool "IOP33x-based"
449         depends on MMU
450         select CPU_XSCALE
451         select PLAT_IOP
452         select PCI
453         select ARCH_REQUIRE_GPIOLIB
454         help
455           Support for Intel's IOP33X (XScale) family of processors.
456
457 config ARCH_IXP23XX
458         bool "IXP23XX-based"
459         depends on MMU
460         select CPU_XSC3
461         select PCI
462         select ARCH_USES_GETTIMEOFFSET
463         help
464           Support for Intel's IXP23xx (XScale) family of processors.
465
466 config ARCH_IXP2000
467         bool "IXP2400/2800-based"
468         depends on MMU
469         select CPU_XSCALE
470         select PCI
471         select ARCH_USES_GETTIMEOFFSET
472         help
473           Support for Intel's IXP2400/2800 (XScale) family of processors.
474
475 config ARCH_IXP4XX
476         bool "IXP4xx-based"
477         depends on MMU
478         select CLKSRC_MMIO
479         select CPU_XSCALE
480         select GENERIC_GPIO
481         select GENERIC_CLOCKEVENTS
482         select HAVE_SCHED_CLOCK
483         select MIGHT_HAVE_PCI
484         select DMABOUNCE if PCI
485         help
486           Support for Intel's IXP4XX (XScale) family of processors.
487
488 config ARCH_DOVE
489         bool "Marvell Dove"
490         select CPU_V7
491         select PCI
492         select ARCH_REQUIRE_GPIOLIB
493         select GENERIC_CLOCKEVENTS
494         select PLAT_ORION
495         help
496           Support for the Marvell Dove SoC 88AP510
497
498 config ARCH_KIRKWOOD
499         bool "Marvell Kirkwood"
500         select CPU_FEROCEON
501         select PCI
502         select ARCH_REQUIRE_GPIOLIB
503         select GENERIC_CLOCKEVENTS
504         select PLAT_ORION
505         help
506           Support for the following Marvell Kirkwood series SoCs:
507           88F6180, 88F6192 and 88F6281.
508
509 config ARCH_LPC32XX
510         bool "NXP LPC32XX"
511         select CLKSRC_MMIO
512         select CPU_ARM926T
513         select ARCH_REQUIRE_GPIOLIB
514         select HAVE_IDE
515         select ARM_AMBA
516         select USB_ARCH_HAS_OHCI
517         select CLKDEV_LOOKUP
518         select GENERIC_TIME
519         select GENERIC_CLOCKEVENTS
520         help
521           Support for the NXP LPC32XX family of processors
522
523 config ARCH_MV78XX0
524         bool "Marvell MV78xx0"
525         select CPU_FEROCEON
526         select PCI
527         select ARCH_REQUIRE_GPIOLIB
528         select GENERIC_CLOCKEVENTS
529         select PLAT_ORION
530         help
531           Support for the following Marvell MV78xx0 series SoCs:
532           MV781x0, MV782x0.
533
534 config ARCH_ORION5X
535         bool "Marvell Orion"
536         depends on MMU
537         select CPU_FEROCEON
538         select PCI
539         select ARCH_REQUIRE_GPIOLIB
540         select GENERIC_CLOCKEVENTS
541         select PLAT_ORION
542         help
543           Support for the following Marvell Orion 5x series SoCs:
544           Orion-1 (5181), Orion-VoIP (5181L), Orion-NAS (5182),
545           Orion-2 (5281), Orion-1-90 (6183).
546
547 config ARCH_MMP
548         bool "Marvell PXA168/910/MMP2"
549         depends on MMU
550         select ARCH_REQUIRE_GPIOLIB
551         select CLKDEV_LOOKUP
552         select GENERIC_CLOCKEVENTS
553         select HAVE_SCHED_CLOCK
554         select TICK_ONESHOT
555         select PLAT_PXA
556         select SPARSE_IRQ
557         help
558           Support for Marvell's PXA168/PXA910(MMP) and MMP2 processor line.
559
560 config ARCH_KS8695
561         bool "Micrel/Kendin KS8695"
562         select CPU_ARM922T
563         select ARCH_REQUIRE_GPIOLIB
564         select ARCH_USES_GETTIMEOFFSET
565         help
566           Support for Micrel/Kendin KS8695 "Centaur" (ARM922T) based
567           System-on-Chip devices.
568
569 config ARCH_W90X900
570         bool "Nuvoton W90X900 CPU"
571         select CPU_ARM926T
572         select ARCH_REQUIRE_GPIOLIB
573         select CLKDEV_LOOKUP
574         select CLKSRC_MMIO
575         select GENERIC_CLOCKEVENTS
576         help
577           Support for Nuvoton (Winbond logic dept.) ARM9 processor,
578           At present, the w90x900 has been renamed nuc900, regarding
579           the ARM series product line, you can login the following
580           link address to know more.
581
582           <http://www.nuvoton.com/hq/enu/ProductAndSales/ProductLines/
583                 ConsumerElectronicsIC/ARMMicrocontroller/ARMMicrocontroller>
584
585 config ARCH_NUC93X
586         bool "Nuvoton NUC93X CPU"
587         select CPU_ARM926T
588         select CLKDEV_LOOKUP
589         help
590           Support for Nuvoton (Winbond logic dept.) NUC93X MCU,The NUC93X is a
591           low-power and high performance MPEG-4/JPEG multimedia controller chip.
592
593 config ARCH_TEGRA
594         bool "NVIDIA Tegra"
595         select CLKDEV_LOOKUP
596         select CLKSRC_MMIO
597         select GENERIC_TIME
598         select GENERIC_CLOCKEVENTS
599         select GENERIC_GPIO
600         select HAVE_CLK
601         select HAVE_SCHED_CLOCK
602         select ARCH_HAS_CPUFREQ
603         help
604           This enables support for NVIDIA Tegra based systems (Tegra APX,
605           Tegra 6xx and Tegra 2 series).
606
607 config ARCH_PNX4008
608         bool "Philips Nexperia PNX4008 Mobile"
609         select CPU_ARM926T
610         select CLKDEV_LOOKUP
611         select ARCH_USES_GETTIMEOFFSET
612         help
613           This enables support for Philips PNX4008 mobile platform.
614
615 config ARCH_PXA
616         bool "PXA2xx/PXA3xx-based"
617         depends on MMU
618         select ARCH_MTD_XIP
619         select ARCH_HAS_CPUFREQ
620         select CLKDEV_LOOKUP
621         select CLKSRC_MMIO
622         select ARCH_REQUIRE_GPIOLIB
623         select GENERIC_CLOCKEVENTS
624         select HAVE_SCHED_CLOCK
625         select TICK_ONESHOT
626         select PLAT_PXA
627         select SPARSE_IRQ
628         select AUTO_ZRELADDR
629         select MULTI_IRQ_HANDLER
630         help
631           Support for Intel/Marvell's PXA2xx/PXA3xx processor line.
632
633 config ARCH_MSM
634         bool "Qualcomm MSM"
635         select HAVE_CLK
636         select GENERIC_CLOCKEVENTS
637         select ARCH_REQUIRE_GPIOLIB
638         select CLKDEV_LOOKUP
639         help
640           Support for Qualcomm MSM/QSD based systems.  This runs on the
641           apps processor of the MSM/QSD and depends on a shared memory
642           interface to the modem processor which runs the baseband
643           stack and controls some vital subsystems
644           (clock and power control, etc).
645
646 config ARCH_SHMOBILE
647         bool "Renesas SH-Mobile / R-Mobile"
648         select HAVE_CLK
649         select CLKDEV_LOOKUP
650         select HAVE_MACH_CLKDEV
651         select GENERIC_CLOCKEVENTS
652         select NO_IOPORT
653         select SPARSE_IRQ
654         select MULTI_IRQ_HANDLER
655         select PM_GENERIC_DOMAINS if PM
656         help
657           Support for Renesas's SH-Mobile and R-Mobile ARM platforms.
658
659 config ARCH_RPC
660         bool "RiscPC"
661         select ARCH_ACORN
662         select FIQ
663         select TIMER_ACORN
664         select ARCH_MAY_HAVE_PC_FDC
665         select HAVE_PATA_PLATFORM
666         select ISA_DMA_API
667         select NO_IOPORT
668         select ARCH_SPARSEMEM_ENABLE
669         select ARCH_USES_GETTIMEOFFSET
670         help
671           On the Acorn Risc-PC, Linux can support the internal IDE disk and
672           CD-ROM interface, serial and parallel port, and the floppy drive.
673
674 config ARCH_SA1100
675         bool "SA1100-based"
676         select CLKSRC_MMIO
677         select CPU_SA1100
678         select ISA
679         select ARCH_SPARSEMEM_ENABLE
680         select ARCH_MTD_XIP
681         select ARCH_HAS_CPUFREQ
682         select CPU_FREQ
683         select GENERIC_CLOCKEVENTS
684         select HAVE_CLK
685         select HAVE_SCHED_CLOCK
686         select TICK_ONESHOT
687         select ARCH_REQUIRE_GPIOLIB
688         help
689           Support for StrongARM 11x0 based boards.
690
691 config ARCH_S3C2410
692         bool "Samsung S3C2410, S3C2412, S3C2413, S3C2416, S3C2440, S3C2442, S3C2443, S3C2450"
693         select GENERIC_GPIO
694         select ARCH_HAS_CPUFREQ
695         select HAVE_CLK
696         select CLKDEV_LOOKUP
697         select ARCH_USES_GETTIMEOFFSET
698         select HAVE_S3C2410_I2C if I2C
699         help
700           Samsung S3C2410X CPU based systems, such as the Simtec Electronics
701           BAST (<http://www.simtec.co.uk/products/EB110ITX/>), the IPAQ 1940 or
702           the Samsung SMDK2410 development board (and derivatives).
703
704           Note, the S3C2416 and the S3C2450 are so close that they even share
705           the same SoC ID code. This means that there is no separate machine
706           directory (no arch/arm/mach-s3c2450) as the S3C2416 was first.
707
708 config ARCH_S3C64XX
709         bool "Samsung S3C64XX"
710         select PLAT_SAMSUNG
711         select CPU_V6
712         select ARM_VIC
713         select HAVE_CLK
714         select CLKDEV_LOOKUP
715         select NO_IOPORT
716         select ARCH_USES_GETTIMEOFFSET
717         select ARCH_HAS_CPUFREQ
718         select ARCH_REQUIRE_GPIOLIB
719         select SAMSUNG_CLKSRC
720         select SAMSUNG_IRQ_VIC_TIMER
721         select SAMSUNG_IRQ_UART
722         select S3C_GPIO_TRACK
723         select S3C_GPIO_PULL_UPDOWN
724         select S3C_GPIO_CFG_S3C24XX
725         select S3C_GPIO_CFG_S3C64XX
726         select S3C_DEV_NAND
727         select USB_ARCH_HAS_OHCI
728         select SAMSUNG_GPIOLIB_4BIT
729         select HAVE_S3C2410_I2C if I2C
730         select HAVE_S3C2410_WATCHDOG if WATCHDOG
731         help
732           Samsung S3C64XX series based systems
733
734 config ARCH_S5P64X0
735         bool "Samsung S5P6440 S5P6450"
736         select CPU_V6
737         select GENERIC_GPIO
738         select HAVE_CLK
739         select CLKDEV_LOOKUP
740         select CLKSRC_MMIO
741         select HAVE_S3C2410_WATCHDOG if WATCHDOG
742         select GENERIC_CLOCKEVENTS
743         select HAVE_SCHED_CLOCK
744         select HAVE_S3C2410_I2C if I2C
745         select HAVE_S3C_RTC if RTC_CLASS
746         help
747           Samsung S5P64X0 CPU based systems, such as the Samsung SMDK6440,
748           SMDK6450.
749
750 config ARCH_S5PC100
751         bool "Samsung S5PC100"
752         select GENERIC_GPIO
753         select HAVE_CLK
754         select CLKDEV_LOOKUP
755         select CPU_V7
756         select ARM_L1_CACHE_SHIFT_6
757         select ARCH_USES_GETTIMEOFFSET
758         select HAVE_S3C2410_I2C if I2C
759         select HAVE_S3C_RTC if RTC_CLASS
760         select HAVE_S3C2410_WATCHDOG if WATCHDOG
761         help
762           Samsung S5PC100 series based systems
763
764 config ARCH_S5PV210
765         bool "Samsung S5PV210/S5PC110"
766         select CPU_V7
767         select ARCH_SPARSEMEM_ENABLE
768         select ARCH_HAS_HOLES_MEMORYMODEL
769         select GENERIC_GPIO
770         select HAVE_CLK
771         select CLKDEV_LOOKUP
772         select CLKSRC_MMIO
773         select ARM_L1_CACHE_SHIFT_6
774         select ARCH_HAS_CPUFREQ
775         select GENERIC_CLOCKEVENTS
776         select HAVE_SCHED_CLOCK
777         select HAVE_S3C2410_I2C if I2C
778         select HAVE_S3C_RTC if RTC_CLASS
779         select HAVE_S3C2410_WATCHDOG if WATCHDOG
780         help
781           Samsung S5PV210/S5PC110 series based systems
782
783 config ARCH_EXYNOS4
784         bool "Samsung EXYNOS4"
785         select CPU_V7
786         select ARCH_SPARSEMEM_ENABLE
787         select ARCH_HAS_HOLES_MEMORYMODEL
788         select GENERIC_GPIO
789         select HAVE_CLK
790         select CLKDEV_LOOKUP
791         select ARCH_HAS_CPUFREQ
792         select GENERIC_CLOCKEVENTS
793         select HAVE_S3C_RTC if RTC_CLASS
794         select HAVE_S3C2410_I2C if I2C
795         select HAVE_S3C2410_WATCHDOG if WATCHDOG
796         help
797           Samsung EXYNOS4 series based systems
798
799 config ARCH_SHARK
800         bool "Shark"
801         select CPU_SA110
802         select ISA
803         select ISA_DMA
804         select ZONE_DMA
805         select PCI
806         select ARCH_USES_GETTIMEOFFSET
807         help
808           Support for the StrongARM based Digital DNARD machine, also known
809           as "Shark" (<http://www.shark-linux.de/shark.html>).
810
811 config ARCH_TCC_926
812         bool "Telechips TCC ARM926-based systems"
813         select CLKSRC_MMIO
814         select CPU_ARM926T
815         select HAVE_CLK
816         select CLKDEV_LOOKUP
817         select GENERIC_CLOCKEVENTS
818         help
819           Support for Telechips TCC ARM926-based systems.
820
821 config ARCH_U300
822         bool "ST-Ericsson U300 Series"
823         depends on MMU
824         select CLKSRC_MMIO
825         select CPU_ARM926T
826         select HAVE_SCHED_CLOCK
827         select HAVE_TCM
828         select ARM_AMBA
829         select ARM_PATCH_PHYS_VIRT
830         select ARM_VIC
831         select GENERIC_CLOCKEVENTS
832         select CLKDEV_LOOKUP
833         select HAVE_MACH_CLKDEV
834         select GENERIC_GPIO
835         help
836           Support for ST-Ericsson U300 series mobile platforms.
837
838 config ARCH_U8500
839         bool "ST-Ericsson U8500 Series"
840         select CPU_V7
841         select ARM_AMBA
842         select GENERIC_CLOCKEVENTS
843         select CLKDEV_LOOKUP
844         select ARCH_REQUIRE_GPIOLIB
845         select ARCH_HAS_CPUFREQ
846         help
847           Support for ST-Ericsson's Ux500 architecture
848
849 config ARCH_NOMADIK
850         bool "STMicroelectronics Nomadik"
851         select ARM_AMBA
852         select ARM_VIC
853         select CPU_ARM926T
854         select CLKDEV_LOOKUP
855         select GENERIC_CLOCKEVENTS
856         select ARCH_REQUIRE_GPIOLIB
857         help
858           Support for the Nomadik platform by ST-Ericsson
859
860 config ARCH_DAVINCI
861         bool "TI DaVinci"
862         select GENERIC_CLOCKEVENTS
863         select ARCH_REQUIRE_GPIOLIB
864         select ZONE_DMA
865         select HAVE_IDE
866         select CLKDEV_LOOKUP
867         select GENERIC_ALLOCATOR
868         select GENERIC_IRQ_CHIP
869         select ARCH_HAS_HOLES_MEMORYMODEL
870         help
871           Support for TI's DaVinci platform.
872
873 config ARCH_OMAP
874         bool "TI OMAP"
875         select HAVE_CLK
876         select ARCH_REQUIRE_GPIOLIB
877         select ARCH_HAS_CPUFREQ
878         select CLKSRC_MMIO
879         select GENERIC_CLOCKEVENTS
880         select HAVE_SCHED_CLOCK
881         select ARCH_HAS_HOLES_MEMORYMODEL
882         help
883           Support for TI's OMAP platform (OMAP1/2/3/4).
884
885 config PLAT_SPEAR
886         bool "ST SPEAr"
887         select ARM_AMBA
888         select ARCH_REQUIRE_GPIOLIB
889         select CLKDEV_LOOKUP
890         select CLKSRC_MMIO
891         select GENERIC_CLOCKEVENTS
892         select HAVE_CLK
893         help
894           Support for ST's SPEAr platform (SPEAr3xx, SPEAr6xx and SPEAr13xx).
895
896 config ARCH_VT8500
897         bool "VIA/WonderMedia 85xx"
898         select CPU_ARM926T
899         select GENERIC_GPIO
900         select ARCH_HAS_CPUFREQ
901         select GENERIC_CLOCKEVENTS
902         select ARCH_REQUIRE_GPIOLIB
903         select HAVE_PWM
904         help
905           Support for VIA/WonderMedia VT8500/WM85xx System-on-Chip.
906
907 config ARCH_ZYNQ
908         bool "Xilinx Zynq ARM Cortex A9 Platform"
909         select CPU_V7
910         select GENERIC_TIME
911         select GENERIC_CLOCKEVENTS
912         select CLKDEV_LOOKUP
913         select ARM_GIC
914         select ARM_AMBA
915         select ICST
916         select USE_OF
917         help
918           Support for Xilinx Zynq ARM Cortex A9 Platform
919 endchoice
920
921 #
922 # This is sorted alphabetically by mach-* pathname.  However, plat-*
923 # Kconfigs may be included either alphabetically (according to the
924 # plat- suffix) or along side the corresponding mach-* source.
925 #
926 source "arch/arm/mach-at91/Kconfig"
927
928 source "arch/arm/mach-bcmring/Kconfig"
929
930 source "arch/arm/mach-clps711x/Kconfig"
931
932 source "arch/arm/mach-cns3xxx/Kconfig"
933
934 source "arch/arm/mach-davinci/Kconfig"
935
936 source "arch/arm/mach-dove/Kconfig"
937
938 source "arch/arm/mach-ep93xx/Kconfig"
939
940 source "arch/arm/mach-footbridge/Kconfig"
941
942 source "arch/arm/mach-gemini/Kconfig"
943
944 source "arch/arm/mach-h720x/Kconfig"
945
946 source "arch/arm/mach-integrator/Kconfig"
947
948 source "arch/arm/mach-iop32x/Kconfig"
949
950 source "arch/arm/mach-iop33x/Kconfig"
951
952 source "arch/arm/mach-iop13xx/Kconfig"
953
954 source "arch/arm/mach-ixp4xx/Kconfig"
955
956 source "arch/arm/mach-ixp2000/Kconfig"
957
958 source "arch/arm/mach-ixp23xx/Kconfig"
959
960 source "arch/arm/mach-kirkwood/Kconfig"
961
962 source "arch/arm/mach-ks8695/Kconfig"
963
964 source "arch/arm/mach-lpc32xx/Kconfig"
965
966 source "arch/arm/mach-msm/Kconfig"
967
968 source "arch/arm/mach-mv78xx0/Kconfig"
969
970 source "arch/arm/plat-mxc/Kconfig"
971
972 source "arch/arm/mach-mxs/Kconfig"
973
974 source "arch/arm/mach-netx/Kconfig"
975
976 source "arch/arm/mach-nomadik/Kconfig"
977 source "arch/arm/plat-nomadik/Kconfig"
978
979 source "arch/arm/mach-nuc93x/Kconfig"
980
981 source "arch/arm/plat-omap/Kconfig"
982
983 source "arch/arm/mach-omap1/Kconfig"
984
985 source "arch/arm/mach-omap2/Kconfig"
986
987 source "arch/arm/mach-orion5x/Kconfig"
988
989 source "arch/arm/mach-pxa/Kconfig"
990 source "arch/arm/plat-pxa/Kconfig"
991
992 source "arch/arm/mach-mmp/Kconfig"
993
994 source "arch/arm/mach-realview/Kconfig"
995
996 source "arch/arm/mach-sa1100/Kconfig"
997
998 source "arch/arm/plat-samsung/Kconfig"
999 source "arch/arm/plat-s3c24xx/Kconfig"
1000 source "arch/arm/plat-s5p/Kconfig"
1001
1002 source "arch/arm/plat-spear/Kconfig"
1003
1004 source "arch/arm/plat-tcc/Kconfig"
1005
1006 if ARCH_S3C2410
1007 source "arch/arm/mach-s3c2410/Kconfig"
1008 source "arch/arm/mach-s3c2412/Kconfig"
1009 source "arch/arm/mach-s3c2416/Kconfig"
1010 source "arch/arm/mach-s3c2440/Kconfig"
1011 source "arch/arm/mach-s3c2443/Kconfig"
1012 endif
1013
1014 if ARCH_S3C64XX
1015 source "arch/arm/mach-s3c64xx/Kconfig"
1016 endif
1017
1018 source "arch/arm/mach-s5p64x0/Kconfig"
1019
1020 source "arch/arm/mach-s5pc100/Kconfig"
1021
1022 source "arch/arm/mach-s5pv210/Kconfig"
1023
1024 source "arch/arm/mach-exynos4/Kconfig"
1025
1026 source "arch/arm/mach-shmobile/Kconfig"
1027
1028 source "arch/arm/mach-tegra/Kconfig"
1029
1030 source "arch/arm/mach-u300/Kconfig"
1031
1032 source "arch/arm/mach-ux500/Kconfig"
1033
1034 source "arch/arm/mach-versatile/Kconfig"
1035
1036 source "arch/arm/mach-vexpress/Kconfig"
1037 source "arch/arm/plat-versatile/Kconfig"
1038
1039 source "arch/arm/mach-vt8500/Kconfig"
1040
1041 source "arch/arm/mach-w90x900/Kconfig"
1042
1043 # Definitions to make life easier
1044 config ARCH_ACORN
1045         bool
1046
1047 config PLAT_IOP
1048         bool
1049         select GENERIC_CLOCKEVENTS
1050         select HAVE_SCHED_CLOCK
1051
1052 config PLAT_ORION
1053         bool
1054         select CLKSRC_MMIO
1055         select GENERIC_IRQ_CHIP
1056         select HAVE_SCHED_CLOCK
1057
1058 config PLAT_PXA
1059         bool
1060
1061 config PLAT_VERSATILE
1062         bool
1063
1064 config ARM_TIMER_SP804
1065         bool
1066         select CLKSRC_MMIO
1067
1068 source arch/arm/mm/Kconfig
1069
1070 config IWMMXT
1071         bool "Enable iWMMXt support"
1072         depends on CPU_XSCALE || CPU_XSC3 || CPU_MOHAWK || CPU_PJ4
1073         default y if PXA27x || PXA3xx || PXA95x || ARCH_MMP
1074         help
1075           Enable support for iWMMXt context switching at run time if
1076           running on a CPU that supports it.
1077
1078 #  bool 'Use XScale PMU as timer source' CONFIG_XSCALE_PMU_TIMER
1079 config XSCALE_PMU
1080         bool
1081         depends on CPU_XSCALE && !XSCALE_PMU_TIMER
1082         default y
1083
1084 config CPU_HAS_PMU
1085         depends on (CPU_V6 || CPU_V6K || CPU_V7 || XSCALE_PMU) && \
1086                    (!ARCH_OMAP3 || OMAP3_EMU)
1087         default y
1088         bool
1089
1090 config MULTI_IRQ_HANDLER
1091         bool
1092         help
1093           Allow each machine to specify it's own IRQ handler at run time.
1094
1095 if !MMU
1096 source "arch/arm/Kconfig-nommu"
1097 endif
1098
1099 config ARM_ERRATA_411920
1100         bool "ARM errata: Invalidation of the Instruction Cache operation can fail"
1101         depends on CPU_V6 || CPU_V6K
1102         help
1103           Invalidation of the Instruction Cache operation can
1104           fail. This erratum is present in 1136 (before r1p4), 1156 and 1176.
1105           It does not affect the MPCore. This option enables the ARM Ltd.
1106           recommended workaround.
1107
1108 config ARM_ERRATA_430973
1109         bool "ARM errata: Stale prediction on replaced interworking branch"
1110         depends on CPU_V7
1111         help
1112           This option enables the workaround for the 430973 Cortex-A8
1113           (r1p0..r1p2) erratum. If a code sequence containing an ARM/Thumb
1114           interworking branch is replaced with another code sequence at the
1115           same virtual address, whether due to self-modifying code or virtual
1116           to physical address re-mapping, Cortex-A8 does not recover from the
1117           stale interworking branch prediction. This results in Cortex-A8
1118           executing the new code sequence in the incorrect ARM or Thumb state.
1119           The workaround enables the BTB/BTAC operations by setting ACTLR.IBE
1120           and also flushes the branch target cache at every context switch.
1121           Note that setting specific bits in the ACTLR register may not be
1122           available in non-secure mode.
1123
1124 config ARM_ERRATA_458693
1125         bool "ARM errata: Processor deadlock when a false hazard is created"
1126         depends on CPU_V7
1127         help
1128           This option enables the workaround for the 458693 Cortex-A8 (r2p0)
1129           erratum. For very specific sequences of memory operations, it is
1130           possible for a hazard condition intended for a cache line to instead
1131           be incorrectly associated with a different cache line. This false
1132           hazard might then cause a processor deadlock. The workaround enables
1133           the L1 caching of the NEON accesses and disables the PLD instruction
1134           in the ACTLR register. Note that setting specific bits in the ACTLR
1135           register may not be available in non-secure mode.
1136
1137 config ARM_ERRATA_460075
1138         bool "ARM errata: Data written to the L2 cache can be overwritten with stale data"
1139         depends on CPU_V7
1140         help
1141           This option enables the workaround for the 460075 Cortex-A8 (r2p0)
1142           erratum. Any asynchronous access to the L2 cache may encounter a
1143           situation in which recent store transactions to the L2 cache are lost
1144           and overwritten with stale memory contents from external memory. The
1145           workaround disables the write-allocate mode for the L2 cache via the
1146           ACTLR register. Note that setting specific bits in the ACTLR register
1147           may not be available in non-secure mode.
1148
1149 config ARM_ERRATA_742230
1150         bool "ARM errata: DMB operation may be faulty"
1151         depends on CPU_V7 && SMP
1152         help
1153           This option enables the workaround for the 742230 Cortex-A9
1154           (r1p0..r2p2) erratum. Under rare circumstances, a DMB instruction
1155           between two write operations may not ensure the correct visibility
1156           ordering of the two writes. This workaround sets a specific bit in
1157           the diagnostic register of the Cortex-A9 which causes the DMB
1158           instruction to behave as a DSB, ensuring the correct behaviour of
1159           the two writes.
1160
1161 config ARM_ERRATA_742231
1162         bool "ARM errata: Incorrect hazard handling in the SCU may lead to data corruption"
1163         depends on CPU_V7 && SMP
1164         help
1165           This option enables the workaround for the 742231 Cortex-A9
1166           (r2p0..r2p2) erratum. Under certain conditions, specific to the
1167           Cortex-A9 MPCore micro-architecture, two CPUs working in SMP mode,
1168           accessing some data located in the same cache line, may get corrupted
1169           data due to bad handling of the address hazard when the line gets
1170           replaced from one of the CPUs at the same time as another CPU is
1171           accessing it. This workaround sets specific bits in the diagnostic
1172           register of the Cortex-A9 which reduces the linefill issuing
1173           capabilities of the processor.
1174
1175 config PL310_ERRATA_588369
1176         bool "Clean & Invalidate maintenance operations do not invalidate clean lines"
1177         depends on CACHE_L2X0
1178         help
1179            The PL310 L2 cache controller implements three types of Clean &
1180            Invalidate maintenance operations: by Physical Address
1181            (offset 0x7F0), by Index/Way (0x7F8) and by Way (0x7FC).
1182            They are architecturally defined to behave as the execution of a
1183            clean operation followed immediately by an invalidate operation,
1184            both performing to the same memory location. This functionality
1185            is not correctly implemented in PL310 as clean lines are not
1186            invalidated as a result of these operations.
1187
1188 config ARM_ERRATA_720789
1189         bool "ARM errata: TLBIASIDIS and TLBIMVAIS operations can broadcast a faulty ASID"
1190         depends on CPU_V7 && SMP
1191         help
1192           This option enables the workaround for the 720789 Cortex-A9 (prior to
1193           r2p0) erratum. A faulty ASID can be sent to the other CPUs for the
1194           broadcasted CP15 TLB maintenance operations TLBIASIDIS and TLBIMVAIS.
1195           As a consequence of this erratum, some TLB entries which should be
1196           invalidated are not, resulting in an incoherency in the system page
1197           tables. The workaround changes the TLB flushing routines to invalidate
1198           entries regardless of the ASID.
1199
1200 config PL310_ERRATA_727915
1201         bool "Background Clean & Invalidate by Way operation can cause data corruption"
1202         depends on CACHE_L2X0
1203         help
1204           PL310 implements the Clean & Invalidate by Way L2 cache maintenance
1205           operation (offset 0x7FC). This operation runs in background so that
1206           PL310 can handle normal accesses while it is in progress. Under very
1207           rare circumstances, due to this erratum, write data can be lost when
1208           PL310 treats a cacheable write transaction during a Clean &
1209           Invalidate by Way operation.
1210
1211 config ARM_ERRATA_743622
1212         bool "ARM errata: Faulty hazard checking in the Store Buffer may lead to data corruption"
1213         depends on CPU_V7
1214         help
1215           This option enables the workaround for the 743622 Cortex-A9
1216           (r2p0..r2p2) erratum. Under very rare conditions, a faulty
1217           optimisation in the Cortex-A9 Store Buffer may lead to data
1218           corruption. This workaround sets a specific bit in the diagnostic
1219           register of the Cortex-A9 which disables the Store Buffer
1220           optimisation, preventing the defect from occurring. This has no
1221           visible impact on the overall performance or power consumption of the
1222           processor.
1223
1224 config ARM_ERRATA_751472
1225         bool "ARM errata: Interrupted ICIALLUIS may prevent completion of broadcasted operation"
1226         depends on CPU_V7 && SMP
1227         help
1228           This option enables the workaround for the 751472 Cortex-A9 (prior
1229           to r3p0) erratum. An interrupted ICIALLUIS operation may prevent the
1230           completion of a following broadcasted operation if the second
1231           operation is received by a CPU before the ICIALLUIS has completed,
1232           potentially leading to corrupted entries in the cache or TLB.
1233
1234 config ARM_ERRATA_753970
1235         bool "ARM errata: cache sync operation may be faulty"
1236         depends on CACHE_PL310
1237         help
1238           This option enables the workaround for the 753970 PL310 (r3p0) erratum.
1239
1240           Under some condition the effect of cache sync operation on
1241           the store buffer still remains when the operation completes.
1242           This means that the store buffer is always asked to drain and
1243           this prevents it from merging any further writes. The workaround
1244           is to replace the normal offset of cache sync operation (0x730)
1245           by another offset targeting an unmapped PL310 register 0x740.
1246           This has the same effect as the cache sync operation: store buffer
1247           drain and waiting for all buffers empty.
1248
1249 config ARM_ERRATA_754322
1250         bool "ARM errata: possible faulty MMU translations following an ASID switch"
1251         depends on CPU_V7
1252         help
1253           This option enables the workaround for the 754322 Cortex-A9 (r2p*,
1254           r3p*) erratum. A speculative memory access may cause a page table walk
1255           which starts prior to an ASID switch but completes afterwards. This
1256           can populate the micro-TLB with a stale entry which may be hit with
1257           the new ASID. This workaround places two dsb instructions in the mm
1258           switching code so that no page table walks can cross the ASID switch.
1259
1260 config ARM_ERRATA_754327
1261         bool "ARM errata: no automatic Store Buffer drain"
1262         depends on CPU_V7 && SMP
1263         help
1264           This option enables the workaround for the 754327 Cortex-A9 (prior to
1265           r2p0) erratum. The Store Buffer does not have any automatic draining
1266           mechanism and therefore a livelock may occur if an external agent
1267           continuously polls a memory location waiting to observe an update.
1268           This workaround defines cpu_relax() as smp_mb(), preventing correctly
1269           written polling loops from denying visibility of updates to memory.
1270
1271 config ARM_ERRATA_364296
1272         bool "ARM errata: Possible cache data corruption with hit-under-miss enabled"
1273         depends on CPU_V6 && !SMP
1274         help
1275           This options enables the workaround for the 364296 ARM1136
1276           r0p2 erratum (possible cache data corruption with
1277           hit-under-miss enabled). It sets the undocumented bit 31 in
1278           the auxiliary control register and the FI bit in the control
1279           register, thus disabling hit-under-miss without putting the
1280           processor into full low interrupt latency mode. ARM11MPCore
1281           is not affected.
1282
1283 endmenu
1284
1285 source "arch/arm/common/Kconfig"
1286
1287 menu "Bus support"
1288
1289 config ARM_AMBA
1290         bool
1291
1292 config ISA
1293         bool
1294         help
1295           Find out whether you have ISA slots on your motherboard.  ISA is the
1296           name of a bus system, i.e. the way the CPU talks to the other stuff
1297           inside your box.  Other bus systems are PCI, EISA, MicroChannel
1298           (MCA) or VESA.  ISA is an older system, now being displaced by PCI;
1299           newer boards don't support it.  If you have ISA, say Y, otherwise N.
1300
1301 # Select ISA DMA controller support
1302 config ISA_DMA
1303         bool
1304         select ISA_DMA_API
1305
1306 # Select ISA DMA interface
1307 config ISA_DMA_API
1308         bool
1309
1310 config PCI
1311         bool "PCI support" if MIGHT_HAVE_PCI
1312         help
1313           Find out whether you have a PCI motherboard. PCI is the name of a
1314           bus system, i.e. the way the CPU talks to the other stuff inside
1315           your box. Other bus systems are ISA, EISA, MicroChannel (MCA) or
1316           VESA. If you have PCI, say Y, otherwise N.
1317
1318 config PCI_DOMAINS
1319         bool
1320         depends on PCI
1321
1322 config PCI_NANOENGINE
1323         bool "BSE nanoEngine PCI support"
1324         depends on SA1100_NANOENGINE
1325         help
1326           Enable PCI on the BSE nanoEngine board.
1327
1328 config PCI_SYSCALL
1329         def_bool PCI
1330
1331 # Select the host bridge type
1332 config PCI_HOST_VIA82C505
1333         bool
1334         depends on PCI && ARCH_SHARK
1335         default y
1336
1337 config PCI_HOST_ITE8152
1338         bool
1339         depends on PCI && MACH_ARMCORE
1340         default y
1341         select DMABOUNCE
1342
1343 source "drivers/pci/Kconfig"
1344
1345 source "drivers/pcmcia/Kconfig"
1346
1347 endmenu
1348
1349 menu "Kernel Features"
1350
1351 source "kernel/time/Kconfig"
1352
1353 config SMP
1354         bool "Symmetric Multi-Processing"
1355         depends on CPU_V6K || CPU_V7
1356         depends on GENERIC_CLOCKEVENTS
1357         depends on REALVIEW_EB_ARM11MP || REALVIEW_EB_A9MP || \
1358                  MACH_REALVIEW_PB11MP || MACH_REALVIEW_PBX || ARCH_OMAP4 || \
1359                  ARCH_EXYNOS4 || ARCH_TEGRA || ARCH_U8500 || ARCH_VEXPRESS_CA9X4 || \
1360                  ARCH_MSM_SCORPIONMP || ARCH_SHMOBILE
1361         select USE_GENERIC_SMP_HELPERS
1362         select HAVE_ARM_SCU if !ARCH_MSM_SCORPIONMP
1363         help
1364           This enables support for systems with more than one CPU. If you have
1365           a system with only one CPU, like most personal computers, say N. If
1366           you have a system with more than one CPU, say Y.
1367
1368           If you say N here, the kernel will run on single and multiprocessor
1369           machines, but will use only one CPU of a multiprocessor machine. If
1370           you say Y here, the kernel will run on many, but not all, single
1371           processor machines. On a single processor machine, the kernel will
1372           run faster if you say N here.
1373
1374           See also <file:Documentation/i386/IO-APIC.txt>,
1375           <file:Documentation/nmi_watchdog.txt> and the SMP-HOWTO available at
1376           <http://tldp.org/HOWTO/SMP-HOWTO.html>.
1377
1378           If you don't know what to do here, say N.
1379
1380 config SMP_ON_UP
1381         bool "Allow booting SMP kernel on uniprocessor systems (EXPERIMENTAL)"
1382         depends on EXPERIMENTAL
1383         depends on SMP && !XIP_KERNEL
1384         default y
1385         help
1386           SMP kernels contain instructions which fail on non-SMP processors.
1387           Enabling this option allows the kernel to modify itself to make
1388           these instructions safe.  Disabling it allows about 1K of space
1389           savings.
1390
1391           If you don't know what to do here, say Y.
1392
1393 config ARM_CPU_TOPOLOGY
1394         bool "Support cpu topology definition"
1395         depends on SMP && CPU_V7
1396         default y
1397         help
1398           Support ARM cpu topology definition. The MPIDR register defines
1399           affinity between processors which is then used to describe the cpu
1400           topology of an ARM System.
1401
1402 config SCHED_MC
1403         bool "Multi-core scheduler support"
1404         depends on ARM_CPU_TOPOLOGY
1405         help
1406           Multi-core scheduler support improves the CPU scheduler's decision
1407           making when dealing with multi-core CPU chips at a cost of slightly
1408           increased overhead in some places. If unsure say N here.
1409
1410 config SCHED_SMT
1411         bool "SMT scheduler support"
1412         depends on ARM_CPU_TOPOLOGY
1413         help
1414           Improves the CPU scheduler's decision making when dealing with
1415           MultiThreading at a cost of slightly increased overhead in some
1416           places. If unsure say N here.
1417
1418 config HAVE_ARM_SCU
1419         bool
1420         help
1421           This option enables support for the ARM system coherency unit
1422
1423 config HAVE_ARM_TWD
1424         bool
1425         depends on SMP
1426         select TICK_ONESHOT
1427         help
1428           This options enables support for the ARM timer and watchdog unit
1429
1430 choice
1431         prompt "Memory split"
1432         default VMSPLIT_3G
1433         help
1434           Select the desired split between kernel and user memory.
1435
1436           If you are not absolutely sure what you are doing, leave this
1437           option alone!
1438
1439         config VMSPLIT_3G
1440                 bool "3G/1G user/kernel split"
1441         config VMSPLIT_2G
1442                 bool "2G/2G user/kernel split"
1443         config VMSPLIT_1G
1444                 bool "1G/3G user/kernel split"
1445 endchoice
1446
1447 config PAGE_OFFSET
1448         hex
1449         default 0x40000000 if VMSPLIT_1G
1450         default 0x80000000 if VMSPLIT_2G
1451         default 0xC0000000
1452
1453 config NR_CPUS
1454         int "Maximum number of CPUs (2-32)"
1455         range 2 32
1456         depends on SMP
1457         default "4"
1458
1459 config HOTPLUG_CPU
1460         bool "Support for hot-pluggable CPUs (EXPERIMENTAL)"
1461         depends on SMP && HOTPLUG && EXPERIMENTAL
1462         help
1463           Say Y here to experiment with turning CPUs off and on.  CPUs
1464           can be controlled through /sys/devices/system/cpu.
1465
1466 config LOCAL_TIMERS
1467         bool "Use local timer interrupts"
1468         depends on SMP
1469         default y
1470         select HAVE_ARM_TWD if (!ARCH_MSM_SCORPIONMP && !EXYNOS4_MCT)
1471         help
1472           Enable support for local timers on SMP platforms, rather then the
1473           legacy IPI broadcast method.  Local timers allows the system
1474           accounting to be spread across the timer interval, preventing a
1475           "thundering herd" at every timer tick.
1476
1477 source kernel/Kconfig.preempt
1478
1479 config HZ
1480         int
1481         default 200 if ARCH_EBSA110 || ARCH_S3C2410 || ARCH_S5P64X0 || \
1482                 ARCH_S5PV210 || ARCH_EXYNOS4
1483         default OMAP_32K_TIMER_HZ if ARCH_OMAP && OMAP_32K_TIMER
1484         default AT91_TIMER_HZ if ARCH_AT91
1485         default SHMOBILE_TIMER_HZ if ARCH_SHMOBILE
1486         default 100
1487
1488 config THUMB2_KERNEL
1489         bool "Compile the kernel in Thumb-2 mode (EXPERIMENTAL)"
1490         depends on CPU_V7 && !CPU_V6 && !CPU_V6K && EXPERIMENTAL
1491         select AEABI
1492         select ARM_ASM_UNIFIED
1493         help
1494           By enabling this option, the kernel will be compiled in
1495           Thumb-2 mode. A compiler/assembler that understand the unified
1496           ARM-Thumb syntax is needed.
1497
1498           If unsure, say N.
1499
1500 config THUMB2_AVOID_R_ARM_THM_JUMP11
1501         bool "Work around buggy Thumb-2 short branch relocations in gas"
1502         depends on THUMB2_KERNEL && MODULES
1503         default y
1504         help
1505           Various binutils versions can resolve Thumb-2 branches to
1506           locally-defined, preemptible global symbols as short-range "b.n"
1507           branch instructions.
1508
1509           This is a problem, because there's no guarantee the final
1510           destination of the symbol, or any candidate locations for a
1511           trampoline, are within range of the branch.  For this reason, the
1512           kernel does not support fixing up the R_ARM_THM_JUMP11 (102)
1513           relocation in modules at all, and it makes little sense to add
1514           support.
1515
1516           The symptom is that the kernel fails with an "unsupported
1517           relocation" error when loading some modules.
1518
1519           Until fixed tools are available, passing
1520           -fno-optimize-sibling-calls to gcc should prevent gcc generating
1521           code which hits this problem, at the cost of a bit of extra runtime
1522           stack usage in some cases.
1523
1524           The problem is described in more detail at:
1525               https://bugs.launchpad.net/binutils-linaro/+bug/725126
1526
1527           Only Thumb-2 kernels are affected.
1528
1529           Unless you are sure your tools don't have this problem, say Y.
1530
1531 config ARM_ASM_UNIFIED
1532         bool
1533
1534 config AEABI
1535         bool "Use the ARM EABI to compile the kernel"
1536         help
1537           This option allows for the kernel to be compiled using the latest
1538           ARM ABI (aka EABI).  This is only useful if you are using a user
1539           space environment that is also compiled with EABI.
1540
1541           Since there are major incompatibilities between the legacy ABI and
1542           EABI, especially with regard to structure member alignment, this
1543           option also changes the kernel syscall calling convention to
1544           disambiguate both ABIs and allow for backward compatibility support
1545           (selected with CONFIG_OABI_COMPAT).
1546
1547           To use this you need GCC version 4.0.0 or later.
1548
1549 config OABI_COMPAT
1550         bool "Allow old ABI binaries to run with this kernel (EXPERIMENTAL)"
1551         depends on AEABI && EXPERIMENTAL && !THUMB2_KERNEL
1552         default y
1553         help
1554           This option preserves the old syscall interface along with the
1555           new (ARM EABI) one. It also provides a compatibility layer to
1556           intercept syscalls that have structure arguments which layout
1557           in memory differs between the legacy ABI and the new ARM EABI
1558           (only for non "thumb" binaries). This option adds a tiny
1559           overhead to all syscalls and produces a slightly larger kernel.
1560           If you know you'll be using only pure EABI user space then you
1561           can say N here. If this option is not selected and you attempt
1562           to execute a legacy ABI binary then the result will be
1563           UNPREDICTABLE (in fact it can be predicted that it won't work
1564           at all). If in doubt say Y.
1565
1566 config ARCH_HAS_HOLES_MEMORYMODEL
1567         bool
1568
1569 config ARCH_SPARSEMEM_ENABLE
1570         bool
1571
1572 config ARCH_SPARSEMEM_DEFAULT
1573         def_bool ARCH_SPARSEMEM_ENABLE
1574
1575 config ARCH_SELECT_MEMORY_MODEL
1576         def_bool ARCH_SPARSEMEM_ENABLE
1577
1578 config HAVE_ARCH_PFN_VALID
1579         def_bool ARCH_HAS_HOLES_MEMORYMODEL || !SPARSEMEM
1580
1581 config HIGHMEM
1582         bool "High Memory Support"
1583         depends on MMU
1584         help
1585           The address space of ARM processors is only 4 Gigabytes large
1586           and it has to accommodate user address space, kernel address
1587           space as well as some memory mapped IO. That means that, if you
1588           have a large amount of physical memory and/or IO, not all of the
1589           memory can be "permanently mapped" by the kernel. The physical
1590           memory that is not permanently mapped is called "high memory".
1591
1592           Depending on the selected kernel/user memory split, minimum
1593           vmalloc space and actual amount of RAM, you may not need this
1594           option which should result in a slightly faster kernel.
1595
1596           If unsure, say n.
1597
1598 config HIGHPTE
1599         bool "Allocate 2nd-level pagetables from highmem"
1600         depends on HIGHMEM
1601
1602 config HW_PERF_EVENTS
1603         bool "Enable hardware performance counter support for perf events"
1604         depends on PERF_EVENTS && CPU_HAS_PMU
1605         default y
1606         help
1607           Enable hardware performance counter support for perf events. If
1608           disabled, perf events will use software events only.
1609
1610 source "mm/Kconfig"
1611
1612 config FORCE_MAX_ZONEORDER
1613         int "Maximum zone order" if ARCH_SHMOBILE
1614         range 11 64 if ARCH_SHMOBILE
1615         default "9" if SA1111
1616         default "11"
1617         help
1618           The kernel memory allocator divides physically contiguous memory
1619           blocks into "zones", where each zone is a power of two number of
1620           pages.  This option selects the largest power of two that the kernel
1621           keeps in the memory allocator.  If you need to allocate very large
1622           blocks of physically contiguous memory, then you may need to
1623           increase this value.
1624
1625           This config option is actually maximum order plus one. For example,
1626           a value of 11 means that the largest free memory block is 2^10 pages.
1627
1628 config LEDS
1629         bool "Timer and CPU usage LEDs"
1630         depends on ARCH_CDB89712 || ARCH_EBSA110 || \
1631                    ARCH_EBSA285 || ARCH_INTEGRATOR || \
1632                    ARCH_LUBBOCK || MACH_MAINSTONE || ARCH_NETWINDER || \
1633                    ARCH_OMAP || ARCH_P720T || ARCH_PXA_IDP || \
1634                    ARCH_SA1100 || ARCH_SHARK || ARCH_VERSATILE || \
1635                    ARCH_AT91 || ARCH_DAVINCI || \
1636                    ARCH_KS8695 || MACH_RD88F5182 || ARCH_REALVIEW
1637         help
1638           If you say Y here, the LEDs on your machine will be used
1639           to provide useful information about your current system status.
1640
1641           If you are compiling a kernel for a NetWinder or EBSA-285, you will
1642           be able to select which LEDs are active using the options below. If
1643           you are compiling a kernel for the EBSA-110 or the LART however, the
1644           red LED will simply flash regularly to indicate that the system is
1645           still functional. It is safe to say Y here if you have a CATS
1646           system, but the driver will do nothing.
1647
1648 config LEDS_TIMER
1649         bool "Timer LED" if (!ARCH_CDB89712 && !ARCH_OMAP) || \
1650                             OMAP_OSK_MISTRAL || MACH_OMAP_H2 \
1651                             || MACH_OMAP_PERSEUS2
1652         depends on LEDS
1653         depends on !GENERIC_CLOCKEVENTS
1654         default y if ARCH_EBSA110
1655         help
1656           If you say Y here, one of the system LEDs (the green one on the
1657           NetWinder, the amber one on the EBSA285, or the red one on the LART)
1658           will flash regularly to indicate that the system is still
1659           operational. This is mainly useful to kernel hackers who are
1660           debugging unstable kernels.
1661
1662           The LART uses the same LED for both Timer LED and CPU usage LED
1663           functions. You may choose to use both, but the Timer LED function
1664           will overrule the CPU usage LED.
1665
1666 config LEDS_CPU
1667         bool "CPU usage LED" if (!ARCH_CDB89712 && !ARCH_EBSA110 && \
1668                         !ARCH_OMAP) \
1669                         || OMAP_OSK_MISTRAL || MACH_OMAP_H2 \
1670                         || MACH_OMAP_PERSEUS2
1671         depends on LEDS
1672         help
1673           If you say Y here, the red LED will be used to give a good real
1674           time indication of CPU usage, by lighting whenever the idle task
1675           is not currently executing.
1676
1677           The LART uses the same LED for both Timer LED and CPU usage LED
1678           functions. You may choose to use both, but the Timer LED function
1679           will overrule the CPU usage LED.
1680
1681 config ALIGNMENT_TRAP
1682         bool
1683         depends on CPU_CP15_MMU
1684         default y if !ARCH_EBSA110
1685         select HAVE_PROC_CPU if PROC_FS
1686         help
1687           ARM processors cannot fetch/store information which is not
1688           naturally aligned on the bus, i.e., a 4 byte fetch must start at an
1689           address divisible by 4. On 32-bit ARM processors, these non-aligned
1690           fetch/store instructions will be emulated in software if you say
1691           here, which has a severe performance impact. This is necessary for
1692           correct operation of some network protocols. With an IP-only
1693           configuration it is safe to say N, otherwise say Y.
1694
1695 config UACCESS_WITH_MEMCPY
1696         bool "Use kernel mem{cpy,set}() for {copy_to,clear}_user() (EXPERIMENTAL)"
1697         depends on MMU && EXPERIMENTAL
1698         default y if CPU_FEROCEON
1699         help
1700           Implement faster copy_to_user and clear_user methods for CPU
1701           cores where a 8-word STM instruction give significantly higher
1702           memory write throughput than a sequence of individual 32bit stores.
1703
1704           A possible side effect is a slight increase in scheduling latency
1705           between threads sharing the same address space if they invoke
1706           such copy operations with large buffers.
1707
1708           However, if the CPU data cache is using a write-allocate mode,
1709           this option is unlikely to provide any performance gain.
1710
1711 config SECCOMP
1712         bool
1713         prompt "Enable seccomp to safely compute untrusted bytecode"
1714         ---help---
1715           This kernel feature is useful for number crunching applications
1716           that may need to compute untrusted bytecode during their
1717           execution. By using pipes or other transports made available to
1718           the process as file descriptors supporting the read/write
1719           syscalls, it's possible to isolate those applications in
1720           their own address space using seccomp. Once seccomp is
1721           enabled via prctl(PR_SET_SECCOMP), it cannot be disabled
1722           and the task is only allowed to execute a few safe syscalls
1723           defined by each seccomp mode.
1724
1725 config CC_STACKPROTECTOR
1726         bool "Enable -fstack-protector buffer overflow detection (EXPERIMENTAL)"
1727         depends on EXPERIMENTAL
1728         help
1729           This option turns on the -fstack-protector GCC feature. This
1730           feature puts, at the beginning of functions, a canary value on
1731           the stack just before the return address, and validates
1732           the value just before actually returning.  Stack based buffer
1733           overflows (that need to overwrite this return address) now also
1734           overwrite the canary, which gets detected and the attack is then
1735           neutralized via a kernel panic.
1736           This feature requires gcc version 4.2 or above.
1737
1738 config DEPRECATED_PARAM_STRUCT
1739         bool "Provide old way to pass kernel parameters"
1740         help
1741           This was deprecated in 2001 and announced to live on for 5 years.
1742           Some old boot loaders still use this way.
1743
1744 endmenu
1745
1746 menu "Boot options"
1747
1748 config USE_OF
1749         bool "Flattened Device Tree support"
1750         select OF
1751         select OF_EARLY_FLATTREE
1752         select IRQ_DOMAIN
1753         help
1754           Include support for flattened device tree machine descriptions.
1755
1756 # Compressed boot loader in ROM.  Yes, we really want to ask about
1757 # TEXT and BSS so we preserve their values in the config files.
1758 config ZBOOT_ROM_TEXT
1759         hex "Compressed ROM boot loader base address"
1760         default "0"
1761         help
1762           The physical address at which the ROM-able zImage is to be
1763           placed in the target.  Platforms which normally make use of
1764           ROM-able zImage formats normally set this to a suitable
1765           value in their defconfig file.
1766
1767           If ZBOOT_ROM is not enabled, this has no effect.
1768
1769 config ZBOOT_ROM_BSS
1770         hex "Compressed ROM boot loader BSS address"
1771         default "0"
1772         help
1773           The base address of an area of read/write memory in the target
1774           for the ROM-able zImage which must be available while the
1775           decompressor is running. It must be large enough to hold the
1776           entire decompressed kernel plus an additional 128 KiB.
1777           Platforms which normally make use of ROM-able zImage formats
1778           normally set this to a suitable value in their defconfig file.
1779
1780           If ZBOOT_ROM is not enabled, this has no effect.
1781
1782 config ZBOOT_ROM
1783         bool "Compressed boot loader in ROM/flash"
1784         depends on ZBOOT_ROM_TEXT != ZBOOT_ROM_BSS
1785         help
1786           Say Y here if you intend to execute your compressed kernel image
1787           (zImage) directly from ROM or flash.  If unsure, say N.
1788
1789 choice
1790         prompt "Include SD/MMC loader in zImage (EXPERIMENTAL)"
1791         depends on ZBOOT_ROM && ARCH_SH7372 && EXPERIMENTAL
1792         default ZBOOT_ROM_NONE
1793         help
1794           Include experimental SD/MMC loading code in the ROM-able zImage.
1795           With this enabled it is possible to write the the ROM-able zImage
1796           kernel image to an MMC or SD card and boot the kernel straight
1797           from the reset vector. At reset the processor Mask ROM will load
1798           the first part of the the ROM-able zImage which in turn loads the
1799           rest the kernel image to RAM.
1800
1801 config ZBOOT_ROM_NONE
1802         bool "No SD/MMC loader in zImage (EXPERIMENTAL)"
1803         help
1804           Do not load image from SD or MMC
1805
1806 config ZBOOT_ROM_MMCIF
1807         bool "Include MMCIF loader in zImage (EXPERIMENTAL)"
1808         help
1809           Load image from MMCIF hardware block.
1810
1811 config ZBOOT_ROM_SH_MOBILE_SDHI
1812         bool "Include SuperH Mobile SDHI loader in zImage (EXPERIMENTAL)"
1813         help
1814           Load image from SDHI hardware block
1815
1816 endchoice
1817
1818 config CMDLINE
1819         string "Default kernel command string"
1820         default ""
1821         help
1822           On some architectures (EBSA110 and CATS), there is currently no way
1823           for the boot loader to pass arguments to the kernel. For these
1824           architectures, you should supply some command-line options at build
1825           time by entering them here. As a minimum, you should specify the
1826           memory size and the root device (e.g., mem=64M root=/dev/nfs).
1827
1828 choice
1829         prompt "Kernel command line type" if CMDLINE != ""
1830         default CMDLINE_FROM_BOOTLOADER
1831
1832 config CMDLINE_FROM_BOOTLOADER
1833         bool "Use bootloader kernel arguments if available"
1834         help
1835           Uses the command-line options passed by the boot loader. If
1836           the boot loader doesn't provide any, the default kernel command
1837           string provided in CMDLINE will be used.
1838
1839 config CMDLINE_EXTEND
1840         bool "Extend bootloader kernel arguments"
1841         help
1842           The command-line arguments provided by the boot loader will be
1843           appended to the default kernel command string.
1844
1845 config CMDLINE_FORCE
1846         bool "Always use the default kernel command string"
1847         help
1848           Always use the default kernel command string, even if the boot
1849           loader passes other arguments to the kernel.
1850           This is useful if you cannot or don't want to change the
1851           command-line options your boot loader passes to the kernel.
1852 endchoice
1853
1854 config XIP_KERNEL
1855         bool "Kernel Execute-In-Place from ROM"
1856         depends on !ZBOOT_ROM && !ARM_LPAE
1857         help
1858           Execute-In-Place allows the kernel to run from non-volatile storage
1859           directly addressable by the CPU, such as NOR flash. This saves RAM
1860           space since the text section of the kernel is not loaded from flash
1861           to RAM.  Read-write sections, such as the data section and stack,
1862           are still copied to RAM.  The XIP kernel is not compressed since
1863           it has to run directly from flash, so it will take more space to
1864           store it.  The flash address used to link the kernel object files,
1865           and for storing it, is configuration dependent. Therefore, if you
1866           say Y here, you must know the proper physical address where to
1867           store the kernel image depending on your own flash memory usage.
1868
1869           Also note that the make target becomes "make xipImage" rather than
1870           "make zImage" or "make Image".  The final kernel binary to put in
1871           ROM memory will be arch/arm/boot/xipImage.
1872
1873           If unsure, say N.
1874
1875 config XIP_PHYS_ADDR
1876         hex "XIP Kernel Physical Location"
1877         depends on XIP_KERNEL
1878         default "0x00080000"
1879         help
1880           This is the physical address in your flash memory the kernel will
1881           be linked for and stored to.  This address is dependent on your
1882           own flash usage.
1883
1884 config KEXEC
1885         bool "Kexec system call (EXPERIMENTAL)"
1886         depends on EXPERIMENTAL
1887         help
1888           kexec is a system call that implements the ability to shutdown your
1889           current kernel, and to start another kernel.  It is like a reboot
1890           but it is independent of the system firmware.   And like a reboot
1891           you can start any kernel with it, not just Linux.
1892
1893           It is an ongoing process to be certain the hardware in a machine
1894           is properly shutdown, so do not be surprised if this code does not
1895           initially work for you.  It may help to enable device hotplugging
1896           support.
1897
1898 config ATAGS_PROC
1899         bool "Export atags in procfs"
1900         depends on KEXEC
1901         default y
1902         help
1903           Should the atags used to boot the kernel be exported in an "atags"
1904           file in procfs. Useful with kexec.
1905
1906 config CRASH_DUMP
1907         bool "Build kdump crash kernel (EXPERIMENTAL)"
1908         depends on EXPERIMENTAL
1909         help
1910           Generate crash dump after being started by kexec. This should
1911           be normally only set in special crash dump kernels which are
1912           loaded in the main kernel with kexec-tools into a specially
1913           reserved region and then later executed after a crash by
1914           kdump/kexec. The crash dump kernel must be compiled to a
1915           memory address not used by the main kernel
1916
1917           For more details see Documentation/kdump/kdump.txt
1918
1919 config AUTO_ZRELADDR
1920         bool "Auto calculation of the decompressed kernel image address"
1921         depends on !ZBOOT_ROM && !ARCH_U300
1922         help
1923           ZRELADDR is the physical address where the decompressed kernel
1924           image will be placed. If AUTO_ZRELADDR is selected, the address
1925           will be determined at run-time by masking the current IP with
1926           0xf8000000. This assumes the zImage being placed in the first 128MB
1927           from start of memory.
1928
1929 endmenu
1930
1931 menu "CPU Power Management"
1932
1933 if ARCH_HAS_CPUFREQ
1934
1935 source "drivers/cpufreq/Kconfig"
1936
1937 config CPU_FREQ_IMX
1938         tristate "CPUfreq driver for i.MX CPUs"
1939         depends on ARCH_MXC && CPU_FREQ
1940         help
1941           This enables the CPUfreq driver for i.MX CPUs.
1942
1943 config CPU_FREQ_SA1100
1944         bool
1945
1946 config CPU_FREQ_SA1110
1947         bool
1948
1949 config CPU_FREQ_INTEGRATOR
1950         tristate "CPUfreq driver for ARM Integrator CPUs"
1951         depends on ARCH_INTEGRATOR && CPU_FREQ
1952         default y
1953         help
1954           This enables the CPUfreq driver for ARM Integrator CPUs.
1955
1956           For details, take a look at <file:Documentation/cpu-freq>.
1957
1958           If in doubt, say Y.
1959
1960 config CPU_FREQ_PXA
1961         bool
1962         depends on CPU_FREQ && ARCH_PXA && PXA25x
1963         default y
1964         select CPU_FREQ_DEFAULT_GOV_USERSPACE
1965
1966 config CPU_FREQ_S3C
1967         bool
1968         help
1969           Internal configuration node for common cpufreq on Samsung SoC
1970
1971 config CPU_FREQ_S3C24XX
1972         bool "CPUfreq driver for Samsung S3C24XX series CPUs (EXPERIMENTAL)"
1973         depends on ARCH_S3C2410 && CPU_FREQ && EXPERIMENTAL
1974         select CPU_FREQ_S3C
1975         help
1976           This enables the CPUfreq driver for the Samsung S3C24XX family
1977           of CPUs.
1978
1979           For details, take a look at <file:Documentation/cpu-freq>.
1980
1981           If in doubt, say N.
1982
1983 config CPU_FREQ_S3C24XX_PLL
1984         bool "Support CPUfreq changing of PLL frequency (EXPERIMENTAL)"
1985         depends on CPU_FREQ_S3C24XX && EXPERIMENTAL
1986         help
1987           Compile in support for changing the PLL frequency from the
1988           S3C24XX series CPUfreq driver. The PLL takes time to settle
1989           after a frequency change, so by default it is not enabled.
1990
1991           This also means that the PLL tables for the selected CPU(s) will
1992           be built which may increase the size of the kernel image.
1993
1994 config CPU_FREQ_S3C24XX_DEBUG
1995         bool "Debug CPUfreq Samsung driver core"
1996         depends on CPU_FREQ_S3C24XX
1997         help
1998           Enable s3c_freq_dbg for the Samsung S3C CPUfreq core
1999
2000 config CPU_FREQ_S3C24XX_IODEBUG
2001         bool "Debug CPUfreq Samsung driver IO timing"
2002         depends on CPU_FREQ_S3C24XX
2003         help
2004           Enable s3c_freq_iodbg for the Samsung S3C CPUfreq core
2005
2006 config CPU_FREQ_S3C24XX_DEBUGFS
2007         bool "Export debugfs for CPUFreq"
2008         depends on CPU_FREQ_S3C24XX && DEBUG_FS
2009         help
2010           Export status information via debugfs.
2011
2012 endif
2013
2014 source "drivers/cpuidle/Kconfig"
2015
2016 endmenu
2017
2018 menu "Floating point emulation"
2019
2020 comment "At least one emulation must be selected"
2021
2022 config FPE_NWFPE
2023         bool "NWFPE math emulation"
2024         depends on (!AEABI || OABI_COMPAT) && !THUMB2_KERNEL
2025         ---help---
2026           Say Y to include the NWFPE floating point emulator in the kernel.
2027           This is necessary to run most binaries. Linux does not currently
2028           support floating point hardware so you need to say Y here even if
2029           your machine has an FPA or floating point co-processor podule.
2030
2031           You may say N here if you are going to load the Acorn FPEmulator
2032           early in the bootup.
2033
2034 config FPE_NWFPE_XP
2035         bool "Support extended precision"
2036         depends on FPE_NWFPE
2037         help
2038           Say Y to include 80-bit support in the kernel floating-point
2039           emulator.  Otherwise, only 32 and 64-bit support is compiled in.
2040           Note that gcc does not generate 80-bit operations by default,
2041           so in most cases this option only enlarges the size of the
2042           floating point emulator without any good reason.
2043
2044           You almost surely want to say N here.
2045
2046 config FPE_FASTFPE
2047         bool "FastFPE math emulation (EXPERIMENTAL)"
2048         depends on (!AEABI || OABI_COMPAT) && !CPU_32v3 && EXPERIMENTAL
2049         ---help---
2050           Say Y here to include the FAST floating point emulator in the kernel.
2051           This is an experimental much faster emulator which now also has full
2052           precision for the mantissa.  It does not support any exceptions.
2053           It is very simple, and approximately 3-6 times faster than NWFPE.
2054
2055           It should be sufficient for most programs.  It may be not suitable
2056           for scientific calculations, but you have to check this for yourself.
2057           If you do not feel you need a faster FP emulation you should better
2058           choose NWFPE.
2059
2060 config VFP
2061         bool "VFP-format floating point maths"
2062         depends on CPU_V6 || CPU_V6K || CPU_ARM926T || CPU_V7 || CPU_FEROCEON
2063         help
2064           Say Y to include VFP support code in the kernel. This is needed
2065           if your hardware includes a VFP unit.
2066
2067           Please see <file:Documentation/arm/VFP/release-notes.txt> for
2068           release notes and additional status information.
2069
2070           Say N if your target does not have VFP hardware.
2071
2072 config VFPv3
2073         bool
2074         depends on VFP
2075         default y if CPU_V7
2076
2077 config NEON
2078         bool "Advanced SIMD (NEON) Extension support"
2079         depends on VFPv3 && CPU_V7
2080         help
2081           Say Y to include support code for NEON, the ARMv7 Advanced SIMD
2082           Extension.
2083
2084 endmenu
2085
2086 menu "Userspace binary formats"
2087
2088 source "fs/Kconfig.binfmt"
2089
2090 config ARTHUR
2091         tristate "RISC OS personality"
2092         depends on !AEABI
2093         help
2094           Say Y here to include the kernel code necessary if you want to run
2095           Acorn RISC OS/Arthur binaries under Linux. This code is still very
2096           experimental; if this sounds frightening, say N and sleep in peace.
2097           You can also say M here to compile this support as a module (which
2098           will be called arthur).
2099
2100 endmenu
2101
2102 menu "Power management options"
2103
2104 source "kernel/power/Kconfig"
2105
2106 config ARCH_SUSPEND_POSSIBLE
2107         depends on !ARCH_S5P64X0 && !ARCH_S5PC100
2108         depends on CPU_ARM920T || CPU_ARM926T || CPU_SA1100 || \
2109                 CPU_V6 || CPU_V6K || CPU_V7 || CPU_XSC3 || CPU_XSCALE
2110         def_bool y
2111
2112 endmenu
2113
2114 source "net/Kconfig"
2115
2116 source "drivers/Kconfig"
2117
2118 source "fs/Kconfig"
2119
2120 source "arch/arm/Kconfig.debug"
2121
2122 source "security/Kconfig"
2123
2124 source "crypto/Kconfig"
2125
2126 source "lib/Kconfig"