1 // SPDX-License-Identifier: GPL-2.0+
3 * (C) Copyright 2000-2009
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
18 #include <asm/byteorder.h>
19 #include <asm/global_data.h>
20 #include <linux/ctype.h>
21 #include <linux/err.h>
22 #include <u-boot/zlib.h>
25 DECLARE_GLOBAL_DATA_PTR;
27 #if defined(CONFIG_CMD_IMI)
28 static int image_info(unsigned long addr);
31 #if defined(CONFIG_CMD_IMLS)
33 #include <mtd/cfi_flash.h>
36 #if defined(CONFIG_CMD_IMLS) || defined(CONFIG_CMD_IMLS_NAND)
37 static int do_imls(struct cmd_tbl *cmdtp, int flag, int argc,
41 /* we overload the cmd field with our state machine info instead of a
43 static struct cmd_tbl cmd_bootm_sub[] = {
44 U_BOOT_CMD_MKENT(start, 0, 1, (void *)BOOTM_STATE_START, "", ""),
45 U_BOOT_CMD_MKENT(loados, 0, 1, (void *)BOOTM_STATE_LOADOS, "", ""),
46 #ifdef CONFIG_CMD_BOOTM_PRE_LOAD
47 U_BOOT_CMD_MKENT(preload, 0, 1, (void *)BOOTM_STATE_PRE_LOAD, "", ""),
49 #ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
50 U_BOOT_CMD_MKENT(ramdisk, 0, 1, (void *)BOOTM_STATE_RAMDISK, "", ""),
52 #ifdef CONFIG_OF_LIBFDT
53 U_BOOT_CMD_MKENT(fdt, 0, 1, (void *)BOOTM_STATE_FDT, "", ""),
55 U_BOOT_CMD_MKENT(cmdline, 0, 1, (void *)BOOTM_STATE_OS_CMDLINE, "", ""),
56 U_BOOT_CMD_MKENT(bdt, 0, 1, (void *)BOOTM_STATE_OS_BD_T, "", ""),
57 U_BOOT_CMD_MKENT(prep, 0, 1, (void *)BOOTM_STATE_OS_PREP, "", ""),
58 U_BOOT_CMD_MKENT(fake, 0, 1, (void *)BOOTM_STATE_OS_FAKE_GO, "", ""),
59 U_BOOT_CMD_MKENT(go, 0, 1, (void *)BOOTM_STATE_OS_GO, "", ""),
62 #if defined(CONFIG_CMD_BOOTM_PRE_LOAD)
63 static ulong bootm_get_addr(int argc, char *const argv[])
68 addr = hextoul(argv[0], NULL);
70 addr = image_load_addr;
76 static int do_bootm_subcommand(struct cmd_tbl *cmdtp, int flag, int argc,
83 c = find_cmd_tbl(argv[0], &cmd_bootm_sub[0], ARRAY_SIZE(cmd_bootm_sub));
88 if (state == BOOTM_STATE_START)
89 state |= BOOTM_STATE_PRE_LOAD | BOOTM_STATE_FINDOS |
90 BOOTM_STATE_FINDOTHER;
91 #if defined(CONFIG_CMD_BOOTM_PRE_LOAD)
92 if (state == BOOTM_STATE_PRE_LOAD)
93 state |= BOOTM_STATE_START;
96 /* Unrecognized command */
100 if (((state & BOOTM_STATE_START) != BOOTM_STATE_START) &&
101 images.state >= state) {
102 printf("Trying to execute a command out of order\n");
103 return CMD_RET_USAGE;
106 ret = do_bootm_states(cmdtp, flag, argc, argv, state, &images, 0);
108 #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);
117 /*******************************************************************/
118 /* bootm - boot application image from image in memory */
119 /*******************************************************************/
121 int do_bootm(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
123 #ifdef CONFIG_NEEDS_MANUAL_RELOC
124 static int relocated = 0;
129 /* relocate names of sub-command table */
130 for (i = 0; i < ARRAY_SIZE(cmd_bootm_sub); i++)
131 cmd_bootm_sub[i].name += gd->reloc_off;
137 /* determine if we have a sub command */
142 hextoul(argv[0], &endp);
143 /* endp pointing to NULL means that argv[0] was just a
144 * valid number, pass it along to the normal bootm processing
146 * If endp is ':' or '#' assume a FIT identifier so pass
147 * along for normal processing.
149 * Right now we assume the first arg should never be '-'
151 if ((*endp != 0) && (*endp != ':') && (*endp != '#'))
152 return do_bootm_subcommand(cmdtp, flag, argc, argv);
155 return do_bootm_states(cmdtp, flag, argc, argv, BOOTM_STATE_START |
156 BOOTM_STATE_FINDOS | BOOTM_STATE_PRE_LOAD | BOOTM_STATE_FINDOTHER |
158 #ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
159 BOOTM_STATE_RAMDISK |
161 #if defined(CONFIG_PPC) || defined(CONFIG_MIPS)
162 BOOTM_STATE_OS_CMDLINE |
164 BOOTM_STATE_OS_PREP | BOOTM_STATE_OS_FAKE_GO |
165 BOOTM_STATE_OS_GO, &images, 1);
168 int bootm_maybe_autostart(struct cmd_tbl *cmdtp, const char *cmd)
170 if (env_get_autostart()) {
172 local_args[0] = (char *)cmd;
173 local_args[1] = NULL;
174 printf("Automatic boot of image at addr 0x%08lX ...\n",
176 return do_bootm(cmdtp, 0, 1, local_args);
182 #ifdef CONFIG_SYS_LONGHELP
183 static char bootm_help_text[] =
184 "[addr [arg ...]]\n - boot application image stored in memory\n"
185 "\tpassing arguments 'arg ...'; when booting a Linux kernel,\n"
186 "\t'arg' can be the address of an initrd image\n"
187 #if defined(CONFIG_OF_LIBFDT)
188 "\tWhen booting a Linux kernel which requires a flat device-tree\n"
189 "\ta third argument is required which is the address of the\n"
190 "\tdevice-tree blob. To boot that kernel without an initrd image,\n"
191 "\tuse a '-' for the second argument. If you do not pass a third\n"
192 "\ta bd_info struct will be passed instead\n"
194 #if defined(CONFIG_FIT)
195 "\t\nFor the new multi component uImage format (FIT) addresses\n"
196 "\tmust be extended to include component or configuration unit name:\n"
197 "\taddr:<subimg_uname> - direct component image specification\n"
198 "\taddr#<conf_uname> - configuration specification\n"
199 "\tUse iminfo command to get the list of existing component\n"
200 "\timages and configurations.\n"
202 "\nSub-commands to do part of the bootm sequence. The sub-commands "
204 "issued in the order below (it's ok to not issue all sub-commands):\n"
205 "\tstart [addr [arg ...]]\n"
206 #if defined(CONFIG_CMD_BOOTM_PRE_LOAD)
207 "\tpreload [addr [arg ..]] - run only the preload stage\n"
209 "\tloados - load OS image\n"
210 #if defined(CONFIG_SYS_BOOT_RAMDISK_HIGH)
211 "\tramdisk - relocate initrd, set env initrd_start/initrd_end\n"
213 #if defined(CONFIG_OF_LIBFDT)
214 "\tfdt - relocate flat device tree\n"
216 "\tcmdline - OS specific command line processing/setup\n"
217 "\tbdt - OS specific bd_info processing\n"
218 "\tprep - OS specific prep before relocation or go\n"
219 #if defined(CONFIG_TRACE)
220 "\tfake - OS specific fake start without go\n"
226 bootm, CONFIG_SYS_MAXARGS, 1, do_bootm,
227 "boot application image from memory", bootm_help_text
230 /*******************************************************************/
231 /* bootd - boot default image */
232 /*******************************************************************/
233 #if defined(CONFIG_CMD_BOOTD)
234 int do_bootd(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
236 return run_command(env_get("bootcmd"), flag);
240 boot, 1, 1, do_bootd,
241 "boot default, i.e., run 'bootcmd'",
245 /* keep old command name "bootd" for backward compatibility */
247 bootd, 1, 1, do_bootd,
248 "boot default, i.e., run 'bootcmd'",
255 /*******************************************************************/
256 /* iminfo - print header info for a requested image */
257 /*******************************************************************/
258 #if defined(CONFIG_CMD_IMI)
259 static int do_iminfo(struct cmd_tbl *cmdtp, int flag, int argc,
267 return image_info(image_load_addr);
270 for (arg = 1; arg < argc; ++arg) {
271 addr = hextoul(argv[arg], NULL);
272 if (image_info(addr) != 0)
278 static int image_info(ulong addr)
280 void *hdr = (void *)map_sysmem(addr, 0);
282 printf("\n## Checking Image at %08lx ...\n", addr);
284 switch (genimg_get_format(hdr)) {
285 #if defined(CONFIG_LEGACY_IMAGE_FORMAT)
286 case IMAGE_FORMAT_LEGACY:
287 puts(" Legacy image found\n");
288 if (!image_check_magic(hdr)) {
289 puts(" Bad Magic Number\n");
294 if (!image_check_hcrc(hdr)) {
295 puts(" Bad Header Checksum\n");
300 image_print_contents(hdr);
302 puts(" Verifying Checksum ... ");
303 if (!image_check_dcrc(hdr)) {
304 puts(" Bad Data CRC\n");
312 #if defined(CONFIG_ANDROID_BOOT_IMAGE)
313 case IMAGE_FORMAT_ANDROID:
314 puts(" Android image found\n");
315 android_print_contents(hdr);
319 #if defined(CONFIG_FIT)
320 case IMAGE_FORMAT_FIT:
321 puts(" FIT image found\n");
323 if (fit_check_format(hdr, IMAGE_SIZE_INVAL)) {
324 puts("Bad FIT image format!\n");
329 fit_print_contents(hdr);
331 if (!fit_all_image_verify(hdr)) {
332 puts("Bad hash in FIT image!\n");
341 puts("Unknown image format!\n");
350 iminfo, CONFIG_SYS_MAXARGS, 1, do_iminfo,
351 "print header information for application image",
353 " - print header information for application image starting at\n"
354 " address 'addr' in memory; this includes verification of the\n"
355 " image contents (magic number, header and payload checksums)"
360 /*******************************************************************/
361 /* imls - list all images found in flash */
362 /*******************************************************************/
363 #if defined(CONFIG_CMD_IMLS)
364 static int do_imls_nor(void)
370 for (i = 0, info = &flash_info[0];
371 i < CFI_FLASH_BANKS; ++i, ++info) {
373 if (info->flash_id == FLASH_UNKNOWN)
375 for (j = 0; j < info->sector_count; ++j) {
377 hdr = (void *)info->start[j];
381 switch (genimg_get_format(hdr)) {
382 #if defined(CONFIG_LEGACY_IMAGE_FORMAT)
383 case IMAGE_FORMAT_LEGACY:
384 if (!image_check_hcrc(hdr))
387 printf("Legacy Image at %08lX:\n", (ulong)hdr);
388 image_print_contents(hdr);
390 puts(" Verifying Checksum ... ");
391 if (!image_check_dcrc(hdr)) {
392 puts("Bad Data CRC\n");
398 #if defined(CONFIG_FIT)
399 case IMAGE_FORMAT_FIT:
400 if (fit_check_format(hdr, IMAGE_SIZE_INVAL))
403 printf("FIT Image at %08lX:\n", (ulong)hdr);
404 fit_print_contents(hdr);
419 #if defined(CONFIG_CMD_IMLS_NAND)
420 static int nand_imls_legacyimage(struct mtd_info *mtd, int nand_dev,
421 loff_t off, size_t len)
426 imgdata = malloc(len);
428 printf("May be a Legacy Image at NAND device %d offset %08llX:\n",
430 printf(" Low memory(cannot allocate memory for image)\n");
434 ret = nand_read_skip_bad(mtd, off, &len, NULL, mtd->size, imgdata);
435 if (ret < 0 && ret != -EUCLEAN) {
440 if (!image_check_hcrc(imgdata)) {
445 printf("Legacy Image at NAND device %d offset %08llX:\n",
447 image_print_contents(imgdata);
449 puts(" Verifying Checksum ... ");
450 if (!image_check_dcrc(imgdata))
451 puts("Bad Data CRC\n");
460 static int nand_imls_fitimage(struct mtd_info *mtd, int nand_dev, loff_t off,
466 imgdata = malloc(len);
468 printf("May be a FIT Image at NAND device %d offset %08llX:\n",
470 printf(" Low memory(cannot allocate memory for image)\n");
474 ret = nand_read_skip_bad(mtd, off, &len, NULL, mtd->size, imgdata);
475 if (ret < 0 && ret != -EUCLEAN) {
480 if (fit_check_format(imgdata, IMAGE_SIZE_INVAL)) {
485 printf("FIT Image at NAND device %d offset %08llX:\n", nand_dev, off);
487 fit_print_contents(imgdata);
493 static int do_imls_nand(void)
495 struct mtd_info *mtd;
496 int nand_dev = nand_curr_device;
501 if (nand_dev < 0 || nand_dev >= CONFIG_SYS_MAX_NAND_DEVICE) {
502 puts("\nNo NAND devices available\n");
508 for (nand_dev = 0; nand_dev < CONFIG_SYS_MAX_NAND_DEVICE; nand_dev++) {
509 mtd = get_nand_dev_by_index(nand_dev);
510 if (!mtd->name || !mtd->size)
513 for (off = 0; off < mtd->size; off += mtd->erasesize) {
514 const image_header_t *header;
517 if (nand_block_isbad(mtd, off))
520 len = sizeof(buffer);
522 ret = nand_read(mtd, off, &len, (u8 *)buffer);
523 if (ret < 0 && ret != -EUCLEAN) {
524 printf("NAND read error %d at offset %08llX\n",
529 switch (genimg_get_format(buffer)) {
530 #if defined(CONFIG_LEGACY_IMAGE_FORMAT)
531 case IMAGE_FORMAT_LEGACY:
532 header = (const image_header_t *)buffer;
534 len = image_get_image_size(header);
535 nand_imls_legacyimage(mtd, nand_dev, off, len);
538 #if defined(CONFIG_FIT)
539 case IMAGE_FORMAT_FIT:
540 len = fit_get_size(buffer);
541 nand_imls_fitimage(mtd, nand_dev, off, len);
552 #if defined(CONFIG_CMD_IMLS) || defined(CONFIG_CMD_IMLS_NAND)
553 static int do_imls(struct cmd_tbl *cmdtp, int flag, int argc,
556 int ret_nor = 0, ret_nand = 0;
558 #if defined(CONFIG_CMD_IMLS)
559 ret_nor = do_imls_nor();
562 #if defined(CONFIG_CMD_IMLS_NAND)
563 ret_nand = do_imls_nand();
577 "list all images found in flash",
579 " - Prints information about all images found at sector/block\n"
580 " boundaries in nor/nand flash."