Merge branch 'depends/rmk/gpio' into next/devel
[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_IMX_V4_V5
12         bool "i.MX1, i.MX21, i.MX25, i.MX27"
13         select AUTO_ZRELADDR
14         select ARM_PATCH_PHYS_VIRT
15         help
16           This enables support for systems based on the Freescale i.MX ARMv4
17           and ARMv5 SoCs
18
19 config ARCH_MX3
20         bool "MX3-based"
21         help
22           This enables support for systems based on the Freescale i.MX3 family
23
24 config ARCH_MX5
25         bool "i.MX50, i.MX51, i.MX53"
26         select AUTO_ZRELADDR
27         select ARM_PATCH_PHYS_VIRT
28         help
29           This enables support for machines using Freescale's i.MX50 and i.MX51
30           processors.
31
32 endchoice
33
34 source "arch/arm/mach-imx/Kconfig"
35 source "arch/arm/mach-mx5/Kconfig"
36
37 endmenu
38
39 config MXC_IRQ_PRIOR
40         bool "Use IRQ priority"
41         help
42           Select this if you want to use prioritized IRQ handling.
43           This feature prevents higher priority ISR to be interrupted
44           by lower priority IRQ even IRQF_DISABLED flag is not set.
45           This may be useful in embedded applications, where are strong
46           requirements for timing.
47           Say N here, unless you have a specialized requirement.
48
49 config MXC_TZIC
50         bool
51
52 config MXC_AVIC
53         bool
54
55 config MXC_PWM
56         tristate "Enable PWM driver"
57         select HAVE_PWM
58         help
59           Enable support for the i.MX PWM controller(s).
60
61 config MXC_DEBUG_BOARD
62         bool "Enable MXC debug board(for 3-stack)"
63         help
64           The debug board is an integral part of the MXC 3-stack(PDK)
65           platforms, it can be attached or removed from the peripheral
66           board. On debug board, several debug devices(ethernet, UART,
67           buttons, LEDs and JTAG) are implemented. Between the MCU and
68           these devices, a CPLD is added as a bridge which performs
69           data/address de-multiplexing and decode, signal level shift,
70           interrupt control and various board functions.
71
72 config HAVE_EPIT
73         bool
74
75 config MXC_USE_EPIT
76         bool "Use EPIT instead of GPT"
77         depends on HAVE_EPIT
78         help
79           Use EPIT as the system timer on systems that have it. Normally you
80           don't have a reason to do so as the EPIT has the same features and
81           uses the same clocks as the GPT. Anyway, on some systems the GPT
82           may be in use for other purposes.
83
84 config MXC_ULPI
85         bool
86
87 config ARCH_HAS_RNGA
88         bool
89
90 config IMX_HAVE_IOMUX_V1
91         bool
92
93 config ARCH_MXC_IOMUX_V3
94         bool
95
96 config ARCH_MXC_AUDMUX_V1
97         bool
98
99 config ARCH_MXC_AUDMUX_V2
100         bool
101
102 config IRAM_ALLOC
103         bool
104         select GENERIC_ALLOCATOR
105
106 endif