common: Drop image.h from common header
[J-u-boot.git] / common / spl / spl_spi.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0+
32b11273
CR
2/*
3 * Copyright (C) 2011 OMICRON electronics GmbH
4 *
a430fa06 5 * based on drivers/mtd/nand/raw/nand_spl_load.c
32b11273
CR
6 *
7 * Copyright (C) 2011
8 * Heiko Schocher, DENX Software Engineering, hs@denx.de.
32b11273
CR
9 */
10
11#include <common.h>
4d72caa5 12#include <image.h>
ff0960f9 13#include <spi.h>
32b11273 14#include <spi_flash.h>
36afd451 15#include <errno.h>
a4cc1c48 16#include <spl.h>
32b11273 17
2bac55bc
PT
18DECLARE_GLOBAL_DATA_PTR;
19
fa1a73fa
TR
20#ifdef CONFIG_SPL_OS_BOOT
21/*
22 * Load the kernel, check for a valid header we can parse, and if found load
23 * the kernel and then device tree.
24 */
2a2ee2ac
SG
25static int spi_load_image_os(struct spl_image_info *spl_image,
26 struct spi_flash *flash,
fa1a73fa
TR
27 struct image_header *header)
28{
7e0f2267
MV
29 int err;
30
fa1a73fa 31 /* Read for a header, parse or error out. */
51c12319 32 spi_flash_read(flash, CONFIG_SYS_SPI_KERNEL_OFFS, sizeof(*header),
fa1a73fa
TR
33 (void *)header);
34
35 if (image_get_magic(header) != IH_MAGIC)
36 return -1;
37
2a2ee2ac 38 err = spl_parse_image_header(spl_image, header);
7e0f2267
MV
39 if (err)
40 return err;
fa1a73fa
TR
41
42 spi_flash_read(flash, CONFIG_SYS_SPI_KERNEL_OFFS,
2a2ee2ac 43 spl_image->size, (void *)spl_image->load_addr);
fa1a73fa
TR
44
45 /* Read device tree. */
46 spi_flash_read(flash, CONFIG_SYS_SPI_ARGS_OFFS,
47 CONFIG_SYS_SPI_ARGS_SIZE,
48 (void *)CONFIG_SYS_SPL_ARGS_ADDR);
49
50 return 0;
51}
52#endif
53
00d55956
LV
54static ulong spl_spi_fit_read(struct spl_load_info *load, ulong sector,
55 ulong count, void *buf)
56{
57 struct spi_flash *flash = load->dev;
58 ulong ret;
59
60 ret = spi_flash_read(flash, sector, count, buf);
61 if (!ret)
62 return count;
63 else
64 return 0;
65}
ec649330
PF
66
67unsigned int __weak spl_spi_get_uboot_offs(struct spi_flash *flash)
68{
69 return CONFIG_SYS_SPI_U_BOOT_OFFS;
70}
71
32b11273
CR
72/*
73 * The main entry for SPI booting. It's necessary that SDRAM is already
74 * configured and available since this code loads the main U-Boot image
75 * from SPI into SDRAM and starts it from there.
76 */
2a2ee2ac
SG
77static int spl_spi_load_image(struct spl_image_info *spl_image,
78 struct spl_boot_device *bootdev)
32b11273 79{
36afd451 80 int err = 0;
ec649330 81 unsigned int payload_offs;
32b11273 82 struct spi_flash *flash;
a4cc1c48 83 struct image_header *header;
32b11273
CR
84
85 /*
86 * Load U-Boot image from SPI flash into RAM
b0cc1b84
PD
87 * In DM mode: defaults speed and mode will be
88 * taken from DT when available
32b11273
CR
89 */
90
88e34e5f
NK
91 flash = spi_flash_probe(CONFIG_SF_DEFAULT_BUS,
92 CONFIG_SF_DEFAULT_CS,
93 CONFIG_SF_DEFAULT_SPEED,
94 CONFIG_SF_DEFAULT_MODE);
32b11273 95 if (!flash) {
a4cc1c48 96 puts("SPI probe failed.\n");
36afd451 97 return -ENODEV;
32b11273
CR
98 }
99
ec649330
PF
100 payload_offs = spl_spi_get_uboot_offs(flash);
101
51c12319 102 header = spl_get_load_buffer(-sizeof(*header), sizeof(*header));
32b11273 103
2bac55bc
PT
104#if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
105 payload_offs = fdtdec_get_config_int(gd->fdt_blob,
106 "u-boot,spl-payload-offset",
107 payload_offs);
108#endif
109
fa1a73fa 110#ifdef CONFIG_SPL_OS_BOOT
2a2ee2ac 111 if (spl_start_uboot() || spi_load_image_os(spl_image, flash, header))
fa1a73fa
TR
112#endif
113 {
114 /* Load u-boot, mkimage header is 64 bytes. */
51c12319 115 err = spi_flash_read(flash, payload_offs, sizeof(*header),
36afd451 116 (void *)header);
a7044900
SG
117 if (err) {
118 debug("%s: Failed to read from SPI flash (err=%d)\n",
119 __func__, err);
36afd451 120 return err;
a7044900 121 }
36afd451 122
26ad648f
MV
123 if (IS_ENABLED(CONFIG_SPL_LOAD_FIT_FULL) &&
124 image_get_magic(header) == FDT_MAGIC) {
125 err = spi_flash_read(flash, payload_offs,
126 roundup(fdt_totalsize(header), 4),
127 (void *)CONFIG_SYS_LOAD_ADDR);
128 if (err)
129 return err;
130 err = spl_parse_image_header(spl_image,
131 (struct image_header *)CONFIG_SYS_LOAD_ADDR);
132 } else if (IS_ENABLED(CONFIG_SPL_LOAD_FIT) &&
133 image_get_magic(header) == FDT_MAGIC) {
00d55956
LV
134 struct spl_load_info load;
135
136 debug("Found FIT\n");
137 load.dev = flash;
138 load.priv = NULL;
139 load.filename = NULL;
140 load.bl_len = 1;
141 load.read = spl_spi_fit_read;
f4d7d859 142 err = spl_load_simple_fit(spl_image, &load,
2bac55bc 143 payload_offs,
00d55956 144 header);
d9bd2f4a
PF
145 } else if (IS_ENABLED(CONFIG_SPL_LOAD_IMX_CONTAINER)) {
146 struct spl_load_info load;
147
148 load.dev = flash;
149 load.priv = NULL;
150 load.filename = NULL;
151 load.bl_len = 1;
152 load.read = spl_spi_fit_read;
153
154 err = spl_load_imx_container(spl_image, &load,
155 payload_offs);
00d55956 156 } else {
2a2ee2ac 157 err = spl_parse_image_header(spl_image, header);
00d55956
LV
158 if (err)
159 return err;
2bac55bc 160 err = spi_flash_read(flash, payload_offs,
2a2ee2ac
SG
161 spl_image->size,
162 (void *)spl_image->load_addr);
00d55956 163 }
fa1a73fa 164 }
36afd451
NK
165
166 return err;
32b11273 167}
139db7af 168/* Use priorty 1 so that boards can override this */
ebc4ef61 169SPL_LOAD_IMAGE_METHOD("SPI", 1, BOOT_DEVICE_SPI, spl_spi_load_image);
This page took 0.41964 seconds and 4 git commands to generate.