blob: 2353e6a0b6d77fbb09eaa0c63b7376b91e01e783 [file] [log] [blame]
Jeenu Viswambharanbc1a9292017-02-16 14:55:15 +00001/*
Zelalem Awekef92c0cb2022-01-31 16:59:42 -06002 * Copyright (c) 2017-2022, ARM Limited and Contributors. All rights reserved.
Jeenu Viswambharanbc1a9292017-02-16 14:55:15 +00003 *
David Cunadodedfde52017-05-11 17:30:06 +01004 * SPDX-License-Identifier: BSD-3-Clause
Jeenu Viswambharanbc1a9292017-02-16 14:55:15 +00005 */
6
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00007#include <stdbool.h>
8#include <string.h>
9
Jeenu Viswambharanbc1a9292017-02-16 14:55:15 +000010#include <arch_helpers.h>
Jeenu Viswambharanbc1a9292017-02-16 14:55:15 +000011#include <context.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000012#include <lib/el3_runtime/context_mgmt.h>
13#include <lib/psci/psci.h>
14#include <lib/utils.h>
Antonio Nino Diazbd7b7402019-01-25 14:30:04 +000015#include <plat/arm/common/plat_arm.h>
Antonio Nino Diaz3c817f42018-03-21 10:49:27 +000016#include <smccc_helpers.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000017
Jeenu Viswambharanbc1a9292017-02-16 14:55:15 +000018/*
19 * Handle SMC from a lower exception level to switch its execution state
20 * (either from AArch64 to AArch32, or vice versa).
21 *
22 * smc_fid:
23 * SMC function ID - either ARM_SIP_SVC_STATE_SWITCH_64 or
24 * ARM_SIP_SVC_STATE_SWITCH_32.
25 * pc_hi, pc_lo:
26 * PC upon re-entry to the calling exception level; width dependent on the
27 * calling exception level.
28 * cookie_hi, cookie_lo:
29 * Opaque pointer pairs received from the caller to pass it back, upon
30 * re-entry.
31 * handle:
32 * Handle to saved context.
33 */
34int arm_execution_state_switch(unsigned int smc_fid,
35 uint32_t pc_hi,
36 uint32_t pc_lo,
37 uint32_t cookie_hi,
38 uint32_t cookie_lo,
39 void *handle)
40{
Jeenu Viswambharan210f0a82018-08-02 10:14:12 +010041 bool caller_64, thumb = false, from_el2;
42 unsigned int el, endianness;
Jeenu Viswambharanbc1a9292017-02-16 14:55:15 +000043 u_register_t spsr, pc, scr, sctlr;
44 entry_point_info_t ep;
45 cpu_context_t *ctx = (cpu_context_t *) handle;
46 el3_state_t *el3_ctx = get_el3state_ctx(ctx);
47
Bence Szépkúti16362c62019-10-24 15:53:23 +020048 /* Validate supplied entry point */
49 pc = (u_register_t) (((uint64_t) pc_hi << 32) | pc_lo);
50 if (arm_validate_ns_entrypoint(pc) != 0)
51 goto invalid_param;
52
Jeenu Viswambharanbc1a9292017-02-16 14:55:15 +000053 /* That the SMC originated from NS is already validated by the caller */
54
55 /*
56 * Disallow state switch if any of the secondaries have been brought up.
57 */
Jeenu Viswambharan210f0a82018-08-02 10:14:12 +010058 if (psci_secondaries_brought_up() != 0)
Jeenu Viswambharanbc1a9292017-02-16 14:55:15 +000059 goto exec_denied;
60
61 spsr = read_ctx_reg(el3_ctx, CTX_SPSR_EL3);
62 caller_64 = (GET_RW(spsr) == MODE_RW_64);
63
64 if (caller_64) {
65 /*
66 * If the call originated from AArch64, expect 32-bit pointers when
67 * switching to AArch32.
68 */
Jeenu Viswambharan210f0a82018-08-02 10:14:12 +010069 if ((pc_hi != 0U) || (cookie_hi != 0U))
Jeenu Viswambharanbc1a9292017-02-16 14:55:15 +000070 goto invalid_param;
71
72 pc = pc_lo;
73
74 /* Instruction state when entering AArch32 */
Jeenu Viswambharan210f0a82018-08-02 10:14:12 +010075 thumb = (pc & 1U) != 0U;
Jeenu Viswambharanbc1a9292017-02-16 14:55:15 +000076 } else {
77 /* Construct AArch64 PC */
78 pc = (((u_register_t) pc_hi) << 32) | pc_lo;
79 }
80
81 /* Make sure PC is 4-byte aligned, except for Thumb */
Jeenu Viswambharan210f0a82018-08-02 10:14:12 +010082 if (((pc & 0x3U) != 0U) && !thumb)
Jeenu Viswambharanbc1a9292017-02-16 14:55:15 +000083 goto invalid_param;
84
85 /*
86 * EL3 controls register width of the immediate lower EL only. Expect
87 * this request from EL2/Hyp unless:
88 *
89 * - EL2 is not implemented;
90 * - EL2 is implemented, but was disabled. This can be inferred from
91 * SCR_EL3.HCE.
92 */
93 from_el2 = caller_64 ? (GET_EL(spsr) == MODE_EL2) :
94 (GET_M32(spsr) == MODE32_hyp);
95 scr = read_ctx_reg(el3_ctx, CTX_SCR_EL3);
96 if (!from_el2) {
97 /* The call is from NS privilege level other than HYP */
98
99 /*
100 * Disallow switching state if there's a Hypervisor in place;
101 * this request must be taken up with the Hypervisor instead.
102 */
Jeenu Viswambharan210f0a82018-08-02 10:14:12 +0100103 if ((scr & SCR_HCE_BIT) != 0U)
Jeenu Viswambharanbc1a9292017-02-16 14:55:15 +0000104 goto exec_denied;
105 }
106
107 /*
108 * Return to the caller using the same endianness. Extract
109 * endianness bit from the respective system control register
110 * directly.
111 */
112 sctlr = from_el2 ? read_sctlr_el2() : read_sctlr_el1();
Jeenu Viswambharan210f0a82018-08-02 10:14:12 +0100113 endianness = ((sctlr & SCTLR_EE_BIT) != 0U) ? 1U : 0U;
Jeenu Viswambharanbc1a9292017-02-16 14:55:15 +0000114
115 /* Construct SPSR for the exception state we're about to switch to */
116 if (caller_64) {
Jeenu Viswambharan210f0a82018-08-02 10:14:12 +0100117 unsigned long long impl;
Jeenu Viswambharanbc1a9292017-02-16 14:55:15 +0000118
119 /*
120 * Switching from AArch64 to AArch32. Ensure this CPU implements
121 * the target EL in AArch32.
122 */
Antonio Nino Diaz864ca6f2018-10-31 15:25:35 +0000123 impl = from_el2 ? el_implemented(2) : el_implemented(1);
Jeenu Viswambharanbc1a9292017-02-16 14:55:15 +0000124 if (impl != EL_IMPL_A64_A32)
125 goto exec_denied;
126
127 /* Return to the equivalent AArch32 privilege level */
128 el = from_el2 ? MODE32_hyp : MODE32_svc;
Jeenu Viswambharan210f0a82018-08-02 10:14:12 +0100129 spsr = SPSR_MODE32((u_register_t) el,
130 thumb ? SPSR_T_THUMB : SPSR_T_ARM,
Jeenu Viswambharanbc1a9292017-02-16 14:55:15 +0000131 endianness, DISABLE_ALL_EXCEPTIONS);
132 } else {
133 /*
134 * Switching from AArch32 to AArch64. Since it's not possible to
135 * implement an EL as AArch32-only (from which this call was
136 * raised), it's safe to assume AArch64 is also implemented.
137 */
138 el = from_el2 ? MODE_EL2 : MODE_EL1;
Jeenu Viswambharan210f0a82018-08-02 10:14:12 +0100139 spsr = SPSR_64((u_register_t) el, MODE_SP_ELX,
140 DISABLE_ALL_EXCEPTIONS);
Jeenu Viswambharanbc1a9292017-02-16 14:55:15 +0000141 }
142
143 /*
144 * Use the context management library to re-initialize the existing
145 * context with the execution state flipped. Since the library takes
146 * entry_point_info_t pointer as the argument, construct a dummy one
147 * with PC, state width, endianness, security etc. appropriately set.
148 * Other entries in the entry point structure are irrelevant for
149 * purpose.
150 */
151 zeromem(&ep, sizeof(ep));
152 ep.pc = pc;
Jeenu Viswambharan210f0a82018-08-02 10:14:12 +0100153 ep.spsr = (uint32_t) spsr;
Jeenu Viswambharanbc1a9292017-02-16 14:55:15 +0000154 SET_PARAM_HEAD(&ep, PARAM_EP, VERSION_1,
Jeenu Viswambharan210f0a82018-08-02 10:14:12 +0100155 ((unsigned int) ((endianness != 0U) ? EP_EE_BIG :
156 EP_EE_LITTLE)
157 | NON_SECURE | EP_ST_DISABLE));
Jeenu Viswambharanbc1a9292017-02-16 14:55:15 +0000158
159 /*
160 * Re-initialize the system register context, and exit EL3 as if for the
161 * first time. State switch is effectively a soft reset of the
162 * calling EL.
163 */
164 cm_init_my_context(&ep);
Zelalem Awekef92c0cb2022-01-31 16:59:42 -0600165 cm_prepare_el3_exit_ns();
Jeenu Viswambharanbc1a9292017-02-16 14:55:15 +0000166
167 /*
168 * State switch success. The caller of SMC wouldn't see the SMC
169 * returning. Instead, execution starts at the supplied entry point,
170 * with context pointers populated in registers 0 and 1.
171 */
172 SMC_RET2(handle, cookie_hi, cookie_lo);
173
174invalid_param:
175 SMC_RET1(handle, STATE_SW_E_PARAM);
176
177exec_denied:
Jeenu Viswambharanbc1a9292017-02-16 14:55:15 +0000178 /* State switch denied */
179 SMC_RET1(handle, STATE_SW_E_DENIED);
180}