trusty.c 13.6 KB
Newer Older
1
/*
Paul Beesley's avatar
Paul Beesley committed
2
 * Copyright (c) 2016-2019, ARM Limited and Contributors. All rights reserved.
3
 *
dp-arm's avatar
dp-arm committed
4
 * SPDX-License-Identifier: BSD-3-Clause
5
6
 */

7
#include <assert.h>
8
#include <stdbool.h>
9
#include <string.h>
10
#include <xlat_tables_v2.h>
11

12
13
14
15
16
17
18
19
20
#include <arch_helpers.h>
#include <bl31/bl31.h>
#include <bl31/interrupt_mgmt.h>
#include <common/bl_common.h>
#include <common/debug.h>
#include <common/runtime_svc.h>
#include <lib/el3_runtime/context_mgmt.h>
#include <plat/common/platform.h>

21
#include "sm_err.h"
Isla Mitchell's avatar
Isla Mitchell committed
22
#include "smcall.h"
23

Anthony Zhou's avatar
Anthony Zhou committed
24
/* macro to check if Hypervisor is enabled in the HCR_EL2 register */
25
26
27
28
#define HYP_ENABLE_FLAG		0x286001U

/* length of Trusty's input parameters (in bytes) */
#define TRUSTY_PARAMS_LEN_BYTES	(4096U * 2)
Anthony Zhou's avatar
Anthony Zhou committed
29

30
31
struct trusty_stack {
	uint8_t space[PLATFORM_STACK_SIZE] __aligned(16);
32
	uint32_t end;
33
34
35
36
37
38
};

struct trusty_cpu_ctx {
	cpu_context_t	cpu_ctx;
	void		*saved_sp;
	uint32_t	saved_security_state;
39
	int32_t		fiq_handler_active;
40
41
42
43
44
45
46
47
48
49
	uint64_t	fiq_handler_pc;
	uint64_t	fiq_handler_cpsr;
	uint64_t	fiq_handler_sp;
	uint64_t	fiq_pc;
	uint64_t	fiq_cpsr;
	uint64_t	fiq_sp_el1;
	gp_regs_t	fiq_gpregs;
	struct trusty_stack	secure_stack;
};

50
struct smc_args {
51
52
53
54
	uint64_t	r0;
	uint64_t	r1;
	uint64_t	r2;
	uint64_t	r3;
Anthony Zhou's avatar
Anthony Zhou committed
55
56
57
58
	uint64_t	r4;
	uint64_t	r5;
	uint64_t	r6;
	uint64_t	r7;
59
60
};

61
static struct trusty_cpu_ctx trusty_cpu_ctx[PLATFORM_CORE_COUNT];
62

63
64
struct smc_args trusty_init_context_stack(void **sp, void *new_stack);
struct smc_args trusty_context_switch_helper(void **sp, void *smc_params);
65

66
67
static uint32_t current_vmid;

68
69
70
71
72
static struct trusty_cpu_ctx *get_trusty_ctx(void)
{
	return &trusty_cpu_ctx[plat_my_core_pos()];
}

73
static bool is_hypervisor_mode(void)
Anthony Zhou's avatar
Anthony Zhou committed
74
75
76
{
	uint64_t hcr = read_hcr();

77
	return ((hcr & HYP_ENABLE_FLAG) != 0U) ? true : false;
Anthony Zhou's avatar
Anthony Zhou committed
78
79
}

