2018-05-07 05:58:06 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2002-11-03 08:24:07 +08:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2000
|
|
|
|
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
*/
|
|
|
|
|
2002-12-04 05:28:10 +08:00
|
|
|
/* #define DEBUG */
|
|
|
|
|
2002-11-03 08:24:07 +08:00
|
|
|
#include <common.h>
|
2014-04-11 10:01:28 +08:00
|
|
|
#include <autoboot.h>
|
2014-04-11 10:01:25 +08:00
|
|
|
#include <cli.h>
|
2019-11-15 03:57:43 +08:00
|
|
|
#include <command.h>
|
2015-11-09 14:47:45 +08:00
|
|
|
#include <console.h>
|
2019-08-01 23:46:51 +08:00
|
|
|
#include <env.h>
|
2013-05-15 14:23:59 +08:00
|
|
|
#include <version.h>
|
2003-08-06 01:43:17 +08:00
|
|
|
|
2007-07-13 15:54:17 +08:00
|
|
|
/*
|
|
|
|
* Board-specific Platform code can reimplement show_boot_progress () if needed
|
|
|
|
*/
|
2014-06-27 02:18:31 +08:00
|
|
|
__weak void show_boot_progress(int val) {}
|
2007-07-13 15:54:17 +08:00
|
|
|
|
2014-04-11 10:01:33 +08:00
|
|
|
static void run_preboot_environment_command(void)
|
|
|
|
{
|
|
|
|
char *p;
|
|
|
|
|
2017-08-04 02:22:12 +08:00
|
|
|
p = env_get("preboot");
|
2013-05-15 14:23:56 +08:00
|
|
|
if (p != NULL) {
|
2018-11-26 11:05:54 +08:00
|
|
|
int prev = 0;
|
|
|
|
|
|
|
|
if (IS_ENABLED(CONFIG_AUTOBOOT_KEYED))
|
|
|
|
prev = disable_ctrlc(1); /* disable Ctrl-C checking */
|
2013-05-15 14:23:56 +08:00
|
|
|
|
|
|
|
run_command_list(p, -1, 0);
|
|
|
|
|
2018-11-26 11:05:54 +08:00
|
|
|
if (IS_ENABLED(CONFIG_AUTOBOOT_KEYED))
|
|
|
|
disable_ctrlc(prev); /* restore Ctrl-C checking */
|
2013-05-15 14:23:56 +08:00
|
|
|
}
|
2014-04-11 10:01:33 +08:00
|
|
|
}
|
|
|
|
|
2014-04-11 10:01:35 +08:00
|
|
|
/* We come here after U-Boot is initialised and ready to process commands */
|
2014-04-11 10:01:33 +08:00
|
|
|
void main_loop(void)
|
|
|
|
{
|
2014-04-11 10:01:35 +08:00
|
|
|
const char *s;
|
|
|
|
|
2014-04-11 10:01:33 +08:00
|
|
|
bootstage_mark_name(BOOTSTAGE_ID_MAIN_LOOP, "main_loop");
|
|
|
|
|
2018-11-26 11:05:54 +08:00
|
|
|
if (IS_ENABLED(CONFIG_VERSION_VARIABLE))
|
|
|
|
env_set("ver", version_string); /* set version variable */
|
2014-04-11 10:01:33 +08:00
|
|
|
|
2014-04-11 10:01:34 +08:00
|
|
|
cli_init();
|
2014-04-11 10:01:33 +08:00
|
|
|
|
2019-07-21 10:51:11 +08:00
|
|
|
if (IS_ENABLED(CONFIG_USE_PREBOOT))
|
|
|
|
run_preboot_environment_command();
|
2013-05-15 14:23:56 +08:00
|
|
|
|
2018-11-26 11:05:54 +08:00
|
|
|
if (IS_ENABLED(CONFIG_UPDATE_TFTP))
|
|
|
|
update_tftp(0UL, NULL, NULL);
|
2013-05-15 14:23:56 +08:00
|
|
|
|
2014-04-11 10:01:35 +08:00
|
|
|
s = bootdelay_process();
|
|
|
|
if (cli_process_fdt(&s))
|
|
|
|
cli_secure_boot_cmd(s);
|
|
|
|
|
|
|
|
autoboot_command(s);
|
2014-04-11 10:01:34 +08:00
|
|
|
|
2014-04-11 10:01:26 +08:00
|
|
|
cli_loop();
|
2016-03-14 09:07:32 +08:00
|
|
|
panic("No CLI available");
|
2002-11-03 08:24:07 +08:00
|
|
|
}
|