tsp_main.c 13.5 KB
Newer Older
1
/*
2
 * Copyright (c) 2013-2017, 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 <arch_helpers.h>
8
#include <bl_common.h>
9
#include <debug.h>
10
#include <platform.h>
11
#include <platform_def.h>
12
#include <platform_tsp.h>
13
#include <spinlock.h>
14
#include <tsp.h>
15
#include "tsp_private.h"
16

17

18
19
20
21
22
23
24
25
26
/*******************************************************************************
 * Lock to control access to the console
 ******************************************************************************/
spinlock_t console_lock;

/*******************************************************************************
 * Per cpu data structure to populate parameters for an SMC in C code and use
 * a pointer to this structure in assembler code to populate x0-x7
 ******************************************************************************/
27
static tsp_args_t tsp_smc_args[PLATFORM_CORE_COUNT];
28
29
30
31

/*******************************************************************************
 * Per cpu data structure to keep track of TSP activity
 ******************************************************************************/
32
work_statistics_t tsp_stats[PLATFORM_CORE_COUNT];
33

34
/*******************************************************************************
35
36
37
 * The TSP memory footprint starts at address BL32_BASE and ends with the
 * linker symbol __BL32_END__. Use these addresses to compute the TSP image
 * size.
38
 ******************************************************************************/
39
#define BL32_TOTAL_LIMIT (unsigned long)(&__BL32_END__)
40
#define BL32_TOTAL_SIZE (BL32_TOTAL_LIMIT - (unsigned long) BL32_BASE)
41

42
static tsp_args_t *set_smc_args(uint64_t arg0,
43
44
45
46
47
48
49
50
51
			     uint64_t arg1,
			     uint64_t arg2,
			     uint64_t arg3,
			     uint64_t arg4,
			     uint64_t arg5,
			     uint64_t arg6,
			     uint64_t arg7)
{
	uint32_t linear_id;
52
	tsp_args_t *pcpu_smc_args;
53
54
55
56
57

	/*
	 * Return to Secure Monitor by raising an SMC. The results of the
	 * service are passed as an arguments to the SMC
	 */
58
	linear_id = plat_my_core_pos();
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
	pcpu_smc_args = &tsp_smc_args[linear_id];
	write_sp_arg(pcpu_smc_args, TSP_ARG0, arg0);
	write_sp_arg(pcpu_smc_args, TSP_ARG1, arg1);
	write_sp_arg(pcpu_smc_args, TSP_ARG2, arg2);
	write_sp_arg(pcpu_smc_args, TSP_ARG3, arg3);
	write_sp_arg(pcpu_smc_args, TSP_ARG4, arg4);
	write_sp_arg(pcpu_smc_args, TSP_ARG5, arg5);
	write_sp_arg(pcpu_smc_args, TSP_ARG6, arg6);
	write_sp_arg(pcpu_smc_args, TSP_ARG7, arg7);

	return pcpu_smc_args;
}

/*******************************************************************************
 * TSP main entry point where it gets the opportunity to initialize its secure
 * state/applications. Once the state is initialized, it must return to the
75
 * SPD with a pointer to the 'tsp_vector_table' jump table.
76
77
78
 ******************************************************************************/
uint64_t tsp_main(void)
{
Dan Handley's avatar
Dan Handley committed
79
80
	NOTICE("TSP: %s\n", version_string);
	NOTICE("TSP: %s\n", build_message);
81
82
	INFO("TSP: Total memory base : 0x%lx\n", (unsigned long) BL32_BASE);
	INFO("TSP: Total memory size : 0x%lx bytes\n", BL32_TOTAL_SIZE);
Dan Handley's avatar
Dan Handley committed
83

84
	uint32_t linear_id = plat_my_core_pos();
85
86

	/* Initialize the platform */
87
	tsp_platform_setup();
88
89

	/* Initialize secure/applications state here */
90
	tsp_generic_timer_start();
91
92
93
94
95
96

	/* Update this cpu's statistics */
	tsp_stats[linear_id].smc_count++;
	tsp_stats[linear_id].eret_count++;
	tsp_stats[linear_id].cpu_on_count++;

Dan Handley's avatar
Dan Handley committed
97
#if LOG_LEVEL >= LOG_LEVEL_INFO
98
	spin_lock(&console_lock);
99
100
	INFO("TSP: cpu 0x%lx: %d smcs, %d erets %d cpu on requests\n",
	     read_mpidr(),
101
102
103
104
	     tsp_stats[linear_id].smc_count,
	     tsp_stats[linear_id].eret_count,
	     tsp_stats[linear_id].cpu_on_count);
	spin_unlock(&console_lock);
Dan Handley's avatar
Dan Handley committed
105
#endif
106
	return (uint64_t) &tsp_vector_table;
107
108
109
110
111
112
113
}

