Kconfig 1.67 KB
Newer Older
1 2 3 4 5
if ARCH_MXC

menu "Freescale MXC Implementations"

choice
6
	prompt "Freescale CPU family:"
7
	default ARCH_MX3
8

Paulius Zaleckas's avatar
Paulius Zaleckas committed
9 10
config ARCH_MX1
	bool "MX1-based"
11
	select CPU_ARM920T
Paulius Zaleckas's avatar
Paulius Zaleckas committed
12 13 14
	help
	  This enables support for systems based on the Freescale i.MX1 family

15 16
config ARCH_MX2
	bool "MX2-based"
17
	select CPU_ARM926T
18 19 20
	help
	  This enables support for systems based on the Freescale i.MX2 family

Sascha Hauer's avatar
Sascha Hauer committed
21 22 23 24 25 26
config ARCH_MX25
	bool "MX25-based"
	select CPU_ARM926T
	help
	  This enables support for systems based on the Freescale i.MX25 family

27 28
config ARCH_MX3
	bool "MX3-based"
29
	select CPU_V6
30 31 32
	help
	  This enables support for systems based on the Freescale i.MX3 family

33 34 35 36 37 38
config ARCH_MXC91231
	bool "MXC91231-based"
	select CPU_V6
	help
	  This enables support for systems based on the Freescale MXC91231 family

39 40
endchoice

Paulius Zaleckas's avatar
Paulius Zaleckas committed
41
source "arch/arm/mach-mx1/Kconfig"
42
source "arch/arm/mach-mx2/Kconfig"
43
source "arch/arm/mach-mx3/Kconfig"
Sascha Hauer's avatar
Sascha Hauer committed
44
source "arch/arm/mach-mx25/Kconfig"
45
source "arch/arm/mach-mxc91231/Kconfig"
46 47 48

endmenu

49 50 51 52 53 54 55 56 57 58 59
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.

60 61 62
config MXC_PWM
	tristate "Enable PWM driver"
	depends on ARCH_MXC
63
	select HAVE_PWM
64 65 66
	help
	  Enable support for the i.MX PWM controller(s).

67 68 69
config MXC_ULPI
	bool

70 71 72 73
config ARCH_HAS_RNGA
	bool
	depends on ARCH_MXC

74 75
config ARCH_MXC_IOMUX_V3
	bool
76 77 78 79 80 81 82

config ARCH_MXC_AUDMUX_V1
	bool

config ARCH_MXC_AUDMUX_V2
	bool

83
endif