imxfb: add support for i.MX25
[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         select HAVE_FB_IMX
28         help
29           This enables support for systems based on the Freescale i.MX25 family
30
31 config ARCH_MX3
32         bool "MX3-based"
33         select CPU_V6
34         select COMMON_CLKDEV
35         help
36           This enables support for systems based on the Freescale i.MX3 family
37
38 config ARCH_MXC91231
39         bool "MXC91231-based"
40         select CPU_V6
41         select COMMON_CLKDEV
42         help
43           This enables support for systems based on the Freescale MXC91231 family
44
45 config ARCH_MX5
46         bool "MX5-based"
47         select CPU_V7
48         select COMMON_CLKDEV
49         help
50           This enables support for systems based on the Freescale i.MX51 family
51
52 endchoice
53
54 source "arch/arm/mach-mx1/Kconfig"
55 source "arch/arm/mach-mx2/Kconfig"
56 source "arch/arm/mach-mx3/Kconfig"
57 source "arch/arm/mach-mx25/Kconfig"
58 source "arch/arm/mach-mxc91231/Kconfig"
59 source "arch/arm/mach-mx5/Kconfig"
60
61 endmenu
62
63 config MXC_IRQ_PRIOR
64         bool "Use IRQ priority"
65         depends on ARCH_MXC
66         help
67           Select this if you want to use prioritized IRQ handling.
68           This feature prevents higher priority ISR to be interrupted
69           by lower priority IRQ even IRQF_DISABLED flag is not set.
70           This may be useful in embedded applications, where are strong
71           requirements for timing.
72           Say N here, unless you have a specialized requirement.
73
74 config MXC_TZIC
75         bool "Enable TrustZone Interrupt Controller"
76         depends on ARCH_MX51
77         help
78           This will be automatically selected for all processors
79           containing this interrupt controller.
80           Say N here only if you are really sure.
81
82 config MXC_PWM
83         tristate "Enable PWM driver"
84         depends on ARCH_MXC
85         select HAVE_PWM
86         help
87           Enable support for the i.MX PWM controller(s).
88
89 config MXC_ULPI
90         bool
91
92 config ARCH_HAS_RNGA
93         bool
94         depends on ARCH_MXC
95
96 config ARCH_MXC_IOMUX_V3
97         bool
98
99 config ARCH_MXC_AUDMUX_V1
100         bool
101
102 config ARCH_MXC_AUDMUX_V2
103         bool
104
105 endif