xref: /rk3399_ARM-atf/services/std_svc/std_svc_setup.c (revision 1cdf1eb875ec8622e94493c0a99d21f2e0adeac8)
164f6ea9bSJeenu Viswambharan /*
27dfb9911SJimmy Brisson  * Copyright (c) 2014-2021, ARM Limited and Contributors. All rights reserved.
364f6ea9bSJeenu Viswambharan  *
482cb2c1aSdp-arm  * SPDX-License-Identifier: BSD-3-Clause
564f6ea9bSJeenu Viswambharan  */
664f6ea9bSJeenu Viswambharan 
758e946aeSSoby Mathew #include <assert.h>
897043ac9SDan Handley #include <stdint.h>
909d40e0eSAntonio Nino Diaz 
1009d40e0eSAntonio Nino Diaz #include <common/debug.h>
1109d40e0eSAntonio Nino Diaz #include <common/runtime_svc.h>
1209d40e0eSAntonio Nino Diaz #include <lib/el3_runtime/cpu_data.h>
1309d40e0eSAntonio Nino Diaz #include <lib/pmf/pmf.h>
1409d40e0eSAntonio Nino Diaz #include <lib/psci/psci.h>
1509d40e0eSAntonio Nino Diaz #include <lib/runtime_instr.h>
16*1cdf1eb8SJeremy Linton #include <services/pci_svc.h>
1709d40e0eSAntonio Nino Diaz #include <services/sdei.h>
180bf9f567SPaul Beesley #include <services/spm_mm_svc.h>
192a7b403dSAchin Gupta #include <services/spmd_svc.h>
2009d40e0eSAntonio Nino Diaz #include <services/std_svc.h>
217dfb9911SJimmy Brisson #include <services/trng_svc.h>
2209d40e0eSAntonio Nino Diaz #include <smccc_helpers.h>
2309d40e0eSAntonio Nino Diaz #include <tools_share/uuid.h>
2464f6ea9bSJeenu Viswambharan 
2564f6ea9bSJeenu Viswambharan /* Standard Service UUID */
2603364865SRoberto Vargas static uuid_t arm_svc_uid = {
2703364865SRoberto Vargas 	{0x5b, 0x90, 0x8d, 0x10},
2803364865SRoberto Vargas 	{0x63, 0xf8},
2903364865SRoberto Vargas 	{0xe8, 0x47},
3003364865SRoberto Vargas 	0xae, 0x2d,
3103364865SRoberto Vargas 	{0xc0, 0xfb, 0x56, 0x41, 0xf6, 0xe2}
3203364865SRoberto Vargas };
3364f6ea9bSJeenu Viswambharan 
3458e946aeSSoby Mathew /* Setup Standard Services */
3558e946aeSSoby Mathew static int32_t std_svc_setup(void)
3658e946aeSSoby Mathew {
3758e946aeSSoby Mathew 	uintptr_t svc_arg;
382fccb228SAntonio Nino Diaz 	int ret = 0;
3958e946aeSSoby Mathew 
4058e946aeSSoby Mathew 	svc_arg = get_arm_std_svc_args(PSCI_FID_MASK);
4158e946aeSSoby Mathew 	assert(svc_arg);
4258e946aeSSoby Mathew 
4358e946aeSSoby Mathew 	/*
442fccb228SAntonio Nino Diaz 	 * PSCI is one of the specifications implemented as a Standard Service.
4558e946aeSSoby Mathew 	 * The `psci_setup()` also does EL3 architectural setup.
4658e946aeSSoby Mathew 	 */
472fccb228SAntonio Nino Diaz 	if (psci_setup((const psci_lib_args_t *)svc_arg) != PSCI_E_SUCCESS) {
482fccb228SAntonio Nino Diaz 		ret = 1;
492fccb228SAntonio Nino Diaz 	}
502fccb228SAntonio Nino Diaz 
51538b0020SPaul Beesley #if SPM_MM
520bf9f567SPaul Beesley 	if (spm_mm_setup() != 0) {
532fccb228SAntonio Nino Diaz 		ret = 1;
542fccb228SAntonio Nino Diaz 	}
552fccb228SAntonio Nino Diaz #endif
562fccb228SAntonio Nino Diaz 
572a7b403dSAchin Gupta #if defined(SPD_spmd)
582a7b403dSAchin Gupta 	if (spmd_setup() != 0) {
592a7b403dSAchin Gupta 		ret = 1;
602a7b403dSAchin Gupta 	}
612a7b403dSAchin Gupta #endif
622a7b403dSAchin Gupta 
63b7cb133eSJeenu Viswambharan #if SDEI_SUPPORT
64b7cb133eSJeenu Viswambharan 	/* SDEI initialisation */
65b7cb133eSJeenu Viswambharan 	sdei_init();
66b7cb133eSJeenu Viswambharan #endif
67b7cb133eSJeenu Viswambharan 
687dfb9911SJimmy Brisson 	trng_setup();
697dfb9911SJimmy Brisson 
702fccb228SAntonio Nino Diaz 	return ret;
7158e946aeSSoby Mathew }
7258e946aeSSoby Mathew 
7364f6ea9bSJeenu Viswambharan /*
7464f6ea9bSJeenu Viswambharan  * Top-level Standard Service SMC handler. This handler will in turn dispatch
7564f6ea9bSJeenu Viswambharan  * calls to PSCI SMC handler
7664f6ea9bSJeenu Viswambharan  */
777fabe1a8SRoberto Vargas static uintptr_t std_svc_smc_handler(uint32_t smc_fid,
784c0d0390SSoby Mathew 			     u_register_t x1,
794c0d0390SSoby Mathew 			     u_register_t x2,
804c0d0390SSoby Mathew 			     u_register_t x3,
814c0d0390SSoby Mathew 			     u_register_t x4,
8264f6ea9bSJeenu Viswambharan 			     void *cookie,
8364f6ea9bSJeenu Viswambharan 			     void *handle,
844c0d0390SSoby Mathew 			     u_register_t flags)
8564f6ea9bSJeenu Viswambharan {
86475333c8SJeremy Linton 	if (((smc_fid >> FUNCID_CC_SHIFT) & FUNCID_CC_MASK) == SMC_32) {
87475333c8SJeremy Linton 		/* 32-bit SMC function, clear top parameter bits */
88475333c8SJeremy Linton 
89475333c8SJeremy Linton 		x1 &= UINT32_MAX;
90475333c8SJeremy Linton 		x2 &= UINT32_MAX;
91475333c8SJeremy Linton 		x3 &= UINT32_MAX;
92475333c8SJeremy Linton 		x4 &= UINT32_MAX;
93475333c8SJeremy Linton 	}
94475333c8SJeremy Linton 
9564f6ea9bSJeenu Viswambharan 	/*
9664f6ea9bSJeenu Viswambharan 	 * Dispatch PSCI calls to PSCI SMC handler and return its return
9764f6ea9bSJeenu Viswambharan 	 * value
9864f6ea9bSJeenu Viswambharan 	 */
9964f6ea9bSJeenu Viswambharan 	if (is_psci_fid(smc_fid)) {
100872be88aSdp-arm 		uint64_t ret;
101872be88aSdp-arm 
102872be88aSdp-arm #if ENABLE_RUNTIME_INSTRUMENTATION
103bfef6106Sdp-arm 
104bfef6106Sdp-arm 		/*
105bfef6106Sdp-arm 		 * Flush cache line so that even if CPU power down happens
106bfef6106Sdp-arm 		 * the timestamp update is reflected in memory.
107bfef6106Sdp-arm 		 */
108872be88aSdp-arm 		PMF_WRITE_TIMESTAMP(rt_instr_svc,
109872be88aSdp-arm 		    RT_INSTR_ENTER_PSCI,
110bfef6106Sdp-arm 		    PMF_CACHE_MAINT,
111872be88aSdp-arm 		    get_cpu_data(cpu_data_pmf_ts[CPU_DATA_PMF_TS0_IDX]));
112872be88aSdp-arm #endif
113872be88aSdp-arm 
114872be88aSdp-arm 		ret = psci_smc_handler(smc_fid, x1, x2, x3, x4,
115872be88aSdp-arm 		    cookie, handle, flags);
116872be88aSdp-arm 
117872be88aSdp-arm #if ENABLE_RUNTIME_INSTRUMENTATION
118872be88aSdp-arm 		PMF_CAPTURE_TIMESTAMP(rt_instr_svc,
119872be88aSdp-arm 		    RT_INSTR_EXIT_PSCI,
120872be88aSdp-arm 		    PMF_NO_CACHE_MAINT);
121872be88aSdp-arm #endif
122872be88aSdp-arm 
123872be88aSdp-arm 		SMC_RET1(handle, ret);
12464f6ea9bSJeenu Viswambharan 	}
12564f6ea9bSJeenu Viswambharan 
1263f3c341aSPaul Beesley #if SPM_MM
1272fccb228SAntonio Nino Diaz 	/*
1282fccb228SAntonio Nino Diaz 	 * Dispatch SPM calls to SPM SMC handler and return its return
1292fccb228SAntonio Nino Diaz 	 * value
1302fccb228SAntonio Nino Diaz 	 */
1310bf9f567SPaul Beesley 	if (is_spm_mm_fid(smc_fid)) {
1320bf9f567SPaul Beesley 		return spm_mm_smc_handler(smc_fid, x1, x2, x3, x4, cookie,
1332fccb228SAntonio Nino Diaz 					  handle, flags);
1342fccb228SAntonio Nino Diaz 	}
1352fccb228SAntonio Nino Diaz #endif
1362fccb228SAntonio Nino Diaz 
1372a7b403dSAchin Gupta #if defined(SPD_spmd)
1382a7b403dSAchin Gupta 	/*
139662af36dSJ-Alves 	 * Dispatch FFA calls to the FFA SMC handler implemented by the SPM
1402a7b403dSAchin Gupta 	 * dispatcher and return its return value
1412a7b403dSAchin Gupta 	 */
142662af36dSJ-Alves 	if (is_ffa_fid(smc_fid)) {
1432a7b403dSAchin Gupta 		return spmd_smc_handler(smc_fid, x1, x2, x3, x4, cookie,
1442a7b403dSAchin Gupta 					handle, flags);
1452a7b403dSAchin Gupta 	}
1462a7b403dSAchin Gupta #endif
1472a7b403dSAchin Gupta 
148b7cb133eSJeenu Viswambharan #if SDEI_SUPPORT
149b7cb133eSJeenu Viswambharan 	if (is_sdei_fid(smc_fid)) {
150b7cb133eSJeenu Viswambharan 		return sdei_smc_handler(smc_fid, x1, x2, x3, x4, cookie, handle,
151b7cb133eSJeenu Viswambharan 				flags);
152b7cb133eSJeenu Viswambharan 	}
153b7cb133eSJeenu Viswambharan #endif
154b7cb133eSJeenu Viswambharan 
155323b6c63SAndre Przywara #if TRNG_SUPPORT
1567dfb9911SJimmy Brisson 	if (is_trng_fid(smc_fid)) {
1577dfb9911SJimmy Brisson 		return trng_smc_handler(smc_fid, x1, x2, x3, x4, cookie, handle,
1587dfb9911SJimmy Brisson 				flags);
1597dfb9911SJimmy Brisson 	}
160323b6c63SAndre Przywara #endif
1617dfb9911SJimmy Brisson 
162*1cdf1eb8SJeremy Linton #if SMC_PCI_SUPPORT
163*1cdf1eb8SJeremy Linton 	if (is_pci_fid(smc_fid)) {
164*1cdf1eb8SJeremy Linton 		return pci_smc_handler(smc_fid, x1, x2, x3, x4, cookie, handle,
165*1cdf1eb8SJeremy Linton 				       flags);
166*1cdf1eb8SJeremy Linton 	}
167*1cdf1eb8SJeremy Linton #endif
168*1cdf1eb8SJeremy Linton 
16964f6ea9bSJeenu Viswambharan 	switch (smc_fid) {
17064f6ea9bSJeenu Viswambharan 	case ARM_STD_SVC_CALL_COUNT:
17164f6ea9bSJeenu Viswambharan 		/*
17264f6ea9bSJeenu Viswambharan 		 * Return the number of Standard Service Calls. PSCI is the only
17364f6ea9bSJeenu Viswambharan 		 * standard service implemented; so return number of PSCI calls
17464f6ea9bSJeenu Viswambharan 		 */
17564f6ea9bSJeenu Viswambharan 		SMC_RET1(handle, PSCI_NUM_CALLS);
17664f6ea9bSJeenu Viswambharan 
17764f6ea9bSJeenu Viswambharan 	case ARM_STD_SVC_UID:
17864f6ea9bSJeenu Viswambharan 		/* Return UID to the caller */
17964f6ea9bSJeenu Viswambharan 		SMC_UUID_RET(handle, arm_svc_uid);
18064f6ea9bSJeenu Viswambharan 
18164f6ea9bSJeenu Viswambharan 	case ARM_STD_SVC_VERSION:
18264f6ea9bSJeenu Viswambharan 		/* Return the version of current implementation */
18364f6ea9bSJeenu Viswambharan 		SMC_RET2(handle, STD_SVC_VERSION_MAJOR, STD_SVC_VERSION_MINOR);
18464f6ea9bSJeenu Viswambharan 
18564f6ea9bSJeenu Viswambharan 	default:
18664f6ea9bSJeenu Viswambharan 		WARN("Unimplemented Standard Service Call: 0x%x \n", smc_fid);
18764f6ea9bSJeenu Viswambharan 		SMC_RET1(handle, SMC_UNK);
18864f6ea9bSJeenu Viswambharan 	}
18964f6ea9bSJeenu Viswambharan }
19064f6ea9bSJeenu Viswambharan 
19164f6ea9bSJeenu Viswambharan /* Register Standard Service Calls as runtime service */
19264f6ea9bSJeenu Viswambharan DECLARE_RT_SVC(
19364f6ea9bSJeenu Viswambharan 		std_svc,
19464f6ea9bSJeenu Viswambharan 
19564f6ea9bSJeenu Viswambharan 		OEN_STD_START,
19664f6ea9bSJeenu Viswambharan 		OEN_STD_END,
19764f6ea9bSJeenu Viswambharan 		SMC_TYPE_FAST,
19858e946aeSSoby Mathew 		std_svc_setup,
19964f6ea9bSJeenu Viswambharan 		std_svc_smc_handler
20064f6ea9bSJeenu Viswambharan );
201