Kconfig 2.6 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
H
Holger Schurig 已提交
8
	prompt "Freescale CPU family:"
9
	default ARCH_MX3
10

P
Paulius Zaleckas 已提交
11 12
config ARCH_MX1
	bool "MX1-based"
13
	select SOC_IMX1
P
Paulius Zaleckas 已提交
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

S
Sascha Hauer 已提交
22 23 24
config ARCH_MX25
	bool "MX25-based"
	select CPU_ARM926T
25
	select ARCH_MXC_IOMUX_V3
B
Baruch Siach 已提交
26
	select HAVE_FB_IMX
27
	select ARCH_MXC_AUDMUX_V2
S
Sascha Hauer 已提交
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
config ARCH_MX5
	bool "MX5-based"
	select CPU_V7
46
	select ARM_L1_CACHE_SHIFT_6
47 48 49
	help
	  This enables support for systems based on the Freescale i.MX51 family

50 51
endchoice

52
source "arch/arm/mach-imx/Kconfig"
53
source "arch/arm/mach-mx3/Kconfig"
S
Sascha Hauer 已提交
54
source "arch/arm/mach-mx25/Kconfig"
55
source "arch/arm/mach-mxc91231/Kconfig"
56
source "arch/arm/mach-mx5/Kconfig"
57 58 59

endmenu

60 61 62 63 64 65 66 67 68 69
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.

70 71 72 73 74 75 76 77
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.

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

84 85 86 87 88 89 90 91 92 93 94
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.

D
Daniel Mack 已提交
95 96 97
config MXC_ULPI
	bool

98 99 100
config ARCH_HAS_RNGA
	bool

101 102 103
config IMX_HAVE_IOMUX_V1
	bool

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

config ARCH_MXC_AUDMUX_V1
	bool

config ARCH_MXC_AUDMUX_V2
	bool

113
endif