blob: 0b1c981a105d207196a85d3ce3c1c1c3ce3e3a2f [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: BSD-3-Clause
Kever Yang6e79a912017-05-05 11:47:45 +08002/*
3 * Reference to the ARM TF Project,
4 * plat/arm/common/arm_bl2_setup.c
5 * Portions copyright (c) 2013-2016, ARM Limited and Contributors. All rights
6 * reserved.
7 * Copyright (C) 2016 Rockchip Electronic Co.,Ltd
8 * Written by Kever Yang <kever.yang@rock-chips.com>
Philipp Tomsich4ab63e02017-09-13 21:29:35 +02009 * Copyright (C) 2017 Theobroma Systems Design und Consulting GmbH
Kever Yang6e79a912017-05-05 11:47:45 +080010 */
11
Kever Yang6e79a912017-05-05 11:47:45 +080012#include <atf_common.h>
Simon Glass1d91ba72019-11-14 12:57:37 -070013#include <cpu_func.h>
Kever Yang6e79a912017-05-05 11:47:45 +080014#include <errno.h>
Simon Glass2dc9c342020-05-10 11:40:01 -060015#include <image.h>
Simon Glass0f2af882020-05-10 11:40:05 -060016#include <log.h>
Kever Yang6e79a912017-05-05 11:47:45 +080017#include <spl.h>
Simon Glass274e0b02020-05-10 11:39:56 -060018#include <asm/cache.h>
Kever Yang6e79a912017-05-05 11:47:45 +080019
Michael Walle0e4d90c2020-11-18 17:45:57 +010020/* Holds all the structures we need for bl31 parameter passing */
21struct bl2_to_bl31_params_mem {
22 struct bl31_params bl31_params;
23 struct atf_image_info bl31_image_info;
24 struct atf_image_info bl32_image_info;
25 struct atf_image_info bl33_image_info;
26 struct entry_point_info bl33_ep_info;
27 struct entry_point_info bl32_ep_info;
28 struct entry_point_info bl31_ep_info;
29};
30
Michael Walleafaf6ea2020-11-18 17:45:58 +010031struct bl2_to_bl31_params_mem_v2 {
32 struct bl_params bl_params;
33 struct bl_params_node bl31_params_node;
34 struct bl_params_node bl32_params_node;
35 struct bl_params_node bl33_params_node;
36 struct atf_image_info bl31_image_info;
37 struct atf_image_info bl32_image_info;
38 struct atf_image_info bl33_image_info;
39 struct entry_point_info bl33_ep_info;
40 struct entry_point_info bl32_ep_info;
41 struct entry_point_info bl31_ep_info;
42};
43
Michael Walle2def7d92020-11-18 17:45:56 +010044struct bl31_params *bl2_plat_get_bl31_params_default(uintptr_t bl32_entry,
45 uintptr_t bl33_entry,
46 uintptr_t fdt_addr)
Kever Yang6e79a912017-05-05 11:47:45 +080047{
Michael Walle203fede2020-11-18 17:45:55 +010048 static struct bl2_to_bl31_params_mem bl31_params_mem;
49 struct bl31_params *bl2_to_bl31_params;
Joseph Chen8dc7abe2019-10-06 20:10:22 +020050 struct entry_point_info *bl32_ep_info;
Kever Yang6e79a912017-05-05 11:47:45 +080051 struct entry_point_info *bl33_ep_info;
52
53 /*
54 * Initialise the memory for all the arguments that needs to
55 * be passed to BL31
56 */
57 memset(&bl31_params_mem, 0, sizeof(struct bl2_to_bl31_params_mem));
58
59 /* Assign memory for TF related information */
60 bl2_to_bl31_params = &bl31_params_mem.bl31_params;
61 SET_PARAM_HEAD(bl2_to_bl31_params, ATF_PARAM_BL31, ATF_VERSION_1, 0);
62
63 /* Fill BL31 related information */
Frieder Schrempfb76d8c22019-06-27 07:03:16 +000064 bl2_to_bl31_params->bl31_image_info = &bl31_params_mem.bl31_image_info;
Kever Yang6e79a912017-05-05 11:47:45 +080065 SET_PARAM_HEAD(bl2_to_bl31_params->bl31_image_info,
66 ATF_PARAM_IMAGE_BINARY, ATF_VERSION_1, 0);
67
Joseph Chen8dc7abe2019-10-06 20:10:22 +020068 /* Fill BL32 related information */
Kever Yang6e79a912017-05-05 11:47:45 +080069 bl2_to_bl31_params->bl32_ep_info = &bl31_params_mem.bl32_ep_info;
Joseph Chen8dc7abe2019-10-06 20:10:22 +020070 bl32_ep_info = &bl31_params_mem.bl32_ep_info;
71 SET_PARAM_HEAD(bl32_ep_info, ATF_PARAM_EP, ATF_VERSION_1,
72 ATF_EP_SECURE);
73
74 /* secure payload is optional, so set pc to 0 if absent */
75 bl32_ep_info->args.arg3 = fdt_addr;
76 bl32_ep_info->pc = bl32_entry ? bl32_entry : 0;
77 bl32_ep_info->spsr = SPSR_64(MODE_EL1, MODE_SP_ELX,
78 DISABLE_ALL_EXECPTIONS);
79
Kever Yang6e79a912017-05-05 11:47:45 +080080 bl2_to_bl31_params->bl32_image_info = &bl31_params_mem.bl32_image_info;
81 SET_PARAM_HEAD(bl2_to_bl31_params->bl32_image_info,
82 ATF_PARAM_IMAGE_BINARY, ATF_VERSION_1, 0);
Kever Yang6e79a912017-05-05 11:47:45 +080083
84 /* Fill BL33 related information */
85 bl2_to_bl31_params->bl33_ep_info = &bl31_params_mem.bl33_ep_info;
86 bl33_ep_info = &bl31_params_mem.bl33_ep_info;
87 SET_PARAM_HEAD(bl33_ep_info, ATF_PARAM_EP, ATF_VERSION_1,
88 ATF_EP_NON_SECURE);
89
90 /* BL33 expects to receive the primary CPU MPID (through x0) */
91 bl33_ep_info->args.arg0 = 0xffff & read_mpidr();
Philipp Tomsich4ab63e02017-09-13 21:29:35 +020092 bl33_ep_info->pc = bl33_entry;
Kever Yang6e79a912017-05-05 11:47:45 +080093 bl33_ep_info->spsr = SPSR_64(MODE_EL2, MODE_SP_ELX,
94 DISABLE_ALL_EXECPTIONS);
95
96 bl2_to_bl31_params->bl33_image_info = &bl31_params_mem.bl33_image_info;
97 SET_PARAM_HEAD(bl2_to_bl31_params->bl33_image_info,
98 ATF_PARAM_IMAGE_BINARY, ATF_VERSION_1, 0);
99
100 return bl2_to_bl31_params;
101}
102
Michael Walle2def7d92020-11-18 17:45:56 +0100103__weak struct bl31_params *bl2_plat_get_bl31_params(uintptr_t bl32_entry,
104 uintptr_t bl33_entry,
105 uintptr_t fdt_addr)
106{
107 return bl2_plat_get_bl31_params_default(bl32_entry, bl33_entry,
108 fdt_addr);
109}
110
Michael Walleafaf6ea2020-11-18 17:45:58 +0100111struct bl_params *bl2_plat_get_bl31_params_v2_default(uintptr_t bl32_entry,
112 uintptr_t bl33_entry,
113 uintptr_t fdt_addr)
114{
115 static struct bl2_to_bl31_params_mem_v2 bl31_params_mem;
116 struct bl_params *bl_params;
117 struct bl_params_node *bl_params_node;
118
119 /*
120 * Initialise the memory for all the arguments that needs to
121 * be passed to BL31
122 */
123 memset(&bl31_params_mem, 0, sizeof(bl31_params_mem));
124
125 /* Assign memory for TF related information */
126 bl_params = &bl31_params_mem.bl_params;
127 SET_PARAM_HEAD(bl_params, ATF_PARAM_BL_PARAMS, ATF_VERSION_2, 0);
128 bl_params->head = &bl31_params_mem.bl31_params_node;
129
130 /* Fill BL31 related information */
131 bl_params_node = &bl31_params_mem.bl31_params_node;
132 bl_params_node->image_id = ATF_BL31_IMAGE_ID;
133 bl_params_node->image_info = &bl31_params_mem.bl31_image_info;
134 bl_params_node->ep_info = &bl31_params_mem.bl31_ep_info;
135 bl_params_node->next_params_info = &bl31_params_mem.bl32_params_node;
136 SET_PARAM_HEAD(bl_params_node->image_info, ATF_PARAM_IMAGE_BINARY,
137 ATF_VERSION_2, 0);
138
139 /* Fill BL32 related information */
140 bl_params_node = &bl31_params_mem.bl32_params_node;
141 bl_params_node->image_id = ATF_BL32_IMAGE_ID;
142 bl_params_node->image_info = &bl31_params_mem.bl32_image_info;
143 bl_params_node->ep_info = &bl31_params_mem.bl32_ep_info;
144 bl_params_node->next_params_info = &bl31_params_mem.bl33_params_node;
145 SET_PARAM_HEAD(bl_params_node->ep_info, ATF_PARAM_EP,
146 ATF_VERSION_2, ATF_EP_SECURE);
147
148 /* secure payload is optional, so set pc to 0 if absent */
149 bl_params_node->ep_info->args.arg3 = fdt_addr;
150 bl_params_node->ep_info->pc = bl32_entry ? bl32_entry : 0;
151 bl_params_node->ep_info->spsr = SPSR_64(MODE_EL1, MODE_SP_ELX,
152 DISABLE_ALL_EXECPTIONS);
153 SET_PARAM_HEAD(bl_params_node->image_info, ATF_PARAM_IMAGE_BINARY,
154 ATF_VERSION_2, 0);
155
156 /* Fill BL33 related information */
157 bl_params_node = &bl31_params_mem.bl33_params_node;
158 bl_params_node->image_id = ATF_BL33_IMAGE_ID;
159 bl_params_node->image_info = &bl31_params_mem.bl33_image_info;
160 bl_params_node->ep_info = &bl31_params_mem.bl33_ep_info;
161 bl_params_node->next_params_info = NULL;
162 SET_PARAM_HEAD(bl_params_node->ep_info, ATF_PARAM_EP,
163 ATF_VERSION_2, ATF_EP_NON_SECURE);
164
165 /* BL33 expects to receive the primary CPU MPID (through x0) */
166 bl_params_node->ep_info->args.arg0 = 0xffff & read_mpidr();
167 bl_params_node->ep_info->pc = bl33_entry;
168 bl_params_node->ep_info->spsr = SPSR_64(MODE_EL2, MODE_SP_ELX,
169 DISABLE_ALL_EXECPTIONS);
170 SET_PARAM_HEAD(bl_params_node->image_info, ATF_PARAM_IMAGE_BINARY,
171 ATF_VERSION_2, 0);
172
173 return bl_params;
174}
175
176__weak struct bl_params *bl2_plat_get_bl31_params_v2(uintptr_t bl32_entry,
177 uintptr_t bl33_entry,
178 uintptr_t fdt_addr)
179{
180 return bl2_plat_get_bl31_params_v2_default(bl32_entry, bl33_entry,
181 fdt_addr);
182}
183
Philipp Tomsich4ab63e02017-09-13 21:29:35 +0200184static inline void raw_write_daif(unsigned int daif)
Kever Yang6e79a912017-05-05 11:47:45 +0800185{
Alistair Delvac89a2b72022-09-26 20:47:55 +0000186 __asm__ __volatile__("msr DAIF, %x0\n\t" : : "r" (daif) : "memory");
Kever Yang6e79a912017-05-05 11:47:45 +0800187}
188
Chanho Park53a44fc2023-09-08 17:08:56 +0900189typedef void __noreturn (*atf_entry_t)(struct bl31_params *params, void *plat_params);
Philipp Tomsich4ab63e02017-09-13 21:29:35 +0200190
Chanho Park53a44fc2023-09-08 17:08:56 +0900191static void __noreturn bl31_entry(uintptr_t bl31_entry, uintptr_t bl32_entry,
192 uintptr_t bl33_entry, uintptr_t fdt_addr)
Kever Yang6e79a912017-05-05 11:47:45 +0800193{
Philipp Tomsich4ab63e02017-09-13 21:29:35 +0200194 atf_entry_t atf_entry = (atf_entry_t)bl31_entry;
Michael Walleafaf6ea2020-11-18 17:45:58 +0100195 void *bl31_params;
Kever Yang6e79a912017-05-05 11:47:45 +0800196
Michael Walleafaf6ea2020-11-18 17:45:58 +0100197 if (CONFIG_IS_ENABLED(ATF_LOAD_IMAGE_V2))
198 bl31_params = bl2_plat_get_bl31_params_v2(bl32_entry,
199 bl33_entry,
200 fdt_addr);
201 else
202 bl31_params = bl2_plat_get_bl31_params(bl32_entry, bl33_entry,
203 fdt_addr);
Kever Yang6e79a912017-05-05 11:47:45 +0800204
205 raw_write_daif(SPSR_EXCEPTION_MASK);
206 dcache_disable();
207
Michael Walleafaf6ea2020-11-18 17:45:58 +0100208 atf_entry(bl31_params, (void *)fdt_addr);
Philipp Tomsich4ab63e02017-09-13 21:29:35 +0200209}
210
Joseph Chen8dc7abe2019-10-06 20:10:22 +0200211static int spl_fit_images_find(void *blob, int os)
Philipp Tomsich4ab63e02017-09-13 21:29:35 +0200212{
Michal Simekdb878c02019-12-19 15:42:13 +0100213 int parent, node, ndepth = 0;
Philipp Tomsich4ab63e02017-09-13 21:29:35 +0200214 const void *data;
215
216 if (!blob)
217 return -FDT_ERR_BADMAGIC;
218
219 parent = fdt_path_offset(blob, "/fit-images");
220 if (parent < 0)
221 return -FDT_ERR_NOTFOUND;
222
223 for (node = fdt_next_node(blob, parent, &ndepth);
224 (node >= 0) && (ndepth > 0);
225 node = fdt_next_node(blob, node, &ndepth)) {
226 if (ndepth != 1)
227 continue;
228
229 data = fdt_getprop(blob, node, FIT_OS_PROP, NULL);
230 if (!data)
231 continue;
232
Joseph Chen8dc7abe2019-10-06 20:10:22 +0200233 if (genimg_get_os_id(data) == os)
Philipp Tomsich4ab63e02017-09-13 21:29:35 +0200234 return node;
235 };
236
237 return -FDT_ERR_NOTFOUND;
238}
239
240uintptr_t spl_fit_images_get_entry(void *blob, int node)
241{
242 ulong val;
Michal Simek9e64a552020-09-03 11:24:28 +0200243 int ret;
Philipp Tomsich4ab63e02017-09-13 21:29:35 +0200244
Michal Simek9e64a552020-09-03 11:24:28 +0200245 ret = fit_image_get_entry(blob, node, &val);
246 if (ret)
247 ret = fit_image_get_load(blob, node, &val);
Philipp Tomsich4ab63e02017-09-13 21:29:35 +0200248
249 debug("%s: entry point 0x%lx\n", __func__, val);
250 return val;
251}
252
Chanho Park53a44fc2023-09-08 17:08:56 +0900253void __noreturn spl_invoke_atf(struct spl_image_info *spl_image)
Philipp Tomsich4ab63e02017-09-13 21:29:35 +0200254{
Joseph Chen8dc7abe2019-10-06 20:10:22 +0200255 uintptr_t bl32_entry = 0;
Simon Glass72cc5382022-10-20 18:22:39 -0600256 uintptr_t bl33_entry = CONFIG_TEXT_BASE;
Philipp Tomsich4ab63e02017-09-13 21:29:35 +0200257 void *blob = spl_image->fdt_addr;
Philipp Tomsichc4078af2018-01-02 21:16:43 +0100258 uintptr_t platform_param = (uintptr_t)blob;
Philipp Tomsich4ab63e02017-09-13 21:29:35 +0200259 int node;
260
261 /*
Joseph Chen8dc7abe2019-10-06 20:10:22 +0200262 * Find the OP-TEE binary (in /fit-images) load address or
263 * entry point (if different) and pass it as the BL3-2 entry
264 * point, this is optional.
265 */
266 node = spl_fit_images_find(blob, IH_OS_TEE);
267 if (node >= 0)
268 bl32_entry = spl_fit_images_get_entry(blob, node);
269
270 /*
Philipp Tomsich4ab63e02017-09-13 21:29:35 +0200271 * Find the U-Boot binary (in /fit-images) load addreess or
272 * entry point (if different) and pass it as the BL3-3 entry
273 * point.
274 * This will need to be extended to support Falcon mode.
275 */
276
Joseph Chen8dc7abe2019-10-06 20:10:22 +0200277 node = spl_fit_images_find(blob, IH_OS_U_BOOT);
Philipp Tomsich4ab63e02017-09-13 21:29:35 +0200278 if (node >= 0)
279 bl33_entry = spl_fit_images_get_entry(blob, node);
280
281 /*
Philipp Tomsichc4078af2018-01-02 21:16:43 +0100282 * If ATF_NO_PLATFORM_PARAM is set, we override the platform
283 * parameter and always pass 0. This is a workaround for
284 * older ATF versions that have insufficiently robust (or
285 * overzealous) argument validation.
286 */
287 if (CONFIG_IS_ENABLED(ATF_NO_PLATFORM_PARAM))
288 platform_param = 0;
289
290 /*
Philipp Tomsich4ab63e02017-09-13 21:29:35 +0200291 * We don't provide a BL3-2 entry yet, but this will be possible
292 * using similar logic.
293 */
Joseph Chen8dc7abe2019-10-06 20:10:22 +0200294 bl31_entry(spl_image->entry_point, bl32_entry,
295 bl33_entry, platform_param);
Kever Yang6e79a912017-05-05 11:47:45 +0800296}