Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Tim Harvey | 887717d | 2014-06-02 16:13:20 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2014 Gateworks Corporation |
| 4 | * Copyright (C) 2011-2012 Freescale Semiconductor, Inc. |
| 5 | * |
| 6 | * Author: Tim Harvey <tharvey@gateworks.com> |
Tim Harvey | 887717d | 2014-06-02 16:13:20 -0700 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #include <common.h> |
| 10 | #include <asm/io.h> |
| 11 | #include <asm/arch/imx-regs.h> |
Jagan Teki | cba586b | 2017-02-24 15:45:12 +0530 | [diff] [blame] | 12 | #include <asm/arch/sys_proto.h> |
Tim Harvey | 887717d | 2014-06-02 16:13:20 -0700 | [diff] [blame] | 13 | #include <asm/spl.h> |
| 14 | #include <spl.h> |
Stefano Babic | 552a848 | 2017-06-29 10:16:06 +0200 | [diff] [blame] | 15 | #include <asm/mach-imx/hab.h> |
Uri Mashiach | c5c6f37 | 2017-09-24 09:00:24 +0300 | [diff] [blame] | 16 | #include <asm/mach-imx/boot_mode.h> |
Fabio Estevam | 511db3b | 2017-09-05 20:46:39 -0300 | [diff] [blame] | 17 | #include <g_dnl.h> |
Tim Harvey | 887717d | 2014-06-02 16:13:20 -0700 | [diff] [blame] | 18 | |
Jagan Teki | 46668df | 2017-08-28 16:45:47 +0530 | [diff] [blame] | 19 | DECLARE_GLOBAL_DATA_PTR; |
| 20 | |
Tim Harvey | 887717d | 2014-06-02 16:13:20 -0700 | [diff] [blame] | 21 | #if defined(CONFIG_MX6) |
Nikita Kiryanov | f2863ff | 2014-10-29 19:28:33 +0200 | [diff] [blame] | 22 | /* determine boot device from SRC_SBMR1 (BOOT_CFG[4:1]) or SRC_GPR9 register */ |
Tim Harvey | 887717d | 2014-06-02 16:13:20 -0700 | [diff] [blame] | 23 | u32 spl_boot_device(void) |
| 24 | { |
Jagan Teki | 7b54f5a | 2017-02-24 15:45:15 +0530 | [diff] [blame] | 25 | unsigned int bmode = readl(&src_base->sbmr2); |
Jagan Teki | cba586b | 2017-02-24 15:45:12 +0530 | [diff] [blame] | 26 | u32 reg = imx6_src_get_boot_mode(); |
Tim Harvey | 887717d | 2014-06-02 16:13:20 -0700 | [diff] [blame] | 27 | |
Stefano Babic | 40f4839 | 2015-12-11 17:30:42 +0100 | [diff] [blame] | 28 | /* |
| 29 | * Check for BMODE if serial downloader is enabled |
| 30 | * BOOT_MODE - see IMX6DQRM Table 8-1 |
| 31 | */ |
Stefan Agner | ac0a93f | 2016-12-27 17:01:42 +0100 | [diff] [blame] | 32 | if (((bmode >> 24) & 0x03) == 0x01) /* Serial Downloader */ |
Stefan Agner | 962c78b | 2017-08-15 17:49:43 -0700 | [diff] [blame] | 33 | return BOOT_DEVICE_BOARD; |
Jagan Teki | 96aac84 | 2017-02-24 15:45:14 +0530 | [diff] [blame] | 34 | |
Stefan Agner | e203dcf | 2017-09-13 14:29:45 -0700 | [diff] [blame] | 35 | /* |
| 36 | * The above method does not detect that the boot ROM used |
| 37 | * serial downloader in case the boot ROM decided to use the |
| 38 | * serial downloader as a fall back (primary boot source failed). |
| 39 | * |
| 40 | * Infer that the boot ROM used the USB serial downloader by |
| 41 | * checking whether the USB PHY is currently active... This |
| 42 | * assumes that SPL did not (yet) initialize the USB PHY... |
| 43 | */ |
| 44 | if (is_usbotg_phy_active()) |
| 45 | return BOOT_DEVICE_BOARD; |
| 46 | |
Tim Harvey | 887717d | 2014-06-02 16:13:20 -0700 | [diff] [blame] | 47 | /* BOOT_CFG1[7:4] - see IMX6DQRM Table 8-8 */ |
Jagan Teki | 96aac84 | 2017-02-24 15:45:14 +0530 | [diff] [blame] | 48 | switch ((reg & IMX6_BMODE_MASK) >> IMX6_BMODE_SHIFT) { |
Tim Harvey | 887717d | 2014-06-02 16:13:20 -0700 | [diff] [blame] | 49 | /* EIM: See 8.5.1, Table 8-9 */ |
Jagan Teki | 96aac84 | 2017-02-24 15:45:14 +0530 | [diff] [blame] | 50 | case IMX6_BMODE_EMI: |
Tim Harvey | 887717d | 2014-06-02 16:13:20 -0700 | [diff] [blame] | 51 | /* BOOT_CFG1[3]: NOR/OneNAND Selection */ |
Jagan Teki | 96aac84 | 2017-02-24 15:45:14 +0530 | [diff] [blame] | 52 | switch ((reg & IMX6_BMODE_EMI_MASK) >> IMX6_BMODE_EMI_SHIFT) { |
| 53 | case IMX6_BMODE_ONENAND: |
Tim Harvey | 887717d | 2014-06-02 16:13:20 -0700 | [diff] [blame] | 54 | return BOOT_DEVICE_ONENAND; |
Jagan Teki | 96aac84 | 2017-02-24 15:45:14 +0530 | [diff] [blame] | 55 | case IMX6_BMODE_NOR: |
Tim Harvey | 887717d | 2014-06-02 16:13:20 -0700 | [diff] [blame] | 56 | return BOOT_DEVICE_NOR; |
| 57 | break; |
Jagan Teki | 96aac84 | 2017-02-24 15:45:14 +0530 | [diff] [blame] | 58 | } |
Stefan Agner | ac0a93f | 2016-12-27 17:01:42 +0100 | [diff] [blame] | 59 | /* Reserved: Used to force Serial Downloader */ |
Stefan Agner | 3bd1642 | 2017-08-15 17:49:42 -0700 | [diff] [blame] | 60 | case IMX6_BMODE_RESERVED: |
Stefan Agner | 962c78b | 2017-08-15 17:49:43 -0700 | [diff] [blame] | 61 | return BOOT_DEVICE_BOARD; |
Tim Harvey | 887717d | 2014-06-02 16:13:20 -0700 | [diff] [blame] | 62 | /* SATA: See 8.5.4, Table 8-20 */ |
Stefan Agner | 624da53 | 2017-08-29 09:10:11 -0700 | [diff] [blame] | 63 | #if !defined(CONFIG_MX6UL) && !defined(CONFIG_MX6ULL) |
Jagan Teki | 96aac84 | 2017-02-24 15:45:14 +0530 | [diff] [blame] | 64 | case IMX6_BMODE_SATA: |
Tim Harvey | 887717d | 2014-06-02 16:13:20 -0700 | [diff] [blame] | 65 | return BOOT_DEVICE_SATA; |
Stefan Agner | 624da53 | 2017-08-29 09:10:11 -0700 | [diff] [blame] | 66 | #endif |
Tim Harvey | 887717d | 2014-06-02 16:13:20 -0700 | [diff] [blame] | 67 | /* Serial ROM: See 8.5.5.1, Table 8-22 */ |
Jagan Teki | 96aac84 | 2017-02-24 15:45:14 +0530 | [diff] [blame] | 68 | case IMX6_BMODE_SERIAL_ROM: |
Tim Harvey | 887717d | 2014-06-02 16:13:20 -0700 | [diff] [blame] | 69 | /* BOOT_CFG4[2:0] */ |
Jagan Teki | 96aac84 | 2017-02-24 15:45:14 +0530 | [diff] [blame] | 70 | switch ((reg & IMX6_BMODE_SERIAL_ROM_MASK) >> |
| 71 | IMX6_BMODE_SERIAL_ROM_SHIFT) { |
| 72 | case IMX6_BMODE_ECSPI1: |
| 73 | case IMX6_BMODE_ECSPI2: |
| 74 | case IMX6_BMODE_ECSPI3: |
| 75 | case IMX6_BMODE_ECSPI4: |
| 76 | case IMX6_BMODE_ECSPI5: |
Tim Harvey | 887717d | 2014-06-02 16:13:20 -0700 | [diff] [blame] | 77 | return BOOT_DEVICE_SPI; |
Jagan Teki | 96aac84 | 2017-02-24 15:45:14 +0530 | [diff] [blame] | 78 | case IMX6_BMODE_I2C1: |
| 79 | case IMX6_BMODE_I2C2: |
| 80 | case IMX6_BMODE_I2C3: |
Tim Harvey | 887717d | 2014-06-02 16:13:20 -0700 | [diff] [blame] | 81 | return BOOT_DEVICE_I2C; |
| 82 | } |
| 83 | break; |
| 84 | /* SD/eSD: 8.5.3, Table 8-15 */ |
Jagan Teki | 96aac84 | 2017-02-24 15:45:14 +0530 | [diff] [blame] | 85 | case IMX6_BMODE_SD: |
| 86 | case IMX6_BMODE_ESD: |
Breno Lima | 51efaba | 2016-11-30 10:08:58 -0200 | [diff] [blame] | 87 | return BOOT_DEVICE_MMC1; |
Tim Harvey | 887717d | 2014-06-02 16:13:20 -0700 | [diff] [blame] | 88 | /* MMC/eMMC: 8.5.3 */ |
Jagan Teki | 96aac84 | 2017-02-24 15:45:14 +0530 | [diff] [blame] | 89 | case IMX6_BMODE_MMC: |
| 90 | case IMX6_BMODE_EMMC: |
Tim Harvey | 887717d | 2014-06-02 16:13:20 -0700 | [diff] [blame] | 91 | return BOOT_DEVICE_MMC1; |
Jagan Teki | 20f1471 | 2017-02-24 15:45:13 +0530 | [diff] [blame] | 92 | /* NAND Flash: 8.5.2, Table 8-10 */ |
Eran Matityahu | af104ae | 2017-12-14 20:20:02 +0200 | [diff] [blame] | 93 | case IMX6_BMODE_NAND_MIN ... IMX6_BMODE_NAND_MAX: |
Tim Harvey | 887717d | 2014-06-02 16:13:20 -0700 | [diff] [blame] | 94 | return BOOT_DEVICE_NAND; |
| 95 | } |
| 96 | return BOOT_DEVICE_NONE; |
| 97 | } |
Fabio Estevam | 511db3b | 2017-09-05 20:46:39 -0300 | [diff] [blame] | 98 | |
Peng Fan | d7cb10a | 2018-01-10 13:20:26 +0800 | [diff] [blame] | 99 | #elif defined(CONFIG_MX7) || defined(CONFIG_MX8M) |
| 100 | /* Translate iMX7/MX8M boot device to the SPL boot device enumeration */ |
Uri Mashiach | c5c6f37 | 2017-09-24 09:00:24 +0300 | [diff] [blame] | 101 | u32 spl_boot_device(void) |
| 102 | { |
Eran Matityahu | 0fe69ad | 2018-03-06 16:38:00 +0200 | [diff] [blame] | 103 | #if defined(CONFIG_MX7) |
| 104 | unsigned int bmode = readl(&src_base->sbmr2); |
| 105 | |
| 106 | /* |
| 107 | * Check for BMODE if serial downloader is enabled |
| 108 | * BOOT_MODE - see IMX7DRM Table 6-24 |
| 109 | */ |
| 110 | if (((bmode >> 24) & 0x03) == 0x01) /* Serial Downloader */ |
| 111 | return BOOT_DEVICE_BOARD; |
| 112 | |
| 113 | /* |
| 114 | * The above method does not detect that the boot ROM used |
| 115 | * serial downloader in case the boot ROM decided to use the |
| 116 | * serial downloader as a fall back (primary boot source failed). |
| 117 | * |
| 118 | * Infer that the boot ROM used the USB serial downloader by |
| 119 | * checking whether the USB PHY is currently active... This |
| 120 | * assumes that SPL did not (yet) initialize the USB PHY... |
| 121 | */ |
| 122 | if (is_boot_from_usb()) |
| 123 | return BOOT_DEVICE_BOARD; |
| 124 | #endif |
| 125 | |
Uri Mashiach | c5c6f37 | 2017-09-24 09:00:24 +0300 | [diff] [blame] | 126 | enum boot_device boot_device_spl = get_boot_device(); |
| 127 | |
| 128 | switch (boot_device_spl) { |
| 129 | case SD1_BOOT: |
| 130 | case MMC1_BOOT: |
Uri Mashiach | c5c6f37 | 2017-09-24 09:00:24 +0300 | [diff] [blame] | 131 | case SD2_BOOT: |
| 132 | case MMC2_BOOT: |
Eran Matityahu | e7528a3 | 2018-01-03 12:56:24 +0200 | [diff] [blame] | 133 | case SD3_BOOT: |
| 134 | case MMC3_BOOT: |
Eran Matityahu | cd9f3ff | 2018-01-03 12:53:08 +0200 | [diff] [blame] | 135 | return BOOT_DEVICE_MMC1; |
Eran Matityahu | e7528a3 | 2018-01-03 12:56:24 +0200 | [diff] [blame] | 136 | case NAND_BOOT: |
| 137 | return BOOT_DEVICE_NAND; |
Uri Mashiach | c5c6f37 | 2017-09-24 09:00:24 +0300 | [diff] [blame] | 138 | case SPI_NOR_BOOT: |
| 139 | return BOOT_DEVICE_SPI; |
Peng Fan | d7cb10a | 2018-01-10 13:20:26 +0800 | [diff] [blame] | 140 | case USB_BOOT: |
| 141 | return BOOT_DEVICE_USB; |
Uri Mashiach | c5c6f37 | 2017-09-24 09:00:24 +0300 | [diff] [blame] | 142 | default: |
| 143 | return BOOT_DEVICE_NONE; |
| 144 | } |
| 145 | } |
Peng Fan | d7cb10a | 2018-01-10 13:20:26 +0800 | [diff] [blame] | 146 | #endif /* CONFIG_MX6 || CONFIG_MX7 || CONFIG_MX8M */ |
Uri Mashiach | c5c6f37 | 2017-09-24 09:00:24 +0300 | [diff] [blame] | 147 | |
Fabio Estevam | 511db3b | 2017-09-05 20:46:39 -0300 | [diff] [blame] | 148 | #ifdef CONFIG_SPL_USB_GADGET_SUPPORT |
| 149 | int g_dnl_bind_fixup(struct usb_device_descriptor *dev, const char *name) |
| 150 | { |
Maxime Ripard | a95aee6 | 2017-09-07 08:58:08 +0200 | [diff] [blame] | 151 | put_unaligned(CONFIG_USB_GADGET_PRODUCT_NUM + 0xfff, &dev->idProduct); |
Fabio Estevam | 511db3b | 2017-09-05 20:46:39 -0300 | [diff] [blame] | 152 | |
| 153 | return 0; |
| 154 | } |
| 155 | #endif |
Tim Harvey | 887717d | 2014-06-02 16:13:20 -0700 | [diff] [blame] | 156 | |
Fabio Estevam | 0339086 | 2018-02-15 12:41:40 -0200 | [diff] [blame] | 157 | #if defined(CONFIG_SPL_MMC_SUPPORT) |
| 158 | /* called from spl_mmc to see type of boot mode for storage (RAW or FAT) */ |
| 159 | u32 spl_boot_mode(const u32 boot_device) |
| 160 | { |
| 161 | switch (spl_boot_device()) { |
| 162 | /* for MMC return either RAW or FAT mode */ |
| 163 | case BOOT_DEVICE_MMC1: |
| 164 | case BOOT_DEVICE_MMC2: |
| 165 | #if defined(CONFIG_SPL_FAT_SUPPORT) |
| 166 | return MMCSD_MODE_FS; |
| 167 | #elif defined(CONFIG_SUPPORT_EMMC_BOOT) |
| 168 | return MMCSD_MODE_EMMCBOOT; |
| 169 | #else |
| 170 | return MMCSD_MODE_RAW; |
| 171 | #endif |
| 172 | break; |
| 173 | default: |
| 174 | puts("spl: ERROR: unsupported device\n"); |
| 175 | hang(); |
| 176 | } |
| 177 | } |
| 178 | #endif |
| 179 | |
Sven Ebenfeld | 15b505b | 2016-11-06 16:37:55 +0100 | [diff] [blame] | 180 | #if defined(CONFIG_SECURE_BOOT) |
| 181 | |
Bryan O'Donoghue | c5800b2 | 2018-01-12 12:40:01 +0000 | [diff] [blame] | 182 | /* |
| 183 | * +------------+ 0x0 (DDR_UIMAGE_START) - |
| 184 | * | Header | | |
| 185 | * +------------+ 0x40 | |
| 186 | * | | | |
| 187 | * | | | |
| 188 | * | | | |
| 189 | * | | | |
| 190 | * | Image Data | | |
| 191 | * . | | |
| 192 | * . | > Stuff to be authenticated ----+ |
| 193 | * . | | | |
| 194 | * | | | | |
| 195 | * | | | | |
| 196 | * +------------+ | | |
| 197 | * | | | | |
| 198 | * | Fill Data | | | |
| 199 | * | | | | |
| 200 | * +------------+ Align to ALIGN_SIZE | | |
| 201 | * | IVT | | | |
| 202 | * +------------+ + IVT_SIZE - | |
| 203 | * | | | |
| 204 | * | CSF DATA | <---------------------------------------------------------+ |
| 205 | * | | |
| 206 | * +------------+ |
| 207 | * | | |
| 208 | * | Fill Data | |
| 209 | * | | |
| 210 | * +------------+ + CSF_PAD_SIZE |
| 211 | */ |
| 212 | |
Sven Ebenfeld | 15b505b | 2016-11-06 16:37:55 +0100 | [diff] [blame] | 213 | __weak void __noreturn jump_to_image_no_args(struct spl_image_info *spl_image) |
| 214 | { |
| 215 | typedef void __noreturn (*image_entry_noargs_t)(void); |
Bryan O'Donoghue | c5800b2 | 2018-01-12 12:40:01 +0000 | [diff] [blame] | 216 | uint32_t offset; |
Sven Ebenfeld | 15b505b | 2016-11-06 16:37:55 +0100 | [diff] [blame] | 217 | |
| 218 | image_entry_noargs_t image_entry = |
| 219 | (image_entry_noargs_t)(unsigned long)spl_image->entry_point; |
| 220 | |
Tom Rini | 4386feb | 2017-01-11 10:45:48 -0500 | [diff] [blame] | 221 | debug("image entry point: 0x%lX\n", spl_image->entry_point); |
Sven Ebenfeld | 15b505b | 2016-11-06 16:37:55 +0100 | [diff] [blame] | 222 | |
| 223 | /* HAB looks for the CSF at the end of the authenticated data therefore, |
| 224 | * we need to subtract the size of the CSF from the actual filesize */ |
Bryan O'Donoghue | c5800b2 | 2018-01-12 12:40:01 +0000 | [diff] [blame] | 225 | offset = spl_image->size - CONFIG_CSF_SIZE; |
Bryan O'Donoghue | 57f6548 | 2018-01-12 12:40:13 +0000 | [diff] [blame] | 226 | if (!imx_hab_authenticate_image(spl_image->load_addr, |
| 227 | offset + IVT_SIZE + CSF_PAD_SIZE, |
| 228 | offset)) { |
Sven Ebenfeld | 15b505b | 2016-11-06 16:37:55 +0100 | [diff] [blame] | 229 | image_entry(); |
| 230 | } else { |
| 231 | puts("spl: ERROR: image authentication unsuccessful\n"); |
| 232 | hang(); |
| 233 | } |
| 234 | } |
| 235 | |
| 236 | #endif |
Jagan Teki | 46668df | 2017-08-28 16:45:47 +0530 | [diff] [blame] | 237 | |
| 238 | #if defined(CONFIG_MX6) && defined(CONFIG_SPL_OS_BOOT) |
| 239 | int dram_init_banksize(void) |
| 240 | { |
| 241 | gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE; |
| 242 | gd->bd->bi_dram[0].size = imx_ddr_size(); |
| 243 | |
| 244 | return 0; |
| 245 | } |
| 246 | #endif |