xref: /rk3399_ARM-atf/services/std_svc/std_svc_setup.c (revision 09d40e0e08283a249e7dce0e106c07c5141f9b7e)
164f6ea9bSJeenu Viswambharan /*
27fabe1a8SRoberto Vargas  * Copyright (c) 2014-2018, 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>
9*09d40e0eSAntonio Nino Diaz 
10*09d40e0eSAntonio Nino Diaz #include <common/debug.h>
11*09d40e0eSAntonio Nino Diaz #include <common/runtime_svc.h>
12*09d40e0eSAntonio Nino Diaz #include <lib/el3_runtime/cpu_data.h>
13*09d40e0eSAntonio Nino Diaz #include <lib/pmf/pmf.h>
14*09d40e0eSAntonio Nino Diaz #include <lib/psci/psci.h>
15*09d40e0eSAntonio Nino Diaz #include <lib/runtime_instr.h>
16*09d40e0eSAntonio Nino Diaz #include <services/sdei.h>
17*09d40e0eSAntonio Nino Diaz #include <services/spm_svc.h>
18*09d40e0eSAntonio Nino Diaz #include <services/std_svc.h>
19*09d40e0eSAntonio Nino Diaz #include <smccc_helpers.h>
20*09d40e0eSAntonio Nino Diaz #include <tools_share/uuid.h>
2164f6ea9bSJeenu Viswambharan 
2264f6ea9bSJeenu Viswambharan /* Standard Service UUID */
2303364865SRoberto Vargas static uuid_t arm_svc_uid = {
2403364865SRoberto Vargas 	{0x5b, 0x90, 0x8d, 0x10},
2503364865SRoberto Vargas 	{0x63, 0xf8},
2603364865SRoberto Vargas 	{0xe8, 0x47},
2703364865SRoberto Vargas 	0xae, 0x2d,
2803364865SRoberto Vargas 	{0xc0, 0xfb, 0x56, 0x41, 0xf6, 0xe2}
2903364865SRoberto Vargas };
3064f6ea9bSJeenu Viswambharan 
3158e946aeSSoby Mathew /* Setup Standard Services */
3258e946aeSSoby Mathew static int32_t std_svc_setup(void)
3358e946aeSSoby Mathew {
3458e946aeSSoby Mathew 	uintptr_t svc_arg;
352fccb228SAntonio Nino Diaz 	int ret = 0;
3658e946aeSSoby Mathew 
3758e946aeSSoby Mathew 	svc_arg = get_arm_std_svc_args(PSCI_FID_MASK);
3858e946aeSSoby Mathew 	assert(svc_arg);
3958e946aeSSoby Mathew 
4058e946aeSSoby Mathew 	/*
412fccb228SAntonio Nino Diaz 	 * PSCI is one of the specifications implemented as a Standard Service.
4258e946aeSSoby Mathew 	 * The `psci_setup()` also does EL3 architectural setup.
4358e946aeSSoby Mathew 	 */
442fccb228SAntonio Nino Diaz 	if (psci_setup((const psci_lib_args_t *)svc_arg) != PSCI_E_SUCCESS) {
452fccb228SAntonio Nino Diaz 		ret = 1;
462fccb228SAntonio Nino Diaz 	}
472fccb228SAntonio Nino Diaz 
482fccb228SAntonio Nino Diaz #if ENABLE_SPM
492fccb228SAntonio Nino Diaz 	if (spm_setup() != 0) {
502fccb228SAntonio Nino Diaz 		ret = 1;
512fccb228SAntonio Nino Diaz 	}
522fccb228SAntonio Nino Diaz #endif
532fccb228SAntonio Nino Diaz 
54b7cb133eSJeenu Viswambharan #if SDEI_SUPPORT
55b7cb133eSJeenu Viswambharan 	/* SDEI initialisation */
56b7cb133eSJeenu Viswambharan 	sdei_init();
57b7cb133eSJeenu Viswambharan #endif
58b7cb133eSJeenu Viswambharan 
592fccb228SAntonio Nino Diaz 	return ret;
6058e946aeSSoby Mathew }
6158e946aeSSoby Mathew 
6264f6ea9bSJeenu Viswambharan /*
6364f6ea9bSJeenu Viswambharan  * Top-level Standard Service SMC handler. This handler will in turn dispatch
6464f6ea9bSJeenu Viswambharan  * calls to PSCI SMC handler
6564f6ea9bSJeenu Viswambharan  */
667fabe1a8SRoberto Vargas static uintptr_t std_svc_smc_handler(uint32_t smc_fid,
674c0d0390SSoby Mathew 			     u_register_t x1,
684c0d0390SSoby Mathew 			     u_register_t x2,
694c0d0390SSoby Mathew 			     u_register_t x3,
704c0d0390SSoby Mathew 			     u_register_t x4,
7164f6ea9bSJeenu Viswambharan 			     void *cookie,
7264f6ea9bSJeenu Viswambharan 			     void *handle,
734c0d0390SSoby Mathew 			     u_register_t flags)
7464f6ea9bSJeenu Viswambharan {
7564f6ea9bSJeenu Viswambharan 	/*
7664f6ea9bSJeenu Viswambharan 	 * Dispatch PSCI calls to PSCI SMC handler and return its return
7764f6ea9bSJeenu Viswambharan 	 * value
7864f6ea9bSJeenu Viswambharan 	 */
7964f6ea9bSJeenu Viswambharan 	if (is_psci_fid(smc_fid)) {
80872be88aSdp-arm 		uint64_t ret;
81872be88aSdp-arm 
82872be88aSdp-arm #if ENABLE_RUNTIME_INSTRUMENTATION
83bfef6106Sdp-arm 
84bfef6106Sdp-arm 		/*
85bfef6106Sdp-arm 		 * Flush cache line so that even if CPU power down happens
86bfef6106Sdp-arm 		 * the timestamp update is reflected in memory.
87bfef6106Sdp-arm 		 */
88872be88aSdp-arm 		PMF_WRITE_TIMESTAMP(rt_instr_svc,
89872be88aSdp-arm 		    RT_INSTR_ENTER_PSCI,
90bfef6106Sdp-arm 		    PMF_CACHE_MAINT,
91872be88aSdp-arm 		    get_cpu_data(cpu_data_pmf_ts[CPU_DATA_PMF_TS0_IDX]));
92872be88aSdp-arm #endif
93872be88aSdp-arm 
94872be88aSdp-arm 		ret = psci_smc_handler(smc_fid, x1, x2, x3, x4,
95872be88aSdp-arm 		    cookie, handle, flags);
96872be88aSdp-arm 
97872be88aSdp-arm #if ENABLE_RUNTIME_INSTRUMENTATION
98872be88aSdp-arm 		PMF_CAPTURE_TIMESTAMP(rt_instr_svc,
99872be88aSdp-arm 		    RT_INSTR_EXIT_PSCI,
100872be88aSdp-arm 		    PMF_NO_CACHE_MAINT);
101872be88aSdp-arm #endif
102872be88aSdp-arm 
103872be88aSdp-arm 		SMC_RET1(handle, ret);
10464f6ea9bSJeenu Viswambharan 	}
10564f6ea9bSJeenu Viswambharan 
10683a5d512SAntonio Nino Diaz #if ENABLE_SPM && SPM_DEPRECATED
1072fccb228SAntonio Nino Diaz 	/*
1082fccb228SAntonio Nino Diaz 	 * Dispatch SPM calls to SPM SMC handler and return its return
1092fccb228SAntonio Nino Diaz 	 * value
1102fccb228SAntonio Nino Diaz 	 */
1112fccb228SAntonio Nino Diaz 	if (is_spm_fid(smc_fid)) {
1122fccb228SAntonio Nino Diaz 		return spm_smc_handler(smc_fid, x1, x2, x3, x4, cookie,
1132fccb228SAntonio Nino Diaz 				       handle, flags);
1142fccb228SAntonio Nino Diaz 	}
1152fccb228SAntonio Nino Diaz #endif
1162fccb228SAntonio Nino Diaz 
117b7cb133eSJeenu Viswambharan #if SDEI_SUPPORT
118b7cb133eSJeenu Viswambharan 	if (is_sdei_fid(smc_fid)) {
119b7cb133eSJeenu Viswambharan 		return sdei_smc_handler(smc_fid, x1, x2, x3, x4, cookie, handle,
120b7cb133eSJeenu Viswambharan 				flags);
121b7cb133eSJeenu Viswambharan 	}
122b7cb133eSJeenu Viswambharan #endif
123b7cb133eSJeenu Viswambharan 
12464f6ea9bSJeenu Viswambharan 	switch (smc_fid) {
12564f6ea9bSJeenu Viswambharan 	case ARM_STD_SVC_CALL_COUNT:
12664f6ea9bSJeenu Viswambharan 		/*
12764f6ea9bSJeenu Viswambharan 		 * Return the number of Standard Service Calls. PSCI is the only
12864f6ea9bSJeenu Viswambharan 		 * standard service implemented; so return number of PSCI calls
12964f6ea9bSJeenu Viswambharan 		 */
13064f6ea9bSJeenu Viswambharan 		SMC_RET1(handle, PSCI_NUM_CALLS);
13164f6ea9bSJeenu Viswambharan 
13264f6ea9bSJeenu Viswambharan 	case ARM_STD_SVC_UID:
13364f6ea9bSJeenu Viswambharan 		/* Return UID to the caller */
13464f6ea9bSJeenu Viswambharan 		SMC_UUID_RET(handle, arm_svc_uid);
13564f6ea9bSJeenu Viswambharan 
13664f6ea9bSJeenu Viswambharan 	case ARM_STD_SVC_VERSION:
13764f6ea9bSJeenu Viswambharan 		/* Return the version of current implementation */
13864f6ea9bSJeenu Viswambharan 		SMC_RET2(handle, STD_SVC_VERSION_MAJOR, STD_SVC_VERSION_MINOR);
13964f6ea9bSJeenu Viswambharan 
14064f6ea9bSJeenu Viswambharan 	default:
14164f6ea9bSJeenu Viswambharan 		WARN("Unimplemented Standard Service Call: 0x%x \n", smc_fid);
14264f6ea9bSJeenu Viswambharan 		SMC_RET1(handle, SMC_UNK);
14364f6ea9bSJeenu Viswambharan 	}
14464f6ea9bSJeenu Viswambharan }
14564f6ea9bSJeenu Viswambharan 
14664f6ea9bSJeenu Viswambharan /* Register Standard Service Calls as runtime service */
14764f6ea9bSJeenu Viswambharan DECLARE_RT_SVC(
14864f6ea9bSJeenu Viswambharan 		std_svc,
14964f6ea9bSJeenu Viswambharan 
15064f6ea9bSJeenu Viswambharan 		OEN_STD_START,
15164f6ea9bSJeenu Viswambharan 		OEN_STD_END,
15264f6ea9bSJeenu Viswambharan 		SMC_TYPE_FAST,
15358e946aeSSoby Mathew 		std_svc_setup,
15464f6ea9bSJeenu Viswambharan 		std_svc_smc_handler
15564f6ea9bSJeenu Viswambharan );
156