Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 1 | /* |
Paul Beesley | 1fbc97b | 2019-01-11 18:26:51 +0000 | [diff] [blame] | 2 | * Copyright (c) 2016-2019, ARM Limited and Contributors. All rights reserved. |
Varun Wadekar | 88e51e4 | 2019-09-17 15:29:05 -0700 | [diff] [blame] | 3 | * Copyright (c) 2020, NVIDIA Corporation. All rights reserved. |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 4 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 5 | * SPDX-License-Identifier: BSD-3-Clause |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 6 | */ |
| 7 | |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 8 | #include <assert.h> |
Scott Branden | e5dcf98 | 2020-08-25 13:49:32 -0700 | [diff] [blame] | 9 | #include <inttypes.h> |
Ambroise Vincent | ffbf32a | 2019-03-28 09:01:18 +0000 | [diff] [blame] | 10 | #include <lib/xlat_tables/xlat_tables_v2.h> |
Arve Hjønnevåg | ddeb2e7 | 2018-02-28 17:15:06 -0800 | [diff] [blame] | 11 | #include <stdbool.h> |
Scott Branden | e5dcf98 | 2020-08-25 13:49:32 -0700 | [diff] [blame] | 12 | #include <stdint.h> |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 13 | #include <string.h> |
| 14 | |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 15 | #include <arch_helpers.h> |
| 16 | #include <bl31/bl31.h> |
| 17 | #include <bl31/interrupt_mgmt.h> |
| 18 | #include <common/bl_common.h> |
| 19 | #include <common/debug.h> |
| 20 | #include <common/runtime_svc.h> |
| 21 | #include <lib/el3_runtime/context_mgmt.h> |
Varun Wadekar | 88e51e4 | 2019-09-17 15:29:05 -0700 | [diff] [blame] | 22 | #include <lib/smccc.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 23 | #include <plat/common/platform.h> |
Varun Wadekar | 88e51e4 | 2019-09-17 15:29:05 -0700 | [diff] [blame] | 24 | #include <tools_share/uuid.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 25 | |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 26 | #include "sm_err.h" |
Isla Mitchell | 9930501 | 2017-07-11 14:54:08 +0100 | [diff] [blame] | 27 | #include "smcall.h" |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 28 | |
Varun Wadekar | 88e51e4 | 2019-09-17 15:29:05 -0700 | [diff] [blame] | 29 | /* Trusty UID: RFC-4122 compliant UUID version 4 */ |
| 30 | DEFINE_SVC_UUID2(trusty_uuid, |
| 31 | 0x40ee25f0, 0xa2bc, 0x304c, 0x8c, 0x4c, |
| 32 | 0xa1, 0x73, 0xc5, 0x7d, 0x8a, 0xf1); |
| 33 | |
Anthony Zhou | 700ebe5 | 2015-10-31 06:03:41 +0800 | [diff] [blame] | 34 | /* macro to check if Hypervisor is enabled in the HCR_EL2 register */ |
Anthony Zhou | 50b328a | 2017-09-19 16:36:22 +0800 | [diff] [blame] | 35 | #define HYP_ENABLE_FLAG 0x286001U |
| 36 | |
| 37 | /* length of Trusty's input parameters (in bytes) */ |
| 38 | #define TRUSTY_PARAMS_LEN_BYTES (4096U * 2) |
Anthony Zhou | 700ebe5 | 2015-10-31 06:03:41 +0800 | [diff] [blame] | 39 | |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 40 | struct trusty_stack { |
| 41 | uint8_t space[PLATFORM_STACK_SIZE] __aligned(16); |
Varun Wadekar | bd3c953 | 2017-02-16 18:14:37 -0800 | [diff] [blame] | 42 | uint32_t end; |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 43 | }; |
| 44 | |
| 45 | struct trusty_cpu_ctx { |
| 46 | cpu_context_t cpu_ctx; |
| 47 | void *saved_sp; |
| 48 | uint32_t saved_security_state; |
Anthony Zhou | 50b328a | 2017-09-19 16:36:22 +0800 | [diff] [blame] | 49 | int32_t fiq_handler_active; |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 50 | uint64_t fiq_handler_pc; |
| 51 | uint64_t fiq_handler_cpsr; |
| 52 | uint64_t fiq_handler_sp; |
| 53 | uint64_t fiq_pc; |
| 54 | uint64_t fiq_cpsr; |
| 55 | uint64_t fiq_sp_el1; |
| 56 | gp_regs_t fiq_gpregs; |
| 57 | struct trusty_stack secure_stack; |
| 58 | }; |
| 59 | |
Anthony Zhou | 50b328a | 2017-09-19 16:36:22 +0800 | [diff] [blame] | 60 | struct smc_args { |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 61 | uint64_t r0; |
| 62 | uint64_t r1; |
| 63 | uint64_t r2; |
| 64 | uint64_t r3; |
Anthony Zhou | 700ebe5 | 2015-10-31 06:03:41 +0800 | [diff] [blame] | 65 | uint64_t r4; |
| 66 | uint64_t r5; |
| 67 | uint64_t r6; |
| 68 | uint64_t r7; |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 69 | }; |
| 70 | |
Masahiro Yamada | 5621275 | 2018-04-19 01:14:42 +0900 | [diff] [blame] | 71 | static struct trusty_cpu_ctx trusty_cpu_ctx[PLATFORM_CORE_COUNT]; |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 72 | |
Anthony Zhou | 50b328a | 2017-09-19 16:36:22 +0800 | [diff] [blame] | 73 | struct smc_args trusty_init_context_stack(void **sp, void *new_stack); |
| 74 | struct smc_args trusty_context_switch_helper(void **sp, void *smc_params); |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 75 | |
Anthony Zhou | 4338482 | 2016-04-20 10:16:48 +0800 | [diff] [blame] | 76 | static uint32_t current_vmid; |
| 77 | |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 78 | static struct trusty_cpu_ctx *get_trusty_ctx(void) |
| 79 | { |
| 80 | return &trusty_cpu_ctx[plat_my_core_pos()]; |
| 81 | } |
| 82 | |
Anthony Zhou | 50b328a | 2017-09-19 16:36:22 +0800 | [diff] [blame] | 83 | static bool is_hypervisor_mode(void) |
Anthony Zhou | 700ebe5 | 2015-10-31 06:03:41 +0800 | [diff] [blame] | 84 | { |
| 85 | uint64_t hcr = read_hcr(); |
| 86 | |
Anthony Zhou | 50b328a | 2017-09-19 16:36:22 +0800 | [diff] [blame] | 87 | return ((hcr & HYP_ENABLE_FLAG) != 0U) ? true : false; |
Anthony Zhou | 700ebe5 | 2015-10-31 06:03:41 +0800 | [diff] [blame] | 88 | } |
| 89 | |
Anthony Zhou | 50b328a | 2017-09-19 16:36:22 +0800 | [diff] [blame] | 90 | static struct smc_args trusty_context_switch(uint32_t security_state, uint64_t r0, |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 91 | uint64_t r1, uint64_t r2, uint64_t r3) |
| 92 | { |
Anthony Zhou | 50b328a | 2017-09-19 16:36:22 +0800 | [diff] [blame] | 93 | struct smc_args args, ret_args; |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 94 | struct trusty_cpu_ctx *ctx = get_trusty_ctx(); |
Anthony Zhou | 700ebe5 | 2015-10-31 06:03:41 +0800 | [diff] [blame] | 95 | struct trusty_cpu_ctx *ctx_smc; |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 96 | |
| 97 | assert(ctx->saved_security_state != security_state); |
| 98 | |
Anthony Zhou | 50b328a | 2017-09-19 16:36:22 +0800 | [diff] [blame] | 99 | args.r7 = 0; |
Anthony Zhou | 700ebe5 | 2015-10-31 06:03:41 +0800 | [diff] [blame] | 100 | if (is_hypervisor_mode()) { |
| 101 | /* According to the ARM DEN0028A spec, VMID is stored in x7 */ |
| 102 | ctx_smc = cm_get_context(NON_SECURE); |
Anthony Zhou | 50b328a | 2017-09-19 16:36:22 +0800 | [diff] [blame] | 103 | assert(ctx_smc != NULL); |
| 104 | args.r7 = SMC_GET_GP(ctx_smc, CTX_GPREG_X7); |
Anthony Zhou | 700ebe5 | 2015-10-31 06:03:41 +0800 | [diff] [blame] | 105 | } |
| 106 | /* r4, r5, r6 reserved for future use. */ |
Anthony Zhou | 50b328a | 2017-09-19 16:36:22 +0800 | [diff] [blame] | 107 | args.r6 = 0; |
| 108 | args.r5 = 0; |
| 109 | args.r4 = 0; |
| 110 | args.r3 = r3; |
| 111 | args.r2 = r2; |
| 112 | args.r1 = r1; |
| 113 | args.r0 = r0; |
Anthony Zhou | 700ebe5 | 2015-10-31 06:03:41 +0800 | [diff] [blame] | 114 | |
Aijun Sun | 98f8090 | 2017-09-19 16:52:08 +0800 | [diff] [blame] | 115 | /* |
| 116 | * To avoid the additional overhead in PSCI flow, skip FP context |
Paul Beesley | 1fbc97b | 2019-01-11 18:26:51 +0000 | [diff] [blame] | 117 | * saving/restoring in case of CPU suspend and resume, assuming that |
Aijun Sun | 98f8090 | 2017-09-19 16:52:08 +0800 | [diff] [blame] | 118 | * when it's needed the PSCI caller has preserved FP context before |
| 119 | * going here. |
| 120 | */ |
Aijun Sun | 98f8090 | 2017-09-19 16:52:08 +0800 | [diff] [blame] | 121 | if (r0 != SMC_FC_CPU_SUSPEND && r0 != SMC_FC_CPU_RESUME) |
| 122 | fpregs_context_save(get_fpregs_ctx(cm_get_context(security_state))); |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 123 | cm_el1_sysregs_context_save(security_state); |
| 124 | |
| 125 | ctx->saved_security_state = security_state; |
Anthony Zhou | 50b328a | 2017-09-19 16:36:22 +0800 | [diff] [blame] | 126 | ret_args = trusty_context_switch_helper(&ctx->saved_sp, &args); |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 127 | |
Anthony Zhou | 50b328a | 2017-09-19 16:36:22 +0800 | [diff] [blame] | 128 | assert(ctx->saved_security_state == ((security_state == 0U) ? 1U : 0U)); |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 129 | |
| 130 | cm_el1_sysregs_context_restore(security_state); |
Aijun Sun | 98f8090 | 2017-09-19 16:52:08 +0800 | [diff] [blame] | 131 | if (r0 != SMC_FC_CPU_SUSPEND && r0 != SMC_FC_CPU_RESUME) |
| 132 | fpregs_context_restore(get_fpregs_ctx(cm_get_context(security_state))); |
Aijun Sun | 98f8090 | 2017-09-19 16:52:08 +0800 | [diff] [blame] | 133 | |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 134 | cm_set_next_eret_context(security_state); |
| 135 | |
Anthony Zhou | 50b328a | 2017-09-19 16:36:22 +0800 | [diff] [blame] | 136 | return ret_args; |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 137 | } |
| 138 | |
| 139 | static uint64_t trusty_fiq_handler(uint32_t id, |
| 140 | uint32_t flags, |
| 141 | void *handle, |
| 142 | void *cookie) |
| 143 | { |
Anthony Zhou | 50b328a | 2017-09-19 16:36:22 +0800 | [diff] [blame] | 144 | struct smc_args ret; |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 145 | struct trusty_cpu_ctx *ctx = get_trusty_ctx(); |
| 146 | |
| 147 | assert(!is_caller_secure(flags)); |
| 148 | |
| 149 | ret = trusty_context_switch(NON_SECURE, SMC_FC_FIQ_ENTER, 0, 0, 0); |
Anthony Zhou | 50b328a | 2017-09-19 16:36:22 +0800 | [diff] [blame] | 150 | if (ret.r0 != 0U) { |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 151 | SMC_RET0(handle); |
| 152 | } |
| 153 | |
Anthony Zhou | 50b328a | 2017-09-19 16:36:22 +0800 | [diff] [blame] | 154 | if (ctx->fiq_handler_active != 0) { |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 155 | INFO("%s: fiq handler already active\n", __func__); |
| 156 | SMC_RET0(handle); |
| 157 | } |
| 158 | |
| 159 | ctx->fiq_handler_active = 1; |
Anthony Zhou | 50b328a | 2017-09-19 16:36:22 +0800 | [diff] [blame] | 160 | (void)memcpy(&ctx->fiq_gpregs, get_gpregs_ctx(handle), sizeof(ctx->fiq_gpregs)); |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 161 | ctx->fiq_pc = SMC_GET_EL3(handle, CTX_ELR_EL3); |
| 162 | ctx->fiq_cpsr = SMC_GET_EL3(handle, CTX_SPSR_EL3); |
Max Shvetsov | c9e2c92 | 2020-02-17 16:15:47 +0000 | [diff] [blame] | 163 | ctx->fiq_sp_el1 = read_ctx_reg(get_el1_sysregs_ctx(handle), CTX_SP_EL1); |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 164 | |
Max Shvetsov | c9e2c92 | 2020-02-17 16:15:47 +0000 | [diff] [blame] | 165 | write_ctx_reg(get_el1_sysregs_ctx(handle), CTX_SP_EL1, ctx->fiq_handler_sp); |
Anthony Zhou | 50b328a | 2017-09-19 16:36:22 +0800 | [diff] [blame] | 166 | cm_set_elr_spsr_el3(NON_SECURE, ctx->fiq_handler_pc, (uint32_t)ctx->fiq_handler_cpsr); |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 167 | |
| 168 | SMC_RET0(handle); |
| 169 | } |
| 170 | |
| 171 | static uint64_t trusty_set_fiq_handler(void *handle, uint64_t cpu, |
| 172 | uint64_t handler, uint64_t stack) |
| 173 | { |
| 174 | struct trusty_cpu_ctx *ctx; |
| 175 | |
Anthony Zhou | 50b328a | 2017-09-19 16:36:22 +0800 | [diff] [blame] | 176 | if (cpu >= (uint64_t)PLATFORM_CORE_COUNT) { |
Scott Branden | e5dcf98 | 2020-08-25 13:49:32 -0700 | [diff] [blame] | 177 | ERROR("%s: cpu %" PRId64 " >= %d\n", __func__, cpu, PLATFORM_CORE_COUNT); |
Anthony Zhou | 50b328a | 2017-09-19 16:36:22 +0800 | [diff] [blame] | 178 | return (uint64_t)SM_ERR_INVALID_PARAMETERS; |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 179 | } |
| 180 | |
| 181 | ctx = &trusty_cpu_ctx[cpu]; |
| 182 | ctx->fiq_handler_pc = handler; |
| 183 | ctx->fiq_handler_cpsr = SMC_GET_EL3(handle, CTX_SPSR_EL3); |
| 184 | ctx->fiq_handler_sp = stack; |
| 185 | |
| 186 | SMC_RET1(handle, 0); |
| 187 | } |
| 188 | |
| 189 | static uint64_t trusty_get_fiq_regs(void *handle) |
| 190 | { |
| 191 | struct trusty_cpu_ctx *ctx = get_trusty_ctx(); |
| 192 | uint64_t sp_el0 = read_ctx_reg(&ctx->fiq_gpregs, CTX_GPREG_SP_EL0); |
| 193 | |
| 194 | SMC_RET4(handle, ctx->fiq_pc, ctx->fiq_cpsr, sp_el0, ctx->fiq_sp_el1); |
| 195 | } |
| 196 | |
| 197 | static uint64_t trusty_fiq_exit(void *handle, uint64_t x1, uint64_t x2, uint64_t x3) |
| 198 | { |
Anthony Zhou | 50b328a | 2017-09-19 16:36:22 +0800 | [diff] [blame] | 199 | struct smc_args ret; |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 200 | struct trusty_cpu_ctx *ctx = get_trusty_ctx(); |
| 201 | |
Anthony Zhou | 50b328a | 2017-09-19 16:36:22 +0800 | [diff] [blame] | 202 | if (ctx->fiq_handler_active == 0) { |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 203 | NOTICE("%s: fiq handler not active\n", __func__); |
Anthony Zhou | 50b328a | 2017-09-19 16:36:22 +0800 | [diff] [blame] | 204 | SMC_RET1(handle, (uint64_t)SM_ERR_INVALID_PARAMETERS); |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 205 | } |
| 206 | |
| 207 | ret = trusty_context_switch(NON_SECURE, SMC_FC_FIQ_EXIT, 0, 0, 0); |
Anthony Zhou | 50b328a | 2017-09-19 16:36:22 +0800 | [diff] [blame] | 208 | if (ret.r0 != 1U) { |
Scott Branden | e5dcf98 | 2020-08-25 13:49:32 -0700 | [diff] [blame] | 209 | INFO("%s(%p) SMC_FC_FIQ_EXIT returned unexpected value, %" PRId64 "\n", |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 210 | __func__, handle, ret.r0); |
| 211 | } |
| 212 | |
| 213 | /* |
| 214 | * Restore register state to state recorded on fiq entry. |
| 215 | * |
| 216 | * x0, sp_el1, pc and cpsr need to be restored because el1 cannot |
| 217 | * restore them. |
| 218 | * |
| 219 | * x1-x4 and x8-x17 need to be restored here because smc_handler64 |
| 220 | * corrupts them (el1 code also restored them). |
| 221 | */ |
Anthony Zhou | 50b328a | 2017-09-19 16:36:22 +0800 | [diff] [blame] | 222 | (void)memcpy(get_gpregs_ctx(handle), &ctx->fiq_gpregs, sizeof(ctx->fiq_gpregs)); |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 223 | ctx->fiq_handler_active = 0; |
Max Shvetsov | c9e2c92 | 2020-02-17 16:15:47 +0000 | [diff] [blame] | 224 | write_ctx_reg(get_el1_sysregs_ctx(handle), CTX_SP_EL1, ctx->fiq_sp_el1); |
Anthony Zhou | 50b328a | 2017-09-19 16:36:22 +0800 | [diff] [blame] | 225 | cm_set_elr_spsr_el3(NON_SECURE, ctx->fiq_pc, (uint32_t)ctx->fiq_cpsr); |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 226 | |
| 227 | SMC_RET0(handle); |
| 228 | } |
| 229 | |
Masahiro Yamada | 5ac9d96 | 2018-04-19 01:18:48 +0900 | [diff] [blame] | 230 | static uintptr_t trusty_smc_handler(uint32_t smc_fid, |
| 231 | u_register_t x1, |
| 232 | u_register_t x2, |
| 233 | u_register_t x3, |
| 234 | u_register_t x4, |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 235 | void *cookie, |
| 236 | void *handle, |
Masahiro Yamada | 5ac9d96 | 2018-04-19 01:18:48 +0900 | [diff] [blame] | 237 | u_register_t flags) |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 238 | { |
Anthony Zhou | 50b328a | 2017-09-19 16:36:22 +0800 | [diff] [blame] | 239 | struct smc_args ret; |
| 240 | uint32_t vmid = 0U; |
Varun Wadekar | 528a792 | 2016-09-29 16:08:16 -0700 | [diff] [blame] | 241 | entry_point_info_t *ep_info = bl31_plat_get_next_image_ep_info(SECURE); |
| 242 | |
| 243 | /* |
| 244 | * Return success for SET_ROT_PARAMS if Trusty is not present, as |
| 245 | * Verified Boot is not even supported and returning success here |
| 246 | * would not compromise the boot process. |
| 247 | */ |
Anthony Zhou | 50b328a | 2017-09-19 16:36:22 +0800 | [diff] [blame] | 248 | if ((ep_info == NULL) && (smc_fid == SMC_YC_SET_ROT_PARAMS)) { |
Varun Wadekar | 528a792 | 2016-09-29 16:08:16 -0700 | [diff] [blame] | 249 | SMC_RET1(handle, 0); |
Anthony Zhou | 50b328a | 2017-09-19 16:36:22 +0800 | [diff] [blame] | 250 | } else if (ep_info == NULL) { |
Varun Wadekar | 528a792 | 2016-09-29 16:08:16 -0700 | [diff] [blame] | 251 | SMC_RET1(handle, SMC_UNK); |
Anthony Zhou | 50b328a | 2017-09-19 16:36:22 +0800 | [diff] [blame] | 252 | } else { |
| 253 | ; /* do nothing */ |
Varun Wadekar | 528a792 | 2016-09-29 16:08:16 -0700 | [diff] [blame] | 254 | } |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 255 | |
| 256 | if (is_caller_secure(flags)) { |
David Cunado | c8833ea | 2017-04-16 17:15:08 +0100 | [diff] [blame] | 257 | if (smc_fid == SMC_YC_NS_RETURN) { |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 258 | ret = trusty_context_switch(SECURE, x1, 0, 0, 0); |
Anthony Zhou | 700ebe5 | 2015-10-31 06:03:41 +0800 | [diff] [blame] | 259 | SMC_RET8(handle, ret.r0, ret.r1, ret.r2, ret.r3, |
| 260 | ret.r4, ret.r5, ret.r6, ret.r7); |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 261 | } |
| 262 | INFO("%s (0x%x, 0x%lx, 0x%lx, 0x%lx, 0x%lx, %p, %p, 0x%lx) \ |
| 263 | cpu %d, unknown smc\n", |
| 264 | __func__, smc_fid, x1, x2, x3, x4, cookie, handle, flags, |
| 265 | plat_my_core_pos()); |
| 266 | SMC_RET1(handle, SMC_UNK); |
| 267 | } else { |
| 268 | switch (smc_fid) { |
Varun Wadekar | 88e51e4 | 2019-09-17 15:29:05 -0700 | [diff] [blame] | 269 | case SMC_FC64_GET_UUID: |
| 270 | case SMC_FC_GET_UUID: |
| 271 | /* provide the UUID for the service to the client */ |
| 272 | SMC_UUID_RET(handle, trusty_uuid); |
| 273 | break; |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 274 | case SMC_FC64_SET_FIQ_HANDLER: |
| 275 | return trusty_set_fiq_handler(handle, x1, x2, x3); |
| 276 | case SMC_FC64_GET_FIQ_REGS: |
| 277 | return trusty_get_fiq_regs(handle); |
| 278 | case SMC_FC_FIQ_EXIT: |
| 279 | return trusty_fiq_exit(handle, x1, x2, x3); |
| 280 | default: |
Varun Wadekar | 88e51e4 | 2019-09-17 15:29:05 -0700 | [diff] [blame] | 281 | /* Not all OENs greater than SMC_ENTITY_SECURE_MONITOR are supported */ |
| 282 | if (SMC_ENTITY(smc_fid) > SMC_ENTITY_SECURE_MONITOR) { |
| 283 | VERBOSE("%s: unsupported SMC FID (0x%x)\n", __func__, smc_fid); |
| 284 | SMC_RET1(handle, SMC_UNK); |
| 285 | } |
| 286 | |
Anthony Zhou | 4338482 | 2016-04-20 10:16:48 +0800 | [diff] [blame] | 287 | if (is_hypervisor_mode()) |
| 288 | vmid = SMC_GET_GP(handle, CTX_GPREG_X7); |
| 289 | |
| 290 | if ((current_vmid != 0) && (current_vmid != vmid)) { |
| 291 | /* This message will cause SMC mechanism |
| 292 | * abnormal in multi-guest environment. |
| 293 | * Change it to WARN in case you need it. |
| 294 | */ |
| 295 | VERBOSE("Previous SMC not finished.\n"); |
| 296 | SMC_RET1(handle, SM_ERR_BUSY); |
| 297 | } |
| 298 | current_vmid = vmid; |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 299 | ret = trusty_context_switch(NON_SECURE, smc_fid, x1, |
| 300 | x2, x3); |
Anthony Zhou | 4338482 | 2016-04-20 10:16:48 +0800 | [diff] [blame] | 301 | current_vmid = 0; |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 302 | SMC_RET1(handle, ret.r0); |
| 303 | } |
| 304 | } |
| 305 | } |
| 306 | |
| 307 | static int32_t trusty_init(void) |
| 308 | { |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 309 | entry_point_info_t *ep_info; |
Anthony Zhou | 50b328a | 2017-09-19 16:36:22 +0800 | [diff] [blame] | 310 | struct smc_args zero_args = {0}; |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 311 | struct trusty_cpu_ctx *ctx = get_trusty_ctx(); |
| 312 | uint32_t cpu = plat_my_core_pos(); |
Anthony Zhou | 50b328a | 2017-09-19 16:36:22 +0800 | [diff] [blame] | 313 | uint64_t reg_width = GET_RW(read_ctx_reg(get_el3state_ctx(&ctx->cpu_ctx), |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 314 | CTX_SPSR_EL3)); |
| 315 | |
Sandrine Bailleux | f822090 | 2016-11-30 11:24:01 +0000 | [diff] [blame] | 316 | /* |
| 317 | * Get information about the Trusty image. Its absence is a critical |
| 318 | * failure. |
| 319 | */ |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 320 | ep_info = bl31_plat_get_next_image_ep_info(SECURE); |
Anthony Zhou | 50b328a | 2017-09-19 16:36:22 +0800 | [diff] [blame] | 321 | assert(ep_info != NULL); |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 322 | |
Arve Hjønnevåg | cef22ea | 2015-08-04 16:19:27 -0700 | [diff] [blame] | 323 | fpregs_context_save(get_fpregs_ctx(cm_get_context(NON_SECURE))); |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 324 | cm_el1_sysregs_context_save(NON_SECURE); |
| 325 | |
| 326 | cm_set_context(&ctx->cpu_ctx, SECURE); |
| 327 | cm_init_my_context(ep_info); |
| 328 | |
| 329 | /* |
| 330 | * Adjust secondary cpu entry point for 32 bit images to the |
Paul Beesley | 1fbc97b | 2019-01-11 18:26:51 +0000 | [diff] [blame] | 331 | * end of exception vectors |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 332 | */ |
Anthony Zhou | 50b328a | 2017-09-19 16:36:22 +0800 | [diff] [blame] | 333 | if ((cpu != 0U) && (reg_width == MODE_RW_32)) { |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 334 | INFO("trusty: cpu %d, adjust entry point to 0x%lx\n", |
| 335 | cpu, ep_info->pc + (1U << 5)); |
| 336 | cm_set_elr_el3(SECURE, ep_info->pc + (1U << 5)); |
| 337 | } |
| 338 | |
| 339 | cm_el1_sysregs_context_restore(SECURE); |
Arve Hjønnevåg | cef22ea | 2015-08-04 16:19:27 -0700 | [diff] [blame] | 340 | fpregs_context_restore(get_fpregs_ctx(cm_get_context(SECURE))); |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 341 | cm_set_next_eret_context(SECURE); |
| 342 | |
Anthony Zhou | 50b328a | 2017-09-19 16:36:22 +0800 | [diff] [blame] | 343 | ctx->saved_security_state = ~0U; /* initial saved state is invalid */ |
| 344 | (void)trusty_init_context_stack(&ctx->saved_sp, &ctx->secure_stack.end); |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 345 | |
Anthony Zhou | 50b328a | 2017-09-19 16:36:22 +0800 | [diff] [blame] | 346 | (void)trusty_context_switch_helper(&ctx->saved_sp, &zero_args); |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 347 | |
| 348 | cm_el1_sysregs_context_restore(NON_SECURE); |
Arve Hjønnevåg | cef22ea | 2015-08-04 16:19:27 -0700 | [diff] [blame] | 349 | fpregs_context_restore(get_fpregs_ctx(cm_get_context(NON_SECURE))); |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 350 | cm_set_next_eret_context(NON_SECURE); |
| 351 | |
Antonio Nino Diaz | 41bd97e | 2018-09-18 13:13:24 +0100 | [diff] [blame] | 352 | return 1; |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 353 | } |
| 354 | |
Arve Hjønnevåg | 3420e1a | 2017-11-27 11:05:46 -0800 | [diff] [blame] | 355 | static void trusty_cpu_suspend(uint32_t off) |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 356 | { |
Anthony Zhou | 50b328a | 2017-09-19 16:36:22 +0800 | [diff] [blame] | 357 | struct smc_args ret; |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 358 | |
Arve Hjønnevåg | 3420e1a | 2017-11-27 11:05:46 -0800 | [diff] [blame] | 359 | ret = trusty_context_switch(NON_SECURE, SMC_FC_CPU_SUSPEND, off, 0, 0); |
Anthony Zhou | 50b328a | 2017-09-19 16:36:22 +0800 | [diff] [blame] | 360 | if (ret.r0 != 0U) { |
Scott Branden | e5dcf98 | 2020-08-25 13:49:32 -0700 | [diff] [blame] | 361 | INFO("%s: cpu %d, SMC_FC_CPU_SUSPEND returned unexpected value, %" PRId64 "\n", |
Sandrine Bailleux | 5f665c8 | 2016-11-23 09:50:53 +0000 | [diff] [blame] | 362 | __func__, plat_my_core_pos(), ret.r0); |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 363 | } |
| 364 | } |
| 365 | |
Arve Hjønnevåg | 3420e1a | 2017-11-27 11:05:46 -0800 | [diff] [blame] | 366 | static void trusty_cpu_resume(uint32_t on) |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 367 | { |
Anthony Zhou | 50b328a | 2017-09-19 16:36:22 +0800 | [diff] [blame] | 368 | struct smc_args ret; |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 369 | |
Arve Hjønnevåg | 3420e1a | 2017-11-27 11:05:46 -0800 | [diff] [blame] | 370 | ret = trusty_context_switch(NON_SECURE, SMC_FC_CPU_RESUME, on, 0, 0); |
Anthony Zhou | 50b328a | 2017-09-19 16:36:22 +0800 | [diff] [blame] | 371 | if (ret.r0 != 0U) { |
Scott Branden | e5dcf98 | 2020-08-25 13:49:32 -0700 | [diff] [blame] | 372 | INFO("%s: cpu %d, SMC_FC_CPU_RESUME returned unexpected value, %" PRId64 "\n", |
Sandrine Bailleux | 5f665c8 | 2016-11-23 09:50:53 +0000 | [diff] [blame] | 373 | __func__, plat_my_core_pos(), ret.r0); |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 374 | } |
| 375 | } |
| 376 | |
Stephen Wolfe | ea50cd7 | 2018-03-29 12:32:08 -0700 | [diff] [blame] | 377 | static int32_t trusty_cpu_off_handler(u_register_t max_off_lvl) |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 378 | { |
Stephen Wolfe | ea50cd7 | 2018-03-29 12:32:08 -0700 | [diff] [blame] | 379 | trusty_cpu_suspend(max_off_lvl); |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 380 | |
| 381 | return 0; |
| 382 | } |
| 383 | |
Stephen Wolfe | ea50cd7 | 2018-03-29 12:32:08 -0700 | [diff] [blame] | 384 | static void trusty_cpu_on_finish_handler(u_register_t max_off_lvl) |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 385 | { |
| 386 | struct trusty_cpu_ctx *ctx = get_trusty_ctx(); |
| 387 | |
Anthony Zhou | 50b328a | 2017-09-19 16:36:22 +0800 | [diff] [blame] | 388 | if (ctx->saved_sp == NULL) { |
| 389 | (void)trusty_init(); |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 390 | } else { |
Stephen Wolfe | ea50cd7 | 2018-03-29 12:32:08 -0700 | [diff] [blame] | 391 | trusty_cpu_resume(max_off_lvl); |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 392 | } |
| 393 | } |
| 394 | |
Stephen Wolfe | ea50cd7 | 2018-03-29 12:32:08 -0700 | [diff] [blame] | 395 | static void trusty_cpu_suspend_handler(u_register_t max_off_lvl) |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 396 | { |
Stephen Wolfe | ea50cd7 | 2018-03-29 12:32:08 -0700 | [diff] [blame] | 397 | trusty_cpu_suspend(max_off_lvl); |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 398 | } |
| 399 | |
Stephen Wolfe | ea50cd7 | 2018-03-29 12:32:08 -0700 | [diff] [blame] | 400 | static void trusty_cpu_suspend_finish_handler(u_register_t max_off_lvl) |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 401 | { |
Stephen Wolfe | ea50cd7 | 2018-03-29 12:32:08 -0700 | [diff] [blame] | 402 | trusty_cpu_resume(max_off_lvl); |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 403 | } |
| 404 | |
| 405 | static const spd_pm_ops_t trusty_pm = { |
| 406 | .svc_off = trusty_cpu_off_handler, |
| 407 | .svc_suspend = trusty_cpu_suspend_handler, |
| 408 | .svc_on_finish = trusty_cpu_on_finish_handler, |
| 409 | .svc_suspend_finish = trusty_cpu_suspend_finish_handler, |
| 410 | }; |
| 411 | |
Arve Hjønnevåg | afb6f74 | 2017-11-28 14:05:30 -0800 | [diff] [blame] | 412 | void plat_trusty_set_boot_args(aapcs64_params_t *args); |
| 413 | |
Arve Hjønnevåg | 41ba13f | 2018-04-11 16:10:53 -0700 | [diff] [blame] | 414 | #if !defined(TSP_SEC_MEM_SIZE) && defined(BL32_MEM_SIZE) |
| 415 | #define TSP_SEC_MEM_SIZE BL32_MEM_SIZE |
| 416 | #endif |
| 417 | |
Arve Hjønnevåg | afb6f74 | 2017-11-28 14:05:30 -0800 | [diff] [blame] | 418 | #ifdef TSP_SEC_MEM_SIZE |
| 419 | #pragma weak plat_trusty_set_boot_args |
| 420 | void plat_trusty_set_boot_args(aapcs64_params_t *args) |
| 421 | { |
| 422 | args->arg0 = TSP_SEC_MEM_SIZE; |
| 423 | } |
| 424 | #endif |
| 425 | |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 426 | static int32_t trusty_setup(void) |
| 427 | { |
| 428 | entry_point_info_t *ep_info; |
Arve Hjønnevåg | afb6f74 | 2017-11-28 14:05:30 -0800 | [diff] [blame] | 429 | uint32_t instr; |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 430 | uint32_t flags; |
Anthony Zhou | 50b328a | 2017-09-19 16:36:22 +0800 | [diff] [blame] | 431 | int32_t ret; |
Arve Hjønnevåg | ddeb2e7 | 2018-02-28 17:15:06 -0800 | [diff] [blame] | 432 | bool aarch32 = false; |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 433 | |
Varun Wadekar | ba33a28 | 2017-02-23 10:34:06 -0800 | [diff] [blame] | 434 | /* Get trusty's entry point info */ |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 435 | ep_info = bl31_plat_get_next_image_ep_info(SECURE); |
Anthony Zhou | 50b328a | 2017-09-19 16:36:22 +0800 | [diff] [blame] | 436 | if (ep_info == NULL) { |
Varun Wadekar | bebb0d7 | 2018-10-16 15:39:55 -0700 | [diff] [blame] | 437 | VERBOSE("Trusty image missing.\n"); |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 438 | return -1; |
| 439 | } |
| 440 | |
Varun Wadekar | be57abb | 2019-01-03 10:44:22 -0800 | [diff] [blame] | 441 | /* memmap first page of trusty's code memory before peeking */ |
| 442 | ret = mmap_add_dynamic_region(ep_info->pc, /* PA */ |
| 443 | ep_info->pc, /* VA */ |
| 444 | PAGE_SIZE, /* size */ |
| 445 | MT_SECURE | MT_RW_DATA); /* attrs */ |
| 446 | assert(ret == 0); |
| 447 | |
| 448 | /* peek into trusty's code to see if we have a 32-bit or 64-bit image */ |
Arve Hjønnevåg | afb6f74 | 2017-11-28 14:05:30 -0800 | [diff] [blame] | 449 | instr = *(uint32_t *)ep_info->pc; |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 450 | |
Arve Hjønnevåg | ee8c303 | 2018-02-28 17:18:55 -0800 | [diff] [blame] | 451 | if (instr >> 24 == 0xeaU) { |
Arve Hjønnevåg | afb6f74 | 2017-11-28 14:05:30 -0800 | [diff] [blame] | 452 | INFO("trusty: Found 32 bit image\n"); |
Arve Hjønnevåg | ddeb2e7 | 2018-02-28 17:15:06 -0800 | [diff] [blame] | 453 | aarch32 = true; |
Arve Hjønnevåg | 9d31cac | 2018-03-02 10:10:00 -0800 | [diff] [blame] | 454 | } else if (instr >> 8 == 0xd53810U || instr >> 16 == 0x9400U) { |
Arve Hjønnevåg | afb6f74 | 2017-11-28 14:05:30 -0800 | [diff] [blame] | 455 | INFO("trusty: Found 64 bit image\n"); |
| 456 | } else { |
David Lin | 72f6fed | 2019-01-24 14:15:57 -0800 | [diff] [blame] | 457 | ERROR("trusty: Found unknown image, 0x%x\n", instr); |
| 458 | return -1; |
Arve Hjønnevåg | afb6f74 | 2017-11-28 14:05:30 -0800 | [diff] [blame] | 459 | } |
| 460 | |
Varun Wadekar | be57abb | 2019-01-03 10:44:22 -0800 | [diff] [blame] | 461 | /* unmap trusty's memory page */ |
| 462 | (void)mmap_remove_dynamic_region(ep_info->pc, PAGE_SIZE); |
| 463 | |
Arve Hjønnevåg | afb6f74 | 2017-11-28 14:05:30 -0800 | [diff] [blame] | 464 | SET_PARAM_HEAD(ep_info, PARAM_EP, VERSION_1, SECURE | EP_ST_ENABLE); |
| 465 | if (!aarch32) |
| 466 | ep_info->spsr = SPSR_64(MODE_EL1, MODE_SP_ELX, |
| 467 | DISABLE_ALL_EXCEPTIONS); |
| 468 | else |
| 469 | ep_info->spsr = SPSR_MODE32(MODE32_svc, SPSR_T_ARM, |
| 470 | SPSR_E_LITTLE, |
| 471 | DAIF_FIQ_BIT | |
| 472 | DAIF_IRQ_BIT | |
| 473 | DAIF_ABT_BIT); |
Arve Hjønnevåg | d1771c6 | 2018-03-01 11:38:18 -0800 | [diff] [blame] | 474 | (void)memset(&ep_info->args, 0, sizeof(ep_info->args)); |
Arve Hjønnevåg | afb6f74 | 2017-11-28 14:05:30 -0800 | [diff] [blame] | 475 | plat_trusty_set_boot_args(&ep_info->args); |
Wayne Lin | cd712fd | 2016-05-24 15:28:42 -0700 | [diff] [blame] | 476 | |
Varun Wadekar | ba33a28 | 2017-02-23 10:34:06 -0800 | [diff] [blame] | 477 | /* register init handler */ |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 478 | bl31_register_bl32_init(trusty_init); |
| 479 | |
Varun Wadekar | ba33a28 | 2017-02-23 10:34:06 -0800 | [diff] [blame] | 480 | /* register power management hooks */ |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 481 | psci_register_spd_pm_hook(&trusty_pm); |
| 482 | |
Varun Wadekar | ba33a28 | 2017-02-23 10:34:06 -0800 | [diff] [blame] | 483 | /* register interrupt handler */ |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 484 | flags = 0; |
| 485 | set_interrupt_rm_flag(flags, NON_SECURE); |
| 486 | ret = register_interrupt_type_handler(INTR_TYPE_S_EL1, |
| 487 | trusty_fiq_handler, |
| 488 | flags); |
Anthony Zhou | 50b328a | 2017-09-19 16:36:22 +0800 | [diff] [blame] | 489 | if (ret != 0) { |
Varun Wadekar | bebb0d7 | 2018-10-16 15:39:55 -0700 | [diff] [blame] | 490 | VERBOSE("trusty: failed to register fiq handler, ret = %d\n", ret); |
Anthony Zhou | 50b328a | 2017-09-19 16:36:22 +0800 | [diff] [blame] | 491 | } |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 492 | |
Arve Hjønnevåg | 19ad775 | 2017-09-28 14:59:10 -0700 | [diff] [blame] | 493 | if (aarch32) { |
| 494 | entry_point_info_t *ns_ep_info; |
| 495 | uint32_t spsr; |
| 496 | |
| 497 | ns_ep_info = bl31_plat_get_next_image_ep_info(NON_SECURE); |
Sandrine Bailleux | 4cfec80 | 2018-03-19 10:41:06 +0100 | [diff] [blame] | 498 | if (ns_ep_info == NULL) { |
Arve Hjønnevåg | 19ad775 | 2017-09-28 14:59:10 -0700 | [diff] [blame] | 499 | NOTICE("Trusty: non-secure image missing.\n"); |
| 500 | return -1; |
| 501 | } |
| 502 | spsr = ns_ep_info->spsr; |
| 503 | if (GET_RW(spsr) == MODE_RW_64 && GET_EL(spsr) == MODE_EL2) { |
| 504 | spsr &= ~(MODE_EL_MASK << MODE_EL_SHIFT); |
| 505 | spsr |= MODE_EL1 << MODE_EL_SHIFT; |
| 506 | } |
| 507 | if (GET_RW(spsr) == MODE_RW_32 && GET_M32(spsr) == MODE32_hyp) { |
| 508 | spsr &= ~(MODE32_MASK << MODE32_SHIFT); |
| 509 | spsr |= MODE32_svc << MODE32_SHIFT; |
| 510 | } |
| 511 | if (spsr != ns_ep_info->spsr) { |
| 512 | NOTICE("Trusty: Switch bl33 from EL2 to EL1 (spsr 0x%x -> 0x%x)\n", |
| 513 | ns_ep_info->spsr, spsr); |
| 514 | ns_ep_info->spsr = spsr; |
| 515 | } |
| 516 | } |
| 517 | |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 518 | return 0; |
| 519 | } |
| 520 | |
| 521 | /* Define a SPD runtime service descriptor for fast SMC calls */ |
| 522 | DECLARE_RT_SVC( |
| 523 | trusty_fast, |
| 524 | |
| 525 | OEN_TOS_START, |
Varun Wadekar | 88e51e4 | 2019-09-17 15:29:05 -0700 | [diff] [blame] | 526 | OEN_TOS_END, |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 527 | SMC_TYPE_FAST, |
| 528 | trusty_setup, |
| 529 | trusty_smc_handler |
| 530 | ); |
| 531 | |
David Cunado | c8833ea | 2017-04-16 17:15:08 +0100 | [diff] [blame] | 532 | /* Define a SPD runtime service descriptor for yielding SMC calls */ |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 533 | DECLARE_RT_SVC( |
| 534 | trusty_std, |
| 535 | |
Amith | 43e89d3 | 2015-08-19 20:13:12 -0700 | [diff] [blame] | 536 | OEN_TAP_START, |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 537 | SMC_ENTITY_SECURE_MONITOR, |
David Cunado | c8833ea | 2017-04-16 17:15:08 +0100 | [diff] [blame] | 538 | SMC_TYPE_YIELD, |
Varun Wadekar | c1d2a28 | 2016-11-08 15:46:48 -0800 | [diff] [blame] | 539 | NULL, |
| 540 | trusty_smc_handler |
| 541 | ); |