Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Tim Harvey | 354a7e3 | 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 | 354a7e3 | 2014-06-02 16:13:20 -0700 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #include <common.h> |
Simon Glass | f11478f | 2019-12-28 10:45:07 -0700 | [diff] [blame] | 10 | #include <hang.h> |
Simon Glass | 9758973 | 2020-05-10 11:40:02 -0600 | [diff] [blame] | 11 | #include <init.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 12 | #include <log.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 13 | #include <asm/global_data.h> |
Tim Harvey | 354a7e3 | 2014-06-02 16:13:20 -0700 | [diff] [blame] | 14 | #include <asm/io.h> |
| 15 | #include <asm/arch/imx-regs.h> |
Jagan Teki | e5f970b | 2017-02-24 15:45:12 +0530 | [diff] [blame] | 16 | #include <asm/arch/sys_proto.h> |
Tim Harvey | 354a7e3 | 2014-06-02 16:13:20 -0700 | [diff] [blame] | 17 | #include <asm/spl.h> |
| 18 | #include <spl.h> |
Stefano Babic | 33731bc | 2017-06-29 10:16:06 +0200 | [diff] [blame] | 19 | #include <asm/mach-imx/hab.h> |
Uri Mashiach | 5dd4689 | 2017-09-24 09:00:24 +0300 | [diff] [blame] | 20 | #include <asm/mach-imx/boot_mode.h> |
Fabio Estevam | a0e462b | 2017-09-05 20:46:39 -0300 | [diff] [blame] | 21 | #include <g_dnl.h> |
Alexandru Gagniuc | 44af2a5 | 2021-01-20 10:46:49 -0600 | [diff] [blame] | 22 | #include <linux/libfdt.h> |
Tim Harvey | 354a7e3 | 2014-06-02 16:13:20 -0700 | [diff] [blame] | 23 | |
Jagan Teki | 7bb61bb | 2017-08-28 16:45:47 +0530 | [diff] [blame] | 24 | DECLARE_GLOBAL_DATA_PTR; |
| 25 | |
Peng Fan | cffe732 | 2019-08-27 06:25:07 +0000 | [diff] [blame] | 26 | __weak int spl_board_boot_device(enum boot_device boot_dev_spl) |
| 27 | { |
Ye Li | 732d6e6 | 2022-07-26 16:40:34 +0800 | [diff] [blame] | 28 | switch (boot_dev_spl) { |
| 29 | #if defined(CONFIG_MX7) |
| 30 | case SD1_BOOT: |
| 31 | case MMC1_BOOT: |
| 32 | case SD2_BOOT: |
| 33 | case MMC2_BOOT: |
| 34 | case SD3_BOOT: |
| 35 | case MMC3_BOOT: |
| 36 | return BOOT_DEVICE_MMC1; |
| 37 | #elif defined(CONFIG_IMX8) |
| 38 | case MMC1_BOOT: |
| 39 | return BOOT_DEVICE_MMC1; |
| 40 | case SD2_BOOT: |
| 41 | return BOOT_DEVICE_MMC2_2; |
| 42 | case SD3_BOOT: |
| 43 | return BOOT_DEVICE_MMC1; |
| 44 | case FLEXSPI_BOOT: |
| 45 | return BOOT_DEVICE_SPI; |
| 46 | #elif defined(CONFIG_IMX8M) |
| 47 | case SD1_BOOT: |
| 48 | case MMC1_BOOT: |
| 49 | return BOOT_DEVICE_MMC1; |
| 50 | case SD2_BOOT: |
| 51 | case MMC2_BOOT: |
| 52 | return BOOT_DEVICE_MMC2; |
| 53 | #endif |
| 54 | case NAND_BOOT: |
| 55 | return BOOT_DEVICE_NAND; |
| 56 | case SPI_NOR_BOOT: |
| 57 | return BOOT_DEVICE_SPI; |
| 58 | case QSPI_BOOT: |
| 59 | return BOOT_DEVICE_NOR; |
| 60 | case USB_BOOT: |
| 61 | return BOOT_DEVICE_BOARD; |
| 62 | default: |
| 63 | return BOOT_DEVICE_NONE; |
| 64 | } |
Peng Fan | cffe732 | 2019-08-27 06:25:07 +0000 | [diff] [blame] | 65 | } |
| 66 | |
Tim Harvey | 354a7e3 | 2014-06-02 16:13:20 -0700 | [diff] [blame] | 67 | #if defined(CONFIG_MX6) |
Nikita Kiryanov | 9fba842 | 2014-10-29 19:28:33 +0200 | [diff] [blame] | 68 | /* determine boot device from SRC_SBMR1 (BOOT_CFG[4:1]) or SRC_GPR9 register */ |
Tim Harvey | 354a7e3 | 2014-06-02 16:13:20 -0700 | [diff] [blame] | 69 | u32 spl_boot_device(void) |
| 70 | { |
Jagan Teki | c981a94 | 2017-02-24 15:45:15 +0530 | [diff] [blame] | 71 | unsigned int bmode = readl(&src_base->sbmr2); |
Jagan Teki | e5f970b | 2017-02-24 15:45:12 +0530 | [diff] [blame] | 72 | u32 reg = imx6_src_get_boot_mode(); |
Tim Harvey | 354a7e3 | 2014-06-02 16:13:20 -0700 | [diff] [blame] | 73 | |
Stefano Babic | 587e72e | 2015-12-11 17:30:42 +0100 | [diff] [blame] | 74 | /* |
| 75 | * Check for BMODE if serial downloader is enabled |
| 76 | * BOOT_MODE - see IMX6DQRM Table 8-1 |
| 77 | */ |
Stefan Agner | 1539096 | 2016-12-27 17:01:42 +0100 | [diff] [blame] | 78 | if (((bmode >> 24) & 0x03) == 0x01) /* Serial Downloader */ |
Stefan Agner | a0a50ce | 2017-08-15 17:49:43 -0700 | [diff] [blame] | 79 | return BOOT_DEVICE_BOARD; |
Jagan Teki | 32a7114 | 2017-02-24 15:45:14 +0530 | [diff] [blame] | 80 | |
Stefan Agner | 47f547e | 2017-09-13 14:29:45 -0700 | [diff] [blame] | 81 | /* |
| 82 | * The above method does not detect that the boot ROM used |
| 83 | * serial downloader in case the boot ROM decided to use the |
| 84 | * serial downloader as a fall back (primary boot source failed). |
| 85 | * |
| 86 | * Infer that the boot ROM used the USB serial downloader by |
| 87 | * checking whether the USB PHY is currently active... This |
| 88 | * assumes that SPL did not (yet) initialize the USB PHY... |
| 89 | */ |
| 90 | if (is_usbotg_phy_active()) |
| 91 | return BOOT_DEVICE_BOARD; |
| 92 | |
Tim Harvey | 354a7e3 | 2014-06-02 16:13:20 -0700 | [diff] [blame] | 93 | /* BOOT_CFG1[7:4] - see IMX6DQRM Table 8-8 */ |
Jagan Teki | 32a7114 | 2017-02-24 15:45:14 +0530 | [diff] [blame] | 94 | switch ((reg & IMX6_BMODE_MASK) >> IMX6_BMODE_SHIFT) { |
Tim Harvey | 354a7e3 | 2014-06-02 16:13:20 -0700 | [diff] [blame] | 95 | /* EIM: See 8.5.1, Table 8-9 */ |
Harald Seiler | 808c5d6 | 2021-12-01 10:02:54 +0100 | [diff] [blame] | 96 | case IMX6_BMODE_EIM: |
Tim Harvey | 354a7e3 | 2014-06-02 16:13:20 -0700 | [diff] [blame] | 97 | /* BOOT_CFG1[3]: NOR/OneNAND Selection */ |
Harald Seiler | 808c5d6 | 2021-12-01 10:02:54 +0100 | [diff] [blame] | 98 | switch ((reg & IMX6_BMODE_EIM_MASK) >> IMX6_BMODE_EIM_SHIFT) { |
Jagan Teki | 32a7114 | 2017-02-24 15:45:14 +0530 | [diff] [blame] | 99 | case IMX6_BMODE_ONENAND: |
Tim Harvey | 354a7e3 | 2014-06-02 16:13:20 -0700 | [diff] [blame] | 100 | return BOOT_DEVICE_ONENAND; |
Jagan Teki | 32a7114 | 2017-02-24 15:45:14 +0530 | [diff] [blame] | 101 | case IMX6_BMODE_NOR: |
Tim Harvey | 354a7e3 | 2014-06-02 16:13:20 -0700 | [diff] [blame] | 102 | return BOOT_DEVICE_NOR; |
| 103 | break; |
Jagan Teki | 32a7114 | 2017-02-24 15:45:14 +0530 | [diff] [blame] | 104 | } |
Stefan Agner | 1539096 | 2016-12-27 17:01:42 +0100 | [diff] [blame] | 105 | /* Reserved: Used to force Serial Downloader */ |
Stefan Agner | 53456f5 | 2017-08-15 17:49:42 -0700 | [diff] [blame] | 106 | case IMX6_BMODE_RESERVED: |
Stefan Agner | a0a50ce | 2017-08-15 17:49:43 -0700 | [diff] [blame] | 107 | return BOOT_DEVICE_BOARD; |
Tim Harvey | 354a7e3 | 2014-06-02 16:13:20 -0700 | [diff] [blame] | 108 | /* SATA: See 8.5.4, Table 8-20 */ |
Stefan Agner | 34da473 | 2017-08-29 09:10:11 -0700 | [diff] [blame] | 109 | #if !defined(CONFIG_MX6UL) && !defined(CONFIG_MX6ULL) |
Jagan Teki | 32a7114 | 2017-02-24 15:45:14 +0530 | [diff] [blame] | 110 | case IMX6_BMODE_SATA: |
Tim Harvey | 354a7e3 | 2014-06-02 16:13:20 -0700 | [diff] [blame] | 111 | return BOOT_DEVICE_SATA; |
Stefan Agner | 34da473 | 2017-08-29 09:10:11 -0700 | [diff] [blame] | 112 | #endif |
Tim Harvey | 354a7e3 | 2014-06-02 16:13:20 -0700 | [diff] [blame] | 113 | /* Serial ROM: See 8.5.5.1, Table 8-22 */ |
Jagan Teki | 32a7114 | 2017-02-24 15:45:14 +0530 | [diff] [blame] | 114 | case IMX6_BMODE_SERIAL_ROM: |
Tim Harvey | 354a7e3 | 2014-06-02 16:13:20 -0700 | [diff] [blame] | 115 | /* BOOT_CFG4[2:0] */ |
Jagan Teki | 32a7114 | 2017-02-24 15:45:14 +0530 | [diff] [blame] | 116 | switch ((reg & IMX6_BMODE_SERIAL_ROM_MASK) >> |
| 117 | IMX6_BMODE_SERIAL_ROM_SHIFT) { |
| 118 | case IMX6_BMODE_ECSPI1: |
| 119 | case IMX6_BMODE_ECSPI2: |
| 120 | case IMX6_BMODE_ECSPI3: |
| 121 | case IMX6_BMODE_ECSPI4: |
| 122 | case IMX6_BMODE_ECSPI5: |
Tim Harvey | 354a7e3 | 2014-06-02 16:13:20 -0700 | [diff] [blame] | 123 | return BOOT_DEVICE_SPI; |
Jagan Teki | 32a7114 | 2017-02-24 15:45:14 +0530 | [diff] [blame] | 124 | case IMX6_BMODE_I2C1: |
| 125 | case IMX6_BMODE_I2C2: |
| 126 | case IMX6_BMODE_I2C3: |
Tim Harvey | 354a7e3 | 2014-06-02 16:13:20 -0700 | [diff] [blame] | 127 | return BOOT_DEVICE_I2C; |
| 128 | } |
| 129 | break; |
| 130 | /* SD/eSD: 8.5.3, Table 8-15 */ |
Jagan Teki | 32a7114 | 2017-02-24 15:45:14 +0530 | [diff] [blame] | 131 | case IMX6_BMODE_SD: |
| 132 | case IMX6_BMODE_ESD: |
Adam Ford | a2a91e2 | 2019-10-08 07:56:44 -0500 | [diff] [blame] | 133 | return BOOT_DEVICE_MMC1; |
| 134 | /* MMC/eMMC: 8.5.3 */ |
Jagan Teki | 32a7114 | 2017-02-24 15:45:14 +0530 | [diff] [blame] | 135 | case IMX6_BMODE_MMC: |
| 136 | case IMX6_BMODE_EMMC: |
Adam Ford | a2a91e2 | 2019-10-08 07:56:44 -0500 | [diff] [blame] | 137 | return BOOT_DEVICE_MMC1; |
Jagan Teki | 4191b22 | 2017-02-24 15:45:13 +0530 | [diff] [blame] | 138 | /* NAND Flash: 8.5.2, Table 8-10 */ |
Eran Matityahu | 5fa7ca6 | 2017-12-14 20:20:02 +0200 | [diff] [blame] | 139 | case IMX6_BMODE_NAND_MIN ... IMX6_BMODE_NAND_MAX: |
Tim Harvey | 354a7e3 | 2014-06-02 16:13:20 -0700 | [diff] [blame] | 140 | return BOOT_DEVICE_NAND; |
Stefan Roese | fe41e32 | 2019-09-20 18:09:08 +0200 | [diff] [blame] | 141 | #if defined(CONFIG_MX6UL) || defined(CONFIG_MX6ULL) |
| 142 | /* QSPI boot */ |
| 143 | case IMX6_BMODE_QSPI: |
| 144 | return BOOT_DEVICE_SPI; |
| 145 | #endif |
Tim Harvey | 354a7e3 | 2014-06-02 16:13:20 -0700 | [diff] [blame] | 146 | } |
| 147 | return BOOT_DEVICE_NONE; |
| 148 | } |
Fabio Estevam | a0e462b | 2017-09-05 20:46:39 -0300 | [diff] [blame] | 149 | |
Peng Fan | bbcd2c4 | 2022-07-26 16:40:39 +0800 | [diff] [blame] | 150 | #elif defined(CONFIG_MX7) || defined(CONFIG_IMX8M) || defined(CONFIG_IMX8) || defined(CONFIG_IMX9) |
Peng Fan | 39945c1 | 2018-11-20 10:19:25 +0000 | [diff] [blame] | 151 | /* Translate iMX7/i.MX8M boot device to the SPL boot device enumeration */ |
Uri Mashiach | 5dd4689 | 2017-09-24 09:00:24 +0300 | [diff] [blame] | 152 | u32 spl_boot_device(void) |
| 153 | { |
Eran Matityahu | 52fef1c | 2018-03-06 16:38:00 +0200 | [diff] [blame] | 154 | #if defined(CONFIG_MX7) |
| 155 | unsigned int bmode = readl(&src_base->sbmr2); |
| 156 | |
| 157 | /* |
| 158 | * Check for BMODE if serial downloader is enabled |
| 159 | * BOOT_MODE - see IMX7DRM Table 6-24 |
| 160 | */ |
| 161 | if (((bmode >> 24) & 0x03) == 0x01) /* Serial Downloader */ |
| 162 | return BOOT_DEVICE_BOARD; |
| 163 | |
| 164 | /* |
| 165 | * The above method does not detect that the boot ROM used |
| 166 | * serial downloader in case the boot ROM decided to use the |
| 167 | * serial downloader as a fall back (primary boot source failed). |
| 168 | * |
| 169 | * Infer that the boot ROM used the USB serial downloader by |
| 170 | * checking whether the USB PHY is currently active... This |
| 171 | * assumes that SPL did not (yet) initialize the USB PHY... |
| 172 | */ |
| 173 | if (is_boot_from_usb()) |
| 174 | return BOOT_DEVICE_BOARD; |
| 175 | #endif |
| 176 | |
Uri Mashiach | 5dd4689 | 2017-09-24 09:00:24 +0300 | [diff] [blame] | 177 | enum boot_device boot_device_spl = get_boot_device(); |
| 178 | |
Ye Li | 732d6e6 | 2022-07-26 16:40:34 +0800 | [diff] [blame] | 179 | return spl_board_boot_device(boot_device_spl); |
Uri Mashiach | 5dd4689 | 2017-09-24 09:00:24 +0300 | [diff] [blame] | 180 | } |
Peng Fan | 9d5bc07 | 2018-12-21 06:21:23 +0000 | [diff] [blame] | 181 | #endif /* CONFIG_MX7 || CONFIG_IMX8M || CONFIG_IMX8 */ |
Uri Mashiach | 5dd4689 | 2017-09-24 09:00:24 +0300 | [diff] [blame] | 182 | |
Jean-Jacques Hiblot | 6a22852 | 2019-01-10 15:44:13 +0100 | [diff] [blame] | 183 | #ifdef CONFIG_SPL_USB_GADGET |
Fabio Estevam | a0e462b | 2017-09-05 20:46:39 -0300 | [diff] [blame] | 184 | int g_dnl_bind_fixup(struct usb_device_descriptor *dev, const char *name) |
| 185 | { |
Maxime Ripard | 7f78b9d | 2017-09-07 08:58:08 +0200 | [diff] [blame] | 186 | put_unaligned(CONFIG_USB_GADGET_PRODUCT_NUM + 0xfff, &dev->idProduct); |
Fabio Estevam | a0e462b | 2017-09-05 20:46:39 -0300 | [diff] [blame] | 187 | |
| 188 | return 0; |
| 189 | } |
Peng Fan | 8f97c26 | 2020-08-18 18:16:47 +0800 | [diff] [blame] | 190 | |
| 191 | #define SDPV_BCD_DEVICE 0x500 |
| 192 | int g_dnl_get_board_bcd_device_number(int gcnum) |
| 193 | { |
| 194 | return SDPV_BCD_DEVICE; |
| 195 | } |
Fabio Estevam | a0e462b | 2017-09-05 20:46:39 -0300 | [diff] [blame] | 196 | #endif |
Tim Harvey | 354a7e3 | 2014-06-02 16:13:20 -0700 | [diff] [blame] | 197 | |
Simon Glass | b58bfe0 | 2021-08-08 12:20:09 -0600 | [diff] [blame] | 198 | #if defined(CONFIG_SPL_MMC) |
Fabio Estevam | 550b52e | 2018-02-15 12:41:40 -0200 | [diff] [blame] | 199 | /* called from spl_mmc to see type of boot mode for storage (RAW or FAT) */ |
Andre Przywara | 3cb12ef | 2021-07-12 11:06:49 +0100 | [diff] [blame] | 200 | u32 spl_mmc_boot_mode(struct mmc *mmc, const u32 boot_device) |
Fabio Estevam | 550b52e | 2018-02-15 12:41:40 -0200 | [diff] [blame] | 201 | { |
Peng Fan | 1dd4cc3 | 2019-10-16 10:24:25 +0000 | [diff] [blame] | 202 | #if defined(CONFIG_MX7) || defined(CONFIG_IMX8M) || defined(CONFIG_IMX8) |
| 203 | switch (get_boot_device()) { |
| 204 | /* for MMC return either RAW or FAT mode */ |
| 205 | case SD1_BOOT: |
| 206 | case SD2_BOOT: |
| 207 | case SD3_BOOT: |
Harald Seiler | fbbb318 | 2020-04-23 13:07:53 +0200 | [diff] [blame] | 208 | if (IS_ENABLED(CONFIG_SPL_FS_FAT)) |
Harald Seiler | 5152681 | 2020-04-23 13:07:52 +0200 | [diff] [blame] | 209 | return MMCSD_MODE_FS; |
| 210 | else |
| 211 | return MMCSD_MODE_RAW; |
Peng Fan | 1dd4cc3 | 2019-10-16 10:24:25 +0000 | [diff] [blame] | 212 | case MMC1_BOOT: |
| 213 | case MMC2_BOOT: |
| 214 | case MMC3_BOOT: |
Harald Seiler | fbbb318 | 2020-04-23 13:07:53 +0200 | [diff] [blame] | 215 | if (IS_ENABLED(CONFIG_SPL_FS_FAT)) |
Harald Seiler | 5152681 | 2020-04-23 13:07:52 +0200 | [diff] [blame] | 216 | return MMCSD_MODE_FS; |
| 217 | else if (IS_ENABLED(CONFIG_SUPPORT_EMMC_BOOT)) |
| 218 | return MMCSD_MODE_EMMCBOOT; |
| 219 | else |
| 220 | return MMCSD_MODE_RAW; |
Peng Fan | 1dd4cc3 | 2019-10-16 10:24:25 +0000 | [diff] [blame] | 221 | default: |
| 222 | puts("spl: ERROR: unsupported device\n"); |
| 223 | hang(); |
| 224 | } |
| 225 | #else |
Anatolij Gustschin | 62499ff | 2020-04-23 13:07:49 +0200 | [diff] [blame] | 226 | switch (boot_device) { |
Fabio Estevam | 550b52e | 2018-02-15 12:41:40 -0200 | [diff] [blame] | 227 | /* for MMC return either RAW or FAT mode */ |
| 228 | case BOOT_DEVICE_MMC1: |
| 229 | case BOOT_DEVICE_MMC2: |
Peng Fan | 9d5bc07 | 2018-12-21 06:21:23 +0000 | [diff] [blame] | 230 | case BOOT_DEVICE_MMC2_2: |
Harald Seiler | 5152681 | 2020-04-23 13:07:52 +0200 | [diff] [blame] | 231 | if (IS_ENABLED(CONFIG_SPL_FS_FAT)) |
| 232 | return MMCSD_MODE_FS; |
| 233 | else if (IS_ENABLED(CONFIG_SUPPORT_EMMC_BOOT)) |
| 234 | return MMCSD_MODE_EMMCBOOT; |
| 235 | else |
| 236 | return MMCSD_MODE_RAW; |
Fabio Estevam | 550b52e | 2018-02-15 12:41:40 -0200 | [diff] [blame] | 237 | default: |
| 238 | puts("spl: ERROR: unsupported device\n"); |
| 239 | hang(); |
| 240 | } |
Peng Fan | 1dd4cc3 | 2019-10-16 10:24:25 +0000 | [diff] [blame] | 241 | #endif |
Fabio Estevam | 550b52e | 2018-02-15 12:41:40 -0200 | [diff] [blame] | 242 | } |
| 243 | #endif |
| 244 | |
Stefano Babic | f8b509b | 2019-09-20 08:47:53 +0200 | [diff] [blame] | 245 | #if defined(CONFIG_IMX_HAB) |
Sven Ebenfeld | eba5e33 | 2016-11-06 16:37:55 +0100 | [diff] [blame] | 246 | |
Bryan O'Donoghue | 8891996 | 2018-01-12 12:40:01 +0000 | [diff] [blame] | 247 | /* |
| 248 | * +------------+ 0x0 (DDR_UIMAGE_START) - |
| 249 | * | Header | | |
| 250 | * +------------+ 0x40 | |
| 251 | * | | | |
| 252 | * | | | |
| 253 | * | | | |
| 254 | * | | | |
| 255 | * | Image Data | | |
| 256 | * . | | |
| 257 | * . | > Stuff to be authenticated ----+ |
| 258 | * . | | | |
| 259 | * | | | | |
| 260 | * | | | | |
| 261 | * +------------+ | | |
| 262 | * | | | | |
| 263 | * | Fill Data | | | |
| 264 | * | | | | |
| 265 | * +------------+ Align to ALIGN_SIZE | | |
| 266 | * | IVT | | | |
| 267 | * +------------+ + IVT_SIZE - | |
| 268 | * | | | |
| 269 | * | CSF DATA | <---------------------------------------------------------+ |
| 270 | * | | |
| 271 | * +------------+ |
| 272 | * | | |
| 273 | * | Fill Data | |
| 274 | * | | |
| 275 | * +------------+ + CSF_PAD_SIZE |
| 276 | */ |
| 277 | |
Sven Ebenfeld | eba5e33 | 2016-11-06 16:37:55 +0100 | [diff] [blame] | 278 | __weak void __noreturn jump_to_image_no_args(struct spl_image_info *spl_image) |
| 279 | { |
| 280 | typedef void __noreturn (*image_entry_noargs_t)(void); |
Bryan O'Donoghue | 8891996 | 2018-01-12 12:40:01 +0000 | [diff] [blame] | 281 | uint32_t offset; |
Sven Ebenfeld | eba5e33 | 2016-11-06 16:37:55 +0100 | [diff] [blame] | 282 | |
| 283 | image_entry_noargs_t image_entry = |
| 284 | (image_entry_noargs_t)(unsigned long)spl_image->entry_point; |
| 285 | |
Tom Rini | f1c2fc0 | 2017-01-11 10:45:48 -0500 | [diff] [blame] | 286 | debug("image entry point: 0x%lX\n", spl_image->entry_point); |
Sven Ebenfeld | eba5e33 | 2016-11-06 16:37:55 +0100 | [diff] [blame] | 287 | |
Ye Li | 9d5b0f4 | 2018-11-17 09:10:25 +0000 | [diff] [blame] | 288 | if (spl_image->flags & SPL_FIT_FOUND) { |
Sven Ebenfeld | eba5e33 | 2016-11-06 16:37:55 +0100 | [diff] [blame] | 289 | image_entry(); |
| 290 | } else { |
Ye Li | 9d5b0f4 | 2018-11-17 09:10:25 +0000 | [diff] [blame] | 291 | /* |
| 292 | * HAB looks for the CSF at the end of the authenticated |
| 293 | * data therefore, we need to subtract the size of the |
| 294 | * CSF from the actual filesize |
| 295 | */ |
| 296 | offset = spl_image->size - CONFIG_CSF_SIZE; |
| 297 | if (!imx_hab_authenticate_image(spl_image->load_addr, |
| 298 | offset + IVT_SIZE + |
| 299 | CSF_PAD_SIZE, offset)) { |
| 300 | image_entry(); |
| 301 | } else { |
Marek Vasut | 579fd51 | 2020-05-30 20:29:00 +0200 | [diff] [blame] | 302 | panic("spl: ERROR: image authentication fail\n"); |
Ye Li | 9d5b0f4 | 2018-11-17 09:10:25 +0000 | [diff] [blame] | 303 | } |
| 304 | } |
| 305 | } |
| 306 | |
Ricardo Salveti | d7d649c | 2019-09-02 18:18:52 -0300 | [diff] [blame] | 307 | #if !defined(CONFIG_SPL_FIT_SIGNATURE) |
Ye Li | 9d5b0f4 | 2018-11-17 09:10:25 +0000 | [diff] [blame] | 308 | ulong board_spl_fit_size_align(ulong size) |
| 309 | { |
| 310 | /* |
| 311 | * HAB authenticate_image requests the IVT offset is |
| 312 | * aligned to 0x1000 |
| 313 | */ |
| 314 | |
| 315 | size = ALIGN(size, 0x1000); |
| 316 | size += CONFIG_CSF_SIZE; |
| 317 | |
| 318 | return size; |
| 319 | } |
| 320 | |
Alexandru Gagniuc | 44af2a5 | 2021-01-20 10:46:49 -0600 | [diff] [blame] | 321 | void board_spl_fit_post_load(const void *fit) |
Ye Li | 9d5b0f4 | 2018-11-17 09:10:25 +0000 | [diff] [blame] | 322 | { |
Alexandru Gagniuc | 44af2a5 | 2021-01-20 10:46:49 -0600 | [diff] [blame] | 323 | u32 offset = ALIGN(fdt_totalsize(fit), 0x1000); |
Ye Li | 9d5b0f4 | 2018-11-17 09:10:25 +0000 | [diff] [blame] | 324 | |
Alexandru Gagniuc | 44af2a5 | 2021-01-20 10:46:49 -0600 | [diff] [blame] | 325 | if (imx_hab_authenticate_image((uintptr_t)fit, |
Ye Li | 9d5b0f4 | 2018-11-17 09:10:25 +0000 | [diff] [blame] | 326 | offset + IVT_SIZE + CSF_PAD_SIZE, |
| 327 | offset)) { |
Marek Vasut | 579fd51 | 2020-05-30 20:29:00 +0200 | [diff] [blame] | 328 | panic("spl: ERROR: image authentication unsuccessful\n"); |
Sven Ebenfeld | eba5e33 | 2016-11-06 16:37:55 +0100 | [diff] [blame] | 329 | } |
| 330 | } |
Ricardo Salveti | d7d649c | 2019-09-02 18:18:52 -0300 | [diff] [blame] | 331 | #endif |
Sven Ebenfeld | eba5e33 | 2016-11-06 16:37:55 +0100 | [diff] [blame] | 332 | |
Heiko Schocher | 7d7c367 | 2021-08-17 08:17:18 +0200 | [diff] [blame] | 333 | void *board_spl_fit_buffer_addr(ulong fit_size, int sectors, int bl_len) |
| 334 | { |
| 335 | int align_len = ARCH_DMA_MINALIGN - 1; |
| 336 | |
| 337 | /* Some devices like SDP, NOR, NAND, SPI are using bl_len =1, so their fit address |
| 338 | * is different with SD/MMC, this cause mismatch with signed address. Thus, adjust |
| 339 | * the bl_len to align with SD/MMC. |
| 340 | */ |
| 341 | if (bl_len < 512) |
| 342 | bl_len = 512; |
| 343 | |
Simon Glass | 72cc538 | 2022-10-20 18:22:39 -0600 | [diff] [blame] | 344 | return (void *)((CONFIG_TEXT_BASE - fit_size - bl_len - |
Heiko Schocher | 7d7c367 | 2021-08-17 08:17:18 +0200 | [diff] [blame] | 345 | align_len) & ~align_len); |
| 346 | } |
Jagan Teki | 7bb61bb | 2017-08-28 16:45:47 +0530 | [diff] [blame] | 347 | #endif |
| 348 | |
| 349 | #if defined(CONFIG_MX6) && defined(CONFIG_SPL_OS_BOOT) |
| 350 | int dram_init_banksize(void) |
| 351 | { |
| 352 | gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE; |
| 353 | gd->bd->bi_dram[0].size = imx_ddr_size(); |
| 354 | |
| 355 | return 0; |
| 356 | } |
Sven Ebenfeld | eba5e33 | 2016-11-06 16:37:55 +0100 | [diff] [blame] | 357 | #endif |
Heiko Schocher | f3c450b | 2021-08-06 06:44:27 +0200 | [diff] [blame] | 358 | |
| 359 | /* |
| 360 | * read the address where the IVT header must sit |
| 361 | * from IVT image header, loaded from SPL into |
| 362 | * an malloced buffer and copy the IVT header |
| 363 | * to this address |
| 364 | */ |
| 365 | void *spl_load_simple_fit_fix_load(const void *fit) |
| 366 | { |
| 367 | struct ivt *ivt; |
| 368 | unsigned long new; |
| 369 | unsigned long offset; |
| 370 | unsigned long size; |
| 371 | u8 *tmp = (u8 *)fit; |
| 372 | |
| 373 | offset = ALIGN(fdt_totalsize(fit), 0x1000); |
| 374 | size = ALIGN(fdt_totalsize(fit), 4); |
| 375 | size = board_spl_fit_size_align(size); |
| 376 | tmp += offset; |
| 377 | ivt = (struct ivt *)tmp; |
| 378 | if (ivt->hdr.magic != IVT_HEADER_MAGIC) { |
| 379 | debug("no IVT header found\n"); |
| 380 | return (void *)fit; |
| 381 | } |
| 382 | debug("%s: ivt: %p offset: %lx size: %lx\n", __func__, ivt, offset, size); |
| 383 | debug("%s: ivt self: %x\n", __func__, ivt->self); |
| 384 | new = ivt->self; |
| 385 | new -= offset; |
| 386 | debug("%s: new %lx\n", __func__, new); |
| 387 | memcpy((void *)new, fit, size); |
| 388 | |
| 389 | return (void *)new; |
| 390 | } |