Merge branch '2020-01-07-master-imports'
[oweals/u-boot.git] / common / spl / spl_opensbi.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright (C) 2019 Fraunhofer AISEC,
4  * Lukas Auer <lukas.auer@aisec.fraunhofer.de>
5  *
6  * Based on common/spl/spl_atf.c
7  */
8 #include <common.h>
9 #include <cpu_func.h>
10 #include <errno.h>
11 #include <spl.h>
12 #include <asm/smp.h>
13 #include <opensbi.h>
14
15 DECLARE_GLOBAL_DATA_PTR;
16
17 struct fw_dynamic_info opensbi_info;
18
19 static int spl_opensbi_find_uboot_node(void *blob, int *uboot_node)
20 {
21         int fit_images_node, node;
22         const char *fit_os;
23
24         fit_images_node = fdt_path_offset(blob, "/fit-images");
25         if (fit_images_node < 0)
26                 return -ENODEV;
27
28         fdt_for_each_subnode(node, blob, fit_images_node) {
29                 fit_os = fdt_getprop(blob, node, FIT_OS_PROP, NULL);
30                 if (!fit_os)
31                         continue;
32
33                 if (genimg_get_os_id(fit_os) == IH_OS_U_BOOT) {
34                         *uboot_node = node;
35                         return 0;
36                 }
37         }
38
39         return -ENODEV;
40 }
41
42 void spl_invoke_opensbi(struct spl_image_info *spl_image)
43 {
44         int ret, uboot_node;
45         ulong uboot_entry;
46         void (*opensbi_entry)(ulong hartid, ulong dtb, ulong info);
47
48         if (!spl_image->fdt_addr) {
49                 pr_err("No device tree specified in SPL image\n");
50                 hang();
51         }
52
53         /* Find U-Boot image in /fit-images */
54         ret = spl_opensbi_find_uboot_node(spl_image->fdt_addr, &uboot_node);
55         if (ret) {
56                 pr_err("Can't find U-Boot node, %d", ret);
57                 hang();
58         }
59
60         /* Get U-Boot entry point */
61         uboot_entry = fdt_getprop_u32(spl_image->fdt_addr, uboot_node,
62                                       "entry-point");
63         if (uboot_entry == FDT_ERROR)
64                 uboot_entry = fdt_getprop_u32(spl_image->fdt_addr, uboot_node,
65                                               "load-addr");
66
67         /* Prepare obensbi_info object */
68         opensbi_info.magic = FW_DYNAMIC_INFO_MAGIC_VALUE;
69         opensbi_info.version = FW_DYNAMIC_INFO_VERSION;
70         opensbi_info.next_addr = uboot_entry;
71         opensbi_info.next_mode = FW_DYNAMIC_INFO_NEXT_MODE_S;
72         opensbi_info.options = SBI_SCRATCH_NO_BOOT_PRINTS;
73         opensbi_info.boot_hart = gd->arch.boot_hart;
74
75         opensbi_entry = (void (*)(ulong, ulong, ulong))spl_image->entry_point;
76         invalidate_icache_all();
77
78 #ifdef CONFIG_SMP
79         /*
80          * Start OpenSBI on all secondary harts and wait for acknowledgment.
81          *
82          * OpenSBI first relocates itself to its link address. This is done by
83          * the main hart. To make sure no hart is still running U-Boot SPL
84          * during relocation, we wait for all secondary harts to acknowledge
85          * the call-function request before entering OpenSBI on the main hart.
86          * Otherwise, code corruption can occur if the link address ranges of
87          * U-Boot SPL and OpenSBI overlap.
88          */
89         ret = smp_call_function((ulong)spl_image->entry_point,
90                                 (ulong)spl_image->fdt_addr,
91                                 (ulong)&opensbi_info, 1);
92         if (ret)
93                 hang();
94 #endif
95         opensbi_entry(gd->arch.boot_hart, (ulong)spl_image->fdt_addr,
96                       (ulong)&opensbi_info);
97 }