xref: /openbmc/u-boot/drivers/mmc/tmio-common.c (revision 76f6d52e)
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright (C) 2016 Socionext Inc.
4  *   Author: Masahiro Yamada <yamada.masahiro@socionext.com>
5  */
6 
7 #include <common.h>
8 #include <clk.h>
9 #include <fdtdec.h>
10 #include <mmc.h>
11 #include <dm.h>
12 #include <dm/pinctrl.h>
13 #include <linux/compat.h>
14 #include <linux/dma-direction.h>
15 #include <linux/io.h>
16 #include <linux/sizes.h>
17 #include <power/regulator.h>
18 #include <asm/unaligned.h>
19 
20 #include "tmio-common.h"
21 
22 DECLARE_GLOBAL_DATA_PTR;
23 
24 static u64 tmio_sd_readq(struct tmio_sd_priv *priv, unsigned int reg)
25 {
26 	return readq(priv->regbase + (reg << 1));
27 }
28 
29 static void tmio_sd_writeq(struct tmio_sd_priv *priv,
30 			       u64 val, unsigned int reg)
31 {
32 	writeq(val, priv->regbase + (reg << 1));
33 }
34 
35 static u16 tmio_sd_readw(struct tmio_sd_priv *priv, unsigned int reg)
36 {
37 	return readw(priv->regbase + (reg >> 1));
38 }
39 
40 static void tmio_sd_writew(struct tmio_sd_priv *priv,
41 			       u16 val, unsigned int reg)
42 {
43 	writew(val, priv->regbase + (reg >> 1));
44 }
45 
46 u32 tmio_sd_readl(struct tmio_sd_priv *priv, unsigned int reg)
47 {
48 	u32 val;
49 
50 	if (priv->caps & TMIO_SD_CAP_64BIT)
51 		return readl(priv->regbase + (reg << 1));
52 	else if (priv->caps & TMIO_SD_CAP_16BIT) {
53 		val = readw(priv->regbase + (reg >> 1)) & 0xffff;
54 		if ((reg == TMIO_SD_RSP10) || (reg == TMIO_SD_RSP32) ||
55 		    (reg == TMIO_SD_RSP54) || (reg == TMIO_SD_RSP76)) {
56 			val |= readw(priv->regbase + (reg >> 1) + 2) << 16;
57 		}
58 		return val;
59 	} else
60 		return readl(priv->regbase + reg);
61 }
62 
63 void tmio_sd_writel(struct tmio_sd_priv *priv,
64 			       u32 val, unsigned int reg)
65 {
66 	if (priv->caps & TMIO_SD_CAP_64BIT)
67 		writel(val, priv->regbase + (reg << 1));
68 	else if (priv->caps & TMIO_SD_CAP_16BIT) {
69 		writew(val & 0xffff, priv->regbase + (reg >> 1));
70 		if (reg == TMIO_SD_INFO1 || reg == TMIO_SD_INFO1_MASK ||
71 		    reg == TMIO_SD_INFO2 || reg == TMIO_SD_INFO2_MASK ||
72 		    reg == TMIO_SD_ARG)
73 			writew(val >> 16, priv->regbase + (reg >> 1) + 2);
74 	} else
75 		writel(val, priv->regbase + reg);
76 }
77 
78 static dma_addr_t __dma_map_single(void *ptr, size_t size,
79 				   enum dma_data_direction dir)
80 {
81 	unsigned long addr = (unsigned long)ptr;
82 
83 	if (dir == DMA_FROM_DEVICE)
84 		invalidate_dcache_range(addr, addr + size);
85 	else
86 		flush_dcache_range(addr, addr + size);
87 
88 	return addr;
89 }
90 
91 static void __dma_unmap_single(dma_addr_t addr, size_t size,
92 			       enum dma_data_direction dir)
93 {
94 	if (dir != DMA_TO_DEVICE)
95 		invalidate_dcache_range(addr, addr + size);
96 }
97 
98 static int tmio_sd_check_error(struct udevice *dev, struct mmc_cmd *cmd)
99 {
100 	struct tmio_sd_priv *priv = dev_get_priv(dev);
101 	u32 info2 = tmio_sd_readl(priv, TMIO_SD_INFO2);
102 
103 	if (info2 & TMIO_SD_INFO2_ERR_RTO) {
104 		/*
105 		 * TIMEOUT must be returned for unsupported command.  Do not
106 		 * display error log since this might be a part of sequence to
107 		 * distinguish between SD and MMC.
108 		 */
109 		return -ETIMEDOUT;
110 	}
111 
112 	if (info2 & TMIO_SD_INFO2_ERR_TO) {
113 		dev_err(dev, "timeout error\n");
114 		return -ETIMEDOUT;
115 	}
116 
117 	if (info2 & (TMIO_SD_INFO2_ERR_END | TMIO_SD_INFO2_ERR_CRC |
118 		     TMIO_SD_INFO2_ERR_IDX)) {
119 		if ((cmd->cmdidx != MMC_CMD_SEND_TUNING_BLOCK) &&
120 		    (cmd->cmdidx != MMC_CMD_SEND_TUNING_BLOCK_HS200))
121 			dev_err(dev, "communication out of sync\n");
122 		return -EILSEQ;
123 	}
124 
125 	if (info2 & (TMIO_SD_INFO2_ERR_ILA | TMIO_SD_INFO2_ERR_ILR |
126 		     TMIO_SD_INFO2_ERR_ILW)) {
127 		dev_err(dev, "illegal access\n");
128 		return -EIO;
129 	}
130 
131 	return 0;
132 }
133 
134 static int tmio_sd_wait_for_irq(struct udevice *dev, struct mmc_cmd *cmd,
135 				unsigned int reg, u32 flag)
136 {
137 	struct tmio_sd_priv *priv = dev_get_priv(dev);
138 	long wait = 1000000;
139 	int ret;
140 
141 	while (!(tmio_sd_readl(priv, reg) & flag)) {
142 		if (wait-- < 0) {
143 			dev_err(dev, "timeout\n");
144 			return -ETIMEDOUT;
145 		}
146 
147 		ret = tmio_sd_check_error(dev, cmd);
148 		if (ret)
149 			return ret;
150 
151 		udelay(1);
152 	}
153 
154 	return 0;
155 }
156 
157 #define tmio_pio_read_fifo(__width, __suffix)				\
158 static void tmio_pio_read_fifo_##__width(struct tmio_sd_priv *priv,	\
159 					  char *pbuf, uint blksz)	\
160 {									\
161 	u##__width *buf = (u##__width *)pbuf;				\
162 	int i;								\
163 									\
164 	if (likely(IS_ALIGNED((uintptr_t)buf, ((__width) / 8)))) {	\
165 		for (i = 0; i < blksz / ((__width) / 8); i++) {		\
166 			*buf++ = tmio_sd_read##__suffix(priv,		\
167 							 TMIO_SD_BUF);	\
168 		}							\
169 	} else {							\
170 		for (i = 0; i < blksz / ((__width) / 8); i++) {		\
171 			u##__width data;				\
172 			data = tmio_sd_read##__suffix(priv,		\
173 						       TMIO_SD_BUF);	\
174 			put_unaligned(data, buf++);			\
175 		}							\
176 	}								\
177 }
178 
179 tmio_pio_read_fifo(64, q)
180 tmio_pio_read_fifo(32, l)
181 tmio_pio_read_fifo(16, w)
182 
183 static int tmio_sd_pio_read_one_block(struct udevice *dev, struct mmc_cmd *cmd,
184 				      char *pbuf, uint blocksize)
185 {
186 	struct tmio_sd_priv *priv = dev_get_priv(dev);
187 	int ret;
188 
189 	/* wait until the buffer is filled with data */
190 	ret = tmio_sd_wait_for_irq(dev, cmd, TMIO_SD_INFO2,
191 				   TMIO_SD_INFO2_BRE);
192 	if (ret)
193 		return ret;
194 
195 	/*
196 	 * Clear the status flag _before_ read the buffer out because
197 	 * TMIO_SD_INFO2_BRE is edge-triggered, not level-triggered.
198 	 */
199 	tmio_sd_writel(priv, 0, TMIO_SD_INFO2);
200 
201 	if (priv->caps & TMIO_SD_CAP_64BIT)
202 		tmio_pio_read_fifo_64(priv, pbuf, blocksize);
203 	else if (priv->caps & TMIO_SD_CAP_16BIT)
204 		tmio_pio_read_fifo_16(priv, pbuf, blocksize);
205 	else
206 		tmio_pio_read_fifo_32(priv, pbuf, blocksize);
207 
208 	return 0;
209 }
210 
211 #define tmio_pio_write_fifo(__width, __suffix)				\
212 static void tmio_pio_write_fifo_##__width(struct tmio_sd_priv *priv,	\
213 					   const char *pbuf, uint blksz)\
214 {									\
215 	const u##__width *buf = (const u##__width *)pbuf;		\
216 	int i;								\
217 									\
218 	if (likely(IS_ALIGNED((uintptr_t)buf, ((__width) / 8)))) {	\
219 		for (i = 0; i < blksz / ((__width) / 8); i++) {		\
220 			tmio_sd_write##__suffix(priv, *buf++,		\
221 						 TMIO_SD_BUF);		\
222 		}							\
223 	} else {							\
224 		for (i = 0; i < blksz / ((__width) / 8); i++) {		\
225 			u##__width data = get_unaligned(buf++);		\
226 			tmio_sd_write##__suffix(priv, data,		\
227 						 TMIO_SD_BUF);		\
228 		}							\
229 	}								\
230 }
231 
232 tmio_pio_write_fifo(64, q)
233 tmio_pio_write_fifo(32, l)
234 tmio_pio_write_fifo(16, w)
235 
236 static int tmio_sd_pio_write_one_block(struct udevice *dev, struct mmc_cmd *cmd,
237 					   const char *pbuf, uint blocksize)
238 {
239 	struct tmio_sd_priv *priv = dev_get_priv(dev);
240 	int ret;
241 
242 	/* wait until the buffer becomes empty */
243 	ret = tmio_sd_wait_for_irq(dev, cmd, TMIO_SD_INFO2,
244 				   TMIO_SD_INFO2_BWE);
245 	if (ret)
246 		return ret;
247 
248 	tmio_sd_writel(priv, 0, TMIO_SD_INFO2);
249 
250 	if (priv->caps & TMIO_SD_CAP_64BIT)
251 		tmio_pio_write_fifo_64(priv, pbuf, blocksize);
252 	else if (priv->caps & TMIO_SD_CAP_16BIT)
253 		tmio_pio_write_fifo_16(priv, pbuf, blocksize);
254 	else
255 		tmio_pio_write_fifo_32(priv, pbuf, blocksize);
256 
257 	return 0;
258 }
259 
260 static int tmio_sd_pio_xfer(struct udevice *dev, struct mmc_cmd *cmd,
261 			    struct mmc_data *data)
262 {
263 	const char *src = data->src;
264 	char *dest = data->dest;
265 	int i, ret;
266 
267 	for (i = 0; i < data->blocks; i++) {
268 		if (data->flags & MMC_DATA_READ)
269 			ret = tmio_sd_pio_read_one_block(dev, cmd, dest,
270 							     data->blocksize);
271 		else
272 			ret = tmio_sd_pio_write_one_block(dev, cmd, src,
273 							      data->blocksize);
274 		if (ret)
275 			return ret;
276 
277 		if (data->flags & MMC_DATA_READ)
278 			dest += data->blocksize;
279 		else
280 			src += data->blocksize;
281 	}
282 
283 	return 0;
284 }
285 
286 static void tmio_sd_dma_start(struct tmio_sd_priv *priv,
287 				  dma_addr_t dma_addr)
288 {
289 	u32 tmp;
290 
291 	tmio_sd_writel(priv, 0, TMIO_SD_DMA_INFO1);
292 	tmio_sd_writel(priv, 0, TMIO_SD_DMA_INFO2);
293 
294 	/* enable DMA */
295 	tmp = tmio_sd_readl(priv, TMIO_SD_EXTMODE);
296 	tmp |= TMIO_SD_EXTMODE_DMA_EN;
297 	tmio_sd_writel(priv, tmp, TMIO_SD_EXTMODE);
298 
299 	tmio_sd_writel(priv, dma_addr & U32_MAX, TMIO_SD_DMA_ADDR_L);
300 
301 	/* suppress the warning "right shift count >= width of type" */
302 	dma_addr >>= min_t(int, 32, 8 * sizeof(dma_addr));
303 
304 	tmio_sd_writel(priv, dma_addr & U32_MAX, TMIO_SD_DMA_ADDR_H);
305 
306 	tmio_sd_writel(priv, TMIO_SD_DMA_CTL_START, TMIO_SD_DMA_CTL);
307 }
308 
309 static int tmio_sd_dma_wait_for_irq(struct udevice *dev, u32 flag,
310 					unsigned int blocks)
311 {
312 	struct tmio_sd_priv *priv = dev_get_priv(dev);
313 	long wait = 1000000 + 10 * blocks;
314 
315 	while (!(tmio_sd_readl(priv, TMIO_SD_DMA_INFO1) & flag)) {
316 		if (wait-- < 0) {
317 			dev_err(dev, "timeout during DMA\n");
318 			return -ETIMEDOUT;
319 		}
320 
321 		udelay(10);
322 	}
323 
324 	if (tmio_sd_readl(priv, TMIO_SD_DMA_INFO2)) {
325 		dev_err(dev, "error during DMA\n");
326 		return -EIO;
327 	}
328 
329 	return 0;
330 }
331 
332 static int tmio_sd_dma_xfer(struct udevice *dev, struct mmc_data *data)
333 {
334 	struct tmio_sd_priv *priv = dev_get_priv(dev);
335 	size_t len = data->blocks * data->blocksize;
336 	void *buf;
337 	enum dma_data_direction dir;
338 	dma_addr_t dma_addr;
339 	u32 poll_flag, tmp;
340 	int ret;
341 
342 	tmp = tmio_sd_readl(priv, TMIO_SD_DMA_MODE);
343 
344 	if (data->flags & MMC_DATA_READ) {
345 		buf = data->dest;
346 		dir = DMA_FROM_DEVICE;
347 		/*
348 		 * The DMA READ completion flag position differs on Socionext
349 		 * and Renesas SoCs. It is bit 20 on Socionext SoCs and using
350 		 * bit 17 is a hardware bug and forbidden. It is bit 17 on
351 		 * Renesas SoCs and bit 20 does not work on them.
352 		 */
353 		poll_flag = (priv->caps & TMIO_SD_CAP_RCAR) ?
354 			    TMIO_SD_DMA_INFO1_END_RD :
355 			    TMIO_SD_DMA_INFO1_END_RD2;
356 		tmp |= TMIO_SD_DMA_MODE_DIR_RD;
357 	} else {
358 		buf = (void *)data->src;
359 		dir = DMA_TO_DEVICE;
360 		poll_flag = TMIO_SD_DMA_INFO1_END_WR;
361 		tmp &= ~TMIO_SD_DMA_MODE_DIR_RD;
362 	}
363 
364 	tmio_sd_writel(priv, tmp, TMIO_SD_DMA_MODE);
365 
366 	dma_addr = __dma_map_single(buf, len, dir);
367 
368 	tmio_sd_dma_start(priv, dma_addr);
369 
370 	ret = tmio_sd_dma_wait_for_irq(dev, poll_flag, data->blocks);
371 
372 	__dma_unmap_single(dma_addr, len, dir);
373 
374 	return ret;
375 }
376 
377 /* check if the address is DMA'able */
378 static bool tmio_sd_addr_is_dmaable(const char *src)
379 {
380 	uintptr_t addr = (uintptr_t)src;
381 
382 	if (!IS_ALIGNED(addr, TMIO_SD_DMA_MINALIGN))
383 		return false;
384 
385 #if defined(CONFIG_RCAR_GEN3)
386 	/* Gen3 DMA has 32bit limit */
387 	if (addr >> 32)
388 		return false;
389 #endif
390 
391 #if defined(CONFIG_ARCH_UNIPHIER) && !defined(CONFIG_ARM64) && \
392 	defined(CONFIG_SPL_BUILD)
393 	/*
394 	 * For UniPhier ARMv7 SoCs, the stack is allocated in the locked ways
395 	 * of L2, which is unreachable from the DMA engine.
396 	 */
397 	if (addr < CONFIG_SPL_STACK)
398 		return false;
399 #endif
400 
401 	return true;
402 }
403 
404 int tmio_sd_send_cmd(struct udevice *dev, struct mmc_cmd *cmd,
405 		      struct mmc_data *data)
406 {
407 	struct tmio_sd_priv *priv = dev_get_priv(dev);
408 	int ret;
409 	u32 tmp;
410 
411 	if (tmio_sd_readl(priv, TMIO_SD_INFO2) & TMIO_SD_INFO2_CBSY) {
412 		dev_err(dev, "command busy\n");
413 		return -EBUSY;
414 	}
415 
416 	/* clear all status flags */
417 	tmio_sd_writel(priv, 0, TMIO_SD_INFO1);
418 	tmio_sd_writel(priv, 0, TMIO_SD_INFO2);
419 
420 	/* disable DMA once */
421 	tmp = tmio_sd_readl(priv, TMIO_SD_EXTMODE);
422 	tmp &= ~TMIO_SD_EXTMODE_DMA_EN;
423 	tmio_sd_writel(priv, tmp, TMIO_SD_EXTMODE);
424 
425 	tmio_sd_writel(priv, cmd->cmdarg, TMIO_SD_ARG);
426 
427 	tmp = cmd->cmdidx;
428 
429 	if (data) {
430 		tmio_sd_writel(priv, data->blocksize, TMIO_SD_SIZE);
431 		tmio_sd_writel(priv, data->blocks, TMIO_SD_SECCNT);
432 
433 		/* Do not send CMD12 automatically */
434 		tmp |= TMIO_SD_CMD_NOSTOP | TMIO_SD_CMD_DATA;
435 
436 		if (data->blocks > 1)
437 			tmp |= TMIO_SD_CMD_MULTI;
438 
439 		if (data->flags & MMC_DATA_READ)
440 			tmp |= TMIO_SD_CMD_RD;
441 	}
442 
443 	/*
444 	 * Do not use the response type auto-detection on this hardware.
445 	 * CMD8, for example, has different response types on SD and eMMC,
446 	 * while this controller always assumes the response type for SD.
447 	 * Set the response type manually.
448 	 */
449 	switch (cmd->resp_type) {
450 	case MMC_RSP_NONE:
451 		tmp |= TMIO_SD_CMD_RSP_NONE;
452 		break;
453 	case MMC_RSP_R1:
454 		tmp |= TMIO_SD_CMD_RSP_R1;
455 		break;
456 	case MMC_RSP_R1b:
457 		tmp |= TMIO_SD_CMD_RSP_R1B;
458 		break;
459 	case MMC_RSP_R2:
460 		tmp |= TMIO_SD_CMD_RSP_R2;
461 		break;
462 	case MMC_RSP_R3:
463 		tmp |= TMIO_SD_CMD_RSP_R3;
464 		break;
465 	default:
466 		dev_err(dev, "unknown response type\n");
467 		return -EINVAL;
468 	}
469 
470 	dev_dbg(dev, "sending CMD%d (SD_CMD=%08x, SD_ARG=%08x)\n",
471 		cmd->cmdidx, tmp, cmd->cmdarg);
472 	tmio_sd_writel(priv, tmp, TMIO_SD_CMD);
473 
474 	ret = tmio_sd_wait_for_irq(dev, cmd, TMIO_SD_INFO1,
475 				   TMIO_SD_INFO1_RSP);
476 	if (ret)
477 		return ret;
478 
479 	if (cmd->resp_type & MMC_RSP_136) {
480 		u32 rsp_127_104 = tmio_sd_readl(priv, TMIO_SD_RSP76);
481 		u32 rsp_103_72 = tmio_sd_readl(priv, TMIO_SD_RSP54);
482 		u32 rsp_71_40 = tmio_sd_readl(priv, TMIO_SD_RSP32);
483 		u32 rsp_39_8 = tmio_sd_readl(priv, TMIO_SD_RSP10);
484 
485 		cmd->response[0] = ((rsp_127_104 & 0x00ffffff) << 8) |
486 				   ((rsp_103_72  & 0xff000000) >> 24);
487 		cmd->response[1] = ((rsp_103_72  & 0x00ffffff) << 8) |
488 				   ((rsp_71_40   & 0xff000000) >> 24);
489 		cmd->response[2] = ((rsp_71_40   & 0x00ffffff) << 8) |
490 				   ((rsp_39_8    & 0xff000000) >> 24);
491 		cmd->response[3] = (rsp_39_8     & 0xffffff)   << 8;
492 	} else {
493 		/* bit 39-8 */
494 		cmd->response[0] = tmio_sd_readl(priv, TMIO_SD_RSP10);
495 	}
496 
497 	if (data) {
498 		/* use DMA if the HW supports it and the buffer is aligned */
499 		if (priv->caps & TMIO_SD_CAP_DMA_INTERNAL &&
500 		    tmio_sd_addr_is_dmaable(data->src))
501 			ret = tmio_sd_dma_xfer(dev, data);
502 		else
503 			ret = tmio_sd_pio_xfer(dev, cmd, data);
504 		if (ret)
505 			return ret;
506 
507 		ret = tmio_sd_wait_for_irq(dev, cmd, TMIO_SD_INFO1,
508 					   TMIO_SD_INFO1_CMP);
509 		if (ret)
510 			return ret;
511 	}
512 
513 	return tmio_sd_wait_for_irq(dev, cmd, TMIO_SD_INFO2,
514 				    TMIO_SD_INFO2_SCLKDIVEN);
515 }
516 
517 static int tmio_sd_set_bus_width(struct tmio_sd_priv *priv,
518 				     struct mmc *mmc)
519 {
520 	u32 val, tmp;
521 
522 	switch (mmc->bus_width) {
523 	case 0:
524 	case 1:
525 		val = TMIO_SD_OPTION_WIDTH_1;
526 		break;
527 	case 4:
528 		val = TMIO_SD_OPTION_WIDTH_4;
529 		break;
530 	case 8:
531 		val = TMIO_SD_OPTION_WIDTH_8;
532 		break;
533 	default:
534 		return -EINVAL;
535 	}
536 
537 	tmp = tmio_sd_readl(priv, TMIO_SD_OPTION);
538 	tmp &= ~TMIO_SD_OPTION_WIDTH_MASK;
539 	tmp |= val;
540 	tmio_sd_writel(priv, tmp, TMIO_SD_OPTION);
541 
542 	return 0;
543 }
544 
545 static void tmio_sd_set_ddr_mode(struct tmio_sd_priv *priv,
546 				     struct mmc *mmc)
547 {
548 	u32 tmp;
549 
550 	tmp = tmio_sd_readl(priv, TMIO_SD_IF_MODE);
551 	if (mmc->ddr_mode)
552 		tmp |= TMIO_SD_IF_MODE_DDR;
553 	else
554 		tmp &= ~TMIO_SD_IF_MODE_DDR;
555 	tmio_sd_writel(priv, tmp, TMIO_SD_IF_MODE);
556 }
557 
558 static ulong tmio_sd_clk_get_rate(struct tmio_sd_priv *priv)
559 {
560 	return priv->clk_get_rate(priv);
561 }
562 
563 static void tmio_sd_set_clk_rate(struct tmio_sd_priv *priv, struct mmc *mmc)
564 {
565 	unsigned int divisor;
566 	u32 tmp, val = 0;
567 	ulong mclk;
568 
569 	if (mmc->clock) {
570 		mclk = tmio_sd_clk_get_rate(priv);
571 
572 		divisor = DIV_ROUND_UP(mclk, mmc->clock);
573 
574 		/* Do not set divider to 0xff in DDR mode */
575 		if (mmc->ddr_mode && (divisor == 1))
576 			divisor = 2;
577 
578 		if (divisor <= 1)
579 			val = (priv->caps & TMIO_SD_CAP_RCAR) ?
580 			      TMIO_SD_CLKCTL_RCAR_DIV1 : TMIO_SD_CLKCTL_DIV1;
581 		else if (divisor <= 2)
582 			val = TMIO_SD_CLKCTL_DIV2;
583 		else if (divisor <= 4)
584 			val = TMIO_SD_CLKCTL_DIV4;
585 		else if (divisor <= 8)
586 			val = TMIO_SD_CLKCTL_DIV8;
587 		else if (divisor <= 16)
588 			val = TMIO_SD_CLKCTL_DIV16;
589 		else if (divisor <= 32)
590 			val = TMIO_SD_CLKCTL_DIV32;
591 		else if (divisor <= 64)
592 			val = TMIO_SD_CLKCTL_DIV64;
593 		else if (divisor <= 128)
594 			val = TMIO_SD_CLKCTL_DIV128;
595 		else if (divisor <= 256)
596 			val = TMIO_SD_CLKCTL_DIV256;
597 		else if (divisor <= 512 || !(priv->caps & TMIO_SD_CAP_DIV1024))
598 			val = TMIO_SD_CLKCTL_DIV512;
599 		else
600 			val = TMIO_SD_CLKCTL_DIV1024;
601 	}
602 
603 	tmp = tmio_sd_readl(priv, TMIO_SD_CLKCTL);
604 	if (mmc->clock &&
605 	    !((tmp & TMIO_SD_CLKCTL_SCLKEN) &&
606 	      ((tmp & TMIO_SD_CLKCTL_DIV_MASK) == val))) {
607 		/*
608 		 * Stop the clock before changing its rate
609 		 * to avoid a glitch signal
610 		 */
611 		tmp &= ~TMIO_SD_CLKCTL_SCLKEN;
612 		tmio_sd_writel(priv, tmp, TMIO_SD_CLKCTL);
613 
614 		/* Change the clock rate. */
615 		tmp &= ~TMIO_SD_CLKCTL_DIV_MASK;
616 		tmp |= val;
617 	}
618 
619 	/* Enable or Disable the clock */
620 	if (mmc->clk_disable) {
621 		tmp |= TMIO_SD_CLKCTL_OFFEN;
622 		tmp &= ~TMIO_SD_CLKCTL_SCLKEN;
623 	} else {
624 		tmp &= ~TMIO_SD_CLKCTL_OFFEN;
625 		tmp |= TMIO_SD_CLKCTL_SCLKEN;
626 	}
627 
628 	tmio_sd_writel(priv, tmp, TMIO_SD_CLKCTL);
629 
630 	udelay(1000);
631 }
632 
633 static void tmio_sd_set_pins(struct udevice *dev)
634 {
635 	__maybe_unused struct mmc *mmc = mmc_get_mmc_dev(dev);
636 
637 #ifdef CONFIG_DM_REGULATOR
638 	struct tmio_sd_priv *priv = dev_get_priv(dev);
639 
640 	if (priv->vqmmc_dev) {
641 		if (mmc->signal_voltage == MMC_SIGNAL_VOLTAGE_180)
642 			regulator_set_value(priv->vqmmc_dev, 1800000);
643 		else
644 			regulator_set_value(priv->vqmmc_dev, 3300000);
645 		regulator_set_enable(priv->vqmmc_dev, true);
646 	}
647 #endif
648 
649 #ifdef CONFIG_PINCTRL
650 	if (mmc->signal_voltage == MMC_SIGNAL_VOLTAGE_180)
651 		pinctrl_select_state(dev, "state_uhs");
652 	else
653 		pinctrl_select_state(dev, "default");
654 #endif
655 }
656 
657 int tmio_sd_set_ios(struct udevice *dev)
658 {
659 	struct tmio_sd_priv *priv = dev_get_priv(dev);
660 	struct mmc *mmc = mmc_get_mmc_dev(dev);
661 	int ret;
662 
663 	dev_dbg(dev, "clock %uHz, DDRmode %d, width %u\n",
664 		mmc->clock, mmc->ddr_mode, mmc->bus_width);
665 
666 	tmio_sd_set_clk_rate(priv, mmc);
667 	ret = tmio_sd_set_bus_width(priv, mmc);
668 	if (ret)
669 		return ret;
670 	tmio_sd_set_ddr_mode(priv, mmc);
671 	tmio_sd_set_pins(dev);
672 
673 	return 0;
674 }
675 
676 int tmio_sd_get_cd(struct udevice *dev)
677 {
678 	struct tmio_sd_priv *priv = dev_get_priv(dev);
679 
680 	if (priv->caps & TMIO_SD_CAP_NONREMOVABLE)
681 		return 1;
682 
683 	return !!(tmio_sd_readl(priv, TMIO_SD_INFO1) &
684 		  TMIO_SD_INFO1_CD);
685 }
686 
687 static void tmio_sd_host_init(struct tmio_sd_priv *priv)
688 {
689 	u32 tmp;
690 
691 	/* soft reset of the host */
692 	tmp = tmio_sd_readl(priv, TMIO_SD_SOFT_RST);
693 	tmp &= ~TMIO_SD_SOFT_RST_RSTX;
694 	tmio_sd_writel(priv, tmp, TMIO_SD_SOFT_RST);
695 	tmp |= TMIO_SD_SOFT_RST_RSTX;
696 	tmio_sd_writel(priv, tmp, TMIO_SD_SOFT_RST);
697 
698 	/* FIXME: implement eMMC hw_reset */
699 
700 	tmio_sd_writel(priv, TMIO_SD_STOP_SEC, TMIO_SD_STOP);
701 
702 	/*
703 	 * Connected to 32bit AXI.
704 	 * This register dropped backward compatibility at version 0x10.
705 	 * Write an appropriate value depending on the IP version.
706 	 */
707 	if (priv->version >= 0x10)
708 		tmio_sd_writel(priv, 0x101, TMIO_SD_HOST_MODE);
709 	else
710 		tmio_sd_writel(priv, 0x0, TMIO_SD_HOST_MODE);
711 
712 	if (priv->caps & TMIO_SD_CAP_DMA_INTERNAL) {
713 		tmp = tmio_sd_readl(priv, TMIO_SD_DMA_MODE);
714 		tmp |= TMIO_SD_DMA_MODE_ADDR_INC;
715 		tmio_sd_writel(priv, tmp, TMIO_SD_DMA_MODE);
716 	}
717 }
718 
719 int tmio_sd_bind(struct udevice *dev)
720 {
721 	struct tmio_sd_plat *plat = dev_get_platdata(dev);
722 
723 	return mmc_bind(dev, &plat->mmc, &plat->cfg);
724 }
725 
726 int tmio_sd_probe(struct udevice *dev, u32 quirks)
727 {
728 	struct tmio_sd_plat *plat = dev_get_platdata(dev);
729 	struct tmio_sd_priv *priv = dev_get_priv(dev);
730 	struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
731 	fdt_addr_t base;
732 	ulong mclk;
733 	int ret;
734 
735 	base = devfdt_get_addr(dev);
736 	if (base == FDT_ADDR_T_NONE)
737 		return -EINVAL;
738 
739 	priv->regbase = devm_ioremap(dev, base, SZ_2K);
740 	if (!priv->regbase)
741 		return -ENOMEM;
742 
743 #ifdef CONFIG_DM_REGULATOR
744 	device_get_supply_regulator(dev, "vqmmc-supply", &priv->vqmmc_dev);
745 	if (priv->vqmmc_dev)
746 		regulator_set_value(priv->vqmmc_dev, 3300000);
747 #endif
748 
749 	ret = mmc_of_parse(dev, &plat->cfg);
750 	if (ret < 0) {
751 		dev_err(dev, "failed to parse host caps\n");
752 		return ret;
753 	}
754 
755 	plat->cfg.name = dev->name;
756 	plat->cfg.host_caps |= MMC_MODE_HS_52MHz | MMC_MODE_HS;
757 
758 	if (quirks)
759 		priv->caps = quirks;
760 
761 	priv->version = tmio_sd_readl(priv, TMIO_SD_VERSION) &
762 						TMIO_SD_VERSION_IP;
763 	dev_dbg(dev, "version %x\n", priv->version);
764 	if (priv->version >= 0x10) {
765 		priv->caps |= TMIO_SD_CAP_DMA_INTERNAL;
766 		priv->caps |= TMIO_SD_CAP_DIV1024;
767 	}
768 
769 	if (fdt_get_property(gd->fdt_blob, dev_of_offset(dev), "non-removable",
770 			     NULL))
771 		priv->caps |= TMIO_SD_CAP_NONREMOVABLE;
772 
773 	tmio_sd_host_init(priv);
774 
775 	mclk = tmio_sd_clk_get_rate(priv);
776 
777 	plat->cfg.voltages = MMC_VDD_165_195 | MMC_VDD_32_33 | MMC_VDD_33_34;
778 	plat->cfg.f_min = mclk /
779 			(priv->caps & TMIO_SD_CAP_DIV1024 ? 1024 : 512);
780 	plat->cfg.f_max = mclk;
781 	plat->cfg.b_max = U32_MAX; /* max value of TMIO_SD_SECCNT */
782 
783 	upriv->mmc = &plat->mmc;
784 
785 	return 0;
786 }
787