80
static struct smc_args trusty_context_switch(uint32_t security_state, uint64_t r0,
81
82
					 uint64_t r1, uint64_t r2, uint64_t r3)
{
83
	struct smc_args args, ret_args;
84
	struct trusty_cpu_ctx *ctx = get_trusty_ctx();
Anthony Zhou's avatar
Anthony Zhou committed
85
	struct trusty_cpu_ctx *ctx_smc;
86
87
88

	assert(ctx->saved_security_state != security_state);

89
	args.r7 = 0;
Anthony Zhou's avatar
Anthony Zhou committed
90
91
92
	if (is_hypervisor_mode()) {
		/* According to the ARM DEN0028A spec, VMID is stored in x7 */
		ctx_smc = cm_get_context(NON_SECURE);
93
94
		assert(ctx_smc != NULL);
		args.r7 = SMC_GET_GP(ctx_smc, CTX_GPREG_X7);
Anthony Zhou's avatar
Anthony Zhou committed
95
96
	}
	/* r4, r5, r6 reserved for future use. */
97
98
99
100
101
102
103
	args.r6 = 0;
	args.r5 = 0;
	args.r4 = 0;
	args.r3 = r3;
	args.r2 = r2;
	args.r1 = r1;
	args.r0 = r0;
Anthony Zhou's avatar
Anthony Zhou committed
104

105
106
	/*
	 * To avoid the additional overhead in PSCI flow, skip FP context
Paul Beesley's avatar
Paul Beesley committed
107
	 * saving/restoring in case of CPU suspend and resume, assuming that
108
109
110
111
112
	 * when it's needed the PSCI caller has preserved FP context before
	 * going here.
	 */
	if (r0 != SMC_FC_CPU_SUSPEND && r0 != SMC_FC_CPU_RESUME)
		fpregs_context_save(get_fpregs_ctx(cm_get_context(security_state)));
113
114
115
	cm_el1_sysregs_context_save(security_state);

	ctx->saved_security_state = security_state;
116
	ret_args = trusty_context_switch_helper(&ctx->saved_sp, &args);
117

118
	assert(ctx->saved_security_state == ((security_state == 0U) ? 1U : 0U));
119
120

	cm_el1_sysregs_context_restore(security_state);
121
122
123
	if (r0 != SMC_FC_CPU_SUSPEND && r0 != SMC_FC_CPU_RESUME)
		fpregs_context_restore(get_fpregs_ctx(cm_get_context(security_state)));

124
125
	cm_set_next_eret_context(security_state);

126
	return ret_args;
127
128
129
130
131
132
133
}

static uint64_t trusty_fiq_handler(uint32_t id,
				   uint32_t flags,
				   void *handle,
				   void *cookie)
{
134
	struct smc_args ret;
135
136
137
138
139
	struct trusty_cpu_ctx *ctx = get_trusty_ctx();

	assert(!is_caller_secure(flags));

	ret = trusty_context_switch(NON_SECURE, SMC_FC_FIQ_ENTER, 0, 0, 0);
140
	if (ret.r0 != 0U) {
141
142
143
		SMC_RET0(handle);
	}

144
	if (ctx->fiq_handler_active != 0) {
145
146
147
148
149
		INFO("%s: fiq handler already active\n", __func__);
		SMC_RET0(handle);
	}

	ctx->fiq_handler_active = 1;
150
	(void)memcpy(&ctx->fiq_gpregs, get_gpregs_ctx(handle), sizeof(ctx->fiq_gpregs));
151
152
153
154
155
	ctx->fiq_pc = SMC_GET_EL3(handle, CTX_ELR_EL3);
	ctx->fiq_cpsr = SMC_GET_EL3(handle, CTX_SPSR_EL3);
	ctx->fiq_sp_el1 = read_ctx_reg(get_sysregs_ctx(handle), CTX_SP_EL1);

	write_ctx_reg(get_sysregs_ctx(handle), CTX_SP_EL1, ctx->fiq_handler_sp);
156
	cm_set_elr_spsr_el3(NON_SECURE, ctx->fiq_handler_pc, (uint32_t)ctx->fiq_handler_cpsr);
157
158
159
160
161
162
163
164
165

	SMC_RET0(handle);
}

