2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2002-11-03 00:01:44 +00:00
|
|
|
/*
|
2009-07-13 14:01:18 +00:00
|
|
|
* (C) Copyright 2000-2009
|
2002-11-03 00:01:44 +00:00
|
|
|
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Boot support
|
|
|
|
*/
|
|
|
|
#include <common.h>
|
2014-06-12 13:24:46 +00:00
|
|
|
#include <bootm.h>
|
2002-11-03 00:01:44 +00:00
|
|
|
#include <command.h>
|
2019-08-01 15:46:52 +00:00
|
|
|
#include <env.h>
|
2014-10-20 03:11:24 +00:00
|
|
|
#include <errno.h>
|
2014-06-12 13:24:46 +00:00
|
|
|
#include <image.h>
|
|
|
|
#include <malloc.h>
|
|
|
|
#include <nand.h>
|
2002-11-03 00:01:44 +00:00
|
|
|
#include <asm/byteorder.h>
|
2020-10-31 03:38:53 +00:00
|
|
|
#include <asm/global_data.h>
|
2014-06-12 13:24:46 +00:00
|
|
|
#include <linux/ctype.h>
|
|
|
|
#include <linux/err.h>
|
|
|
|
#include <u-boot/zlib.h>
|
2019-12-02 14:45:50 +00:00
|
|
|
#include <mapmem.h>
|
2009-11-19 10:37:51 +00:00
|
|
|
|
2008-01-08 17:17:10 +00:00
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
2002-12-08 09:53:23 +00:00
|
|
|
|
2007-07-08 22:51:39 +00:00
|
|
|
#if defined(CONFIG_CMD_IMI)
|
2011-10-18 11:11:49 +00:00
|
|
|
static int image_info(unsigned long addr);
|
2002-11-03 00:01:44 +00:00
|
|
|
#endif
|
2003-07-24 23:38:38 +00:00
|
|
|
|
2007-07-08 22:51:39 +00:00
|
|
|
#if defined(CONFIG_CMD_IMLS)
|
2003-07-24 23:38:38 +00:00
|
|
|
#include <flash.h>
|
2010-08-31 08:00:10 +00:00
|
|
|
#include <mtd/cfi_flash.h>
|
2005-10-11 17:09:42 +00:00
|
|
|
extern flash_info_t flash_info[]; /* info for FLASH chips */
|
2012-12-16 22:32:48 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(CONFIG_CMD_IMLS) || defined(CONFIG_CMD_IMLS_NAND)
|
2020-05-10 17:40:03 +00:00
|
|
|
static int do_imls(struct cmd_tbl *cmdtp, int flag, int argc,
|
|
|
|
char *const argv[]);
|
2003-07-24 23:38:38 +00:00
|
|
|
#endif
|
|
|
|
|
bootm: Add subcommands
Add the ability to break the steps of the bootm command into several
subcommands: start, loados, ramdisk, fdt, bdt, cmdline, prep, go.
This allows us to do things like manipulate device trees before
they are passed to a booting kernel or setup memory for a secondary
core in multicore situations.
Not all OS types support all subcommands (currently only start, loados,
ramdisk, fdt, and go are supported).
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2008-10-21 22:25:45 +00:00
|
|
|
/* we overload the cmd field with our state machine info instead of a
|
|
|
|
* function pointer */
|
2020-05-10 17:40:03 +00:00
|
|
|
static struct cmd_tbl cmd_bootm_sub[] = {
|
bootm: Add subcommands
Add the ability to break the steps of the bootm command into several
subcommands: start, loados, ramdisk, fdt, bdt, cmdline, prep, go.
This allows us to do things like manipulate device trees before
they are passed to a booting kernel or setup memory for a secondary
core in multicore situations.
Not all OS types support all subcommands (currently only start, loados,
ramdisk, fdt, and go are supported).
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2008-10-21 22:25:45 +00:00
|
|
|
U_BOOT_CMD_MKENT(start, 0, 1, (void *)BOOTM_STATE_START, "", ""),
|
|
|
|
U_BOOT_CMD_MKENT(loados, 0, 1, (void *)BOOTM_STATE_LOADOS, "", ""),
|
2010-10-13 19:57:35 +00:00
|
|
|
#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
|
bootm: Add subcommands
Add the ability to break the steps of the bootm command into several
subcommands: start, loados, ramdisk, fdt, bdt, cmdline, prep, go.
This allows us to do things like manipulate device trees before
they are passed to a booting kernel or setup memory for a secondary
core in multicore situations.
Not all OS types support all subcommands (currently only start, loados,
ramdisk, fdt, and go are supported).
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2008-10-21 22:25:45 +00:00
|
|
|
U_BOOT_CMD_MKENT(ramdisk, 0, 1, (void *)BOOTM_STATE_RAMDISK, "", ""),
|
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_OF_LIBFDT
|
|
|
|
U_BOOT_CMD_MKENT(fdt, 0, 1, (void *)BOOTM_STATE_FDT, "", ""),
|
|
|
|
#endif
|
|
|
|
U_BOOT_CMD_MKENT(cmdline, 0, 1, (void *)BOOTM_STATE_OS_CMDLINE, "", ""),
|
2009-11-19 01:08:59 +00:00
|
|
|
U_BOOT_CMD_MKENT(bdt, 0, 1, (void *)BOOTM_STATE_OS_BD_T, "", ""),
|
bootm: Add subcommands
Add the ability to break the steps of the bootm command into several
subcommands: start, loados, ramdisk, fdt, bdt, cmdline, prep, go.
This allows us to do things like manipulate device trees before
they are passed to a booting kernel or setup memory for a secondary
core in multicore situations.
Not all OS types support all subcommands (currently only start, loados,
ramdisk, fdt, and go are supported).
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2008-10-21 22:25:45 +00:00
|
|
|
U_BOOT_CMD_MKENT(prep, 0, 1, (void *)BOOTM_STATE_OS_PREP, "", ""),
|
2013-06-11 18:14:48 +00:00
|
|
|
U_BOOT_CMD_MKENT(fake, 0, 1, (void *)BOOTM_STATE_OS_FAKE_GO, "", ""),
|
bootm: Add subcommands
Add the ability to break the steps of the bootm command into several
subcommands: start, loados, ramdisk, fdt, bdt, cmdline, prep, go.
This allows us to do things like manipulate device trees before
they are passed to a booting kernel or setup memory for a secondary
core in multicore situations.
Not all OS types support all subcommands (currently only start, loados,
ramdisk, fdt, and go are supported).
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2008-10-21 22:25:45 +00:00
|
|
|
U_BOOT_CMD_MKENT(go, 0, 1, (void *)BOOTM_STATE_OS_GO, "", ""),
|
|
|
|
};
|
|
|
|
|
2020-05-10 17:40:03 +00:00
|
|
|
static int do_bootm_subcommand(struct cmd_tbl *cmdtp, int flag, int argc,
|
|
|
|
char *const argv[])
|
bootm: Add subcommands
Add the ability to break the steps of the bootm command into several
subcommands: start, loados, ramdisk, fdt, bdt, cmdline, prep, go.
This allows us to do things like manipulate device trees before
they are passed to a booting kernel or setup memory for a secondary
core in multicore situations.
Not all OS types support all subcommands (currently only start, loados,
ramdisk, fdt, and go are supported).
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2008-10-21 22:25:45 +00:00
|
|
|
{
|
|
|
|
int ret = 0;
|
2011-10-07 13:53:40 +00:00
|
|
|
long state;
|
2020-05-10 17:40:03 +00:00
|
|
|
struct cmd_tbl *c;
|
bootm: Add subcommands
Add the ability to break the steps of the bootm command into several
subcommands: start, loados, ramdisk, fdt, bdt, cmdline, prep, go.
This allows us to do things like manipulate device trees before
they are passed to a booting kernel or setup memory for a secondary
core in multicore situations.
Not all OS types support all subcommands (currently only start, loados,
ramdisk, fdt, and go are supported).
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2008-10-21 22:25:45 +00:00
|
|
|
|
2013-06-11 18:14:46 +00:00
|
|
|
c = find_cmd_tbl(argv[0], &cmd_bootm_sub[0], ARRAY_SIZE(cmd_bootm_sub));
|
|
|
|
argc--; argv++;
|
bootm: Add subcommands
Add the ability to break the steps of the bootm command into several
subcommands: start, loados, ramdisk, fdt, bdt, cmdline, prep, go.
This allows us to do things like manipulate device trees before
they are passed to a booting kernel or setup memory for a secondary
core in multicore situations.
Not all OS types support all subcommands (currently only start, loados,
ramdisk, fdt, and go are supported).
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2008-10-21 22:25:45 +00:00
|
|
|
|
|
|
|
if (c) {
|
2011-10-07 13:53:40 +00:00
|
|
|
state = (long)c->cmd;
|
2013-06-11 18:14:46 +00:00
|
|
|
if (state == BOOTM_STATE_START)
|
2013-06-11 18:14:47 +00:00
|
|
|
state |= BOOTM_STATE_FINDOS | BOOTM_STATE_FINDOTHER;
|
2010-07-16 23:06:04 +00:00
|
|
|
} else {
|
|
|
|
/* Unrecognized command */
|
2011-12-10 08:44:01 +00:00
|
|
|
return CMD_RET_USAGE;
|
bootm: Add subcommands
Add the ability to break the steps of the bootm command into several
subcommands: start, loados, ramdisk, fdt, bdt, cmdline, prep, go.
This allows us to do things like manipulate device trees before
they are passed to a booting kernel or setup memory for a secondary
core in multicore situations.
Not all OS types support all subcommands (currently only start, loados,
ramdisk, fdt, and go are supported).
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2008-10-21 22:25:45 +00:00
|
|
|
}
|
|
|
|
|
2015-02-24 06:04:38 +00:00
|
|
|
if (((state & BOOTM_STATE_START) != BOOTM_STATE_START) &&
|
|
|
|
images.state >= state) {
|
2011-10-18 11:11:49 +00:00
|
|
|
printf("Trying to execute a command out of order\n");
|
2011-12-10 08:44:01 +00:00
|
|
|
return CMD_RET_USAGE;
|
bootm: Add subcommands
Add the ability to break the steps of the bootm command into several
subcommands: start, loados, ramdisk, fdt, bdt, cmdline, prep, go.
This allows us to do things like manipulate device trees before
they are passed to a booting kernel or setup memory for a secondary
core in multicore situations.
Not all OS types support all subcommands (currently only start, loados,
ramdisk, fdt, and go are supported).
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2008-10-21 22:25:45 +00:00
|
|
|
}
|
|
|
|
|
2013-06-11 18:14:47 +00:00
|
|
|
ret = do_bootm_states(cmdtp, flag, argc, argv, state, &images, 0);
|
bootm: Add subcommands
Add the ability to break the steps of the bootm command into several
subcommands: start, loados, ramdisk, fdt, bdt, cmdline, prep, go.
This allows us to do things like manipulate device trees before
they are passed to a booting kernel or setup memory for a secondary
core in multicore situations.
Not all OS types support all subcommands (currently only start, loados,
ramdisk, fdt, and go are supported).
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2008-10-21 22:25:45 +00:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2008-08-15 13:24:41 +00:00
|
|
|
/*******************************************************************/
|
|
|
|
/* bootm - boot application image from image in memory */
|
|
|
|
/*******************************************************************/
|
2008-10-21 22:25:44 +00:00
|
|
|
|
2020-05-10 17:40:03 +00:00
|
|
|
int do_bootm(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
|
2008-08-15 13:24:41 +00:00
|
|
|
{
|
2010-10-28 18:00:11 +00:00
|
|
|
#ifdef CONFIG_NEEDS_MANUAL_RELOC
|
2009-09-21 16:20:36 +00:00
|
|
|
static int relocated = 0;
|
2008-10-21 22:25:44 +00:00
|
|
|
|
|
|
|
if (!relocated) {
|
|
|
|
int i;
|
2013-01-07 06:54:52 +00:00
|
|
|
|
|
|
|
/* relocate names of sub-command table */
|
|
|
|
for (i = 0; i < ARRAY_SIZE(cmd_bootm_sub); i++)
|
|
|
|
cmd_bootm_sub[i].name += gd->reloc_off;
|
|
|
|
|
2008-10-21 22:25:44 +00:00
|
|
|
relocated = 1;
|
|
|
|
}
|
2009-09-21 16:20:36 +00:00
|
|
|
#endif
|
2008-08-15 13:24:41 +00:00
|
|
|
|
bootm: Add subcommands
Add the ability to break the steps of the bootm command into several
subcommands: start, loados, ramdisk, fdt, bdt, cmdline, prep, go.
This allows us to do things like manipulate device trees before
they are passed to a booting kernel or setup memory for a secondary
core in multicore situations.
Not all OS types support all subcommands (currently only start, loados,
ramdisk, fdt, and go are supported).
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2008-10-21 22:25:45 +00:00
|
|
|
/* determine if we have a sub command */
|
2013-06-11 18:14:46 +00:00
|
|
|
argc--; argv++;
|
|
|
|
if (argc > 0) {
|
bootm: Add subcommands
Add the ability to break the steps of the bootm command into several
subcommands: start, loados, ramdisk, fdt, bdt, cmdline, prep, go.
This allows us to do things like manipulate device trees before
they are passed to a booting kernel or setup memory for a secondary
core in multicore situations.
Not all OS types support all subcommands (currently only start, loados,
ramdisk, fdt, and go are supported).
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2008-10-21 22:25:45 +00:00
|
|
|
char *endp;
|
|
|
|
|
2021-07-24 15:03:29 +00:00
|
|
|
hextoul(argv[0], &endp);
|
2013-06-11 18:14:46 +00:00
|
|
|
/* endp pointing to NULL means that argv[0] was just a
|
bootm: Add subcommands
Add the ability to break the steps of the bootm command into several
subcommands: start, loados, ramdisk, fdt, bdt, cmdline, prep, go.
This allows us to do things like manipulate device trees before
they are passed to a booting kernel or setup memory for a secondary
core in multicore situations.
Not all OS types support all subcommands (currently only start, loados,
ramdisk, fdt, and go are supported).
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2008-10-21 22:25:45 +00:00
|
|
|
* valid number, pass it along to the normal bootm processing
|
|
|
|
*
|
|
|
|
* If endp is ':' or '#' assume a FIT identifier so pass
|
|
|
|
* along for normal processing.
|
|
|
|
*
|
|
|
|
* Right now we assume the first arg should never be '-'
|
|
|
|
*/
|
|
|
|
if ((*endp != 0) && (*endp != ':') && (*endp != '#'))
|
|
|
|
return do_bootm_subcommand(cmdtp, flag, argc, argv);
|
|
|
|
}
|
|
|
|
|
2013-06-11 18:14:47 +00:00
|
|
|
return do_bootm_states(cmdtp, flag, argc, argv, BOOTM_STATE_START |
|
|
|
|
BOOTM_STATE_FINDOS | BOOTM_STATE_FINDOTHER |
|
2013-09-23 18:20:37 +00:00
|
|
|
BOOTM_STATE_LOADOS |
|
2017-01-19 01:12:24 +00:00
|
|
|
#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
|
|
|
|
BOOTM_STATE_RAMDISK |
|
|
|
|
#endif
|
2013-09-23 18:20:37 +00:00
|
|
|
#if defined(CONFIG_PPC) || defined(CONFIG_MIPS)
|
|
|
|
BOOTM_STATE_OS_CMDLINE |
|
|
|
|
#endif
|
2013-09-06 10:23:55 +00:00
|
|
|
BOOTM_STATE_OS_PREP | BOOTM_STATE_OS_FAKE_GO |
|
|
|
|
BOOTM_STATE_OS_GO, &images, 1);
|
2002-11-03 00:01:44 +00:00
|
|
|
}
|
|
|
|
|
2020-05-10 17:40:03 +00:00
|
|
|
int bootm_maybe_autostart(struct cmd_tbl *cmdtp, const char *cmd)
|
2011-06-05 13:43:02 +00:00
|
|
|
{
|
2017-08-03 18:22:12 +00:00
|
|
|
const char *ep = env_get("autostart");
|
2011-06-05 13:43:02 +00:00
|
|
|
|
|
|
|
if (ep && !strcmp(ep, "yes")) {
|
|
|
|
char *local_args[2];
|
|
|
|
local_args[0] = (char *)cmd;
|
|
|
|
local_args[1] = NULL;
|
2019-12-28 17:45:02 +00:00
|
|
|
printf("Automatic boot of image at addr 0x%08lX ...\n",
|
|
|
|
image_load_addr);
|
2011-06-05 13:43:02 +00:00
|
|
|
return do_bootm(cmdtp, 0, 1, local_args);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-10-29 13:34:31 +00:00
|
|
|
#ifdef CONFIG_SYS_LONGHELP
|
|
|
|
static char bootm_help_text[] =
|
2008-01-08 17:17:10 +00:00
|
|
|
"[addr [arg ...]]\n - boot application image stored in memory\n"
|
|
|
|
"\tpassing arguments 'arg ...'; when booting a Linux kernel,\n"
|
|
|
|
"\t'arg' can be the address of an initrd image\n"
|
2008-01-31 12:20:07 +00:00
|
|
|
#if defined(CONFIG_OF_LIBFDT)
|
2006-06-28 15:41:37 +00:00
|
|
|
"\tWhen booting a Linux kernel which requires a flat device-tree\n"
|
2007-10-19 14:47:26 +00:00
|
|
|
"\ta third argument is required which is the address of the\n"
|
2006-06-28 15:41:37 +00:00
|
|
|
"\tdevice-tree blob. To boot that kernel without an initrd image,\n"
|
|
|
|
"\tuse a '-' for the second argument. If you do not pass a third\n"
|
|
|
|
"\ta bd_info struct will be passed instead\n"
|
|
|
|
#endif
|
2008-03-12 09:01:05 +00:00
|
|
|
#if defined(CONFIG_FIT)
|
|
|
|
"\t\nFor the new multi component uImage format (FIT) addresses\n"
|
2016-10-24 03:45:18 +00:00
|
|
|
"\tmust be extended to include component or configuration unit name:\n"
|
2008-03-12 09:01:05 +00:00
|
|
|
"\taddr:<subimg_uname> - direct component image specification\n"
|
|
|
|
"\taddr#<conf_uname> - configuration specification\n"
|
|
|
|
"\tUse iminfo command to get the list of existing component\n"
|
|
|
|
"\timages and configurations.\n"
|
|
|
|
#endif
|
bootm: Add subcommands
Add the ability to break the steps of the bootm command into several
subcommands: start, loados, ramdisk, fdt, bdt, cmdline, prep, go.
This allows us to do things like manipulate device trees before
they are passed to a booting kernel or setup memory for a secondary
core in multicore situations.
Not all OS types support all subcommands (currently only start, loados,
ramdisk, fdt, and go are supported).
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2008-10-21 22:25:45 +00:00
|
|
|
"\nSub-commands to do part of the bootm sequence. The sub-commands "
|
|
|
|
"must be\n"
|
|
|
|
"issued in the order below (it's ok to not issue all sub-commands):\n"
|
|
|
|
"\tstart [addr [arg ...]]\n"
|
|
|
|
"\tloados - load OS image\n"
|
2013-02-26 04:54:19 +00:00
|
|
|
#if defined(CONFIG_SYS_BOOT_RAMDISK_HIGH)
|
bootm: Add subcommands
Add the ability to break the steps of the bootm command into several
subcommands: start, loados, ramdisk, fdt, bdt, cmdline, prep, go.
This allows us to do things like manipulate device trees before
they are passed to a booting kernel or setup memory for a secondary
core in multicore situations.
Not all OS types support all subcommands (currently only start, loados,
ramdisk, fdt, and go are supported).
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2008-10-21 22:25:45 +00:00
|
|
|
"\tramdisk - relocate initrd, set env initrd_start/initrd_end\n"
|
|
|
|
#endif
|
|
|
|
#if defined(CONFIG_OF_LIBFDT)
|
|
|
|
"\tfdt - relocate flat device tree\n"
|
|
|
|
#endif
|
|
|
|
"\tcmdline - OS specific command line processing/setup\n"
|
2020-06-26 06:13:34 +00:00
|
|
|
"\tbdt - OS specific bd_info processing\n"
|
bootm: Add subcommands
Add the ability to break the steps of the bootm command into several
subcommands: start, loados, ramdisk, fdt, bdt, cmdline, prep, go.
This allows us to do things like manipulate device trees before
they are passed to a booting kernel or setup memory for a secondary
core in multicore situations.
Not all OS types support all subcommands (currently only start, loados,
ramdisk, fdt, and go are supported).
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2008-10-21 22:25:45 +00:00
|
|
|
"\tprep - OS specific prep before relocation or go\n"
|
2015-01-15 08:53:13 +00:00
|
|
|
#if defined(CONFIG_TRACE)
|
|
|
|
"\tfake - OS specific fake start without go\n"
|
|
|
|
#endif
|
2012-10-29 13:34:31 +00:00
|
|
|
"\tgo - start OS";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
U_BOOT_CMD(
|
|
|
|
bootm, CONFIG_SYS_MAXARGS, 1, do_bootm,
|
|
|
|
"boot application image from memory", bootm_help_text
|
2003-06-27 21:31:46 +00:00
|
|
|
);
|
2002-11-03 00:01:44 +00:00
|
|
|
|
2008-01-08 17:17:10 +00:00
|
|
|
/*******************************************************************/
|
|
|
|
/* bootd - boot default image */
|
|
|
|
/*******************************************************************/
|
2007-07-08 22:51:39 +00:00
|
|
|
#if defined(CONFIG_CMD_BOOTD)
|
2020-05-10 17:40:03 +00:00
|
|
|
int do_bootd(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
|
2002-11-03 00:01:44 +00:00
|
|
|
{
|
2017-08-03 18:22:12 +00:00
|
|
|
return run_command(env_get("bootcmd"), flag);
|
2002-11-03 00:01:44 +00:00
|
|
|
}
|
|
|
|
|
2003-07-01 21:06:45 +00:00
|
|
|
U_BOOT_CMD(
|
2008-01-08 17:17:10 +00:00
|
|
|
boot, 1, 1, do_bootd,
|
2009-01-28 00:03:12 +00:00
|
|
|
"boot default, i.e., run 'bootcmd'",
|
2009-05-24 15:06:54 +00:00
|
|
|
""
|
2003-06-28 23:11:04 +00:00
|
|
|
);
|
2002-11-03 00:01:44 +00:00
|
|
|
|
2003-06-28 23:11:04 +00:00
|
|
|
/* keep old command name "bootd" for backward compatibility */
|
2003-07-01 21:06:45 +00:00
|
|
|
U_BOOT_CMD(
|
2008-01-08 17:17:10 +00:00
|
|
|
bootd, 1, 1, do_bootd,
|
2009-01-28 00:03:12 +00:00
|
|
|
"boot default, i.e., run 'bootcmd'",
|
2009-05-24 15:06:54 +00:00
|
|
|
""
|
2003-06-27 21:31:46 +00:00
|
|
|
);
|
2002-11-03 00:01:44 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2008-01-08 17:17:10 +00:00
|
|
|
/*******************************************************************/
|
|
|
|
/* iminfo - print header info for a requested image */
|
|
|
|
/*******************************************************************/
|
2007-07-08 22:51:39 +00:00
|
|
|
#if defined(CONFIG_CMD_IMI)
|
2020-05-10 17:40:03 +00:00
|
|
|
static int do_iminfo(struct cmd_tbl *cmdtp, int flag, int argc,
|
|
|
|
char *const argv[])
|
2002-11-03 00:01:44 +00:00
|
|
|
{
|
|
|
|
int arg;
|
|
|
|
ulong addr;
|
2008-01-08 17:17:10 +00:00
|
|
|
int rcode = 0;
|
2002-11-03 00:01:44 +00:00
|
|
|
|
|
|
|
if (argc < 2) {
|
2019-12-28 17:45:02 +00:00
|
|
|
return image_info(image_load_addr);
|
2002-11-03 00:01:44 +00:00
|
|
|
}
|
|
|
|
|
2008-01-08 17:17:10 +00:00
|
|
|
for (arg = 1; arg < argc; ++arg) {
|
2021-07-24 15:03:29 +00:00
|
|
|
addr = hextoul(argv[arg], NULL);
|
2011-10-18 11:11:49 +00:00
|
|
|
if (image_info(addr) != 0)
|
2008-01-08 17:17:10 +00:00
|
|
|
rcode = 1;
|
2002-11-03 00:01:44 +00:00
|
|
|
}
|
|
|
|
return rcode;
|
|
|
|
}
|
|
|
|
|
2011-10-18 11:11:49 +00:00
|
|
|
static int image_info(ulong addr)
|
2002-11-03 00:01:44 +00:00
|
|
|
{
|
2019-12-02 14:45:50 +00:00
|
|
|
void *hdr = (void *)map_sysmem(addr, 0);
|
2002-11-03 00:01:44 +00:00
|
|
|
|
2011-10-18 11:11:49 +00:00
|
|
|
printf("\n## Checking Image at %08lx ...\n", addr);
|
2002-11-03 00:01:44 +00:00
|
|
|
|
2011-10-18 11:11:49 +00:00
|
|
|
switch (genimg_get_format(hdr)) {
|
2019-05-23 11:14:07 +00:00
|
|
|
#if defined(CONFIG_LEGACY_IMAGE_FORMAT)
|
2008-02-04 07:28:09 +00:00
|
|
|
case IMAGE_FORMAT_LEGACY:
|
2011-10-18 11:11:49 +00:00
|
|
|
puts(" Legacy image found\n");
|
|
|
|
if (!image_check_magic(hdr)) {
|
|
|
|
puts(" Bad Magic Number\n");
|
2019-12-02 14:45:50 +00:00
|
|
|
unmap_sysmem(hdr);
|
2008-02-04 07:28:09 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2002-11-03 00:01:44 +00:00
|
|
|
|
2011-10-18 11:11:49 +00:00
|
|
|
if (!image_check_hcrc(hdr)) {
|
|
|
|
puts(" Bad Header Checksum\n");
|
2019-12-02 14:45:50 +00:00
|
|
|
unmap_sysmem(hdr);
|
2008-02-04 07:28:09 +00:00
|
|
|
return 1;
|
2002-11-03 00:01:44 +00:00
|
|
|
}
|
|
|
|
|
2011-10-18 11:11:49 +00:00
|
|
|
image_print_contents(hdr);
|
2002-11-03 00:01:44 +00:00
|
|
|
|
2011-10-18 11:11:49 +00:00
|
|
|
puts(" Verifying Checksum ... ");
|
|
|
|
if (!image_check_dcrc(hdr)) {
|
|
|
|
puts(" Bad Data CRC\n");
|
2019-12-02 14:45:50 +00:00
|
|
|
unmap_sysmem(hdr);
|
2008-02-04 07:28:09 +00:00
|
|
|
return 1;
|
2002-11-03 00:01:44 +00:00
|
|
|
}
|
2011-10-18 11:11:49 +00:00
|
|
|
puts("OK\n");
|
2019-12-02 14:45:50 +00:00
|
|
|
unmap_sysmem(hdr);
|
2008-02-04 07:28:09 +00:00
|
|
|
return 0;
|
2014-05-28 09:33:33 +00:00
|
|
|
#endif
|
2016-06-10 17:54:37 +00:00
|
|
|
#if defined(CONFIG_ANDROID_BOOT_IMAGE)
|
|
|
|
case IMAGE_FORMAT_ANDROID:
|
|
|
|
puts(" Android image found\n");
|
|
|
|
android_print_contents(hdr);
|
2019-12-02 14:45:50 +00:00
|
|
|
unmap_sysmem(hdr);
|
2016-06-10 17:54:37 +00:00
|
|
|
return 0;
|
|
|
|
#endif
|
2008-02-04 07:28:09 +00:00
|
|
|
#if defined(CONFIG_FIT)
|
|
|
|
case IMAGE_FORMAT_FIT:
|
2011-10-18 11:11:49 +00:00
|
|
|
puts(" FIT image found\n");
|
2002-11-03 00:01:44 +00:00
|
|
|
|
2021-02-16 00:08:09 +00:00
|
|
|
if (fit_check_format(hdr, IMAGE_SIZE_INVAL)) {
|
2011-10-18 11:11:49 +00:00
|
|
|
puts("Bad FIT image format!\n");
|
2019-12-02 14:45:50 +00:00
|
|
|
unmap_sysmem(hdr);
|
2008-03-11 11:35:20 +00:00
|
|
|
return 1;
|
2002-11-03 00:01:44 +00:00
|
|
|
}
|
|
|
|
|
2011-10-18 11:11:49 +00:00
|
|
|
fit_print_contents(hdr);
|
2008-09-09 10:58:16 +00:00
|
|
|
|
2013-05-07 06:11:57 +00:00
|
|
|
if (!fit_all_image_verify(hdr)) {
|
2011-10-18 11:11:49 +00:00
|
|
|
puts("Bad hash in FIT image!\n");
|
2019-12-02 14:45:50 +00:00
|
|
|
unmap_sysmem(hdr);
|
2008-09-09 10:58:16 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2019-12-02 14:45:50 +00:00
|
|
|
unmap_sysmem(hdr);
|
2008-02-04 07:28:09 +00:00
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
default:
|
2011-10-18 11:11:49 +00:00
|
|
|
puts("Unknown image format!\n");
|
2008-02-04 07:28:09 +00:00
|
|
|
break;
|
2002-11-03 00:01:44 +00:00
|
|
|
}
|
|
|
|
|
2019-12-02 14:45:50 +00:00
|
|
|
unmap_sysmem(hdr);
|
2008-02-04 07:28:09 +00:00
|
|
|
return 1;
|
2002-11-03 00:01:44 +00:00
|
|
|
}
|
2003-07-01 21:06:45 +00:00
|
|
|
|
|
|
|
U_BOOT_CMD(
|
2008-10-16 13:01:15 +00:00
|
|
|
iminfo, CONFIG_SYS_MAXARGS, 1, do_iminfo,
|
2009-01-28 00:03:12 +00:00
|
|
|
"print header information for application image",
|
2003-06-27 21:31:46 +00:00
|
|
|
"addr [addr ...]\n"
|
|
|
|
" - print header information for application image starting at\n"
|
|
|
|
" address 'addr' in memory; this includes verification of the\n"
|
2009-05-24 15:06:54 +00:00
|
|
|
" image contents (magic number, header and payload checksums)"
|
2003-06-27 21:31:46 +00:00
|
|
|
);
|
2006-08-16 15:54:09 +00:00
|
|
|
#endif
|
2006-08-22 14:23:55 +00:00
|
|
|
|
2006-08-16 15:54:09 +00:00
|
|
|
|
2008-01-08 17:17:10 +00:00
|
|
|
/*******************************************************************/
|
|
|
|
/* imls - list all images found in flash */
|
|
|
|
/*******************************************************************/
|
2007-07-08 22:51:39 +00:00
|
|
|
#if defined(CONFIG_CMD_IMLS)
|
2012-12-16 22:32:48 +00:00
|
|
|
static int do_imls_nor(void)
|
2003-07-24 23:38:38 +00:00
|
|
|
{
|
|
|
|
flash_info_t *info;
|
|
|
|
int i, j;
|
2008-02-04 07:28:09 +00:00
|
|
|
void *hdr;
|
2006-08-16 15:54:09 +00:00
|
|
|
|
2008-01-08 17:17:10 +00:00
|
|
|
for (i = 0, info = &flash_info[0];
|
2008-10-16 13:01:15 +00:00
|
|
|
i < CONFIG_SYS_MAX_FLASH_BANKS; ++i, ++info) {
|
2006-08-16 15:54:09 +00:00
|
|
|
|
2003-07-24 23:38:38 +00:00
|
|
|
if (info->flash_id == FLASH_UNKNOWN)
|
|
|
|
goto next_bank;
|
2008-01-08 17:17:10 +00:00
|
|
|
for (j = 0; j < info->sector_count; ++j) {
|
2006-08-16 15:54:09 +00:00
|
|
|
|
2008-02-04 07:28:09 +00:00
|
|
|
hdr = (void *)info->start[j];
|
|
|
|
if (!hdr)
|
2008-01-08 17:14:09 +00:00
|
|
|
goto next_sector;
|
2003-07-24 23:38:38 +00:00
|
|
|
|
2011-10-18 11:11:49 +00:00
|
|
|
switch (genimg_get_format(hdr)) {
|
2019-05-23 11:14:07 +00:00
|
|
|
#if defined(CONFIG_LEGACY_IMAGE_FORMAT)
|
2008-02-04 07:28:09 +00:00
|
|
|
case IMAGE_FORMAT_LEGACY:
|
2011-10-18 11:11:49 +00:00
|
|
|
if (!image_check_hcrc(hdr))
|
2008-02-04 07:28:09 +00:00
|
|
|
goto next_sector;
|
|
|
|
|
2011-10-18 11:11:49 +00:00
|
|
|
printf("Legacy Image at %08lX:\n", (ulong)hdr);
|
|
|
|
image_print_contents(hdr);
|
2008-02-04 07:28:09 +00:00
|
|
|
|
2011-10-18 11:11:49 +00:00
|
|
|
puts(" Verifying Checksum ... ");
|
|
|
|
if (!image_check_dcrc(hdr)) {
|
|
|
|
puts("Bad Data CRC\n");
|
2008-02-04 07:28:09 +00:00
|
|
|
} else {
|
2011-10-18 11:11:49 +00:00
|
|
|
puts("OK\n");
|
2008-02-04 07:28:09 +00:00
|
|
|
}
|
|
|
|
break;
|
2014-05-28 09:33:33 +00:00
|
|
|
#endif
|
2008-02-04 07:28:09 +00:00
|
|
|
#if defined(CONFIG_FIT)
|
|
|
|
case IMAGE_FORMAT_FIT:
|
2021-02-16 00:08:09 +00:00
|
|
|
if (fit_check_format(hdr, IMAGE_SIZE_INVAL))
|
2008-03-11 11:35:20 +00:00
|
|
|
goto next_sector;
|
|
|
|
|
2011-10-18 11:11:49 +00:00
|
|
|
printf("FIT Image at %08lX:\n", (ulong)hdr);
|
|
|
|
fit_print_contents(hdr);
|
2008-02-04 07:28:09 +00:00
|
|
|
break;
|
2007-03-31 16:23:51 +00:00
|
|
|
#endif
|
2008-02-04 07:28:09 +00:00
|
|
|
default:
|
2003-07-24 23:38:38 +00:00
|
|
|
goto next_sector;
|
2006-08-16 15:54:09 +00:00
|
|
|
}
|
2006-08-22 14:23:55 +00:00
|
|
|
|
2003-08-05 17:43:17 +00:00
|
|
|
next_sector: ;
|
2006-10-25 04:47:37 +00:00
|
|
|
}
|
2003-08-05 17:43:17 +00:00
|
|
|
next_bank: ;
|
2003-07-24 23:38:38 +00:00
|
|
|
}
|
2012-12-16 22:32:48 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(CONFIG_CMD_IMLS_NAND)
|
2016-05-30 18:57:54 +00:00
|
|
|
static int nand_imls_legacyimage(struct mtd_info *mtd, int nand_dev,
|
|
|
|
loff_t off, size_t len)
|
2012-12-16 22:32:48 +00:00
|
|
|
{
|
|
|
|
void *imgdata;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
imgdata = malloc(len);
|
|
|
|
if (!imgdata) {
|
|
|
|
printf("May be a Legacy Image at NAND device %d offset %08llX:\n",
|
|
|
|
nand_dev, off);
|
|
|
|
printf(" Low memory(cannot allocate memory for image)\n");
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
2017-01-31 21:37:03 +00:00
|
|
|
ret = nand_read_skip_bad(mtd, off, &len, NULL, mtd->size, imgdata);
|
2012-12-16 22:32:48 +00:00
|
|
|
if (ret < 0 && ret != -EUCLEAN) {
|
|
|
|
free(imgdata);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!image_check_hcrc(imgdata)) {
|
|
|
|
free(imgdata);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("Legacy Image at NAND device %d offset %08llX:\n",
|
|
|
|
nand_dev, off);
|
|
|
|
image_print_contents(imgdata);
|
|
|
|
|
|
|
|
puts(" Verifying Checksum ... ");
|
|
|
|
if (!image_check_dcrc(imgdata))
|
|
|
|
puts("Bad Data CRC\n");
|
|
|
|
else
|
|
|
|
puts("OK\n");
|
|
|
|
|
|
|
|
free(imgdata);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-05-30 18:57:54 +00:00
|
|
|
static int nand_imls_fitimage(struct mtd_info *mtd, int nand_dev, loff_t off,
|
|
|
|
size_t len)
|
2012-12-16 22:32:48 +00:00
|
|
|
{
|
|
|
|
void *imgdata;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
imgdata = malloc(len);
|
|
|
|
if (!imgdata) {
|
|
|
|
printf("May be a FIT Image at NAND device %d offset %08llX:\n",
|
|
|
|
nand_dev, off);
|
|
|
|
printf(" Low memory(cannot allocate memory for image)\n");
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
2017-01-31 21:37:03 +00:00
|
|
|
ret = nand_read_skip_bad(mtd, off, &len, NULL, mtd->size, imgdata);
|
2012-12-16 22:32:48 +00:00
|
|
|
if (ret < 0 && ret != -EUCLEAN) {
|
|
|
|
free(imgdata);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2021-02-16 00:08:09 +00:00
|
|
|
if (fit_check_format(imgdata, IMAGE_SIZE_INVAL)) {
|
2012-12-16 22:32:48 +00:00
|
|
|
free(imgdata);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("FIT Image at NAND device %d offset %08llX:\n", nand_dev, off);
|
|
|
|
|
|
|
|
fit_print_contents(imgdata);
|
|
|
|
free(imgdata);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int do_imls_nand(void)
|
|
|
|
{
|
2016-05-30 18:57:54 +00:00
|
|
|
struct mtd_info *mtd;
|
2012-12-16 22:32:48 +00:00
|
|
|
int nand_dev = nand_curr_device;
|
|
|
|
size_t len;
|
|
|
|
loff_t off;
|
|
|
|
u32 buffer[16];
|
|
|
|
|
|
|
|
if (nand_dev < 0 || nand_dev >= CONFIG_SYS_MAX_NAND_DEVICE) {
|
|
|
|
puts("\nNo NAND devices available\n");
|
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("\n");
|
|
|
|
|
|
|
|
for (nand_dev = 0; nand_dev < CONFIG_SYS_MAX_NAND_DEVICE; nand_dev++) {
|
2017-06-27 00:12:54 +00:00
|
|
|
mtd = get_nand_dev_by_index(nand_dev);
|
2016-05-30 18:57:54 +00:00
|
|
|
if (!mtd->name || !mtd->size)
|
2012-12-16 22:32:48 +00:00
|
|
|
continue;
|
|
|
|
|
2016-05-30 18:57:54 +00:00
|
|
|
for (off = 0; off < mtd->size; off += mtd->erasesize) {
|
2012-12-16 22:32:48 +00:00
|
|
|
const image_header_t *header;
|
|
|
|
int ret;
|
|
|
|
|
2016-05-30 18:57:54 +00:00
|
|
|
if (nand_block_isbad(mtd, off))
|
2012-12-16 22:32:48 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
len = sizeof(buffer);
|
|
|
|
|
2016-05-30 18:57:54 +00:00
|
|
|
ret = nand_read(mtd, off, &len, (u8 *)buffer);
|
2012-12-16 22:32:48 +00:00
|
|
|
if (ret < 0 && ret != -EUCLEAN) {
|
|
|
|
printf("NAND read error %d at offset %08llX\n",
|
|
|
|
ret, off);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (genimg_get_format(buffer)) {
|
2019-05-23 11:14:07 +00:00
|
|
|
#if defined(CONFIG_LEGACY_IMAGE_FORMAT)
|
2012-12-16 22:32:48 +00:00
|
|
|
case IMAGE_FORMAT_LEGACY:
|
|
|
|
header = (const image_header_t *)buffer;
|
|
|
|
|
|
|
|
len = image_get_image_size(header);
|
2016-05-30 18:57:54 +00:00
|
|
|
nand_imls_legacyimage(mtd, nand_dev, off, len);
|
2012-12-16 22:32:48 +00:00
|
|
|
break;
|
2014-05-28 09:33:33 +00:00
|
|
|
#endif
|
2012-12-16 22:32:48 +00:00
|
|
|
#if defined(CONFIG_FIT)
|
|
|
|
case IMAGE_FORMAT_FIT:
|
|
|
|
len = fit_get_size(buffer);
|
2016-05-30 18:57:54 +00:00
|
|
|
nand_imls_fitimage(mtd, nand_dev, off, len);
|
2012-12-16 22:32:48 +00:00
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(CONFIG_CMD_IMLS) || defined(CONFIG_CMD_IMLS_NAND)
|
2020-05-10 17:40:03 +00:00
|
|
|
static int do_imls(struct cmd_tbl *cmdtp, int flag, int argc,
|
|
|
|
char *const argv[])
|
2012-12-16 22:32:48 +00:00
|
|
|
{
|
|
|
|
int ret_nor = 0, ret_nand = 0;
|
|
|
|
|
|
|
|
#if defined(CONFIG_CMD_IMLS)
|
|
|
|
ret_nor = do_imls_nor();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(CONFIG_CMD_IMLS_NAND)
|
|
|
|
ret_nand = do_imls_nand();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (ret_nor)
|
|
|
|
return ret_nor;
|
|
|
|
|
|
|
|
if (ret_nand)
|
|
|
|
return ret_nand;
|
2006-10-25 04:47:37 +00:00
|
|
|
|
2003-07-24 23:38:38 +00:00
|
|
|
return (0);
|
|
|
|
}
|
2006-10-25 04:47:37 +00:00
|
|
|
|
2003-07-24 23:38:38 +00:00
|
|
|
U_BOOT_CMD(
|
|
|
|
imls, 1, 1, do_imls,
|
2009-01-28 00:03:12 +00:00
|
|
|
"list all images found in flash",
|
2003-07-24 23:38:38 +00:00
|
|
|
"\n"
|
2012-12-16 22:32:48 +00:00
|
|
|
" - Prints information about all images found at sector/block\n"
|
|
|
|
" boundaries in nor/nand flash."
|
2003-07-24 23:38:38 +00:00
|
|
|
);
|
2006-06-28 15:41:37 +00:00
|
|
|
#endif
|