blob: 61feaeca5c00fc5aa2b9522d138ad8fd4f16147b [file] [log] [blame]
Soby Mathewc11ba852016-05-05 14:32:05 +01001/*
Chris Kay758ccb82024-03-08 16:08:31 +00002 * Copyright (c) 2016-2024, Arm Limited and Contributors. All rights reserved.
Soby Mathewc11ba852016-05-05 14:32:05 +01003 *
dp-arm82cb2c12017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Soby Mathewc11ba852016-05-05 14:32:05 +01005 */
6
Soby Mathewc11ba852016-05-05 14:32:05 +01007#include <assert.h>
Soby Mathewc11ba852016-05-05 14:32:05 +01008#include <stddef.h>
9#include <stdint.h>
10#include <string.h>
Antonio Nino Diaz09d40e02018-12-14 00:18:21 +000011
12#include <platform_def.h>
13
14#include <arch.h>
15#include <arch_helpers.h>
16#include <common/bl_common.h>
Chris Kay758ccb82024-03-08 16:08:31 +000017#include <common/build_message.h>
Antonio Nino Diaz09d40e02018-12-14 00:18:21 +000018#include <common/debug.h>
19#include <common/runtime_svc.h>
20#include <context.h>
21#include <drivers/console.h>
22#include <lib/el3_runtime/context_mgmt.h>
Bence Szépkúti0531ada2019-11-07 12:09:24 +010023#include <lib/pmf/pmf.h>
Antonio Nino Diaz09d40e02018-12-14 00:18:21 +000024#include <lib/psci/psci.h>
Bence Szépkúti0531ada2019-11-07 12:09:24 +010025#include <lib/runtime_instr.h>
Antonio Nino Diaz09d40e02018-12-14 00:18:21 +000026#include <lib/utils.h>
27#include <plat/common/platform.h>
28#include <platform_sp_min.h>
29#include <services/std_svc.h>
30#include <smccc_helpers.h>
31
Soby Mathewc11ba852016-05-05 14:32:05 +010032#include "sp_min_private.h"
33
Bence Szépkúti0531ada2019-11-07 12:09:24 +010034#if ENABLE_RUNTIME_INSTRUMENTATION
35PMF_REGISTER_SERVICE_SMC(rt_instr_svc, PMF_RT_INSTR_SVC_ID,
36 RT_INSTR_TOTAL_IDS, PMF_STORE_ENABLE)
37#endif
38
Soby Mathewc11ba852016-05-05 14:32:05 +010039/* Pointers to per-core cpu contexts */
40static void *sp_min_cpu_ctx_ptr[PLATFORM_CORE_COUNT];
41
42/* SP_MIN only stores the non secure smc context */
43static smc_ctx_t sp_min_smc_context[PLATFORM_CORE_COUNT];
44
45/******************************************************************************
Paul Beesley8aabea32019-01-11 18:26:51 +000046 * Define the smccc helper library APIs
Soby Mathewc11ba852016-05-05 14:32:05 +010047 *****************************************************************************/
Etienne Carriere55074082017-06-07 16:45:42 +020048void *smc_get_ctx(unsigned int security_state)
Soby Mathewc11ba852016-05-05 14:32:05 +010049{
50 assert(security_state == NON_SECURE);
51 return &sp_min_smc_context[plat_my_core_pos()];
52}
53
Etienne Carriere55074082017-06-07 16:45:42 +020054void smc_set_next_ctx(unsigned int security_state)
Soby Mathewc11ba852016-05-05 14:32:05 +010055{
56 assert(security_state == NON_SECURE);
57 /* SP_MIN stores only non secure smc context. Nothing to do here */
58}
59
60void *smc_get_next_ctx(void)
61{
62 return &sp_min_smc_context[plat_my_core_pos()];
63}
64
65/*******************************************************************************
66 * This function returns a pointer to the most recent 'cpu_context' structure
67 * for the calling CPU that was set as the context for the specified security
68 * state. NULL is returned if no such structure has been specified.
69 ******************************************************************************/
70void *cm_get_context(uint32_t security_state)
71{
72 assert(security_state == NON_SECURE);
73 return sp_min_cpu_ctx_ptr[plat_my_core_pos()];
74}
75
76/*******************************************************************************
77 * This function sets the pointer to the current 'cpu_context' structure for the
78 * specified security state for the calling CPU
79 ******************************************************************************/
80void cm_set_context(void *context, uint32_t security_state)
81{
82 assert(security_state == NON_SECURE);
83 sp_min_cpu_ctx_ptr[plat_my_core_pos()] = context;
84}
85
86/*******************************************************************************
87 * This function returns a pointer to the most recent 'cpu_context' structure
88 * for the CPU identified by `cpu_idx` that was set as the context for the
89 * specified security state. NULL is returned if no such structure has been
90 * specified.
91 ******************************************************************************/
92void *cm_get_context_by_index(unsigned int cpu_idx,
93 unsigned int security_state)
94{
95 assert(security_state == NON_SECURE);
96 return sp_min_cpu_ctx_ptr[cpu_idx];
97}
98
99/*******************************************************************************
100 * This function sets the pointer to the current 'cpu_context' structure for the
101 * specified security state for the CPU identified by CPU index.
102 ******************************************************************************/
103void cm_set_context_by_index(unsigned int cpu_idx, void *context,
104 unsigned int security_state)
105{
106 assert(security_state == NON_SECURE);
107 sp_min_cpu_ctx_ptr[cpu_idx] = context;
108}
109
110static void copy_cpu_ctx_to_smc_stx(const regs_t *cpu_reg_ctx,
111 smc_ctx_t *next_smc_ctx)
112{
113 next_smc_ctx->r0 = read_ctx_reg(cpu_reg_ctx, CTX_GPREG_R0);
Manish Pandeyed2c4f42018-11-02 13:28:25 +0000114 next_smc_ctx->r1 = read_ctx_reg(cpu_reg_ctx, CTX_GPREG_R1);
115 next_smc_ctx->r2 = read_ctx_reg(cpu_reg_ctx, CTX_GPREG_R2);
Soby Mathewc11ba852016-05-05 14:32:05 +0100116 next_smc_ctx->lr_mon = read_ctx_reg(cpu_reg_ctx, CTX_LR);
117 next_smc_ctx->spsr_mon = read_ctx_reg(cpu_reg_ctx, CTX_SPSR);
Soby Mathewb6285d62017-03-30 14:42:54 +0100118 next_smc_ctx->scr = read_ctx_reg(cpu_reg_ctx, CTX_SCR);
Soby Mathewc11ba852016-05-05 14:32:05 +0100119}
120
121/*******************************************************************************
122 * This function invokes the PSCI library interface to initialize the
123 * non secure cpu context and copies the relevant cpu context register values
124 * to smc context. These registers will get programmed during `smc_exit`.
125 ******************************************************************************/
126static void sp_min_prepare_next_image_entry(void)
127{
128 entry_point_info_t *next_image_info;
Soby Mathewb6285d62017-03-30 14:42:54 +0100129 cpu_context_t *ctx = cm_get_context(NON_SECURE);
130 u_register_t ns_sctlr;
Soby Mathewc11ba852016-05-05 14:32:05 +0100131
132 /* Program system registers to proceed to non-secure */
133 next_image_info = sp_min_plat_get_bl33_ep_info();
134 assert(next_image_info);
135 assert(NON_SECURE == GET_SECURITY_STATE(next_image_info->h.attr));
136
137 INFO("SP_MIN: Preparing exit to normal world\n");
Stephan Gerhold94e1be22023-04-02 16:05:58 +0200138 print_entry_point_info(next_image_info);
Soby Mathewc11ba852016-05-05 14:32:05 +0100139
140 psci_prepare_next_non_secure_ctx(next_image_info);
141 smc_set_next_ctx(NON_SECURE);
142
143 /* Copy r0, lr and spsr from cpu context to SMC context */
144 copy_cpu_ctx_to_smc_stx(get_regs_ctx(cm_get_context(NON_SECURE)),
145 smc_get_next_ctx());
Soby Mathewb6285d62017-03-30 14:42:54 +0100146
147 /* Temporarily set the NS bit to access NS SCTLR */
148 write_scr(read_scr() | SCR_NS_BIT);
149 isb();
150 ns_sctlr = read_ctx_reg(get_regs_ctx(ctx), CTX_NS_SCTLR);
151 write_sctlr(ns_sctlr);
152 isb();
153
154 write_scr(read_scr() & ~SCR_NS_BIT);
155 isb();
Soby Mathewc11ba852016-05-05 14:32:05 +0100156}
157
158/******************************************************************************
Soby Mathew58e946a2016-09-19 17:21:15 +0100159 * Implement the ARM Standard Service function to get arguments for a
160 * particular service.
161 *****************************************************************************/
162uintptr_t get_arm_std_svc_args(unsigned int svc_mask)
163{
164 /* Setup the arguments for PSCI Library */
165 DEFINE_STATIC_PSCI_LIB_ARGS_V1(psci_args, sp_min_warm_entrypoint);
166
167 /* PSCI is the only ARM Standard Service implemented */
168 assert(svc_mask == PSCI_FID_MASK);
169
170 return (uintptr_t)&psci_args;
171}
172
173/******************************************************************************
Soby Mathewc11ba852016-05-05 14:32:05 +0100174 * The SP_MIN main function. Do the platform and PSCI Library setup. Also
175 * initialize the runtime service framework.
176 *****************************************************************************/
177void sp_min_main(void)
178{
Chris Kay758ccb82024-03-08 16:08:31 +0000179 NOTICE("SP_MIN: %s\n", build_version_string);
Soby Mathewf426fc02016-09-13 14:19:08 +0100180 NOTICE("SP_MIN: %s\n", build_message);
181
182 /* Perform the SP_MIN platform setup */
Soby Mathewc11ba852016-05-05 14:32:05 +0100183 sp_min_platform_setup();
184
Soby Mathew58e946a2016-09-19 17:21:15 +0100185 /* Initialize the runtime services e.g. psci */
Soby Mathewc11ba852016-05-05 14:32:05 +0100186 INFO("SP_MIN: Initializing runtime services\n");
187 runtime_svc_init();
188
189 /*
190 * We are ready to enter the next EL. Prepare entry into the image
191 * corresponding to the desired security state after the next ERET.
192 */
193 sp_min_prepare_next_image_entry();
Dimitris Papastamos21568302017-06-07 13:45:41 +0100194
195 /*
196 * Perform any platform specific runtime setup prior to cold boot exit
197 * from SP_MIN.
198 */
199 sp_min_plat_runtime_setup();
Dimitris Papastamos10d664c2017-06-07 12:22:01 +0100200
201 console_flush();
Soby Mathewc11ba852016-05-05 14:32:05 +0100202}
203
204/******************************************************************************
205 * This function is invoked during warm boot. Invoke the PSCI library
206 * warm boot entry point which takes care of Architectural and platform setup/
207 * restore. Copy the relevant cpu_context register values to smc context which
208 * will get programmed during `smc_exit`.
209 *****************************************************************************/
210void sp_min_warm_boot(void)
211{
212 smc_ctx_t *next_smc_ctx;
David Cunado88ad1462017-09-04 16:41:37 +0100213 cpu_context_t *ctx = cm_get_context(NON_SECURE);
214 u_register_t ns_sctlr;
Soby Mathewc11ba852016-05-05 14:32:05 +0100215
216 psci_warmboot_entrypoint();
217
218 smc_set_next_ctx(NON_SECURE);
219
220 next_smc_ctx = smc_get_next_ctx();
Douglas Raillard32f0d3c2017-01-26 15:54:44 +0000221 zeromem(next_smc_ctx, sizeof(smc_ctx_t));
Soby Mathewc11ba852016-05-05 14:32:05 +0100222
223 copy_cpu_ctx_to_smc_stx(get_regs_ctx(cm_get_context(NON_SECURE)),
224 next_smc_ctx);
David Cunado88ad1462017-09-04 16:41:37 +0100225
226 /* Temporarily set the NS bit to access NS SCTLR */
227 write_scr(read_scr() | SCR_NS_BIT);
228 isb();
229 ns_sctlr = read_ctx_reg(get_regs_ctx(ctx), CTX_NS_SCTLR);
230 write_sctlr(ns_sctlr);
231 isb();
232
233 write_scr(read_scr() & ~SCR_NS_BIT);
234 isb();
Soby Mathewc11ba852016-05-05 14:32:05 +0100235}
Etienne Carriere71816092017-08-09 15:48:53 +0200236
237#if SP_MIN_WITH_SECURE_FIQ
238/******************************************************************************
239 * This function is invoked on secure interrupts. By construction of the
240 * SP_MIN, secure interrupts can only be handled when core executes in non
241 * secure state.
242 *****************************************************************************/
243void sp_min_fiq(void)
244{
245 uint32_t id;
246
247 id = plat_ic_acknowledge_interrupt();
248 sp_min_plat_fiq_handler(id);
249 plat_ic_end_of_interrupt(id);
250}
251#endif /* SP_MIN_WITH_SECURE_FIQ */