blob: c9d73f0ebfedd73b7d8e6f04f5e94907c1dddad8 [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 */
24#define HYP_ENABLE_FLAG 0x286001
25
Varun Wadekarc1d2a282016-11-08 15:46:48 -080026struct trusty_stack {
27 uint8_t space[PLATFORM_STACK_SIZE] __aligned(16);
Varun Wadekarbd3c9532017-02-16 18:14:37 -080028 uint32_t end;
Varun Wadekarc1d2a282016-11-08 15:46:48 -080029};
30
31struct trusty_cpu_ctx {
32 cpu_context_t cpu_ctx;
33 void *saved_sp;
34 uint32_t saved_security_state;
35 int fiq_handler_active;
36 uint64_t fiq_handler_pc;
37 uint64_t fiq_handler_cpsr;
38 uint64_t fiq_handler_sp;
39 uint64_t fiq_pc;
40 uint64_t fiq_cpsr;
41 uint64_t fiq_sp_el1;
42 gp_regs_t fiq_gpregs;
43 struct trusty_stack secure_stack;
44};
45
46struct args {
47 uint64_t r0;
48 uint64_t r1;
49 uint64_t r2;
50 uint64_t r3;
Anthony Zhou700ebe52015-10-31 06:03:41 +080051 uint64_t r4;
52 uint64_t r5;
53 uint64_t r6;
54 uint64_t r7;
Varun Wadekarc1d2a282016-11-08 15:46:48 -080055};
56
Masahiro Yamada56212752018-04-19 01:14:42 +090057static struct trusty_cpu_ctx trusty_cpu_ctx[PLATFORM_CORE_COUNT];
Varun Wadekarc1d2a282016-11-08 15:46:48 -080058
59struct args trusty_init_context_stack(void **sp, void *new_stack);
Anthony Zhou700ebe52015-10-31 06:03:41 +080060struct args trusty_context_switch_helper(void **sp, void *smc_params);
Varun Wadekarc1d2a282016-11-08 15:46:48 -080061
Anthony Zhou43384822016-04-20 10:16:48 +080062static uint32_t current_vmid;
63
Varun Wadekarc1d2a282016-11-08 15:46:48 -080064static struct trusty_cpu_ctx *get_trusty_ctx(void)
65{
66 return &trusty_cpu_ctx[plat_my_core_pos()];
67}
68
Anthony Zhou700ebe52015-10-31 06:03:41 +080069static uint32_t is_hypervisor_mode(void)
70{
71 uint64_t hcr = read_hcr();
72
73 return !!(hcr & HYP_ENABLE_FLAG);
74}
75
Varun Wadekarc1d2a282016-11-08 15:46:48 -080076static struct args trusty_context_switch(uint32_t security_state, uint64_t r0,
77 uint64_t r1, uint64_t r2, uint64_t r3)
78{
79 struct args ret;
80 struct trusty_cpu_ctx *ctx = get_trusty_ctx();
Anthony Zhou700ebe52015-10-31 06:03:41 +080081 struct trusty_cpu_ctx *ctx_smc;
Varun Wadekarc1d2a282016-11-08 15:46:48 -080082
83 assert(ctx->saved_security_state != security_state);
84
Anthony Zhou700ebe52015-10-31 06:03:41 +080085 ret.r7 = 0;
86 if (is_hypervisor_mode()) {
87 /* According to the ARM DEN0028A spec, VMID is stored in x7 */
88 ctx_smc = cm_get_context(NON_SECURE);
89 assert(ctx_smc);
90 ret.r7 = SMC_GET_GP(ctx_smc, CTX_GPREG_X7);
91 }
92 /* r4, r5, r6 reserved for future use. */
93 ret.r6 = 0;
94 ret.r5 = 0;
95 ret.r4 = 0;
96 ret.r3 = r3;
97 ret.r2 = r2;
98 ret.r1 = r1;
99 ret.r0 = r0;
100
Aijun Sun98f80902017-09-19 16:52:08 +0800101 /*
102 * To avoid the additional overhead in PSCI flow, skip FP context
Paul Beesley1fbc97b2019-01-11 18:26:51 +0000103 * saving/restoring in case of CPU suspend and resume, assuming that
Aijun Sun98f80902017-09-19 16:52:08 +0800104 * when it's needed the PSCI caller has preserved FP context before
105 * going here.
106 */
Aijun Sun98f80902017-09-19 16:52:08 +0800107 if (r0 != SMC_FC_CPU_SUSPEND && r0 != SMC_FC_CPU_RESUME)
108 fpregs_context_save(get_fpregs_ctx(cm_get_context(security_state)));
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800109 cm_el1_sysregs_context_save(security_state);
110
111 ctx->saved_security_state = security_state;
Anthony Zhou700ebe52015-10-31 06:03:41 +0800112 ret = trusty_context_switch_helper(&ctx->saved_sp, &ret);
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800113
114 assert(ctx->saved_security_state == !security_state);
115
116 cm_el1_sysregs_context_restore(security_state);
Aijun Sun98f80902017-09-19 16:52:08 +0800117 if (r0 != SMC_FC_CPU_SUSPEND && r0 != SMC_FC_CPU_RESUME)
118 fpregs_context_restore(get_fpregs_ctx(cm_get_context(security_state)));
Aijun Sun98f80902017-09-19 16:52:08 +0800119
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800120 cm_set_next_eret_context(security_state);
121
122 return ret;
123}
124
125static uint64_t trusty_fiq_handler(uint32_t id,
126 uint32_t flags,
127 void *handle,
128 void *cookie)
129{
130 struct args ret;
131 struct trusty_cpu_ctx *ctx = get_trusty_ctx();
132
133 assert(!is_caller_secure(flags));
134
135 ret = trusty_context_switch(NON_SECURE, SMC_FC_FIQ_ENTER, 0, 0, 0);
136 if (ret.r0) {
137 SMC_RET0(handle);
138 }
139
140 if (ctx->fiq_handler_active) {
141 INFO("%s: fiq handler already active\n", __func__);
142 SMC_RET0(handle);
143 }
144
145 ctx->fiq_handler_active = 1;
146 memcpy(&ctx->fiq_gpregs, get_gpregs_ctx(handle), sizeof(ctx->fiq_gpregs));
147 ctx->fiq_pc = SMC_GET_EL3(handle, CTX_ELR_EL3);
148 ctx->fiq_cpsr = SMC_GET_EL3(handle, CTX_SPSR_EL3);
149 ctx->fiq_sp_el1 = read_ctx_reg(get_sysregs_ctx(handle), CTX_SP_EL1);
150
151 write_ctx_reg(get_sysregs_ctx(handle), CTX_SP_EL1, ctx->fiq_handler_sp);
152 cm_set_elr_spsr_el3(NON_SECURE, ctx->fiq_handler_pc, ctx->fiq_handler_cpsr);
153
154 SMC_RET0(handle);
155}
156
157static uint64_t trusty_set_fiq_handler(void *handle, uint64_t cpu,
158 uint64_t handler, uint64_t stack)
159{
160 struct trusty_cpu_ctx *ctx;
161
162 if (cpu >= PLATFORM_CORE_COUNT) {
Masahiro Yamadae93a0f42018-02-02 15:09:36 +0900163 ERROR("%s: cpu %lld >= %d\n", __func__, cpu, PLATFORM_CORE_COUNT);
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800164 return SM_ERR_INVALID_PARAMETERS;
165 }
166
167 ctx = &trusty_cpu_ctx[cpu];
168 ctx->fiq_handler_pc = handler;
169 ctx->fiq_handler_cpsr = SMC_GET_EL3(handle, CTX_SPSR_EL3);
170 ctx->fiq_handler_sp = stack;
171
172 SMC_RET1(handle, 0);
173}
174
175static uint64_t trusty_get_fiq_regs(void *handle)
176{
177 struct trusty_cpu_ctx *ctx = get_trusty_ctx();
178 uint64_t sp_el0 = read_ctx_reg(&ctx->fiq_gpregs, CTX_GPREG_SP_EL0);
179
180 SMC_RET4(handle, ctx->fiq_pc, ctx->fiq_cpsr, sp_el0, ctx->fiq_sp_el1);
181}
182
183static uint64_t trusty_fiq_exit(void *handle, uint64_t x1, uint64_t x2, uint64_t x3)
184{
185 struct args ret;
186 struct trusty_cpu_ctx *ctx = get_trusty_ctx();
187
188 if (!ctx->fiq_handler_active) {
189 NOTICE("%s: fiq handler not active\n", __func__);
190 SMC_RET1(handle, SM_ERR_INVALID_PARAMETERS);
191 }
192
193 ret = trusty_context_switch(NON_SECURE, SMC_FC_FIQ_EXIT, 0, 0, 0);
194 if (ret.r0 != 1) {
Masahiro Yamadae93a0f42018-02-02 15:09:36 +0900195 INFO("%s(%p) SMC_FC_FIQ_EXIT returned unexpected value, %lld\n",
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800196 __func__, handle, ret.r0);
197 }
198
199 /*
200 * Restore register state to state recorded on fiq entry.
201 *
202 * x0, sp_el1, pc and cpsr need to be restored because el1 cannot
203 * restore them.
204 *
205 * x1-x4 and x8-x17 need to be restored here because smc_handler64
206 * corrupts them (el1 code also restored them).
207 */
208 memcpy(get_gpregs_ctx(handle), &ctx->fiq_gpregs, sizeof(ctx->fiq_gpregs));
209 ctx->fiq_handler_active = 0;
210 write_ctx_reg(get_sysregs_ctx(handle), CTX_SP_EL1, ctx->fiq_sp_el1);
211 cm_set_elr_spsr_el3(NON_SECURE, ctx->fiq_pc, ctx->fiq_cpsr);
212
213 SMC_RET0(handle);
214}
215
Masahiro Yamada5ac9d962018-04-19 01:18:48 +0900216static uintptr_t trusty_smc_handler(uint32_t smc_fid,
217 u_register_t x1,
218 u_register_t x2,
219 u_register_t x3,
220 u_register_t x4,
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800221 void *cookie,
222 void *handle,
Masahiro Yamada5ac9d962018-04-19 01:18:48 +0900223 u_register_t flags)
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800224{
225 struct args ret;
Anthony Zhou43384822016-04-20 10:16:48 +0800226 uint32_t vmid = 0;
Varun Wadekar528a7922016-09-29 16:08:16 -0700227 entry_point_info_t *ep_info = bl31_plat_get_next_image_ep_info(SECURE);
228
229 /*
230 * Return success for SET_ROT_PARAMS if Trusty is not present, as
231 * Verified Boot is not even supported and returning success here
232 * would not compromise the boot process.
233 */
David Cunadoc8833ea2017-04-16 17:15:08 +0100234 if (!ep_info && (smc_fid == SMC_YC_SET_ROT_PARAMS)) {
Varun Wadekar528a7922016-09-29 16:08:16 -0700235 SMC_RET1(handle, 0);
236 } else if (!ep_info) {
237 SMC_RET1(handle, SMC_UNK);
238 }
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800239
240 if (is_caller_secure(flags)) {
David Cunadoc8833ea2017-04-16 17:15:08 +0100241 if (smc_fid == SMC_YC_NS_RETURN) {
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800242 ret = trusty_context_switch(SECURE, x1, 0, 0, 0);
Anthony Zhou700ebe52015-10-31 06:03:41 +0800243 SMC_RET8(handle, ret.r0, ret.r1, ret.r2, ret.r3,
244 ret.r4, ret.r5, ret.r6, ret.r7);
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800245 }
246 INFO("%s (0x%x, 0x%lx, 0x%lx, 0x%lx, 0x%lx, %p, %p, 0x%lx) \
247 cpu %d, unknown smc\n",
248 __func__, smc_fid, x1, x2, x3, x4, cookie, handle, flags,
249 plat_my_core_pos());
250 SMC_RET1(handle, SMC_UNK);
251 } else {
252 switch (smc_fid) {
253 case SMC_FC64_SET_FIQ_HANDLER:
254 return trusty_set_fiq_handler(handle, x1, x2, x3);
255 case SMC_FC64_GET_FIQ_REGS:
256 return trusty_get_fiq_regs(handle);
257 case SMC_FC_FIQ_EXIT:
258 return trusty_fiq_exit(handle, x1, x2, x3);
259 default:
Anthony Zhou43384822016-04-20 10:16:48 +0800260 if (is_hypervisor_mode())
261 vmid = SMC_GET_GP(handle, CTX_GPREG_X7);
262
263 if ((current_vmid != 0) && (current_vmid != vmid)) {
264 /* This message will cause SMC mechanism
265 * abnormal in multi-guest environment.
266 * Change it to WARN in case you need it.
267 */
268 VERBOSE("Previous SMC not finished.\n");
269 SMC_RET1(handle, SM_ERR_BUSY);
270 }
271 current_vmid = vmid;
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800272 ret = trusty_context_switch(NON_SECURE, smc_fid, x1,
273 x2, x3);
Anthony Zhou43384822016-04-20 10:16:48 +0800274 current_vmid = 0;
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800275 SMC_RET1(handle, ret.r0);
276 }
277 }
278}
279
280static int32_t trusty_init(void)
281{
Sandrine Bailleuxf148e6f2016-11-23 10:53:07 +0000282 void el3_exit(void);
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800283 entry_point_info_t *ep_info;
Anthony Zhou700ebe52015-10-31 06:03:41 +0800284 struct args zero_args = {0};
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800285 struct trusty_cpu_ctx *ctx = get_trusty_ctx();
286 uint32_t cpu = plat_my_core_pos();
287 int reg_width = GET_RW(read_ctx_reg(get_el3state_ctx(&ctx->cpu_ctx),
288 CTX_SPSR_EL3));
289
Sandrine Bailleuxf8220902016-11-30 11:24:01 +0000290 /*
291 * Get information about the Trusty image. Its absence is a critical
292 * failure.
293 */
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800294 ep_info = bl31_plat_get_next_image_ep_info(SECURE);
Sandrine Bailleuxf8220902016-11-30 11:24:01 +0000295 assert(ep_info);
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800296
Arve Hjønnevågcef22ea2015-08-04 16:19:27 -0700297 fpregs_context_save(get_fpregs_ctx(cm_get_context(NON_SECURE)));
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800298 cm_el1_sysregs_context_save(NON_SECURE);
299
300 cm_set_context(&ctx->cpu_ctx, SECURE);
301 cm_init_my_context(ep_info);
302
303 /*
304 * Adjust secondary cpu entry point for 32 bit images to the
Paul Beesley1fbc97b2019-01-11 18:26:51 +0000305 * end of exception vectors
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800306 */
307 if ((cpu != 0) && (reg_width == MODE_RW_32)) {
308 INFO("trusty: cpu %d, adjust entry point to 0x%lx\n",
309 cpu, ep_info->pc + (1U << 5));
310 cm_set_elr_el3(SECURE, ep_info->pc + (1U << 5));
311 }
312
313 cm_el1_sysregs_context_restore(SECURE);
Arve Hjønnevågcef22ea2015-08-04 16:19:27 -0700314 fpregs_context_restore(get_fpregs_ctx(cm_get_context(SECURE)));
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800315 cm_set_next_eret_context(SECURE);
316
317 ctx->saved_security_state = ~0; /* initial saved state is invalid */
Varun Wadekarbd3c9532017-02-16 18:14:37 -0800318 trusty_init_context_stack(&ctx->saved_sp, &ctx->secure_stack.end);
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800319
Anthony Zhou700ebe52015-10-31 06:03:41 +0800320 trusty_context_switch_helper(&ctx->saved_sp, &zero_args);
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800321
322 cm_el1_sysregs_context_restore(NON_SECURE);
Arve Hjønnevågcef22ea2015-08-04 16:19:27 -0700323 fpregs_context_restore(get_fpregs_ctx(cm_get_context(NON_SECURE)));
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800324 cm_set_next_eret_context(NON_SECURE);
325
Antonio Nino Diaz41bd97e2018-09-18 13:13:24 +0100326 return 1;
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800327}
328
Arve Hjønnevåg3420e1a2017-11-27 11:05:46 -0800329static void trusty_cpu_suspend(uint32_t off)
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800330{
331 struct args ret;
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800332
Arve Hjønnevåg3420e1a2017-11-27 11:05:46 -0800333 ret = trusty_context_switch(NON_SECURE, SMC_FC_CPU_SUSPEND, off, 0, 0);
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800334 if (ret.r0 != 0) {
Masahiro Yamadae93a0f42018-02-02 15:09:36 +0900335 INFO("%s: cpu %d, SMC_FC_CPU_SUSPEND returned unexpected value, %lld\n",
Sandrine Bailleux5f665c82016-11-23 09:50:53 +0000336 __func__, plat_my_core_pos(), ret.r0);
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800337 }
338}
339
Arve Hjønnevåg3420e1a2017-11-27 11:05:46 -0800340static void trusty_cpu_resume(uint32_t on)
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800341{
342 struct args ret;
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800343
Arve Hjønnevåg3420e1a2017-11-27 11:05:46 -0800344 ret = trusty_context_switch(NON_SECURE, SMC_FC_CPU_RESUME, on, 0, 0);
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800345 if (ret.r0 != 0) {
Masahiro Yamadae93a0f42018-02-02 15:09:36 +0900346 INFO("%s: cpu %d, SMC_FC_CPU_RESUME returned unexpected value, %lld\n",
Sandrine Bailleux5f665c82016-11-23 09:50:53 +0000347 __func__, plat_my_core_pos(), ret.r0);
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800348 }
349}
350
Masahiro Yamada5ac9d962018-04-19 01:18:48 +0900351static int32_t trusty_cpu_off_handler(u_register_t unused)
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800352{
Arve Hjønnevåg3420e1a2017-11-27 11:05:46 -0800353 trusty_cpu_suspend(1);
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800354
355 return 0;
356}
357
Masahiro Yamada5ac9d962018-04-19 01:18:48 +0900358static void trusty_cpu_on_finish_handler(u_register_t unused)
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800359{
360 struct trusty_cpu_ctx *ctx = get_trusty_ctx();
361
362 if (!ctx->saved_sp) {
363 trusty_init();
364 } else {
Arve Hjønnevåg3420e1a2017-11-27 11:05:46 -0800365 trusty_cpu_resume(1);
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800366 }
367}
368
Masahiro Yamada5ac9d962018-04-19 01:18:48 +0900369static void trusty_cpu_suspend_handler(u_register_t unused)
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800370{
Arve Hjønnevåg3420e1a2017-11-27 11:05:46 -0800371 trusty_cpu_suspend(0);
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800372}
373
Masahiro Yamada5ac9d962018-04-19 01:18:48 +0900374static void trusty_cpu_suspend_finish_handler(u_register_t unused)
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800375{
Arve Hjønnevåg3420e1a2017-11-27 11:05:46 -0800376 trusty_cpu_resume(0);
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800377}
378
379static const spd_pm_ops_t trusty_pm = {
380 .svc_off = trusty_cpu_off_handler,
381 .svc_suspend = trusty_cpu_suspend_handler,
382 .svc_on_finish = trusty_cpu_on_finish_handler,
383 .svc_suspend_finish = trusty_cpu_suspend_finish_handler,
384};
385
Arve Hjønnevågafb6f742017-11-28 14:05:30 -0800386void plat_trusty_set_boot_args(aapcs64_params_t *args);
387
388#ifdef TSP_SEC_MEM_SIZE
389#pragma weak plat_trusty_set_boot_args
390void plat_trusty_set_boot_args(aapcs64_params_t *args)
391{
392 args->arg0 = TSP_SEC_MEM_SIZE;
393}
394#endif
395
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800396static int32_t trusty_setup(void)
397{
398 entry_point_info_t *ep_info;
Arve Hjønnevågafb6f742017-11-28 14:05:30 -0800399 uint32_t instr;
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800400 uint32_t flags;
401 int ret;
Arve Hjønnevågddeb2e72018-02-28 17:15:06 -0800402 bool aarch32 = false;
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800403
Varun Wadekarba33a282017-02-23 10:34:06 -0800404 /* Get trusty's entry point info */
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800405 ep_info = bl31_plat_get_next_image_ep_info(SECURE);
406 if (!ep_info) {
407 INFO("Trusty image missing.\n");
408 return -1;
409 }
410
Arve Hjønnevågafb6f742017-11-28 14:05:30 -0800411 instr = *(uint32_t *)ep_info->pc;
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800412
Arve Hjønnevågee8c3032018-02-28 17:18:55 -0800413 if (instr >> 24 == 0xeaU) {
Arve Hjønnevågafb6f742017-11-28 14:05:30 -0800414 INFO("trusty: Found 32 bit image\n");
Arve Hjønnevågddeb2e72018-02-28 17:15:06 -0800415 aarch32 = true;
Arve Hjønnevåg9d31cac2018-03-02 10:10:00 -0800416 } else if (instr >> 8 == 0xd53810U || instr >> 16 == 0x9400U) {
Arve Hjønnevågafb6f742017-11-28 14:05:30 -0800417 INFO("trusty: Found 64 bit image\n");
418 } else {
419 NOTICE("trusty: Found unknown image, 0x%x\n", instr);
420 }
421
422 SET_PARAM_HEAD(ep_info, PARAM_EP, VERSION_1, SECURE | EP_ST_ENABLE);
423 if (!aarch32)
424 ep_info->spsr = SPSR_64(MODE_EL1, MODE_SP_ELX,
425 DISABLE_ALL_EXCEPTIONS);
426 else
427 ep_info->spsr = SPSR_MODE32(MODE32_svc, SPSR_T_ARM,
428 SPSR_E_LITTLE,
429 DAIF_FIQ_BIT |
430 DAIF_IRQ_BIT |
431 DAIF_ABT_BIT);
Arve Hjønnevågd1771c62018-03-01 11:38:18 -0800432 (void)memset(&ep_info->args, 0, sizeof(ep_info->args));
Arve Hjønnevågafb6f742017-11-28 14:05:30 -0800433 plat_trusty_set_boot_args(&ep_info->args);
Wayne Lincd712fd2016-05-24 15:28:42 -0700434
Varun Wadekarba33a282017-02-23 10:34:06 -0800435 /* register init handler */
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800436 bl31_register_bl32_init(trusty_init);
437
Varun Wadekarba33a282017-02-23 10:34:06 -0800438 /* register power management hooks */
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800439 psci_register_spd_pm_hook(&trusty_pm);
440
Varun Wadekarba33a282017-02-23 10:34:06 -0800441 /* register interrupt handler */
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800442 flags = 0;
443 set_interrupt_rm_flag(flags, NON_SECURE);
444 ret = register_interrupt_type_handler(INTR_TYPE_S_EL1,
445 trusty_fiq_handler,
446 flags);
447 if (ret)
448 ERROR("trusty: failed to register fiq handler, ret = %d\n", ret);
449
Arve Hjønnevåg19ad7752017-09-28 14:59:10 -0700450 if (aarch32) {
451 entry_point_info_t *ns_ep_info;
452 uint32_t spsr;
453
454 ns_ep_info = bl31_plat_get_next_image_ep_info(NON_SECURE);
Sandrine Bailleux4cfec802018-03-19 10:41:06 +0100455 if (ns_ep_info == NULL) {
Arve Hjønnevåg19ad7752017-09-28 14:59:10 -0700456 NOTICE("Trusty: non-secure image missing.\n");
457 return -1;
458 }
459 spsr = ns_ep_info->spsr;
460 if (GET_RW(spsr) == MODE_RW_64 && GET_EL(spsr) == MODE_EL2) {
461 spsr &= ~(MODE_EL_MASK << MODE_EL_SHIFT);
462 spsr |= MODE_EL1 << MODE_EL_SHIFT;
463 }
464 if (GET_RW(spsr) == MODE_RW_32 && GET_M32(spsr) == MODE32_hyp) {
465 spsr &= ~(MODE32_MASK << MODE32_SHIFT);
466 spsr |= MODE32_svc << MODE32_SHIFT;
467 }
468 if (spsr != ns_ep_info->spsr) {
469 NOTICE("Trusty: Switch bl33 from EL2 to EL1 (spsr 0x%x -> 0x%x)\n",
470 ns_ep_info->spsr, spsr);
471 ns_ep_info->spsr = spsr;
472 }
473 }
474
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800475 return 0;
476}
477
478/* Define a SPD runtime service descriptor for fast SMC calls */
479DECLARE_RT_SVC(
480 trusty_fast,
481
482 OEN_TOS_START,
483 SMC_ENTITY_SECURE_MONITOR,
484 SMC_TYPE_FAST,
485 trusty_setup,
486 trusty_smc_handler
487);
488
David Cunadoc8833ea2017-04-16 17:15:08 +0100489/* Define a SPD runtime service descriptor for yielding SMC calls */
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800490DECLARE_RT_SVC(
491 trusty_std,
492
Amith43e89d32015-08-19 20:13:12 -0700493 OEN_TAP_START,
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800494 SMC_ENTITY_SECURE_MONITOR,
David Cunadoc8833ea2017-04-16 17:15:08 +0100495 SMC_TYPE_YIELD,
Varun Wadekarc1d2a282016-11-08 15:46:48 -0800496 NULL,
497 trusty_smc_handler
498);