xref: /openbmc/linux/drivers/mmc/host/dw_mmc-k3.c (revision 361c7fe9)
1 /*
2  * Copyright (c) 2013 Linaro Ltd.
3  * Copyright (c) 2013 Hisilicon Limited.
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  */
10 
11 #include <linux/bitops.h>
12 #include <linux/bitfield.h>
13 #include <linux/clk.h>
14 #include <linux/mfd/syscon.h>
15 #include <linux/mmc/host.h>
16 #include <linux/module.h>
17 #include <linux/of_address.h>
18 #include <linux/platform_device.h>
19 #include <linux/pm_runtime.h>
20 #include <linux/regmap.h>
21 #include <linux/regulator/consumer.h>
22 
23 #include "dw_mmc.h"
24 #include "dw_mmc-pltfm.h"
25 
26 /*
27  * hi6220 sd only support io voltage 1.8v and 3v
28  * Also need config AO_SCTRL_SEL18 accordingly
29  */
30 #define AO_SCTRL_SEL18		BIT(10)
31 #define AO_SCTRL_CTRL3		0x40C
32 
33 #define DWMMC_SDIO_ID 2
34 
35 #define SOC_SCTRL_SCPERCTRL5    (0x314)
36 #define SDCARD_IO_SEL18         BIT(2)
37 
38 #define SDCARD_RD_THRESHOLD  (512)
39 
40 #define GENCLK_DIV (7)
41 
42 #define GPIO_CLK_ENABLE                   BIT(16)
43 #define GPIO_CLK_DIV_MASK                 GENMASK(11, 8)
44 #define GPIO_USE_SAMPLE_DLY_MASK          GENMASK(13, 13)
45 #define UHS_REG_EXT_SAMPLE_PHASE_MASK     GENMASK(20, 16)
46 #define UHS_REG_EXT_SAMPLE_DRVPHASE_MASK  GENMASK(25, 21)
47 #define UHS_REG_EXT_SAMPLE_DLY_MASK       GENMASK(30, 26)
48 
49 #define TIMING_MODE     3
50 #define TIMING_CFG_NUM 10
51 
52 #define NUM_PHASES (40)
53 
54 #define ENABLE_SHIFT_MIN_SMPL (4)
55 #define ENABLE_SHIFT_MAX_SMPL (12)
56 #define USE_DLY_MIN_SMPL (11)
57 #define USE_DLY_MAX_SMPL (14)
58 
59 struct k3_priv {
60 	int ctrl_id;
61 	u32 cur_speed;
62 	struct regmap	*reg;
63 };
64 
65 static unsigned long dw_mci_hi6220_caps[] = {
66 	MMC_CAP_CMD23,
67 	MMC_CAP_CMD23,
68 	0
69 };
70 
71 struct hs_timing {
72 	u32 drv_phase;
73 	u32 smpl_dly;
74 	u32 smpl_phase_max;
75 	u32 smpl_phase_min;
76 };
77 
78 struct hs_timing hs_timing_cfg[TIMING_MODE][TIMING_CFG_NUM] = {
79 	{ /* reserved */ },
80 	{ /* SD */
81 		{7, 0, 15, 15,},  /* 0: LEGACY 400k */
82 		{6, 0,  4,  4,},  /* 1: MMC_HS */
83 		{6, 0,  3,  3,},  /* 2: SD_HS */
84 		{6, 0, 15, 15,},  /* 3: SDR12 */
85 		{6, 0,  2,  2,},  /* 4: SDR25 */
86 		{4, 0, 11,  0,},  /* 5: SDR50 */
87 		{6, 4, 15,  0,},  /* 6: SDR104 */
88 		{0},              /* 7: DDR50 */
89 		{0},              /* 8: DDR52 */
90 		{0},              /* 9: HS200 */
91 	},
92 	{ /* SDIO */
93 		{7, 0, 15, 15,},  /* 0: LEGACY 400k */
94 		{0},              /* 1: MMC_HS */
95 		{6, 0, 15, 15,},  /* 2: SD_HS */
96 		{6, 0, 15, 15,},  /* 3: SDR12 */
97 		{6, 0,  0,  0,},  /* 4: SDR25 */
98 		{4, 0, 12,  0,},  /* 5: SDR50 */
99 		{5, 4, 15,  0,},  /* 6: SDR104 */
100 		{0},              /* 7: DDR50 */
101 		{0},              /* 8: DDR52 */
102 		{0},              /* 9: HS200 */
103 	}
104 };
105 
106 static void dw_mci_k3_set_ios(struct dw_mci *host, struct mmc_ios *ios)
107 {
108 	int ret;
109 
110 	ret = clk_set_rate(host->ciu_clk, ios->clock);
111 	if (ret)
112 		dev_warn(host->dev, "failed to set rate %uHz\n", ios->clock);
113 
114 	host->bus_hz = clk_get_rate(host->ciu_clk);
115 }
116 
117 static const struct dw_mci_drv_data k3_drv_data = {
118 	.set_ios		= dw_mci_k3_set_ios,
119 };
120 
121 static int dw_mci_hi6220_parse_dt(struct dw_mci *host)
122 {
123 	struct k3_priv *priv;
124 
125 	priv = devm_kzalloc(host->dev, sizeof(*priv), GFP_KERNEL);
126 	if (!priv)
127 		return -ENOMEM;
128 
129 	priv->reg = syscon_regmap_lookup_by_phandle(host->dev->of_node,
130 					 "hisilicon,peripheral-syscon");
131 	if (IS_ERR(priv->reg))
132 		priv->reg = NULL;
133 
134 	priv->ctrl_id = of_alias_get_id(host->dev->of_node, "mshc");
135 	if (priv->ctrl_id < 0)
136 		priv->ctrl_id = 0;
137 
138 	host->priv = priv;
139 	return 0;
140 }
141 
142 static int dw_mci_hi6220_switch_voltage(struct mmc_host *mmc, struct mmc_ios *ios)
143 {
144 	struct dw_mci_slot *slot = mmc_priv(mmc);
145 	struct k3_priv *priv;
146 	struct dw_mci *host;
147 	int min_uv, max_uv;
148 	int ret;
149 
150 	host = slot->host;
151 	priv = host->priv;
152 
153 	if (!priv || !priv->reg)
154 		return 0;
155 
156 	if (ios->signal_voltage == MMC_SIGNAL_VOLTAGE_330) {
157 		ret = regmap_update_bits(priv->reg, AO_SCTRL_CTRL3,
158 					 AO_SCTRL_SEL18, 0);
159 		min_uv = 3000000;
160 		max_uv = 3000000;
161 	} else if (ios->signal_voltage == MMC_SIGNAL_VOLTAGE_180) {
162 		ret = regmap_update_bits(priv->reg, AO_SCTRL_CTRL3,
163 					 AO_SCTRL_SEL18, AO_SCTRL_SEL18);
164 		min_uv = 1800000;
165 		max_uv = 1800000;
166 	} else {
167 		dev_dbg(host->dev, "voltage not supported\n");
168 		return -EINVAL;
169 	}
170 
171 	if (ret) {
172 		dev_dbg(host->dev, "switch voltage failed\n");
173 		return ret;
174 	}
175 
176 	if (IS_ERR_OR_NULL(mmc->supply.vqmmc))
177 		return 0;
178 
179 	ret = regulator_set_voltage(mmc->supply.vqmmc, min_uv, max_uv);
180 	if (ret) {
181 		dev_dbg(host->dev, "Regulator set error %d: %d - %d\n",
182 				 ret, min_uv, max_uv);
183 		return ret;
184 	}
185 
186 	return 0;
187 }
188 
189 static void dw_mci_hi6220_set_ios(struct dw_mci *host, struct mmc_ios *ios)
190 {
191 	int ret;
192 	unsigned int clock;
193 
194 	clock = (ios->clock <= 25000000) ? 25000000 : ios->clock;
195 
196 	ret = clk_set_rate(host->biu_clk, clock);
197 	if (ret)
198 		dev_warn(host->dev, "failed to set rate %uHz\n", clock);
199 
200 	host->bus_hz = clk_get_rate(host->biu_clk);
201 }
202 
203 static int dw_mci_hi6220_execute_tuning(struct dw_mci_slot *slot, u32 opcode)
204 {
205 	return 0;
206 }
207 
208 static const struct dw_mci_drv_data hi6220_data = {
209 	.caps			= 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,
214 };
215 
216 static void dw_mci_hs_set_timing(struct dw_mci *host, int timing,
217 				     int smpl_phase)
218 {
219 	u32 drv_phase;
220 	u32 smpl_dly;
221 	u32 use_smpl_dly = 0;
222 	u32 enable_shift = 0;
223 	u32 reg_value;
224 	int ctrl_id;
225 	struct k3_priv *priv;
226 
227 	priv = host->priv;
228 	ctrl_id = priv->ctrl_id;
229 
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;
235 
236 	switch (timing) {
237 	case MMC_TIMING_UHS_SDR104:
238 		if (smpl_phase >= USE_DLY_MIN_SMPL &&
239 				smpl_phase <= USE_DLY_MAX_SMPL)
240 			use_smpl_dly = 1;
241 			/* fallthrough */
242 	case MMC_TIMING_UHS_SDR50:
243 		if (smpl_phase >= ENABLE_SHIFT_MIN_SMPL &&
244 				smpl_phase <= ENABLE_SHIFT_MAX_SMPL)
245 			enable_shift = 1;
246 		break;
247 	}
248 
249 	mci_writel(host, GPIO, 0x0);
250 	usleep_range(5, 10);
251 
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);
256 
257 	mci_writel(host, ENABLE_SHIFT, enable_shift);
258 
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);
262 
263 	/* We should delay 1ms wait for timing setting finished. */
264 	usleep_range(1000, 2000);
265 }
266 
267 static int dw_mci_hi3660_init(struct dw_mci *host)
268 {
269 	mci_writel(host, CDTHRCTL, SDMMC_SET_THLD(SDCARD_RD_THRESHOLD,
270 		    SDMMC_CARD_RD_THR_EN));
271 
272 	dw_mci_hs_set_timing(host, MMC_TIMING_LEGACY, -1);
273 	host->bus_hz /= (GENCLK_DIV + 1);
274 
275 	return 0;
276 }
277 
278 static int dw_mci_set_sel18(struct dw_mci *host, bool set)
279 {
280 	int ret;
281 	unsigned int val;
282 	struct k3_priv *priv;
283 
284 	priv = host->priv;
285 
286 	val = set ? SDCARD_IO_SEL18 : 0;
287 	ret = regmap_update_bits(priv->reg, SOC_SCTRL_SCPERCTRL5,
288 				 SDCARD_IO_SEL18, val);
289 	if (ret) {
290 		dev_err(host->dev, "sel18 %u error\n", val);
291 		return ret;
292 	}
293 
294 	return 0;
295 }
296 
297 static void dw_mci_hi3660_set_ios(struct dw_mci *host, struct mmc_ios *ios)
298 {
299 	int ret;
300 	unsigned long wanted;
301 	unsigned long actual;
302 	struct k3_priv *priv = host->priv;
303 
304 	if (!ios->clock || ios->clock == priv->cur_speed)
305 		return;
306 
307 	wanted = ios->clock * (GENCLK_DIV + 1);
308 	ret = clk_set_rate(host->ciu_clk, wanted);
309 	if (ret) {
310 		dev_err(host->dev, "failed to set rate %luHz\n", wanted);
311 		return;
312 	}
313 	actual = clk_get_rate(host->ciu_clk);
314 
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;
319 }
320 
321 static int dw_mci_get_best_clksmpl(unsigned int sample_flag)
322 {
323 	int i;
324 	int interval;
325 	unsigned int v;
326 	unsigned int len;
327 	unsigned int range_start = 0;
328 	unsigned int range_length = 0;
329 	unsigned int middle_range = 0;
330 
331 	if (!sample_flag)
332 		return -EIO;
333 
334 	if (~sample_flag == 0)
335 		return 0;
336 
337 	i = ffs(sample_flag) - 1;
338 
339 	/*
340 	* A clock cycle is divided into 32 phases,
341 	* each of which is represented by a bit,
342 	* finding the optimal phase.
343 	*/
344 	while (i < 32) {
345 		v = ror32(sample_flag, i);
346 		len = ffs(~v) - 1;
347 
348 		if (len > range_length) {
349 			range_length = len;
350 			range_start = i;
351 		}
352 
353 		interval = ffs(v >> len) - 1;
354 		if (interval < 0)
355 			break;
356 
357 		i += len + interval;
358 	}
359 
360 	middle_range = range_start + range_length / 2;
361 	if (middle_range >= 32)
362 		middle_range %= 32;
363 
364 	return middle_range;
365 }
366 
367 static int dw_mci_hi3660_execute_tuning(struct dw_mci_slot *slot, u32 opcode)
368 {
369 	int i = 0;
370 	struct dw_mci *host = slot->host;
371 	struct mmc_host *mmc = slot->mmc;
372 	int smpl_phase = 0;
373 	u32 tuning_sample_flag = 0;
374 	int best_clksmpl = 0;
375 
376 	for (i = 0; i < NUM_PHASES; ++i, ++smpl_phase) {
377 		smpl_phase %= 32;
378 
379 		mci_writel(host, TMOUT, ~0);
380 		dw_mci_hs_set_timing(host, mmc->ios.timing, smpl_phase);
381 
382 		if (!mmc_send_tuning(mmc, opcode, NULL))
383 			tuning_sample_flag |= (1 << smpl_phase);
384 		else
385 			tuning_sample_flag &= ~(1 << smpl_phase);
386 	}
387 
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");
391 		return -EIO;
392 	}
393 
394 	dw_mci_hs_set_timing(host, mmc->ios.timing, best_clksmpl);
395 
396 	dev_info(host->dev, "tuning ok best_clksmpl %u tuning_sample_flag %x\n",
397 		 best_clksmpl, tuning_sample_flag);
398 	return 0;
399 }
400 
401 static int dw_mci_hi3660_switch_voltage(struct mmc_host *mmc,
402 					struct mmc_ios *ios)
403 {
404 	int ret = 0;
405 	struct dw_mci_slot *slot = mmc_priv(mmc);
406 	struct k3_priv *priv;
407 	struct dw_mci *host;
408 
409 	host = slot->host;
410 	priv = host->priv;
411 
412 	if (!priv || !priv->reg)
413 		return 0;
414 
415 	if (priv->ctrl_id == DWMMC_SDIO_ID)
416 		return 0;
417 
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);
422 	if (ret)
423 		return ret;
424 
425 	if (!IS_ERR(mmc->supply.vqmmc)) {
426 		ret = mmc_regulator_set_vqmmc(mmc, ios);
427 		if (ret) {
428 			dev_err(host->dev, "Regulator set error %d\n", ret);
429 			return ret;
430 		}
431 	}
432 
433 	return 0;
434 }
435 
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,
442 };
443 
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, },
448 	{},
449 };
450 MODULE_DEVICE_TABLE(of, dw_mci_k3_match);
451 
452 static int dw_mci_k3_probe(struct platform_device *pdev)
453 {
454 	const struct dw_mci_drv_data *drv_data;
455 	const struct of_device_id *match;
456 
457 	match = of_match_node(dw_mci_k3_match, pdev->dev.of_node);
458 	drv_data = match->data;
459 
460 	return dw_mci_pltfm_register(pdev, drv_data);
461 }
462 
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,
468 			   NULL)
469 };
470 
471 static struct platform_driver dw_mci_k3_pltfm_driver = {
472 	.probe		= dw_mci_k3_probe,
473 	.remove		= dw_mci_pltfm_remove,
474 	.driver		= {
475 		.name		= "dwmmc_k3",
476 		.of_match_table	= dw_mci_k3_match,
477 		.pm		= &dw_mci_k3_dev_pm_ops,
478 	},
479 };
480 
481 module_platform_driver(dw_mci_k3_pltfm_driver);
482 
483 MODULE_DESCRIPTION("K3 Specific DW-MSHC Driver Extension");
484 MODULE_LICENSE("GPL v2");
485 MODULE_ALIAS("platform:dwmmc_k3");
486