Varun Wadekar | 3d4e6a5 | 2015-03-13 14:01:03 +0530 | [diff] [blame] | 1 | /* |
Paul Beesley | 1fbc97b | 2019-01-11 18:26:51 +0000 | [diff] [blame] | 2 | * Copyright (c) 2015-2019, ARM Limited and Contributors. All rights reserved. |
Varun Wadekar | 3d4e6a5 | 2015-03-13 14:01:03 +0530 | [diff] [blame] | 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Varun Wadekar | 3d4e6a5 | 2015-03-13 14:01:03 +0530 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | /******************************************************************************* |
| 8 | * This is the Secure Payload Dispatcher (SPD). The dispatcher is meant to be a |
| 9 | * plug-in component to the Secure Monitor, registered as a runtime service. The |
| 10 | * SPD is expected to be a functional extension of the Secure Payload (SP) that |
| 11 | * executes in Secure EL1. The Secure Monitor will delegate all SMCs targeting |
| 12 | * the Trusted OS/Applications range to the dispatcher. The SPD will either |
| 13 | * handle the request locally or delegate it to the Secure Payload. It is also |
| 14 | * responsible for initialising and maintaining communication with the SP. |
| 15 | ******************************************************************************/ |
Varun Wadekar | 3d4e6a5 | 2015-03-13 14:01:03 +0530 | [diff] [blame] | 16 | #include <assert.h> |
Varun Wadekar | 3d4e6a5 | 2015-03-13 14:01:03 +0530 | [diff] [blame] | 17 | #include <errno.h> |
Varun Wadekar | 3d4e6a5 | 2015-03-13 14:01:03 +0530 | [diff] [blame] | 18 | #include <stddef.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 19 | |
Antonio Nino Diaz | 31a157f | 2019-02-11 11:57:57 +0000 | [diff] [blame] | 20 | #include <arch_helpers.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 21 | #include <bl31/bl31.h> |
Antonio Nino Diaz | 31a157f | 2019-02-11 11:57:57 +0000 | [diff] [blame] | 22 | #include <bl32/payloads/tlk.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 23 | #include <common/bl_common.h> |
| 24 | #include <common/debug.h> |
| 25 | #include <common/runtime_svc.h> |
| 26 | #include <lib/el3_runtime/context_mgmt.h> |
| 27 | #include <plat/common/platform.h> |
| 28 | #include <tools_share/uuid.h> |
| 29 | |
Varun Wadekar | 3d4e6a5 | 2015-03-13 14:01:03 +0530 | [diff] [blame] | 30 | #include "tlkd_private.h" |
| 31 | |
| 32 | extern const spd_pm_ops_t tlkd_pm_ops; |
| 33 | |
| 34 | /******************************************************************************* |
Varun Wadekar | a70dec3 | 2015-08-26 12:49:03 +0530 | [diff] [blame] | 35 | * Per-cpu Secure Payload state |
Varun Wadekar | 3d4e6a5 | 2015-03-13 14:01:03 +0530 | [diff] [blame] | 36 | ******************************************************************************/ |
Varun Wadekar | a70dec3 | 2015-08-26 12:49:03 +0530 | [diff] [blame] | 37 | tlk_context_t tlk_ctx; |
Varun Wadekar | 3d4e6a5 | 2015-03-13 14:01:03 +0530 | [diff] [blame] | 38 | |
Varun Wadekar | 0bbe8a6 | 2016-06-07 21:21:59 -0700 | [diff] [blame] | 39 | /******************************************************************************* |
| 40 | * CPU number on which TLK booted up |
| 41 | ******************************************************************************/ |
Varun Wadekar | 66231d1 | 2017-06-07 09:57:42 -0700 | [diff] [blame] | 42 | static uint32_t boot_cpu; |
Varun Wadekar | 0bbe8a6 | 2016-06-07 21:21:59 -0700 | [diff] [blame] | 43 | |
Varun Wadekar | 3d4e6a5 | 2015-03-13 14:01:03 +0530 | [diff] [blame] | 44 | /* TLK UID: RFC-4122 compliant UUID (version-5, sha-1) */ |
Roberto Vargas | eace8f1 | 2018-04-26 13:36:53 +0100 | [diff] [blame] | 45 | DEFINE_SVC_UUID2(tlk_uuid, |
| 46 | 0xc9e911bd, 0xba2b, 0xee52, 0xb1, 0x72, |
| 47 | 0x46, 0x1f, 0xba, 0x97, 0x7f, 0x63); |
Varun Wadekar | 3d4e6a5 | 2015-03-13 14:01:03 +0530 | [diff] [blame] | 48 | |
Masahiro Yamada | 5621275 | 2018-04-19 01:14:42 +0900 | [diff] [blame] | 49 | static int32_t tlkd_init(void); |
Varun Wadekar | 3d4e6a5 | 2015-03-13 14:01:03 +0530 | [diff] [blame] | 50 | |
Varun Wadekar | 3d4e6a5 | 2015-03-13 14:01:03 +0530 | [diff] [blame] | 51 | /******************************************************************************* |
| 52 | * Secure Payload Dispatcher setup. The SPD finds out the SP entrypoint and type |
| 53 | * (aarch32/aarch64) if not already known and initialises the context for entry |
| 54 | * into the SP for its initialisation. |
| 55 | ******************************************************************************/ |
Masahiro Yamada | 5621275 | 2018-04-19 01:14:42 +0900 | [diff] [blame] | 56 | static int32_t tlkd_setup(void) |
Varun Wadekar | 3d4e6a5 | 2015-03-13 14:01:03 +0530 | [diff] [blame] | 57 | { |
| 58 | entry_point_info_t *tlk_ep_info; |
| 59 | |
| 60 | /* |
| 61 | * Get information about the Secure Payload (BL32) image. Its |
| 62 | * absence is a critical failure. |
| 63 | */ |
| 64 | tlk_ep_info = bl31_plat_get_next_image_ep_info(SECURE); |
| 65 | if (!tlk_ep_info) { |
| 66 | WARN("No SP provided. Booting device without SP" |
| 67 | " initialization. SMC`s destined for SP" |
| 68 | " will return SMC_UNK\n"); |
| 69 | return 1; |
| 70 | } |
| 71 | |
| 72 | /* |
| 73 | * If there's no valid entry point for SP, we return a non-zero value |
| 74 | * signalling failure initializing the service. We bail out without |
| 75 | * registering any handlers |
| 76 | */ |
| 77 | if (!tlk_ep_info->pc) |
| 78 | return 1; |
| 79 | |
| 80 | /* |
| 81 | * Inspect the SP image's SPSR and determine it's execution state |
| 82 | * i.e whether AArch32 or AArch64. |
| 83 | */ |
| 84 | tlkd_init_tlk_ep_state(tlk_ep_info, |
| 85 | (tlk_ep_info->spsr >> MODE_RW_SHIFT) & MODE_RW_MASK, |
| 86 | tlk_ep_info->pc, |
| 87 | &tlk_ctx); |
| 88 | |
| 89 | /* |
| 90 | * All TLK SPD initialization done. Now register our init function |
| 91 | * with BL31 for deferred invocation |
| 92 | */ |
| 93 | bl31_register_bl32_init(&tlkd_init); |
| 94 | |
| 95 | return 0; |
| 96 | } |
| 97 | |
| 98 | /******************************************************************************* |
| 99 | * This function passes control to the Secure Payload image (BL32) for the first |
| 100 | * time on the primary cpu after a cold boot. It assumes that a valid secure |
| 101 | * context has already been created by tlkd_setup() which can be directly |
| 102 | * used. This function performs a synchronous entry into the Secure payload. |
| 103 | * The SP passes control back to this routine through a SMC. |
| 104 | ******************************************************************************/ |
Masahiro Yamada | 5621275 | 2018-04-19 01:14:42 +0900 | [diff] [blame] | 105 | static int32_t tlkd_init(void) |
Varun Wadekar | 3d4e6a5 | 2015-03-13 14:01:03 +0530 | [diff] [blame] | 106 | { |
Varun Wadekar | 3d4e6a5 | 2015-03-13 14:01:03 +0530 | [diff] [blame] | 107 | entry_point_info_t *tlk_entry_point; |
| 108 | |
| 109 | /* |
| 110 | * Get information about the Secure Payload (BL32) image. Its |
| 111 | * absence is a critical failure. |
| 112 | */ |
| 113 | tlk_entry_point = bl31_plat_get_next_image_ep_info(SECURE); |
| 114 | assert(tlk_entry_point); |
| 115 | |
Soby Mathew | da43b66 | 2015-07-08 21:45:46 +0100 | [diff] [blame] | 116 | cm_init_my_context(tlk_entry_point); |
Varun Wadekar | 3d4e6a5 | 2015-03-13 14:01:03 +0530 | [diff] [blame] | 117 | |
| 118 | /* |
Varun Wadekar | 0bbe8a6 | 2016-06-07 21:21:59 -0700 | [diff] [blame] | 119 | * TLK runs only on a single CPU. Store the value of the boot |
| 120 | * CPU for sanity checking later. |
| 121 | */ |
| 122 | boot_cpu = plat_my_core_pos(); |
| 123 | |
| 124 | /* |
Varun Wadekar | 3d4e6a5 | 2015-03-13 14:01:03 +0530 | [diff] [blame] | 125 | * Arrange for an entry into the test secure payload. |
| 126 | */ |
| 127 | return tlkd_synchronous_sp_entry(&tlk_ctx); |
| 128 | } |
| 129 | |
| 130 | /******************************************************************************* |
| 131 | * This function is responsible for handling all SMCs in the Trusted OS/App |
| 132 | * range from the non-secure state as defined in the SMC Calling Convention |
| 133 | * Document. It is also responsible for communicating with the Secure payload |
| 134 | * to delegate work and return results back to the non-secure state. Lastly it |
| 135 | * will also return any information that the secure payload needs to do the |
| 136 | * work assigned to it. |
| 137 | ******************************************************************************/ |
Masahiro Yamada | 5ac9d96 | 2018-04-19 01:18:48 +0900 | [diff] [blame] | 138 | static uintptr_t tlkd_smc_handler(uint32_t smc_fid, |
| 139 | u_register_t x1, |
| 140 | u_register_t x2, |
| 141 | u_register_t x3, |
| 142 | u_register_t x4, |
Varun Wadekar | 3d4e6a5 | 2015-03-13 14:01:03 +0530 | [diff] [blame] | 143 | void *cookie, |
| 144 | void *handle, |
Masahiro Yamada | 5ac9d96 | 2018-04-19 01:18:48 +0900 | [diff] [blame] | 145 | u_register_t flags) |
Varun Wadekar | 3d4e6a5 | 2015-03-13 14:01:03 +0530 | [diff] [blame] | 146 | { |
Varun Wadekar | a97535f | 2015-03-13 14:19:11 +0530 | [diff] [blame] | 147 | cpu_context_t *ns_cpu_context; |
Varun Wadekar | ebfeae9 | 2015-04-02 14:57:47 +0530 | [diff] [blame] | 148 | gp_regs_t *gp_regs; |
Varun Wadekar | 3d4e6a5 | 2015-03-13 14:01:03 +0530 | [diff] [blame] | 149 | uint32_t ns; |
Varun Wadekar | ebfeae9 | 2015-04-02 14:57:47 +0530 | [diff] [blame] | 150 | uint64_t par; |
Varun Wadekar | 3d4e6a5 | 2015-03-13 14:01:03 +0530 | [diff] [blame] | 151 | |
| 152 | /* Passing a NULL context is a critical programming error */ |
| 153 | assert(handle); |
| 154 | |
Varun Wadekar | 0bbe8a6 | 2016-06-07 21:21:59 -0700 | [diff] [blame] | 155 | /* These SMCs are only supported by a single CPU */ |
| 156 | if (boot_cpu != plat_my_core_pos()) |
Varun Wadekar | b539b6c | 2015-03-13 15:18:20 +0530 | [diff] [blame] | 157 | SMC_RET1(handle, SMC_UNK); |
| 158 | |
Varun Wadekar | 3d4e6a5 | 2015-03-13 14:01:03 +0530 | [diff] [blame] | 159 | /* Determine which security state this SMC originated from */ |
| 160 | ns = is_caller_non_secure(flags); |
| 161 | |
| 162 | switch (smc_fid) { |
| 163 | |
| 164 | /* |
Varun Wadekar | 968c029 | 2015-03-13 15:10:54 +0530 | [diff] [blame] | 165 | * This function ID is used by SP to indicate that it was |
| 166 | * preempted by a non-secure world IRQ. |
| 167 | */ |
| 168 | case TLK_PREEMPTED: |
| 169 | |
| 170 | if (ns) |
| 171 | SMC_RET1(handle, SMC_UNK); |
| 172 | |
| 173 | assert(handle == cm_get_context(SECURE)); |
| 174 | cm_el1_sysregs_context_save(SECURE); |
| 175 | |
| 176 | /* Get a reference to the non-secure context */ |
| 177 | ns_cpu_context = cm_get_context(NON_SECURE); |
| 178 | assert(ns_cpu_context); |
| 179 | |
| 180 | /* |
| 181 | * Restore non-secure state. There is no need to save the |
| 182 | * secure system register context since the SP was supposed |
| 183 | * to preserve it during S-EL1 interrupt handling. |
| 184 | */ |
| 185 | cm_el1_sysregs_context_restore(NON_SECURE); |
| 186 | cm_set_next_eret_context(NON_SECURE); |
| 187 | |
Varun Wadekar | ebfeae9 | 2015-04-02 14:57:47 +0530 | [diff] [blame] | 188 | SMC_RET1(ns_cpu_context, x1); |
Varun Wadekar | 968c029 | 2015-03-13 15:10:54 +0530 | [diff] [blame] | 189 | |
| 190 | /* |
Varun Wadekar | a97535f | 2015-03-13 14:19:11 +0530 | [diff] [blame] | 191 | * This is a request from the non-secure context to: |
| 192 | * |
| 193 | * a. register shared memory with the SP for storing it's |
| 194 | * activity logs. |
| 195 | * b. register shared memory with the SP for passing args |
| 196 | * required for maintaining sessions with the Trusted |
| 197 | * Applications. |
Mihir Joshi | 518230c | 2018-01-22 14:02:16 -0800 | [diff] [blame] | 198 | * c. register shared persistent buffers for secure storage |
| 199 | * d. register NS DRAM ranges passed by Cboot |
| 200 | * e. register Root of Trust parameters from Cboot for Verified Boot |
| 201 | * f. open/close sessions |
| 202 | * g. issue commands to the Trusted Apps |
| 203 | * h. resume the preempted yielding SMC call. |
Varun Wadekar | a97535f | 2015-03-13 14:19:11 +0530 | [diff] [blame] | 204 | */ |
| 205 | case TLK_REGISTER_LOGBUF: |
| 206 | case TLK_REGISTER_REQBUF: |
Mihir Joshi | 518230c | 2018-01-22 14:02:16 -0800 | [diff] [blame] | 207 | case TLK_SS_REGISTER_HANDLER: |
| 208 | case TLK_REGISTER_NS_DRAM_RANGES: |
| 209 | case TLK_SET_ROOT_OF_TRUST: |
Varun Wadekar | b539b6c | 2015-03-13 15:18:20 +0530 | [diff] [blame] | 210 | case TLK_OPEN_TA_SESSION: |
| 211 | case TLK_CLOSE_TA_SESSION: |
| 212 | case TLK_TA_LAUNCH_OP: |
| 213 | case TLK_TA_SEND_EVENT: |
Varun Wadekar | 5e1fa05 | 2015-10-07 17:15:41 +0530 | [diff] [blame] | 214 | case TLK_RESUME_FID: |
Varun Wadekar | b539b6c | 2015-03-13 15:18:20 +0530 | [diff] [blame] | 215 | |
Varun Wadekar | ebfeae9 | 2015-04-02 14:57:47 +0530 | [diff] [blame] | 216 | if (!ns) |
Varun Wadekar | a97535f | 2015-03-13 14:19:11 +0530 | [diff] [blame] | 217 | SMC_RET1(handle, SMC_UNK); |
| 218 | |
| 219 | /* |
| 220 | * This is a fresh request from the non-secure client. |
| 221 | * The parameters are in x1 and x2. Figure out which |
| 222 | * registers need to be preserved, save the non-secure |
| 223 | * state and send the request to the secure payload. |
| 224 | */ |
| 225 | assert(handle == cm_get_context(NON_SECURE)); |
| 226 | |
Varun Wadekar | 5e1fa05 | 2015-10-07 17:15:41 +0530 | [diff] [blame] | 227 | /* |
David Cunado | c8833ea | 2017-04-16 17:15:08 +0100 | [diff] [blame] | 228 | * Check if we are already processing a yielding SMC |
Varun Wadekar | 5e1fa05 | 2015-10-07 17:15:41 +0530 | [diff] [blame] | 229 | * call. Of all the supported fids, only the "resume" |
| 230 | * fid expects the flag to be set. |
| 231 | */ |
| 232 | if (smc_fid == TLK_RESUME_FID) { |
David Cunado | c8833ea | 2017-04-16 17:15:08 +0100 | [diff] [blame] | 233 | if (!get_yield_smc_active_flag(tlk_ctx.state)) |
Varun Wadekar | 5e1fa05 | 2015-10-07 17:15:41 +0530 | [diff] [blame] | 234 | SMC_RET1(handle, SMC_UNK); |
| 235 | } else { |
David Cunado | c8833ea | 2017-04-16 17:15:08 +0100 | [diff] [blame] | 236 | if (get_yield_smc_active_flag(tlk_ctx.state)) |
Varun Wadekar | 5e1fa05 | 2015-10-07 17:15:41 +0530 | [diff] [blame] | 237 | SMC_RET1(handle, SMC_UNK); |
| 238 | } |
Varun Wadekar | a97535f | 2015-03-13 14:19:11 +0530 | [diff] [blame] | 239 | |
| 240 | cm_el1_sysregs_context_save(NON_SECURE); |
| 241 | |
| 242 | /* |
| 243 | * Verify if there is a valid context to use. |
| 244 | */ |
| 245 | assert(&tlk_ctx.cpu_ctx == cm_get_context(SECURE)); |
| 246 | |
| 247 | /* |
| 248 | * Mark the SP state as active. |
| 249 | */ |
David Cunado | c8833ea | 2017-04-16 17:15:08 +0100 | [diff] [blame] | 250 | set_yield_smc_active_flag(tlk_ctx.state); |
Varun Wadekar | a97535f | 2015-03-13 14:19:11 +0530 | [diff] [blame] | 251 | |
Varun Wadekar | a97535f | 2015-03-13 14:19:11 +0530 | [diff] [blame] | 252 | /* |
| 253 | * We are done stashing the non-secure context. Ask the |
| 254 | * secure payload to do the work now. |
| 255 | */ |
| 256 | cm_el1_sysregs_context_restore(SECURE); |
| 257 | cm_set_next_eret_context(SECURE); |
Varun Wadekar | ebfeae9 | 2015-04-02 14:57:47 +0530 | [diff] [blame] | 258 | |
| 259 | /* |
| 260 | * TLK is a 32-bit Trusted OS and so expects the SMC |
| 261 | * arguments via r0-r7. TLK expects the monitor frame |
| 262 | * registers to be 64-bits long. Hence, we pass x0 in |
| 263 | * r0-r1, x1 in r2-r3, x3 in r4-r5 and x4 in r6-r7. |
| 264 | * |
| 265 | * As smc_fid is a uint32 value, r1 contains 0. |
| 266 | */ |
| 267 | gp_regs = get_gpregs_ctx(&tlk_ctx.cpu_ctx); |
| 268 | write_ctx_reg(gp_regs, CTX_GPREG_X4, (uint32_t)x2); |
| 269 | write_ctx_reg(gp_regs, CTX_GPREG_X5, (uint32_t)(x2 >> 32)); |
| 270 | write_ctx_reg(gp_regs, CTX_GPREG_X6, (uint32_t)x3); |
| 271 | write_ctx_reg(gp_regs, CTX_GPREG_X7, (uint32_t)(x3 >> 32)); |
| 272 | SMC_RET4(&tlk_ctx.cpu_ctx, smc_fid, 0, (uint32_t)x1, |
| 273 | (uint32_t)(x1 >> 32)); |
Varun Wadekar | a97535f | 2015-03-13 14:19:11 +0530 | [diff] [blame] | 274 | |
| 275 | /* |
Varun Wadekar | ebfeae9 | 2015-04-02 14:57:47 +0530 | [diff] [blame] | 276 | * Translate NS/EL1-S virtual addresses. |
| 277 | * |
| 278 | * x1 = virtual address |
| 279 | * x3 = type (NS/S) |
| 280 | * |
| 281 | * Returns PA:lo in r0, PA:hi in r1. |
Varun Wadekar | 97625e3 | 2015-03-13 14:59:03 +0530 | [diff] [blame] | 282 | */ |
| 283 | case TLK_VA_TRANSLATE: |
Varun Wadekar | ebfeae9 | 2015-04-02 14:57:47 +0530 | [diff] [blame] | 284 | |
| 285 | /* Should be invoked only by secure world */ |
| 286 | if (ns) |
Varun Wadekar | 97625e3 | 2015-03-13 14:59:03 +0530 | [diff] [blame] | 287 | SMC_RET1(handle, SMC_UNK); |
| 288 | |
Varun Wadekar | ebfeae9 | 2015-04-02 14:57:47 +0530 | [diff] [blame] | 289 | /* NS virtual addresses are 64-bit long */ |
| 290 | if (x3 & TLK_TRANSLATE_NS_VADDR) |
| 291 | x1 = (uint32_t)x1 | (x2 << 32); |
Varun Wadekar | 97625e3 | 2015-03-13 14:59:03 +0530 | [diff] [blame] | 292 | |
Varun Wadekar | ebfeae9 | 2015-04-02 14:57:47 +0530 | [diff] [blame] | 293 | if (!x1) |
| 294 | SMC_RET1(handle, SMC_UNK); |
Varun Wadekar | 97625e3 | 2015-03-13 14:59:03 +0530 | [diff] [blame] | 295 | |
Varun Wadekar | ebfeae9 | 2015-04-02 14:57:47 +0530 | [diff] [blame] | 296 | /* |
| 297 | * TODO: Sanity check x1. This would require platform |
| 298 | * support. |
| 299 | */ |
Varun Wadekar | 97625e3 | 2015-03-13 14:59:03 +0530 | [diff] [blame] | 300 | |
Varun Wadekar | ebfeae9 | 2015-04-02 14:57:47 +0530 | [diff] [blame] | 301 | /* virtual address and type: ns/s */ |
| 302 | par = tlkd_va_translate(x1, x3); |
| 303 | |
| 304 | /* return physical address in r0-r1 */ |
| 305 | SMC_RET4(handle, (uint32_t)par, (uint32_t)(par >> 32), 0, 0); |
Varun Wadekar | 97625e3 | 2015-03-13 14:59:03 +0530 | [diff] [blame] | 306 | |
| 307 | /* |
Varun Wadekar | a97535f | 2015-03-13 14:19:11 +0530 | [diff] [blame] | 308 | * This is a request from the SP to mark completion of |
David Cunado | c8833ea | 2017-04-16 17:15:08 +0100 | [diff] [blame] | 309 | * a yielding function ID. |
Varun Wadekar | a97535f | 2015-03-13 14:19:11 +0530 | [diff] [blame] | 310 | */ |
| 311 | case TLK_REQUEST_DONE: |
Varun Wadekar | ebfeae9 | 2015-04-02 14:57:47 +0530 | [diff] [blame] | 312 | if (ns) |
Varun Wadekar | a97535f | 2015-03-13 14:19:11 +0530 | [diff] [blame] | 313 | SMC_RET1(handle, SMC_UNK); |
| 314 | |
| 315 | /* |
| 316 | * Mark the SP state as inactive. |
| 317 | */ |
David Cunado | c8833ea | 2017-04-16 17:15:08 +0100 | [diff] [blame] | 318 | clr_yield_smc_active_flag(tlk_ctx.state); |
Varun Wadekar | a97535f | 2015-03-13 14:19:11 +0530 | [diff] [blame] | 319 | |
| 320 | /* Get a reference to the non-secure context */ |
| 321 | ns_cpu_context = cm_get_context(NON_SECURE); |
| 322 | assert(ns_cpu_context); |
| 323 | |
| 324 | /* |
| 325 | * This is a request completion SMC and we must switch to |
| 326 | * the non-secure world to pass the result. |
| 327 | */ |
| 328 | cm_el1_sysregs_context_save(SECURE); |
| 329 | |
| 330 | /* |
| 331 | * We are done stashing the secure context. Switch to the |
| 332 | * non-secure context and return the result. |
| 333 | */ |
| 334 | cm_el1_sysregs_context_restore(NON_SECURE); |
| 335 | cm_set_next_eret_context(NON_SECURE); |
Varun Wadekar | ebfeae9 | 2015-04-02 14:57:47 +0530 | [diff] [blame] | 336 | SMC_RET1(ns_cpu_context, x1); |
Varun Wadekar | a97535f | 2015-03-13 14:19:11 +0530 | [diff] [blame] | 337 | |
| 338 | /* |
Varun Wadekar | 3d4e6a5 | 2015-03-13 14:01:03 +0530 | [diff] [blame] | 339 | * This function ID is used only by the SP to indicate it has |
| 340 | * finished initialising itself after a cold boot |
| 341 | */ |
| 342 | case TLK_ENTRY_DONE: |
Varun Wadekar | ebfeae9 | 2015-04-02 14:57:47 +0530 | [diff] [blame] | 343 | if (ns) |
Varun Wadekar | 3d4e6a5 | 2015-03-13 14:01:03 +0530 | [diff] [blame] | 344 | SMC_RET1(handle, SMC_UNK); |
| 345 | |
| 346 | /* |
| 347 | * SP has been successfully initialized. Register power |
Paul Beesley | 1fbc97b | 2019-01-11 18:26:51 +0000 | [diff] [blame] | 348 | * management hooks with PSCI |
Varun Wadekar | 3d4e6a5 | 2015-03-13 14:01:03 +0530 | [diff] [blame] | 349 | */ |
| 350 | psci_register_spd_pm_hook(&tlkd_pm_ops); |
| 351 | |
| 352 | /* |
| 353 | * TLK reports completion. The SPD must have initiated |
| 354 | * the original request through a synchronous entry |
| 355 | * into the SP. Jump back to the original C runtime |
| 356 | * context. |
| 357 | */ |
Varun Wadekar | ebfeae9 | 2015-04-02 14:57:47 +0530 | [diff] [blame] | 358 | tlkd_synchronous_sp_exit(&tlk_ctx, x1); |
Jonathan Wright | 75a5d8b | 2018-03-14 15:56:21 +0000 | [diff] [blame] | 359 | break; |
Varun Wadekar | 3d4e6a5 | 2015-03-13 14:01:03 +0530 | [diff] [blame] | 360 | |
| 361 | /* |
Varun Wadekar | a70dec3 | 2015-08-26 12:49:03 +0530 | [diff] [blame] | 362 | * These function IDs are used only by TLK to indicate it has |
| 363 | * finished: |
| 364 | * 1. suspending itself after an earlier psci cpu_suspend |
| 365 | * request. |
| 366 | * 2. resuming itself after an earlier psci cpu_suspend |
| 367 | * request. |
| 368 | * 3. powering down after an earlier psci system_off/system_reset |
| 369 | * request. |
| 370 | */ |
| 371 | case TLK_SUSPEND_DONE: |
| 372 | case TLK_RESUME_DONE: |
| 373 | case TLK_SYSTEM_OFF_DONE: |
| 374 | |
| 375 | if (ns) |
| 376 | SMC_RET1(handle, SMC_UNK); |
| 377 | |
| 378 | /* |
| 379 | * TLK reports completion. TLKD must have initiated the |
| 380 | * original request through a synchronous entry into the SP. |
| 381 | * Jump back to the original C runtime context, and pass x1 as |
| 382 | * return value to the caller |
| 383 | */ |
| 384 | tlkd_synchronous_sp_exit(&tlk_ctx, x1); |
Jonathan Wright | 75a5d8b | 2018-03-14 15:56:21 +0000 | [diff] [blame] | 385 | break; |
Varun Wadekar | a70dec3 | 2015-08-26 12:49:03 +0530 | [diff] [blame] | 386 | |
| 387 | /* |
Varun Wadekar | 3d4e6a5 | 2015-03-13 14:01:03 +0530 | [diff] [blame] | 388 | * Return the number of service function IDs implemented to |
| 389 | * provide service to non-secure |
| 390 | */ |
| 391 | case TOS_CALL_COUNT: |
| 392 | SMC_RET1(handle, TLK_NUM_FID); |
| 393 | |
| 394 | /* |
| 395 | * Return TLK's UID to the caller |
| 396 | */ |
| 397 | case TOS_UID: |
| 398 | SMC_UUID_RET(handle, tlk_uuid); |
| 399 | |
| 400 | /* |
| 401 | * Return the version of current implementation |
| 402 | */ |
| 403 | case TOS_CALL_VERSION: |
| 404 | SMC_RET2(handle, TLK_VERSION_MAJOR, TLK_VERSION_MINOR); |
| 405 | |
| 406 | default: |
Mihir Joshi | 518230c | 2018-01-22 14:02:16 -0800 | [diff] [blame] | 407 | WARN("%s: Unhandled SMC: 0x%x\n", __func__, smc_fid); |
Varun Wadekar | 3d4e6a5 | 2015-03-13 14:01:03 +0530 | [diff] [blame] | 408 | break; |
| 409 | } |
| 410 | |
| 411 | SMC_RET1(handle, SMC_UNK); |
| 412 | } |
| 413 | |
| 414 | /* Define a SPD runtime service descriptor for fast SMC calls */ |
| 415 | DECLARE_RT_SVC( |
| 416 | tlkd_tos_fast, |
| 417 | |
| 418 | OEN_TOS_START, |
| 419 | OEN_TOS_END, |
| 420 | SMC_TYPE_FAST, |
| 421 | tlkd_setup, |
| 422 | tlkd_smc_handler |
| 423 | ); |
| 424 | |
David Cunado | c8833ea | 2017-04-16 17:15:08 +0100 | [diff] [blame] | 425 | /* Define a SPD runtime service descriptor for yielding SMC calls */ |
Varun Wadekar | 3d4e6a5 | 2015-03-13 14:01:03 +0530 | [diff] [blame] | 426 | DECLARE_RT_SVC( |
| 427 | tlkd_tos_std, |
| 428 | |
| 429 | OEN_TOS_START, |
| 430 | OEN_TOS_END, |
David Cunado | c8833ea | 2017-04-16 17:15:08 +0100 | [diff] [blame] | 431 | SMC_TYPE_YIELD, |
Varun Wadekar | 3d4e6a5 | 2015-03-13 14:01:03 +0530 | [diff] [blame] | 432 | NULL, |
| 433 | tlkd_smc_handler |
| 434 | ); |
Varun Wadekar | b539b6c | 2015-03-13 15:18:20 +0530 | [diff] [blame] | 435 | |
| 436 | /* Define a SPD runtime service descriptor for fast SMC calls */ |
| 437 | DECLARE_RT_SVC( |
| 438 | tlkd_tap_fast, |
| 439 | |
| 440 | OEN_TAP_START, |
| 441 | OEN_TAP_END, |
| 442 | SMC_TYPE_FAST, |
| 443 | NULL, |
| 444 | tlkd_smc_handler |
| 445 | ); |
| 446 | |
David Cunado | c8833ea | 2017-04-16 17:15:08 +0100 | [diff] [blame] | 447 | /* Define a SPD runtime service descriptor for yielding SMC calls */ |
Varun Wadekar | b539b6c | 2015-03-13 15:18:20 +0530 | [diff] [blame] | 448 | DECLARE_RT_SVC( |
| 449 | tlkd_tap_std, |
| 450 | |
| 451 | OEN_TAP_START, |
| 452 | OEN_TAP_END, |
David Cunado | c8833ea | 2017-04-16 17:15:08 +0100 | [diff] [blame] | 453 | SMC_TYPE_YIELD, |
Varun Wadekar | b539b6c | 2015-03-13 15:18:20 +0530 | [diff] [blame] | 454 | NULL, |
| 455 | tlkd_smc_handler |
| 456 | ); |