command: Remove the cmd_tbl_t typedef
[oweals/u-boot.git] / arch / riscv / lib / bootm.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright (C) 2011 Andes Technology Corporation
4  * Shawn Lin, Andes Technology Corporation <nobuhiro@andestech.com>
5  * Macpaul Lin, Andes Technology Corporation <macpaul@andestech.com>
6  * Rick Chen, Andes Technology Corporation <rick@andestech.com>
7  */
8
9 #include <common.h>
10 #include <bootstage.h>
11 #include <command.h>
12 #include <dm.h>
13 #include <fdt_support.h>
14 #include <hang.h>
15 #include <dm/root.h>
16 #include <image.h>
17 #include <asm/byteorder.h>
18 #include <asm/csr.h>
19 #include <asm/smp.h>
20 #include <dm/device.h>
21 #include <dm/root.h>
22 #include <u-boot/zlib.h>
23
24 DECLARE_GLOBAL_DATA_PTR;
25
26 __weak void board_quiesce_devices(void)
27 {
28 }
29
30 /**
31  * announce_and_cleanup() - Print message and prepare for kernel boot
32  *
33  * @fake: non-zero to do everything except actually boot
34  */
35 static void announce_and_cleanup(int fake)
36 {
37         printf("\nStarting kernel ...%s\n\n", fake ?
38                 "(fake run for tracing)" : "");
39         bootstage_mark_name(BOOTSTAGE_ID_BOOTM_HANDOFF, "start_kernel");
40 #ifdef CONFIG_BOOTSTAGE_FDT
41         bootstage_fdt_add_report();
42 #endif
43 #ifdef CONFIG_BOOTSTAGE_REPORT
44         bootstage_report();
45 #endif
46
47 #ifdef CONFIG_USB_DEVICE
48         udc_disconnect();
49 #endif
50
51         board_quiesce_devices();
52
53         /*
54          * Call remove function of all devices with a removal flag set.
55          * This may be useful for last-stage operations, like cancelling
56          * of DMA operation or releasing device internal buffers.
57          */
58         dm_remove_devices_flags(DM_REMOVE_ACTIVE_ALL);
59
60         cleanup_before_linux();
61 }
62
63 static void boot_prep_linux(bootm_headers_t *images)
64 {
65         if (IMAGE_ENABLE_OF_LIBFDT && images->ft_len) {
66 #ifdef CONFIG_OF_LIBFDT
67                 debug("using: FDT\n");
68                 if (image_setup_linux(images)) {
69                         printf("FDT creation failed! hanging...");
70                         hang();
71                 }
72 #endif
73         } else {
74                 printf("Device tree not found or missing FDT support\n");
75                 hang();
76         }
77 }
78
79 static void boot_jump_linux(bootm_headers_t *images, int flag)
80 {
81         void (*kernel)(ulong hart, void *dtb);
82         int fake = (flag & BOOTM_STATE_OS_FAKE_GO);
83 #ifdef CONFIG_SMP
84         int ret;
85 #endif
86
87         kernel = (void (*)(ulong, void *))images->ep;
88
89         bootstage_mark(BOOTSTAGE_ID_RUN_OS);
90
91         debug("## Transferring control to kernel (at address %08lx) ...\n",
92               (ulong)kernel);
93
94         announce_and_cleanup(fake);
95
96         if (!fake) {
97                 if (IMAGE_ENABLE_OF_LIBFDT && images->ft_len) {
98 #ifdef CONFIG_SMP
99                         ret = smp_call_function(images->ep,
100                                                 (ulong)images->ft_addr, 0, 0);
101                         if (ret)
102                                 hang();
103 #endif
104                         kernel(gd->arch.boot_hart, images->ft_addr);
105                 }
106         }
107 }
108
109 int do_bootm_linux(int flag, int argc, char *const argv[],
110                    bootm_headers_t *images)
111 {
112         /* No need for those on RISC-V */
113         if (flag & BOOTM_STATE_OS_BD_T || flag & BOOTM_STATE_OS_CMDLINE)
114                 return -1;
115
116         if (flag & BOOTM_STATE_OS_PREP) {
117                 boot_prep_linux(images);
118                 return 0;
119         }
120
121         if (flag & (BOOTM_STATE_OS_GO | BOOTM_STATE_OS_FAKE_GO)) {
122                 boot_jump_linux(images, flag);
123                 return 0;
124         }
125
126         boot_prep_linux(images);
127         boot_jump_linux(images, flag);
128         return 0;
129 }
130
131 int do_bootm_vxworks(int flag, int argc, char *const argv[],
132                      bootm_headers_t *images)
133 {
134         return do_bootm_linux(flag, argc, argv, images);
135 }