diff options
author | Quinn Jensen <qcjensen@gmail.com> | 2007-07-09 17:06:53 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2007-07-22 10:44:46 -0400 |
commit | 52c543f90c4095dff71dc125017594b61a753069 (patch) | |
tree | 0b88dafea91f1fd2cb44bb863271503e765f7156 /arch/arm/plat-mxc/Kconfig | |
parent | 4b300c362d690c8e0788f69ed91c22a0a76f7ce2 (diff) |
[ARM] 4461/1: MXC platform and i.MX31ADS core support
This patch adds the foundation pieces for
the Freescale MXC platforms, including
i.MX2 and i.MX3 based systems.
The bare-bones MX31 support in this patch
boots to the rootdev panic with 8250 serial
console configured "console=ttyS0,115200".
It assumes that Redboot is the boot loader.
Signed-off-by: Quinn Jensen <quinn.jensen@freescale.com>
Acked-by: Lennert Buytenhek <buytenh@wantstofly.org>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/plat-mxc/Kconfig')
-rw-r--r-- | arch/arm/plat-mxc/Kconfig | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/arch/arm/plat-mxc/Kconfig b/arch/arm/plat-mxc/Kconfig new file mode 100644 index 000000000000..03a65c0dfb60 --- /dev/null +++ b/arch/arm/plat-mxc/Kconfig | |||
@@ -0,0 +1,20 @@ | |||
1 | if ARCH_MXC | ||
2 | |||
3 | menu "Freescale MXC Implementations" | ||
4 | |||
5 | choice | ||
6 | prompt "MXC/iMX System Type" | ||
7 | default 0 | ||
8 | |||
9 | config ARCH_MX3 | ||
10 | bool "MX3-based" | ||
11 | help | ||
12 | This enables support for systems based on the Freescale i.MX3 family | ||
13 | |||
14 | endchoice | ||
15 | |||
16 | source "arch/arm/mach-mx3/Kconfig" | ||
17 | |||
18 | endmenu | ||
19 | |||
20 | endif | ||