blob: deca1c044f4cd47b1b3d905c24a078ed9d7cc73f [file] [log] [blame]
Jeenu Viswambharan1814a3e2014-02-28 10:08:33 +00001/*
Sona Mathew7fe03522022-11-18 18:05:38 -06002 * Copyright (c) 2014-2023, Arm Limited and Contributors. All rights reserved.
Jeenu Viswambharan1814a3e2014-02-28 10:08:33 +00003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Jeenu Viswambharan1814a3e2014-02-28 10:08:33 +00005 */
6
Soby Mathew8da89662016-09-19 17:21:15 +01007#include <assert.h>
Dan Handley2bd4ef22014-04-09 13:14:54 +01008#include <stdint.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +00009
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 Badarkhe8a766032022-02-23 11:26:53 +000016#include <services/drtm_svc.h>
Sona Mathew7fe03522022-11-18 18:05:38 -060017#include <services/errata_abi_svc.h>
Jeremy Lintonc8c3e0d2020-11-18 10:17:57 -060018#include <services/pci_svc.h>
Zelalem Aweke13dc8f12021-07-09 14:20:03 -050019#include <services/rmmd_svc.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000020#include <services/sdei.h>
Paul Beesleye9754e62019-10-15 12:51:55 +000021#include <services/spm_mm_svc.h>
Marc Bonnicida2c9e12021-11-29 18:02:45 +000022#include <services/spmc_svc.h>
Achin Gupta3e1f1972019-10-11 15:49:00 +010023#include <services/spmd_svc.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000024#include <services/std_svc.h>
Jimmy Brisson26c5b5c2020-06-22 14:18:42 -050025#include <services/trng_svc.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000026#include <smccc_helpers.h>
27#include <tools_share/uuid.h>
Jeenu Viswambharan1814a3e2014-02-28 10:08:33 +000028
29/* Standard Service UUID */
Roberto Vargaseace8f12018-04-26 13:36:53 +010030static uuid_t arm_svc_uid = {
31 {0x5b, 0x90, 0x8d, 0x10},
32 {0x63, 0xf8},
33 {0xe8, 0x47},
34 0xae, 0x2d,
35 {0xc0, 0xfb, 0x56, 0x41, 0xf6, 0xe2}
36};
Jeenu Viswambharan1814a3e2014-02-28 10:08:33 +000037
Soby Mathew8da89662016-09-19 17:21:15 +010038/* Setup Standard Services */
39static int32_t std_svc_setup(void)
40{
41 uintptr_t svc_arg;
Antonio Nino Diazc41f2062017-10-24 10:07:35 +010042 int ret = 0;
Soby Mathew8da89662016-09-19 17:21:15 +010043
44 svc_arg = get_arm_std_svc_args(PSCI_FID_MASK);
45 assert(svc_arg);
46
47 /*
Antonio Nino Diazc41f2062017-10-24 10:07:35 +010048 * PSCI is one of the specifications implemented as a Standard Service.
Soby Mathew8da89662016-09-19 17:21:15 +010049 * The `psci_setup()` also does EL3 architectural setup.
50 */
Antonio Nino Diazc41f2062017-10-24 10:07:35 +010051 if (psci_setup((const psci_lib_args_t *)svc_arg) != PSCI_E_SUCCESS) {
52 ret = 1;
53 }
54
Paul Beesleydb4e25a2019-10-14 15:27:12 +000055#if SPM_MM
Paul Beesleye9754e62019-10-15 12:51:55 +000056 if (spm_mm_setup() != 0) {
Antonio Nino Diazc41f2062017-10-24 10:07:35 +010057 ret = 1;
58 }
59#endif
60
Achin Gupta3e1f1972019-10-11 15:49:00 +010061#if defined(SPD_spmd)
62 if (spmd_setup() != 0) {
63 ret = 1;
64 }
65#endif
66
Subhasish Ghosh8cc642c2021-11-14 17:19:09 +000067#if ENABLE_RME
68 if (rmmd_setup() != 0) {
Varun Wadekar5098dc82024-07-15 20:57:21 +000069 WARN("RMMD setup failed. Continuing boot.\n");
Subhasish Ghosh8cc642c2021-11-14 17:19:09 +000070 }
71#endif
72
Jeenu Viswambharan04e3a7f2017-10-16 08:43:14 +010073#if SDEI_SUPPORT
74 /* SDEI initialisation */
75 sdei_init();
76#endif
77
Jayanth Dodderi Chidanand7c7faff2022-10-11 17:16:07 +010078#if TRNG_SUPPORT
79 /* TRNG initialisation */
Jimmy Brisson26c5b5c2020-06-22 14:18:42 -050080 trng_setup();
Jayanth Dodderi Chidanand7c7faff2022-10-11 17:16:07 +010081#endif /* TRNG_SUPPORT */
Jimmy Brisson26c5b5c2020-06-22 14:18:42 -050082
Manish V Badarkhe8a766032022-02-23 11:26:53 +000083#if DRTM_SUPPORT
84 if (drtm_setup() != 0) {
85 ret = 1;
86 }
87#endif /* DRTM_SUPPORT */
88
Antonio Nino Diazc41f2062017-10-24 10:07:35 +010089 return ret;
Soby Mathew8da89662016-09-19 17:21:15 +010090}
91
Jeenu Viswambharan1814a3e2014-02-28 10:08:33 +000092/*
93 * Top-level Standard Service SMC handler. This handler will in turn dispatch
94 * calls to PSCI SMC handler
95 */
Roberto Vargas05712702018-02-12 12:36:17 +000096static uintptr_t std_svc_smc_handler(uint32_t smc_fid,
Maheedhar Bollapalli56a44232024-04-22 18:54:51 +053097 u_register_t x1_arg,
98 u_register_t x2_arg,
99 u_register_t x3_arg,
100 u_register_t x4_arg,
Jeenu Viswambharan1814a3e2014-02-28 10:08:33 +0000101 void *cookie,
102 void *handle,
Soby Mathewa0fedc42016-06-16 14:52:04 +0100103 u_register_t flags)
Jeenu Viswambharan1814a3e2014-02-28 10:08:33 +0000104{
Maheedhar Bollapalli56a44232024-04-22 18:54:51 +0530105 u_register_t x1 = x1_arg;
106 u_register_t x2 = x2_arg;
107 u_register_t x3 = x3_arg;
108 u_register_t x4 = x4_arg;
109
Jeremy Linton6b19fe12021-04-01 13:10:24 -0500110 if (((smc_fid >> FUNCID_CC_SHIFT) & FUNCID_CC_MASK) == SMC_32) {
111 /* 32-bit SMC function, clear top parameter bits */
112
113 x1 &= UINT32_MAX;
114 x2 &= UINT32_MAX;
115 x3 &= UINT32_MAX;
116 x4 &= UINT32_MAX;
117 }
118
Jeenu Viswambharan1814a3e2014-02-28 10:08:33 +0000119 /*
120 * Dispatch PSCI calls to PSCI SMC handler and return its return
121 * value
122 */
123 if (is_psci_fid(smc_fid)) {
dp-arm3cac7862016-09-19 11:18:44 +0100124 uint64_t ret;
125
126#if ENABLE_RUNTIME_INSTRUMENTATION
dp-armc93e21f2016-10-31 17:17:21 +0000127
128 /*
129 * Flush cache line so that even if CPU power down happens
130 * the timestamp update is reflected in memory.
131 */
dp-arm3cac7862016-09-19 11:18:44 +0100132 PMF_WRITE_TIMESTAMP(rt_instr_svc,
133 RT_INSTR_ENTER_PSCI,
dp-armc93e21f2016-10-31 17:17:21 +0000134 PMF_CACHE_MAINT,
dp-arm3cac7862016-09-19 11:18:44 +0100135 get_cpu_data(cpu_data_pmf_ts[CPU_DATA_PMF_TS0_IDX]));
136#endif
137
138 ret = psci_smc_handler(smc_fid, x1, x2, x3, x4,
139 cookie, handle, flags);
140
141#if ENABLE_RUNTIME_INSTRUMENTATION
142 PMF_CAPTURE_TIMESTAMP(rt_instr_svc,
143 RT_INSTR_EXIT_PSCI,
144 PMF_NO_CACHE_MAINT);
145#endif
146
147 SMC_RET1(handle, ret);
Jeenu Viswambharan1814a3e2014-02-28 10:08:33 +0000148 }
Antonio Nino Diazc41f2062017-10-24 10:07:35 +0100149
Paul Beesleyfe975b42019-09-16 11:29:03 +0000150#if SPM_MM
Antonio Nino Diazc41f2062017-10-24 10:07:35 +0100151 /*
152 * Dispatch SPM calls to SPM SMC handler and return its return
153 * value
154 */
Paul Beesleye9754e62019-10-15 12:51:55 +0000155 if (is_spm_mm_fid(smc_fid)) {
156 return spm_mm_smc_handler(smc_fid, x1, x2, x3, x4, cookie,
157 handle, flags);
Antonio Nino Diazc41f2062017-10-24 10:07:35 +0100158 }
159#endif
Jeenu Viswambharan1814a3e2014-02-28 10:08:33 +0000160
Achin Gupta3e1f1972019-10-11 15:49:00 +0100161#if defined(SPD_spmd)
162 /*
J-Alves2672cde2020-05-07 18:42:25 +0100163 * Dispatch FFA calls to the FFA SMC handler implemented by the SPM
Achin Gupta3e1f1972019-10-11 15:49:00 +0100164 * dispatcher and return its return value
165 */
J-Alves2672cde2020-05-07 18:42:25 +0100166 if (is_ffa_fid(smc_fid)) {
Marc Bonnicida2c9e12021-11-29 18:02:45 +0000167 return spmd_ffa_smc_handler(smc_fid, x1, x2, x3, x4, cookie,
168 handle, flags);
Achin Gupta3e1f1972019-10-11 15:49:00 +0100169 }
170#endif
171
Jeenu Viswambharan04e3a7f2017-10-16 08:43:14 +0100172#if SDEI_SUPPORT
173 if (is_sdei_fid(smc_fid)) {
174 return sdei_smc_handler(smc_fid, x1, x2, x3, x4, cookie, handle,
175 flags);
176 }
177#endif
178
Andre Przywara56f55c92021-02-10 16:40:24 +0000179#if TRNG_SUPPORT
Jimmy Brisson26c5b5c2020-06-22 14:18:42 -0500180 if (is_trng_fid(smc_fid)) {
181 return trng_smc_handler(smc_fid, x1, x2, x3, x4, cookie, handle,
182 flags);
183 }
Jayanth Dodderi Chidanand7c7faff2022-10-11 17:16:07 +0100184#endif /* TRNG_SUPPORT */
185
Sona Mathew7fe03522022-11-18 18:05:38 -0600186#if ERRATA_ABI_SUPPORT
187 if (is_errata_fid(smc_fid)) {
188 return errata_abi_smc_handler(smc_fid, x1, x2, x3, x4, cookie,
189 handle, flags);
190 }
191#endif /* ERRATA_ABI_SUPPORT */
192
Zelalem Aweke13dc8f12021-07-09 14:20:03 -0500193#if ENABLE_RME
Soby Mathew68ea9542022-03-22 13:58:52 +0000194
195 if (is_rmmd_el3_fid(smc_fid)) {
196 return rmmd_rmm_el3_handler(smc_fid, x1, x2, x3, x4, cookie,
197 handle, flags);
Zelalem Aweke13dc8f12021-07-09 14:20:03 -0500198 }
Subhasish Ghosh8cc642c2021-11-14 17:19:09 +0000199
200 if (is_rmi_fid(smc_fid)) {
201 return rmmd_rmi_handler(smc_fid, x1, x2, x3, x4, cookie,
202 handle, flags);
203 }
Zelalem Aweke13dc8f12021-07-09 14:20:03 -0500204#endif
Jimmy Brisson26c5b5c2020-06-22 14:18:42 -0500205
Jeremy Lintonc8c3e0d2020-11-18 10:17:57 -0600206#if SMC_PCI_SUPPORT
207 if (is_pci_fid(smc_fid)) {
208 return pci_smc_handler(smc_fid, x1, x2, x3, x4, cookie, handle,
209 flags);
210 }
211#endif
212
Manish V Badarkhe8a766032022-02-23 11:26:53 +0000213#if DRTM_SUPPORT
214 if (is_drtm_fid(smc_fid)) {
215 return drtm_smc_handler(smc_fid, x1, x2, x3, x4, cookie, handle,
216 flags);
217 }
218#endif /* DRTM_SUPPORT */
219
Jeenu Viswambharan1814a3e2014-02-28 10:08:33 +0000220 switch (smc_fid) {
221 case ARM_STD_SVC_CALL_COUNT:
222 /*
223 * Return the number of Standard Service Calls. PSCI is the only
224 * standard service implemented; so return number of PSCI calls
225 */
226 SMC_RET1(handle, PSCI_NUM_CALLS);
227
228 case ARM_STD_SVC_UID:
229 /* Return UID to the caller */
230 SMC_UUID_RET(handle, arm_svc_uid);
231
232 case ARM_STD_SVC_VERSION:
233 /* Return the version of current implementation */
234 SMC_RET2(handle, STD_SVC_VERSION_MAJOR, STD_SVC_VERSION_MINOR);
235
236 default:
Andre Przywarae619fa92021-04-28 15:59:21 +0100237 VERBOSE("Unimplemented Standard Service Call: 0x%x \n", smc_fid);
Jeenu Viswambharan1814a3e2014-02-28 10:08:33 +0000238 SMC_RET1(handle, SMC_UNK);
239 }
240}
241
242/* Register Standard Service Calls as runtime service */
243DECLARE_RT_SVC(
244 std_svc,
245
246 OEN_STD_START,
247 OEN_STD_END,
248 SMC_TYPE_FAST,
Soby Mathew8da89662016-09-19 17:21:15 +0100249 std_svc_setup,
Jeenu Viswambharan1814a3e2014-02-28 10:08:33 +0000250 std_svc_smc_handler
251);