diff options
-rw-r--r-- | arch/arm/mach-mx3/Kconfig | 13 | ||||
-rw-r--r-- | arch/arm/mach-mx3/Makefile | 3 |
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 @@ | |||
1 | if ARCH_MX3 | 1 | if ARCH_MX3 |
2 | 2 | ||
3 | config ARCH_MX31 | ||
4 | bool | ||
5 | |||
6 | config ARCH_MX35 | ||
7 | bool | ||
8 | |||
3 | comment "MX3 platforms:" | 9 | comment "MX3 platforms:" |
4 | 10 | ||
5 | config MACH_MX31ADS | 11 | config 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 | ||
21 | config MACH_PCM037 | 28 | config 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 | ||
27 | config MACH_MX31LITE | 35 | config 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 | ||
34 | config MACH_MX31_3DS | 43 | config 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 | ||
41 | config MACH_MX31MOBOARD | 51 | config 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 | ||
7 | obj-y := mm.o clock.o devices.o iomux.o | 7 | obj-y := mm.o devices.o |
8 | obj-$(CONFIG_ARCH_MX31) += clock.o iomux.o | ||
8 | obj-$(CONFIG_MACH_MX31ADS) += mx31ads.o | 9 | obj-$(CONFIG_MACH_MX31ADS) += mx31ads.o |
9 | obj-$(CONFIG_MACH_MX31LITE) += mx31lite.o | 10 | obj-$(CONFIG_MACH_MX31LITE) += mx31lite.o |
10 | obj-$(CONFIG_MACH_PCM037) += pcm037.o | 11 | obj-$(CONFIG_MACH_PCM037) += pcm037.o |