blob: 0617c19f85cbd8e8d5554004b7ea8b3ecdf072c3 [file] [log] [blame]
Quinn Jensen52c543f2007-07-09 22:06:53 +01001if ARCH_MXC
2
3menu "Freescale MXC Implementations"
4
5choice
Holger Schurig6bbdbf22009-01-29 14:42:25 +01006 prompt "Freescale CPU family:"
Robert Schwebeld2db9aa2008-04-02 10:29:30 +01007 default ARCH_MX3
Quinn Jensen52c543f2007-07-09 22:06:53 +01008
Paulius Zaleckascfca8b52008-11-14 11:01:38 +01009config ARCH_MX1
10 bool "MX1-based"
Sascha Hauer2955de52008-12-18 09:32:23 +010011 select CPU_ARM920T
Sascha Hauer7dae1132009-02-07 13:34:01 +010012 select COMMON_CLKDEV
Paulius Zaleckascfca8b52008-11-14 11:01:38 +010013 help
14 This enables support for systems based on the Freescale i.MX1 family
15
Juergen Beisert1bd55a42008-07-05 10:03:02 +020016config ARCH_MX2
17 bool "MX2-based"
Russell Kingc7508152008-10-26 10:55:14 +000018 select CPU_ARM926T
Sascha Haueredfcea82009-02-16 15:13:43 +010019 select COMMON_CLKDEV
Juergen Beisert1bd55a42008-07-05 10:03:02 +020020 help
21 This enables support for systems based on the Freescale i.MX2 family
22
Quinn Jensen52c543f2007-07-09 22:06:53 +010023config ARCH_MX3
24 bool "MX3-based"
Russell Kingc7508152008-10-26 10:55:14 +000025 select CPU_V6
Sascha Hauer9eb2eb82009-02-18 11:55:33 +010026 select COMMON_CLKDEV
Quinn Jensen52c543f2007-07-09 22:06:53 +010027 help
28 This enables support for systems based on the Freescale i.MX3 family
29
30endchoice
31
Paulius Zaleckascfca8b52008-11-14 11:01:38 +010032source "arch/arm/mach-mx1/Kconfig"
Juergen Beisert1bd55a42008-07-05 10:03:02 +020033source "arch/arm/mach-mx2/Kconfig"
Quinn Jensen52c543f2007-07-09 22:06:53 +010034source "arch/arm/mach-mx3/Kconfig"
35
36endmenu
37
Darius Augulis479c9012008-09-09 11:29:41 +020038config MXC_IRQ_PRIOR
39 bool "Use IRQ priority"
40 depends on ARCH_MXC
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
Sascha Hauer166091b2009-01-16 15:17:16 +010049config MXC_PWM
50 tristate "Enable PWM driver"
51 depends on ARCH_MXC
Holger Schurigc010dba2009-04-14 12:50:20 +020052 select HAVE_PWM
Sascha Hauer166091b2009-01-16 15:17:16 +010053 help
54 Enable support for the i.MX PWM controller(s).
55
Alan Carvalho de Assis45001e92009-04-02 12:38:41 -030056config ARCH_HAS_RNGA
57 bool
58 depends on ARCH_MXC
59
Sascha Hauerbca6ef12009-04-01 11:11:48 +020060config ARCH_MXC_IOMUX_V3
61 bool
Quinn Jensen52c543f2007-07-09 22:06:53 +010062endif