summaryrefslogtreecommitdiff
path: root/board/ea/mx7ulp_com/mx7ulp_com.c
diff options
context:
space:
mode:
Diffstat (limited to 'board/ea/mx7ulp_com/mx7ulp_com.c')
-rw-r--r--board/ea/mx7ulp_com/mx7ulp_com.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/board/ea/mx7ulp_com/mx7ulp_com.c b/board/ea/mx7ulp_com/mx7ulp_com.c
index 7fce75ade9d..cd9591a9e32 100644
--- a/board/ea/mx7ulp_com/mx7ulp_com.c
+++ b/board/ea/mx7ulp_com/mx7ulp_com.c
@@ -52,3 +52,29 @@ int board_init(void)
return 0;
}
+
+#ifdef CONFIG_SPL_BUILD
+#include <spl.h>
+
+#ifdef CONFIG_SPL_LOAD_FIT
+int board_fit_config_name_match(const char *name)
+{
+ if (!strcmp(name, "imx7ulp-com"))
+ return 0;
+
+ return -1;
+}
+#endif
+
+void spl_board_init(void)
+{
+ preloader_console_init();
+}
+
+void board_init_f(ulong dummy)
+{
+ arch_cpu_init();
+
+ board_early_init_f();
+}
+#endif