[ARM] MXC: Switch MX1 to clkdev support
[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         select COMMON_CLKDEV
13         help
14           This enables support for systems based on the Freescale i.MX1 family
15
16 config ARCH_MX2
17         bool "MX2-based"
18         select CPU_ARM926T
19         select COMMON_CLKDEV
20         help
21           This enables support for systems based on the Freescale i.MX2 family
22
23 config ARCH_MX3
24         bool "MX3-based"
25         select CPU_V6
26         select COMMON_CLKDEV
27         help
28           This enables support for systems based on the Freescale i.MX3 family
29
30 endchoice
31
32 source "arch/arm/mach-mx1/Kconfig"
33 source "arch/arm/mach-mx2/Kconfig"
34 source "arch/arm/mach-mx3/Kconfig"
35
36 endmenu
37
38 config MXC_IRQ_PRIOR
39         bool "Use IRQ priority"
40         depends on ARCH_MXC
41         help
42           Select this if you want to use prioritized IRQ handling.
43           This feature prevents higher priority ISR to be interrupted
44           by lower priority IRQ even IRQF_DISABLED flag is not set.
45           This may be useful in embedded applications, where are strong
46           requirements for timing.
47           Say N here, unless you have a specialized requirement.
48
49 config MXC_PWM
50         tristate "Enable PWM driver"
51         depends on ARCH_MXC
52         select HAVE_PWM
53         help
54           Enable support for the i.MX PWM controller(s).
55
56 config ARCH_HAS_RNGA
57         bool
58         depends on ARCH_MXC
59
60 config ARCH_MXC_IOMUX_V3
61         bool
62 endif