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