summaryrefslogtreecommitdiff
path: root/board/freescale
diff options
context:
space:
mode:
authorAshish Kumar <Ashish.Kumar@nxp.com>2018-02-19 11:44:53 +0300
committerYork Sun <york.sun@nxp.com>2018-03-20 18:26:52 +0300
commit169d493bb7dd3fdcfb04d266e1492ddcf298b1df (patch)
tree25748682c4b5a3c8a3578a59953bc62f62e0f197 /board/freescale
parentd12b166a00aa54e256580ecf28e7a5dcf03fff5a (diff)
downloadu-boot-169d493bb7dd3fdcfb04d266e1492ddcf298b1df.tar.xz
armv8: ls1088a: Add i2c_early_init() func for LS1088AQDS
This function is required for enabling access to early i2c function for correct usage of QIXIS_READ and QIXIS_WRITE. Signed-off-by: Ashish Kumar <Ashish.Kumar@nxp.com> Reviewed-by: York Sun <york.sun@nxp.com>
Diffstat (limited to 'board/freescale')
-rw-r--r--board/freescale/ls1088a/ls1088a.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/board/freescale/ls1088a/ls1088a.c b/board/freescale/ls1088a/ls1088a.c
index 161ea6dcb2..a5fa050991 100644
--- a/board/freescale/ls1088a/ls1088a.c
+++ b/board/freescale/ls1088a/ls1088a.c
@@ -31,6 +31,9 @@ DECLARE_GLOBAL_DATA_PTR;
int board_early_init_f(void)
{
+#if defined(CONFIG_SYS_I2C_EARLY_INIT) && defined(CONFIG_TARGET_LS1088AQDS)
+ i2c_early_init_f();
+#endif
fsl_lsch3_early_init_f();
return 0;
}