summaryrefslogtreecommitdiff
path: root/board/freescale/mx7d_19x19_lpddr3_arm2/mx7d_19x19_lpddr3_arm2.c
diff options
context:
space:
mode:
authorYe.Li <B37916@freescale.com>2015-08-20 11:10:53 +0800
committerYe.Li <B37916@freescale.com>2015-08-20 13:23:46 +0800
commitb437ce19ce71f670942183f70985ce123ab5140c (patch)
tree3f07d31f25485b9fcbae87152e4122f5928f1b98 /board/freescale/mx7d_19x19_lpddr3_arm2/mx7d_19x19_lpddr3_arm2.c
parent6b7a3a917e1d231eecf55226922373ce038255ff (diff)
downloadu-boot-imx-b437ce19ce71f670942183f70985ce123ab5140c.zip
u-boot-imx-b437ce19ce71f670942183f70985ce123ab5140c.tar.gz
u-boot-imx-b437ce19ce71f670942183f70985ce123ab5140c.tar.bz2
MLK-11388 imx: mx7d: add support for mx7d 19x19 lpddr2 arm2 board
This mx7d 19x19 lpddr2 arm2 board is based on 19x19 lpddr3 arm2 board with DDR changed to 512M LPDDR2. We added DDR script for LPDDR2 and a new u-boot build target: mx7d_19x19_lpddr2_arm2_config LPDDR2 script source: lpddr2_0_1.ds Signed-off-by: Ye.Li <B37916@freescale.com>
Diffstat (limited to 'board/freescale/mx7d_19x19_lpddr3_arm2/mx7d_19x19_lpddr3_arm2.c')
-rw-r--r--board/freescale/mx7d_19x19_lpddr3_arm2/mx7d_19x19_lpddr3_arm2.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/board/freescale/mx7d_19x19_lpddr3_arm2/mx7d_19x19_lpddr3_arm2.c b/board/freescale/mx7d_19x19_lpddr3_arm2/mx7d_19x19_lpddr3_arm2.c
index 442c356..3e77951 100644
--- a/board/freescale/mx7d_19x19_lpddr3_arm2/mx7d_19x19_lpddr3_arm2.c
+++ b/board/freescale/mx7d_19x19_lpddr3_arm2/mx7d_19x19_lpddr3_arm2.c
@@ -647,8 +647,11 @@ u32 get_board_rev(void)
int checkboard(void)
{
+#ifdef CONFIG_MX7D_LPDDR2
+ puts("Board: MX7D 19x19 LPDDR2 ARM2\n");
+#else
puts("Board: MX7D 19x19 LPDDR3 ARM2\n");
-
+#endif
return 0;
}