blob: b2a7e3fad117f44c97160c191ab8e34eff66dc0a [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
Juergen Beisert1bd55a42008-07-05 10:03:02 +02009config ARCH_MX2
10 bool "MX2-based"
11 help
12 This enables support for systems based on the Freescale i.MX2 family
13
Quinn Jensen52c543f2007-07-09 22:06:53 +010014config ARCH_MX3
15 bool "MX3-based"
16 help
17 This enables support for systems based on the Freescale i.MX3 family
18
19endchoice
20
Juergen Beisert1bd55a42008-07-05 10:03:02 +020021source "arch/arm/mach-mx2/Kconfig"
Quinn Jensen52c543f2007-07-09 22:06:53 +010022source "arch/arm/mach-mx3/Kconfig"
23
24endmenu
25
Darius Augulis479c9012008-09-09 11:29:41 +020026config MXC_IRQ_PRIOR
27 bool "Use IRQ priority"
28 depends on ARCH_MXC
29 help
30 Select this if you want to use prioritized IRQ handling.
31 This feature prevents higher priority ISR to be interrupted
32 by lower priority IRQ even IRQF_DISABLED flag is not set.
33 This may be useful in embedded applications, where are strong
34 requirements for timing.
35 Say N here, unless you have a specialized requirement.
36
Quinn Jensen52c543f2007-07-09 22:06:53 +010037endif