blob: df0bbe19ca2ad88a81b477871f5af8c37deaf855 [file] [log] [blame]
wdenk47d1a6e2002-11-03 00:01:44 +00001/*
Detlev Zundel77094472009-07-13 16:01:18 +02002 * (C) Copyright 2000-2009
wdenk47d1a6e2002-11-03 00:01:44 +00003 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenk47d1a6e2002-11-03 00:01:44 +00006 */
7
8/*
9 * Boot support
10 */
11#include <common.h>
Simon Glass3b5866d2014-06-12 07:24:46 -060012#include <bootm.h>
wdenk47d1a6e2002-11-03 00:01:44 +000013#include <command.h>
wdenk0893c472003-05-20 14:25:27 +000014#include <environment.h>
Simon Glass0129b522014-10-19 21:11:24 -060015#include <errno.h>
Simon Glass3b5866d2014-06-12 07:24:46 -060016#include <image.h>
Simon Glass3b5866d2014-06-12 07:24:46 -060017#include <malloc.h>
18#include <nand.h>
wdenk47d1a6e2002-11-03 00:01:44 +000019#include <asm/byteorder.h>
Simon Glass3b5866d2014-06-12 07:24:46 -060020#include <linux/ctype.h>
21#include <linux/err.h>
22#include <u-boot/zlib.h>
Peter Korsgaardf7440cd2009-11-19 11:37:51 +010023
Marian Balakowicz2df645e2008-01-08 18:17:10 +010024DECLARE_GLOBAL_DATA_PTR;
wdenk9dfa8d12002-12-08 09:53:23 +000025
Jon Loeliger54324d02007-07-08 17:51:39 -050026#if defined(CONFIG_CMD_IMI)
Stephen Warren6904b6e2011-10-18 11:11:49 +000027static int image_info(unsigned long addr);
wdenk47d1a6e2002-11-03 00:01:44 +000028#endif
wdenk874ac262003-07-24 23:38:38 +000029
Jon Loeliger54324d02007-07-08 17:51:39 -050030#if defined(CONFIG_CMD_IMLS)
wdenk874ac262003-07-24 23:38:38 +000031#include <flash.h>
Stefan Roesefb9a7302010-08-31 10:00:10 +020032#include <mtd/cfi_flash.h>
Marian Balakowicz513b4a12005-10-11 19:09:42 +020033extern flash_info_t flash_info[]; /* info for FLASH chips */
Vipin Kumar3df41b12012-12-16 22:32:48 +000034#endif
35
36#if defined(CONFIG_CMD_IMLS) || defined(CONFIG_CMD_IMLS_NAND)
Stephen Warren6904b6e2011-10-18 11:11:49 +000037static int do_imls(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
wdenk874ac262003-07-24 23:38:38 +000038#endif
Kumar Galabf3954f2008-10-21 17:25:44 -050039
Kumar Gala18178bc2008-10-21 17:25:45 -050040/* we overload the cmd field with our state machine info instead of a
41 * function pointer */
Frans Meulenbroeks6b419fb2010-02-25 10:12:13 +010042static cmd_tbl_t cmd_bootm_sub[] = {
Kumar Gala18178bc2008-10-21 17:25:45 -050043 U_BOOT_CMD_MKENT(start, 0, 1, (void *)BOOTM_STATE_START, "", ""),
44 U_BOOT_CMD_MKENT(loados, 0, 1, (void *)BOOTM_STATE_LOADOS, "", ""),
John Rigbyeea8e692010-10-13 13:57:35 -060045#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
Kumar Gala18178bc2008-10-21 17:25:45 -050046 U_BOOT_CMD_MKENT(ramdisk, 0, 1, (void *)BOOTM_STATE_RAMDISK, "", ""),
47#endif
48#ifdef CONFIG_OF_LIBFDT
49 U_BOOT_CMD_MKENT(fdt, 0, 1, (void *)BOOTM_STATE_FDT, "", ""),
50#endif
Kumar Gala18178bc2008-10-21 17:25:45 -050051 U_BOOT_CMD_MKENT(cmdline, 0, 1, (void *)BOOTM_STATE_OS_CMDLINE, "", ""),
Peter Tyser694a3932009-11-18 19:08:59 -060052 U_BOOT_CMD_MKENT(bdt, 0, 1, (void *)BOOTM_STATE_OS_BD_T, "", ""),
Kumar Gala18178bc2008-10-21 17:25:45 -050053 U_BOOT_CMD_MKENT(prep, 0, 1, (void *)BOOTM_STATE_OS_PREP, "", ""),
Simon Glass00134882013-06-11 11:14:48 -070054 U_BOOT_CMD_MKENT(fake, 0, 1, (void *)BOOTM_STATE_OS_FAKE_GO, "", ""),
Kumar Gala18178bc2008-10-21 17:25:45 -050055 U_BOOT_CMD_MKENT(go, 0, 1, (void *)BOOTM_STATE_OS_GO, "", ""),
56};
57
Kim Phillipsdc00a682012-10-29 13:34:31 +000058static int do_bootm_subcommand(cmd_tbl_t *cmdtp, int flag, int argc,
Stephen Warren6904b6e2011-10-18 11:11:49 +000059 char * const argv[])
Kumar Gala18178bc2008-10-21 17:25:45 -050060{
61 int ret = 0;
Simon Glass81afc3d2011-10-07 13:53:40 +000062 long state;
Kumar Gala18178bc2008-10-21 17:25:45 -050063 cmd_tbl_t *c;
Kumar Gala18178bc2008-10-21 17:25:45 -050064
Simon Glass794a9212013-06-11 11:14:46 -070065 c = find_cmd_tbl(argv[0], &cmd_bootm_sub[0], ARRAY_SIZE(cmd_bootm_sub));
66 argc--; argv++;
Kumar Gala18178bc2008-10-21 17:25:45 -050067
68 if (c) {
Simon Glass81afc3d2011-10-07 13:53:40 +000069 state = (long)c->cmd;
Simon Glass794a9212013-06-11 11:14:46 -070070 if (state == BOOTM_STATE_START)
Simon Glass3081e2e2013-06-11 11:14:47 -070071 state |= BOOTM_STATE_FINDOS | BOOTM_STATE_FINDOTHER;
Wolfgang Denk3b683112010-07-17 01:06:04 +020072 } else {
73 /* Unrecognized command */
Simon Glassa06dfc72011-12-10 08:44:01 +000074 return CMD_RET_USAGE;
Kumar Gala18178bc2008-10-21 17:25:45 -050075 }
76
Heiko Schocherf31a5662015-02-24 07:04:38 +010077 if (((state & BOOTM_STATE_START) != BOOTM_STATE_START) &&
78 images.state >= state) {
Stephen Warren6904b6e2011-10-18 11:11:49 +000079 printf("Trying to execute a command out of order\n");
Simon Glassa06dfc72011-12-10 08:44:01 +000080 return CMD_RET_USAGE;
Kumar Gala18178bc2008-10-21 17:25:45 -050081 }
82
Simon Glass3081e2e2013-06-11 11:14:47 -070083 ret = do_bootm_states(cmdtp, flag, argc, argv, state, &images, 0);
Kumar Gala18178bc2008-10-21 17:25:45 -050084
85 return ret;
86}
87
Kumar Galabd70bbe2008-08-15 08:24:41 -050088/*******************************************************************/
89/* bootm - boot application image from image in memory */
90/*******************************************************************/
Kumar Galabf3954f2008-10-21 17:25:44 -050091
Stephen Warren6904b6e2011-10-18 11:11:49 +000092int do_bootm(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Kumar Galabd70bbe2008-08-15 08:24:41 -050093{
Wolfgang Denkd0813e52010-10-28 20:00:11 +020094#ifdef CONFIG_NEEDS_MANUAL_RELOC
Peter Tyser9057cbf2009-09-21 11:20:36 -050095 static int relocated = 0;
Kumar Galabf3954f2008-10-21 17:25:44 -050096
Kumar Galabf3954f2008-10-21 17:25:44 -050097 if (!relocated) {
98 int i;
Daniel Schwierzecka2187092013-01-07 06:54:52 +000099
Daniel Schwierzecka2187092013-01-07 06:54:52 +0000100 /* relocate names of sub-command table */
101 for (i = 0; i < ARRAY_SIZE(cmd_bootm_sub); i++)
102 cmd_bootm_sub[i].name += gd->reloc_off;
103
Kumar Galabf3954f2008-10-21 17:25:44 -0500104 relocated = 1;
105 }
Peter Tyser9057cbf2009-09-21 11:20:36 -0500106#endif
Kumar Galabd70bbe2008-08-15 08:24:41 -0500107
Kumar Gala18178bc2008-10-21 17:25:45 -0500108 /* determine if we have a sub command */
Simon Glass794a9212013-06-11 11:14:46 -0700109 argc--; argv++;
110 if (argc > 0) {
Kumar Gala18178bc2008-10-21 17:25:45 -0500111 char *endp;
112
Simon Glass794a9212013-06-11 11:14:46 -0700113 simple_strtoul(argv[0], &endp, 16);
114 /* endp pointing to NULL means that argv[0] was just a
Kumar Gala18178bc2008-10-21 17:25:45 -0500115 * valid number, pass it along to the normal bootm processing
116 *
117 * If endp is ':' or '#' assume a FIT identifier so pass
118 * along for normal processing.
119 *
120 * Right now we assume the first arg should never be '-'
121 */
122 if ((*endp != 0) && (*endp != ':') && (*endp != '#'))
123 return do_bootm_subcommand(cmdtp, flag, argc, argv);
124 }
125
Simon Glass3081e2e2013-06-11 11:14:47 -0700126 return do_bootm_states(cmdtp, flag, argc, argv, BOOTM_STATE_START |
127 BOOTM_STATE_FINDOS | BOOTM_STATE_FINDOTHER |
Tom Rini1008dc22013-09-23 14:20:37 -0400128 BOOTM_STATE_LOADOS |
Rick Altherrbf3fafe2017-01-18 17:12:24 -0800129#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
130 BOOTM_STATE_RAMDISK |
131#endif
Tom Rini1008dc22013-09-23 14:20:37 -0400132#if defined(CONFIG_PPC) || defined(CONFIG_MIPS)
133 BOOTM_STATE_OS_CMDLINE |
134#endif
Paul Burton8a39e8d2013-09-06 11:23:55 +0100135 BOOTM_STATE_OS_PREP | BOOTM_STATE_OS_FAKE_GO |
136 BOOTM_STATE_OS_GO, &images, 1);
wdenk47d1a6e2002-11-03 00:01:44 +0000137}
138
Mike Frysinger194c2e82011-06-05 13:43:02 +0000139int bootm_maybe_autostart(cmd_tbl_t *cmdtp, const char *cmd)
140{
Simon Glass64b723f2017-08-03 12:22:12 -0600141 const char *ep = env_get("autostart");
Mike Frysinger194c2e82011-06-05 13:43:02 +0000142
143 if (ep && !strcmp(ep, "yes")) {
144 char *local_args[2];
145 local_args[0] = (char *)cmd;
146 local_args[1] = NULL;
147 printf("Automatic boot of image at addr 0x%08lX ...\n", load_addr);
148 return do_bootm(cmdtp, 0, 1, local_args);
149 }
150
151 return 0;
152}
153
Kim Phillipsdc00a682012-10-29 13:34:31 +0000154#ifdef CONFIG_SYS_LONGHELP
155static char bootm_help_text[] =
Marian Balakowicz2df645e2008-01-08 18:17:10 +0100156 "[addr [arg ...]]\n - boot application image stored in memory\n"
157 "\tpassing arguments 'arg ...'; when booting a Linux kernel,\n"
158 "\t'arg' can be the address of an initrd image\n"
Marian Balakowiczd2160852008-01-31 13:20:07 +0100159#if defined(CONFIG_OF_LIBFDT)
Matthew McClintock6fb7c812006-06-28 10:41:37 -0500160 "\tWhen booting a Linux kernel which requires a flat device-tree\n"
Detlev Zundele6099162007-10-19 16:47:26 +0200161 "\ta third argument is required which is the address of the\n"
Matthew McClintock6fb7c812006-06-28 10:41:37 -0500162 "\tdevice-tree blob. To boot that kernel without an initrd image,\n"
163 "\tuse a '-' for the second argument. If you do not pass a third\n"
164 "\ta bd_info struct will be passed instead\n"
165#endif
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100166#if defined(CONFIG_FIT)
167 "\t\nFor the new multi component uImage format (FIT) addresses\n"
Vagrant Cascadian2f629f02016-10-23 20:45:18 -0700168 "\tmust be extended to include component or configuration unit name:\n"
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100169 "\taddr:<subimg_uname> - direct component image specification\n"
170 "\taddr#<conf_uname> - configuration specification\n"
171 "\tUse iminfo command to get the list of existing component\n"
172 "\timages and configurations.\n"
173#endif
Kumar Gala18178bc2008-10-21 17:25:45 -0500174 "\nSub-commands to do part of the bootm sequence. The sub-commands "
175 "must be\n"
176 "issued in the order below (it's ok to not issue all sub-commands):\n"
177 "\tstart [addr [arg ...]]\n"
178 "\tloados - load OS image\n"
Daniel Schwierzeckf2f2ec92013-02-26 04:54:19 +0000179#if defined(CONFIG_SYS_BOOT_RAMDISK_HIGH)
Kumar Gala18178bc2008-10-21 17:25:45 -0500180 "\tramdisk - relocate initrd, set env initrd_start/initrd_end\n"
181#endif
182#if defined(CONFIG_OF_LIBFDT)
183 "\tfdt - relocate flat device tree\n"
184#endif
Kumar Gala18178bc2008-10-21 17:25:45 -0500185 "\tcmdline - OS specific command line processing/setup\n"
Peter Tyser694a3932009-11-18 19:08:59 -0600186 "\tbdt - OS specific bd_t processing\n"
Kumar Gala18178bc2008-10-21 17:25:45 -0500187 "\tprep - OS specific prep before relocation or go\n"
Michal Simek5ce8e422015-01-15 09:53:13 +0100188#if defined(CONFIG_TRACE)
189 "\tfake - OS specific fake start without go\n"
190#endif
Kim Phillipsdc00a682012-10-29 13:34:31 +0000191 "\tgo - start OS";
192#endif
193
194U_BOOT_CMD(
195 bootm, CONFIG_SYS_MAXARGS, 1, do_bootm,
196 "boot application image from memory", bootm_help_text
wdenk57b2d802003-06-27 21:31:46 +0000197);
wdenk47d1a6e2002-11-03 00:01:44 +0000198
Marian Balakowicz2df645e2008-01-08 18:17:10 +0100199/*******************************************************************/
200/* bootd - boot default image */
201/*******************************************************************/
Jon Loeliger54324d02007-07-08 17:51:39 -0500202#if defined(CONFIG_CMD_BOOTD)
Stephen Warren6904b6e2011-10-18 11:11:49 +0000203int do_bootd(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk47d1a6e2002-11-03 00:01:44 +0000204{
Simon Glass64b723f2017-08-03 12:22:12 -0600205 return run_command(env_get("bootcmd"), flag);
wdenk47d1a6e2002-11-03 00:01:44 +0000206}
wdenk47d1a6e2002-11-03 00:01:44 +0000207
wdenkf287a242003-07-01 21:06:45 +0000208U_BOOT_CMD(
Marian Balakowicz2df645e2008-01-08 18:17:10 +0100209 boot, 1, 1, do_bootd,
Peter Tyserdfb72b82009-01-27 18:03:12 -0600210 "boot default, i.e., run 'bootcmd'",
Wolfgang Denkc54781c2009-05-24 17:06:54 +0200211 ""
wdenk3086a972003-06-28 23:11:04 +0000212);
wdenk47d1a6e2002-11-03 00:01:44 +0000213
wdenk3086a972003-06-28 23:11:04 +0000214/* keep old command name "bootd" for backward compatibility */
wdenkf287a242003-07-01 21:06:45 +0000215U_BOOT_CMD(
Marian Balakowicz2df645e2008-01-08 18:17:10 +0100216 bootd, 1, 1, do_bootd,
Peter Tyserdfb72b82009-01-27 18:03:12 -0600217 "boot default, i.e., run 'bootcmd'",
Wolfgang Denkc54781c2009-05-24 17:06:54 +0200218 ""
wdenk57b2d802003-06-27 21:31:46 +0000219);
wdenk47d1a6e2002-11-03 00:01:44 +0000220
wdenk47d1a6e2002-11-03 00:01:44 +0000221#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000222
wdenk47d1a6e2002-11-03 00:01:44 +0000223
Marian Balakowicz2df645e2008-01-08 18:17:10 +0100224/*******************************************************************/
225/* iminfo - print header info for a requested image */
226/*******************************************************************/
Jon Loeliger54324d02007-07-08 17:51:39 -0500227#if defined(CONFIG_CMD_IMI)
Kim Phillipsdc00a682012-10-29 13:34:31 +0000228static int do_iminfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk47d1a6e2002-11-03 00:01:44 +0000229{
230 int arg;
231 ulong addr;
Marian Balakowicz2df645e2008-01-08 18:17:10 +0100232 int rcode = 0;
wdenk47d1a6e2002-11-03 00:01:44 +0000233
wdenk47d1a6e2002-11-03 00:01:44 +0000234 if (argc < 2) {
Stephen Warren6904b6e2011-10-18 11:11:49 +0000235 return image_info(load_addr);
wdenk47d1a6e2002-11-03 00:01:44 +0000236 }
wdenk47d1a6e2002-11-03 00:01:44 +0000237
Marian Balakowicz2df645e2008-01-08 18:17:10 +0100238 for (arg = 1; arg < argc; ++arg) {
Stephen Warren6904b6e2011-10-18 11:11:49 +0000239 addr = simple_strtoul(argv[arg], NULL, 16);
240 if (image_info(addr) != 0)
Marian Balakowicz2df645e2008-01-08 18:17:10 +0100241 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000242 }
243 return rcode;
244}
wdenk47d1a6e2002-11-03 00:01:44 +0000245
Stephen Warren6904b6e2011-10-18 11:11:49 +0000246static int image_info(ulong addr)
wdenk47d1a6e2002-11-03 00:01:44 +0000247{
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100248 void *hdr = (void *)addr;
wdenk47d1a6e2002-11-03 00:01:44 +0000249
Stephen Warren6904b6e2011-10-18 11:11:49 +0000250 printf("\n## Checking Image at %08lx ...\n", addr);
wdenk47d1a6e2002-11-03 00:01:44 +0000251
Stephen Warren6904b6e2011-10-18 11:11:49 +0000252 switch (genimg_get_format(hdr)) {
Heiko Schocher515eb122014-05-28 11:33:33 +0200253#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100254 case IMAGE_FORMAT_LEGACY:
Stephen Warren6904b6e2011-10-18 11:11:49 +0000255 puts(" Legacy image found\n");
256 if (!image_check_magic(hdr)) {
257 puts(" Bad Magic Number\n");
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100258 return 1;
259 }
wdenk47d1a6e2002-11-03 00:01:44 +0000260
Stephen Warren6904b6e2011-10-18 11:11:49 +0000261 if (!image_check_hcrc(hdr)) {
262 puts(" Bad Header Checksum\n");
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100263 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000264 }
265
Stephen Warren6904b6e2011-10-18 11:11:49 +0000266 image_print_contents(hdr);
wdenk47d1a6e2002-11-03 00:01:44 +0000267
Stephen Warren6904b6e2011-10-18 11:11:49 +0000268 puts(" Verifying Checksum ... ");
269 if (!image_check_dcrc(hdr)) {
270 puts(" Bad Data CRC\n");
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100271 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000272 }
Stephen Warren6904b6e2011-10-18 11:11:49 +0000273 puts("OK\n");
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100274 return 0;
Heiko Schocher515eb122014-05-28 11:33:33 +0200275#endif
Michael Trimarchi44af20b2016-06-10 19:54:37 +0200276#if defined(CONFIG_ANDROID_BOOT_IMAGE)
277 case IMAGE_FORMAT_ANDROID:
278 puts(" Android image found\n");
279 android_print_contents(hdr);
280 return 0;
281#endif
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100282#if defined(CONFIG_FIT)
283 case IMAGE_FORMAT_FIT:
Stephen Warren6904b6e2011-10-18 11:11:49 +0000284 puts(" FIT image found\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000285
Stephen Warren6904b6e2011-10-18 11:11:49 +0000286 if (!fit_check_format(hdr)) {
287 puts("Bad FIT image format!\n");
Marian Balakowiczcc1fd912008-03-11 12:35:20 +0100288 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000289 }
290
Stephen Warren6904b6e2011-10-18 11:11:49 +0000291 fit_print_contents(hdr);
Bartlomiej Sieka03797f52008-09-09 12:58:16 +0200292
Simon Glass7428ad12013-05-07 06:11:57 +0000293 if (!fit_all_image_verify(hdr)) {
Stephen Warren6904b6e2011-10-18 11:11:49 +0000294 puts("Bad hash in FIT image!\n");
Bartlomiej Sieka03797f52008-09-09 12:58:16 +0200295 return 1;
296 }
297
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100298 return 0;
wdenk47d1a6e2002-11-03 00:01:44 +0000299#endif
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100300 default:
Stephen Warren6904b6e2011-10-18 11:11:49 +0000301 puts("Unknown image format!\n");
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100302 break;
wdenk47d1a6e2002-11-03 00:01:44 +0000303 }
wdenk47d1a6e2002-11-03 00:01:44 +0000304
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100305 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000306}
wdenk47d1a6e2002-11-03 00:01:44 +0000307
wdenkf287a242003-07-01 21:06:45 +0000308U_BOOT_CMD(
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200309 iminfo, CONFIG_SYS_MAXARGS, 1, do_iminfo,
Peter Tyserdfb72b82009-01-27 18:03:12 -0600310 "print header information for application image",
wdenk57b2d802003-06-27 21:31:46 +0000311 "addr [addr ...]\n"
312 " - print header information for application image starting at\n"
313 " address 'addr' in memory; this includes verification of the\n"
Wolfgang Denkc54781c2009-05-24 17:06:54 +0200314 " image contents (magic number, header and payload checksums)"
wdenk57b2d802003-06-27 21:31:46 +0000315);
wdenk47d1a6e2002-11-03 00:01:44 +0000316#endif
317
318
Marian Balakowicz2df645e2008-01-08 18:17:10 +0100319/*******************************************************************/
320/* imls - list all images found in flash */
321/*******************************************************************/
Jon Loeliger54324d02007-07-08 17:51:39 -0500322#if defined(CONFIG_CMD_IMLS)
Vipin Kumar3df41b12012-12-16 22:32:48 +0000323static int do_imls_nor(void)
wdenk874ac262003-07-24 23:38:38 +0000324{
325 flash_info_t *info;
326 int i, j;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100327 void *hdr;
wdenk47d1a6e2002-11-03 00:01:44 +0000328
Marian Balakowicz2df645e2008-01-08 18:17:10 +0100329 for (i = 0, info = &flash_info[0];
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200330 i < CONFIG_SYS_MAX_FLASH_BANKS; ++i, ++info) {
wdenk47d1a6e2002-11-03 00:01:44 +0000331
wdenk874ac262003-07-24 23:38:38 +0000332 if (info->flash_id == FLASH_UNKNOWN)
333 goto next_bank;
Marian Balakowicz2df645e2008-01-08 18:17:10 +0100334 for (j = 0; j < info->sector_count; ++j) {
wdenk47d1a6e2002-11-03 00:01:44 +0000335
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100336 hdr = (void *)info->start[j];
337 if (!hdr)
Marian Balakowicz41d71ed2008-01-08 18:14:09 +0100338 goto next_sector;
wdenk47d1a6e2002-11-03 00:01:44 +0000339
Stephen Warren6904b6e2011-10-18 11:11:49 +0000340 switch (genimg_get_format(hdr)) {
Heiko Schocher515eb122014-05-28 11:33:33 +0200341#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100342 case IMAGE_FORMAT_LEGACY:
Stephen Warren6904b6e2011-10-18 11:11:49 +0000343 if (!image_check_hcrc(hdr))
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100344 goto next_sector;
wdenk47d1a6e2002-11-03 00:01:44 +0000345
Stephen Warren6904b6e2011-10-18 11:11:49 +0000346 printf("Legacy Image at %08lX:\n", (ulong)hdr);
347 image_print_contents(hdr);
wdenk47d1a6e2002-11-03 00:01:44 +0000348
Stephen Warren6904b6e2011-10-18 11:11:49 +0000349 puts(" Verifying Checksum ... ");
350 if (!image_check_dcrc(hdr)) {
351 puts("Bad Data CRC\n");
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100352 } else {
Stephen Warren6904b6e2011-10-18 11:11:49 +0000353 puts("OK\n");
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100354 }
355 break;
Heiko Schocher515eb122014-05-28 11:33:33 +0200356#endif
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100357#if defined(CONFIG_FIT)
358 case IMAGE_FORMAT_FIT:
Stephen Warren6904b6e2011-10-18 11:11:49 +0000359 if (!fit_check_format(hdr))
Marian Balakowiczcc1fd912008-03-11 12:35:20 +0100360 goto next_sector;
wdenk47d1a6e2002-11-03 00:01:44 +0000361
Stephen Warren6904b6e2011-10-18 11:11:49 +0000362 printf("FIT Image at %08lX:\n", (ulong)hdr);
363 fit_print_contents(hdr);
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100364 break;
365#endif
366 default:
367 goto next_sector;
wdenk47d1a6e2002-11-03 00:01:44 +0000368 }
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100369
wdenk0a658552003-08-05 17:43:17 +0000370next_sector: ;
wdenk47d1a6e2002-11-03 00:01:44 +0000371 }
wdenk0a658552003-08-05 17:43:17 +0000372next_bank: ;
wdenk47d1a6e2002-11-03 00:01:44 +0000373 }
Vipin Kumar3df41b12012-12-16 22:32:48 +0000374 return 0;
375}
376#endif
377
378#if defined(CONFIG_CMD_IMLS_NAND)
Scott Wood08364d92016-05-30 13:57:54 -0500379static int nand_imls_legacyimage(struct mtd_info *mtd, int nand_dev,
380 loff_t off, size_t len)
Vipin Kumar3df41b12012-12-16 22:32:48 +0000381{
382 void *imgdata;
383 int ret;
384
385 imgdata = malloc(len);
386 if (!imgdata) {
387 printf("May be a Legacy Image at NAND device %d offset %08llX:\n",
388 nand_dev, off);
389 printf(" Low memory(cannot allocate memory for image)\n");
390 return -ENOMEM;
391 }
392
Grygorii Strashko0258e392017-01-31 15:37:03 -0600393 ret = nand_read_skip_bad(mtd, off, &len, NULL, mtd->size, imgdata);
Vipin Kumar3df41b12012-12-16 22:32:48 +0000394 if (ret < 0 && ret != -EUCLEAN) {
395 free(imgdata);
396 return ret;
397 }
398
399 if (!image_check_hcrc(imgdata)) {
400 free(imgdata);
401 return 0;
402 }
403
404 printf("Legacy Image at NAND device %d offset %08llX:\n",
405 nand_dev, off);
406 image_print_contents(imgdata);
407
408 puts(" Verifying Checksum ... ");
409 if (!image_check_dcrc(imgdata))
410 puts("Bad Data CRC\n");
411 else
412 puts("OK\n");
413
414 free(imgdata);
415
416 return 0;
417}
418
Scott Wood08364d92016-05-30 13:57:54 -0500419static int nand_imls_fitimage(struct mtd_info *mtd, int nand_dev, loff_t off,
420 size_t len)
Vipin Kumar3df41b12012-12-16 22:32:48 +0000421{
422 void *imgdata;
423 int ret;
424
425 imgdata = malloc(len);
426 if (!imgdata) {
427 printf("May be a FIT Image at NAND device %d offset %08llX:\n",
428 nand_dev, off);
429 printf(" Low memory(cannot allocate memory for image)\n");
430 return -ENOMEM;
431 }
wdenk47d1a6e2002-11-03 00:01:44 +0000432
Grygorii Strashko0258e392017-01-31 15:37:03 -0600433 ret = nand_read_skip_bad(mtd, off, &len, NULL, mtd->size, imgdata);
Vipin Kumar3df41b12012-12-16 22:32:48 +0000434 if (ret < 0 && ret != -EUCLEAN) {
435 free(imgdata);
436 return ret;
437 }
438
439 if (!fit_check_format(imgdata)) {
440 free(imgdata);
441 return 0;
442 }
443
444 printf("FIT Image at NAND device %d offset %08llX:\n", nand_dev, off);
445
446 fit_print_contents(imgdata);
447 free(imgdata);
448
449 return 0;
450}
451
452static int do_imls_nand(void)
453{
Scott Wood08364d92016-05-30 13:57:54 -0500454 struct mtd_info *mtd;
Vipin Kumar3df41b12012-12-16 22:32:48 +0000455 int nand_dev = nand_curr_device;
456 size_t len;
457 loff_t off;
458 u32 buffer[16];
459
460 if (nand_dev < 0 || nand_dev >= CONFIG_SYS_MAX_NAND_DEVICE) {
461 puts("\nNo NAND devices available\n");
462 return -ENODEV;
463 }
464
465 printf("\n");
466
467 for (nand_dev = 0; nand_dev < CONFIG_SYS_MAX_NAND_DEVICE; nand_dev++) {
Grygorii Strashkoea0a0542017-06-26 19:12:54 -0500468 mtd = get_nand_dev_by_index(nand_dev);
Scott Wood08364d92016-05-30 13:57:54 -0500469 if (!mtd->name || !mtd->size)
Vipin Kumar3df41b12012-12-16 22:32:48 +0000470 continue;
471
Scott Wood08364d92016-05-30 13:57:54 -0500472 for (off = 0; off < mtd->size; off += mtd->erasesize) {
Vipin Kumar3df41b12012-12-16 22:32:48 +0000473 const image_header_t *header;
474 int ret;
475
Scott Wood08364d92016-05-30 13:57:54 -0500476 if (nand_block_isbad(mtd, off))
Vipin Kumar3df41b12012-12-16 22:32:48 +0000477 continue;
478
479 len = sizeof(buffer);
480
Scott Wood08364d92016-05-30 13:57:54 -0500481 ret = nand_read(mtd, off, &len, (u8 *)buffer);
Vipin Kumar3df41b12012-12-16 22:32:48 +0000482 if (ret < 0 && ret != -EUCLEAN) {
483 printf("NAND read error %d at offset %08llX\n",
484 ret, off);
485 continue;
486 }
487
488 switch (genimg_get_format(buffer)) {
Heiko Schocher515eb122014-05-28 11:33:33 +0200489#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Vipin Kumar3df41b12012-12-16 22:32:48 +0000490 case IMAGE_FORMAT_LEGACY:
491 header = (const image_header_t *)buffer;
492
493 len = image_get_image_size(header);
Scott Wood08364d92016-05-30 13:57:54 -0500494 nand_imls_legacyimage(mtd, nand_dev, off, len);
Vipin Kumar3df41b12012-12-16 22:32:48 +0000495 break;
Heiko Schocher515eb122014-05-28 11:33:33 +0200496#endif
Vipin Kumar3df41b12012-12-16 22:32:48 +0000497#if defined(CONFIG_FIT)
498 case IMAGE_FORMAT_FIT:
499 len = fit_get_size(buffer);
Scott Wood08364d92016-05-30 13:57:54 -0500500 nand_imls_fitimage(mtd, nand_dev, off, len);
Vipin Kumar3df41b12012-12-16 22:32:48 +0000501 break;
502#endif
503 }
504 }
505 }
506
507 return 0;
508}
509#endif
510
511#if defined(CONFIG_CMD_IMLS) || defined(CONFIG_CMD_IMLS_NAND)
512static int do_imls(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
513{
514 int ret_nor = 0, ret_nand = 0;
515
516#if defined(CONFIG_CMD_IMLS)
517 ret_nor = do_imls_nor();
518#endif
519
520#if defined(CONFIG_CMD_IMLS_NAND)
521 ret_nand = do_imls_nand();
522#endif
523
524 if (ret_nor)
525 return ret_nor;
526
527 if (ret_nand)
528 return ret_nand;
529
wdenk874ac262003-07-24 23:38:38 +0000530 return (0);
531}
wdenk47d1a6e2002-11-03 00:01:44 +0000532
wdenk874ac262003-07-24 23:38:38 +0000533U_BOOT_CMD(
534 imls, 1, 1, do_imls,
Peter Tyserdfb72b82009-01-27 18:03:12 -0600535 "list all images found in flash",
wdenk874ac262003-07-24 23:38:38 +0000536 "\n"
Vipin Kumar3df41b12012-12-16 22:32:48 +0000537 " - Prints information about all images found at sector/block\n"
538 " boundaries in nor/nand flash."
wdenk874ac262003-07-24 23:38:38 +0000539);
Tom Rini5ce62cd2014-08-14 06:42:36 -0400540#endif