summaryrefslogtreecommitdiff
path: root/board/freescale/mx6qarm2/mx6qarm2.c
diff options
context:
space:
mode:
authorYe.Li <B37916@freescale.com>2014-09-29 23:26:28 +0800
committerStefano Babic <sbabic@denx.de>2014-09-30 12:21:14 +0200
commitb357503f1cdedade6d31991fa6aabb4174f92989 (patch)
treef351a99c9ddbd35f4858ff805215d9b729303731 /board/freescale/mx6qarm2/mx6qarm2.c
parentfebae49a2b282283db98c1217aa04c4538704585 (diff)
downloadu-boot-imx-b357503f1cdedade6d31991fa6aabb4174f92989.zip
u-boot-imx-b357503f1cdedade6d31991fa6aabb4174f92989.tar.gz
u-boot-imx-b357503f1cdedade6d31991fa6aabb4174f92989.tar.bz2
imx: mx6dlarm2: Add support for i.MX6DL arm2 DDR3 board
This patch adds the i.MX6DL arm2 board support. The i.MX6DL ARM2 shared the same board with i.MX6Q ARM2 board since the i.MX6DL is pin-pin compatible with i.MX6Q. The patch also support the DDR 32-BIT mode option. Please define CONFIG_DDR_32BIT in the board configure file to enable DDR 32-BIT mode.But due to the board design, it's 64bit DDR buswidth physically, so, if you CONFIG_DDR_32BIT, the DDR memory size will be half of it. Signed-off-by: Ye.Li <B37916@freescale.com>
Diffstat (limited to 'board/freescale/mx6qarm2/mx6qarm2.c')
-rw-r--r--board/freescale/mx6qarm2/mx6qarm2.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/board/freescale/mx6qarm2/mx6qarm2.c b/board/freescale/mx6qarm2/mx6qarm2.c
index 6c51f3a..f2e577d 100644
--- a/board/freescale/mx6qarm2/mx6qarm2.c
+++ b/board/freescale/mx6qarm2/mx6qarm2.c
@@ -224,7 +224,11 @@ int board_init(void)
int checkboard(void)
{
+#ifdef CONFIG_MX6DL
+ puts("Board: MX6DL-Armadillo2\n");
+#else
puts("Board: MX6Q-Armadillo2\n");
+#endif
return 0;
}