2007-07-09 21:06:53 +00:00
|
|
|
if ARCH_MXC
|
|
|
|
|
|
|
|
menu "Freescale MXC Implementations"
|
|
|
|
|
|
|
|
choice
|
2009-01-29 13:42:25 +00:00
|
|
|
prompt "Freescale CPU family:"
|
2008-04-02 09:29:30 +00:00
|
|
|
default ARCH_MX3
|
2007-07-09 21:06:53 +00:00
|
|
|
|
2008-11-14 10:01:38 +00:00
|
|
|
config ARCH_MX1
|
|
|
|
bool "MX1-based"
|
2008-12-18 08:32:23 +00:00
|
|
|
select CPU_ARM920T
|
2009-02-07 12:34:01 +00:00
|
|
|
select COMMON_CLKDEV
|
2008-11-14 10:01:38 +00:00
|
|
|
help
|
|
|
|
This enables support for systems based on the Freescale i.MX1 family
|
|
|
|
|
2008-07-05 08:03:02 +00:00
|
|
|
config ARCH_MX2
|
|
|
|
bool "MX2-based"
|
2008-10-26 10:55:14 +00:00
|
|
|
select CPU_ARM926T
|
2009-02-16 14:13:43 +00:00
|
|
|
select COMMON_CLKDEV
|
2008-07-05 08:03:02 +00:00
|
|
|
help
|
|
|
|
This enables support for systems based on the Freescale i.MX2 family
|
|
|
|
|
2009-06-04 09:32:12 +00:00
|
|
|
config ARCH_MX25
|
|
|
|
bool "MX25-based"
|
|
|
|
select CPU_ARM926T
|
|
|
|
select COMMON_CLKDEV
|
|
|
|
help
|
|
|
|
This enables support for systems based on the Freescale i.MX25 family
|
|
|
|
|
2007-07-09 21:06:53 +00:00
|
|
|
config ARCH_MX3
|
|
|
|
bool "MX3-based"
|
2008-10-26 10:55:14 +00:00
|
|
|
select CPU_V6
|
2009-02-18 10:55:33 +00:00
|
|
|
select COMMON_CLKDEV
|
2007-07-09 21:06:53 +00:00
|
|
|
help
|
|
|
|
This enables support for systems based on the Freescale i.MX3 family
|
|
|
|
|
2009-07-31 11:29:22 +00:00
|
|
|
config ARCH_MXC91231
|
|
|
|
bool "MXC91231-based"
|
|
|
|
select CPU_V6
|
|
|
|
select COMMON_CLKDEV
|
|
|
|
help
|
|
|
|
This enables support for systems based on the Freescale MXC91231 family
|
|
|
|
|
2007-07-09 21:06:53 +00:00
|
|
|
endchoice
|
|
|
|
|
2008-11-14 10:01:38 +00:00
|
|
|
source "arch/arm/mach-mx1/Kconfig"
|
2008-07-05 08:03:02 +00:00
|
|
|
source "arch/arm/mach-mx2/Kconfig"
|
2007-07-09 21:06:53 +00:00
|
|
|
source "arch/arm/mach-mx3/Kconfig"
|
2009-06-04 09:32:12 +00:00
|
|
|
source "arch/arm/mach-mx25/Kconfig"
|
2009-07-31 11:29:22 +00:00
|
|
|
source "arch/arm/mach-mxc91231/Kconfig"
|
2007-07-09 21:06:53 +00:00
|
|
|
|
|
|
|
endmenu
|
|
|
|
|
2008-09-09 09:29:41 +00:00
|
|
|
config MXC_IRQ_PRIOR
|
|
|
|
bool "Use IRQ priority"
|
|
|
|
depends on ARCH_MXC
|
|
|
|
help
|
|
|
|
Select this if you want to use prioritized IRQ handling.
|
|
|
|
This feature prevents higher priority ISR to be interrupted
|
|
|
|
by lower priority IRQ even IRQF_DISABLED flag is not set.
|
|
|
|
This may be useful in embedded applications, where are strong
|
|
|
|
requirements for timing.
|
|
|
|
Say N here, unless you have a specialized requirement.
|
|
|
|
|
2009-01-16 14:17:16 +00:00
|
|
|
config MXC_PWM
|
|
|
|
tristate "Enable PWM driver"
|
|
|
|
depends on ARCH_MXC
|
2009-04-14 10:50:20 +00:00
|
|
|
select HAVE_PWM
|
2009-01-16 14:17:16 +00:00
|
|
|
help
|
|
|
|
Enable support for the i.MX PWM controller(s).
|
|
|
|
|
2009-04-02 15:38:41 +00:00
|
|
|
config ARCH_HAS_RNGA
|
|
|
|
bool
|
|
|
|
depends on ARCH_MXC
|
|
|
|
|
2009-04-01 09:11:48 +00:00
|
|
|
config ARCH_MXC_IOMUX_V3
|
|
|
|
bool
|
2007-07-09 21:06:53 +00:00
|
|
|
endif
|