Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 2 | /* |
3 | * (C) Copyright 2000 | ||||
4 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. | ||||
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 5 | */ |
6 | |||||
wdenk | 9dd2b88 | 2002-12-03 21:28:10 +0000 | [diff] [blame] | 7 | /* #define DEBUG */ |
8 | |||||
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 9 | #include <common.h> |
Simon Glass | 7b6a95a | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 10 | #include <autoboot.h> |
Simon Glass | 1ea9789 | 2020-05-10 11:40:00 -0600 | [diff] [blame] | 11 | #include <bootstage.h> |
Simon Glass | dec3c01 | 2014-04-10 20:01:25 -0600 | [diff] [blame] | 12 | #include <cli.h> |
Simon Glass | adaaa48 | 2019-11-14 12:57:43 -0700 | [diff] [blame] | 13 | #include <command.h> |
Simon Glass | a73bda4 | 2015-11-08 23:47:45 -0700 | [diff] [blame] | 14 | #include <console.h> |
Simon Glass | 5e6201b | 2019-08-01 09:46:51 -0600 | [diff] [blame] | 15 | #include <env.h> |
Simon Glass | a5037e2 | 2019-12-28 10:44:39 -0700 | [diff] [blame] | 16 | #include <init.h> |
Simon Glass | 274e0b0 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 17 | #include <net.h> |
Pali Rohár | ba87ddf | 2021-08-02 15:18:31 +0200 | [diff] [blame] | 18 | #include <version_string.h> |
AKASHI Takahiro | 45b81954 | 2020-11-17 09:27:56 +0900 | [diff] [blame] | 19 | #include <efi_loader.h> |
wdenk | 0a65855 | 2003-08-05 17:43:17 +0000 | [diff] [blame] | 20 | |
Simon Glass | 9f6bb18 | 2014-04-10 20:01:33 -0600 | [diff] [blame] | 21 | static void run_preboot_environment_command(void) |
22 | { | ||||
Simon Glass | 9f6bb18 | 2014-04-10 20:01:33 -0600 | [diff] [blame] | 23 | char *p; |
24 | |||||
Simon Glass | 64b723f | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 25 | p = env_get("preboot"); |
Simon Glass | de6f0c4 | 2013-05-15 06:23:56 +0000 | [diff] [blame] | 26 | if (p != NULL) { |
Simon Glass | 9afb462 | 2018-11-25 20:05:54 -0700 | [diff] [blame] | 27 | int prev = 0; |
28 | |||||
29 | if (IS_ENABLED(CONFIG_AUTOBOOT_KEYED)) | ||||
30 | prev = disable_ctrlc(1); /* disable Ctrl-C checking */ | ||||
Simon Glass | de6f0c4 | 2013-05-15 06:23:56 +0000 | [diff] [blame] | 31 | |
32 | run_command_list(p, -1, 0); | ||||
33 | |||||
Simon Glass | 9afb462 | 2018-11-25 20:05:54 -0700 | [diff] [blame] | 34 | if (IS_ENABLED(CONFIG_AUTOBOOT_KEYED)) |
35 | disable_ctrlc(prev); /* restore Ctrl-C checking */ | ||||
Simon Glass | de6f0c4 | 2013-05-15 06:23:56 +0000 | [diff] [blame] | 36 | } |
Simon Glass | 9f6bb18 | 2014-04-10 20:01:33 -0600 | [diff] [blame] | 37 | } |
38 | |||||
Simon Glass | 5b47e30 | 2014-04-10 20:01:35 -0600 | [diff] [blame] | 39 | /* We come here after U-Boot is initialised and ready to process commands */ |
Simon Glass | 9f6bb18 | 2014-04-10 20:01:33 -0600 | [diff] [blame] | 40 | void main_loop(void) |
41 | { | ||||
Simon Glass | 5b47e30 | 2014-04-10 20:01:35 -0600 | [diff] [blame] | 42 | const char *s; |
43 | |||||
Simon Glass | 9f6bb18 | 2014-04-10 20:01:33 -0600 | [diff] [blame] | 44 | bootstage_mark_name(BOOTSTAGE_ID_MAIN_LOOP, "main_loop"); |
45 | |||||
Simon Glass | 9afb462 | 2018-11-25 20:05:54 -0700 | [diff] [blame] | 46 | if (IS_ENABLED(CONFIG_VERSION_VARIABLE)) |
47 | env_set("ver", version_string); /* set version variable */ | ||||
Simon Glass | 9f6bb18 | 2014-04-10 20:01:33 -0600 | [diff] [blame] | 48 | |
Simon Glass | 33f7913 | 2014-04-10 20:01:34 -0600 | [diff] [blame] | 49 | cli_init(); |
Simon Glass | 9f6bb18 | 2014-04-10 20:01:33 -0600 | [diff] [blame] | 50 | |
Simon Glass | 675cfaf | 2019-07-20 20:51:11 -0600 | [diff] [blame] | 51 | if (IS_ENABLED(CONFIG_USE_PREBOOT)) |
52 | run_preboot_environment_command(); | ||||
Simon Glass | de6f0c4 | 2013-05-15 06:23:56 +0000 | [diff] [blame] | 53 | |
Simon Glass | 9afb462 | 2018-11-25 20:05:54 -0700 | [diff] [blame] | 54 | if (IS_ENABLED(CONFIG_UPDATE_TFTP)) |
55 | update_tftp(0UL, NULL, NULL); | ||||
Simon Glass | de6f0c4 | 2013-05-15 06:23:56 +0000 | [diff] [blame] | 56 | |
AKASHI Takahiro | a36dc25 | 2022-04-19 10:05:11 +0900 | [diff] [blame] | 57 | if (IS_ENABLED(CONFIG_EFI_CAPSULE_ON_DISK_EARLY)) { |
58 | /* efi_init_early() already called */ | ||||
59 | if (efi_init_obj_list() == EFI_SUCCESS) | ||||
60 | efi_launch_capsules(); | ||||
61 | } | ||||
AKASHI Takahiro | 45b81954 | 2020-11-17 09:27:56 +0900 | [diff] [blame] | 62 | |
Simon Glass | 5b47e30 | 2014-04-10 20:01:35 -0600 | [diff] [blame] | 63 | s = bootdelay_process(); |
64 | if (cli_process_fdt(&s)) | ||||
65 | cli_secure_boot_cmd(s); | ||||
66 | |||||
67 | autoboot_command(s); | ||||
Simon Glass | 33f7913 | 2014-04-10 20:01:34 -0600 | [diff] [blame] | 68 | |
Simon Glass | 66b8c8b | 2014-04-10 20:01:26 -0600 | [diff] [blame] | 69 | cli_loop(); |
Simon Glass | 2833290 | 2016-03-13 19:07:32 -0600 | [diff] [blame] | 70 | panic("No CLI available"); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 71 | } |