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