blob: ad1262cbe61588b1372eec3b9e874d6d6eabb4c2 [file] [log] [blame]
Antonio Nino Diazc41f2062017-10-24 10:07:35 +01001/*
Antonio Nino Diaz35b37f02018-01-08 17:33:34 +00002 * Copyright (c) 2017-2018, ARM Limited and Contributors. All rights reserved.
Antonio Nino Diazc41f2062017-10-24 10:07:35 +01003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <arch_helpers.h>
8#include <assert.h>
9#include <bl31.h>
10#include <context_mgmt.h>
11#include <debug.h>
Sughosh Ganue77f9e82018-11-14 11:06:24 +053012#include <ehf.h>
Antonio Nino Diazc41f2062017-10-24 10:07:35 +010013#include <errno.h>
Antonio Nino Diaz35b37f02018-01-08 17:33:34 +000014#include <mm_svc.h>
Antonio Nino Diazc41f2062017-10-24 10:07:35 +010015#include <platform.h>
16#include <runtime_svc.h>
Antonio Nino Diaz3c817f42018-03-21 10:49:27 +000017#include <smccc.h>
18#include <smccc_helpers.h>
Antonio Nino Diazc41f2062017-10-24 10:07:35 +010019#include <spinlock.h>
20#include <spm_svc.h>
21#include <utils.h>
22#include <xlat_tables_v2.h>
23
24#include "spm_private.h"
Antonio Nino Diaz2ac9a442018-05-23 11:40:46 +010025
Antonio Nino Diazc41f2062017-10-24 10:07:35 +010026/*******************************************************************************
27 * Secure Partition context information.
28 ******************************************************************************/
Antonio Nino Diaz28759312018-05-22 16:26:48 +010029static sp_context_t sp_ctx;
Antonio Nino Diazc41f2062017-10-24 10:07:35 +010030
31/*******************************************************************************
Antonio Nino Diazc4f27522018-05-23 09:09:41 +010032 * Set state of a Secure Partition context.
33 ******************************************************************************/
34void sp_state_set(sp_context_t *sp_ptr, sp_state_t state)
35{
36 spin_lock(&(sp_ptr->state_lock));
37 sp_ptr->state = state;
38 spin_unlock(&(sp_ptr->state_lock));
39}
40
41/*******************************************************************************
42 * Wait until the state of a Secure Partition is the specified one and change it
43 * to the desired state.
44 ******************************************************************************/
45void sp_state_wait_switch(sp_context_t *sp_ptr, sp_state_t from, sp_state_t to)
46{
47 int success = 0;
48
49 while (success == 0) {
50 spin_lock(&(sp_ptr->state_lock));
51
52 if (sp_ptr->state == from) {
53 sp_ptr->state = to;
54
55 success = 1;
56 }
57
58 spin_unlock(&(sp_ptr->state_lock));
59 }
60}
61
62/*******************************************************************************
63 * Check if the state of a Secure Partition is the specified one and, if so,
64 * change it to the desired state. Returns 0 on success, -1 on error.
65 ******************************************************************************/
66int sp_state_try_switch(sp_context_t *sp_ptr, sp_state_t from, sp_state_t to)
67{
68 int ret = -1;
69
70 spin_lock(&(sp_ptr->state_lock));
71
72 if (sp_ptr->state == from) {
73 sp_ptr->state = to;
74
75 ret = 0;
76 }
77
78 spin_unlock(&(sp_ptr->state_lock));
79
80 return ret;
81}
82
83/*******************************************************************************
Antonio Nino Diazda50cd02018-06-15 16:21:01 +010084 * This function takes an SP context pointer and performs a synchronous entry
85 * into it.
Antonio Nino Diazc41f2062017-10-24 10:07:35 +010086 ******************************************************************************/
Antonio Nino Diazda50cd02018-06-15 16:21:01 +010087static uint64_t spm_sp_synchronous_entry(sp_context_t *sp_ctx)
Antonio Nino Diazc41f2062017-10-24 10:07:35 +010088{
Antonio Nino Diazda50cd02018-06-15 16:21:01 +010089 uint64_t rc;
90
Antonio Nino Diaz2ac9a442018-05-23 11:40:46 +010091 assert(sp_ctx != NULL);
Antonio Nino Diazc41f2062017-10-24 10:07:35 +010092
Antonio Nino Diaz2ac9a442018-05-23 11:40:46 +010093 /* Assign the context of the SP to this CPU */
94 cm_set_context(&(sp_ctx->cpu_ctx), SECURE);
Antonio Nino Diazc41f2062017-10-24 10:07:35 +010095
Antonio Nino Diaz2ac9a442018-05-23 11:40:46 +010096 /* Restore the context assigned above */
Antonio Nino Diazc41f2062017-10-24 10:07:35 +010097 cm_el1_sysregs_context_restore(SECURE);
98 cm_set_next_eret_context(SECURE);
99
Antonio Nino Diaz2ac9a442018-05-23 11:40:46 +0100100 /* Invalidate TLBs at EL1. */
101 tlbivmalle1();
102 dsbish();
Antonio Nino Diazda50cd02018-06-15 16:21:01 +0100103
104 /* Enter Secure Partition */
105 rc = spm_secure_partition_enter(&sp_ctx->c_rt_ctx);
106
107 /* Save secure state */
108 cm_el1_sysregs_context_save(SECURE);
109
110 return rc;
Antonio Nino Diazc41f2062017-10-24 10:07:35 +0100111}
112
Antonio Nino Diazc41f2062017-10-24 10:07:35 +0100113/*******************************************************************************
Antonio Nino Diazda50cd02018-06-15 16:21:01 +0100114 * This function returns to the place where spm_sp_synchronous_entry() was
115 * called originally.
Antonio Nino Diazc41f2062017-10-24 10:07:35 +0100116 ******************************************************************************/
Antonio Nino Diazda50cd02018-06-15 16:21:01 +0100117__dead2 static void spm_sp_synchronous_exit(uint64_t rc)
Antonio Nino Diazc41f2062017-10-24 10:07:35 +0100118{
Antonio Nino Diazda50cd02018-06-15 16:21:01 +0100119 sp_context_t *ctx = &sp_ctx;
120
121 /*
122 * The SPM must have initiated the original request through a
123 * synchronous entry into the secure partition. Jump back to the
124 * original C runtime context with the value of rc in x0;
125 */
126 spm_secure_partition_exit(ctx->c_rt_ctx, rc);
127
128 panic();
Antonio Nino Diazc41f2062017-10-24 10:07:35 +0100129}
130
131/*******************************************************************************
Antonio Nino Diaz2ac9a442018-05-23 11:40:46 +0100132 * Jump to each Secure Partition for the first time.
Antonio Nino Diazc41f2062017-10-24 10:07:35 +0100133 ******************************************************************************/
Antonio Nino Diaze8811472018-04-17 15:10:18 +0100134static int32_t spm_init(void)
Antonio Nino Diazc41f2062017-10-24 10:07:35 +0100135{
Antonio Nino Diazda50cd02018-06-15 16:21:01 +0100136 uint64_t rc;
Antonio Nino Diaz28759312018-05-22 16:26:48 +0100137 sp_context_t *ctx;
Antonio Nino Diazc41f2062017-10-24 10:07:35 +0100138
Antonio Nino Diaz2ac9a442018-05-23 11:40:46 +0100139 INFO("Secure Partition init...\n");
Antonio Nino Diazc41f2062017-10-24 10:07:35 +0100140
Antonio Nino Diaz2ac9a442018-05-23 11:40:46 +0100141 ctx = &sp_ctx;
Antonio Nino Diazc41f2062017-10-24 10:07:35 +0100142
Antonio Nino Diazc4f27522018-05-23 09:09:41 +0100143 ctx->state = SP_STATE_RESET;
Antonio Nino Diazc41f2062017-10-24 10:07:35 +0100144
Antonio Nino Diazda50cd02018-06-15 16:21:01 +0100145 rc = spm_sp_synchronous_entry(ctx);
Antonio Nino Diazc41f2062017-10-24 10:07:35 +0100146 assert(rc == 0);
Antonio Nino Diazc41f2062017-10-24 10:07:35 +0100147
Antonio Nino Diazc4f27522018-05-23 09:09:41 +0100148 ctx->state = SP_STATE_IDLE;
Antonio Nino Diazc41f2062017-10-24 10:07:35 +0100149
Antonio Nino Diaz2ac9a442018-05-23 11:40:46 +0100150 INFO("Secure Partition initialized.\n");
Antonio Nino Diazc41f2062017-10-24 10:07:35 +0100151
Antonio Nino Diaz2ac9a442018-05-23 11:40:46 +0100152 return rc;
Antonio Nino Diazc41f2062017-10-24 10:07:35 +0100153}
154
155/*******************************************************************************
Antonio Nino Diaz2ac9a442018-05-23 11:40:46 +0100156 * Initialize contexts of all Secure Partitions.
Antonio Nino Diazc41f2062017-10-24 10:07:35 +0100157 ******************************************************************************/
158int32_t spm_setup(void)
159{
Antonio Nino Diaz28759312018-05-22 16:26:48 +0100160 sp_context_t *ctx;
Antonio Nino Diazc41f2062017-10-24 10:07:35 +0100161
Antonio Nino Diaz2ac9a442018-05-23 11:40:46 +0100162 /* Disable MMU at EL1 (initialized by BL2) */
163 disable_mmu_icache_el1();
Antonio Nino Diazc41f2062017-10-24 10:07:35 +0100164
Antonio Nino Diaz2ac9a442018-05-23 11:40:46 +0100165 /* Initialize context of the SP */
166 INFO("Secure Partition context setup start...\n");
Antonio Nino Diazc41f2062017-10-24 10:07:35 +0100167
Antonio Nino Diaz2ac9a442018-05-23 11:40:46 +0100168 ctx = &sp_ctx;
Antonio Nino Diazc41f2062017-10-24 10:07:35 +0100169
Antonio Nino Diaz2ac9a442018-05-23 11:40:46 +0100170 /* Assign translation tables context. */
171 ctx->xlat_ctx_handle = spm_get_sp_xlat_context();
Antonio Nino Diazc41f2062017-10-24 10:07:35 +0100172
Antonio Nino Diaz28759312018-05-22 16:26:48 +0100173 spm_sp_setup(ctx);
Antonio Nino Diaz2ac9a442018-05-23 11:40:46 +0100174
175 /* Register init function for deferred init. */
Antonio Nino Diazc41f2062017-10-24 10:07:35 +0100176 bl31_register_bl32_init(&spm_init);
177
Antonio Nino Diaz2ac9a442018-05-23 11:40:46 +0100178 INFO("Secure Partition setup done.\n");
Antonio Nino Diazc41f2062017-10-24 10:07:35 +0100179
180 return 0;
181}
182
Antonio Nino Diaz2ac9a442018-05-23 11:40:46 +0100183/*******************************************************************************
Antonio Nino Diaz10c3e982018-06-20 12:05:02 +0100184 * Function to perform a call to a Secure Partition.
185 ******************************************************************************/
186uint64_t spm_sp_call(uint32_t smc_fid, uint64_t x1, uint64_t x2, uint64_t x3)
187{
188 uint64_t rc;
189 sp_context_t *sp_ptr = &sp_ctx;
190
191 /* Wait until the Secure Partition is idle and set it to busy. */
192 sp_state_wait_switch(sp_ptr, SP_STATE_IDLE, SP_STATE_BUSY);
193
194 /* Set values for registers on SP entry */
195 cpu_context_t *cpu_ctx = &(sp_ptr->cpu_ctx);
196
197 write_ctx_reg(get_gpregs_ctx(cpu_ctx), CTX_GPREG_X0, smc_fid);
198 write_ctx_reg(get_gpregs_ctx(cpu_ctx), CTX_GPREG_X1, x1);
199 write_ctx_reg(get_gpregs_ctx(cpu_ctx), CTX_GPREG_X2, x2);
200 write_ctx_reg(get_gpregs_ctx(cpu_ctx), CTX_GPREG_X3, x3);
201
202 /* Jump to the Secure Partition. */
203 rc = spm_sp_synchronous_entry(sp_ptr);
204
205 /* Flag Secure Partition as idle. */
206 assert(sp_ptr->state == SP_STATE_BUSY);
207 sp_state_set(sp_ptr, SP_STATE_IDLE);
208
209 return rc;
210}
211
212/*******************************************************************************
Antonio Nino Diazfbd7f502018-05-23 11:49:16 +0100213 * MM_COMMUNICATE handler
214 ******************************************************************************/
215static uint64_t mm_communicate(uint32_t smc_fid, uint64_t mm_cookie,
216 uint64_t comm_buffer_address,
217 uint64_t comm_size_address, void *handle)
218{
Antonio Nino Diazda50cd02018-06-15 16:21:01 +0100219 uint64_t rc;
Antonio Nino Diazfbd7f502018-05-23 11:49:16 +0100220
221 /* Cookie. Reserved for future use. It must be zero. */
222 if (mm_cookie != 0U) {
223 ERROR("MM_COMMUNICATE: cookie is not zero\n");
224 SMC_RET1(handle, SPM_INVALID_PARAMETER);
225 }
226
227 if (comm_buffer_address == 0U) {
228 ERROR("MM_COMMUNICATE: comm_buffer_address is zero\n");
229 SMC_RET1(handle, SPM_INVALID_PARAMETER);
230 }
231
232 if (comm_size_address != 0U) {
233 VERBOSE("MM_COMMUNICATE: comm_size_address is not 0 as recommended.\n");
234 }
235
Sughosh Ganue77f9e82018-11-14 11:06:24 +0530236 /*
237 * The current secure partition design mandates
238 * - at any point, only a single core can be
239 * executing in the secure partiton.
240 * - a core cannot be preempted by an interrupt
241 * while executing in secure partition.
242 * Raise the running priority of the core to the
243 * interrupt level configured for secure partition
244 * so as to block any interrupt from preempting this
245 * core.
246 */
247 ehf_activate_priority(PLAT_SP_PRI);
248
Antonio Nino Diazfbd7f502018-05-23 11:49:16 +0100249 /* Save the Normal world context */
250 cm_el1_sysregs_context_save(NON_SECURE);
251
Antonio Nino Diaz10c3e982018-06-20 12:05:02 +0100252 rc = spm_sp_call(smc_fid, comm_buffer_address, comm_size_address,
253 plat_my_core_pos());
Antonio Nino Diazfbd7f502018-05-23 11:49:16 +0100254
Antonio Nino Diazfbd7f502018-05-23 11:49:16 +0100255 /* Restore non-secure state */
256 cm_el1_sysregs_context_restore(NON_SECURE);
257 cm_set_next_eret_context(NON_SECURE);
258
Sughosh Ganue77f9e82018-11-14 11:06:24 +0530259 /*
260 * Exited from secure partition. This core can take
261 * interrupts now.
262 */
263 ehf_deactivate_priority(PLAT_SP_PRI);
264
Antonio Nino Diazda50cd02018-06-15 16:21:01 +0100265 SMC_RET1(handle, rc);
Antonio Nino Diazfbd7f502018-05-23 11:49:16 +0100266}
267
268/*******************************************************************************
Antonio Nino Diaz2ac9a442018-05-23 11:40:46 +0100269 * Secure Partition Manager SMC handler.
270 ******************************************************************************/
Antonio Nino Diazc41f2062017-10-24 10:07:35 +0100271uint64_t spm_smc_handler(uint32_t smc_fid,
272 uint64_t x1,
273 uint64_t x2,
274 uint64_t x3,
275 uint64_t x4,
276 void *cookie,
277 void *handle,
278 uint64_t flags)
279{
Antonio Nino Diazc41f2062017-10-24 10:07:35 +0100280 unsigned int ns;
281
282 /* Determine which security state this SMC originated from */
283 ns = is_caller_non_secure(flags);
284
285 if (ns == SMC_FROM_SECURE) {
286
287 /* Handle SMCs from Secure world. */
288
Antonio Nino Diaz2ac9a442018-05-23 11:40:46 +0100289 assert(handle == cm_get_context(SECURE));
290
291 /* Make next ERET jump to S-EL0 instead of S-EL1. */
292 cm_set_elr_spsr_el3(SECURE, read_elr_el1(), read_spsr_el1());
293
Antonio Nino Diazc41f2062017-10-24 10:07:35 +0100294 switch (smc_fid) {
295
Sandrine Bailleux843d3f02017-12-07 09:48:56 +0000296 case SPM_VERSION_AARCH32:
Antonio Nino Diazc41f2062017-10-24 10:07:35 +0100297 SMC_RET1(handle, SPM_VERSION_COMPILED);
298
299 case SP_EVENT_COMPLETE_AARCH64:
Antonio Nino Diazda50cd02018-06-15 16:21:01 +0100300 spm_sp_synchronous_exit(x1);
Antonio Nino Diazc41f2062017-10-24 10:07:35 +0100301
Antonio Nino Diaz837173f2017-12-01 14:12:43 +0000302 case SP_MEMORY_ATTRIBUTES_GET_AARCH64:
303 INFO("Received SP_MEMORY_ATTRIBUTES_GET_AARCH64 SMC\n");
Antonio Nino Diazc41f2062017-10-24 10:07:35 +0100304
Antonio Nino Diazc4f27522018-05-23 09:09:41 +0100305 if (sp_ctx.state != SP_STATE_RESET) {
Antonio Nino Diaz837173f2017-12-01 14:12:43 +0000306 WARN("SP_MEMORY_ATTRIBUTES_GET_AARCH64 is available at boot time only\n");
Antonio Nino Diazc41f2062017-10-24 10:07:35 +0100307 SMC_RET1(handle, SPM_NOT_SUPPORTED);
308 }
Antonio Nino Diaz2ac9a442018-05-23 11:40:46 +0100309 SMC_RET1(handle,
310 spm_memory_attributes_get_smc_handler(
311 &sp_ctx, x1));
Antonio Nino Diazc41f2062017-10-24 10:07:35 +0100312
Antonio Nino Diaz837173f2017-12-01 14:12:43 +0000313 case SP_MEMORY_ATTRIBUTES_SET_AARCH64:
314 INFO("Received SP_MEMORY_ATTRIBUTES_SET_AARCH64 SMC\n");
Antonio Nino Diazc41f2062017-10-24 10:07:35 +0100315
Antonio Nino Diazc4f27522018-05-23 09:09:41 +0100316 if (sp_ctx.state != SP_STATE_RESET) {
Antonio Nino Diaz837173f2017-12-01 14:12:43 +0000317 WARN("SP_MEMORY_ATTRIBUTES_SET_AARCH64 is available at boot time only\n");
Antonio Nino Diazc41f2062017-10-24 10:07:35 +0100318 SMC_RET1(handle, SPM_NOT_SUPPORTED);
319 }
Antonio Nino Diaz2ac9a442018-05-23 11:40:46 +0100320 SMC_RET1(handle,
321 spm_memory_attributes_set_smc_handler(
322 &sp_ctx, x1, x2, x3));
Antonio Nino Diazc41f2062017-10-24 10:07:35 +0100323 default:
324 break;
325 }
326 } else {
327
328 /* Handle SMCs from Non-secure world. */
329
Antonio Nino Diazda50cd02018-06-15 16:21:01 +0100330 assert(handle == cm_get_context(NON_SECURE));
331
Antonio Nino Diazc41f2062017-10-24 10:07:35 +0100332 switch (smc_fid) {
333
Antonio Nino Diaz35b37f02018-01-08 17:33:34 +0000334 case MM_VERSION_AARCH32:
335 SMC_RET1(handle, MM_VERSION_COMPILED);
Antonio Nino Diazc41f2062017-10-24 10:07:35 +0100336
Sandrine Bailleuxb31ee6b2017-12-01 09:44:21 +0000337 case MM_COMMUNICATE_AARCH32:
338 case MM_COMMUNICATE_AARCH64:
Antonio Nino Diazfbd7f502018-05-23 11:49:16 +0100339 return mm_communicate(smc_fid, x1, x2, x3, handle);
Antonio Nino Diazc41f2062017-10-24 10:07:35 +0100340
Antonio Nino Diaz837173f2017-12-01 14:12:43 +0000341 case SP_MEMORY_ATTRIBUTES_GET_AARCH64:
342 case SP_MEMORY_ATTRIBUTES_SET_AARCH64:
Antonio Nino Diazc41f2062017-10-24 10:07:35 +0100343 /* SMC interfaces reserved for secure callers. */
344 SMC_RET1(handle, SPM_NOT_SUPPORTED);
345
346 default:
347 break;
348 }
349 }
350
351 SMC_RET1(handle, SMC_UNK);
352}