Achin Gupta | 7aea908 | 2014-02-01 07:51:28 +0000 | [diff] [blame] | 1 | /* |
Soby Mathew | b0082d2 | 2015-04-09 13:40:55 +0100 | [diff] [blame] | 2 | * Copyright (c) 2013-2015, ARM Limited and Contributors. All rights reserved. |
Achin Gupta | 7aea908 | 2014-02-01 07:51:28 +0000 | [diff] [blame] | 3 | * |
| 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 Gupta | 27b895e | 2014-05-04 18:38:28 +0100 | [diff] [blame] | 31 | #include <arch.h> |
Achin Gupta | 7aea908 | 2014-02-01 07:51:28 +0000 | [diff] [blame] | 32 | #include <arch_helpers.h> |
Dan Handley | 2bd4ef2 | 2014-04-09 13:14:54 +0100 | [diff] [blame] | 33 | #include <assert.h> |
Achin Gupta | 7aea908 | 2014-02-01 07:51:28 +0000 | [diff] [blame] | 34 | #include <bl_common.h> |
Soby Mathew | 5e5c207 | 2014-04-07 15:28:55 +0100 | [diff] [blame] | 35 | #include <bl31.h> |
Dan Handley | 2bd4ef2 | 2014-04-09 13:14:54 +0100 | [diff] [blame] | 36 | #include <context.h> |
Achin Gupta | 7aea908 | 2014-02-01 07:51:28 +0000 | [diff] [blame] | 37 | #include <context_mgmt.h> |
Andrew Thoelke | c02dbd6 | 2014-06-02 10:00:25 +0100 | [diff] [blame] | 38 | #include <cpu_data.h> |
Achin Gupta | 191e86e | 2014-05-09 10:03:15 +0100 | [diff] [blame] | 39 | #include <interrupt_mgmt.h> |
Dan Handley | 2bd4ef2 | 2014-04-09 13:14:54 +0100 | [diff] [blame] | 40 | #include <platform.h> |
Dan Handley | ed6ff95 | 2014-05-14 17:44:19 +0100 | [diff] [blame] | 41 | #include <platform_def.h> |
Dan Handley | 2bd4ef2 | 2014-04-09 13:14:54 +0100 | [diff] [blame] | 42 | #include <runtime_svc.h> |
Andrew Thoelke | 4e12607 | 2014-06-04 21:10:52 +0100 | [diff] [blame] | 43 | #include <string.h> |
Achin Gupta | 7aea908 | 2014-02-01 07:51:28 +0000 | [diff] [blame] | 44 | |
Achin Gupta | 7aea908 | 2014-02-01 07:51:28 +0000 | [diff] [blame] | 45 | |
| 46 | /******************************************************************************* |
| 47 | * Context management library initialisation routine. This library is used by |
| 48 | * runtime services to share pointers to 'cpu_context' structures for the secure |
| 49 | * and non-secure states. Management of the structures and their associated |
| 50 | * memory is not done by the context management library e.g. the PSCI service |
| 51 | * manages the cpu context used for entry from and exit to the non-secure state. |
| 52 | * The Secure payload dispatcher service manages the context(s) corresponding to |
| 53 | * the secure state. It also uses this library to get access to the non-secure |
| 54 | * state cpu context pointers. |
| 55 | * Lastly, this library provides the api to make SP_EL3 point to the cpu context |
| 56 | * which will used for programming an entry into a lower EL. The same context |
| 57 | * will used to save state upon exception entry from that EL. |
| 58 | ******************************************************************************/ |
Juan Castillo | 2d55240 | 2014-06-13 17:05:10 +0100 | [diff] [blame] | 59 | void cm_init(void) |
Achin Gupta | 7aea908 | 2014-02-01 07:51:28 +0000 | [diff] [blame] | 60 | { |
| 61 | /* |
| 62 | * The context management library has only global data to intialize, but |
| 63 | * that will be done when the BSS is zeroed out |
| 64 | */ |
| 65 | } |
| 66 | |
| 67 | /******************************************************************************* |
| 68 | * This function returns a pointer to the most recent 'cpu_context' structure |
Soby Mathew | b0082d2 | 2015-04-09 13:40:55 +0100 | [diff] [blame] | 69 | * for the CPU identified by `cpu_idx` that was set as the context for the |
| 70 | * specified security state. NULL is returned if no such structure has been |
| 71 | * specified. |
| 72 | ******************************************************************************/ |
| 73 | void *cm_get_context_by_index(unsigned int cpu_idx, |
| 74 | unsigned int security_state) |
| 75 | { |
| 76 | assert(sec_state_is_valid(security_state)); |
| 77 | |
| 78 | return get_cpu_data_by_index(cpu_idx, cpu_context[security_state]); |
| 79 | } |
| 80 | |
| 81 | /******************************************************************************* |
| 82 | * This function sets the pointer to the current 'cpu_context' structure for the |
| 83 | * specified security state for the CPU identified by CPU index. |
| 84 | ******************************************************************************/ |
| 85 | void cm_set_context_by_index(unsigned int cpu_idx, void *context, |
| 86 | unsigned int security_state) |
| 87 | { |
| 88 | assert(sec_state_is_valid(security_state)); |
| 89 | |
| 90 | set_cpu_data_by_index(cpu_idx, cpu_context[security_state], context); |
| 91 | } |
| 92 | |
Soby Mathew | 18a6204 | 2015-10-26 14:29:21 +0000 | [diff] [blame] | 93 | #if !ERROR_DEPRECATED |
| 94 | /* |
| 95 | * These context management helpers are deprecated but are maintained for use |
| 96 | * by SPDs which have not migrated to the new API. If ERROR_DEPRECATED |
| 97 | * is enabled, these are excluded from the build so as to force users to |
| 98 | * migrate to the new API. |
| 99 | */ |
| 100 | |
Soby Mathew | b0082d2 | 2015-04-09 13:40:55 +0100 | [diff] [blame] | 101 | /******************************************************************************* |
| 102 | * This function returns a pointer to the most recent 'cpu_context' structure |
Andrew Thoelke | a2f6553 | 2014-05-14 17:09:32 +0100 | [diff] [blame] | 103 | * for the CPU identified by MPIDR that was set as the context for the specified |
| 104 | * security state. NULL is returned if no such structure has been specified. |
Achin Gupta | 7aea908 | 2014-02-01 07:51:28 +0000 | [diff] [blame] | 105 | ******************************************************************************/ |
Andrew Thoelke | a2f6553 | 2014-05-14 17:09:32 +0100 | [diff] [blame] | 106 | void *cm_get_context_by_mpidr(uint64_t mpidr, uint32_t security_state) |
Achin Gupta | 7aea908 | 2014-02-01 07:51:28 +0000 | [diff] [blame] | 107 | { |
Juan Castillo | f558cac | 2014-06-05 09:45:36 +0100 | [diff] [blame] | 108 | assert(sec_state_is_valid(security_state)); |
Andrew Thoelke | a2f6553 | 2014-05-14 17:09:32 +0100 | [diff] [blame] | 109 | |
Soby Mathew | b0082d2 | 2015-04-09 13:40:55 +0100 | [diff] [blame] | 110 | return cm_get_context_by_index(platform_get_core_pos(mpidr), security_state); |
Andrew Thoelke | a2f6553 | 2014-05-14 17:09:32 +0100 | [diff] [blame] | 111 | } |
| 112 | |
| 113 | /******************************************************************************* |
Achin Gupta | 7aea908 | 2014-02-01 07:51:28 +0000 | [diff] [blame] | 114 | * This function sets the pointer to the current 'cpu_context' structure for the |
Andrew Thoelke | a2f6553 | 2014-05-14 17:09:32 +0100 | [diff] [blame] | 115 | * specified security state for the CPU identified by MPIDR |
Achin Gupta | 7aea908 | 2014-02-01 07:51:28 +0000 | [diff] [blame] | 116 | ******************************************************************************/ |
Andrew Thoelke | a2f6553 | 2014-05-14 17:09:32 +0100 | [diff] [blame] | 117 | void cm_set_context_by_mpidr(uint64_t mpidr, void *context, uint32_t security_state) |
Achin Gupta | 7aea908 | 2014-02-01 07:51:28 +0000 | [diff] [blame] | 118 | { |
Juan Castillo | f558cac | 2014-06-05 09:45:36 +0100 | [diff] [blame] | 119 | assert(sec_state_is_valid(security_state)); |
Achin Gupta | 7aea908 | 2014-02-01 07:51:28 +0000 | [diff] [blame] | 120 | |
Soby Mathew | b0082d2 | 2015-04-09 13:40:55 +0100 | [diff] [blame] | 121 | cm_set_context_by_index(platform_get_core_pos(mpidr), |
| 122 | context, security_state); |
Andrew Thoelke | a2f6553 | 2014-05-14 17:09:32 +0100 | [diff] [blame] | 123 | } |
Soby Mathew | 18a6204 | 2015-10-26 14:29:21 +0000 | [diff] [blame] | 124 | |
| 125 | /******************************************************************************* |
| 126 | * The following function provides a compatibility function for SPDs using the |
| 127 | * existing cm library routines. This function is expected to be invoked for |
| 128 | * initializing the cpu_context for the CPU specified by MPIDR for first use. |
| 129 | ******************************************************************************/ |
| 130 | void cm_init_context(unsigned long mpidr, const entry_point_info_t *ep) |
| 131 | { |
| 132 | if ((mpidr & MPIDR_AFFINITY_MASK) == |
| 133 | (read_mpidr_el1() & MPIDR_AFFINITY_MASK)) |
| 134 | cm_init_my_context(ep); |
| 135 | else |
| 136 | cm_init_context_by_index(platform_get_core_pos(mpidr), ep); |
| 137 | } |
| 138 | #endif |
Andrew Thoelke | a2f6553 | 2014-05-14 17:09:32 +0100 | [diff] [blame] | 139 | |
| 140 | /******************************************************************************* |
Andrew Thoelke | 4e12607 | 2014-06-04 21:10:52 +0100 | [diff] [blame] | 141 | * This function is used to program the context that's used for exception |
| 142 | * return. This initializes the SP_EL3 to a pointer to a 'cpu_context' set for |
| 143 | * the required security state |
| 144 | ******************************************************************************/ |
| 145 | static inline void cm_set_next_context(void *context) |
| 146 | { |
| 147 | #if DEBUG |
| 148 | uint64_t sp_mode; |
| 149 | |
| 150 | /* |
| 151 | * Check that this function is called with SP_EL0 as the stack |
| 152 | * pointer |
| 153 | */ |
| 154 | __asm__ volatile("mrs %0, SPSel\n" |
| 155 | : "=r" (sp_mode)); |
| 156 | |
| 157 | assert(sp_mode == MODE_SP_EL0); |
| 158 | #endif |
| 159 | |
| 160 | __asm__ volatile("msr spsel, #1\n" |
| 161 | "mov sp, %0\n" |
| 162 | "msr spsel, #0\n" |
| 163 | : : "r" (context)); |
| 164 | } |
| 165 | |
| 166 | /******************************************************************************* |
Soby Mathew | b0082d2 | 2015-04-09 13:40:55 +0100 | [diff] [blame] | 167 | * The following function initializes the cpu_context 'ctx' for |
Andrew Thoelke | 4e12607 | 2014-06-04 21:10:52 +0100 | [diff] [blame] | 168 | * first use, and sets the initial entrypoint state as specified by the |
| 169 | * entry_point_info structure. |
| 170 | * |
| 171 | * The security state to initialize is determined by the SECURE attribute |
| 172 | * of the entry_point_info. The function returns a pointer to the initialized |
| 173 | * context and sets this as the next context to return to. |
| 174 | * |
| 175 | * The EE and ST attributes are used to configure the endianess and secure |
Soby Mathew | b0082d2 | 2015-04-09 13:40:55 +0100 | [diff] [blame] | 176 | * timer availability for the new execution context. |
Andrew Thoelke | 4e12607 | 2014-06-04 21:10:52 +0100 | [diff] [blame] | 177 | * |
| 178 | * To prepare the register state for entry call cm_prepare_el3_exit() and |
| 179 | * el3_exit(). For Secure-EL1 cm_prepare_el3_exit() is equivalent to |
| 180 | * cm_e1_sysreg_context_restore(). |
| 181 | ******************************************************************************/ |
Soby Mathew | b0082d2 | 2015-04-09 13:40:55 +0100 | [diff] [blame] | 182 | static void cm_init_context_common(cpu_context_t *ctx, const entry_point_info_t *ep) |
Andrew Thoelke | 4e12607 | 2014-06-04 21:10:52 +0100 | [diff] [blame] | 183 | { |
Soby Mathew | b0082d2 | 2015-04-09 13:40:55 +0100 | [diff] [blame] | 184 | unsigned int security_state; |
Andrew Thoelke | 4e12607 | 2014-06-04 21:10:52 +0100 | [diff] [blame] | 185 | uint32_t scr_el3; |
| 186 | el3_state_t *state; |
| 187 | gp_regs_t *gp_regs; |
| 188 | unsigned long sctlr_elx; |
| 189 | |
Andrew Thoelke | 4e12607 | 2014-06-04 21:10:52 +0100 | [diff] [blame] | 190 | assert(ctx); |
| 191 | |
Soby Mathew | b0082d2 | 2015-04-09 13:40:55 +0100 | [diff] [blame] | 192 | security_state = GET_SECURITY_STATE(ep->h.attr); |
| 193 | |
Andrew Thoelke | 4e12607 | 2014-06-04 21:10:52 +0100 | [diff] [blame] | 194 | /* Clear any residual register values from the context */ |
| 195 | memset(ctx, 0, sizeof(*ctx)); |
| 196 | |
| 197 | /* |
| 198 | * Base the context SCR on the current value, adjust for entry point |
| 199 | * specific requirements and set trap bits from the IMF |
| 200 | * TODO: provide the base/global SCR bits using another mechanism? |
| 201 | */ |
| 202 | scr_el3 = read_scr(); |
| 203 | scr_el3 &= ~(SCR_NS_BIT | SCR_RW_BIT | SCR_FIQ_BIT | SCR_IRQ_BIT | |
| 204 | SCR_ST_BIT | SCR_HCE_BIT); |
| 205 | |
| 206 | if (security_state != SECURE) |
| 207 | scr_el3 |= SCR_NS_BIT; |
| 208 | |
| 209 | if (GET_RW(ep->spsr) == MODE_RW_64) |
| 210 | scr_el3 |= SCR_RW_BIT; |
| 211 | |
| 212 | if (EP_GET_ST(ep->h.attr)) |
| 213 | scr_el3 |= SCR_ST_BIT; |
| 214 | |
| 215 | scr_el3 |= get_scr_el3_from_routing_model(security_state); |
| 216 | |
| 217 | /* |
| 218 | * Set up SCTLR_ELx for the target exception level: |
| 219 | * EE bit is taken from the entrpoint attributes |
| 220 | * M, C and I bits must be zero (as required by PSCI specification) |
| 221 | * |
| 222 | * The target exception level is based on the spsr mode requested. |
| 223 | * If execution is requested to EL2 or hyp mode, HVC is enabled |
| 224 | * via SCR_EL3.HCE. |
| 225 | * |
| 226 | * Always compute the SCTLR_EL1 value and save in the cpu_context |
| 227 | * - the EL2 registers are set up by cm_preapre_ns_entry() as they |
| 228 | * are not part of the stored cpu_context |
| 229 | * |
| 230 | * TODO: In debug builds the spsr should be validated and checked |
| 231 | * against the CPU support, security state, endianess and pc |
| 232 | */ |
| 233 | sctlr_elx = EP_GET_EE(ep->h.attr) ? SCTLR_EE_BIT : 0; |
Jens Wiklander | c93c9df | 2014-09-04 10:23:27 +0200 | [diff] [blame] | 234 | if (GET_RW(ep->spsr) == MODE_RW_64) |
| 235 | sctlr_elx |= SCTLR_EL1_RES1; |
| 236 | else |
| 237 | sctlr_elx |= SCTLR_AARCH32_EL1_RES1; |
Andrew Thoelke | 4e12607 | 2014-06-04 21:10:52 +0100 | [diff] [blame] | 238 | write_ctx_reg(get_sysregs_ctx(ctx), CTX_SCTLR_EL1, sctlr_elx); |
| 239 | |
| 240 | if ((GET_RW(ep->spsr) == MODE_RW_64 |
| 241 | && GET_EL(ep->spsr) == MODE_EL2) |
| 242 | || (GET_RW(ep->spsr) != MODE_RW_64 |
| 243 | && GET_M32(ep->spsr) == MODE32_hyp)) { |
| 244 | scr_el3 |= SCR_HCE_BIT; |
| 245 | } |
| 246 | |
| 247 | /* Populate EL3 state so that we've the right context before doing ERET */ |
| 248 | state = get_el3state_ctx(ctx); |
| 249 | write_ctx_reg(state, CTX_SCR_EL3, scr_el3); |
| 250 | write_ctx_reg(state, CTX_ELR_EL3, ep->pc); |
| 251 | write_ctx_reg(state, CTX_SPSR_EL3, ep->spsr); |
| 252 | |
| 253 | /* |
| 254 | * Store the X0-X7 value from the entrypoint into the context |
| 255 | * Use memcpy as we are in control of the layout of the structures |
| 256 | */ |
| 257 | gp_regs = get_gpregs_ctx(ctx); |
| 258 | memcpy(gp_regs, (void *)&ep->args, sizeof(aapcs64_params_t)); |
| 259 | } |
| 260 | |
| 261 | /******************************************************************************* |
Soby Mathew | b0082d2 | 2015-04-09 13:40:55 +0100 | [diff] [blame] | 262 | * The following function initializes the cpu_context for a CPU specified by |
| 263 | * its `cpu_idx` for first use, and sets the initial entrypoint state as |
| 264 | * specified by the entry_point_info structure. |
| 265 | ******************************************************************************/ |
| 266 | void cm_init_context_by_index(unsigned int cpu_idx, |
| 267 | const entry_point_info_t *ep) |
| 268 | { |
| 269 | cpu_context_t *ctx; |
| 270 | ctx = cm_get_context_by_index(cpu_idx, GET_SECURITY_STATE(ep->h.attr)); |
| 271 | cm_init_context_common(ctx, ep); |
| 272 | } |
| 273 | |
| 274 | /******************************************************************************* |
| 275 | * The following function initializes the cpu_context for the current CPU |
| 276 | * for first use, and sets the initial entrypoint state as specified by the |
| 277 | * entry_point_info structure. |
| 278 | ******************************************************************************/ |
| 279 | void cm_init_my_context(const entry_point_info_t *ep) |
| 280 | { |
| 281 | cpu_context_t *ctx; |
| 282 | ctx = cm_get_context(GET_SECURITY_STATE(ep->h.attr)); |
| 283 | cm_init_context_common(ctx, ep); |
| 284 | } |
| 285 | |
| 286 | /******************************************************************************* |
Andrew Thoelke | 4e12607 | 2014-06-04 21:10:52 +0100 | [diff] [blame] | 287 | * Prepare the CPU system registers for first entry into secure or normal world |
| 288 | * |
| 289 | * If execution is requested to EL2 or hyp mode, SCTLR_EL2 is initialized |
| 290 | * If execution is requested to non-secure EL1 or svc mode, and the CPU supports |
| 291 | * EL2 then EL2 is disabled by configuring all necessary EL2 registers. |
| 292 | * For all entries, the EL1 registers are initialized from the cpu_context |
| 293 | ******************************************************************************/ |
| 294 | void cm_prepare_el3_exit(uint32_t security_state) |
| 295 | { |
| 296 | uint32_t sctlr_elx, scr_el3, cptr_el2; |
| 297 | cpu_context_t *ctx = cm_get_context(security_state); |
| 298 | |
| 299 | assert(ctx); |
| 300 | |
| 301 | if (security_state == NON_SECURE) { |
| 302 | scr_el3 = read_ctx_reg(get_el3state_ctx(ctx), CTX_SCR_EL3); |
| 303 | if (scr_el3 & SCR_HCE_BIT) { |
| 304 | /* Use SCTLR_EL1.EE value to initialise sctlr_el2 */ |
| 305 | sctlr_elx = read_ctx_reg(get_sysregs_ctx(ctx), |
| 306 | CTX_SCTLR_EL1); |
| 307 | sctlr_elx &= ~SCTLR_EE_BIT; |
| 308 | sctlr_elx |= SCTLR_EL2_RES1; |
| 309 | write_sctlr_el2(sctlr_elx); |
| 310 | } else if (read_id_aa64pfr0_el1() & |
| 311 | (ID_AA64PFR0_ELX_MASK << ID_AA64PFR0_EL2_SHIFT)) { |
| 312 | /* EL2 present but unused, need to disable safely */ |
| 313 | |
| 314 | /* HCR_EL2 = 0, except RW bit set to match SCR_EL3 */ |
| 315 | write_hcr_el2((scr_el3 & SCR_RW_BIT) ? HCR_RW_BIT : 0); |
| 316 | |
| 317 | /* SCTLR_EL2 : can be ignored when bypassing */ |
| 318 | |
| 319 | /* CPTR_EL2 : disable all traps TCPAC, TTA, TFP */ |
| 320 | cptr_el2 = read_cptr_el2(); |
| 321 | cptr_el2 &= ~(TCPAC_BIT | TTA_BIT | TFP_BIT); |
| 322 | write_cptr_el2(cptr_el2); |
| 323 | |
| 324 | /* Enable EL1 access to timer */ |
| 325 | write_cnthctl_el2(EL1PCEN_BIT | EL1PCTEN_BIT); |
| 326 | |
Soby Mathew | feddfcf | 2014-08-29 14:41:58 +0100 | [diff] [blame] | 327 | /* Reset CNTVOFF_EL2 */ |
| 328 | write_cntvoff_el2(0); |
| 329 | |
Andrew Thoelke | 4e12607 | 2014-06-04 21:10:52 +0100 | [diff] [blame] | 330 | /* Set VPIDR, VMPIDR to match MIDR, MPIDR */ |
| 331 | write_vpidr_el2(read_midr_el1()); |
| 332 | write_vmpidr_el2(read_mpidr_el1()); |
| 333 | } |
| 334 | } |
| 335 | |
| 336 | el1_sysregs_context_restore(get_sysregs_ctx(ctx)); |
| 337 | |
| 338 | cm_set_next_context(ctx); |
| 339 | } |
| 340 | |
| 341 | /******************************************************************************* |
Soby Mathew | 2ed46e9 | 2014-07-04 16:02:26 +0100 | [diff] [blame] | 342 | * The next four functions are used by runtime services to save and restore |
| 343 | * EL1 context on the 'cpu_context' structure for the specified security |
Achin Gupta | 7aea908 | 2014-02-01 07:51:28 +0000 | [diff] [blame] | 344 | * state. |
| 345 | ******************************************************************************/ |
Achin Gupta | 7aea908 | 2014-02-01 07:51:28 +0000 | [diff] [blame] | 346 | void cm_el1_sysregs_context_save(uint32_t security_state) |
| 347 | { |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 348 | cpu_context_t *ctx; |
Achin Gupta | 7aea908 | 2014-02-01 07:51:28 +0000 | [diff] [blame] | 349 | |
Andrew Thoelke | a2f6553 | 2014-05-14 17:09:32 +0100 | [diff] [blame] | 350 | ctx = cm_get_context(security_state); |
Achin Gupta | 7aea908 | 2014-02-01 07:51:28 +0000 | [diff] [blame] | 351 | assert(ctx); |
| 352 | |
| 353 | el1_sysregs_context_save(get_sysregs_ctx(ctx)); |
| 354 | } |
| 355 | |
| 356 | void cm_el1_sysregs_context_restore(uint32_t security_state) |
| 357 | { |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 358 | cpu_context_t *ctx; |
Achin Gupta | 7aea908 | 2014-02-01 07:51:28 +0000 | [diff] [blame] | 359 | |
Andrew Thoelke | a2f6553 | 2014-05-14 17:09:32 +0100 | [diff] [blame] | 360 | ctx = cm_get_context(security_state); |
Achin Gupta | 7aea908 | 2014-02-01 07:51:28 +0000 | [diff] [blame] | 361 | assert(ctx); |
| 362 | |
| 363 | el1_sysregs_context_restore(get_sysregs_ctx(ctx)); |
| 364 | } |
| 365 | |
| 366 | /******************************************************************************* |
Andrew Thoelke | 4e12607 | 2014-06-04 21:10:52 +0100 | [diff] [blame] | 367 | * This function populates ELR_EL3 member of 'cpu_context' pertaining to the |
| 368 | * given security state with the given entrypoint |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 369 | ******************************************************************************/ |
Andrew Thoelke | 4e12607 | 2014-06-04 21:10:52 +0100 | [diff] [blame] | 370 | void cm_set_elr_el3(uint32_t security_state, uint64_t entrypoint) |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 371 | { |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 372 | cpu_context_t *ctx; |
| 373 | el3_state_t *state; |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 374 | |
Andrew Thoelke | a2f6553 | 2014-05-14 17:09:32 +0100 | [diff] [blame] | 375 | ctx = cm_get_context(security_state); |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 376 | assert(ctx); |
| 377 | |
Andrew Thoelke | 4e12607 | 2014-06-04 21:10:52 +0100 | [diff] [blame] | 378 | /* Populate EL3 state so that ERET jumps to the correct entry */ |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 379 | state = get_el3state_ctx(ctx); |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 380 | write_ctx_reg(state, CTX_ELR_EL3, entrypoint); |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 381 | } |
| 382 | |
| 383 | /******************************************************************************* |
Andrew Thoelke | 4e12607 | 2014-06-04 21:10:52 +0100 | [diff] [blame] | 384 | * This function populates ELR_EL3 and SPSR_EL3 members of 'cpu_context' |
| 385 | * pertaining to the given security state |
Achin Gupta | 607084e | 2014-02-09 18:24:19 +0000 | [diff] [blame] | 386 | ******************************************************************************/ |
Andrew Thoelke | 4e12607 | 2014-06-04 21:10:52 +0100 | [diff] [blame] | 387 | void cm_set_elr_spsr_el3(uint32_t security_state, |
| 388 | uint64_t entrypoint, uint32_t spsr) |
Achin Gupta | 607084e | 2014-02-09 18:24:19 +0000 | [diff] [blame] | 389 | { |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 390 | cpu_context_t *ctx; |
| 391 | el3_state_t *state; |
Achin Gupta | 607084e | 2014-02-09 18:24:19 +0000 | [diff] [blame] | 392 | |
Andrew Thoelke | a2f6553 | 2014-05-14 17:09:32 +0100 | [diff] [blame] | 393 | ctx = cm_get_context(security_state); |
Achin Gupta | 607084e | 2014-02-09 18:24:19 +0000 | [diff] [blame] | 394 | assert(ctx); |
| 395 | |
| 396 | /* Populate EL3 state so that ERET jumps to the correct entry */ |
| 397 | state = get_el3state_ctx(ctx); |
| 398 | write_ctx_reg(state, CTX_ELR_EL3, entrypoint); |
Andrew Thoelke | 4e12607 | 2014-06-04 21:10:52 +0100 | [diff] [blame] | 399 | write_ctx_reg(state, CTX_SPSR_EL3, spsr); |
Achin Gupta | 607084e | 2014-02-09 18:24:19 +0000 | [diff] [blame] | 400 | } |
| 401 | |
| 402 | /******************************************************************************* |
Achin Gupta | 27b895e | 2014-05-04 18:38:28 +0100 | [diff] [blame] | 403 | * This function updates a single bit in the SCR_EL3 member of the 'cpu_context' |
| 404 | * pertaining to the given security state using the value and bit position |
| 405 | * specified in the parameters. It preserves all other bits. |
| 406 | ******************************************************************************/ |
| 407 | void cm_write_scr_el3_bit(uint32_t security_state, |
| 408 | uint32_t bit_pos, |
| 409 | uint32_t value) |
| 410 | { |
| 411 | cpu_context_t *ctx; |
| 412 | el3_state_t *state; |
| 413 | uint32_t scr_el3; |
| 414 | |
Andrew Thoelke | a2f6553 | 2014-05-14 17:09:32 +0100 | [diff] [blame] | 415 | ctx = cm_get_context(security_state); |
Achin Gupta | 27b895e | 2014-05-04 18:38:28 +0100 | [diff] [blame] | 416 | assert(ctx); |
| 417 | |
| 418 | /* Ensure that the bit position is a valid one */ |
| 419 | assert((1 << bit_pos) & SCR_VALID_BIT_MASK); |
| 420 | |
| 421 | /* Ensure that the 'value' is only a bit wide */ |
| 422 | assert(value <= 1); |
| 423 | |
| 424 | /* |
| 425 | * Get the SCR_EL3 value from the cpu context, clear the desired bit |
| 426 | * and set it to its new value. |
| 427 | */ |
| 428 | state = get_el3state_ctx(ctx); |
| 429 | scr_el3 = read_ctx_reg(state, CTX_SCR_EL3); |
| 430 | scr_el3 &= ~(1 << bit_pos); |
| 431 | scr_el3 |= value << bit_pos; |
| 432 | write_ctx_reg(state, CTX_SCR_EL3, scr_el3); |
| 433 | } |
| 434 | |
| 435 | /******************************************************************************* |
| 436 | * This function retrieves SCR_EL3 member of 'cpu_context' pertaining to the |
| 437 | * given security state. |
| 438 | ******************************************************************************/ |
| 439 | uint32_t cm_get_scr_el3(uint32_t security_state) |
| 440 | { |
| 441 | cpu_context_t *ctx; |
| 442 | el3_state_t *state; |
| 443 | |
Andrew Thoelke | a2f6553 | 2014-05-14 17:09:32 +0100 | [diff] [blame] | 444 | ctx = cm_get_context(security_state); |
Achin Gupta | 27b895e | 2014-05-04 18:38:28 +0100 | [diff] [blame] | 445 | assert(ctx); |
| 446 | |
| 447 | /* Populate EL3 state so that ERET jumps to the correct entry */ |
| 448 | state = get_el3state_ctx(ctx); |
| 449 | return read_ctx_reg(state, CTX_SCR_EL3); |
| 450 | } |
| 451 | |
| 452 | /******************************************************************************* |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 453 | * This function is used to program the context that's used for exception |
| 454 | * return. This initializes the SP_EL3 to a pointer to a 'cpu_context' set for |
| 455 | * the required security state |
Achin Gupta | 7aea908 | 2014-02-01 07:51:28 +0000 | [diff] [blame] | 456 | ******************************************************************************/ |
| 457 | void cm_set_next_eret_context(uint32_t security_state) |
| 458 | { |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 459 | cpu_context_t *ctx; |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 460 | |
Andrew Thoelke | a2f6553 | 2014-05-14 17:09:32 +0100 | [diff] [blame] | 461 | ctx = cm_get_context(security_state); |
Achin Gupta | 7aea908 | 2014-02-01 07:51:28 +0000 | [diff] [blame] | 462 | assert(ctx); |
| 463 | |
Andrew Thoelke | 4e12607 | 2014-06-04 21:10:52 +0100 | [diff] [blame] | 464 | cm_set_next_context(ctx); |
Achin Gupta | 7aea908 | 2014-02-01 07:51:28 +0000 | [diff] [blame] | 465 | } |