blob: 58c41f64ec19d7da37831e397e8d0c72ce54ca14 [file] [log] [blame]
Jagan Tekiac880e72017-05-07 02:43:14 +05301/*
2 * Copyright (C) 2016 Amarula Solutions B.V.
3 * Copyright (C) 2016 Engicam S.r.l.
4 * Author: Jagan Teki <jagan@amarulasolutions.com>
5 *
6 * SPDX-License-Identifier: GPL-2.0+
7 */
8
9#include <common.h>
10#include <mmc.h>
11#include <asm/arch/sys_proto.h>
12
13#include "board.h"
14
15DECLARE_GLOBAL_DATA_PTR;
16
17#ifdef CONFIG_ENV_IS_IN_MMC
Jagan Tekif9247562017-05-07 02:43:15 +053018static void mmc_late_init(void)
Jagan Tekiac880e72017-05-07 02:43:14 +053019{
20 char cmd[32];
21 char mmcblk[32];
22 u32 dev_no = mmc_get_env_dev();
23
Simon Glass018f5302017-08-03 12:22:10 -060024 env_set_ulong("mmcdev", dev_no);
Jagan Tekiac880e72017-05-07 02:43:14 +053025
26 /* Set mmcblk env */
27 sprintf(mmcblk, "/dev/mmcblk%dp2 rootwait rw", dev_no);
Simon Glass382bee52017-08-03 12:22:09 -060028 env_set("mmcroot", mmcblk);
Jagan Tekiac880e72017-05-07 02:43:14 +053029
30 sprintf(cmd, "mmc dev %d", dev_no);
31 run_command(cmd, 0);
32}
33#endif
34
Jagan Teki409b16d2017-11-21 00:02:10 +053035static void setenv_fdt_file(void)
36{
37 const char *cmp_dtb = CONFIG_DEFAULT_DEVICE_TREE;
38
39 if (!strcmp(cmp_dtb, "imx6q-icore")) {
40 if (is_mx6dq())
41 env_set("fdt_file", "imx6q-icore.dtb");
Jagan Teki04c28a72018-01-06 00:02:04 +053042 else if (is_mx6dl() || is_mx6solo())
Jagan Teki409b16d2017-11-21 00:02:10 +053043 env_set("fdt_file", "imx6dl-icore.dtb");
Jagan Teki04c28a72018-01-06 00:02:04 +053044 } else if (!strcmp(cmp_dtb, "imx6q-icore-mipi")) {
45 if (is_mx6dq())
46 env_set("fdt_file", "imx6q-icore-mipi.dtb");
47 else if (is_mx6dl() || is_mx6solo())
48 env_set("fdt_file", "imx6dl-icore-mipi.dtb");
Jagan Teki409b16d2017-11-21 00:02:10 +053049 } else if (!strcmp(cmp_dtb, "imx6q-icore-rqs")) {
50 if (is_mx6dq())
51 env_set("fdt_file", "imx6q-icore-rqs.dtb");
Jagan Teki04c28a72018-01-06 00:02:04 +053052 else if (is_mx6dl() || is_mx6solo())
Jagan Teki409b16d2017-11-21 00:02:10 +053053 env_set("fdt_file", "imx6dl-icore-rqs.dtb");
54 } else if (!strcmp(cmp_dtb, "imx6ul-geam-kit"))
55 env_set("fdt_file", "imx6ul-geam-kit.dtb");
56 else if (!strcmp(cmp_dtb, "imx6ul-isiot-mmc"))
Jagan Teki52aaddd2017-11-21 00:02:16 +053057 env_set("fdt_file", "imx6ul-isiot-emmc.dtb");
Jagan Teki409b16d2017-11-21 00:02:10 +053058 else if (!strcmp(cmp_dtb, "imx6ul-isiot-emmc"))
59 env_set("fdt_file", "imx6ul-isiot-emmc.dtb");
60 else if (!strcmp(cmp_dtb, "imx6ul-isiot-nand"))
61 env_set("fdt_file", "imx6ul-isiot-nand.dtb");
62}
63
Jagan Tekif9247562017-05-07 02:43:15 +053064int board_late_init(void)
65{
66 switch ((imx6_src_get_boot_mode() & IMX6_BMODE_MASK) >>
67 IMX6_BMODE_SHIFT) {
68 case IMX6_BMODE_SD:
69 case IMX6_BMODE_ESD:
70 case IMX6_BMODE_MMC:
71 case IMX6_BMODE_EMMC:
72#ifdef CONFIG_ENV_IS_IN_MMC
73 mmc_late_init();
74#endif
Simon Glass382bee52017-08-03 12:22:09 -060075 env_set("modeboot", "mmcboot");
Jagan Tekif9247562017-05-07 02:43:15 +053076 break;
Eran Matityahuaf104ae2017-12-14 20:20:02 +020077 case IMX6_BMODE_NAND_MIN ... IMX6_BMODE_NAND_MAX:
Simon Glass382bee52017-08-03 12:22:09 -060078 env_set("modeboot", "nandboot");
Jagan Tekif9247562017-05-07 02:43:15 +053079 break;
80 default:
Simon Glass382bee52017-08-03 12:22:09 -060081 env_set("modeboot", "");
Jagan Tekif9247562017-05-07 02:43:15 +053082 break;
83 }
84
Jagan Teki46f9c832017-05-12 17:18:26 +053085 if (is_mx6ul())
Simon Glass382bee52017-08-03 12:22:09 -060086 env_set("console", "ttymxc0");
Jagan Teki46f9c832017-05-12 17:18:26 +053087 else
Simon Glass382bee52017-08-03 12:22:09 -060088 env_set("console", "ttymxc3");
Jagan Teki46f9c832017-05-12 17:18:26 +053089
Jagan Tekif9247562017-05-07 02:43:15 +053090 setenv_fdt_file();
91
92 return 0;
93}
94
Jagan Tekiac880e72017-05-07 02:43:14 +053095int board_init(void)
96{
97 /* Address of boot parameters */
98 gd->bd->bi_boot_params = PHYS_SDRAM + 0x100;
99
100#ifdef CONFIG_NAND_MXS
101 setup_gpmi_nand();
102#endif
103
104#ifdef CONFIG_VIDEO_IPUV3
105 setup_display();
106#endif
107
108 return 0;
109}
110
111int dram_init(void)
112{
113 gd->ram_size = imx_ddr_size();
114
115 return 0;
116}