blob: 81fc0ca252cb76c480ff6a37022e1977d2c1d60a [file] [log] [blame]
Tim Harvey887717d2014-06-02 16:13:20 -07001/*
2 * Copyright (C) 2014 Gateworks Corporation
3 * Copyright (C) 2011-2012 Freescale Semiconductor, Inc.
4 *
5 * Author: Tim Harvey <tharvey@gateworks.com>
6 *
7 * SPDX-License-Identifier: GPL-2.0+
8 */
9
10#include <common.h>
11#include <asm/io.h>
12#include <asm/arch/imx-regs.h>
Jagan Tekicba586b2017-02-24 15:45:12 +053013#include <asm/arch/sys_proto.h>
Tim Harvey887717d2014-06-02 16:13:20 -070014#include <asm/spl.h>
15#include <spl.h>
Sven Ebenfeld15b505b2016-11-06 16:37:55 +010016#include <asm/imx-common/hab.h>
Tim Harvey887717d2014-06-02 16:13:20 -070017
18#if defined(CONFIG_MX6)
Nikita Kiryanovf2863ff2014-10-29 19:28:33 +020019/* determine boot device from SRC_SBMR1 (BOOT_CFG[4:1]) or SRC_GPR9 register */
Tim Harvey887717d2014-06-02 16:13:20 -070020u32 spl_boot_device(void)
21{
22 struct src *psrc = (struct src *)SRC_BASE_ADDR;
Stefano Babic40f48392015-12-11 17:30:42 +010023 unsigned int bmode = readl(&psrc->sbmr2);
Jagan Tekicba586b2017-02-24 15:45:12 +053024 u32 reg = imx6_src_get_boot_mode();
Tim Harvey887717d2014-06-02 16:13:20 -070025
Stefano Babic40f48392015-12-11 17:30:42 +010026 /*
27 * Check for BMODE if serial downloader is enabled
28 * BOOT_MODE - see IMX6DQRM Table 8-1
29 */
Stefan Agnerac0a93f2016-12-27 17:01:42 +010030 if (((bmode >> 24) & 0x03) == 0x01) /* Serial Downloader */
Stefano Babic40f48392015-12-11 17:30:42 +010031 return BOOT_DEVICE_UART;
Tim Harvey887717d2014-06-02 16:13:20 -070032 /* BOOT_CFG1[7:4] - see IMX6DQRM Table 8-8 */
33 switch ((reg & 0x000000FF) >> 4) {
34 /* EIM: See 8.5.1, Table 8-9 */
35 case 0x0:
36 /* BOOT_CFG1[3]: NOR/OneNAND Selection */
37 if ((reg & 0x00000008) >> 3)
38 return BOOT_DEVICE_ONENAND;
39 else
40 return BOOT_DEVICE_NOR;
41 break;
Stefan Agnerac0a93f2016-12-27 17:01:42 +010042 /* Reserved: Used to force Serial Downloader */
43 case 0x1:
44 return BOOT_DEVICE_UART;
Tim Harvey887717d2014-06-02 16:13:20 -070045 /* SATA: See 8.5.4, Table 8-20 */
46 case 0x2:
47 return BOOT_DEVICE_SATA;
48 /* Serial ROM: See 8.5.5.1, Table 8-22 */
49 case 0x3:
50 /* BOOT_CFG4[2:0] */
51 switch ((reg & 0x07000000) >> 24) {
52 case 0x0 ... 0x4:
53 return BOOT_DEVICE_SPI;
54 case 0x5 ... 0x7:
55 return BOOT_DEVICE_I2C;
56 }
57 break;
58 /* SD/eSD: 8.5.3, Table 8-15 */
59 case 0x4:
60 case 0x5:
Breno Lima51efaba2016-11-30 10:08:58 -020061 return BOOT_DEVICE_MMC1;
Tim Harvey887717d2014-06-02 16:13:20 -070062 /* MMC/eMMC: 8.5.3 */
63 case 0x6:
64 case 0x7:
65 return BOOT_DEVICE_MMC1;
Jagan Teki20f14712017-02-24 15:45:13 +053066 /* NAND Flash: 8.5.2, Table 8-10 */
67 case 0x8:
Tim Harvey887717d2014-06-02 16:13:20 -070068 return BOOT_DEVICE_NAND;
69 }
70 return BOOT_DEVICE_NONE;
71}
72#endif
73
74#if defined(CONFIG_SPL_MMC_SUPPORT)
75/* called from spl_mmc to see type of boot mode for storage (RAW or FAT) */
Marek Vasut2b1cdaf2016-05-14 23:42:07 +020076u32 spl_boot_mode(const u32 boot_device)
Tim Harvey887717d2014-06-02 16:13:20 -070077{
78 switch (spl_boot_device()) {
79 /* for MMC return either RAW or FAT mode */
80 case BOOT_DEVICE_MMC1:
81 case BOOT_DEVICE_MMC2:
Pierre Aubert248802d2014-12-12 14:38:22 +010082#if defined(CONFIG_SPL_FAT_SUPPORT)
Guillaume GARDET205b4f32014-10-15 17:53:11 +020083 return MMCSD_MODE_FS;
Pierre Aubert248802d2014-12-12 14:38:22 +010084#elif defined(CONFIG_SUPPORT_EMMC_BOOT)
85 return MMCSD_MODE_EMMCBOOT;
Tim Harvey887717d2014-06-02 16:13:20 -070086#else
87 return MMCSD_MODE_RAW;
88#endif
89 break;
90 default:
91 puts("spl: ERROR: unsupported device\n");
92 hang();
93 }
94}
95#endif
Sven Ebenfeld15b505b2016-11-06 16:37:55 +010096
97#if defined(CONFIG_SECURE_BOOT)
98
99__weak void __noreturn jump_to_image_no_args(struct spl_image_info *spl_image)
100{
101 typedef void __noreturn (*image_entry_noargs_t)(void);
102
103 image_entry_noargs_t image_entry =
104 (image_entry_noargs_t)(unsigned long)spl_image->entry_point;
105
Tom Rini4386feb2017-01-11 10:45:48 -0500106 debug("image entry point: 0x%lX\n", spl_image->entry_point);
Sven Ebenfeld15b505b2016-11-06 16:37:55 +0100107
108 /* HAB looks for the CSF at the end of the authenticated data therefore,
109 * we need to subtract the size of the CSF from the actual filesize */
110 if (authenticate_image(spl_image->load_addr,
111 spl_image->size - CONFIG_CSF_SIZE)) {
112 image_entry();
113 } else {
114 puts("spl: ERROR: image authentication unsuccessful\n");
115 hang();
116 }
117}
118
119#endif