/*******************************************************************************
 * This function performs any remaining book keeping in the test secure payload
 * after this cpu's architectural state has been setup in response to an earlier
 * psci cpu_on request.
 ******************************************************************************/
114
tsp_args_t *tsp_cpu_on_main(void)
115
{
116
	uint32_t linear_id = plat_my_core_pos();
117

118
119
120
	/* Initialize secure/applications state here */
	tsp_generic_timer_start();

121
122
123
124
125
	/* Update this cpu's statistics */
	tsp_stats[linear_id].smc_count++;
	tsp_stats[linear_id].eret_count++;
	tsp_stats[linear_id].cpu_on_count++;

Dan Handley's avatar
Dan Handley committed
126
#if LOG_LEVEL >= LOG_LEVEL_INFO
127
	spin_lock(&console_lock);
128
129
130
	INFO("TSP: cpu 0x%lx turned on\n", read_mpidr());
	INFO("TSP: cpu 0x%lx: %d smcs, %d erets %d cpu on requests\n",
		read_mpidr(),
Dan Handley's avatar
Dan Handley committed
131
132
133
		tsp_stats[linear_id].smc_count,
		tsp_stats[linear_id].eret_count,
		tsp_stats[linear_id].cpu_on_count);
134
	spin_unlock(&console_lock);
Dan Handley's avatar
Dan Handley committed
135
#endif
136
137
138
139
140
141
142
143
	/* Indicate to the SPD that we have completed turned ourselves on */
	return set_smc_args(TSP_ON_DONE, 0, 0, 0, 0, 0, 0, 0);
}

/*******************************************************************************
 * This function performs any remaining book keeping in the test secure payload
 * before this cpu is turned off in response to a psci cpu_off request.
 ******************************************************************************/
144
tsp_args_t *tsp_cpu_off_main(uint64_t arg0,
145
146
147
148
149
150
151
152
			   uint64_t arg1,
			   uint64_t arg2,
			   uint64_t arg3,
			   uint64_t arg4,
			   uint64_t arg5,
			   uint64_t arg6,
			   uint64_t arg7)
{
153
	uint32_t linear_id = plat_my_core_pos();
154

155
156
157
158
159
160
161
	/*
	 * This cpu is being turned off, so disable the timer to prevent the
	 * secure timer interrupt from interfering with power down. A pending
	 * interrupt will be lost but we do not care as we are turning off.
	 */
	tsp_generic_timer_stop();

162
163
164
165
166
	/* Update this cpu's statistics */
	tsp_stats[linear_id].smc_count++;
	tsp_stats[linear_id].eret_count++;
	tsp_stats[linear_id].cpu_off_count++;

Dan Handley's avatar
Dan Handley committed
167
#if LOG_LEVEL >= LOG_LEVEL_INFO
168
	spin_lock(&console_lock);
169
170
171
	INFO("TSP: cpu 0x%lx off request\n", read_mpidr());
	INFO("TSP: cpu 0x%lx: %d smcs, %d erets %d cpu off requests\n",
		read_mpidr(),
Dan Handley's avatar
Dan Handley committed
172
173
174
		tsp_stats[linear_id].smc_count,
		tsp_stats[linear_id].eret_count,
		tsp_stats[linear_id].cpu_off_count);
175
	spin_unlock(&console_lock);
Dan Handley's avatar
Dan Handley committed
176
#endif
177

178
	/* Indicate to the SPD that we have completed this request */
179
180
181
182
183
184
185
186
	return set_smc_args(TSP_OFF_DONE, 0, 0, 0, 0, 0, 0, 0);
}

/*******************************************************************************
 * This function performs any book keeping in the test secure payload before
 * this cpu's architectural state is saved in response to an earlier psci
 * cpu_suspend request.
 ******************************************************************************/
