blob: 502e45f03178a7e4821248eb85b30229ff84ad9c [file] [log] [blame]
Quinn Jensen52c543f2007-07-09 22:06:53 +01001if ARCH_MXC
2
Uwe Kleine-König66384ee2010-06-15 18:14:19 +02003source "arch/arm/plat-mxc/devices/Kconfig"
4
Quinn Jensen52c543f2007-07-09 22:06:53 +01005menu "Freescale MXC Implementations"
6
7choice
Holger Schurig6bbdbf22009-01-29 14:42:25 +01008 prompt "Freescale CPU family:"
Robert Schwebeld2db9aa2008-04-02 10:29:30 +01009 default ARCH_MX3
Quinn Jensen52c543f2007-07-09 22:06:53 +010010
Sascha Hauerae4fa7f2011-08-23 09:39:35 +020011config ARCH_IMX_V4_V5
12 bool "i.MX1, i.MX21, i.MX25, i.MX27"
13 select AUTO_ZRELADDR
14 select ARM_PATCH_PHYS_VIRT
Paulius Zaleckascfca8b52008-11-14 11:01:38 +010015 help
Sascha Hauerae4fa7f2011-08-23 09:39:35 +020016 This enables support for systems based on the Freescale i.MX ARMv4
17 and ARMv5 SoCs
Sascha Hauer8c25c362009-06-04 11:32:12 +020018
Quinn Jensen52c543f2007-07-09 22:06:53 +010019config ARCH_MX3
20 bool "MX3-based"
21 help
22 This enables support for systems based on the Freescale i.MX3 family
23
Sascha Hauer7409cd12011-08-24 08:54:04 +020024config ARCH_MX5
25 bool "i.MX50, i.MX51, i.MX53"
26 select AUTO_ZRELADDR
27 select ARM_PATCH_PHYS_VIRT
Uwe Kleine-König7db4d882011-04-08 11:06:43 +020028 help
29 This enables support for machines using Freescale's i.MX50 and i.MX51
30 processors.
31
Quinn Jensen52c543f2007-07-09 22:06:53 +010032endchoice
33
Uwe Kleine-Königd1091672010-06-10 15:11:13 +020034source "arch/arm/mach-imx/Kconfig"
Amit Kucheriab996b582010-02-02 11:57:53 -080035source "arch/arm/mach-mx5/Kconfig"
Quinn Jensen52c543f2007-07-09 22:06:53 +010036
37endmenu
38
Darius Augulis479c9012008-09-09 11:29:41 +020039config MXC_IRQ_PRIOR
40 bool "Use IRQ priority"
Darius Augulis479c9012008-09-09 11:29:41 +020041 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
Amit Kucheriaa0037082009-12-03 22:36:41 +020049config MXC_TZIC
Sascha Hauerec4bb252010-11-05 09:47:21 +010050 bool
Amit Kucheriaa0037082009-12-03 22:36:41 +020051
Sascha Hauerc7259df2010-11-05 09:37:22 +010052config MXC_AVIC
53 bool
54
Sascha Hauer166091b2009-01-16 15:17:16 +010055config MXC_PWM
56 tristate "Enable PWM driver"
Holger Schurigc010dba2009-04-14 12:50:20 +020057 select HAVE_PWM
Sascha Hauer166091b2009-01-16 15:17:16 +010058 help
59 Enable support for the i.MX PWM controller(s).
60
Jason Wangfa94f8d2010-06-24 21:11:28 +080061config 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
Sascha Hauerf2b89012010-08-19 14:08:04 +020072config HAVE_EPIT
73 bool
74
75config 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
Daniel Mackf4f8bda2009-11-05 09:44:09 +010084config MXC_ULPI
85 bool
86
Alan Carvalho de Assis45001e92009-04-02 12:38:41 -030087config ARCH_HAS_RNGA
88 bool
Alan Carvalho de Assis45001e92009-04-02 12:38:41 -030089
Uwe Kleine-König5e2e95f2010-02-15 09:42:59 +010090config IMX_HAVE_IOMUX_V1
91 bool
92
Sascha Hauerbca6ef12009-04-01 11:11:48 +020093config ARCH_MXC_IOMUX_V3
94 bool
Sascha Hauer9eedbdf2009-10-29 17:12:39 +010095
96config ARCH_MXC_AUDMUX_V1
97 bool
98
99config ARCH_MXC_AUDMUX_V2
100 bool
101
Dinh Nguyen68a2f732010-10-12 11:29:01 -0500102config IRAM_ALLOC
103 bool
104 select GENERIC_ALLOCATOR
105
Quinn Jensen52c543f2007-07-09 22:06:53 +0100106endif