blob: 67233600b157244409c2710afa606337d2ebaf80 [file] [log] [blame]
wdenk47d1a6e2002-11-03 00:01:44 +00001/*
Detlev Zundelca95c9d2009-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 Denk1a459662013-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 Glassb6396402014-06-12 07:24:46 -060012#include <bootm.h>
wdenk47d1a6e2002-11-03 00:01:44 +000013#include <command.h>
wdenk7f70e852003-05-20 14:25:27 +000014#include <environment.h>
Simon Glass90268b82014-10-19 21:11:24 -060015#include <errno.h>
Simon Glassb6396402014-06-12 07:24:46 -060016#include <image.h>
Kumar Gala4ed65522008-02-27 21:51:47 -060017#include <lmb.h>
Simon Glassb6396402014-06-12 07:24:46 -060018#include <malloc.h>
19#include <nand.h>
wdenk47d1a6e2002-11-03 00:01:44 +000020#include <asm/byteorder.h>
Anatolij Gustschin5bf27662011-11-19 13:12:18 +000021#include <linux/compiler.h>
Simon Glassb6396402014-06-12 07:24:46 -060022#include <linux/ctype.h>
23#include <linux/err.h>
24#include <u-boot/zlib.h>
Peter Korsgaard20dde482009-11-19 11:37:51 +010025
Marian Balakowicz1ee11802008-01-08 18:17:10 +010026DECLARE_GLOBAL_DATA_PTR;
27
Jon Loeligerbaa26db2007-07-08 17:51:39 -050028#if defined(CONFIG_CMD_IMI)
Stephen Warren712fbcf2011-10-18 11:11:49 +000029static int image_info(unsigned long addr);
wdenk47d1a6e2002-11-03 00:01:44 +000030#endif
wdenk27b207f2003-07-24 23:38:38 +000031
Jon Loeligerbaa26db2007-07-08 17:51:39 -050032#if defined(CONFIG_CMD_IMLS)
wdenk27b207f2003-07-24 23:38:38 +000033#include <flash.h>
Stefan Roeseca5def32010-08-31 10:00:10 +020034#include <mtd/cfi_flash.h>
Marian Balakowicze6f2e902005-10-11 19:09:42 +020035extern flash_info_t flash_info[]; /* info for FLASH chips */
Vipin Kumar8fdf1e02012-12-16 22:32:48 +000036#endif
37
38#if defined(CONFIG_CMD_IMLS) || defined(CONFIG_CMD_IMLS_NAND)
Stephen Warren712fbcf2011-10-18 11:11:49 +000039static int do_imls(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
wdenk27b207f2003-07-24 23:38:38 +000040#endif
41
Simon Schwarzdee17762011-09-02 00:50:31 +000042bootm_headers_t images; /* pointers to os/initrd/fdt images */
Stefan Roese15940c92006-03-13 11:16:36 +010043
Kumar Gala49c3a862008-10-21 17:25:45 -050044/* we overload the cmd field with our state machine info instead of a
45 * function pointer */
Frans Meulenbroeksf74d9bd2010-02-25 10:12:13 +010046static cmd_tbl_t cmd_bootm_sub[] = {
Kumar Gala49c3a862008-10-21 17:25:45 -050047 U_BOOT_CMD_MKENT(start, 0, 1, (void *)BOOTM_STATE_START, "", ""),
48 U_BOOT_CMD_MKENT(loados, 0, 1, (void *)BOOTM_STATE_LOADOS, "", ""),
John Rigbyfca43cc2010-10-13 13:57:35 -060049#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
Kumar Gala49c3a862008-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 Gala49c3a862008-10-21 17:25:45 -050055 U_BOOT_CMD_MKENT(cmdline, 0, 1, (void *)BOOTM_STATE_OS_CMDLINE, "", ""),
Peter Tyser224c90d2009-11-18 19:08:59 -060056 U_BOOT_CMD_MKENT(bdt, 0, 1, (void *)BOOTM_STATE_OS_BD_T, "", ""),
Kumar Gala49c3a862008-10-21 17:25:45 -050057 U_BOOT_CMD_MKENT(prep, 0, 1, (void *)BOOTM_STATE_OS_PREP, "", ""),
Simon Glassd0ae31e2013-06-11 11:14:48 -070058 U_BOOT_CMD_MKENT(fake, 0, 1, (void *)BOOTM_STATE_OS_FAKE_GO, "", ""),
Kumar Gala49c3a862008-10-21 17:25:45 -050059 U_BOOT_CMD_MKENT(go, 0, 1, (void *)BOOTM_STATE_OS_GO, "", ""),
60};
61
Kim Phillips088f1b12012-10-29 13:34:31 +000062static int do_bootm_subcommand(cmd_tbl_t *cmdtp, int flag, int argc,
Stephen Warren712fbcf2011-10-18 11:11:49 +000063 char * const argv[])
Kumar Gala49c3a862008-10-21 17:25:45 -050064{
65 int ret = 0;
Simon Glass6d6f1232011-10-07 13:53:40 +000066 long state;
Kumar Gala49c3a862008-10-21 17:25:45 -050067 cmd_tbl_t *c;
Kumar Gala49c3a862008-10-21 17:25:45 -050068
Simon Glass983c72f2013-06-11 11:14:46 -070069 c = find_cmd_tbl(argv[0], &cmd_bootm_sub[0], ARRAY_SIZE(cmd_bootm_sub));
70 argc--; argv++;
Kumar Gala49c3a862008-10-21 17:25:45 -050071
72 if (c) {
Simon Glass6d6f1232011-10-07 13:53:40 +000073 state = (long)c->cmd;
Simon Glass983c72f2013-06-11 11:14:46 -070074 if (state == BOOTM_STATE_START)
Simon Glass35fc84f2013-06-11 11:14:47 -070075 state |= BOOTM_STATE_FINDOS | BOOTM_STATE_FINDOTHER;
Wolfgang Denk47e26b12010-07-17 01:06:04 +020076 } else {
77 /* Unrecognized command */
Simon Glass4c12eeb2011-12-10 08:44:01 +000078 return CMD_RET_USAGE;
Kumar Gala49c3a862008-10-21 17:25:45 -050079 }
80
Simon Glass35fc84f2013-06-11 11:14:47 -070081 if (state != BOOTM_STATE_START && images.state >= state) {
Stephen Warren712fbcf2011-10-18 11:11:49 +000082 printf("Trying to execute a command out of order\n");
Simon Glass4c12eeb2011-12-10 08:44:01 +000083 return CMD_RET_USAGE;
Kumar Gala49c3a862008-10-21 17:25:45 -050084 }
85
Simon Glass35fc84f2013-06-11 11:14:47 -070086 ret = do_bootm_states(cmdtp, flag, argc, argv, state, &images, 0);
Kumar Gala49c3a862008-10-21 17:25:45 -050087
88 return ret;
89}
90
Kumar Gala396f6352008-08-15 08:24:41 -050091/*******************************************************************/
92/* bootm - boot application image from image in memory */
93/*******************************************************************/
Kumar Galabe083152008-10-21 17:25:44 -050094
Stephen Warren712fbcf2011-10-18 11:11:49 +000095int do_bootm(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Kumar Gala396f6352008-08-15 08:24:41 -050096{
Wolfgang Denk2e5167c2010-10-28 20:00:11 +020097#ifdef CONFIG_NEEDS_MANUAL_RELOC
Peter Tyser521af042009-09-21 11:20:36 -050098 static int relocated = 0;
Kumar Galabe083152008-10-21 17:25:44 -050099
Kumar Galabe083152008-10-21 17:25:44 -0500100 if (!relocated) {
101 int i;
Daniel Schwierzeck58bd77d2013-01-07 06:54:52 +0000102
Daniel Schwierzeck58bd77d2013-01-07 06:54:52 +0000103 /* relocate names of sub-command table */
104 for (i = 0; i < ARRAY_SIZE(cmd_bootm_sub); i++)
105 cmd_bootm_sub[i].name += gd->reloc_off;
106
Kumar Galabe083152008-10-21 17:25:44 -0500107 relocated = 1;
108 }
Peter Tyser521af042009-09-21 11:20:36 -0500109#endif
Kumar Gala396f6352008-08-15 08:24:41 -0500110
Kumar Gala49c3a862008-10-21 17:25:45 -0500111 /* determine if we have a sub command */
Simon Glass983c72f2013-06-11 11:14:46 -0700112 argc--; argv++;
113 if (argc > 0) {
Kumar Gala49c3a862008-10-21 17:25:45 -0500114 char *endp;
115
Simon Glass983c72f2013-06-11 11:14:46 -0700116 simple_strtoul(argv[0], &endp, 16);
117 /* endp pointing to NULL means that argv[0] was just a
Kumar Gala49c3a862008-10-21 17:25:45 -0500118 * valid number, pass it along to the normal bootm processing
119 *
120 * If endp is ':' or '#' assume a FIT identifier so pass
121 * along for normal processing.
122 *
123 * Right now we assume the first arg should never be '-'
124 */
125 if ((*endp != 0) && (*endp != ':') && (*endp != '#'))
126 return do_bootm_subcommand(cmdtp, flag, argc, argv);
127 }
128
Simon Glass35fc84f2013-06-11 11:14:47 -0700129 return do_bootm_states(cmdtp, flag, argc, argv, BOOTM_STATE_START |
130 BOOTM_STATE_FINDOS | BOOTM_STATE_FINDOTHER |
Tom Rini3d187b32013-09-23 14:20:37 -0400131 BOOTM_STATE_LOADOS |
132#if defined(CONFIG_PPC) || defined(CONFIG_MIPS)
133 BOOTM_STATE_OS_CMDLINE |
134#endif
Paul Burton5c427e42013-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 Frysinger67d668b2011-06-05 13:43:02 +0000139int bootm_maybe_autostart(cmd_tbl_t *cmdtp, const char *cmd)
140{
141 const char *ep = getenv("autostart");
142
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 Phillips088f1b12012-10-29 13:34:31 +0000154#ifdef CONFIG_SYS_LONGHELP
155static char bootm_help_text[] =
Marian Balakowicz1ee11802008-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 Balakowicz4a2ad5f2008-01-31 13:20:07 +0100159#if defined(CONFIG_OF_LIBFDT)
Matthew McClintock98a9c4d2006-06-28 10:41:37 -0500160 "\tWhen booting a Linux kernel which requires a flat device-tree\n"
Detlev Zundel5441f612007-10-19 16:47:26 +0200161 "\ta third argument is required which is the address of the\n"
Matthew McClintock98a9c4d2006-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 Balakowicz6986a382008-03-12 10:01:05 +0100166#if defined(CONFIG_FIT)
167 "\t\nFor the new multi component uImage format (FIT) addresses\n"
168 "\tmust be extened to include component or configuration unit name:\n"
169 "\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 Gala49c3a862008-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 Schwierzeck59af76d2013-02-26 04:54:19 +0000179#if defined(CONFIG_SYS_BOOT_RAMDISK_HIGH)
Kumar Gala49c3a862008-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 Gala49c3a862008-10-21 17:25:45 -0500185 "\tcmdline - OS specific command line processing/setup\n"
Peter Tyser224c90d2009-11-18 19:08:59 -0600186 "\tbdt - OS specific bd_t processing\n"
Kumar Gala49c3a862008-10-21 17:25:45 -0500187 "\tprep - OS specific prep before relocation or go\n"
Kim Phillips088f1b12012-10-29 13:34:31 +0000188 "\tgo - start OS";
189#endif
190
191U_BOOT_CMD(
192 bootm, CONFIG_SYS_MAXARGS, 1, do_bootm,
193 "boot application image from memory", bootm_help_text
wdenk8bde7f72003-06-27 21:31:46 +0000194);
195
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100196/*******************************************************************/
197/* bootd - boot default image */
198/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500199#if defined(CONFIG_CMD_BOOTD)
Stephen Warren712fbcf2011-10-18 11:11:49 +0000200int do_bootd(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk47d1a6e2002-11-03 00:01:44 +0000201{
Thomas Betker73671da2014-06-05 20:07:56 +0200202 return run_command(getenv("bootcmd"), flag);
wdenk47d1a6e2002-11-03 00:01:44 +0000203}
wdenk8bde7f72003-06-27 21:31:46 +0000204
wdenk0d498392003-07-01 21:06:45 +0000205U_BOOT_CMD(
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100206 boot, 1, 1, do_bootd,
Peter Tyser2fb26042009-01-27 18:03:12 -0600207 "boot default, i.e., run 'bootcmd'",
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200208 ""
wdenk9d2b18a2003-06-28 23:11:04 +0000209);
210
211/* keep old command name "bootd" for backward compatibility */
wdenk0d498392003-07-01 21:06:45 +0000212U_BOOT_CMD(
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100213 bootd, 1, 1, do_bootd,
Peter Tyser2fb26042009-01-27 18:03:12 -0600214 "boot default, i.e., run 'bootcmd'",
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200215 ""
wdenk8bde7f72003-06-27 21:31:46 +0000216);
217
wdenk47d1a6e2002-11-03 00:01:44 +0000218#endif
219
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100220
221/*******************************************************************/
222/* iminfo - print header info for a requested image */
223/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500224#if defined(CONFIG_CMD_IMI)
Kim Phillips088f1b12012-10-29 13:34:31 +0000225static int do_iminfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk47d1a6e2002-11-03 00:01:44 +0000226{
227 int arg;
228 ulong addr;
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100229 int rcode = 0;
wdenk47d1a6e2002-11-03 00:01:44 +0000230
231 if (argc < 2) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000232 return image_info(load_addr);
wdenk47d1a6e2002-11-03 00:01:44 +0000233 }
234
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100235 for (arg = 1; arg < argc; ++arg) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000236 addr = simple_strtoul(argv[arg], NULL, 16);
237 if (image_info(addr) != 0)
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100238 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000239 }
240 return rcode;
241}
242
Stephen Warren712fbcf2011-10-18 11:11:49 +0000243static int image_info(ulong addr)
wdenk47d1a6e2002-11-03 00:01:44 +0000244{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100245 void *hdr = (void *)addr;
wdenk47d1a6e2002-11-03 00:01:44 +0000246
Stephen Warren712fbcf2011-10-18 11:11:49 +0000247 printf("\n## Checking Image at %08lx ...\n", addr);
wdenk47d1a6e2002-11-03 00:01:44 +0000248
Stephen Warren712fbcf2011-10-18 11:11:49 +0000249 switch (genimg_get_format(hdr)) {
Heiko Schocher21d29f72014-05-28 11:33:33 +0200250#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100251 case IMAGE_FORMAT_LEGACY:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000252 puts(" Legacy image found\n");
253 if (!image_check_magic(hdr)) {
254 puts(" Bad Magic Number\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100255 return 1;
256 }
257
Stephen Warren712fbcf2011-10-18 11:11:49 +0000258 if (!image_check_hcrc(hdr)) {
259 puts(" Bad Header Checksum\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100260 return 1;
261 }
262
Stephen Warren712fbcf2011-10-18 11:11:49 +0000263 image_print_contents(hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100264
Stephen Warren712fbcf2011-10-18 11:11:49 +0000265 puts(" Verifying Checksum ... ");
266 if (!image_check_dcrc(hdr)) {
267 puts(" Bad Data CRC\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100268 return 1;
269 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000270 puts("OK\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100271 return 0;
Heiko Schocher21d29f72014-05-28 11:33:33 +0200272#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100273#if defined(CONFIG_FIT)
274 case IMAGE_FORMAT_FIT:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000275 puts(" FIT image found\n");
Marian Balakowicze32fea62008-03-11 12:35:20 +0100276
Stephen Warren712fbcf2011-10-18 11:11:49 +0000277 if (!fit_check_format(hdr)) {
278 puts("Bad FIT image format!\n");
Marian Balakowicze32fea62008-03-11 12:35:20 +0100279 return 1;
280 }
281
Stephen Warren712fbcf2011-10-18 11:11:49 +0000282 fit_print_contents(hdr);
Bartlomiej Siekaa4f24342008-09-09 12:58:16 +0200283
Simon Glassb8da8362013-05-07 06:11:57 +0000284 if (!fit_all_image_verify(hdr)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000285 puts("Bad hash in FIT image!\n");
Bartlomiej Siekaa4f24342008-09-09 12:58:16 +0200286 return 1;
287 }
288
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100289 return 0;
290#endif
291 default:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000292 puts("Unknown image format!\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100293 break;
wdenk47d1a6e2002-11-03 00:01:44 +0000294 }
295
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100296 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000297}
wdenk0d498392003-07-01 21:06:45 +0000298
299U_BOOT_CMD(
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200300 iminfo, CONFIG_SYS_MAXARGS, 1, do_iminfo,
Peter Tyser2fb26042009-01-27 18:03:12 -0600301 "print header information for application image",
wdenk8bde7f72003-06-27 21:31:46 +0000302 "addr [addr ...]\n"
303 " - print header information for application image starting at\n"
304 " address 'addr' in memory; this includes verification of the\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200305 " image contents (magic number, header and payload checksums)"
wdenk8bde7f72003-06-27 21:31:46 +0000306);
Jon Loeliger90253172007-07-10 11:02:44 -0500307#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000308
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100309
310/*******************************************************************/
311/* imls - list all images found in flash */
312/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500313#if defined(CONFIG_CMD_IMLS)
Vipin Kumar8fdf1e02012-12-16 22:32:48 +0000314static int do_imls_nor(void)
wdenk27b207f2003-07-24 23:38:38 +0000315{
316 flash_info_t *info;
317 int i, j;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100318 void *hdr;
wdenk27b207f2003-07-24 23:38:38 +0000319
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100320 for (i = 0, info = &flash_info[0];
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200321 i < CONFIG_SYS_MAX_FLASH_BANKS; ++i, ++info) {
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100322
wdenk27b207f2003-07-24 23:38:38 +0000323 if (info->flash_id == FLASH_UNKNOWN)
324 goto next_bank;
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100325 for (j = 0; j < info->sector_count; ++j) {
wdenk27b207f2003-07-24 23:38:38 +0000326
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100327 hdr = (void *)info->start[j];
328 if (!hdr)
wdenk27b207f2003-07-24 23:38:38 +0000329 goto next_sector;
330
Stephen Warren712fbcf2011-10-18 11:11:49 +0000331 switch (genimg_get_format(hdr)) {
Heiko Schocher21d29f72014-05-28 11:33:33 +0200332#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100333 case IMAGE_FORMAT_LEGACY:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000334 if (!image_check_hcrc(hdr))
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100335 goto next_sector;
336
Stephen Warren712fbcf2011-10-18 11:11:49 +0000337 printf("Legacy Image at %08lX:\n", (ulong)hdr);
338 image_print_contents(hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100339
Stephen Warren712fbcf2011-10-18 11:11:49 +0000340 puts(" Verifying Checksum ... ");
341 if (!image_check_dcrc(hdr)) {
342 puts("Bad Data CRC\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100343 } else {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000344 puts("OK\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100345 }
346 break;
Heiko Schocher21d29f72014-05-28 11:33:33 +0200347#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100348#if defined(CONFIG_FIT)
349 case IMAGE_FORMAT_FIT:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000350 if (!fit_check_format(hdr))
Marian Balakowicze32fea62008-03-11 12:35:20 +0100351 goto next_sector;
352
Stephen Warren712fbcf2011-10-18 11:11:49 +0000353 printf("FIT Image at %08lX:\n", (ulong)hdr);
354 fit_print_contents(hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100355 break;
356#endif
357 default:
wdenk27b207f2003-07-24 23:38:38 +0000358 goto next_sector;
wdenk5bb226e2003-11-17 21:14:37 +0000359 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100360
wdenkbdccc4f2003-08-05 17:43:17 +0000361next_sector: ;
wdenk27b207f2003-07-24 23:38:38 +0000362 }
wdenkbdccc4f2003-08-05 17:43:17 +0000363next_bank: ;
wdenk27b207f2003-07-24 23:38:38 +0000364 }
Vipin Kumar8fdf1e02012-12-16 22:32:48 +0000365 return 0;
366}
367#endif
368
369#if defined(CONFIG_CMD_IMLS_NAND)
370static int nand_imls_legacyimage(nand_info_t *nand, int nand_dev, loff_t off,
371 size_t len)
372{
373 void *imgdata;
374 int ret;
375
376 imgdata = malloc(len);
377 if (!imgdata) {
378 printf("May be a Legacy Image at NAND device %d offset %08llX:\n",
379 nand_dev, off);
380 printf(" Low memory(cannot allocate memory for image)\n");
381 return -ENOMEM;
382 }
383
384 ret = nand_read_skip_bad(nand, off, &len,
385 imgdata);
386 if (ret < 0 && ret != -EUCLEAN) {
387 free(imgdata);
388 return ret;
389 }
390
391 if (!image_check_hcrc(imgdata)) {
392 free(imgdata);
393 return 0;
394 }
395
396 printf("Legacy Image at NAND device %d offset %08llX:\n",
397 nand_dev, off);
398 image_print_contents(imgdata);
399
400 puts(" Verifying Checksum ... ");
401 if (!image_check_dcrc(imgdata))
402 puts("Bad Data CRC\n");
403 else
404 puts("OK\n");
405
406 free(imgdata);
407
408 return 0;
409}
410
411static int nand_imls_fitimage(nand_info_t *nand, int nand_dev, loff_t off,
412 size_t len)
413{
414 void *imgdata;
415 int ret;
416
417 imgdata = malloc(len);
418 if (!imgdata) {
419 printf("May be a FIT Image at NAND device %d offset %08llX:\n",
420 nand_dev, off);
421 printf(" Low memory(cannot allocate memory for image)\n");
422 return -ENOMEM;
423 }
424
425 ret = nand_read_skip_bad(nand, off, &len,
426 imgdata);
427 if (ret < 0 && ret != -EUCLEAN) {
428 free(imgdata);
429 return ret;
430 }
431
432 if (!fit_check_format(imgdata)) {
433 free(imgdata);
434 return 0;
435 }
436
437 printf("FIT Image at NAND device %d offset %08llX:\n", nand_dev, off);
438
439 fit_print_contents(imgdata);
440 free(imgdata);
441
442 return 0;
443}
444
445static int do_imls_nand(void)
446{
447 nand_info_t *nand;
448 int nand_dev = nand_curr_device;
449 size_t len;
450 loff_t off;
451 u32 buffer[16];
452
453 if (nand_dev < 0 || nand_dev >= CONFIG_SYS_MAX_NAND_DEVICE) {
454 puts("\nNo NAND devices available\n");
455 return -ENODEV;
456 }
457
458 printf("\n");
459
460 for (nand_dev = 0; nand_dev < CONFIG_SYS_MAX_NAND_DEVICE; nand_dev++) {
461 nand = &nand_info[nand_dev];
462 if (!nand->name || !nand->size)
463 continue;
464
465 for (off = 0; off < nand->size; off += nand->erasesize) {
466 const image_header_t *header;
467 int ret;
468
469 if (nand_block_isbad(nand, off))
470 continue;
471
472 len = sizeof(buffer);
473
474 ret = nand_read(nand, off, &len, (u8 *)buffer);
475 if (ret < 0 && ret != -EUCLEAN) {
476 printf("NAND read error %d at offset %08llX\n",
477 ret, off);
478 continue;
479 }
480
481 switch (genimg_get_format(buffer)) {
Heiko Schocher21d29f72014-05-28 11:33:33 +0200482#if defined(CONFIG_IMAGE_FORMAT_LEGACY)
Vipin Kumar8fdf1e02012-12-16 22:32:48 +0000483 case IMAGE_FORMAT_LEGACY:
484 header = (const image_header_t *)buffer;
485
486 len = image_get_image_size(header);
487 nand_imls_legacyimage(nand, nand_dev, off, len);
488 break;
Heiko Schocher21d29f72014-05-28 11:33:33 +0200489#endif
Vipin Kumar8fdf1e02012-12-16 22:32:48 +0000490#if defined(CONFIG_FIT)
491 case IMAGE_FORMAT_FIT:
492 len = fit_get_size(buffer);
493 nand_imls_fitimage(nand, nand_dev, off, len);
494 break;
495#endif
496 }
497 }
498 }
499
500 return 0;
501}
502#endif
503
504#if defined(CONFIG_CMD_IMLS) || defined(CONFIG_CMD_IMLS_NAND)
505static int do_imls(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
506{
507 int ret_nor = 0, ret_nand = 0;
508
509#if defined(CONFIG_CMD_IMLS)
510 ret_nor = do_imls_nor();
511#endif
512
513#if defined(CONFIG_CMD_IMLS_NAND)
514 ret_nand = do_imls_nand();
515#endif
516
517 if (ret_nor)
518 return ret_nor;
519
520 if (ret_nand)
521 return ret_nand;
wdenk27b207f2003-07-24 23:38:38 +0000522
523 return (0);
524}
525
526U_BOOT_CMD(
527 imls, 1, 1, do_imls,
Peter Tyser2fb26042009-01-27 18:03:12 -0600528 "list all images found in flash",
wdenk27b207f2003-07-24 23:38:38 +0000529 "\n"
Vipin Kumar8fdf1e02012-12-16 22:32:48 +0000530 " - Prints information about all images found at sector/block\n"
531 " boundaries in nor/nand flash."
wdenk27b207f2003-07-24 23:38:38 +0000532);
Jon Loeliger90253172007-07-10 11:02:44 -0500533#endif
wdenk27b207f2003-07-24 23:38:38 +0000534
Marek Vasut44f074c2012-03-14 21:52:45 +0000535#ifdef CONFIG_CMD_BOOTZ
536
Simon Glassa5266d62013-07-04 13:26:10 -0700537int __weak bootz_setup(ulong image, ulong *start, ulong *end)
Marek Vasut44f074c2012-03-14 21:52:45 +0000538{
539 /* Please define bootz_setup() for your platform */
540
541 puts("Your platform's zImage format isn't supported yet!\n");
542 return -1;
543}
Marek Vasut44f074c2012-03-14 21:52:45 +0000544
545/*
546 * zImage booting support
547 */
548static int bootz_start(cmd_tbl_t *cmdtp, int flag, int argc,
549 char * const argv[], bootm_headers_t *images)
550{
551 int ret;
Simon Glassa5266d62013-07-04 13:26:10 -0700552 ulong zi_start, zi_end;
Marek Vasut44f074c2012-03-14 21:52:45 +0000553
Simon Glass35fc84f2013-06-11 11:14:47 -0700554 ret = do_bootm_states(cmdtp, flag, argc, argv, BOOTM_STATE_START,
555 images, 1);
Marek Vasut44f074c2012-03-14 21:52:45 +0000556
557 /* Setup Linux kernel zImage entry point */
Tom Rini2b9599e2013-07-09 15:32:34 -0400558 if (!argc) {
Marek Vasut44f074c2012-03-14 21:52:45 +0000559 images->ep = load_addr;
560 debug("* kernel: default image load address = 0x%08lx\n",
561 load_addr);
562 } else {
Tom Rini2b9599e2013-07-09 15:32:34 -0400563 images->ep = simple_strtoul(argv[0], NULL, 16);
Marek Vasut44f074c2012-03-14 21:52:45 +0000564 debug("* kernel: cmdline image address = 0x%08lx\n",
565 images->ep);
566 }
567
Simon Glassa5266d62013-07-04 13:26:10 -0700568 ret = bootz_setup(images->ep, &zi_start, &zi_end);
Marek Vasut44f074c2012-03-14 21:52:45 +0000569 if (ret != 0)
570 return 1;
571
572 lmb_reserve(&images->lmb, images->ep, zi_end - zi_start);
573
Tom Rini225fd8c2013-07-09 15:33:25 -0400574 /*
575 * Handle the BOOTM_STATE_FINDOTHER state ourselves as we do not
576 * have a header that provide this informaiton.
577 */
Simon Glassb6396402014-06-12 07:24:46 -0600578 if (bootm_find_ramdisk_fdt(flag, argc, argv))
Tom Rini2b9599e2013-07-09 15:32:34 -0400579 return 1;
Marek Vasut44f074c2012-03-14 21:52:45 +0000580
Tom Rini2b9599e2013-07-09 15:32:34 -0400581 return 0;
Marek Vasut44f074c2012-03-14 21:52:45 +0000582}
583
Rob Herringda620222012-12-02 21:00:23 -0600584int do_bootz(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Marek Vasut44f074c2012-03-14 21:52:45 +0000585{
Simon Glass35fc84f2013-06-11 11:14:47 -0700586 int ret;
Marek Vasut44f074c2012-03-14 21:52:45 +0000587
Tom Rini2b9599e2013-07-09 15:32:34 -0400588 /* Consume 'bootz' */
589 argc--; argv++;
590
Marek Vasut44f074c2012-03-14 21:52:45 +0000591 if (bootz_start(cmdtp, flag, argc, argv, &images))
592 return 1;
593
Simon Glass385501d2013-07-04 13:26:08 -0700594 /*
595 * We are doing the BOOTM_STATE_LOADOS state ourselves, so must
596 * disable interrupts ourselves
597 */
598 bootm_disable_interrupts();
599
Simon Glassfb1b1392013-07-04 13:26:11 -0700600 images.os.os = IH_OS_LINUX;
Simon Glass35fc84f2013-06-11 11:14:47 -0700601 ret = do_bootm_states(cmdtp, flag, argc, argv,
Simon Glassfb1b1392013-07-04 13:26:11 -0700602 BOOTM_STATE_OS_PREP | BOOTM_STATE_OS_FAKE_GO |
603 BOOTM_STATE_OS_GO,
Simon Glassd0ae31e2013-06-11 11:14:48 -0700604 &images, 1);
Marek Vasut44f074c2012-03-14 21:52:45 +0000605
Simon Glass35fc84f2013-06-11 11:14:47 -0700606 return ret;
Marek Vasut44f074c2012-03-14 21:52:45 +0000607}
608
Kim Phillips088f1b12012-10-29 13:34:31 +0000609#ifdef CONFIG_SYS_LONGHELP
610static char bootz_help_text[] =
Marek Vasut017e1f32012-03-18 11:47:58 +0000611 "[addr [initrd[:size]] [fdt]]\n"
612 " - boot Linux zImage stored in memory\n"
Marek Vasut44f074c2012-03-14 21:52:45 +0000613 "\tThe argument 'initrd' is optional and specifies the address\n"
Marek Vasut017e1f32012-03-18 11:47:58 +0000614 "\tof the initrd in memory. The optional argument ':size' allows\n"
615 "\tspecifying the size of RAW initrd.\n"
Marek Vasut44f074c2012-03-14 21:52:45 +0000616#if defined(CONFIG_OF_LIBFDT)
617 "\tWhen booting a Linux kernel which requires a flat device-tree\n"
618 "\ta third argument is required which is the address of the\n"
619 "\tdevice-tree blob. To boot that kernel without an initrd image,\n"
620 "\tuse a '-' for the second argument. If you do not pass a third\n"
621 "\ta bd_info struct will be passed instead\n"
622#endif
Kim Phillips088f1b12012-10-29 13:34:31 +0000623 "";
624#endif
625
626U_BOOT_CMD(
627 bootz, CONFIG_SYS_MAXARGS, 1, do_bootz,
628 "boot Linux zImage image from memory", bootz_help_text
Marek Vasut44f074c2012-03-14 21:52:45 +0000629);
630#endif /* CONFIG_CMD_BOOTZ */
Tom Rinid2b2ffe2014-08-14 06:42:36 -0400631
632#ifdef CONFIG_CMD_BOOTI
633/* See Documentation/arm64/booting.txt in the Linux kernel */
634struct Image_header {
635 uint32_t code0; /* Executable code */
636 uint32_t code1; /* Executable code */
637 uint64_t text_offset; /* Image load offset, LE */
638 uint64_t image_size; /* Effective Image size, LE */
639 uint64_t res1; /* reserved */
640 uint64_t res2; /* reserved */
641 uint64_t res3; /* reserved */
642 uint64_t res4; /* reserved */
643 uint32_t magic; /* Magic number */
644 uint32_t res5;
645};
646
647#define LINUX_ARM64_IMAGE_MAGIC 0x644d5241
648
649static int booti_setup(bootm_headers_t *images)
650{
651 struct Image_header *ih;
652 uint64_t dst;
653
654 ih = (struct Image_header *)map_sysmem(images->ep, 0);
655
656 if (ih->magic != le32_to_cpu(LINUX_ARM64_IMAGE_MAGIC)) {
657 puts("Bad Linux ARM64 Image magic!\n");
658 return 1;
659 }
660
661 if (ih->image_size == 0) {
662 puts("Image lacks image_size field, assuming 16MiB\n");
663 ih->image_size = (16 << 20);
664 }
665
666 /*
667 * If we are not at the correct run-time location, set the new
668 * correct location and then move the image there.
669 */
670 dst = gd->bd->bi_dram[0].start + le32_to_cpu(ih->text_offset);
671 if (images->ep != dst) {
672 void *src;
673
674 debug("Moving Image from 0x%lx to 0x%llx\n", images->ep, dst);
675
676 src = (void *)images->ep;
677 images->ep = dst;
678 memmove((void *)dst, src, le32_to_cpu(ih->image_size));
679 }
680
681 return 0;
682}
683
684/*
685 * Image booting support
686 */
687static int booti_start(cmd_tbl_t *cmdtp, int flag, int argc,
688 char * const argv[], bootm_headers_t *images)
689{
690 int ret;
691 struct Image_header *ih;
692
693 ret = do_bootm_states(cmdtp, flag, argc, argv, BOOTM_STATE_START,
694 images, 1);
695
696 /* Setup Linux kernel Image entry point */
697 if (!argc) {
698 images->ep = load_addr;
699 debug("* kernel: default image load address = 0x%08lx\n",
700 load_addr);
701 } else {
702 images->ep = simple_strtoul(argv[0], NULL, 16);
703 debug("* kernel: cmdline image address = 0x%08lx\n",
704 images->ep);
705 }
706
707 ret = booti_setup(images);
708 if (ret != 0)
709 return 1;
710
711 ih = (struct Image_header *)map_sysmem(images->ep, 0);
712
713 lmb_reserve(&images->lmb, images->ep, le32_to_cpu(ih->image_size));
714
715 /*
716 * Handle the BOOTM_STATE_FINDOTHER state ourselves as we do not
717 * have a header that provide this informaiton.
718 */
719 if (bootm_find_ramdisk_fdt(flag, argc, argv))
720 return 1;
721
722 return 0;
723}
724
725int do_booti(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
726{
727 int ret;
728
729 /* Consume 'booti' */
730 argc--; argv++;
731
732 if (booti_start(cmdtp, flag, argc, argv, &images))
733 return 1;
734
735 /*
736 * We are doing the BOOTM_STATE_LOADOS state ourselves, so must
737 * disable interrupts ourselves
738 */
739 bootm_disable_interrupts();
740
741 images.os.os = IH_OS_LINUX;
742 ret = do_bootm_states(cmdtp, flag, argc, argv,
743 BOOTM_STATE_OS_PREP | BOOTM_STATE_OS_FAKE_GO |
744 BOOTM_STATE_OS_GO,
745 &images, 1);
746
747 return ret;
748}
749
750#ifdef CONFIG_SYS_LONGHELP
751static char booti_help_text[] =
752 "[addr [initrd[:size]] [fdt]]\n"
753 " - boot Linux Image stored in memory\n"
754 "\tThe argument 'initrd' is optional and specifies the address\n"
755 "\tof the initrd in memory. The optional argument ':size' allows\n"
756 "\tspecifying the size of RAW initrd.\n"
757#if defined(CONFIG_OF_LIBFDT)
758 "\tSince booting a Linux kernelrequires a flat device-tree\n"
759 "\ta third argument is required which is the address of the\n"
760 "\tdevice-tree blob. To boot that kernel without an initrd image,\n"
761 "\tuse a '-' for the second argument.\n"
762#endif
763 "";
764#endif
765
766U_BOOT_CMD(
767 booti, CONFIG_SYS_MAXARGS, 1, do_booti,
768 "boot arm64 Linux Image image from memory", booti_help_text
769);
770#endif /* CONFIG_CMD_BOOTI */