Yatharth Kochar | 5d36121 | 2016-06-28 17:07:09 +0100 | [diff] [blame] | 1 | /* |
John Powell | a5c6636 | 2020-03-20 14:21:05 -0500 | [diff] [blame] | 2 | * Copyright (c) 2016-2020, ARM Limited and Contributors. All rights reserved. |
Yatharth Kochar | 5d36121 | 2016-06-28 17:07:09 +0100 | [diff] [blame] | 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Yatharth Kochar | 5d36121 | 2016-06-28 17:07:09 +0100 | [diff] [blame] | 5 | */ |
| 6 | |
Yatharth Kochar | 5d36121 | 2016-06-28 17:07:09 +0100 | [diff] [blame] | 7 | #include <assert.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 8 | |
| 9 | #include <arch_helpers.h> |
Yatharth Kochar | 5d36121 | 2016-06-28 17:07:09 +0100 | [diff] [blame] | 10 | #include <context.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 11 | #include <common/debug.h> |
| 12 | #include <lib/el3_runtime/context_mgmt.h> |
| 13 | #include <plat/common/platform.h> |
Antonio Nino Diaz | 3c817f4 | 2018-03-21 10:49:27 +0000 | [diff] [blame] | 14 | #include <smccc_helpers.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 15 | |
Etienne Carriere | ba7c3d5 | 2017-06-07 16:41:50 +0200 | [diff] [blame] | 16 | #include "../bl1_private.h" |
Yatharth Kochar | 5d36121 | 2016-06-28 17:07:09 +0100 | [diff] [blame] | 17 | |
| 18 | /* |
| 19 | * Following arrays will be used for context management. |
| 20 | * There are 2 instances, for the Secure and Non-Secure contexts. |
| 21 | */ |
| 22 | static cpu_context_t bl1_cpu_context[2]; |
| 23 | static smc_ctx_t bl1_smc_context[2]; |
| 24 | |
| 25 | /* Following contains the next cpu context pointer. */ |
| 26 | static void *bl1_next_cpu_context_ptr; |
| 27 | |
| 28 | /* Following contains the next smc context pointer. */ |
| 29 | static void *bl1_next_smc_context_ptr; |
| 30 | |
| 31 | /* Following functions are used for SMC context handling */ |
Etienne Carriere | bfe12d3 | 2017-06-07 16:45:42 +0200 | [diff] [blame] | 32 | void *smc_get_ctx(unsigned int security_state) |
Yatharth Kochar | 5d36121 | 2016-06-28 17:07:09 +0100 | [diff] [blame] | 33 | { |
| 34 | assert(sec_state_is_valid(security_state)); |
| 35 | return &bl1_smc_context[security_state]; |
| 36 | } |
| 37 | |
Etienne Carriere | bfe12d3 | 2017-06-07 16:45:42 +0200 | [diff] [blame] | 38 | void smc_set_next_ctx(unsigned int security_state) |
Yatharth Kochar | 5d36121 | 2016-06-28 17:07:09 +0100 | [diff] [blame] | 39 | { |
| 40 | assert(sec_state_is_valid(security_state)); |
| 41 | bl1_next_smc_context_ptr = &bl1_smc_context[security_state]; |
| 42 | } |
| 43 | |
| 44 | void *smc_get_next_ctx(void) |
| 45 | { |
| 46 | return bl1_next_smc_context_ptr; |
| 47 | } |
| 48 | |
| 49 | /* Following functions are used for CPU context handling */ |
| 50 | void *cm_get_context(uint32_t security_state) |
| 51 | { |
| 52 | assert(sec_state_is_valid(security_state)); |
| 53 | return &bl1_cpu_context[security_state]; |
| 54 | } |
| 55 | |
John Powell | a5c6636 | 2020-03-20 14:21:05 -0500 | [diff] [blame] | 56 | void cm_set_next_context(void *context) |
Yatharth Kochar | 5d36121 | 2016-06-28 17:07:09 +0100 | [diff] [blame] | 57 | { |
John Powell | a5c6636 | 2020-03-20 14:21:05 -0500 | [diff] [blame] | 58 | assert(context != NULL); |
| 59 | bl1_next_cpu_context_ptr = context; |
Yatharth Kochar | 5d36121 | 2016-06-28 17:07:09 +0100 | [diff] [blame] | 60 | } |
| 61 | |
| 62 | void *cm_get_next_context(void) |
| 63 | { |
| 64 | return bl1_next_cpu_context_ptr; |
| 65 | } |
| 66 | |
| 67 | /******************************************************************************* |
| 68 | * Following function copies GP regs r0-r4, lr and spsr, |
| 69 | * from the CPU context to the SMC context structures. |
| 70 | ******************************************************************************/ |
| 71 | static void copy_cpu_ctx_to_smc_ctx(const regs_t *cpu_reg_ctx, |
| 72 | smc_ctx_t *next_smc_ctx) |
| 73 | { |
| 74 | next_smc_ctx->r0 = read_ctx_reg(cpu_reg_ctx, CTX_GPREG_R0); |
| 75 | next_smc_ctx->r1 = read_ctx_reg(cpu_reg_ctx, CTX_GPREG_R1); |
| 76 | next_smc_ctx->r2 = read_ctx_reg(cpu_reg_ctx, CTX_GPREG_R2); |
| 77 | next_smc_ctx->r3 = read_ctx_reg(cpu_reg_ctx, CTX_GPREG_R3); |
| 78 | next_smc_ctx->lr_mon = read_ctx_reg(cpu_reg_ctx, CTX_LR); |
| 79 | next_smc_ctx->spsr_mon = read_ctx_reg(cpu_reg_ctx, CTX_SPSR); |
Soby Mathew | f3e3a43 | 2017-03-30 14:42:54 +0100 | [diff] [blame] | 80 | next_smc_ctx->scr = read_ctx_reg(cpu_reg_ctx, CTX_SCR); |
Yatharth Kochar | 5d36121 | 2016-06-28 17:07:09 +0100 | [diff] [blame] | 81 | } |
| 82 | |
| 83 | /******************************************************************************* |
| 84 | * Following function flushes the SMC & CPU context pointer and its data. |
| 85 | ******************************************************************************/ |
| 86 | static void flush_smc_and_cpu_ctx(void) |
| 87 | { |
| 88 | flush_dcache_range((uintptr_t)&bl1_next_smc_context_ptr, |
| 89 | sizeof(bl1_next_smc_context_ptr)); |
| 90 | flush_dcache_range((uintptr_t)bl1_next_smc_context_ptr, |
| 91 | sizeof(smc_ctx_t)); |
| 92 | |
| 93 | flush_dcache_range((uintptr_t)&bl1_next_cpu_context_ptr, |
| 94 | sizeof(bl1_next_cpu_context_ptr)); |
| 95 | flush_dcache_range((uintptr_t)bl1_next_cpu_context_ptr, |
| 96 | sizeof(cpu_context_t)); |
| 97 | } |
| 98 | |
| 99 | /******************************************************************************* |
| 100 | * This function prepares the context for Secure/Normal world images. |
| 101 | * Normal world images are transitioned to HYP(if supported) else SVC. |
| 102 | ******************************************************************************/ |
| 103 | void bl1_prepare_next_image(unsigned int image_id) |
| 104 | { |
John Tsichritzis | a533ae7 | 2019-07-01 14:27:33 +0100 | [diff] [blame] | 105 | unsigned int security_state, mode = MODE32_svc; |
John Powell | a5c6636 | 2020-03-20 14:21:05 -0500 | [diff] [blame] | 106 | image_desc_t *desc; |
Yatharth Kochar | 5d36121 | 2016-06-28 17:07:09 +0100 | [diff] [blame] | 107 | entry_point_info_t *next_bl_ep; |
| 108 | |
| 109 | /* Get the image descriptor. */ |
John Powell | a5c6636 | 2020-03-20 14:21:05 -0500 | [diff] [blame] | 110 | desc = bl1_plat_get_image_desc(image_id); |
| 111 | assert(desc != NULL); |
Yatharth Kochar | 5d36121 | 2016-06-28 17:07:09 +0100 | [diff] [blame] | 112 | |
| 113 | /* Get the entry point info. */ |
John Powell | a5c6636 | 2020-03-20 14:21:05 -0500 | [diff] [blame] | 114 | next_bl_ep = &desc->ep_info; |
Yatharth Kochar | 5d36121 | 2016-06-28 17:07:09 +0100 | [diff] [blame] | 115 | |
| 116 | /* Get the image security state. */ |
| 117 | security_state = GET_SECURITY_STATE(next_bl_ep->h.attr); |
| 118 | |
| 119 | /* Prepare the SPSR for the next BL image. */ |
John Powell | a5c6636 | 2020-03-20 14:21:05 -0500 | [diff] [blame] | 120 | if ((security_state != SECURE) && (GET_VIRT_EXT(read_id_pfr1()) != 0U)) { |
John Tsichritzis | a533ae7 | 2019-07-01 14:27:33 +0100 | [diff] [blame] | 121 | mode = MODE32_hyp; |
Yatharth Kochar | 5d36121 | 2016-06-28 17:07:09 +0100 | [diff] [blame] | 122 | } |
| 123 | |
John Tsichritzis | a533ae7 | 2019-07-01 14:27:33 +0100 | [diff] [blame] | 124 | next_bl_ep->spsr = SPSR_MODE32(mode, SPSR_T_ARM, |
| 125 | SPSR_E_LITTLE, DISABLE_ALL_EXCEPTIONS); |
| 126 | |
Yatharth Kochar | 5d36121 | 2016-06-28 17:07:09 +0100 | [diff] [blame] | 127 | /* Allow platform to make change */ |
| 128 | bl1_plat_set_ep_info(image_id, next_bl_ep); |
| 129 | |
| 130 | /* Prepare the cpu context for the next BL image. */ |
| 131 | cm_init_my_context(next_bl_ep); |
| 132 | cm_prepare_el3_exit(security_state); |
| 133 | cm_set_next_context(cm_get_context(security_state)); |
| 134 | |
| 135 | /* Prepare the smc context for the next BL image. */ |
| 136 | smc_set_next_ctx(security_state); |
| 137 | copy_cpu_ctx_to_smc_ctx(get_regs_ctx(cm_get_next_context()), |
| 138 | smc_get_next_ctx()); |
| 139 | |
| 140 | /* |
Soby Mathew | f3e3a43 | 2017-03-30 14:42:54 +0100 | [diff] [blame] | 141 | * If the next image is non-secure, then we need to program the banked |
| 142 | * non secure sctlr. This is not required when the next image is secure |
| 143 | * because in AArch32, we expect the secure world to have the same |
| 144 | * SCTLR settings. |
| 145 | */ |
| 146 | if (security_state == NON_SECURE) { |
| 147 | cpu_context_t *ctx = cm_get_context(security_state); |
| 148 | u_register_t ns_sctlr; |
| 149 | |
| 150 | /* Temporarily set the NS bit to access NS SCTLR */ |
| 151 | write_scr(read_scr() | SCR_NS_BIT); |
| 152 | isb(); |
| 153 | |
| 154 | ns_sctlr = read_ctx_reg(get_regs_ctx(ctx), CTX_NS_SCTLR); |
| 155 | write_sctlr(ns_sctlr); |
| 156 | isb(); |
| 157 | |
| 158 | write_scr(read_scr() & ~SCR_NS_BIT); |
| 159 | isb(); |
| 160 | } |
| 161 | |
| 162 | /* |
Yatharth Kochar | 5d36121 | 2016-06-28 17:07:09 +0100 | [diff] [blame] | 163 | * Flush the SMC & CPU context and the (next)pointers, |
| 164 | * to access them after caches are disabled. |
| 165 | */ |
| 166 | flush_smc_and_cpu_ctx(); |
| 167 | |
| 168 | /* Indicate that image is in execution state. */ |
John Powell | a5c6636 | 2020-03-20 14:21:05 -0500 | [diff] [blame] | 169 | desc->state = IMAGE_STATE_EXECUTED; |
Yatharth Kochar | 5d36121 | 2016-06-28 17:07:09 +0100 | [diff] [blame] | 170 | |
| 171 | print_entry_point_info(next_bl_ep); |
| 172 | } |