Soby Mathew | ec8ac1c | 2016-05-05 14:32:05 +0100 | [diff] [blame] | 1 | /* |
Antonio Nino Diaz | 3c817f4 | 2018-03-21 10:49:27 +0000 | [diff] [blame] | 2 | * Copyright (c) 2016-2018, ARM Limited and Contributors. All rights reserved. |
Soby Mathew | ec8ac1c | 2016-05-05 14:32:05 +0100 | [diff] [blame] | 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Soby Mathew | ec8ac1c | 2016-05-05 14:32:05 +0100 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <arch.h> |
| 8 | #include <arch_helpers.h> |
| 9 | #include <assert.h> |
| 10 | #include <bl_common.h> |
Dimitris Papastamos | 9fb7912 | 2017-06-07 12:22:01 +0100 | [diff] [blame] | 11 | #include <console.h> |
Soby Mathew | ec8ac1c | 2016-05-05 14:32:05 +0100 | [diff] [blame] | 12 | #include <context.h> |
| 13 | #include <context_mgmt.h> |
| 14 | #include <debug.h> |
| 15 | #include <platform.h> |
| 16 | #include <platform_def.h> |
| 17 | #include <platform_sp_min.h> |
| 18 | #include <psci.h> |
| 19 | #include <runtime_svc.h> |
Antonio Nino Diaz | 3c817f4 | 2018-03-21 10:49:27 +0000 | [diff] [blame] | 20 | #include <smccc_helpers.h> |
Soby Mathew | ec8ac1c | 2016-05-05 14:32:05 +0100 | [diff] [blame] | 21 | #include <stddef.h> |
| 22 | #include <stdint.h> |
| 23 | #include <string.h> |
| 24 | #include <types.h> |
Douglas Raillard | a8954fc | 2017-01-26 15:54:44 +0000 | [diff] [blame] | 25 | #include <utils.h> |
Soby Mathew | ec8ac1c | 2016-05-05 14:32:05 +0100 | [diff] [blame] | 26 | #include "sp_min_private.h" |
| 27 | |
| 28 | /* Pointers to per-core cpu contexts */ |
| 29 | static void *sp_min_cpu_ctx_ptr[PLATFORM_CORE_COUNT]; |
| 30 | |
| 31 | /* SP_MIN only stores the non secure smc context */ |
| 32 | static smc_ctx_t sp_min_smc_context[PLATFORM_CORE_COUNT]; |
| 33 | |
| 34 | /****************************************************************************** |
Antonio Nino Diaz | 3c817f4 | 2018-03-21 10:49:27 +0000 | [diff] [blame] | 35 | * Define the smccc helper library API's |
Soby Mathew | ec8ac1c | 2016-05-05 14:32:05 +0100 | [diff] [blame] | 36 | *****************************************************************************/ |
Etienne Carriere | bfe12d3 | 2017-06-07 16:45:42 +0200 | [diff] [blame] | 37 | void *smc_get_ctx(unsigned int security_state) |
Soby Mathew | ec8ac1c | 2016-05-05 14:32:05 +0100 | [diff] [blame] | 38 | { |
| 39 | assert(security_state == NON_SECURE); |
| 40 | return &sp_min_smc_context[plat_my_core_pos()]; |
| 41 | } |
| 42 | |
Etienne Carriere | bfe12d3 | 2017-06-07 16:45:42 +0200 | [diff] [blame] | 43 | void smc_set_next_ctx(unsigned int security_state) |
Soby Mathew | ec8ac1c | 2016-05-05 14:32:05 +0100 | [diff] [blame] | 44 | { |
| 45 | assert(security_state == NON_SECURE); |
| 46 | /* SP_MIN stores only non secure smc context. Nothing to do here */ |
| 47 | } |
| 48 | |
| 49 | void *smc_get_next_ctx(void) |
| 50 | { |
| 51 | return &sp_min_smc_context[plat_my_core_pos()]; |
| 52 | } |
| 53 | |
| 54 | /******************************************************************************* |
| 55 | * This function returns a pointer to the most recent 'cpu_context' structure |
| 56 | * for the calling CPU that was set as the context for the specified security |
| 57 | * state. NULL is returned if no such structure has been specified. |
| 58 | ******************************************************************************/ |
| 59 | void *cm_get_context(uint32_t security_state) |
| 60 | { |
| 61 | assert(security_state == NON_SECURE); |
| 62 | return sp_min_cpu_ctx_ptr[plat_my_core_pos()]; |
| 63 | } |
| 64 | |
| 65 | /******************************************************************************* |
| 66 | * This function sets the pointer to the current 'cpu_context' structure for the |
| 67 | * specified security state for the calling CPU |
| 68 | ******************************************************************************/ |
| 69 | void cm_set_context(void *context, uint32_t security_state) |
| 70 | { |
| 71 | assert(security_state == NON_SECURE); |
| 72 | sp_min_cpu_ctx_ptr[plat_my_core_pos()] = context; |
| 73 | } |
| 74 | |
| 75 | /******************************************************************************* |
| 76 | * This function returns a pointer to the most recent 'cpu_context' structure |
| 77 | * for the CPU identified by `cpu_idx` that was set as the context for the |
| 78 | * specified security state. NULL is returned if no such structure has been |
| 79 | * specified. |
| 80 | ******************************************************************************/ |
| 81 | void *cm_get_context_by_index(unsigned int cpu_idx, |
| 82 | unsigned int security_state) |
| 83 | { |
| 84 | assert(security_state == NON_SECURE); |
| 85 | return sp_min_cpu_ctx_ptr[cpu_idx]; |
| 86 | } |
| 87 | |
| 88 | /******************************************************************************* |
| 89 | * This function sets the pointer to the current 'cpu_context' structure for the |
| 90 | * specified security state for the CPU identified by CPU index. |
| 91 | ******************************************************************************/ |
| 92 | void cm_set_context_by_index(unsigned int cpu_idx, void *context, |
| 93 | unsigned int security_state) |
| 94 | { |
| 95 | assert(security_state == NON_SECURE); |
| 96 | sp_min_cpu_ctx_ptr[cpu_idx] = context; |
| 97 | } |
| 98 | |
| 99 | static void copy_cpu_ctx_to_smc_stx(const regs_t *cpu_reg_ctx, |
| 100 | smc_ctx_t *next_smc_ctx) |
| 101 | { |
| 102 | next_smc_ctx->r0 = read_ctx_reg(cpu_reg_ctx, CTX_GPREG_R0); |
| 103 | next_smc_ctx->lr_mon = read_ctx_reg(cpu_reg_ctx, CTX_LR); |
| 104 | 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] | 105 | next_smc_ctx->scr = read_ctx_reg(cpu_reg_ctx, CTX_SCR); |
Soby Mathew | ec8ac1c | 2016-05-05 14:32:05 +0100 | [diff] [blame] | 106 | } |
| 107 | |
| 108 | /******************************************************************************* |
| 109 | * This function invokes the PSCI library interface to initialize the |
| 110 | * non secure cpu context and copies the relevant cpu context register values |
| 111 | * to smc context. These registers will get programmed during `smc_exit`. |
| 112 | ******************************************************************************/ |
| 113 | static void sp_min_prepare_next_image_entry(void) |
| 114 | { |
| 115 | entry_point_info_t *next_image_info; |
Soby Mathew | f3e3a43 | 2017-03-30 14:42:54 +0100 | [diff] [blame] | 116 | cpu_context_t *ctx = cm_get_context(NON_SECURE); |
| 117 | u_register_t ns_sctlr; |
Soby Mathew | ec8ac1c | 2016-05-05 14:32:05 +0100 | [diff] [blame] | 118 | |
| 119 | /* Program system registers to proceed to non-secure */ |
| 120 | next_image_info = sp_min_plat_get_bl33_ep_info(); |
| 121 | assert(next_image_info); |
| 122 | assert(NON_SECURE == GET_SECURITY_STATE(next_image_info->h.attr)); |
| 123 | |
| 124 | INFO("SP_MIN: Preparing exit to normal world\n"); |
| 125 | |
| 126 | psci_prepare_next_non_secure_ctx(next_image_info); |
| 127 | smc_set_next_ctx(NON_SECURE); |
| 128 | |
| 129 | /* Copy r0, lr and spsr from cpu context to SMC context */ |
| 130 | copy_cpu_ctx_to_smc_stx(get_regs_ctx(cm_get_context(NON_SECURE)), |
| 131 | smc_get_next_ctx()); |
Soby Mathew | f3e3a43 | 2017-03-30 14:42:54 +0100 | [diff] [blame] | 132 | |
| 133 | /* Temporarily set the NS bit to access NS SCTLR */ |
| 134 | write_scr(read_scr() | SCR_NS_BIT); |
| 135 | isb(); |
| 136 | ns_sctlr = read_ctx_reg(get_regs_ctx(ctx), CTX_NS_SCTLR); |
| 137 | write_sctlr(ns_sctlr); |
| 138 | isb(); |
| 139 | |
| 140 | write_scr(read_scr() & ~SCR_NS_BIT); |
| 141 | isb(); |
Soby Mathew | ec8ac1c | 2016-05-05 14:32:05 +0100 | [diff] [blame] | 142 | } |
| 143 | |
| 144 | /****************************************************************************** |
Soby Mathew | 8da8966 | 2016-09-19 17:21:15 +0100 | [diff] [blame] | 145 | * Implement the ARM Standard Service function to get arguments for a |
| 146 | * particular service. |
Soby Mathew | ec8ac1c | 2016-05-05 14:32:05 +0100 | [diff] [blame] | 147 | *****************************************************************************/ |
Soby Mathew | 8da8966 | 2016-09-19 17:21:15 +0100 | [diff] [blame] | 148 | uintptr_t get_arm_std_svc_args(unsigned int svc_mask) |
Soby Mathew | ec8ac1c | 2016-05-05 14:32:05 +0100 | [diff] [blame] | 149 | { |
Soby Mathew | 89256b8 | 2016-09-13 14:19:08 +0100 | [diff] [blame] | 150 | /* Setup the arguments for PSCI Library */ |
| 151 | DEFINE_STATIC_PSCI_LIB_ARGS_V1(psci_args, sp_min_warm_entrypoint); |
| 152 | |
Soby Mathew | 8da8966 | 2016-09-19 17:21:15 +0100 | [diff] [blame] | 153 | /* PSCI is the only ARM Standard Service implemented */ |
| 154 | assert(svc_mask == PSCI_FID_MASK); |
| 155 | |
| 156 | return (uintptr_t)&psci_args; |
| 157 | } |
| 158 | |
| 159 | /****************************************************************************** |
| 160 | * The SP_MIN main function. Do the platform and PSCI Library setup. Also |
| 161 | * initialize the runtime service framework. |
| 162 | *****************************************************************************/ |
| 163 | void sp_min_main(void) |
| 164 | { |
Soby Mathew | 89256b8 | 2016-09-13 14:19:08 +0100 | [diff] [blame] | 165 | NOTICE("SP_MIN: %s\n", version_string); |
| 166 | NOTICE("SP_MIN: %s\n", build_message); |
| 167 | |
| 168 | /* Perform the SP_MIN platform setup */ |
Soby Mathew | ec8ac1c | 2016-05-05 14:32:05 +0100 | [diff] [blame] | 169 | sp_min_platform_setup(); |
| 170 | |
Soby Mathew | 8da8966 | 2016-09-19 17:21:15 +0100 | [diff] [blame] | 171 | /* Initialize the runtime services e.g. psci */ |
Soby Mathew | ec8ac1c | 2016-05-05 14:32:05 +0100 | [diff] [blame] | 172 | INFO("SP_MIN: Initializing runtime services\n"); |
| 173 | runtime_svc_init(); |
| 174 | |
| 175 | /* |
| 176 | * We are ready to enter the next EL. Prepare entry into the image |
| 177 | * corresponding to the desired security state after the next ERET. |
| 178 | */ |
| 179 | sp_min_prepare_next_image_entry(); |
Dimitris Papastamos | 52323b0 | 2017-06-07 13:45:41 +0100 | [diff] [blame] | 180 | |
| 181 | /* |
| 182 | * Perform any platform specific runtime setup prior to cold boot exit |
| 183 | * from SP_MIN. |
| 184 | */ |
| 185 | sp_min_plat_runtime_setup(); |
Dimitris Papastamos | 9fb7912 | 2017-06-07 12:22:01 +0100 | [diff] [blame] | 186 | |
| 187 | console_flush(); |
Soby Mathew | ec8ac1c | 2016-05-05 14:32:05 +0100 | [diff] [blame] | 188 | } |
| 189 | |
| 190 | /****************************************************************************** |
| 191 | * This function is invoked during warm boot. Invoke the PSCI library |
| 192 | * warm boot entry point which takes care of Architectural and platform setup/ |
| 193 | * restore. Copy the relevant cpu_context register values to smc context which |
| 194 | * will get programmed during `smc_exit`. |
| 195 | *****************************************************************************/ |
| 196 | void sp_min_warm_boot(void) |
| 197 | { |
| 198 | smc_ctx_t *next_smc_ctx; |
David Cunado | a31bcde | 2017-09-04 16:41:37 +0100 | [diff] [blame] | 199 | cpu_context_t *ctx = cm_get_context(NON_SECURE); |
| 200 | u_register_t ns_sctlr; |
Soby Mathew | ec8ac1c | 2016-05-05 14:32:05 +0100 | [diff] [blame] | 201 | |
| 202 | psci_warmboot_entrypoint(); |
| 203 | |
| 204 | smc_set_next_ctx(NON_SECURE); |
| 205 | |
| 206 | next_smc_ctx = smc_get_next_ctx(); |
Douglas Raillard | a8954fc | 2017-01-26 15:54:44 +0000 | [diff] [blame] | 207 | zeromem(next_smc_ctx, sizeof(smc_ctx_t)); |
Soby Mathew | ec8ac1c | 2016-05-05 14:32:05 +0100 | [diff] [blame] | 208 | |
| 209 | copy_cpu_ctx_to_smc_stx(get_regs_ctx(cm_get_context(NON_SECURE)), |
| 210 | next_smc_ctx); |
David Cunado | a31bcde | 2017-09-04 16:41:37 +0100 | [diff] [blame] | 211 | |
| 212 | /* Temporarily set the NS bit to access NS SCTLR */ |
| 213 | write_scr(read_scr() | SCR_NS_BIT); |
| 214 | isb(); |
| 215 | ns_sctlr = read_ctx_reg(get_regs_ctx(ctx), CTX_NS_SCTLR); |
| 216 | write_sctlr(ns_sctlr); |
| 217 | isb(); |
| 218 | |
| 219 | write_scr(read_scr() & ~SCR_NS_BIT); |
| 220 | isb(); |
Soby Mathew | ec8ac1c | 2016-05-05 14:32:05 +0100 | [diff] [blame] | 221 | } |
Etienne Carriere | dc0fea7 | 2017-08-09 15:48:53 +0200 | [diff] [blame] | 222 | |
| 223 | #if SP_MIN_WITH_SECURE_FIQ |
| 224 | /****************************************************************************** |
| 225 | * This function is invoked on secure interrupts. By construction of the |
| 226 | * SP_MIN, secure interrupts can only be handled when core executes in non |
| 227 | * secure state. |
| 228 | *****************************************************************************/ |
| 229 | void sp_min_fiq(void) |
| 230 | { |
| 231 | uint32_t id; |
| 232 | |
| 233 | id = plat_ic_acknowledge_interrupt(); |
| 234 | sp_min_plat_fiq_handler(id); |
| 235 | plat_ic_end_of_interrupt(id); |
| 236 | } |
| 237 | #endif /* SP_MIN_WITH_SECURE_FIQ */ |