aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm
diff options
context:
space:
mode:
authorEric Miao <eric.y.miao@gmail.com>2009-11-09 01:25:52 -0500
committerEric Miao <eric.y.miao@gmail.com>2009-11-30 20:02:56 -0500
commit1493df7319e06fb6ae6daa7e0d28355e6e8be1c9 (patch)
tree053240d188de6857e69eb44e0cb4a50bd6f06f6b /arch/arm
parentcc155c6f2cc705cb082ed676044368424e4b9121 (diff)
[ARM] pxa: introduce CONFIG_MACH_ZYLONITE{300,320} for CPU_PXA* removing
Signed-off-by: Eric Miao <eric.y.miao@gmail.com>
Diffstat (limited to 'arch/arm')
-rw-r--r--arch/arm/mach-pxa/Kconfig13
-rw-r--r--arch/arm/mach-pxa/Makefile7
2 files changed, 14 insertions, 6 deletions
diff --git a/arch/arm/mach-pxa/Kconfig b/arch/arm/mach-pxa/Kconfig
index e62572dc2d71..ca2bd593ca30 100644
--- a/arch/arm/mach-pxa/Kconfig
+++ b/arch/arm/mach-pxa/Kconfig
@@ -46,12 +46,23 @@ config MACH_MAINSTONE
46 select PXA_HAVE_BOARD_IRQS 46 select PXA_HAVE_BOARD_IRQS
47 47
48config MACH_ZYLONITE 48config MACH_ZYLONITE
49 bool "PXA3xx Development Platform (aka Zylonite)" 49 bool
50 select PXA3xx 50 select PXA3xx
51 select PXA_SSP 51 select PXA_SSP
52 select HAVE_PWM 52 select HAVE_PWM
53 select PXA_HAVE_BOARD_IRQS 53 select PXA_HAVE_BOARD_IRQS
54 54
55config MACH_ZYLONITE300
56 bool "PXA3xx Development Platform (aka Zylonite) PXA300/310"
57 select CPU_PXA300
58 select CPU_PXA310
59 select MACH_ZYLONITE
60
61config MACH_ZYLONITE320
62 bool "PXA3xx Development Platform (aka Zylonite) PXA320"
63 select CPU_PXA320
64 select MACH_ZYLONITE
65
55config MACH_LITTLETON 66config MACH_LITTLETON
56 bool "PXA3xx Form Factor Platform (aka Littleton)" 67 bool "PXA3xx Form Factor Platform (aka Littleton)"
57 select PXA3xx 68 select PXA3xx
diff --git a/arch/arm/mach-pxa/Makefile b/arch/arm/mach-pxa/Makefile
index cdaf88831c27..b5d29e60a341 100644
--- a/arch/arm/mach-pxa/Makefile
+++ b/arch/arm/mach-pxa/Makefile
@@ -29,11 +29,8 @@ obj-$(CONFIG_CPU_PXA930) += pxa930.o
29# Intel/Marvell Dev Platforms 29# Intel/Marvell Dev Platforms
30obj-$(CONFIG_ARCH_LUBBOCK) += lubbock.o 30obj-$(CONFIG_ARCH_LUBBOCK) += lubbock.o
31obj-$(CONFIG_MACH_MAINSTONE) += mainstone.o 31obj-$(CONFIG_MACH_MAINSTONE) += mainstone.o
32ifeq ($(CONFIG_MACH_ZYLONITE),y) 32obj-$(CONFIG_MACH_ZYLONITE300) += zylonite.o zylonite_pxa300.o
33 obj-y += zylonite.o 33obj-$(CONFIG_MACH_ZYLONITE320) += zylonite.o zylonite_pxa320.o
34 obj-$(CONFIG_CPU_PXA300) += zylonite_pxa300.o
35 obj-$(CONFIG_CPU_PXA320) += zylonite_pxa320.o
36endif
37obj-$(CONFIG_MACH_LITTLETON) += littleton.o 34obj-$(CONFIG_MACH_LITTLETON) += littleton.o
38obj-$(CONFIG_MACH_TAVOREVB) += tavorevb.o 35obj-$(CONFIG_MACH_TAVOREVB) += tavorevb.o
39obj-$(CONFIG_MACH_SAAR) += saar.o 36obj-$(CONFIG_MACH_SAAR) += saar.o