blob: 1917d0a144406625fa962e33c7f7cec07691c843 [file] [log] [blame]
Jeenu Viswambharan1814a3e2014-02-28 10:08:33 +00001/*
Jimmy Brisson26c5b5c2020-06-22 14:18:42 -05002 * Copyright (c) 2014-2021, 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>
Jeremy Lintonc8c3e0d2020-11-18 10:17:57 -060016#include <services/pci_svc.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000017#include <services/sdei.h>
Paul Beesleye9754e62019-10-15 12:51:55 +000018#include <services/spm_mm_svc.h>
Achin Gupta3e1f1972019-10-11 15:49:00 +010019#include <services/spmd_svc.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000020#include <services/std_svc.h>
Jimmy Brisson26c5b5c2020-06-22 14:18:42 -050021#include <services/trng_svc.h>
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000022#include <smccc_helpers.h>
23#include <tools_share/uuid.h>
Jeenu Viswambharan1814a3e2014-02-28 10:08:33 +000024
25/* Standard Service UUID */
Roberto Vargaseace8f12018-04-26 13:36:53 +010026static uuid_t arm_svc_uid = {
27 {0x5b, 0x90, 0x8d, 0x10},
28 {0x63, 0xf8},
29 {0xe8, 0x47},
30 0xae, 0x2d,
31 {0xc0, 0xfb, 0x56, 0x41, 0xf6, 0xe2}
32};
Jeenu Viswambharan1814a3e2014-02-28 10:08:33 +000033
Soby Mathew8da89662016-09-19 17:21:15 +010034/* Setup Standard Services */
35static int32_t std_svc_setup(void)
36{
37 uintptr_t svc_arg;
Antonio Nino Diazc41f2062017-10-24 10:07:35 +010038 int ret = 0;
Soby Mathew8da89662016-09-19 17:21:15 +010039
40 svc_arg = get_arm_std_svc_args(PSCI_FID_MASK);
41 assert(svc_arg);
42
43 /*
Antonio Nino Diazc41f2062017-10-24 10:07:35 +010044 * PSCI is one of the specifications implemented as a Standard Service.
Soby Mathew8da89662016-09-19 17:21:15 +010045 * The `psci_setup()` also does EL3 architectural setup.
46 */
Antonio Nino Diazc41f2062017-10-24 10:07:35 +010047 if (psci_setup((const psci_lib_args_t *)svc_arg) != PSCI_E_SUCCESS) {
48 ret = 1;
49 }
50
Paul Beesleydb4e25a2019-10-14 15:27:12 +000051#if SPM_MM
Paul Beesleye9754e62019-10-15 12:51:55 +000052 if (spm_mm_setup() != 0) {
Antonio Nino Diazc41f2062017-10-24 10:07:35 +010053 ret = 1;
54 }
55#endif
56
Achin Gupta3e1f1972019-10-11 15:49:00 +010057#if defined(SPD_spmd)
58 if (spmd_setup() != 0) {
59 ret = 1;
60 }
61#endif
62
Jeenu Viswambharan04e3a7f2017-10-16 08:43:14 +010063#if SDEI_SUPPORT
64 /* SDEI initialisation */
65 sdei_init();
66#endif
67
Jimmy Brisson26c5b5c2020-06-22 14:18:42 -050068 trng_setup();
69
Antonio Nino Diazc41f2062017-10-24 10:07:35 +010070 return ret;
Soby Mathew8da89662016-09-19 17:21:15 +010071}
72
Jeenu Viswambharan1814a3e2014-02-28 10:08:33 +000073/*
74 * Top-level Standard Service SMC handler. This handler will in turn dispatch
75 * calls to PSCI SMC handler
76 */
Roberto Vargas05712702018-02-12 12:36:17 +000077static uintptr_t std_svc_smc_handler(uint32_t smc_fid,
Soby Mathewa0fedc42016-06-16 14:52:04 +010078 u_register_t x1,
79 u_register_t x2,
80 u_register_t x3,
81 u_register_t x4,
Jeenu Viswambharan1814a3e2014-02-28 10:08:33 +000082 void *cookie,
83 void *handle,
Soby Mathewa0fedc42016-06-16 14:52:04 +010084 u_register_t flags)
Jeenu Viswambharan1814a3e2014-02-28 10:08:33 +000085{
Jeremy Linton6b19fe12021-04-01 13:10:24 -050086 if (((smc_fid >> FUNCID_CC_SHIFT) & FUNCID_CC_MASK) == SMC_32) {
87 /* 32-bit SMC function, clear top parameter bits */
88
89 x1 &= UINT32_MAX;
90 x2 &= UINT32_MAX;
91 x3 &= UINT32_MAX;
92 x4 &= UINT32_MAX;
93 }
94
Jeenu Viswambharan1814a3e2014-02-28 10:08:33 +000095 /*
96 * Dispatch PSCI calls to PSCI SMC handler and return its return
97 * value
98 */
99 if (is_psci_fid(smc_fid)) {
dp-arm3cac7862016-09-19 11:18:44 +0100100 uint64_t ret;
101
102#if ENABLE_RUNTIME_INSTRUMENTATION
dp-armc93e21f2016-10-31 17:17:21 +0000103
104 /*
105 * Flush cache line so that even if CPU power down happens
106 * the timestamp update is reflected in memory.
107 */
dp-arm3cac7862016-09-19 11:18:44 +0100108 PMF_WRITE_TIMESTAMP(rt_instr_svc,
109 RT_INSTR_ENTER_PSCI,
dp-armc93e21f2016-10-31 17:17:21 +0000110 PMF_CACHE_MAINT,
dp-arm3cac7862016-09-19 11:18:44 +0100111 get_cpu_data(cpu_data_pmf_ts[CPU_DATA_PMF_TS0_IDX]));
112#endif
113
114 ret = psci_smc_handler(smc_fid, x1, x2, x3, x4,
115 cookie, handle, flags);
116
117#if ENABLE_RUNTIME_INSTRUMENTATION
118 PMF_CAPTURE_TIMESTAMP(rt_instr_svc,
119 RT_INSTR_EXIT_PSCI,
120 PMF_NO_CACHE_MAINT);
121#endif
122
123 SMC_RET1(handle, ret);
Jeenu Viswambharan1814a3e2014-02-28 10:08:33 +0000124 }
Antonio Nino Diazc41f2062017-10-24 10:07:35 +0100125
Paul Beesleyfe975b42019-09-16 11:29:03 +0000126#if SPM_MM
Antonio Nino Diazc41f2062017-10-24 10:07:35 +0100127 /*
128 * Dispatch SPM calls to SPM SMC handler and return its return
129 * value
130 */
Paul Beesleye9754e62019-10-15 12:51:55 +0000131 if (is_spm_mm_fid(smc_fid)) {
132 return spm_mm_smc_handler(smc_fid, x1, x2, x3, x4, cookie,
133 handle, flags);
Antonio Nino Diazc41f2062017-10-24 10:07:35 +0100134 }
135#endif
Jeenu Viswambharan1814a3e2014-02-28 10:08:33 +0000136
Achin Gupta3e1f1972019-10-11 15:49:00 +0100137#if defined(SPD_spmd)
138 /*
J-Alves2672cde2020-05-07 18:42:25 +0100139 * Dispatch FFA calls to the FFA SMC handler implemented by the SPM
Achin Gupta3e1f1972019-10-11 15:49:00 +0100140 * dispatcher and return its return value
141 */
J-Alves2672cde2020-05-07 18:42:25 +0100142 if (is_ffa_fid(smc_fid)) {
Achin Gupta3e1f1972019-10-11 15:49:00 +0100143 return spmd_smc_handler(smc_fid, x1, x2, x3, x4, cookie,
144 handle, flags);
145 }
146#endif
147
Jeenu Viswambharan04e3a7f2017-10-16 08:43:14 +0100148#if SDEI_SUPPORT
149 if (is_sdei_fid(smc_fid)) {
150 return sdei_smc_handler(smc_fid, x1, x2, x3, x4, cookie, handle,
151 flags);
152 }
153#endif
154
Andre Przywara56f55c92021-02-10 16:40:24 +0000155#if TRNG_SUPPORT
Jimmy Brisson26c5b5c2020-06-22 14:18:42 -0500156 if (is_trng_fid(smc_fid)) {
157 return trng_smc_handler(smc_fid, x1, x2, x3, x4, cookie, handle,
158 flags);
159 }
Andre Przywara56f55c92021-02-10 16:40:24 +0000160#endif
Jimmy Brisson26c5b5c2020-06-22 14:18:42 -0500161
Jeremy Lintonc8c3e0d2020-11-18 10:17:57 -0600162#if SMC_PCI_SUPPORT
163 if (is_pci_fid(smc_fid)) {
164 return pci_smc_handler(smc_fid, x1, x2, x3, x4, cookie, handle,
165 flags);
166 }
167#endif
168
Jeenu Viswambharan1814a3e2014-02-28 10:08:33 +0000169 switch (smc_fid) {
170 case ARM_STD_SVC_CALL_COUNT:
171 /*
172 * Return the number of Standard Service Calls. PSCI is the only
173 * standard service implemented; so return number of PSCI calls
174 */
175 SMC_RET1(handle, PSCI_NUM_CALLS);
176
177 case ARM_STD_SVC_UID:
178 /* Return UID to the caller */
179 SMC_UUID_RET(handle, arm_svc_uid);
180
181 case ARM_STD_SVC_VERSION:
182 /* Return the version of current implementation */
183 SMC_RET2(handle, STD_SVC_VERSION_MAJOR, STD_SVC_VERSION_MINOR);
184
185 default:
Andre Przywarae619fa92021-04-28 15:59:21 +0100186 VERBOSE("Unimplemented Standard Service Call: 0x%x \n", smc_fid);
Jeenu Viswambharan1814a3e2014-02-28 10:08:33 +0000187 SMC_RET1(handle, SMC_UNK);
188 }
189}
190
191/* Register Standard Service Calls as runtime service */
192DECLARE_RT_SVC(
193 std_svc,
194
195 OEN_STD_START,
196 OEN_STD_END,
197 SMC_TYPE_FAST,
Soby Mathew8da89662016-09-19 17:21:15 +0100198 std_svc_setup,
Jeenu Viswambharan1814a3e2014-02-28 10:08:33 +0000199 std_svc_smc_handler
200);