9fa397c94da28c9576c4d0a48266f157ff7a4466
[oweals/u-boot.git] / arch / arm / mach-imx / spl.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright (C) 2014 Gateworks Corporation
4  * Copyright (C) 2011-2012 Freescale Semiconductor, Inc.
5  *
6  * Author: Tim Harvey <tharvey@gateworks.com>
7  */
8
9 #include <common.h>
10 #include <asm/io.h>
11 #include <asm/arch/imx-regs.h>
12 #include <asm/arch/sys_proto.h>
13 #include <asm/spl.h>
14 #include <spl.h>
15 #include <asm/mach-imx/hab.h>
16 #include <asm/mach-imx/boot_mode.h>
17 #include <g_dnl.h>
18
19 DECLARE_GLOBAL_DATA_PTR;
20
21 __weak int spl_board_boot_device(enum boot_device boot_dev_spl)
22 {
23         return 0;
24 }
25
26 #if defined(CONFIG_MX6)
27 /* determine boot device from SRC_SBMR1 (BOOT_CFG[4:1]) or SRC_GPR9 register */
28 u32 spl_boot_device(void)
29 {
30         unsigned int bmode = readl(&src_base->sbmr2);
31         u32 reg = imx6_src_get_boot_mode();
32         u32 mmc_index = ((reg >> 11) & 0x03);
33
34         /*
35          * Check for BMODE if serial downloader is enabled
36          * BOOT_MODE - see IMX6DQRM Table 8-1
37          */
38         if (((bmode >> 24) & 0x03) == 0x01) /* Serial Downloader */
39                 return BOOT_DEVICE_BOARD;
40
41         /*
42          * The above method does not detect that the boot ROM used
43          * serial downloader in case the boot ROM decided to use the
44          * serial downloader as a fall back (primary boot source failed).
45          *
46          * Infer that the boot ROM used the USB serial downloader by
47          * checking whether the USB PHY is currently active... This
48          * assumes that SPL did not (yet) initialize the USB PHY...
49          */
50         if (is_usbotg_phy_active())
51                 return BOOT_DEVICE_BOARD;
52
53         /* BOOT_CFG1[7:4] - see IMX6DQRM Table 8-8 */
54         switch ((reg & IMX6_BMODE_MASK) >> IMX6_BMODE_SHIFT) {
55          /* EIM: See 8.5.1, Table 8-9 */
56         case IMX6_BMODE_EMI:
57                 /* BOOT_CFG1[3]: NOR/OneNAND Selection */
58                 switch ((reg & IMX6_BMODE_EMI_MASK) >> IMX6_BMODE_EMI_SHIFT) {
59                 case IMX6_BMODE_ONENAND:
60                         return BOOT_DEVICE_ONENAND;
61                 case IMX6_BMODE_NOR:
62                         return BOOT_DEVICE_NOR;
63                 break;
64                 }
65         /* Reserved: Used to force Serial Downloader */
66         case IMX6_BMODE_RESERVED:
67                 return BOOT_DEVICE_BOARD;
68         /* SATA: See 8.5.4, Table 8-20 */
69 #if !defined(CONFIG_MX6UL) && !defined(CONFIG_MX6ULL)
70         case IMX6_BMODE_SATA:
71                 return BOOT_DEVICE_SATA;
72 #endif
73         /* Serial ROM: See 8.5.5.1, Table 8-22 */
74         case IMX6_BMODE_SERIAL_ROM:
75                 /* BOOT_CFG4[2:0] */
76                 switch ((reg & IMX6_BMODE_SERIAL_ROM_MASK) >>
77                         IMX6_BMODE_SERIAL_ROM_SHIFT) {
78                 case IMX6_BMODE_ECSPI1:
79                 case IMX6_BMODE_ECSPI2:
80                 case IMX6_BMODE_ECSPI3:
81                 case IMX6_BMODE_ECSPI4:
82                 case IMX6_BMODE_ECSPI5:
83                         return BOOT_DEVICE_SPI;
84                 case IMX6_BMODE_I2C1:
85                 case IMX6_BMODE_I2C2:
86                 case IMX6_BMODE_I2C3:
87                         return BOOT_DEVICE_I2C;
88                 }
89                 break;
90         /* SD/eSD: 8.5.3, Table 8-15  */
91         case IMX6_BMODE_SD:
92         case IMX6_BMODE_ESD:
93         case IMX6_BMODE_MMC:
94         case IMX6_BMODE_EMMC:
95                 if (mmc_index == 1)
96                         return BOOT_DEVICE_MMC2;
97                 else
98                         return BOOT_DEVICE_MMC1;
99         /* NAND Flash: 8.5.2, Table 8-10 */
100         case IMX6_BMODE_NAND_MIN ... IMX6_BMODE_NAND_MAX:
101                 return BOOT_DEVICE_NAND;
102 #if defined(CONFIG_MX6UL) || defined(CONFIG_MX6ULL)
103         /* QSPI boot */
104         case IMX6_BMODE_QSPI:
105                 return BOOT_DEVICE_SPI;
106 #endif
107         }
108         return BOOT_DEVICE_NONE;
109 }
110
111 #elif defined(CONFIG_MX7) || defined(CONFIG_IMX8M) || defined(CONFIG_IMX8)
112 /* Translate iMX7/i.MX8M boot device to the SPL boot device enumeration */
113 u32 spl_boot_device(void)
114 {
115 #if defined(CONFIG_MX7)
116         unsigned int bmode = readl(&src_base->sbmr2);
117
118         /*
119          * Check for BMODE if serial downloader is enabled
120          * BOOT_MODE - see IMX7DRM Table 6-24
121          */
122         if (((bmode >> 24) & 0x03) == 0x01) /* Serial Downloader */
123                 return BOOT_DEVICE_BOARD;
124
125         /*
126          * The above method does not detect that the boot ROM used
127          * serial downloader in case the boot ROM decided to use the
128          * serial downloader as a fall back (primary boot source failed).
129          *
130          * Infer that the boot ROM used the USB serial downloader by
131          * checking whether the USB PHY is currently active... This
132          * assumes that SPL did not (yet) initialize the USB PHY...
133          */
134         if (is_boot_from_usb())
135                 return BOOT_DEVICE_BOARD;
136 #endif
137
138         enum boot_device boot_device_spl = get_boot_device();
139
140         if (IS_ENABLED(CONFIG_IMX8MM))
141                 return spl_board_boot_device(boot_device_spl);
142
143         switch (boot_device_spl) {
144 #if defined(CONFIG_MX7)
145         case SD1_BOOT:
146         case MMC1_BOOT:
147         case SD2_BOOT:
148         case MMC2_BOOT:
149         case SD3_BOOT:
150         case MMC3_BOOT:
151                 return BOOT_DEVICE_MMC1;
152 #elif defined(CONFIG_IMX8)
153         case MMC1_BOOT:
154                 return BOOT_DEVICE_MMC1;
155         case SD2_BOOT:
156                 return BOOT_DEVICE_MMC2_2;
157         case SD3_BOOT:
158                 return BOOT_DEVICE_MMC1;
159         case FLEXSPI_BOOT:
160                 return BOOT_DEVICE_SPI;
161 #elif defined(CONFIG_IMX8M)
162         case SD1_BOOT:
163         case MMC1_BOOT:
164                 return BOOT_DEVICE_MMC1;
165         case SD2_BOOT:
166         case MMC2_BOOT:
167                 return BOOT_DEVICE_MMC2;
168 #endif
169         case NAND_BOOT:
170                 return BOOT_DEVICE_NAND;
171         case SPI_NOR_BOOT:
172                 return BOOT_DEVICE_SPI;
173         case USB_BOOT:
174                 return BOOT_DEVICE_USB;
175         default:
176                 return BOOT_DEVICE_NONE;
177         }
178 }
179 #endif /* CONFIG_MX7 || CONFIG_IMX8M || CONFIG_IMX8 */
180
181 #ifdef CONFIG_SPL_USB_GADGET
182 int g_dnl_bind_fixup(struct usb_device_descriptor *dev, const char *name)
183 {
184         put_unaligned(CONFIG_USB_GADGET_PRODUCT_NUM + 0xfff, &dev->idProduct);
185
186         return 0;
187 }
188 #endif
189
190 #if defined(CONFIG_SPL_MMC_SUPPORT)
191 /* called from spl_mmc to see type of boot mode for storage (RAW or FAT) */
192 u32 spl_boot_mode(const u32 boot_device)
193 {
194 /*
195  * When CONFIG_SPL_FORCE_MMC_BOOT is defined the 'boot_device' is used
196  * unconditionally to decide about device to use for booting.
197  * This is crucial for falcon boot mode, when board boots up (i.e. ROM
198  * loads SPL) from slow SPI-NOR memory and afterwards the SPL's 'falcon' boot
199  * mode is used to load Linux OS from eMMC partition.
200  */
201 #ifdef CONFIG_SPL_FORCE_MMC_BOOT
202         switch (boot_device) {
203 #else
204         switch (spl_boot_device()) {
205 #endif
206         /* for MMC return either RAW or FAT mode */
207         case BOOT_DEVICE_MMC1:
208         case BOOT_DEVICE_MMC2:
209         case BOOT_DEVICE_MMC2_2:
210 #if defined(CONFIG_SPL_FS_FAT)
211                 return MMCSD_MODE_FS;
212 #elif defined(CONFIG_SUPPORT_EMMC_BOOT)
213                 return MMCSD_MODE_EMMCBOOT;
214 #else
215                 return MMCSD_MODE_RAW;
216 #endif
217                 break;
218         default:
219                 puts("spl: ERROR:  unsupported device\n");
220                 hang();
221         }
222 }
223 #endif
224
225 #if defined(CONFIG_IMX_HAB)
226
227 /*
228  * +------------+  0x0 (DDR_UIMAGE_START) -
229  * |   Header   |                          |
230  * +------------+  0x40                    |
231  * |            |                          |
232  * |            |                          |
233  * |            |                          |
234  * |            |                          |
235  * | Image Data |                          |
236  * .            |                          |
237  * .            |                           > Stuff to be authenticated ----+
238  * .            |                          |                                |
239  * |            |                          |                                |
240  * |            |                          |                                |
241  * +------------+                          |                                |
242  * |            |                          |                                |
243  * | Fill Data  |                          |                                |
244  * |            |                          |                                |
245  * +------------+ Align to ALIGN_SIZE      |                                |
246  * |    IVT     |                          |                                |
247  * +------------+ + IVT_SIZE              -                                 |
248  * |            |                                                           |
249  * |  CSF DATA  | <---------------------------------------------------------+
250  * |            |
251  * +------------+
252  * |            |
253  * | Fill Data  |
254  * |            |
255  * +------------+ + CSF_PAD_SIZE
256  */
257
258 __weak void __noreturn jump_to_image_no_args(struct spl_image_info *spl_image)
259 {
260         typedef void __noreturn (*image_entry_noargs_t)(void);
261         uint32_t offset;
262
263         image_entry_noargs_t image_entry =
264                 (image_entry_noargs_t)(unsigned long)spl_image->entry_point;
265
266         debug("image entry point: 0x%lX\n", spl_image->entry_point);
267
268         if (spl_image->flags & SPL_FIT_FOUND) {
269                 image_entry();
270         } else {
271                 /*
272                  * HAB looks for the CSF at the end of the authenticated
273                  * data therefore, we need to subtract the size of the
274                  * CSF from the actual filesize
275                  */
276                 offset = spl_image->size - CONFIG_CSF_SIZE;
277                 if (!imx_hab_authenticate_image(spl_image->load_addr,
278                                                 offset + IVT_SIZE +
279                                                 CSF_PAD_SIZE, offset)) {
280                         image_entry();
281                 } else {
282                         puts("spl: ERROR:  image authentication fail\n");
283                         hang();
284                 }
285         }
286 }
287
288 #if !defined(CONFIG_SPL_FIT_SIGNATURE)
289 ulong board_spl_fit_size_align(ulong size)
290 {
291         /*
292          * HAB authenticate_image requests the IVT offset is
293          * aligned to 0x1000
294          */
295
296         size = ALIGN(size, 0x1000);
297         size += CONFIG_CSF_SIZE;
298
299         return size;
300 }
301
302 void board_spl_fit_post_load(ulong load_addr, size_t length)
303 {
304         u32 offset = length - CONFIG_CSF_SIZE;
305
306         if (imx_hab_authenticate_image(load_addr,
307                                        offset + IVT_SIZE + CSF_PAD_SIZE,
308                                        offset)) {
309                 puts("spl: ERROR:  image authentication unsuccessful\n");
310                 hang();
311         }
312 }
313 #endif
314
315 #endif
316
317 #if defined(CONFIG_MX6) && defined(CONFIG_SPL_OS_BOOT)
318 int dram_init_banksize(void)
319 {
320         gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
321         gd->bd->bi_dram[0].size = imx_ddr_size();
322
323         return 0;
324 }
325 #endif