static uint64_t trusty_set_fiq_handler(void *handle, uint64_t cpu,
			uint64_t handler, uint64_t stack)
{
	struct trusty_cpu_ctx *ctx;

166
	if (cpu >= (uint64_t)PLATFORM_CORE_COUNT) {
167
		ERROR("%s: cpu %lld >= %d\n", __func__, cpu, PLATFORM_CORE_COUNT);
168
		return (uint64_t)SM_ERR_INVALID_PARAMETERS;
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
	}

	ctx = &trusty_cpu_ctx[cpu];
	ctx->fiq_handler_pc = handler;
	ctx->fiq_handler_cpsr = SMC_GET_EL3(handle, CTX_SPSR_EL3);
	ctx->fiq_handler_sp = stack;

	SMC_RET1(handle, 0);
}

static uint64_t trusty_get_fiq_regs(void *handle)
{
	struct trusty_cpu_ctx *ctx = get_trusty_ctx();
	uint64_t sp_el0 = read_ctx_reg(&ctx->fiq_gpregs, CTX_GPREG_SP_EL0);

	SMC_RET4(handle, ctx->fiq_pc, ctx->fiq_cpsr, sp_el0, ctx->fiq_sp_el1);
}

static uint64_t trusty_fiq_exit(void *handle, uint64_t x1, uint64_t x2, uint64_t x3)
{
189
	struct smc_args ret;
190
191
	struct trusty_cpu_ctx *ctx = get_trusty_ctx();

192
	if (ctx->fiq_handler_active == 0) {
193
		NOTICE("%s: fiq handler not active\n", __func__);
194
		SMC_RET1(handle, (uint64_t)SM_ERR_INVALID_PARAMETERS);
195
196
197
	}

	ret = trusty_context_switch(NON_SECURE, SMC_FC_FIQ_EXIT, 0, 0, 0);
198
	if (ret.r0 != 1U) {
199
		INFO("%s(%p) SMC_FC_FIQ_EXIT returned unexpected value, %lld\n",
200
201
202
203
204
205
206
207
208
209
210
211
		       __func__, handle, ret.r0);
	}

	/*
	 * Restore register state to state recorded on fiq entry.
	 *
	 * x0, sp_el1, pc and cpsr need to be restored because el1 cannot
	 * restore them.
	 *
	 * x1-x4 and x8-x17 need to be restored here because smc_handler64
	 * corrupts them (el1 code also restored them).
	 */
212
	(void)memcpy(get_gpregs_ctx(handle), &ctx->fiq_gpregs, sizeof(ctx->fiq_gpregs));
213
214
	ctx->fiq_handler_active = 0;
	write_ctx_reg(get_sysregs_ctx(handle), CTX_SP_EL1, ctx->fiq_sp_el1);
215
	cm_set_elr_spsr_el3(NON_SECURE, ctx->fiq_pc, (uint32_t)ctx->fiq_cpsr);
216
217
218
219

	SMC_RET0(handle);
}

220
221
222
223
224
static uintptr_t trusty_smc_handler(uint32_t smc_fid,
			 u_register_t x1,
			 u_register_t x2,
			 u_register_t x3,
			 u_register_t x4,
225
226
			 void *cookie,
			 void *handle,
227
			 u_register_t flags)
