blob: 8aeda237be13cc46fb970d0ddc0993327956d543 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Stefan Agner22802f42016-12-23 07:51:53 +01002/*
3 * (C) Copyright 2016
4 * Xilinx, Inc.
5 *
6 * (C) Copyright 2016
7 * Toradex AG
8 *
Michal Simek174d72842023-07-10 14:35:49 +02009 * Michal Simek <michal.simek@amd.com>
Stefan Agner22802f42016-12-23 07:51:53 +010010 * Stefan Agner <stefan.agner@toradex.com>
Stefan Agner22802f42016-12-23 07:51:53 +010011 */
12#include <common.h>
Simon Glassdfce1792017-11-13 18:55:04 -070013#include <binman_sym.h>
Simon Glass4d72caa2020-05-10 11:40:01 -060014#include <image.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060015#include <log.h>
Simon Glassdfce1792017-11-13 18:55:04 -070016#include <mapmem.h>
Stefan Agner22802f42016-12-23 07:51:53 +010017#include <spl.h>
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090018#include <linux/libfdt.h>
Stefan Agner22802f42016-12-23 07:51:53 +010019
Stefan Agner22802f42016-12-23 07:51:53 +010020static ulong spl_ram_load_read(struct spl_load_info *load, ulong sector,
21 ulong count, void *buf)
22{
Simon Glass63f0da62023-09-14 10:55:50 -060023 ulong addr = 0;
Philippe Reynes2404a012022-03-28 22:57:01 +020024
Stefan Agner22802f42016-12-23 07:51:53 +010025 debug("%s: sector %lx, count %lx, buf %lx\n",
26 __func__, sector, count, (ulong)buf);
Philippe Reynes2404a012022-03-28 22:57:01 +020027
Simon Glass63f0da62023-09-14 10:55:50 -060028 if (IS_ENABLED(CONFIG_SPL_LOAD_FIT)) {
29 addr = IF_ENABLED_INT(CONFIG_SPL_LOAD_FIT,
30 CONFIG_SPL_LOAD_FIT_ADDRESS);
31 }
32 addr += sector;
Philippe Reynes2404a012022-03-28 22:57:01 +020033 if (CONFIG_IS_ENABLED(IMAGE_PRE_LOAD))
34 addr += image_load_offset;
35
36 memcpy(buf, (void *)addr, count);
37
Stefan Agner22802f42016-12-23 07:51:53 +010038 return count;
39}
40
41static int spl_ram_load_image(struct spl_image_info *spl_image,
42 struct spl_boot_device *bootdev)
43{
Simon Glassf3543e62022-09-06 20:26:52 -060044 struct legacy_img_hdr *header;
Simon Glass63f0da62023-09-14 10:55:50 -060045 ulong addr = 0;
Nikita Shubincf7aa032022-12-12 11:03:35 +030046 int ret;
Stefan Agner22802f42016-12-23 07:51:53 +010047
Simon Glass63f0da62023-09-14 10:55:50 -060048 if (IS_ENABLED(CONFIG_SPL_LOAD_FIT)) {
49 addr = IF_ENABLED_INT(CONFIG_SPL_LOAD_FIT,
50 CONFIG_SPL_LOAD_FIT_ADDRESS);
51 }
Stefan Agner22802f42016-12-23 07:51:53 +010052
Philippe Reynes2404a012022-03-28 22:57:01 +020053 if (CONFIG_IS_ENABLED(IMAGE_PRE_LOAD)) {
Nikita Shubincf7aa032022-12-12 11:03:35 +030054 ret = image_pre_load(addr);
Philippe Reynes2404a012022-03-28 22:57:01 +020055
56 if (ret)
57 return ret;
58
59 addr += image_load_offset;
Philippe Reynes2404a012022-03-28 22:57:01 +020060 }
Simon Glass63f0da62023-09-14 10:55:50 -060061 header = map_sysmem(addr, 0);
Philippe Reynes2404a012022-03-28 22:57:01 +020062
Andrew F. Davis6536ca42019-01-17 13:43:02 -060063#if CONFIG_IS_ENABLED(DFU)
Stefan Agner22802f42016-12-23 07:51:53 +010064 if (bootdev->boot_device == BOOT_DEVICE_DFU)
65 spl_dfu_cmd(0, "dfu_alt_info_ram", "ram", "0");
66#endif
67
68 if (IS_ENABLED(CONFIG_SPL_LOAD_FIT) &&
69 image_get_magic(header) == FDT_MAGIC) {
70 struct spl_load_info load;
71
72 debug("Found FIT\n");
Sean Anderson5271e352023-11-08 11:48:43 -050073 spl_set_bl_len(&load, 1);
Stefan Agner22802f42016-12-23 07:51:53 +010074 load.read = spl_ram_load_read;
Nikita Shubincf7aa032022-12-12 11:03:35 +030075 ret = spl_load_simple_fit(spl_image, &load, 0, header);
Stefan Agner22802f42016-12-23 07:51:53 +010076 } else {
Alper Nebi Yasakd7f07172022-06-18 15:13:06 +030077 ulong u_boot_pos = spl_get_image_pos();
Simon Glassdfce1792017-11-13 18:55:04 -070078
Stefan Agner22802f42016-12-23 07:51:53 +010079 debug("Legacy image\n");
80 /*
81 * Get the header. It will point to an address defined by
82 * handoff which will tell where the image located inside
Simon Glassdfce1792017-11-13 18:55:04 -070083 * the flash.
Stefan Agner22802f42016-12-23 07:51:53 +010084 */
Simon Glassdfce1792017-11-13 18:55:04 -070085 debug("u_boot_pos = %lx\n", u_boot_pos);
86 if (u_boot_pos == BINMAN_SYM_MISSING) {
87 /*
88 * No binman support or no information. For now, fix it
89 * to the address pointed to by U-Boot.
90 */
Michal Simek83a64562018-10-04 09:29:20 +020091 u_boot_pos = (ulong)spl_get_load_buffer(-sizeof(*header),
92 sizeof(*header));
Simon Glassdfce1792017-11-13 18:55:04 -070093 }
Simon Glass63f0da62023-09-14 10:55:50 -060094 header = map_sysmem(u_boot_pos, 0);
Stefan Agner22802f42016-12-23 07:51:53 +010095
Nikita Shubincf7aa032022-12-12 11:03:35 +030096 ret = spl_parse_image_header(spl_image, bootdev, header);
Stefan Agner22802f42016-12-23 07:51:53 +010097 }
98
Nikita Shubincf7aa032022-12-12 11:03:35 +030099 return ret;
Stefan Agner22802f42016-12-23 07:51:53 +0100100}
Marek Vasut49132612018-04-07 17:03:28 +0200101#if CONFIG_IS_ENABLED(RAM_DEVICE)
Stefan Agner22802f42016-12-23 07:51:53 +0100102SPL_LOAD_IMAGE_METHOD("RAM", 0, BOOT_DEVICE_RAM, spl_ram_load_image);
103#endif
Andrew F. Davis6536ca42019-01-17 13:43:02 -0600104#if CONFIG_IS_ENABLED(DFU)
Stefan Agner22802f42016-12-23 07:51:53 +0100105SPL_LOAD_IMAGE_METHOD("DFU", 0, BOOT_DEVICE_DFU, spl_ram_load_image);
106#endif