187
tsp_args_t *tsp_cpu_suspend_main(uint64_t arg0,
188
189
190
191
192
193
194
195
			       uint64_t arg1,
			       uint64_t arg2,
			       uint64_t arg3,
			       uint64_t arg4,
			       uint64_t arg5,
			       uint64_t arg6,
			       uint64_t arg7)
{
196
	uint32_t linear_id = plat_my_core_pos();
197

198
199
200
201
202
203
204
	/*
	 * Save the time context and disable it to prevent the secure timer
	 * interrupt from interfering with wakeup from the suspend state.
	 */
	tsp_generic_timer_save();
	tsp_generic_timer_stop();

205
206
207
208
209
	/* Update this cpu's statistics */
	tsp_stats[linear_id].smc_count++;
	tsp_stats[linear_id].eret_count++;
	tsp_stats[linear_id].cpu_suspend_count++;

Dan Handley's avatar
Dan Handley committed
210
#if LOG_LEVEL >= LOG_LEVEL_INFO
211
	spin_lock(&console_lock);
212
	INFO("TSP: cpu 0x%lx: %d smcs, %d erets %d cpu suspend requests\n",
213
		read_mpidr(),
Dan Handley's avatar
Dan Handley committed
214
215
216
		tsp_stats[linear_id].smc_count,
		tsp_stats[linear_id].eret_count,
		tsp_stats[linear_id].cpu_suspend_count);
217
	spin_unlock(&console_lock);
Dan Handley's avatar
Dan Handley committed
218
#endif
219

220
	/* Indicate to the SPD that we have completed this request */
221
222
223
224
225
226
227
228
	return set_smc_args(TSP_SUSPEND_DONE, 0, 0, 0, 0, 0, 0, 0);
}

/*******************************************************************************
 * This function performs any book keeping in the test secure payload after this
 * cpu's architectural state has been restored after wakeup from an earlier psci
 * cpu_suspend request.
 ******************************************************************************/
229
tsp_args_t *tsp_cpu_resume_main(uint64_t max_off_pwrlvl,
230
231
232
233
234
235
236
237
			      uint64_t arg1,
			      uint64_t arg2,
			      uint64_t arg3,
			      uint64_t arg4,
			      uint64_t arg5,
			      uint64_t arg6,
			      uint64_t arg7)
{
238
	uint32_t linear_id = plat_my_core_pos();
239

240
241
242
	/* Restore the generic timer context */
	tsp_generic_timer_restore();

243
244
245
246
247
	/* Update this cpu's statistics */
	tsp_stats[linear_id].smc_count++;
	tsp_stats[linear_id].eret_count++;
	tsp_stats[linear_id].cpu_resume_count++;

Dan Handley's avatar
Dan Handley committed
248
#if LOG_LEVEL >= LOG_LEVEL_INFO
249
	spin_lock(&console_lock);
250
	INFO("TSP: cpu 0x%lx resumed. maximum off power level %lld\n",
251
	     read_mpidr(), max_off_pwrlvl);
252
	INFO("TSP: cpu 0x%lx: %d smcs, %d erets %d cpu suspend requests\n",
253
		read_mpidr(),
Dan Handley's avatar
Dan Handley committed
254
255
256
		tsp_stats[linear_id].smc_count,
		tsp_stats[linear_id].eret_count,
		tsp_stats[linear_id].cpu_suspend_count);
257
	spin_unlock(&console_lock);
Dan Handley's avatar
Dan Handley committed
258
#endif
259
	/* Indicate to the SPD that we have completed this request */
260
261
262
	return set_smc_args(TSP_RESUME_DONE, 0, 0, 0, 0, 0, 0, 0);
}

263
264
265
266
267
268
269
270
271
272
273
274
275
/*******************************************************************************
 * This function performs any remaining bookkeeping in the test secure payload
 * before the system is switched off (in response to a psci SYSTEM_OFF request)
 ******************************************************************************/
tsp_args_t *tsp_system_off_main(uint64_t arg0,
				uint64_t arg1,
				uint64_t arg2,
				uint64_t arg3,
				uint64_t arg4,
				uint64_t arg5,
				uint64_t arg6,
				uint64_t arg7)
{
276
	uint32_t linear_id = plat_my_core_pos();
277
278
279
280
281
282
283

	/* Update this cpu's statistics */
	tsp_stats[linear_id].smc_count++;
	tsp_stats[linear_id].eret_count++;

#if LOG_LEVEL >= LOG_LEVEL_INFO
	spin_lock(&console_lock);
284
285
	INFO("TSP: cpu 0x%lx SYSTEM_OFF request\n", read_mpidr());
	INFO("TSP: cpu 0x%lx: %d smcs, %d erets requests\n", read_mpidr(),
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
	     tsp_stats[linear_id].smc_count,
	     tsp_stats[linear_id].eret_count);
	spin_unlock(&console_lock);
#endif

	/* Indicate to the SPD that we have completed this request */
	return set_smc_args(TSP_SYSTEM_OFF_DONE, 0, 0, 0, 0, 0, 0, 0);
}

/*******************************************************************************
 * This function performs any remaining bookkeeping in the test secure payload
 * before the system is reset (in response to a psci SYSTEM_RESET request)
 ******************************************************************************/