228
{
229
230
	struct smc_args ret;
	uint32_t vmid = 0U;
231
232
233
234
235
236
237
	entry_point_info_t *ep_info = bl31_plat_get_next_image_ep_info(SECURE);

	/*
	 * Return success for SET_ROT_PARAMS if Trusty is not present, as
	 * Verified Boot is not even supported and returning success here
	 * would not compromise the boot process.
	 */
238
	if ((ep_info == NULL) && (smc_fid == SMC_YC_SET_ROT_PARAMS)) {
239
		SMC_RET1(handle, 0);
240
	} else if (ep_info == NULL) {
241
		SMC_RET1(handle, SMC_UNK);
242
243
	} else {
		; /* do nothing */
244
	}
245
246

	if (is_caller_secure(flags)) {
247
		if (smc_fid == SMC_YC_NS_RETURN) {
248
			ret = trusty_context_switch(SECURE, x1, 0, 0, 0);
Anthony Zhou's avatar
Anthony Zhou committed
249
250
			SMC_RET8(handle, ret.r0, ret.r1, ret.r2, ret.r3,
				 ret.r4, ret.r5, ret.r6, ret.r7);
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
		}
		INFO("%s (0x%x, 0x%lx, 0x%lx, 0x%lx, 0x%lx, %p, %p, 0x%lx) \
		     cpu %d, unknown smc\n",
		     __func__, smc_fid, x1, x2, x3, x4, cookie, handle, flags,
		     plat_my_core_pos());
		SMC_RET1(handle, SMC_UNK);
	} else {
		switch (smc_fid) {
		case SMC_FC64_SET_FIQ_HANDLER:
			return trusty_set_fiq_handler(handle, x1, x2, x3);
		case SMC_FC64_GET_FIQ_REGS:
			return trusty_get_fiq_regs(handle);
		case SMC_FC_FIQ_EXIT:
			return trusty_fiq_exit(handle, x1, x2, x3);
		default:
266
267
268
269
270
271
272
273
274
275
276
277
			if (is_hypervisor_mode())
				vmid = SMC_GET_GP(handle, CTX_GPREG_X7);

			if ((current_vmid != 0) && (current_vmid != vmid)) {
				/* This message will cause SMC mechanism
				 * abnormal in multi-guest environment.
				 * Change it to WARN in case you need it.
				 */
				VERBOSE("Previous SMC not finished.\n");
				SMC_RET1(handle, SM_ERR_BUSY);
			}
			current_vmid = vmid;
278
279
			ret = trusty_context_switch(NON_SECURE, smc_fid, x1,
				x2, x3);
280
			current_vmid = 0;
281
282
283
284
285
286
287
288
			SMC_RET1(handle, ret.r0);
		}
	}
}

static int32_t trusty_init(void)
{
	entry_point_info_t *ep_info;
289
	struct smc_args zero_args = {0};
290
291
	struct trusty_cpu_ctx *ctx = get_trusty_ctx();
	uint32_t cpu = plat_my_core_pos();
292
	uint64_t reg_width = GET_RW(read_ctx_reg(get_el3state_ctx(&ctx->cpu_ctx),
293
294
			       CTX_SPSR_EL3));

295
296
297
298
	/*
	 * Get information about the Trusty image. Its absence is a critical
	 * failure.
	 */
299
	ep_info = bl31_plat_get_next_image_ep_info(SECURE);
300
	assert(ep_info != NULL);
301

302
	fpregs_context_save(get_fpregs_ctx(cm_get_context(NON_SECURE)));
303
304
305
306
307
308
309
	cm_el1_sysregs_context_save(NON_SECURE);

	cm_set_context(&ctx->cpu_ctx, SECURE);
	cm_init_my_context(ep_info);

	/*
	 * Adjust secondary cpu entry point for 32 bit images to the
Paul Beesley's avatar
Paul Beesley committed
310
	 * end of exception vectors
311
	 */
312
	if ((cpu != 0U) && (reg_width == MODE_RW_32)) {
313
314
315
316
317
318
		INFO("trusty: cpu %d, adjust entry point to 0x%lx\n",
		     cpu, ep_info->pc + (1U << 5));
		cm_set_elr_el3(SECURE, ep_info->pc + (1U << 5));
	}

	cm_el1_sysregs_context_restore(SECURE);
319
	fpregs_context_restore(get_fpregs_ctx(cm_get_context(SECURE)));
320
321
	cm_set_next_eret_context(SECURE);

322
323
	ctx->saved_security_state = ~0U; /* initial saved state is invalid */
	(void)trusty_init_context_stack(&ctx->saved_sp, &ctx->secure_stack.end);
324

325
	(void)trusty_context_switch_helper(&ctx->saved_sp, &zero_args);
326
327

	cm_el1_sysregs_context_restore(NON_SECURE);
328
	fpregs_context_restore(get_fpregs_ctx(cm_get_context(NON_SECURE)));
329
330
	cm_set_next_eret_context(NON_SECURE);

331
	return 1;
332
333
}

