blob: 9801d38c0b328cb58667f66fcea7be0d525d0f8e [file] [log] [blame]
Lukas Auer5e30e452019-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 Glass1eb69ae2019-11-14 12:57:39 -07009#include <cpu_func.h>
Lukas Auer5e30e452019-08-21 21:14:44 +020010#include <errno.h>
Simon Glassdb41d652019-12-28 10:45:07 -070011#include <hang.h>
Simon Glass4d72caa2020-05-10 11:40:01 -060012#include <image.h>
Lukas Auer5e30e452019-08-21 21:14:44 +020013#include <spl.h>
Simon Glass401d1c42020-10-30 21:38:53 -060014#include <asm/global_data.h>
Lukas Auer5e30e452019-08-21 21:14:44 +020015#include <asm/smp.h>
16#include <opensbi.h>
Simon Glass4d72caa2020-05-10 11:40:01 -060017#include <linux/libfdt.h>
Simon Glass1e94b462023-09-14 18:21:46 -060018#include <linux/printk.h>
Lukas Auer5e30e452019-08-21 21:14:44 +020019
20DECLARE_GLOBAL_DATA_PTR;
21
22struct fw_dynamic_info opensbi_info;
23
Randolph5367b9e2023-10-12 14:35:03 +080024static int spl_opensbi_find_os_node(void *blob, int *uboot_node, int os_type)
Lukas Auer5e30e452019-08-21 21:14:44 +020025{
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
Randolph5367b9e2023-10-12 14:35:03 +080038 if (genimg_get_os_id(fit_os) == os_type) {
Lukas Auer5e30e452019-08-21 21:14:44 +020039 *uboot_node = node;
40 return 0;
41 }
42 }
43
44 return -ENODEV;
45}
46
Chanho Parkef086872023-08-29 10:20:14 +090047void __noreturn spl_invoke_opensbi(struct spl_image_info *spl_image)
Lukas Auer5e30e452019-08-21 21:14:44 +020048{
Randolph5367b9e2023-10-12 14:35:03 +080049 int ret, os_node;
50 ulong os_entry;
51 int os_type;
Chanho Parkef086872023-08-29 10:20:14 +090052 typedef void __noreturn (*opensbi_entry_t)(ulong hartid, ulong dtb, ulong info);
53 opensbi_entry_t opensbi_entry;
Lukas Auer5e30e452019-08-21 21:14:44 +020054
55 if (!spl_image->fdt_addr) {
56 pr_err("No device tree specified in SPL image\n");
57 hang();
58 }
59
Randolph5367b9e2023-10-12 14:35:03 +080060 /*
61 * Find next os image in /fit-images
Randolph58fa2a52023-10-12 14:35:07 +080062 * The next os image default is u-boot proper, once enable
63 * OpenSBI OS boot mode, the OS image should be linux.
Randolph5367b9e2023-10-12 14:35:03 +080064 */
Randolph58fa2a52023-10-12 14:35:07 +080065 if (CONFIG_IS_ENABLED(LOAD_FIT_OPENSBI_OS_BOOT))
66 os_type = IH_OS_LINUX;
67 else
68 os_type = IH_OS_U_BOOT;
69
Randolph5367b9e2023-10-12 14:35:03 +080070 ret = spl_opensbi_find_os_node(spl_image->fdt_addr, &os_node, os_type);
Lukas Auer5e30e452019-08-21 21:14:44 +020071 if (ret) {
Randolph5367b9e2023-10-12 14:35:03 +080072 pr_err("Can't find %s node for opensbi, %d\n",
73 genimg_get_os_name(os_type), ret);
Lukas Auer5e30e452019-08-21 21:14:44 +020074 hang();
75 }
76
77 /* Get U-Boot entry point */
Randolph5367b9e2023-10-12 14:35:03 +080078 ret = fit_image_get_entry(spl_image->fdt_addr, os_node, &os_entry);
Michal Simekcaa7fc22020-09-03 11:24:28 +020079 if (ret)
Randolph5367b9e2023-10-12 14:35:03 +080080 ret = fit_image_get_load(spl_image->fdt_addr, os_node, &os_entry);
Lukas Auer5e30e452019-08-21 21:14:44 +020081
Nikita Shubin48da0ca2022-08-08 13:24:25 +030082 /* Prepare opensbi_info object */
Lukas Auer5e30e452019-08-21 21:14:44 +020083 opensbi_info.magic = FW_DYNAMIC_INFO_MAGIC_VALUE;
84 opensbi_info.version = FW_DYNAMIC_INFO_VERSION;
Randolph5367b9e2023-10-12 14:35:03 +080085 opensbi_info.next_addr = os_entry;
Lukas Auer5e30e452019-08-21 21:14:44 +020086 opensbi_info.next_mode = FW_DYNAMIC_INFO_NEXT_MODE_S;
Nikita Shubinaa0eda12022-08-08 13:28:52 +030087 opensbi_info.options = CONFIG_SPL_OPENSBI_SCRATCH_OPTIONS;
Lukas Auerb86f6d12019-12-08 23:28:49 +010088 opensbi_info.boot_hart = gd->arch.boot_hart;
Lukas Auer5e30e452019-08-21 21:14:44 +020089
Chanho Parkef086872023-08-29 10:20:14 +090090 opensbi_entry = (opensbi_entry_t)spl_image->entry_point;
Lukas Auer5e30e452019-08-21 21:14:44 +020091 invalidate_icache_all();
92
Bin Meng191636e2020-04-16 08:09:30 -070093#ifdef CONFIG_SPL_SMP
Lukas Auer0e1233c2019-12-08 23:28:52 +010094 /*
95 * Start OpenSBI on all secondary harts and wait for acknowledgment.
96 *
97 * OpenSBI first relocates itself to its link address. This is done by
98 * the main hart. To make sure no hart is still running U-Boot SPL
99 * during relocation, we wait for all secondary harts to acknowledge
100 * the call-function request before entering OpenSBI on the main hart.
101 * Otherwise, code corruption can occur if the link address ranges of
102 * U-Boot SPL and OpenSBI overlap.
103 */
Lukas Auer5e30e452019-08-21 21:14:44 +0200104 ret = smp_call_function((ulong)spl_image->entry_point,
105 (ulong)spl_image->fdt_addr,
Lukas Auer0e1233c2019-12-08 23:28:52 +0100106 (ulong)&opensbi_info, 1);
Lukas Auer5e30e452019-08-21 21:14:44 +0200107 if (ret)
108 hang();
109#endif
110 opensbi_entry(gd->arch.boot_hart, (ulong)spl_image->fdt_addr,
111 (ulong)&opensbi_info);
112}