1 /* 2 * (C) Copyright 2000 3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de. 4 * 5 * SPDX-License-Identifier: GPL-2.0+ 6 */ 7 8 /* #define DEBUG */ 9 10 #include <common.h> 11 #include <autoboot.h> 12 #include <cli.h> 13 #include <console.h> 14 #include <version.h> 15 16 DECLARE_GLOBAL_DATA_PTR; 17 18 /* 19 * Board-specific Platform code can reimplement show_boot_progress () if needed 20 */ show_boot_progress(int val)21__weak void show_boot_progress(int val) {} 22 run_preboot_environment_command(void)23static void run_preboot_environment_command(void) 24 { 25 #ifdef CONFIG_PREBOOT 26 char *p; 27 28 p = env_get("preboot"); 29 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 */ 41 } 42 43 extern void ctrl_menu_show(void); 44 45 /* We come here after U-Boot is initialised and ready to process commands */ main_loop(void)46void main_loop(void) 47 { 48 const char *s; 49 50 bootstage_mark_name(BOOTSTAGE_ID_MAIN_LOOP, "main_loop"); 51 52 #ifdef CONFIG_VERSION_VARIABLE 53 env_set("ver", version_string); /* set version variable */ 54 #endif /* CONFIG_VERSION_VARIABLE */ 55 56 cli_init(); 57 58 run_preboot_environment_command(); 59 60 #if defined(CONFIG_UPDATE_TFTP) 61 update_tftp(0UL, NULL, NULL); 62 #endif /* CONFIG_UPDATE_TFTP */ 63 64 s = bootdelay_process(); 65 if (cli_process_fdt(&s)) 66 cli_secure_boot_cmd(s); 67 68 autoboot_command(s); 69 70 ctrl_menu_show(); 71 72 cli_loop(); 73 panic("No CLI available"); 74 } 75