2002-11-03 00:38:21 +00:00
|
|
|
/*
|
2003-06-27 21:31:46 +00:00
|
|
|
* (C) Copyright 2000-2003
|
2002-11-03 00:38:21 +00:00
|
|
|
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2002-11-03 00:38:21 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2003-06-27 21:31:46 +00:00
|
|
|
* Misc boot support
|
2002-11-03 00:38:21 +00:00
|
|
|
*/
|
|
|
|
#include <common.h>
|
|
|
|
#include <command.h>
|
|
|
|
#include <net.h>
|
|
|
|
|
2010-12-27 04:32:22 +00:00
|
|
|
#ifdef CONFIG_CMD_GO
|
|
|
|
|
2008-04-13 23:42:19 +00:00
|
|
|
/* Allow ports to override the default behavior */
|
|
|
|
__attribute__((weak))
|
2012-10-29 13:34:31 +00:00
|
|
|
unsigned long do_go_exec(ulong (*entry)(int, char * const []), int argc,
|
|
|
|
char * const argv[])
|
2008-01-29 23:21:05 +00:00
|
|
|
{
|
2008-04-13 23:42:19 +00:00
|
|
|
return entry (argc, argv);
|
2008-01-29 23:21:05 +00:00
|
|
|
}
|
|
|
|
|
2012-10-29 13:34:31 +00:00
|
|
|
static int do_go(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
2002-11-03 00:38:21 +00:00
|
|
|
{
|
|
|
|
ulong addr, rc;
|
|
|
|
int rcode = 0;
|
|
|
|
|
2010-07-16 23:06:04 +00:00
|
|
|
if (argc < 2)
|
2011-12-10 08:44:01 +00:00
|
|
|
return CMD_RET_USAGE;
|
2002-11-03 00:38:21 +00:00
|
|
|
|
|
|
|
addr = simple_strtoul(argv[1], NULL, 16);
|
|
|
|
|
2003-03-26 06:55:25 +00:00
|
|
|
printf ("## Starting application at 0x%08lX ...\n", addr);
|
2002-11-03 00:38:21 +00:00
|
|
|
|
2003-10-08 23:26:14 +00:00
|
|
|
/*
|
2008-01-29 23:21:05 +00:00
|
|
|
* pass address parameter as argv[0] (aka command name),
|
|
|
|
* and all remaining args
|
2003-10-08 23:26:14 +00:00
|
|
|
*/
|
2008-04-13 23:42:19 +00:00
|
|
|
rc = do_go_exec ((void *)addr, argc - 1, argv + 1);
|
2002-11-03 00:38:21 +00:00
|
|
|
if (rc != 0) rcode = 1;
|
|
|
|
|
2003-03-26 06:55:25 +00:00
|
|
|
printf ("## Application terminated, rc = 0x%lX\n", rc);
|
2002-11-03 00:38:21 +00:00
|
|
|
return rcode;
|
|
|
|
}
|
|
|
|
|
2003-06-27 21:31:46 +00:00
|
|
|
/* -------------------------------------------------------------------- */
|
2002-11-03 00:38:21 +00:00
|
|
|
|
2003-07-01 21:06:45 +00:00
|
|
|
U_BOOT_CMD(
|
2008-10-16 13:01:15 +00:00
|
|
|
go, CONFIG_SYS_MAXARGS, 1, do_go,
|
2009-01-28 00:03:12 +00:00
|
|
|
"start application at address 'addr'",
|
2003-06-27 21:31:46 +00:00
|
|
|
"addr [arg ...]\n - start application at address 'addr'\n"
|
2009-05-24 15:06:54 +00:00
|
|
|
" passing 'arg' as arguments"
|
2003-06-27 21:31:46 +00:00
|
|
|
);
|
2002-11-03 00:38:21 +00:00
|
|
|
|
2010-12-27 04:32:22 +00:00
|
|
|
#endif
|
|
|
|
|
2003-07-01 21:06:45 +00:00
|
|
|
U_BOOT_CMD(
|
2007-01-13 10:17:10 +00:00
|
|
|
reset, 1, 0, do_reset,
|
2009-01-28 00:03:12 +00:00
|
|
|
"Perform RESET of the CPU",
|
2009-05-24 15:06:54 +00:00
|
|
|
""
|
2003-06-27 21:31:46 +00:00
|
|
|
);
|
2016-01-13 18:31:17 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_CMD_POWEROFF
|
|
|
|
U_BOOT_CMD(
|
|
|
|
poweroff, 1, 0, do_poweroff,
|
|
|
|
"Perform POWEROFF of the device",
|
|
|
|
""
|
|
|
|
);
|
|
|
|
#endif
|