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