]> bbs.cooldavid.org Git - net-next-2.6.git/blob - arch/arm/plat-mxc/Kconfig
mxc: TrustZone interrupt controller (TZIC) for Freescale i.MX5 family
[net-next-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_TZIC
66         bool "Enable TrustZone Interrupt Controller"
67         depends on ARCH_MX51
68         help
69           This will be automatically selected for all processors
70           containing this interrupt controller.
71           Say N here only if you are really sure.
72
73 config MXC_PWM
74         tristate "Enable PWM driver"
75         depends on ARCH_MXC
76         select HAVE_PWM
77         help
78           Enable support for the i.MX PWM controller(s).
79
80 config MXC_ULPI
81         bool
82
83 config ARCH_HAS_RNGA
84         bool
85         depends on ARCH_MXC
86
87 config ARCH_MXC_IOMUX_V3
88         bool
89
90 config ARCH_MXC_AUDMUX_V1
91         bool
92
93 config ARCH_MXC_AUDMUX_V2
94         bool
95
96 endif