Kconfig 3.0 KB
Newer Older
1 2
if ARCH_MMP

3
menu "Marvell PXA168/910/MMP2 Implmentations"
4

5 6 7 8 9 10 11 12 13 14
config MACH_MMP_DT
	bool "Support MMP2 platforms from device tree"
	select CPU_PXA168
	select CPU_PXA910
	select USE_OF
	help
	  Include support for Marvell MMP2 based platforms using
	  the device tree. Needn't select any other machine while
	  MACH_MMP_DT is enabled.

15 16 17 18 19 20 21 22 23 24 25 26 27 28
config MACH_ASPENITE
	bool "Marvell's PXA168 Aspenite Development Board"
	select CPU_PXA168
	help
	  Say 'Y' here if you want to support the Marvell PXA168-based
	  Aspenite Development Board.

config MACH_ZYLONITE2
	bool "Marvell's PXA168 Zylonite2 Development Board"
	select CPU_PXA168
	help
	  Say 'Y' here if you want to support the Marvell PXA168-based
	  Zylonite2 Development Board.

29 30 31 32 33 34 35
config MACH_AVENGERS_LITE
	bool "Marvell's PXA168 Avengers Lite Development Board"
	select CPU_PXA168
	help
	  Say 'Y' here if you want to support the Marvell PXA168-based
	  Avengers Lite Development Board.

36 37 38 39 40 41 42
config MACH_TAVOREVB
	bool "Marvell's PXA910 TavorEVB Development Board"
	select CPU_PXA910
	help
	  Say 'Y' here if you want to support the Marvell PXA910-based
	  TavorEVB Development Board.

43 44 45 46 47 48 49
config MACH_TTC_DKB
	bool "Marvell's PXA910 TavorEVB Development Board"
	select CPU_PXA910
	help
	  Say 'Y' here if you want to support the Marvell PXA910-based
	  TTC_DKB Development Board.

50 51 52 53 54 55 56 57 58 59 60
config MACH_BROWNSTONE
	bool "Marvell's Brownstone Development Platform"
	depends on !CPU_MOHAWK
	select CPU_MMP2
	help
	  Say 'Y' here if you want to support the Marvell MMP2-based
	  Brown Development Platform.
	  MMP2-based board can't be co-existed with PXA168-based &
	  PXA910-based development board. Since MMP2 is compatible to
	  ARMv7 architecture.

61 62
config MACH_FLINT
	bool "Marvell's Flint Development Platform"
H
Haojian Zhuang 已提交
63
	depends on !CPU_MOHAWK
64 65 66 67 68 69
	select CPU_MMP2
	help
	  Say 'Y' here if you want to support the Marvell MMP2-based
	  Flint Development Platform.
	  MMP2-based board can't be co-existed with PXA168-based &
	  PXA910-based development board. Since MMP2 is compatible to
70
	  ARMv7 architecture.
71

72 73
config MACH_MARVELL_JASPER
	bool "Marvell's Jasper Development Platform"
H
Haojian Zhuang 已提交
74
	depends on !CPU_MOHAWK
75 76 77 78 79 80
	select CPU_MMP2
	help
	  Say 'Y' here if you want to support the Marvell MMP2-base
	  Jasper Development Platform.
	  MMP2-based board can't be co-existed with PXA168-based &
	  PXA910-based development board. Since MMP2 is compatible to
81
	  ARMv7 architecture.
82

83 84 85 86 87 88 89
config MACH_TETON_BGA
	bool "Marvell's PXA168 Teton BGA Development Board"
	select CPU_PXA168
	help
	  Say 'Y' here if you want to support the Marvell PXA168-based
	  Teton BGA Development Board.

E
Eric Miao 已提交
90
config MACH_GPLUGD
91 92 93 94 95 96
	bool "Marvell's PXA168 GuruPlug Display (gplugD) Board"
	select CPU_PXA168
	help
	  Say 'Y' here if you want to support the Marvell PXA168-based
	  GuruPlug Display (gplugD) Board

97 98 99 100 101 102 103 104
endmenu

config CPU_PXA168
	bool
	select CPU_MOHAWK
	help
	  Select code specific to PXA168

105 106 107 108 109 110
config CPU_PXA910
	bool
	select CPU_MOHAWK
	help
	  Select code specific to PXA910

111 112
config CPU_MMP2
	bool
H
Haojian Zhuang 已提交
113
	select CPU_PJ4
114
	help
H
Haojian Zhuang 已提交
115
	  Select code specific to MMP2. MMP2 is ARMv7 compatible.
116
endif