blob: 37c2af96e08705149a5be75c7224c362c51a65e4 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenk47d1a6e2002-11-03 00:01:44 +00002/*
Detlev Zundel77094472009-07-13 16:01:18 +02003 * (C) Copyright 2000-2009
wdenk47d1a6e2002-11-03 00:01:44 +00004 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
wdenk47d1a6e2002-11-03 00:01:44 +00005 */
6
7/*
8 * Boot support
9 */
10#include <common.h>
Simon Glass3b5866d2014-06-12 07:24:46 -060011#include <bootm.h>
wdenk47d1a6e2002-11-03 00:01:44 +000012#include <command.h>
Simon Glass0af6e2d2019-08-01 09:46:52 -060013#include <env.h>
Simon Glass0129b522014-10-19 21:11:24 -060014#include <errno.h>
Simon Glass3b5866d2014-06-12 07:24:46 -060015#include <image.h>
Simon Glass3b5866d2014-06-12 07:24:46 -060016#include <malloc.h>
17#include <nand.h>
wdenk47d1a6e2002-11-03 00:01:44 +000018#include <asm/byteorder.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060019#include <asm/global_data.h>
Simon Glass3b5866d2014-06-12 07:24:46 -060020#include <linux/ctype.h>
21#include <linux/err.h>
22#include <u-boot/zlib.h>
Philippe Reynesf6f75ee2019-12-02 15:45:50 +010023#include <mapmem.h>
Peter Korsgaardf7440cd2009-11-19 11:37:51 +010024
Marian Balakowicz2df645e2008-01-08 18:17:10 +010025DECLARE_GLOBAL_DATA_PTR;
wdenk9dfa8d12002-12-08 09:53:23 +000026
Jon Loeliger54324d02007-07-08 17:51:39 -050027#if defined(CONFIG_CMD_IMI)
Stephen Warren6904b6e2011-10-18 11:11:49 +000028static int image_info(unsigned long addr);
wdenk47d1a6e2002-11-03 00:01:44 +000029#endif
wdenk874ac262003-07-24 23:38:38 +000030
Jon Loeliger54324d02007-07-08 17:51:39 -050031#if defined(CONFIG_CMD_IMLS)
wdenk874ac262003-07-24 23:38:38 +000032#include <flash.h>
Stefan Roesefb9a7302010-08-31 10:00:10 +020033#include <mtd/cfi_flash.h>
Vipin Kumar3df41b12012-12-16 22:32:48 +000034#endif
35
36#if defined(CONFIG_CMD_IMLS) || defined(CONFIG_CMD_IMLS_NAND)
Simon Glassed38aef2020-05-10 11:40:03 -060037static int do_imls(struct cmd_tbl *cmdtp, int flag, int argc,
38 char *const argv[]);
wdenk874ac262003-07-24 23:38:38 +000039#endif
Kumar Galabf3954f2008-10-21 17:25:44 -050040
Kumar Gala18178bc2008-10-21 17:25:45 -050041/* we overload the cmd field with our state machine info instead of a
42 * function pointer */
Simon Glassed38aef2020-05-10 11:40:03 -060043static struct cmd_tbl cmd_bootm_sub[] = {
Kumar Gala18178bc2008-10-21 17:25:45 -050044 U_BOOT_CMD_MKENT(start, 0, 1, (void *)BOOTM_STATE_START, "", ""),
45 U_BOOT_CMD_MKENT(loados, 0, 1, (void *)BOOTM_STATE_LOADOS, "", ""),
Philippe Reynesfae84872022-03-28 22:57:07 +020046#ifdef CONFIG_CMD_BOOTM_PRE_LOAD
47 U_BOOT_CMD_MKENT(preload, 0, 1, (void *)BOOTM_STATE_PRE_LOAD, "", ""),
48#endif
John Rigbyeea8e692010-10-13 13:57:35 -060049#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
Kumar Gala18178bc2008-10-21 17:25:45 -050050 U_BOOT_CMD_MKENT(ramdisk, 0, 1, (void *)BOOTM_STATE_RAMDISK, "", ""),
51#endif
52#ifdef CONFIG_OF_LIBFDT
53 U_BOOT_CMD_MKENT(fdt, 0, 1, (void *)BOOTM_STATE_FDT, "", ""),
54#endif
Kumar Gala18178bc2008-10-21 17:25:45 -050055 U_BOOT_CMD_MKENT(cmdline, 0, 1, (void *)BOOTM_STATE_OS_CMDLINE, "", ""),
Peter Tyser694a3932009-11-18 19:08:59 -060056 U_BOOT_CMD_MKENT(bdt, 0, 1, (void *)BOOTM_STATE_OS_BD_T, "", ""),
Kumar Gala18178bc2008-10-21 17:25:45 -050057 U_BOOT_CMD_MKENT(prep, 0, 1, (void *)BOOTM_STATE_OS_PREP, "", ""),
Simon Glass00134882013-06-11 11:14:48 -070058 U_BOOT_CMD_MKENT(fake, 0, 1, (void *)BOOTM_STATE_OS_FAKE_GO, "", ""),
Kumar Gala18178bc2008-10-21 17:25:45 -050059 U_BOOT_CMD_MKENT(go, 0, 1, (void *)BOOTM_STATE_OS_GO, "", ""),
60};
61
Philippe Reynesfae84872022-03-28 22:57:07 +020062#if defined(CONFIG_CMD_BOOTM_PRE_LOAD)
63static ulong bootm_get_addr(int argc, char *const argv[])
64{
65 ulong addr;
66
67 if (argc > 0)
68 addr = hextoul(argv[0], NULL);
69 else
70 addr = image_load_addr;
71
72 return addr;
73}
74#endif
75
Simon Glassed38aef2020-05-10 11:40:03 -060076static int do_bootm_subcommand(struct cmd_tbl *cmdtp, int flag, int argc,
77 char *const argv[])
Kumar Gala18178bc2008-10-21 17:25:45 -050078{
79 int ret = 0;
Simon Glass81afc3d2011-10-07 13:53:40 +000080 long state;
Simon Glassed38aef2020-05-10 11:40:03 -060081 struct cmd_tbl *c;
Kumar Gala18178bc2008-10-21 17:25:45 -050082
Simon Glass794a9212013-06-11 11:14:46 -070083 c = find_cmd_tbl(argv[0], &cmd_bootm_sub[0], ARRAY_SIZE(cmd_bootm_sub));
84 argc--; argv++;
Kumar Gala18178bc2008-10-21 17:25:45 -050085
86 if (c) {
Simon Glass81afc3d2011-10-07 13:53:40 +000087 state = (long)c->cmd;
Simon Glass794a9212013-06-11 11:14:46 -070088 if (state == BOOTM_STATE_START)
Philippe Reynesae1f2ca2022-03-28 22:57:00 +020089 state |= BOOTM_STATE_PRE_LOAD | BOOTM_STATE_FINDOS |
90 BOOTM_STATE_FINDOTHER;
Philippe Reynesfae84872022-03-28 22:57:07 +020091#if defined(CONFIG_CMD_BOOTM_PRE_LOAD)
92 if (state == BOOTM_STATE_PRE_LOAD)
93 state |= BOOTM_STATE_START;
94#endif
Wolfgang Denk3b683112010-07-17 01:06:04 +020095 } else {
96 /* Unrecognized command */
Simon Glassa06dfc72011-12-10 08:44:01 +000097 return CMD_RET_USAGE;
Kumar Gala18178bc2008-10-21 17:25:45 -050098 }
99
Heiko Schocherf31a5662015-02-24 07:04:38 +0100100 if (((state & BOOTM_STATE_START) != BOOTM_STATE_START) &&
101 images.state >= state) {
Stephen Warren6904b6e2011-10-18 11:11:49 +0000102 printf("Trying to execute a command out of order\n");
Simon Glassa06dfc72011-12-10 08:44:01 +0000103 return CMD_RET_USAGE;
Kumar Gala18178bc2008-10-21 17:25:45 -0500104 }
105
Simon Glass3081e2e2013-06-11 11:14:47 -0700106 ret = do_bootm_states(cmdtp, flag, argc, argv, state, &images, 0);
Kumar Gala18178bc2008-10-21 17:25:45 -0500107
Philippe Reynesfae84872022-03-28 22:57:07 +0200108#if defined(CONFIG_CMD_BOOTM_PRE_LOAD)
109 if (!ret && (state & BOOTM_STATE_PRE_LOAD))
110 env_set_hex("loadaddr_verified",
111 bootm_get_addr(argc, argv) + image_load_offset);
112#endif
113
Simon Glass1b893702022-10-11 09:47:08 -0600114 return ret ? CMD_RET_FAILURE : 0;
Kumar Gala18178bc2008-10-21 17:25:45 -0500115}
116
Kumar Galabd70bbe2008-08-15 08:24:41 -0500117/*******************************************************************/
118/* bootm - boot application image from image in memory */
119/*******************************************************************/
Kumar Galabf3954f2008-10-21 17:25:44 -0500120
Simon Glassed38aef2020-05-10 11:40:03 -0600121int do_bootm(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
Kumar Galabd70bbe2008-08-15 08:24:41 -0500122{
Simon Glass975dd8a2022-10-11 09:47:09 -0600123 int states;
Simon Glass1b893702022-10-11 09:47:08 -0600124 int ret;
125
Wolfgang Denkd0813e52010-10-28 20:00:11 +0200126#ifdef CONFIG_NEEDS_MANUAL_RELOC
Peter Tyser9057cbf2009-09-21 11:20:36 -0500127 static int relocated = 0;
Kumar Galabf3954f2008-10-21 17:25:44 -0500128
Kumar Galabf3954f2008-10-21 17:25:44 -0500129 if (!relocated) {
130 int i;
Daniel Schwierzecka2187092013-01-07 06:54:52 +0000131
Daniel Schwierzecka2187092013-01-07 06:54:52 +0000132 /* relocate names of sub-command table */
133 for (i = 0; i < ARRAY_SIZE(cmd_bootm_sub); i++)
134 cmd_bootm_sub[i].name += gd->reloc_off;
135
Kumar Galabf3954f2008-10-21 17:25:44 -0500136 relocated = 1;
137 }
Peter Tyser9057cbf2009-09-21 11:20:36 -0500138#endif
Kumar Galabd70bbe2008-08-15 08:24:41 -0500139
Kumar Gala18178bc2008-10-21 17:25:45 -0500140 /* determine if we have a sub command */
Simon Glass794a9212013-06-11 11:14:46 -0700141 argc--; argv++;
142 if (argc > 0) {
Kumar Gala18178bc2008-10-21 17:25:45 -0500143 char *endp;
144
Simon Glass3ff49ec2021-07-24 09:03:29 -0600145 hextoul(argv[0], &endp);
Simon Glass794a9212013-06-11 11:14:46 -0700146 /* endp pointing to NULL means that argv[0] was just a
Kumar Gala18178bc2008-10-21 17:25:45 -0500147 * valid number, pass it along to the normal bootm processing
148 *
149 * If endp is ':' or '#' assume a FIT identifier so pass
150 * along for normal processing.
151 *
152 * Right now we assume the first arg should never be '-'
153 */
154 if ((*endp != 0) && (*endp != ':') && (*endp != '#'))
155 return do_bootm_subcommand(cmdtp, flag, argc, argv);
156 }
157
Simon Glass975dd8a2022-10-11 09:47:09 -0600158 states = BOOTM_STATE_START | BOOTM_STATE_FINDOS | BOOTM_STATE_PRE_LOAD |
159 BOOTM_STATE_FINDOTHER | BOOTM_STATE_LOADOS |
Paul Burton8a39e8d2013-09-06 11:23:55 +0100160 BOOTM_STATE_OS_PREP | BOOTM_STATE_OS_FAKE_GO |
Simon Glass975dd8a2022-10-11 09:47:09 -0600161 BOOTM_STATE_OS_GO;
162 if (IS_ENABLED(CONFIG_SYS_BOOT_RAMDISK_HIGH))
163 states |= BOOTM_STATE_RAMDISK;
164 if (IS_ENABLED(CONFIG_PPC) || IS_ENABLED(CONFIG_MIPS))
165 states |= BOOTM_STATE_OS_CMDLINE;
166 ret = do_bootm_states(cmdtp, flag, argc, argv, states, &images, 1);
Simon Glass1b893702022-10-11 09:47:08 -0600167
168 return ret ? CMD_RET_FAILURE : 0;
wdenk47d1a6e2002-11-03 00:01:44 +0000169}
170
Simon Glassed38aef2020-05-10 11:40:03 -0600171int bootm_maybe_autostart(struct cmd_tbl *cmdtp, const char *cmd)
Mike Frysinger194c2e82011-06-05 13:43:02 +0000172{
Simon Glass46b530a2021-10-21 21:08:52 -0600173 if (env_get_autostart()) {
Mike Frysinger194c2e82011-06-05 13:43:02 +0000174 char *local_args[2];
175 local_args[0] = (char *)cmd;
176 local_args[1] = NULL;
Simon Glass892265d2019-12-28 10:45:02 -0700177 printf("Automatic boot of image at addr 0x%08lX ...\n",
178 image_load_addr);
Mike Frysinger194c2e82011-06-05 13:43:02 +0000179 return do_bootm(cmdtp, 0, 1, local_args);
180 }
181
182 return 0;
183}
184
Kim Phillipsdc00a682012-10-29 13:34:31 +0000185#ifdef CONFIG_SYS_LONGHELP
186static char bootm_help_text[] =
Marian Balakowicz2df645e2008-01-08 18:17:10 +0100187 "[addr [arg ...]]\n - boot application image stored in memory\n"
188 "\tpassing arguments 'arg ...'; when booting a Linux kernel,\n"
189 "\t'arg' can be the address of an initrd image\n"
Marian Balakowiczd2160852008-01-31 13:20:07 +0100190#if defined(CONFIG_OF_LIBFDT)
Matthew McClintock6fb7c812006-06-28 10:41:37 -0500191 "\tWhen booting a Linux kernel which requires a flat device-tree\n"
Detlev Zundele6099162007-10-19 16:47:26 +0200192 "\ta third argument is required which is the address of the\n"
Matthew McClintock6fb7c812006-06-28 10:41:37 -0500193 "\tdevice-tree blob. To boot that kernel without an initrd image,\n"
194 "\tuse a '-' for the second argument. If you do not pass a third\n"
195 "\ta bd_info struct will be passed instead\n"
196#endif
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100197#if defined(CONFIG_FIT)
198 "\t\nFor the new multi component uImage format (FIT) addresses\n"
Vagrant Cascadian2f629f02016-10-23 20:45:18 -0700199 "\tmust be extended to include component or configuration unit name:\n"
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100200 "\taddr:<subimg_uname> - direct component image specification\n"
201 "\taddr#<conf_uname> - configuration specification\n"
202 "\tUse iminfo command to get the list of existing component\n"
203 "\timages and configurations.\n"
204#endif
Kumar Gala18178bc2008-10-21 17:25:45 -0500205 "\nSub-commands to do part of the bootm sequence. The sub-commands "
206 "must be\n"
207 "issued in the order below (it's ok to not issue all sub-commands):\n"
208 "\tstart [addr [arg ...]]\n"
Philippe Reynesfae84872022-03-28 22:57:07 +0200209#if defined(CONFIG_CMD_BOOTM_PRE_LOAD)
210 "\tpreload [addr [arg ..]] - run only the preload stage\n"
211#endif
Kumar Gala18178bc2008-10-21 17:25:45 -0500212 "\tloados - load OS image\n"
Daniel Schwierzeckf2f2ec92013-02-26 04:54:19 +0000213#if defined(CONFIG_SYS_BOOT_RAMDISK_HIGH)
Kumar Gala18178bc2008-10-21 17:25:45 -0500214 "\tramdisk - relocate initrd, set env initrd_start/initrd_end\n"
215#endif
216#if defined(CONFIG_OF_LIBFDT)
217 "\tfdt - relocate flat device tree\n"
218#endif
Kumar Gala18178bc2008-10-21 17:25:45 -0500219 "\tcmdline - OS specific command line processing/setup\n"
Masahiro Yamada940a9222020-06-26 15:13:34 +0900220 "\tbdt - OS specific bd_info processing\n"
Kumar Gala18178bc2008-10-21 17:25:45 -0500221 "\tprep - OS specific prep before relocation or go\n"
Michal Simek5ce8e422015-01-15 09:53:13 +0100222#if defined(CONFIG_TRACE)
223 "\tfake - OS specific fake start without go\n"
224#endif
Kim Phillipsdc00a682012-10-29 13:34:31 +0000225 "\tgo - start OS";
226#endif
227
228U_BOOT_CMD(
229 bootm, CONFIG_SYS_MAXARGS, 1, do_bootm,
230 "boot application image from memory", bootm_help_text
wdenk57b2d802003-06-27 21:31:46 +0000231);
wdenk47d1a6e2002-11-03 00:01:44 +0000232
Marian Balakowicz2df645e2008-01-08 18:17:10 +0100233/*******************************************************************/
234/* bootd - boot default image */
235/*******************************************************************/
Jon Loeliger54324d02007-07-08 17:51:39 -0500236#if defined(CONFIG_CMD_BOOTD)
Simon Glassed38aef2020-05-10 11:40:03 -0600237int do_bootd(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
wdenk47d1a6e2002-11-03 00:01:44 +0000238{
Simon Glass64b723f2017-08-03 12:22:12 -0600239 return run_command(env_get("bootcmd"), flag);
wdenk47d1a6e2002-11-03 00:01:44 +0000240}
wdenk47d1a6e2002-11-03 00:01:44 +0000241
wdenkf287a242003-07-01 21:06:45 +0000242U_BOOT_CMD(
Marian Balakowicz2df645e2008-01-08 18:17:10 +0100243 boot, 1, 1, do_bootd,
Peter Tyserdfb72b82009-01-27 18:03:12 -0600244 "boot default, i.e., run 'bootcmd'",
Wolfgang Denkc54781c2009-05-24 17:06:54 +0200245 ""
wdenk3086a972003-06-28 23:11:04 +0000246);
wdenk47d1a6e2002-11-03 00:01:44 +0000247
wdenk3086a972003-06-28 23:11:04 +0000248/* keep old command name "bootd" for backward compatibility */
wdenkf287a242003-07-01 21:06:45 +0000249U_BOOT_CMD(
Marian Balakowicz2df645e2008-01-08 18:17:10 +0100250 bootd, 1, 1, do_bootd,
Peter Tyserdfb72b82009-01-27 18:03:12 -0600251 "boot default, i.e., run 'bootcmd'",
Wolfgang Denkc54781c2009-05-24 17:06:54 +0200252 ""
wdenk57b2d802003-06-27 21:31:46 +0000253);
wdenk47d1a6e2002-11-03 00:01:44 +0000254
wdenk47d1a6e2002-11-03 00:01:44 +0000255#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000256
wdenk47d1a6e2002-11-03 00:01:44 +0000257
Marian Balakowicz2df645e2008-01-08 18:17:10 +0100258/*******************************************************************/
259/* iminfo - print header info for a requested image */
260/*******************************************************************/
Jon Loeliger54324d02007-07-08 17:51:39 -0500261#if defined(CONFIG_CMD_IMI)
Simon Glassed38aef2020-05-10 11:40:03 -0600262static int do_iminfo(struct cmd_tbl *cmdtp, int flag, int argc,
263 char *const argv[])
wdenk47d1a6e2002-11-03 00:01:44 +0000264{
265 int arg;
266 ulong addr;
Marian Balakowicz2df645e2008-01-08 18:17:10 +0100267 int rcode = 0;
wdenk47d1a6e2002-11-03 00:01:44 +0000268
wdenk47d1a6e2002-11-03 00:01:44 +0000269 if (argc < 2) {
Simon Glass892265d2019-12-28 10:45:02 -0700270 return image_info(image_load_addr);
wdenk47d1a6e2002-11-03 00:01:44 +0000271 }
wdenk47d1a6e2002-11-03 00:01:44 +0000272
Marian Balakowicz2df645e2008-01-08 18:17:10 +0100273 for (arg = 1; arg < argc; ++arg) {
Simon Glass3ff49ec2021-07-24 09:03:29 -0600274 addr = hextoul(argv[arg], NULL);
Stephen Warren6904b6e2011-10-18 11:11:49 +0000275 if (image_info(addr) != 0)
Marian Balakowicz2df645e2008-01-08 18:17:10 +0100276 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000277 }
278 return rcode;
279}
wdenk47d1a6e2002-11-03 00:01:44 +0000280
Stephen Warren6904b6e2011-10-18 11:11:49 +0000281static int image_info(ulong addr)
wdenk47d1a6e2002-11-03 00:01:44 +0000282{
Philippe Reynesf6f75ee2019-12-02 15:45:50 +0100283 void *hdr = (void *)map_sysmem(addr, 0);
wdenk47d1a6e2002-11-03 00:01:44 +0000284
Stephen Warren6904b6e2011-10-18 11:11:49 +0000285 printf("\n## Checking Image at %08lx ...\n", addr);
wdenk47d1a6e2002-11-03 00:01:44 +0000286
Stephen Warren6904b6e2011-10-18 11:11:49 +0000287 switch (genimg_get_format(hdr)) {
Tom Rinic220bd92019-05-23 07:14:07 -0400288#if defined(CONFIG_LEGACY_IMAGE_FORMAT)
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100289 case IMAGE_FORMAT_LEGACY:
Stephen Warren6904b6e2011-10-18 11:11:49 +0000290 puts(" Legacy image found\n");
291 if (!image_check_magic(hdr)) {
292 puts(" Bad Magic Number\n");
Philippe Reynesf6f75ee2019-12-02 15:45:50 +0100293 unmap_sysmem(hdr);
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100294 return 1;
295 }
wdenk47d1a6e2002-11-03 00:01:44 +0000296
Stephen Warren6904b6e2011-10-18 11:11:49 +0000297 if (!image_check_hcrc(hdr)) {
298 puts(" Bad Header Checksum\n");
Philippe Reynesf6f75ee2019-12-02 15:45:50 +0100299 unmap_sysmem(hdr);
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100300 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000301 }
302
Stephen Warren6904b6e2011-10-18 11:11:49 +0000303 image_print_contents(hdr);
wdenk47d1a6e2002-11-03 00:01:44 +0000304
Stephen Warren6904b6e2011-10-18 11:11:49 +0000305 puts(" Verifying Checksum ... ");
306 if (!image_check_dcrc(hdr)) {
307 puts(" Bad Data CRC\n");
Philippe Reynesf6f75ee2019-12-02 15:45:50 +0100308 unmap_sysmem(hdr);
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100309 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000310 }
Stephen Warren6904b6e2011-10-18 11:11:49 +0000311 puts("OK\n");
Philippe Reynesf6f75ee2019-12-02 15:45:50 +0100312 unmap_sysmem(hdr);
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100313 return 0;
Heiko Schocher515eb122014-05-28 11:33:33 +0200314#endif
Michael Trimarchi44af20b2016-06-10 19:54:37 +0200315#if defined(CONFIG_ANDROID_BOOT_IMAGE)
316 case IMAGE_FORMAT_ANDROID:
317 puts(" Android image found\n");
318 android_print_contents(hdr);
Philippe Reynesf6f75ee2019-12-02 15:45:50 +0100319 unmap_sysmem(hdr);
Michael Trimarchi44af20b2016-06-10 19:54:37 +0200320 return 0;
321#endif
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100322#if defined(CONFIG_FIT)
323 case IMAGE_FORMAT_FIT:
Stephen Warren6904b6e2011-10-18 11:11:49 +0000324 puts(" FIT image found\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000325
Simon Glassd563c252021-02-15 17:08:09 -0700326 if (fit_check_format(hdr, IMAGE_SIZE_INVAL)) {
Stephen Warren6904b6e2011-10-18 11:11:49 +0000327 puts("Bad FIT image format!\n");
Philippe Reynesf6f75ee2019-12-02 15:45:50 +0100328 unmap_sysmem(hdr);
Marian Balakowiczcc1fd912008-03-11 12:35:20 +0100329 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000330 }
331
Stephen Warren6904b6e2011-10-18 11:11:49 +0000332 fit_print_contents(hdr);
Bartlomiej Sieka03797f52008-09-09 12:58:16 +0200333
Simon Glass7428ad12013-05-07 06:11:57 +0000334 if (!fit_all_image_verify(hdr)) {
Stephen Warren6904b6e2011-10-18 11:11:49 +0000335 puts("Bad hash in FIT image!\n");
Philippe Reynesf6f75ee2019-12-02 15:45:50 +0100336 unmap_sysmem(hdr);
Bartlomiej Sieka03797f52008-09-09 12:58:16 +0200337 return 1;
338 }
339
Philippe Reynesf6f75ee2019-12-02 15:45:50 +0100340 unmap_sysmem(hdr);
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100341 return 0;
wdenk47d1a6e2002-11-03 00:01:44 +0000342#endif
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100343 default:
Stephen Warren6904b6e2011-10-18 11:11:49 +0000344 puts("Unknown image format!\n");
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100345 break;
wdenk47d1a6e2002-11-03 00:01:44 +0000346 }
wdenk47d1a6e2002-11-03 00:01:44 +0000347
Philippe Reynesf6f75ee2019-12-02 15:45:50 +0100348 unmap_sysmem(hdr);
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100349 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000350}
wdenk47d1a6e2002-11-03 00:01:44 +0000351
wdenkf287a242003-07-01 21:06:45 +0000352U_BOOT_CMD(
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200353 iminfo, CONFIG_SYS_MAXARGS, 1, do_iminfo,
Peter Tyserdfb72b82009-01-27 18:03:12 -0600354 "print header information for application image",
wdenk57b2d802003-06-27 21:31:46 +0000355 "addr [addr ...]\n"
356 " - print header information for application image starting at\n"
357 " address 'addr' in memory; this includes verification of the\n"
Wolfgang Denkc54781c2009-05-24 17:06:54 +0200358 " image contents (magic number, header and payload checksums)"
wdenk57b2d802003-06-27 21:31:46 +0000359);
wdenk47d1a6e2002-11-03 00:01:44 +0000360#endif
361
362
Marian Balakowicz2df645e2008-01-08 18:17:10 +0100363/*******************************************************************/
364/* imls - list all images found in flash */
365/*******************************************************************/
Jon Loeliger54324d02007-07-08 17:51:39 -0500366#if defined(CONFIG_CMD_IMLS)
Vipin Kumar3df41b12012-12-16 22:32:48 +0000367static int do_imls_nor(void)
wdenk874ac262003-07-24 23:38:38 +0000368{
369 flash_info_t *info;
370 int i, j;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100371 void *hdr;
wdenk47d1a6e2002-11-03 00:01:44 +0000372
Marian Balakowicz2df645e2008-01-08 18:17:10 +0100373 for (i = 0, info = &flash_info[0];
Patrick Delaunay6c5f5602022-01-04 14:23:58 +0100374 i < CFI_FLASH_BANKS; ++i, ++info) {
wdenk47d1a6e2002-11-03 00:01:44 +0000375
wdenk874ac262003-07-24 23:38:38 +0000376 if (info->flash_id == FLASH_UNKNOWN)
377 goto next_bank;
Marian Balakowicz2df645e2008-01-08 18:17:10 +0100378 for (j = 0; j < info->sector_count; ++j) {
wdenk47d1a6e2002-11-03 00:01:44 +0000379
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100380 hdr = (void *)info->start[j];
381 if (!hdr)
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100382 goto next_sector;
wdenk47d1a6e2002-11-03 00:01:44 +0000383
Stephen Warren6904b6e2011-10-18 11:11:49 +0000384 switch (genimg_get_format(hdr)) {
Tom Rinic220bd92019-05-23 07:14:07 -0400385#if defined(CONFIG_LEGACY_IMAGE_FORMAT)
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100386 case IMAGE_FORMAT_LEGACY:
Stephen Warren6904b6e2011-10-18 11:11:49 +0000387 if (!image_check_hcrc(hdr))
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100388 goto next_sector;
wdenk47d1a6e2002-11-03 00:01:44 +0000389
Stephen Warren6904b6e2011-10-18 11:11:49 +0000390 printf("Legacy Image at %08lX:\n", (ulong)hdr);
391 image_print_contents(hdr);
wdenk47d1a6e2002-11-03 00:01:44 +0000392
Stephen Warren6904b6e2011-10-18 11:11:49 +0000393 puts(" Verifying Checksum ... ");
394 if (!image_check_dcrc(hdr)) {
395 puts("Bad Data CRC\n");
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100396 } else {
Stephen Warren6904b6e2011-10-18 11:11:49 +0000397 puts("OK\n");
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100398 }
399 break;
Heiko Schocher515eb122014-05-28 11:33:33 +0200400#endif
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100401#if defined(CONFIG_FIT)
402 case IMAGE_FORMAT_FIT:
Simon Glassd563c252021-02-15 17:08:09 -0700403 if (fit_check_format(hdr, IMAGE_SIZE_INVAL))
Marian Balakowiczcc1fd912008-03-11 12:35:20 +0100404 goto next_sector;
wdenk47d1a6e2002-11-03 00:01:44 +0000405
Stephen Warren6904b6e2011-10-18 11:11:49 +0000406 printf("FIT Image at %08lX:\n", (ulong)hdr);
407 fit_print_contents(hdr);
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100408 break;
409#endif
410 default:
411 goto next_sector;
wdenk47d1a6e2002-11-03 00:01:44 +0000412 }
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100413
wdenk0a658552003-08-05 17:43:17 +0000414next_sector: ;
wdenk47d1a6e2002-11-03 00:01:44 +0000415 }
wdenk0a658552003-08-05 17:43:17 +0000416next_bank: ;
wdenk47d1a6e2002-11-03 00:01:44 +0000417 }
Vipin Kumar3df41b12012-12-16 22:32:48 +0000418 return 0;
419}
420#endif
421
422#if defined(CONFIG_CMD_IMLS_NAND)
Scott Wood08364d92016-05-30 13:57:54 -0500423static int nand_imls_legacyimage(struct mtd_info *mtd, int nand_dev,
424 loff_t off, size_t len)
Vipin Kumar3df41b12012-12-16 22:32:48 +0000425{
426 void *imgdata;
427 int ret;
428
429 imgdata = malloc(len);
430 if (!imgdata) {
431 printf("May be a Legacy Image at NAND device %d offset %08llX:\n",
432 nand_dev, off);
433 printf(" Low memory(cannot allocate memory for image)\n");
434 return -ENOMEM;
435 }
436
Grygorii Strashko0258e392017-01-31 15:37:03 -0600437 ret = nand_read_skip_bad(mtd, off, &len, NULL, mtd->size, imgdata);
Vipin Kumar3df41b12012-12-16 22:32:48 +0000438 if (ret < 0 && ret != -EUCLEAN) {
439 free(imgdata);
440 return ret;
441 }
442
443 if (!image_check_hcrc(imgdata)) {
444 free(imgdata);
445 return 0;
446 }
447
448 printf("Legacy Image at NAND device %d offset %08llX:\n",
449 nand_dev, off);
450 image_print_contents(imgdata);
451
452 puts(" Verifying Checksum ... ");
453 if (!image_check_dcrc(imgdata))
454 puts("Bad Data CRC\n");
455 else
456 puts("OK\n");
457
458 free(imgdata);
459
460 return 0;
461}
462
Scott Wood08364d92016-05-30 13:57:54 -0500463static int nand_imls_fitimage(struct mtd_info *mtd, int nand_dev, loff_t off,
464 size_t len)
Vipin Kumar3df41b12012-12-16 22:32:48 +0000465{
466 void *imgdata;
467 int ret;
468
469 imgdata = malloc(len);
470 if (!imgdata) {
471 printf("May be a FIT Image at NAND device %d offset %08llX:\n",
472 nand_dev, off);
473 printf(" Low memory(cannot allocate memory for image)\n");
474 return -ENOMEM;
475 }
wdenk47d1a6e2002-11-03 00:01:44 +0000476
Grygorii Strashko0258e392017-01-31 15:37:03 -0600477 ret = nand_read_skip_bad(mtd, off, &len, NULL, mtd->size, imgdata);
Vipin Kumar3df41b12012-12-16 22:32:48 +0000478 if (ret < 0 && ret != -EUCLEAN) {
479 free(imgdata);
480 return ret;
481 }
482
Simon Glassd563c252021-02-15 17:08:09 -0700483 if (fit_check_format(imgdata, IMAGE_SIZE_INVAL)) {
Vipin Kumar3df41b12012-12-16 22:32:48 +0000484 free(imgdata);
485 return 0;
486 }
487
488 printf("FIT Image at NAND device %d offset %08llX:\n", nand_dev, off);
489
490 fit_print_contents(imgdata);
491 free(imgdata);
492
493 return 0;
494}
495
496static int do_imls_nand(void)
497{
Scott Wood08364d92016-05-30 13:57:54 -0500498 struct mtd_info *mtd;
Vipin Kumar3df41b12012-12-16 22:32:48 +0000499 int nand_dev = nand_curr_device;
500 size_t len;
501 loff_t off;
502 u32 buffer[16];
503
504 if (nand_dev < 0 || nand_dev >= CONFIG_SYS_MAX_NAND_DEVICE) {
505 puts("\nNo NAND devices available\n");
506 return -ENODEV;
507 }
508
509 printf("\n");
510
511 for (nand_dev = 0; nand_dev < CONFIG_SYS_MAX_NAND_DEVICE; nand_dev++) {
Grygorii Strashkoea0a0542017-06-26 19:12:54 -0500512 mtd = get_nand_dev_by_index(nand_dev);
Scott Wood08364d92016-05-30 13:57:54 -0500513 if (!mtd->name || !mtd->size)
Vipin Kumar3df41b12012-12-16 22:32:48 +0000514 continue;
515
Scott Wood08364d92016-05-30 13:57:54 -0500516 for (off = 0; off < mtd->size; off += mtd->erasesize) {
Simon Glassbb7d3bb2022-09-06 20:26:52 -0600517 const struct legacy_img_hdr *header;
Vipin Kumar3df41b12012-12-16 22:32:48 +0000518 int ret;
519
Scott Wood08364d92016-05-30 13:57:54 -0500520 if (nand_block_isbad(mtd, off))
Vipin Kumar3df41b12012-12-16 22:32:48 +0000521 continue;
522
523 len = sizeof(buffer);
524
Scott Wood08364d92016-05-30 13:57:54 -0500525 ret = nand_read(mtd, off, &len, (u8 *)buffer);
Vipin Kumar3df41b12012-12-16 22:32:48 +0000526 if (ret < 0 && ret != -EUCLEAN) {
527 printf("NAND read error %d at offset %08llX\n",
528 ret, off);
529 continue;
530 }
531
532 switch (genimg_get_format(buffer)) {
Tom Rinic220bd92019-05-23 07:14:07 -0400533#if defined(CONFIG_LEGACY_IMAGE_FORMAT)
Vipin Kumar3df41b12012-12-16 22:32:48 +0000534 case IMAGE_FORMAT_LEGACY:
Simon Glassbb7d3bb2022-09-06 20:26:52 -0600535 header = (const struct legacy_img_hdr *)buffer;
Vipin Kumar3df41b12012-12-16 22:32:48 +0000536
537 len = image_get_image_size(header);
Scott Wood08364d92016-05-30 13:57:54 -0500538 nand_imls_legacyimage(mtd, nand_dev, off, len);
Vipin Kumar3df41b12012-12-16 22:32:48 +0000539 break;
Heiko Schocher515eb122014-05-28 11:33:33 +0200540#endif
Vipin Kumar3df41b12012-12-16 22:32:48 +0000541#if defined(CONFIG_FIT)
542 case IMAGE_FORMAT_FIT:
543 len = fit_get_size(buffer);
Scott Wood08364d92016-05-30 13:57:54 -0500544 nand_imls_fitimage(mtd, nand_dev, off, len);
Vipin Kumar3df41b12012-12-16 22:32:48 +0000545 break;
546#endif
547 }
548 }
549 }
550
551 return 0;
552}
553#endif
554
555#if defined(CONFIG_CMD_IMLS) || defined(CONFIG_CMD_IMLS_NAND)
Simon Glassed38aef2020-05-10 11:40:03 -0600556static int do_imls(struct cmd_tbl *cmdtp, int flag, int argc,
557 char *const argv[])
Vipin Kumar3df41b12012-12-16 22:32:48 +0000558{
559 int ret_nor = 0, ret_nand = 0;
560
561#if defined(CONFIG_CMD_IMLS)
562 ret_nor = do_imls_nor();
563#endif
564
565#if defined(CONFIG_CMD_IMLS_NAND)
566 ret_nand = do_imls_nand();
567#endif
568
569 if (ret_nor)
570 return ret_nor;
571
572 if (ret_nand)
573 return ret_nand;
574
wdenk874ac262003-07-24 23:38:38 +0000575 return (0);
576}
wdenk47d1a6e2002-11-03 00:01:44 +0000577
wdenk874ac262003-07-24 23:38:38 +0000578U_BOOT_CMD(
579 imls, 1, 1, do_imls,
Peter Tyserdfb72b82009-01-27 18:03:12 -0600580 "list all images found in flash",
wdenk874ac262003-07-24 23:38:38 +0000581 "\n"
Vipin Kumar3df41b12012-12-16 22:32:48 +0000582 " - Prints information about all images found at sector/block\n"
583 " boundaries in nor/nand flash."
wdenk874ac262003-07-24 23:38:38 +0000584);
Tom Rini5ce62cd2014-08-14 06:42:36 -0400585#endif