334
static void trusty_cpu_suspend(uint32_t off)
335
{
336
	struct smc_args ret;
337

338
	ret = trusty_context_switch(NON_SECURE, SMC_FC_CPU_SUSPEND, off, 0, 0);
339
	if (ret.r0 != 0U) {
340
		INFO("%s: cpu %d, SMC_FC_CPU_SUSPEND returned unexpected value, %lld\n",
341
		     __func__, plat_my_core_pos(), ret.r0);
342
343
344
	}
}

345
static void trusty_cpu_resume(uint32_t on)
346
{
347
	struct smc_args ret;
348

349
	ret = trusty_context_switch(NON_SECURE, SMC_FC_CPU_RESUME, on, 0, 0);
350
	if (ret.r0 != 0U) {
351
		INFO("%s: cpu %d, SMC_FC_CPU_RESUME returned unexpected value, %lld\n",
352
		     __func__, plat_my_core_pos(), ret.r0);
353
354
355
	}
}

356
static int32_t trusty_cpu_off_handler(u_register_t max_off_lvl)
357
{
358
	trusty_cpu_suspend(max_off_lvl);
359
360
361
362

	return 0;
}

363
static void trusty_cpu_on_finish_handler(u_register_t max_off_lvl)
364
365
366
{
	struct trusty_cpu_ctx *ctx = get_trusty_ctx();

367
368
	if (ctx->saved_sp == NULL) {
		(void)trusty_init();
369
	} else {
370
		trusty_cpu_resume(max_off_lvl);
371
372
373
	}
}

374
static void trusty_cpu_suspend_handler(u_register_t max_off_lvl)
375
{
376
	trusty_cpu_suspend(max_off_lvl);
377
378
}

379
static void trusty_cpu_suspend_finish_handler(u_register_t max_off_lvl)
380
{
381
	trusty_cpu_resume(max_off_lvl);
382
383
384
385
386
387
388
389
390
}

static const spd_pm_ops_t trusty_pm = {
	.svc_off = trusty_cpu_off_handler,
	.svc_suspend = trusty_cpu_suspend_handler,
	.svc_on_finish = trusty_cpu_on_finish_handler,
	.svc_suspend_finish = trusty_cpu_suspend_finish_handler,
};

391
392
393
394
395
396
397
398
399
400
void plat_trusty_set_boot_args(aapcs64_params_t *args);

#ifdef TSP_SEC_MEM_SIZE
#pragma weak plat_trusty_set_boot_args
void plat_trusty_set_boot_args(aapcs64_params_t *args)
{
	args->arg0 = TSP_SEC_MEM_SIZE;
}
#endif

