blob: 2aff025f76ee1cecda4f8354b7cd87e0a93e3a37 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Christian Riesch32b11272011-12-09 09:47:35 +00002/*
3 * Copyright (C) 2011 OMICRON electronics GmbH
4 *
Miquel Raynala430fa02018-08-16 17:30:07 +02005 * based on drivers/mtd/nand/raw/nand_spl_load.c
Christian Riesch32b11272011-12-09 09:47:35 +00006 *
7 * Copyright (C) 2011
8 * Heiko Schocher, DENX Software Engineering, hs@denx.de.
Christian Riesch32b11272011-12-09 09:47:35 +00009 */
10
11#include <common.h>
Simon Glass4d72caa2020-05-10 11:40:01 -060012#include <image.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060013#include <log.h>
Simon Glassff0960f2014-10-13 23:42:04 -060014#include <spi.h>
Christian Riesch32b11272011-12-09 09:47:35 +000015#include <spi_flash.h>
Nikita Kiryanov36afd452015-11-08 17:11:49 +020016#include <errno.h>
Tom Rinia4cc1c42012-08-14 14:34:10 -070017#include <spl.h>
Simon Glass401d1c42020-10-30 21:38:53 -060018#include <asm/global_data.h>
Simon Glass7de8bd02021-08-07 07:24:01 -060019#include <dm/ofnode.h>
Philipp Tomsich2bac55b2017-04-17 17:45:11 +020020
Tom Rini71150072021-10-30 23:03:48 -040021#if CONFIG_IS_ENABLED(OS_BOOT)
Tom Rinifa1a73f2014-04-03 07:52:55 -040022/*
23 * Load the kernel, check for a valid header we can parse, and if found load
24 * the kernel and then device tree.
25 */
Simon Glass2a2ee2a2016-09-24 18:20:13 -060026static int spi_load_image_os(struct spl_image_info *spl_image,
Pali Rohár2e0429b2022-01-14 14:31:38 +010027 struct spl_boot_device *bootdev,
Simon Glass2a2ee2a2016-09-24 18:20:13 -060028 struct spi_flash *flash,
Simon Glassf3543e62022-09-06 20:26:52 -060029 struct legacy_img_hdr *header)
Tom Rinifa1a73f2014-04-03 07:52:55 -040030{
Marek Vasut7e0f2262016-04-29 00:44:54 +020031 int err;
32
Tom Rinifa1a73f2014-04-03 07:52:55 -040033 /* Read for a header, parse or error out. */
Tom Rini65cc0e22022-11-16 13:10:41 -050034 spi_flash_read(flash, CFG_SYS_SPI_KERNEL_OFFS, sizeof(*header),
Tom Rinifa1a73f2014-04-03 07:52:55 -040035 (void *)header);
36
37 if (image_get_magic(header) != IH_MAGIC)
38 return -1;
39
Pali Rohár2e0429b2022-01-14 14:31:38 +010040 err = spl_parse_image_header(spl_image, bootdev, header);
Marek Vasut7e0f2262016-04-29 00:44:54 +020041 if (err)
42 return err;
Tom Rinifa1a73f2014-04-03 07:52:55 -040043
Tom Rini65cc0e22022-11-16 13:10:41 -050044 spi_flash_read(flash, CFG_SYS_SPI_KERNEL_OFFS,
Simon Glass2a2ee2a2016-09-24 18:20:13 -060045 spl_image->size, (void *)spl_image->load_addr);
Tom Rinifa1a73f2014-04-03 07:52:55 -040046
47 /* Read device tree. */
Tom Rini65cc0e22022-11-16 13:10:41 -050048 spi_flash_read(flash, CFG_SYS_SPI_ARGS_OFFS,
49 CFG_SYS_SPI_ARGS_SIZE,
Tom Rinifa1a73f2014-04-03 07:52:55 -040050 (void *)CONFIG_SYS_SPL_ARGS_ADDR);
51
52 return 0;
53}
54#endif
55
Lokesh Vutla00d55952016-05-24 10:34:40 +053056static ulong spl_spi_fit_read(struct spl_load_info *load, ulong sector,
57 ulong count, void *buf)
58{
59 struct spi_flash *flash = load->dev;
60 ulong ret;
61
62 ret = spi_flash_read(flash, sector, count, buf);
63 if (!ret)
64 return count;
65 else
66 return 0;
67}
Peng Fanec649332019-09-23 10:18:41 +080068
69unsigned int __weak spl_spi_get_uboot_offs(struct spi_flash *flash)
70{
71 return CONFIG_SYS_SPI_U_BOOT_OFFS;
72}
73
Vaishnav Achath6dd18a62022-06-03 11:32:15 +053074u32 __weak spl_spi_boot_bus(void)
75{
76 return CONFIG_SF_DEFAULT_BUS;
77}
78
79u32 __weak spl_spi_boot_cs(void)
80{
81 return CONFIG_SF_DEFAULT_CS;
82}
83
Christian Riesch32b11272011-12-09 09:47:35 +000084/*
85 * The main entry for SPI booting. It's necessary that SDRAM is already
86 * configured and available since this code loads the main U-Boot image
87 * from SPI into SDRAM and starts it from there.
88 */
Simon Glass2a2ee2a2016-09-24 18:20:13 -060089static int spl_spi_load_image(struct spl_image_info *spl_image,
90 struct spl_boot_device *bootdev)
Christian Riesch32b11272011-12-09 09:47:35 +000091{
Nikita Kiryanov36afd452015-11-08 17:11:49 +020092 int err = 0;
Peng Fanec649332019-09-23 10:18:41 +080093 unsigned int payload_offs;
Christian Riesch32b11272011-12-09 09:47:35 +000094 struct spi_flash *flash;
Simon Glassf3543e62022-09-06 20:26:52 -060095 struct legacy_img_hdr *header;
Vaishnav Achath6dd18a62022-06-03 11:32:15 +053096 unsigned int sf_bus = spl_spi_boot_bus();
97 unsigned int sf_cs = spl_spi_boot_cs();
Christian Riesch32b11272011-12-09 09:47:35 +000098
99 /*
100 * Load U-Boot image from SPI flash into RAM
Patrick Delaunayb0cc1b82019-02-27 15:36:44 +0100101 * In DM mode: defaults speed and mode will be
102 * taken from DT when available
Christian Riesch32b11272011-12-09 09:47:35 +0000103 */
Vaishnav Achath6dd18a62022-06-03 11:32:15 +0530104 flash = spi_flash_probe(sf_bus, sf_cs,
Nikita Kiryanov88e34e52014-08-20 15:08:48 +0300105 CONFIG_SF_DEFAULT_SPEED,
106 CONFIG_SF_DEFAULT_MODE);
Christian Riesch32b11272011-12-09 09:47:35 +0000107 if (!flash) {
Tom Rinia4cc1c42012-08-14 14:34:10 -0700108 puts("SPI probe failed.\n");
Nikita Kiryanov36afd452015-11-08 17:11:49 +0200109 return -ENODEV;
Christian Riesch32b11272011-12-09 09:47:35 +0000110 }
111
Peng Fanec649332019-09-23 10:18:41 +0800112 payload_offs = spl_spi_get_uboot_offs(flash);
113
Michal Simek51c12312018-10-04 09:30:20 +0200114 header = spl_get_load_buffer(-sizeof(*header), sizeof(*header));
Christian Riesch32b11272011-12-09 09:47:35 +0000115
Simon Glass414cc152021-08-07 07:24:03 -0600116 if (CONFIG_IS_ENABLED(OF_REAL)) {
117 payload_offs = ofnode_conf_read_int("u-boot,spl-payload-offset",
118 payload_offs);
119 }
Philipp Tomsich2bac55b2017-04-17 17:45:11 +0200120
Tom Rini71150072021-10-30 23:03:48 -0400121#if CONFIG_IS_ENABLED(OS_BOOT)
Pali Rohár2e0429b2022-01-14 14:31:38 +0100122 if (spl_start_uboot() || spi_load_image_os(spl_image, bootdev, flash, header))
Tom Rinifa1a73f2014-04-03 07:52:55 -0400123#endif
124 {
125 /* Load u-boot, mkimage header is 64 bytes. */
Michal Simek51c12312018-10-04 09:30:20 +0200126 err = spi_flash_read(flash, payload_offs, sizeof(*header),
Nikita Kiryanov36afd452015-11-08 17:11:49 +0200127 (void *)header);
Simon Glassa7044902017-01-16 07:03:27 -0700128 if (err) {
129 debug("%s: Failed to read from SPI flash (err=%d)\n",
130 __func__, err);
Nikita Kiryanov36afd452015-11-08 17:11:49 +0200131 return err;
Simon Glassa7044902017-01-16 07:03:27 -0700132 }
Nikita Kiryanov36afd452015-11-08 17:11:49 +0200133
Marek Vasut26ad6482018-05-31 17:59:29 +0200134 if (IS_ENABLED(CONFIG_SPL_LOAD_FIT_FULL) &&
135 image_get_magic(header) == FDT_MAGIC) {
136 err = spi_flash_read(flash, payload_offs,
137 roundup(fdt_totalsize(header), 4),
138 (void *)CONFIG_SYS_LOAD_ADDR);
139 if (err)
140 return err;
Pali Rohár2e0429b2022-01-14 14:31:38 +0100141 err = spl_parse_image_header(spl_image, bootdev,
Simon Glassf3543e62022-09-06 20:26:52 -0600142 (struct legacy_img_hdr *)CONFIG_SYS_LOAD_ADDR);
Marek Vasut26ad6482018-05-31 17:59:29 +0200143 } else if (IS_ENABLED(CONFIG_SPL_LOAD_FIT) &&
144 image_get_magic(header) == FDT_MAGIC) {
Lokesh Vutla00d55952016-05-24 10:34:40 +0530145 struct spl_load_info load;
146
147 debug("Found FIT\n");
148 load.dev = flash;
149 load.priv = NULL;
150 load.filename = NULL;
151 load.bl_len = 1;
152 load.read = spl_spi_fit_read;
Simon Glassf4d7d852016-09-24 18:20:16 -0600153 err = spl_load_simple_fit(spl_image, &load,
Philipp Tomsich2bac55b2017-04-17 17:45:11 +0200154 payload_offs,
Lokesh Vutla00d55952016-05-24 10:34:40 +0530155 header);
Peng Fand9bd2f42019-09-23 10:18:47 +0800156 } else if (IS_ENABLED(CONFIG_SPL_LOAD_IMX_CONTAINER)) {
157 struct spl_load_info load;
158
159 load.dev = flash;
160 load.priv = NULL;
161 load.filename = NULL;
162 load.bl_len = 1;
163 load.read = spl_spi_fit_read;
164
165 err = spl_load_imx_container(spl_image, &load,
166 payload_offs);
Lokesh Vutla00d55952016-05-24 10:34:40 +0530167 } else {
Pali Rohár2e0429b2022-01-14 14:31:38 +0100168 err = spl_parse_image_header(spl_image, bootdev, header);
Lokesh Vutla00d55952016-05-24 10:34:40 +0530169 if (err)
170 return err;
Pali Rohár5fce2872021-07-23 11:14:27 +0200171 err = spi_flash_read(flash, payload_offs + spl_image->offset,
Simon Glass2a2ee2a2016-09-24 18:20:13 -0600172 spl_image->size,
173 (void *)spl_image->load_addr);
Lokesh Vutla00d55952016-05-24 10:34:40 +0530174 }
Vaishnav Achathcd2f9032022-05-09 14:03:32 +0530175 if (IS_ENABLED(CONFIG_SPI_FLASH_SOFT_RESET)) {
176 err = spi_nor_remove(flash);
177 if (err)
178 return err;
179 }
Tom Rinifa1a73f2014-04-03 07:52:55 -0400180 }
Nikita Kiryanov36afd452015-11-08 17:11:49 +0200181
182 return err;
Christian Riesch32b11272011-12-09 09:47:35 +0000183}
Simon Glass139db7a2016-09-24 18:20:09 -0600184/* Use priorty 1 so that boards can override this */
Simon Glassebc4ef62016-11-30 15:30:50 -0700185SPL_LOAD_IMAGE_METHOD("SPI", 1, BOOT_DEVICE_SPI, spl_spi_load_image);