aboutsummaryrefslogtreecommitdiffstats
path: root/roms/u-boot/board/freescale/imx8mn_evk/imx8mn_evk.c
diff options
context:
space:
mode:
Diffstat (limited to 'roms/u-boot/board/freescale/imx8mn_evk/imx8mn_evk.c')
-rw-r--r--roms/u-boot/board/freescale/imx8mn_evk/imx8mn_evk.c30
1 files changed, 30 insertions, 0 deletions
diff --git a/roms/u-boot/board/freescale/imx8mn_evk/imx8mn_evk.c b/roms/u-boot/board/freescale/imx8mn_evk/imx8mn_evk.c
new file mode 100644
index 000000000..9a0a0488b
--- /dev/null
+++ b/roms/u-boot/board/freescale/imx8mn_evk/imx8mn_evk.c
@@ -0,0 +1,30 @@
+// SPDX-License-Identifier: GPL-2.0+
+/*
+ * Copyright 2019 NXP
+ */
+
+#include <common.h>
+#include <env.h>
+#include <init.h>
+#include <asm/global_data.h>
+
+DECLARE_GLOBAL_DATA_PTR;
+
+int board_init(void)
+{
+ return 0;
+}
+
+int board_mmc_get_env_dev(int devno)
+{
+ return devno;
+}
+
+int board_late_init(void)
+{
+#ifdef CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
+ env_set("board_name", "DDR4 EVK");
+ env_set("board_rev", "iMX8MN");
+#endif
+ return 0;
+}