Zelalem Aweke | 13dc8f1 | 2021-07-09 14:20:03 -0500 | [diff] [blame] | 1 | /* |
Jayanth Dodderi Chidanand | d62c681 | 2023-03-07 10:43:19 +0000 | [diff] [blame] | 2 | * Copyright (c) 2021-2023, Arm Limited and Contributors. All rights reserved. |
Zelalem Aweke | 13dc8f1 | 2021-07-09 14:20:03 -0500 | [diff] [blame] | 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | */ |
| 6 | |
| 7 | #include <assert.h> |
| 8 | #include <errno.h> |
Manish Pandey | 9174a75 | 2021-11-09 20:49:56 +0000 | [diff] [blame] | 9 | #include <inttypes.h> |
| 10 | #include <stdint.h> |
Zelalem Aweke | 13dc8f1 | 2021-07-09 14:20:03 -0500 | [diff] [blame] | 11 | #include <string.h> |
| 12 | |
| 13 | #include <arch_helpers.h> |
| 14 | #include <arch_features.h> |
| 15 | #include <bl31/bl31.h> |
| 16 | #include <common/debug.h> |
| 17 | #include <common/runtime_svc.h> |
| 18 | #include <context.h> |
| 19 | #include <lib/el3_runtime/context_mgmt.h> |
Elizabeth Ho | 4fc00d2 | 2023-07-18 14:10:25 +0100 | [diff] [blame] | 20 | #include <lib/el3_runtime/cpu_data.h> |
Zelalem Aweke | 13dc8f1 | 2021-07-09 14:20:03 -0500 | [diff] [blame] | 21 | #include <lib/el3_runtime/pubsub.h> |
Boyan Karatotev | 05504ba | 2023-02-15 13:21:50 +0000 | [diff] [blame] | 22 | #include <lib/extensions/pmuv3.h> |
| 23 | #include <lib/extensions/sys_reg_trace.h> |
johpow01 | 9d13402 | 2021-06-16 17:57:28 -0500 | [diff] [blame] | 24 | #include <lib/gpt_rme/gpt_rme.h> |
Zelalem Aweke | 13dc8f1 | 2021-07-09 14:20:03 -0500 | [diff] [blame] | 25 | |
| 26 | #include <lib/spinlock.h> |
| 27 | #include <lib/utils.h> |
| 28 | #include <lib/xlat_tables/xlat_tables_v2.h> |
| 29 | #include <plat/common/common_def.h> |
| 30 | #include <plat/common/platform.h> |
| 31 | #include <platform_def.h> |
Zelalem Aweke | 13dc8f1 | 2021-07-09 14:20:03 -0500 | [diff] [blame] | 32 | #include <services/rmmd_svc.h> |
| 33 | #include <smccc_helpers.h> |
Arunachalam Ganapathy | 337700a | 2023-05-18 10:57:29 +0100 | [diff] [blame] | 34 | #include <lib/extensions/sme.h> |
Subhasish Ghosh | c25225a | 2021-12-09 15:41:37 +0000 | [diff] [blame] | 35 | #include <lib/extensions/sve.h> |
Zelalem Aweke | 13dc8f1 | 2021-07-09 14:20:03 -0500 | [diff] [blame] | 36 | #include "rmmd_initial_context.h" |
| 37 | #include "rmmd_private.h" |
| 38 | |
| 39 | /******************************************************************************* |
Javier Almansa Sobrino | 7176a77 | 2021-11-24 18:37:37 +0000 | [diff] [blame] | 40 | * RMM boot failure flag |
| 41 | ******************************************************************************/ |
| 42 | static bool rmm_boot_failed; |
| 43 | |
| 44 | /******************************************************************************* |
Zelalem Aweke | 13dc8f1 | 2021-07-09 14:20:03 -0500 | [diff] [blame] | 45 | * RMM context information. |
| 46 | ******************************************************************************/ |
| 47 | rmmd_rmm_context_t rmm_context[PLATFORM_CORE_COUNT]; |
| 48 | |
| 49 | /******************************************************************************* |
| 50 | * RMM entry point information. Discovered on the primary core and reused |
| 51 | * on secondary cores. |
| 52 | ******************************************************************************/ |
| 53 | static entry_point_info_t *rmm_ep_info; |
| 54 | |
| 55 | /******************************************************************************* |
| 56 | * Static function declaration. |
| 57 | ******************************************************************************/ |
| 58 | static int32_t rmm_init(void); |
Zelalem Aweke | 13dc8f1 | 2021-07-09 14:20:03 -0500 | [diff] [blame] | 59 | |
| 60 | /******************************************************************************* |
| 61 | * This function takes an RMM context pointer and performs a synchronous entry |
| 62 | * into it. |
| 63 | ******************************************************************************/ |
| 64 | uint64_t rmmd_rmm_sync_entry(rmmd_rmm_context_t *rmm_ctx) |
| 65 | { |
| 66 | uint64_t rc; |
| 67 | |
| 68 | assert(rmm_ctx != NULL); |
| 69 | |
| 70 | cm_set_context(&(rmm_ctx->cpu_ctx), REALM); |
| 71 | |
Zelalem Aweke | 13dc8f1 | 2021-07-09 14:20:03 -0500 | [diff] [blame] | 72 | /* Restore the realm context assigned above */ |
| 73 | cm_el1_sysregs_context_restore(REALM); |
| 74 | cm_el2_sysregs_context_restore(REALM); |
| 75 | cm_set_next_eret_context(REALM); |
| 76 | |
| 77 | /* Enter RMM */ |
| 78 | rc = rmmd_rmm_enter(&rmm_ctx->c_rt_ctx); |
| 79 | |
Zelalem Aweke | f92c0cb | 2022-01-31 16:59:42 -0600 | [diff] [blame] | 80 | /* |
| 81 | * Save realm context. EL1 and EL2 Non-secure |
| 82 | * contexts will be restored before exiting to |
| 83 | * Non-secure world, therefore there is no need |
| 84 | * to clear EL1 and EL2 context registers. |
| 85 | */ |
Zelalem Aweke | 13dc8f1 | 2021-07-09 14:20:03 -0500 | [diff] [blame] | 86 | cm_el1_sysregs_context_save(REALM); |
| 87 | cm_el2_sysregs_context_save(REALM); |
| 88 | |
Zelalem Aweke | 13dc8f1 | 2021-07-09 14:20:03 -0500 | [diff] [blame] | 89 | return rc; |
| 90 | } |
| 91 | |
| 92 | /******************************************************************************* |
| 93 | * This function returns to the place where rmmd_rmm_sync_entry() was |
| 94 | * called originally. |
| 95 | ******************************************************************************/ |
| 96 | __dead2 void rmmd_rmm_sync_exit(uint64_t rc) |
| 97 | { |
| 98 | rmmd_rmm_context_t *ctx = &rmm_context[plat_my_core_pos()]; |
| 99 | |
| 100 | /* Get context of the RMM in use by this CPU. */ |
| 101 | assert(cm_get_context(REALM) == &(ctx->cpu_ctx)); |
| 102 | |
| 103 | /* |
| 104 | * The RMMD must have initiated the original request through a |
| 105 | * synchronous entry into RMM. Jump back to the original C runtime |
| 106 | * context with the value of rc in x0; |
| 107 | */ |
| 108 | rmmd_rmm_exit(ctx->c_rt_ctx, rc); |
| 109 | |
| 110 | panic(); |
| 111 | } |
| 112 | |
| 113 | static void rmm_el2_context_init(el2_sysregs_t *regs) |
| 114 | { |
| 115 | regs->ctx_regs[CTX_SPSR_EL2 >> 3] = REALM_SPSR_EL2; |
| 116 | regs->ctx_regs[CTX_SCTLR_EL2 >> 3] = SCTLR_EL2_RES1; |
| 117 | } |
| 118 | |
| 119 | /******************************************************************************* |
Subhasish Ghosh | c25225a | 2021-12-09 15:41:37 +0000 | [diff] [blame] | 120 | * Enable architecture extensions on first entry to Realm world. |
| 121 | ******************************************************************************/ |
Elizabeth Ho | 4fc00d2 | 2023-07-18 14:10:25 +0100 | [diff] [blame] | 122 | |
Subhasish Ghosh | c25225a | 2021-12-09 15:41:37 +0000 | [diff] [blame] | 123 | static void manage_extensions_realm(cpu_context_t *ctx) |
| 124 | { |
Elizabeth Ho | 4fc00d2 | 2023-07-18 14:10:25 +0100 | [diff] [blame] | 125 | pmuv3_enable(ctx); |
| 126 | |
| 127 | /* |
Arunachalam Ganapathy | a87a409 | 2023-11-01 19:18:41 +0000 | [diff] [blame] | 128 | * Enable access to TPIDR2_EL0 if SME/SME2 is enabled for Non Secure world. |
Elizabeth Ho | 4fc00d2 | 2023-07-18 14:10:25 +0100 | [diff] [blame] | 129 | */ |
| 130 | if (is_feat_sme_supported()) { |
Elizabeth Ho | 4fc00d2 | 2023-07-18 14:10:25 +0100 | [diff] [blame] | 131 | sme_enable(ctx); |
| 132 | } |
| 133 | } |
| 134 | |
Elizabeth Ho | 4fc00d2 | 2023-07-18 14:10:25 +0100 | [diff] [blame] | 135 | static void manage_extensions_realm_per_world(void) |
| 136 | { |
Jayanth Dodderi Chidanand | 56aa382 | 2023-12-11 11:22:02 +0000 | [diff] [blame] | 137 | cm_el3_arch_init_per_world(&per_world_context[CPU_CONTEXT_REALM]); |
| 138 | |
Jayanth Dodderi Chidanand | d62c681 | 2023-03-07 10:43:19 +0000 | [diff] [blame] | 139 | if (is_feat_sve_supported()) { |
Subhasish Ghosh | c25225a | 2021-12-09 15:41:37 +0000 | [diff] [blame] | 140 | /* |
| 141 | * Enable SVE and FPU in realm context when it is enabled for NS. |
| 142 | * Realm manager must ensure that the SVE and FPU register |
| 143 | * contexts are properly managed. |
| 144 | */ |
Elizabeth Ho | 4fc00d2 | 2023-07-18 14:10:25 +0100 | [diff] [blame] | 145 | sve_enable_per_world(&per_world_context[CPU_CONTEXT_REALM]); |
Jayanth Dodderi Chidanand | d62c681 | 2023-03-07 10:43:19 +0000 | [diff] [blame] | 146 | } |
Boyan Karatotev | 05504ba | 2023-02-15 13:21:50 +0000 | [diff] [blame] | 147 | |
Boyan Karatotev | 919d3c8 | 2023-02-13 16:32:47 +0000 | [diff] [blame] | 148 | /* NS can access this but Realm shouldn't */ |
| 149 | if (is_feat_sys_reg_trace_supported()) { |
Elizabeth Ho | 4fc00d2 | 2023-07-18 14:10:25 +0100 | [diff] [blame] | 150 | sys_reg_trace_disable_per_world(&per_world_context[CPU_CONTEXT_REALM]); |
Boyan Karatotev | 919d3c8 | 2023-02-13 16:32:47 +0000 | [diff] [blame] | 151 | } |
| 152 | |
Arunachalam Ganapathy | a87a409 | 2023-11-01 19:18:41 +0000 | [diff] [blame] | 153 | /* |
| 154 | * If SME/SME2 is supported and enabled for NS world, then disable trapping |
| 155 | * of SME instructions for Realm world. RMM will save/restore required |
| 156 | * registers that are shared with SVE/FPU so that Realm can use FPU or SVE. |
| 157 | */ |
| 158 | if (is_feat_sme_supported()) { |
| 159 | sme_enable_per_world(&per_world_context[CPU_CONTEXT_REALM]); |
| 160 | } |
Subhasish Ghosh | c25225a | 2021-12-09 15:41:37 +0000 | [diff] [blame] | 161 | } |
| 162 | |
| 163 | /******************************************************************************* |
Zelalem Aweke | 13dc8f1 | 2021-07-09 14:20:03 -0500 | [diff] [blame] | 164 | * Jump to the RMM for the first time. |
| 165 | ******************************************************************************/ |
| 166 | static int32_t rmm_init(void) |
| 167 | { |
Javier Almansa Sobrino | 7176a77 | 2021-11-24 18:37:37 +0000 | [diff] [blame] | 168 | long rc; |
Zelalem Aweke | 13dc8f1 | 2021-07-09 14:20:03 -0500 | [diff] [blame] | 169 | rmmd_rmm_context_t *ctx = &rmm_context[plat_my_core_pos()]; |
| 170 | |
| 171 | INFO("RMM init start.\n"); |
Zelalem Aweke | 13dc8f1 | 2021-07-09 14:20:03 -0500 | [diff] [blame] | 172 | |
Subhasish Ghosh | c25225a | 2021-12-09 15:41:37 +0000 | [diff] [blame] | 173 | /* Enable architecture extensions */ |
| 174 | manage_extensions_realm(&ctx->cpu_ctx); |
| 175 | |
Elizabeth Ho | 4fc00d2 | 2023-07-18 14:10:25 +0100 | [diff] [blame] | 176 | manage_extensions_realm_per_world(); |
| 177 | |
Zelalem Aweke | 13dc8f1 | 2021-07-09 14:20:03 -0500 | [diff] [blame] | 178 | /* Initialize RMM EL2 context. */ |
| 179 | rmm_el2_context_init(&ctx->cpu_ctx.el2_sysregs_ctx); |
| 180 | |
| 181 | rc = rmmd_rmm_sync_entry(ctx); |
Javier Almansa Sobrino | 7176a77 | 2021-11-24 18:37:37 +0000 | [diff] [blame] | 182 | if (rc != E_RMM_BOOT_SUCCESS) { |
| 183 | ERROR("RMM init failed: %ld\n", rc); |
| 184 | /* Mark the boot as failed for all the CPUs */ |
| 185 | rmm_boot_failed = true; |
| 186 | return 0; |
Zelalem Aweke | 13dc8f1 | 2021-07-09 14:20:03 -0500 | [diff] [blame] | 187 | } |
| 188 | |
Zelalem Aweke | 13dc8f1 | 2021-07-09 14:20:03 -0500 | [diff] [blame] | 189 | INFO("RMM init end.\n"); |
| 190 | |
| 191 | return 1; |
| 192 | } |
| 193 | |
| 194 | /******************************************************************************* |
| 195 | * Load and read RMM manifest, setup RMM. |
| 196 | ******************************************************************************/ |
| 197 | int rmmd_setup(void) |
| 198 | { |
Javier Almansa Sobrino | dea652e | 2022-04-13 17:57:35 +0100 | [diff] [blame] | 199 | size_t shared_buf_size __unused; |
| 200 | uintptr_t shared_buf_base; |
Zelalem Aweke | 13dc8f1 | 2021-07-09 14:20:03 -0500 | [diff] [blame] | 201 | uint32_t ep_attr; |
| 202 | unsigned int linear_id = plat_my_core_pos(); |
| 203 | rmmd_rmm_context_t *rmm_ctx = &rmm_context[linear_id]; |
AlexeiFedorov | 8e754f9 | 2022-12-14 17:28:11 +0000 | [diff] [blame] | 204 | struct rmm_manifest *manifest; |
Javier Almansa Sobrino | 4165e84 | 2022-04-25 17:18:15 +0100 | [diff] [blame] | 205 | int rc; |
Zelalem Aweke | 13dc8f1 | 2021-07-09 14:20:03 -0500 | [diff] [blame] | 206 | |
| 207 | /* Make sure RME is supported. */ |
| 208 | assert(get_armv9_2_feat_rme_support() != 0U); |
| 209 | |
| 210 | rmm_ep_info = bl31_plat_get_next_image_ep_info(REALM); |
| 211 | if (rmm_ep_info == NULL) { |
| 212 | WARN("No RMM image provided by BL2 boot loader, Booting " |
| 213 | "device without RMM initialization. SMCs destined for " |
| 214 | "RMM will return SMC_UNK\n"); |
| 215 | return -ENOENT; |
| 216 | } |
| 217 | |
| 218 | /* Under no circumstances will this parameter be 0 */ |
| 219 | assert(rmm_ep_info->pc == RMM_BASE); |
| 220 | |
| 221 | /* Initialise an entrypoint to set up the CPU context */ |
| 222 | ep_attr = EP_REALM; |
| 223 | if ((read_sctlr_el3() & SCTLR_EE_BIT) != 0U) { |
| 224 | ep_attr |= EP_EE_BIG; |
| 225 | } |
| 226 | |
| 227 | SET_PARAM_HEAD(rmm_ep_info, PARAM_EP, VERSION_1, ep_attr); |
| 228 | rmm_ep_info->spsr = SPSR_64(MODE_EL2, |
| 229 | MODE_SP_ELX, |
| 230 | DISABLE_ALL_EXCEPTIONS); |
| 231 | |
Javier Almansa Sobrino | 7176a77 | 2021-11-24 18:37:37 +0000 | [diff] [blame] | 232 | shared_buf_size = |
| 233 | plat_rmmd_get_el3_rmm_shared_mem(&shared_buf_base); |
| 234 | |
| 235 | assert((shared_buf_size == SZ_4K) && |
| 236 | ((void *)shared_buf_base != NULL)); |
| 237 | |
Javier Almansa Sobrino | 4165e84 | 2022-04-25 17:18:15 +0100 | [diff] [blame] | 238 | /* Load the boot manifest at the beginning of the shared area */ |
AlexeiFedorov | 8e754f9 | 2022-12-14 17:28:11 +0000 | [diff] [blame] | 239 | manifest = (struct rmm_manifest *)shared_buf_base; |
Javier Almansa Sobrino | 4165e84 | 2022-04-25 17:18:15 +0100 | [diff] [blame] | 240 | rc = plat_rmmd_load_manifest(manifest); |
| 241 | if (rc != 0) { |
| 242 | ERROR("Error loading RMM Boot Manifest (%i)\n", rc); |
| 243 | return rc; |
| 244 | } |
| 245 | flush_dcache_range((uintptr_t)shared_buf_base, shared_buf_size); |
| 246 | |
Javier Almansa Sobrino | 7176a77 | 2021-11-24 18:37:37 +0000 | [diff] [blame] | 247 | /* |
| 248 | * Prepare coldboot arguments for RMM: |
| 249 | * arg0: This CPUID (primary processor). |
| 250 | * arg1: Version for this Boot Interface. |
| 251 | * arg2: PLATFORM_CORE_COUNT. |
| 252 | * arg3: Base address for the EL3 <-> RMM shared area. The boot |
| 253 | * manifest will be stored at the beginning of this area. |
| 254 | */ |
| 255 | rmm_ep_info->args.arg0 = linear_id; |
| 256 | rmm_ep_info->args.arg1 = RMM_EL3_INTERFACE_VERSION; |
| 257 | rmm_ep_info->args.arg2 = PLATFORM_CORE_COUNT; |
| 258 | rmm_ep_info->args.arg3 = shared_buf_base; |
| 259 | |
Zelalem Aweke | 13dc8f1 | 2021-07-09 14:20:03 -0500 | [diff] [blame] | 260 | /* Initialise RMM context with this entry point information */ |
| 261 | cm_setup_context(&rmm_ctx->cpu_ctx, rmm_ep_info); |
| 262 | |
| 263 | INFO("RMM setup done.\n"); |
| 264 | |
| 265 | /* Register init function for deferred init. */ |
| 266 | bl31_register_rmm_init(&rmm_init); |
| 267 | |
| 268 | return 0; |
| 269 | } |
| 270 | |
| 271 | /******************************************************************************* |
| 272 | * Forward SMC to the other security state |
| 273 | ******************************************************************************/ |
Soby Mathew | fccd3ea | 2021-11-17 15:13:30 +0000 | [diff] [blame] | 274 | static uint64_t rmmd_smc_forward(uint32_t src_sec_state, |
AlexeiFedorov | 90ce18f | 2022-09-23 16:57:28 +0100 | [diff] [blame] | 275 | uint32_t dst_sec_state, uint64_t x0, |
| 276 | uint64_t x1, uint64_t x2, uint64_t x3, |
| 277 | uint64_t x4, void *handle) |
Zelalem Aweke | 13dc8f1 | 2021-07-09 14:20:03 -0500 | [diff] [blame] | 278 | { |
AlexeiFedorov | 90ce18f | 2022-09-23 16:57:28 +0100 | [diff] [blame] | 279 | cpu_context_t *ctx = cm_get_context(dst_sec_state); |
| 280 | |
Zelalem Aweke | 13dc8f1 | 2021-07-09 14:20:03 -0500 | [diff] [blame] | 281 | /* Save incoming security state */ |
| 282 | cm_el1_sysregs_context_save(src_sec_state); |
| 283 | cm_el2_sysregs_context_save(src_sec_state); |
| 284 | |
| 285 | /* Restore outgoing security state */ |
| 286 | cm_el1_sysregs_context_restore(dst_sec_state); |
| 287 | cm_el2_sysregs_context_restore(dst_sec_state); |
| 288 | cm_set_next_eret_context(dst_sec_state); |
| 289 | |
Soby Mathew | fccd3ea | 2021-11-17 15:13:30 +0000 | [diff] [blame] | 290 | /* |
AlexeiFedorov | 90ce18f | 2022-09-23 16:57:28 +0100 | [diff] [blame] | 291 | * As per SMCCCv1.2, we need to preserve x4 to x7 unless |
Soby Mathew | fccd3ea | 2021-11-17 15:13:30 +0000 | [diff] [blame] | 292 | * being used as return args. Hence we differentiate the |
| 293 | * onward and backward path. Support upto 8 args in the |
| 294 | * onward path and 4 args in return path. |
AlexeiFedorov | 90ce18f | 2022-09-23 16:57:28 +0100 | [diff] [blame] | 295 | * Register x4 will be preserved by RMM in case it is not |
| 296 | * used in return path. |
Soby Mathew | fccd3ea | 2021-11-17 15:13:30 +0000 | [diff] [blame] | 297 | */ |
| 298 | if (src_sec_state == NON_SECURE) { |
AlexeiFedorov | 90ce18f | 2022-09-23 16:57:28 +0100 | [diff] [blame] | 299 | SMC_RET8(ctx, x0, x1, x2, x3, x4, |
| 300 | SMC_GET_GP(handle, CTX_GPREG_X5), |
| 301 | SMC_GET_GP(handle, CTX_GPREG_X6), |
| 302 | SMC_GET_GP(handle, CTX_GPREG_X7)); |
Soby Mathew | fccd3ea | 2021-11-17 15:13:30 +0000 | [diff] [blame] | 303 | } |
AlexeiFedorov | 90ce18f | 2022-09-23 16:57:28 +0100 | [diff] [blame] | 304 | |
| 305 | SMC_RET5(ctx, x0, x1, x2, x3, x4); |
Zelalem Aweke | 13dc8f1 | 2021-07-09 14:20:03 -0500 | [diff] [blame] | 306 | } |
| 307 | |
| 308 | /******************************************************************************* |
| 309 | * This function handles all SMCs in the range reserved for RMI. Each call is |
| 310 | * either forwarded to the other security state or handled by the RMM dispatcher |
| 311 | ******************************************************************************/ |
| 312 | uint64_t rmmd_rmi_handler(uint32_t smc_fid, uint64_t x1, uint64_t x2, |
AlexeiFedorov | 90ce18f | 2022-09-23 16:57:28 +0100 | [diff] [blame] | 313 | uint64_t x3, uint64_t x4, void *cookie, |
| 314 | void *handle, uint64_t flags) |
Zelalem Aweke | 13dc8f1 | 2021-07-09 14:20:03 -0500 | [diff] [blame] | 315 | { |
Zelalem Aweke | 13dc8f1 | 2021-07-09 14:20:03 -0500 | [diff] [blame] | 316 | uint32_t src_sec_state; |
| 317 | |
Javier Almansa Sobrino | 7176a77 | 2021-11-24 18:37:37 +0000 | [diff] [blame] | 318 | /* If RMM failed to boot, treat any RMI SMC as unknown */ |
| 319 | if (rmm_boot_failed) { |
| 320 | WARN("RMMD: Failed to boot up RMM. Ignoring RMI call\n"); |
| 321 | SMC_RET1(handle, SMC_UNK); |
| 322 | } |
| 323 | |
Zelalem Aweke | 13dc8f1 | 2021-07-09 14:20:03 -0500 | [diff] [blame] | 324 | /* Determine which security state this SMC originated from */ |
| 325 | src_sec_state = caller_sec_state(flags); |
| 326 | |
| 327 | /* RMI must not be invoked by the Secure world */ |
| 328 | if (src_sec_state == SMC_FROM_SECURE) { |
Soby Mathew | 68ea954 | 2022-03-22 13:58:52 +0000 | [diff] [blame] | 329 | WARN("RMMD: RMI invoked by secure world.\n"); |
Zelalem Aweke | 13dc8f1 | 2021-07-09 14:20:03 -0500 | [diff] [blame] | 330 | SMC_RET1(handle, SMC_UNK); |
| 331 | } |
| 332 | |
| 333 | /* |
| 334 | * Forward an RMI call from the Normal world to the Realm world as it |
| 335 | * is. |
| 336 | */ |
| 337 | if (src_sec_state == SMC_FROM_NON_SECURE) { |
Arunachalam Ganapathy | 6e84add | 2023-08-24 15:31:01 +0100 | [diff] [blame] | 338 | /* |
| 339 | * If SVE hint bit is set in the flags then update the SMC |
| 340 | * function id and pass it on to the lower EL. |
| 341 | */ |
| 342 | if (is_sve_hint_set(flags)) { |
| 343 | smc_fid |= (FUNCID_SVE_HINT_MASK << |
| 344 | FUNCID_SVE_HINT_SHIFT); |
| 345 | } |
Soby Mathew | 68ea954 | 2022-03-22 13:58:52 +0000 | [diff] [blame] | 346 | VERBOSE("RMMD: RMI call from non-secure world.\n"); |
Soby Mathew | fccd3ea | 2021-11-17 15:13:30 +0000 | [diff] [blame] | 347 | return rmmd_smc_forward(NON_SECURE, REALM, smc_fid, |
Zelalem Aweke | 13dc8f1 | 2021-07-09 14:20:03 -0500 | [diff] [blame] | 348 | x1, x2, x3, x4, handle); |
| 349 | } |
| 350 | |
Soby Mathew | 68ea954 | 2022-03-22 13:58:52 +0000 | [diff] [blame] | 351 | if (src_sec_state != SMC_FROM_REALM) { |
| 352 | SMC_RET1(handle, SMC_UNK); |
| 353 | } |
Zelalem Aweke | 13dc8f1 | 2021-07-09 14:20:03 -0500 | [diff] [blame] | 354 | |
| 355 | switch (smc_fid) { |
AlexeiFedorov | 90ce18f | 2022-09-23 16:57:28 +0100 | [diff] [blame] | 356 | case RMM_RMI_REQ_COMPLETE: { |
| 357 | uint64_t x5 = SMC_GET_GP(handle, CTX_GPREG_X5); |
Zelalem Aweke | 13dc8f1 | 2021-07-09 14:20:03 -0500 | [diff] [blame] | 358 | |
AlexeiFedorov | 90ce18f | 2022-09-23 16:57:28 +0100 | [diff] [blame] | 359 | return rmmd_smc_forward(REALM, NON_SECURE, x1, |
| 360 | x2, x3, x4, x5, handle); |
| 361 | } |
Zelalem Aweke | 13dc8f1 | 2021-07-09 14:20:03 -0500 | [diff] [blame] | 362 | default: |
Soby Mathew | 68ea954 | 2022-03-22 13:58:52 +0000 | [diff] [blame] | 363 | WARN("RMMD: Unsupported RMM call 0x%08x\n", smc_fid); |
Zelalem Aweke | 13dc8f1 | 2021-07-09 14:20:03 -0500 | [diff] [blame] | 364 | SMC_RET1(handle, SMC_UNK); |
| 365 | } |
| 366 | } |
| 367 | |
| 368 | /******************************************************************************* |
| 369 | * This cpu has been turned on. Enter RMM to initialise R-EL2. Entry into RMM |
| 370 | * is done after initialising minimal architectural state that guarantees safe |
| 371 | * execution. |
| 372 | ******************************************************************************/ |
| 373 | static void *rmmd_cpu_on_finish_handler(const void *arg) |
| 374 | { |
Javier Almansa Sobrino | 7176a77 | 2021-11-24 18:37:37 +0000 | [diff] [blame] | 375 | long rc; |
Zelalem Aweke | 13dc8f1 | 2021-07-09 14:20:03 -0500 | [diff] [blame] | 376 | uint32_t linear_id = plat_my_core_pos(); |
| 377 | rmmd_rmm_context_t *ctx = &rmm_context[linear_id]; |
| 378 | |
Javier Almansa Sobrino | 7176a77 | 2021-11-24 18:37:37 +0000 | [diff] [blame] | 379 | if (rmm_boot_failed) { |
| 380 | /* RMM Boot failed on a previous CPU. Abort. */ |
| 381 | ERROR("RMM Failed to initialize. Ignoring for CPU%d\n", |
| 382 | linear_id); |
| 383 | return NULL; |
| 384 | } |
| 385 | |
| 386 | /* |
| 387 | * Prepare warmboot arguments for RMM: |
| 388 | * arg0: This CPUID. |
| 389 | * arg1 to arg3: Not used. |
| 390 | */ |
| 391 | rmm_ep_info->args.arg0 = linear_id; |
| 392 | rmm_ep_info->args.arg1 = 0ULL; |
| 393 | rmm_ep_info->args.arg2 = 0ULL; |
| 394 | rmm_ep_info->args.arg3 = 0ULL; |
Zelalem Aweke | 13dc8f1 | 2021-07-09 14:20:03 -0500 | [diff] [blame] | 395 | |
| 396 | /* Initialise RMM context with this entry point information */ |
| 397 | cm_setup_context(&ctx->cpu_ctx, rmm_ep_info); |
| 398 | |
Subhasish Ghosh | c25225a | 2021-12-09 15:41:37 +0000 | [diff] [blame] | 399 | /* Enable architecture extensions */ |
| 400 | manage_extensions_realm(&ctx->cpu_ctx); |
| 401 | |
Zelalem Aweke | 13dc8f1 | 2021-07-09 14:20:03 -0500 | [diff] [blame] | 402 | /* Initialize RMM EL2 context. */ |
| 403 | rmm_el2_context_init(&ctx->cpu_ctx.el2_sysregs_ctx); |
| 404 | |
| 405 | rc = rmmd_rmm_sync_entry(ctx); |
Javier Almansa Sobrino | 7176a77 | 2021-11-24 18:37:37 +0000 | [diff] [blame] | 406 | |
| 407 | if (rc != E_RMM_BOOT_SUCCESS) { |
| 408 | ERROR("RMM init failed on CPU%d: %ld\n", linear_id, rc); |
| 409 | /* Mark the boot as failed for any other booting CPU */ |
| 410 | rmm_boot_failed = true; |
Zelalem Aweke | 13dc8f1 | 2021-07-09 14:20:03 -0500 | [diff] [blame] | 411 | } |
| 412 | |
Zelalem Aweke | 13dc8f1 | 2021-07-09 14:20:03 -0500 | [diff] [blame] | 413 | return NULL; |
| 414 | } |
| 415 | |
| 416 | /* Subscribe to PSCI CPU on to initialize RMM on secondary */ |
| 417 | SUBSCRIBE_TO_EVENT(psci_cpu_on_finish, rmmd_cpu_on_finish_handler); |
| 418 | |
Soby Mathew | 68ea954 | 2022-03-22 13:58:52 +0000 | [diff] [blame] | 419 | /* Convert GPT lib error to RMMD GTS error */ |
| 420 | static int gpt_to_gts_error(int error, uint32_t smc_fid, uint64_t address) |
| 421 | { |
| 422 | int ret; |
| 423 | |
| 424 | if (error == 0) { |
Javier Almansa Sobrino | dea652e | 2022-04-13 17:57:35 +0100 | [diff] [blame] | 425 | return E_RMM_OK; |
Soby Mathew | 68ea954 | 2022-03-22 13:58:52 +0000 | [diff] [blame] | 426 | } |
| 427 | |
| 428 | if (error == -EINVAL) { |
Javier Almansa Sobrino | dea652e | 2022-04-13 17:57:35 +0100 | [diff] [blame] | 429 | ret = E_RMM_BAD_ADDR; |
Soby Mathew | 68ea954 | 2022-03-22 13:58:52 +0000 | [diff] [blame] | 430 | } else { |
| 431 | /* This is the only other error code we expect */ |
| 432 | assert(error == -EPERM); |
Javier Almansa Sobrino | dea652e | 2022-04-13 17:57:35 +0100 | [diff] [blame] | 433 | ret = E_RMM_BAD_PAS; |
Soby Mathew | 68ea954 | 2022-03-22 13:58:52 +0000 | [diff] [blame] | 434 | } |
| 435 | |
| 436 | ERROR("RMMD: PAS Transition failed. GPT ret = %d, PA: 0x%"PRIx64 ", FID = 0x%x\n", |
| 437 | error, address, smc_fid); |
| 438 | return ret; |
| 439 | } |
| 440 | |
Zelalem Aweke | 13dc8f1 | 2021-07-09 14:20:03 -0500 | [diff] [blame] | 441 | /******************************************************************************* |
Soby Mathew | 68ea954 | 2022-03-22 13:58:52 +0000 | [diff] [blame] | 442 | * This function handles RMM-EL3 interface SMCs |
Zelalem Aweke | 13dc8f1 | 2021-07-09 14:20:03 -0500 | [diff] [blame] | 443 | ******************************************************************************/ |
Soby Mathew | 68ea954 | 2022-03-22 13:58:52 +0000 | [diff] [blame] | 444 | uint64_t rmmd_rmm_el3_handler(uint32_t smc_fid, uint64_t x1, uint64_t x2, |
Zelalem Aweke | 13dc8f1 | 2021-07-09 14:20:03 -0500 | [diff] [blame] | 445 | uint64_t x3, uint64_t x4, void *cookie, |
| 446 | void *handle, uint64_t flags) |
| 447 | { |
| 448 | uint32_t src_sec_state; |
Robert Wakim | 48e6b57 | 2021-10-21 15:39:56 +0100 | [diff] [blame] | 449 | int ret; |
Zelalem Aweke | 13dc8f1 | 2021-07-09 14:20:03 -0500 | [diff] [blame] | 450 | |
Javier Almansa Sobrino | 7176a77 | 2021-11-24 18:37:37 +0000 | [diff] [blame] | 451 | /* If RMM failed to boot, treat any RMM-EL3 interface SMC as unknown */ |
| 452 | if (rmm_boot_failed) { |
| 453 | WARN("RMMD: Failed to boot up RMM. Ignoring RMM-EL3 call\n"); |
| 454 | SMC_RET1(handle, SMC_UNK); |
| 455 | } |
| 456 | |
Zelalem Aweke | 13dc8f1 | 2021-07-09 14:20:03 -0500 | [diff] [blame] | 457 | /* Determine which security state this SMC originated from */ |
| 458 | src_sec_state = caller_sec_state(flags); |
| 459 | |
| 460 | if (src_sec_state != SMC_FROM_REALM) { |
Soby Mathew | 68ea954 | 2022-03-22 13:58:52 +0000 | [diff] [blame] | 461 | WARN("RMMD: RMM-EL3 call originated from secure or normal world\n"); |
Zelalem Aweke | 13dc8f1 | 2021-07-09 14:20:03 -0500 | [diff] [blame] | 462 | SMC_RET1(handle, SMC_UNK); |
| 463 | } |
| 464 | |
| 465 | switch (smc_fid) { |
Javier Almansa Sobrino | f809b16 | 2022-07-04 17:06:36 +0100 | [diff] [blame] | 466 | case RMM_GTSI_DELEGATE: |
Robert Wakim | 48e6b57 | 2021-10-21 15:39:56 +0100 | [diff] [blame] | 467 | ret = gpt_delegate_pas(x1, PAGE_SIZE_4KB, SMC_FROM_REALM); |
Soby Mathew | 68ea954 | 2022-03-22 13:58:52 +0000 | [diff] [blame] | 468 | SMC_RET1(handle, gpt_to_gts_error(ret, smc_fid, x1)); |
Javier Almansa Sobrino | f809b16 | 2022-07-04 17:06:36 +0100 | [diff] [blame] | 469 | case RMM_GTSI_UNDELEGATE: |
Robert Wakim | 48e6b57 | 2021-10-21 15:39:56 +0100 | [diff] [blame] | 470 | ret = gpt_undelegate_pas(x1, PAGE_SIZE_4KB, SMC_FROM_REALM); |
Soby Mathew | 68ea954 | 2022-03-22 13:58:52 +0000 | [diff] [blame] | 471 | SMC_RET1(handle, gpt_to_gts_error(ret, smc_fid, x1)); |
Javier Almansa Sobrino | f809b16 | 2022-07-04 17:06:36 +0100 | [diff] [blame] | 472 | case RMM_ATTEST_GET_PLAT_TOKEN: |
Soby Mathew | 294e1cf | 2022-03-22 16:19:39 +0000 | [diff] [blame] | 473 | ret = rmmd_attest_get_platform_token(x1, &x2, x3); |
| 474 | SMC_RET2(handle, ret, x2); |
Javier Almansa Sobrino | f809b16 | 2022-07-04 17:06:36 +0100 | [diff] [blame] | 475 | case RMM_ATTEST_GET_REALM_KEY: |
Soby Mathew | f05d93a | 2022-03-22 16:21:19 +0000 | [diff] [blame] | 476 | ret = rmmd_attest_get_signing_key(x1, &x2, x3); |
| 477 | SMC_RET2(handle, ret, x2); |
Javier Almansa Sobrino | 7176a77 | 2021-11-24 18:37:37 +0000 | [diff] [blame] | 478 | |
| 479 | case RMM_BOOT_COMPLETE: |
| 480 | VERBOSE("RMMD: running rmmd_rmm_sync_exit\n"); |
| 481 | rmmd_rmm_sync_exit(x1); |
| 482 | |
Zelalem Aweke | 13dc8f1 | 2021-07-09 14:20:03 -0500 | [diff] [blame] | 483 | default: |
Soby Mathew | 68ea954 | 2022-03-22 13:58:52 +0000 | [diff] [blame] | 484 | WARN("RMMD: Unsupported RMM-EL3 call 0x%08x\n", smc_fid); |
Zelalem Aweke | 13dc8f1 | 2021-07-09 14:20:03 -0500 | [diff] [blame] | 485 | SMC_RET1(handle, SMC_UNK); |
| 486 | } |
Zelalem Aweke | 13dc8f1 | 2021-07-09 14:20:03 -0500 | [diff] [blame] | 487 | } |