]>
Commit | Line | Data |
---|---|---|
c609719b WD |
1 | /* |
2 | * (C) Copyright 2000 | |
3 | * Wolfgang Denk, DENX Software Engineering, [email protected]. | |
4 | * | |
1a459660 | 5 | * SPDX-License-Identifier: GPL-2.0+ |
c609719b WD |
6 | */ |
7 | ||
a6c7ad2f WD |
8 | /* #define DEBUG */ |
9 | ||
c609719b | 10 | #include <common.h> |
66ded17d | 11 | #include <autoboot.h> |
18d66533 | 12 | #include <cli.h> |
24b852a7 | 13 | #include <console.h> |
fbcdf32a | 14 | #include <version.h> |
bdccc4fe | 15 | |
9272a9b4 SG |
16 | DECLARE_GLOBAL_DATA_PTR; |
17 | ||
fad63407 HS |
18 | /* |
19 | * Board-specific Platform code can reimplement show_boot_progress () if needed | |
20 | */ | |
3422299d | 21 | __weak void show_boot_progress(int val) {} |
fad63407 | 22 | |
1364a0e4 SG |
23 | static void run_preboot_environment_command(void) |
24 | { | |
bc2b4c27 | 25 | #ifdef CONFIG_PREBOOT |
1364a0e4 SG |
26 | char *p; |
27 | ||
bc2b4c27 SG |
28 | p = getenv("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 */ | |
1364a0e4 SG |
41 | } |
42 | ||
affb2156 | 43 | /* We come here after U-Boot is initialised and ready to process commands */ |
1364a0e4 SG |
44 | void main_loop(void) |
45 | { | |
affb2156 SG |
46 | const char *s; |
47 | ||
1364a0e4 SG |
48 | bootstage_mark_name(BOOTSTAGE_ID_MAIN_LOOP, "main_loop"); |
49 | ||
1364a0e4 SG |
50 | #ifdef CONFIG_VERSION_VARIABLE |
51 | setenv("ver", version_string); /* set version variable */ | |
52 | #endif /* CONFIG_VERSION_VARIABLE */ | |
53 | ||
c1bb2cd0 | 54 | cli_init(); |
1364a0e4 SG |
55 | |
56 | run_preboot_environment_command(); | |
bc2b4c27 SG |
57 | |
58 | #if defined(CONFIG_UPDATE_TFTP) | |
c7ff5528 | 59 | update_tftp(0UL, NULL, NULL); |
bc2b4c27 SG |
60 | #endif /* CONFIG_UPDATE_TFTP */ |
61 | ||
affb2156 SG |
62 | s = bootdelay_process(); |
63 | if (cli_process_fdt(&s)) | |
64 | cli_secure_boot_cmd(s); | |
65 | ||
66 | autoboot_command(s); | |
c1bb2cd0 | 67 | |
6493ccc7 | 68 | cli_loop(); |
045e6f0d | 69 | panic("No CLI available"); |
c609719b | 70 | } |