xref: /rk3399_ARM-atf/services/spd/tspd/tspd_main.c (revision 52538b9b3e1fcaa96a1bb466c86a35199d4fea67)
1375f538aSAchin Gupta /*
2375f538aSAchin Gupta  * Copyright (c) 2013-2014, ARM Limited and Contributors. All rights reserved.
3375f538aSAchin Gupta  *
4375f538aSAchin Gupta  * Redistribution and use in source and binary forms, with or without
5375f538aSAchin Gupta  * modification, are permitted provided that the following conditions are met:
6375f538aSAchin Gupta  *
7375f538aSAchin Gupta  * Redistributions of source code must retain the above copyright notice, this
8375f538aSAchin Gupta  * list of conditions and the following disclaimer.
9375f538aSAchin Gupta  *
10375f538aSAchin Gupta  * Redistributions in binary form must reproduce the above copyright notice,
11375f538aSAchin Gupta  * this list of conditions and the following disclaimer in the documentation
12375f538aSAchin Gupta  * and/or other materials provided with the distribution.
13375f538aSAchin Gupta  *
14375f538aSAchin Gupta  * Neither the name of ARM nor the names of its contributors may be used
15375f538aSAchin Gupta  * to endorse or promote products derived from this software without specific
16375f538aSAchin Gupta  * prior written permission.
17375f538aSAchin Gupta  *
18375f538aSAchin Gupta  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19375f538aSAchin Gupta  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20375f538aSAchin Gupta  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21375f538aSAchin Gupta  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
22375f538aSAchin Gupta  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23375f538aSAchin Gupta  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24375f538aSAchin Gupta  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25375f538aSAchin Gupta  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26375f538aSAchin Gupta  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27375f538aSAchin Gupta  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28375f538aSAchin Gupta  * POSSIBILITY OF SUCH DAMAGE.
29375f538aSAchin Gupta  */
30375f538aSAchin Gupta 
31375f538aSAchin Gupta 
32375f538aSAchin Gupta /*******************************************************************************
33375f538aSAchin Gupta  * This is the Secure Payload Dispatcher (SPD). The dispatcher is meant to be a
34375f538aSAchin Gupta  * plug-in component to the Secure Monitor, registered as a runtime service. The
35375f538aSAchin Gupta  * SPD is expected to be a functional extension of the Secure Payload (SP) that
36375f538aSAchin Gupta  * executes in Secure EL1. The Secure Monitor will delegate all SMCs targeting
37375f538aSAchin Gupta  * the Trusted OS/Applications range to the dispatcher. The SPD will either
38375f538aSAchin Gupta  * handle the request locally or delegate it to the Secure Payload. It is also
39375f538aSAchin Gupta  * responsible for initialising and maintaining communication with the SP.
40375f538aSAchin Gupta  ******************************************************************************/
41375f538aSAchin Gupta #include <stdio.h>
42375f538aSAchin Gupta #include <string.h>
43375f538aSAchin Gupta #include <assert.h>
44375f538aSAchin Gupta #include <arch_helpers.h>
45375f538aSAchin Gupta #include <console.h>
46375f538aSAchin Gupta #include <platform.h>
47375f538aSAchin Gupta #include <context_mgmt.h>
48375f538aSAchin Gupta #include <runtime_svc.h>
49375f538aSAchin Gupta #include <bl31.h>
50375f538aSAchin Gupta #include <tsp.h>
51375f538aSAchin Gupta #include <psci.h>
52375f538aSAchin Gupta #include <tspd_private.h>
53375f538aSAchin Gupta #include <debug.h>
54*52538b9bSJeenu Viswambharan #include <uuid.h>
55375f538aSAchin Gupta 
56375f538aSAchin Gupta /*******************************************************************************
57375f538aSAchin Gupta  * Single structure to hold information about the various entry points into the
58375f538aSAchin Gupta  * Secure Payload. It is initialised once on the primary core after a cold boot.
59375f538aSAchin Gupta  ******************************************************************************/
60375f538aSAchin Gupta entry_info *tsp_entry_info;
61375f538aSAchin Gupta 
62375f538aSAchin Gupta /*******************************************************************************
63375f538aSAchin Gupta  * Array to keep track of per-cpu Secure Payload state
64375f538aSAchin Gupta  ******************************************************************************/
65375f538aSAchin Gupta tsp_context tspd_sp_context[TSPD_CORE_COUNT];
66375f538aSAchin Gupta 
677f366605SJeenu Viswambharan 
68*52538b9bSJeenu Viswambharan /* TSP UID */
69*52538b9bSJeenu Viswambharan DEFINE_SVC_UUID(tsp_uuid,
70*52538b9bSJeenu Viswambharan 		0x5b3056a0, 0x3291, 0x427b, 0x98, 0x11,
71*52538b9bSJeenu Viswambharan 		0x71, 0x68, 0xca, 0x50, 0xf3, 0xfa);
72*52538b9bSJeenu Viswambharan 
737f366605SJeenu Viswambharan int32_t tspd_init(meminfo *bl32_meminfo);
747f366605SJeenu Viswambharan 
757f366605SJeenu Viswambharan 
76375f538aSAchin Gupta /*******************************************************************************
77375f538aSAchin Gupta  * Secure Payload Dispatcher setup. The SPD finds out the SP entrypoint and type
78375f538aSAchin Gupta  * (aarch32/aarch64) if not already known and initialises the context for entry
79375f538aSAchin Gupta  * into the SP for its initialisation.
80375f538aSAchin Gupta  ******************************************************************************/
81375f538aSAchin Gupta int32_t tspd_setup(void)
82375f538aSAchin Gupta {
83375f538aSAchin Gupta 	el_change_info *image_info;
84375f538aSAchin Gupta 	int32_t rc;
85375f538aSAchin Gupta 	uint64_t mpidr = read_mpidr();
86375f538aSAchin Gupta 	uint32_t linear_id;
87375f538aSAchin Gupta 
88375f538aSAchin Gupta 	linear_id = platform_get_core_pos(mpidr);
89375f538aSAchin Gupta 
90375f538aSAchin Gupta 	/*
91375f538aSAchin Gupta 	 * Get information about the Secure Payload (BL32) image. Its
92375f538aSAchin Gupta 	 * absence is a critical failure.  TODO: Add support to
93375f538aSAchin Gupta 	 * conditionally include the SPD service
94375f538aSAchin Gupta 	 */
95375f538aSAchin Gupta 	image_info = bl31_get_next_image_info(SECURE);
96375f538aSAchin Gupta 	assert(image_info);
97375f538aSAchin Gupta 
98375f538aSAchin Gupta 	/*
997f366605SJeenu Viswambharan 	 * If there's no valid entry point for SP, we return a non-zero value
1007f366605SJeenu Viswambharan 	 * signalling failure initializing the service. We bail out without
1017f366605SJeenu Viswambharan 	 * registering any handlers
1027f366605SJeenu Viswambharan 	 */
1037f366605SJeenu Viswambharan 	if (!image_info->entrypoint)
1047f366605SJeenu Viswambharan 		return 1;
1057f366605SJeenu Viswambharan 
1067f366605SJeenu Viswambharan 	/*
107375f538aSAchin Gupta 	 * We could inspect the SP image and determine it's execution
108375f538aSAchin Gupta 	 * state i.e whether AArch32 or AArch64. Assuming it's AArch64
109375f538aSAchin Gupta 	 * for the time being.
110375f538aSAchin Gupta 	 */
111375f538aSAchin Gupta 	rc = tspd_init_secure_context(image_info->entrypoint,
112375f538aSAchin Gupta 				     TSP_AARCH64,
113375f538aSAchin Gupta 				     mpidr,
114375f538aSAchin Gupta 				     &tspd_sp_context[linear_id]);
115375f538aSAchin Gupta 	assert(rc == 0);
116375f538aSAchin Gupta 
1177f366605SJeenu Viswambharan 	/*
1187f366605SJeenu Viswambharan 	 * All TSPD initialization done. Now register our init function with
1197f366605SJeenu Viswambharan 	 * BL31 for deferred invocation
1207f366605SJeenu Viswambharan 	 */
1217f366605SJeenu Viswambharan 	bl31_register_bl32_init(&tspd_init);
1227f366605SJeenu Viswambharan 
123375f538aSAchin Gupta 	return rc;
124375f538aSAchin Gupta }
125375f538aSAchin Gupta 
126375f538aSAchin Gupta /*******************************************************************************
127375f538aSAchin Gupta  * This function passes control to the Secure Payload image (BL32) for the first
128375f538aSAchin Gupta  * time on the primary cpu after a cold boot. It assumes that a valid secure
129375f538aSAchin Gupta  * context has already been created by tspd_setup() which can be directly used.
130375f538aSAchin Gupta  * It also assumes that a valid non-secure context has been initialised by PSCI
131375f538aSAchin Gupta  * so it does not need to save and restore any non-secure state. This function
132375f538aSAchin Gupta  * performs a synchronous entry into the Secure payload. The SP passes control
133375f538aSAchin Gupta  * back to this routine through a SMC. It also passes the extents of memory made
134375f538aSAchin Gupta  * available to BL32 by BL31.
135375f538aSAchin Gupta  ******************************************************************************/
1367f366605SJeenu Viswambharan int32_t tspd_init(meminfo *bl32_meminfo)
137375f538aSAchin Gupta {
138375f538aSAchin Gupta 	uint64_t mpidr = read_mpidr();
139375f538aSAchin Gupta 	uint32_t linear_id = platform_get_core_pos(mpidr);
140375f538aSAchin Gupta 	uint64_t rc;
141375f538aSAchin Gupta 	tsp_context *tsp_ctx = &tspd_sp_context[linear_id];
142375f538aSAchin Gupta 
143375f538aSAchin Gupta 	/*
144375f538aSAchin Gupta 	 * Arrange for passing a pointer to the meminfo structure
145375f538aSAchin Gupta 	 * describing the memory extents available to the secure
146375f538aSAchin Gupta 	 * payload.
147375f538aSAchin Gupta 	 * TODO: We are passing a pointer to BL31 internal memory
148375f538aSAchin Gupta 	 * whereas this structure should be copied to a communication
149375f538aSAchin Gupta 	 * buffer between the SP and SPD.
150375f538aSAchin Gupta 	 */
151375f538aSAchin Gupta 	write_ctx_reg(get_gpregs_ctx(&tsp_ctx->cpu_ctx),
152375f538aSAchin Gupta 		      CTX_GPREG_X0,
153375f538aSAchin Gupta 		      (uint64_t) bl32_meminfo);
154375f538aSAchin Gupta 
155607084eeSAchin Gupta 	/*
156607084eeSAchin Gupta 	 * Arrange for an entry into the test secure payload. We expect an array
157607084eeSAchin Gupta 	 * of vectors in return
158607084eeSAchin Gupta 	 */
159375f538aSAchin Gupta 	rc = tspd_synchronous_sp_entry(tsp_ctx);
160375f538aSAchin Gupta 	assert(rc != 0);
1617f366605SJeenu Viswambharan 	if (rc) {
162375f538aSAchin Gupta 		tsp_ctx->state = TSP_STATE_ON;
163375f538aSAchin Gupta 
1647f366605SJeenu Viswambharan 		/*
1657f366605SJeenu Viswambharan 		 * TSP has been successfully initialized. Register power
1667f366605SJeenu Viswambharan 		 * managemnt hooks with PSCI
1677f366605SJeenu Viswambharan 		 */
1687f366605SJeenu Viswambharan 		psci_register_spd_pm_hook(&tspd_pm);
1697f366605SJeenu Viswambharan 	}
1707f366605SJeenu Viswambharan 
171375f538aSAchin Gupta 	return rc;
172375f538aSAchin Gupta }
173375f538aSAchin Gupta 
1747f366605SJeenu Viswambharan 
175375f538aSAchin Gupta /*******************************************************************************
176375f538aSAchin Gupta  * This function is responsible for handling all SMCs in the Trusted OS/App
177375f538aSAchin Gupta  * range from the non-secure state as defined in the SMC Calling Convention
178375f538aSAchin Gupta  * Document. It is also responsible for communicating with the Secure payload
179375f538aSAchin Gupta  * to delegate work and return results back to the non-secure state. Lastly it
180375f538aSAchin Gupta  * will also return any information that the secure payload needs to do the
181375f538aSAchin Gupta  * work assigned to it.
182375f538aSAchin Gupta  ******************************************************************************/
183375f538aSAchin Gupta uint64_t tspd_smc_handler(uint32_t smc_fid,
184375f538aSAchin Gupta 			 uint64_t x1,
185375f538aSAchin Gupta 			 uint64_t x2,
186375f538aSAchin Gupta 			 uint64_t x3,
187375f538aSAchin Gupta 			 uint64_t x4,
188375f538aSAchin Gupta 			 void *cookie,
189375f538aSAchin Gupta 			 void *handle,
190375f538aSAchin Gupta 			 uint64_t flags)
191375f538aSAchin Gupta {
192916a2c1eSAchin Gupta 	cpu_context *ns_cpu_context;
193916a2c1eSAchin Gupta 	gp_regs *ns_gp_regs;
194375f538aSAchin Gupta 	unsigned long mpidr = read_mpidr();
195375f538aSAchin Gupta 	uint32_t linear_id = platform_get_core_pos(mpidr), ns;
196916a2c1eSAchin Gupta 	tsp_context *tsp_ctx = &tspd_sp_context[linear_id];
197375f538aSAchin Gupta 
198375f538aSAchin Gupta 	/* Determine which security state this SMC originated from */
199375f538aSAchin Gupta 	ns = is_caller_non_secure(flags);
200375f538aSAchin Gupta 
201375f538aSAchin Gupta 	switch (smc_fid) {
202375f538aSAchin Gupta 
203375f538aSAchin Gupta 	/*
204375f538aSAchin Gupta 	 * This function ID is used only by the SP to indicate it has
205375f538aSAchin Gupta 	 * finished initialising itself after a cold boot
206375f538aSAchin Gupta 	 */
207375f538aSAchin Gupta 	case TSP_ENTRY_DONE:
208375f538aSAchin Gupta 		if (ns)
209375f538aSAchin Gupta 			SMC_RET1(handle, SMC_UNK);
210375f538aSAchin Gupta 
211375f538aSAchin Gupta 		/*
212375f538aSAchin Gupta 		 * Stash the SP entry points information. This is done
213375f538aSAchin Gupta 		 * only once on the primary cpu
214375f538aSAchin Gupta 		 */
215375f538aSAchin Gupta 		assert(tsp_entry_info == NULL);
216375f538aSAchin Gupta 		tsp_entry_info = (entry_info *) x1;
217375f538aSAchin Gupta 
218375f538aSAchin Gupta 		/*
219375f538aSAchin Gupta 		 * SP reports completion. The SPD must have initiated
220375f538aSAchin Gupta 		 * the original request through a synchronous entry
221375f538aSAchin Gupta 		 * into the SP. Jump back to the original C runtime
222375f538aSAchin Gupta 		 * context.
223375f538aSAchin Gupta 		 */
224916a2c1eSAchin Gupta 		tspd_synchronous_sp_exit(tsp_ctx, x1);
225375f538aSAchin Gupta 
226375f538aSAchin Gupta 		/* Should never reach here */
227375f538aSAchin Gupta 		assert(0);
228375f538aSAchin Gupta 
229607084eeSAchin Gupta 	/*
230607084eeSAchin Gupta 	 * These function IDs is used only by the SP to indicate it has
231607084eeSAchin Gupta 	 * finished:
232607084eeSAchin Gupta 	 * 1. turning itself on in response to an earlier psci
233607084eeSAchin Gupta 	 *    cpu_on request
234607084eeSAchin Gupta 	 * 2. resuming itself after an earlier psci cpu_suspend
235607084eeSAchin Gupta 	 *    request.
236607084eeSAchin Gupta 	 */
237607084eeSAchin Gupta 	case TSP_ON_DONE:
238607084eeSAchin Gupta 	case TSP_RESUME_DONE:
239607084eeSAchin Gupta 
240607084eeSAchin Gupta 	/*
241607084eeSAchin Gupta 	 * These function IDs is used only by the SP to indicate it has
242607084eeSAchin Gupta 	 * finished:
243607084eeSAchin Gupta 	 * 1. suspending itself after an earlier psci cpu_suspend
244607084eeSAchin Gupta 	 *    request.
245607084eeSAchin Gupta 	 * 2. turning itself off in response to an earlier psci
246607084eeSAchin Gupta 	 *    cpu_off request.
247607084eeSAchin Gupta 	 */
248607084eeSAchin Gupta 	case TSP_OFF_DONE:
249607084eeSAchin Gupta 	case TSP_SUSPEND_DONE:
250607084eeSAchin Gupta 		if (ns)
251607084eeSAchin Gupta 			SMC_RET1(handle, SMC_UNK);
252607084eeSAchin Gupta 
253607084eeSAchin Gupta 		/*
254607084eeSAchin Gupta 		 * SP reports completion. The SPD must have initiated the
255607084eeSAchin Gupta 		 * original request through a synchronous entry into the SP.
256607084eeSAchin Gupta 		 * Jump back to the original C runtime context, and pass x1 as
257607084eeSAchin Gupta 		 * return value to the caller
258607084eeSAchin Gupta 		 */
259916a2c1eSAchin Gupta 		tspd_synchronous_sp_exit(tsp_ctx, x1);
260607084eeSAchin Gupta 
261607084eeSAchin Gupta 		/* Should never reach here */
262607084eeSAchin Gupta 		assert(0);
263607084eeSAchin Gupta 
264916a2c1eSAchin Gupta 		/*
265916a2c1eSAchin Gupta 		 * Request from non-secure client to perform an
266916a2c1eSAchin Gupta 		 * arithmetic operation or response from secure
267916a2c1eSAchin Gupta 		 * payload to an earlier request.
268916a2c1eSAchin Gupta 		 */
269916a2c1eSAchin Gupta 	case TSP_FID_ADD:
270916a2c1eSAchin Gupta 	case TSP_FID_SUB:
271916a2c1eSAchin Gupta 	case TSP_FID_MUL:
272916a2c1eSAchin Gupta 	case TSP_FID_DIV:
273916a2c1eSAchin Gupta 		if (ns) {
274916a2c1eSAchin Gupta 			/*
275916a2c1eSAchin Gupta 			 * This is a fresh request from the non-secure client.
276916a2c1eSAchin Gupta 			 * The parameters are in x1 and x2. Figure out which
277916a2c1eSAchin Gupta 			 * registers need to be preserved, save the non-secure
278916a2c1eSAchin Gupta 			 * state and send the request to the secure payload.
279916a2c1eSAchin Gupta 			 */
280916a2c1eSAchin Gupta 			assert(handle == cm_get_context(mpidr, NON_SECURE));
281916a2c1eSAchin Gupta 			cm_el1_sysregs_context_save(NON_SECURE);
282916a2c1eSAchin Gupta 
283916a2c1eSAchin Gupta 			/* Save x1 and x2 for use by TSP_GET_ARGS call below */
284916a2c1eSAchin Gupta 			SMC_SET_GP(handle, CTX_GPREG_X1, x1);
285916a2c1eSAchin Gupta 			SMC_SET_GP(handle, CTX_GPREG_X2, x2);
286916a2c1eSAchin Gupta 
287916a2c1eSAchin Gupta 			/*
288916a2c1eSAchin Gupta 			 * We are done stashing the non-secure context. Ask the
289916a2c1eSAchin Gupta 			 * secure payload to do the work now.
290916a2c1eSAchin Gupta 			 */
291916a2c1eSAchin Gupta 
292916a2c1eSAchin Gupta 			/*
293916a2c1eSAchin Gupta 			 * Verify if there is a valid context to use, copy the
294916a2c1eSAchin Gupta 			 * operation type and parameters to the secure context
295916a2c1eSAchin Gupta 			 * and jump to the fast smc entry point in the secure
296916a2c1eSAchin Gupta 			 * payload. Entry into S-EL1 will take place upon exit
297916a2c1eSAchin Gupta 			 * from this function.
298916a2c1eSAchin Gupta 			 */
299916a2c1eSAchin Gupta 			assert(&tsp_ctx->cpu_ctx == cm_get_context(mpidr, SECURE));
300916a2c1eSAchin Gupta 			set_aapcs_args7(&tsp_ctx->cpu_ctx, smc_fid, x1, x2, 0, 0,
301916a2c1eSAchin Gupta 					0, 0, 0);
302916a2c1eSAchin Gupta 			cm_set_el3_elr(SECURE, (uint64_t) tsp_entry_info->fast_smc_entry);
303916a2c1eSAchin Gupta 			cm_el1_sysregs_context_restore(SECURE);
304916a2c1eSAchin Gupta 			cm_set_next_eret_context(SECURE);
305916a2c1eSAchin Gupta 
306916a2c1eSAchin Gupta 			return smc_fid;
307916a2c1eSAchin Gupta 		} else {
308916a2c1eSAchin Gupta 			/*
309916a2c1eSAchin Gupta 			 * This is the result from the secure client of an
310916a2c1eSAchin Gupta 			 * earlier request. The results are in x1-x2. Copy it
311916a2c1eSAchin Gupta 			 * into the non-secure context, save the secure state
312916a2c1eSAchin Gupta 			 * and return to the non-secure state.
313916a2c1eSAchin Gupta 			 */
314916a2c1eSAchin Gupta 			assert(handle == cm_get_context(mpidr, SECURE));
315916a2c1eSAchin Gupta 			cm_el1_sysregs_context_save(SECURE);
316916a2c1eSAchin Gupta 
317916a2c1eSAchin Gupta 			/* Get a reference to the non-secure context */
318916a2c1eSAchin Gupta 			ns_cpu_context = cm_get_context(mpidr, NON_SECURE);
319916a2c1eSAchin Gupta 			assert(ns_cpu_context);
320916a2c1eSAchin Gupta 			ns_gp_regs = get_gpregs_ctx(ns_cpu_context);
321916a2c1eSAchin Gupta 
322916a2c1eSAchin Gupta 			/* Restore non-secure state */
323916a2c1eSAchin Gupta 			cm_el1_sysregs_context_restore(NON_SECURE);
324916a2c1eSAchin Gupta 			cm_set_next_eret_context(NON_SECURE);
325916a2c1eSAchin Gupta 
326916a2c1eSAchin Gupta 			SMC_RET2(ns_gp_regs, x1, x2);
327916a2c1eSAchin Gupta 		}
328916a2c1eSAchin Gupta 
329916a2c1eSAchin Gupta 		break;
330916a2c1eSAchin Gupta 
331916a2c1eSAchin Gupta 		/*
332916a2c1eSAchin Gupta 		 * This is a request from the secure payload for more arguments
333916a2c1eSAchin Gupta 		 * for an ongoing arithmetic operation requested by the
334916a2c1eSAchin Gupta 		 * non-secure world. Simply return the arguments from the non-
335916a2c1eSAchin Gupta 		 * secure client in the original call.
336916a2c1eSAchin Gupta 		 */
337916a2c1eSAchin Gupta 	case TSP_GET_ARGS:
338916a2c1eSAchin Gupta 		if (ns)
339916a2c1eSAchin Gupta 			SMC_RET1(handle, SMC_UNK);
340916a2c1eSAchin Gupta 
341916a2c1eSAchin Gupta 		/* Get a reference to the non-secure context */
342916a2c1eSAchin Gupta 		ns_cpu_context = cm_get_context(mpidr, NON_SECURE);
343916a2c1eSAchin Gupta 		assert(ns_cpu_context);
344916a2c1eSAchin Gupta 		ns_gp_regs = get_gpregs_ctx(ns_cpu_context);
345916a2c1eSAchin Gupta 
346916a2c1eSAchin Gupta 		SMC_RET2(handle, read_ctx_reg(ns_gp_regs, CTX_GPREG_X1),
347916a2c1eSAchin Gupta 				read_ctx_reg(ns_gp_regs, CTX_GPREG_X2));
348916a2c1eSAchin Gupta 
349*52538b9bSJeenu Viswambharan 	case TOS_CALL_COUNT:
350*52538b9bSJeenu Viswambharan 		/*
351*52538b9bSJeenu Viswambharan 		 * Return the number of service function IDs implemented to
352*52538b9bSJeenu Viswambharan 		 * provide service to non-secure
353*52538b9bSJeenu Viswambharan 		 */
354*52538b9bSJeenu Viswambharan 		SMC_RET1(handle, TSP_NUM_FID);
355*52538b9bSJeenu Viswambharan 
356*52538b9bSJeenu Viswambharan 	case TOS_UID:
357*52538b9bSJeenu Viswambharan 		/* Return TSP UID to the caller */
358*52538b9bSJeenu Viswambharan 		SMC_UUID_RET(handle, tsp_uuid);
359*52538b9bSJeenu Viswambharan 
360*52538b9bSJeenu Viswambharan 	case TOS_CALL_VERSION:
361*52538b9bSJeenu Viswambharan 		/* Return the version of current implementation */
362*52538b9bSJeenu Viswambharan 		SMC_RET2(handle, TSP_VERSION_MAJOR, TSP_VERSION_MINOR);
363*52538b9bSJeenu Viswambharan 
364375f538aSAchin Gupta 	default:
365607084eeSAchin Gupta 		break;
366375f538aSAchin Gupta 	}
367375f538aSAchin Gupta 
368607084eeSAchin Gupta 	SMC_RET1(handle, SMC_UNK);
369375f538aSAchin Gupta }
370375f538aSAchin Gupta 
371375f538aSAchin Gupta /* Define a SPD runtime service descriptor */
372375f538aSAchin Gupta DECLARE_RT_SVC(
373375f538aSAchin Gupta 	spd,
374375f538aSAchin Gupta 
375375f538aSAchin Gupta 	OEN_TOS_START,
376375f538aSAchin Gupta 	OEN_TOS_END,
377375f538aSAchin Gupta 	SMC_TYPE_FAST,
378375f538aSAchin Gupta 	tspd_setup,
379375f538aSAchin Gupta 	tspd_smc_handler
380375f538aSAchin Gupta );
381