summaryrefslogtreecommitdiff
path: root/plat/imx/common/sip_svc.c
diff options
context:
space:
mode:
Diffstat (limited to 'plat/imx/common/sip_svc.c')
-rw-r--r--plat/imx/common/sip_svc.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/plat/imx/common/sip_svc.c b/plat/imx/common/sip_svc.c
index 3899f2d9..596da8c3 100644
--- a/plat/imx/common/sip_svc.c
+++ b/plat/imx/common/sip_svc.c
@@ -26,6 +26,7 @@ extern int imx_src_handler(uint32_t smc_fid, u_register_t x1, u_register_t x2,
extern int imx_soc_handler(uint32_t smc_fid, u_register_t x1, u_register_t x2, u_register_t x3);
extern int imx_hab_handler(uint32_t smc_fid, u_register_t x1, u_register_t x2, u_register_t x3, u_register_t x4);
extern int imx_noc_handler(uint32_t smc_fid, u_register_t x1, u_register_t x2, u_register_t x3);
+extern int dram_dvfs_handler(uint32_t smc_fid, u_register_t x1, u_register_t x2, u_register_t x3);
bool wakeup_src_irqsteer = false;
@@ -119,6 +120,11 @@ uintptr_t imx_svc_smc_handler(uint32_t smc_fid,
SMC_RET1(handle, lpddr4_dvfs_handler(smc_fid, x1, x2, x3));
break;
#endif
+#if defined(PLAT_IMX8MM)
+ case FSL_SIP_DDR_DVFS:
+ SMC_RET1(handle, dram_dvfs_handler(smc_fid, x1, x2, x3));
+ break;
+#endif
#if defined(PLAT_IMX8M) || defined(PLAT_IMX8MM)
case FSL_SIP_GPC:
SMC_RET1(handle, imx_gpc_handler(smc_fid, x1, x2, x3));