Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input
[pandora-kernel.git] / arch / arm / plat-mxc / Kconfig
1 if ARCH_MXC
2
3 menu "Freescale MXC Implementations"
4
5 choice
6         prompt "Freescale CPU family:"
7         default ARCH_MX3
8
9 config ARCH_MX1
10         bool "MX1-based"
11         select CPU_ARM920T
12         help
13           This enables support for systems based on the Freescale i.MX1 family
14
15 config ARCH_MX2
16         bool "MX2-based"
17         select CPU_ARM926T
18         select COMMON_CLKDEV
19         help
20           This enables support for systems based on the Freescale i.MX2 family
21
22 config ARCH_MX3
23         bool "MX3-based"
24         select CPU_V6
25         select COMMON_CLKDEV
26         help
27           This enables support for systems based on the Freescale i.MX3 family
28
29 endchoice
30
31 source "arch/arm/mach-mx1/Kconfig"
32 source "arch/arm/mach-mx2/Kconfig"
33 source "arch/arm/mach-mx3/Kconfig"
34
35 endmenu
36
37 config MXC_IRQ_PRIOR
38         bool "Use IRQ priority"
39         depends on ARCH_MXC
40         help
41           Select this if you want to use prioritized IRQ handling.
42           This feature prevents higher priority ISR to be interrupted
43           by lower priority IRQ even IRQF_DISABLED flag is not set.
44           This may be useful in embedded applications, where are strong
45           requirements for timing.
46           Say N here, unless you have a specialized requirement.
47
48 config MXC_PWM
49         tristate "Enable PWM driver"
50         depends on ARCH_MXC
51         select HAVE_PWM
52         help
53           Enable support for the i.MX PWM controller(s).
54
55 config ARCH_HAS_RNGA
56         bool
57         depends on ARCH_MXC
58
59 config ARCH_MXC_IOMUX_V3
60         bool
61 endif