blob: 6dba6cba144bfa093e4d55e1eebcfd8f4451ef24 [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
wdenkc6097192002-11-03 00:24:07 +00009#include <common.h>
Simon Glass66ded172014-04-10 20:01:28 -060010#include <autoboot.h>
Simon Glass52f24232020-05-10 11:40:00 -060011#include <bootstage.h>
Simon Glass1047b532023-11-18 14:05:19 -070012#include <bootstd.h>
Simon Glass18d66532014-04-10 20:01:25 -060013#include <cli.h>
Simon Glass288b29e2019-11-14 12:57:43 -070014#include <command.h>
Simon Glass24b852a2015-11-08 23:47:45 -070015#include <console.h>
Simon Glass9fb625c2019-08-01 09:46:51 -060016#include <env.h>
Ivan Mikhaylov4023dc92023-03-08 01:13:39 +000017#include <fdtdec.h>
Simon Glass6b8d3ce2019-12-28 10:44:39 -070018#include <init.h>
Simon Glass90526e92020-05-10 11:39:56 -060019#include <net.h>
Pali Rohárbdfb6d72021-08-02 15:18:31 +020020#include <version_string.h>
AKASHI Takahiroc74cd8b2020-11-17 09:27:56 +090021#include <efi_loader.h>
wdenkbdccc4f2003-08-05 17:43:17 +000022
Simon Glass1364a0e2014-04-10 20:01:33 -060023static void run_preboot_environment_command(void)
24{
Simon Glass1364a0e2014-04-10 20:01:33 -060025 char *p;
26
Simon Glass00caae62017-08-03 12:22:12 -060027 p = env_get("preboot");
Simon Glassbc2b4c22013-05-15 06:23:56 +000028 if (p != NULL) {
Simon Glass2cb132a2018-11-25 20:05:54 -070029 int prev = 0;
30
31 if (IS_ENABLED(CONFIG_AUTOBOOT_KEYED))
32 prev = disable_ctrlc(1); /* disable Ctrl-C checking */
Simon Glassbc2b4c22013-05-15 06:23:56 +000033
34 run_command_list(p, -1, 0);
35
Simon Glass2cb132a2018-11-25 20:05:54 -070036 if (IS_ENABLED(CONFIG_AUTOBOOT_KEYED))
37 disable_ctrlc(prev); /* restore Ctrl-C checking */
Simon Glassbc2b4c22013-05-15 06:23:56 +000038 }
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 Glass2cb132a2018-11-25 20:05:54 -070048 if (IS_ENABLED(CONFIG_VERSION_VARIABLE))
49 env_set("ver", version_string); /* set version variable */
Simon Glass1364a0e2014-04-10 20:01:33 -060050
Simon Glassc1bb2cd2014-04-10 20:01:34 -060051 cli_init();
Simon Glass1364a0e2014-04-10 20:01:33 -060052
Simon Glasse9f6a372019-07-20 20:51:11 -060053 if (IS_ENABLED(CONFIG_USE_PREBOOT))
54 run_preboot_environment_command();
Simon Glassbc2b4c22013-05-15 06:23:56 +000055
Simon Glass2cb132a2018-11-25 20:05:54 -070056 if (IS_ENABLED(CONFIG_UPDATE_TFTP))
57 update_tftp(0UL, NULL, NULL);
Simon Glassbc2b4c22013-05-15 06:23:56 +000058
AKASHI Takahiroa57ad202022-04-19 10:05:11 +090059 if (IS_ENABLED(CONFIG_EFI_CAPSULE_ON_DISK_EARLY)) {
60 /* efi_init_early() already called */
61 if (efi_init_obj_list() == EFI_SUCCESS)
62 efi_launch_capsules();
63 }
AKASHI Takahiroc74cd8b2020-11-17 09:27:56 +090064
Simon Glassaffb2152014-04-10 20:01:35 -060065 s = bootdelay_process();
66 if (cli_process_fdt(&s))
67 cli_secure_boot_cmd(s);
68
69 autoboot_command(s);
Simon Glassc1bb2cd2014-04-10 20:01:34 -060070
Simon Glass1047b532023-11-18 14:05:19 -070071 /* if standard boot if enabled, assume that it will be able to boot */
72 if (IS_ENABLED(CONFIG_BOOTSTD_PROG)) {
73 int ret;
74
75 ret = bootstd_prog_boot();
76 printf("Standard boot failed (err=%dE)\n", ret);
77 panic("Failed to boot");
78 }
79
Simon Glass6493ccc2014-04-10 20:01:26 -060080 cli_loop();
Simon Glass1047b532023-11-18 14:05:19 -070081
Simon Glass045e6f02016-03-13 19:07:32 -060082 panic("No CLI available");
wdenkc6097192002-11-03 00:24:07 +000083}