blob: 0df611623ae0cae97fbab492ed63a97a8be3b1d8 [file] [log] [blame]
Lukas Auer515b9342019-08-21 21:14:44 +02001// 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>
Simon Glass63334482019-11-14 12:57:39 -07009#include <cpu_func.h>
Lukas Auer515b9342019-08-21 21:14:44 +020010#include <errno.h>
Simon Glassf11478f2019-12-28 10:45:07 -070011#include <hang.h>
Simon Glass2dc9c342020-05-10 11:40:01 -060012#include <image.h>
Lukas Auer515b9342019-08-21 21:14:44 +020013#include <spl.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060014#include <asm/global_data.h>
Lukas Auer515b9342019-08-21 21:14:44 +020015#include <asm/smp.h>
16#include <opensbi.h>
Simon Glass2dc9c342020-05-10 11:40:01 -060017#include <linux/libfdt.h>
Simon Glassbdd5f812023-09-14 18:21:46 -060018#include <linux/printk.h>
Lukas Auer515b9342019-08-21 21:14:44 +020019
20DECLARE_GLOBAL_DATA_PTR;
21
22struct fw_dynamic_info opensbi_info;
23
24static int spl_opensbi_find_uboot_node(void *blob, int *uboot_node)
25{
26 int fit_images_node, node;
27 const char *fit_os;
28
29 fit_images_node = fdt_path_offset(blob, "/fit-images");
30 if (fit_images_node < 0)
31 return -ENODEV;
32
33 fdt_for_each_subnode(node, blob, fit_images_node) {
34 fit_os = fdt_getprop(blob, node, FIT_OS_PROP, NULL);
35 if (!fit_os)
36 continue;
37
38 if (genimg_get_os_id(fit_os) == IH_OS_U_BOOT) {
39 *uboot_node = node;
40 return 0;
41 }
42 }
43
44 return -ENODEV;
45}
46
Chanho Park8973e372023-08-29 10:20:14 +090047void __noreturn spl_invoke_opensbi(struct spl_image_info *spl_image)
Lukas Auer515b9342019-08-21 21:14:44 +020048{
49 int ret, uboot_node;
50 ulong uboot_entry;
Chanho Park8973e372023-08-29 10:20:14 +090051 typedef void __noreturn (*opensbi_entry_t)(ulong hartid, ulong dtb, ulong info);
52 opensbi_entry_t opensbi_entry;
Lukas Auer515b9342019-08-21 21:14:44 +020053
54 if (!spl_image->fdt_addr) {
55 pr_err("No device tree specified in SPL image\n");
56 hang();
57 }
58
59 /* Find U-Boot image in /fit-images */
60 ret = spl_opensbi_find_uboot_node(spl_image->fdt_addr, &uboot_node);
61 if (ret) {
Sean Anderson358138f2020-06-06 15:26:03 -040062 pr_err("Can't find U-Boot node, %d\n", ret);
Lukas Auer515b9342019-08-21 21:14:44 +020063 hang();
64 }
65
66 /* Get U-Boot entry point */
Michal Simek9e64a552020-09-03 11:24:28 +020067 ret = fit_image_get_entry(spl_image->fdt_addr, uboot_node, &uboot_entry);
68 if (ret)
69 ret = fit_image_get_load(spl_image->fdt_addr, uboot_node, &uboot_entry);
Lukas Auer515b9342019-08-21 21:14:44 +020070
Nikita Shubina9f7ee32022-08-08 13:24:25 +030071 /* Prepare opensbi_info object */
Lukas Auer515b9342019-08-21 21:14:44 +020072 opensbi_info.magic = FW_DYNAMIC_INFO_MAGIC_VALUE;
73 opensbi_info.version = FW_DYNAMIC_INFO_VERSION;
74 opensbi_info.next_addr = uboot_entry;
75 opensbi_info.next_mode = FW_DYNAMIC_INFO_NEXT_MODE_S;
Nikita Shubind3d68062022-08-08 13:28:52 +030076 opensbi_info.options = CONFIG_SPL_OPENSBI_SCRATCH_OPTIONS;
Lukas Auere105b612019-12-08 23:28:49 +010077 opensbi_info.boot_hart = gd->arch.boot_hart;
Lukas Auer515b9342019-08-21 21:14:44 +020078
Chanho Park8973e372023-08-29 10:20:14 +090079 opensbi_entry = (opensbi_entry_t)spl_image->entry_point;
Lukas Auer515b9342019-08-21 21:14:44 +020080 invalidate_icache_all();
81
Bin Mengb161f902020-04-16 08:09:30 -070082#ifdef CONFIG_SPL_SMP
Lukas Auerfcedb9a2019-12-08 23:28:52 +010083 /*
84 * Start OpenSBI on all secondary harts and wait for acknowledgment.
85 *
86 * OpenSBI first relocates itself to its link address. This is done by
87 * the main hart. To make sure no hart is still running U-Boot SPL
88 * during relocation, we wait for all secondary harts to acknowledge
89 * the call-function request before entering OpenSBI on the main hart.
90 * Otherwise, code corruption can occur if the link address ranges of
91 * U-Boot SPL and OpenSBI overlap.
92 */
Lukas Auer515b9342019-08-21 21:14:44 +020093 ret = smp_call_function((ulong)spl_image->entry_point,
94 (ulong)spl_image->fdt_addr,
Lukas Auerfcedb9a2019-12-08 23:28:52 +010095 (ulong)&opensbi_info, 1);
Lukas Auer515b9342019-08-21 21:14:44 +020096 if (ret)
97 hang();
98#endif
99 opensbi_entry(gd->arch.boot_hart, (ulong)spl_image->fdt_addr,
100 (ulong)&opensbi_info);
101}