blob: 3f03ffe6a333f410fb7bd29dd50aa3a65ecad830 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Stefan Roese33d34642012-08-27 12:50:59 +02002/*
3 * Copyright (C) 2012 Stefan Roese <sr@denx.de>
Stefan Roese33d34642012-08-27 12:50:59 +02004 */
5
6#include <common.h>
7#include <spl.h>
8
York Sun6ecd8202018-06-26 10:10:03 -07009static ulong spl_nor_load_read(struct spl_load_info *load, ulong sector,
10 ulong count, void *buf)
11{
12 debug("%s: sector %lx, count %lx, buf %p\n",
13 __func__, sector, count, buf);
14 memcpy(buf, (void *)sector, count);
15
16 return count;
17}
York Sun6ecd8202018-06-26 10:10:03 -070018
Peng Fan07d900a2019-09-23 10:18:42 +080019unsigned long __weak spl_nor_get_uboot_base(void)
20{
21 return CONFIG_SYS_UBOOT_BASE;
22}
23
Simon Glass2a2ee2a2016-09-24 18:20:13 -060024static int spl_nor_load_image(struct spl_image_info *spl_image,
25 struct spl_boot_device *bootdev)
Stefan Roese33d34642012-08-27 12:50:59 +020026{
York Sun6ecd8202018-06-26 10:10:03 -070027 __maybe_unused const struct image_header *header;
28 __maybe_unused struct spl_load_info load;
29
Stefan Roese33d34642012-08-27 12:50:59 +020030 /*
31 * Loading of the payload to SDRAM is done with skipping of
32 * the mkimage header in this SPL NOR driver
33 */
Simon Glass2a2ee2a2016-09-24 18:20:13 -060034 spl_image->flags |= SPL_COPY_PAYLOAD_ONLY;
Stefan Roese33d34642012-08-27 12:50:59 +020035
Masahiro Yamada9f9d8702015-01-08 19:23:35 +090036#ifdef CONFIG_SPL_OS_BOOT
37 if (!spl_start_uboot()) {
Stefan Roese33d34642012-08-27 12:50:59 +020038 /*
39 * Load Linux from its location in NOR flash to its defined
40 * location in SDRAM
41 */
Masahiro Yamada9f9d8702015-01-08 19:23:35 +090042 header = (const struct image_header *)CONFIG_SYS_OS_BASE;
York Sun6ecd8202018-06-26 10:10:03 -070043#ifdef CONFIG_SPL_LOAD_FIT
44 if (image_get_magic(header) == FDT_MAGIC) {
Stefan Roesef1b0f152020-04-21 09:28:44 +020045 int ret;
46
York Sun6ecd8202018-06-26 10:10:03 -070047 debug("Found FIT\n");
48 load.bl_len = 1;
49 load.read = spl_nor_load_read;
Stefan Roese33d34642012-08-27 12:50:59 +020050
York Sun6ecd8202018-06-26 10:10:03 -070051 ret = spl_load_simple_fit(spl_image, &load,
52 CONFIG_SYS_OS_BASE,
53 (void *)header);
54
Lukasz Majewskia4a16c92019-10-15 10:28:45 +020055#if defined CONFIG_SYS_SPL_ARGS_ADDR && defined CONFIG_CMD_SPL_NOR_OFS
56 memcpy((void *)CONFIG_SYS_SPL_ARGS_ADDR,
57 (void *)CONFIG_CMD_SPL_NOR_OFS,
58 CONFIG_CMD_SPL_WRITE_SIZE);
59#endif
York Sun6ecd8202018-06-26 10:10:03 -070060 return ret;
61 }
62#endif
Masahiro Yamada9f9d8702015-01-08 19:23:35 +090063 if (image_get_os(header) == IH_OS_LINUX) {
64 /* happy - was a Linux */
Stefan Roesef1b0f152020-04-21 09:28:44 +020065 int ret;
Stefan Roese33d34642012-08-27 12:50:59 +020066
Simon Glass2a2ee2a2016-09-24 18:20:13 -060067 ret = spl_parse_image_header(spl_image, header);
Marek Vasut7e0f2262016-04-29 00:44:54 +020068 if (ret)
69 return ret;
Masahiro Yamada9f9d8702015-01-08 19:23:35 +090070
Simon Glass2a2ee2a2016-09-24 18:20:13 -060071 memcpy((void *)spl_image->load_addr,
Masahiro Yamada9f9d8702015-01-08 19:23:35 +090072 (void *)(CONFIG_SYS_OS_BASE +
73 sizeof(struct image_header)),
Simon Glass2a2ee2a2016-09-24 18:20:13 -060074 spl_image->size);
York Sun14acea02018-06-26 10:10:04 -070075#ifdef CONFIG_SYS_FDT_BASE
Vikas Manocha5bf52502017-04-07 15:38:13 -070076 spl_image->arg = (void *)CONFIG_SYS_FDT_BASE;
York Sun14acea02018-06-26 10:10:04 -070077#endif
Masahiro Yamada9f9d8702015-01-08 19:23:35 +090078
Nikita Kiryanov36afd452015-11-08 17:11:49 +020079 return 0;
Masahiro Yamada9f9d8702015-01-08 19:23:35 +090080 } else {
81 puts("The Expected Linux image was not found.\n"
82 "Please check your NOR configuration.\n"
83 "Trying to start u-boot now...\n");
84 }
Stefan Roese33d34642012-08-27 12:50:59 +020085 }
Masahiro Yamada9f9d8702015-01-08 19:23:35 +090086#endif
87
88 /*
89 * Load real U-Boot from its location in NOR flash to its
90 * defined location in SDRAM
91 */
York Sun6ecd8202018-06-26 10:10:03 -070092#ifdef CONFIG_SPL_LOAD_FIT
Peng Fan07d900a2019-09-23 10:18:42 +080093 header = (const struct image_header *)spl_nor_get_uboot_base();
York Sun6ecd8202018-06-26 10:10:03 -070094 if (image_get_magic(header) == FDT_MAGIC) {
95 debug("Found FIT format U-Boot\n");
96 load.bl_len = 1;
97 load.read = spl_nor_load_read;
Stefan Roesef1b0f152020-04-21 09:28:44 +020098 return spl_load_simple_fit(spl_image, &load,
99 spl_nor_get_uboot_base(),
100 (void *)header);
York Sun6ecd8202018-06-26 10:10:03 -0700101 }
102#endif
Peng Fan3bc4f1d2019-09-23 10:18:48 +0800103 if (IS_ENABLED(CONFIG_SPL_LOAD_IMX_CONTAINER)) {
104 load.bl_len = 1;
105 load.read = spl_nor_load_read;
106 return spl_load_imx_container(spl_image, &load,
107 spl_nor_get_uboot_base());
108 }
109
Stefan Roese2fc91ed2020-04-21 09:28:43 +0200110 /* Legacy image handling */
111 if (IS_ENABLED(CONFIG_SPL_LEGACY_IMAGE_SUPPORT)) {
112 load.bl_len = 1;
113 load.read = spl_nor_load_read;
114 return spl_load_legacy_img(spl_image, &load,
115 spl_nor_get_uboot_base());
116 }
Nikita Kiryanov36afd452015-11-08 17:11:49 +0200117
118 return 0;
Stefan Roese33d34642012-08-27 12:50:59 +0200119}
Simon Glassebc4ef62016-11-30 15:30:50 -0700120SPL_LOAD_IMAGE_METHOD("NOR", 0, BOOT_DEVICE_NOR, spl_nor_load_image);