blob: aae2d9a04328835d18a738fe2d9b79c3bf403864 [file] [log] [blame]
Varun Wadekarc1d2a282016-11-08 15:46:48 -08001/*
Jayanth Dodderi Chidanand4d69bd62024-04-11 11:09:12 +01002 * Copyright (c) 2016-2024, Arm Limited and Contributors. All rights reserved.
Varun Wadekar88e51e42019-09-17 15:29:05 -07003 * Copyright (c) 2020, NVIDIA Corporation. All rights reserved.
Varun Wadekarc1d2a282016-11-08 15:46:48 -08004 *
dp-armfa3cf0b2017-05-03 09:38:09 +01005 * SPDX-License-Identifier: BSD-3-Clause
Varun Wadekarc1d2a282016-11-08 15:46:48 -08006 */
7
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00008#include <assert.h>
Scott Brandene5dcf982020-08-25 13:49:32 -07009#include <inttypes.h>
Ambroise Vincentffbf32a2019-03-28 09:01:18 +000010#include <lib/xlat_tables/xlat_tables_v2.h>
Arve Hjønnevågddeb2e72018-02-28 17:15:06 -080011#include <stdbool.h>
Scott Brandene5dcf982020-08-25 13:49:32 -070012#include <stdint.h>
Varun Wadekarc1d2a282016-11-08 15:46:48 -080013#include <string.h>
14
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000015#include <arch_helpers.h>
16#include <bl31/bl31.h>
17#include <bl31/interrupt_mgmt.h>
18#include <common/bl_common.h>
19#include <common/debug.h>
20#include <common/runtime_svc.h>
21#include <lib/el3_runtime/context_mgmt.h>
Varun Wadekar88e51e42019-09-17 15:29:05 -070022#include <lib/smccc.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000023#include <plat/common/platform.h>
Varun Wadekar88e51e42019-09-17 15:29:05 -070024#include <tools_share/uuid.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000025
Varun Wadekarc1d2a282016-11-08 15:46:48 -080026#include "sm_err.h"
Isla Mitchell99305012017-07-11 14:54:08 +010027#include "smcall.h"
Varun Wadekarc1d2a282016-11-08 15:46:48 -080028
Varun Wadekar88e51e42019-09-17 15:29:05 -070029/* Trusty UID: RFC-4122 compliant UUID version 4 */
30DEFINE_SVC_UUID2(trusty_uuid,
31 0x40ee25f0, 0xa2bc, 0x304c, 0x8c, 0x4c,
32 0xa1, 0x73, 0xc5, 0x7d, 0x8a, 0xf1);
33
Anthony Zhou700ebe52015-10-31 06:03:41 +080034/* macro to check if Hypervisor is enabled in the HCR_EL2 register */
Anthony Zhou50b328a2017-09-19 16:36:22 +080035#define HYP_ENABLE_FLAG 0x286001U
36
37/* length of Trusty's input parameters (in bytes) */
38#define TRUSTY_PARAMS_LEN_BYTES (4096U * 2)
Anthony Zhou700ebe52015-10-31 06:03:41 +080039
Varun Wadekarc1d2a282016-11-08 15:46:48 -080040struct trusty_stack {
41 uint8_t space[PLATFORM_STACK_SIZE] __aligned(16);
Varun Wadekarbd3c9532017-02-16 18:14:37 -080042 uint32_t end;
Varun Wadekarc1d2a282016-11-08 15:46:48 -080043};
44
45struct trusty_cpu_ctx {
46 cpu_context_t cpu_ctx;
47 void *saved_sp;
48 uint32_t saved_security_state;
Anthony Zhou50b328a2017-09-19 16:36:22 +080049 int32_t fiq_handler_active;
Varun Wadekarc1d2a282016-11-08 15:46:48 -080050 uint64_t fiq_handler_pc;
51 uint64_t fiq_handler_cpsr;
52 uint64_t fiq_handler_sp;
53 uint64_t fiq_pc;
54 uint64_t fiq_cpsr;
55 uint64_t fiq_sp_el1;
56 gp_regs_t fiq_gpregs;
57 struct trusty_stack secure_stack;
58};
59
Anthony Zhou50b328a2017-09-19 16:36:22 +080060struct smc_args {
Varun Wadekarc1d2a282016-11-08 15:46:48 -080061 uint64_t r0;
62 uint64_t r1;
63 uint64_t r2;
64 uint64_t r3;
Anthony Zhou700ebe52015-10-31 06:03:41 +080065 uint64_t r4;
66 uint64_t r5;
67 uint64_t r6;
68 uint64_t r7;
Varun Wadekarc1d2a282016-11-08 15:46:48 -080069};
70
Masahiro Yamada56212752018-04-19 01:14:42 +090071static struct trusty_cpu_ctx trusty_cpu_ctx[PLATFORM_CORE_COUNT];
Varun Wadekarc1d2a282016-11-08 15:46:48 -080072
Anthony Zhou50b328a2017-09-19 16:36:22 +080073struct smc_args trusty_init_context_stack(void **sp, void *new_stack);
74struct smc_args trusty_context_switch_helper(void **sp, void *smc_params);
Varun Wadekarc1d2a282016-11-08 15:46:48 -080075
Anthony Zhou43384822016-04-20 10:16:48 +080076static uint32_t current_vmid;
77
Varun Wadekarc1d2a282016-11-08 15:46:48 -080078static struct trusty_cpu_ctx *get_trusty_ctx(void)
79{
80 return &trusty_cpu_ctx[plat_my_core_pos()];
81}
82
Anthony Zhou50b328a2017-09-19 16:36:22 +080083static bool is_hypervisor_mode(void)
Anthony Zhou700ebe52015-10-31 06:03:41 +080084{
85 uint64_t hcr = read_hcr();
86
Anthony Zhou50b328a2017-09-19 16:36:22 +080087 return ((hcr & HYP_ENABLE_FLAG) != 0U) ? true : false;
Anthony Zhou700ebe52015-10-31 06:03:41 +080088}
89
Anthony Zhou50b328a2017-09-19 16:36:22 +080090static struct smc_args trusty_context_switch(uint32_t security_state, uint64_t r0,
Varun Wadekarc1d2a282016-11-08 15:46:48 -080091 uint64_t r1, uint64_t r2, uint64_t r3)
92{
Anthony Zhou50b328a2017-09-19 16:36:22 +080093 struct smc_args args, ret_args;
Varun Wadekarc1d2a282016-11-08 15:46:48 -080094 struct trusty_cpu_ctx *ctx = get_trusty_ctx();
Anthony Zhou700ebe52015-10-31 06:03:41 +080095 struct trusty_cpu_ctx *ctx_smc;
Varun Wadekarc1d2a282016-11-08 15:46:48 -080096
97 assert(ctx->saved_security_state != security_state);
98
Anthony Zhou50b328a2017-09-19 16:36:22 +080099 args.r7 = 0;
Anthony Zhou700ebe52015-10-31 06:03:41 +0800100 if (is_hypervisor_mode()) {
101 /* According to the ARM DEN0028A spec, VMID is stored in x7 */
102 ctx_smc = cm_get_context(NON_SECURE);
Anthony Zhou50b328a2017-09-19 16:36:22 +0800103 assert(ctx_smc != NULL);
104 args.r7 = SMC_GET_GP(ctx_smc, CTX_GPREG_X7);
Anthony Zhou700ebe52015-10-31 06:03:41 +0800105 }
106 /* r4, r5, r6 reserved for future use. */
Anthony Zhou50b328a2017-09-19 16:36:22 +0800107 args.r6 = 0;
108 args.r5 = 0;
109 args.r4 = 0;
110 args.r3 = r3;
111 args.r2 = r2;
112 args.r1 = r1;
113 args.r0 = r0;
Anthony Zhou700ebe52015-10-31 06:03:41 +0800114
Aijun Sun98f80902017-09-19 16:52:08 +0800115 /*
116 * To avoid the additional overhead in PSCI flow, skip FP context
Paul Beesley1fbc97b2019-01-11 18:26:51 +0000117 * saving/restoring in case of CPU suspend and resume, assuming that
Aijun Sun98f80902017-09-19 16:52:08 +0800118 * when it's needed the PSCI caller has preserved FP context before
119 * going here.
120 */
Madhukar Pappireddyeb366c82024-04-25 22:59:16 -0500121 if (r0 != SMC_FC_CPU_SUSPEND && r0 != SMC_FC_CPU_RESUME) {
122 simd_ctx_save(security_state, false);
123 }
124
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800125 cm_el1_sysregs_context_save(security_state);
126
127 ctx->saved_security_state = security_state;
Anthony Zhou50b328a2017-09-19 16:36:22 +0800128 ret_args = trusty_context_switch_helper(&ctx->saved_sp, &args);
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800129
Anthony Zhou50b328a2017-09-19 16:36:22 +0800130 assert(ctx->saved_security_state == ((security_state == 0U) ? 1U : 0U));
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800131
132 cm_el1_sysregs_context_restore(security_state);
Madhukar Pappireddyeb366c82024-04-25 22:59:16 -0500133 if (r0 != SMC_FC_CPU_SUSPEND && r0 != SMC_FC_CPU_RESUME) {
134 simd_ctx_restore(security_state);
135 }
Aijun Sun98f80902017-09-19 16:52:08 +0800136
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800137 cm_set_next_eret_context(security_state);
138
Anthony Zhou50b328a2017-09-19 16:36:22 +0800139 return ret_args;
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800140}
141
142static uint64_t trusty_fiq_handler(uint32_t id,
143 uint32_t flags,
144 void *handle,
145 void *cookie)
146{
Anthony Zhou50b328a2017-09-19 16:36:22 +0800147 struct smc_args ret;
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800148 struct trusty_cpu_ctx *ctx = get_trusty_ctx();
149
150 assert(!is_caller_secure(flags));
151
152 ret = trusty_context_switch(NON_SECURE, SMC_FC_FIQ_ENTER, 0, 0, 0);
Anthony Zhou50b328a2017-09-19 16:36:22 +0800153 if (ret.r0 != 0U) {
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800154 SMC_RET0(handle);
155 }
156
Anthony Zhou50b328a2017-09-19 16:36:22 +0800157 if (ctx->fiq_handler_active != 0) {
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800158 INFO("%s: fiq handler already active\n", __func__);
159 SMC_RET0(handle);
160 }
161
162 ctx->fiq_handler_active = 1;
Anthony Zhou50b328a2017-09-19 16:36:22 +0800163 (void)memcpy(&ctx->fiq_gpregs, get_gpregs_ctx(handle), sizeof(ctx->fiq_gpregs));
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800164 ctx->fiq_pc = SMC_GET_EL3(handle, CTX_ELR_EL3);
165 ctx->fiq_cpsr = SMC_GET_EL3(handle, CTX_SPSR_EL3);
Jayanth Dodderi Chidanand4d69bd62024-04-11 11:09:12 +0100166 ctx->fiq_sp_el1 = read_el1_ctx_common(get_el1_sysregs_ctx(handle), sp_el1);
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800167
Jayanth Dodderi Chidanand4d69bd62024-04-11 11:09:12 +0100168 write_el1_ctx_common(get_el1_sysregs_ctx(handle), sp_el1, ctx->fiq_handler_sp);
Anthony Zhou50b328a2017-09-19 16:36:22 +0800169 cm_set_elr_spsr_el3(NON_SECURE, ctx->fiq_handler_pc, (uint32_t)ctx->fiq_handler_cpsr);
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800170
171 SMC_RET0(handle);
172}
173
174static uint64_t trusty_set_fiq_handler(void *handle, uint64_t cpu,
175 uint64_t handler, uint64_t stack)
176{
177 struct trusty_cpu_ctx *ctx;
178
Anthony Zhou50b328a2017-09-19 16:36:22 +0800179 if (cpu >= (uint64_t)PLATFORM_CORE_COUNT) {
Scott Brandene5dcf982020-08-25 13:49:32 -0700180 ERROR("%s: cpu %" PRId64 " >= %d\n", __func__, cpu, PLATFORM_CORE_COUNT);
Anthony Zhou50b328a2017-09-19 16:36:22 +0800181 return (uint64_t)SM_ERR_INVALID_PARAMETERS;
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800182 }
183
184 ctx = &trusty_cpu_ctx[cpu];
185 ctx->fiq_handler_pc = handler;
186 ctx->fiq_handler_cpsr = SMC_GET_EL3(handle, CTX_SPSR_EL3);
187 ctx->fiq_handler_sp = stack;
188
189 SMC_RET1(handle, 0);
190}
191
192static uint64_t trusty_get_fiq_regs(void *handle)
193{
194 struct trusty_cpu_ctx *ctx = get_trusty_ctx();
195 uint64_t sp_el0 = read_ctx_reg(&ctx->fiq_gpregs, CTX_GPREG_SP_EL0);
196
197 SMC_RET4(handle, ctx->fiq_pc, ctx->fiq_cpsr, sp_el0, ctx->fiq_sp_el1);
198}
199
200static uint64_t trusty_fiq_exit(void *handle, uint64_t x1, uint64_t x2, uint64_t x3)
201{
Anthony Zhou50b328a2017-09-19 16:36:22 +0800202 struct smc_args ret;
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800203 struct trusty_cpu_ctx *ctx = get_trusty_ctx();
204
Anthony Zhou50b328a2017-09-19 16:36:22 +0800205 if (ctx->fiq_handler_active == 0) {
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800206 NOTICE("%s: fiq handler not active\n", __func__);
Anthony Zhou50b328a2017-09-19 16:36:22 +0800207 SMC_RET1(handle, (uint64_t)SM_ERR_INVALID_PARAMETERS);
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800208 }
209
210 ret = trusty_context_switch(NON_SECURE, SMC_FC_FIQ_EXIT, 0, 0, 0);
Anthony Zhou50b328a2017-09-19 16:36:22 +0800211 if (ret.r0 != 1U) {
Scott Brandene5dcf982020-08-25 13:49:32 -0700212 INFO("%s(%p) SMC_FC_FIQ_EXIT returned unexpected value, %" PRId64 "\n",
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800213 __func__, handle, ret.r0);
214 }
215
216 /*
217 * Restore register state to state recorded on fiq entry.
218 *
219 * x0, sp_el1, pc and cpsr need to be restored because el1 cannot
220 * restore them.
221 *
222 * x1-x4 and x8-x17 need to be restored here because smc_handler64
223 * corrupts them (el1 code also restored them).
224 */
Anthony Zhou50b328a2017-09-19 16:36:22 +0800225 (void)memcpy(get_gpregs_ctx(handle), &ctx->fiq_gpregs, sizeof(ctx->fiq_gpregs));
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800226 ctx->fiq_handler_active = 0;
Jayanth Dodderi Chidanand4d69bd62024-04-11 11:09:12 +0100227 write_el1_ctx_common(get_el1_sysregs_ctx(handle), sp_el1, ctx->fiq_sp_el1);
Anthony Zhou50b328a2017-09-19 16:36:22 +0800228 cm_set_elr_spsr_el3(NON_SECURE, ctx->fiq_pc, (uint32_t)ctx->fiq_cpsr);
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800229
230 SMC_RET0(handle);
231}
232
Masahiro Yamada5ac9d962018-04-19 01:18:48 +0900233static uintptr_t trusty_smc_handler(uint32_t smc_fid,
234 u_register_t x1,
235 u_register_t x2,
236 u_register_t x3,
237 u_register_t x4,
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800238 void *cookie,
239 void *handle,
Masahiro Yamada5ac9d962018-04-19 01:18:48 +0900240 u_register_t flags)
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800241{
Anthony Zhou50b328a2017-09-19 16:36:22 +0800242 struct smc_args ret;
243 uint32_t vmid = 0U;
Varun Wadekar528a7922016-09-29 16:08:16 -0700244 entry_point_info_t *ep_info = bl31_plat_get_next_image_ep_info(SECURE);
245
246 /*
247 * Return success for SET_ROT_PARAMS if Trusty is not present, as
248 * Verified Boot is not even supported and returning success here
249 * would not compromise the boot process.
250 */
Anthony Zhou50b328a2017-09-19 16:36:22 +0800251 if ((ep_info == NULL) && (smc_fid == SMC_YC_SET_ROT_PARAMS)) {
Varun Wadekar528a7922016-09-29 16:08:16 -0700252 SMC_RET1(handle, 0);
Anthony Zhou50b328a2017-09-19 16:36:22 +0800253 } else if (ep_info == NULL) {
Varun Wadekar528a7922016-09-29 16:08:16 -0700254 SMC_RET1(handle, SMC_UNK);
Anthony Zhou50b328a2017-09-19 16:36:22 +0800255 } else {
256 ; /* do nothing */
Varun Wadekar528a7922016-09-29 16:08:16 -0700257 }
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800258
259 if (is_caller_secure(flags)) {
David Cunadoc8833ea2017-04-16 17:15:08 +0100260 if (smc_fid == SMC_YC_NS_RETURN) {
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800261 ret = trusty_context_switch(SECURE, x1, 0, 0, 0);
Anthony Zhou700ebe52015-10-31 06:03:41 +0800262 SMC_RET8(handle, ret.r0, ret.r1, ret.r2, ret.r3,
263 ret.r4, ret.r5, ret.r6, ret.r7);
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800264 }
265 INFO("%s (0x%x, 0x%lx, 0x%lx, 0x%lx, 0x%lx, %p, %p, 0x%lx) \
266 cpu %d, unknown smc\n",
267 __func__, smc_fid, x1, x2, x3, x4, cookie, handle, flags,
268 plat_my_core_pos());
269 SMC_RET1(handle, SMC_UNK);
270 } else {
271 switch (smc_fid) {
Varun Wadekar88e51e42019-09-17 15:29:05 -0700272 case SMC_FC64_GET_UUID:
273 case SMC_FC_GET_UUID:
274 /* provide the UUID for the service to the client */
275 SMC_UUID_RET(handle, trusty_uuid);
276 break;
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800277 case SMC_FC64_SET_FIQ_HANDLER:
278 return trusty_set_fiq_handler(handle, x1, x2, x3);
279 case SMC_FC64_GET_FIQ_REGS:
280 return trusty_get_fiq_regs(handle);
281 case SMC_FC_FIQ_EXIT:
282 return trusty_fiq_exit(handle, x1, x2, x3);
283 default:
Varun Wadekar88e51e42019-09-17 15:29:05 -0700284 /* Not all OENs greater than SMC_ENTITY_SECURE_MONITOR are supported */
285 if (SMC_ENTITY(smc_fid) > SMC_ENTITY_SECURE_MONITOR) {
286 VERBOSE("%s: unsupported SMC FID (0x%x)\n", __func__, smc_fid);
287 SMC_RET1(handle, SMC_UNK);
288 }
289
Anthony Zhou43384822016-04-20 10:16:48 +0800290 if (is_hypervisor_mode())
291 vmid = SMC_GET_GP(handle, CTX_GPREG_X7);
292
293 if ((current_vmid != 0) && (current_vmid != vmid)) {
294 /* This message will cause SMC mechanism
295 * abnormal in multi-guest environment.
296 * Change it to WARN in case you need it.
297 */
298 VERBOSE("Previous SMC not finished.\n");
299 SMC_RET1(handle, SM_ERR_BUSY);
300 }
301 current_vmid = vmid;
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800302 ret = trusty_context_switch(NON_SECURE, smc_fid, x1,
303 x2, x3);
Anthony Zhou43384822016-04-20 10:16:48 +0800304 current_vmid = 0;
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800305 SMC_RET1(handle, ret.r0);
306 }
307 }
308}
309
310static int32_t trusty_init(void)
311{
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800312 entry_point_info_t *ep_info;
Anthony Zhou50b328a2017-09-19 16:36:22 +0800313 struct smc_args zero_args = {0};
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800314 struct trusty_cpu_ctx *ctx = get_trusty_ctx();
315 uint32_t cpu = plat_my_core_pos();
Anthony Zhou50b328a2017-09-19 16:36:22 +0800316 uint64_t reg_width = GET_RW(read_ctx_reg(get_el3state_ctx(&ctx->cpu_ctx),
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800317 CTX_SPSR_EL3));
318
Sandrine Bailleuxf8220902016-11-30 11:24:01 +0000319 /*
320 * Get information about the Trusty image. Its absence is a critical
321 * failure.
322 */
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800323 ep_info = bl31_plat_get_next_image_ep_info(SECURE);
Anthony Zhou50b328a2017-09-19 16:36:22 +0800324 assert(ep_info != NULL);
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800325
Madhukar Pappireddyeb366c82024-04-25 22:59:16 -0500326 simd_ctx_save(NON_SECURE, false);
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800327 cm_el1_sysregs_context_save(NON_SECURE);
328
329 cm_set_context(&ctx->cpu_ctx, SECURE);
330 cm_init_my_context(ep_info);
331
332 /*
333 * Adjust secondary cpu entry point for 32 bit images to the
Paul Beesley1fbc97b2019-01-11 18:26:51 +0000334 * end of exception vectors
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800335 */
Anthony Zhou50b328a2017-09-19 16:36:22 +0800336 if ((cpu != 0U) && (reg_width == MODE_RW_32)) {
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800337 INFO("trusty: cpu %d, adjust entry point to 0x%lx\n",
338 cpu, ep_info->pc + (1U << 5));
339 cm_set_elr_el3(SECURE, ep_info->pc + (1U << 5));
340 }
341
342 cm_el1_sysregs_context_restore(SECURE);
Madhukar Pappireddyeb366c82024-04-25 22:59:16 -0500343 simd_ctx_restore(SECURE);
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800344 cm_set_next_eret_context(SECURE);
345
Anthony Zhou50b328a2017-09-19 16:36:22 +0800346 ctx->saved_security_state = ~0U; /* initial saved state is invalid */
347 (void)trusty_init_context_stack(&ctx->saved_sp, &ctx->secure_stack.end);
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800348
Anthony Zhou50b328a2017-09-19 16:36:22 +0800349 (void)trusty_context_switch_helper(&ctx->saved_sp, &zero_args);
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800350
351 cm_el1_sysregs_context_restore(NON_SECURE);
Madhukar Pappireddyeb366c82024-04-25 22:59:16 -0500352 simd_ctx_restore(NON_SECURE);
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800353 cm_set_next_eret_context(NON_SECURE);
354
Antonio Nino Diaz41bd97e2018-09-18 13:13:24 +0100355 return 1;
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800356}
357
Arve Hjønnevåg3420e1a2017-11-27 11:05:46 -0800358static void trusty_cpu_suspend(uint32_t off)
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800359{
Anthony Zhou50b328a2017-09-19 16:36:22 +0800360 struct smc_args ret;
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800361
Arve Hjønnevåg3420e1a2017-11-27 11:05:46 -0800362 ret = trusty_context_switch(NON_SECURE, SMC_FC_CPU_SUSPEND, off, 0, 0);
Anthony Zhou50b328a2017-09-19 16:36:22 +0800363 if (ret.r0 != 0U) {
Scott Brandene5dcf982020-08-25 13:49:32 -0700364 INFO("%s: cpu %d, SMC_FC_CPU_SUSPEND returned unexpected value, %" PRId64 "\n",
Sandrine Bailleux5f665c82016-11-23 09:50:53 +0000365 __func__, plat_my_core_pos(), ret.r0);
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800366 }
367}
368
Arve Hjønnevåg3420e1a2017-11-27 11:05:46 -0800369static void trusty_cpu_resume(uint32_t on)
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800370{
Anthony Zhou50b328a2017-09-19 16:36:22 +0800371 struct smc_args ret;
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800372
Arve Hjønnevåg3420e1a2017-11-27 11:05:46 -0800373 ret = trusty_context_switch(NON_SECURE, SMC_FC_CPU_RESUME, on, 0, 0);
Anthony Zhou50b328a2017-09-19 16:36:22 +0800374 if (ret.r0 != 0U) {
Scott Brandene5dcf982020-08-25 13:49:32 -0700375 INFO("%s: cpu %d, SMC_FC_CPU_RESUME returned unexpected value, %" PRId64 "\n",
Sandrine Bailleux5f665c82016-11-23 09:50:53 +0000376 __func__, plat_my_core_pos(), ret.r0);
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800377 }
378}
379
Stephen Wolfeea50cd72018-03-29 12:32:08 -0700380static int32_t trusty_cpu_off_handler(u_register_t max_off_lvl)
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800381{
Stephen Wolfeea50cd72018-03-29 12:32:08 -0700382 trusty_cpu_suspend(max_off_lvl);
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800383
384 return 0;
385}
386
Stephen Wolfeea50cd72018-03-29 12:32:08 -0700387static void trusty_cpu_on_finish_handler(u_register_t max_off_lvl)
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800388{
389 struct trusty_cpu_ctx *ctx = get_trusty_ctx();
390
Anthony Zhou50b328a2017-09-19 16:36:22 +0800391 if (ctx->saved_sp == NULL) {
392 (void)trusty_init();
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800393 } else {
Stephen Wolfeea50cd72018-03-29 12:32:08 -0700394 trusty_cpu_resume(max_off_lvl);
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800395 }
396}
397
Stephen Wolfeea50cd72018-03-29 12:32:08 -0700398static void trusty_cpu_suspend_handler(u_register_t max_off_lvl)
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800399{
Stephen Wolfeea50cd72018-03-29 12:32:08 -0700400 trusty_cpu_suspend(max_off_lvl);
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800401}
402
Stephen Wolfeea50cd72018-03-29 12:32:08 -0700403static void trusty_cpu_suspend_finish_handler(u_register_t max_off_lvl)
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800404{
Stephen Wolfeea50cd72018-03-29 12:32:08 -0700405 trusty_cpu_resume(max_off_lvl);
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800406}
407
408static const spd_pm_ops_t trusty_pm = {
409 .svc_off = trusty_cpu_off_handler,
410 .svc_suspend = trusty_cpu_suspend_handler,
411 .svc_on_finish = trusty_cpu_on_finish_handler,
412 .svc_suspend_finish = trusty_cpu_suspend_finish_handler,
413};
414
Arve Hjønnevågafb6f742017-11-28 14:05:30 -0800415void plat_trusty_set_boot_args(aapcs64_params_t *args);
416
Arve Hjønnevåg41ba13f2018-04-11 16:10:53 -0700417#if !defined(TSP_SEC_MEM_SIZE) && defined(BL32_MEM_SIZE)
418#define TSP_SEC_MEM_SIZE BL32_MEM_SIZE
419#endif
420
Arve Hjønnevågafb6f742017-11-28 14:05:30 -0800421#ifdef TSP_SEC_MEM_SIZE
422#pragma weak plat_trusty_set_boot_args
423void plat_trusty_set_boot_args(aapcs64_params_t *args)
424{
425 args->arg0 = TSP_SEC_MEM_SIZE;
426}
427#endif
428
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800429static int32_t trusty_setup(void)
430{
431 entry_point_info_t *ep_info;
Arve Hjønnevågafb6f742017-11-28 14:05:30 -0800432 uint32_t instr;
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800433 uint32_t flags;
Anthony Zhou50b328a2017-09-19 16:36:22 +0800434 int32_t ret;
Arve Hjønnevågddeb2e72018-02-28 17:15:06 -0800435 bool aarch32 = false;
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800436
Varun Wadekarba33a282017-02-23 10:34:06 -0800437 /* Get trusty's entry point info */
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800438 ep_info = bl31_plat_get_next_image_ep_info(SECURE);
Anthony Zhou50b328a2017-09-19 16:36:22 +0800439 if (ep_info == NULL) {
Varun Wadekarbebb0d72018-10-16 15:39:55 -0700440 VERBOSE("Trusty image missing.\n");
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800441 return -1;
442 }
443
Varun Wadekarbe57abb2019-01-03 10:44:22 -0800444 /* memmap first page of trusty's code memory before peeking */
445 ret = mmap_add_dynamic_region(ep_info->pc, /* PA */
446 ep_info->pc, /* VA */
447 PAGE_SIZE, /* size */
448 MT_SECURE | MT_RW_DATA); /* attrs */
449 assert(ret == 0);
450
451 /* peek into trusty's code to see if we have a 32-bit or 64-bit image */
Arve Hjønnevågafb6f742017-11-28 14:05:30 -0800452 instr = *(uint32_t *)ep_info->pc;
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800453
Arve Hjønnevågee8c3032018-02-28 17:18:55 -0800454 if (instr >> 24 == 0xeaU) {
Arve Hjønnevågafb6f742017-11-28 14:05:30 -0800455 INFO("trusty: Found 32 bit image\n");
Arve Hjønnevågddeb2e72018-02-28 17:15:06 -0800456 aarch32 = true;
Arve Hjønnevåg9d31cac2018-03-02 10:10:00 -0800457 } else if (instr >> 8 == 0xd53810U || instr >> 16 == 0x9400U) {
Arve Hjønnevågafb6f742017-11-28 14:05:30 -0800458 INFO("trusty: Found 64 bit image\n");
459 } else {
David Lin72f6fed2019-01-24 14:15:57 -0800460 ERROR("trusty: Found unknown image, 0x%x\n", instr);
461 return -1;
Arve Hjønnevågafb6f742017-11-28 14:05:30 -0800462 }
463
Varun Wadekarbe57abb2019-01-03 10:44:22 -0800464 /* unmap trusty's memory page */
465 (void)mmap_remove_dynamic_region(ep_info->pc, PAGE_SIZE);
466
Arve Hjønnevågafb6f742017-11-28 14:05:30 -0800467 SET_PARAM_HEAD(ep_info, PARAM_EP, VERSION_1, SECURE | EP_ST_ENABLE);
468 if (!aarch32)
469 ep_info->spsr = SPSR_64(MODE_EL1, MODE_SP_ELX,
470 DISABLE_ALL_EXCEPTIONS);
471 else
472 ep_info->spsr = SPSR_MODE32(MODE32_svc, SPSR_T_ARM,
473 SPSR_E_LITTLE,
474 DAIF_FIQ_BIT |
475 DAIF_IRQ_BIT |
476 DAIF_ABT_BIT);
Arve Hjønnevågd1771c62018-03-01 11:38:18 -0800477 (void)memset(&ep_info->args, 0, sizeof(ep_info->args));
Arve Hjønnevågafb6f742017-11-28 14:05:30 -0800478 plat_trusty_set_boot_args(&ep_info->args);
Wayne Lincd712fd2016-05-24 15:28:42 -0700479
Varun Wadekarba33a282017-02-23 10:34:06 -0800480 /* register init handler */
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800481 bl31_register_bl32_init(trusty_init);
482
Varun Wadekarba33a282017-02-23 10:34:06 -0800483 /* register power management hooks */
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800484 psci_register_spd_pm_hook(&trusty_pm);
485
Varun Wadekarba33a282017-02-23 10:34:06 -0800486 /* register interrupt handler */
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800487 flags = 0;
488 set_interrupt_rm_flag(flags, NON_SECURE);
489 ret = register_interrupt_type_handler(INTR_TYPE_S_EL1,
490 trusty_fiq_handler,
491 flags);
Anthony Zhou50b328a2017-09-19 16:36:22 +0800492 if (ret != 0) {
Varun Wadekarbebb0d72018-10-16 15:39:55 -0700493 VERBOSE("trusty: failed to register fiq handler, ret = %d\n", ret);
Anthony Zhou50b328a2017-09-19 16:36:22 +0800494 }
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800495
Arve Hjønnevåg19ad7752017-09-28 14:59:10 -0700496 if (aarch32) {
497 entry_point_info_t *ns_ep_info;
498 uint32_t spsr;
499
500 ns_ep_info = bl31_plat_get_next_image_ep_info(NON_SECURE);
Sandrine Bailleux4cfec802018-03-19 10:41:06 +0100501 if (ns_ep_info == NULL) {
Arve Hjønnevåg19ad7752017-09-28 14:59:10 -0700502 NOTICE("Trusty: non-secure image missing.\n");
503 return -1;
504 }
505 spsr = ns_ep_info->spsr;
506 if (GET_RW(spsr) == MODE_RW_64 && GET_EL(spsr) == MODE_EL2) {
507 spsr &= ~(MODE_EL_MASK << MODE_EL_SHIFT);
508 spsr |= MODE_EL1 << MODE_EL_SHIFT;
509 }
510 if (GET_RW(spsr) == MODE_RW_32 && GET_M32(spsr) == MODE32_hyp) {
511 spsr &= ~(MODE32_MASK << MODE32_SHIFT);
512 spsr |= MODE32_svc << MODE32_SHIFT;
513 }
514 if (spsr != ns_ep_info->spsr) {
515 NOTICE("Trusty: Switch bl33 from EL2 to EL1 (spsr 0x%x -> 0x%x)\n",
516 ns_ep_info->spsr, spsr);
517 ns_ep_info->spsr = spsr;
518 }
519 }
520
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800521 return 0;
522}
523
524/* Define a SPD runtime service descriptor for fast SMC calls */
525DECLARE_RT_SVC(
526 trusty_fast,
527
528 OEN_TOS_START,
Varun Wadekar88e51e42019-09-17 15:29:05 -0700529 OEN_TOS_END,
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800530 SMC_TYPE_FAST,
531 trusty_setup,
532 trusty_smc_handler
533);
534
David Cunadoc8833ea2017-04-16 17:15:08 +0100535/* Define a SPD runtime service descriptor for yielding SMC calls */
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800536DECLARE_RT_SVC(
537 trusty_std,
538
Amith43e89d32015-08-19 20:13:12 -0700539 OEN_TAP_START,
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800540 SMC_ENTITY_SECURE_MONITOR,
David Cunadoc8833ea2017-04-16 17:15:08 +0100541 SMC_TYPE_YIELD,
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800542 NULL,
543 trusty_smc_handler
544);