Kconfig 3.6 KB
Newer Older
1 2 3
config IMX_HAVE_DMA_V1
	bool

4 5
if ARCH_MX1

6 7
config SOC_IMX1
	select CPU_ARM920T
8
	select IMX_HAVE_DMA_V1
9 10 11
	select IMX_HAVE_IOMUX_V1
	bool

12 13 14 15 16 17 18
comment "MX1 platforms:"
config MACH_MXLADS
	bool

config ARCH_MX1ADS
	bool "MX1ADS platform"
	select MACH_MXLADS
19
	select IMX_HAVE_PLATFORM_IMX_I2C
20 21 22 23 24 25 26 27 28 29
	help
	  Say Y here if you are using Motorola MX1ADS/MXLADS boards

config MACH_SCB9328
	bool "Synertronixx scb9328"
	help
	  Say Y here if you are using a Synertronixx scb9328 board

endif

H
Holger Schurig 已提交
30
if ARCH_MX2
31

32 33 34
config SOC_IMX21
	select CPU_ARM926T
	select ARCH_MXC_AUDMUX_V1
35
	select IMX_HAVE_DMA_V1
36 37 38 39 40 41
	select IMX_HAVE_IOMUX_V1
	bool

config SOC_IMX27
	select CPU_ARM926T
	select ARCH_MXC_AUDMUX_V1
42
	select IMX_HAVE_DMA_V1
43 44 45
	select IMX_HAVE_IOMUX_V1
	bool

46
choice
H
Holger Schurig 已提交
47
	prompt "CPUs:"
48 49 50 51
	default MACH_MX21

config MACH_MX21
	bool "i.MX21 support"
52
	select SOC_IMX21
53 54 55
	help
	  This enables support for Freescale's MX2 based i.MX21 processor.

56 57
config MACH_MX27
	bool "i.MX27 support"
58
	select SOC_IMX27
59 60 61
	help
	  This enables support for Freescale's MX2 based i.MX27 processor.

62 63
endchoice

64 65 66 67 68
endif

if MACH_MX21

comment "MX21 platforms:"
69

I
Ivo Clarysse 已提交
70 71
config MACH_MX21ADS
	bool "MX21ADS platform"
72
	select IMX_HAVE_PLATFORM_MXC_NAND
I
Ivo Clarysse 已提交
73 74 75 76
	help
	  Include support for MX21ADS platform. This includes specific
	  configurations for the board and its peripherals.

77 78 79 80 81 82
endif

if MACH_MX27

comment "MX27 platforms:"

83 84
config MACH_MX27ADS
	bool "MX27ADS platform"
85
	select IMX_HAVE_PLATFORM_MXC_NAND
86 87 88
	help
	  Include support for MX27ADS platform. This includes specific
	  configurations for the board and its peripherals.
89 90 91

config MACH_PCM038
	bool "Phytec phyCORE-i.MX27 CPU module (pcm038)"
92
	select IMX_HAVE_PLATFORM_MXC_NAND
S
Sascha Hauer 已提交
93
	select MXC_ULPI if USB_ULPI
94 95 96
	help
	  Include support for phyCORE-i.MX27 (aka pcm038) platform. This
	  includes specific configurations for the module and its peripherals.
97 98 99 100 101 102 103 104 105 106 107 108 109 110

choice
	prompt "Baseboard"
	depends on MACH_PCM038
	default MACH_PCM970_BASEBOARD

config MACH_PCM970_BASEBOARD
	prompt "PHYTEC PCM970 development board"
	bool
	help
	  This adds board specific devices that can be found on Phytec's
	  PCM970 evaluation board.

endchoice
H
Holger Schurig 已提交
111

112
config MACH_CPUIMX27
E
Eric Benard 已提交
113
	bool "Eukrea CPUIMX27 module"
114
	select IMX_HAVE_PLATFORM_MXC_NAND
E
Eric Benard 已提交
115 116 117 118 119 120
	help
	  Include support for Eukrea CPUIMX27 platform. This includes
	  specific configurations for the module and its peripherals.

config MACH_EUKREA_CPUIMX27_USESDHC2
	bool "CPUIMX27 integrates SDHC2 module"
121
	depends on MACH_CPUIMX27
E
Eric Benard 已提交
122 123 124 125
	help
	  This adds support for the internal SDHC2 used on CPUIMX27 used
	  for wifi or eMMC.

E
Eric Benard 已提交
126 127
choice
	prompt "Baseboard"
128
	depends on MACH_CPUIMX27
E
Eric Benard 已提交
129 130 131 132 133 134 135 136 137 138 139
	default MACH_EUKREA_MBIMX27_BASEBOARD

config MACH_EUKREA_MBIMX27_BASEBOARD
	prompt "Eukrea MBIMX27 development board"
	bool
	help
	  This adds board specific devices that can be found on Eukrea's
	  MBIMX27 evaluation board.

endchoice

140 141 142 143 144
config MACH_MX27_3DS
	bool "MX27PDK platform"
	help
	  Include support for MX27PDK platform. This includes specific
	  configurations for the board and its peripherals.
145

146
config MACH_IMX27LITE
147 148 149 150 151
	bool "LogicPD MX27 LITEKIT platform"
	help
	  Include support for MX27 LITEKIT platform. This includes specific
	  configurations for the board and its peripherals.

152 153
config MACH_PCA100
	bool "Phytec phyCARD-s (pca100)"
154
	select IMX_HAVE_PLATFORM_MXC_NAND
S
Sascha Hauer 已提交
155
	select MXC_ULPI if USB_ULPI
156 157 158 159
	help
	  Include support for phyCARD-s (aka pca100) platform. This
	  includes specific configurations for the module and its peripherals.

160 161
config MACH_MXT_TD60
	bool "Maxtrack i-MXT TD60"
162
	select IMX_HAVE_PLATFORM_MXC_NAND
163 164 165 166
	help
	  Include support for i-MXT (aka td60) platform. This
	  includes specific configurations for the module and its peripherals.

H
Holger Schurig 已提交
167
endif