tsp_args_t *tsp_system_reset_main(uint64_t arg0,
				uint64_t arg1,
				uint64_t arg2,
				uint64_t arg3,
				uint64_t arg4,
				uint64_t arg5,
				uint64_t arg6,
				uint64_t arg7)
{
308
	uint32_t linear_id = plat_my_core_pos();
309
310
311
312
313
314
315

	/* Update this cpu's statistics */
	tsp_stats[linear_id].smc_count++;
	tsp_stats[linear_id].eret_count++;

#if LOG_LEVEL >= LOG_LEVEL_INFO
	spin_lock(&console_lock);
316
317
	INFO("TSP: cpu 0x%lx SYSTEM_RESET request\n", read_mpidr());
	INFO("TSP: cpu 0x%lx: %d smcs, %d erets requests\n", read_mpidr(),
318
319
320
321
322
323
324
325
326
	     tsp_stats[linear_id].smc_count,
	     tsp_stats[linear_id].eret_count);
	spin_unlock(&console_lock);
#endif

	/* Indicate to the SPD that we have completed this request */
	return set_smc_args(TSP_SYSTEM_RESET_DONE, 0, 0, 0, 0, 0, 0, 0);
}

327
328
329
330
/*******************************************************************************
 * TSP fast smc handler. The secure monitor jumps to this function by
 * doing the ERET after populating X0-X7 registers. The arguments are received
 * in the function arguments in order. Once the service is rendered, this
331
 * function returns to Secure Monitor by raising SMC.
332
 ******************************************************************************/
333
tsp_args_t *tsp_smc_handler(uint64_t func,
334
335
336
337
338
339
340
341
			       uint64_t arg1,
			       uint64_t arg2,
			       uint64_t arg3,
			       uint64_t arg4,
			       uint64_t arg5,
			       uint64_t arg6,
			       uint64_t arg7)
{
342
343
	uint64_t results[2];
	uint64_t service_args[2];
344
	uint32_t linear_id = plat_my_core_pos();
345

346
347
348
349
	/* Update this cpu's statistics */
	tsp_stats[linear_id].smc_count++;
	tsp_stats[linear_id].eret_count++;

350
	INFO("TSP: cpu 0x%lx received %s smc 0x%llx\n", read_mpidr(),
351
		((func >> 31) & 1) == 1 ? "fast" : "yielding",
Dan Handley's avatar
Dan Handley committed
352
		func);
353
	INFO("TSP: cpu 0x%lx: %d smcs, %d erets\n", read_mpidr(),
Dan Handley's avatar
Dan Handley committed
354
355
		tsp_stats[linear_id].smc_count,
		tsp_stats[linear_id].eret_count);
356

357
	/* Render secure services and obtain results here */
358
359
360
361
362
363
364
365
366
367
	results[0] = arg1;
	results[1] = arg2;

	/*
	 * Request a service back from dispatcher/secure monitor. This call
	 * return and thereafter resume exectuion
	 */
	tsp_get_magic(service_args);

	/* Determine the function to perform based on the function ID */
368
369
	switch (TSP_BARE_FID(func)) {
	case TSP_ADD:
370
371
372
		results[0] += service_args[0];
		results[1] += service_args[1];
		break;
373
	case TSP_SUB:
374
375
376
		results[0] -= service_args[0];
		results[1] -= service_args[1];
		break;
377
	case TSP_MUL:
378
379
380
		results[0] *= service_args[0];
		results[1] *= service_args[1];
		break;
381
	case TSP_DIV:
382
383
384
385
386
387
388
		results[0] /= service_args[0] ? service_args[0] : 1;
		results[1] /= service_args[1] ? service_args[1] : 1;
		break;
	default:
		break;
	}

389
	return set_smc_args(func, 0,
390
391
			    results[0],
			    results[1],
392
			    0, 0, 0, 0);
393
394
}

395
396
/*******************************************************************************
 * TSP smc abort handler. This function is called when aborting a preemtped
397
 * yielding SMC request. It should cleanup all resources owned by the SMC
398
399
400
401
402
403
404
405
406
407
408
409
410
411
 * handler such as locks or dynamically allocated memory so following SMC
 * request are executed in a clean environment.
 ******************************************************************************/
tsp_args_t *tsp_abort_smc_handler(uint64_t func,
				  uint64_t arg1,
				  uint64_t arg2,
				  uint64_t arg3,
				  uint64_t arg4,
				  uint64_t arg5,
				  uint64_t arg6,
				  uint64_t arg7)
{
	return set_smc_args(TSP_ABORT_DONE, 0, 0, 0, 0, 0, 0, 0);
}