Kconfig 2.57 KB
Newer Older
1 2
if ARCH_MXC

3 4
source "arch/arm/plat-mxc/devices/Kconfig"

5 6 7
menu "Freescale MXC Implementations"

choice
8
	prompt "Freescale CPU family:"
9
	default ARCH_MX3
10

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

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

Sascha Hauer's avatar
Sascha Hauer committed
22 23 24
config ARCH_MX25
	bool "MX25-based"
	select CPU_ARM926T
25
	select ARCH_MXC_IOMUX_V3
Baruch Siach's avatar
Baruch Siach committed
26
	select HAVE_FB_IMX
27
	select ARCH_MXC_AUDMUX_V2
Sascha Hauer's avatar
Sascha Hauer committed
28 29 30
	help
	  This enables support for systems based on the Freescale i.MX25 family

31 32
config ARCH_MX3
	bool "MX3-based"
33
	select CPU_V6
34 35 36
	help
	  This enables support for systems based on the Freescale i.MX3 family

37 38 39 40 41 42
config ARCH_MXC91231
	bool "MXC91231-based"
	select CPU_V6
	help
	  This enables support for systems based on the Freescale MXC91231 family

43 44 45 46 47 48
config ARCH_MX5
	bool "MX5-based"
	select CPU_V7
	help
	  This enables support for systems based on the Freescale i.MX51 family

49 50
endchoice

51
source "arch/arm/mach-imx/Kconfig"
52
source "arch/arm/mach-mx3/Kconfig"
Sascha Hauer's avatar
Sascha Hauer committed
53
source "arch/arm/mach-mx25/Kconfig"
54
source "arch/arm/mach-mxc91231/Kconfig"
55
source "arch/arm/mach-mx5/Kconfig"
56 57 58

endmenu

59 60 61 62 63 64 65 66 67 68
config MXC_IRQ_PRIOR
	bool "Use IRQ priority"
	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.

69 70 71 72 73 74 75 76
config MXC_TZIC
	bool "Enable TrustZone Interrupt Controller"
	depends on ARCH_MX51
	help
	  This will be automatically selected for all processors
	  containing this interrupt controller.
	  Say N here only if you are really sure.

77 78
config MXC_PWM
	tristate "Enable PWM driver"
79
	select HAVE_PWM
80 81 82
	help
	  Enable support for the i.MX PWM controller(s).

83 84 85 86 87 88 89 90 91 92 93
config MXC_DEBUG_BOARD
	bool "Enable MXC debug board(for 3-stack)"
	help
	  The debug board is an integral part of the MXC 3-stack(PDK)
	  platforms, it can be attached or removed from the peripheral
	  board. On debug board, several debug devices(ethernet, UART,
	  buttons, LEDs and JTAG) are implemented. Between the MCU and
	  these devices, a CPLD is added as a bridge which performs
	  data/address de-multiplexing and decode, signal level shift,
	  interrupt control and various board functions.

94 95 96
config MXC_ULPI
	bool

97 98 99
config ARCH_HAS_RNGA
	bool

100 101 102
config IMX_HAVE_IOMUX_V1
	bool

103 104
config ARCH_MXC_IOMUX_V3
	bool
105 106 107 108 109 110 111

config ARCH_MXC_AUDMUX_V1
	bool

config ARCH_MXC_AUDMUX_V2
	bool

112
endif