0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011 #include <linux/clk.h>
0012 #include <linux/delay.h>
0013 #include <linux/module.h>
0014 #include <linux/of.h>
0015 #include <linux/of_address.h>
0016 #include <linux/mfd/syscon.h>
0017 #include <linux/phy/phy.h>
0018 #include <linux/platform_device.h>
0019 #include <linux/regmap.h>
0020
0021 #include <ufs/ufshcd.h>
0022 #include "ufshcd-pltfrm.h"
0023 #include <ufs/ufshci.h>
0024 #include <ufs/unipro.h>
0025
0026 #include "ufs-exynos.h"
0027
0028
0029
0030
0031 #define HCI_TXPRDT_ENTRY_SIZE 0x00
0032 #define PRDT_PREFECT_EN BIT(31)
0033 #define PRDT_SET_SIZE(x) ((x) & 0x1F)
0034 #define HCI_RXPRDT_ENTRY_SIZE 0x04
0035 #define HCI_1US_TO_CNT_VAL 0x0C
0036 #define CNT_VAL_1US_MASK 0x3FF
0037 #define HCI_UTRL_NEXUS_TYPE 0x40
0038 #define HCI_UTMRL_NEXUS_TYPE 0x44
0039 #define HCI_SW_RST 0x50
0040 #define UFS_LINK_SW_RST BIT(0)
0041 #define UFS_UNIPRO_SW_RST BIT(1)
0042 #define UFS_SW_RST_MASK (UFS_UNIPRO_SW_RST | UFS_LINK_SW_RST)
0043 #define HCI_DATA_REORDER 0x60
0044 #define HCI_UNIPRO_APB_CLK_CTRL 0x68
0045 #define UNIPRO_APB_CLK(v, x) (((v) & ~0xF) | ((x) & 0xF))
0046 #define HCI_AXIDMA_RWDATA_BURST_LEN 0x6C
0047 #define HCI_GPIO_OUT 0x70
0048 #define HCI_ERR_EN_PA_LAYER 0x78
0049 #define HCI_ERR_EN_DL_LAYER 0x7C
0050 #define HCI_ERR_EN_N_LAYER 0x80
0051 #define HCI_ERR_EN_T_LAYER 0x84
0052 #define HCI_ERR_EN_DME_LAYER 0x88
0053 #define HCI_CLKSTOP_CTRL 0xB0
0054 #define REFCLKOUT_STOP BIT(4)
0055 #define MPHY_APBCLK_STOP BIT(3)
0056 #define REFCLK_STOP BIT(2)
0057 #define UNIPRO_MCLK_STOP BIT(1)
0058 #define UNIPRO_PCLK_STOP BIT(0)
0059 #define CLK_STOP_MASK (REFCLKOUT_STOP | REFCLK_STOP |\
0060 UNIPRO_MCLK_STOP | MPHY_APBCLK_STOP|\
0061 UNIPRO_PCLK_STOP)
0062 #define HCI_MISC 0xB4
0063 #define REFCLK_CTRL_EN BIT(7)
0064 #define UNIPRO_PCLK_CTRL_EN BIT(6)
0065 #define UNIPRO_MCLK_CTRL_EN BIT(5)
0066 #define HCI_CORECLK_CTRL_EN BIT(4)
0067 #define CLK_CTRL_EN_MASK (REFCLK_CTRL_EN |\
0068 UNIPRO_PCLK_CTRL_EN |\
0069 UNIPRO_MCLK_CTRL_EN)
0070
0071 #define DFES_ERR_EN BIT(31)
0072 #define DFES_DEF_L2_ERRS (UIC_DATA_LINK_LAYER_ERROR_RX_BUF_OF |\
0073 UIC_DATA_LINK_LAYER_ERROR_PA_INIT)
0074 #define DFES_DEF_L3_ERRS (UIC_NETWORK_UNSUPPORTED_HEADER_TYPE |\
0075 UIC_NETWORK_BAD_DEVICEID_ENC |\
0076 UIC_NETWORK_LHDR_TRAP_PACKET_DROPPING)
0077 #define DFES_DEF_L4_ERRS (UIC_TRANSPORT_UNSUPPORTED_HEADER_TYPE |\
0078 UIC_TRANSPORT_UNKNOWN_CPORTID |\
0079 UIC_TRANSPORT_NO_CONNECTION_RX |\
0080 UIC_TRANSPORT_BAD_TC)
0081
0082
0083 #define UFS_WR_SHARABLE BIT(2)
0084 #define UFS_RD_SHARABLE BIT(1)
0085 #define UFS_SHARABLE (UFS_WR_SHARABLE | UFS_RD_SHARABLE)
0086 #define UFS_SHAREABILITY_OFFSET 0x710
0087
0088
0089 #define MHCTRL 0xC4
0090 #define MHCTRL_EN_VH_MASK (0xE)
0091 #define MHCTRL_EN_VH(vh) (vh << 1)
0092 #define PH2VH_MBOX 0xD8
0093
0094 #define MH_MSG_MASK (0xFF)
0095
0096 #define MH_MSG(id, msg) ((id << 8) | (msg & 0xFF))
0097 #define MH_MSG_PH_READY 0x1
0098 #define MH_MSG_VH_READY 0x2
0099
0100 #define ALLOW_INQUIRY BIT(25)
0101 #define ALLOW_MODE_SELECT BIT(24)
0102 #define ALLOW_MODE_SENSE BIT(23)
0103 #define ALLOW_PRE_FETCH GENMASK(22, 21)
0104 #define ALLOW_READ_CMD_ALL GENMASK(20, 18)
0105 #define ALLOW_READ_BUFFER BIT(17)
0106 #define ALLOW_READ_CAPACITY GENMASK(16, 15)
0107 #define ALLOW_REPORT_LUNS BIT(14)
0108 #define ALLOW_REQUEST_SENSE BIT(13)
0109 #define ALLOW_SYNCHRONIZE_CACHE GENMASK(8, 7)
0110 #define ALLOW_TEST_UNIT_READY BIT(6)
0111 #define ALLOW_UNMAP BIT(5)
0112 #define ALLOW_VERIFY BIT(4)
0113 #define ALLOW_WRITE_CMD_ALL GENMASK(3, 1)
0114
0115 #define ALLOW_TRANS_VH_DEFAULT (ALLOW_INQUIRY | ALLOW_MODE_SELECT | \
0116 ALLOW_MODE_SENSE | ALLOW_PRE_FETCH | \
0117 ALLOW_READ_CMD_ALL | ALLOW_READ_BUFFER | \
0118 ALLOW_READ_CAPACITY | ALLOW_REPORT_LUNS | \
0119 ALLOW_REQUEST_SENSE | ALLOW_SYNCHRONIZE_CACHE | \
0120 ALLOW_TEST_UNIT_READY | ALLOW_UNMAP | \
0121 ALLOW_VERIFY | ALLOW_WRITE_CMD_ALL)
0122
0123 #define HCI_MH_ALLOWABLE_TRAN_OF_VH 0x30C
0124 #define HCI_MH_IID_IN_TASK_TAG 0X308
0125
0126 #define PH_READY_TIMEOUT_MS (5 * MSEC_PER_SEC)
0127
0128 enum {
0129 UNIPRO_L1_5 = 0,
0130 UNIPRO_L2,
0131 UNIPRO_L3,
0132 UNIPRO_L4,
0133 UNIPRO_DME,
0134 };
0135
0136
0137
0138
0139 #define UNIPRO_DME_POWERMODE_REQ_REMOTEL2TIMER0 0x78B8
0140 #define UNIPRO_DME_POWERMODE_REQ_REMOTEL2TIMER1 0x78BC
0141 #define UNIPRO_DME_POWERMODE_REQ_REMOTEL2TIMER2 0x78C0
0142
0143
0144
0145
0146 #define UFSPRSECURITY 0x010
0147 #define NSSMU BIT(14)
0148 #define UFSPSBEGIN0 0x200
0149 #define UFSPSEND0 0x204
0150 #define UFSPSLUN0 0x208
0151 #define UFSPSCTRL0 0x20C
0152
0153 #define CNTR_DIV_VAL 40
0154
0155 static void exynos_ufs_auto_ctrl_hcc(struct exynos_ufs *ufs, bool en);
0156 static void exynos_ufs_ctrl_clkstop(struct exynos_ufs *ufs, bool en);
0157
0158 static inline void exynos_ufs_enable_auto_ctrl_hcc(struct exynos_ufs *ufs)
0159 {
0160 exynos_ufs_auto_ctrl_hcc(ufs, true);
0161 }
0162
0163 static inline void exynos_ufs_disable_auto_ctrl_hcc(struct exynos_ufs *ufs)
0164 {
0165 exynos_ufs_auto_ctrl_hcc(ufs, false);
0166 }
0167
0168 static inline void exynos_ufs_disable_auto_ctrl_hcc_save(
0169 struct exynos_ufs *ufs, u32 *val)
0170 {
0171 *val = hci_readl(ufs, HCI_MISC);
0172 exynos_ufs_auto_ctrl_hcc(ufs, false);
0173 }
0174
0175 static inline void exynos_ufs_auto_ctrl_hcc_restore(
0176 struct exynos_ufs *ufs, u32 *val)
0177 {
0178 hci_writel(ufs, *val, HCI_MISC);
0179 }
0180
0181 static inline void exynos_ufs_gate_clks(struct exynos_ufs *ufs)
0182 {
0183 exynos_ufs_ctrl_clkstop(ufs, true);
0184 }
0185
0186 static inline void exynos_ufs_ungate_clks(struct exynos_ufs *ufs)
0187 {
0188 exynos_ufs_ctrl_clkstop(ufs, false);
0189 }
0190
0191 static int exynos7_ufs_drv_init(struct device *dev, struct exynos_ufs *ufs)
0192 {
0193 return 0;
0194 }
0195
0196 static int exynosauto_ufs_drv_init(struct device *dev, struct exynos_ufs *ufs)
0197 {
0198 struct exynos_ufs_uic_attr *attr = ufs->drv_data->uic_attr;
0199
0200
0201 if (ufs->sysreg) {
0202 return regmap_update_bits(ufs->sysreg,
0203 ufs->shareability_reg_offset,
0204 UFS_SHARABLE, UFS_SHARABLE);
0205 }
0206
0207 attr->tx_dif_p_nsec = 3200000;
0208
0209 return 0;
0210 }
0211
0212 static int exynosauto_ufs_post_hce_enable(struct exynos_ufs *ufs)
0213 {
0214 struct ufs_hba *hba = ufs->hba;
0215
0216
0217 ufshcd_rmwl(hba, MHCTRL_EN_VH_MASK, MHCTRL_EN_VH(1), MHCTRL);
0218
0219 hci_writel(ufs, ALLOW_TRANS_VH_DEFAULT, HCI_MH_ALLOWABLE_TRAN_OF_VH);
0220
0221 hci_writel(ufs, 0x1, HCI_MH_IID_IN_TASK_TAG);
0222
0223 return 0;
0224 }
0225
0226 static int exynosauto_ufs_pre_link(struct exynos_ufs *ufs)
0227 {
0228 struct ufs_hba *hba = ufs->hba;
0229 int i;
0230 u32 tx_line_reset_period, rx_line_reset_period;
0231
0232 rx_line_reset_period = (RX_LINE_RESET_TIME * ufs->mclk_rate) / NSEC_PER_MSEC;
0233 tx_line_reset_period = (TX_LINE_RESET_TIME * ufs->mclk_rate) / NSEC_PER_MSEC;
0234
0235 ufshcd_dme_set(hba, UIC_ARG_MIB(0x200), 0x40);
0236 for_each_ufs_rx_lane(ufs, i) {
0237 ufshcd_dme_set(hba, UIC_ARG_MIB_SEL(VND_RX_CLK_PRD, i),
0238 DIV_ROUND_UP(NSEC_PER_SEC, ufs->mclk_rate));
0239 ufshcd_dme_set(hba, UIC_ARG_MIB_SEL(VND_RX_CLK_PRD_EN, i), 0x0);
0240
0241 ufshcd_dme_set(hba, UIC_ARG_MIB_SEL(VND_RX_LINERESET_VALUE2, i),
0242 (rx_line_reset_period >> 16) & 0xFF);
0243 ufshcd_dme_set(hba, UIC_ARG_MIB_SEL(VND_RX_LINERESET_VALUE1, i),
0244 (rx_line_reset_period >> 8) & 0xFF);
0245 ufshcd_dme_set(hba, UIC_ARG_MIB_SEL(VND_RX_LINERESET_VALUE0, i),
0246 (rx_line_reset_period) & 0xFF);
0247
0248 ufshcd_dme_set(hba, UIC_ARG_MIB_SEL(0x2f, i), 0x79);
0249 ufshcd_dme_set(hba, UIC_ARG_MIB_SEL(0x84, i), 0x1);
0250 ufshcd_dme_set(hba, UIC_ARG_MIB_SEL(0x25, i), 0xf6);
0251 }
0252
0253 for_each_ufs_tx_lane(ufs, i) {
0254 ufshcd_dme_set(hba, UIC_ARG_MIB_SEL(VND_TX_CLK_PRD, i),
0255 DIV_ROUND_UP(NSEC_PER_SEC, ufs->mclk_rate));
0256
0257 ufshcd_dme_set(hba, UIC_ARG_MIB_SEL(VND_TX_CLK_PRD_EN, i),
0258 0x02);
0259
0260 ufshcd_dme_set(hba, UIC_ARG_MIB_SEL(VND_TX_LINERESET_PVALUE2, i),
0261 (tx_line_reset_period >> 16) & 0xFF);
0262 ufshcd_dme_set(hba, UIC_ARG_MIB_SEL(VND_TX_LINERESET_PVALUE1, i),
0263 (tx_line_reset_period >> 8) & 0xFF);
0264 ufshcd_dme_set(hba, UIC_ARG_MIB_SEL(VND_TX_LINERESET_PVALUE0, i),
0265 (tx_line_reset_period) & 0xFF);
0266
0267
0268 ufshcd_dme_set(hba, UIC_ARG_MIB_SEL(0x04, i), 0x1);
0269 }
0270
0271 ufshcd_dme_set(hba, UIC_ARG_MIB(0x200), 0x0);
0272
0273 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_LOCAL_TX_LCC_ENABLE), 0x0);
0274
0275 ufshcd_dme_set(hba, UIC_ARG_MIB(0xa011), 0x8000);
0276
0277 return 0;
0278 }
0279
0280 static int exynosauto_ufs_pre_pwr_change(struct exynos_ufs *ufs,
0281 struct ufs_pa_layer_attr *pwr)
0282 {
0283 struct ufs_hba *hba = ufs->hba;
0284
0285
0286 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_PWRMODEUSERDATA0), 12000);
0287 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_PWRMODEUSERDATA1), 32000);
0288 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_PWRMODEUSERDATA2), 16000);
0289
0290 return 0;
0291 }
0292
0293 static int exynosauto_ufs_post_pwr_change(struct exynos_ufs *ufs,
0294 struct ufs_pa_layer_attr *pwr)
0295 {
0296 struct ufs_hba *hba = ufs->hba;
0297 u32 enabled_vh;
0298
0299 enabled_vh = ufshcd_readl(hba, MHCTRL) & MHCTRL_EN_VH_MASK;
0300
0301
0302 ufshcd_writel(hba, MH_MSG(enabled_vh, MH_MSG_PH_READY), PH2VH_MBOX);
0303
0304 return 0;
0305 }
0306
0307 static int exynos7_ufs_pre_link(struct exynos_ufs *ufs)
0308 {
0309 struct ufs_hba *hba = ufs->hba;
0310 u32 val = ufs->drv_data->uic_attr->pa_dbg_option_suite;
0311 int i;
0312
0313 exynos_ufs_enable_ov_tm(hba);
0314 for_each_ufs_tx_lane(ufs, i)
0315 ufshcd_dme_set(hba, UIC_ARG_MIB_SEL(0x297, i), 0x17);
0316 for_each_ufs_rx_lane(ufs, i) {
0317 ufshcd_dme_set(hba, UIC_ARG_MIB_SEL(0x362, i), 0xff);
0318 ufshcd_dme_set(hba, UIC_ARG_MIB_SEL(0x363, i), 0x00);
0319 }
0320 exynos_ufs_disable_ov_tm(hba);
0321
0322 for_each_ufs_tx_lane(ufs, i)
0323 ufshcd_dme_set(hba,
0324 UIC_ARG_MIB_SEL(TX_HIBERN8_CONTROL, i), 0x0);
0325 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_DBG_TXPHY_CFGUPDT), 0x1);
0326 udelay(1);
0327 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_DBG_OPTION_SUITE), val | (1 << 12));
0328 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_DBG_SKIP_RESET_PHY), 0x1);
0329 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_DBG_SKIP_LINE_RESET), 0x1);
0330 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_DBG_LINE_RESET_REQ), 0x1);
0331 udelay(1600);
0332 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_DBG_OPTION_SUITE), val);
0333
0334 return 0;
0335 }
0336
0337 static int exynos7_ufs_post_link(struct exynos_ufs *ufs)
0338 {
0339 struct ufs_hba *hba = ufs->hba;
0340 int i;
0341
0342 exynos_ufs_enable_ov_tm(hba);
0343 for_each_ufs_tx_lane(ufs, i) {
0344 ufshcd_dme_set(hba, UIC_ARG_MIB_SEL(0x28b, i), 0x83);
0345 ufshcd_dme_set(hba, UIC_ARG_MIB_SEL(0x29a, i), 0x07);
0346 ufshcd_dme_set(hba, UIC_ARG_MIB_SEL(0x277, i),
0347 TX_LINERESET_N(exynos_ufs_calc_time_cntr(ufs, 200000)));
0348 }
0349 exynos_ufs_disable_ov_tm(hba);
0350
0351 exynos_ufs_enable_dbg_mode(hba);
0352 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_SAVECONFIGTIME), 0xbb8);
0353 exynos_ufs_disable_dbg_mode(hba);
0354
0355 return 0;
0356 }
0357
0358 static int exynos7_ufs_pre_pwr_change(struct exynos_ufs *ufs,
0359 struct ufs_pa_layer_attr *pwr)
0360 {
0361 unipro_writel(ufs, 0x22, UNIPRO_DBG_FORCE_DME_CTRL_STATE);
0362
0363 return 0;
0364 }
0365
0366 static int exynos7_ufs_post_pwr_change(struct exynos_ufs *ufs,
0367 struct ufs_pa_layer_attr *pwr)
0368 {
0369 struct ufs_hba *hba = ufs->hba;
0370 int lanes = max_t(u32, pwr->lane_rx, pwr->lane_tx);
0371
0372 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_DBG_RXPHY_CFGUPDT), 0x1);
0373
0374 if (lanes == 1) {
0375 exynos_ufs_enable_dbg_mode(hba);
0376 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_CONNECTEDTXDATALANES), 0x1);
0377 exynos_ufs_disable_dbg_mode(hba);
0378 }
0379
0380 return 0;
0381 }
0382
0383
0384
0385
0386
0387
0388
0389 static void exynos_ufs_auto_ctrl_hcc(struct exynos_ufs *ufs, bool en)
0390 {
0391 u32 misc = hci_readl(ufs, HCI_MISC);
0392
0393 if (en)
0394 hci_writel(ufs, misc | HCI_CORECLK_CTRL_EN, HCI_MISC);
0395 else
0396 hci_writel(ufs, misc & ~HCI_CORECLK_CTRL_EN, HCI_MISC);
0397 }
0398
0399 static void exynos_ufs_ctrl_clkstop(struct exynos_ufs *ufs, bool en)
0400 {
0401 u32 ctrl = hci_readl(ufs, HCI_CLKSTOP_CTRL);
0402 u32 misc = hci_readl(ufs, HCI_MISC);
0403
0404 if (en) {
0405 hci_writel(ufs, misc | CLK_CTRL_EN_MASK, HCI_MISC);
0406 hci_writel(ufs, ctrl | CLK_STOP_MASK, HCI_CLKSTOP_CTRL);
0407 } else {
0408 hci_writel(ufs, ctrl & ~CLK_STOP_MASK, HCI_CLKSTOP_CTRL);
0409 hci_writel(ufs, misc & ~CLK_CTRL_EN_MASK, HCI_MISC);
0410 }
0411 }
0412
0413 static int exynos_ufs_get_clk_info(struct exynos_ufs *ufs)
0414 {
0415 struct ufs_hba *hba = ufs->hba;
0416 struct list_head *head = &hba->clk_list_head;
0417 struct ufs_clk_info *clki;
0418 unsigned long pclk_rate;
0419 u32 f_min, f_max;
0420 u8 div = 0;
0421 int ret = 0;
0422
0423 if (list_empty(head))
0424 goto out;
0425
0426 list_for_each_entry(clki, head, list) {
0427 if (!IS_ERR(clki->clk)) {
0428 if (!strcmp(clki->name, "core_clk"))
0429 ufs->clk_hci_core = clki->clk;
0430 else if (!strcmp(clki->name, "sclk_unipro_main"))
0431 ufs->clk_unipro_main = clki->clk;
0432 }
0433 }
0434
0435 if (!ufs->clk_hci_core || !ufs->clk_unipro_main) {
0436 dev_err(hba->dev, "failed to get clk info\n");
0437 ret = -EINVAL;
0438 goto out;
0439 }
0440
0441 ufs->mclk_rate = clk_get_rate(ufs->clk_unipro_main);
0442 pclk_rate = clk_get_rate(ufs->clk_hci_core);
0443 f_min = ufs->pclk_avail_min;
0444 f_max = ufs->pclk_avail_max;
0445
0446 if (ufs->opts & EXYNOS_UFS_OPT_HAS_APB_CLK_CTRL) {
0447 do {
0448 pclk_rate /= (div + 1);
0449
0450 if (pclk_rate <= f_max)
0451 break;
0452 div++;
0453 } while (pclk_rate >= f_min);
0454 }
0455
0456 if (unlikely(pclk_rate < f_min || pclk_rate > f_max)) {
0457 dev_err(hba->dev, "not available pclk range %lu\n", pclk_rate);
0458 ret = -EINVAL;
0459 goto out;
0460 }
0461
0462 ufs->pclk_rate = pclk_rate;
0463 ufs->pclk_div = div;
0464
0465 out:
0466 return ret;
0467 }
0468
0469 static void exynos_ufs_set_unipro_pclk_div(struct exynos_ufs *ufs)
0470 {
0471 if (ufs->opts & EXYNOS_UFS_OPT_HAS_APB_CLK_CTRL) {
0472 u32 val;
0473
0474 val = hci_readl(ufs, HCI_UNIPRO_APB_CLK_CTRL);
0475 hci_writel(ufs, UNIPRO_APB_CLK(val, ufs->pclk_div),
0476 HCI_UNIPRO_APB_CLK_CTRL);
0477 }
0478 }
0479
0480 static void exynos_ufs_set_pwm_clk_div(struct exynos_ufs *ufs)
0481 {
0482 struct ufs_hba *hba = ufs->hba;
0483 struct exynos_ufs_uic_attr *attr = ufs->drv_data->uic_attr;
0484
0485 ufshcd_dme_set(hba,
0486 UIC_ARG_MIB(CMN_PWM_CLK_CTRL), attr->cmn_pwm_clk_ctrl);
0487 }
0488
0489 static void exynos_ufs_calc_pwm_clk_div(struct exynos_ufs *ufs)
0490 {
0491 struct ufs_hba *hba = ufs->hba;
0492 struct exynos_ufs_uic_attr *attr = ufs->drv_data->uic_attr;
0493 const unsigned int div = 30, mult = 20;
0494 const unsigned long pwm_min = 3 * 1000 * 1000;
0495 const unsigned long pwm_max = 9 * 1000 * 1000;
0496 const int divs[] = {32, 16, 8, 4};
0497 unsigned long clk = 0, _clk, clk_period;
0498 int i = 0, clk_idx = -1;
0499
0500 clk_period = UNIPRO_PCLK_PERIOD(ufs);
0501 for (i = 0; i < ARRAY_SIZE(divs); i++) {
0502 _clk = NSEC_PER_SEC * mult / (clk_period * divs[i] * div);
0503 if (_clk >= pwm_min && _clk <= pwm_max) {
0504 if (_clk > clk) {
0505 clk_idx = i;
0506 clk = _clk;
0507 }
0508 }
0509 }
0510
0511 if (clk_idx == -1) {
0512 ufshcd_dme_get(hba, UIC_ARG_MIB(CMN_PWM_CLK_CTRL), &clk_idx);
0513 dev_err(hba->dev,
0514 "failed to decide pwm clock divider, will not change\n");
0515 }
0516
0517 attr->cmn_pwm_clk_ctrl = clk_idx & PWM_CLK_CTRL_MASK;
0518 }
0519
0520 long exynos_ufs_calc_time_cntr(struct exynos_ufs *ufs, long period)
0521 {
0522 const int precise = 10;
0523 long pclk_rate = ufs->pclk_rate;
0524 long clk_period, fraction;
0525
0526 clk_period = UNIPRO_PCLK_PERIOD(ufs);
0527 fraction = ((NSEC_PER_SEC % pclk_rate) * precise) / pclk_rate;
0528
0529 return (period * precise) / ((clk_period * precise) + fraction);
0530 }
0531
0532 static void exynos_ufs_specify_phy_time_attr(struct exynos_ufs *ufs)
0533 {
0534 struct exynos_ufs_uic_attr *attr = ufs->drv_data->uic_attr;
0535 struct ufs_phy_time_cfg *t_cfg = &ufs->t_cfg;
0536
0537 t_cfg->tx_linereset_p =
0538 exynos_ufs_calc_time_cntr(ufs, attr->tx_dif_p_nsec);
0539 t_cfg->tx_linereset_n =
0540 exynos_ufs_calc_time_cntr(ufs, attr->tx_dif_n_nsec);
0541 t_cfg->tx_high_z_cnt =
0542 exynos_ufs_calc_time_cntr(ufs, attr->tx_high_z_cnt_nsec);
0543 t_cfg->tx_base_n_val =
0544 exynos_ufs_calc_time_cntr(ufs, attr->tx_base_unit_nsec);
0545 t_cfg->tx_gran_n_val =
0546 exynos_ufs_calc_time_cntr(ufs, attr->tx_gran_unit_nsec);
0547 t_cfg->tx_sleep_cnt =
0548 exynos_ufs_calc_time_cntr(ufs, attr->tx_sleep_cnt);
0549
0550 t_cfg->rx_linereset =
0551 exynos_ufs_calc_time_cntr(ufs, attr->rx_dif_p_nsec);
0552 t_cfg->rx_hibern8_wait =
0553 exynos_ufs_calc_time_cntr(ufs, attr->rx_hibern8_wait_nsec);
0554 t_cfg->rx_base_n_val =
0555 exynos_ufs_calc_time_cntr(ufs, attr->rx_base_unit_nsec);
0556 t_cfg->rx_gran_n_val =
0557 exynos_ufs_calc_time_cntr(ufs, attr->rx_gran_unit_nsec);
0558 t_cfg->rx_sleep_cnt =
0559 exynos_ufs_calc_time_cntr(ufs, attr->rx_sleep_cnt);
0560 t_cfg->rx_stall_cnt =
0561 exynos_ufs_calc_time_cntr(ufs, attr->rx_stall_cnt);
0562 }
0563
0564 static void exynos_ufs_config_phy_time_attr(struct exynos_ufs *ufs)
0565 {
0566 struct ufs_hba *hba = ufs->hba;
0567 struct ufs_phy_time_cfg *t_cfg = &ufs->t_cfg;
0568 int i;
0569
0570 exynos_ufs_set_pwm_clk_div(ufs);
0571
0572 exynos_ufs_enable_ov_tm(hba);
0573
0574 for_each_ufs_rx_lane(ufs, i) {
0575 ufshcd_dme_set(hba, UIC_ARG_MIB_SEL(RX_FILLER_ENABLE, i),
0576 ufs->drv_data->uic_attr->rx_filler_enable);
0577 ufshcd_dme_set(hba, UIC_ARG_MIB_SEL(RX_LINERESET_VAL, i),
0578 RX_LINERESET(t_cfg->rx_linereset));
0579 ufshcd_dme_set(hba, UIC_ARG_MIB_SEL(RX_BASE_NVAL_07_00, i),
0580 RX_BASE_NVAL_L(t_cfg->rx_base_n_val));
0581 ufshcd_dme_set(hba, UIC_ARG_MIB_SEL(RX_BASE_NVAL_15_08, i),
0582 RX_BASE_NVAL_H(t_cfg->rx_base_n_val));
0583 ufshcd_dme_set(hba, UIC_ARG_MIB_SEL(RX_GRAN_NVAL_07_00, i),
0584 RX_GRAN_NVAL_L(t_cfg->rx_gran_n_val));
0585 ufshcd_dme_set(hba, UIC_ARG_MIB_SEL(RX_GRAN_NVAL_10_08, i),
0586 RX_GRAN_NVAL_H(t_cfg->rx_gran_n_val));
0587 ufshcd_dme_set(hba, UIC_ARG_MIB_SEL(RX_OV_SLEEP_CNT_TIMER, i),
0588 RX_OV_SLEEP_CNT(t_cfg->rx_sleep_cnt));
0589 ufshcd_dme_set(hba, UIC_ARG_MIB_SEL(RX_OV_STALL_CNT_TIMER, i),
0590 RX_OV_STALL_CNT(t_cfg->rx_stall_cnt));
0591 }
0592
0593 for_each_ufs_tx_lane(ufs, i) {
0594 ufshcd_dme_set(hba, UIC_ARG_MIB_SEL(TX_LINERESET_P_VAL, i),
0595 TX_LINERESET_P(t_cfg->tx_linereset_p));
0596 ufshcd_dme_set(hba, UIC_ARG_MIB_SEL(TX_HIGH_Z_CNT_07_00, i),
0597 TX_HIGH_Z_CNT_L(t_cfg->tx_high_z_cnt));
0598 ufshcd_dme_set(hba, UIC_ARG_MIB_SEL(TX_HIGH_Z_CNT_11_08, i),
0599 TX_HIGH_Z_CNT_H(t_cfg->tx_high_z_cnt));
0600 ufshcd_dme_set(hba, UIC_ARG_MIB_SEL(TX_BASE_NVAL_07_00, i),
0601 TX_BASE_NVAL_L(t_cfg->tx_base_n_val));
0602 ufshcd_dme_set(hba, UIC_ARG_MIB_SEL(TX_BASE_NVAL_15_08, i),
0603 TX_BASE_NVAL_H(t_cfg->tx_base_n_val));
0604 ufshcd_dme_set(hba, UIC_ARG_MIB_SEL(TX_GRAN_NVAL_07_00, i),
0605 TX_GRAN_NVAL_L(t_cfg->tx_gran_n_val));
0606 ufshcd_dme_set(hba, UIC_ARG_MIB_SEL(TX_GRAN_NVAL_10_08, i),
0607 TX_GRAN_NVAL_H(t_cfg->tx_gran_n_val));
0608 ufshcd_dme_set(hba, UIC_ARG_MIB_SEL(TX_OV_SLEEP_CNT_TIMER, i),
0609 TX_OV_H8_ENTER_EN |
0610 TX_OV_SLEEP_CNT(t_cfg->tx_sleep_cnt));
0611 ufshcd_dme_set(hba, UIC_ARG_MIB_SEL(TX_MIN_ACTIVATETIME, i),
0612 ufs->drv_data->uic_attr->tx_min_activatetime);
0613 }
0614
0615 exynos_ufs_disable_ov_tm(hba);
0616 }
0617
0618 static void exynos_ufs_config_phy_cap_attr(struct exynos_ufs *ufs)
0619 {
0620 struct ufs_hba *hba = ufs->hba;
0621 struct exynos_ufs_uic_attr *attr = ufs->drv_data->uic_attr;
0622 int i;
0623
0624 exynos_ufs_enable_ov_tm(hba);
0625
0626 for_each_ufs_rx_lane(ufs, i) {
0627 ufshcd_dme_set(hba,
0628 UIC_ARG_MIB_SEL(RX_HS_G1_SYNC_LENGTH_CAP, i),
0629 attr->rx_hs_g1_sync_len_cap);
0630 ufshcd_dme_set(hba,
0631 UIC_ARG_MIB_SEL(RX_HS_G2_SYNC_LENGTH_CAP, i),
0632 attr->rx_hs_g2_sync_len_cap);
0633 ufshcd_dme_set(hba,
0634 UIC_ARG_MIB_SEL(RX_HS_G3_SYNC_LENGTH_CAP, i),
0635 attr->rx_hs_g3_sync_len_cap);
0636 ufshcd_dme_set(hba,
0637 UIC_ARG_MIB_SEL(RX_HS_G1_PREP_LENGTH_CAP, i),
0638 attr->rx_hs_g1_prep_sync_len_cap);
0639 ufshcd_dme_set(hba,
0640 UIC_ARG_MIB_SEL(RX_HS_G2_PREP_LENGTH_CAP, i),
0641 attr->rx_hs_g2_prep_sync_len_cap);
0642 ufshcd_dme_set(hba,
0643 UIC_ARG_MIB_SEL(RX_HS_G3_PREP_LENGTH_CAP, i),
0644 attr->rx_hs_g3_prep_sync_len_cap);
0645 }
0646
0647 if (attr->rx_adv_fine_gran_sup_en == 0) {
0648 for_each_ufs_rx_lane(ufs, i) {
0649 ufshcd_dme_set(hba,
0650 UIC_ARG_MIB_SEL(RX_ADV_GRANULARITY_CAP, i), 0);
0651
0652 if (attr->rx_min_actv_time_cap)
0653 ufshcd_dme_set(hba,
0654 UIC_ARG_MIB_SEL(
0655 RX_MIN_ACTIVATETIME_CAPABILITY, i),
0656 attr->rx_min_actv_time_cap);
0657
0658 if (attr->rx_hibern8_time_cap)
0659 ufshcd_dme_set(hba,
0660 UIC_ARG_MIB_SEL(RX_HIBERN8TIME_CAP, i),
0661 attr->rx_hibern8_time_cap);
0662 }
0663 } else if (attr->rx_adv_fine_gran_sup_en == 1) {
0664 for_each_ufs_rx_lane(ufs, i) {
0665 if (attr->rx_adv_fine_gran_step)
0666 ufshcd_dme_set(hba,
0667 UIC_ARG_MIB_SEL(RX_ADV_GRANULARITY_CAP,
0668 i), RX_ADV_FINE_GRAN_STEP(
0669 attr->rx_adv_fine_gran_step));
0670
0671 if (attr->rx_adv_min_actv_time_cap)
0672 ufshcd_dme_set(hba,
0673 UIC_ARG_MIB_SEL(
0674 RX_ADV_MIN_ACTIVATETIME_CAP, i),
0675 attr->rx_adv_min_actv_time_cap);
0676
0677 if (attr->rx_adv_hibern8_time_cap)
0678 ufshcd_dme_set(hba,
0679 UIC_ARG_MIB_SEL(RX_ADV_HIBERN8TIME_CAP,
0680 i),
0681 attr->rx_adv_hibern8_time_cap);
0682 }
0683 }
0684
0685 exynos_ufs_disable_ov_tm(hba);
0686 }
0687
0688 static void exynos_ufs_establish_connt(struct exynos_ufs *ufs)
0689 {
0690 struct ufs_hba *hba = ufs->hba;
0691 enum {
0692 DEV_ID = 0x00,
0693 PEER_DEV_ID = 0x01,
0694 PEER_CPORT_ID = 0x00,
0695 TRAFFIC_CLASS = 0x00,
0696 };
0697
0698
0699 ufshcd_dme_set(hba, UIC_ARG_MIB(T_CONNECTIONSTATE), CPORT_IDLE);
0700
0701
0702 ufshcd_dme_set(hba, UIC_ARG_MIB(N_DEVICEID), DEV_ID);
0703 ufshcd_dme_set(hba, UIC_ARG_MIB(N_DEVICEID_VALID), true);
0704 ufshcd_dme_set(hba, UIC_ARG_MIB(T_PEERDEVICEID), PEER_DEV_ID);
0705 ufshcd_dme_set(hba, UIC_ARG_MIB(T_PEERCPORTID), PEER_CPORT_ID);
0706 ufshcd_dme_set(hba, UIC_ARG_MIB(T_CPORTFLAGS), CPORT_DEF_FLAGS);
0707 ufshcd_dme_set(hba, UIC_ARG_MIB(T_TRAFFICCLASS), TRAFFIC_CLASS);
0708 ufshcd_dme_set(hba, UIC_ARG_MIB(T_CONNECTIONSTATE), CPORT_CONNECTED);
0709 }
0710
0711 static void exynos_ufs_config_smu(struct exynos_ufs *ufs)
0712 {
0713 u32 reg, val;
0714
0715 exynos_ufs_disable_auto_ctrl_hcc_save(ufs, &val);
0716
0717
0718 reg = ufsp_readl(ufs, UFSPRSECURITY);
0719 ufsp_writel(ufs, reg | NSSMU, UFSPRSECURITY);
0720 ufsp_writel(ufs, 0x0, UFSPSBEGIN0);
0721 ufsp_writel(ufs, 0xffffffff, UFSPSEND0);
0722 ufsp_writel(ufs, 0xff, UFSPSLUN0);
0723 ufsp_writel(ufs, 0xf1, UFSPSCTRL0);
0724
0725 exynos_ufs_auto_ctrl_hcc_restore(ufs, &val);
0726 }
0727
0728 static void exynos_ufs_config_sync_pattern_mask(struct exynos_ufs *ufs,
0729 struct ufs_pa_layer_attr *pwr)
0730 {
0731 struct ufs_hba *hba = ufs->hba;
0732 u8 g = max_t(u32, pwr->gear_rx, pwr->gear_tx);
0733 u32 mask, sync_len;
0734 enum {
0735 SYNC_LEN_G1 = 80 * 1000,
0736 SYNC_LEN_G2 = 40 * 1000,
0737 SYNC_LEN_G3 = 20 * 1000,
0738 };
0739 int i;
0740
0741 if (g == 1)
0742 sync_len = SYNC_LEN_G1;
0743 else if (g == 2)
0744 sync_len = SYNC_LEN_G2;
0745 else if (g == 3)
0746 sync_len = SYNC_LEN_G3;
0747 else
0748 return;
0749
0750 mask = exynos_ufs_calc_time_cntr(ufs, sync_len);
0751 mask = (mask >> 8) & 0xff;
0752
0753 exynos_ufs_enable_ov_tm(hba);
0754
0755 for_each_ufs_rx_lane(ufs, i)
0756 ufshcd_dme_set(hba,
0757 UIC_ARG_MIB_SEL(RX_SYNC_MASK_LENGTH, i), mask);
0758
0759 exynos_ufs_disable_ov_tm(hba);
0760 }
0761
0762 static int exynos_ufs_pre_pwr_mode(struct ufs_hba *hba,
0763 struct ufs_pa_layer_attr *dev_max_params,
0764 struct ufs_pa_layer_attr *dev_req_params)
0765 {
0766 struct exynos_ufs *ufs = ufshcd_get_variant(hba);
0767 struct phy *generic_phy = ufs->phy;
0768 struct ufs_dev_params ufs_exynos_cap;
0769 int ret;
0770
0771 if (!dev_req_params) {
0772 pr_err("%s: incoming dev_req_params is NULL\n", __func__);
0773 ret = -EINVAL;
0774 goto out;
0775 }
0776
0777 ufshcd_init_pwr_dev_param(&ufs_exynos_cap);
0778
0779 ret = ufshcd_get_pwr_dev_param(&ufs_exynos_cap,
0780 dev_max_params, dev_req_params);
0781 if (ret) {
0782 pr_err("%s: failed to determine capabilities\n", __func__);
0783 goto out;
0784 }
0785
0786 if (ufs->drv_data->pre_pwr_change)
0787 ufs->drv_data->pre_pwr_change(ufs, dev_req_params);
0788
0789 if (ufshcd_is_hs_mode(dev_req_params)) {
0790 exynos_ufs_config_sync_pattern_mask(ufs, dev_req_params);
0791
0792 switch (dev_req_params->hs_rate) {
0793 case PA_HS_MODE_A:
0794 case PA_HS_MODE_B:
0795 phy_calibrate(generic_phy);
0796 break;
0797 }
0798 }
0799
0800
0801 ufshcd_dme_set(hba, UIC_ARG_MIB(DL_FC0PROTTIMEOUTVAL), 8064);
0802 ufshcd_dme_set(hba, UIC_ARG_MIB(DL_TC0REPLAYTIMEOUTVAL), 28224);
0803 ufshcd_dme_set(hba, UIC_ARG_MIB(DL_AFC0REQTIMEOUTVAL), 20160);
0804
0805 return 0;
0806 out:
0807 return ret;
0808 }
0809
0810 #define PWR_MODE_STR_LEN 64
0811 static int exynos_ufs_post_pwr_mode(struct ufs_hba *hba,
0812 struct ufs_pa_layer_attr *pwr_req)
0813 {
0814 struct exynos_ufs *ufs = ufshcd_get_variant(hba);
0815 struct phy *generic_phy = ufs->phy;
0816 int gear = max_t(u32, pwr_req->gear_rx, pwr_req->gear_tx);
0817 int lanes = max_t(u32, pwr_req->lane_rx, pwr_req->lane_tx);
0818 char pwr_str[PWR_MODE_STR_LEN] = "";
0819
0820
0821 if (!gear)
0822 gear = 1;
0823
0824 if (!lanes)
0825 lanes = 1;
0826
0827 if (ufs->drv_data->post_pwr_change)
0828 ufs->drv_data->post_pwr_change(ufs, pwr_req);
0829
0830 if ((ufshcd_is_hs_mode(pwr_req))) {
0831 switch (pwr_req->hs_rate) {
0832 case PA_HS_MODE_A:
0833 case PA_HS_MODE_B:
0834 phy_calibrate(generic_phy);
0835 break;
0836 }
0837
0838 snprintf(pwr_str, PWR_MODE_STR_LEN, "%s series_%s G_%d L_%d",
0839 "FAST", pwr_req->hs_rate == PA_HS_MODE_A ? "A" : "B",
0840 gear, lanes);
0841 } else {
0842 snprintf(pwr_str, PWR_MODE_STR_LEN, "%s G_%d L_%d",
0843 "SLOW", gear, lanes);
0844 }
0845
0846 dev_info(hba->dev, "Power mode changed to : %s\n", pwr_str);
0847
0848 return 0;
0849 }
0850
0851 static void exynos_ufs_specify_nexus_t_xfer_req(struct ufs_hba *hba,
0852 int tag, bool is_scsi_cmd)
0853 {
0854 struct exynos_ufs *ufs = ufshcd_get_variant(hba);
0855 u32 type;
0856
0857 type = hci_readl(ufs, HCI_UTRL_NEXUS_TYPE);
0858
0859 if (is_scsi_cmd)
0860 hci_writel(ufs, type | (1 << tag), HCI_UTRL_NEXUS_TYPE);
0861 else
0862 hci_writel(ufs, type & ~(1 << tag), HCI_UTRL_NEXUS_TYPE);
0863 }
0864
0865 static void exynos_ufs_specify_nexus_t_tm_req(struct ufs_hba *hba,
0866 int tag, u8 func)
0867 {
0868 struct exynos_ufs *ufs = ufshcd_get_variant(hba);
0869 u32 type;
0870
0871 type = hci_readl(ufs, HCI_UTMRL_NEXUS_TYPE);
0872
0873 switch (func) {
0874 case UFS_ABORT_TASK:
0875 case UFS_QUERY_TASK:
0876 hci_writel(ufs, type | (1 << tag), HCI_UTMRL_NEXUS_TYPE);
0877 break;
0878 case UFS_ABORT_TASK_SET:
0879 case UFS_CLEAR_TASK_SET:
0880 case UFS_LOGICAL_RESET:
0881 case UFS_QUERY_TASK_SET:
0882 hci_writel(ufs, type & ~(1 << tag), HCI_UTMRL_NEXUS_TYPE);
0883 break;
0884 }
0885 }
0886
0887 static int exynos_ufs_phy_init(struct exynos_ufs *ufs)
0888 {
0889 struct ufs_hba *hba = ufs->hba;
0890 struct phy *generic_phy = ufs->phy;
0891 int ret = 0;
0892
0893 if (ufs->avail_ln_rx == 0 || ufs->avail_ln_tx == 0) {
0894 ufshcd_dme_get(hba, UIC_ARG_MIB(PA_AVAILRXDATALANES),
0895 &ufs->avail_ln_rx);
0896 ufshcd_dme_get(hba, UIC_ARG_MIB(PA_AVAILTXDATALANES),
0897 &ufs->avail_ln_tx);
0898 WARN(ufs->avail_ln_rx != ufs->avail_ln_tx,
0899 "available data lane is not equal(rx:%d, tx:%d)\n",
0900 ufs->avail_ln_rx, ufs->avail_ln_tx);
0901 }
0902
0903 phy_set_bus_width(generic_phy, ufs->avail_ln_rx);
0904 ret = phy_init(generic_phy);
0905 if (ret) {
0906 dev_err(hba->dev, "%s: phy init failed, ret = %d\n",
0907 __func__, ret);
0908 return ret;
0909 }
0910
0911 ret = phy_power_on(generic_phy);
0912 if (ret)
0913 goto out_exit_phy;
0914
0915 return 0;
0916
0917 out_exit_phy:
0918 phy_exit(generic_phy);
0919
0920 return ret;
0921 }
0922
0923 static void exynos_ufs_config_unipro(struct exynos_ufs *ufs)
0924 {
0925 struct ufs_hba *hba = ufs->hba;
0926
0927 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_DBG_CLK_PERIOD),
0928 DIV_ROUND_UP(NSEC_PER_SEC, ufs->mclk_rate));
0929 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_TXTRAILINGCLOCKS),
0930 ufs->drv_data->uic_attr->tx_trailingclks);
0931 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_DBG_OPTION_SUITE),
0932 ufs->drv_data->uic_attr->pa_dbg_option_suite);
0933 }
0934
0935 static void exynos_ufs_config_intr(struct exynos_ufs *ufs, u32 errs, u8 index)
0936 {
0937 switch (index) {
0938 case UNIPRO_L1_5:
0939 hci_writel(ufs, DFES_ERR_EN | errs, HCI_ERR_EN_PA_LAYER);
0940 break;
0941 case UNIPRO_L2:
0942 hci_writel(ufs, DFES_ERR_EN | errs, HCI_ERR_EN_DL_LAYER);
0943 break;
0944 case UNIPRO_L3:
0945 hci_writel(ufs, DFES_ERR_EN | errs, HCI_ERR_EN_N_LAYER);
0946 break;
0947 case UNIPRO_L4:
0948 hci_writel(ufs, DFES_ERR_EN | errs, HCI_ERR_EN_T_LAYER);
0949 break;
0950 case UNIPRO_DME:
0951 hci_writel(ufs, DFES_ERR_EN | errs, HCI_ERR_EN_DME_LAYER);
0952 break;
0953 }
0954 }
0955
0956 static int exynos_ufs_setup_clocks(struct ufs_hba *hba, bool on,
0957 enum ufs_notify_change_status status)
0958 {
0959 struct exynos_ufs *ufs = ufshcd_get_variant(hba);
0960
0961 if (!ufs)
0962 return 0;
0963
0964 if (on && status == PRE_CHANGE) {
0965 if (ufs->opts & EXYNOS_UFS_OPT_BROKEN_AUTO_CLK_CTRL)
0966 exynos_ufs_disable_auto_ctrl_hcc(ufs);
0967 exynos_ufs_ungate_clks(ufs);
0968 } else if (!on && status == POST_CHANGE) {
0969 exynos_ufs_gate_clks(ufs);
0970 if (ufs->opts & EXYNOS_UFS_OPT_BROKEN_AUTO_CLK_CTRL)
0971 exynos_ufs_enable_auto_ctrl_hcc(ufs);
0972 }
0973
0974 return 0;
0975 }
0976
0977 static int exynos_ufs_pre_link(struct ufs_hba *hba)
0978 {
0979 struct exynos_ufs *ufs = ufshcd_get_variant(hba);
0980
0981
0982 exynos_ufs_config_intr(ufs, DFES_DEF_L2_ERRS, UNIPRO_L2);
0983 exynos_ufs_config_intr(ufs, DFES_DEF_L3_ERRS, UNIPRO_L3);
0984 exynos_ufs_config_intr(ufs, DFES_DEF_L4_ERRS, UNIPRO_L4);
0985 exynos_ufs_set_unipro_pclk_div(ufs);
0986
0987
0988 exynos_ufs_config_unipro(ufs);
0989
0990
0991 exynos_ufs_phy_init(ufs);
0992 if (!(ufs->opts & EXYNOS_UFS_OPT_SKIP_CONFIG_PHY_ATTR)) {
0993 exynos_ufs_config_phy_time_attr(ufs);
0994 exynos_ufs_config_phy_cap_attr(ufs);
0995 }
0996
0997 exynos_ufs_setup_clocks(hba, true, PRE_CHANGE);
0998
0999 if (ufs->drv_data->pre_link)
1000 ufs->drv_data->pre_link(ufs);
1001
1002 return 0;
1003 }
1004
1005 static void exynos_ufs_fit_aggr_timeout(struct exynos_ufs *ufs)
1006 {
1007 u32 val;
1008
1009 val = exynos_ufs_calc_time_cntr(ufs, IATOVAL_NSEC / CNTR_DIV_VAL);
1010 hci_writel(ufs, val & CNT_VAL_1US_MASK, HCI_1US_TO_CNT_VAL);
1011 }
1012
1013 static int exynos_ufs_post_link(struct ufs_hba *hba)
1014 {
1015 struct exynos_ufs *ufs = ufshcd_get_variant(hba);
1016 struct phy *generic_phy = ufs->phy;
1017 struct exynos_ufs_uic_attr *attr = ufs->drv_data->uic_attr;
1018
1019 exynos_ufs_establish_connt(ufs);
1020 exynos_ufs_fit_aggr_timeout(ufs);
1021
1022 hci_writel(ufs, 0xa, HCI_DATA_REORDER);
1023 hci_writel(ufs, PRDT_SET_SIZE(12), HCI_TXPRDT_ENTRY_SIZE);
1024 hci_writel(ufs, PRDT_SET_SIZE(12), HCI_RXPRDT_ENTRY_SIZE);
1025 hci_writel(ufs, (1 << hba->nutrs) - 1, HCI_UTRL_NEXUS_TYPE);
1026 hci_writel(ufs, (1 << hba->nutmrs) - 1, HCI_UTMRL_NEXUS_TYPE);
1027 hci_writel(ufs, 0xf, HCI_AXIDMA_RWDATA_BURST_LEN);
1028
1029 if (ufs->opts & EXYNOS_UFS_OPT_SKIP_CONNECTION_ESTAB)
1030 ufshcd_dme_set(hba,
1031 UIC_ARG_MIB(T_DBG_SKIP_INIT_HIBERN8_EXIT), true);
1032
1033 if (attr->pa_granularity) {
1034 exynos_ufs_enable_dbg_mode(hba);
1035 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_GRANULARITY),
1036 attr->pa_granularity);
1037 exynos_ufs_disable_dbg_mode(hba);
1038
1039 if (attr->pa_tactivate)
1040 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_TACTIVATE),
1041 attr->pa_tactivate);
1042 if (attr->pa_hibern8time &&
1043 !(ufs->opts & EXYNOS_UFS_OPT_USE_SW_HIBERN8_TIMER))
1044 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_HIBERN8TIME),
1045 attr->pa_hibern8time);
1046 }
1047
1048 if (ufs->opts & EXYNOS_UFS_OPT_USE_SW_HIBERN8_TIMER) {
1049 if (!attr->pa_granularity)
1050 ufshcd_dme_get(hba, UIC_ARG_MIB(PA_GRANULARITY),
1051 &attr->pa_granularity);
1052 if (!attr->pa_hibern8time)
1053 ufshcd_dme_get(hba, UIC_ARG_MIB(PA_HIBERN8TIME),
1054 &attr->pa_hibern8time);
1055
1056
1057
1058 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_HIBERN8TIME), 0);
1059
1060 if (attr->pa_granularity < 1 || attr->pa_granularity > 6) {
1061
1062 dev_warn(hba->dev,
1063 "%s: pa_granularity %d is invalid, assuming backwards compatibility\n",
1064 __func__,
1065 attr->pa_granularity);
1066 attr->pa_granularity = 6;
1067 }
1068 }
1069
1070 phy_calibrate(generic_phy);
1071
1072 if (ufs->drv_data->post_link)
1073 ufs->drv_data->post_link(ufs);
1074
1075 return 0;
1076 }
1077
1078 static int exynos_ufs_parse_dt(struct device *dev, struct exynos_ufs *ufs)
1079 {
1080 struct device_node *np = dev->of_node;
1081 struct exynos_ufs_uic_attr *attr;
1082 int ret = 0;
1083
1084 ufs->drv_data = device_get_match_data(dev);
1085
1086 if (ufs->drv_data && ufs->drv_data->uic_attr) {
1087 attr = ufs->drv_data->uic_attr;
1088 } else {
1089 dev_err(dev, "failed to get uic attributes\n");
1090 ret = -EINVAL;
1091 goto out;
1092 }
1093
1094 ufs->sysreg = syscon_regmap_lookup_by_phandle(np, "samsung,sysreg");
1095 if (IS_ERR(ufs->sysreg))
1096 ufs->sysreg = NULL;
1097 else {
1098 if (of_property_read_u32_index(np, "samsung,sysreg", 1,
1099 &ufs->shareability_reg_offset)) {
1100 dev_warn(dev, "can't get an offset from sysreg. Set to default value\n");
1101 ufs->shareability_reg_offset = UFS_SHAREABILITY_OFFSET;
1102 }
1103 }
1104
1105 ufs->pclk_avail_min = PCLK_AVAIL_MIN;
1106 ufs->pclk_avail_max = PCLK_AVAIL_MAX;
1107
1108 attr->rx_adv_fine_gran_sup_en = RX_ADV_FINE_GRAN_SUP_EN;
1109 attr->rx_adv_fine_gran_step = RX_ADV_FINE_GRAN_STEP_VAL;
1110 attr->rx_adv_min_actv_time_cap = RX_ADV_MIN_ACTV_TIME_CAP;
1111 attr->pa_granularity = PA_GRANULARITY_VAL;
1112 attr->pa_tactivate = PA_TACTIVATE_VAL;
1113 attr->pa_hibern8time = PA_HIBERN8TIME_VAL;
1114
1115 out:
1116 return ret;
1117 }
1118
1119 static inline void exynos_ufs_priv_init(struct ufs_hba *hba,
1120 struct exynos_ufs *ufs)
1121 {
1122 ufs->hba = hba;
1123 ufs->opts = ufs->drv_data->opts;
1124 ufs->rx_sel_idx = PA_MAXDATALANES;
1125 if (ufs->opts & EXYNOS_UFS_OPT_BROKEN_RX_SEL_IDX)
1126 ufs->rx_sel_idx = 0;
1127 hba->priv = (void *)ufs;
1128 hba->quirks = ufs->drv_data->quirks;
1129 }
1130
1131 static int exynos_ufs_init(struct ufs_hba *hba)
1132 {
1133 struct device *dev = hba->dev;
1134 struct platform_device *pdev = to_platform_device(dev);
1135 struct exynos_ufs *ufs;
1136 int ret;
1137
1138 ufs = devm_kzalloc(dev, sizeof(*ufs), GFP_KERNEL);
1139 if (!ufs)
1140 return -ENOMEM;
1141
1142
1143 ufs->reg_hci = devm_platform_ioremap_resource_byname(pdev, "vs_hci");
1144 if (IS_ERR(ufs->reg_hci)) {
1145 dev_err(dev, "cannot ioremap for hci vendor register\n");
1146 return PTR_ERR(ufs->reg_hci);
1147 }
1148
1149
1150 ufs->reg_unipro = devm_platform_ioremap_resource_byname(pdev, "unipro");
1151 if (IS_ERR(ufs->reg_unipro)) {
1152 dev_err(dev, "cannot ioremap for unipro register\n");
1153 return PTR_ERR(ufs->reg_unipro);
1154 }
1155
1156
1157 ufs->reg_ufsp = devm_platform_ioremap_resource_byname(pdev, "ufsp");
1158 if (IS_ERR(ufs->reg_ufsp)) {
1159 dev_err(dev, "cannot ioremap for ufs protector register\n");
1160 return PTR_ERR(ufs->reg_ufsp);
1161 }
1162
1163 ret = exynos_ufs_parse_dt(dev, ufs);
1164 if (ret) {
1165 dev_err(dev, "failed to get dt info.\n");
1166 goto out;
1167 }
1168
1169 ufs->phy = devm_phy_get(dev, "ufs-phy");
1170 if (IS_ERR(ufs->phy)) {
1171 ret = PTR_ERR(ufs->phy);
1172 dev_err(dev, "failed to get ufs-phy\n");
1173 goto out;
1174 }
1175
1176 exynos_ufs_priv_init(hba, ufs);
1177
1178 if (ufs->drv_data->drv_init) {
1179 ret = ufs->drv_data->drv_init(dev, ufs);
1180 if (ret) {
1181 dev_err(dev, "failed to init drv-data\n");
1182 goto out;
1183 }
1184 }
1185
1186 ret = exynos_ufs_get_clk_info(ufs);
1187 if (ret)
1188 goto out;
1189 exynos_ufs_specify_phy_time_attr(ufs);
1190 exynos_ufs_config_smu(ufs);
1191 return 0;
1192
1193 out:
1194 hba->priv = NULL;
1195 return ret;
1196 }
1197
1198 static int exynos_ufs_host_reset(struct ufs_hba *hba)
1199 {
1200 struct exynos_ufs *ufs = ufshcd_get_variant(hba);
1201 unsigned long timeout = jiffies + msecs_to_jiffies(1);
1202 u32 val;
1203 int ret = 0;
1204
1205 exynos_ufs_disable_auto_ctrl_hcc_save(ufs, &val);
1206
1207 hci_writel(ufs, UFS_SW_RST_MASK, HCI_SW_RST);
1208
1209 do {
1210 if (!(hci_readl(ufs, HCI_SW_RST) & UFS_SW_RST_MASK))
1211 goto out;
1212 } while (time_before(jiffies, timeout));
1213
1214 dev_err(hba->dev, "timeout host sw-reset\n");
1215 ret = -ETIMEDOUT;
1216
1217 out:
1218 exynos_ufs_auto_ctrl_hcc_restore(ufs, &val);
1219 return ret;
1220 }
1221
1222 static void exynos_ufs_dev_hw_reset(struct ufs_hba *hba)
1223 {
1224 struct exynos_ufs *ufs = ufshcd_get_variant(hba);
1225
1226 hci_writel(ufs, 0 << 0, HCI_GPIO_OUT);
1227 udelay(5);
1228 hci_writel(ufs, 1 << 0, HCI_GPIO_OUT);
1229 }
1230
1231 static void exynos_ufs_pre_hibern8(struct ufs_hba *hba, u8 enter)
1232 {
1233 struct exynos_ufs *ufs = ufshcd_get_variant(hba);
1234 struct exynos_ufs_uic_attr *attr = ufs->drv_data->uic_attr;
1235
1236 if (!enter) {
1237 if (ufs->opts & EXYNOS_UFS_OPT_BROKEN_AUTO_CLK_CTRL)
1238 exynos_ufs_disable_auto_ctrl_hcc(ufs);
1239 exynos_ufs_ungate_clks(ufs);
1240
1241 if (ufs->opts & EXYNOS_UFS_OPT_USE_SW_HIBERN8_TIMER) {
1242 static const unsigned int granularity_tbl[] = {
1243 1, 4, 8, 16, 32, 100
1244 };
1245 int h8_time = attr->pa_hibern8time *
1246 granularity_tbl[attr->pa_granularity - 1];
1247 unsigned long us;
1248 s64 delta;
1249
1250 do {
1251 delta = h8_time - ktime_us_delta(ktime_get(),
1252 ufs->entry_hibern8_t);
1253 if (delta <= 0)
1254 break;
1255
1256 us = min_t(s64, delta, USEC_PER_MSEC);
1257 if (us >= 10)
1258 usleep_range(us, us + 10);
1259 } while (1);
1260 }
1261 }
1262 }
1263
1264 static void exynos_ufs_post_hibern8(struct ufs_hba *hba, u8 enter)
1265 {
1266 struct exynos_ufs *ufs = ufshcd_get_variant(hba);
1267
1268 if (!enter) {
1269 u32 cur_mode = 0;
1270 u32 pwrmode;
1271
1272 if (ufshcd_is_hs_mode(&ufs->dev_req_params))
1273 pwrmode = FAST_MODE;
1274 else
1275 pwrmode = SLOW_MODE;
1276
1277 ufshcd_dme_get(hba, UIC_ARG_MIB(PA_PWRMODE), &cur_mode);
1278 if (cur_mode != (pwrmode << 4 | pwrmode)) {
1279 dev_warn(hba->dev, "%s: power mode change\n", __func__);
1280 hba->pwr_info.pwr_rx = (cur_mode >> 4) & 0xf;
1281 hba->pwr_info.pwr_tx = cur_mode & 0xf;
1282 ufshcd_config_pwr_mode(hba, &hba->max_pwr_info.info);
1283 }
1284
1285 if (!(ufs->opts & EXYNOS_UFS_OPT_SKIP_CONNECTION_ESTAB))
1286 exynos_ufs_establish_connt(ufs);
1287 } else {
1288 ufs->entry_hibern8_t = ktime_get();
1289 exynos_ufs_gate_clks(ufs);
1290 if (ufs->opts & EXYNOS_UFS_OPT_BROKEN_AUTO_CLK_CTRL)
1291 exynos_ufs_enable_auto_ctrl_hcc(ufs);
1292 }
1293 }
1294
1295 static int exynos_ufs_hce_enable_notify(struct ufs_hba *hba,
1296 enum ufs_notify_change_status status)
1297 {
1298 struct exynos_ufs *ufs = ufshcd_get_variant(hba);
1299 int ret = 0;
1300
1301 switch (status) {
1302 case PRE_CHANGE:
1303 if (ufs->drv_data->pre_hce_enable) {
1304 ret = ufs->drv_data->pre_hce_enable(ufs);
1305 if (ret)
1306 return ret;
1307 }
1308
1309 ret = exynos_ufs_host_reset(hba);
1310 if (ret)
1311 return ret;
1312 exynos_ufs_dev_hw_reset(hba);
1313 break;
1314 case POST_CHANGE:
1315 exynos_ufs_calc_pwm_clk_div(ufs);
1316 if (!(ufs->opts & EXYNOS_UFS_OPT_BROKEN_AUTO_CLK_CTRL))
1317 exynos_ufs_enable_auto_ctrl_hcc(ufs);
1318
1319 if (ufs->drv_data->post_hce_enable)
1320 ret = ufs->drv_data->post_hce_enable(ufs);
1321
1322 break;
1323 }
1324
1325 return ret;
1326 }
1327
1328 static int exynos_ufs_link_startup_notify(struct ufs_hba *hba,
1329 enum ufs_notify_change_status status)
1330 {
1331 int ret = 0;
1332
1333 switch (status) {
1334 case PRE_CHANGE:
1335 ret = exynos_ufs_pre_link(hba);
1336 break;
1337 case POST_CHANGE:
1338 ret = exynos_ufs_post_link(hba);
1339 break;
1340 }
1341
1342 return ret;
1343 }
1344
1345 static int exynos_ufs_pwr_change_notify(struct ufs_hba *hba,
1346 enum ufs_notify_change_status status,
1347 struct ufs_pa_layer_attr *dev_max_params,
1348 struct ufs_pa_layer_attr *dev_req_params)
1349 {
1350 int ret = 0;
1351
1352 switch (status) {
1353 case PRE_CHANGE:
1354 ret = exynos_ufs_pre_pwr_mode(hba, dev_max_params,
1355 dev_req_params);
1356 break;
1357 case POST_CHANGE:
1358 ret = exynos_ufs_post_pwr_mode(hba, dev_req_params);
1359 break;
1360 }
1361
1362 return ret;
1363 }
1364
1365 static void exynos_ufs_hibern8_notify(struct ufs_hba *hba,
1366 enum uic_cmd_dme enter,
1367 enum ufs_notify_change_status notify)
1368 {
1369 switch ((u8)notify) {
1370 case PRE_CHANGE:
1371 exynos_ufs_pre_hibern8(hba, enter);
1372 break;
1373 case POST_CHANGE:
1374 exynos_ufs_post_hibern8(hba, enter);
1375 break;
1376 }
1377 }
1378
1379 static int exynos_ufs_suspend(struct ufs_hba *hba, enum ufs_pm_op pm_op,
1380 enum ufs_notify_change_status status)
1381 {
1382 struct exynos_ufs *ufs = ufshcd_get_variant(hba);
1383
1384 if (status == PRE_CHANGE)
1385 return 0;
1386
1387 if (!ufshcd_is_link_active(hba))
1388 phy_power_off(ufs->phy);
1389
1390 return 0;
1391 }
1392
1393 static int exynos_ufs_resume(struct ufs_hba *hba, enum ufs_pm_op pm_op)
1394 {
1395 struct exynos_ufs *ufs = ufshcd_get_variant(hba);
1396
1397 if (!ufshcd_is_link_active(hba))
1398 phy_power_on(ufs->phy);
1399
1400 exynos_ufs_config_smu(ufs);
1401
1402 return 0;
1403 }
1404
1405 static int exynosauto_ufs_vh_link_startup_notify(struct ufs_hba *hba,
1406 enum ufs_notify_change_status status)
1407 {
1408 if (status == POST_CHANGE) {
1409 ufshcd_set_link_active(hba);
1410 ufshcd_set_ufs_dev_active(hba);
1411 }
1412
1413 return 0;
1414 }
1415
1416 static int exynosauto_ufs_vh_wait_ph_ready(struct ufs_hba *hba)
1417 {
1418 u32 mbox;
1419 ktime_t start, stop;
1420
1421 start = ktime_get();
1422 stop = ktime_add(start, ms_to_ktime(PH_READY_TIMEOUT_MS));
1423
1424 do {
1425 mbox = ufshcd_readl(hba, PH2VH_MBOX);
1426
1427
1428
1429 if ((mbox & MH_MSG_MASK) == MH_MSG_PH_READY)
1430 return 0;
1431
1432 usleep_range(40, 50);
1433 } while (ktime_before(ktime_get(), stop));
1434
1435 return -ETIME;
1436 }
1437
1438 static int exynosauto_ufs_vh_init(struct ufs_hba *hba)
1439 {
1440 struct device *dev = hba->dev;
1441 struct platform_device *pdev = to_platform_device(dev);
1442 struct exynos_ufs *ufs;
1443 int ret;
1444
1445 ufs = devm_kzalloc(dev, sizeof(*ufs), GFP_KERNEL);
1446 if (!ufs)
1447 return -ENOMEM;
1448
1449
1450 ufs->reg_hci = devm_platform_ioremap_resource_byname(pdev, "vs_hci");
1451 if (IS_ERR(ufs->reg_hci)) {
1452 dev_err(dev, "cannot ioremap for hci vendor register\n");
1453 return PTR_ERR(ufs->reg_hci);
1454 }
1455
1456 ret = exynosauto_ufs_vh_wait_ph_ready(hba);
1457 if (ret)
1458 return ret;
1459
1460 ufs->drv_data = device_get_match_data(dev);
1461 if (!ufs->drv_data)
1462 return -ENODEV;
1463
1464 exynos_ufs_priv_init(hba, ufs);
1465
1466 return 0;
1467 }
1468
1469 static int fsd_ufs_pre_link(struct exynos_ufs *ufs)
1470 {
1471 int i;
1472 struct ufs_hba *hba = ufs->hba;
1473
1474 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_DBG_CLK_PERIOD),
1475 DIV_ROUND_UP(NSEC_PER_SEC, ufs->mclk_rate));
1476 ufshcd_dme_set(hba, UIC_ARG_MIB(0x201), 0x12);
1477 ufshcd_dme_set(hba, UIC_ARG_MIB(0x200), 0x40);
1478
1479 for_each_ufs_tx_lane(ufs, i) {
1480 ufshcd_dme_set(hba, UIC_ARG_MIB_SEL(0xAA, i),
1481 DIV_ROUND_UP(NSEC_PER_SEC, ufs->mclk_rate));
1482 ufshcd_dme_set(hba, UIC_ARG_MIB_SEL(0x8F, i), 0x3F);
1483 }
1484
1485 for_each_ufs_rx_lane(ufs, i) {
1486 ufshcd_dme_set(hba, UIC_ARG_MIB_SEL(0x12, i),
1487 DIV_ROUND_UP(NSEC_PER_SEC, ufs->mclk_rate));
1488 ufshcd_dme_set(hba, UIC_ARG_MIB_SEL(0x5C, i), 0x38);
1489 ufshcd_dme_set(hba, UIC_ARG_MIB_SEL(0x0F, i), 0x0);
1490 ufshcd_dme_set(hba, UIC_ARG_MIB_SEL(0x65, i), 0x1);
1491 ufshcd_dme_set(hba, UIC_ARG_MIB_SEL(0x69, i), 0x1);
1492 ufshcd_dme_set(hba, UIC_ARG_MIB_SEL(0x21, i), 0x0);
1493 ufshcd_dme_set(hba, UIC_ARG_MIB_SEL(0x22, i), 0x0);
1494 }
1495
1496 ufshcd_dme_set(hba, UIC_ARG_MIB(0x200), 0x0);
1497 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_DBG_AUTOMODE_THLD), 0x4E20);
1498 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_DBG_OPTION_SUITE), 0x2e820183);
1499 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_LOCAL_TX_LCC_ENABLE), 0x0);
1500
1501 exynos_ufs_establish_connt(ufs);
1502
1503 return 0;
1504 }
1505
1506 static int fsd_ufs_post_link(struct exynos_ufs *ufs)
1507 {
1508 int i;
1509 struct ufs_hba *hba = ufs->hba;
1510 u32 hw_cap_min_tactivate;
1511 u32 peer_rx_min_actv_time_cap;
1512 u32 max_rx_hibern8_time_cap;
1513
1514 ufshcd_dme_get(hba, UIC_ARG_MIB_SEL(0x8F, 4),
1515 &hw_cap_min_tactivate);
1516 ufshcd_dme_get(hba, UIC_ARG_MIB(PA_TACTIVATE),
1517 &peer_rx_min_actv_time_cap);
1518 ufshcd_dme_get(hba, UIC_ARG_MIB(PA_HIBERN8TIME),
1519 &max_rx_hibern8_time_cap);
1520
1521 if (peer_rx_min_actv_time_cap >= hw_cap_min_tactivate)
1522 ufshcd_dme_peer_set(hba, UIC_ARG_MIB(PA_TACTIVATE),
1523 peer_rx_min_actv_time_cap + 1);
1524 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_HIBERN8TIME), max_rx_hibern8_time_cap + 1);
1525
1526 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_DBG_MODE), 0x01);
1527 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_SAVECONFIGTIME), 0xFA);
1528 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_DBG_MODE), 0x00);
1529
1530 ufshcd_dme_set(hba, UIC_ARG_MIB(0x200), 0x40);
1531
1532 for_each_ufs_rx_lane(ufs, i) {
1533 ufshcd_dme_set(hba, UIC_ARG_MIB_SEL(0x35, i), 0x05);
1534 ufshcd_dme_set(hba, UIC_ARG_MIB_SEL(0x73, i), 0x01);
1535 ufshcd_dme_set(hba, UIC_ARG_MIB_SEL(0x41, i), 0x02);
1536 ufshcd_dme_set(hba, UIC_ARG_MIB_SEL(0x42, i), 0xAC);
1537 }
1538
1539 ufshcd_dme_set(hba, UIC_ARG_MIB(0x200), 0x0);
1540
1541 return 0;
1542 }
1543
1544 static int fsd_ufs_pre_pwr_change(struct exynos_ufs *ufs,
1545 struct ufs_pa_layer_attr *pwr)
1546 {
1547 struct ufs_hba *hba = ufs->hba;
1548
1549 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_TXTERMINATION), 0x1);
1550 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_RXTERMINATION), 0x1);
1551 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_PWRMODEUSERDATA0), 12000);
1552 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_PWRMODEUSERDATA1), 32000);
1553 ufshcd_dme_set(hba, UIC_ARG_MIB(PA_PWRMODEUSERDATA2), 16000);
1554
1555 unipro_writel(ufs, 12000, UNIPRO_DME_POWERMODE_REQ_REMOTEL2TIMER0);
1556 unipro_writel(ufs, 32000, UNIPRO_DME_POWERMODE_REQ_REMOTEL2TIMER1);
1557 unipro_writel(ufs, 16000, UNIPRO_DME_POWERMODE_REQ_REMOTEL2TIMER2);
1558
1559 return 0;
1560 }
1561
1562 static const struct ufs_hba_variant_ops ufs_hba_exynos_ops = {
1563 .name = "exynos_ufs",
1564 .init = exynos_ufs_init,
1565 .hce_enable_notify = exynos_ufs_hce_enable_notify,
1566 .link_startup_notify = exynos_ufs_link_startup_notify,
1567 .pwr_change_notify = exynos_ufs_pwr_change_notify,
1568 .setup_clocks = exynos_ufs_setup_clocks,
1569 .setup_xfer_req = exynos_ufs_specify_nexus_t_xfer_req,
1570 .setup_task_mgmt = exynos_ufs_specify_nexus_t_tm_req,
1571 .hibern8_notify = exynos_ufs_hibern8_notify,
1572 .suspend = exynos_ufs_suspend,
1573 .resume = exynos_ufs_resume,
1574 };
1575
1576 static struct ufs_hba_variant_ops ufs_hba_exynosauto_vh_ops = {
1577 .name = "exynosauto_ufs_vh",
1578 .init = exynosauto_ufs_vh_init,
1579 .link_startup_notify = exynosauto_ufs_vh_link_startup_notify,
1580 };
1581
1582 static int exynos_ufs_probe(struct platform_device *pdev)
1583 {
1584 int err;
1585 struct device *dev = &pdev->dev;
1586 const struct ufs_hba_variant_ops *vops = &ufs_hba_exynos_ops;
1587 const struct exynos_ufs_drv_data *drv_data =
1588 device_get_match_data(dev);
1589
1590 if (drv_data && drv_data->vops)
1591 vops = drv_data->vops;
1592
1593 err = ufshcd_pltfrm_init(pdev, vops);
1594 if (err)
1595 dev_err(dev, "ufshcd_pltfrm_init() failed %d\n", err);
1596
1597 return err;
1598 }
1599
1600 static int exynos_ufs_remove(struct platform_device *pdev)
1601 {
1602 struct ufs_hba *hba = platform_get_drvdata(pdev);
1603 struct exynos_ufs *ufs = ufshcd_get_variant(hba);
1604
1605 pm_runtime_get_sync(&(pdev)->dev);
1606 ufshcd_remove(hba);
1607
1608 phy_power_off(ufs->phy);
1609 phy_exit(ufs->phy);
1610
1611 return 0;
1612 }
1613
1614 static struct exynos_ufs_uic_attr exynos7_uic_attr = {
1615 .tx_trailingclks = 0x10,
1616 .tx_dif_p_nsec = 3000000,
1617 .tx_dif_n_nsec = 1000000,
1618 .tx_high_z_cnt_nsec = 20000,
1619 .tx_base_unit_nsec = 100000,
1620 .tx_gran_unit_nsec = 4000,
1621 .tx_sleep_cnt = 1000,
1622 .tx_min_activatetime = 0xa,
1623 .rx_filler_enable = 0x2,
1624 .rx_dif_p_nsec = 1000000,
1625 .rx_hibern8_wait_nsec = 4000000,
1626 .rx_base_unit_nsec = 100000,
1627 .rx_gran_unit_nsec = 4000,
1628 .rx_sleep_cnt = 1280,
1629 .rx_stall_cnt = 320,
1630 .rx_hs_g1_sync_len_cap = SYNC_LEN_COARSE(0xf),
1631 .rx_hs_g2_sync_len_cap = SYNC_LEN_COARSE(0xf),
1632 .rx_hs_g3_sync_len_cap = SYNC_LEN_COARSE(0xf),
1633 .rx_hs_g1_prep_sync_len_cap = PREP_LEN(0xf),
1634 .rx_hs_g2_prep_sync_len_cap = PREP_LEN(0xf),
1635 .rx_hs_g3_prep_sync_len_cap = PREP_LEN(0xf),
1636 .pa_dbg_option_suite = 0x30103,
1637 };
1638
1639 static const struct exynos_ufs_drv_data exynosauto_ufs_drvs = {
1640 .uic_attr = &exynos7_uic_attr,
1641 .quirks = UFSHCD_QUIRK_PRDT_BYTE_GRAN |
1642 UFSHCI_QUIRK_SKIP_RESET_INTR_AGGR |
1643 UFSHCD_QUIRK_BROKEN_OCS_FATAL_ERROR |
1644 UFSHCD_QUIRK_SKIP_DEF_UNIPRO_TIMEOUT_SETTING,
1645 .opts = EXYNOS_UFS_OPT_BROKEN_AUTO_CLK_CTRL |
1646 EXYNOS_UFS_OPT_SKIP_CONFIG_PHY_ATTR |
1647 EXYNOS_UFS_OPT_BROKEN_RX_SEL_IDX,
1648 .drv_init = exynosauto_ufs_drv_init,
1649 .post_hce_enable = exynosauto_ufs_post_hce_enable,
1650 .pre_link = exynosauto_ufs_pre_link,
1651 .pre_pwr_change = exynosauto_ufs_pre_pwr_change,
1652 .post_pwr_change = exynosauto_ufs_post_pwr_change,
1653 };
1654
1655 static const struct exynos_ufs_drv_data exynosauto_ufs_vh_drvs = {
1656 .vops = &ufs_hba_exynosauto_vh_ops,
1657 .quirks = UFSHCD_QUIRK_PRDT_BYTE_GRAN |
1658 UFSHCI_QUIRK_SKIP_RESET_INTR_AGGR |
1659 UFSHCD_QUIRK_BROKEN_OCS_FATAL_ERROR |
1660 UFSHCI_QUIRK_BROKEN_HCE |
1661 UFSHCD_QUIRK_BROKEN_UIC_CMD |
1662 UFSHCD_QUIRK_SKIP_PH_CONFIGURATION |
1663 UFSHCD_QUIRK_SKIP_DEF_UNIPRO_TIMEOUT_SETTING,
1664 .opts = EXYNOS_UFS_OPT_BROKEN_RX_SEL_IDX,
1665 };
1666
1667 static const struct exynos_ufs_drv_data exynos_ufs_drvs = {
1668 .uic_attr = &exynos7_uic_attr,
1669 .quirks = UFSHCD_QUIRK_PRDT_BYTE_GRAN |
1670 UFSHCI_QUIRK_BROKEN_REQ_LIST_CLR |
1671 UFSHCI_QUIRK_BROKEN_HCE |
1672 UFSHCI_QUIRK_SKIP_RESET_INTR_AGGR |
1673 UFSHCD_QUIRK_BROKEN_OCS_FATAL_ERROR |
1674 UFSHCI_QUIRK_SKIP_MANUAL_WB_FLUSH_CTRL |
1675 UFSHCD_QUIRK_SKIP_DEF_UNIPRO_TIMEOUT_SETTING |
1676 UFSHCD_QUIRK_ALIGN_SG_WITH_PAGE_SIZE,
1677 .opts = EXYNOS_UFS_OPT_HAS_APB_CLK_CTRL |
1678 EXYNOS_UFS_OPT_BROKEN_AUTO_CLK_CTRL |
1679 EXYNOS_UFS_OPT_BROKEN_RX_SEL_IDX |
1680 EXYNOS_UFS_OPT_SKIP_CONNECTION_ESTAB |
1681 EXYNOS_UFS_OPT_USE_SW_HIBERN8_TIMER,
1682 .drv_init = exynos7_ufs_drv_init,
1683 .pre_link = exynos7_ufs_pre_link,
1684 .post_link = exynos7_ufs_post_link,
1685 .pre_pwr_change = exynos7_ufs_pre_pwr_change,
1686 .post_pwr_change = exynos7_ufs_post_pwr_change,
1687 };
1688
1689 static struct exynos_ufs_uic_attr fsd_uic_attr = {
1690 .tx_trailingclks = 0x10,
1691 .tx_dif_p_nsec = 3000000,
1692 .tx_dif_n_nsec = 1000000,
1693 .tx_high_z_cnt_nsec = 20000,
1694 .tx_base_unit_nsec = 100000,
1695 .tx_gran_unit_nsec = 4000,
1696 .tx_sleep_cnt = 1000,
1697 .tx_min_activatetime = 0xa,
1698 .rx_filler_enable = 0x2,
1699 .rx_dif_p_nsec = 1000000,
1700 .rx_hibern8_wait_nsec = 4000000,
1701 .rx_base_unit_nsec = 100000,
1702 .rx_gran_unit_nsec = 4000,
1703 .rx_sleep_cnt = 1280,
1704 .rx_stall_cnt = 320,
1705 .rx_hs_g1_sync_len_cap = SYNC_LEN_COARSE(0xf),
1706 .rx_hs_g2_sync_len_cap = SYNC_LEN_COARSE(0xf),
1707 .rx_hs_g3_sync_len_cap = SYNC_LEN_COARSE(0xf),
1708 .rx_hs_g1_prep_sync_len_cap = PREP_LEN(0xf),
1709 .rx_hs_g2_prep_sync_len_cap = PREP_LEN(0xf),
1710 .rx_hs_g3_prep_sync_len_cap = PREP_LEN(0xf),
1711 .pa_dbg_option_suite = 0x2E820183,
1712 };
1713
1714 static const struct exynos_ufs_drv_data fsd_ufs_drvs = {
1715 .uic_attr = &fsd_uic_attr,
1716 .quirks = UFSHCD_QUIRK_PRDT_BYTE_GRAN |
1717 UFSHCI_QUIRK_BROKEN_REQ_LIST_CLR |
1718 UFSHCD_QUIRK_BROKEN_OCS_FATAL_ERROR |
1719 UFSHCD_QUIRK_SKIP_DEF_UNIPRO_TIMEOUT_SETTING |
1720 UFSHCI_QUIRK_SKIP_RESET_INTR_AGGR,
1721 .opts = EXYNOS_UFS_OPT_HAS_APB_CLK_CTRL |
1722 EXYNOS_UFS_OPT_BROKEN_AUTO_CLK_CTRL |
1723 EXYNOS_UFS_OPT_SKIP_CONFIG_PHY_ATTR |
1724 EXYNOS_UFS_OPT_BROKEN_RX_SEL_IDX,
1725 .pre_link = fsd_ufs_pre_link,
1726 .post_link = fsd_ufs_post_link,
1727 .pre_pwr_change = fsd_ufs_pre_pwr_change,
1728 };
1729
1730 static const struct of_device_id exynos_ufs_of_match[] = {
1731 { .compatible = "samsung,exynos7-ufs",
1732 .data = &exynos_ufs_drvs },
1733 { .compatible = "samsung,exynosautov9-ufs",
1734 .data = &exynosauto_ufs_drvs },
1735 { .compatible = "samsung,exynosautov9-ufs-vh",
1736 .data = &exynosauto_ufs_vh_drvs },
1737 { .compatible = "tesla,fsd-ufs",
1738 .data = &fsd_ufs_drvs },
1739 {},
1740 };
1741
1742 static const struct dev_pm_ops exynos_ufs_pm_ops = {
1743 SET_SYSTEM_SLEEP_PM_OPS(ufshcd_system_suspend, ufshcd_system_resume)
1744 SET_RUNTIME_PM_OPS(ufshcd_runtime_suspend, ufshcd_runtime_resume, NULL)
1745 .prepare = ufshcd_suspend_prepare,
1746 .complete = ufshcd_resume_complete,
1747 };
1748
1749 static struct platform_driver exynos_ufs_pltform = {
1750 .probe = exynos_ufs_probe,
1751 .remove = exynos_ufs_remove,
1752 .shutdown = ufshcd_pltfrm_shutdown,
1753 .driver = {
1754 .name = "exynos-ufshc",
1755 .pm = &exynos_ufs_pm_ops,
1756 .of_match_table = of_match_ptr(exynos_ufs_of_match),
1757 },
1758 };
1759 module_platform_driver(exynos_ufs_pltform);
1760
1761 MODULE_AUTHOR("Alim Akhtar <alim.akhtar@samsung.com>");
1762 MODULE_AUTHOR("Seungwon Jeon <essuuj@gmail.com>");
1763 MODULE_DESCRIPTION("Exynos UFS HCI Driver");
1764 MODULE_LICENSE("GPL v2");