aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/plat-mxc
diff options
context:
space:
mode:
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>2011-04-08 05:06:43 -0400
committerSascha Hauer <s.hauer@pengutronix.de>2011-05-19 07:11:30 -0400
commit7db4d88206e20b8d91e8e7bba3b79805a1b1a98d (patch)
tree772eb127960e562cc70c101ad058d07457a938cf /arch/arm/plat-mxc
parent91350f6677f988b2342b214338520d1c3ed1ea0e (diff)
ARM: mxc: don't allow to compile together i.MX51 and i.MX53
The two SoCs have different PHYS_OFFSETs so it's not (yet) possible to compile a single (working) kernel for these. LAKML-Reference: 1302464943-20721-4-git-send-email-u.kleine-koenig@pengutronix.de Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/plat-mxc')
-rw-r--r--arch/arm/plat-mxc/Kconfig19
1 files changed, 17 insertions, 2 deletions
diff --git a/arch/arm/plat-mxc/Kconfig b/arch/arm/plat-mxc/Kconfig
index 8b7ab8ce9711..d9b9aad5aefe 100644
--- a/arch/arm/plat-mxc/Kconfig
+++ b/arch/arm/plat-mxc/Kconfig
@@ -4,6 +4,12 @@ source "arch/arm/plat-mxc/devices/Kconfig"
4 4
5menu "Freescale MXC Implementations" 5menu "Freescale MXC Implementations"
6 6
7config ARCH_MX50_SUPPORTED
8 bool
9
10config ARCH_MX53_SUPPORTED
11 bool
12
7choice 13choice
8 prompt "Freescale CPU family:" 14 prompt "Freescale CPU family:"
9 default ARCH_MX3 15 default ARCH_MX3
@@ -28,8 +34,17 @@ config ARCH_MX3
28 help 34 help
29 This enables support for systems based on the Freescale i.MX3 family 35 This enables support for systems based on the Freescale i.MX3 family
30 36
31config ARCH_MX5 37config ARCH_MX503
32 bool "MX5-based" 38 bool "i.MX50 + i.MX53"
39 select ARCH_MX50_SUPPORTED
40 select ARCH_MX53_SUPPORTED
41 help
42 This enables support for machines using Freescale's i.MX50 and i.MX51
43 processors.
44
45config ARCH_MX51
46 bool "i.MX51"
47 select ARCH_MX51_SUPPORTED
33 help 48 help
34 This enables support for systems based on the Freescale i.MX51 family 49 This enables support for systems based on the Freescale i.MX51 family
35 50