blob: 5dccb17cb27114396b116c5071c5293ccd2c2cf1 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Jagan Tekiac880e72017-05-07 02:43:14 +05302/*
3 * Copyright (C) 2016 Amarula Solutions B.V.
4 * Copyright (C) 2016 Engicam S.r.l.
5 * Author: Jagan Teki <jagan@amarulasolutions.com>
Jagan Tekiac880e72017-05-07 02:43:14 +05306 */
7
8#include <common.h>
9#include <mmc.h>
10#include <asm/arch/sys_proto.h>
11
12#include "board.h"
13
14DECLARE_GLOBAL_DATA_PTR;
15
16#ifdef CONFIG_ENV_IS_IN_MMC
Jagan Tekif9247562017-05-07 02:43:15 +053017static void mmc_late_init(void)
Jagan Tekiac880e72017-05-07 02:43:14 +053018{
19 char cmd[32];
20 char mmcblk[32];
21 u32 dev_no = mmc_get_env_dev();
22
Simon Glass018f5302017-08-03 12:22:10 -060023 env_set_ulong("mmcdev", dev_no);
Jagan Tekiac880e72017-05-07 02:43:14 +053024
25 /* Set mmcblk env */
26 sprintf(mmcblk, "/dev/mmcblk%dp2 rootwait rw", dev_no);
Simon Glass382bee52017-08-03 12:22:09 -060027 env_set("mmcroot", mmcblk);
Jagan Tekiac880e72017-05-07 02:43:14 +053028
29 sprintf(cmd, "mmc dev %d", dev_no);
30 run_command(cmd, 0);
31}
32#endif
33
Jagan Teki409b16d2017-11-21 00:02:10 +053034static void setenv_fdt_file(void)
35{
36 const char *cmp_dtb = CONFIG_DEFAULT_DEVICE_TREE;
37
38 if (!strcmp(cmp_dtb, "imx6q-icore")) {
39 if (is_mx6dq())
40 env_set("fdt_file", "imx6q-icore.dtb");
Jagan Teki04c28a72018-01-06 00:02:04 +053041 else if (is_mx6dl() || is_mx6solo())
Jagan Teki409b16d2017-11-21 00:02:10 +053042 env_set("fdt_file", "imx6dl-icore.dtb");
Jagan Teki04c28a72018-01-06 00:02:04 +053043 } else if (!strcmp(cmp_dtb, "imx6q-icore-mipi")) {
44 if (is_mx6dq())
45 env_set("fdt_file", "imx6q-icore-mipi.dtb");
46 else if (is_mx6dl() || is_mx6solo())
47 env_set("fdt_file", "imx6dl-icore-mipi.dtb");
Jagan Teki409b16d2017-11-21 00:02:10 +053048 } else if (!strcmp(cmp_dtb, "imx6q-icore-rqs")) {
49 if (is_mx6dq())
50 env_set("fdt_file", "imx6q-icore-rqs.dtb");
Jagan Teki04c28a72018-01-06 00:02:04 +053051 else if (is_mx6dl() || is_mx6solo())
Jagan Teki409b16d2017-11-21 00:02:10 +053052 env_set("fdt_file", "imx6dl-icore-rqs.dtb");
Jagan Teki18053a82018-06-18 11:12:19 +053053 } else if (!strcmp(cmp_dtb, "imx6ul-geam"))
54 env_set("fdt_file", "imx6ul-geam.dtb");
Jagan Teki409b16d2017-11-21 00:02:10 +053055 else if (!strcmp(cmp_dtb, "imx6ul-isiot-mmc"))
Jagan Teki52aaddd2017-11-21 00:02:16 +053056 env_set("fdt_file", "imx6ul-isiot-emmc.dtb");
Jagan Teki409b16d2017-11-21 00:02:10 +053057 else if (!strcmp(cmp_dtb, "imx6ul-isiot-emmc"))
58 env_set("fdt_file", "imx6ul-isiot-emmc.dtb");
59 else if (!strcmp(cmp_dtb, "imx6ul-isiot-nand"))
60 env_set("fdt_file", "imx6ul-isiot-nand.dtb");
61}
62
Jagan Tekif9247562017-05-07 02:43:15 +053063int board_late_init(void)
64{
65 switch ((imx6_src_get_boot_mode() & IMX6_BMODE_MASK) >>
66 IMX6_BMODE_SHIFT) {
67 case IMX6_BMODE_SD:
68 case IMX6_BMODE_ESD:
69 case IMX6_BMODE_MMC:
70 case IMX6_BMODE_EMMC:
71#ifdef CONFIG_ENV_IS_IN_MMC
72 mmc_late_init();
73#endif
Simon Glass382bee52017-08-03 12:22:09 -060074 env_set("modeboot", "mmcboot");
Jagan Tekif9247562017-05-07 02:43:15 +053075 break;
Eran Matityahuaf104ae2017-12-14 20:20:02 +020076 case IMX6_BMODE_NAND_MIN ... IMX6_BMODE_NAND_MAX:
Simon Glass382bee52017-08-03 12:22:09 -060077 env_set("modeboot", "nandboot");
Jagan Tekif9247562017-05-07 02:43:15 +053078 break;
79 default:
Simon Glass382bee52017-08-03 12:22:09 -060080 env_set("modeboot", "");
Jagan Tekif9247562017-05-07 02:43:15 +053081 break;
82 }
83
Jagan Teki46f9c832017-05-12 17:18:26 +053084 if (is_mx6ul())
Simon Glass382bee52017-08-03 12:22:09 -060085 env_set("console", "ttymxc0");
Jagan Teki46f9c832017-05-12 17:18:26 +053086 else
Simon Glass382bee52017-08-03 12:22:09 -060087 env_set("console", "ttymxc3");
Jagan Teki46f9c832017-05-12 17:18:26 +053088
Jagan Tekif9247562017-05-07 02:43:15 +053089 setenv_fdt_file();
90
91 return 0;
92}
93
Jagan Tekiac880e72017-05-07 02:43:14 +053094int board_init(void)
95{
96 /* Address of boot parameters */
97 gd->bd->bi_boot_params = PHYS_SDRAM + 0x100;
98
99#ifdef CONFIG_NAND_MXS
100 setup_gpmi_nand();
101#endif
102
103#ifdef CONFIG_VIDEO_IPUV3
104 setup_display();
105#endif
106
107 return 0;
108}
109
110int dram_init(void)
111{
112 gd->ram_size = imx_ddr_size();
113
114 return 0;
115}