mx31ads: Fix build for missing mx31.h
[safe/jmp/linux-2.6] / arch / arm / plat-mxc / Kconfig
1 if ARCH_MXC
2
3 menu "Freescale MXC Implementations"
4
5 choice
6         prompt "MXC/iMX Base Type"
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         help
26           This enables support for systems based on the Freescale i.MX3 family
27
28 endchoice
29
30 source "arch/arm/mach-mx1/Kconfig"
31 source "arch/arm/mach-mx2/Kconfig"
32 source "arch/arm/mach-mx3/Kconfig"
33
34 endmenu
35
36 config MXC_IRQ_PRIOR
37         bool "Use IRQ priority"
38         depends on ARCH_MXC
39         help
40           Select this if you want to use prioritized IRQ handling.
41           This feature prevents higher priority ISR to be interrupted
42           by lower priority IRQ even IRQF_DISABLED flag is not set.
43           This may be useful in embedded applications, where are strong
44           requirements for timing.
45           Say N here, unless you have a specialized requirement.
46
47 endif