1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (C) 2011 OMICRON electronics GmbH
5 * based on drivers/mtd/nand/raw/nand_spl_load.c
8 * Heiko Schocher, DENX Software Engineering, hs@denx.de.
15 #include <spi_flash.h>
19 DECLARE_GLOBAL_DATA_PTR;
21 #ifdef CONFIG_SPL_OS_BOOT
23 * Load the kernel, check for a valid header we can parse, and if found load
24 * the kernel and then device tree.
26 static int spi_load_image_os(struct spl_image_info *spl_image,
27 struct spi_flash *flash,
28 struct image_header *header)
32 /* Read for a header, parse or error out. */
33 spi_flash_read(flash, CONFIG_SYS_SPI_KERNEL_OFFS, sizeof(*header),
36 if (image_get_magic(header) != IH_MAGIC)
39 err = spl_parse_image_header(spl_image, header);
43 spi_flash_read(flash, CONFIG_SYS_SPI_KERNEL_OFFS,
44 spl_image->size, (void *)spl_image->load_addr);
46 /* Read device tree. */
47 spi_flash_read(flash, CONFIG_SYS_SPI_ARGS_OFFS,
48 CONFIG_SYS_SPI_ARGS_SIZE,
49 (void *)CONFIG_SYS_SPL_ARGS_ADDR);
55 static ulong spl_spi_fit_read(struct spl_load_info *load, ulong sector,
56 ulong count, void *buf)
58 struct spi_flash *flash = load->dev;
61 ret = spi_flash_read(flash, sector, count, buf);
68 unsigned int __weak spl_spi_get_uboot_offs(struct spi_flash *flash)
70 return CONFIG_SYS_SPI_U_BOOT_OFFS;
74 * The main entry for SPI booting. It's necessary that SDRAM is already
75 * configured and available since this code loads the main U-Boot image
76 * from SPI into SDRAM and starts it from there.
78 static int spl_spi_load_image(struct spl_image_info *spl_image,
79 struct spl_boot_device *bootdev)
82 unsigned int payload_offs;
83 struct spi_flash *flash;
84 struct image_header *header;
87 * Load U-Boot image from SPI flash into RAM
88 * In DM mode: defaults speed and mode will be
89 * taken from DT when available
92 flash = spi_flash_probe(CONFIG_SF_DEFAULT_BUS,
94 CONFIG_SF_DEFAULT_SPEED,
95 CONFIG_SF_DEFAULT_MODE);
97 puts("SPI probe failed.\n");
101 payload_offs = spl_spi_get_uboot_offs(flash);
103 header = spl_get_load_buffer(-sizeof(*header), sizeof(*header));
105 #if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
106 payload_offs = fdtdec_get_config_int(gd->fdt_blob,
107 "u-boot,spl-payload-offset",
111 #ifdef CONFIG_SPL_OS_BOOT
112 if (spl_start_uboot() || spi_load_image_os(spl_image, flash, header))
115 /* Load u-boot, mkimage header is 64 bytes. */
116 err = spi_flash_read(flash, payload_offs, sizeof(*header),
119 debug("%s: Failed to read from SPI flash (err=%d)\n",
124 if (IS_ENABLED(CONFIG_SPL_LOAD_FIT_FULL) &&
125 image_get_magic(header) == FDT_MAGIC) {
126 err = spi_flash_read(flash, payload_offs,
127 roundup(fdt_totalsize(header), 4),
128 (void *)CONFIG_SYS_LOAD_ADDR);
131 err = spl_parse_image_header(spl_image,
132 (struct image_header *)CONFIG_SYS_LOAD_ADDR);
133 } else if (IS_ENABLED(CONFIG_SPL_LOAD_FIT) &&
134 image_get_magic(header) == FDT_MAGIC) {
135 struct spl_load_info load;
137 debug("Found FIT\n");
140 load.filename = NULL;
142 load.read = spl_spi_fit_read;
143 err = spl_load_simple_fit(spl_image, &load,
146 } else if (IS_ENABLED(CONFIG_SPL_LOAD_IMX_CONTAINER)) {
147 struct spl_load_info load;
151 load.filename = NULL;
153 load.read = spl_spi_fit_read;
155 err = spl_load_imx_container(spl_image, &load,
158 err = spl_parse_image_header(spl_image, header);
161 err = spi_flash_read(flash, payload_offs,
163 (void *)spl_image->load_addr);
169 /* Use priorty 1 so that boards can override this */
170 SPL_LOAD_IMAGE_METHOD("SPI", 1, BOOT_DEVICE_SPI, spl_spi_load_image);