aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-mx3
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2009-02-06 09:41:45 -0500
committerSascha Hauer <s.hauer@pengutronix.de>2009-03-13 05:34:27 -0400
commitcb8ebb0223a5a2ec6f2e0b46ef5812113847df61 (patch)
tree97fd136d6fc3a89f53a905b331225f0df52adb14 /arch/arm/mach-mx3
parent198016e1b12d781ef00aaafbf571775a8e723f54 (diff)
[ARM] add i.MX35 build support
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/mach-mx3')
-rw-r--r--arch/arm/mach-mx3/Kconfig13
-rw-r--r--arch/arm/mach-mx3/Makefile3
2 files changed, 14 insertions, 2 deletions
diff --git a/arch/arm/mach-mx3/Kconfig b/arch/arm/mach-mx3/Kconfig
index 6933d2d0b568..7c939c69d6df 100644
--- a/arch/arm/mach-mx3/Kconfig
+++ b/arch/arm/mach-mx3/Kconfig
@@ -1,9 +1,16 @@
1if ARCH_MX3 1if ARCH_MX3
2 2
3config ARCH_MX31
4 bool
5
6config ARCH_MX35
7 bool
8
3comment "MX3 platforms:" 9comment "MX3 platforms:"
4 10
5config MACH_MX31ADS 11config MACH_MX31ADS
6 bool "Support MX31ADS platforms" 12 bool "Support MX31ADS platforms"
13 select ARCH_MX31
7 default y 14 default y
8 help 15 help
9 Include support for MX31ADS platform. This includes specific 16 Include support for MX31ADS platform. This includes specific
@@ -19,13 +26,15 @@ config MACH_MX31ADS_WM1133_EV1
19 and audio module for the MX31ADS platform. 26 and audio module for the MX31ADS platform.
20 27
21config MACH_PCM037 28config MACH_PCM037
22 bool "Support Phytec pcm037 platforms" 29 bool "Support Phytec pcm037 (i.MX31) platforms"
30 select ARCH_MX31
23 help 31 help
24 Include support for Phytec pcm037 platform. This includes 32 Include support for Phytec pcm037 platform. This includes
25 specific configurations for the board and its peripherals. 33 specific configurations for the board and its peripherals.
26 34
27config MACH_MX31LITE 35config MACH_MX31LITE
28 bool "Support MX31 LITEKIT (LogicPD)" 36 bool "Support MX31 LITEKIT (LogicPD)"
37 select ARCH_MX31
29 default n 38 default n
30 help 39 help
31 Include support for MX31 LITEKIT platform. This includes specific 40 Include support for MX31 LITEKIT platform. This includes specific
@@ -33,6 +42,7 @@ config MACH_MX31LITE
33 42
34config MACH_MX31_3DS 43config MACH_MX31_3DS
35 bool "Support MX31PDK (3DS)" 44 bool "Support MX31PDK (3DS)"
45 select ARCH_MX31
36 default n 46 default n
37 help 47 help
38 Include support for MX31PDK (3DS) platform. This includes specific 48 Include support for MX31PDK (3DS) platform. This includes specific
@@ -40,6 +50,7 @@ config MACH_MX31_3DS
40 50
41config MACH_MX31MOBOARD 51config MACH_MX31MOBOARD
42 bool "Support mx31moboard platforms (EPFL Mobots group)" 52 bool "Support mx31moboard platforms (EPFL Mobots group)"
53 select ARCH_MX31
43 default n 54 default n
44 help 55 help
45 Include support for mx31moboard platform. This includes specific 56 Include support for mx31moboard platform. This includes specific
diff --git a/arch/arm/mach-mx3/Makefile b/arch/arm/mach-mx3/Makefile
index d50d9878a654..68c4837cce6a 100644
--- a/arch/arm/mach-mx3/Makefile
+++ b/arch/arm/mach-mx3/Makefile
@@ -4,7 +4,8 @@
4 4
5# Object file lists. 5# Object file lists.
6 6
7obj-y := mm.o clock.o devices.o iomux.o 7obj-y := mm.o devices.o
8obj-$(CONFIG_ARCH_MX31) += clock.o iomux.o
8obj-$(CONFIG_MACH_MX31ADS) += mx31ads.o 9obj-$(CONFIG_MACH_MX31ADS) += mx31ads.o
9obj-$(CONFIG_MACH_MX31LITE) += mx31lite.o 10obj-$(CONFIG_MACH_MX31LITE) += mx31lite.o
10obj-$(CONFIG_MACH_PCM037) += pcm037.o 11obj-$(CONFIG_MACH_PCM037) += pcm037.o