blob: 6a1159879edc4abb98a415bf369be8b02e621ca3 [file] [log] [blame]
wdenkc6097192002-11-03 00:24:07 +00001/*
2 * (C) Copyright 2000
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenkc6097192002-11-03 00:24:07 +00006 */
7
wdenk9dd2b882002-12-03 21:28:10 +00008/* #define DEBUG */
9
wdenkc6097192002-11-03 00:24:07 +000010#include <common.h>
Simon Glass7b6a95a2014-04-10 20:01:28 -060011#include <autoboot.h>
Simon Glassdec3c012014-04-10 20:01:25 -060012#include <cli.h>
Simon Glassa73bda42015-11-08 23:47:45 -070013#include <console.h>
Simon Glassb2b687f2013-05-15 06:23:59 +000014#include <version.h>
wdenk0a658552003-08-05 17:43:17 +000015
Simon Glasse3a762c2014-04-10 20:01:32 -060016DECLARE_GLOBAL_DATA_PTR;
17
Heiko Schocher8a8ec532007-07-13 09:54:17 +020018/*
19 * Board-specific Platform code can reimplement show_boot_progress () if needed
20 */
Jeroen Hofsteeb735e8c2014-06-26 20:18:31 +020021__weak void show_boot_progress(int val) {}
Heiko Schocher8a8ec532007-07-13 09:54:17 +020022
Simon Glass9f6bb182014-04-10 20:01:33 -060023static void run_preboot_environment_command(void)
24{
Simon Glassde6f0c42013-05-15 06:23:56 +000025#ifdef CONFIG_PREBOOT
Simon Glass9f6bb182014-04-10 20:01:33 -060026 char *p;
27
Simon Glass64b723f2017-08-03 12:22:12 -060028 p = env_get("preboot");
Simon Glassde6f0c42013-05-15 06:23:56 +000029 if (p != NULL) {
30# ifdef CONFIG_AUTOBOOT_KEYED
31 int prev = disable_ctrlc(1); /* disable Control C checking */
32# endif
33
34 run_command_list(p, -1, 0);
35
36# ifdef CONFIG_AUTOBOOT_KEYED
37 disable_ctrlc(prev); /* restore Control C checking */
38# endif
39 }
40#endif /* CONFIG_PREBOOT */
Simon Glass9f6bb182014-04-10 20:01:33 -060041}
42
Simon Glass5b47e302014-04-10 20:01:35 -060043/* We come here after U-Boot is initialised and ready to process commands */
Simon Glass9f6bb182014-04-10 20:01:33 -060044void main_loop(void)
45{
Simon Glass5b47e302014-04-10 20:01:35 -060046 const char *s;
47
Simon Glass9f6bb182014-04-10 20:01:33 -060048 bootstage_mark_name(BOOTSTAGE_ID_MAIN_LOOP, "main_loop");
49
Simon Glass9f6bb182014-04-10 20:01:33 -060050#ifdef CONFIG_VERSION_VARIABLE
Simon Glass6a38e412017-08-03 12:22:09 -060051 env_set("ver", version_string); /* set version variable */
Simon Glass9f6bb182014-04-10 20:01:33 -060052#endif /* CONFIG_VERSION_VARIABLE */
53
Simon Glass33f79132014-04-10 20:01:34 -060054 cli_init();
Simon Glass9f6bb182014-04-10 20:01:33 -060055
56 run_preboot_environment_command();
Simon Glassde6f0c42013-05-15 06:23:56 +000057
58#if defined(CONFIG_UPDATE_TFTP)
Lukasz Majewskie32125a2015-08-24 00:21:47 +020059 update_tftp(0UL, NULL, NULL);
Simon Glassde6f0c42013-05-15 06:23:56 +000060#endif /* CONFIG_UPDATE_TFTP */
61
Simon Glass5b47e302014-04-10 20:01:35 -060062 s = bootdelay_process();
63 if (cli_process_fdt(&s))
64 cli_secure_boot_cmd(s);
65
66 autoboot_command(s);
Simon Glass33f79132014-04-10 20:01:34 -060067
Simon Glass66b8c8b2014-04-10 20:01:26 -060068 cli_loop();
Simon Glass28332902016-03-13 19:07:32 -060069 panic("No CLI available");
wdenkc6097192002-11-03 00:24:07 +000070}