blob: 08d16e21a27074dc901fcffb5aa1658983f6aae4 [file] [log] [blame]
Jeenu Viswambharan1814a3e2014-02-28 10:08:33 +00001/*
Soby Mathew68ea9542022-03-22 13:58:52 +00002 * Copyright (c) 2014-2022, 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>
Jeremy Lintonc8c3e0d2020-11-18 10:17:57 -060017#include <services/pci_svc.h>
Zelalem Aweke13dc8f12021-07-09 14:20:03 -050018#include <services/rmmd_svc.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000019#include <services/sdei.h>
Paul Beesleye9754e62019-10-15 12:51:55 +000020#include <services/spm_mm_svc.h>
Marc Bonnicida2c9e12021-11-29 18:02:45 +000021#include <services/spmc_svc.h>
Achin Gupta3e1f1972019-10-11 15:49:00 +010022#include <services/spmd_svc.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000023#include <services/std_svc.h>
Jimmy Brisson26c5b5c2020-06-22 14:18:42 -050024#include <services/trng_svc.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000025#include <smccc_helpers.h>
26#include <tools_share/uuid.h>
Jeenu Viswambharan1814a3e2014-02-28 10:08:33 +000027
28/* Standard Service UUID */
Roberto Vargaseace8f12018-04-26 13:36:53 +010029static uuid_t arm_svc_uid = {
30 {0x5b, 0x90, 0x8d, 0x10},
31 {0x63, 0xf8},
32 {0xe8, 0x47},
33 0xae, 0x2d,
34 {0xc0, 0xfb, 0x56, 0x41, 0xf6, 0xe2}
35};
Jeenu Viswambharan1814a3e2014-02-28 10:08:33 +000036
Soby Mathew8da89662016-09-19 17:21:15 +010037/* Setup Standard Services */
38static int32_t std_svc_setup(void)
39{
40 uintptr_t svc_arg;
Antonio Nino Diazc41f2062017-10-24 10:07:35 +010041 int ret = 0;
Soby Mathew8da89662016-09-19 17:21:15 +010042
43 svc_arg = get_arm_std_svc_args(PSCI_FID_MASK);
44 assert(svc_arg);
45
46 /*
Antonio Nino Diazc41f2062017-10-24 10:07:35 +010047 * PSCI is one of the specifications implemented as a Standard Service.
Soby Mathew8da89662016-09-19 17:21:15 +010048 * The `psci_setup()` also does EL3 architectural setup.
49 */
Antonio Nino Diazc41f2062017-10-24 10:07:35 +010050 if (psci_setup((const psci_lib_args_t *)svc_arg) != PSCI_E_SUCCESS) {
51 ret = 1;
52 }
53
Paul Beesleydb4e25a2019-10-14 15:27:12 +000054#if SPM_MM
Paul Beesleye9754e62019-10-15 12:51:55 +000055 if (spm_mm_setup() != 0) {
Antonio Nino Diazc41f2062017-10-24 10:07:35 +010056 ret = 1;
57 }
58#endif
59
Achin Gupta3e1f1972019-10-11 15:49:00 +010060#if defined(SPD_spmd)
61 if (spmd_setup() != 0) {
62 ret = 1;
63 }
64#endif
65
Subhasish Ghosh8cc642c2021-11-14 17:19:09 +000066#if ENABLE_RME
67 if (rmmd_setup() != 0) {
68 ret = 1;
69 }
70#endif
71
Jeenu Viswambharan04e3a7f2017-10-16 08:43:14 +010072#if SDEI_SUPPORT
73 /* SDEI initialisation */
74 sdei_init();
75#endif
76
Jimmy Brisson26c5b5c2020-06-22 14:18:42 -050077 trng_setup();
78
Manish V Badarkhe8a766032022-02-23 11:26:53 +000079#if DRTM_SUPPORT
80 if (drtm_setup() != 0) {
81 ret = 1;
82 }
83#endif /* DRTM_SUPPORT */
84
Antonio Nino Diazc41f2062017-10-24 10:07:35 +010085 return ret;
Soby Mathew8da89662016-09-19 17:21:15 +010086}
87
Jeenu Viswambharan1814a3e2014-02-28 10:08:33 +000088/*
89 * Top-level Standard Service SMC handler. This handler will in turn dispatch
90 * calls to PSCI SMC handler
91 */
Roberto Vargas05712702018-02-12 12:36:17 +000092static uintptr_t std_svc_smc_handler(uint32_t smc_fid,
Soby Mathewa0fedc42016-06-16 14:52:04 +010093 u_register_t x1,
94 u_register_t x2,
95 u_register_t x3,
96 u_register_t x4,
Jeenu Viswambharan1814a3e2014-02-28 10:08:33 +000097 void *cookie,
98 void *handle,
Soby Mathewa0fedc42016-06-16 14:52:04 +010099 u_register_t flags)
Jeenu Viswambharan1814a3e2014-02-28 10:08:33 +0000100{
Jeremy Linton6b19fe12021-04-01 13:10:24 -0500101 if (((smc_fid >> FUNCID_CC_SHIFT) & FUNCID_CC_MASK) == SMC_32) {
102 /* 32-bit SMC function, clear top parameter bits */
103
104 x1 &= UINT32_MAX;
105 x2 &= UINT32_MAX;
106 x3 &= UINT32_MAX;
107 x4 &= UINT32_MAX;
108 }
109
Jeenu Viswambharan1814a3e2014-02-28 10:08:33 +0000110 /*
111 * Dispatch PSCI calls to PSCI SMC handler and return its return
112 * value
113 */
114 if (is_psci_fid(smc_fid)) {
dp-arm3cac7862016-09-19 11:18:44 +0100115 uint64_t ret;
116
117#if ENABLE_RUNTIME_INSTRUMENTATION
dp-armc93e21f2016-10-31 17:17:21 +0000118
119 /*
120 * Flush cache line so that even if CPU power down happens
121 * the timestamp update is reflected in memory.
122 */
dp-arm3cac7862016-09-19 11:18:44 +0100123 PMF_WRITE_TIMESTAMP(rt_instr_svc,
124 RT_INSTR_ENTER_PSCI,
dp-armc93e21f2016-10-31 17:17:21 +0000125 PMF_CACHE_MAINT,
dp-arm3cac7862016-09-19 11:18:44 +0100126 get_cpu_data(cpu_data_pmf_ts[CPU_DATA_PMF_TS0_IDX]));
127#endif
128
129 ret = psci_smc_handler(smc_fid, x1, x2, x3, x4,
130 cookie, handle, flags);
131
132#if ENABLE_RUNTIME_INSTRUMENTATION
133 PMF_CAPTURE_TIMESTAMP(rt_instr_svc,
134 RT_INSTR_EXIT_PSCI,
135 PMF_NO_CACHE_MAINT);
136#endif
137
138 SMC_RET1(handle, ret);
Jeenu Viswambharan1814a3e2014-02-28 10:08:33 +0000139 }
Antonio Nino Diazc41f2062017-10-24 10:07:35 +0100140
Paul Beesleyfe975b42019-09-16 11:29:03 +0000141#if SPM_MM
Antonio Nino Diazc41f2062017-10-24 10:07:35 +0100142 /*
143 * Dispatch SPM calls to SPM SMC handler and return its return
144 * value
145 */
Paul Beesleye9754e62019-10-15 12:51:55 +0000146 if (is_spm_mm_fid(smc_fid)) {
147 return spm_mm_smc_handler(smc_fid, x1, x2, x3, x4, cookie,
148 handle, flags);
Antonio Nino Diazc41f2062017-10-24 10:07:35 +0100149 }
150#endif
Jeenu Viswambharan1814a3e2014-02-28 10:08:33 +0000151
Achin Gupta3e1f1972019-10-11 15:49:00 +0100152#if defined(SPD_spmd)
153 /*
J-Alves2672cde2020-05-07 18:42:25 +0100154 * Dispatch FFA calls to the FFA SMC handler implemented by the SPM
Achin Gupta3e1f1972019-10-11 15:49:00 +0100155 * dispatcher and return its return value
156 */
J-Alves2672cde2020-05-07 18:42:25 +0100157 if (is_ffa_fid(smc_fid)) {
Marc Bonnicida2c9e12021-11-29 18:02:45 +0000158 return spmd_ffa_smc_handler(smc_fid, x1, x2, x3, x4, cookie,
159 handle, flags);
Achin Gupta3e1f1972019-10-11 15:49:00 +0100160 }
161#endif
162
Jeenu Viswambharan04e3a7f2017-10-16 08:43:14 +0100163#if SDEI_SUPPORT
164 if (is_sdei_fid(smc_fid)) {
165 return sdei_smc_handler(smc_fid, x1, x2, x3, x4, cookie, handle,
166 flags);
167 }
168#endif
169
Andre Przywara56f55c92021-02-10 16:40:24 +0000170#if TRNG_SUPPORT
Jimmy Brisson26c5b5c2020-06-22 14:18:42 -0500171 if (is_trng_fid(smc_fid)) {
172 return trng_smc_handler(smc_fid, x1, x2, x3, x4, cookie, handle,
173 flags);
174 }
Andre Przywara56f55c92021-02-10 16:40:24 +0000175#endif
Zelalem Aweke13dc8f12021-07-09 14:20:03 -0500176#if ENABLE_RME
Soby Mathew68ea9542022-03-22 13:58:52 +0000177
178 if (is_rmmd_el3_fid(smc_fid)) {
179 return rmmd_rmm_el3_handler(smc_fid, x1, x2, x3, x4, cookie,
180 handle, flags);
Zelalem Aweke13dc8f12021-07-09 14:20:03 -0500181 }
Subhasish Ghosh8cc642c2021-11-14 17:19:09 +0000182
183 if (is_rmi_fid(smc_fid)) {
184 return rmmd_rmi_handler(smc_fid, x1, x2, x3, x4, cookie,
185 handle, flags);
186 }
Zelalem Aweke13dc8f12021-07-09 14:20:03 -0500187#endif
Jimmy Brisson26c5b5c2020-06-22 14:18:42 -0500188
Jeremy Lintonc8c3e0d2020-11-18 10:17:57 -0600189#if SMC_PCI_SUPPORT
190 if (is_pci_fid(smc_fid)) {
191 return pci_smc_handler(smc_fid, x1, x2, x3, x4, cookie, handle,
192 flags);
193 }
194#endif
195
Manish V Badarkhe8a766032022-02-23 11:26:53 +0000196#if DRTM_SUPPORT
197 if (is_drtm_fid(smc_fid)) {
198 return drtm_smc_handler(smc_fid, x1, x2, x3, x4, cookie, handle,
199 flags);
200 }
201#endif /* DRTM_SUPPORT */
202
Jeenu Viswambharan1814a3e2014-02-28 10:08:33 +0000203 switch (smc_fid) {
204 case ARM_STD_SVC_CALL_COUNT:
205 /*
206 * Return the number of Standard Service Calls. PSCI is the only
207 * standard service implemented; so return number of PSCI calls
208 */
209 SMC_RET1(handle, PSCI_NUM_CALLS);
210
211 case ARM_STD_SVC_UID:
212 /* Return UID to the caller */
213 SMC_UUID_RET(handle, arm_svc_uid);
214
215 case ARM_STD_SVC_VERSION:
216 /* Return the version of current implementation */
217 SMC_RET2(handle, STD_SVC_VERSION_MAJOR, STD_SVC_VERSION_MINOR);
218
219 default:
Andre Przywarae619fa92021-04-28 15:59:21 +0100220 VERBOSE("Unimplemented Standard Service Call: 0x%x \n", smc_fid);
Jeenu Viswambharan1814a3e2014-02-28 10:08:33 +0000221 SMC_RET1(handle, SMC_UNK);
222 }
223}
224
225/* Register Standard Service Calls as runtime service */
226DECLARE_RT_SVC(
227 std_svc,
228
229 OEN_STD_START,
230 OEN_STD_END,
231 SMC_TYPE_FAST,
Soby Mathew8da89662016-09-19 17:21:15 +0100232 std_svc_setup,
Jeenu Viswambharan1814a3e2014-02-28 10:08:33 +0000233 std_svc_smc_handler
234);