blob: 16cb07cd91623b63096f5e76d9325d3040a12a21 [file] [log] [blame]
Quinn Jensen52c543f2007-07-09 22:06:53 +01001if ARCH_MXC
2
3menu "Freescale MXC Implementations"
4
5choice
Juergen Beisert1bd55a42008-07-05 10:03:02 +02006 prompt "MXC/iMX Base Type"
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"
11 help
12 This enables support for systems based on the Freescale i.MX1 family
13
Juergen Beisert1bd55a42008-07-05 10:03:02 +020014config ARCH_MX2
15 bool "MX2-based"
Russell Kingc7508152008-10-26 10:55:14 +000016 select CPU_ARM926T
Juergen Beisert1bd55a42008-07-05 10:03:02 +020017 help
18 This enables support for systems based on the Freescale i.MX2 family
19
Quinn Jensen52c543f2007-07-09 22:06:53 +010020config ARCH_MX3
21 bool "MX3-based"
Russell Kingc7508152008-10-26 10:55:14 +000022 select CPU_V6
Quinn Jensen52c543f2007-07-09 22:06:53 +010023 help
24 This enables support for systems based on the Freescale i.MX3 family
25
26endchoice
27
Paulius Zaleckascfca8b52008-11-14 11:01:38 +010028source "arch/arm/mach-mx1/Kconfig"
Juergen Beisert1bd55a42008-07-05 10:03:02 +020029source "arch/arm/mach-mx2/Kconfig"
Quinn Jensen52c543f2007-07-09 22:06:53 +010030source "arch/arm/mach-mx3/Kconfig"
31
32endmenu
33
Darius Augulis479c9012008-09-09 11:29:41 +020034config MXC_IRQ_PRIOR
35 bool "Use IRQ priority"
36 depends on ARCH_MXC
37 help
38 Select this if you want to use prioritized IRQ handling.
39 This feature prevents higher priority ISR to be interrupted
40 by lower priority IRQ even IRQF_DISABLED flag is not set.
41 This may be useful in embedded applications, where are strong
42 requirements for timing.
43 Say N here, unless you have a specialized requirement.
44
Quinn Jensen52c543f2007-07-09 22:06:53 +010045endif