Jeenu Viswambharan | 1814a3e | 2014-02-28 10:08:33 +0000 | [diff] [blame] | 1 | /* |
Manish V Badarkhe | 033f2b1 | 2025-04-15 20:16:32 +0100 | [diff] [blame^] | 2 | * Copyright (c) 2014-2025, Arm Limited and Contributors. All rights reserved. |
Jeenu Viswambharan | 1814a3e | 2014-02-28 10:08:33 +0000 | [diff] [blame] | 3 | * |
dp-arm | fa3cf0b | 2017-05-03 09:38:09 +0100 | [diff] [blame] | 4 | * SPDX-License-Identifier: BSD-3-Clause |
Jeenu Viswambharan | 1814a3e | 2014-02-28 10:08:33 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
Soby Mathew | 8da8966 | 2016-09-19 17:21:15 +0100 | [diff] [blame] | 7 | #include <assert.h> |
Dan Handley | 2bd4ef2 | 2014-04-09 13:14:54 +0100 | [diff] [blame] | 8 | #include <stdint.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 9 | |
| 10 | #include <common/debug.h> |
| 11 | #include <common/runtime_svc.h> |
| 12 | #include <lib/el3_runtime/cpu_data.h> |
| 13 | #include <lib/pmf/pmf.h> |
| 14 | #include <lib/psci/psci.h> |
| 15 | #include <lib/runtime_instr.h> |
Manish V Badarkhe | 8a76603 | 2022-02-23 11:26:53 +0000 | [diff] [blame] | 16 | #include <services/drtm_svc.h> |
Sona Mathew | 7fe0352 | 2022-11-18 18:05:38 -0600 | [diff] [blame] | 17 | #include <services/errata_abi_svc.h> |
Manish V Badarkhe | 033f2b1 | 2025-04-15 20:16:32 +0100 | [diff] [blame^] | 18 | #include <services/lfa_svc.h> |
Jeremy Linton | c8c3e0d | 2020-11-18 10:17:57 -0600 | [diff] [blame] | 19 | #include <services/pci_svc.h> |
Zelalem Aweke | 13dc8f1 | 2021-07-09 14:20:03 -0500 | [diff] [blame] | 20 | #include <services/rmmd_svc.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 21 | #include <services/sdei.h> |
Paul Beesley | e9754e6 | 2019-10-15 12:51:55 +0000 | [diff] [blame] | 22 | #include <services/spm_mm_svc.h> |
Marc Bonnici | da2c9e1 | 2021-11-29 18:02:45 +0000 | [diff] [blame] | 23 | #include <services/spmc_svc.h> |
Achin Gupta | 3e1f197 | 2019-10-11 15:49:00 +0100 | [diff] [blame] | 24 | #include <services/spmd_svc.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 25 | #include <services/std_svc.h> |
Jimmy Brisson | 26c5b5c | 2020-06-22 14:18:42 -0500 | [diff] [blame] | 26 | #include <services/trng_svc.h> |
Antonio Nino Diaz | e0f9063 | 2018-12-14 00:18:21 +0000 | [diff] [blame] | 27 | #include <smccc_helpers.h> |
| 28 | #include <tools_share/uuid.h> |
Jeenu Viswambharan | 1814a3e | 2014-02-28 10:08:33 +0000 | [diff] [blame] | 29 | |
| 30 | /* Standard Service UUID */ |
Roberto Vargas | eace8f1 | 2018-04-26 13:36:53 +0100 | [diff] [blame] | 31 | static uuid_t arm_svc_uid = { |
| 32 | {0x5b, 0x90, 0x8d, 0x10}, |
| 33 | {0x63, 0xf8}, |
| 34 | {0xe8, 0x47}, |
| 35 | 0xae, 0x2d, |
| 36 | {0xc0, 0xfb, 0x56, 0x41, 0xf6, 0xe2} |
| 37 | }; |
Jeenu Viswambharan | 1814a3e | 2014-02-28 10:08:33 +0000 | [diff] [blame] | 38 | |
Soby Mathew | 8da8966 | 2016-09-19 17:21:15 +0100 | [diff] [blame] | 39 | /* Setup Standard Services */ |
| 40 | static int32_t std_svc_setup(void) |
| 41 | { |
| 42 | uintptr_t svc_arg; |
Antonio Nino Diaz | c41f206 | 2017-10-24 10:07:35 +0100 | [diff] [blame] | 43 | int ret = 0; |
Soby Mathew | 8da8966 | 2016-09-19 17:21:15 +0100 | [diff] [blame] | 44 | |
| 45 | svc_arg = get_arm_std_svc_args(PSCI_FID_MASK); |
| 46 | assert(svc_arg); |
| 47 | |
| 48 | /* |
Antonio Nino Diaz | c41f206 | 2017-10-24 10:07:35 +0100 | [diff] [blame] | 49 | * PSCI is one of the specifications implemented as a Standard Service. |
Soby Mathew | 8da8966 | 2016-09-19 17:21:15 +0100 | [diff] [blame] | 50 | * The `psci_setup()` also does EL3 architectural setup. |
| 51 | */ |
Antonio Nino Diaz | c41f206 | 2017-10-24 10:07:35 +0100 | [diff] [blame] | 52 | if (psci_setup((const psci_lib_args_t *)svc_arg) != PSCI_E_SUCCESS) { |
| 53 | ret = 1; |
| 54 | } |
| 55 | |
Paul Beesley | db4e25a | 2019-10-14 15:27:12 +0000 | [diff] [blame] | 56 | #if SPM_MM |
Paul Beesley | e9754e6 | 2019-10-15 12:51:55 +0000 | [diff] [blame] | 57 | if (spm_mm_setup() != 0) { |
Antonio Nino Diaz | c41f206 | 2017-10-24 10:07:35 +0100 | [diff] [blame] | 58 | ret = 1; |
| 59 | } |
| 60 | #endif |
| 61 | |
Achin Gupta | 3e1f197 | 2019-10-11 15:49:00 +0100 | [diff] [blame] | 62 | #if defined(SPD_spmd) |
| 63 | if (spmd_setup() != 0) { |
| 64 | ret = 1; |
| 65 | } |
| 66 | #endif |
| 67 | |
Subhasish Ghosh | 8cc642c | 2021-11-14 17:19:09 +0000 | [diff] [blame] | 68 | #if ENABLE_RME |
| 69 | if (rmmd_setup() != 0) { |
Varun Wadekar | 5098dc8 | 2024-07-15 20:57:21 +0000 | [diff] [blame] | 70 | WARN("RMMD setup failed. Continuing boot.\n"); |
Subhasish Ghosh | 8cc642c | 2021-11-14 17:19:09 +0000 | [diff] [blame] | 71 | } |
| 72 | #endif |
| 73 | |
Jeenu Viswambharan | 04e3a7f | 2017-10-16 08:43:14 +0100 | [diff] [blame] | 74 | #if SDEI_SUPPORT |
| 75 | /* SDEI initialisation */ |
| 76 | sdei_init(); |
| 77 | #endif |
| 78 | |
Jayanth Dodderi Chidanand | 7c7faff | 2022-10-11 17:16:07 +0100 | [diff] [blame] | 79 | #if TRNG_SUPPORT |
| 80 | /* TRNG initialisation */ |
Jimmy Brisson | 26c5b5c | 2020-06-22 14:18:42 -0500 | [diff] [blame] | 81 | trng_setup(); |
Jayanth Dodderi Chidanand | 7c7faff | 2022-10-11 17:16:07 +0100 | [diff] [blame] | 82 | #endif /* TRNG_SUPPORT */ |
Jimmy Brisson | 26c5b5c | 2020-06-22 14:18:42 -0500 | [diff] [blame] | 83 | |
Manish V Badarkhe | 8a76603 | 2022-02-23 11:26:53 +0000 | [diff] [blame] | 84 | #if DRTM_SUPPORT |
| 85 | if (drtm_setup() != 0) { |
| 86 | ret = 1; |
| 87 | } |
| 88 | #endif /* DRTM_SUPPORT */ |
| 89 | |
Manish V Badarkhe | 033f2b1 | 2025-04-15 20:16:32 +0100 | [diff] [blame^] | 90 | #if LFA_SUPPORT |
| 91 | /* |
| 92 | * Setup/Initialize resources useful during LFA |
| 93 | */ |
| 94 | if (lfa_setup() != 0) { |
| 95 | ret = 1; |
| 96 | } |
| 97 | #endif /* LFA_SUPPORT */ |
| 98 | |
Antonio Nino Diaz | c41f206 | 2017-10-24 10:07:35 +0100 | [diff] [blame] | 99 | return ret; |
Soby Mathew | 8da8966 | 2016-09-19 17:21:15 +0100 | [diff] [blame] | 100 | } |
| 101 | |
Jeenu Viswambharan | 1814a3e | 2014-02-28 10:08:33 +0000 | [diff] [blame] | 102 | /* |
| 103 | * Top-level Standard Service SMC handler. This handler will in turn dispatch |
| 104 | * calls to PSCI SMC handler |
| 105 | */ |
Roberto Vargas | 0571270 | 2018-02-12 12:36:17 +0000 | [diff] [blame] | 106 | static uintptr_t std_svc_smc_handler(uint32_t smc_fid, |
Maheedhar Bollapalli | 56a4423 | 2024-04-22 18:54:51 +0530 | [diff] [blame] | 107 | u_register_t x1_arg, |
| 108 | u_register_t x2_arg, |
| 109 | u_register_t x3_arg, |
| 110 | u_register_t x4_arg, |
Jeenu Viswambharan | 1814a3e | 2014-02-28 10:08:33 +0000 | [diff] [blame] | 111 | void *cookie, |
| 112 | void *handle, |
Soby Mathew | a0fedc4 | 2016-06-16 14:52:04 +0100 | [diff] [blame] | 113 | u_register_t flags) |
Jeenu Viswambharan | 1814a3e | 2014-02-28 10:08:33 +0000 | [diff] [blame] | 114 | { |
Maheedhar Bollapalli | 56a4423 | 2024-04-22 18:54:51 +0530 | [diff] [blame] | 115 | u_register_t x1 = x1_arg; |
| 116 | u_register_t x2 = x2_arg; |
| 117 | u_register_t x3 = x3_arg; |
| 118 | u_register_t x4 = x4_arg; |
| 119 | |
Jeremy Linton | 6b19fe1 | 2021-04-01 13:10:24 -0500 | [diff] [blame] | 120 | if (((smc_fid >> FUNCID_CC_SHIFT) & FUNCID_CC_MASK) == SMC_32) { |
| 121 | /* 32-bit SMC function, clear top parameter bits */ |
| 122 | |
| 123 | x1 &= UINT32_MAX; |
| 124 | x2 &= UINT32_MAX; |
| 125 | x3 &= UINT32_MAX; |
| 126 | x4 &= UINT32_MAX; |
| 127 | } |
| 128 | |
Jeenu Viswambharan | 1814a3e | 2014-02-28 10:08:33 +0000 | [diff] [blame] | 129 | /* |
| 130 | * Dispatch PSCI calls to PSCI SMC handler and return its return |
| 131 | * value |
| 132 | */ |
| 133 | if (is_psci_fid(smc_fid)) { |
dp-arm | 3cac786 | 2016-09-19 11:18:44 +0100 | [diff] [blame] | 134 | uint64_t ret; |
| 135 | |
| 136 | #if ENABLE_RUNTIME_INSTRUMENTATION |
dp-arm | c93e21f | 2016-10-31 17:17:21 +0000 | [diff] [blame] | 137 | |
| 138 | /* |
| 139 | * Flush cache line so that even if CPU power down happens |
| 140 | * the timestamp update is reflected in memory. |
| 141 | */ |
dp-arm | 3cac786 | 2016-09-19 11:18:44 +0100 | [diff] [blame] | 142 | PMF_WRITE_TIMESTAMP(rt_instr_svc, |
| 143 | RT_INSTR_ENTER_PSCI, |
dp-arm | c93e21f | 2016-10-31 17:17:21 +0000 | [diff] [blame] | 144 | PMF_CACHE_MAINT, |
dp-arm | 3cac786 | 2016-09-19 11:18:44 +0100 | [diff] [blame] | 145 | get_cpu_data(cpu_data_pmf_ts[CPU_DATA_PMF_TS0_IDX])); |
| 146 | #endif |
| 147 | |
| 148 | ret = psci_smc_handler(smc_fid, x1, x2, x3, x4, |
| 149 | cookie, handle, flags); |
| 150 | |
| 151 | #if ENABLE_RUNTIME_INSTRUMENTATION |
| 152 | PMF_CAPTURE_TIMESTAMP(rt_instr_svc, |
| 153 | RT_INSTR_EXIT_PSCI, |
| 154 | PMF_NO_CACHE_MAINT); |
| 155 | #endif |
| 156 | |
| 157 | SMC_RET1(handle, ret); |
Jeenu Viswambharan | 1814a3e | 2014-02-28 10:08:33 +0000 | [diff] [blame] | 158 | } |
Antonio Nino Diaz | c41f206 | 2017-10-24 10:07:35 +0100 | [diff] [blame] | 159 | |
Paul Beesley | fe975b4 | 2019-09-16 11:29:03 +0000 | [diff] [blame] | 160 | #if SPM_MM |
Antonio Nino Diaz | c41f206 | 2017-10-24 10:07:35 +0100 | [diff] [blame] | 161 | /* |
| 162 | * Dispatch SPM calls to SPM SMC handler and return its return |
| 163 | * value |
| 164 | */ |
Paul Beesley | e9754e6 | 2019-10-15 12:51:55 +0000 | [diff] [blame] | 165 | if (is_spm_mm_fid(smc_fid)) { |
| 166 | return spm_mm_smc_handler(smc_fid, x1, x2, x3, x4, cookie, |
| 167 | handle, flags); |
Antonio Nino Diaz | c41f206 | 2017-10-24 10:07:35 +0100 | [diff] [blame] | 168 | } |
| 169 | #endif |
Jeenu Viswambharan | 1814a3e | 2014-02-28 10:08:33 +0000 | [diff] [blame] | 170 | |
Achin Gupta | 3e1f197 | 2019-10-11 15:49:00 +0100 | [diff] [blame] | 171 | #if defined(SPD_spmd) |
| 172 | /* |
J-Alves | 2672cde | 2020-05-07 18:42:25 +0100 | [diff] [blame] | 173 | * Dispatch FFA calls to the FFA SMC handler implemented by the SPM |
Achin Gupta | 3e1f197 | 2019-10-11 15:49:00 +0100 | [diff] [blame] | 174 | * dispatcher and return its return value |
| 175 | */ |
J-Alves | 2672cde | 2020-05-07 18:42:25 +0100 | [diff] [blame] | 176 | if (is_ffa_fid(smc_fid)) { |
Marc Bonnici | da2c9e1 | 2021-11-29 18:02:45 +0000 | [diff] [blame] | 177 | return spmd_ffa_smc_handler(smc_fid, x1, x2, x3, x4, cookie, |
| 178 | handle, flags); |
Achin Gupta | 3e1f197 | 2019-10-11 15:49:00 +0100 | [diff] [blame] | 179 | } |
| 180 | #endif |
| 181 | |
Jeenu Viswambharan | 04e3a7f | 2017-10-16 08:43:14 +0100 | [diff] [blame] | 182 | #if SDEI_SUPPORT |
| 183 | if (is_sdei_fid(smc_fid)) { |
| 184 | return sdei_smc_handler(smc_fid, x1, x2, x3, x4, cookie, handle, |
| 185 | flags); |
| 186 | } |
| 187 | #endif |
| 188 | |
Andre Przywara | 56f55c9 | 2021-02-10 16:40:24 +0000 | [diff] [blame] | 189 | #if TRNG_SUPPORT |
Jimmy Brisson | 26c5b5c | 2020-06-22 14:18:42 -0500 | [diff] [blame] | 190 | if (is_trng_fid(smc_fid)) { |
| 191 | return trng_smc_handler(smc_fid, x1, x2, x3, x4, cookie, handle, |
| 192 | flags); |
| 193 | } |
Jayanth Dodderi Chidanand | 7c7faff | 2022-10-11 17:16:07 +0100 | [diff] [blame] | 194 | #endif /* TRNG_SUPPORT */ |
| 195 | |
Sona Mathew | 7fe0352 | 2022-11-18 18:05:38 -0600 | [diff] [blame] | 196 | #if ERRATA_ABI_SUPPORT |
| 197 | if (is_errata_fid(smc_fid)) { |
| 198 | return errata_abi_smc_handler(smc_fid, x1, x2, x3, x4, cookie, |
| 199 | handle, flags); |
| 200 | } |
| 201 | #endif /* ERRATA_ABI_SUPPORT */ |
| 202 | |
Zelalem Aweke | 13dc8f1 | 2021-07-09 14:20:03 -0500 | [diff] [blame] | 203 | #if ENABLE_RME |
Soby Mathew | 68ea954 | 2022-03-22 13:58:52 +0000 | [diff] [blame] | 204 | |
| 205 | if (is_rmmd_el3_fid(smc_fid)) { |
| 206 | return rmmd_rmm_el3_handler(smc_fid, x1, x2, x3, x4, cookie, |
| 207 | handle, flags); |
Zelalem Aweke | 13dc8f1 | 2021-07-09 14:20:03 -0500 | [diff] [blame] | 208 | } |
Subhasish Ghosh | 8cc642c | 2021-11-14 17:19:09 +0000 | [diff] [blame] | 209 | |
| 210 | if (is_rmi_fid(smc_fid)) { |
| 211 | return rmmd_rmi_handler(smc_fid, x1, x2, x3, x4, cookie, |
| 212 | handle, flags); |
| 213 | } |
Zelalem Aweke | 13dc8f1 | 2021-07-09 14:20:03 -0500 | [diff] [blame] | 214 | #endif |
Jimmy Brisson | 26c5b5c | 2020-06-22 14:18:42 -0500 | [diff] [blame] | 215 | |
Jeremy Linton | c8c3e0d | 2020-11-18 10:17:57 -0600 | [diff] [blame] | 216 | #if SMC_PCI_SUPPORT |
| 217 | if (is_pci_fid(smc_fid)) { |
| 218 | return pci_smc_handler(smc_fid, x1, x2, x3, x4, cookie, handle, |
| 219 | flags); |
| 220 | } |
| 221 | #endif |
| 222 | |
Manish V Badarkhe | 8a76603 | 2022-02-23 11:26:53 +0000 | [diff] [blame] | 223 | #if DRTM_SUPPORT |
| 224 | if (is_drtm_fid(smc_fid)) { |
| 225 | return drtm_smc_handler(smc_fid, x1, x2, x3, x4, cookie, handle, |
| 226 | flags); |
| 227 | } |
| 228 | #endif /* DRTM_SUPPORT */ |
| 229 | |
Manish V Badarkhe | 033f2b1 | 2025-04-15 20:16:32 +0100 | [diff] [blame^] | 230 | #if LFA_SUPPORT |
| 231 | if (is_lfa_fid(smc_fid)) { |
| 232 | return lfa_smc_handler(smc_fid, x1, x2, x3, x4, cookie, handle, flags); |
| 233 | } |
| 234 | #endif /* LFA_SUPPORT */ |
| 235 | |
| 236 | |
Jeenu Viswambharan | 1814a3e | 2014-02-28 10:08:33 +0000 | [diff] [blame] | 237 | switch (smc_fid) { |
| 238 | case ARM_STD_SVC_CALL_COUNT: |
| 239 | /* |
| 240 | * Return the number of Standard Service Calls. PSCI is the only |
| 241 | * standard service implemented; so return number of PSCI calls |
| 242 | */ |
| 243 | SMC_RET1(handle, PSCI_NUM_CALLS); |
| 244 | |
| 245 | case ARM_STD_SVC_UID: |
| 246 | /* Return UID to the caller */ |
| 247 | SMC_UUID_RET(handle, arm_svc_uid); |
| 248 | |
| 249 | case ARM_STD_SVC_VERSION: |
| 250 | /* Return the version of current implementation */ |
| 251 | SMC_RET2(handle, STD_SVC_VERSION_MAJOR, STD_SVC_VERSION_MINOR); |
| 252 | |
| 253 | default: |
Andre Przywara | e619fa9 | 2021-04-28 15:59:21 +0100 | [diff] [blame] | 254 | VERBOSE("Unimplemented Standard Service Call: 0x%x \n", smc_fid); |
Jeenu Viswambharan | 1814a3e | 2014-02-28 10:08:33 +0000 | [diff] [blame] | 255 | SMC_RET1(handle, SMC_UNK); |
| 256 | } |
| 257 | } |
| 258 | |
| 259 | /* Register Standard Service Calls as runtime service */ |
| 260 | DECLARE_RT_SVC( |
| 261 | std_svc, |
| 262 | |
| 263 | OEN_STD_START, |
| 264 | OEN_STD_END, |
| 265 | SMC_TYPE_FAST, |
Soby Mathew | 8da8966 | 2016-09-19 17:21:15 +0100 | [diff] [blame] | 266 | std_svc_setup, |
Jeenu Viswambharan | 1814a3e | 2014-02-28 10:08:33 +0000 | [diff] [blame] | 267 | std_svc_smc_handler |
| 268 | ); |