blob: ad0a1206d0d927f09378ba9a8fcb24e68fe7da3d [file] [log] [blame]
Soby Mathew748be1d2016-05-05 14:10:46 +01001/*
Antonio Nino Diaz3c817f42018-03-21 10:49:27 +00002 * Copyright (c) 2016-2018, ARM Limited and Contributors. All rights reserved.
Soby Mathew748be1d2016-05-05 14:10:46 +01003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Soby Mathew748be1d2016-05-05 14:10:46 +01005 */
6
Dimitris Papastamosdda48b02017-10-17 14:03:14 +01007#include <amu.h>
Soby Mathew748be1d2016-05-05 14:10:46 +01008#include <arch.h>
9#include <arch_helpers.h>
10#include <assert.h>
11#include <bl_common.h>
12#include <context.h>
13#include <context_mgmt.h>
14#include <platform.h>
15#include <platform_def.h>
Antonio Nino Diaz3c817f42018-03-21 10:49:27 +000016#include <smccc_helpers.h>
Antonio Nino Diaz033b4bb2018-10-25 16:52:26 +010017#include <stdbool.h>
Soby Mathew748be1d2016-05-05 14:10:46 +010018#include <string.h>
Douglas Raillarda8954fc2017-01-26 15:54:44 +000019#include <utils.h>
Soby Mathew748be1d2016-05-05 14:10:46 +010020
21/*******************************************************************************
22 * Context management library initialisation routine. This library is used by
23 * runtime services to share pointers to 'cpu_context' structures for the secure
24 * and non-secure states. Management of the structures and their associated
25 * memory is not done by the context management library e.g. the PSCI service
26 * manages the cpu context used for entry from and exit to the non-secure state.
27 * The Secure payload manages the context(s) corresponding to the secure state.
28 * It also uses this library to get access to the non-secure
29 * state cpu context pointers.
30 ******************************************************************************/
31void cm_init(void)
32{
33 /*
34 * The context management library has only global data to initialize, but
35 * that will be done when the BSS is zeroed out
36 */
37}
38
39/*******************************************************************************
40 * The following function initializes the cpu_context 'ctx' for
41 * first use, and sets the initial entrypoint state as specified by the
42 * entry_point_info structure.
43 *
44 * The security state to initialize is determined by the SECURE attribute
Antonio Nino Diaz28dce9e2018-05-22 10:09:10 +010045 * of the entry_point_info.
Soby Mathew748be1d2016-05-05 14:10:46 +010046 *
47 * The EE and ST attributes are used to configure the endianness and secure
48 * timer availability for the new execution context.
49 *
50 * To prepare the register state for entry call cm_prepare_el3_exit() and
51 * el3_exit(). For Secure-EL1 cm_prepare_el3_exit() is equivalent to
52 * cm_e1_sysreg_context_restore().
53 ******************************************************************************/
Antonio Nino Diaz28dce9e2018-05-22 10:09:10 +010054void cm_setup_context(cpu_context_t *ctx, const entry_point_info_t *ep)
Soby Mathew748be1d2016-05-05 14:10:46 +010055{
56 unsigned int security_state;
57 uint32_t scr, sctlr;
58 regs_t *reg_ctx;
59
Antonio Nino Diaz864ca6f2018-10-31 15:25:35 +000060 assert(ctx != NULL);
Soby Mathew748be1d2016-05-05 14:10:46 +010061
62 security_state = GET_SECURITY_STATE(ep->h.attr);
63
64 /* Clear any residual register values from the context */
Douglas Raillarda8954fc2017-01-26 15:54:44 +000065 zeromem(ctx, sizeof(*ctx));
Soby Mathew748be1d2016-05-05 14:10:46 +010066
Soby Mathewb4a970a2016-08-31 12:34:33 +010067 reg_ctx = get_regs_ctx(ctx);
68
Soby Mathew748be1d2016-05-05 14:10:46 +010069 /*
70 * Base the context SCR on the current value, adjust for entry point
71 * specific requirements
72 */
73 scr = read_scr();
74 scr &= ~(SCR_NS_BIT | SCR_HCE_BIT);
75
76 if (security_state != SECURE)
77 scr |= SCR_NS_BIT;
78
Soby Mathew748be1d2016-05-05 14:10:46 +010079 if (security_state != SECURE) {
Soby Mathewa993c422016-09-29 14:15:57 +010080 /*
David Cunadofee86532017-04-13 22:38:29 +010081 * Set up SCTLR for the Non-secure context.
82 *
83 * SCTLR.EE: Endianness is taken from the entrypoint attributes.
84 *
85 * SCTLR.M, SCTLR.C and SCTLR.I: These fields must be zero (as
86 * required by PSCI specification)
87 *
88 * Set remaining SCTLR fields to their architecturally defined
89 * values. Some fields reset to an IMPLEMENTATION DEFINED value:
90 *
91 * SCTLR.TE: Set to zero so that exceptions to an Exception
92 * Level executing at PL1 are taken to A32 state.
93 *
94 * SCTLR.V: Set to zero to select the normal exception vectors
95 * with base address held in VBAR.
Soby Mathewa993c422016-09-29 14:15:57 +010096 */
David Cunadofee86532017-04-13 22:38:29 +010097 assert(((ep->spsr >> SPSR_E_SHIFT) & SPSR_E_MASK) ==
98 (EP_GET_EE(ep->h.attr) >> EP_EE_SHIFT));
99
Antonio Nino Diaz864ca6f2018-10-31 15:25:35 +0000100 sctlr = (EP_GET_EE(ep->h.attr) != 0U) ? SCTLR_EE_BIT : 0U;
David Cunadofee86532017-04-13 22:38:29 +0100101 sctlr |= (SCTLR_RESET_VAL & ~(SCTLR_TE_BIT | SCTLR_V_BIT));
Soby Mathew748be1d2016-05-05 14:10:46 +0100102 write_ctx_reg(reg_ctx, CTX_NS_SCTLR, sctlr);
103 }
104
David Cunadofee86532017-04-13 22:38:29 +0100105 /*
106 * The target exception level is based on the spsr mode requested. If
107 * execution is requested to hyp mode, HVC is enabled via SCR.HCE.
108 */
Soby Mathew748be1d2016-05-05 14:10:46 +0100109 if (GET_M32(ep->spsr) == MODE32_hyp)
110 scr |= SCR_HCE_BIT;
111
David Cunadofee86532017-04-13 22:38:29 +0100112 /*
113 * Store the initialised values for SCTLR and SCR in the cpu_context.
114 * The Hyp mode registers are not part of the saved context and are
115 * set-up in cm_prepare_el3_exit().
116 */
Soby Mathew748be1d2016-05-05 14:10:46 +0100117 write_ctx_reg(reg_ctx, CTX_SCR, scr);
118 write_ctx_reg(reg_ctx, CTX_LR, ep->pc);
119 write_ctx_reg(reg_ctx, CTX_SPSR, ep->spsr);
120
121 /*
122 * Store the r0-r3 value from the entrypoint into the context
123 * Use memcpy as we are in control of the layout of the structures
124 */
125 memcpy((void *)reg_ctx, (void *)&ep->args, sizeof(aapcs32_params_t));
126}
127
128/*******************************************************************************
Dimitris Papastamos1e6f93e2017-11-07 09:55:29 +0000129 * Enable architecture extensions on first entry to Non-secure world.
130 * When EL2 is implemented but unused `el2_unused` is non-zero, otherwise
131 * it is zero.
132 ******************************************************************************/
Antonio Nino Diaz033b4bb2018-10-25 16:52:26 +0100133static void enable_extensions_nonsecure(bool el2_unused)
Dimitris Papastamos1e6f93e2017-11-07 09:55:29 +0000134{
135#if IMAGE_BL32
Dimitris Papastamosdda48b02017-10-17 14:03:14 +0100136#if ENABLE_AMU
137 amu_enable(el2_unused);
138#endif
Dimitris Papastamos1e6f93e2017-11-07 09:55:29 +0000139#endif
140}
141
142/*******************************************************************************
Soby Mathew748be1d2016-05-05 14:10:46 +0100143 * The following function initializes the cpu_context for a CPU specified by
144 * its `cpu_idx` for first use, and sets the initial entrypoint state as
145 * specified by the entry_point_info structure.
146 ******************************************************************************/
147void cm_init_context_by_index(unsigned int cpu_idx,
148 const entry_point_info_t *ep)
149{
150 cpu_context_t *ctx;
151 ctx = cm_get_context_by_index(cpu_idx, GET_SECURITY_STATE(ep->h.attr));
Antonio Nino Diaz28dce9e2018-05-22 10:09:10 +0100152 cm_setup_context(ctx, ep);
Soby Mathew748be1d2016-05-05 14:10:46 +0100153}
154
155/*******************************************************************************
156 * The following function initializes the cpu_context for the current CPU
157 * for first use, and sets the initial entrypoint state as specified by the
158 * entry_point_info structure.
159 ******************************************************************************/
160void cm_init_my_context(const entry_point_info_t *ep)
161{
162 cpu_context_t *ctx;
163 ctx = cm_get_context(GET_SECURITY_STATE(ep->h.attr));
Antonio Nino Diaz28dce9e2018-05-22 10:09:10 +0100164 cm_setup_context(ctx, ep);
Soby Mathew748be1d2016-05-05 14:10:46 +0100165}
166
167/*******************************************************************************
168 * Prepare the CPU system registers for first entry into secure or normal world
169 *
170 * If execution is requested to hyp mode, HSCTLR is initialized
171 * If execution is requested to non-secure PL1, and the CPU supports
172 * HYP mode then HYP mode is disabled by configuring all necessary HYP mode
173 * registers.
174 ******************************************************************************/
175void cm_prepare_el3_exit(uint32_t security_state)
176{
David Cunadofee86532017-04-13 22:38:29 +0100177 uint32_t hsctlr, scr;
Soby Mathew748be1d2016-05-05 14:10:46 +0100178 cpu_context_t *ctx = cm_get_context(security_state);
Antonio Nino Diaz033b4bb2018-10-25 16:52:26 +0100179 bool el2_unused = false;
Soby Mathew748be1d2016-05-05 14:10:46 +0100180
Antonio Nino Diaz864ca6f2018-10-31 15:25:35 +0000181 assert(ctx != NULL);
Soby Mathew748be1d2016-05-05 14:10:46 +0100182
183 if (security_state == NON_SECURE) {
184 scr = read_ctx_reg(get_regs_ctx(ctx), CTX_SCR);
Antonio Nino Diaz864ca6f2018-10-31 15:25:35 +0000185 if ((scr & SCR_HCE_BIT) != 0U) {
Soby Mathew748be1d2016-05-05 14:10:46 +0100186 /* Use SCTLR value to initialize HSCTLR */
David Cunadofee86532017-04-13 22:38:29 +0100187 hsctlr = read_ctx_reg(get_regs_ctx(ctx),
Soby Mathew748be1d2016-05-05 14:10:46 +0100188 CTX_NS_SCTLR);
David Cunadofee86532017-04-13 22:38:29 +0100189 hsctlr |= HSCTLR_RES1;
Soby Mathew748be1d2016-05-05 14:10:46 +0100190 /* Temporarily set the NS bit to access HSCTLR */
191 write_scr(read_scr() | SCR_NS_BIT);
192 /*
193 * Make sure the write to SCR is complete so that
194 * we can access HSCTLR
195 */
196 isb();
David Cunadofee86532017-04-13 22:38:29 +0100197 write_hsctlr(hsctlr);
Soby Mathew748be1d2016-05-05 14:10:46 +0100198 isb();
199
200 write_scr(read_scr() & ~SCR_NS_BIT);
201 isb();
Antonio Nino Diaz864ca6f2018-10-31 15:25:35 +0000202 } else if ((read_id_pfr1() &
203 (ID_PFR1_VIRTEXT_MASK << ID_PFR1_VIRTEXT_SHIFT)) != 0U) {
Antonio Nino Diaz033b4bb2018-10-25 16:52:26 +0100204 el2_unused = true;
Dimitris Papastamos1e6f93e2017-11-07 09:55:29 +0000205
David Cunado5f55e282016-10-31 17:37:34 +0000206 /*
207 * Set the NS bit to access NS copies of certain banked
208 * registers
209 */
Soby Mathew748be1d2016-05-05 14:10:46 +0100210 write_scr(read_scr() | SCR_NS_BIT);
211 isb();
212
David Cunadofee86532017-04-13 22:38:29 +0100213 /*
214 * Hyp / PL2 present but unused, need to disable safely.
215 * HSCTLR can be ignored in this case.
216 *
217 * Set HCR to its architectural reset value so that
218 * Non-secure operations do not trap to Hyp mode.
219 */
220 write_hcr(HCR_RESET_VAL);
Soby Mathew748be1d2016-05-05 14:10:46 +0100221
David Cunadofee86532017-04-13 22:38:29 +0100222 /*
223 * Set HCPTR to its architectural reset value so that
224 * Non-secure access from EL1 or EL0 to trace and to
225 * Advanced SIMD and floating point functionality does
226 * not trap to Hyp mode.
227 */
228 write_hcptr(HCPTR_RESET_VAL);
Soby Mathew748be1d2016-05-05 14:10:46 +0100229
David Cunadofee86532017-04-13 22:38:29 +0100230 /*
231 * Initialise CNTHCTL. All fields are architecturally
232 * UNKNOWN on reset and are set to zero except for
233 * field(s) listed below.
234 *
235 * CNTHCTL.PL1PCEN: Disable traps to Hyp mode of
236 * Non-secure EL0 and EL1 accessed to the physical
237 * timer registers.
238 *
239 * CNTHCTL.PL1PCTEN: Disable traps to Hyp mode of
240 * Non-secure EL0 and EL1 accessed to the physical
241 * counter registers.
242 */
243 write_cnthctl(CNTHCTL_RESET_VAL |
244 PL1PCEN_BIT | PL1PCTEN_BIT);
Soby Mathew748be1d2016-05-05 14:10:46 +0100245
David Cunadofee86532017-04-13 22:38:29 +0100246 /*
247 * Initialise CNTVOFF to zero as it resets to an
248 * IMPLEMENTATION DEFINED value.
249 */
Soby Mathew748be1d2016-05-05 14:10:46 +0100250 write64_cntvoff(0);
251
David Cunadofee86532017-04-13 22:38:29 +0100252 /*
253 * Set VPIDR and VMPIDR to match MIDR_EL1 and MPIDR
254 * respectively.
255 */
Soby Mathew748be1d2016-05-05 14:10:46 +0100256 write_vpidr(read_midr());
257 write_vmpidr(read_mpidr());
258
259 /*
David Cunadofee86532017-04-13 22:38:29 +0100260 * Initialise VTTBR, setting all fields rather than
261 * relying on the hw. Some fields are architecturally
262 * UNKNOWN at reset.
263 *
264 * VTTBR.VMID: Set to zero which is the architecturally
265 * defined reset value. Even though EL1&0 stage 2
266 * address translation is disabled, cache maintenance
267 * operations depend on the VMID.
268 *
269 * VTTBR.BADDR: Set to zero as EL1&0 stage 2 address
270 * translation is disabled.
Soby Mathew748be1d2016-05-05 14:10:46 +0100271 */
David Cunadofee86532017-04-13 22:38:29 +0100272 write64_vttbr(VTTBR_RESET_VAL &
273 ~((VTTBR_VMID_MASK << VTTBR_VMID_SHIFT)
274 | (VTTBR_BADDR_MASK << VTTBR_BADDR_SHIFT)));
David Cunado5f55e282016-10-31 17:37:34 +0000275
276 /*
David Cunadofee86532017-04-13 22:38:29 +0100277 * Initialise HDCR, setting all the fields rather than
278 * relying on hw.
279 *
280 * HDCR.HPMN: Set to value of PMCR.N which is the
281 * architecturally-defined reset value.
David Cunado5f55e282016-10-31 17:37:34 +0000282 */
David Cunadofee86532017-04-13 22:38:29 +0100283 write_hdcr(HDCR_RESET_VAL |
284 ((read_pmcr() & PMCR_N_BITS) >> PMCR_N_SHIFT));
David Cunadoc14b08e2016-11-25 00:21:59 +0000285
286 /*
David Cunadofee86532017-04-13 22:38:29 +0100287 * Set HSTR to its architectural reset value so that
288 * access to system registers in the cproc=1111
289 * encoding space do not trap to Hyp mode.
290 */
291 write_hstr(HSTR_RESET_VAL);
292 /*
293 * Set CNTHP_CTL to its architectural reset value to
294 * disable the EL2 physical timer and prevent timer
295 * interrupts. Some fields are architecturally UNKNOWN
296 * on reset and are set to zero.
David Cunadoc14b08e2016-11-25 00:21:59 +0000297 */
David Cunadofee86532017-04-13 22:38:29 +0100298 write_cnthp_ctl(CNTHP_CTL_RESET_VAL);
Soby Mathew748be1d2016-05-05 14:10:46 +0100299 isb();
300
301 write_scr(read_scr() & ~SCR_NS_BIT);
302 isb();
303 }
Dimitris Papastamos1e6f93e2017-11-07 09:55:29 +0000304 enable_extensions_nonsecure(el2_unused);
Soby Mathew748be1d2016-05-05 14:10:46 +0100305 }
306}