Kconfig 3.2 KB
Newer Older
1 2
if ARCH_MX1

3 4 5 6 7
config SOC_IMX1
	select CPU_ARM920T
	select IMX_HAVE_IOMUX_V1
	bool

8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
comment "MX1 platforms:"
config MACH_MXLADS
	bool

config ARCH_MX1ADS
	bool "MX1ADS platform"
	select MACH_MXLADS
	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 已提交
25
if ARCH_MX2
26

27 28 29 30 31 32 33 34 35 36 37 38
config SOC_IMX21
	select CPU_ARM926T
	select ARCH_MXC_AUDMUX_V1
	select IMX_HAVE_IOMUX_V1
	bool

config SOC_IMX27
	select CPU_ARM926T
	select ARCH_MXC_AUDMUX_V1
	select IMX_HAVE_IOMUX_V1
	bool

39
choice
H
Holger Schurig 已提交
40
	prompt "CPUs:"
41 42 43 44
	default MACH_MX21

config MACH_MX21
	bool "i.MX21 support"
45
	select SOC_IMX21
46 47 48
	help
	  This enables support for Freescale's MX2 based i.MX21 processor.

49 50
config MACH_MX27
	bool "i.MX27 support"
51
	select SOC_IMX27
52 53 54
	help
	  This enables support for Freescale's MX2 based i.MX27 processor.

55 56
endchoice

57 58 59 60 61
endif

if MACH_MX21

comment "MX21 platforms:"
62

I
Ivo Clarysse 已提交
63 64 65 66 67 68
config MACH_MX21ADS
	bool "MX21ADS platform"
	help
	  Include support for MX21ADS platform. This includes specific
	  configurations for the board and its peripherals.

69 70 71 72 73 74
endif

if MACH_MX27

comment "MX27 platforms:"

75 76 77 78 79
config MACH_MX27ADS
	bool "MX27ADS platform"
	help
	  Include support for MX27ADS platform. This includes specific
	  configurations for the board and its peripherals.
80 81 82

config MACH_PCM038
	bool "Phytec phyCORE-i.MX27 CPU module (pcm038)"
S
Sascha Hauer 已提交
83
	select MXC_ULPI if USB_ULPI
84 85 86
	help
	  Include support for phyCORE-i.MX27 (aka pcm038) platform. This
	  includes specific configurations for the module and its peripherals.
87 88 89 90 91 92 93 94 95 96 97 98 99 100

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 已提交
101

102
config MACH_CPUIMX27
E
Eric Benard 已提交
103 104 105 106 107 108 109
	bool "Eukrea CPUIMX27 module"
	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"
110
	depends on MACH_CPUIMX27
E
Eric Benard 已提交
111 112 113 114
	help
	  This adds support for the internal SDHC2 used on CPUIMX27 used
	  for wifi or eMMC.

E
Eric Benard 已提交
115 116
choice
	prompt "Baseboard"
117
	depends on MACH_CPUIMX27
E
Eric Benard 已提交
118 119 120 121 122 123 124 125 126 127 128
	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

129 130 131 132 133
config MACH_MX27_3DS
	bool "MX27PDK platform"
	help
	  Include support for MX27PDK platform. This includes specific
	  configurations for the board and its peripherals.
134

135
config MACH_IMX27LITE
136 137 138 139 140
	bool "LogicPD MX27 LITEKIT platform"
	help
	  Include support for MX27 LITEKIT platform. This includes specific
	  configurations for the board and its peripherals.

141 142
config MACH_PCA100
	bool "Phytec phyCARD-s (pca100)"
S
Sascha Hauer 已提交
143
	select MXC_ULPI if USB_ULPI
144 145 146 147
	help
	  Include support for phyCARD-s (aka pca100) platform. This
	  includes specific configurations for the module and its peripherals.

148 149 150 151 152 153
config MACH_MXT_TD60
	bool "Maxtrack i-MXT TD60"
	help
	  Include support for i-MXT (aka td60) platform. This
	  includes specific configurations for the module and its peripherals.

H
Holger Schurig 已提交
154
endif