blob: 83c14b499683ea4db87b8628f8034709ef1fbc54 [file] [log] [blame]
Varun Wadekarc1d2a282016-11-08 15:46:48 -08001/*
Paul Beesley1fbc97b2019-01-11 18:26:51 +00002 * Copyright (c) 2016-2019, ARM Limited and Contributors. All rights reserved.
Varun Wadekarc1d2a282016-11-08 15:46:48 -08003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Varun Wadekarc1d2a282016-11-08 15:46:48 -08005 */
6
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00007#include <assert.h>
Arve Hjønnevågddeb2e72018-02-28 17:15:06 -08008#include <stdbool.h>
Varun Wadekarc1d2a282016-11-08 15:46:48 -08009#include <string.h>
10
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000011#include <arch_helpers.h>
12#include <bl31/bl31.h>
13#include <bl31/interrupt_mgmt.h>
14#include <common/bl_common.h>
15#include <common/debug.h>
16#include <common/runtime_svc.h>
17#include <lib/el3_runtime/context_mgmt.h>
18#include <plat/common/platform.h>
19
Varun Wadekarc1d2a282016-11-08 15:46:48 -080020#include "sm_err.h"
Isla Mitchell99305012017-07-11 14:54:08 +010021#include "smcall.h"
Varun Wadekarc1d2a282016-11-08 15:46:48 -080022
Anthony Zhou700ebe52015-10-31 06:03:41 +080023/* macro to check if Hypervisor is enabled in the HCR_EL2 register */
Anthony Zhou50b328a2017-09-19 16:36:22 +080024#define HYP_ENABLE_FLAG 0x286001U
25
26/* length of Trusty's input parameters (in bytes) */
27#define TRUSTY_PARAMS_LEN_BYTES (4096U * 2)
Anthony Zhou700ebe52015-10-31 06:03:41 +080028
Varun Wadekarc1d2a282016-11-08 15:46:48 -080029struct trusty_stack {
30 uint8_t space[PLATFORM_STACK_SIZE] __aligned(16);
Varun Wadekarbd3c9532017-02-16 18:14:37 -080031 uint32_t end;
Varun Wadekarc1d2a282016-11-08 15:46:48 -080032};
33
34struct trusty_cpu_ctx {
35 cpu_context_t cpu_ctx;
36 void *saved_sp;
37 uint32_t saved_security_state;
Anthony Zhou50b328a2017-09-19 16:36:22 +080038 int32_t fiq_handler_active;
Varun Wadekarc1d2a282016-11-08 15:46:48 -080039 uint64_t fiq_handler_pc;
40 uint64_t fiq_handler_cpsr;
41 uint64_t fiq_handler_sp;
42 uint64_t fiq_pc;
43 uint64_t fiq_cpsr;
44 uint64_t fiq_sp_el1;
45 gp_regs_t fiq_gpregs;
46 struct trusty_stack secure_stack;
47};
48
Anthony Zhou50b328a2017-09-19 16:36:22 +080049struct smc_args {
Varun Wadekarc1d2a282016-11-08 15:46:48 -080050 uint64_t r0;
51 uint64_t r1;
52 uint64_t r2;
53 uint64_t r3;
Anthony Zhou700ebe52015-10-31 06:03:41 +080054 uint64_t r4;
55 uint64_t r5;
56 uint64_t r6;
57 uint64_t r7;
Varun Wadekarc1d2a282016-11-08 15:46:48 -080058};
59
Masahiro Yamada56212752018-04-19 01:14:42 +090060static struct trusty_cpu_ctx trusty_cpu_ctx[PLATFORM_CORE_COUNT];
Varun Wadekarc1d2a282016-11-08 15:46:48 -080061
Anthony Zhou50b328a2017-09-19 16:36:22 +080062struct smc_args trusty_init_context_stack(void **sp, void *new_stack);
63struct smc_args trusty_context_switch_helper(void **sp, void *smc_params);
Varun Wadekarc1d2a282016-11-08 15:46:48 -080064
Anthony Zhou43384822016-04-20 10:16:48 +080065static uint32_t current_vmid;
66
Varun Wadekarc1d2a282016-11-08 15:46:48 -080067static struct trusty_cpu_ctx *get_trusty_ctx(void)
68{
69 return &trusty_cpu_ctx[plat_my_core_pos()];
70}
71
Anthony Zhou50b328a2017-09-19 16:36:22 +080072static bool is_hypervisor_mode(void)
Anthony Zhou700ebe52015-10-31 06:03:41 +080073{
74 uint64_t hcr = read_hcr();
75
Anthony Zhou50b328a2017-09-19 16:36:22 +080076 return ((hcr & HYP_ENABLE_FLAG) != 0U) ? true : false;
Anthony Zhou700ebe52015-10-31 06:03:41 +080077}
78
Anthony Zhou50b328a2017-09-19 16:36:22 +080079static struct smc_args trusty_context_switch(uint32_t security_state, uint64_t r0,
Varun Wadekarc1d2a282016-11-08 15:46:48 -080080 uint64_t r1, uint64_t r2, uint64_t r3)
81{
Anthony Zhou50b328a2017-09-19 16:36:22 +080082 struct smc_args args, ret_args;
Varun Wadekarc1d2a282016-11-08 15:46:48 -080083 struct trusty_cpu_ctx *ctx = get_trusty_ctx();
Anthony Zhou700ebe52015-10-31 06:03:41 +080084 struct trusty_cpu_ctx *ctx_smc;
Varun Wadekarc1d2a282016-11-08 15:46:48 -080085
86 assert(ctx->saved_security_state != security_state);
87
Anthony Zhou50b328a2017-09-19 16:36:22 +080088 args.r7 = 0;
Anthony Zhou700ebe52015-10-31 06:03:41 +080089 if (is_hypervisor_mode()) {
90 /* According to the ARM DEN0028A spec, VMID is stored in x7 */
91 ctx_smc = cm_get_context(NON_SECURE);
Anthony Zhou50b328a2017-09-19 16:36:22 +080092 assert(ctx_smc != NULL);
93 args.r7 = SMC_GET_GP(ctx_smc, CTX_GPREG_X7);
Anthony Zhou700ebe52015-10-31 06:03:41 +080094 }
95 /* r4, r5, r6 reserved for future use. */
Anthony Zhou50b328a2017-09-19 16:36:22 +080096 args.r6 = 0;
97 args.r5 = 0;
98 args.r4 = 0;
99 args.r3 = r3;
100 args.r2 = r2;
101 args.r1 = r1;
102 args.r0 = r0;
Anthony Zhou700ebe52015-10-31 06:03:41 +0800103
Aijun Sun98f80902017-09-19 16:52:08 +0800104 /*
105 * To avoid the additional overhead in PSCI flow, skip FP context
Paul Beesley1fbc97b2019-01-11 18:26:51 +0000106 * saving/restoring in case of CPU suspend and resume, assuming that
Aijun Sun98f80902017-09-19 16:52:08 +0800107 * when it's needed the PSCI caller has preserved FP context before
108 * going here.
109 */
Aijun Sun98f80902017-09-19 16:52:08 +0800110 if (r0 != SMC_FC_CPU_SUSPEND && r0 != SMC_FC_CPU_RESUME)
111 fpregs_context_save(get_fpregs_ctx(cm_get_context(security_state)));
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800112 cm_el1_sysregs_context_save(security_state);
113
114 ctx->saved_security_state = security_state;
Anthony Zhou50b328a2017-09-19 16:36:22 +0800115 ret_args = trusty_context_switch_helper(&ctx->saved_sp, &args);
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800116
Anthony Zhou50b328a2017-09-19 16:36:22 +0800117 assert(ctx->saved_security_state == ((security_state == 0U) ? 1U : 0U));
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800118
119 cm_el1_sysregs_context_restore(security_state);
Aijun Sun98f80902017-09-19 16:52:08 +0800120 if (r0 != SMC_FC_CPU_SUSPEND && r0 != SMC_FC_CPU_RESUME)
121 fpregs_context_restore(get_fpregs_ctx(cm_get_context(security_state)));
Aijun Sun98f80902017-09-19 16:52:08 +0800122
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800123 cm_set_next_eret_context(security_state);
124
Anthony Zhou50b328a2017-09-19 16:36:22 +0800125 return ret_args;
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800126}
127
128static uint64_t trusty_fiq_handler(uint32_t id,
129 uint32_t flags,
130 void *handle,
131 void *cookie)
132{
Anthony Zhou50b328a2017-09-19 16:36:22 +0800133 struct smc_args ret;
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800134 struct trusty_cpu_ctx *ctx = get_trusty_ctx();
135
136 assert(!is_caller_secure(flags));
137
138 ret = trusty_context_switch(NON_SECURE, SMC_FC_FIQ_ENTER, 0, 0, 0);
Anthony Zhou50b328a2017-09-19 16:36:22 +0800139 if (ret.r0 != 0U) {
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800140 SMC_RET0(handle);
141 }
142
Anthony Zhou50b328a2017-09-19 16:36:22 +0800143 if (ctx->fiq_handler_active != 0) {
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800144 INFO("%s: fiq handler already active\n", __func__);
145 SMC_RET0(handle);
146 }
147
148 ctx->fiq_handler_active = 1;
Anthony Zhou50b328a2017-09-19 16:36:22 +0800149 (void)memcpy(&ctx->fiq_gpregs, get_gpregs_ctx(handle), sizeof(ctx->fiq_gpregs));
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800150 ctx->fiq_pc = SMC_GET_EL3(handle, CTX_ELR_EL3);
151 ctx->fiq_cpsr = SMC_GET_EL3(handle, CTX_SPSR_EL3);
152 ctx->fiq_sp_el1 = read_ctx_reg(get_sysregs_ctx(handle), CTX_SP_EL1);
153
154 write_ctx_reg(get_sysregs_ctx(handle), CTX_SP_EL1, ctx->fiq_handler_sp);
Anthony Zhou50b328a2017-09-19 16:36:22 +0800155 cm_set_elr_spsr_el3(NON_SECURE, ctx->fiq_handler_pc, (uint32_t)ctx->fiq_handler_cpsr);
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800156
157 SMC_RET0(handle);
158}
159
160static uint64_t trusty_set_fiq_handler(void *handle, uint64_t cpu,
161 uint64_t handler, uint64_t stack)
162{
163 struct trusty_cpu_ctx *ctx;
164
Anthony Zhou50b328a2017-09-19 16:36:22 +0800165 if (cpu >= (uint64_t)PLATFORM_CORE_COUNT) {
Masahiro Yamadae93a0f42018-02-02 15:09:36 +0900166 ERROR("%s: cpu %lld >= %d\n", __func__, cpu, PLATFORM_CORE_COUNT);
Anthony Zhou50b328a2017-09-19 16:36:22 +0800167 return (uint64_t)SM_ERR_INVALID_PARAMETERS;
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800168 }
169
170 ctx = &trusty_cpu_ctx[cpu];
171 ctx->fiq_handler_pc = handler;
172 ctx->fiq_handler_cpsr = SMC_GET_EL3(handle, CTX_SPSR_EL3);
173 ctx->fiq_handler_sp = stack;
174
175 SMC_RET1(handle, 0);
176}
177
178static uint64_t trusty_get_fiq_regs(void *handle)
179{
180 struct trusty_cpu_ctx *ctx = get_trusty_ctx();
181 uint64_t sp_el0 = read_ctx_reg(&ctx->fiq_gpregs, CTX_GPREG_SP_EL0);
182
183 SMC_RET4(handle, ctx->fiq_pc, ctx->fiq_cpsr, sp_el0, ctx->fiq_sp_el1);
184}
185
186static uint64_t trusty_fiq_exit(void *handle, uint64_t x1, uint64_t x2, uint64_t x3)
187{
Anthony Zhou50b328a2017-09-19 16:36:22 +0800188 struct smc_args ret;
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800189 struct trusty_cpu_ctx *ctx = get_trusty_ctx();
190
Anthony Zhou50b328a2017-09-19 16:36:22 +0800191 if (ctx->fiq_handler_active == 0) {
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800192 NOTICE("%s: fiq handler not active\n", __func__);
Anthony Zhou50b328a2017-09-19 16:36:22 +0800193 SMC_RET1(handle, (uint64_t)SM_ERR_INVALID_PARAMETERS);
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800194 }
195
196 ret = trusty_context_switch(NON_SECURE, SMC_FC_FIQ_EXIT, 0, 0, 0);
Anthony Zhou50b328a2017-09-19 16:36:22 +0800197 if (ret.r0 != 1U) {
Masahiro Yamadae93a0f42018-02-02 15:09:36 +0900198 INFO("%s(%p) SMC_FC_FIQ_EXIT returned unexpected value, %lld\n",
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800199 __func__, handle, ret.r0);
200 }
201
202 /*
203 * Restore register state to state recorded on fiq entry.
204 *
205 * x0, sp_el1, pc and cpsr need to be restored because el1 cannot
206 * restore them.
207 *
208 * x1-x4 and x8-x17 need to be restored here because smc_handler64
209 * corrupts them (el1 code also restored them).
210 */
Anthony Zhou50b328a2017-09-19 16:36:22 +0800211 (void)memcpy(get_gpregs_ctx(handle), &ctx->fiq_gpregs, sizeof(ctx->fiq_gpregs));
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800212 ctx->fiq_handler_active = 0;
213 write_ctx_reg(get_sysregs_ctx(handle), CTX_SP_EL1, ctx->fiq_sp_el1);
Anthony Zhou50b328a2017-09-19 16:36:22 +0800214 cm_set_elr_spsr_el3(NON_SECURE, ctx->fiq_pc, (uint32_t)ctx->fiq_cpsr);
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800215
216 SMC_RET0(handle);
217}
218
Masahiro Yamada5ac9d962018-04-19 01:18:48 +0900219static uintptr_t trusty_smc_handler(uint32_t smc_fid,
220 u_register_t x1,
221 u_register_t x2,
222 u_register_t x3,
223 u_register_t x4,
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800224 void *cookie,
225 void *handle,
Masahiro Yamada5ac9d962018-04-19 01:18:48 +0900226 u_register_t flags)
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800227{
Anthony Zhou50b328a2017-09-19 16:36:22 +0800228 struct smc_args ret;
229 uint32_t vmid = 0U;
Varun Wadekar528a7922016-09-29 16:08:16 -0700230 entry_point_info_t *ep_info = bl31_plat_get_next_image_ep_info(SECURE);
231
232 /*
233 * Return success for SET_ROT_PARAMS if Trusty is not present, as
234 * Verified Boot is not even supported and returning success here
235 * would not compromise the boot process.
236 */
Anthony Zhou50b328a2017-09-19 16:36:22 +0800237 if ((ep_info == NULL) && (smc_fid == SMC_YC_SET_ROT_PARAMS)) {
Varun Wadekar528a7922016-09-29 16:08:16 -0700238 SMC_RET1(handle, 0);
Anthony Zhou50b328a2017-09-19 16:36:22 +0800239 } else if (ep_info == NULL) {
Varun Wadekar528a7922016-09-29 16:08:16 -0700240 SMC_RET1(handle, SMC_UNK);
Anthony Zhou50b328a2017-09-19 16:36:22 +0800241 } else {
242 ; /* do nothing */
Varun Wadekar528a7922016-09-29 16:08:16 -0700243 }
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800244
245 if (is_caller_secure(flags)) {
David Cunadoc8833ea2017-04-16 17:15:08 +0100246 if (smc_fid == SMC_YC_NS_RETURN) {
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800247 ret = trusty_context_switch(SECURE, x1, 0, 0, 0);
Anthony Zhou700ebe52015-10-31 06:03:41 +0800248 SMC_RET8(handle, ret.r0, ret.r1, ret.r2, ret.r3,
249 ret.r4, ret.r5, ret.r6, ret.r7);
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800250 }
251 INFO("%s (0x%x, 0x%lx, 0x%lx, 0x%lx, 0x%lx, %p, %p, 0x%lx) \
252 cpu %d, unknown smc\n",
253 __func__, smc_fid, x1, x2, x3, x4, cookie, handle, flags,
254 plat_my_core_pos());
255 SMC_RET1(handle, SMC_UNK);
256 } else {
257 switch (smc_fid) {
258 case SMC_FC64_SET_FIQ_HANDLER:
259 return trusty_set_fiq_handler(handle, x1, x2, x3);
260 case SMC_FC64_GET_FIQ_REGS:
261 return trusty_get_fiq_regs(handle);
262 case SMC_FC_FIQ_EXIT:
263 return trusty_fiq_exit(handle, x1, x2, x3);
264 default:
Anthony Zhou43384822016-04-20 10:16:48 +0800265 if (is_hypervisor_mode())
266 vmid = SMC_GET_GP(handle, CTX_GPREG_X7);
267
268 if ((current_vmid != 0) && (current_vmid != vmid)) {
269 /* This message will cause SMC mechanism
270 * abnormal in multi-guest environment.
271 * Change it to WARN in case you need it.
272 */
273 VERBOSE("Previous SMC not finished.\n");
274 SMC_RET1(handle, SM_ERR_BUSY);
275 }
276 current_vmid = vmid;
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800277 ret = trusty_context_switch(NON_SECURE, smc_fid, x1,
278 x2, x3);
Anthony Zhou43384822016-04-20 10:16:48 +0800279 current_vmid = 0;
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800280 SMC_RET1(handle, ret.r0);
281 }
282 }
283}
284
285static int32_t trusty_init(void)
286{
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800287 entry_point_info_t *ep_info;
Anthony Zhou50b328a2017-09-19 16:36:22 +0800288 struct smc_args zero_args = {0};
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800289 struct trusty_cpu_ctx *ctx = get_trusty_ctx();
290 uint32_t cpu = plat_my_core_pos();
Anthony Zhou50b328a2017-09-19 16:36:22 +0800291 uint64_t reg_width = GET_RW(read_ctx_reg(get_el3state_ctx(&ctx->cpu_ctx),
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800292 CTX_SPSR_EL3));
293
Sandrine Bailleuxf8220902016-11-30 11:24:01 +0000294 /*
295 * Get information about the Trusty image. Its absence is a critical
296 * failure.
297 */
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800298 ep_info = bl31_plat_get_next_image_ep_info(SECURE);
Anthony Zhou50b328a2017-09-19 16:36:22 +0800299 assert(ep_info != NULL);
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800300
Arve Hjønnevågcef22ea2015-08-04 16:19:27 -0700301 fpregs_context_save(get_fpregs_ctx(cm_get_context(NON_SECURE)));
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800302 cm_el1_sysregs_context_save(NON_SECURE);
303
304 cm_set_context(&ctx->cpu_ctx, SECURE);
305 cm_init_my_context(ep_info);
306
307 /*
308 * Adjust secondary cpu entry point for 32 bit images to the
Paul Beesley1fbc97b2019-01-11 18:26:51 +0000309 * end of exception vectors
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800310 */
Anthony Zhou50b328a2017-09-19 16:36:22 +0800311 if ((cpu != 0U) && (reg_width == MODE_RW_32)) {
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800312 INFO("trusty: cpu %d, adjust entry point to 0x%lx\n",
313 cpu, ep_info->pc + (1U << 5));
314 cm_set_elr_el3(SECURE, ep_info->pc + (1U << 5));
315 }
316
317 cm_el1_sysregs_context_restore(SECURE);
Arve Hjønnevågcef22ea2015-08-04 16:19:27 -0700318 fpregs_context_restore(get_fpregs_ctx(cm_get_context(SECURE)));
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800319 cm_set_next_eret_context(SECURE);
320
Anthony Zhou50b328a2017-09-19 16:36:22 +0800321 ctx->saved_security_state = ~0U; /* initial saved state is invalid */
322 (void)trusty_init_context_stack(&ctx->saved_sp, &ctx->secure_stack.end);
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800323
Anthony Zhou50b328a2017-09-19 16:36:22 +0800324 (void)trusty_context_switch_helper(&ctx->saved_sp, &zero_args);
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800325
326 cm_el1_sysregs_context_restore(NON_SECURE);
Arve Hjønnevågcef22ea2015-08-04 16:19:27 -0700327 fpregs_context_restore(get_fpregs_ctx(cm_get_context(NON_SECURE)));
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800328 cm_set_next_eret_context(NON_SECURE);
329
Antonio Nino Diaz41bd97e2018-09-18 13:13:24 +0100330 return 1;
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800331}
332
Arve Hjønnevåg3420e1a2017-11-27 11:05:46 -0800333static void trusty_cpu_suspend(uint32_t off)
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800334{
Anthony Zhou50b328a2017-09-19 16:36:22 +0800335 struct smc_args ret;
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800336
Arve Hjønnevåg3420e1a2017-11-27 11:05:46 -0800337 ret = trusty_context_switch(NON_SECURE, SMC_FC_CPU_SUSPEND, off, 0, 0);
Anthony Zhou50b328a2017-09-19 16:36:22 +0800338 if (ret.r0 != 0U) {
Masahiro Yamadae93a0f42018-02-02 15:09:36 +0900339 INFO("%s: cpu %d, SMC_FC_CPU_SUSPEND returned unexpected value, %lld\n",
Sandrine Bailleux5f665c82016-11-23 09:50:53 +0000340 __func__, plat_my_core_pos(), ret.r0);
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800341 }
342}
343
Arve Hjønnevåg3420e1a2017-11-27 11:05:46 -0800344static void trusty_cpu_resume(uint32_t on)
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800345{
Anthony Zhou50b328a2017-09-19 16:36:22 +0800346 struct smc_args ret;
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800347
Arve Hjønnevåg3420e1a2017-11-27 11:05:46 -0800348 ret = trusty_context_switch(NON_SECURE, SMC_FC_CPU_RESUME, on, 0, 0);
Anthony Zhou50b328a2017-09-19 16:36:22 +0800349 if (ret.r0 != 0U) {
Masahiro Yamadae93a0f42018-02-02 15:09:36 +0900350 INFO("%s: cpu %d, SMC_FC_CPU_RESUME returned unexpected value, %lld\n",
Sandrine Bailleux5f665c82016-11-23 09:50:53 +0000351 __func__, plat_my_core_pos(), ret.r0);
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800352 }
353}
354
Masahiro Yamada5ac9d962018-04-19 01:18:48 +0900355static int32_t trusty_cpu_off_handler(u_register_t unused)
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800356{
Arve Hjønnevåg3420e1a2017-11-27 11:05:46 -0800357 trusty_cpu_suspend(1);
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800358
359 return 0;
360}
361
Masahiro Yamada5ac9d962018-04-19 01:18:48 +0900362static void trusty_cpu_on_finish_handler(u_register_t unused)
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800363{
364 struct trusty_cpu_ctx *ctx = get_trusty_ctx();
365
Anthony Zhou50b328a2017-09-19 16:36:22 +0800366 if (ctx->saved_sp == NULL) {
367 (void)trusty_init();
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800368 } else {
Arve Hjønnevåg3420e1a2017-11-27 11:05:46 -0800369 trusty_cpu_resume(1);
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800370 }
371}
372
Masahiro Yamada5ac9d962018-04-19 01:18:48 +0900373static void trusty_cpu_suspend_handler(u_register_t unused)
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800374{
Arve Hjønnevåg3420e1a2017-11-27 11:05:46 -0800375 trusty_cpu_suspend(0);
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800376}
377
Masahiro Yamada5ac9d962018-04-19 01:18:48 +0900378static void trusty_cpu_suspend_finish_handler(u_register_t unused)
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800379{
Arve Hjønnevåg3420e1a2017-11-27 11:05:46 -0800380 trusty_cpu_resume(0);
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800381}
382
383static const spd_pm_ops_t trusty_pm = {
384 .svc_off = trusty_cpu_off_handler,
385 .svc_suspend = trusty_cpu_suspend_handler,
386 .svc_on_finish = trusty_cpu_on_finish_handler,
387 .svc_suspend_finish = trusty_cpu_suspend_finish_handler,
388};
389
Arve Hjønnevågafb6f742017-11-28 14:05:30 -0800390void plat_trusty_set_boot_args(aapcs64_params_t *args);
391
392#ifdef TSP_SEC_MEM_SIZE
393#pragma weak plat_trusty_set_boot_args
394void plat_trusty_set_boot_args(aapcs64_params_t *args)
395{
396 args->arg0 = TSP_SEC_MEM_SIZE;
397}
398#endif
399
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800400static int32_t trusty_setup(void)
401{
402 entry_point_info_t *ep_info;
Arve Hjønnevågafb6f742017-11-28 14:05:30 -0800403 uint32_t instr;
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800404 uint32_t flags;
Anthony Zhou50b328a2017-09-19 16:36:22 +0800405 int32_t ret;
Arve Hjønnevågddeb2e72018-02-28 17:15:06 -0800406 bool aarch32 = false;
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800407
Varun Wadekarba33a282017-02-23 10:34:06 -0800408 /* Get trusty's entry point info */
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800409 ep_info = bl31_plat_get_next_image_ep_info(SECURE);
Anthony Zhou50b328a2017-09-19 16:36:22 +0800410 if (ep_info == NULL) {
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800411 INFO("Trusty image missing.\n");
412 return -1;
413 }
414
Arve Hjønnevågafb6f742017-11-28 14:05:30 -0800415 instr = *(uint32_t *)ep_info->pc;
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800416
Arve Hjønnevågee8c3032018-02-28 17:18:55 -0800417 if (instr >> 24 == 0xeaU) {
Arve Hjønnevågafb6f742017-11-28 14:05:30 -0800418 INFO("trusty: Found 32 bit image\n");
Arve Hjønnevågddeb2e72018-02-28 17:15:06 -0800419 aarch32 = true;
Arve Hjønnevåg9d31cac2018-03-02 10:10:00 -0800420 } else if (instr >> 8 == 0xd53810U || instr >> 16 == 0x9400U) {
Arve Hjønnevågafb6f742017-11-28 14:05:30 -0800421 INFO("trusty: Found 64 bit image\n");
422 } else {
David Lin72f6fed2019-01-24 14:15:57 -0800423 ERROR("trusty: Found unknown image, 0x%x\n", instr);
424 return -1;
Arve Hjønnevågafb6f742017-11-28 14:05:30 -0800425 }
426
427 SET_PARAM_HEAD(ep_info, PARAM_EP, VERSION_1, SECURE | EP_ST_ENABLE);
428 if (!aarch32)
429 ep_info->spsr = SPSR_64(MODE_EL1, MODE_SP_ELX,
430 DISABLE_ALL_EXCEPTIONS);
431 else
432 ep_info->spsr = SPSR_MODE32(MODE32_svc, SPSR_T_ARM,
433 SPSR_E_LITTLE,
434 DAIF_FIQ_BIT |
435 DAIF_IRQ_BIT |
436 DAIF_ABT_BIT);
Arve Hjønnevågd1771c62018-03-01 11:38:18 -0800437 (void)memset(&ep_info->args, 0, sizeof(ep_info->args));
Arve Hjønnevågafb6f742017-11-28 14:05:30 -0800438 plat_trusty_set_boot_args(&ep_info->args);
Wayne Lincd712fd2016-05-24 15:28:42 -0700439
Varun Wadekarba33a282017-02-23 10:34:06 -0800440 /* register init handler */
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800441 bl31_register_bl32_init(trusty_init);
442
Varun Wadekarba33a282017-02-23 10:34:06 -0800443 /* register power management hooks */
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800444 psci_register_spd_pm_hook(&trusty_pm);
445
Varun Wadekarba33a282017-02-23 10:34:06 -0800446 /* register interrupt handler */
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800447 flags = 0;
448 set_interrupt_rm_flag(flags, NON_SECURE);
449 ret = register_interrupt_type_handler(INTR_TYPE_S_EL1,
450 trusty_fiq_handler,
451 flags);
Anthony Zhou50b328a2017-09-19 16:36:22 +0800452 if (ret != 0) {
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800453 ERROR("trusty: failed to register fiq handler, ret = %d\n", ret);
Anthony Zhou50b328a2017-09-19 16:36:22 +0800454 }
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800455
Arve Hjønnevåg19ad7752017-09-28 14:59:10 -0700456 if (aarch32) {
457 entry_point_info_t *ns_ep_info;
458 uint32_t spsr;
459
460 ns_ep_info = bl31_plat_get_next_image_ep_info(NON_SECURE);
Sandrine Bailleux4cfec802018-03-19 10:41:06 +0100461 if (ns_ep_info == NULL) {
Arve Hjønnevåg19ad7752017-09-28 14:59:10 -0700462 NOTICE("Trusty: non-secure image missing.\n");
463 return -1;
464 }
465 spsr = ns_ep_info->spsr;
466 if (GET_RW(spsr) == MODE_RW_64 && GET_EL(spsr) == MODE_EL2) {
467 spsr &= ~(MODE_EL_MASK << MODE_EL_SHIFT);
468 spsr |= MODE_EL1 << MODE_EL_SHIFT;
469 }
470 if (GET_RW(spsr) == MODE_RW_32 && GET_M32(spsr) == MODE32_hyp) {
471 spsr &= ~(MODE32_MASK << MODE32_SHIFT);
472 spsr |= MODE32_svc << MODE32_SHIFT;
473 }
474 if (spsr != ns_ep_info->spsr) {
475 NOTICE("Trusty: Switch bl33 from EL2 to EL1 (spsr 0x%x -> 0x%x)\n",
476 ns_ep_info->spsr, spsr);
477 ns_ep_info->spsr = spsr;
478 }
479 }
480
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800481 return 0;
482}
483
484/* Define a SPD runtime service descriptor for fast SMC calls */
485DECLARE_RT_SVC(
486 trusty_fast,
487
488 OEN_TOS_START,
489 SMC_ENTITY_SECURE_MONITOR,
490 SMC_TYPE_FAST,
491 trusty_setup,
492 trusty_smc_handler
493);
494
David Cunadoc8833ea2017-04-16 17:15:08 +0100495/* Define a SPD runtime service descriptor for yielding SMC calls */
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800496DECLARE_RT_SVC(
497 trusty_std,
498
Amith43e89d32015-08-19 20:13:12 -0700499 OEN_TAP_START,
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800500 SMC_ENTITY_SECURE_MONITOR,
David Cunadoc8833ea2017-04-16 17:15:08 +0100501 SMC_TYPE_YIELD,
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800502 NULL,
503 trusty_smc_handler
504);