xref: /rk3399_ARM-atf/plat/mediatek/drivers/ufs/mt8189/ufs_ctrl_soc.c (revision 3ba36ea07ca22c748b5adcf5d9bff00e752681d7)
1 /*
2  * Copyright (c) 2025, MediaTek Inc. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #if defined(CONFIG_MTK_MTCMOS)
8 #include <mtcmos.h>
9 #endif
10 #include <mtk_bl31_interface.h>
11 
12 void ufs_device_pwr_ctrl_soc(bool vcc_on, uint64_t ufs_version) {}
13 
14 int ufs_spm_mtcmos_power(bool on)
15 {
16 #if defined(CONFIG_MTK_MTCMOS)
17 	return spm_mtcmos_ctrl_ufs0(on ? STA_POWER_ON : STA_POWER_DOWN);
18 #else
19 	return 0;
20 #endif
21 }
22