1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Copyright (C) STMicroelectronics 2018 - All Rights Reserved
4  * Author: Ludovic.barre@st.com for STMicroelectronics.
5  */
6 #include <linux/bitfield.h>
7 #include <linux/delay.h>
8 #include <linux/dma-mapping.h>
9 #include <linux/iopoll.h>
10 #include <linux/mmc/host.h>
11 #include <linux/mmc/card.h>
12 #include <linux/of_address.h>
13 #include <linux/reset.h>
14 #include <linux/scatterlist.h>
15 #include "mmci.h"
16 
17 #define SDMMC_LLI_BUF_LEN	PAGE_SIZE
18 #define SDMMC_IDMA_BURST	BIT(MMCI_STM32_IDMABNDT_SHIFT)
19 
20 #define DLYB_CR			0x0
21 #define DLYB_CR_DEN		BIT(0)
22 #define DLYB_CR_SEN		BIT(1)
23 
24 #define DLYB_CFGR		0x4
25 #define DLYB_CFGR_SEL_MASK	GENMASK(3, 0)
26 #define DLYB_CFGR_UNIT_MASK	GENMASK(14, 8)
27 #define DLYB_CFGR_LNG_MASK	GENMASK(27, 16)
28 #define DLYB_CFGR_LNGF		BIT(31)
29 
30 #define DLYB_NB_DELAY		11
31 #define DLYB_CFGR_SEL_MAX	(DLYB_NB_DELAY + 1)
32 #define DLYB_CFGR_UNIT_MAX	127
33 
34 #define DLYB_LNG_TIMEOUT_US	1000
35 #define SDMMC_VSWEND_TIMEOUT_US 10000
36 
37 struct sdmmc_lli_desc {
38 	u32 idmalar;
39 	u32 idmabase;
40 	u32 idmasize;
41 };
42 
43 struct sdmmc_idma {
44 	dma_addr_t sg_dma;
45 	void *sg_cpu;
46 };
47 
48 struct sdmmc_dlyb {
49 	void __iomem *base;
50 	u32 unit;
51 	u32 max;
52 };
53 
54 static int sdmmc_idma_validate_data(struct mmci_host *host,
55 				    struct mmc_data *data)
56 {
57 	struct scatterlist *sg;
58 	int i;
59 
60 	/*
61 	 * idma has constraints on idmabase & idmasize for each element
62 	 * excepted the last element which has no constraint on idmasize
63 	 */
64 	for_each_sg(data->sg, sg, data->sg_len - 1, i) {
65 		if (!IS_ALIGNED(data->sg->offset, sizeof(u32)) ||
66 		    !IS_ALIGNED(data->sg->length, SDMMC_IDMA_BURST)) {
67 			dev_err(mmc_dev(host->mmc),
68 				"unaligned scatterlist: ofst:%x length:%d\n",
69 				data->sg->offset, data->sg->length);
70 			return -EINVAL;
71 		}
72 	}
73 
74 	if (!IS_ALIGNED(data->sg->offset, sizeof(u32))) {
75 		dev_err(mmc_dev(host->mmc),
76 			"unaligned last scatterlist: ofst:%x length:%d\n",
77 			data->sg->offset, data->sg->length);
78 		return -EINVAL;
79 	}
80 
81 	return 0;
82 }
83 
84 static int _sdmmc_idma_prep_data(struct mmci_host *host,
85 				 struct mmc_data *data)
86 {
87 	int n_elem;
88 
89 	n_elem = dma_map_sg(mmc_dev(host->mmc),
90 			    data->sg,
91 			    data->sg_len,
92 			    mmc_get_dma_dir(data));
93 
94 	if (!n_elem) {
95 		dev_err(mmc_dev(host->mmc), "dma_map_sg failed\n");
96 		return -EINVAL;
97 	}
98 
99 	return 0;
100 }
101 
102 static int sdmmc_idma_prep_data(struct mmci_host *host,
103 				struct mmc_data *data, bool next)
104 {
105 	/* Check if job is already prepared. */
106 	if (!next && data->host_cookie == host->next_cookie)
107 		return 0;
108 
109 	return _sdmmc_idma_prep_data(host, data);
110 }
111 
112 static void sdmmc_idma_unprep_data(struct mmci_host *host,
113 				   struct mmc_data *data, int err)
114 {
115 	dma_unmap_sg(mmc_dev(host->mmc), data->sg, data->sg_len,
116 		     mmc_get_dma_dir(data));
117 }
118 
119 static int sdmmc_idma_setup(struct mmci_host *host)
120 {
121 	struct sdmmc_idma *idma;
122 
123 	idma = devm_kzalloc(mmc_dev(host->mmc), sizeof(*idma), GFP_KERNEL);
124 	if (!idma)
125 		return -ENOMEM;
126 
127 	host->dma_priv = idma;
128 
129 	if (host->variant->dma_lli) {
130 		idma->sg_cpu = dmam_alloc_coherent(mmc_dev(host->mmc),
131 						   SDMMC_LLI_BUF_LEN,
132 						   &idma->sg_dma, GFP_KERNEL);
133 		if (!idma->sg_cpu) {
134 			dev_err(mmc_dev(host->mmc),
135 				"Failed to alloc IDMA descriptor\n");
136 			return -ENOMEM;
137 		}
138 		host->mmc->max_segs = SDMMC_LLI_BUF_LEN /
139 			sizeof(struct sdmmc_lli_desc);
140 		host->mmc->max_seg_size = host->variant->stm32_idmabsize_mask;
141 	} else {
142 		host->mmc->max_segs = 1;
143 		host->mmc->max_seg_size = host->mmc->max_req_size;
144 	}
145 
146 	return 0;
147 }
148 
149 static int sdmmc_idma_start(struct mmci_host *host, unsigned int *datactrl)
150 
151 {
152 	struct sdmmc_idma *idma = host->dma_priv;
153 	struct sdmmc_lli_desc *desc = (struct sdmmc_lli_desc *)idma->sg_cpu;
154 	struct mmc_data *data = host->data;
155 	struct scatterlist *sg;
156 	int i;
157 
158 	if (!host->variant->dma_lli || data->sg_len == 1) {
159 		writel_relaxed(sg_dma_address(data->sg),
160 			       host->base + MMCI_STM32_IDMABASE0R);
161 		writel_relaxed(MMCI_STM32_IDMAEN,
162 			       host->base + MMCI_STM32_IDMACTRLR);
163 		return 0;
164 	}
165 
166 	for_each_sg(data->sg, sg, data->sg_len, i) {
167 		desc[i].idmalar = (i + 1) * sizeof(struct sdmmc_lli_desc);
168 		desc[i].idmalar |= MMCI_STM32_ULA | MMCI_STM32_ULS
169 			| MMCI_STM32_ABR;
170 		desc[i].idmabase = sg_dma_address(sg);
171 		desc[i].idmasize = sg_dma_len(sg);
172 	}
173 
174 	/* notice the end of link list */
175 	desc[data->sg_len - 1].idmalar &= ~MMCI_STM32_ULA;
176 
177 	dma_wmb();
178 	writel_relaxed(idma->sg_dma, host->base + MMCI_STM32_IDMABAR);
179 	writel_relaxed(desc[0].idmalar, host->base + MMCI_STM32_IDMALAR);
180 	writel_relaxed(desc[0].idmabase, host->base + MMCI_STM32_IDMABASE0R);
181 	writel_relaxed(desc[0].idmasize, host->base + MMCI_STM32_IDMABSIZER);
182 	writel_relaxed(MMCI_STM32_IDMAEN | MMCI_STM32_IDMALLIEN,
183 		       host->base + MMCI_STM32_IDMACTRLR);
184 
185 	return 0;
186 }
187 
188 static void sdmmc_idma_finalize(struct mmci_host *host, struct mmc_data *data)
189 {
190 	writel_relaxed(0, host->base + MMCI_STM32_IDMACTRLR);
191 
192 	if (!data->host_cookie)
193 		sdmmc_idma_unprep_data(host, data, 0);
194 }
195 
196 static void mmci_sdmmc_set_clkreg(struct mmci_host *host, unsigned int desired)
197 {
198 	unsigned int clk = 0, ddr = 0;
199 
200 	if (host->mmc->ios.timing == MMC_TIMING_MMC_DDR52 ||
201 	    host->mmc->ios.timing == MMC_TIMING_UHS_DDR50)
202 		ddr = MCI_STM32_CLK_DDR;
203 
204 	/*
205 	 * cclk = mclk / (2 * clkdiv)
206 	 * clkdiv 0 => bypass
207 	 * in ddr mode bypass is not possible
208 	 */
209 	if (desired) {
210 		if (desired >= host->mclk && !ddr) {
211 			host->cclk = host->mclk;
212 		} else {
213 			clk = DIV_ROUND_UP(host->mclk, 2 * desired);
214 			if (clk > MCI_STM32_CLK_CLKDIV_MSK)
215 				clk = MCI_STM32_CLK_CLKDIV_MSK;
216 			host->cclk = host->mclk / (2 * clk);
217 		}
218 	} else {
219 		/*
220 		 * while power-on phase the clock can't be define to 0,
221 		 * Only power-off and power-cyc deactivate the clock.
222 		 * if desired clock is 0, set max divider
223 		 */
224 		clk = MCI_STM32_CLK_CLKDIV_MSK;
225 		host->cclk = host->mclk / (2 * clk);
226 	}
227 
228 	/* Set actual clock for debug */
229 	if (host->mmc->ios.power_mode == MMC_POWER_ON)
230 		host->mmc->actual_clock = host->cclk;
231 	else
232 		host->mmc->actual_clock = 0;
233 
234 	if (host->mmc->ios.bus_width == MMC_BUS_WIDTH_4)
235 		clk |= MCI_STM32_CLK_WIDEBUS_4;
236 	if (host->mmc->ios.bus_width == MMC_BUS_WIDTH_8)
237 		clk |= MCI_STM32_CLK_WIDEBUS_8;
238 
239 	clk |= MCI_STM32_CLK_HWFCEN;
240 	clk |= host->clk_reg_add;
241 	clk |= ddr;
242 
243 	/*
244 	 * SDMMC_FBCK is selected when an external Delay Block is needed
245 	 * with SDR104.
246 	 */
247 	if (host->mmc->ios.timing >= MMC_TIMING_UHS_SDR50) {
248 		clk |= MCI_STM32_CLK_BUSSPEED;
249 		if (host->mmc->ios.timing == MMC_TIMING_UHS_SDR104) {
250 			clk &= ~MCI_STM32_CLK_SEL_MSK;
251 			clk |= MCI_STM32_CLK_SELFBCK;
252 		}
253 	}
254 
255 	mmci_write_clkreg(host, clk);
256 }
257 
258 static void sdmmc_dlyb_input_ck(struct sdmmc_dlyb *dlyb)
259 {
260 	if (!dlyb || !dlyb->base)
261 		return;
262 
263 	/* Output clock = Input clock */
264 	writel_relaxed(0, dlyb->base + DLYB_CR);
265 }
266 
267 static void mmci_sdmmc_set_pwrreg(struct mmci_host *host, unsigned int pwr)
268 {
269 	struct mmc_ios ios = host->mmc->ios;
270 	struct sdmmc_dlyb *dlyb = host->variant_priv;
271 
272 	/* adds OF options */
273 	pwr = host->pwr_reg_add;
274 
275 	sdmmc_dlyb_input_ck(dlyb);
276 
277 	if (ios.power_mode == MMC_POWER_OFF) {
278 		/* Only a reset could power-off sdmmc */
279 		reset_control_assert(host->rst);
280 		udelay(2);
281 		reset_control_deassert(host->rst);
282 
283 		/*
284 		 * Set the SDMMC in Power-cycle state.
285 		 * This will make that the SDMMC_D[7:0], SDMMC_CMD and SDMMC_CK
286 		 * are driven low, to prevent the Card from being supplied
287 		 * through the signal lines.
288 		 */
289 		mmci_write_pwrreg(host, MCI_STM32_PWR_CYC | pwr);
290 	} else if (ios.power_mode == MMC_POWER_ON) {
291 		/*
292 		 * After power-off (reset): the irq mask defined in probe
293 		 * functionis lost
294 		 * ault irq mask (probe) must be activated
295 		 */
296 		writel(MCI_IRQENABLE | host->variant->start_err,
297 		       host->base + MMCIMASK0);
298 
299 		/* preserves voltage switch bits */
300 		pwr |= host->pwr_reg & (MCI_STM32_VSWITCHEN |
301 					MCI_STM32_VSWITCH);
302 
303 		/*
304 		 * After a power-cycle state, we must set the SDMMC in
305 		 * Power-off. The SDMMC_D[7:0], SDMMC_CMD and SDMMC_CK are
306 		 * driven high. Then we can set the SDMMC to Power-on state
307 		 */
308 		mmci_write_pwrreg(host, MCI_PWR_OFF | pwr);
309 		mdelay(1);
310 		mmci_write_pwrreg(host, MCI_PWR_ON | pwr);
311 	}
312 }
313 
314 static u32 sdmmc_get_dctrl_cfg(struct mmci_host *host)
315 {
316 	u32 datactrl;
317 
318 	datactrl = mmci_dctrl_blksz(host);
319 
320 	if (host->mmc->card && mmc_card_sdio(host->mmc->card) &&
321 	    host->data->blocks == 1)
322 		datactrl |= MCI_DPSM_STM32_MODE_SDIO;
323 	else if (host->data->stop && !host->mrq->sbc)
324 		datactrl |= MCI_DPSM_STM32_MODE_BLOCK_STOP;
325 	else
326 		datactrl |= MCI_DPSM_STM32_MODE_BLOCK;
327 
328 	return datactrl;
329 }
330 
331 static bool sdmmc_busy_complete(struct mmci_host *host, u32 status, u32 err_msk)
332 {
333 	void __iomem *base = host->base;
334 	u32 busy_d0, busy_d0end, mask, sdmmc_status;
335 
336 	mask = readl_relaxed(base + MMCIMASK0);
337 	sdmmc_status = readl_relaxed(base + MMCISTATUS);
338 	busy_d0end = sdmmc_status & MCI_STM32_BUSYD0END;
339 	busy_d0 = sdmmc_status & MCI_STM32_BUSYD0;
340 
341 	/* complete if there is an error or busy_d0end */
342 	if ((status & err_msk) || busy_d0end)
343 		goto complete;
344 
345 	/*
346 	 * On response the busy signaling is reflected in the BUSYD0 flag.
347 	 * if busy_d0 is in-progress we must activate busyd0end interrupt
348 	 * to wait this completion. Else this request has no busy step.
349 	 */
350 	if (busy_d0) {
351 		if (!host->busy_status) {
352 			writel_relaxed(mask | host->variant->busy_detect_mask,
353 				       base + MMCIMASK0);
354 			host->busy_status = status &
355 				(MCI_CMDSENT | MCI_CMDRESPEND);
356 		}
357 		return false;
358 	}
359 
360 complete:
361 	if (host->busy_status) {
362 		writel_relaxed(mask & ~host->variant->busy_detect_mask,
363 			       base + MMCIMASK0);
364 		host->busy_status = 0;
365 	}
366 
367 	writel_relaxed(host->variant->busy_detect_mask, base + MMCICLEAR);
368 
369 	return true;
370 }
371 
372 static void sdmmc_dlyb_set_cfgr(struct sdmmc_dlyb *dlyb,
373 				int unit, int phase, bool sampler)
374 {
375 	u32 cfgr;
376 
377 	writel_relaxed(DLYB_CR_SEN | DLYB_CR_DEN, dlyb->base + DLYB_CR);
378 
379 	cfgr = FIELD_PREP(DLYB_CFGR_UNIT_MASK, unit) |
380 	       FIELD_PREP(DLYB_CFGR_SEL_MASK, phase);
381 	writel_relaxed(cfgr, dlyb->base + DLYB_CFGR);
382 
383 	if (!sampler)
384 		writel_relaxed(DLYB_CR_DEN, dlyb->base + DLYB_CR);
385 }
386 
387 static int sdmmc_dlyb_lng_tuning(struct mmci_host *host)
388 {
389 	struct sdmmc_dlyb *dlyb = host->variant_priv;
390 	u32 cfgr;
391 	int i, lng, ret;
392 
393 	for (i = 0; i <= DLYB_CFGR_UNIT_MAX; i++) {
394 		sdmmc_dlyb_set_cfgr(dlyb, i, DLYB_CFGR_SEL_MAX, true);
395 
396 		ret = readl_relaxed_poll_timeout(dlyb->base + DLYB_CFGR, cfgr,
397 						 (cfgr & DLYB_CFGR_LNGF),
398 						 1, DLYB_LNG_TIMEOUT_US);
399 		if (ret) {
400 			dev_warn(mmc_dev(host->mmc),
401 				 "delay line cfg timeout unit:%d cfgr:%d\n",
402 				 i, cfgr);
403 			continue;
404 		}
405 
406 		lng = FIELD_GET(DLYB_CFGR_LNG_MASK, cfgr);
407 		if (lng < BIT(DLYB_NB_DELAY) && lng > 0)
408 			break;
409 	}
410 
411 	if (i > DLYB_CFGR_UNIT_MAX)
412 		return -EINVAL;
413 
414 	dlyb->unit = i;
415 	dlyb->max = __fls(lng);
416 
417 	return 0;
418 }
419 
420 static int sdmmc_dlyb_phase_tuning(struct mmci_host *host, u32 opcode)
421 {
422 	struct sdmmc_dlyb *dlyb = host->variant_priv;
423 	int cur_len = 0, max_len = 0, end_of_len = 0;
424 	int phase;
425 
426 	for (phase = 0; phase <= dlyb->max; phase++) {
427 		sdmmc_dlyb_set_cfgr(dlyb, dlyb->unit, phase, false);
428 
429 		if (mmc_send_tuning(host->mmc, opcode, NULL)) {
430 			cur_len = 0;
431 		} else {
432 			cur_len++;
433 			if (cur_len > max_len) {
434 				max_len = cur_len;
435 				end_of_len = phase;
436 			}
437 		}
438 	}
439 
440 	if (!max_len) {
441 		dev_err(mmc_dev(host->mmc), "no tuning point found\n");
442 		return -EINVAL;
443 	}
444 
445 	phase = end_of_len - max_len / 2;
446 	sdmmc_dlyb_set_cfgr(dlyb, dlyb->unit, phase, false);
447 
448 	dev_dbg(mmc_dev(host->mmc), "unit:%d max_dly:%d phase:%d\n",
449 		dlyb->unit, dlyb->max, phase);
450 
451 	return 0;
452 }
453 
454 static int sdmmc_execute_tuning(struct mmc_host *mmc, u32 opcode)
455 {
456 	struct mmci_host *host = mmc_priv(mmc);
457 	struct sdmmc_dlyb *dlyb = host->variant_priv;
458 
459 	if (!dlyb || !dlyb->base)
460 		return -EINVAL;
461 
462 	if (sdmmc_dlyb_lng_tuning(host))
463 		return -EINVAL;
464 
465 	return sdmmc_dlyb_phase_tuning(host, opcode);
466 }
467 
468 static void sdmmc_pre_sig_volt_vswitch(struct mmci_host *host)
469 {
470 	/* clear the voltage switch completion flag */
471 	writel_relaxed(MCI_STM32_VSWENDC, host->base + MMCICLEAR);
472 	/* enable Voltage switch procedure */
473 	mmci_write_pwrreg(host, host->pwr_reg | MCI_STM32_VSWITCHEN);
474 }
475 
476 static int sdmmc_post_sig_volt_switch(struct mmci_host *host,
477 				      struct mmc_ios *ios)
478 {
479 	unsigned long flags;
480 	u32 status;
481 	int ret = 0;
482 
483 	if (ios->signal_voltage == MMC_SIGNAL_VOLTAGE_180) {
484 		spin_lock_irqsave(&host->lock, flags);
485 		mmci_write_pwrreg(host, host->pwr_reg | MCI_STM32_VSWITCH);
486 		spin_unlock_irqrestore(&host->lock, flags);
487 
488 		/* wait voltage switch completion while 10ms */
489 		ret = readl_relaxed_poll_timeout(host->base + MMCISTATUS,
490 						 status,
491 						 (status & MCI_STM32_VSWEND),
492 						 10, SDMMC_VSWEND_TIMEOUT_US);
493 
494 		writel_relaxed(MCI_STM32_VSWENDC | MCI_STM32_CKSTOPC,
495 			       host->base + MMCICLEAR);
496 		mmci_write_pwrreg(host, host->pwr_reg &
497 				  ~(MCI_STM32_VSWITCHEN | MCI_STM32_VSWITCH));
498 	}
499 
500 	return ret;
501 }
502 
503 static struct mmci_host_ops sdmmc_variant_ops = {
504 	.validate_data = sdmmc_idma_validate_data,
505 	.prep_data = sdmmc_idma_prep_data,
506 	.unprep_data = sdmmc_idma_unprep_data,
507 	.get_datactrl_cfg = sdmmc_get_dctrl_cfg,
508 	.dma_setup = sdmmc_idma_setup,
509 	.dma_start = sdmmc_idma_start,
510 	.dma_finalize = sdmmc_idma_finalize,
511 	.set_clkreg = mmci_sdmmc_set_clkreg,
512 	.set_pwrreg = mmci_sdmmc_set_pwrreg,
513 	.busy_complete = sdmmc_busy_complete,
514 	.pre_sig_volt_switch = sdmmc_pre_sig_volt_vswitch,
515 	.post_sig_volt_switch = sdmmc_post_sig_volt_switch,
516 };
517 
518 void sdmmc_variant_init(struct mmci_host *host)
519 {
520 	struct device_node *np = host->mmc->parent->of_node;
521 	void __iomem *base_dlyb;
522 	struct sdmmc_dlyb *dlyb;
523 
524 	host->ops = &sdmmc_variant_ops;
525 	host->pwr_reg = readl_relaxed(host->base + MMCIPOWER);
526 
527 	base_dlyb = devm_of_iomap(mmc_dev(host->mmc), np, 1, NULL);
528 	if (IS_ERR(base_dlyb))
529 		return;
530 
531 	dlyb = devm_kzalloc(mmc_dev(host->mmc), sizeof(*dlyb), GFP_KERNEL);
532 	if (!dlyb)
533 		return;
534 
535 	dlyb->base = base_dlyb;
536 	host->variant_priv = dlyb;
537 	host->mmc_ops->execute_tuning = sdmmc_execute_tuning;
538 }
539