1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright (c) 2013 Linaro Ltd.
4 * Copyright (c) 2013 HiSilicon Limited.
7 #include <linux/bitops.h>
8 #include <linux/bitfield.h>
10 #include <linux/mfd/syscon.h>
11 #include <linux/mmc/host.h>
12 #include <linux/module.h>
13 #include <linux/of_address.h>
14 #include <linux/platform_device.h>
15 #include <linux/pm_runtime.h>
16 #include <linux/regmap.h>
17 #include <linux/regulator/consumer.h>
20 #include "dw_mmc-pltfm.h"
23 * hi6220 sd only support io voltage 1.8v and 3v
24 * Also need config AO_SCTRL_SEL18 accordingly
26 #define AO_SCTRL_SEL18 BIT(10)
27 #define AO_SCTRL_CTRL3 0x40C
29 #define DWMMC_SDIO_ID 2
31 #define SOC_SCTRL_SCPERCTRL5 (0x314)
32 #define SDCARD_IO_SEL18 BIT(2)
34 #define SDCARD_RD_THRESHOLD (512)
36 #define GENCLK_DIV (7)
38 #define GPIO_CLK_ENABLE BIT(16)
39 #define GPIO_CLK_DIV_MASK GENMASK(11, 8)
40 #define GPIO_USE_SAMPLE_DLY_MASK GENMASK(13, 13)
41 #define UHS_REG_EXT_SAMPLE_PHASE_MASK GENMASK(20, 16)
42 #define UHS_REG_EXT_SAMPLE_DRVPHASE_MASK GENMASK(25, 21)
43 #define UHS_REG_EXT_SAMPLE_DLY_MASK GENMASK(30, 26)
46 #define TIMING_CFG_NUM 10
48 #define NUM_PHASES (40)
50 #define ENABLE_SHIFT_MIN_SMPL (4)
51 #define ENABLE_SHIFT_MAX_SMPL (12)
52 #define USE_DLY_MIN_SMPL (11)
53 #define USE_DLY_MAX_SMPL (14)
61 static unsigned long dw_mci_hi6220_caps[] = {
74 static struct hs_timing hs_timing_cfg[TIMING_MODE][TIMING_CFG_NUM] = {
77 {7, 0, 15, 15,}, /* 0: LEGACY 400k */
78 {6, 0, 4, 4,}, /* 1: MMC_HS */
79 {6, 0, 3, 3,}, /* 2: SD_HS */
80 {6, 0, 15, 15,}, /* 3: SDR12 */
81 {6, 0, 2, 2,}, /* 4: SDR25 */
82 {4, 0, 11, 0,}, /* 5: SDR50 */
83 {6, 4, 15, 0,}, /* 6: SDR104 */
89 {7, 0, 15, 15,}, /* 0: LEGACY 400k */
91 {6, 0, 15, 15,}, /* 2: SD_HS */
92 {6, 0, 15, 15,}, /* 3: SDR12 */
93 {6, 0, 0, 0,}, /* 4: SDR25 */
94 {4, 0, 12, 0,}, /* 5: SDR50 */
95 {5, 4, 15, 0,}, /* 6: SDR104 */
102 static void dw_mci_k3_set_ios(struct dw_mci *host, struct mmc_ios *ios)
106 ret = clk_set_rate(host->ciu_clk, ios->clock);
108 dev_warn(host->dev, "failed to set rate %uHz\n", ios->clock);
110 host->bus_hz = clk_get_rate(host->ciu_clk);
113 static const struct dw_mci_drv_data k3_drv_data = {
114 .set_ios = dw_mci_k3_set_ios,
117 static int dw_mci_hi6220_parse_dt(struct dw_mci *host)
119 struct k3_priv *priv;
121 priv = devm_kzalloc(host->dev, sizeof(*priv), GFP_KERNEL);
125 priv->reg = syscon_regmap_lookup_by_phandle(host->dev->of_node,
126 "hisilicon,peripheral-syscon");
127 if (IS_ERR(priv->reg))
130 priv->ctrl_id = of_alias_get_id(host->dev->of_node, "mshc");
131 if (priv->ctrl_id < 0)
134 if (priv->ctrl_id >= TIMING_MODE)
141 static int dw_mci_hi6220_switch_voltage(struct mmc_host *mmc, struct mmc_ios *ios)
143 struct dw_mci_slot *slot = mmc_priv(mmc);
144 struct k3_priv *priv;
152 if (!priv || !priv->reg)
155 if (ios->signal_voltage == MMC_SIGNAL_VOLTAGE_330) {
156 ret = regmap_update_bits(priv->reg, AO_SCTRL_CTRL3,
160 } else if (ios->signal_voltage == MMC_SIGNAL_VOLTAGE_180) {
161 ret = regmap_update_bits(priv->reg, AO_SCTRL_CTRL3,
162 AO_SCTRL_SEL18, AO_SCTRL_SEL18);
166 dev_dbg(host->dev, "voltage not supported\n");
171 dev_dbg(host->dev, "switch voltage failed\n");
175 if (IS_ERR_OR_NULL(mmc->supply.vqmmc))
178 ret = regulator_set_voltage(mmc->supply.vqmmc, min_uv, max_uv);
180 dev_dbg(host->dev, "Regulator set error %d: %d - %d\n",
181 ret, min_uv, max_uv);
188 static void dw_mci_hi6220_set_ios(struct dw_mci *host, struct mmc_ios *ios)
193 clock = (ios->clock <= 25000000) ? 25000000 : ios->clock;
195 ret = clk_set_rate(host->biu_clk, clock);
197 dev_warn(host->dev, "failed to set rate %uHz\n", clock);
199 host->bus_hz = clk_get_rate(host->biu_clk);
202 static int dw_mci_hi6220_execute_tuning(struct dw_mci_slot *slot, u32 opcode)
207 static const struct dw_mci_drv_data hi6220_data = {
208 .caps = dw_mci_hi6220_caps,
209 .num_caps = ARRAY_SIZE(dw_mci_hi6220_caps),
210 .switch_voltage = dw_mci_hi6220_switch_voltage,
211 .set_ios = dw_mci_hi6220_set_ios,
212 .parse_dt = dw_mci_hi6220_parse_dt,
213 .execute_tuning = dw_mci_hi6220_execute_tuning,
216 static void dw_mci_hs_set_timing(struct dw_mci *host, int timing,
221 u32 use_smpl_dly = 0;
222 u32 enable_shift = 0;
225 struct k3_priv *priv;
228 ctrl_id = priv->ctrl_id;
230 drv_phase = hs_timing_cfg[ctrl_id][timing].drv_phase;
231 smpl_dly = hs_timing_cfg[ctrl_id][timing].smpl_dly;
232 if (smpl_phase == -1)
233 smpl_phase = (hs_timing_cfg[ctrl_id][timing].smpl_phase_max +
234 hs_timing_cfg[ctrl_id][timing].smpl_phase_min) / 2;
237 case MMC_TIMING_UHS_SDR104:
238 if (smpl_phase >= USE_DLY_MIN_SMPL &&
239 smpl_phase <= USE_DLY_MAX_SMPL)
242 case MMC_TIMING_UHS_SDR50:
243 if (smpl_phase >= ENABLE_SHIFT_MIN_SMPL &&
244 smpl_phase <= ENABLE_SHIFT_MAX_SMPL)
249 mci_writel(host, GPIO, 0x0);
252 reg_value = FIELD_PREP(UHS_REG_EXT_SAMPLE_PHASE_MASK, smpl_phase) |
253 FIELD_PREP(UHS_REG_EXT_SAMPLE_DLY_MASK, smpl_dly) |
254 FIELD_PREP(UHS_REG_EXT_SAMPLE_DRVPHASE_MASK, drv_phase);
255 mci_writel(host, UHS_REG_EXT, reg_value);
257 mci_writel(host, ENABLE_SHIFT, enable_shift);
259 reg_value = FIELD_PREP(GPIO_CLK_DIV_MASK, GENCLK_DIV) |
260 FIELD_PREP(GPIO_USE_SAMPLE_DLY_MASK, use_smpl_dly);
261 mci_writel(host, GPIO, (unsigned int)reg_value | GPIO_CLK_ENABLE);
263 /* We should delay 1ms wait for timing setting finished. */
264 usleep_range(1000, 2000);
267 static int dw_mci_hi3660_init(struct dw_mci *host)
269 mci_writel(host, CDTHRCTL, SDMMC_SET_THLD(SDCARD_RD_THRESHOLD,
270 SDMMC_CARD_RD_THR_EN));
272 dw_mci_hs_set_timing(host, MMC_TIMING_LEGACY, -1);
273 host->bus_hz /= (GENCLK_DIV + 1);
278 static int dw_mci_set_sel18(struct dw_mci *host, bool set)
282 struct k3_priv *priv;
286 val = set ? SDCARD_IO_SEL18 : 0;
287 ret = regmap_update_bits(priv->reg, SOC_SCTRL_SCPERCTRL5,
288 SDCARD_IO_SEL18, val);
290 dev_err(host->dev, "sel18 %u error\n", val);
297 static void dw_mci_hi3660_set_ios(struct dw_mci *host, struct mmc_ios *ios)
300 unsigned long wanted;
301 unsigned long actual;
302 struct k3_priv *priv = host->priv;
304 if (!ios->clock || ios->clock == priv->cur_speed)
307 wanted = ios->clock * (GENCLK_DIV + 1);
308 ret = clk_set_rate(host->ciu_clk, wanted);
310 dev_err(host->dev, "failed to set rate %luHz\n", wanted);
313 actual = clk_get_rate(host->ciu_clk);
315 dw_mci_hs_set_timing(host, ios->timing, -1);
316 host->bus_hz = actual / (GENCLK_DIV + 1);
317 host->current_speed = 0;
318 priv->cur_speed = host->bus_hz;
321 static int dw_mci_get_best_clksmpl(unsigned int sample_flag)
327 unsigned int range_start = 0;
328 unsigned int range_length = 0;
329 unsigned int middle_range = 0;
334 if (~sample_flag == 0)
337 i = ffs(sample_flag) - 1;
340 * A clock cycle is divided into 32 phases,
341 * each of which is represented by a bit,
342 * finding the optimal phase.
345 v = ror32(sample_flag, i);
348 if (len > range_length) {
353 interval = ffs(v >> len) - 1;
360 middle_range = range_start + range_length / 2;
361 if (middle_range >= 32)
367 static int dw_mci_hi3660_execute_tuning(struct dw_mci_slot *slot, u32 opcode)
370 struct dw_mci *host = slot->host;
371 struct mmc_host *mmc = slot->mmc;
373 u32 tuning_sample_flag = 0;
374 int best_clksmpl = 0;
376 for (i = 0; i < NUM_PHASES; ++i, ++smpl_phase) {
379 mci_writel(host, TMOUT, ~0);
380 dw_mci_hs_set_timing(host, mmc->ios.timing, smpl_phase);
382 if (!mmc_send_tuning(mmc, opcode, NULL))
383 tuning_sample_flag |= (1 << smpl_phase);
385 tuning_sample_flag &= ~(1 << smpl_phase);
388 best_clksmpl = dw_mci_get_best_clksmpl(tuning_sample_flag);
389 if (best_clksmpl < 0) {
390 dev_err(host->dev, "All phases bad!\n");
394 dw_mci_hs_set_timing(host, mmc->ios.timing, best_clksmpl);
396 dev_info(host->dev, "tuning ok best_clksmpl %u tuning_sample_flag %x\n",
397 best_clksmpl, tuning_sample_flag);
401 static int dw_mci_hi3660_switch_voltage(struct mmc_host *mmc,
405 struct dw_mci_slot *slot = mmc_priv(mmc);
406 struct k3_priv *priv;
412 if (!priv || !priv->reg)
415 if (priv->ctrl_id == DWMMC_SDIO_ID)
418 if (ios->signal_voltage == MMC_SIGNAL_VOLTAGE_330)
419 ret = dw_mci_set_sel18(host, 0);
420 else if (ios->signal_voltage == MMC_SIGNAL_VOLTAGE_180)
421 ret = dw_mci_set_sel18(host, 1);
425 if (!IS_ERR(mmc->supply.vqmmc)) {
426 ret = mmc_regulator_set_vqmmc(mmc, ios);
428 dev_err(host->dev, "Regulator set error %d\n", ret);
436 static const struct dw_mci_drv_data hi3660_data = {
437 .init = dw_mci_hi3660_init,
438 .set_ios = dw_mci_hi3660_set_ios,
439 .parse_dt = dw_mci_hi6220_parse_dt,
440 .execute_tuning = dw_mci_hi3660_execute_tuning,
441 .switch_voltage = dw_mci_hi3660_switch_voltage,
444 static const struct of_device_id dw_mci_k3_match[] = {
445 { .compatible = "hisilicon,hi3660-dw-mshc", .data = &hi3660_data, },
446 { .compatible = "hisilicon,hi4511-dw-mshc", .data = &k3_drv_data, },
447 { .compatible = "hisilicon,hi6220-dw-mshc", .data = &hi6220_data, },
450 MODULE_DEVICE_TABLE(of, dw_mci_k3_match);
452 static int dw_mci_k3_probe(struct platform_device *pdev)
454 const struct dw_mci_drv_data *drv_data;
455 const struct of_device_id *match;
457 match = of_match_node(dw_mci_k3_match, pdev->dev.of_node);
458 drv_data = match->data;
460 return dw_mci_pltfm_register(pdev, drv_data);
463 static const struct dev_pm_ops dw_mci_k3_dev_pm_ops = {
464 SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend,
465 pm_runtime_force_resume)
466 SET_RUNTIME_PM_OPS(dw_mci_runtime_suspend,
467 dw_mci_runtime_resume,
471 static struct platform_driver dw_mci_k3_pltfm_driver = {
472 .probe = dw_mci_k3_probe,
473 .remove = dw_mci_pltfm_remove,
476 .probe_type = PROBE_PREFER_ASYNCHRONOUS,
477 .of_match_table = dw_mci_k3_match,
478 .pm = &dw_mci_k3_dev_pm_ops,
482 module_platform_driver(dw_mci_k3_pltfm_driver);
484 MODULE_DESCRIPTION("K3 Specific DW-MSHC Driver Extension");
485 MODULE_LICENSE("GPL v2");
486 MODULE_ALIAS("platform:dwmmc_k3");