1 // SPDX-License-Identifier: GPL-2.0+
3 * (C) Copyright 2000-2009
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);
114 return ret ? CMD_RET_FAILURE : 0;
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[])
126 #ifdef CONFIG_NEEDS_MANUAL_RELOC
127 static int relocated = 0;
132 /* 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;
140 /* determine if we have a sub command */
145 hextoul(argv[0], &endp);
146 /* endp pointing to NULL means that argv[0] was just a
147 * valid number, pass it along to the normal bootm processing
149 * If endp is ':' or '#' assume a FIT identifier so pass
150 * along for normal processing.
152 * Right now we assume the first arg should never be '-'
154 if ((*endp != 0) && (*endp != ':') && (*endp != '#'))
155 return do_bootm_subcommand(cmdtp, flag, argc, argv);
158 states = BOOTM_STATE_START | BOOTM_STATE_FINDOS | BOOTM_STATE_PRE_LOAD |
159 BOOTM_STATE_FINDOTHER | BOOTM_STATE_LOADOS |
160 BOOTM_STATE_OS_PREP | BOOTM_STATE_OS_FAKE_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);
168 return ret ? CMD_RET_FAILURE : 0;
171 int bootm_maybe_autostart(struct cmd_tbl *cmdtp, const char *cmd)
173 if (env_get_autostart()) {
175 local_args[0] = (char *)cmd;
176 local_args[1] = NULL;
177 printf("Automatic boot of image at addr 0x%08lX ...\n",
179 return do_bootm(cmdtp, 0, 1, local_args);
185 #ifdef CONFIG_SYS_LONGHELP
186 static char bootm_help_text[] =
187 "[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"
190 #if defined(CONFIG_OF_LIBFDT)
191 "\tWhen booting a Linux kernel which requires a flat device-tree\n"
192 "\ta third argument is required which is the address of the\n"
193 "\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"
197 #if defined(CONFIG_FIT)
198 "\t\nFor the new multi component uImage format (FIT) addresses\n"
199 "\tmust be extended to include component or configuration unit name:\n"
200 "\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"
205 "\nSub-commands to do part of the bootm sequence. The sub-commands "
207 "issued in the order below (it's ok to not issue all sub-commands):\n"
208 "\tstart [addr [arg ...]]\n"
209 #if defined(CONFIG_CMD_BOOTM_PRE_LOAD)
210 "\tpreload [addr [arg ..]] - run only the preload stage\n"
212 "\tloados - load OS image\n"
213 #if defined(CONFIG_SYS_BOOT_RAMDISK_HIGH)
214 "\tramdisk - relocate initrd, set env initrd_start/initrd_end\n"
216 #if defined(CONFIG_OF_LIBFDT)
217 "\tfdt - relocate flat device tree\n"
219 "\tcmdline - OS specific command line processing/setup\n"
220 "\tbdt - OS specific bd_info processing\n"
221 "\tprep - OS specific prep before relocation or go\n"
222 #if defined(CONFIG_TRACE)
223 "\tfake - OS specific fake start without go\n"
229 bootm, CONFIG_SYS_MAXARGS, 1, do_bootm,
230 "boot application image from memory", bootm_help_text
233 /*******************************************************************/
234 /* bootd - boot default image */
235 /*******************************************************************/
236 #if defined(CONFIG_CMD_BOOTD)
237 int do_bootd(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
239 return run_command(env_get("bootcmd"), flag);
243 boot, 1, 1, do_bootd,
244 "boot default, i.e., run 'bootcmd'",
248 /* keep old command name "bootd" for backward compatibility */
250 bootd, 1, 1, do_bootd,
251 "boot default, i.e., run 'bootcmd'",
258 /*******************************************************************/
259 /* iminfo - print header info for a requested image */
260 /*******************************************************************/
261 #if defined(CONFIG_CMD_IMI)
262 static int do_iminfo(struct cmd_tbl *cmdtp, int flag, int argc,
270 return image_info(image_load_addr);
273 for (arg = 1; arg < argc; ++arg) {
274 addr = hextoul(argv[arg], NULL);
275 if (image_info(addr) != 0)
281 static int image_info(ulong addr)
283 void *hdr = (void *)map_sysmem(addr, 0);
285 printf("\n## Checking Image at %08lx ...\n", addr);
287 switch (genimg_get_format(hdr)) {
288 #if defined(CONFIG_LEGACY_IMAGE_FORMAT)
289 case IMAGE_FORMAT_LEGACY:
290 puts(" Legacy image found\n");
291 if (!image_check_magic(hdr)) {
292 puts(" Bad Magic Number\n");
297 if (!image_check_hcrc(hdr)) {
298 puts(" Bad Header Checksum\n");
303 image_print_contents(hdr);
305 puts(" Verifying Checksum ... ");
306 if (!image_check_dcrc(hdr)) {
307 puts(" Bad Data CRC\n");
315 #if defined(CONFIG_ANDROID_BOOT_IMAGE)
316 case IMAGE_FORMAT_ANDROID:
317 puts(" Android image found\n");
318 android_print_contents(hdr);
322 #if defined(CONFIG_FIT)
323 case IMAGE_FORMAT_FIT:
324 puts(" FIT image found\n");
326 if (fit_check_format(hdr, IMAGE_SIZE_INVAL)) {
327 puts("Bad FIT image format!\n");
332 fit_print_contents(hdr);
334 if (!fit_all_image_verify(hdr)) {
335 puts("Bad hash in FIT image!\n");
344 puts("Unknown image format!\n");
353 iminfo, CONFIG_SYS_MAXARGS, 1, do_iminfo,
354 "print header information for application image",
356 " - print header information for application image starting at\n"
357 " address 'addr' in memory; this includes verification of the\n"
358 " image contents (magic number, header and payload checksums)"
363 /*******************************************************************/
364 /* imls - list all images found in flash */
365 /*******************************************************************/
366 #if defined(CONFIG_CMD_IMLS)
367 static int do_imls_nor(void)
373 for (i = 0, info = &flash_info[0];
374 i < CFI_FLASH_BANKS; ++i, ++info) {
376 if (info->flash_id == FLASH_UNKNOWN)
378 for (j = 0; j < info->sector_count; ++j) {
380 hdr = (void *)info->start[j];
384 switch (genimg_get_format(hdr)) {
385 #if defined(CONFIG_LEGACY_IMAGE_FORMAT)
386 case IMAGE_FORMAT_LEGACY:
387 if (!image_check_hcrc(hdr))
390 printf("Legacy Image at %08lX:\n", (ulong)hdr);
391 image_print_contents(hdr);
393 puts(" Verifying Checksum ... ");
394 if (!image_check_dcrc(hdr)) {
395 puts("Bad Data CRC\n");
401 #if defined(CONFIG_FIT)
402 case IMAGE_FORMAT_FIT:
403 if (fit_check_format(hdr, IMAGE_SIZE_INVAL))
406 printf("FIT Image at %08lX:\n", (ulong)hdr);
407 fit_print_contents(hdr);
422 #if defined(CONFIG_CMD_IMLS_NAND)
423 static int nand_imls_legacyimage(struct mtd_info *mtd, int nand_dev,
424 loff_t off, size_t len)
429 imgdata = malloc(len);
431 printf("May be a Legacy Image at NAND device %d offset %08llX:\n",
433 printf(" Low memory(cannot allocate memory for image)\n");
437 ret = nand_read_skip_bad(mtd, off, &len, NULL, mtd->size, imgdata);
438 if (ret < 0 && ret != -EUCLEAN) {
443 if (!image_check_hcrc(imgdata)) {
448 printf("Legacy Image at NAND device %d offset %08llX:\n",
450 image_print_contents(imgdata);
452 puts(" Verifying Checksum ... ");
453 if (!image_check_dcrc(imgdata))
454 puts("Bad Data CRC\n");
463 static int nand_imls_fitimage(struct mtd_info *mtd, int nand_dev, loff_t off,
469 imgdata = malloc(len);
471 printf("May be a FIT Image at NAND device %d offset %08llX:\n",
473 printf(" Low memory(cannot allocate memory for image)\n");
477 ret = nand_read_skip_bad(mtd, off, &len, NULL, mtd->size, imgdata);
478 if (ret < 0 && ret != -EUCLEAN) {
483 if (fit_check_format(imgdata, IMAGE_SIZE_INVAL)) {
488 printf("FIT Image at NAND device %d offset %08llX:\n", nand_dev, off);
490 fit_print_contents(imgdata);
496 static int do_imls_nand(void)
498 struct mtd_info *mtd;
499 int nand_dev = nand_curr_device;
504 if (nand_dev < 0 || nand_dev >= CONFIG_SYS_MAX_NAND_DEVICE) {
505 puts("\nNo NAND devices available\n");
511 for (nand_dev = 0; nand_dev < CONFIG_SYS_MAX_NAND_DEVICE; nand_dev++) {
512 mtd = get_nand_dev_by_index(nand_dev);
513 if (!mtd->name || !mtd->size)
516 for (off = 0; off < mtd->size; off += mtd->erasesize) {
517 const struct legacy_img_hdr *header;
520 if (nand_block_isbad(mtd, off))
523 len = sizeof(buffer);
525 ret = nand_read(mtd, off, &len, (u8 *)buffer);
526 if (ret < 0 && ret != -EUCLEAN) {
527 printf("NAND read error %d at offset %08llX\n",
532 switch (genimg_get_format(buffer)) {
533 #if defined(CONFIG_LEGACY_IMAGE_FORMAT)
534 case IMAGE_FORMAT_LEGACY:
535 header = (const struct legacy_img_hdr *)buffer;
537 len = image_get_image_size(header);
538 nand_imls_legacyimage(mtd, nand_dev, off, len);
541 #if defined(CONFIG_FIT)
542 case IMAGE_FORMAT_FIT:
543 len = fit_get_size(buffer);
544 nand_imls_fitimage(mtd, nand_dev, off, len);
555 #if defined(CONFIG_CMD_IMLS) || defined(CONFIG_CMD_IMLS_NAND)
556 static int do_imls(struct cmd_tbl *cmdtp, int flag, int argc,
559 int ret_nor = 0, ret_nand = 0;
561 #if defined(CONFIG_CMD_IMLS)
562 ret_nor = do_imls_nor();
565 #if defined(CONFIG_CMD_IMLS_NAND)
566 ret_nand = do_imls_nand();
580 "list all images found in flash",
582 " - Prints information about all images found at sector/block\n"
583 " boundaries in nor/nand flash."