Merge branch 'drm-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/airlied...
[sfrench/cifs-2.6.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 config ARCH_MXC91231
38         bool "MXC91231-based"
39         select CPU_V6
40         select COMMON_CLKDEV
41         help
42           This enables support for systems based on the Freescale MXC91231 family
43
44 endchoice
45
46 source "arch/arm/mach-mx1/Kconfig"
47 source "arch/arm/mach-mx2/Kconfig"
48 source "arch/arm/mach-mx3/Kconfig"
49 source "arch/arm/mach-mx25/Kconfig"
50 source "arch/arm/mach-mxc91231/Kconfig"
51
52 endmenu
53
54 config MXC_IRQ_PRIOR
55         bool "Use IRQ priority"
56         depends on ARCH_MXC
57         help
58           Select this if you want to use prioritized IRQ handling.
59           This feature prevents higher priority ISR to be interrupted
60           by lower priority IRQ even IRQF_DISABLED flag is not set.
61           This may be useful in embedded applications, where are strong
62           requirements for timing.
63           Say N here, unless you have a specialized requirement.
64
65 config MXC_PWM
66         tristate "Enable PWM driver"
67         depends on ARCH_MXC
68         select HAVE_PWM
69         help
70           Enable support for the i.MX PWM controller(s).
71
72 config MXC_ULPI
73         bool
74
75 config ARCH_HAS_RNGA
76         bool
77         depends on ARCH_MXC
78
79 config ARCH_MXC_IOMUX_V3
80         bool
81
82 config ARCH_MXC_AUDMUX_V1
83         bool
84
85 config ARCH_MXC_AUDMUX_V2
86         bool
87
88 endif