xref: /openbmc/linux/drivers/mmc/host/sdhci.c (revision e8f6f3b4)
1 /*
2  *  linux/drivers/mmc/host/sdhci.c - Secure Digital Host Controller Interface driver
3  *
4  *  Copyright (C) 2005-2008 Pierre Ossman, All Rights Reserved.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or (at
9  * your option) any later version.
10  *
11  * Thanks to the following companies for their support:
12  *
13  *     - JMicron (hardware and technical support)
14  */
15 
16 #include <linux/delay.h>
17 #include <linux/highmem.h>
18 #include <linux/io.h>
19 #include <linux/module.h>
20 #include <linux/dma-mapping.h>
21 #include <linux/slab.h>
22 #include <linux/scatterlist.h>
23 #include <linux/regulator/consumer.h>
24 #include <linux/pm_runtime.h>
25 
26 #include <linux/leds.h>
27 
28 #include <linux/mmc/mmc.h>
29 #include <linux/mmc/host.h>
30 #include <linux/mmc/card.h>
31 #include <linux/mmc/slot-gpio.h>
32 
33 #include "sdhci.h"
34 
35 #define DRIVER_NAME "sdhci"
36 
37 #define DBG(f, x...) \
38 	pr_debug(DRIVER_NAME " [%s()]: " f, __func__,## x)
39 
40 #if defined(CONFIG_LEDS_CLASS) || (defined(CONFIG_LEDS_CLASS_MODULE) && \
41 	defined(CONFIG_MMC_SDHCI_MODULE))
42 #define SDHCI_USE_LEDS_CLASS
43 #endif
44 
45 #define MAX_TUNING_LOOP 40
46 
47 static unsigned int debug_quirks = 0;
48 static unsigned int debug_quirks2;
49 
50 static void sdhci_finish_data(struct sdhci_host *);
51 
52 static void sdhci_finish_command(struct sdhci_host *);
53 static int sdhci_execute_tuning(struct mmc_host *mmc, u32 opcode);
54 static void sdhci_tuning_timer(unsigned long data);
55 static void sdhci_enable_preset_value(struct sdhci_host *host, bool enable);
56 
57 #ifdef CONFIG_PM
58 static int sdhci_runtime_pm_get(struct sdhci_host *host);
59 static int sdhci_runtime_pm_put(struct sdhci_host *host);
60 static void sdhci_runtime_pm_bus_on(struct sdhci_host *host);
61 static void sdhci_runtime_pm_bus_off(struct sdhci_host *host);
62 #else
63 static inline int sdhci_runtime_pm_get(struct sdhci_host *host)
64 {
65 	return 0;
66 }
67 static inline int sdhci_runtime_pm_put(struct sdhci_host *host)
68 {
69 	return 0;
70 }
71 static void sdhci_runtime_pm_bus_on(struct sdhci_host *host)
72 {
73 }
74 static void sdhci_runtime_pm_bus_off(struct sdhci_host *host)
75 {
76 }
77 #endif
78 
79 static void sdhci_dumpregs(struct sdhci_host *host)
80 {
81 	pr_debug(DRIVER_NAME ": =========== REGISTER DUMP (%s)===========\n",
82 		mmc_hostname(host->mmc));
83 
84 	pr_debug(DRIVER_NAME ": Sys addr: 0x%08x | Version:  0x%08x\n",
85 		sdhci_readl(host, SDHCI_DMA_ADDRESS),
86 		sdhci_readw(host, SDHCI_HOST_VERSION));
87 	pr_debug(DRIVER_NAME ": Blk size: 0x%08x | Blk cnt:  0x%08x\n",
88 		sdhci_readw(host, SDHCI_BLOCK_SIZE),
89 		sdhci_readw(host, SDHCI_BLOCK_COUNT));
90 	pr_debug(DRIVER_NAME ": Argument: 0x%08x | Trn mode: 0x%08x\n",
91 		sdhci_readl(host, SDHCI_ARGUMENT),
92 		sdhci_readw(host, SDHCI_TRANSFER_MODE));
93 	pr_debug(DRIVER_NAME ": Present:  0x%08x | Host ctl: 0x%08x\n",
94 		sdhci_readl(host, SDHCI_PRESENT_STATE),
95 		sdhci_readb(host, SDHCI_HOST_CONTROL));
96 	pr_debug(DRIVER_NAME ": Power:    0x%08x | Blk gap:  0x%08x\n",
97 		sdhci_readb(host, SDHCI_POWER_CONTROL),
98 		sdhci_readb(host, SDHCI_BLOCK_GAP_CONTROL));
99 	pr_debug(DRIVER_NAME ": Wake-up:  0x%08x | Clock:    0x%08x\n",
100 		sdhci_readb(host, SDHCI_WAKE_UP_CONTROL),
101 		sdhci_readw(host, SDHCI_CLOCK_CONTROL));
102 	pr_debug(DRIVER_NAME ": Timeout:  0x%08x | Int stat: 0x%08x\n",
103 		sdhci_readb(host, SDHCI_TIMEOUT_CONTROL),
104 		sdhci_readl(host, SDHCI_INT_STATUS));
105 	pr_debug(DRIVER_NAME ": Int enab: 0x%08x | Sig enab: 0x%08x\n",
106 		sdhci_readl(host, SDHCI_INT_ENABLE),
107 		sdhci_readl(host, SDHCI_SIGNAL_ENABLE));
108 	pr_debug(DRIVER_NAME ": AC12 err: 0x%08x | Slot int: 0x%08x\n",
109 		sdhci_readw(host, SDHCI_ACMD12_ERR),
110 		sdhci_readw(host, SDHCI_SLOT_INT_STATUS));
111 	pr_debug(DRIVER_NAME ": Caps:     0x%08x | Caps_1:   0x%08x\n",
112 		sdhci_readl(host, SDHCI_CAPABILITIES),
113 		sdhci_readl(host, SDHCI_CAPABILITIES_1));
114 	pr_debug(DRIVER_NAME ": Cmd:      0x%08x | Max curr: 0x%08x\n",
115 		sdhci_readw(host, SDHCI_COMMAND),
116 		sdhci_readl(host, SDHCI_MAX_CURRENT));
117 	pr_debug(DRIVER_NAME ": Host ctl2: 0x%08x\n",
118 		sdhci_readw(host, SDHCI_HOST_CONTROL2));
119 
120 	if (host->flags & SDHCI_USE_ADMA) {
121 		if (host->flags & SDHCI_USE_64_BIT_DMA)
122 			pr_debug(DRIVER_NAME ": ADMA Err: 0x%08x | ADMA Ptr: 0x%08x%08x\n",
123 				 readl(host->ioaddr + SDHCI_ADMA_ERROR),
124 				 readl(host->ioaddr + SDHCI_ADMA_ADDRESS_HI),
125 				 readl(host->ioaddr + SDHCI_ADMA_ADDRESS));
126 		else
127 			pr_debug(DRIVER_NAME ": ADMA Err: 0x%08x | ADMA Ptr: 0x%08x\n",
128 				 readl(host->ioaddr + SDHCI_ADMA_ERROR),
129 				 readl(host->ioaddr + SDHCI_ADMA_ADDRESS));
130 	}
131 
132 	pr_debug(DRIVER_NAME ": ===========================================\n");
133 }
134 
135 /*****************************************************************************\
136  *                                                                           *
137  * Low level functions                                                       *
138  *                                                                           *
139 \*****************************************************************************/
140 
141 static void sdhci_set_card_detection(struct sdhci_host *host, bool enable)
142 {
143 	u32 present;
144 
145 	if ((host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION) ||
146 	    (host->mmc->caps & MMC_CAP_NONREMOVABLE))
147 		return;
148 
149 	if (enable) {
150 		present = sdhci_readl(host, SDHCI_PRESENT_STATE) &
151 				      SDHCI_CARD_PRESENT;
152 
153 		host->ier |= present ? SDHCI_INT_CARD_REMOVE :
154 				       SDHCI_INT_CARD_INSERT;
155 	} else {
156 		host->ier &= ~(SDHCI_INT_CARD_REMOVE | SDHCI_INT_CARD_INSERT);
157 	}
158 
159 	sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
160 	sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
161 }
162 
163 static void sdhci_enable_card_detection(struct sdhci_host *host)
164 {
165 	sdhci_set_card_detection(host, true);
166 }
167 
168 static void sdhci_disable_card_detection(struct sdhci_host *host)
169 {
170 	sdhci_set_card_detection(host, false);
171 }
172 
173 void sdhci_reset(struct sdhci_host *host, u8 mask)
174 {
175 	unsigned long timeout;
176 
177 	sdhci_writeb(host, mask, SDHCI_SOFTWARE_RESET);
178 
179 	if (mask & SDHCI_RESET_ALL) {
180 		host->clock = 0;
181 		/* Reset-all turns off SD Bus Power */
182 		if (host->quirks2 & SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON)
183 			sdhci_runtime_pm_bus_off(host);
184 	}
185 
186 	/* Wait max 100 ms */
187 	timeout = 100;
188 
189 	/* hw clears the bit when it's done */
190 	while (sdhci_readb(host, SDHCI_SOFTWARE_RESET) & mask) {
191 		if (timeout == 0) {
192 			pr_err("%s: Reset 0x%x never completed.\n",
193 				mmc_hostname(host->mmc), (int)mask);
194 			sdhci_dumpregs(host);
195 			return;
196 		}
197 		timeout--;
198 		mdelay(1);
199 	}
200 }
201 EXPORT_SYMBOL_GPL(sdhci_reset);
202 
203 static void sdhci_do_reset(struct sdhci_host *host, u8 mask)
204 {
205 	if (host->quirks & SDHCI_QUIRK_NO_CARD_NO_RESET) {
206 		if (!(sdhci_readl(host, SDHCI_PRESENT_STATE) &
207 			SDHCI_CARD_PRESENT))
208 			return;
209 	}
210 
211 	host->ops->reset(host, mask);
212 
213 	if (mask & SDHCI_RESET_ALL) {
214 		if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
215 			if (host->ops->enable_dma)
216 				host->ops->enable_dma(host);
217 		}
218 
219 		/* Resetting the controller clears many */
220 		host->preset_enabled = false;
221 	}
222 }
223 
224 static void sdhci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios);
225 
226 static void sdhci_init(struct sdhci_host *host, int soft)
227 {
228 	if (soft)
229 		sdhci_do_reset(host, SDHCI_RESET_CMD|SDHCI_RESET_DATA);
230 	else
231 		sdhci_do_reset(host, SDHCI_RESET_ALL);
232 
233 	host->ier = SDHCI_INT_BUS_POWER | SDHCI_INT_DATA_END_BIT |
234 		    SDHCI_INT_DATA_CRC | SDHCI_INT_DATA_TIMEOUT |
235 		    SDHCI_INT_INDEX | SDHCI_INT_END_BIT | SDHCI_INT_CRC |
236 		    SDHCI_INT_TIMEOUT | SDHCI_INT_DATA_END |
237 		    SDHCI_INT_RESPONSE;
238 
239 	sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
240 	sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
241 
242 	if (soft) {
243 		/* force clock reconfiguration */
244 		host->clock = 0;
245 		sdhci_set_ios(host->mmc, &host->mmc->ios);
246 	}
247 }
248 
249 static void sdhci_reinit(struct sdhci_host *host)
250 {
251 	sdhci_init(host, 0);
252 	/*
253 	 * Retuning stuffs are affected by different cards inserted and only
254 	 * applicable to UHS-I cards. So reset these fields to their initial
255 	 * value when card is removed.
256 	 */
257 	if (host->flags & SDHCI_USING_RETUNING_TIMER) {
258 		host->flags &= ~SDHCI_USING_RETUNING_TIMER;
259 
260 		del_timer_sync(&host->tuning_timer);
261 		host->flags &= ~SDHCI_NEEDS_RETUNING;
262 	}
263 	sdhci_enable_card_detection(host);
264 }
265 
266 static void sdhci_activate_led(struct sdhci_host *host)
267 {
268 	u8 ctrl;
269 
270 	ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
271 	ctrl |= SDHCI_CTRL_LED;
272 	sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
273 }
274 
275 static void sdhci_deactivate_led(struct sdhci_host *host)
276 {
277 	u8 ctrl;
278 
279 	ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
280 	ctrl &= ~SDHCI_CTRL_LED;
281 	sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
282 }
283 
284 #ifdef SDHCI_USE_LEDS_CLASS
285 static void sdhci_led_control(struct led_classdev *led,
286 	enum led_brightness brightness)
287 {
288 	struct sdhci_host *host = container_of(led, struct sdhci_host, led);
289 	unsigned long flags;
290 
291 	spin_lock_irqsave(&host->lock, flags);
292 
293 	if (host->runtime_suspended)
294 		goto out;
295 
296 	if (brightness == LED_OFF)
297 		sdhci_deactivate_led(host);
298 	else
299 		sdhci_activate_led(host);
300 out:
301 	spin_unlock_irqrestore(&host->lock, flags);
302 }
303 #endif
304 
305 /*****************************************************************************\
306  *                                                                           *
307  * Core functions                                                            *
308  *                                                                           *
309 \*****************************************************************************/
310 
311 static void sdhci_read_block_pio(struct sdhci_host *host)
312 {
313 	unsigned long flags;
314 	size_t blksize, len, chunk;
315 	u32 uninitialized_var(scratch);
316 	u8 *buf;
317 
318 	DBG("PIO reading\n");
319 
320 	blksize = host->data->blksz;
321 	chunk = 0;
322 
323 	local_irq_save(flags);
324 
325 	while (blksize) {
326 		if (!sg_miter_next(&host->sg_miter))
327 			BUG();
328 
329 		len = min(host->sg_miter.length, blksize);
330 
331 		blksize -= len;
332 		host->sg_miter.consumed = len;
333 
334 		buf = host->sg_miter.addr;
335 
336 		while (len) {
337 			if (chunk == 0) {
338 				scratch = sdhci_readl(host, SDHCI_BUFFER);
339 				chunk = 4;
340 			}
341 
342 			*buf = scratch & 0xFF;
343 
344 			buf++;
345 			scratch >>= 8;
346 			chunk--;
347 			len--;
348 		}
349 	}
350 
351 	sg_miter_stop(&host->sg_miter);
352 
353 	local_irq_restore(flags);
354 }
355 
356 static void sdhci_write_block_pio(struct sdhci_host *host)
357 {
358 	unsigned long flags;
359 	size_t blksize, len, chunk;
360 	u32 scratch;
361 	u8 *buf;
362 
363 	DBG("PIO writing\n");
364 
365 	blksize = host->data->blksz;
366 	chunk = 0;
367 	scratch = 0;
368 
369 	local_irq_save(flags);
370 
371 	while (blksize) {
372 		if (!sg_miter_next(&host->sg_miter))
373 			BUG();
374 
375 		len = min(host->sg_miter.length, blksize);
376 
377 		blksize -= len;
378 		host->sg_miter.consumed = len;
379 
380 		buf = host->sg_miter.addr;
381 
382 		while (len) {
383 			scratch |= (u32)*buf << (chunk * 8);
384 
385 			buf++;
386 			chunk++;
387 			len--;
388 
389 			if ((chunk == 4) || ((len == 0) && (blksize == 0))) {
390 				sdhci_writel(host, scratch, SDHCI_BUFFER);
391 				chunk = 0;
392 				scratch = 0;
393 			}
394 		}
395 	}
396 
397 	sg_miter_stop(&host->sg_miter);
398 
399 	local_irq_restore(flags);
400 }
401 
402 static void sdhci_transfer_pio(struct sdhci_host *host)
403 {
404 	u32 mask;
405 
406 	BUG_ON(!host->data);
407 
408 	if (host->blocks == 0)
409 		return;
410 
411 	if (host->data->flags & MMC_DATA_READ)
412 		mask = SDHCI_DATA_AVAILABLE;
413 	else
414 		mask = SDHCI_SPACE_AVAILABLE;
415 
416 	/*
417 	 * Some controllers (JMicron JMB38x) mess up the buffer bits
418 	 * for transfers < 4 bytes. As long as it is just one block,
419 	 * we can ignore the bits.
420 	 */
421 	if ((host->quirks & SDHCI_QUIRK_BROKEN_SMALL_PIO) &&
422 		(host->data->blocks == 1))
423 		mask = ~0;
424 
425 	while (sdhci_readl(host, SDHCI_PRESENT_STATE) & mask) {
426 		if (host->quirks & SDHCI_QUIRK_PIO_NEEDS_DELAY)
427 			udelay(100);
428 
429 		if (host->data->flags & MMC_DATA_READ)
430 			sdhci_read_block_pio(host);
431 		else
432 			sdhci_write_block_pio(host);
433 
434 		host->blocks--;
435 		if (host->blocks == 0)
436 			break;
437 	}
438 
439 	DBG("PIO transfer complete.\n");
440 }
441 
442 static char *sdhci_kmap_atomic(struct scatterlist *sg, unsigned long *flags)
443 {
444 	local_irq_save(*flags);
445 	return kmap_atomic(sg_page(sg)) + sg->offset;
446 }
447 
448 static void sdhci_kunmap_atomic(void *buffer, unsigned long *flags)
449 {
450 	kunmap_atomic(buffer);
451 	local_irq_restore(*flags);
452 }
453 
454 static void sdhci_adma_write_desc(struct sdhci_host *host, void *desc,
455 				  dma_addr_t addr, int len, unsigned cmd)
456 {
457 	struct sdhci_adma2_64_desc *dma_desc = desc;
458 
459 	/* 32-bit and 64-bit descriptors have these members in same position */
460 	dma_desc->cmd = cpu_to_le16(cmd);
461 	dma_desc->len = cpu_to_le16(len);
462 	dma_desc->addr_lo = cpu_to_le32((u32)addr);
463 
464 	if (host->flags & SDHCI_USE_64_BIT_DMA)
465 		dma_desc->addr_hi = cpu_to_le32((u64)addr >> 32);
466 }
467 
468 static void sdhci_adma_mark_end(void *desc)
469 {
470 	struct sdhci_adma2_64_desc *dma_desc = desc;
471 
472 	/* 32-bit and 64-bit descriptors have 'cmd' in same position */
473 	dma_desc->cmd |= cpu_to_le16(ADMA2_END);
474 }
475 
476 static int sdhci_adma_table_pre(struct sdhci_host *host,
477 	struct mmc_data *data)
478 {
479 	int direction;
480 
481 	void *desc;
482 	void *align;
483 	dma_addr_t addr;
484 	dma_addr_t align_addr;
485 	int len, offset;
486 
487 	struct scatterlist *sg;
488 	int i;
489 	char *buffer;
490 	unsigned long flags;
491 
492 	/*
493 	 * The spec does not specify endianness of descriptor table.
494 	 * We currently guess that it is LE.
495 	 */
496 
497 	if (data->flags & MMC_DATA_READ)
498 		direction = DMA_FROM_DEVICE;
499 	else
500 		direction = DMA_TO_DEVICE;
501 
502 	host->align_addr = dma_map_single(mmc_dev(host->mmc),
503 		host->align_buffer, host->align_buffer_sz, direction);
504 	if (dma_mapping_error(mmc_dev(host->mmc), host->align_addr))
505 		goto fail;
506 	BUG_ON(host->align_addr & host->align_mask);
507 
508 	host->sg_count = dma_map_sg(mmc_dev(host->mmc),
509 		data->sg, data->sg_len, direction);
510 	if (host->sg_count == 0)
511 		goto unmap_align;
512 
513 	desc = host->adma_table;
514 	align = host->align_buffer;
515 
516 	align_addr = host->align_addr;
517 
518 	for_each_sg(data->sg, sg, host->sg_count, i) {
519 		addr = sg_dma_address(sg);
520 		len = sg_dma_len(sg);
521 
522 		/*
523 		 * The SDHCI specification states that ADMA
524 		 * addresses must be 32-bit aligned. If they
525 		 * aren't, then we use a bounce buffer for
526 		 * the (up to three) bytes that screw up the
527 		 * alignment.
528 		 */
529 		offset = (host->align_sz - (addr & host->align_mask)) &
530 			 host->align_mask;
531 		if (offset) {
532 			if (data->flags & MMC_DATA_WRITE) {
533 				buffer = sdhci_kmap_atomic(sg, &flags);
534 				WARN_ON(((long)buffer & (PAGE_SIZE - 1)) >
535 					(PAGE_SIZE - offset));
536 				memcpy(align, buffer, offset);
537 				sdhci_kunmap_atomic(buffer, &flags);
538 			}
539 
540 			/* tran, valid */
541 			sdhci_adma_write_desc(host, desc, align_addr, offset,
542 					      ADMA2_TRAN_VALID);
543 
544 			BUG_ON(offset > 65536);
545 
546 			align += host->align_sz;
547 			align_addr += host->align_sz;
548 
549 			desc += host->desc_sz;
550 
551 			addr += offset;
552 			len -= offset;
553 		}
554 
555 		BUG_ON(len > 65536);
556 
557 		/* tran, valid */
558 		sdhci_adma_write_desc(host, desc, addr, len, ADMA2_TRAN_VALID);
559 		desc += host->desc_sz;
560 
561 		/*
562 		 * If this triggers then we have a calculation bug
563 		 * somewhere. :/
564 		 */
565 		WARN_ON((desc - host->adma_table) >= host->adma_table_sz);
566 	}
567 
568 	if (host->quirks & SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC) {
569 		/*
570 		* Mark the last descriptor as the terminating descriptor
571 		*/
572 		if (desc != host->adma_table) {
573 			desc -= host->desc_sz;
574 			sdhci_adma_mark_end(desc);
575 		}
576 	} else {
577 		/*
578 		* Add a terminating entry.
579 		*/
580 
581 		/* nop, end, valid */
582 		sdhci_adma_write_desc(host, desc, 0, 0, ADMA2_NOP_END_VALID);
583 	}
584 
585 	/*
586 	 * Resync align buffer as we might have changed it.
587 	 */
588 	if (data->flags & MMC_DATA_WRITE) {
589 		dma_sync_single_for_device(mmc_dev(host->mmc),
590 			host->align_addr, host->align_buffer_sz, direction);
591 	}
592 
593 	return 0;
594 
595 unmap_align:
596 	dma_unmap_single(mmc_dev(host->mmc), host->align_addr,
597 		host->align_buffer_sz, direction);
598 fail:
599 	return -EINVAL;
600 }
601 
602 static void sdhci_adma_table_post(struct sdhci_host *host,
603 	struct mmc_data *data)
604 {
605 	int direction;
606 
607 	struct scatterlist *sg;
608 	int i, size;
609 	void *align;
610 	char *buffer;
611 	unsigned long flags;
612 	bool has_unaligned;
613 
614 	if (data->flags & MMC_DATA_READ)
615 		direction = DMA_FROM_DEVICE;
616 	else
617 		direction = DMA_TO_DEVICE;
618 
619 	dma_unmap_single(mmc_dev(host->mmc), host->align_addr,
620 		host->align_buffer_sz, direction);
621 
622 	/* Do a quick scan of the SG list for any unaligned mappings */
623 	has_unaligned = false;
624 	for_each_sg(data->sg, sg, host->sg_count, i)
625 		if (sg_dma_address(sg) & host->align_mask) {
626 			has_unaligned = true;
627 			break;
628 		}
629 
630 	if (has_unaligned && data->flags & MMC_DATA_READ) {
631 		dma_sync_sg_for_cpu(mmc_dev(host->mmc), data->sg,
632 			data->sg_len, direction);
633 
634 		align = host->align_buffer;
635 
636 		for_each_sg(data->sg, sg, host->sg_count, i) {
637 			if (sg_dma_address(sg) & host->align_mask) {
638 				size = host->align_sz -
639 				       (sg_dma_address(sg) & host->align_mask);
640 
641 				buffer = sdhci_kmap_atomic(sg, &flags);
642 				WARN_ON(((long)buffer & (PAGE_SIZE - 1)) >
643 					(PAGE_SIZE - size));
644 				memcpy(buffer, align, size);
645 				sdhci_kunmap_atomic(buffer, &flags);
646 
647 				align += host->align_sz;
648 			}
649 		}
650 	}
651 
652 	dma_unmap_sg(mmc_dev(host->mmc), data->sg,
653 		data->sg_len, direction);
654 }
655 
656 static u8 sdhci_calc_timeout(struct sdhci_host *host, struct mmc_command *cmd)
657 {
658 	u8 count;
659 	struct mmc_data *data = cmd->data;
660 	unsigned target_timeout, current_timeout;
661 
662 	/*
663 	 * If the host controller provides us with an incorrect timeout
664 	 * value, just skip the check and use 0xE.  The hardware may take
665 	 * longer to time out, but that's much better than having a too-short
666 	 * timeout value.
667 	 */
668 	if (host->quirks & SDHCI_QUIRK_BROKEN_TIMEOUT_VAL)
669 		return 0xE;
670 
671 	/* Unspecified timeout, assume max */
672 	if (!data && !cmd->busy_timeout)
673 		return 0xE;
674 
675 	/* timeout in us */
676 	if (!data)
677 		target_timeout = cmd->busy_timeout * 1000;
678 	else {
679 		target_timeout = data->timeout_ns / 1000;
680 		if (host->clock)
681 			target_timeout += data->timeout_clks / host->clock;
682 	}
683 
684 	/*
685 	 * Figure out needed cycles.
686 	 * We do this in steps in order to fit inside a 32 bit int.
687 	 * The first step is the minimum timeout, which will have a
688 	 * minimum resolution of 6 bits:
689 	 * (1) 2^13*1000 > 2^22,
690 	 * (2) host->timeout_clk < 2^16
691 	 *     =>
692 	 *     (1) / (2) > 2^6
693 	 */
694 	count = 0;
695 	current_timeout = (1 << 13) * 1000 / host->timeout_clk;
696 	while (current_timeout < target_timeout) {
697 		count++;
698 		current_timeout <<= 1;
699 		if (count >= 0xF)
700 			break;
701 	}
702 
703 	if (count >= 0xF) {
704 		DBG("%s: Too large timeout 0x%x requested for CMD%d!\n",
705 		    mmc_hostname(host->mmc), count, cmd->opcode);
706 		count = 0xE;
707 	}
708 
709 	return count;
710 }
711 
712 static void sdhci_set_transfer_irqs(struct sdhci_host *host)
713 {
714 	u32 pio_irqs = SDHCI_INT_DATA_AVAIL | SDHCI_INT_SPACE_AVAIL;
715 	u32 dma_irqs = SDHCI_INT_DMA_END | SDHCI_INT_ADMA_ERROR;
716 
717 	if (host->flags & SDHCI_REQ_USE_DMA)
718 		host->ier = (host->ier & ~pio_irqs) | dma_irqs;
719 	else
720 		host->ier = (host->ier & ~dma_irqs) | pio_irqs;
721 
722 	sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
723 	sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
724 }
725 
726 static void sdhci_set_timeout(struct sdhci_host *host, struct mmc_command *cmd)
727 {
728 	u8 count;
729 
730 	if (host->ops->set_timeout) {
731 		host->ops->set_timeout(host, cmd);
732 	} else {
733 		count = sdhci_calc_timeout(host, cmd);
734 		sdhci_writeb(host, count, SDHCI_TIMEOUT_CONTROL);
735 	}
736 }
737 
738 static void sdhci_prepare_data(struct sdhci_host *host, struct mmc_command *cmd)
739 {
740 	u8 ctrl;
741 	struct mmc_data *data = cmd->data;
742 	int ret;
743 
744 	WARN_ON(host->data);
745 
746 	if (data || (cmd->flags & MMC_RSP_BUSY))
747 		sdhci_set_timeout(host, cmd);
748 
749 	if (!data)
750 		return;
751 
752 	/* Sanity checks */
753 	BUG_ON(data->blksz * data->blocks > 524288);
754 	BUG_ON(data->blksz > host->mmc->max_blk_size);
755 	BUG_ON(data->blocks > 65535);
756 
757 	host->data = data;
758 	host->data_early = 0;
759 	host->data->bytes_xfered = 0;
760 
761 	if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA))
762 		host->flags |= SDHCI_REQ_USE_DMA;
763 
764 	/*
765 	 * FIXME: This doesn't account for merging when mapping the
766 	 * scatterlist.
767 	 */
768 	if (host->flags & SDHCI_REQ_USE_DMA) {
769 		int broken, i;
770 		struct scatterlist *sg;
771 
772 		broken = 0;
773 		if (host->flags & SDHCI_USE_ADMA) {
774 			if (host->quirks & SDHCI_QUIRK_32BIT_ADMA_SIZE)
775 				broken = 1;
776 		} else {
777 			if (host->quirks & SDHCI_QUIRK_32BIT_DMA_SIZE)
778 				broken = 1;
779 		}
780 
781 		if (unlikely(broken)) {
782 			for_each_sg(data->sg, sg, data->sg_len, i) {
783 				if (sg->length & 0x3) {
784 					DBG("Reverting to PIO because of "
785 						"transfer size (%d)\n",
786 						sg->length);
787 					host->flags &= ~SDHCI_REQ_USE_DMA;
788 					break;
789 				}
790 			}
791 		}
792 	}
793 
794 	/*
795 	 * The assumption here being that alignment is the same after
796 	 * translation to device address space.
797 	 */
798 	if (host->flags & SDHCI_REQ_USE_DMA) {
799 		int broken, i;
800 		struct scatterlist *sg;
801 
802 		broken = 0;
803 		if (host->flags & SDHCI_USE_ADMA) {
804 			/*
805 			 * As we use 3 byte chunks to work around
806 			 * alignment problems, we need to check this
807 			 * quirk.
808 			 */
809 			if (host->quirks & SDHCI_QUIRK_32BIT_ADMA_SIZE)
810 				broken = 1;
811 		} else {
812 			if (host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR)
813 				broken = 1;
814 		}
815 
816 		if (unlikely(broken)) {
817 			for_each_sg(data->sg, sg, data->sg_len, i) {
818 				if (sg->offset & 0x3) {
819 					DBG("Reverting to PIO because of "
820 						"bad alignment\n");
821 					host->flags &= ~SDHCI_REQ_USE_DMA;
822 					break;
823 				}
824 			}
825 		}
826 	}
827 
828 	if (host->flags & SDHCI_REQ_USE_DMA) {
829 		if (host->flags & SDHCI_USE_ADMA) {
830 			ret = sdhci_adma_table_pre(host, data);
831 			if (ret) {
832 				/*
833 				 * This only happens when someone fed
834 				 * us an invalid request.
835 				 */
836 				WARN_ON(1);
837 				host->flags &= ~SDHCI_REQ_USE_DMA;
838 			} else {
839 				sdhci_writel(host, host->adma_addr,
840 					SDHCI_ADMA_ADDRESS);
841 				if (host->flags & SDHCI_USE_64_BIT_DMA)
842 					sdhci_writel(host,
843 						     (u64)host->adma_addr >> 32,
844 						     SDHCI_ADMA_ADDRESS_HI);
845 			}
846 		} else {
847 			int sg_cnt;
848 
849 			sg_cnt = dma_map_sg(mmc_dev(host->mmc),
850 					data->sg, data->sg_len,
851 					(data->flags & MMC_DATA_READ) ?
852 						DMA_FROM_DEVICE :
853 						DMA_TO_DEVICE);
854 			if (sg_cnt == 0) {
855 				/*
856 				 * This only happens when someone fed
857 				 * us an invalid request.
858 				 */
859 				WARN_ON(1);
860 				host->flags &= ~SDHCI_REQ_USE_DMA;
861 			} else {
862 				WARN_ON(sg_cnt != 1);
863 				sdhci_writel(host, sg_dma_address(data->sg),
864 					SDHCI_DMA_ADDRESS);
865 			}
866 		}
867 	}
868 
869 	/*
870 	 * Always adjust the DMA selection as some controllers
871 	 * (e.g. JMicron) can't do PIO properly when the selection
872 	 * is ADMA.
873 	 */
874 	if (host->version >= SDHCI_SPEC_200) {
875 		ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
876 		ctrl &= ~SDHCI_CTRL_DMA_MASK;
877 		if ((host->flags & SDHCI_REQ_USE_DMA) &&
878 			(host->flags & SDHCI_USE_ADMA)) {
879 			if (host->flags & SDHCI_USE_64_BIT_DMA)
880 				ctrl |= SDHCI_CTRL_ADMA64;
881 			else
882 				ctrl |= SDHCI_CTRL_ADMA32;
883 		} else {
884 			ctrl |= SDHCI_CTRL_SDMA;
885 		}
886 		sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
887 	}
888 
889 	if (!(host->flags & SDHCI_REQ_USE_DMA)) {
890 		int flags;
891 
892 		flags = SG_MITER_ATOMIC;
893 		if (host->data->flags & MMC_DATA_READ)
894 			flags |= SG_MITER_TO_SG;
895 		else
896 			flags |= SG_MITER_FROM_SG;
897 		sg_miter_start(&host->sg_miter, data->sg, data->sg_len, flags);
898 		host->blocks = data->blocks;
899 	}
900 
901 	sdhci_set_transfer_irqs(host);
902 
903 	/* Set the DMA boundary value and block size */
904 	sdhci_writew(host, SDHCI_MAKE_BLKSZ(SDHCI_DEFAULT_BOUNDARY_ARG,
905 		data->blksz), SDHCI_BLOCK_SIZE);
906 	sdhci_writew(host, data->blocks, SDHCI_BLOCK_COUNT);
907 }
908 
909 static void sdhci_set_transfer_mode(struct sdhci_host *host,
910 	struct mmc_command *cmd)
911 {
912 	u16 mode;
913 	struct mmc_data *data = cmd->data;
914 
915 	if (data == NULL) {
916 		if (host->quirks2 &
917 			SDHCI_QUIRK2_CLEAR_TRANSFERMODE_REG_BEFORE_CMD) {
918 			sdhci_writew(host, 0x0, SDHCI_TRANSFER_MODE);
919 		} else {
920 		/* clear Auto CMD settings for no data CMDs */
921 			mode = sdhci_readw(host, SDHCI_TRANSFER_MODE);
922 			sdhci_writew(host, mode & ~(SDHCI_TRNS_AUTO_CMD12 |
923 				SDHCI_TRNS_AUTO_CMD23), SDHCI_TRANSFER_MODE);
924 		}
925 		return;
926 	}
927 
928 	WARN_ON(!host->data);
929 
930 	mode = SDHCI_TRNS_BLK_CNT_EN;
931 	if (mmc_op_multi(cmd->opcode) || data->blocks > 1) {
932 		mode |= SDHCI_TRNS_MULTI;
933 		/*
934 		 * If we are sending CMD23, CMD12 never gets sent
935 		 * on successful completion (so no Auto-CMD12).
936 		 */
937 		if (!host->mrq->sbc && (host->flags & SDHCI_AUTO_CMD12))
938 			mode |= SDHCI_TRNS_AUTO_CMD12;
939 		else if (host->mrq->sbc && (host->flags & SDHCI_AUTO_CMD23)) {
940 			mode |= SDHCI_TRNS_AUTO_CMD23;
941 			sdhci_writel(host, host->mrq->sbc->arg, SDHCI_ARGUMENT2);
942 		}
943 	}
944 
945 	if (data->flags & MMC_DATA_READ)
946 		mode |= SDHCI_TRNS_READ;
947 	if (host->flags & SDHCI_REQ_USE_DMA)
948 		mode |= SDHCI_TRNS_DMA;
949 
950 	sdhci_writew(host, mode, SDHCI_TRANSFER_MODE);
951 }
952 
953 static void sdhci_finish_data(struct sdhci_host *host)
954 {
955 	struct mmc_data *data;
956 
957 	BUG_ON(!host->data);
958 
959 	data = host->data;
960 	host->data = NULL;
961 
962 	if (host->flags & SDHCI_REQ_USE_DMA) {
963 		if (host->flags & SDHCI_USE_ADMA)
964 			sdhci_adma_table_post(host, data);
965 		else {
966 			dma_unmap_sg(mmc_dev(host->mmc), data->sg,
967 				data->sg_len, (data->flags & MMC_DATA_READ) ?
968 					DMA_FROM_DEVICE : DMA_TO_DEVICE);
969 		}
970 	}
971 
972 	/*
973 	 * The specification states that the block count register must
974 	 * be updated, but it does not specify at what point in the
975 	 * data flow. That makes the register entirely useless to read
976 	 * back so we have to assume that nothing made it to the card
977 	 * in the event of an error.
978 	 */
979 	if (data->error)
980 		data->bytes_xfered = 0;
981 	else
982 		data->bytes_xfered = data->blksz * data->blocks;
983 
984 	/*
985 	 * Need to send CMD12 if -
986 	 * a) open-ended multiblock transfer (no CMD23)
987 	 * b) error in multiblock transfer
988 	 */
989 	if (data->stop &&
990 	    (data->error ||
991 	     !host->mrq->sbc)) {
992 
993 		/*
994 		 * The controller needs a reset of internal state machines
995 		 * upon error conditions.
996 		 */
997 		if (data->error) {
998 			sdhci_do_reset(host, SDHCI_RESET_CMD);
999 			sdhci_do_reset(host, SDHCI_RESET_DATA);
1000 		}
1001 
1002 		sdhci_send_command(host, data->stop);
1003 	} else
1004 		tasklet_schedule(&host->finish_tasklet);
1005 }
1006 
1007 void sdhci_send_command(struct sdhci_host *host, struct mmc_command *cmd)
1008 {
1009 	int flags;
1010 	u32 mask;
1011 	unsigned long timeout;
1012 
1013 	WARN_ON(host->cmd);
1014 
1015 	/* Wait max 10 ms */
1016 	timeout = 10;
1017 
1018 	mask = SDHCI_CMD_INHIBIT;
1019 	if ((cmd->data != NULL) || (cmd->flags & MMC_RSP_BUSY))
1020 		mask |= SDHCI_DATA_INHIBIT;
1021 
1022 	/* We shouldn't wait for data inihibit for stop commands, even
1023 	   though they might use busy signaling */
1024 	if (host->mrq->data && (cmd == host->mrq->data->stop))
1025 		mask &= ~SDHCI_DATA_INHIBIT;
1026 
1027 	while (sdhci_readl(host, SDHCI_PRESENT_STATE) & mask) {
1028 		if (timeout == 0) {
1029 			pr_err("%s: Controller never released "
1030 				"inhibit bit(s).\n", mmc_hostname(host->mmc));
1031 			sdhci_dumpregs(host);
1032 			cmd->error = -EIO;
1033 			tasklet_schedule(&host->finish_tasklet);
1034 			return;
1035 		}
1036 		timeout--;
1037 		mdelay(1);
1038 	}
1039 
1040 	timeout = jiffies;
1041 	if (!cmd->data && cmd->busy_timeout > 9000)
1042 		timeout += DIV_ROUND_UP(cmd->busy_timeout, 1000) * HZ + HZ;
1043 	else
1044 		timeout += 10 * HZ;
1045 	mod_timer(&host->timer, timeout);
1046 
1047 	host->cmd = cmd;
1048 	host->busy_handle = 0;
1049 
1050 	sdhci_prepare_data(host, cmd);
1051 
1052 	sdhci_writel(host, cmd->arg, SDHCI_ARGUMENT);
1053 
1054 	sdhci_set_transfer_mode(host, cmd);
1055 
1056 	if ((cmd->flags & MMC_RSP_136) && (cmd->flags & MMC_RSP_BUSY)) {
1057 		pr_err("%s: Unsupported response type!\n",
1058 			mmc_hostname(host->mmc));
1059 		cmd->error = -EINVAL;
1060 		tasklet_schedule(&host->finish_tasklet);
1061 		return;
1062 	}
1063 
1064 	if (!(cmd->flags & MMC_RSP_PRESENT))
1065 		flags = SDHCI_CMD_RESP_NONE;
1066 	else if (cmd->flags & MMC_RSP_136)
1067 		flags = SDHCI_CMD_RESP_LONG;
1068 	else if (cmd->flags & MMC_RSP_BUSY)
1069 		flags = SDHCI_CMD_RESP_SHORT_BUSY;
1070 	else
1071 		flags = SDHCI_CMD_RESP_SHORT;
1072 
1073 	if (cmd->flags & MMC_RSP_CRC)
1074 		flags |= SDHCI_CMD_CRC;
1075 	if (cmd->flags & MMC_RSP_OPCODE)
1076 		flags |= SDHCI_CMD_INDEX;
1077 
1078 	/* CMD19 is special in that the Data Present Select should be set */
1079 	if (cmd->data || cmd->opcode == MMC_SEND_TUNING_BLOCK ||
1080 	    cmd->opcode == MMC_SEND_TUNING_BLOCK_HS200)
1081 		flags |= SDHCI_CMD_DATA;
1082 
1083 	sdhci_writew(host, SDHCI_MAKE_CMD(cmd->opcode, flags), SDHCI_COMMAND);
1084 }
1085 EXPORT_SYMBOL_GPL(sdhci_send_command);
1086 
1087 static void sdhci_finish_command(struct sdhci_host *host)
1088 {
1089 	int i;
1090 
1091 	BUG_ON(host->cmd == NULL);
1092 
1093 	if (host->cmd->flags & MMC_RSP_PRESENT) {
1094 		if (host->cmd->flags & MMC_RSP_136) {
1095 			/* CRC is stripped so we need to do some shifting. */
1096 			for (i = 0;i < 4;i++) {
1097 				host->cmd->resp[i] = sdhci_readl(host,
1098 					SDHCI_RESPONSE + (3-i)*4) << 8;
1099 				if (i != 3)
1100 					host->cmd->resp[i] |=
1101 						sdhci_readb(host,
1102 						SDHCI_RESPONSE + (3-i)*4-1);
1103 			}
1104 		} else {
1105 			host->cmd->resp[0] = sdhci_readl(host, SDHCI_RESPONSE);
1106 		}
1107 	}
1108 
1109 	host->cmd->error = 0;
1110 
1111 	/* Finished CMD23, now send actual command. */
1112 	if (host->cmd == host->mrq->sbc) {
1113 		host->cmd = NULL;
1114 		sdhci_send_command(host, host->mrq->cmd);
1115 	} else {
1116 
1117 		/* Processed actual command. */
1118 		if (host->data && host->data_early)
1119 			sdhci_finish_data(host);
1120 
1121 		if (!host->cmd->data)
1122 			tasklet_schedule(&host->finish_tasklet);
1123 
1124 		host->cmd = NULL;
1125 	}
1126 }
1127 
1128 static u16 sdhci_get_preset_value(struct sdhci_host *host)
1129 {
1130 	u16 preset = 0;
1131 
1132 	switch (host->timing) {
1133 	case MMC_TIMING_UHS_SDR12:
1134 		preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR12);
1135 		break;
1136 	case MMC_TIMING_UHS_SDR25:
1137 		preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR25);
1138 		break;
1139 	case MMC_TIMING_UHS_SDR50:
1140 		preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR50);
1141 		break;
1142 	case MMC_TIMING_UHS_SDR104:
1143 	case MMC_TIMING_MMC_HS200:
1144 		preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR104);
1145 		break;
1146 	case MMC_TIMING_UHS_DDR50:
1147 		preset = sdhci_readw(host, SDHCI_PRESET_FOR_DDR50);
1148 		break;
1149 	case MMC_TIMING_MMC_HS400:
1150 		preset = sdhci_readw(host, SDHCI_PRESET_FOR_HS400);
1151 		break;
1152 	default:
1153 		pr_warn("%s: Invalid UHS-I mode selected\n",
1154 			mmc_hostname(host->mmc));
1155 		preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR12);
1156 		break;
1157 	}
1158 	return preset;
1159 }
1160 
1161 void sdhci_set_clock(struct sdhci_host *host, unsigned int clock)
1162 {
1163 	int div = 0; /* Initialized for compiler warning */
1164 	int real_div = div, clk_mul = 1;
1165 	u16 clk = 0;
1166 	unsigned long timeout;
1167 
1168 	host->mmc->actual_clock = 0;
1169 
1170 	sdhci_writew(host, 0, SDHCI_CLOCK_CONTROL);
1171 
1172 	if (clock == 0)
1173 		return;
1174 
1175 	if (host->version >= SDHCI_SPEC_300) {
1176 		if (host->preset_enabled) {
1177 			u16 pre_val;
1178 
1179 			clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL);
1180 			pre_val = sdhci_get_preset_value(host);
1181 			div = (pre_val & SDHCI_PRESET_SDCLK_FREQ_MASK)
1182 				>> SDHCI_PRESET_SDCLK_FREQ_SHIFT;
1183 			if (host->clk_mul &&
1184 				(pre_val & SDHCI_PRESET_CLKGEN_SEL_MASK)) {
1185 				clk = SDHCI_PROG_CLOCK_MODE;
1186 				real_div = div + 1;
1187 				clk_mul = host->clk_mul;
1188 			} else {
1189 				real_div = max_t(int, 1, div << 1);
1190 			}
1191 			goto clock_set;
1192 		}
1193 
1194 		/*
1195 		 * Check if the Host Controller supports Programmable Clock
1196 		 * Mode.
1197 		 */
1198 		if (host->clk_mul) {
1199 			for (div = 1; div <= 1024; div++) {
1200 				if ((host->max_clk * host->clk_mul / div)
1201 					<= clock)
1202 					break;
1203 			}
1204 			/*
1205 			 * Set Programmable Clock Mode in the Clock
1206 			 * Control register.
1207 			 */
1208 			clk = SDHCI_PROG_CLOCK_MODE;
1209 			real_div = div;
1210 			clk_mul = host->clk_mul;
1211 			div--;
1212 		} else {
1213 			/* Version 3.00 divisors must be a multiple of 2. */
1214 			if (host->max_clk <= clock)
1215 				div = 1;
1216 			else {
1217 				for (div = 2; div < SDHCI_MAX_DIV_SPEC_300;
1218 				     div += 2) {
1219 					if ((host->max_clk / div) <= clock)
1220 						break;
1221 				}
1222 			}
1223 			real_div = div;
1224 			div >>= 1;
1225 		}
1226 	} else {
1227 		/* Version 2.00 divisors must be a power of 2. */
1228 		for (div = 1; div < SDHCI_MAX_DIV_SPEC_200; div *= 2) {
1229 			if ((host->max_clk / div) <= clock)
1230 				break;
1231 		}
1232 		real_div = div;
1233 		div >>= 1;
1234 	}
1235 
1236 clock_set:
1237 	if (real_div)
1238 		host->mmc->actual_clock = (host->max_clk * clk_mul) / real_div;
1239 	clk |= (div & SDHCI_DIV_MASK) << SDHCI_DIVIDER_SHIFT;
1240 	clk |= ((div & SDHCI_DIV_HI_MASK) >> SDHCI_DIV_MASK_LEN)
1241 		<< SDHCI_DIVIDER_HI_SHIFT;
1242 	clk |= SDHCI_CLOCK_INT_EN;
1243 	sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
1244 
1245 	/* Wait max 20 ms */
1246 	timeout = 20;
1247 	while (!((clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL))
1248 		& SDHCI_CLOCK_INT_STABLE)) {
1249 		if (timeout == 0) {
1250 			pr_err("%s: Internal clock never "
1251 				"stabilised.\n", mmc_hostname(host->mmc));
1252 			sdhci_dumpregs(host);
1253 			return;
1254 		}
1255 		timeout--;
1256 		mdelay(1);
1257 	}
1258 
1259 	clk |= SDHCI_CLOCK_CARD_EN;
1260 	sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
1261 }
1262 EXPORT_SYMBOL_GPL(sdhci_set_clock);
1263 
1264 static void sdhci_set_power(struct sdhci_host *host, unsigned char mode,
1265 			    unsigned short vdd)
1266 {
1267 	struct mmc_host *mmc = host->mmc;
1268 	u8 pwr = 0;
1269 
1270 	if (!IS_ERR(mmc->supply.vmmc)) {
1271 		spin_unlock_irq(&host->lock);
1272 		mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, vdd);
1273 		spin_lock_irq(&host->lock);
1274 		return;
1275 	}
1276 
1277 	if (mode != MMC_POWER_OFF) {
1278 		switch (1 << vdd) {
1279 		case MMC_VDD_165_195:
1280 			pwr = SDHCI_POWER_180;
1281 			break;
1282 		case MMC_VDD_29_30:
1283 		case MMC_VDD_30_31:
1284 			pwr = SDHCI_POWER_300;
1285 			break;
1286 		case MMC_VDD_32_33:
1287 		case MMC_VDD_33_34:
1288 			pwr = SDHCI_POWER_330;
1289 			break;
1290 		default:
1291 			BUG();
1292 		}
1293 	}
1294 
1295 	if (host->pwr == pwr)
1296 		return;
1297 
1298 	host->pwr = pwr;
1299 
1300 	if (pwr == 0) {
1301 		sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
1302 		if (host->quirks2 & SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON)
1303 			sdhci_runtime_pm_bus_off(host);
1304 		vdd = 0;
1305 	} else {
1306 		/*
1307 		 * Spec says that we should clear the power reg before setting
1308 		 * a new value. Some controllers don't seem to like this though.
1309 		 */
1310 		if (!(host->quirks & SDHCI_QUIRK_SINGLE_POWER_WRITE))
1311 			sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
1312 
1313 		/*
1314 		 * At least the Marvell CaFe chip gets confused if we set the
1315 		 * voltage and set turn on power at the same time, so set the
1316 		 * voltage first.
1317 		 */
1318 		if (host->quirks & SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER)
1319 			sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL);
1320 
1321 		pwr |= SDHCI_POWER_ON;
1322 
1323 		sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL);
1324 
1325 		if (host->quirks2 & SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON)
1326 			sdhci_runtime_pm_bus_on(host);
1327 
1328 		/*
1329 		 * Some controllers need an extra 10ms delay of 10ms before
1330 		 * they can apply clock after applying power
1331 		 */
1332 		if (host->quirks & SDHCI_QUIRK_DELAY_AFTER_POWER)
1333 			mdelay(10);
1334 	}
1335 }
1336 
1337 /*****************************************************************************\
1338  *                                                                           *
1339  * MMC callbacks                                                             *
1340  *                                                                           *
1341 \*****************************************************************************/
1342 
1343 static void sdhci_request(struct mmc_host *mmc, struct mmc_request *mrq)
1344 {
1345 	struct sdhci_host *host;
1346 	int present;
1347 	unsigned long flags;
1348 	u32 tuning_opcode;
1349 
1350 	host = mmc_priv(mmc);
1351 
1352 	sdhci_runtime_pm_get(host);
1353 
1354 	present = mmc_gpio_get_cd(host->mmc);
1355 
1356 	spin_lock_irqsave(&host->lock, flags);
1357 
1358 	WARN_ON(host->mrq != NULL);
1359 
1360 #ifndef SDHCI_USE_LEDS_CLASS
1361 	sdhci_activate_led(host);
1362 #endif
1363 
1364 	/*
1365 	 * Ensure we don't send the STOP for non-SET_BLOCK_COUNTED
1366 	 * requests if Auto-CMD12 is enabled.
1367 	 */
1368 	if (!mrq->sbc && (host->flags & SDHCI_AUTO_CMD12)) {
1369 		if (mrq->stop) {
1370 			mrq->data->stop = NULL;
1371 			mrq->stop = NULL;
1372 		}
1373 	}
1374 
1375 	host->mrq = mrq;
1376 
1377 	/*
1378 	 * Firstly check card presence from cd-gpio.  The return could
1379 	 * be one of the following possibilities:
1380 	 *     negative: cd-gpio is not available
1381 	 *     zero: cd-gpio is used, and card is removed
1382 	 *     one: cd-gpio is used, and card is present
1383 	 */
1384 	if (present < 0) {
1385 		/* If polling, assume that the card is always present. */
1386 		if (host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION)
1387 			present = 1;
1388 		else
1389 			present = sdhci_readl(host, SDHCI_PRESENT_STATE) &
1390 					SDHCI_CARD_PRESENT;
1391 	}
1392 
1393 	if (!present || host->flags & SDHCI_DEVICE_DEAD) {
1394 		host->mrq->cmd->error = -ENOMEDIUM;
1395 		tasklet_schedule(&host->finish_tasklet);
1396 	} else {
1397 		u32 present_state;
1398 
1399 		present_state = sdhci_readl(host, SDHCI_PRESENT_STATE);
1400 		/*
1401 		 * Check if the re-tuning timer has already expired and there
1402 		 * is no on-going data transfer and DAT0 is not busy. If so,
1403 		 * we need to execute tuning procedure before sending command.
1404 		 */
1405 		if ((host->flags & SDHCI_NEEDS_RETUNING) &&
1406 		    !(present_state & (SDHCI_DOING_WRITE | SDHCI_DOING_READ)) &&
1407 		    (present_state & SDHCI_DATA_0_LVL_MASK)) {
1408 			if (mmc->card) {
1409 				/* eMMC uses cmd21 but sd and sdio use cmd19 */
1410 				tuning_opcode =
1411 					mmc->card->type == MMC_TYPE_MMC ?
1412 					MMC_SEND_TUNING_BLOCK_HS200 :
1413 					MMC_SEND_TUNING_BLOCK;
1414 
1415 				/* Here we need to set the host->mrq to NULL,
1416 				 * in case the pending finish_tasklet
1417 				 * finishes it incorrectly.
1418 				 */
1419 				host->mrq = NULL;
1420 
1421 				spin_unlock_irqrestore(&host->lock, flags);
1422 				sdhci_execute_tuning(mmc, tuning_opcode);
1423 				spin_lock_irqsave(&host->lock, flags);
1424 
1425 				/* Restore original mmc_request structure */
1426 				host->mrq = mrq;
1427 			}
1428 		}
1429 
1430 		if (mrq->sbc && !(host->flags & SDHCI_AUTO_CMD23))
1431 			sdhci_send_command(host, mrq->sbc);
1432 		else
1433 			sdhci_send_command(host, mrq->cmd);
1434 	}
1435 
1436 	mmiowb();
1437 	spin_unlock_irqrestore(&host->lock, flags);
1438 }
1439 
1440 void sdhci_set_bus_width(struct sdhci_host *host, int width)
1441 {
1442 	u8 ctrl;
1443 
1444 	ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
1445 	if (width == MMC_BUS_WIDTH_8) {
1446 		ctrl &= ~SDHCI_CTRL_4BITBUS;
1447 		if (host->version >= SDHCI_SPEC_300)
1448 			ctrl |= SDHCI_CTRL_8BITBUS;
1449 	} else {
1450 		if (host->version >= SDHCI_SPEC_300)
1451 			ctrl &= ~SDHCI_CTRL_8BITBUS;
1452 		if (width == MMC_BUS_WIDTH_4)
1453 			ctrl |= SDHCI_CTRL_4BITBUS;
1454 		else
1455 			ctrl &= ~SDHCI_CTRL_4BITBUS;
1456 	}
1457 	sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
1458 }
1459 EXPORT_SYMBOL_GPL(sdhci_set_bus_width);
1460 
1461 void sdhci_set_uhs_signaling(struct sdhci_host *host, unsigned timing)
1462 {
1463 	u16 ctrl_2;
1464 
1465 	ctrl_2 = sdhci_readw(host, SDHCI_HOST_CONTROL2);
1466 	/* Select Bus Speed Mode for host */
1467 	ctrl_2 &= ~SDHCI_CTRL_UHS_MASK;
1468 	if ((timing == MMC_TIMING_MMC_HS200) ||
1469 	    (timing == MMC_TIMING_UHS_SDR104))
1470 		ctrl_2 |= SDHCI_CTRL_UHS_SDR104;
1471 	else if (timing == MMC_TIMING_UHS_SDR12)
1472 		ctrl_2 |= SDHCI_CTRL_UHS_SDR12;
1473 	else if (timing == MMC_TIMING_UHS_SDR25)
1474 		ctrl_2 |= SDHCI_CTRL_UHS_SDR25;
1475 	else if (timing == MMC_TIMING_UHS_SDR50)
1476 		ctrl_2 |= SDHCI_CTRL_UHS_SDR50;
1477 	else if ((timing == MMC_TIMING_UHS_DDR50) ||
1478 		 (timing == MMC_TIMING_MMC_DDR52))
1479 		ctrl_2 |= SDHCI_CTRL_UHS_DDR50;
1480 	else if (timing == MMC_TIMING_MMC_HS400)
1481 		ctrl_2 |= SDHCI_CTRL_HS400; /* Non-standard */
1482 	sdhci_writew(host, ctrl_2, SDHCI_HOST_CONTROL2);
1483 }
1484 EXPORT_SYMBOL_GPL(sdhci_set_uhs_signaling);
1485 
1486 static void sdhci_do_set_ios(struct sdhci_host *host, struct mmc_ios *ios)
1487 {
1488 	unsigned long flags;
1489 	u8 ctrl;
1490 	struct mmc_host *mmc = host->mmc;
1491 
1492 	spin_lock_irqsave(&host->lock, flags);
1493 
1494 	if (host->flags & SDHCI_DEVICE_DEAD) {
1495 		spin_unlock_irqrestore(&host->lock, flags);
1496 		if (!IS_ERR(mmc->supply.vmmc) &&
1497 		    ios->power_mode == MMC_POWER_OFF)
1498 			mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, 0);
1499 		return;
1500 	}
1501 
1502 	/*
1503 	 * Reset the chip on each power off.
1504 	 * Should clear out any weird states.
1505 	 */
1506 	if (ios->power_mode == MMC_POWER_OFF) {
1507 		sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE);
1508 		sdhci_reinit(host);
1509 	}
1510 
1511 	if (host->version >= SDHCI_SPEC_300 &&
1512 		(ios->power_mode == MMC_POWER_UP) &&
1513 		!(host->quirks2 & SDHCI_QUIRK2_PRESET_VALUE_BROKEN))
1514 		sdhci_enable_preset_value(host, false);
1515 
1516 	if (!ios->clock || ios->clock != host->clock) {
1517 		host->ops->set_clock(host, ios->clock);
1518 		host->clock = ios->clock;
1519 
1520 		if (host->quirks & SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK &&
1521 		    host->clock) {
1522 			host->timeout_clk = host->mmc->actual_clock ?
1523 						host->mmc->actual_clock / 1000 :
1524 						host->clock / 1000;
1525 			host->mmc->max_busy_timeout =
1526 				host->ops->get_max_timeout_count ?
1527 				host->ops->get_max_timeout_count(host) :
1528 				1 << 27;
1529 			host->mmc->max_busy_timeout /= host->timeout_clk;
1530 		}
1531 	}
1532 
1533 	sdhci_set_power(host, ios->power_mode, ios->vdd);
1534 
1535 	if (host->ops->platform_send_init_74_clocks)
1536 		host->ops->platform_send_init_74_clocks(host, ios->power_mode);
1537 
1538 	host->ops->set_bus_width(host, ios->bus_width);
1539 
1540 	ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
1541 
1542 	if ((ios->timing == MMC_TIMING_SD_HS ||
1543 	     ios->timing == MMC_TIMING_MMC_HS)
1544 	    && !(host->quirks & SDHCI_QUIRK_NO_HISPD_BIT))
1545 		ctrl |= SDHCI_CTRL_HISPD;
1546 	else
1547 		ctrl &= ~SDHCI_CTRL_HISPD;
1548 
1549 	if (host->version >= SDHCI_SPEC_300) {
1550 		u16 clk, ctrl_2;
1551 
1552 		/* In case of UHS-I modes, set High Speed Enable */
1553 		if ((ios->timing == MMC_TIMING_MMC_HS400) ||
1554 		    (ios->timing == MMC_TIMING_MMC_HS200) ||
1555 		    (ios->timing == MMC_TIMING_MMC_DDR52) ||
1556 		    (ios->timing == MMC_TIMING_UHS_SDR50) ||
1557 		    (ios->timing == MMC_TIMING_UHS_SDR104) ||
1558 		    (ios->timing == MMC_TIMING_UHS_DDR50) ||
1559 		    (ios->timing == MMC_TIMING_UHS_SDR25))
1560 			ctrl |= SDHCI_CTRL_HISPD;
1561 
1562 		if (!host->preset_enabled) {
1563 			sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
1564 			/*
1565 			 * We only need to set Driver Strength if the
1566 			 * preset value enable is not set.
1567 			 */
1568 			ctrl_2 = sdhci_readw(host, SDHCI_HOST_CONTROL2);
1569 			ctrl_2 &= ~SDHCI_CTRL_DRV_TYPE_MASK;
1570 			if (ios->drv_type == MMC_SET_DRIVER_TYPE_A)
1571 				ctrl_2 |= SDHCI_CTRL_DRV_TYPE_A;
1572 			else if (ios->drv_type == MMC_SET_DRIVER_TYPE_C)
1573 				ctrl_2 |= SDHCI_CTRL_DRV_TYPE_C;
1574 
1575 			sdhci_writew(host, ctrl_2, SDHCI_HOST_CONTROL2);
1576 		} else {
1577 			/*
1578 			 * According to SDHC Spec v3.00, if the Preset Value
1579 			 * Enable in the Host Control 2 register is set, we
1580 			 * need to reset SD Clock Enable before changing High
1581 			 * Speed Enable to avoid generating clock gliches.
1582 			 */
1583 
1584 			/* Reset SD Clock Enable */
1585 			clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL);
1586 			clk &= ~SDHCI_CLOCK_CARD_EN;
1587 			sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
1588 
1589 			sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
1590 
1591 			/* Re-enable SD Clock */
1592 			host->ops->set_clock(host, host->clock);
1593 		}
1594 
1595 		/* Reset SD Clock Enable */
1596 		clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL);
1597 		clk &= ~SDHCI_CLOCK_CARD_EN;
1598 		sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
1599 
1600 		host->ops->set_uhs_signaling(host, ios->timing);
1601 		host->timing = ios->timing;
1602 
1603 		if (!(host->quirks2 & SDHCI_QUIRK2_PRESET_VALUE_BROKEN) &&
1604 				((ios->timing == MMC_TIMING_UHS_SDR12) ||
1605 				 (ios->timing == MMC_TIMING_UHS_SDR25) ||
1606 				 (ios->timing == MMC_TIMING_UHS_SDR50) ||
1607 				 (ios->timing == MMC_TIMING_UHS_SDR104) ||
1608 				 (ios->timing == MMC_TIMING_UHS_DDR50))) {
1609 			u16 preset;
1610 
1611 			sdhci_enable_preset_value(host, true);
1612 			preset = sdhci_get_preset_value(host);
1613 			ios->drv_type = (preset & SDHCI_PRESET_DRV_MASK)
1614 				>> SDHCI_PRESET_DRV_SHIFT;
1615 		}
1616 
1617 		/* Re-enable SD Clock */
1618 		host->ops->set_clock(host, host->clock);
1619 	} else
1620 		sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
1621 
1622 	/*
1623 	 * Some (ENE) controllers go apeshit on some ios operation,
1624 	 * signalling timeout and CRC errors even on CMD0. Resetting
1625 	 * it on each ios seems to solve the problem.
1626 	 */
1627 	if(host->quirks & SDHCI_QUIRK_RESET_CMD_DATA_ON_IOS)
1628 		sdhci_do_reset(host, SDHCI_RESET_CMD | SDHCI_RESET_DATA);
1629 
1630 	mmiowb();
1631 	spin_unlock_irqrestore(&host->lock, flags);
1632 }
1633 
1634 static void sdhci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
1635 {
1636 	struct sdhci_host *host = mmc_priv(mmc);
1637 
1638 	sdhci_runtime_pm_get(host);
1639 	sdhci_do_set_ios(host, ios);
1640 	sdhci_runtime_pm_put(host);
1641 }
1642 
1643 static int sdhci_do_get_cd(struct sdhci_host *host)
1644 {
1645 	int gpio_cd = mmc_gpio_get_cd(host->mmc);
1646 
1647 	if (host->flags & SDHCI_DEVICE_DEAD)
1648 		return 0;
1649 
1650 	/* If polling/nonremovable, assume that the card is always present. */
1651 	if ((host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION) ||
1652 	    (host->mmc->caps & MMC_CAP_NONREMOVABLE))
1653 		return 1;
1654 
1655 	/* Try slot gpio detect */
1656 	if (!IS_ERR_VALUE(gpio_cd))
1657 		return !!gpio_cd;
1658 
1659 	/* Host native card detect */
1660 	return !!(sdhci_readl(host, SDHCI_PRESENT_STATE) & SDHCI_CARD_PRESENT);
1661 }
1662 
1663 static int sdhci_get_cd(struct mmc_host *mmc)
1664 {
1665 	struct sdhci_host *host = mmc_priv(mmc);
1666 	int ret;
1667 
1668 	sdhci_runtime_pm_get(host);
1669 	ret = sdhci_do_get_cd(host);
1670 	sdhci_runtime_pm_put(host);
1671 	return ret;
1672 }
1673 
1674 static int sdhci_check_ro(struct sdhci_host *host)
1675 {
1676 	unsigned long flags;
1677 	int is_readonly;
1678 
1679 	spin_lock_irqsave(&host->lock, flags);
1680 
1681 	if (host->flags & SDHCI_DEVICE_DEAD)
1682 		is_readonly = 0;
1683 	else if (host->ops->get_ro)
1684 		is_readonly = host->ops->get_ro(host);
1685 	else
1686 		is_readonly = !(sdhci_readl(host, SDHCI_PRESENT_STATE)
1687 				& SDHCI_WRITE_PROTECT);
1688 
1689 	spin_unlock_irqrestore(&host->lock, flags);
1690 
1691 	/* This quirk needs to be replaced by a callback-function later */
1692 	return host->quirks & SDHCI_QUIRK_INVERTED_WRITE_PROTECT ?
1693 		!is_readonly : is_readonly;
1694 }
1695 
1696 #define SAMPLE_COUNT	5
1697 
1698 static int sdhci_do_get_ro(struct sdhci_host *host)
1699 {
1700 	int i, ro_count;
1701 
1702 	if (!(host->quirks & SDHCI_QUIRK_UNSTABLE_RO_DETECT))
1703 		return sdhci_check_ro(host);
1704 
1705 	ro_count = 0;
1706 	for (i = 0; i < SAMPLE_COUNT; i++) {
1707 		if (sdhci_check_ro(host)) {
1708 			if (++ro_count > SAMPLE_COUNT / 2)
1709 				return 1;
1710 		}
1711 		msleep(30);
1712 	}
1713 	return 0;
1714 }
1715 
1716 static void sdhci_hw_reset(struct mmc_host *mmc)
1717 {
1718 	struct sdhci_host *host = mmc_priv(mmc);
1719 
1720 	if (host->ops && host->ops->hw_reset)
1721 		host->ops->hw_reset(host);
1722 }
1723 
1724 static int sdhci_get_ro(struct mmc_host *mmc)
1725 {
1726 	struct sdhci_host *host = mmc_priv(mmc);
1727 	int ret;
1728 
1729 	sdhci_runtime_pm_get(host);
1730 	ret = sdhci_do_get_ro(host);
1731 	sdhci_runtime_pm_put(host);
1732 	return ret;
1733 }
1734 
1735 static void sdhci_enable_sdio_irq_nolock(struct sdhci_host *host, int enable)
1736 {
1737 	if (!(host->flags & SDHCI_DEVICE_DEAD)) {
1738 		if (enable)
1739 			host->ier |= SDHCI_INT_CARD_INT;
1740 		else
1741 			host->ier &= ~SDHCI_INT_CARD_INT;
1742 
1743 		sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
1744 		sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
1745 		mmiowb();
1746 	}
1747 }
1748 
1749 static void sdhci_enable_sdio_irq(struct mmc_host *mmc, int enable)
1750 {
1751 	struct sdhci_host *host = mmc_priv(mmc);
1752 	unsigned long flags;
1753 
1754 	sdhci_runtime_pm_get(host);
1755 
1756 	spin_lock_irqsave(&host->lock, flags);
1757 	if (enable)
1758 		host->flags |= SDHCI_SDIO_IRQ_ENABLED;
1759 	else
1760 		host->flags &= ~SDHCI_SDIO_IRQ_ENABLED;
1761 
1762 	sdhci_enable_sdio_irq_nolock(host, enable);
1763 	spin_unlock_irqrestore(&host->lock, flags);
1764 
1765 	sdhci_runtime_pm_put(host);
1766 }
1767 
1768 static int sdhci_do_start_signal_voltage_switch(struct sdhci_host *host,
1769 						struct mmc_ios *ios)
1770 {
1771 	struct mmc_host *mmc = host->mmc;
1772 	u16 ctrl;
1773 	int ret;
1774 
1775 	/*
1776 	 * Signal Voltage Switching is only applicable for Host Controllers
1777 	 * v3.00 and above.
1778 	 */
1779 	if (host->version < SDHCI_SPEC_300)
1780 		return 0;
1781 
1782 	ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
1783 
1784 	switch (ios->signal_voltage) {
1785 	case MMC_SIGNAL_VOLTAGE_330:
1786 		/* Set 1.8V Signal Enable in the Host Control2 register to 0 */
1787 		ctrl &= ~SDHCI_CTRL_VDD_180;
1788 		sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
1789 
1790 		if (!IS_ERR(mmc->supply.vqmmc)) {
1791 			ret = regulator_set_voltage(mmc->supply.vqmmc, 2700000,
1792 						    3600000);
1793 			if (ret) {
1794 				pr_warn("%s: Switching to 3.3V signalling voltage failed\n",
1795 					mmc_hostname(mmc));
1796 				return -EIO;
1797 			}
1798 		}
1799 		/* Wait for 5ms */
1800 		usleep_range(5000, 5500);
1801 
1802 		/* 3.3V regulator output should be stable within 5 ms */
1803 		ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
1804 		if (!(ctrl & SDHCI_CTRL_VDD_180))
1805 			return 0;
1806 
1807 		pr_warn("%s: 3.3V regulator output did not became stable\n",
1808 			mmc_hostname(mmc));
1809 
1810 		return -EAGAIN;
1811 	case MMC_SIGNAL_VOLTAGE_180:
1812 		if (!IS_ERR(mmc->supply.vqmmc)) {
1813 			ret = regulator_set_voltage(mmc->supply.vqmmc,
1814 					1700000, 1950000);
1815 			if (ret) {
1816 				pr_warn("%s: Switching to 1.8V signalling voltage failed\n",
1817 					mmc_hostname(mmc));
1818 				return -EIO;
1819 			}
1820 		}
1821 
1822 		/*
1823 		 * Enable 1.8V Signal Enable in the Host Control2
1824 		 * register
1825 		 */
1826 		ctrl |= SDHCI_CTRL_VDD_180;
1827 		sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
1828 
1829 		/* 1.8V regulator output should be stable within 5 ms */
1830 		ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
1831 		if (ctrl & SDHCI_CTRL_VDD_180)
1832 			return 0;
1833 
1834 		pr_warn("%s: 1.8V regulator output did not became stable\n",
1835 			mmc_hostname(mmc));
1836 
1837 		return -EAGAIN;
1838 	case MMC_SIGNAL_VOLTAGE_120:
1839 		if (!IS_ERR(mmc->supply.vqmmc)) {
1840 			ret = regulator_set_voltage(mmc->supply.vqmmc, 1100000,
1841 						    1300000);
1842 			if (ret) {
1843 				pr_warn("%s: Switching to 1.2V signalling voltage failed\n",
1844 					mmc_hostname(mmc));
1845 				return -EIO;
1846 			}
1847 		}
1848 		return 0;
1849 	default:
1850 		/* No signal voltage switch required */
1851 		return 0;
1852 	}
1853 }
1854 
1855 static int sdhci_start_signal_voltage_switch(struct mmc_host *mmc,
1856 	struct mmc_ios *ios)
1857 {
1858 	struct sdhci_host *host = mmc_priv(mmc);
1859 	int err;
1860 
1861 	if (host->version < SDHCI_SPEC_300)
1862 		return 0;
1863 	sdhci_runtime_pm_get(host);
1864 	err = sdhci_do_start_signal_voltage_switch(host, ios);
1865 	sdhci_runtime_pm_put(host);
1866 	return err;
1867 }
1868 
1869 static int sdhci_card_busy(struct mmc_host *mmc)
1870 {
1871 	struct sdhci_host *host = mmc_priv(mmc);
1872 	u32 present_state;
1873 
1874 	sdhci_runtime_pm_get(host);
1875 	/* Check whether DAT[3:0] is 0000 */
1876 	present_state = sdhci_readl(host, SDHCI_PRESENT_STATE);
1877 	sdhci_runtime_pm_put(host);
1878 
1879 	return !(present_state & SDHCI_DATA_LVL_MASK);
1880 }
1881 
1882 static int sdhci_prepare_hs400_tuning(struct mmc_host *mmc, struct mmc_ios *ios)
1883 {
1884 	struct sdhci_host *host = mmc_priv(mmc);
1885 	unsigned long flags;
1886 
1887 	spin_lock_irqsave(&host->lock, flags);
1888 	host->flags |= SDHCI_HS400_TUNING;
1889 	spin_unlock_irqrestore(&host->lock, flags);
1890 
1891 	return 0;
1892 }
1893 
1894 static int sdhci_execute_tuning(struct mmc_host *mmc, u32 opcode)
1895 {
1896 	struct sdhci_host *host = mmc_priv(mmc);
1897 	u16 ctrl;
1898 	int tuning_loop_counter = MAX_TUNING_LOOP;
1899 	int err = 0;
1900 	unsigned long flags;
1901 	unsigned int tuning_count = 0;
1902 	bool hs400_tuning;
1903 
1904 	sdhci_runtime_pm_get(host);
1905 	spin_lock_irqsave(&host->lock, flags);
1906 
1907 	hs400_tuning = host->flags & SDHCI_HS400_TUNING;
1908 	host->flags &= ~SDHCI_HS400_TUNING;
1909 
1910 	if (host->tuning_mode == SDHCI_TUNING_MODE_1)
1911 		tuning_count = host->tuning_count;
1912 
1913 	/*
1914 	 * The Host Controller needs tuning only in case of SDR104 mode
1915 	 * and for SDR50 mode when Use Tuning for SDR50 is set in the
1916 	 * Capabilities register.
1917 	 * If the Host Controller supports the HS200 mode then the
1918 	 * tuning function has to be executed.
1919 	 */
1920 	switch (host->timing) {
1921 	/* HS400 tuning is done in HS200 mode */
1922 	case MMC_TIMING_MMC_HS400:
1923 		err = -EINVAL;
1924 		goto out_unlock;
1925 
1926 	case MMC_TIMING_MMC_HS200:
1927 		/*
1928 		 * Periodic re-tuning for HS400 is not expected to be needed, so
1929 		 * disable it here.
1930 		 */
1931 		if (hs400_tuning)
1932 			tuning_count = 0;
1933 		break;
1934 
1935 	case MMC_TIMING_UHS_SDR104:
1936 		break;
1937 
1938 	case MMC_TIMING_UHS_SDR50:
1939 		if (host->flags & SDHCI_SDR50_NEEDS_TUNING ||
1940 		    host->flags & SDHCI_SDR104_NEEDS_TUNING)
1941 			break;
1942 		/* FALLTHROUGH */
1943 
1944 	default:
1945 		goto out_unlock;
1946 	}
1947 
1948 	if (host->ops->platform_execute_tuning) {
1949 		spin_unlock_irqrestore(&host->lock, flags);
1950 		err = host->ops->platform_execute_tuning(host, opcode);
1951 		sdhci_runtime_pm_put(host);
1952 		return err;
1953 	}
1954 
1955 	ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
1956 	ctrl |= SDHCI_CTRL_EXEC_TUNING;
1957 	sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
1958 
1959 	/*
1960 	 * As per the Host Controller spec v3.00, tuning command
1961 	 * generates Buffer Read Ready interrupt, so enable that.
1962 	 *
1963 	 * Note: The spec clearly says that when tuning sequence
1964 	 * is being performed, the controller does not generate
1965 	 * interrupts other than Buffer Read Ready interrupt. But
1966 	 * to make sure we don't hit a controller bug, we _only_
1967 	 * enable Buffer Read Ready interrupt here.
1968 	 */
1969 	sdhci_writel(host, SDHCI_INT_DATA_AVAIL, SDHCI_INT_ENABLE);
1970 	sdhci_writel(host, SDHCI_INT_DATA_AVAIL, SDHCI_SIGNAL_ENABLE);
1971 
1972 	/*
1973 	 * Issue CMD19 repeatedly till Execute Tuning is set to 0 or the number
1974 	 * of loops reaches 40 times or a timeout of 150ms occurs.
1975 	 */
1976 	do {
1977 		struct mmc_command cmd = {0};
1978 		struct mmc_request mrq = {NULL};
1979 
1980 		cmd.opcode = opcode;
1981 		cmd.arg = 0;
1982 		cmd.flags = MMC_RSP_R1 | MMC_CMD_ADTC;
1983 		cmd.retries = 0;
1984 		cmd.data = NULL;
1985 		cmd.error = 0;
1986 
1987 		if (tuning_loop_counter-- == 0)
1988 			break;
1989 
1990 		mrq.cmd = &cmd;
1991 		host->mrq = &mrq;
1992 
1993 		/*
1994 		 * In response to CMD19, the card sends 64 bytes of tuning
1995 		 * block to the Host Controller. So we set the block size
1996 		 * to 64 here.
1997 		 */
1998 		if (cmd.opcode == MMC_SEND_TUNING_BLOCK_HS200) {
1999 			if (mmc->ios.bus_width == MMC_BUS_WIDTH_8)
2000 				sdhci_writew(host, SDHCI_MAKE_BLKSZ(7, 128),
2001 					     SDHCI_BLOCK_SIZE);
2002 			else if (mmc->ios.bus_width == MMC_BUS_WIDTH_4)
2003 				sdhci_writew(host, SDHCI_MAKE_BLKSZ(7, 64),
2004 					     SDHCI_BLOCK_SIZE);
2005 		} else {
2006 			sdhci_writew(host, SDHCI_MAKE_BLKSZ(7, 64),
2007 				     SDHCI_BLOCK_SIZE);
2008 		}
2009 
2010 		/*
2011 		 * The tuning block is sent by the card to the host controller.
2012 		 * So we set the TRNS_READ bit in the Transfer Mode register.
2013 		 * This also takes care of setting DMA Enable and Multi Block
2014 		 * Select in the same register to 0.
2015 		 */
2016 		sdhci_writew(host, SDHCI_TRNS_READ, SDHCI_TRANSFER_MODE);
2017 
2018 		sdhci_send_command(host, &cmd);
2019 
2020 		host->cmd = NULL;
2021 		host->mrq = NULL;
2022 
2023 		spin_unlock_irqrestore(&host->lock, flags);
2024 		/* Wait for Buffer Read Ready interrupt */
2025 		wait_event_interruptible_timeout(host->buf_ready_int,
2026 					(host->tuning_done == 1),
2027 					msecs_to_jiffies(50));
2028 		spin_lock_irqsave(&host->lock, flags);
2029 
2030 		if (!host->tuning_done) {
2031 			pr_info(DRIVER_NAME ": Timeout waiting for "
2032 				"Buffer Read Ready interrupt during tuning "
2033 				"procedure, falling back to fixed sampling "
2034 				"clock\n");
2035 			ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
2036 			ctrl &= ~SDHCI_CTRL_TUNED_CLK;
2037 			ctrl &= ~SDHCI_CTRL_EXEC_TUNING;
2038 			sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
2039 
2040 			err = -EIO;
2041 			goto out;
2042 		}
2043 
2044 		host->tuning_done = 0;
2045 
2046 		ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
2047 
2048 		/* eMMC spec does not require a delay between tuning cycles */
2049 		if (opcode == MMC_SEND_TUNING_BLOCK)
2050 			mdelay(1);
2051 	} while (ctrl & SDHCI_CTRL_EXEC_TUNING);
2052 
2053 	/*
2054 	 * The Host Driver has exhausted the maximum number of loops allowed,
2055 	 * so use fixed sampling frequency.
2056 	 */
2057 	if (tuning_loop_counter < 0) {
2058 		ctrl &= ~SDHCI_CTRL_TUNED_CLK;
2059 		sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
2060 	}
2061 	if (!(ctrl & SDHCI_CTRL_TUNED_CLK)) {
2062 		pr_info(DRIVER_NAME ": Tuning procedure"
2063 			" failed, falling back to fixed sampling"
2064 			" clock\n");
2065 		err = -EIO;
2066 	}
2067 
2068 out:
2069 	host->flags &= ~SDHCI_NEEDS_RETUNING;
2070 
2071 	if (tuning_count) {
2072 		host->flags |= SDHCI_USING_RETUNING_TIMER;
2073 		mod_timer(&host->tuning_timer, jiffies + tuning_count * HZ);
2074 	}
2075 
2076 	/*
2077 	 * In case tuning fails, host controllers which support re-tuning can
2078 	 * try tuning again at a later time, when the re-tuning timer expires.
2079 	 * So for these controllers, we return 0. Since there might be other
2080 	 * controllers who do not have this capability, we return error for
2081 	 * them. SDHCI_USING_RETUNING_TIMER means the host is currently using
2082 	 * a retuning timer to do the retuning for the card.
2083 	 */
2084 	if (err && (host->flags & SDHCI_USING_RETUNING_TIMER))
2085 		err = 0;
2086 
2087 	sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
2088 	sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
2089 out_unlock:
2090 	spin_unlock_irqrestore(&host->lock, flags);
2091 	sdhci_runtime_pm_put(host);
2092 
2093 	return err;
2094 }
2095 
2096 
2097 static void sdhci_enable_preset_value(struct sdhci_host *host, bool enable)
2098 {
2099 	/* Host Controller v3.00 defines preset value registers */
2100 	if (host->version < SDHCI_SPEC_300)
2101 		return;
2102 
2103 	/*
2104 	 * We only enable or disable Preset Value if they are not already
2105 	 * enabled or disabled respectively. Otherwise, we bail out.
2106 	 */
2107 	if (host->preset_enabled != enable) {
2108 		u16 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
2109 
2110 		if (enable)
2111 			ctrl |= SDHCI_CTRL_PRESET_VAL_ENABLE;
2112 		else
2113 			ctrl &= ~SDHCI_CTRL_PRESET_VAL_ENABLE;
2114 
2115 		sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
2116 
2117 		if (enable)
2118 			host->flags |= SDHCI_PV_ENABLED;
2119 		else
2120 			host->flags &= ~SDHCI_PV_ENABLED;
2121 
2122 		host->preset_enabled = enable;
2123 	}
2124 }
2125 
2126 static void sdhci_card_event(struct mmc_host *mmc)
2127 {
2128 	struct sdhci_host *host = mmc_priv(mmc);
2129 	unsigned long flags;
2130 	int present;
2131 
2132 	/* First check if client has provided their own card event */
2133 	if (host->ops->card_event)
2134 		host->ops->card_event(host);
2135 
2136 	present = sdhci_do_get_cd(host);
2137 
2138 	spin_lock_irqsave(&host->lock, flags);
2139 
2140 	/* Check host->mrq first in case we are runtime suspended */
2141 	if (host->mrq && !present) {
2142 		pr_err("%s: Card removed during transfer!\n",
2143 			mmc_hostname(host->mmc));
2144 		pr_err("%s: Resetting controller.\n",
2145 			mmc_hostname(host->mmc));
2146 
2147 		sdhci_do_reset(host, SDHCI_RESET_CMD);
2148 		sdhci_do_reset(host, SDHCI_RESET_DATA);
2149 
2150 		host->mrq->cmd->error = -ENOMEDIUM;
2151 		tasklet_schedule(&host->finish_tasklet);
2152 	}
2153 
2154 	spin_unlock_irqrestore(&host->lock, flags);
2155 }
2156 
2157 static const struct mmc_host_ops sdhci_ops = {
2158 	.request	= sdhci_request,
2159 	.set_ios	= sdhci_set_ios,
2160 	.get_cd		= sdhci_get_cd,
2161 	.get_ro		= sdhci_get_ro,
2162 	.hw_reset	= sdhci_hw_reset,
2163 	.enable_sdio_irq = sdhci_enable_sdio_irq,
2164 	.start_signal_voltage_switch	= sdhci_start_signal_voltage_switch,
2165 	.prepare_hs400_tuning		= sdhci_prepare_hs400_tuning,
2166 	.execute_tuning			= sdhci_execute_tuning,
2167 	.card_event			= sdhci_card_event,
2168 	.card_busy	= sdhci_card_busy,
2169 };
2170 
2171 /*****************************************************************************\
2172  *                                                                           *
2173  * Tasklets                                                                  *
2174  *                                                                           *
2175 \*****************************************************************************/
2176 
2177 static void sdhci_tasklet_finish(unsigned long param)
2178 {
2179 	struct sdhci_host *host;
2180 	unsigned long flags;
2181 	struct mmc_request *mrq;
2182 
2183 	host = (struct sdhci_host*)param;
2184 
2185 	spin_lock_irqsave(&host->lock, flags);
2186 
2187         /*
2188          * If this tasklet gets rescheduled while running, it will
2189          * be run again afterwards but without any active request.
2190          */
2191 	if (!host->mrq) {
2192 		spin_unlock_irqrestore(&host->lock, flags);
2193 		return;
2194 	}
2195 
2196 	del_timer(&host->timer);
2197 
2198 	mrq = host->mrq;
2199 
2200 	/*
2201 	 * The controller needs a reset of internal state machines
2202 	 * upon error conditions.
2203 	 */
2204 	if (!(host->flags & SDHCI_DEVICE_DEAD) &&
2205 	    ((mrq->cmd && mrq->cmd->error) ||
2206 	     (mrq->sbc && mrq->sbc->error) ||
2207 	     (mrq->data && ((mrq->data->error && !mrq->data->stop) ||
2208 			    (mrq->data->stop && mrq->data->stop->error))) ||
2209 	     (host->quirks & SDHCI_QUIRK_RESET_AFTER_REQUEST))) {
2210 
2211 		/* Some controllers need this kick or reset won't work here */
2212 		if (host->quirks & SDHCI_QUIRK_CLOCK_BEFORE_RESET)
2213 			/* This is to force an update */
2214 			host->ops->set_clock(host, host->clock);
2215 
2216 		/* Spec says we should do both at the same time, but Ricoh
2217 		   controllers do not like that. */
2218 		sdhci_do_reset(host, SDHCI_RESET_CMD);
2219 		sdhci_do_reset(host, SDHCI_RESET_DATA);
2220 	}
2221 
2222 	host->mrq = NULL;
2223 	host->cmd = NULL;
2224 	host->data = NULL;
2225 
2226 #ifndef SDHCI_USE_LEDS_CLASS
2227 	sdhci_deactivate_led(host);
2228 #endif
2229 
2230 	mmiowb();
2231 	spin_unlock_irqrestore(&host->lock, flags);
2232 
2233 	mmc_request_done(host->mmc, mrq);
2234 	sdhci_runtime_pm_put(host);
2235 }
2236 
2237 static void sdhci_timeout_timer(unsigned long data)
2238 {
2239 	struct sdhci_host *host;
2240 	unsigned long flags;
2241 
2242 	host = (struct sdhci_host*)data;
2243 
2244 	spin_lock_irqsave(&host->lock, flags);
2245 
2246 	if (host->mrq) {
2247 		pr_err("%s: Timeout waiting for hardware "
2248 			"interrupt.\n", mmc_hostname(host->mmc));
2249 		sdhci_dumpregs(host);
2250 
2251 		if (host->data) {
2252 			host->data->error = -ETIMEDOUT;
2253 			sdhci_finish_data(host);
2254 		} else {
2255 			if (host->cmd)
2256 				host->cmd->error = -ETIMEDOUT;
2257 			else
2258 				host->mrq->cmd->error = -ETIMEDOUT;
2259 
2260 			tasklet_schedule(&host->finish_tasklet);
2261 		}
2262 	}
2263 
2264 	mmiowb();
2265 	spin_unlock_irqrestore(&host->lock, flags);
2266 }
2267 
2268 static void sdhci_tuning_timer(unsigned long data)
2269 {
2270 	struct sdhci_host *host;
2271 	unsigned long flags;
2272 
2273 	host = (struct sdhci_host *)data;
2274 
2275 	spin_lock_irqsave(&host->lock, flags);
2276 
2277 	host->flags |= SDHCI_NEEDS_RETUNING;
2278 
2279 	spin_unlock_irqrestore(&host->lock, flags);
2280 }
2281 
2282 /*****************************************************************************\
2283  *                                                                           *
2284  * Interrupt handling                                                        *
2285  *                                                                           *
2286 \*****************************************************************************/
2287 
2288 static void sdhci_cmd_irq(struct sdhci_host *host, u32 intmask, u32 *mask)
2289 {
2290 	BUG_ON(intmask == 0);
2291 
2292 	if (!host->cmd) {
2293 		pr_err("%s: Got command interrupt 0x%08x even "
2294 			"though no command operation was in progress.\n",
2295 			mmc_hostname(host->mmc), (unsigned)intmask);
2296 		sdhci_dumpregs(host);
2297 		return;
2298 	}
2299 
2300 	if (intmask & SDHCI_INT_TIMEOUT)
2301 		host->cmd->error = -ETIMEDOUT;
2302 	else if (intmask & (SDHCI_INT_CRC | SDHCI_INT_END_BIT |
2303 			SDHCI_INT_INDEX))
2304 		host->cmd->error = -EILSEQ;
2305 
2306 	if (host->cmd->error) {
2307 		tasklet_schedule(&host->finish_tasklet);
2308 		return;
2309 	}
2310 
2311 	/*
2312 	 * The host can send and interrupt when the busy state has
2313 	 * ended, allowing us to wait without wasting CPU cycles.
2314 	 * Unfortunately this is overloaded on the "data complete"
2315 	 * interrupt, so we need to take some care when handling
2316 	 * it.
2317 	 *
2318 	 * Note: The 1.0 specification is a bit ambiguous about this
2319 	 *       feature so there might be some problems with older
2320 	 *       controllers.
2321 	 */
2322 	if (host->cmd->flags & MMC_RSP_BUSY) {
2323 		if (host->cmd->data)
2324 			DBG("Cannot wait for busy signal when also "
2325 				"doing a data transfer");
2326 		else if (!(host->quirks & SDHCI_QUIRK_NO_BUSY_IRQ)
2327 				&& !host->busy_handle) {
2328 			/* Mark that command complete before busy is ended */
2329 			host->busy_handle = 1;
2330 			return;
2331 		}
2332 
2333 		/* The controller does not support the end-of-busy IRQ,
2334 		 * fall through and take the SDHCI_INT_RESPONSE */
2335 	} else if ((host->quirks2 & SDHCI_QUIRK2_STOP_WITH_TC) &&
2336 		   host->cmd->opcode == MMC_STOP_TRANSMISSION && !host->data) {
2337 		*mask &= ~SDHCI_INT_DATA_END;
2338 	}
2339 
2340 	if (intmask & SDHCI_INT_RESPONSE)
2341 		sdhci_finish_command(host);
2342 }
2343 
2344 #ifdef CONFIG_MMC_DEBUG
2345 static void sdhci_adma_show_error(struct sdhci_host *host)
2346 {
2347 	const char *name = mmc_hostname(host->mmc);
2348 	void *desc = host->adma_table;
2349 
2350 	sdhci_dumpregs(host);
2351 
2352 	while (true) {
2353 		struct sdhci_adma2_64_desc *dma_desc = desc;
2354 
2355 		if (host->flags & SDHCI_USE_64_BIT_DMA)
2356 			DBG("%s: %p: DMA 0x%08x%08x, LEN 0x%04x, Attr=0x%02x\n",
2357 			    name, desc, le32_to_cpu(dma_desc->addr_hi),
2358 			    le32_to_cpu(dma_desc->addr_lo),
2359 			    le16_to_cpu(dma_desc->len),
2360 			    le16_to_cpu(dma_desc->cmd));
2361 		else
2362 			DBG("%s: %p: DMA 0x%08x, LEN 0x%04x, Attr=0x%02x\n",
2363 			    name, desc, le32_to_cpu(dma_desc->addr_lo),
2364 			    le16_to_cpu(dma_desc->len),
2365 			    le16_to_cpu(dma_desc->cmd));
2366 
2367 		desc += host->desc_sz;
2368 
2369 		if (dma_desc->cmd & cpu_to_le16(ADMA2_END))
2370 			break;
2371 	}
2372 }
2373 #else
2374 static void sdhci_adma_show_error(struct sdhci_host *host) { }
2375 #endif
2376 
2377 static void sdhci_data_irq(struct sdhci_host *host, u32 intmask)
2378 {
2379 	u32 command;
2380 	BUG_ON(intmask == 0);
2381 
2382 	/* CMD19 generates _only_ Buffer Read Ready interrupt */
2383 	if (intmask & SDHCI_INT_DATA_AVAIL) {
2384 		command = SDHCI_GET_CMD(sdhci_readw(host, SDHCI_COMMAND));
2385 		if (command == MMC_SEND_TUNING_BLOCK ||
2386 		    command == MMC_SEND_TUNING_BLOCK_HS200) {
2387 			host->tuning_done = 1;
2388 			wake_up(&host->buf_ready_int);
2389 			return;
2390 		}
2391 	}
2392 
2393 	if (!host->data) {
2394 		/*
2395 		 * The "data complete" interrupt is also used to
2396 		 * indicate that a busy state has ended. See comment
2397 		 * above in sdhci_cmd_irq().
2398 		 */
2399 		if (host->cmd && (host->cmd->flags & MMC_RSP_BUSY)) {
2400 			if (intmask & SDHCI_INT_DATA_TIMEOUT) {
2401 				host->cmd->error = -ETIMEDOUT;
2402 				tasklet_schedule(&host->finish_tasklet);
2403 				return;
2404 			}
2405 			if (intmask & SDHCI_INT_DATA_END) {
2406 				/*
2407 				 * Some cards handle busy-end interrupt
2408 				 * before the command completed, so make
2409 				 * sure we do things in the proper order.
2410 				 */
2411 				if (host->busy_handle)
2412 					sdhci_finish_command(host);
2413 				else
2414 					host->busy_handle = 1;
2415 				return;
2416 			}
2417 		}
2418 
2419 		pr_err("%s: Got data interrupt 0x%08x even "
2420 			"though no data operation was in progress.\n",
2421 			mmc_hostname(host->mmc), (unsigned)intmask);
2422 		sdhci_dumpregs(host);
2423 
2424 		return;
2425 	}
2426 
2427 	if (intmask & SDHCI_INT_DATA_TIMEOUT)
2428 		host->data->error = -ETIMEDOUT;
2429 	else if (intmask & SDHCI_INT_DATA_END_BIT)
2430 		host->data->error = -EILSEQ;
2431 	else if ((intmask & SDHCI_INT_DATA_CRC) &&
2432 		SDHCI_GET_CMD(sdhci_readw(host, SDHCI_COMMAND))
2433 			!= MMC_BUS_TEST_R)
2434 		host->data->error = -EILSEQ;
2435 	else if (intmask & SDHCI_INT_ADMA_ERROR) {
2436 		pr_err("%s: ADMA error\n", mmc_hostname(host->mmc));
2437 		sdhci_adma_show_error(host);
2438 		host->data->error = -EIO;
2439 		if (host->ops->adma_workaround)
2440 			host->ops->adma_workaround(host, intmask);
2441 	}
2442 
2443 	if (host->data->error)
2444 		sdhci_finish_data(host);
2445 	else {
2446 		if (intmask & (SDHCI_INT_DATA_AVAIL | SDHCI_INT_SPACE_AVAIL))
2447 			sdhci_transfer_pio(host);
2448 
2449 		/*
2450 		 * We currently don't do anything fancy with DMA
2451 		 * boundaries, but as we can't disable the feature
2452 		 * we need to at least restart the transfer.
2453 		 *
2454 		 * According to the spec sdhci_readl(host, SDHCI_DMA_ADDRESS)
2455 		 * should return a valid address to continue from, but as
2456 		 * some controllers are faulty, don't trust them.
2457 		 */
2458 		if (intmask & SDHCI_INT_DMA_END) {
2459 			u32 dmastart, dmanow;
2460 			dmastart = sg_dma_address(host->data->sg);
2461 			dmanow = dmastart + host->data->bytes_xfered;
2462 			/*
2463 			 * Force update to the next DMA block boundary.
2464 			 */
2465 			dmanow = (dmanow &
2466 				~(SDHCI_DEFAULT_BOUNDARY_SIZE - 1)) +
2467 				SDHCI_DEFAULT_BOUNDARY_SIZE;
2468 			host->data->bytes_xfered = dmanow - dmastart;
2469 			DBG("%s: DMA base 0x%08x, transferred 0x%06x bytes,"
2470 				" next 0x%08x\n",
2471 				mmc_hostname(host->mmc), dmastart,
2472 				host->data->bytes_xfered, dmanow);
2473 			sdhci_writel(host, dmanow, SDHCI_DMA_ADDRESS);
2474 		}
2475 
2476 		if (intmask & SDHCI_INT_DATA_END) {
2477 			if (host->cmd) {
2478 				/*
2479 				 * Data managed to finish before the
2480 				 * command completed. Make sure we do
2481 				 * things in the proper order.
2482 				 */
2483 				host->data_early = 1;
2484 			} else {
2485 				sdhci_finish_data(host);
2486 			}
2487 		}
2488 	}
2489 }
2490 
2491 static irqreturn_t sdhci_irq(int irq, void *dev_id)
2492 {
2493 	irqreturn_t result = IRQ_NONE;
2494 	struct sdhci_host *host = dev_id;
2495 	u32 intmask, mask, unexpected = 0;
2496 	int max_loops = 16;
2497 
2498 	spin_lock(&host->lock);
2499 
2500 	if (host->runtime_suspended && !sdhci_sdio_irq_enabled(host)) {
2501 		spin_unlock(&host->lock);
2502 		return IRQ_NONE;
2503 	}
2504 
2505 	intmask = sdhci_readl(host, SDHCI_INT_STATUS);
2506 	if (!intmask || intmask == 0xffffffff) {
2507 		result = IRQ_NONE;
2508 		goto out;
2509 	}
2510 
2511 	do {
2512 		/* Clear selected interrupts. */
2513 		mask = intmask & (SDHCI_INT_CMD_MASK | SDHCI_INT_DATA_MASK |
2514 				  SDHCI_INT_BUS_POWER);
2515 		sdhci_writel(host, mask, SDHCI_INT_STATUS);
2516 
2517 		DBG("*** %s got interrupt: 0x%08x\n",
2518 			mmc_hostname(host->mmc), intmask);
2519 
2520 		if (intmask & (SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE)) {
2521 			u32 present = sdhci_readl(host, SDHCI_PRESENT_STATE) &
2522 				      SDHCI_CARD_PRESENT;
2523 
2524 			/*
2525 			 * There is a observation on i.mx esdhc.  INSERT
2526 			 * bit will be immediately set again when it gets
2527 			 * cleared, if a card is inserted.  We have to mask
2528 			 * the irq to prevent interrupt storm which will
2529 			 * freeze the system.  And the REMOVE gets the
2530 			 * same situation.
2531 			 *
2532 			 * More testing are needed here to ensure it works
2533 			 * for other platforms though.
2534 			 */
2535 			host->ier &= ~(SDHCI_INT_CARD_INSERT |
2536 				       SDHCI_INT_CARD_REMOVE);
2537 			host->ier |= present ? SDHCI_INT_CARD_REMOVE :
2538 					       SDHCI_INT_CARD_INSERT;
2539 			sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
2540 			sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
2541 
2542 			sdhci_writel(host, intmask & (SDHCI_INT_CARD_INSERT |
2543 				     SDHCI_INT_CARD_REMOVE), SDHCI_INT_STATUS);
2544 
2545 			host->thread_isr |= intmask & (SDHCI_INT_CARD_INSERT |
2546 						       SDHCI_INT_CARD_REMOVE);
2547 			result = IRQ_WAKE_THREAD;
2548 		}
2549 
2550 		if (intmask & SDHCI_INT_CMD_MASK)
2551 			sdhci_cmd_irq(host, intmask & SDHCI_INT_CMD_MASK,
2552 				      &intmask);
2553 
2554 		if (intmask & SDHCI_INT_DATA_MASK)
2555 			sdhci_data_irq(host, intmask & SDHCI_INT_DATA_MASK);
2556 
2557 		if (intmask & SDHCI_INT_BUS_POWER)
2558 			pr_err("%s: Card is consuming too much power!\n",
2559 				mmc_hostname(host->mmc));
2560 
2561 		if (intmask & SDHCI_INT_CARD_INT) {
2562 			sdhci_enable_sdio_irq_nolock(host, false);
2563 			host->thread_isr |= SDHCI_INT_CARD_INT;
2564 			result = IRQ_WAKE_THREAD;
2565 		}
2566 
2567 		intmask &= ~(SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE |
2568 			     SDHCI_INT_CMD_MASK | SDHCI_INT_DATA_MASK |
2569 			     SDHCI_INT_ERROR | SDHCI_INT_BUS_POWER |
2570 			     SDHCI_INT_CARD_INT);
2571 
2572 		if (intmask) {
2573 			unexpected |= intmask;
2574 			sdhci_writel(host, intmask, SDHCI_INT_STATUS);
2575 		}
2576 
2577 		if (result == IRQ_NONE)
2578 			result = IRQ_HANDLED;
2579 
2580 		intmask = sdhci_readl(host, SDHCI_INT_STATUS);
2581 	} while (intmask && --max_loops);
2582 out:
2583 	spin_unlock(&host->lock);
2584 
2585 	if (unexpected) {
2586 		pr_err("%s: Unexpected interrupt 0x%08x.\n",
2587 			   mmc_hostname(host->mmc), unexpected);
2588 		sdhci_dumpregs(host);
2589 	}
2590 
2591 	return result;
2592 }
2593 
2594 static irqreturn_t sdhci_thread_irq(int irq, void *dev_id)
2595 {
2596 	struct sdhci_host *host = dev_id;
2597 	unsigned long flags;
2598 	u32 isr;
2599 
2600 	spin_lock_irqsave(&host->lock, flags);
2601 	isr = host->thread_isr;
2602 	host->thread_isr = 0;
2603 	spin_unlock_irqrestore(&host->lock, flags);
2604 
2605 	if (isr & (SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE)) {
2606 		sdhci_card_event(host->mmc);
2607 		mmc_detect_change(host->mmc, msecs_to_jiffies(200));
2608 	}
2609 
2610 	if (isr & SDHCI_INT_CARD_INT) {
2611 		sdio_run_irqs(host->mmc);
2612 
2613 		spin_lock_irqsave(&host->lock, flags);
2614 		if (host->flags & SDHCI_SDIO_IRQ_ENABLED)
2615 			sdhci_enable_sdio_irq_nolock(host, true);
2616 		spin_unlock_irqrestore(&host->lock, flags);
2617 	}
2618 
2619 	return isr ? IRQ_HANDLED : IRQ_NONE;
2620 }
2621 
2622 /*****************************************************************************\
2623  *                                                                           *
2624  * Suspend/resume                                                            *
2625  *                                                                           *
2626 \*****************************************************************************/
2627 
2628 #ifdef CONFIG_PM
2629 void sdhci_enable_irq_wakeups(struct sdhci_host *host)
2630 {
2631 	u8 val;
2632 	u8 mask = SDHCI_WAKE_ON_INSERT | SDHCI_WAKE_ON_REMOVE
2633 			| SDHCI_WAKE_ON_INT;
2634 
2635 	val = sdhci_readb(host, SDHCI_WAKE_UP_CONTROL);
2636 	val |= mask ;
2637 	/* Avoid fake wake up */
2638 	if (host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION)
2639 		val &= ~(SDHCI_WAKE_ON_INSERT | SDHCI_WAKE_ON_REMOVE);
2640 	sdhci_writeb(host, val, SDHCI_WAKE_UP_CONTROL);
2641 }
2642 EXPORT_SYMBOL_GPL(sdhci_enable_irq_wakeups);
2643 
2644 static void sdhci_disable_irq_wakeups(struct sdhci_host *host)
2645 {
2646 	u8 val;
2647 	u8 mask = SDHCI_WAKE_ON_INSERT | SDHCI_WAKE_ON_REMOVE
2648 			| SDHCI_WAKE_ON_INT;
2649 
2650 	val = sdhci_readb(host, SDHCI_WAKE_UP_CONTROL);
2651 	val &= ~mask;
2652 	sdhci_writeb(host, val, SDHCI_WAKE_UP_CONTROL);
2653 }
2654 
2655 int sdhci_suspend_host(struct sdhci_host *host)
2656 {
2657 	sdhci_disable_card_detection(host);
2658 
2659 	/* Disable tuning since we are suspending */
2660 	if (host->flags & SDHCI_USING_RETUNING_TIMER) {
2661 		del_timer_sync(&host->tuning_timer);
2662 		host->flags &= ~SDHCI_NEEDS_RETUNING;
2663 	}
2664 
2665 	if (!device_may_wakeup(mmc_dev(host->mmc))) {
2666 		host->ier = 0;
2667 		sdhci_writel(host, 0, SDHCI_INT_ENABLE);
2668 		sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE);
2669 		free_irq(host->irq, host);
2670 	} else {
2671 		sdhci_enable_irq_wakeups(host);
2672 		enable_irq_wake(host->irq);
2673 	}
2674 	return 0;
2675 }
2676 
2677 EXPORT_SYMBOL_GPL(sdhci_suspend_host);
2678 
2679 int sdhci_resume_host(struct sdhci_host *host)
2680 {
2681 	int ret = 0;
2682 
2683 	if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
2684 		if (host->ops->enable_dma)
2685 			host->ops->enable_dma(host);
2686 	}
2687 
2688 	if (!device_may_wakeup(mmc_dev(host->mmc))) {
2689 		ret = request_threaded_irq(host->irq, sdhci_irq,
2690 					   sdhci_thread_irq, IRQF_SHARED,
2691 					   mmc_hostname(host->mmc), host);
2692 		if (ret)
2693 			return ret;
2694 	} else {
2695 		sdhci_disable_irq_wakeups(host);
2696 		disable_irq_wake(host->irq);
2697 	}
2698 
2699 	if ((host->mmc->pm_flags & MMC_PM_KEEP_POWER) &&
2700 	    (host->quirks2 & SDHCI_QUIRK2_HOST_OFF_CARD_ON)) {
2701 		/* Card keeps power but host controller does not */
2702 		sdhci_init(host, 0);
2703 		host->pwr = 0;
2704 		host->clock = 0;
2705 		sdhci_do_set_ios(host, &host->mmc->ios);
2706 	} else {
2707 		sdhci_init(host, (host->mmc->pm_flags & MMC_PM_KEEP_POWER));
2708 		mmiowb();
2709 	}
2710 
2711 	sdhci_enable_card_detection(host);
2712 
2713 	/* Set the re-tuning expiration flag */
2714 	if (host->flags & SDHCI_USING_RETUNING_TIMER)
2715 		host->flags |= SDHCI_NEEDS_RETUNING;
2716 
2717 	return ret;
2718 }
2719 
2720 EXPORT_SYMBOL_GPL(sdhci_resume_host);
2721 
2722 static int sdhci_runtime_pm_get(struct sdhci_host *host)
2723 {
2724 	return pm_runtime_get_sync(host->mmc->parent);
2725 }
2726 
2727 static int sdhci_runtime_pm_put(struct sdhci_host *host)
2728 {
2729 	pm_runtime_mark_last_busy(host->mmc->parent);
2730 	return pm_runtime_put_autosuspend(host->mmc->parent);
2731 }
2732 
2733 static void sdhci_runtime_pm_bus_on(struct sdhci_host *host)
2734 {
2735 	if (host->runtime_suspended || host->bus_on)
2736 		return;
2737 	host->bus_on = true;
2738 	pm_runtime_get_noresume(host->mmc->parent);
2739 }
2740 
2741 static void sdhci_runtime_pm_bus_off(struct sdhci_host *host)
2742 {
2743 	if (host->runtime_suspended || !host->bus_on)
2744 		return;
2745 	host->bus_on = false;
2746 	pm_runtime_put_noidle(host->mmc->parent);
2747 }
2748 
2749 int sdhci_runtime_suspend_host(struct sdhci_host *host)
2750 {
2751 	unsigned long flags;
2752 
2753 	/* Disable tuning since we are suspending */
2754 	if (host->flags & SDHCI_USING_RETUNING_TIMER) {
2755 		del_timer_sync(&host->tuning_timer);
2756 		host->flags &= ~SDHCI_NEEDS_RETUNING;
2757 	}
2758 
2759 	spin_lock_irqsave(&host->lock, flags);
2760 	host->ier &= SDHCI_INT_CARD_INT;
2761 	sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
2762 	sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
2763 	spin_unlock_irqrestore(&host->lock, flags);
2764 
2765 	synchronize_hardirq(host->irq);
2766 
2767 	spin_lock_irqsave(&host->lock, flags);
2768 	host->runtime_suspended = true;
2769 	spin_unlock_irqrestore(&host->lock, flags);
2770 
2771 	return 0;
2772 }
2773 EXPORT_SYMBOL_GPL(sdhci_runtime_suspend_host);
2774 
2775 int sdhci_runtime_resume_host(struct sdhci_host *host)
2776 {
2777 	unsigned long flags;
2778 	int host_flags = host->flags;
2779 
2780 	if (host_flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
2781 		if (host->ops->enable_dma)
2782 			host->ops->enable_dma(host);
2783 	}
2784 
2785 	sdhci_init(host, 0);
2786 
2787 	/* Force clock and power re-program */
2788 	host->pwr = 0;
2789 	host->clock = 0;
2790 	sdhci_do_set_ios(host, &host->mmc->ios);
2791 
2792 	sdhci_do_start_signal_voltage_switch(host, &host->mmc->ios);
2793 	if ((host_flags & SDHCI_PV_ENABLED) &&
2794 		!(host->quirks2 & SDHCI_QUIRK2_PRESET_VALUE_BROKEN)) {
2795 		spin_lock_irqsave(&host->lock, flags);
2796 		sdhci_enable_preset_value(host, true);
2797 		spin_unlock_irqrestore(&host->lock, flags);
2798 	}
2799 
2800 	/* Set the re-tuning expiration flag */
2801 	if (host->flags & SDHCI_USING_RETUNING_TIMER)
2802 		host->flags |= SDHCI_NEEDS_RETUNING;
2803 
2804 	spin_lock_irqsave(&host->lock, flags);
2805 
2806 	host->runtime_suspended = false;
2807 
2808 	/* Enable SDIO IRQ */
2809 	if (host->flags & SDHCI_SDIO_IRQ_ENABLED)
2810 		sdhci_enable_sdio_irq_nolock(host, true);
2811 
2812 	/* Enable Card Detection */
2813 	sdhci_enable_card_detection(host);
2814 
2815 	spin_unlock_irqrestore(&host->lock, flags);
2816 
2817 	return 0;
2818 }
2819 EXPORT_SYMBOL_GPL(sdhci_runtime_resume_host);
2820 
2821 #endif /* CONFIG_PM */
2822 
2823 /*****************************************************************************\
2824  *                                                                           *
2825  * Device allocation/registration                                            *
2826  *                                                                           *
2827 \*****************************************************************************/
2828 
2829 struct sdhci_host *sdhci_alloc_host(struct device *dev,
2830 	size_t priv_size)
2831 {
2832 	struct mmc_host *mmc;
2833 	struct sdhci_host *host;
2834 
2835 	WARN_ON(dev == NULL);
2836 
2837 	mmc = mmc_alloc_host(sizeof(struct sdhci_host) + priv_size, dev);
2838 	if (!mmc)
2839 		return ERR_PTR(-ENOMEM);
2840 
2841 	host = mmc_priv(mmc);
2842 	host->mmc = mmc;
2843 
2844 	return host;
2845 }
2846 
2847 EXPORT_SYMBOL_GPL(sdhci_alloc_host);
2848 
2849 int sdhci_add_host(struct sdhci_host *host)
2850 {
2851 	struct mmc_host *mmc;
2852 	u32 caps[2] = {0, 0};
2853 	u32 max_current_caps;
2854 	unsigned int ocr_avail;
2855 	unsigned int override_timeout_clk;
2856 	int ret;
2857 
2858 	WARN_ON(host == NULL);
2859 	if (host == NULL)
2860 		return -EINVAL;
2861 
2862 	mmc = host->mmc;
2863 
2864 	if (debug_quirks)
2865 		host->quirks = debug_quirks;
2866 	if (debug_quirks2)
2867 		host->quirks2 = debug_quirks2;
2868 
2869 	override_timeout_clk = host->timeout_clk;
2870 
2871 	sdhci_do_reset(host, SDHCI_RESET_ALL);
2872 
2873 	host->version = sdhci_readw(host, SDHCI_HOST_VERSION);
2874 	host->version = (host->version & SDHCI_SPEC_VER_MASK)
2875 				>> SDHCI_SPEC_VER_SHIFT;
2876 	if (host->version > SDHCI_SPEC_300) {
2877 		pr_err("%s: Unknown controller version (%d). "
2878 			"You may experience problems.\n", mmc_hostname(mmc),
2879 			host->version);
2880 	}
2881 
2882 	caps[0] = (host->quirks & SDHCI_QUIRK_MISSING_CAPS) ? host->caps :
2883 		sdhci_readl(host, SDHCI_CAPABILITIES);
2884 
2885 	if (host->version >= SDHCI_SPEC_300)
2886 		caps[1] = (host->quirks & SDHCI_QUIRK_MISSING_CAPS) ?
2887 			host->caps1 :
2888 			sdhci_readl(host, SDHCI_CAPABILITIES_1);
2889 
2890 	if (host->quirks & SDHCI_QUIRK_FORCE_DMA)
2891 		host->flags |= SDHCI_USE_SDMA;
2892 	else if (!(caps[0] & SDHCI_CAN_DO_SDMA))
2893 		DBG("Controller doesn't have SDMA capability\n");
2894 	else
2895 		host->flags |= SDHCI_USE_SDMA;
2896 
2897 	if ((host->quirks & SDHCI_QUIRK_BROKEN_DMA) &&
2898 		(host->flags & SDHCI_USE_SDMA)) {
2899 		DBG("Disabling DMA as it is marked broken\n");
2900 		host->flags &= ~SDHCI_USE_SDMA;
2901 	}
2902 
2903 	if ((host->version >= SDHCI_SPEC_200) &&
2904 		(caps[0] & SDHCI_CAN_DO_ADMA2))
2905 		host->flags |= SDHCI_USE_ADMA;
2906 
2907 	if ((host->quirks & SDHCI_QUIRK_BROKEN_ADMA) &&
2908 		(host->flags & SDHCI_USE_ADMA)) {
2909 		DBG("Disabling ADMA as it is marked broken\n");
2910 		host->flags &= ~SDHCI_USE_ADMA;
2911 	}
2912 
2913 	/*
2914 	 * It is assumed that a 64-bit capable device has set a 64-bit DMA mask
2915 	 * and *must* do 64-bit DMA.  A driver has the opportunity to change
2916 	 * that during the first call to ->enable_dma().  Similarly
2917 	 * SDHCI_QUIRK2_BROKEN_64_BIT_DMA must be left to the drivers to
2918 	 * implement.
2919 	 */
2920 	if (sdhci_readl(host, SDHCI_CAPABILITIES) & SDHCI_CAN_64BIT)
2921 		host->flags |= SDHCI_USE_64_BIT_DMA;
2922 
2923 	if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
2924 		if (host->ops->enable_dma) {
2925 			if (host->ops->enable_dma(host)) {
2926 				pr_warn("%s: No suitable DMA available - falling back to PIO\n",
2927 					mmc_hostname(mmc));
2928 				host->flags &=
2929 					~(SDHCI_USE_SDMA | SDHCI_USE_ADMA);
2930 			}
2931 		}
2932 	}
2933 
2934 	/* SDMA does not support 64-bit DMA */
2935 	if (host->flags & SDHCI_USE_64_BIT_DMA)
2936 		host->flags &= ~SDHCI_USE_SDMA;
2937 
2938 	if (host->flags & SDHCI_USE_ADMA) {
2939 		/*
2940 		 * The DMA descriptor table size is calculated as the maximum
2941 		 * number of segments times 2, to allow for an alignment
2942 		 * descriptor for each segment, plus 1 for a nop end descriptor,
2943 		 * all multipled by the descriptor size.
2944 		 */
2945 		if (host->flags & SDHCI_USE_64_BIT_DMA) {
2946 			host->adma_table_sz = (SDHCI_MAX_SEGS * 2 + 1) *
2947 					      SDHCI_ADMA2_64_DESC_SZ;
2948 			host->align_buffer_sz = SDHCI_MAX_SEGS *
2949 						SDHCI_ADMA2_64_ALIGN;
2950 			host->desc_sz = SDHCI_ADMA2_64_DESC_SZ;
2951 			host->align_sz = SDHCI_ADMA2_64_ALIGN;
2952 			host->align_mask = SDHCI_ADMA2_64_ALIGN - 1;
2953 		} else {
2954 			host->adma_table_sz = (SDHCI_MAX_SEGS * 2 + 1) *
2955 					      SDHCI_ADMA2_32_DESC_SZ;
2956 			host->align_buffer_sz = SDHCI_MAX_SEGS *
2957 						SDHCI_ADMA2_32_ALIGN;
2958 			host->desc_sz = SDHCI_ADMA2_32_DESC_SZ;
2959 			host->align_sz = SDHCI_ADMA2_32_ALIGN;
2960 			host->align_mask = SDHCI_ADMA2_32_ALIGN - 1;
2961 		}
2962 		host->adma_table = dma_alloc_coherent(mmc_dev(mmc),
2963 						      host->adma_table_sz,
2964 						      &host->adma_addr,
2965 						      GFP_KERNEL);
2966 		host->align_buffer = kmalloc(host->align_buffer_sz, GFP_KERNEL);
2967 		if (!host->adma_table || !host->align_buffer) {
2968 			dma_free_coherent(mmc_dev(mmc), host->adma_table_sz,
2969 					  host->adma_table, host->adma_addr);
2970 			kfree(host->align_buffer);
2971 			pr_warn("%s: Unable to allocate ADMA buffers - falling back to standard DMA\n",
2972 				mmc_hostname(mmc));
2973 			host->flags &= ~SDHCI_USE_ADMA;
2974 			host->adma_table = NULL;
2975 			host->align_buffer = NULL;
2976 		} else if (host->adma_addr & host->align_mask) {
2977 			pr_warn("%s: unable to allocate aligned ADMA descriptor\n",
2978 				mmc_hostname(mmc));
2979 			host->flags &= ~SDHCI_USE_ADMA;
2980 			dma_free_coherent(mmc_dev(mmc), host->adma_table_sz,
2981 					  host->adma_table, host->adma_addr);
2982 			kfree(host->align_buffer);
2983 			host->adma_table = NULL;
2984 			host->align_buffer = NULL;
2985 		}
2986 	}
2987 
2988 	/*
2989 	 * If we use DMA, then it's up to the caller to set the DMA
2990 	 * mask, but PIO does not need the hw shim so we set a new
2991 	 * mask here in that case.
2992 	 */
2993 	if (!(host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA))) {
2994 		host->dma_mask = DMA_BIT_MASK(64);
2995 		mmc_dev(mmc)->dma_mask = &host->dma_mask;
2996 	}
2997 
2998 	if (host->version >= SDHCI_SPEC_300)
2999 		host->max_clk = (caps[0] & SDHCI_CLOCK_V3_BASE_MASK)
3000 			>> SDHCI_CLOCK_BASE_SHIFT;
3001 	else
3002 		host->max_clk = (caps[0] & SDHCI_CLOCK_BASE_MASK)
3003 			>> SDHCI_CLOCK_BASE_SHIFT;
3004 
3005 	host->max_clk *= 1000000;
3006 	if (host->max_clk == 0 || host->quirks &
3007 			SDHCI_QUIRK_CAP_CLOCK_BASE_BROKEN) {
3008 		if (!host->ops->get_max_clock) {
3009 			pr_err("%s: Hardware doesn't specify base clock "
3010 			       "frequency.\n", mmc_hostname(mmc));
3011 			return -ENODEV;
3012 		}
3013 		host->max_clk = host->ops->get_max_clock(host);
3014 	}
3015 
3016 	/*
3017 	 * In case of Host Controller v3.00, find out whether clock
3018 	 * multiplier is supported.
3019 	 */
3020 	host->clk_mul = (caps[1] & SDHCI_CLOCK_MUL_MASK) >>
3021 			SDHCI_CLOCK_MUL_SHIFT;
3022 
3023 	/*
3024 	 * In case the value in Clock Multiplier is 0, then programmable
3025 	 * clock mode is not supported, otherwise the actual clock
3026 	 * multiplier is one more than the value of Clock Multiplier
3027 	 * in the Capabilities Register.
3028 	 */
3029 	if (host->clk_mul)
3030 		host->clk_mul += 1;
3031 
3032 	/*
3033 	 * Set host parameters.
3034 	 */
3035 	mmc->ops = &sdhci_ops;
3036 	mmc->f_max = host->max_clk;
3037 	if (host->ops->get_min_clock)
3038 		mmc->f_min = host->ops->get_min_clock(host);
3039 	else if (host->version >= SDHCI_SPEC_300) {
3040 		if (host->clk_mul) {
3041 			mmc->f_min = (host->max_clk * host->clk_mul) / 1024;
3042 			mmc->f_max = host->max_clk * host->clk_mul;
3043 		} else
3044 			mmc->f_min = host->max_clk / SDHCI_MAX_DIV_SPEC_300;
3045 	} else
3046 		mmc->f_min = host->max_clk / SDHCI_MAX_DIV_SPEC_200;
3047 
3048 	if (!(host->quirks & SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK)) {
3049 		host->timeout_clk = (caps[0] & SDHCI_TIMEOUT_CLK_MASK) >>
3050 					SDHCI_TIMEOUT_CLK_SHIFT;
3051 		if (host->timeout_clk == 0) {
3052 			if (host->ops->get_timeout_clock) {
3053 				host->timeout_clk =
3054 					host->ops->get_timeout_clock(host);
3055 			} else {
3056 				pr_err("%s: Hardware doesn't specify timeout clock frequency.\n",
3057 					mmc_hostname(mmc));
3058 				return -ENODEV;
3059 			}
3060 		}
3061 
3062 		if (caps[0] & SDHCI_TIMEOUT_CLK_UNIT)
3063 			host->timeout_clk *= 1000;
3064 
3065 		mmc->max_busy_timeout = host->ops->get_max_timeout_count ?
3066 			host->ops->get_max_timeout_count(host) : 1 << 27;
3067 		mmc->max_busy_timeout /= host->timeout_clk;
3068 	}
3069 
3070 	if (override_timeout_clk)
3071 		host->timeout_clk = override_timeout_clk;
3072 
3073 	mmc->caps |= MMC_CAP_SDIO_IRQ | MMC_CAP_ERASE | MMC_CAP_CMD23;
3074 	mmc->caps2 |= MMC_CAP2_SDIO_IRQ_NOTHREAD;
3075 
3076 	if (host->quirks & SDHCI_QUIRK_MULTIBLOCK_READ_ACMD12)
3077 		host->flags |= SDHCI_AUTO_CMD12;
3078 
3079 	/* Auto-CMD23 stuff only works in ADMA or PIO. */
3080 	if ((host->version >= SDHCI_SPEC_300) &&
3081 	    ((host->flags & SDHCI_USE_ADMA) ||
3082 	     !(host->flags & SDHCI_USE_SDMA))) {
3083 		host->flags |= SDHCI_AUTO_CMD23;
3084 		DBG("%s: Auto-CMD23 available\n", mmc_hostname(mmc));
3085 	} else {
3086 		DBG("%s: Auto-CMD23 unavailable\n", mmc_hostname(mmc));
3087 	}
3088 
3089 	/*
3090 	 * A controller may support 8-bit width, but the board itself
3091 	 * might not have the pins brought out.  Boards that support
3092 	 * 8-bit width must set "mmc->caps |= MMC_CAP_8_BIT_DATA;" in
3093 	 * their platform code before calling sdhci_add_host(), and we
3094 	 * won't assume 8-bit width for hosts without that CAP.
3095 	 */
3096 	if (!(host->quirks & SDHCI_QUIRK_FORCE_1_BIT_DATA))
3097 		mmc->caps |= MMC_CAP_4_BIT_DATA;
3098 
3099 	if (host->quirks2 & SDHCI_QUIRK2_HOST_NO_CMD23)
3100 		mmc->caps &= ~MMC_CAP_CMD23;
3101 
3102 	if (caps[0] & SDHCI_CAN_DO_HISPD)
3103 		mmc->caps |= MMC_CAP_SD_HIGHSPEED | MMC_CAP_MMC_HIGHSPEED;
3104 
3105 	if ((host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION) &&
3106 	    !(mmc->caps & MMC_CAP_NONREMOVABLE))
3107 		mmc->caps |= MMC_CAP_NEEDS_POLL;
3108 
3109 	/* If there are external regulators, get them */
3110 	if (mmc_regulator_get_supply(mmc) == -EPROBE_DEFER)
3111 		return -EPROBE_DEFER;
3112 
3113 	/* If vqmmc regulator and no 1.8V signalling, then there's no UHS */
3114 	if (!IS_ERR(mmc->supply.vqmmc)) {
3115 		ret = regulator_enable(mmc->supply.vqmmc);
3116 		if (!regulator_is_supported_voltage(mmc->supply.vqmmc, 1700000,
3117 						    1950000))
3118 			caps[1] &= ~(SDHCI_SUPPORT_SDR104 |
3119 					SDHCI_SUPPORT_SDR50 |
3120 					SDHCI_SUPPORT_DDR50);
3121 		if (ret) {
3122 			pr_warn("%s: Failed to enable vqmmc regulator: %d\n",
3123 				mmc_hostname(mmc), ret);
3124 			mmc->supply.vqmmc = ERR_PTR(-EINVAL);
3125 		}
3126 	}
3127 
3128 	if (host->quirks2 & SDHCI_QUIRK2_NO_1_8_V)
3129 		caps[1] &= ~(SDHCI_SUPPORT_SDR104 | SDHCI_SUPPORT_SDR50 |
3130 		       SDHCI_SUPPORT_DDR50);
3131 
3132 	/* Any UHS-I mode in caps implies SDR12 and SDR25 support. */
3133 	if (caps[1] & (SDHCI_SUPPORT_SDR104 | SDHCI_SUPPORT_SDR50 |
3134 		       SDHCI_SUPPORT_DDR50))
3135 		mmc->caps |= MMC_CAP_UHS_SDR12 | MMC_CAP_UHS_SDR25;
3136 
3137 	/* SDR104 supports also implies SDR50 support */
3138 	if (caps[1] & SDHCI_SUPPORT_SDR104) {
3139 		mmc->caps |= MMC_CAP_UHS_SDR104 | MMC_CAP_UHS_SDR50;
3140 		/* SD3.0: SDR104 is supported so (for eMMC) the caps2
3141 		 * field can be promoted to support HS200.
3142 		 */
3143 		if (!(host->quirks2 & SDHCI_QUIRK2_BROKEN_HS200))
3144 			mmc->caps2 |= MMC_CAP2_HS200;
3145 	} else if (caps[1] & SDHCI_SUPPORT_SDR50)
3146 		mmc->caps |= MMC_CAP_UHS_SDR50;
3147 
3148 	if (host->quirks2 & SDHCI_QUIRK2_CAPS_BIT63_FOR_HS400 &&
3149 	    (caps[1] & SDHCI_SUPPORT_HS400))
3150 		mmc->caps2 |= MMC_CAP2_HS400;
3151 
3152 	if ((mmc->caps2 & MMC_CAP2_HSX00_1_2V) &&
3153 	    (IS_ERR(mmc->supply.vqmmc) ||
3154 	     !regulator_is_supported_voltage(mmc->supply.vqmmc, 1100000,
3155 					     1300000)))
3156 		mmc->caps2 &= ~MMC_CAP2_HSX00_1_2V;
3157 
3158 	if ((caps[1] & SDHCI_SUPPORT_DDR50) &&
3159 		!(host->quirks2 & SDHCI_QUIRK2_BROKEN_DDR50))
3160 		mmc->caps |= MMC_CAP_UHS_DDR50;
3161 
3162 	/* Does the host need tuning for SDR50? */
3163 	if (caps[1] & SDHCI_USE_SDR50_TUNING)
3164 		host->flags |= SDHCI_SDR50_NEEDS_TUNING;
3165 
3166 	/* Does the host need tuning for SDR104 / HS200? */
3167 	if (mmc->caps2 & MMC_CAP2_HS200)
3168 		host->flags |= SDHCI_SDR104_NEEDS_TUNING;
3169 
3170 	/* Driver Type(s) (A, C, D) supported by the host */
3171 	if (caps[1] & SDHCI_DRIVER_TYPE_A)
3172 		mmc->caps |= MMC_CAP_DRIVER_TYPE_A;
3173 	if (caps[1] & SDHCI_DRIVER_TYPE_C)
3174 		mmc->caps |= MMC_CAP_DRIVER_TYPE_C;
3175 	if (caps[1] & SDHCI_DRIVER_TYPE_D)
3176 		mmc->caps |= MMC_CAP_DRIVER_TYPE_D;
3177 
3178 	/* Initial value for re-tuning timer count */
3179 	host->tuning_count = (caps[1] & SDHCI_RETUNING_TIMER_COUNT_MASK) >>
3180 			      SDHCI_RETUNING_TIMER_COUNT_SHIFT;
3181 
3182 	/*
3183 	 * In case Re-tuning Timer is not disabled, the actual value of
3184 	 * re-tuning timer will be 2 ^ (n - 1).
3185 	 */
3186 	if (host->tuning_count)
3187 		host->tuning_count = 1 << (host->tuning_count - 1);
3188 
3189 	/* Re-tuning mode supported by the Host Controller */
3190 	host->tuning_mode = (caps[1] & SDHCI_RETUNING_MODE_MASK) >>
3191 			     SDHCI_RETUNING_MODE_SHIFT;
3192 
3193 	ocr_avail = 0;
3194 
3195 	/*
3196 	 * According to SD Host Controller spec v3.00, if the Host System
3197 	 * can afford more than 150mA, Host Driver should set XPC to 1. Also
3198 	 * the value is meaningful only if Voltage Support in the Capabilities
3199 	 * register is set. The actual current value is 4 times the register
3200 	 * value.
3201 	 */
3202 	max_current_caps = sdhci_readl(host, SDHCI_MAX_CURRENT);
3203 	if (!max_current_caps && !IS_ERR(mmc->supply.vmmc)) {
3204 		int curr = regulator_get_current_limit(mmc->supply.vmmc);
3205 		if (curr > 0) {
3206 
3207 			/* convert to SDHCI_MAX_CURRENT format */
3208 			curr = curr/1000;  /* convert to mA */
3209 			curr = curr/SDHCI_MAX_CURRENT_MULTIPLIER;
3210 
3211 			curr = min_t(u32, curr, SDHCI_MAX_CURRENT_LIMIT);
3212 			max_current_caps =
3213 				(curr << SDHCI_MAX_CURRENT_330_SHIFT) |
3214 				(curr << SDHCI_MAX_CURRENT_300_SHIFT) |
3215 				(curr << SDHCI_MAX_CURRENT_180_SHIFT);
3216 		}
3217 	}
3218 
3219 	if (caps[0] & SDHCI_CAN_VDD_330) {
3220 		ocr_avail |= MMC_VDD_32_33 | MMC_VDD_33_34;
3221 
3222 		mmc->max_current_330 = ((max_current_caps &
3223 				   SDHCI_MAX_CURRENT_330_MASK) >>
3224 				   SDHCI_MAX_CURRENT_330_SHIFT) *
3225 				   SDHCI_MAX_CURRENT_MULTIPLIER;
3226 	}
3227 	if (caps[0] & SDHCI_CAN_VDD_300) {
3228 		ocr_avail |= MMC_VDD_29_30 | MMC_VDD_30_31;
3229 
3230 		mmc->max_current_300 = ((max_current_caps &
3231 				   SDHCI_MAX_CURRENT_300_MASK) >>
3232 				   SDHCI_MAX_CURRENT_300_SHIFT) *
3233 				   SDHCI_MAX_CURRENT_MULTIPLIER;
3234 	}
3235 	if (caps[0] & SDHCI_CAN_VDD_180) {
3236 		ocr_avail |= MMC_VDD_165_195;
3237 
3238 		mmc->max_current_180 = ((max_current_caps &
3239 				   SDHCI_MAX_CURRENT_180_MASK) >>
3240 				   SDHCI_MAX_CURRENT_180_SHIFT) *
3241 				   SDHCI_MAX_CURRENT_MULTIPLIER;
3242 	}
3243 
3244 	/* If OCR set by external regulators, use it instead */
3245 	if (mmc->ocr_avail)
3246 		ocr_avail = mmc->ocr_avail;
3247 
3248 	if (host->ocr_mask)
3249 		ocr_avail &= host->ocr_mask;
3250 
3251 	mmc->ocr_avail = ocr_avail;
3252 	mmc->ocr_avail_sdio = ocr_avail;
3253 	if (host->ocr_avail_sdio)
3254 		mmc->ocr_avail_sdio &= host->ocr_avail_sdio;
3255 	mmc->ocr_avail_sd = ocr_avail;
3256 	if (host->ocr_avail_sd)
3257 		mmc->ocr_avail_sd &= host->ocr_avail_sd;
3258 	else /* normal SD controllers don't support 1.8V */
3259 		mmc->ocr_avail_sd &= ~MMC_VDD_165_195;
3260 	mmc->ocr_avail_mmc = ocr_avail;
3261 	if (host->ocr_avail_mmc)
3262 		mmc->ocr_avail_mmc &= host->ocr_avail_mmc;
3263 
3264 	if (mmc->ocr_avail == 0) {
3265 		pr_err("%s: Hardware doesn't report any "
3266 			"support voltages.\n", mmc_hostname(mmc));
3267 		return -ENODEV;
3268 	}
3269 
3270 	spin_lock_init(&host->lock);
3271 
3272 	/*
3273 	 * Maximum number of segments. Depends on if the hardware
3274 	 * can do scatter/gather or not.
3275 	 */
3276 	if (host->flags & SDHCI_USE_ADMA)
3277 		mmc->max_segs = SDHCI_MAX_SEGS;
3278 	else if (host->flags & SDHCI_USE_SDMA)
3279 		mmc->max_segs = 1;
3280 	else /* PIO */
3281 		mmc->max_segs = SDHCI_MAX_SEGS;
3282 
3283 	/*
3284 	 * Maximum number of sectors in one transfer. Limited by SDMA boundary
3285 	 * size (512KiB). Note some tuning modes impose a 4MiB limit, but this
3286 	 * is less anyway.
3287 	 */
3288 	mmc->max_req_size = 524288;
3289 
3290 	/*
3291 	 * Maximum segment size. Could be one segment with the maximum number
3292 	 * of bytes. When doing hardware scatter/gather, each entry cannot
3293 	 * be larger than 64 KiB though.
3294 	 */
3295 	if (host->flags & SDHCI_USE_ADMA) {
3296 		if (host->quirks & SDHCI_QUIRK_BROKEN_ADMA_ZEROLEN_DESC)
3297 			mmc->max_seg_size = 65535;
3298 		else
3299 			mmc->max_seg_size = 65536;
3300 	} else {
3301 		mmc->max_seg_size = mmc->max_req_size;
3302 	}
3303 
3304 	/*
3305 	 * Maximum block size. This varies from controller to controller and
3306 	 * is specified in the capabilities register.
3307 	 */
3308 	if (host->quirks & SDHCI_QUIRK_FORCE_BLK_SZ_2048) {
3309 		mmc->max_blk_size = 2;
3310 	} else {
3311 		mmc->max_blk_size = (caps[0] & SDHCI_MAX_BLOCK_MASK) >>
3312 				SDHCI_MAX_BLOCK_SHIFT;
3313 		if (mmc->max_blk_size >= 3) {
3314 			pr_warn("%s: Invalid maximum block size, assuming 512 bytes\n",
3315 				mmc_hostname(mmc));
3316 			mmc->max_blk_size = 0;
3317 		}
3318 	}
3319 
3320 	mmc->max_blk_size = 512 << mmc->max_blk_size;
3321 
3322 	/*
3323 	 * Maximum block count.
3324 	 */
3325 	mmc->max_blk_count = (host->quirks & SDHCI_QUIRK_NO_MULTIBLOCK) ? 1 : 65535;
3326 
3327 	/*
3328 	 * Init tasklets.
3329 	 */
3330 	tasklet_init(&host->finish_tasklet,
3331 		sdhci_tasklet_finish, (unsigned long)host);
3332 
3333 	setup_timer(&host->timer, sdhci_timeout_timer, (unsigned long)host);
3334 
3335 	if (host->version >= SDHCI_SPEC_300) {
3336 		init_waitqueue_head(&host->buf_ready_int);
3337 
3338 		/* Initialize re-tuning timer */
3339 		init_timer(&host->tuning_timer);
3340 		host->tuning_timer.data = (unsigned long)host;
3341 		host->tuning_timer.function = sdhci_tuning_timer;
3342 	}
3343 
3344 	sdhci_init(host, 0);
3345 
3346 	ret = request_threaded_irq(host->irq, sdhci_irq, sdhci_thread_irq,
3347 				   IRQF_SHARED,	mmc_hostname(mmc), host);
3348 	if (ret) {
3349 		pr_err("%s: Failed to request IRQ %d: %d\n",
3350 		       mmc_hostname(mmc), host->irq, ret);
3351 		goto untasklet;
3352 	}
3353 
3354 #ifdef CONFIG_MMC_DEBUG
3355 	sdhci_dumpregs(host);
3356 #endif
3357 
3358 #ifdef SDHCI_USE_LEDS_CLASS
3359 	snprintf(host->led_name, sizeof(host->led_name),
3360 		"%s::", mmc_hostname(mmc));
3361 	host->led.name = host->led_name;
3362 	host->led.brightness = LED_OFF;
3363 	host->led.default_trigger = mmc_hostname(mmc);
3364 	host->led.brightness_set = sdhci_led_control;
3365 
3366 	ret = led_classdev_register(mmc_dev(mmc), &host->led);
3367 	if (ret) {
3368 		pr_err("%s: Failed to register LED device: %d\n",
3369 		       mmc_hostname(mmc), ret);
3370 		goto reset;
3371 	}
3372 #endif
3373 
3374 	mmiowb();
3375 
3376 	mmc_add_host(mmc);
3377 
3378 	pr_info("%s: SDHCI controller on %s [%s] using %s\n",
3379 		mmc_hostname(mmc), host->hw_name, dev_name(mmc_dev(mmc)),
3380 		(host->flags & SDHCI_USE_ADMA) ?
3381 		(host->flags & SDHCI_USE_64_BIT_DMA) ? "ADMA 64-bit" : "ADMA" :
3382 		(host->flags & SDHCI_USE_SDMA) ? "DMA" : "PIO");
3383 
3384 	sdhci_enable_card_detection(host);
3385 
3386 	return 0;
3387 
3388 #ifdef SDHCI_USE_LEDS_CLASS
3389 reset:
3390 	sdhci_do_reset(host, SDHCI_RESET_ALL);
3391 	sdhci_writel(host, 0, SDHCI_INT_ENABLE);
3392 	sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE);
3393 	free_irq(host->irq, host);
3394 #endif
3395 untasklet:
3396 	tasklet_kill(&host->finish_tasklet);
3397 
3398 	return ret;
3399 }
3400 
3401 EXPORT_SYMBOL_GPL(sdhci_add_host);
3402 
3403 void sdhci_remove_host(struct sdhci_host *host, int dead)
3404 {
3405 	struct mmc_host *mmc = host->mmc;
3406 	unsigned long flags;
3407 
3408 	if (dead) {
3409 		spin_lock_irqsave(&host->lock, flags);
3410 
3411 		host->flags |= SDHCI_DEVICE_DEAD;
3412 
3413 		if (host->mrq) {
3414 			pr_err("%s: Controller removed during "
3415 				" transfer!\n", mmc_hostname(mmc));
3416 
3417 			host->mrq->cmd->error = -ENOMEDIUM;
3418 			tasklet_schedule(&host->finish_tasklet);
3419 		}
3420 
3421 		spin_unlock_irqrestore(&host->lock, flags);
3422 	}
3423 
3424 	sdhci_disable_card_detection(host);
3425 
3426 	mmc_remove_host(mmc);
3427 
3428 #ifdef SDHCI_USE_LEDS_CLASS
3429 	led_classdev_unregister(&host->led);
3430 #endif
3431 
3432 	if (!dead)
3433 		sdhci_do_reset(host, SDHCI_RESET_ALL);
3434 
3435 	sdhci_writel(host, 0, SDHCI_INT_ENABLE);
3436 	sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE);
3437 	free_irq(host->irq, host);
3438 
3439 	del_timer_sync(&host->timer);
3440 
3441 	tasklet_kill(&host->finish_tasklet);
3442 
3443 	if (!IS_ERR(mmc->supply.vqmmc))
3444 		regulator_disable(mmc->supply.vqmmc);
3445 
3446 	if (host->adma_table)
3447 		dma_free_coherent(mmc_dev(mmc), host->adma_table_sz,
3448 				  host->adma_table, host->adma_addr);
3449 	kfree(host->align_buffer);
3450 
3451 	host->adma_table = NULL;
3452 	host->align_buffer = NULL;
3453 }
3454 
3455 EXPORT_SYMBOL_GPL(sdhci_remove_host);
3456 
3457 void sdhci_free_host(struct sdhci_host *host)
3458 {
3459 	mmc_free_host(host->mmc);
3460 }
3461 
3462 EXPORT_SYMBOL_GPL(sdhci_free_host);
3463 
3464 /*****************************************************************************\
3465  *                                                                           *
3466  * Driver init/exit                                                          *
3467  *                                                                           *
3468 \*****************************************************************************/
3469 
3470 static int __init sdhci_drv_init(void)
3471 {
3472 	pr_info(DRIVER_NAME
3473 		": Secure Digital Host Controller Interface driver\n");
3474 	pr_info(DRIVER_NAME ": Copyright(c) Pierre Ossman\n");
3475 
3476 	return 0;
3477 }
3478 
3479 static void __exit sdhci_drv_exit(void)
3480 {
3481 }
3482 
3483 module_init(sdhci_drv_init);
3484 module_exit(sdhci_drv_exit);
3485 
3486 module_param(debug_quirks, uint, 0444);
3487 module_param(debug_quirks2, uint, 0444);
3488 
3489 MODULE_AUTHOR("Pierre Ossman <pierre@ossman.eu>");
3490 MODULE_DESCRIPTION("Secure Digital Host Controller Interface core driver");
3491 MODULE_LICENSE("GPL");
3492 
3493 MODULE_PARM_DESC(debug_quirks, "Force certain quirks.");
3494 MODULE_PARM_DESC(debug_quirks2, "Force certain other quirks.");
3495