summaryrefslogtreecommitdiff
path: root/board
diff options
context:
space:
mode:
authorBai Ping <ping.bai@nxp.com>2018-09-14 18:23:08 +0800
committerBai Ping <ping.bai@nxp.com>2018-09-14 18:23:08 +0800
commit99a6bc0ccc69e1517316056e23772d7743f3ae1e (patch)
tree52003b0f8d695222ec7d232951388c957062fdac /board
parent9dce3365b8ea0cbdaed06f0c9b98c98b2f150c5a (diff)
MLK-19589 baord: imx6ulz: add imx6ulz support
Add i.MX6ULZ support. the i.MX6ULZ is SW compatible with i.MX6ULL. so most code of i.MX6ULL can be reused by i.MX6ULZ. Signed-off-by: Bai Ping <ping.bai@nxp.com>
Diffstat (limited to 'board')
-rw-r--r--board/freescale/mx6ullevk/mx6ullevk.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/board/freescale/mx6ullevk/mx6ullevk.c b/board/freescale/mx6ullevk/mx6ullevk.c
index 72fafa991d..6f6c225337 100644
--- a/board/freescale/mx6ullevk/mx6ullevk.c
+++ b/board/freescale/mx6ullevk/mx6ullevk.c
@@ -501,6 +501,9 @@ int board_late_init(void)
env_set("board_rev", "9X9");
else
env_set("board_rev", "14X14");
+
+ if (is_cpu_type(MXC_CPU_MX6ULZ))
+ env_set("fdt_file", "imx6ulz-14x14-evk.dtb");
#endif
#ifdef CONFIG_ENV_IS_IN_MMC
@@ -516,6 +519,8 @@ int checkboard(void)
{
if (is_mx6ull_9x9_evk())
puts("Board: MX6ULL 9x9 EVK\n");
+ else if (is_cpu_type(MXC_CPU_MX6ULZ))
+ puts("Board: MX6ULZ 14x14 EVK\n");
else
puts("Board: MX6ULL 14x14 EVK\n");