blob: 1a231c67f5accb032a6a691d9b2ad2c07229f33d [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Tim Harvey354a7e32014-06-02 16:13:20 -07002/*
3 * Copyright (C) 2014 Gateworks Corporation
4 * Copyright (C) 2011-2012 Freescale Semiconductor, Inc.
5 *
6 * Author: Tim Harvey <tharvey@gateworks.com>
Tim Harvey354a7e32014-06-02 16:13:20 -07007 */
8
9#include <common.h>
Simon Glassf11478f2019-12-28 10:45:07 -070010#include <hang.h>
Simon Glass97589732020-05-10 11:40:02 -060011#include <init.h>
Simon Glass0f2af882020-05-10 11:40:05 -060012#include <log.h>
Tim Harvey354a7e32014-06-02 16:13:20 -070013#include <asm/io.h>
14#include <asm/arch/imx-regs.h>
Jagan Tekie5f970b2017-02-24 15:45:12 +053015#include <asm/arch/sys_proto.h>
Tim Harvey354a7e32014-06-02 16:13:20 -070016#include <asm/spl.h>
17#include <spl.h>
Stefano Babic33731bc2017-06-29 10:16:06 +020018#include <asm/mach-imx/hab.h>
Uri Mashiach5dd46892017-09-24 09:00:24 +030019#include <asm/mach-imx/boot_mode.h>
Fabio Estevama0e462b2017-09-05 20:46:39 -030020#include <g_dnl.h>
Tim Harvey354a7e32014-06-02 16:13:20 -070021
Jagan Teki7bb61bb2017-08-28 16:45:47 +053022DECLARE_GLOBAL_DATA_PTR;
23
Peng Fancffe7322019-08-27 06:25:07 +000024__weak int spl_board_boot_device(enum boot_device boot_dev_spl)
25{
26 return 0;
27}
28
Tim Harvey354a7e32014-06-02 16:13:20 -070029#if defined(CONFIG_MX6)
Nikita Kiryanov9fba8422014-10-29 19:28:33 +020030/* determine boot device from SRC_SBMR1 (BOOT_CFG[4:1]) or SRC_GPR9 register */
Tim Harvey354a7e32014-06-02 16:13:20 -070031u32 spl_boot_device(void)
32{
Jagan Tekic981a942017-02-24 15:45:15 +053033 unsigned int bmode = readl(&src_base->sbmr2);
Jagan Tekie5f970b2017-02-24 15:45:12 +053034 u32 reg = imx6_src_get_boot_mode();
Tim Harvey354a7e32014-06-02 16:13:20 -070035
Stefano Babic587e72e2015-12-11 17:30:42 +010036 /*
37 * Check for BMODE if serial downloader is enabled
38 * BOOT_MODE - see IMX6DQRM Table 8-1
39 */
Stefan Agner15390962016-12-27 17:01:42 +010040 if (((bmode >> 24) & 0x03) == 0x01) /* Serial Downloader */
Stefan Agnera0a50ce2017-08-15 17:49:43 -070041 return BOOT_DEVICE_BOARD;
Jagan Teki32a71142017-02-24 15:45:14 +053042
Stefan Agner47f547e2017-09-13 14:29:45 -070043 /*
44 * The above method does not detect that the boot ROM used
45 * serial downloader in case the boot ROM decided to use the
46 * serial downloader as a fall back (primary boot source failed).
47 *
48 * Infer that the boot ROM used the USB serial downloader by
49 * checking whether the USB PHY is currently active... This
50 * assumes that SPL did not (yet) initialize the USB PHY...
51 */
52 if (is_usbotg_phy_active())
53 return BOOT_DEVICE_BOARD;
54
Tim Harvey354a7e32014-06-02 16:13:20 -070055 /* BOOT_CFG1[7:4] - see IMX6DQRM Table 8-8 */
Jagan Teki32a71142017-02-24 15:45:14 +053056 switch ((reg & IMX6_BMODE_MASK) >> IMX6_BMODE_SHIFT) {
Tim Harvey354a7e32014-06-02 16:13:20 -070057 /* EIM: See 8.5.1, Table 8-9 */
Jagan Teki32a71142017-02-24 15:45:14 +053058 case IMX6_BMODE_EMI:
Tim Harvey354a7e32014-06-02 16:13:20 -070059 /* BOOT_CFG1[3]: NOR/OneNAND Selection */
Jagan Teki32a71142017-02-24 15:45:14 +053060 switch ((reg & IMX6_BMODE_EMI_MASK) >> IMX6_BMODE_EMI_SHIFT) {
61 case IMX6_BMODE_ONENAND:
Tim Harvey354a7e32014-06-02 16:13:20 -070062 return BOOT_DEVICE_ONENAND;
Jagan Teki32a71142017-02-24 15:45:14 +053063 case IMX6_BMODE_NOR:
Tim Harvey354a7e32014-06-02 16:13:20 -070064 return BOOT_DEVICE_NOR;
65 break;
Jagan Teki32a71142017-02-24 15:45:14 +053066 }
Stefan Agner15390962016-12-27 17:01:42 +010067 /* Reserved: Used to force Serial Downloader */
Stefan Agner53456f52017-08-15 17:49:42 -070068 case IMX6_BMODE_RESERVED:
Stefan Agnera0a50ce2017-08-15 17:49:43 -070069 return BOOT_DEVICE_BOARD;
Tim Harvey354a7e32014-06-02 16:13:20 -070070 /* SATA: See 8.5.4, Table 8-20 */
Stefan Agner34da4732017-08-29 09:10:11 -070071#if !defined(CONFIG_MX6UL) && !defined(CONFIG_MX6ULL)
Jagan Teki32a71142017-02-24 15:45:14 +053072 case IMX6_BMODE_SATA:
Tim Harvey354a7e32014-06-02 16:13:20 -070073 return BOOT_DEVICE_SATA;
Stefan Agner34da4732017-08-29 09:10:11 -070074#endif
Tim Harvey354a7e32014-06-02 16:13:20 -070075 /* Serial ROM: See 8.5.5.1, Table 8-22 */
Jagan Teki32a71142017-02-24 15:45:14 +053076 case IMX6_BMODE_SERIAL_ROM:
Tim Harvey354a7e32014-06-02 16:13:20 -070077 /* BOOT_CFG4[2:0] */
Jagan Teki32a71142017-02-24 15:45:14 +053078 switch ((reg & IMX6_BMODE_SERIAL_ROM_MASK) >>
79 IMX6_BMODE_SERIAL_ROM_SHIFT) {
80 case IMX6_BMODE_ECSPI1:
81 case IMX6_BMODE_ECSPI2:
82 case IMX6_BMODE_ECSPI3:
83 case IMX6_BMODE_ECSPI4:
84 case IMX6_BMODE_ECSPI5:
Tim Harvey354a7e32014-06-02 16:13:20 -070085 return BOOT_DEVICE_SPI;
Jagan Teki32a71142017-02-24 15:45:14 +053086 case IMX6_BMODE_I2C1:
87 case IMX6_BMODE_I2C2:
88 case IMX6_BMODE_I2C3:
Tim Harvey354a7e32014-06-02 16:13:20 -070089 return BOOT_DEVICE_I2C;
90 }
91 break;
92 /* SD/eSD: 8.5.3, Table 8-15 */
Jagan Teki32a71142017-02-24 15:45:14 +053093 case IMX6_BMODE_SD:
94 case IMX6_BMODE_ESD:
Adam Forda2a91e22019-10-08 07:56:44 -050095 return BOOT_DEVICE_MMC1;
96 /* MMC/eMMC: 8.5.3 */
Jagan Teki32a71142017-02-24 15:45:14 +053097 case IMX6_BMODE_MMC:
98 case IMX6_BMODE_EMMC:
Adam Forda2a91e22019-10-08 07:56:44 -050099 return BOOT_DEVICE_MMC1;
Jagan Teki4191b222017-02-24 15:45:13 +0530100 /* NAND Flash: 8.5.2, Table 8-10 */
Eran Matityahu5fa7ca62017-12-14 20:20:02 +0200101 case IMX6_BMODE_NAND_MIN ... IMX6_BMODE_NAND_MAX:
Tim Harvey354a7e32014-06-02 16:13:20 -0700102 return BOOT_DEVICE_NAND;
Stefan Roesefe41e322019-09-20 18:09:08 +0200103#if defined(CONFIG_MX6UL) || defined(CONFIG_MX6ULL)
104 /* QSPI boot */
105 case IMX6_BMODE_QSPI:
106 return BOOT_DEVICE_SPI;
107#endif
Tim Harvey354a7e32014-06-02 16:13:20 -0700108 }
109 return BOOT_DEVICE_NONE;
110}
Fabio Estevama0e462b2017-09-05 20:46:39 -0300111
Peng Fan9d5bc072018-12-21 06:21:23 +0000112#elif defined(CONFIG_MX7) || defined(CONFIG_IMX8M) || defined(CONFIG_IMX8)
Peng Fan39945c12018-11-20 10:19:25 +0000113/* Translate iMX7/i.MX8M boot device to the SPL boot device enumeration */
Uri Mashiach5dd46892017-09-24 09:00:24 +0300114u32 spl_boot_device(void)
115{
Eran Matityahu52fef1c2018-03-06 16:38:00 +0200116#if defined(CONFIG_MX7)
117 unsigned int bmode = readl(&src_base->sbmr2);
118
119 /*
120 * Check for BMODE if serial downloader is enabled
121 * BOOT_MODE - see IMX7DRM Table 6-24
122 */
123 if (((bmode >> 24) & 0x03) == 0x01) /* Serial Downloader */
124 return BOOT_DEVICE_BOARD;
125
126 /*
127 * The above method does not detect that the boot ROM used
128 * serial downloader in case the boot ROM decided to use the
129 * serial downloader as a fall back (primary boot source failed).
130 *
131 * Infer that the boot ROM used the USB serial downloader by
132 * checking whether the USB PHY is currently active... This
133 * assumes that SPL did not (yet) initialize the USB PHY...
134 */
135 if (is_boot_from_usb())
136 return BOOT_DEVICE_BOARD;
137#endif
138
Uri Mashiach5dd46892017-09-24 09:00:24 +0300139 enum boot_device boot_device_spl = get_boot_device();
140
Peng Fane7997ef2019-12-27 10:27:49 +0800141 if (IS_ENABLED(CONFIG_IMX8MM) || IS_ENABLED(CONFIG_IMX8MN) ||
142 IS_ENABLED(CONFIG_IMX8MP))
Peng Fancffe7322019-08-27 06:25:07 +0000143 return spl_board_boot_device(boot_device_spl);
144
Uri Mashiach5dd46892017-09-24 09:00:24 +0300145 switch (boot_device_spl) {
Peng Fan30f17ec2018-11-20 10:19:29 +0000146#if defined(CONFIG_MX7)
Uri Mashiach5dd46892017-09-24 09:00:24 +0300147 case SD1_BOOT:
148 case MMC1_BOOT:
Uri Mashiach5dd46892017-09-24 09:00:24 +0300149 case SD2_BOOT:
150 case MMC2_BOOT:
Eran Matityahu3d7aa682018-01-03 12:56:24 +0200151 case SD3_BOOT:
152 case MMC3_BOOT:
Eran Matityahu73596552018-01-03 12:53:08 +0200153 return BOOT_DEVICE_MMC1;
Peng Fan9d5bc072018-12-21 06:21:23 +0000154#elif defined(CONFIG_IMX8)
155 case MMC1_BOOT:
156 return BOOT_DEVICE_MMC1;
157 case SD2_BOOT:
158 return BOOT_DEVICE_MMC2_2;
159 case SD3_BOOT:
160 return BOOT_DEVICE_MMC1;
161 case FLEXSPI_BOOT:
162 return BOOT_DEVICE_SPI;
Peng Fan30f17ec2018-11-20 10:19:29 +0000163#elif defined(CONFIG_IMX8M)
164 case SD1_BOOT:
165 case MMC1_BOOT:
166 return BOOT_DEVICE_MMC1;
167 case SD2_BOOT:
168 case MMC2_BOOT:
169 return BOOT_DEVICE_MMC2;
170#endif
Eran Matityahu3d7aa682018-01-03 12:56:24 +0200171 case NAND_BOOT:
172 return BOOT_DEVICE_NAND;
Uri Mashiach5dd46892017-09-24 09:00:24 +0300173 case SPI_NOR_BOOT:
174 return BOOT_DEVICE_SPI;
Peng Fan58f19b42018-01-10 13:20:26 +0800175 case USB_BOOT:
176 return BOOT_DEVICE_USB;
Uri Mashiach5dd46892017-09-24 09:00:24 +0300177 default:
178 return BOOT_DEVICE_NONE;
179 }
180}
Peng Fan9d5bc072018-12-21 06:21:23 +0000181#endif /* CONFIG_MX7 || CONFIG_IMX8M || CONFIG_IMX8 */
Uri Mashiach5dd46892017-09-24 09:00:24 +0300182
Jean-Jacques Hiblot6a228522019-01-10 15:44:13 +0100183#ifdef CONFIG_SPL_USB_GADGET
Fabio Estevama0e462b2017-09-05 20:46:39 -0300184int g_dnl_bind_fixup(struct usb_device_descriptor *dev, const char *name)
185{
Maxime Ripard7f78b9d2017-09-07 08:58:08 +0200186 put_unaligned(CONFIG_USB_GADGET_PRODUCT_NUM + 0xfff, &dev->idProduct);
Fabio Estevama0e462b2017-09-05 20:46:39 -0300187
188 return 0;
189}
190#endif
Tim Harvey354a7e32014-06-02 16:13:20 -0700191
Fabio Estevam550b52e2018-02-15 12:41:40 -0200192#if defined(CONFIG_SPL_MMC_SUPPORT)
193/* called from spl_mmc to see type of boot mode for storage (RAW or FAT) */
Harald Seiler0bf7ab12020-04-15 11:33:30 +0200194u32 spl_mmc_boot_mode(const u32 boot_device)
Fabio Estevam550b52e2018-02-15 12:41:40 -0200195{
Peng Fan1dd4cc32019-10-16 10:24:25 +0000196#if defined(CONFIG_MX7) || defined(CONFIG_IMX8M) || defined(CONFIG_IMX8)
197 switch (get_boot_device()) {
198 /* for MMC return either RAW or FAT mode */
199 case SD1_BOOT:
200 case SD2_BOOT:
201 case SD3_BOOT:
Harald Seilerfbbb3182020-04-23 13:07:53 +0200202 if (IS_ENABLED(CONFIG_SPL_FS_FAT))
Harald Seiler51526812020-04-23 13:07:52 +0200203 return MMCSD_MODE_FS;
204 else
205 return MMCSD_MODE_RAW;
Peng Fan1dd4cc32019-10-16 10:24:25 +0000206 case MMC1_BOOT:
207 case MMC2_BOOT:
208 case MMC3_BOOT:
Harald Seilerfbbb3182020-04-23 13:07:53 +0200209 if (IS_ENABLED(CONFIG_SPL_FS_FAT))
Harald Seiler51526812020-04-23 13:07:52 +0200210 return MMCSD_MODE_FS;
211 else if (IS_ENABLED(CONFIG_SUPPORT_EMMC_BOOT))
212 return MMCSD_MODE_EMMCBOOT;
213 else
214 return MMCSD_MODE_RAW;
Peng Fan1dd4cc32019-10-16 10:24:25 +0000215 default:
216 puts("spl: ERROR: unsupported device\n");
217 hang();
218 }
219#else
Anatolij Gustschin62499ff2020-04-23 13:07:49 +0200220 switch (boot_device) {
Fabio Estevam550b52e2018-02-15 12:41:40 -0200221 /* for MMC return either RAW or FAT mode */
222 case BOOT_DEVICE_MMC1:
223 case BOOT_DEVICE_MMC2:
Peng Fan9d5bc072018-12-21 06:21:23 +0000224 case BOOT_DEVICE_MMC2_2:
Harald Seiler51526812020-04-23 13:07:52 +0200225 if (IS_ENABLED(CONFIG_SPL_FS_FAT))
226 return MMCSD_MODE_FS;
227 else if (IS_ENABLED(CONFIG_SUPPORT_EMMC_BOOT))
228 return MMCSD_MODE_EMMCBOOT;
229 else
230 return MMCSD_MODE_RAW;
Fabio Estevam550b52e2018-02-15 12:41:40 -0200231 default:
232 puts("spl: ERROR: unsupported device\n");
233 hang();
234 }
Peng Fan1dd4cc32019-10-16 10:24:25 +0000235#endif
Fabio Estevam550b52e2018-02-15 12:41:40 -0200236}
237#endif
238
Stefano Babicf8b509b2019-09-20 08:47:53 +0200239#if defined(CONFIG_IMX_HAB)
Sven Ebenfeldeba5e332016-11-06 16:37:55 +0100240
Bryan O'Donoghue88919962018-01-12 12:40:01 +0000241/*
242 * +------------+ 0x0 (DDR_UIMAGE_START) -
243 * | Header | |
244 * +------------+ 0x40 |
245 * | | |
246 * | | |
247 * | | |
248 * | | |
249 * | Image Data | |
250 * . | |
251 * . | > Stuff to be authenticated ----+
252 * . | | |
253 * | | | |
254 * | | | |
255 * +------------+ | |
256 * | | | |
257 * | Fill Data | | |
258 * | | | |
259 * +------------+ Align to ALIGN_SIZE | |
260 * | IVT | | |
261 * +------------+ + IVT_SIZE - |
262 * | | |
263 * | CSF DATA | <---------------------------------------------------------+
264 * | |
265 * +------------+
266 * | |
267 * | Fill Data |
268 * | |
269 * +------------+ + CSF_PAD_SIZE
270 */
271
Sven Ebenfeldeba5e332016-11-06 16:37:55 +0100272__weak void __noreturn jump_to_image_no_args(struct spl_image_info *spl_image)
273{
274 typedef void __noreturn (*image_entry_noargs_t)(void);
Bryan O'Donoghue88919962018-01-12 12:40:01 +0000275 uint32_t offset;
Sven Ebenfeldeba5e332016-11-06 16:37:55 +0100276
277 image_entry_noargs_t image_entry =
278 (image_entry_noargs_t)(unsigned long)spl_image->entry_point;
279
Tom Rinif1c2fc02017-01-11 10:45:48 -0500280 debug("image entry point: 0x%lX\n", spl_image->entry_point);
Sven Ebenfeldeba5e332016-11-06 16:37:55 +0100281
Ye Li9d5b0f42018-11-17 09:10:25 +0000282 if (spl_image->flags & SPL_FIT_FOUND) {
Sven Ebenfeldeba5e332016-11-06 16:37:55 +0100283 image_entry();
284 } else {
Ye Li9d5b0f42018-11-17 09:10:25 +0000285 /*
286 * HAB looks for the CSF at the end of the authenticated
287 * data therefore, we need to subtract the size of the
288 * CSF from the actual filesize
289 */
290 offset = spl_image->size - CONFIG_CSF_SIZE;
291 if (!imx_hab_authenticate_image(spl_image->load_addr,
292 offset + IVT_SIZE +
293 CSF_PAD_SIZE, offset)) {
294 image_entry();
295 } else {
296 puts("spl: ERROR: image authentication fail\n");
297 hang();
298 }
299 }
300}
301
Ricardo Salvetid7d649c2019-09-02 18:18:52 -0300302#if !defined(CONFIG_SPL_FIT_SIGNATURE)
Ye Li9d5b0f42018-11-17 09:10:25 +0000303ulong board_spl_fit_size_align(ulong size)
304{
305 /*
306 * HAB authenticate_image requests the IVT offset is
307 * aligned to 0x1000
308 */
309
310 size = ALIGN(size, 0x1000);
311 size += CONFIG_CSF_SIZE;
312
313 return size;
314}
315
316void board_spl_fit_post_load(ulong load_addr, size_t length)
317{
318 u32 offset = length - CONFIG_CSF_SIZE;
319
320 if (imx_hab_authenticate_image(load_addr,
321 offset + IVT_SIZE + CSF_PAD_SIZE,
322 offset)) {
Sven Ebenfeldeba5e332016-11-06 16:37:55 +0100323 puts("spl: ERROR: image authentication unsuccessful\n");
324 hang();
325 }
326}
Ricardo Salvetid7d649c2019-09-02 18:18:52 -0300327#endif
Sven Ebenfeldeba5e332016-11-06 16:37:55 +0100328
Jagan Teki7bb61bb2017-08-28 16:45:47 +0530329#endif
330
331#if defined(CONFIG_MX6) && defined(CONFIG_SPL_OS_BOOT)
332int dram_init_banksize(void)
333{
334 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
335 gd->bd->bi_dram[0].size = imx_ddr_size();
336
337 return 0;
338}
Sven Ebenfeldeba5e332016-11-06 16:37:55 +0100339#endif