blob: 3dcefea95b6ec31897f8b8fd8329487946aa2ba6 [file] [log] [blame]
Achin Gupta375f5382014-02-18 18:12:48 +00001/*
Douglas Raillardf2129652016-11-24 15:43:19 +00002 * Copyright (c) 2013-2016, ARM Limited and Contributors. All rights reserved.
Achin Gupta375f5382014-02-18 18:12:48 +00003 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are met:
6 *
7 * Redistributions of source code must retain the above copyright notice, this
8 * list of conditions and the following disclaimer.
9 *
10 * Redistributions in binary form must reproduce the above copyright notice,
11 * this list of conditions and the following disclaimer in the documentation
12 * and/or other materials provided with the distribution.
13 *
14 * Neither the name of ARM nor the names of its contributors may be used
15 * to endorse or promote products derived from this software without specific
16 * prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
22 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28 * POSSIBILITY OF SUCH DAMAGE.
29 */
30
Achin Gupta375f5382014-02-18 18:12:48 +000031#include <arch_helpers.h>
Dan Handley2bd4ef22014-04-09 13:14:54 +010032#include <assert.h>
Achin Gupta375f5382014-02-18 18:12:48 +000033#include <bl_common.h>
Achin Gupta375f5382014-02-18 18:12:48 +000034#include <context_mgmt.h>
Douglas Raillardf2129652016-11-24 15:43:19 +000035#include <debug.h>
Dan Handley2bd4ef22014-04-09 13:14:54 +010036#include <string.h>
Douglas Raillardf2129652016-11-24 15:43:19 +000037#include <tsp.h>
Dan Handley714a0d22014-04-09 13:13:04 +010038#include "tspd_private.h"
Achin Gupta375f5382014-02-18 18:12:48 +000039
40/*******************************************************************************
Vikram Kanigiri9d70f0f2014-07-15 16:46:43 +010041 * Given a secure payload entrypoint info pointer, entry point PC, register
42 * width, cpu id & pointer to a context data structure, this function will
43 * initialize tsp context and entry point info for the secure payload
Achin Gupta375f5382014-02-18 18:12:48 +000044 ******************************************************************************/
Vikram Kanigiri9d70f0f2014-07-15 16:46:43 +010045void tspd_init_tsp_ep_state(struct entry_point_info *tsp_entry_point,
46 uint32_t rw,
47 uint64_t pc,
48 tsp_context_t *tsp_ctx)
Achin Gupta375f5382014-02-18 18:12:48 +000049{
Andrew Thoelke4e126072014-06-04 21:10:52 +010050 uint32_t ep_attr;
Achin Gupta375f5382014-02-18 18:12:48 +000051
52 /* Passing a NULL context is a critical programming error */
53 assert(tsp_ctx);
Vikram Kanigiri9d70f0f2014-07-15 16:46:43 +010054 assert(tsp_entry_point);
55 assert(pc);
Achin Gupta375f5382014-02-18 18:12:48 +000056
57 /*
58 * We support AArch64 TSP for now.
59 * TODO: Add support for AArch32 TSP
60 */
61 assert(rw == TSP_AARCH64);
62
Andrew Thoelke4e126072014-06-04 21:10:52 +010063 /* Associate this context with the cpu specified */
Vikram Kanigiri9d70f0f2014-07-15 16:46:43 +010064 tsp_ctx->mpidr = read_mpidr_el1();
Andrew Thoelke4e126072014-06-04 21:10:52 +010065 tsp_ctx->state = 0;
Achin Gupta18d6eaf2014-05-04 18:23:26 +010066 set_tsp_pstate(tsp_ctx->state, TSP_PSTATE_OFF);
Achin Gupta18d6eaf2014-05-04 18:23:26 +010067 clr_std_smc_active_flag(tsp_ctx->state);
Achin Gupta375f5382014-02-18 18:12:48 +000068
Vikram Kanigiri9d70f0f2014-07-15 16:46:43 +010069 cm_set_context(&tsp_ctx->cpu_ctx, SECURE);
Andrew Thoelke4e126072014-06-04 21:10:52 +010070
71 /* initialise an entrypoint to set up the CPU context */
72 ep_attr = SECURE | EP_ST_ENABLE;
73 if (read_sctlr_el3() & SCTLR_EE_BIT)
74 ep_attr |= EP_EE_BIG;
Vikram Kanigiri9d70f0f2014-07-15 16:46:43 +010075 SET_PARAM_HEAD(tsp_entry_point, PARAM_EP, VERSION_1, ep_attr);
Achin Gupta375f5382014-02-18 18:12:48 +000076
Vikram Kanigiri9d70f0f2014-07-15 16:46:43 +010077 tsp_entry_point->pc = pc;
78 tsp_entry_point->spsr = SPSR_64(MODE_EL1,
79 MODE_SP_ELX,
80 DISABLE_ALL_EXCEPTIONS);
81 memset(&tsp_entry_point->args, 0, sizeof(tsp_entry_point->args));
Achin Gupta375f5382014-02-18 18:12:48 +000082}
83
84/*******************************************************************************
85 * This function takes an SP context pointer and:
86 * 1. Applies the S-EL1 system register context from tsp_ctx->cpu_ctx.
87 * 2. Saves the current C runtime state (callee saved registers) on the stack
88 * frame and saves a reference to this state.
89 * 3. Calls el3_exit() so that the EL3 system and general purpose registers
90 * from the tsp_ctx->cpu_ctx are used to enter the secure payload image.
91 ******************************************************************************/
Dan Handleye2712bc2014-04-10 15:37:22 +010092uint64_t tspd_synchronous_sp_entry(tsp_context_t *tsp_ctx)
Achin Gupta375f5382014-02-18 18:12:48 +000093{
94 uint64_t rc;
95
Juan Castillof558cac2014-06-05 09:45:36 +010096 assert(tsp_ctx != NULL);
Achin Gupta375f5382014-02-18 18:12:48 +000097 assert(tsp_ctx->c_rt_ctx == 0);
98
99 /* Apply the Secure EL1 system register context and switch to it */
Andrew Thoelkea2f65532014-05-14 17:09:32 +0100100 assert(cm_get_context(SECURE) == &tsp_ctx->cpu_ctx);
Achin Gupta375f5382014-02-18 18:12:48 +0000101 cm_el1_sysregs_context_restore(SECURE);
102 cm_set_next_eret_context(SECURE);
103
104 rc = tspd_enter_sp(&tsp_ctx->c_rt_ctx);
105#if DEBUG
106 tsp_ctx->c_rt_ctx = 0;
107#endif
108
109 return rc;
110}
111
112
113/*******************************************************************************
114 * This function takes an SP context pointer and:
115 * 1. Saves the S-EL1 system register context tp tsp_ctx->cpu_ctx.
116 * 2. Restores the current C runtime state (callee saved registers) from the
117 * stack frame using the reference to this state saved in tspd_enter_sp().
118 * 3. It does not need to save any general purpose or EL3 system register state
119 * as the generic smc entry routine should have saved those.
120 ******************************************************************************/
Dan Handleye2712bc2014-04-10 15:37:22 +0100121void tspd_synchronous_sp_exit(tsp_context_t *tsp_ctx, uint64_t ret)
Achin Gupta375f5382014-02-18 18:12:48 +0000122{
Juan Castillof558cac2014-06-05 09:45:36 +0100123 assert(tsp_ctx != NULL);
Achin Gupta375f5382014-02-18 18:12:48 +0000124 /* Save the Secure EL1 system register context */
Andrew Thoelkea2f65532014-05-14 17:09:32 +0100125 assert(cm_get_context(SECURE) == &tsp_ctx->cpu_ctx);
Achin Gupta375f5382014-02-18 18:12:48 +0000126 cm_el1_sysregs_context_save(SECURE);
127
128 assert(tsp_ctx->c_rt_ctx != 0);
129 tspd_exit_sp(tsp_ctx->c_rt_ctx, ret);
130
131 /* Should never reach here */
132 assert(0);
133}
Douglas Raillardf2129652016-11-24 15:43:19 +0000134
135/*******************************************************************************
136 * This function takes an SP context pointer and abort any preempted SMC
137 * request.
138 * Return 1 if there was a preempted SMC request, 0 otherwise.
139 ******************************************************************************/
140int tspd_abort_preempted_smc(tsp_context_t *tsp_ctx)
141{
142 if (!get_std_smc_active_flag(tsp_ctx->state))
143 return 0;
144
145 /* Abort any preempted SMC request */
146 clr_std_smc_active_flag(tsp_ctx->state);
147
148 /*
149 * Arrange for an entry into the test secure payload. It will
150 * be returned via TSP_ABORT_DONE case in tspd_smc_handler.
151 */
152 cm_set_elr_el3(SECURE,
153 (uint64_t) &tsp_vectors->abort_std_smc_entry);
154 uint64_t rc = tspd_synchronous_sp_entry(tsp_ctx);
155
156 if (rc != 0)
157 panic();
158
159 return 1;
160}
161