blob: 66a03a156eb67e3086460b5cd7a156f7dcda9499 [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 Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenkc6097192002-11-03 00:24:07 +00006 */
7
wdenka6c7ad22002-12-03 21:28:10 +00008/* #define DEBUG */
9
wdenkc6097192002-11-03 00:24:07 +000010#include <common.h>
Simon Glass66ded172014-04-10 20:01:28 -060011#include <autoboot.h>
Simon Glass18d66532014-04-10 20:01:25 -060012#include <cli.h>
Simon Glass24b852a2015-11-08 23:47:45 -070013#include <console.h>
Simon Glassfbcdf322013-05-15 06:23:59 +000014#include <version.h>
wdenkbdccc4f2003-08-05 17:43:17 +000015
Heiko Schocherfad63402007-07-13 09:54:17 +020016/*
17 * Board-specific Platform code can reimplement show_boot_progress () if needed
18 */
Jeroen Hofstee34222992014-06-26 20:18:31 +020019__weak void show_boot_progress(int val) {}
Heiko Schocherfad63402007-07-13 09:54:17 +020020
Simon Glass1364a0e2014-04-10 20:01:33 -060021static void run_preboot_environment_command(void)
22{
Simon Glassbc2b4c22013-05-15 06:23:56 +000023#ifdef CONFIG_PREBOOT
Simon Glass1364a0e2014-04-10 20:01:33 -060024 char *p;
25
Simon Glass00caae62017-08-03 12:22:12 -060026 p = env_get("preboot");
Simon Glassbc2b4c22013-05-15 06:23:56 +000027 if (p != NULL) {
28# ifdef CONFIG_AUTOBOOT_KEYED
29 int prev = disable_ctrlc(1); /* disable Control C checking */
30# endif
31
32 run_command_list(p, -1, 0);
33
34# ifdef CONFIG_AUTOBOOT_KEYED
35 disable_ctrlc(prev); /* restore Control C checking */
36# endif
37 }
38#endif /* CONFIG_PREBOOT */
Simon Glass1364a0e2014-04-10 20:01:33 -060039}
40
Simon Glassaffb2152014-04-10 20:01:35 -060041/* We come here after U-Boot is initialised and ready to process commands */
Simon Glass1364a0e2014-04-10 20:01:33 -060042void main_loop(void)
43{
Simon Glassaffb2152014-04-10 20:01:35 -060044 const char *s;
45
Simon Glass1364a0e2014-04-10 20:01:33 -060046 bootstage_mark_name(BOOTSTAGE_ID_MAIN_LOOP, "main_loop");
47
Simon Glass1364a0e2014-04-10 20:01:33 -060048#ifdef CONFIG_VERSION_VARIABLE
Simon Glass382bee52017-08-03 12:22:09 -060049 env_set("ver", version_string); /* set version variable */
Simon Glass1364a0e2014-04-10 20:01:33 -060050#endif /* CONFIG_VERSION_VARIABLE */
51
Simon Glassc1bb2cd2014-04-10 20:01:34 -060052 cli_init();
Simon Glass1364a0e2014-04-10 20:01:33 -060053
54 run_preboot_environment_command();
Simon Glassbc2b4c22013-05-15 06:23:56 +000055
56#if defined(CONFIG_UPDATE_TFTP)
Lukasz Majewskic7ff5522015-08-24 00:21:47 +020057 update_tftp(0UL, NULL, NULL);
Simon Glassbc2b4c22013-05-15 06:23:56 +000058#endif /* CONFIG_UPDATE_TFTP */
59
Simon Glassaffb2152014-04-10 20:01:35 -060060 s = bootdelay_process();
61 if (cli_process_fdt(&s))
62 cli_secure_boot_cmd(s);
63
64 autoboot_command(s);
Simon Glassc1bb2cd2014-04-10 20:01:34 -060065
Simon Glass6493ccc2014-04-10 20:01:26 -060066 cli_loop();
Simon Glass045e6f02016-03-13 19:07:32 -060067 panic("No CLI available");
wdenkc6097192002-11-03 00:24:07 +000068}