2019-03-16 13:04:47 +08:00
/* SPDX-License-Identifier: GPL-2.0 */
/*
* Copyright ( C ) 2019 MediaTek Inc .
*/
# ifndef _UFS_MEDIATEK_H
# define _UFS_MEDIATEK_H
2019-12-30 13:32:26 +08:00
# include <linux/bitops.h>
2023-07-01 20:44:41 +08:00
/*
* MCQ define and struct
*/
# define UFSHCD_MAX_Q_NR 8
# define MTK_MCQ_INVALID_IRQ 0xFFFF
/* REG_UFS_MMIO_OPT_CTRL_0 160h */
# define EHS_EN BIT(0)
# define PFM_IMPV BIT(1)
# define MCQ_MULTI_INTR_EN BIT(2)
# define MCQ_CMB_INTR_EN BIT(3)
# define MCQ_AH8 BIT(4)
# define MCQ_INTR_EN_MSK (MCQ_MULTI_INTR_EN | MCQ_CMB_INTR_EN)
2019-12-30 13:32:27 +08:00
/*
* Vendor specific UFSHCI Registers
*/
2022-06-23 11:50:47 +08:00
# define REG_UFS_XOUFS_CTRL 0x140
2019-12-30 13:32:27 +08:00
# define REG_UFS_REFCLK_CTRL 0x144
2023-07-01 20:44:41 +08:00
# define REG_UFS_MMIO_OPT_CTRL_0 0x160
2020-01-17 11:51:06 +08:00
# define REG_UFS_EXTREG 0x2100
# define REG_UFS_MPHYCTRL 0x2200
2021-09-06 16:53:07 +08:00
# define REG_UFS_MTK_IP_VER 0x2240
2020-01-17 11:51:06 +08:00
# define REG_UFS_REJECT_MON 0x22AC
# define REG_UFS_DEBUG_SEL 0x22C0
# define REG_UFS_PROBE 0x22C8
2021-09-06 16:53:07 +08:00
# define REG_UFS_DEBUG_SEL_B0 0x22D0
# define REG_UFS_DEBUG_SEL_B1 0x22D4
# define REG_UFS_DEBUG_SEL_B2 0x22D8
# define REG_UFS_DEBUG_SEL_B3 0x22DC
2019-12-30 13:32:27 +08:00
2023-07-01 20:44:41 +08:00
# define REG_UFS_MTK_SQD 0x2800
# define REG_UFS_MTK_SQIS 0x2814
# define REG_UFS_MTK_CQD 0x281C
# define REG_UFS_MTK_CQIS 0x2824
# define REG_UFS_MCQ_STRIDE 0x30
2019-12-30 13:32:27 +08:00
/*
* Ref - clk control
*
* Values for register REG_UFS_REFCLK_CTRL
*/
# define REFCLK_RELEASE 0x0
# define REFCLK_REQUEST BIT(0)
# define REFCLK_ACK BIT(1)
2020-06-01 18:46:42 +08:00
# define REFCLK_REQ_TIMEOUT_US 3000
2021-10-16 08:58:00 +08:00
# define REFCLK_DEFAULT_WAIT_US 32
2019-12-30 13:32:27 +08:00
2019-03-16 13:04:47 +08:00
/*
* Other attributes
*/
# define VS_DEBUGCLOCKENABLE 0xD0A1
# define VS_SAVEPOWERCONTROL 0xD0A6
# define VS_UNIPROPOWERDOWNCONTROL 0xD0A8
2020-01-29 18:52:51 +08:00
/*
* Vendor specific link state
*/
enum {
VS_LINK_DISABLED = 0 ,
VS_LINK_DOWN = 1 ,
VS_LINK_UP = 2 ,
VS_LINK_HIBERN8 = 3 ,
VS_LINK_LOST = 4 ,
VS_LINK_CFG = 5 ,
} ;
2021-10-06 13:47:05 +08:00
/*
* Vendor specific host controller state
*/
enum {
VS_HCE_RESET = 0 ,
VS_HCE_BASE = 1 ,
VS_HCE_OOCPR_WAIT = 2 ,
VS_HCE_DME_RESET = 3 ,
VS_HCE_MIDDLE = 4 ,
VS_HCE_DME_ENABLE = 5 ,
VS_HCE_DEFAULTS = 6 ,
VS_HIB_IDLEEN = 7 ,
VS_HIB_ENTER = 8 ,
VS_HIB_ENTER_CONF = 9 ,
VS_HIB_MIDDLE = 10 ,
VS_HIB_WAITTIMER = 11 ,
VS_HIB_EXIT_CONF = 12 ,
VS_HIB_EXIT = 13 ,
} ;
2019-03-16 13:04:47 +08:00
/*
* VS_DEBUGCLOCKENABLE
*/
enum {
TX_SYMBOL_CLK_REQ_FORCE = 5 ,
} ;
/*
* VS_SAVEPOWERCONTROL
*/
enum {
RX_SYMBOL_CLK_GATE_EN = 0 ,
SYS_CLK_GATE_EN = 2 ,
TX_CLK_GATE_EN = 3 ,
} ;
2020-09-14 13:00:51 +08:00
/*
* Host capability
*/
enum ufs_mtk_host_caps {
UFS_MTK_CAP_BOOST_CRYPT_ENGINE = 1 < < 0 ,
2020-10-29 19:57:46 +08:00
UFS_MTK_CAP_VA09_PWR_CTRL = 1 < < 1 ,
2020-10-29 19:57:48 +08:00
UFS_MTK_CAP_DISABLE_AH8 = 1 < < 2 ,
2020-12-07 13:49:55 +08:00
UFS_MTK_CAP_BROKEN_VCC = 1 < < 3 ,
2024-03-15 16:34:42 +08:00
/*
* Override UFS_MTK_CAP_BROKEN_VCC ' s behavior to
* allow vccqx upstream to enter LPM
*/
UFS_MTK_CAP_ALLOW_VCCQX_LPM = 1 < < 5 ,
2022-06-16 13:37:17 +08:00
UFS_MTK_CAP_PMC_VIA_FASTAUTO = 1 < < 6 ,
2024-03-15 16:34:43 +08:00
UFS_MTK_CAP_TX_SKEW_FIX = 1 < < 7 ,
2024-03-15 16:34:44 +08:00
UFS_MTK_CAP_DISABLE_MCQ = 1 < < 8 ,
2024-03-15 16:34:48 +08:00
/* Control MTCMOS with RTFF */
UFS_MTK_CAP_RTFF_MTCMOS = 1 < < 9 ,
2020-09-14 13:00:51 +08:00
} ;
struct ufs_mtk_crypt_cfg {
struct regulator * reg_vcore ;
struct clk * clk_crypt_perf ;
struct clk * clk_crypt_mux ;
struct clk * clk_crypt_lp ;
int vcore_volt ;
} ;
2022-08-03 07:54:37 +08:00
struct ufs_mtk_clk {
struct ufs_clk_info * ufs_sel_clki ; /* Mux */
struct ufs_clk_info * ufs_sel_max_clki ; /* Max src */
struct ufs_clk_info * ufs_sel_min_clki ; /* Min src */
} ;
2020-10-29 19:57:50 +08:00
struct ufs_mtk_hw_ver {
u8 step ;
u8 minor ;
u8 major ;
} ;
2023-07-01 20:44:41 +08:00
struct ufs_mtk_mcq_intr_info {
struct ufs_hba * hba ;
u32 irq ;
u8 qid ;
} ;
2019-03-16 13:04:47 +08:00
struct ufs_mtk_host {
struct phy * mphy ;
2020-10-29 19:57:46 +08:00
struct regulator * reg_va09 ;
2020-09-08 14:45:07 +08:00
struct reset_control * hci_reset ;
struct reset_control * unipro_reset ;
struct reset_control * crypto_reset ;
2024-03-15 16:34:47 +08:00
struct reset_control * mphy_reset ;
2020-10-29 19:57:47 +08:00
struct ufs_hba * hba ;
struct ufs_mtk_crypt_cfg * crypt ;
2022-08-03 07:54:37 +08:00
struct ufs_mtk_clk mclk ;
2020-10-29 19:57:50 +08:00
struct ufs_mtk_hw_ver hw_ver ;
2020-10-29 19:57:47 +08:00
enum ufs_mtk_host_caps caps ;
2020-06-01 18:46:45 +08:00
bool mphy_powered_on ;
2020-03-18 18:40:16 +08:00
bool unipro_lpm ;
2019-12-30 13:32:27 +08:00
bool ref_clk_enabled ;
2020-02-20 21:48:48 +08:00
u16 ref_clk_ungating_wait_us ;
u16 ref_clk_gating_wait_us ;
2021-09-06 16:53:07 +08:00
u32 ip_ver ;
2023-07-01 20:44:41 +08:00
bool mcq_set_intr ;
2023-12-21 19:04:16 +08:00
bool is_mcq_intr_enabled ;
2023-07-01 20:44:41 +08:00
int mcq_nr_intr ;
struct ufs_mtk_mcq_intr_info mcq_intr_info [ UFSHCD_MAX_Q_NR ] ;
2019-03-16 13:04:47 +08:00
} ;
2024-01-09 20:40:15 +08:00
/* MTK delay of autosuspend: 500 ms */
# define MTK_RPM_AUTOSUSPEND_DELAY_MS 500
2019-03-16 13:04:47 +08:00
# endif /* !_UFS_MEDIATEK_H */