blob: c625704e6c48da57ca7f77a3d7a8375abaf4f895 [file] [log] [blame]
Anson Huangf753d462019-01-15 10:34:04 +08001/*
Jacky Bai4d93d1d2020-07-02 14:39:58 +08002 * Copyright (c) 2015-2024, ARM Limited and Contributors. All rights reserved.
Anson Huangf753d462019-01-15 10:34:04 +08003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <stdint.h>
Jacky Bai4d93d1d2020-07-02 14:39:58 +08008
Anson Huangf753d462019-01-15 10:34:04 +08009#include <common/debug.h>
10#include <common/runtime_svc.h>
Jacky Bai4d93d1d2020-07-02 14:39:58 +080011#include <drivers/scmi-msg.h>
Anson Huangf753d462019-01-15 10:34:04 +080012#include <lib/pmf/pmf.h>
13#include <tools_share/uuid.h>
Jacky Bai4d93d1d2020-07-02 14:39:58 +080014
Anson Huangf753d462019-01-15 10:34:04 +080015#include <imx_sip_svc.h>
16
17static int32_t imx_sip_setup(void)
18{
19 return 0;
20}
21
22static 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) {
Peng Fandd860d12020-07-10 14:18:01 +080032 case IMX_SIP_AARCH32:
33 SMC_RET1(handle, imx_kernel_entry_handler(smc_fid, x1, x2, x3, x4));
34 break;
Jacky Bai4d93d1d2020-07-02 14:39:58 +080035#if defined(PLAT_imx8ulp)
36 case IMX_SIP_SCMI:
37 scmi_smt_fastcall_smc_entry(0);
38 SMC_RET1(handle, 0);
39 break;
Jacky Bai7ec94512023-09-21 14:01:37 +080040 case IMX_SIP_HIFI_XRDC:
41 SMC_RET1(handle, imx_hifi_xrdc(smc_fid));
42 break;
Jacky Bai9f6e5d92022-01-25 16:34:58 +080043 case IMX_SIP_DDR_DVFS:
44 return dram_dvfs_handler(smc_fid, handle, x1, x2, x3);
Jacky Bai4d93d1d2020-07-02 14:39:58 +080045#endif
Leonard Crestez55119082019-05-10 13:07:41 +030046#if defined(PLAT_imx8mq)
47 case IMX_SIP_GET_SOC_INFO:
48 SMC_RET1(handle, imx_soc_info_handler(smc_fid, x1, x2, x3));
49 break;
Jacky Baia9407992020-01-08 16:56:01 +080050 case IMX_SIP_GPC:
51 SMC_RET1(handle, imx_gpc_handler(smc_fid, x1, x2, x3));
52 break;
Jacky Baia51b11a2020-01-14 14:19:05 +080053 case IMX_SIP_DDR_DVFS:
54 return dram_dvfs_handler(smc_fid, handle, x1, x2, x3);
Leonard Crestez55119082019-05-10 13:07:41 +030055#endif
Jacky Baid746daa2019-11-25 13:19:37 +080056#if defined(PLAT_imx8mm) || defined(PLAT_imx8mn) || defined(PLAT_imx8mp)
57 case IMX_SIP_DDR_DVFS:
58 return dram_dvfs_handler(smc_fid, handle, x1, x2, x3);
Jacky Bai31f02322019-12-11 16:26:59 +080059 case IMX_SIP_GPC:
60 SMC_RET1(handle, imx_gpc_handler(smc_fid, x1, x2, x3));
61 break;
Jacky Baid746daa2019-11-25 13:19:37 +080062#endif
Leonard Crestezd62c1612019-05-20 11:28:50 +030063#if (defined(PLAT_imx8qm) || defined(PLAT_imx8qx))
Anson Huangf753d462019-01-15 10:34:04 +080064 case IMX_SIP_SRTC:
65 return imx_srtc_handler(smc_fid, handle, x1, x2, x3, x4);
Anson Huang922c45f2019-01-15 10:56:36 +080066 case IMX_SIP_CPUFREQ:
67 SMC_RET1(handle, imx_cpufreq_handler(smc_fid, x1, x2, x3));
68 break;
Anson Huange1d418c2019-01-18 10:01:50 +080069 case IMX_SIP_WAKEUP_SRC:
70 SMC_RET1(handle, imx_wakeup_src_handler(smc_fid, x1, x2, x3));
Anson Huang6e47de52019-01-18 10:27:48 +080071 case IMX_SIP_OTP_READ:
72 case IMX_SIP_OTP_WRITE:
73 return imx_otp_handler(smc_fid, handle, x1, x2);
Anson Huange708bfb2019-01-18 10:35:54 +080074 case IMX_SIP_MISC_SET_TEMP:
75 SMC_RET1(handle, imx_misc_set_temp_handler(smc_fid, x1, x2, x3, x4));
Anson Huangf753d462019-01-15 10:34:04 +080076#endif
Igor Opaniuke1ff4602023-10-31 17:10:35 +010077#if defined(PLAT_imx8mm) || defined(PLAT_imx8mq) || defined(PLAT_imx8mn) || \
78 defined(PLAT_imx8mp)
Igor Opaniukf2de6812021-03-10 13:42:55 +020079 case IMX_SIP_SRC:
80 SMC_RET1(handle, imx_src_handler(smc_fid, x1, x2, x3, handle));
81 break;
82#endif
Andrey Zhizhikin10a4d862022-09-26 22:25:33 +020083#if defined(PLAT_imx8mm) || defined(PLAT_imx8mn) || defined(PLAT_imx8mp)
84 case IMX_SIP_HAB:
85 SMC_RET1(handle, imx_hab_handler(smc_fid, x1, x2, x3, x4));
86 break;
87#endif
Anson Huang971392d2019-01-18 10:43:59 +080088 case IMX_SIP_BUILDINFO:
89 SMC_RET1(handle, imx_buildinfo_handler(smc_fid, x1, x2, x3, x4));
Anson Huangf753d462019-01-15 10:34:04 +080090 default:
91 WARN("Unimplemented i.MX SiP Service Call: 0x%x\n", smc_fid);
92 SMC_RET1(handle, SMC_UNK);
93 break;
94 }
95}
96
97/* Define a runtime service descriptor for fast SMC calls */
98DECLARE_RT_SVC(
99 imx_sip_svc,
100 OEN_SIP_START,
101 OEN_SIP_END,
102 SMC_TYPE_FAST,
103 imx_sip_setup,
104 imx_sip_handler
105);