blob: d8eb09b90086012bb9948530f9439113b201c00b [file] [log] [blame]
Achin Gupta86f23532019-10-11 15:41:16 +01001/*
Manish V Badarkhe2f4279a2023-02-07 11:26:38 +00002 * Copyright (c) 2020-2023, Arm Limited and Contributors. All rights reserved.
Achin Gupta86f23532019-10-11 15:41:16 +01003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <assert.h>
8#include <errno.h>
Scott Brandene5dcf982020-08-25 13:49:32 -07009#include <inttypes.h>
10#include <stdint.h>
Achin Gupta86f23532019-10-11 15:41:16 +010011#include <string.h>
12
13#include <arch_helpers.h>
Olivier Deprez2bae35f2020-04-16 13:39:06 +020014#include <arch/aarch64/arch_features.h>
Achin Gupta86f23532019-10-11 15:41:16 +010015#include <bl31/bl31.h>
Olivier Depreza664c492020-08-05 11:27:42 +020016#include <bl31/interrupt_mgmt.h>
Achin Gupta86f23532019-10-11 15:41:16 +010017#include <common/debug.h>
18#include <common/runtime_svc.h>
Manish V Badarkhe2f4279a2023-02-07 11:26:38 +000019#include <common/tbbr/tbbr_img_def.h>
Achin Gupta86f23532019-10-11 15:41:16 +010020#include <lib/el3_runtime/context_mgmt.h>
Manish V Badarkhe2f4279a2023-02-07 11:26:38 +000021#include <lib/fconf/fconf.h>
22#include <lib/fconf/fconf_dyn_cfg_getter.h>
Achin Gupta86f23532019-10-11 15:41:16 +010023#include <lib/smccc.h>
24#include <lib/spinlock.h>
25#include <lib/utils.h>
Manish V Badarkhe2f4279a2023-02-07 11:26:38 +000026#include <lib/xlat_tables/xlat_tables_v2.h>
Achin Gupta86f23532019-10-11 15:41:16 +010027#include <plat/common/common_def.h>
28#include <plat/common/platform.h>
29#include <platform_def.h>
Raghu Krishnamurthy7f046c12023-02-25 13:26:10 -080030#include <services/el3_spmd_logical_sp.h>
J-Alves2672cde2020-05-07 18:42:25 +010031#include <services/ffa_svc.h>
Marc Bonnici1c33cc32021-11-29 17:57:03 +000032#include <services/spmc_svc.h>
Achin Gupta86f23532019-10-11 15:41:16 +010033#include <services/spmd_svc.h>
34#include <smccc_helpers.h>
35#include "spmd_private.h"
36
37/*******************************************************************************
38 * SPM Core context information.
39 ******************************************************************************/
Olivier Deprez2bae35f2020-04-16 13:39:06 +020040static spmd_spm_core_context_t spm_core_context[PLATFORM_CORE_COUNT];
Achin Gupta86f23532019-10-11 15:41:16 +010041
42/*******************************************************************************
Marc Bonnici1c33cc32021-11-29 17:57:03 +000043 * SPM Core attribute information is read from its manifest if the SPMC is not
44 * at EL3. Else, it is populated from the SPMC directly.
Achin Gupta86f23532019-10-11 15:41:16 +010045 ******************************************************************************/
Olivier Deprez2bae35f2020-04-16 13:39:06 +020046static spmc_manifest_attribute_t spmc_attrs;
Achin Gupta86f23532019-10-11 15:41:16 +010047
48/*******************************************************************************
Max Shvetsov745889c2020-02-27 14:54:21 +000049 * SPM Core entry point information. Discovered on the primary core and reused
50 * on secondary cores.
51 ******************************************************************************/
52static entry_point_info_t *spmc_ep_info;
53
54/*******************************************************************************
Olivier Deprez73ef0dc2020-06-19 15:33:41 +020055 * SPM Core context on CPU based on mpidr.
56 ******************************************************************************/
57spmd_spm_core_context_t *spmd_get_context_by_mpidr(uint64_t mpidr)
58{
Max Shvetsovf80c64d2020-08-25 11:50:18 +010059 int core_idx = plat_core_pos_by_mpidr(mpidr);
60
61 if (core_idx < 0) {
Scott Brandene5dcf982020-08-25 13:49:32 -070062 ERROR("Invalid mpidr: %" PRIx64 ", returned ID: %d\n", mpidr, core_idx);
Max Shvetsovf80c64d2020-08-25 11:50:18 +010063 panic();
64 }
65
66 return &spm_core_context[core_idx];
Olivier Deprez73ef0dc2020-06-19 15:33:41 +020067}
68
69/*******************************************************************************
Olivier Deprez2bae35f2020-04-16 13:39:06 +020070 * SPM Core context on current CPU get helper.
71 ******************************************************************************/
72spmd_spm_core_context_t *spmd_get_context(void)
73{
Olivier Deprez73ef0dc2020-06-19 15:33:41 +020074 return spmd_get_context_by_mpidr(read_mpidr());
Olivier Deprez2bae35f2020-04-16 13:39:06 +020075}
76
77/*******************************************************************************
Olivier Deprezc7631a52020-03-23 09:53:06 +010078 * SPM Core ID getter.
79 ******************************************************************************/
80uint16_t spmd_spmc_id_get(void)
81{
82 return spmc_attrs.spmc_id;
83}
84
85/*******************************************************************************
Max Shvetsov745889c2020-02-27 14:54:21 +000086 * Static function declaration.
87 ******************************************************************************/
Olivier Deprez2bae35f2020-04-16 13:39:06 +020088static int32_t spmd_init(void);
Olivier Deprez69ca84a2020-02-07 15:44:43 +010089static int spmd_spmc_init(void *pm_addr);
J-Alves2672cde2020-05-07 18:42:25 +010090static uint64_t spmd_ffa_error_return(void *handle,
Olivier Deprez2bae35f2020-04-16 13:39:06 +020091 int error_code);
92static uint64_t spmd_smc_forward(uint32_t smc_fid,
93 bool secure_origin,
94 uint64_t x1,
95 uint64_t x2,
96 uint64_t x3,
97 uint64_t x4,
Marc Bonnicida2c9e12021-11-29 18:02:45 +000098 void *cookie,
99 void *handle,
100 uint64_t flags);
Max Shvetsov745889c2020-02-27 14:54:21 +0000101
Daniel Boulby9460a232021-12-09 11:20:13 +0000102/******************************************************************************
103 * Builds an SPMD to SPMC direct message request.
104 *****************************************************************************/
105void spmd_build_spmc_message(gp_regs_t *gpregs, uint8_t target_func,
106 unsigned long long message)
107{
108 write_ctx_reg(gpregs, CTX_GPREG_X0, FFA_MSG_SEND_DIRECT_REQ_SMC32);
109 write_ctx_reg(gpregs, CTX_GPREG_X1,
110 (SPMD_DIRECT_MSG_ENDPOINT_ID << FFA_DIRECT_MSG_SOURCE_SHIFT) |
111 spmd_spmc_id_get());
112 write_ctx_reg(gpregs, CTX_GPREG_X2, BIT(31) | target_func);
113 write_ctx_reg(gpregs, CTX_GPREG_X3, message);
114}
115
116
Max Shvetsov745889c2020-02-27 14:54:21 +0000117/*******************************************************************************
Olivier Deprez2bae35f2020-04-16 13:39:06 +0200118 * This function takes an SPMC context pointer and performs a synchronous
119 * SPMC entry.
Achin Gupta86f23532019-10-11 15:41:16 +0100120 ******************************************************************************/
121uint64_t spmd_spm_core_sync_entry(spmd_spm_core_context_t *spmc_ctx)
122{
123 uint64_t rc;
124
125 assert(spmc_ctx != NULL);
126
127 cm_set_context(&(spmc_ctx->cpu_ctx), SECURE);
128
129 /* Restore the context assigned above */
Max Shvetsove7fd80e2020-02-25 13:55:00 +0000130#if SPMD_SPM_AT_SEL2
Max Shvetsovbdf502d2020-02-25 13:56:19 +0000131 cm_el2_sysregs_context_restore(SECURE);
Olivier Deprez9a2e5be2021-05-21 18:00:04 +0200132#else
133 cm_el1_sysregs_context_restore(SECURE);
Max Shvetsove7fd80e2020-02-25 13:55:00 +0000134#endif
Achin Gupta86f23532019-10-11 15:41:16 +0100135 cm_set_next_eret_context(SECURE);
136
Max Shvetsove7fd80e2020-02-25 13:55:00 +0000137 /* Enter SPMC */
Achin Gupta86f23532019-10-11 15:41:16 +0100138 rc = spmd_spm_core_enter(&spmc_ctx->c_rt_ctx);
139
140 /* Save secure state */
Max Shvetsove7fd80e2020-02-25 13:55:00 +0000141#if SPMD_SPM_AT_SEL2
Max Shvetsovbdf502d2020-02-25 13:56:19 +0000142 cm_el2_sysregs_context_save(SECURE);
Olivier Deprez9a2e5be2021-05-21 18:00:04 +0200143#else
144 cm_el1_sysregs_context_save(SECURE);
Max Shvetsove7fd80e2020-02-25 13:55:00 +0000145#endif
Achin Gupta86f23532019-10-11 15:41:16 +0100146
147 return rc;
148}
149
150/*******************************************************************************
Olivier Deprez2bae35f2020-04-16 13:39:06 +0200151 * This function returns to the place where spmd_spm_core_sync_entry() was
Achin Gupta86f23532019-10-11 15:41:16 +0100152 * called originally.
153 ******************************************************************************/
154__dead2 void spmd_spm_core_sync_exit(uint64_t rc)
155{
Olivier Deprez2bae35f2020-04-16 13:39:06 +0200156 spmd_spm_core_context_t *ctx = spmd_get_context();
Achin Gupta86f23532019-10-11 15:41:16 +0100157
Olivier Deprez2bae35f2020-04-16 13:39:06 +0200158 /* Get current CPU context from SPMC context */
Achin Gupta86f23532019-10-11 15:41:16 +0100159 assert(cm_get_context(SECURE) == &(ctx->cpu_ctx));
160
161 /*
162 * The SPMD must have initiated the original request through a
163 * synchronous entry into SPMC. Jump back to the original C runtime
164 * context with the value of rc in x0;
165 */
166 spmd_spm_core_exit(ctx->c_rt_ctx, rc);
167
168 panic();
169}
170
171/*******************************************************************************
Olivier Deprez2bae35f2020-04-16 13:39:06 +0200172 * Jump to the SPM Core for the first time.
Achin Gupta86f23532019-10-11 15:41:16 +0100173 ******************************************************************************/
174static int32_t spmd_init(void)
175{
Olivier Deprez2bae35f2020-04-16 13:39:06 +0200176 spmd_spm_core_context_t *ctx = spmd_get_context();
177 uint64_t rc;
Achin Gupta86f23532019-10-11 15:41:16 +0100178
Olivier Deprez2bae35f2020-04-16 13:39:06 +0200179 VERBOSE("SPM Core init start.\n");
Olivier Deprez7c016332019-10-28 09:03:13 +0000180
Olivier Deprez4ab7a4a2021-06-21 09:47:13 +0200181 /* Primary boot core enters the SPMC for initialization. */
182 ctx->state = SPMC_STATE_ON_PENDING;
Achin Gupta86f23532019-10-11 15:41:16 +0100183
184 rc = spmd_spm_core_sync_entry(ctx);
Olivier Deprez2bae35f2020-04-16 13:39:06 +0200185 if (rc != 0ULL) {
Scott Brandene5dcf982020-08-25 13:49:32 -0700186 ERROR("SPMC initialisation failed 0x%" PRIx64 "\n", rc);
Olivier Deprez2bae35f2020-04-16 13:39:06 +0200187 return 0;
Achin Gupta86f23532019-10-11 15:41:16 +0100188 }
189
Olivier Deprez7c016332019-10-28 09:03:13 +0000190 ctx->state = SPMC_STATE_ON;
191
Olivier Deprez2bae35f2020-04-16 13:39:06 +0200192 VERBOSE("SPM Core init end.\n");
Achin Gupta86f23532019-10-11 15:41:16 +0100193
Raghu Krishnamurthy7f046c12023-02-25 13:26:10 -0800194 spmd_logical_sp_set_spmc_initialized();
195 rc = spmd_logical_sp_init();
196 if (rc != 0) {
197 WARN("SPMD Logical partitions failed init.\n");
198 }
199
Achin Gupta86f23532019-10-11 15:41:16 +0100200 return 1;
201}
202
203/*******************************************************************************
Olivier Depreza664c492020-08-05 11:27:42 +0200204 * spmd_secure_interrupt_handler
205 * Enter the SPMC for further handling of the secure interrupt by the SPMC
206 * itself or a Secure Partition.
207 ******************************************************************************/
208static uint64_t spmd_secure_interrupt_handler(uint32_t id,
209 uint32_t flags,
210 void *handle,
211 void *cookie)
212{
213 spmd_spm_core_context_t *ctx = spmd_get_context();
214 gp_regs_t *gpregs = get_gpregs_ctx(&ctx->cpu_ctx);
215 unsigned int linear_id = plat_my_core_pos();
216 int64_t rc;
217
218 /* Sanity check the security state when the exception was generated */
219 assert(get_interrupt_src_ss(flags) == NON_SECURE);
220
221 /* Sanity check the pointer to this cpu's context */
222 assert(handle == cm_get_context(NON_SECURE));
223
224 /* Save the non-secure context before entering SPMC */
225 cm_el1_sysregs_context_save(NON_SECURE);
226#if SPMD_SPM_AT_SEL2
227 cm_el2_sysregs_context_save(NON_SECURE);
228#endif
229
230 /* Convey the event to the SPMC through the FFA_INTERRUPT interface. */
231 write_ctx_reg(gpregs, CTX_GPREG_X0, FFA_INTERRUPT);
232 write_ctx_reg(gpregs, CTX_GPREG_X1, 0);
233 write_ctx_reg(gpregs, CTX_GPREG_X2, 0);
234 write_ctx_reg(gpregs, CTX_GPREG_X3, 0);
235 write_ctx_reg(gpregs, CTX_GPREG_X4, 0);
236 write_ctx_reg(gpregs, CTX_GPREG_X5, 0);
237 write_ctx_reg(gpregs, CTX_GPREG_X6, 0);
238 write_ctx_reg(gpregs, CTX_GPREG_X7, 0);
239
240 /* Mark current core as handling a secure interrupt. */
241 ctx->secure_interrupt_ongoing = true;
242
243 rc = spmd_spm_core_sync_entry(ctx);
244 if (rc != 0ULL) {
Olivier Deprezba100f22021-11-09 12:37:20 +0100245 ERROR("%s failed (%" PRId64 ") on CPU%u\n", __func__, rc, linear_id);
Olivier Depreza664c492020-08-05 11:27:42 +0200246 }
247
248 ctx->secure_interrupt_ongoing = false;
249
250 cm_el1_sysregs_context_restore(NON_SECURE);
251#if SPMD_SPM_AT_SEL2
252 cm_el2_sysregs_context_restore(NON_SECURE);
253#endif
254 cm_set_next_eret_context(NON_SECURE);
255
256 SMC_RET0(&ctx->cpu_ctx);
257}
258
Olivier Deprez35bbcf22023-06-08 18:23:26 +0200259#if (EL3_EXCEPTION_HANDLING == 0)
Madhukar Pappireddyb494acf2023-03-02 15:34:05 -0600260/*******************************************************************************
261 * spmd_group0_interrupt_handler_nwd
262 * Group0 secure interrupt in the normal world are trapped to EL3. Delegate the
263 * handling of the interrupt to the platform handler, and return only upon
264 * successfully handling the Group0 interrupt.
265 ******************************************************************************/
266static uint64_t spmd_group0_interrupt_handler_nwd(uint32_t id,
267 uint32_t flags,
268 void *handle,
269 void *cookie)
270{
271 uint32_t intid;
272
273 /* Sanity check the security state when the exception was generated. */
274 assert(get_interrupt_src_ss(flags) == NON_SECURE);
275
276 /* Sanity check the pointer to this cpu's context. */
277 assert(handle == cm_get_context(NON_SECURE));
278
279 assert(id == INTR_ID_UNAVAILABLE);
280
281 assert(plat_ic_get_pending_interrupt_type() == INTR_TYPE_EL3);
282
Madhukar Pappireddy2ca75702023-07-12 16:28:05 -0500283 intid = plat_ic_acknowledge_interrupt();
Madhukar Pappireddyb494acf2023-03-02 15:34:05 -0600284
285 if (plat_spmd_handle_group0_interrupt(intid) < 0) {
286 ERROR("Group0 interrupt %u not handled\n", intid);
287 panic();
288 }
289
Madhukar Pappireddy2ca75702023-07-12 16:28:05 -0500290 /* Deactivate the corresponding Group0 interrupt. */
291 plat_ic_end_of_interrupt(intid);
292
Madhukar Pappireddyb494acf2023-03-02 15:34:05 -0600293 return 0U;
294}
Olivier Deprez35bbcf22023-06-08 18:23:26 +0200295#endif
Madhukar Pappireddyb494acf2023-03-02 15:34:05 -0600296
Madhukar Pappireddy41416cc2023-03-02 16:04:38 -0600297/*******************************************************************************
298 * spmd_handle_group0_intr_swd
299 * SPMC delegates handling of Group0 secure interrupt to EL3 firmware using
300 * FFA_EL3_INTR_HANDLE SMC call. Further, SPMD delegates the handling of the
301 * interrupt to the platform handler, and returns only upon successfully
302 * handling the Group0 interrupt.
303 ******************************************************************************/
304static uint64_t spmd_handle_group0_intr_swd(void *handle)
305{
306 uint32_t intid;
307
308 /* Sanity check the pointer to this cpu's context */
309 assert(handle == cm_get_context(SECURE));
310
311 assert(plat_ic_get_pending_interrupt_type() == INTR_TYPE_EL3);
312
Madhukar Pappireddy2ca75702023-07-12 16:28:05 -0500313 intid = plat_ic_acknowledge_interrupt();
Madhukar Pappireddy41416cc2023-03-02 16:04:38 -0600314
315 /*
316 * TODO: Currently due to a limitation in SPMD implementation, the
317 * platform handler is expected to not delegate handling to NWd while
318 * processing Group0 secure interrupt.
319 */
320 if (plat_spmd_handle_group0_interrupt(intid) < 0) {
321 /* Group0 interrupt was not handled by the platform. */
322 ERROR("Group0 interrupt %u not handled\n", intid);
323 panic();
324 }
325
Madhukar Pappireddy2ca75702023-07-12 16:28:05 -0500326 /* Deactivate the corresponding Group0 interrupt. */
327 plat_ic_end_of_interrupt(intid);
328
Madhukar Pappireddy41416cc2023-03-02 16:04:38 -0600329 /* Return success. */
330 SMC_RET8(handle, FFA_SUCCESS_SMC32, FFA_PARAM_MBZ, FFA_PARAM_MBZ,
331 FFA_PARAM_MBZ, FFA_PARAM_MBZ, FFA_PARAM_MBZ, FFA_PARAM_MBZ,
332 FFA_PARAM_MBZ);
333}
334
Manish V Badarkhe2f4279a2023-02-07 11:26:38 +0000335#if ENABLE_RME && SPMD_SPM_AT_SEL2 && !RESET_TO_BL31
336static int spmd_dynamic_map_mem(uintptr_t base_addr, size_t size,
337 unsigned int attr, uintptr_t *align_addr,
338 size_t *align_size)
339{
340 uintptr_t base_addr_align;
341 size_t mapped_size_align;
342 int rc;
343
344 /* Page aligned address and size if necessary */
345 base_addr_align = page_align(base_addr, DOWN);
346 mapped_size_align = page_align(size, UP);
347
348 if ((base_addr != base_addr_align) &&
349 (size == mapped_size_align)) {
350 mapped_size_align += PAGE_SIZE;
351 }
352
353 /*
354 * Map dynamically given region with its aligned base address and
355 * size
356 */
357 rc = mmap_add_dynamic_region((unsigned long long)base_addr_align,
358 base_addr_align,
359 mapped_size_align,
360 attr);
361 if (rc == 0) {
362 *align_addr = base_addr_align;
363 *align_size = mapped_size_align;
364 }
365
366 return rc;
367}
368
369static void spmd_do_sec_cpy(uintptr_t root_base_addr, uintptr_t sec_base_addr,
370 size_t size)
371{
372 uintptr_t root_base_addr_align, sec_base_addr_align;
373 size_t root_mapped_size_align, sec_mapped_size_align;
374 int rc;
375
376 assert(root_base_addr != 0UL);
377 assert(sec_base_addr != 0UL);
378 assert(size != 0UL);
379
380 /* Map the memory with required attributes */
381 rc = spmd_dynamic_map_mem(root_base_addr, size, MT_RO_DATA | MT_ROOT,
382 &root_base_addr_align,
383 &root_mapped_size_align);
384 if (rc != 0) {
385 ERROR("%s %s %lu (%d)\n", "Error while mapping", "root region",
386 root_base_addr, rc);
387 panic();
388 }
389
390 rc = spmd_dynamic_map_mem(sec_base_addr, size, MT_RW_DATA | MT_SECURE,
391 &sec_base_addr_align, &sec_mapped_size_align);
392 if (rc != 0) {
393 ERROR("%s %s %lu (%d)\n", "Error while mapping",
394 "secure region", sec_base_addr, rc);
395 panic();
396 }
397
398 /* Do copy operation */
399 (void)memcpy((void *)sec_base_addr, (void *)root_base_addr, size);
400
401 /* Unmap root memory region */
402 rc = mmap_remove_dynamic_region(root_base_addr_align,
403 root_mapped_size_align);
404 if (rc != 0) {
405 ERROR("%s %s %lu (%d)\n", "Error while unmapping",
406 "root region", root_base_addr_align, rc);
407 panic();
408 }
409
410 /* Unmap secure memory region */
411 rc = mmap_remove_dynamic_region(sec_base_addr_align,
412 sec_mapped_size_align);
413 if (rc != 0) {
414 ERROR("%s %s %lu (%d)\n", "Error while unmapping",
415 "secure region", sec_base_addr_align, rc);
416 panic();
417 }
418}
419#endif /* ENABLE_RME && SPMD_SPM_AT_SEL2 && !RESET_TO_BL31 */
420
Olivier Depreza664c492020-08-05 11:27:42 +0200421/*******************************************************************************
Olivier Deprez2bae35f2020-04-16 13:39:06 +0200422 * Loads SPMC manifest and inits SPMC.
Achin Gupta86f23532019-10-11 15:41:16 +0100423 ******************************************************************************/
Olivier Deprez69ca84a2020-02-07 15:44:43 +0100424static int spmd_spmc_init(void *pm_addr)
Achin Gupta86f23532019-10-11 15:41:16 +0100425{
Olivier Deprez4ab7a4a2021-06-21 09:47:13 +0200426 cpu_context_t *cpu_ctx;
427 unsigned int core_id;
Olivier Depreza664c492020-08-05 11:27:42 +0200428 uint32_t ep_attr, flags;
Olivier Deprez2bae35f2020-04-16 13:39:06 +0200429 int rc;
Manish V Badarkhe2f4279a2023-02-07 11:26:38 +0000430 const struct dyn_cfg_dtb_info_t *image_info __unused;
Achin Gupta86f23532019-10-11 15:41:16 +0100431
Olivier Deprez2bae35f2020-04-16 13:39:06 +0200432 /* Load the SPM Core manifest */
Olivier Deprez69ca84a2020-02-07 15:44:43 +0100433 rc = plat_spm_core_manifest_load(&spmc_attrs, pm_addr);
Max Shvetsov745889c2020-02-27 14:54:21 +0000434 if (rc != 0) {
Olivier Deprez2bae35f2020-04-16 13:39:06 +0200435 WARN("No or invalid SPM Core manifest image provided by BL2\n");
436 return rc;
Achin Gupta86f23532019-10-11 15:41:16 +0100437 }
438
439 /*
Olivier Deprez2bae35f2020-04-16 13:39:06 +0200440 * Ensure that the SPM Core version is compatible with the SPM
441 * Dispatcher version.
Achin Gupta86f23532019-10-11 15:41:16 +0100442 */
J-Alves2672cde2020-05-07 18:42:25 +0100443 if ((spmc_attrs.major_version != FFA_VERSION_MAJOR) ||
444 (spmc_attrs.minor_version > FFA_VERSION_MINOR)) {
445 WARN("Unsupported FFA version (%u.%u)\n",
Achin Gupta86f23532019-10-11 15:41:16 +0100446 spmc_attrs.major_version, spmc_attrs.minor_version);
Olivier Deprez2bae35f2020-04-16 13:39:06 +0200447 return -EINVAL;
Achin Gupta86f23532019-10-11 15:41:16 +0100448 }
449
J-Alves2672cde2020-05-07 18:42:25 +0100450 VERBOSE("FFA version (%u.%u)\n", spmc_attrs.major_version,
Achin Gupta86f23532019-10-11 15:41:16 +0100451 spmc_attrs.minor_version);
452
Olivier Deprez2bae35f2020-04-16 13:39:06 +0200453 VERBOSE("SPM Core run time EL%x.\n",
Max Shvetsove7fd80e2020-02-25 13:55:00 +0000454 SPMD_SPM_AT_SEL2 ? MODE_EL2 : MODE_EL1);
Achin Gupta86f23532019-10-11 15:41:16 +0100455
Max Shvetsove79062e2020-03-12 15:16:40 +0000456 /* Validate the SPMC ID, Ensure high bit is set */
Olivier Deprez2bae35f2020-04-16 13:39:06 +0200457 if (((spmc_attrs.spmc_id >> SPMC_SECURE_ID_SHIFT) &
458 SPMC_SECURE_ID_MASK) == 0U) {
459 WARN("Invalid ID (0x%x) for SPMC.\n", spmc_attrs.spmc_id);
460 return -EINVAL;
Max Shvetsove79062e2020-03-12 15:16:40 +0000461 }
462
Olivier Deprez2bae35f2020-04-16 13:39:06 +0200463 /* Validate the SPM Core execution state */
Achin Gupta86f23532019-10-11 15:41:16 +0100464 if ((spmc_attrs.exec_state != MODE_RW_64) &&
465 (spmc_attrs.exec_state != MODE_RW_32)) {
Olivier Deprez69ca84a2020-02-07 15:44:43 +0100466 WARN("Unsupported %s%x.\n", "SPM Core execution state 0x",
Achin Gupta86f23532019-10-11 15:41:16 +0100467 spmc_attrs.exec_state);
Olivier Deprez2bae35f2020-04-16 13:39:06 +0200468 return -EINVAL;
Achin Gupta86f23532019-10-11 15:41:16 +0100469 }
470
Olivier Deprez69ca84a2020-02-07 15:44:43 +0100471 VERBOSE("%s%x.\n", "SPM Core execution state 0x",
472 spmc_attrs.exec_state);
Achin Gupta86f23532019-10-11 15:41:16 +0100473
Max Shvetsove7fd80e2020-02-25 13:55:00 +0000474#if SPMD_SPM_AT_SEL2
475 /* Ensure manifest has not requested AArch32 state in S-EL2 */
476 if (spmc_attrs.exec_state == MODE_RW_32) {
477 WARN("AArch32 state at S-EL2 is not supported.\n");
Olivier Deprez2bae35f2020-04-16 13:39:06 +0200478 return -EINVAL;
Achin Gupta86f23532019-10-11 15:41:16 +0100479 }
480
481 /*
482 * Check if S-EL2 is supported on this system if S-EL2
483 * is required for SPM
484 */
Andre Przywara6dd2d062023-02-22 16:53:50 +0000485 if (!is_feat_sel2_supported()) {
Olivier Deprez2bae35f2020-04-16 13:39:06 +0200486 WARN("SPM Core run time S-EL2 is not supported.\n");
487 return -EINVAL;
Achin Gupta86f23532019-10-11 15:41:16 +0100488 }
Max Shvetsove7fd80e2020-02-25 13:55:00 +0000489#endif /* SPMD_SPM_AT_SEL2 */
Achin Gupta86f23532019-10-11 15:41:16 +0100490
491 /* Initialise an entrypoint to set up the CPU context */
492 ep_attr = SECURE | EP_ST_ENABLE;
Olivier Deprez2bae35f2020-04-16 13:39:06 +0200493 if ((read_sctlr_el3() & SCTLR_EE_BIT) != 0ULL) {
Achin Gupta86f23532019-10-11 15:41:16 +0100494 ep_attr |= EP_EE_BIG;
Max Shvetsov745889c2020-02-27 14:54:21 +0000495 }
496
Achin Gupta86f23532019-10-11 15:41:16 +0100497 SET_PARAM_HEAD(spmc_ep_info, PARAM_EP, VERSION_1, ep_attr);
Achin Gupta86f23532019-10-11 15:41:16 +0100498
499 /*
Olivier Deprez2bae35f2020-04-16 13:39:06 +0200500 * Populate SPSR for SPM Core based upon validated parameters from the
501 * manifest.
Achin Gupta86f23532019-10-11 15:41:16 +0100502 */
503 if (spmc_attrs.exec_state == MODE_RW_32) {
504 spmc_ep_info->spsr = SPSR_MODE32(MODE32_svc, SPSR_T_ARM,
505 SPSR_E_LITTLE,
506 DAIF_FIQ_BIT |
507 DAIF_IRQ_BIT |
508 DAIF_ABT_BIT);
509 } else {
Max Shvetsove7fd80e2020-02-25 13:55:00 +0000510
511#if SPMD_SPM_AT_SEL2
512 static const uint32_t runtime_el = MODE_EL2;
513#else
514 static const uint32_t runtime_el = MODE_EL1;
515#endif
516 spmc_ep_info->spsr = SPSR_64(runtime_el,
Achin Gupta86f23532019-10-11 15:41:16 +0100517 MODE_SP_ELX,
518 DISABLE_ALL_EXCEPTIONS);
519 }
520
Manish V Badarkhe2f4279a2023-02-07 11:26:38 +0000521#if ENABLE_RME && SPMD_SPM_AT_SEL2 && !RESET_TO_BL31
522 image_info = FCONF_GET_PROPERTY(dyn_cfg, dtb, TOS_FW_CONFIG_ID);
523 assert(image_info != NULL);
524
525 if ((image_info->config_addr == 0UL) ||
526 (image_info->secondary_config_addr == 0UL) ||
527 (image_info->config_max_size == 0UL)) {
528 return -EINVAL;
529 }
530
531 /* Copy manifest from root->secure region */
532 spmd_do_sec_cpy(image_info->config_addr,
533 image_info->secondary_config_addr,
534 image_info->config_max_size);
535
536 /* Update ep info of BL32 */
537 assert(spmc_ep_info != NULL);
538 spmc_ep_info->args.arg0 = image_info->secondary_config_addr;
539#endif /* ENABLE_RME && SPMD_SPM_AT_SEL2 && !RESET_TO_BL31 */
540
Olivier Deprez4ab7a4a2021-06-21 09:47:13 +0200541 /* Set an initial SPMC context state for all cores. */
542 for (core_id = 0U; core_id < PLATFORM_CORE_COUNT; core_id++) {
543 spm_core_context[core_id].state = SPMC_STATE_OFF;
Max Shvetsov745889c2020-02-27 14:54:21 +0000544
Olivier Deprez4ab7a4a2021-06-21 09:47:13 +0200545 /* Setup an initial cpu context for the SPMC. */
546 cpu_ctx = &spm_core_context[core_id].cpu_ctx;
547 cm_setup_context(cpu_ctx, spmc_ep_info);
Achin Gupta86f23532019-10-11 15:41:16 +0100548
Olivier Deprez4ab7a4a2021-06-21 09:47:13 +0200549 /*
550 * Pass the core linear ID to the SPMC through x4.
551 * (TF-A implementation defined behavior helping
552 * a legacy TOS migration to adopt FF-A).
553 */
554 write_ctx_reg(get_gpregs_ctx(cpu_ctx), CTX_GPREG_X4, core_id);
555 }
Achin Gupta86f23532019-10-11 15:41:16 +0100556
Olivier Deprez9afca122019-10-28 09:15:52 +0000557 /* Register power management hooks with PSCI */
558 psci_register_spd_pm_hook(&spmd_pm);
559
Olivier Deprez2bae35f2020-04-16 13:39:06 +0200560 /* Register init function for deferred init. */
Achin Gupta86f23532019-10-11 15:41:16 +0100561 bl31_register_bl32_init(&spmd_init);
562
Olivier Deprez4ab7a4a2021-06-21 09:47:13 +0200563 INFO("SPM Core setup done.\n");
564
Olivier Depreza664c492020-08-05 11:27:42 +0200565 /*
566 * Register an interrupt handler routing secure interrupts to SPMD
567 * while the NWd is running.
568 */
569 flags = 0;
570 set_interrupt_rm_flag(flags, NON_SECURE);
571 rc = register_interrupt_type_handler(INTR_TYPE_S_EL1,
572 spmd_secure_interrupt_handler,
573 flags);
574 if (rc != 0) {
575 panic();
576 }
577
Madhukar Pappireddyb494acf2023-03-02 15:34:05 -0600578 /*
Olivier Deprez35bbcf22023-06-08 18:23:26 +0200579 * Permit configurations where the SPM resides at S-EL1/2 and upon a
580 * Group0 interrupt triggering while the normal world runs, the
581 * interrupt is routed either through the EHF or directly to the SPMD:
582 *
583 * EL3_EXCEPTION_HANDLING=0: the Group0 interrupt is routed to the SPMD
584 * for handling by spmd_group0_interrupt_handler_nwd.
585 *
586 * EL3_EXCEPTION_HANDLING=1: the Group0 interrupt is routed to the EHF.
587 *
588 */
589#if (EL3_EXCEPTION_HANDLING == 0)
590 /*
Madhukar Pappireddyb494acf2023-03-02 15:34:05 -0600591 * Register an interrupt handler routing Group0 interrupts to SPMD
592 * while the NWd is running.
593 */
594 rc = register_interrupt_type_handler(INTR_TYPE_EL3,
595 spmd_group0_interrupt_handler_nwd,
596 flags);
597 if (rc != 0) {
598 panic();
599 }
Olivier Deprez35bbcf22023-06-08 18:23:26 +0200600#endif
601
Achin Gupta86f23532019-10-11 15:41:16 +0100602 return 0;
Max Shvetsov745889c2020-02-27 14:54:21 +0000603}
Achin Gupta86f23532019-10-11 15:41:16 +0100604
Max Shvetsov745889c2020-02-27 14:54:21 +0000605/*******************************************************************************
Olivier Deprez2bae35f2020-04-16 13:39:06 +0200606 * Initialize context of SPM Core.
Max Shvetsov745889c2020-02-27 14:54:21 +0000607 ******************************************************************************/
608int spmd_setup(void)
609{
610 int rc;
Marc Bonnici1c33cc32021-11-29 17:57:03 +0000611 void *spmc_manifest;
612
613 /*
614 * If the SPMC is at EL3, then just initialise it directly. The
615 * shenanigans of when it is at a lower EL are not needed.
616 */
617 if (is_spmc_at_el3()) {
618 /* Allow the SPMC to populate its attributes directly. */
619 spmc_populate_attrs(&spmc_attrs);
620
621 rc = spmc_setup();
622 if (rc != 0) {
Olivier Deprez3d203f42022-11-16 16:46:23 +0100623 WARN("SPMC initialisation failed 0x%x.\n", rc);
Marc Bonnici1c33cc32021-11-29 17:57:03 +0000624 }
Olivier Deprez3d203f42022-11-16 16:46:23 +0100625 return 0;
Marc Bonnici1c33cc32021-11-29 17:57:03 +0000626 }
Achin Gupta86f23532019-10-11 15:41:16 +0100627
Max Shvetsov745889c2020-02-27 14:54:21 +0000628 spmc_ep_info = bl31_plat_get_next_image_ep_info(SECURE);
Olivier Deprez2bae35f2020-04-16 13:39:06 +0200629 if (spmc_ep_info == NULL) {
630 WARN("No SPM Core image provided by BL2 boot loader.\n");
Olivier Deprez3d203f42022-11-16 16:46:23 +0100631 return 0;
Max Shvetsov745889c2020-02-27 14:54:21 +0000632 }
633
634 /* Under no circumstances will this parameter be 0 */
Olivier Deprez2bae35f2020-04-16 13:39:06 +0200635 assert(spmc_ep_info->pc != 0ULL);
Max Shvetsov745889c2020-02-27 14:54:21 +0000636
637 /*
638 * Check if BL32 ep_info has a reference to 'tos_fw_config'. This will
Olivier Deprez2bae35f2020-04-16 13:39:06 +0200639 * be used as a manifest for the SPM Core at the next lower EL/mode.
Max Shvetsov745889c2020-02-27 14:54:21 +0000640 */
Olivier Deprez69ca84a2020-02-07 15:44:43 +0100641 spmc_manifest = (void *)spmc_ep_info->args.arg0;
642 if (spmc_manifest == NULL) {
Olivier Deprez3d203f42022-11-16 16:46:23 +0100643 WARN("Invalid or absent SPM Core manifest.\n");
644 return 0;
Max Shvetsov745889c2020-02-27 14:54:21 +0000645 }
646
647 /* Load manifest, init SPMC */
Olivier Deprez69ca84a2020-02-07 15:44:43 +0100648 rc = spmd_spmc_init(spmc_manifest);
Max Shvetsov745889c2020-02-27 14:54:21 +0000649 if (rc != 0) {
Olivier Deprez2bae35f2020-04-16 13:39:06 +0200650 WARN("Booting device without SPM initialization.\n");
Max Shvetsov745889c2020-02-27 14:54:21 +0000651 }
652
Olivier Deprez3d203f42022-11-16 16:46:23 +0100653 return 0;
Max Shvetsov745889c2020-02-27 14:54:21 +0000654}
655
656/*******************************************************************************
Marc Bonnicida2c9e12021-11-29 18:02:45 +0000657 * Forward FF-A SMCs to the other security state.
Max Shvetsov745889c2020-02-27 14:54:21 +0000658 ******************************************************************************/
Marc Bonnicida2c9e12021-11-29 18:02:45 +0000659uint64_t spmd_smc_switch_state(uint32_t smc_fid,
660 bool secure_origin,
661 uint64_t x1,
662 uint64_t x2,
663 uint64_t x3,
664 uint64_t x4,
665 void *handle)
Max Shvetsov745889c2020-02-27 14:54:21 +0000666{
Olivier Deprezebc34772020-04-16 16:59:21 +0200667 unsigned int secure_state_in = (secure_origin) ? SECURE : NON_SECURE;
668 unsigned int secure_state_out = (!secure_origin) ? SECURE : NON_SECURE;
Olivier Deprez41ff36a2019-12-23 16:21:12 +0100669
Max Shvetsov745889c2020-02-27 14:54:21 +0000670 /* Save incoming security state */
Max Shvetsove7fd80e2020-02-25 13:55:00 +0000671#if SPMD_SPM_AT_SEL2
Olivier Deprez9a2e5be2021-05-21 18:00:04 +0200672 if (secure_state_in == NON_SECURE) {
673 cm_el1_sysregs_context_save(secure_state_in);
674 }
Olivier Deprez41ff36a2019-12-23 16:21:12 +0100675 cm_el2_sysregs_context_save(secure_state_in);
Olivier Deprez9a2e5be2021-05-21 18:00:04 +0200676#else
677 cm_el1_sysregs_context_save(secure_state_in);
Max Shvetsove7fd80e2020-02-25 13:55:00 +0000678#endif
Max Shvetsov745889c2020-02-27 14:54:21 +0000679
680 /* Restore outgoing security state */
Max Shvetsove7fd80e2020-02-25 13:55:00 +0000681#if SPMD_SPM_AT_SEL2
Olivier Deprez9a2e5be2021-05-21 18:00:04 +0200682 if (secure_state_out == NON_SECURE) {
683 cm_el1_sysregs_context_restore(secure_state_out);
684 }
Olivier Deprez41ff36a2019-12-23 16:21:12 +0100685 cm_el2_sysregs_context_restore(secure_state_out);
Olivier Deprez9a2e5be2021-05-21 18:00:04 +0200686#else
687 cm_el1_sysregs_context_restore(secure_state_out);
Max Shvetsove7fd80e2020-02-25 13:55:00 +0000688#endif
Olivier Deprez41ff36a2019-12-23 16:21:12 +0100689 cm_set_next_eret_context(secure_state_out);
Max Shvetsov745889c2020-02-27 14:54:21 +0000690
Raghu Krishnamurthy435f11c2022-12-25 13:02:00 -0800691#if SPMD_SPM_AT_SEL2
692 /*
693 * If SPMC is at SEL2, save additional registers x8-x17, which may
694 * be used in FF-A calls such as FFA_PARTITION_INFO_GET_REGS.
695 * Note that technically, all SPMCs can support this, but this code is
696 * under ifdef to minimize breakage in case other SPMCs do not save
697 * and restore x8-x17.
698 * We also need to pass through these registers since not all FF-A ABIs
699 * modify x8-x17, in which case, SMCCC requires that these registers be
700 * preserved, so the SPMD passes through these registers and expects the
701 * SPMC to save and restore (potentially also modify) them.
702 */
703 SMC_RET18(cm_get_context(secure_state_out), smc_fid, x1, x2, x3, x4,
704 SMC_GET_GP(handle, CTX_GPREG_X5),
705 SMC_GET_GP(handle, CTX_GPREG_X6),
706 SMC_GET_GP(handle, CTX_GPREG_X7),
707 SMC_GET_GP(handle, CTX_GPREG_X8),
708 SMC_GET_GP(handle, CTX_GPREG_X9),
709 SMC_GET_GP(handle, CTX_GPREG_X10),
710 SMC_GET_GP(handle, CTX_GPREG_X11),
711 SMC_GET_GP(handle, CTX_GPREG_X12),
712 SMC_GET_GP(handle, CTX_GPREG_X13),
713 SMC_GET_GP(handle, CTX_GPREG_X14),
714 SMC_GET_GP(handle, CTX_GPREG_X15),
715 SMC_GET_GP(handle, CTX_GPREG_X16),
716 SMC_GET_GP(handle, CTX_GPREG_X17)
717 );
718
719#else
Olivier Deprez41ff36a2019-12-23 16:21:12 +0100720 SMC_RET8(cm_get_context(secure_state_out), smc_fid, x1, x2, x3, x4,
Max Shvetsov745889c2020-02-27 14:54:21 +0000721 SMC_GET_GP(handle, CTX_GPREG_X5),
722 SMC_GET_GP(handle, CTX_GPREG_X6),
723 SMC_GET_GP(handle, CTX_GPREG_X7));
Raghu Krishnamurthy435f11c2022-12-25 13:02:00 -0800724#endif
Max Shvetsov745889c2020-02-27 14:54:21 +0000725}
726
727/*******************************************************************************
Marc Bonnicida2c9e12021-11-29 18:02:45 +0000728 * Forward SMCs to the other security state.
729 ******************************************************************************/
730static uint64_t spmd_smc_forward(uint32_t smc_fid,
731 bool secure_origin,
732 uint64_t x1,
733 uint64_t x2,
734 uint64_t x3,
735 uint64_t x4,
736 void *cookie,
737 void *handle,
738 uint64_t flags)
739{
740 if (is_spmc_at_el3() && !secure_origin) {
741 return spmc_smc_handler(smc_fid, secure_origin, x1, x2, x3, x4,
742 cookie, handle, flags);
743 }
744 return spmd_smc_switch_state(smc_fid, secure_origin, x1, x2, x3, x4,
745 handle);
746
747}
748
749/*******************************************************************************
J-Alves2672cde2020-05-07 18:42:25 +0100750 * Return FFA_ERROR with specified error code
Max Shvetsov745889c2020-02-27 14:54:21 +0000751 ******************************************************************************/
J-Alves2672cde2020-05-07 18:42:25 +0100752static uint64_t spmd_ffa_error_return(void *handle, int error_code)
Max Shvetsov745889c2020-02-27 14:54:21 +0000753{
J-Alves64ff9932021-03-01 10:26:59 +0000754 SMC_RET8(handle, (uint32_t) FFA_ERROR,
755 FFA_TARGET_INFO_MBZ, (uint32_t)error_code,
J-Alves2672cde2020-05-07 18:42:25 +0100756 FFA_PARAM_MBZ, FFA_PARAM_MBZ, FFA_PARAM_MBZ,
757 FFA_PARAM_MBZ, FFA_PARAM_MBZ);
Achin Gupta86f23532019-10-11 15:41:16 +0100758}
759
Olivier Deprez33e44122020-04-16 17:54:27 +0200760/*******************************************************************************
761 * spmd_check_address_in_binary_image
762 ******************************************************************************/
763bool spmd_check_address_in_binary_image(uint64_t address)
764{
765 assert(!check_uptr_overflow(spmc_attrs.load_address, spmc_attrs.binary_size));
766
767 return ((address >= spmc_attrs.load_address) &&
768 (address < (spmc_attrs.load_address + spmc_attrs.binary_size)));
769}
770
Olivier Deprezebc34772020-04-16 16:59:21 +0200771/******************************************************************************
772 * spmd_is_spmc_message
773 *****************************************************************************/
774static bool spmd_is_spmc_message(unsigned int ep)
775{
Marc Bonnicida2c9e12021-11-29 18:02:45 +0000776 if (is_spmc_at_el3()) {
777 return false;
778 }
779
Olivier Deprezebc34772020-04-16 16:59:21 +0200780 return ((ffa_endpoint_destination(ep) == SPMD_DIRECT_MSG_ENDPOINT_ID)
781 && (ffa_endpoint_source(ep) == spmc_attrs.spmc_id));
782}
783
Olivier Deprez33e44122020-04-16 17:54:27 +0200784/******************************************************************************
785 * spmd_handle_spmc_message
786 *****************************************************************************/
Olivier Deprezc7631a52020-03-23 09:53:06 +0100787static int spmd_handle_spmc_message(unsigned long long msg,
788 unsigned long long parm1, unsigned long long parm2,
789 unsigned long long parm3, unsigned long long parm4)
Olivier Deprez33e44122020-04-16 17:54:27 +0200790{
791 VERBOSE("%s %llx %llx %llx %llx %llx\n", __func__,
792 msg, parm1, parm2, parm3, parm4);
793
Olivier Deprez33e44122020-04-16 17:54:27 +0200794 return -EINVAL;
795}
796
Achin Gupta86f23532019-10-11 15:41:16 +0100797/*******************************************************************************
Marc Bonnicida2c9e12021-11-29 18:02:45 +0000798 * This function forwards FF-A SMCs to either the main SPMD handler or the
799 * SPMC at EL3, depending on the origin security state, if enabled.
800 ******************************************************************************/
801uint64_t spmd_ffa_smc_handler(uint32_t smc_fid,
802 uint64_t x1,
803 uint64_t x2,
804 uint64_t x3,
805 uint64_t x4,
806 void *cookie,
807 void *handle,
808 uint64_t flags)
809{
810 if (is_spmc_at_el3()) {
811 /*
812 * If we have an SPMC at EL3 allow handling of the SMC first.
813 * The SPMC will call back through to SPMD handler if required.
814 */
815 if (is_caller_secure(flags)) {
816 return spmc_smc_handler(smc_fid,
817 is_caller_secure(flags),
818 x1, x2, x3, x4, cookie,
819 handle, flags);
820 }
821 }
822 return spmd_smc_handler(smc_fid, x1, x2, x3, x4, cookie,
823 handle, flags);
824}
825
826/*******************************************************************************
J-Alves2672cde2020-05-07 18:42:25 +0100827 * This function handles all SMCs in the range reserved for FFA. Each call is
Achin Gupta86f23532019-10-11 15:41:16 +0100828 * either forwarded to the other security state or handled by the SPM dispatcher
829 ******************************************************************************/
Olivier Deprez2bae35f2020-04-16 13:39:06 +0200830uint64_t spmd_smc_handler(uint32_t smc_fid,
831 uint64_t x1,
832 uint64_t x2,
833 uint64_t x3,
834 uint64_t x4,
835 void *cookie,
836 void *handle,
Achin Gupta86f23532019-10-11 15:41:16 +0100837 uint64_t flags)
838{
Olivier Deprezeae45962021-01-19 15:06:47 +0100839 unsigned int linear_id = plat_my_core_pos();
Olivier Deprez2bae35f2020-04-16 13:39:06 +0200840 spmd_spm_core_context_t *ctx = spmd_get_context();
Olivier Deprez41ff36a2019-12-23 16:21:12 +0100841 bool secure_origin;
842 int32_t ret;
J-Alves4c95c702020-05-26 14:03:05 +0100843 uint32_t input_version;
Achin Gupta86f23532019-10-11 15:41:16 +0100844
845 /* Determine which security state this SMC originated from */
Olivier Deprez41ff36a2019-12-23 16:21:12 +0100846 secure_origin = is_caller_secure(flags);
Achin Gupta86f23532019-10-11 15:41:16 +0100847
Scott Brandene5dcf982020-08-25 13:49:32 -0700848 VERBOSE("SPM(%u): 0x%x 0x%" PRIx64 " 0x%" PRIx64 " 0x%" PRIx64 " 0x%" PRIx64
849 " 0x%" PRIx64 " 0x%" PRIx64 " 0x%" PRIx64 "\n",
850 linear_id, smc_fid, x1, x2, x3, x4,
851 SMC_GET_GP(handle, CTX_GPREG_X5),
852 SMC_GET_GP(handle, CTX_GPREG_X6),
853 SMC_GET_GP(handle, CTX_GPREG_X7));
Achin Gupta86f23532019-10-11 15:41:16 +0100854
Raghu Krishnamurthy43fda972023-04-22 11:28:38 -0700855 /*
856 * If there is an on-going info regs from EL3 SPMD LP, unconditionally
857 * return, we don't expect any other FF-A ABIs to be called between
858 * calls to FFA_PARTITION_INFO_GET_REGS.
859 */
860 if (is_spmd_logical_sp_info_regs_req_in_progress(ctx)) {
861 assert(secure_origin);
862 spmd_spm_core_sync_exit(0ULL);
863 }
864
Achin Gupta86f23532019-10-11 15:41:16 +0100865 switch (smc_fid) {
J-Alves2672cde2020-05-07 18:42:25 +0100866 case FFA_ERROR:
Achin Gupta86f23532019-10-11 15:41:16 +0100867 /*
868 * Check if this is the first invocation of this interface on
Olivier Deprez2bae35f2020-04-16 13:39:06 +0200869 * this CPU. If so, then indicate that the SPM Core initialised
Achin Gupta86f23532019-10-11 15:41:16 +0100870 * unsuccessfully.
871 */
Olivier Deprez7c016332019-10-28 09:03:13 +0000872 if (secure_origin && (ctx->state == SPMC_STATE_ON_PENDING)) {
Achin Gupta86f23532019-10-11 15:41:16 +0100873 spmd_spm_core_sync_exit(x2);
Max Shvetsov745889c2020-02-27 14:54:21 +0000874 }
Achin Gupta86f23532019-10-11 15:41:16 +0100875
Raghu Krishnamurthy6a305142023-03-03 06:41:29 -0800876 /*
877 * If there was an SPMD logical partition direct request on-going,
878 * return back to the SPMD logical partition so the error can be
879 * consumed.
880 */
881 if (is_spmd_logical_sp_dir_req_in_progress(ctx)) {
882 assert(secure_origin);
883 spmd_spm_core_sync_exit(0ULL);
884 }
885
Olivier Deprez41ff36a2019-12-23 16:21:12 +0100886 return spmd_smc_forward(smc_fid, secure_origin,
Marc Bonnicida2c9e12021-11-29 18:02:45 +0000887 x1, x2, x3, x4, cookie,
888 handle, flags);
Achin Gupta86f23532019-10-11 15:41:16 +0100889 break; /* not reached */
890
J-Alves2672cde2020-05-07 18:42:25 +0100891 case FFA_VERSION:
J-Alves4c95c702020-05-26 14:03:05 +0100892 input_version = (uint32_t)(0xFFFFFFFF & x1);
Achin Gupta86f23532019-10-11 15:41:16 +0100893 /*
J-Alves4c95c702020-05-26 14:03:05 +0100894 * If caller is secure and SPMC was initialized,
895 * return FFA_VERSION of SPMD.
896 * If caller is non secure and SPMC was initialized,
Marc Bonnici815d1012021-12-08 14:27:40 +0000897 * forward to the EL3 SPMC if enabled, otherwise return
898 * the SPMC version if implemented at a lower EL.
J-Alves4c95c702020-05-26 14:03:05 +0100899 * Sanity check to "input_version".
Marc Bonnicida2c9e12021-11-29 18:02:45 +0000900 * If the EL3 SPMC is enabled, ignore the SPMC state as
901 * this is not used.
Achin Gupta86f23532019-10-11 15:41:16 +0100902 */
J-Alves4c95c702020-05-26 14:03:05 +0100903 if ((input_version & FFA_VERSION_BIT31_MASK) ||
Marc Bonnicida2c9e12021-11-29 18:02:45 +0000904 (!is_spmc_at_el3() && (ctx->state == SPMC_STATE_RESET))) {
J-Alves4c95c702020-05-26 14:03:05 +0100905 ret = FFA_ERROR_NOT_SUPPORTED;
906 } else if (!secure_origin) {
Marc Bonnici815d1012021-12-08 14:27:40 +0000907 if (is_spmc_at_el3()) {
908 /*
909 * Forward the call directly to the EL3 SPMC, if
910 * enabled, as we don't need to wrap the call in
911 * a direct request.
912 */
913 return spmd_smc_forward(smc_fid, secure_origin,
914 x1, x2, x3, x4, cookie,
915 handle, flags);
916 }
917
Daniel Boulby9460a232021-12-09 11:20:13 +0000918 gp_regs_t *gpregs = get_gpregs_ctx(&ctx->cpu_ctx);
919 uint64_t rc;
920
921 if (spmc_attrs.major_version == 1 &&
922 spmc_attrs.minor_version == 0) {
923 ret = MAKE_FFA_VERSION(spmc_attrs.major_version,
924 spmc_attrs.minor_version);
925 SMC_RET8(handle, (uint32_t)ret,
926 FFA_TARGET_INFO_MBZ,
927 FFA_TARGET_INFO_MBZ,
928 FFA_PARAM_MBZ, FFA_PARAM_MBZ,
929 FFA_PARAM_MBZ, FFA_PARAM_MBZ,
930 FFA_PARAM_MBZ);
931 break;
932 }
933 /* Save non-secure system registers context */
934 cm_el1_sysregs_context_save(NON_SECURE);
935#if SPMD_SPM_AT_SEL2
936 cm_el2_sysregs_context_save(NON_SECURE);
937#endif
938
939 /*
940 * The incoming request has FFA_VERSION as X0 smc_fid
941 * and requested version in x1. Prepare a direct request
942 * from SPMD to SPMC with FFA_VERSION framework function
943 * identifier in X2 and requested version in X3.
944 */
945 spmd_build_spmc_message(gpregs,
946 SPMD_FWK_MSG_FFA_VERSION_REQ,
947 input_version);
948
949 rc = spmd_spm_core_sync_entry(ctx);
950
951 if ((rc != 0ULL) ||
952 (SMC_GET_GP(gpregs, CTX_GPREG_X0) !=
953 FFA_MSG_SEND_DIRECT_RESP_SMC32) ||
954 (SMC_GET_GP(gpregs, CTX_GPREG_X2) !=
Marc Bonnici25f4b542022-04-12 17:18:13 +0100955 (FFA_FWK_MSG_BIT |
Daniel Boulby9460a232021-12-09 11:20:13 +0000956 SPMD_FWK_MSG_FFA_VERSION_RESP))) {
957 ERROR("Failed to forward FFA_VERSION\n");
958 ret = FFA_ERROR_NOT_SUPPORTED;
959 } else {
960 ret = SMC_GET_GP(gpregs, CTX_GPREG_X3);
961 }
962
963 /*
964 * Return here after SPMC has handled FFA_VERSION.
965 * The returned SPMC version is held in X3.
966 * Forward this version in X0 to the non-secure caller.
967 */
968 return spmd_smc_forward(ret, true, FFA_PARAM_MBZ,
969 FFA_PARAM_MBZ, FFA_PARAM_MBZ,
Marc Bonnicida2c9e12021-11-29 18:02:45 +0000970 FFA_PARAM_MBZ, cookie, gpregs,
971 flags);
J-Alves4c95c702020-05-26 14:03:05 +0100972 } else {
J-Alves64ff9932021-03-01 10:26:59 +0000973 ret = MAKE_FFA_VERSION(FFA_VERSION_MAJOR,
974 FFA_VERSION_MINOR);
J-Alves4c95c702020-05-26 14:03:05 +0100975 }
976
J-Alves64ff9932021-03-01 10:26:59 +0000977 SMC_RET8(handle, (uint32_t)ret, FFA_TARGET_INFO_MBZ,
978 FFA_TARGET_INFO_MBZ, FFA_PARAM_MBZ, FFA_PARAM_MBZ,
979 FFA_PARAM_MBZ, FFA_PARAM_MBZ, FFA_PARAM_MBZ);
Achin Gupta86f23532019-10-11 15:41:16 +0100980 break; /* not reached */
981
J-Alves2672cde2020-05-07 18:42:25 +0100982 case FFA_FEATURES:
Achin Gupta86f23532019-10-11 15:41:16 +0100983 /*
984 * This is an optional interface. Do the minimal checks and
Olivier Deprez2bae35f2020-04-16 13:39:06 +0200985 * forward to SPM Core which will handle it if implemented.
Achin Gupta86f23532019-10-11 15:41:16 +0100986 */
987
Olivier Deprez2bae35f2020-04-16 13:39:06 +0200988 /* Forward SMC from Normal world to the SPM Core */
Olivier Deprez41ff36a2019-12-23 16:21:12 +0100989 if (!secure_origin) {
990 return spmd_smc_forward(smc_fid, secure_origin,
Marc Bonnicida2c9e12021-11-29 18:02:45 +0000991 x1, x2, x3, x4, cookie,
992 handle, flags);
Achin Gupta86f23532019-10-11 15:41:16 +0100993 }
Max Shvetsov745889c2020-02-27 14:54:21 +0000994
Olivier Deprez2bae35f2020-04-16 13:39:06 +0200995 /*
996 * Return success if call was from secure world i.e. all
J-Alves2672cde2020-05-07 18:42:25 +0100997 * FFA functions are supported. This is essentially a
Olivier Deprez2bae35f2020-04-16 13:39:06 +0200998 * nop.
999 */
J-Alves2672cde2020-05-07 18:42:25 +01001000 SMC_RET8(handle, FFA_SUCCESS_SMC32, x1, x2, x3, x4,
Olivier Deprez2bae35f2020-04-16 13:39:06 +02001001 SMC_GET_GP(handle, CTX_GPREG_X5),
1002 SMC_GET_GP(handle, CTX_GPREG_X6),
1003 SMC_GET_GP(handle, CTX_GPREG_X7));
1004
Achin Gupta86f23532019-10-11 15:41:16 +01001005 break; /* not reached */
1006
J-Alves2672cde2020-05-07 18:42:25 +01001007 case FFA_ID_GET:
Max Shvetsove79062e2020-03-12 15:16:40 +00001008 /*
J-Alves2672cde2020-05-07 18:42:25 +01001009 * Returns the ID of the calling FFA component.
Olivier Deprez2bae35f2020-04-16 13:39:06 +02001010 */
Max Shvetsove79062e2020-03-12 15:16:40 +00001011 if (!secure_origin) {
J-Alves2672cde2020-05-07 18:42:25 +01001012 SMC_RET8(handle, FFA_SUCCESS_SMC32,
1013 FFA_TARGET_INFO_MBZ, FFA_NS_ENDPOINT_ID,
1014 FFA_PARAM_MBZ, FFA_PARAM_MBZ,
1015 FFA_PARAM_MBZ, FFA_PARAM_MBZ,
1016 FFA_PARAM_MBZ);
Max Shvetsove79062e2020-03-12 15:16:40 +00001017 }
1018
J-Alves2672cde2020-05-07 18:42:25 +01001019 SMC_RET8(handle, FFA_SUCCESS_SMC32,
1020 FFA_TARGET_INFO_MBZ, spmc_attrs.spmc_id,
1021 FFA_PARAM_MBZ, FFA_PARAM_MBZ,
1022 FFA_PARAM_MBZ, FFA_PARAM_MBZ,
1023 FFA_PARAM_MBZ);
Olivier Deprez2bae35f2020-04-16 13:39:06 +02001024
Max Shvetsove79062e2020-03-12 15:16:40 +00001025 break; /* not reached */
1026
Olivier Deprezeae45962021-01-19 15:06:47 +01001027 case FFA_SECONDARY_EP_REGISTER_SMC64:
1028 if (secure_origin) {
1029 ret = spmd_pm_secondary_ep_register(x1);
1030
1031 if (ret < 0) {
1032 SMC_RET8(handle, FFA_ERROR_SMC64,
1033 FFA_TARGET_INFO_MBZ, ret,
1034 FFA_PARAM_MBZ, FFA_PARAM_MBZ,
1035 FFA_PARAM_MBZ, FFA_PARAM_MBZ,
1036 FFA_PARAM_MBZ);
1037 } else {
1038 SMC_RET8(handle, FFA_SUCCESS_SMC64,
1039 FFA_TARGET_INFO_MBZ, FFA_PARAM_MBZ,
1040 FFA_PARAM_MBZ, FFA_PARAM_MBZ,
1041 FFA_PARAM_MBZ, FFA_PARAM_MBZ,
1042 FFA_PARAM_MBZ);
1043 }
1044 }
1045
1046 return spmd_ffa_error_return(handle, FFA_ERROR_NOT_SUPPORTED);
1047 break; /* Not reached */
1048
Daniel Boulby27f35df2021-02-03 12:13:19 +00001049 case FFA_SPM_ID_GET:
1050 if (MAKE_FFA_VERSION(1, 1) > FFA_VERSION_COMPILED) {
1051 return spmd_ffa_error_return(handle,
1052 FFA_ERROR_NOT_SUPPORTED);
1053 }
1054 /*
1055 * Returns the ID of the SPMC or SPMD depending on the FF-A
1056 * instance where this function is invoked
1057 */
1058 if (!secure_origin) {
1059 SMC_RET8(handle, FFA_SUCCESS_SMC32,
1060 FFA_TARGET_INFO_MBZ, spmc_attrs.spmc_id,
1061 FFA_PARAM_MBZ, FFA_PARAM_MBZ,
1062 FFA_PARAM_MBZ, FFA_PARAM_MBZ,
1063 FFA_PARAM_MBZ);
1064 }
1065 SMC_RET8(handle, FFA_SUCCESS_SMC32,
1066 FFA_TARGET_INFO_MBZ, SPMD_DIRECT_MSG_ENDPOINT_ID,
1067 FFA_PARAM_MBZ, FFA_PARAM_MBZ,
1068 FFA_PARAM_MBZ, FFA_PARAM_MBZ,
1069 FFA_PARAM_MBZ);
1070
1071 break; /* not reached */
1072
Olivier Deprez33e44122020-04-16 17:54:27 +02001073 case FFA_MSG_SEND_DIRECT_REQ_SMC32:
Shruti3d859672022-06-09 11:03:11 +01001074 case FFA_MSG_SEND_DIRECT_REQ_SMC64:
Raghu Krishnamurthy6a305142023-03-03 06:41:29 -08001075 /*
1076 * Regardless of secure_origin, SPMD logical partitions cannot
1077 * handle direct messages. They can only initiate direct
1078 * messages and consume direct responses or errors.
1079 */
1080 if (is_spmd_lp_id(ffa_endpoint_source(x1)) ||
1081 is_spmd_lp_id(ffa_endpoint_destination(x1))) {
1082 return spmd_ffa_error_return(handle,
1083 FFA_ERROR_INVALID_PARAMETER
1084 );
1085 }
1086
1087 /*
1088 * When there is an ongoing SPMD logical partition direct
1089 * request, there cannot be another direct request. Return
1090 * error in this case. Panic'ing is an option but that does
1091 * not provide the opportunity for caller to abort based on
1092 * error codes.
1093 */
1094 if (is_spmd_logical_sp_dir_req_in_progress(ctx)) {
1095 assert(secure_origin);
1096 return spmd_ffa_error_return(handle,
1097 FFA_ERROR_DENIED);
1098 }
1099
Shruti3d859672022-06-09 11:03:11 +01001100 if (!secure_origin) {
1101 /* Validate source endpoint is non-secure for non-secure caller. */
1102 if (ffa_is_secure_world_id(ffa_endpoint_source(x1))) {
1103 return spmd_ffa_error_return(handle,
1104 FFA_ERROR_INVALID_PARAMETER);
1105 }
1106 }
Olivier Deprez33e44122020-04-16 17:54:27 +02001107 if (secure_origin && spmd_is_spmc_message(x1)) {
1108 ret = spmd_handle_spmc_message(x3, x4,
1109 SMC_GET_GP(handle, CTX_GPREG_X5),
1110 SMC_GET_GP(handle, CTX_GPREG_X6),
1111 SMC_GET_GP(handle, CTX_GPREG_X7));
1112
1113 SMC_RET8(handle, FFA_SUCCESS_SMC32,
1114 FFA_TARGET_INFO_MBZ, ret,
1115 FFA_PARAM_MBZ, FFA_PARAM_MBZ,
1116 FFA_PARAM_MBZ, FFA_PARAM_MBZ,
1117 FFA_PARAM_MBZ);
1118 } else {
1119 /* Forward direct message to the other world */
1120 return spmd_smc_forward(smc_fid, secure_origin,
Marc Bonnicida2c9e12021-11-29 18:02:45 +00001121 x1, x2, x3, x4, cookie,
1122 handle, flags);
Olivier Deprez33e44122020-04-16 17:54:27 +02001123 }
1124 break; /* Not reached */
1125
1126 case FFA_MSG_SEND_DIRECT_RESP_SMC32:
Raghu Krishnamurthy6a305142023-03-03 06:41:29 -08001127 case FFA_MSG_SEND_DIRECT_RESP_SMC64:
1128 if (secure_origin && (spmd_is_spmc_message(x1) ||
1129 is_spmd_logical_sp_dir_req_in_progress(ctx))) {
Olivier Depreza664c492020-08-05 11:27:42 +02001130 spmd_spm_core_sync_exit(0ULL);
Olivier Deprez33e44122020-04-16 17:54:27 +02001131 } else {
1132 /* Forward direct message to the other world */
1133 return spmd_smc_forward(smc_fid, secure_origin,
Marc Bonnicida2c9e12021-11-29 18:02:45 +00001134 x1, x2, x3, x4, cookie,
1135 handle, flags);
Olivier Deprez33e44122020-04-16 17:54:27 +02001136 }
1137 break; /* Not reached */
1138
J-Alves2672cde2020-05-07 18:42:25 +01001139 case FFA_RX_RELEASE:
1140 case FFA_RXTX_MAP_SMC32:
1141 case FFA_RXTX_MAP_SMC64:
1142 case FFA_RXTX_UNMAP:
Ruari Phipps93dff702020-07-28 10:33:35 +01001143 case FFA_PARTITION_INFO_GET:
J-Alves2621cfd2021-03-11 17:46:47 +00001144#if MAKE_FFA_VERSION(1, 1) <= FFA_VERSION_COMPILED
1145 case FFA_NOTIFICATION_BITMAP_CREATE:
1146 case FFA_NOTIFICATION_BITMAP_DESTROY:
1147 case FFA_NOTIFICATION_BIND:
1148 case FFA_NOTIFICATION_UNBIND:
1149 case FFA_NOTIFICATION_SET:
1150 case FFA_NOTIFICATION_GET:
1151 case FFA_NOTIFICATION_INFO_GET:
1152 case FFA_NOTIFICATION_INFO_GET_SMC64:
Federico Recanatieecb4b02022-02-03 17:22:37 +01001153 case FFA_MSG_SEND2:
Federico Recanati5c7c5c42022-03-18 10:30:00 +01001154 case FFA_RX_ACQUIRE:
J-Alves2621cfd2021-03-11 17:46:47 +00001155#endif
Federico Recanatieecb4b02022-02-03 17:22:37 +01001156 case FFA_MSG_RUN:
Ruari Phipps93dff702020-07-28 10:33:35 +01001157 /*
Federico Recanatieecb4b02022-02-03 17:22:37 +01001158 * Above calls should be invoked only by the Normal world and
1159 * must not be forwarded from Secure world to Normal world.
Ruari Phipps93dff702020-07-28 10:33:35 +01001160 */
Olivier Deprez41ff36a2019-12-23 16:21:12 +01001161 if (secure_origin) {
J-Alves2672cde2020-05-07 18:42:25 +01001162 return spmd_ffa_error_return(handle,
Ruari Phipps93dff702020-07-28 10:33:35 +01001163 FFA_ERROR_NOT_SUPPORTED);
Achin Gupta86f23532019-10-11 15:41:16 +01001164 }
1165
Boyan Karatotev87266002022-11-18 14:17:17 +00001166 /* Forward the call to the other world */
1167 /* fallthrough */
J-Alves2672cde2020-05-07 18:42:25 +01001168 case FFA_MSG_SEND:
J-Alves2672cde2020-05-07 18:42:25 +01001169 case FFA_MEM_DONATE_SMC32:
1170 case FFA_MEM_DONATE_SMC64:
1171 case FFA_MEM_LEND_SMC32:
1172 case FFA_MEM_LEND_SMC64:
1173 case FFA_MEM_SHARE_SMC32:
1174 case FFA_MEM_SHARE_SMC64:
1175 case FFA_MEM_RETRIEVE_REQ_SMC32:
1176 case FFA_MEM_RETRIEVE_REQ_SMC64:
1177 case FFA_MEM_RETRIEVE_RESP:
1178 case FFA_MEM_RELINQUISH:
1179 case FFA_MEM_RECLAIM:
Marc Bonnici9fa01e92021-09-23 09:44:14 +01001180 case FFA_MEM_FRAG_TX:
1181 case FFA_MEM_FRAG_RX:
J-Alves2672cde2020-05-07 18:42:25 +01001182 case FFA_SUCCESS_SMC32:
1183 case FFA_SUCCESS_SMC64:
Achin Gupta86f23532019-10-11 15:41:16 +01001184 /*
Raghu Krishnamurthy6a305142023-03-03 06:41:29 -08001185 * If there is an ongoing direct request from an SPMD logical
1186 * partition, return an error.
Achin Gupta86f23532019-10-11 15:41:16 +01001187 */
Raghu Krishnamurthy6a305142023-03-03 06:41:29 -08001188 if (is_spmd_logical_sp_dir_req_in_progress(ctx)) {
1189 assert(secure_origin);
1190 return spmd_ffa_error_return(handle,
1191 FFA_ERROR_DENIED);
1192 }
Achin Gupta86f23532019-10-11 15:41:16 +01001193
Olivier Deprez41ff36a2019-12-23 16:21:12 +01001194 return spmd_smc_forward(smc_fid, secure_origin,
Marc Bonnicida2c9e12021-11-29 18:02:45 +00001195 x1, x2, x3, x4, cookie,
1196 handle, flags);
Achin Gupta86f23532019-10-11 15:41:16 +01001197 break; /* not reached */
1198
J-Alves2672cde2020-05-07 18:42:25 +01001199 case FFA_MSG_WAIT:
Achin Gupta86f23532019-10-11 15:41:16 +01001200 /*
1201 * Check if this is the first invocation of this interface on
1202 * this CPU from the Secure world. If so, then indicate that the
Olivier Deprez2bae35f2020-04-16 13:39:06 +02001203 * SPM Core initialised successfully.
Achin Gupta86f23532019-10-11 15:41:16 +01001204 */
Olivier Deprez7c016332019-10-28 09:03:13 +00001205 if (secure_origin && (ctx->state == SPMC_STATE_ON_PENDING)) {
Olivier Depreza664c492020-08-05 11:27:42 +02001206 spmd_spm_core_sync_exit(0ULL);
Achin Gupta86f23532019-10-11 15:41:16 +01001207 }
1208
Boyan Karatotev87266002022-11-18 14:17:17 +00001209 /* Forward the call to the other world */
1210 /* fallthrough */
Olivier Deprezae18caf2021-04-02 11:09:10 +02001211 case FFA_INTERRUPT:
J-Alves2672cde2020-05-07 18:42:25 +01001212 case FFA_MSG_YIELD:
Achin Gupta86f23532019-10-11 15:41:16 +01001213 /* This interface must be invoked only by the Secure world */
Olivier Deprez41ff36a2019-12-23 16:21:12 +01001214 if (!secure_origin) {
J-Alves2672cde2020-05-07 18:42:25 +01001215 return spmd_ffa_error_return(handle,
1216 FFA_ERROR_NOT_SUPPORTED);
Achin Gupta86f23532019-10-11 15:41:16 +01001217 }
1218
Raghu Krishnamurthy6a305142023-03-03 06:41:29 -08001219 if (is_spmd_logical_sp_dir_req_in_progress(ctx)) {
1220 assert(secure_origin);
1221 return spmd_ffa_error_return(handle,
1222 FFA_ERROR_DENIED);
1223 }
1224
Olivier Deprez41ff36a2019-12-23 16:21:12 +01001225 return spmd_smc_forward(smc_fid, secure_origin,
Marc Bonnicida2c9e12021-11-29 18:02:45 +00001226 x1, x2, x3, x4, cookie,
1227 handle, flags);
Achin Gupta86f23532019-10-11 15:41:16 +01001228 break; /* not reached */
1229
Olivier Depreza664c492020-08-05 11:27:42 +02001230 case FFA_NORMAL_WORLD_RESUME:
1231 if (secure_origin && ctx->secure_interrupt_ongoing) {
1232 spmd_spm_core_sync_exit(0ULL);
1233 } else {
1234 return spmd_ffa_error_return(handle, FFA_ERROR_DENIED);
1235 }
1236 break; /* Not reached */
Raghu Krishnamurthy435f11c2022-12-25 13:02:00 -08001237#if MAKE_FFA_VERSION(1, 1) <= FFA_VERSION_COMPILED
1238 case FFA_PARTITION_INFO_GET_REGS_SMC64:
1239 if (secure_origin) {
1240 /* TODO: Future patches to enable support for this */
1241 return spmd_ffa_error_return(handle, FFA_ERROR_NOT_SUPPORTED);
1242 }
Olivier Depreza664c492020-08-05 11:27:42 +02001243
Raghu Krishnamurthy435f11c2022-12-25 13:02:00 -08001244 /* Call only supported with SMCCC 1.2+ */
1245 if (MAKE_SMCCC_VERSION(SMCCC_MAJOR_VERSION, SMCCC_MINOR_VERSION) < 0x10002) {
1246 return spmd_ffa_error_return(handle, FFA_ERROR_NOT_SUPPORTED);
1247 }
1248
1249 return spmd_smc_forward(smc_fid, secure_origin,
1250 x1, x2, x3, x4, cookie,
1251 handle, flags);
1252 break; /* Not reached */
1253#endif
Madhukar Pappireddy41416cc2023-03-02 16:04:38 -06001254 case FFA_EL3_INTR_HANDLE:
1255 if (secure_origin) {
1256 return spmd_handle_group0_intr_swd(handle);
1257 } else {
Madhukar Pappireddy2ca75702023-07-12 16:28:05 -05001258 return spmd_ffa_error_return(handle, FFA_ERROR_NOT_SUPPORTED);
Madhukar Pappireddy41416cc2023-03-02 16:04:38 -06001259 }
Achin Gupta86f23532019-10-11 15:41:16 +01001260 default:
1261 WARN("SPM: Unsupported call 0x%08x\n", smc_fid);
J-Alves2672cde2020-05-07 18:42:25 +01001262 return spmd_ffa_error_return(handle, FFA_ERROR_NOT_SUPPORTED);
Achin Gupta86f23532019-10-11 15:41:16 +01001263 }
1264}