diff options
author | Holger Schurig <hs4233@mail.mn-solutions.de> | 2009-01-26 10:34:52 -0500 |
---|---|---|
committer | Sascha Hauer <s.hauer@pengutronix.de> | 2009-03-13 05:33:45 -0400 |
commit | 5512e88f3a1f1b498fd07181f14596ee117b3471 (patch) | |
tree | c764b8ebbc0030147d7b7bf9a150a464d4d5904d /arch/arm/mach-mx2/Kconfig | |
parent | ccfe30a7c8329e85ae426813a1060e27e2547dd1 (diff) |
arm/imx21: add kbuild support for the Freescale i.MX21
* adds Kconfig variables
* specifies different physical address for i.MX21 because of the
different memory layouts
* disables support for UART5/UART6 in the i.MX serial driver
(the i.MX21 doesn't have those modules)
Based on code from "Martin Fuzzey" <mfuzzey@gmail.com>
Signed-off-by: Holger Schurig <hs4233@mail.mn-solutions.de>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/mach-mx2/Kconfig')
-rw-r--r-- | arch/arm/mach-mx2/Kconfig | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/arch/arm/mach-mx2/Kconfig b/arch/arm/mach-mx2/Kconfig index 1eaa97cb716d..412d2d55b08c 100644 --- a/arch/arm/mach-mx2/Kconfig +++ b/arch/arm/mach-mx2/Kconfig | |||
@@ -1,12 +1,25 @@ | |||
1 | comment "MX2 family CPU support" | 1 | comment "MX2 family CPU support" |
2 | depends on ARCH_MX2 | 2 | depends on ARCH_MX2 |
3 | 3 | ||
4 | choice | ||
5 | prompt "MX2 Type" | ||
6 | depends on ARCH_MX2 | ||
7 | default MACH_MX21 | ||
8 | |||
9 | config MACH_MX21 | ||
10 | bool "i.MX21 support" | ||
11 | depends on ARCH_MX2 | ||
12 | help | ||
13 | This enables support for Freescale's MX2 based i.MX21 processor. | ||
14 | |||
4 | config MACH_MX27 | 15 | config MACH_MX27 |
5 | bool "i.MX27 support" | 16 | bool "i.MX27 support" |
6 | depends on ARCH_MX2 | 17 | depends on ARCH_MX2 |
7 | help | 18 | help |
8 | This enables support for Freescale's MX2 based i.MX27 processor. | 19 | This enables support for Freescale's MX2 based i.MX27 processor. |
9 | 20 | ||
21 | endchoice | ||
22 | |||
10 | comment "MX2 Platforms" | 23 | comment "MX2 Platforms" |
11 | depends on ARCH_MX2 | 24 | depends on ARCH_MX2 |
12 | 25 | ||