401
402
403
static int32_t trusty_setup(void)
{
	entry_point_info_t *ep_info;
404
	uint32_t instr;
405
	uint32_t flags;
406
	int32_t ret;
407
	bool aarch32 = false;
408

409
	/* Get trusty's entry point info */
410
	ep_info = bl31_plat_get_next_image_ep_info(SECURE);
411
	if (ep_info == NULL) {
412
413
414
415
		INFO("Trusty image missing.\n");
		return -1;
	}

416
417
418
419
420
421
422
423
	/* memmap first page of trusty's code memory before peeking */
	ret = mmap_add_dynamic_region(ep_info->pc, /* PA */
			ep_info->pc, /* VA */
			PAGE_SIZE, /* size */
			MT_SECURE | MT_RW_DATA); /* attrs */
	assert(ret == 0);

	/* peek into trusty's code to see if we have a 32-bit or 64-bit image */
424
	instr = *(uint32_t *)ep_info->pc;
425

426
	if (instr >> 24 == 0xeaU) {
427
		INFO("trusty: Found 32 bit image\n");
428
		aarch32 = true;
429
	} else if (instr >> 8 == 0xd53810U || instr >> 16 == 0x9400U) {
430
431
		INFO("trusty: Found 64 bit image\n");
	} else {
432
433
		ERROR("trusty: Found unknown image, 0x%x\n", instr);
		return -1;
434
435
	}

436
437
438
	/* unmap trusty's memory page */
	(void)mmap_remove_dynamic_region(ep_info->pc, PAGE_SIZE);

439
440
441
442
443
444
445
446
447
448
	SET_PARAM_HEAD(ep_info, PARAM_EP, VERSION_1, SECURE | EP_ST_ENABLE);
	if (!aarch32)
		ep_info->spsr = SPSR_64(MODE_EL1, MODE_SP_ELX,
					DISABLE_ALL_EXCEPTIONS);
	else
		ep_info->spsr = SPSR_MODE32(MODE32_svc, SPSR_T_ARM,
					    SPSR_E_LITTLE,
					    DAIF_FIQ_BIT |
					    DAIF_IRQ_BIT |
					    DAIF_ABT_BIT);
449
	(void)memset(&ep_info->args, 0, sizeof(ep_info->args));
450
	plat_trusty_set_boot_args(&ep_info->args);
451

452
	/* register init handler */
453
454
	bl31_register_bl32_init(trusty_init);

455
	/* register power management hooks */
456
457
	psci_register_spd_pm_hook(&trusty_pm);

458
	/* register interrupt handler */
459
460
461
462
463
	flags = 0;
	set_interrupt_rm_flag(flags, NON_SECURE);
	ret = register_interrupt_type_handler(INTR_TYPE_S_EL1,
					      trusty_fiq_handler,
					      flags);
464
	if (ret != 0) {
465
		ERROR("trusty: failed to register fiq handler, ret = %d\n", ret);
466
	}
467

468
469
470
471
472
	if (aarch32) {
		entry_point_info_t *ns_ep_info;
		uint32_t spsr;

		ns_ep_info = bl31_plat_get_next_image_ep_info(NON_SECURE);
473
		if (ns_ep_info == NULL) {
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
			NOTICE("Trusty: non-secure image missing.\n");
			return -1;
		}
		spsr = ns_ep_info->spsr;
		if (GET_RW(spsr) == MODE_RW_64 && GET_EL(spsr) == MODE_EL2) {
			spsr &= ~(MODE_EL_MASK << MODE_EL_SHIFT);
			spsr |= MODE_EL1 << MODE_EL_SHIFT;
		}
		if (GET_RW(spsr) == MODE_RW_32 && GET_M32(spsr) == MODE32_hyp) {
			spsr &= ~(MODE32_MASK << MODE32_SHIFT);
			spsr |= MODE32_svc << MODE32_SHIFT;
		}
		if (spsr != ns_ep_info->spsr) {
			NOTICE("Trusty: Switch bl33 from EL2 to EL1 (spsr 0x%x -> 0x%x)\n",
			       ns_ep_info->spsr, spsr);
			ns_ep_info->spsr = spsr;
		}
	}

493
494
495
496
497
498
499
500
501
502
503
504
505
506
	return 0;
}

/* Define a SPD runtime service descriptor for fast SMC calls */
DECLARE_RT_SVC(
	trusty_fast,

	OEN_TOS_START,
	SMC_ENTITY_SECURE_MONITOR,
	SMC_TYPE_FAST,
	trusty_setup,
	trusty_smc_handler
);

507
/* Define a SPD runtime service descriptor for yielding SMC calls */
508
509
510
DECLARE_RT_SVC(
	trusty_std,

511
	OEN_TAP_START,
512
	SMC_ENTITY_SECURE_MONITOR,
513
	SMC_TYPE_YIELD,
514
515
516
	NULL,
	trusty_smc_handler
);