Merge branch 'misc' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild-2.6
[pandora-kernel.git] / arch / arm / plat-mxc / Kconfig
1 if ARCH_MXC
2
3 source "arch/arm/plat-mxc/devices/Kconfig"
4
5 menu "Freescale MXC Implementations"
6
7 choice
8         prompt "Freescale CPU family:"
9         default ARCH_MX3
10
11 config ARCH_MX1
12         bool "MX1-based"
13         select SOC_IMX1
14         help
15           This enables support for systems based on the Freescale i.MX1 family
16
17 config ARCH_MX2
18         bool "MX2-based"
19         help
20           This enables support for systems based on the Freescale i.MX2 family
21
22 config ARCH_MX25
23         bool "MX25-based"
24         select CPU_ARM926T
25         select ARCH_MXC_IOMUX_V3
26         select HAVE_FB_IMX
27         select ARCH_MXC_AUDMUX_V2
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         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         help
41           This enables support for systems based on the Freescale MXC91231 family
42
43 config ARCH_MX5
44         bool "MX5-based"
45         select CPU_V7
46         select ARM_L1_CACHE_SHIFT_6
47         help
48           This enables support for systems based on the Freescale i.MX51 family
49
50 endchoice
51
52 source "arch/arm/mach-imx/Kconfig"
53 source "arch/arm/mach-mx3/Kconfig"
54 source "arch/arm/mach-mx25/Kconfig"
55 source "arch/arm/mach-mxc91231/Kconfig"
56 source "arch/arm/mach-mx5/Kconfig"
57
58 endmenu
59
60 config MXC_IRQ_PRIOR
61         bool "Use IRQ priority"
62         help
63           Select this if you want to use prioritized IRQ handling.
64           This feature prevents higher priority ISR to be interrupted
65           by lower priority IRQ even IRQF_DISABLED flag is not set.
66           This may be useful in embedded applications, where are strong
67           requirements for timing.
68           Say N here, unless you have a specialized requirement.
69
70 config MXC_TZIC
71         bool "Enable TrustZone Interrupt Controller"
72         depends on ARCH_MX51
73         help
74           This will be automatically selected for all processors
75           containing this interrupt controller.
76           Say N here only if you are really sure.
77
78 config MXC_PWM
79         tristate "Enable PWM driver"
80         select HAVE_PWM
81         help
82           Enable support for the i.MX PWM controller(s).
83
84 config MXC_DEBUG_BOARD
85         bool "Enable MXC debug board(for 3-stack)"
86         help
87           The debug board is an integral part of the MXC 3-stack(PDK)
88           platforms, it can be attached or removed from the peripheral
89           board. On debug board, several debug devices(ethernet, UART,
90           buttons, LEDs and JTAG) are implemented. Between the MCU and
91           these devices, a CPLD is added as a bridge which performs
92           data/address de-multiplexing and decode, signal level shift,
93           interrupt control and various board functions.
94
95 config HAVE_EPIT
96         bool
97
98 config MXC_USE_EPIT
99         bool "Use EPIT instead of GPT"
100         depends on HAVE_EPIT
101         help
102           Use EPIT as the system timer on systems that have it. Normally you
103           don't have a reason to do so as the EPIT has the same features and
104           uses the same clocks as the GPT. Anyway, on some systems the GPT
105           may be in use for other purposes.
106
107 config MXC_ULPI
108         bool
109
110 config ARCH_HAS_RNGA
111         bool
112
113 config IMX_HAVE_IOMUX_V1
114         bool
115
116 config ARCH_MXC_IOMUX_V3
117         bool
118
119 config ARCH_MXC_AUDMUX_V1
120         bool
121
122 config ARCH_MXC_AUDMUX_V2
123         bool
124
125 config IRAM_ALLOC
126         bool
127         select GENERIC_ALLOCATOR
128
129 endif