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