Achin Gupta | 375f538 | 2014-02-18 18:12:48 +0000 | [diff] [blame] | 1 | /* |
Douglas Raillard | a8954fc | 2017-01-26 15:54:44 +0000 | [diff] [blame] | 2 | * Copyright (c) 2013-2017, ARM Limited and Contributors. All rights reserved. |
Achin Gupta | 375f538 | 2014-02-18 18:12:48 +0000 | [diff] [blame] | 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Achin Gupta | 375f538 | 2014-02-18 18:12:48 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
Dan Handley | 2bd4ef2 | 2014-04-09 13:14:54 +0100 | [diff] [blame] | 7 | #include <assert.h> |
Dan Handley | 2bd4ef2 | 2014-04-09 13:14:54 +0100 | [diff] [blame] | 8 | #include <string.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 9 | |
| 10 | #include <arch_helpers.h> |
| 11 | #include <bl32/tsp/tsp.h> |
| 12 | #include <common/bl_common.h> |
| 13 | #include <common/debug.h> |
| 14 | #include <lib/el3_runtime/context_mgmt.h> |
| 15 | #include <lib/utils.h> |
| 16 | |
Dan Handley | 714a0d2 | 2014-04-09 13:13:04 +0100 | [diff] [blame] | 17 | #include "tspd_private.h" |
Achin Gupta | 375f538 | 2014-02-18 18:12:48 +0000 | [diff] [blame] | 18 | |
| 19 | /******************************************************************************* |
Vikram Kanigiri | 9d70f0f | 2014-07-15 16:46:43 +0100 | [diff] [blame] | 20 | * Given a secure payload entrypoint info pointer, entry point PC, register |
| 21 | * width, cpu id & pointer to a context data structure, this function will |
| 22 | * initialize tsp context and entry point info for the secure payload |
Achin Gupta | 375f538 | 2014-02-18 18:12:48 +0000 | [diff] [blame] | 23 | ******************************************************************************/ |
Vikram Kanigiri | 9d70f0f | 2014-07-15 16:46:43 +0100 | [diff] [blame] | 24 | void tspd_init_tsp_ep_state(struct entry_point_info *tsp_entry_point, |
| 25 | uint32_t rw, |
| 26 | uint64_t pc, |
| 27 | tsp_context_t *tsp_ctx) |
Achin Gupta | 375f538 | 2014-02-18 18:12:48 +0000 | [diff] [blame] | 28 | { |
Andrew Thoelke | 4e12607 | 2014-06-04 21:10:52 +0100 | [diff] [blame] | 29 | uint32_t ep_attr; |
Achin Gupta | 375f538 | 2014-02-18 18:12:48 +0000 | [diff] [blame] | 30 | |
| 31 | /* Passing a NULL context is a critical programming error */ |
| 32 | assert(tsp_ctx); |
Vikram Kanigiri | 9d70f0f | 2014-07-15 16:46:43 +0100 | [diff] [blame] | 33 | assert(tsp_entry_point); |
| 34 | assert(pc); |
Achin Gupta | 375f538 | 2014-02-18 18:12:48 +0000 | [diff] [blame] | 35 | |
| 36 | /* |
| 37 | * We support AArch64 TSP for now. |
| 38 | * TODO: Add support for AArch32 TSP |
| 39 | */ |
| 40 | assert(rw == TSP_AARCH64); |
| 41 | |
Andrew Thoelke | 4e12607 | 2014-06-04 21:10:52 +0100 | [diff] [blame] | 42 | /* Associate this context with the cpu specified */ |
Vikram Kanigiri | 9d70f0f | 2014-07-15 16:46:43 +0100 | [diff] [blame] | 43 | tsp_ctx->mpidr = read_mpidr_el1(); |
Andrew Thoelke | 4e12607 | 2014-06-04 21:10:52 +0100 | [diff] [blame] | 44 | tsp_ctx->state = 0; |
Achin Gupta | 18d6eaf | 2014-05-04 18:23:26 +0100 | [diff] [blame] | 45 | set_tsp_pstate(tsp_ctx->state, TSP_PSTATE_OFF); |
David Cunado | 28f69ab | 2017-04-05 11:34:03 +0100 | [diff] [blame] | 46 | clr_yield_smc_active_flag(tsp_ctx->state); |
Achin Gupta | 375f538 | 2014-02-18 18:12:48 +0000 | [diff] [blame] | 47 | |
Vikram Kanigiri | 9d70f0f | 2014-07-15 16:46:43 +0100 | [diff] [blame] | 48 | cm_set_context(&tsp_ctx->cpu_ctx, SECURE); |
Andrew Thoelke | 4e12607 | 2014-06-04 21:10:52 +0100 | [diff] [blame] | 49 | |
| 50 | /* initialise an entrypoint to set up the CPU context */ |
| 51 | ep_attr = SECURE | EP_ST_ENABLE; |
| 52 | if (read_sctlr_el3() & SCTLR_EE_BIT) |
| 53 | ep_attr |= EP_EE_BIG; |
Vikram Kanigiri | 9d70f0f | 2014-07-15 16:46:43 +0100 | [diff] [blame] | 54 | SET_PARAM_HEAD(tsp_entry_point, PARAM_EP, VERSION_1, ep_attr); |
Achin Gupta | 375f538 | 2014-02-18 18:12:48 +0000 | [diff] [blame] | 55 | |
Vikram Kanigiri | 9d70f0f | 2014-07-15 16:46:43 +0100 | [diff] [blame] | 56 | tsp_entry_point->pc = pc; |
| 57 | tsp_entry_point->spsr = SPSR_64(MODE_EL1, |
| 58 | MODE_SP_ELX, |
| 59 | DISABLE_ALL_EXCEPTIONS); |
Douglas Raillard | a8954fc | 2017-01-26 15:54:44 +0000 | [diff] [blame] | 60 | zeromem(&tsp_entry_point->args, sizeof(tsp_entry_point->args)); |
Achin Gupta | 375f538 | 2014-02-18 18:12:48 +0000 | [diff] [blame] | 61 | } |
| 62 | |
| 63 | /******************************************************************************* |
| 64 | * This function takes an SP context pointer and: |
| 65 | * 1. Applies the S-EL1 system register context from tsp_ctx->cpu_ctx. |
| 66 | * 2. Saves the current C runtime state (callee saved registers) on the stack |
| 67 | * frame and saves a reference to this state. |
| 68 | * 3. Calls el3_exit() so that the EL3 system and general purpose registers |
| 69 | * from the tsp_ctx->cpu_ctx are used to enter the secure payload image. |
| 70 | ******************************************************************************/ |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 71 | uint64_t tspd_synchronous_sp_entry(tsp_context_t *tsp_ctx) |
Achin Gupta | 375f538 | 2014-02-18 18:12:48 +0000 | [diff] [blame] | 72 | { |
| 73 | uint64_t rc; |
| 74 | |
Juan Castillo | f558cac | 2014-06-05 09:45:36 +0100 | [diff] [blame] | 75 | assert(tsp_ctx != NULL); |
Achin Gupta | 375f538 | 2014-02-18 18:12:48 +0000 | [diff] [blame] | 76 | assert(tsp_ctx->c_rt_ctx == 0); |
| 77 | |
| 78 | /* Apply the Secure EL1 system register context and switch to it */ |
Andrew Thoelke | a2f6553 | 2014-05-14 17:09:32 +0100 | [diff] [blame] | 79 | assert(cm_get_context(SECURE) == &tsp_ctx->cpu_ctx); |
Achin Gupta | 375f538 | 2014-02-18 18:12:48 +0000 | [diff] [blame] | 80 | cm_el1_sysregs_context_restore(SECURE); |
| 81 | cm_set_next_eret_context(SECURE); |
| 82 | |
| 83 | rc = tspd_enter_sp(&tsp_ctx->c_rt_ctx); |
Antonio Nino Diaz | 0fbaa5c | 2017-10-19 16:55:48 +0100 | [diff] [blame] | 84 | #if ENABLE_ASSERTIONS |
Achin Gupta | 375f538 | 2014-02-18 18:12:48 +0000 | [diff] [blame] | 85 | tsp_ctx->c_rt_ctx = 0; |
| 86 | #endif |
| 87 | |
| 88 | return rc; |
| 89 | } |
| 90 | |
| 91 | |
| 92 | /******************************************************************************* |
| 93 | * This function takes an SP context pointer and: |
| 94 | * 1. Saves the S-EL1 system register context tp tsp_ctx->cpu_ctx. |
| 95 | * 2. Restores the current C runtime state (callee saved registers) from the |
| 96 | * stack frame using the reference to this state saved in tspd_enter_sp(). |
| 97 | * 3. It does not need to save any general purpose or EL3 system register state |
| 98 | * as the generic smc entry routine should have saved those. |
| 99 | ******************************************************************************/ |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 100 | void tspd_synchronous_sp_exit(tsp_context_t *tsp_ctx, uint64_t ret) |
Achin Gupta | 375f538 | 2014-02-18 18:12:48 +0000 | [diff] [blame] | 101 | { |
Juan Castillo | f558cac | 2014-06-05 09:45:36 +0100 | [diff] [blame] | 102 | assert(tsp_ctx != NULL); |
Achin Gupta | 375f538 | 2014-02-18 18:12:48 +0000 | [diff] [blame] | 103 | /* Save the Secure EL1 system register context */ |
Andrew Thoelke | a2f6553 | 2014-05-14 17:09:32 +0100 | [diff] [blame] | 104 | assert(cm_get_context(SECURE) == &tsp_ctx->cpu_ctx); |
Achin Gupta | 375f538 | 2014-02-18 18:12:48 +0000 | [diff] [blame] | 105 | cm_el1_sysregs_context_save(SECURE); |
| 106 | |
| 107 | assert(tsp_ctx->c_rt_ctx != 0); |
| 108 | tspd_exit_sp(tsp_ctx->c_rt_ctx, ret); |
| 109 | |
| 110 | /* Should never reach here */ |
| 111 | assert(0); |
| 112 | } |
Douglas Raillard | f212965 | 2016-11-24 15:43:19 +0000 | [diff] [blame] | 113 | |
| 114 | /******************************************************************************* |
| 115 | * This function takes an SP context pointer and abort any preempted SMC |
| 116 | * request. |
| 117 | * Return 1 if there was a preempted SMC request, 0 otherwise. |
| 118 | ******************************************************************************/ |
| 119 | int tspd_abort_preempted_smc(tsp_context_t *tsp_ctx) |
| 120 | { |
David Cunado | 28f69ab | 2017-04-05 11:34:03 +0100 | [diff] [blame] | 121 | if (!get_yield_smc_active_flag(tsp_ctx->state)) |
Douglas Raillard | f212965 | 2016-11-24 15:43:19 +0000 | [diff] [blame] | 122 | return 0; |
| 123 | |
| 124 | /* Abort any preempted SMC request */ |
David Cunado | 28f69ab | 2017-04-05 11:34:03 +0100 | [diff] [blame] | 125 | clr_yield_smc_active_flag(tsp_ctx->state); |
Douglas Raillard | f212965 | 2016-11-24 15:43:19 +0000 | [diff] [blame] | 126 | |
| 127 | /* |
| 128 | * Arrange for an entry into the test secure payload. It will |
| 129 | * be returned via TSP_ABORT_DONE case in tspd_smc_handler. |
| 130 | */ |
| 131 | cm_set_elr_el3(SECURE, |
David Cunado | 28f69ab | 2017-04-05 11:34:03 +0100 | [diff] [blame] | 132 | (uint64_t) &tsp_vectors->abort_yield_smc_entry); |
Douglas Raillard | f212965 | 2016-11-24 15:43:19 +0000 | [diff] [blame] | 133 | uint64_t rc = tspd_synchronous_sp_entry(tsp_ctx); |
| 134 | |
| 135 | if (rc != 0) |
| 136 | panic(); |
| 137 | |
| 138 | return 1; |
| 139 | } |
| 140 | |