xref: /rk3399_ARM-atf/plat/imx/common/imx_sip_svc.c (revision ac5d69b628736f66f72e99532656105fdc07a3fe)
1 /*
2  * Copyright (c) 2015-2024, ARM Limited and Contributors. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #include <stdint.h>
8 
9 #include <common/debug.h>
10 #include <common/runtime_svc.h>
11 #include <drivers/scmi-msg.h>
12 #include <lib/pmf/pmf.h>
13 #include <tools_share/uuid.h>
14 
15 #include <imx_sip_svc.h>
16 
17 static int32_t imx_sip_setup(void)
18 {
19 	return 0;
20 }
21 
22 static uintptr_t imx_sip_handler(unsigned int smc_fid,
23 			u_register_t x1,
24 			u_register_t x2,
25 			u_register_t x3,
26 			u_register_t x4,
27 			void *cookie,
28 			void *handle,
29 			u_register_t flags)
30 {
31 	switch (smc_fid) {
32 	case IMX_SIP_AARCH32:
33 		SMC_RET1(handle, imx_kernel_entry_handler(smc_fid, x1, x2, x3, x4));
34 		break;
35 #if defined(PLAT_imx8ulp)
36 	case IMX_SIP_SCMI:
37 		scmi_smt_fastcall_smc_entry(0);
38 		SMC_RET1(handle, 0);
39 		break;
40 	case IMX_SIP_HIFI_XRDC:
41 		SMC_RET1(handle, imx_hifi_xrdc(smc_fid));
42 		break;
43 #endif
44 #if defined(PLAT_imx8mq)
45 	case IMX_SIP_GET_SOC_INFO:
46 		SMC_RET1(handle, imx_soc_info_handler(smc_fid, x1, x2, x3));
47 		break;
48 	case IMX_SIP_GPC:
49 		SMC_RET1(handle, imx_gpc_handler(smc_fid, x1, x2, x3));
50 		break;
51 	case IMX_SIP_DDR_DVFS:
52 		return dram_dvfs_handler(smc_fid, handle, x1, x2, x3);
53 #endif
54 #if defined(PLAT_imx8mm) || defined(PLAT_imx8mn) || defined(PLAT_imx8mp)
55 	case IMX_SIP_DDR_DVFS:
56 		return dram_dvfs_handler(smc_fid, handle, x1, x2, x3);
57 	case IMX_SIP_GPC:
58 		SMC_RET1(handle, imx_gpc_handler(smc_fid, x1, x2, x3));
59 		break;
60 #endif
61 #if (defined(PLAT_imx8qm) || defined(PLAT_imx8qx))
62 	case  IMX_SIP_SRTC:
63 		return imx_srtc_handler(smc_fid, handle, x1, x2, x3, x4);
64 	case  IMX_SIP_CPUFREQ:
65 		SMC_RET1(handle, imx_cpufreq_handler(smc_fid, x1, x2, x3));
66 		break;
67 	case  IMX_SIP_WAKEUP_SRC:
68 		SMC_RET1(handle, imx_wakeup_src_handler(smc_fid, x1, x2, x3));
69 	case IMX_SIP_OTP_READ:
70 	case IMX_SIP_OTP_WRITE:
71 		return imx_otp_handler(smc_fid, handle, x1, x2);
72 	case IMX_SIP_MISC_SET_TEMP:
73 		SMC_RET1(handle, imx_misc_set_temp_handler(smc_fid, x1, x2, x3, x4));
74 #endif
75 #if defined(PLAT_imx8mm) || defined(PLAT_imx8mq) || defined(PLAT_imx8mn) || \
76 	defined(PLAT_imx8mp)
77 	case IMX_SIP_SRC:
78 		SMC_RET1(handle, imx_src_handler(smc_fid, x1, x2, x3, handle));
79 		break;
80 #endif
81 #if defined(PLAT_imx8mm) || defined(PLAT_imx8mn) || defined(PLAT_imx8mp)
82 	case IMX_SIP_HAB:
83 		SMC_RET1(handle, imx_hab_handler(smc_fid, x1, x2, x3, x4));
84 		break;
85 #endif
86 	case  IMX_SIP_BUILDINFO:
87 		SMC_RET1(handle, imx_buildinfo_handler(smc_fid, x1, x2, x3, x4));
88 	default:
89 		WARN("Unimplemented i.MX SiP Service Call: 0x%x\n", smc_fid);
90 		SMC_RET1(handle, SMC_UNK);
91 		break;
92 	}
93 }
94 
95 /* Define a runtime service descriptor for fast SMC calls */
96 DECLARE_RT_SVC(
97 		imx_sip_svc,
98 		OEN_SIP_START,
99 		OEN_SIP_END,
100 		SMC_TYPE_FAST,
101 		imx_sip_setup,
102 		imx_sip_handler
103 );
104