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