blob: 82d3aafa53c916229a206e84d053b44d53963257 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenkc6097192002-11-03 00:24:07 +00002/*
3 * (C) Copyright 2000
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
wdenkc6097192002-11-03 00:24:07 +00005 */
6
wdenka6c7ad22002-12-03 21:28:10 +00007/* #define DEBUG */
8
Tom Rinid678a592024-05-18 20:20:43 -06009#include <common.h>
Simon Glass66ded172014-04-10 20:01:28 -060010#include <autoboot.h>
Caleb Connollye7610352024-01-09 11:51:09 +000011#include <button.h>
Simon Glass52f24232020-05-10 11:40:00 -060012#include <bootstage.h>
Simon Glass1047b532023-11-18 14:05:19 -070013#include <bootstd.h>
Simon Glass18d66532014-04-10 20:01:25 -060014#include <cli.h>
Simon Glass288b29e2019-11-14 12:57:43 -070015#include <command.h>
Simon Glass24b852a2015-11-08 23:47:45 -070016#include <console.h>
Simon Glass9fb625c2019-08-01 09:46:51 -060017#include <env.h>
Ivan Mikhaylov4023dc92023-03-08 01:13:39 +000018#include <fdtdec.h>
Simon Glass6b8d3ce2019-12-28 10:44:39 -070019#include <init.h>
Simon Glass90526e92020-05-10 11:39:56 -060020#include <net.h>
Pali Rohárbdfb6d72021-08-02 15:18:31 +020021#include <version_string.h>
AKASHI Takahiroc74cd8b2020-11-17 09:27:56 +090022#include <efi_loader.h>
wdenkbdccc4f2003-08-05 17:43:17 +000023
Simon Glass1364a0e2014-04-10 20:01:33 -060024static void run_preboot_environment_command(void)
25{
Simon Glass1364a0e2014-04-10 20:01:33 -060026 char *p;
27
Simon Glass00caae62017-08-03 12:22:12 -060028 p = env_get("preboot");
Simon Glassbc2b4c22013-05-15 06:23:56 +000029 if (p != NULL) {
Simon Glass2cb132a2018-11-25 20:05:54 -070030 int prev = 0;
31
32 if (IS_ENABLED(CONFIG_AUTOBOOT_KEYED))
33 prev = disable_ctrlc(1); /* disable Ctrl-C checking */
Simon Glassbc2b4c22013-05-15 06:23:56 +000034
35 run_command_list(p, -1, 0);
36
Simon Glass2cb132a2018-11-25 20:05:54 -070037 if (IS_ENABLED(CONFIG_AUTOBOOT_KEYED))
38 disable_ctrlc(prev); /* restore Ctrl-C checking */
Simon Glassbc2b4c22013-05-15 06:23:56 +000039 }
Simon Glass1364a0e2014-04-10 20:01:33 -060040}
41
Simon Glassaffb2152014-04-10 20:01:35 -060042/* We come here after U-Boot is initialised and ready to process commands */
Simon Glass1364a0e2014-04-10 20:01:33 -060043void main_loop(void)
44{
Simon Glassaffb2152014-04-10 20:01:35 -060045 const char *s;
46
Simon Glass1364a0e2014-04-10 20:01:33 -060047 bootstage_mark_name(BOOTSTAGE_ID_MAIN_LOOP, "main_loop");
48
Simon Glass2cb132a2018-11-25 20:05:54 -070049 if (IS_ENABLED(CONFIG_VERSION_VARIABLE))
50 env_set("ver", version_string); /* set version variable */
Simon Glass1364a0e2014-04-10 20:01:33 -060051
Simon Glassc1bb2cd2014-04-10 20:01:34 -060052 cli_init();
Simon Glass1364a0e2014-04-10 20:01:33 -060053
Simon Glasse9f6a372019-07-20 20:51:11 -060054 if (IS_ENABLED(CONFIG_USE_PREBOOT))
55 run_preboot_environment_command();
Simon Glassbc2b4c22013-05-15 06:23:56 +000056
Simon Glass2cb132a2018-11-25 20:05:54 -070057 if (IS_ENABLED(CONFIG_UPDATE_TFTP))
58 update_tftp(0UL, NULL, NULL);
Simon Glassbc2b4c22013-05-15 06:23:56 +000059
AKASHI Takahiroa57ad202022-04-19 10:05:11 +090060 if (IS_ENABLED(CONFIG_EFI_CAPSULE_ON_DISK_EARLY)) {
61 /* efi_init_early() already called */
62 if (efi_init_obj_list() == EFI_SUCCESS)
63 efi_launch_capsules();
64 }
AKASHI Takahiroc74cd8b2020-11-17 09:27:56 +090065
Caleb Connollye7610352024-01-09 11:51:09 +000066 process_button_cmds();
67
Simon Glassaffb2152014-04-10 20:01:35 -060068 s = bootdelay_process();
69 if (cli_process_fdt(&s))
70 cli_secure_boot_cmd(s);
71
72 autoboot_command(s);
Simon Glassc1bb2cd2014-04-10 20:01:34 -060073
Simon Glass1047b532023-11-18 14:05:19 -070074 /* if standard boot if enabled, assume that it will be able to boot */
75 if (IS_ENABLED(CONFIG_BOOTSTD_PROG)) {
76 int ret;
77
78 ret = bootstd_prog_boot();
79 printf("Standard boot failed (err=%dE)\n", ret);
80 panic("Failed to boot");
81 }
82
Simon Glass6493ccc2014-04-10 20:01:26 -060083 cli_loop();
Simon Glass1047b532023-11-18 14:05:19 -070084
Simon Glass045e6f02016-03-13 19:07:32 -060085 panic("No CLI available");
wdenkc6097192002-11-03 00:24:07 +000086}