]> git.karo-electronics.de Git - mv-sheeva.git/blob - drivers/mmc/host/sdhci.c
sdhci: don't assign mmc->caps at SDHCI directly
[mv-sheeva.git] / drivers / mmc / host / sdhci.c
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/dma-mapping.h>
20 #include <linux/slab.h>
21 #include <linux/scatterlist.h>
22
23 #include <linux/leds.h>
24
25 #include <linux/mmc/host.h>
26
27 #include "sdhci.h"
28
29 #define DRIVER_NAME "sdhci"
30
31 #define DBG(f, x...) \
32         pr_debug(DRIVER_NAME " [%s()]: " f, __func__,## x)
33
34 #if defined(CONFIG_LEDS_CLASS) || (defined(CONFIG_LEDS_CLASS_MODULE) && \
35         defined(CONFIG_MMC_SDHCI_MODULE))
36 #define SDHCI_USE_LEDS_CLASS
37 #endif
38
39 static unsigned int debug_quirks = 0;
40
41 static void sdhci_prepare_data(struct sdhci_host *, struct mmc_data *);
42 static void sdhci_finish_data(struct sdhci_host *);
43
44 static void sdhci_send_command(struct sdhci_host *, struct mmc_command *);
45 static void sdhci_finish_command(struct sdhci_host *);
46
47 static void sdhci_dumpregs(struct sdhci_host *host)
48 {
49         printk(KERN_DEBUG DRIVER_NAME ": ============== REGISTER DUMP ==============\n");
50
51         printk(KERN_DEBUG DRIVER_NAME ": Sys addr: 0x%08x | Version:  0x%08x\n",
52                 sdhci_readl(host, SDHCI_DMA_ADDRESS),
53                 sdhci_readw(host, SDHCI_HOST_VERSION));
54         printk(KERN_DEBUG DRIVER_NAME ": Blk size: 0x%08x | Blk cnt:  0x%08x\n",
55                 sdhci_readw(host, SDHCI_BLOCK_SIZE),
56                 sdhci_readw(host, SDHCI_BLOCK_COUNT));
57         printk(KERN_DEBUG DRIVER_NAME ": Argument: 0x%08x | Trn mode: 0x%08x\n",
58                 sdhci_readl(host, SDHCI_ARGUMENT),
59                 sdhci_readw(host, SDHCI_TRANSFER_MODE));
60         printk(KERN_DEBUG DRIVER_NAME ": Present:  0x%08x | Host ctl: 0x%08x\n",
61                 sdhci_readl(host, SDHCI_PRESENT_STATE),
62                 sdhci_readb(host, SDHCI_HOST_CONTROL));
63         printk(KERN_DEBUG DRIVER_NAME ": Power:    0x%08x | Blk gap:  0x%08x\n",
64                 sdhci_readb(host, SDHCI_POWER_CONTROL),
65                 sdhci_readb(host, SDHCI_BLOCK_GAP_CONTROL));
66         printk(KERN_DEBUG DRIVER_NAME ": Wake-up:  0x%08x | Clock:    0x%08x\n",
67                 sdhci_readb(host, SDHCI_WAKE_UP_CONTROL),
68                 sdhci_readw(host, SDHCI_CLOCK_CONTROL));
69         printk(KERN_DEBUG DRIVER_NAME ": Timeout:  0x%08x | Int stat: 0x%08x\n",
70                 sdhci_readb(host, SDHCI_TIMEOUT_CONTROL),
71                 sdhci_readl(host, SDHCI_INT_STATUS));
72         printk(KERN_DEBUG DRIVER_NAME ": Int enab: 0x%08x | Sig enab: 0x%08x\n",
73                 sdhci_readl(host, SDHCI_INT_ENABLE),
74                 sdhci_readl(host, SDHCI_SIGNAL_ENABLE));
75         printk(KERN_DEBUG DRIVER_NAME ": AC12 err: 0x%08x | Slot int: 0x%08x\n",
76                 sdhci_readw(host, SDHCI_ACMD12_ERR),
77                 sdhci_readw(host, SDHCI_SLOT_INT_STATUS));
78         printk(KERN_DEBUG DRIVER_NAME ": Caps:     0x%08x | Max curr: 0x%08x\n",
79                 sdhci_readl(host, SDHCI_CAPABILITIES),
80                 sdhci_readl(host, SDHCI_MAX_CURRENT));
81
82         if (host->flags & SDHCI_USE_ADMA)
83                 printk(KERN_DEBUG DRIVER_NAME ": ADMA Err: 0x%08x | ADMA Ptr: 0x%08x\n",
84                        readl(host->ioaddr + SDHCI_ADMA_ERROR),
85                        readl(host->ioaddr + SDHCI_ADMA_ADDRESS));
86
87         printk(KERN_DEBUG DRIVER_NAME ": ===========================================\n");
88 }
89
90 /*****************************************************************************\
91  *                                                                           *
92  * Low level functions                                                       *
93  *                                                                           *
94 \*****************************************************************************/
95
96 static void sdhci_clear_set_irqs(struct sdhci_host *host, u32 clear, u32 set)
97 {
98         u32 ier;
99
100         ier = sdhci_readl(host, SDHCI_INT_ENABLE);
101         ier &= ~clear;
102         ier |= set;
103         sdhci_writel(host, ier, SDHCI_INT_ENABLE);
104         sdhci_writel(host, ier, SDHCI_SIGNAL_ENABLE);
105 }
106
107 static void sdhci_unmask_irqs(struct sdhci_host *host, u32 irqs)
108 {
109         sdhci_clear_set_irqs(host, 0, irqs);
110 }
111
112 static void sdhci_mask_irqs(struct sdhci_host *host, u32 irqs)
113 {
114         sdhci_clear_set_irqs(host, irqs, 0);
115 }
116
117 static void sdhci_set_card_detection(struct sdhci_host *host, bool enable)
118 {
119         u32 irqs = SDHCI_INT_CARD_REMOVE | SDHCI_INT_CARD_INSERT;
120
121         if (host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION)
122                 return;
123
124         if (enable)
125                 sdhci_unmask_irqs(host, irqs);
126         else
127                 sdhci_mask_irqs(host, irqs);
128 }
129
130 static void sdhci_enable_card_detection(struct sdhci_host *host)
131 {
132         sdhci_set_card_detection(host, true);
133 }
134
135 static void sdhci_disable_card_detection(struct sdhci_host *host)
136 {
137         sdhci_set_card_detection(host, false);
138 }
139
140 static void sdhci_reset(struct sdhci_host *host, u8 mask)
141 {
142         unsigned long timeout;
143         u32 uninitialized_var(ier);
144
145         if (host->quirks & SDHCI_QUIRK_NO_CARD_NO_RESET) {
146                 if (!(sdhci_readl(host, SDHCI_PRESENT_STATE) &
147                         SDHCI_CARD_PRESENT))
148                         return;
149         }
150
151         if (host->quirks & SDHCI_QUIRK_RESTORE_IRQS_AFTER_RESET)
152                 ier = sdhci_readl(host, SDHCI_INT_ENABLE);
153
154         sdhci_writeb(host, mask, SDHCI_SOFTWARE_RESET);
155
156         if (mask & SDHCI_RESET_ALL)
157                 host->clock = 0;
158
159         /* Wait max 100 ms */
160         timeout = 100;
161
162         /* hw clears the bit when it's done */
163         while (sdhci_readb(host, SDHCI_SOFTWARE_RESET) & mask) {
164                 if (timeout == 0) {
165                         printk(KERN_ERR "%s: Reset 0x%x never completed.\n",
166                                 mmc_hostname(host->mmc), (int)mask);
167                         sdhci_dumpregs(host);
168                         return;
169                 }
170                 timeout--;
171                 mdelay(1);
172         }
173
174         if (host->quirks & SDHCI_QUIRK_RESTORE_IRQS_AFTER_RESET)
175                 sdhci_clear_set_irqs(host, SDHCI_INT_ALL_MASK, ier);
176 }
177
178 static void sdhci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios);
179
180 static void sdhci_init(struct sdhci_host *host, int soft)
181 {
182         if (soft)
183                 sdhci_reset(host, SDHCI_RESET_CMD|SDHCI_RESET_DATA);
184         else
185                 sdhci_reset(host, SDHCI_RESET_ALL);
186
187         sdhci_clear_set_irqs(host, SDHCI_INT_ALL_MASK,
188                 SDHCI_INT_BUS_POWER | SDHCI_INT_DATA_END_BIT |
189                 SDHCI_INT_DATA_CRC | SDHCI_INT_DATA_TIMEOUT | SDHCI_INT_INDEX |
190                 SDHCI_INT_END_BIT | SDHCI_INT_CRC | SDHCI_INT_TIMEOUT |
191                 SDHCI_INT_DATA_END | SDHCI_INT_RESPONSE);
192
193         if (soft) {
194                 /* force clock reconfiguration */
195                 host->clock = 0;
196                 sdhci_set_ios(host->mmc, &host->mmc->ios);
197         }
198 }
199
200 static void sdhci_reinit(struct sdhci_host *host)
201 {
202         sdhci_init(host, 0);
203         sdhci_enable_card_detection(host);
204 }
205
206 static void sdhci_activate_led(struct sdhci_host *host)
207 {
208         u8 ctrl;
209
210         ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
211         ctrl |= SDHCI_CTRL_LED;
212         sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
213 }
214
215 static void sdhci_deactivate_led(struct sdhci_host *host)
216 {
217         u8 ctrl;
218
219         ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
220         ctrl &= ~SDHCI_CTRL_LED;
221         sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
222 }
223
224 #ifdef SDHCI_USE_LEDS_CLASS
225 static void sdhci_led_control(struct led_classdev *led,
226         enum led_brightness brightness)
227 {
228         struct sdhci_host *host = container_of(led, struct sdhci_host, led);
229         unsigned long flags;
230
231         spin_lock_irqsave(&host->lock, flags);
232
233         if (brightness == LED_OFF)
234                 sdhci_deactivate_led(host);
235         else
236                 sdhci_activate_led(host);
237
238         spin_unlock_irqrestore(&host->lock, flags);
239 }
240 #endif
241
242 /*****************************************************************************\
243  *                                                                           *
244  * Core functions                                                            *
245  *                                                                           *
246 \*****************************************************************************/
247
248 static void sdhci_read_block_pio(struct sdhci_host *host)
249 {
250         unsigned long flags;
251         size_t blksize, len, chunk;
252         u32 uninitialized_var(scratch);
253         u8 *buf;
254
255         DBG("PIO reading\n");
256
257         blksize = host->data->blksz;
258         chunk = 0;
259
260         local_irq_save(flags);
261
262         while (blksize) {
263                 if (!sg_miter_next(&host->sg_miter))
264                         BUG();
265
266                 len = min(host->sg_miter.length, blksize);
267
268                 blksize -= len;
269                 host->sg_miter.consumed = len;
270
271                 buf = host->sg_miter.addr;
272
273                 while (len) {
274                         if (chunk == 0) {
275                                 scratch = sdhci_readl(host, SDHCI_BUFFER);
276                                 chunk = 4;
277                         }
278
279                         *buf = scratch & 0xFF;
280
281                         buf++;
282                         scratch >>= 8;
283                         chunk--;
284                         len--;
285                 }
286         }
287
288         sg_miter_stop(&host->sg_miter);
289
290         local_irq_restore(flags);
291 }
292
293 static void sdhci_write_block_pio(struct sdhci_host *host)
294 {
295         unsigned long flags;
296         size_t blksize, len, chunk;
297         u32 scratch;
298         u8 *buf;
299
300         DBG("PIO writing\n");
301
302         blksize = host->data->blksz;
303         chunk = 0;
304         scratch = 0;
305
306         local_irq_save(flags);
307
308         while (blksize) {
309                 if (!sg_miter_next(&host->sg_miter))
310                         BUG();
311
312                 len = min(host->sg_miter.length, blksize);
313
314                 blksize -= len;
315                 host->sg_miter.consumed = len;
316
317                 buf = host->sg_miter.addr;
318
319                 while (len) {
320                         scratch |= (u32)*buf << (chunk * 8);
321
322                         buf++;
323                         chunk++;
324                         len--;
325
326                         if ((chunk == 4) || ((len == 0) && (blksize == 0))) {
327                                 sdhci_writel(host, scratch, SDHCI_BUFFER);
328                                 chunk = 0;
329                                 scratch = 0;
330                         }
331                 }
332         }
333
334         sg_miter_stop(&host->sg_miter);
335
336         local_irq_restore(flags);
337 }
338
339 static void sdhci_transfer_pio(struct sdhci_host *host)
340 {
341         u32 mask;
342
343         BUG_ON(!host->data);
344
345         if (host->blocks == 0)
346                 return;
347
348         if (host->data->flags & MMC_DATA_READ)
349                 mask = SDHCI_DATA_AVAILABLE;
350         else
351                 mask = SDHCI_SPACE_AVAILABLE;
352
353         /*
354          * Some controllers (JMicron JMB38x) mess up the buffer bits
355          * for transfers < 4 bytes. As long as it is just one block,
356          * we can ignore the bits.
357          */
358         if ((host->quirks & SDHCI_QUIRK_BROKEN_SMALL_PIO) &&
359                 (host->data->blocks == 1))
360                 mask = ~0;
361
362         while (sdhci_readl(host, SDHCI_PRESENT_STATE) & mask) {
363                 if (host->quirks & SDHCI_QUIRK_PIO_NEEDS_DELAY)
364                         udelay(100);
365
366                 if (host->data->flags & MMC_DATA_READ)
367                         sdhci_read_block_pio(host);
368                 else
369                         sdhci_write_block_pio(host);
370
371                 host->blocks--;
372                 if (host->blocks == 0)
373                         break;
374         }
375
376         DBG("PIO transfer complete.\n");
377 }
378
379 static char *sdhci_kmap_atomic(struct scatterlist *sg, unsigned long *flags)
380 {
381         local_irq_save(*flags);
382         return kmap_atomic(sg_page(sg), KM_BIO_SRC_IRQ) + sg->offset;
383 }
384
385 static void sdhci_kunmap_atomic(void *buffer, unsigned long *flags)
386 {
387         kunmap_atomic(buffer, KM_BIO_SRC_IRQ);
388         local_irq_restore(*flags);
389 }
390
391 static void sdhci_set_adma_desc(u8 *desc, u32 addr, int len, unsigned cmd)
392 {
393         __le32 *dataddr = (__le32 __force *)(desc + 4);
394         __le16 *cmdlen = (__le16 __force *)desc;
395
396         /* SDHCI specification says ADMA descriptors should be 4 byte
397          * aligned, so using 16 or 32bit operations should be safe. */
398
399         cmdlen[0] = cpu_to_le16(cmd);
400         cmdlen[1] = cpu_to_le16(len);
401
402         dataddr[0] = cpu_to_le32(addr);
403 }
404
405 static int sdhci_adma_table_pre(struct sdhci_host *host,
406         struct mmc_data *data)
407 {
408         int direction;
409
410         u8 *desc;
411         u8 *align;
412         dma_addr_t addr;
413         dma_addr_t align_addr;
414         int len, offset;
415
416         struct scatterlist *sg;
417         int i;
418         char *buffer;
419         unsigned long flags;
420
421         /*
422          * The spec does not specify endianness of descriptor table.
423          * We currently guess that it is LE.
424          */
425
426         if (data->flags & MMC_DATA_READ)
427                 direction = DMA_FROM_DEVICE;
428         else
429                 direction = DMA_TO_DEVICE;
430
431         /*
432          * The ADMA descriptor table is mapped further down as we
433          * need to fill it with data first.
434          */
435
436         host->align_addr = dma_map_single(mmc_dev(host->mmc),
437                 host->align_buffer, 128 * 4, direction);
438         if (dma_mapping_error(mmc_dev(host->mmc), host->align_addr))
439                 goto fail;
440         BUG_ON(host->align_addr & 0x3);
441
442         host->sg_count = dma_map_sg(mmc_dev(host->mmc),
443                 data->sg, data->sg_len, direction);
444         if (host->sg_count == 0)
445                 goto unmap_align;
446
447         desc = host->adma_desc;
448         align = host->align_buffer;
449
450         align_addr = host->align_addr;
451
452         for_each_sg(data->sg, sg, host->sg_count, i) {
453                 addr = sg_dma_address(sg);
454                 len = sg_dma_len(sg);
455
456                 /*
457                  * The SDHCI specification states that ADMA
458                  * addresses must be 32-bit aligned. If they
459                  * aren't, then we use a bounce buffer for
460                  * the (up to three) bytes that screw up the
461                  * alignment.
462                  */
463                 offset = (4 - (addr & 0x3)) & 0x3;
464                 if (offset) {
465                         if (data->flags & MMC_DATA_WRITE) {
466                                 buffer = sdhci_kmap_atomic(sg, &flags);
467                                 WARN_ON(((long)buffer & PAGE_MASK) > (PAGE_SIZE - 3));
468                                 memcpy(align, buffer, offset);
469                                 sdhci_kunmap_atomic(buffer, &flags);
470                         }
471
472                         /* tran, valid */
473                         sdhci_set_adma_desc(desc, align_addr, offset, 0x21);
474
475                         BUG_ON(offset > 65536);
476
477                         align += 4;
478                         align_addr += 4;
479
480                         desc += 8;
481
482                         addr += offset;
483                         len -= offset;
484                 }
485
486                 BUG_ON(len > 65536);
487
488                 /* tran, valid */
489                 sdhci_set_adma_desc(desc, addr, len, 0x21);
490                 desc += 8;
491
492                 /*
493                  * If this triggers then we have a calculation bug
494                  * somewhere. :/
495                  */
496                 WARN_ON((desc - host->adma_desc) > (128 * 2 + 1) * 4);
497         }
498
499         if (host->quirks & SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC) {
500                 /*
501                 * Mark the last descriptor as the terminating descriptor
502                 */
503                 if (desc != host->adma_desc) {
504                         desc -= 8;
505                         desc[0] |= 0x2; /* end */
506                 }
507         } else {
508                 /*
509                 * Add a terminating entry.
510                 */
511
512                 /* nop, end, valid */
513                 sdhci_set_adma_desc(desc, 0, 0, 0x3);
514         }
515
516         /*
517          * Resync align buffer as we might have changed it.
518          */
519         if (data->flags & MMC_DATA_WRITE) {
520                 dma_sync_single_for_device(mmc_dev(host->mmc),
521                         host->align_addr, 128 * 4, direction);
522         }
523
524         host->adma_addr = dma_map_single(mmc_dev(host->mmc),
525                 host->adma_desc, (128 * 2 + 1) * 4, DMA_TO_DEVICE);
526         if (dma_mapping_error(mmc_dev(host->mmc), host->adma_addr))
527                 goto unmap_entries;
528         BUG_ON(host->adma_addr & 0x3);
529
530         return 0;
531
532 unmap_entries:
533         dma_unmap_sg(mmc_dev(host->mmc), data->sg,
534                 data->sg_len, direction);
535 unmap_align:
536         dma_unmap_single(mmc_dev(host->mmc), host->align_addr,
537                 128 * 4, direction);
538 fail:
539         return -EINVAL;
540 }
541
542 static void sdhci_adma_table_post(struct sdhci_host *host,
543         struct mmc_data *data)
544 {
545         int direction;
546
547         struct scatterlist *sg;
548         int i, size;
549         u8 *align;
550         char *buffer;
551         unsigned long flags;
552
553         if (data->flags & MMC_DATA_READ)
554                 direction = DMA_FROM_DEVICE;
555         else
556                 direction = DMA_TO_DEVICE;
557
558         dma_unmap_single(mmc_dev(host->mmc), host->adma_addr,
559                 (128 * 2 + 1) * 4, DMA_TO_DEVICE);
560
561         dma_unmap_single(mmc_dev(host->mmc), host->align_addr,
562                 128 * 4, direction);
563
564         if (data->flags & MMC_DATA_READ) {
565                 dma_sync_sg_for_cpu(mmc_dev(host->mmc), data->sg,
566                         data->sg_len, direction);
567
568                 align = host->align_buffer;
569
570                 for_each_sg(data->sg, sg, host->sg_count, i) {
571                         if (sg_dma_address(sg) & 0x3) {
572                                 size = 4 - (sg_dma_address(sg) & 0x3);
573
574                                 buffer = sdhci_kmap_atomic(sg, &flags);
575                                 WARN_ON(((long)buffer & PAGE_MASK) > (PAGE_SIZE - 3));
576                                 memcpy(buffer, align, size);
577                                 sdhci_kunmap_atomic(buffer, &flags);
578
579                                 align += 4;
580                         }
581                 }
582         }
583
584         dma_unmap_sg(mmc_dev(host->mmc), data->sg,
585                 data->sg_len, direction);
586 }
587
588 static u8 sdhci_calc_timeout(struct sdhci_host *host, struct mmc_data *data)
589 {
590         u8 count;
591         unsigned target_timeout, current_timeout;
592
593         /*
594          * If the host controller provides us with an incorrect timeout
595          * value, just skip the check and use 0xE.  The hardware may take
596          * longer to time out, but that's much better than having a too-short
597          * timeout value.
598          */
599         if (host->quirks & SDHCI_QUIRK_BROKEN_TIMEOUT_VAL)
600                 return 0xE;
601
602         /* timeout in us */
603         target_timeout = data->timeout_ns / 1000 +
604                 data->timeout_clks / host->clock;
605
606         if (host->quirks & SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK)
607                 host->timeout_clk = host->clock / 1000;
608
609         /*
610          * Figure out needed cycles.
611          * We do this in steps in order to fit inside a 32 bit int.
612          * The first step is the minimum timeout, which will have a
613          * minimum resolution of 6 bits:
614          * (1) 2^13*1000 > 2^22,
615          * (2) host->timeout_clk < 2^16
616          *     =>
617          *     (1) / (2) > 2^6
618          */
619         count = 0;
620         current_timeout = (1 << 13) * 1000 / host->timeout_clk;
621         while (current_timeout < target_timeout) {
622                 count++;
623                 current_timeout <<= 1;
624                 if (count >= 0xF)
625                         break;
626         }
627
628         if (count >= 0xF) {
629                 printk(KERN_WARNING "%s: Too large timeout requested!\n",
630                         mmc_hostname(host->mmc));
631                 count = 0xE;
632         }
633
634         return count;
635 }
636
637 static void sdhci_set_transfer_irqs(struct sdhci_host *host)
638 {
639         u32 pio_irqs = SDHCI_INT_DATA_AVAIL | SDHCI_INT_SPACE_AVAIL;
640         u32 dma_irqs = SDHCI_INT_DMA_END | SDHCI_INT_ADMA_ERROR;
641
642         if (host->flags & SDHCI_REQ_USE_DMA)
643                 sdhci_clear_set_irqs(host, pio_irqs, dma_irqs);
644         else
645                 sdhci_clear_set_irqs(host, dma_irqs, pio_irqs);
646 }
647
648 static void sdhci_prepare_data(struct sdhci_host *host, struct mmc_data *data)
649 {
650         u8 count;
651         u8 ctrl;
652         int ret;
653
654         WARN_ON(host->data);
655
656         if (data == NULL)
657                 return;
658
659         /* Sanity checks */
660         BUG_ON(data->blksz * data->blocks > 524288);
661         BUG_ON(data->blksz > host->mmc->max_blk_size);
662         BUG_ON(data->blocks > 65535);
663
664         host->data = data;
665         host->data_early = 0;
666
667         count = sdhci_calc_timeout(host, data);
668         sdhci_writeb(host, count, SDHCI_TIMEOUT_CONTROL);
669
670         if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA))
671                 host->flags |= SDHCI_REQ_USE_DMA;
672
673         /*
674          * FIXME: This doesn't account for merging when mapping the
675          * scatterlist.
676          */
677         if (host->flags & SDHCI_REQ_USE_DMA) {
678                 int broken, i;
679                 struct scatterlist *sg;
680
681                 broken = 0;
682                 if (host->flags & SDHCI_USE_ADMA) {
683                         if (host->quirks & SDHCI_QUIRK_32BIT_ADMA_SIZE)
684                                 broken = 1;
685                 } else {
686                         if (host->quirks & SDHCI_QUIRK_32BIT_DMA_SIZE)
687                                 broken = 1;
688                 }
689
690                 if (unlikely(broken)) {
691                         for_each_sg(data->sg, sg, data->sg_len, i) {
692                                 if (sg->length & 0x3) {
693                                         DBG("Reverting to PIO because of "
694                                                 "transfer size (%d)\n",
695                                                 sg->length);
696                                         host->flags &= ~SDHCI_REQ_USE_DMA;
697                                         break;
698                                 }
699                         }
700                 }
701         }
702
703         /*
704          * The assumption here being that alignment is the same after
705          * translation to device address space.
706          */
707         if (host->flags & SDHCI_REQ_USE_DMA) {
708                 int broken, i;
709                 struct scatterlist *sg;
710
711                 broken = 0;
712                 if (host->flags & SDHCI_USE_ADMA) {
713                         /*
714                          * As we use 3 byte chunks to work around
715                          * alignment problems, we need to check this
716                          * quirk.
717                          */
718                         if (host->quirks & SDHCI_QUIRK_32BIT_ADMA_SIZE)
719                                 broken = 1;
720                 } else {
721                         if (host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR)
722                                 broken = 1;
723                 }
724
725                 if (unlikely(broken)) {
726                         for_each_sg(data->sg, sg, data->sg_len, i) {
727                                 if (sg->offset & 0x3) {
728                                         DBG("Reverting to PIO because of "
729                                                 "bad alignment\n");
730                                         host->flags &= ~SDHCI_REQ_USE_DMA;
731                                         break;
732                                 }
733                         }
734                 }
735         }
736
737         if (host->flags & SDHCI_REQ_USE_DMA) {
738                 if (host->flags & SDHCI_USE_ADMA) {
739                         ret = sdhci_adma_table_pre(host, data);
740                         if (ret) {
741                                 /*
742                                  * This only happens when someone fed
743                                  * us an invalid request.
744                                  */
745                                 WARN_ON(1);
746                                 host->flags &= ~SDHCI_REQ_USE_DMA;
747                         } else {
748                                 sdhci_writel(host, host->adma_addr,
749                                         SDHCI_ADMA_ADDRESS);
750                         }
751                 } else {
752                         int sg_cnt;
753
754                         sg_cnt = dma_map_sg(mmc_dev(host->mmc),
755                                         data->sg, data->sg_len,
756                                         (data->flags & MMC_DATA_READ) ?
757                                                 DMA_FROM_DEVICE :
758                                                 DMA_TO_DEVICE);
759                         if (sg_cnt == 0) {
760                                 /*
761                                  * This only happens when someone fed
762                                  * us an invalid request.
763                                  */
764                                 WARN_ON(1);
765                                 host->flags &= ~SDHCI_REQ_USE_DMA;
766                         } else {
767                                 WARN_ON(sg_cnt != 1);
768                                 sdhci_writel(host, sg_dma_address(data->sg),
769                                         SDHCI_DMA_ADDRESS);
770                         }
771                 }
772         }
773
774         /*
775          * Always adjust the DMA selection as some controllers
776          * (e.g. JMicron) can't do PIO properly when the selection
777          * is ADMA.
778          */
779         if (host->version >= SDHCI_SPEC_200) {
780                 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
781                 ctrl &= ~SDHCI_CTRL_DMA_MASK;
782                 if ((host->flags & SDHCI_REQ_USE_DMA) &&
783                         (host->flags & SDHCI_USE_ADMA))
784                         ctrl |= SDHCI_CTRL_ADMA32;
785                 else
786                         ctrl |= SDHCI_CTRL_SDMA;
787                 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
788         }
789
790         if (!(host->flags & SDHCI_REQ_USE_DMA)) {
791                 int flags;
792
793                 flags = SG_MITER_ATOMIC;
794                 if (host->data->flags & MMC_DATA_READ)
795                         flags |= SG_MITER_TO_SG;
796                 else
797                         flags |= SG_MITER_FROM_SG;
798                 sg_miter_start(&host->sg_miter, data->sg, data->sg_len, flags);
799                 host->blocks = data->blocks;
800         }
801
802         sdhci_set_transfer_irqs(host);
803
804         /* We do not handle DMA boundaries, so set it to max (512 KiB) */
805         sdhci_writew(host, SDHCI_MAKE_BLKSZ(7, data->blksz), SDHCI_BLOCK_SIZE);
806         sdhci_writew(host, data->blocks, SDHCI_BLOCK_COUNT);
807 }
808
809 static void sdhci_set_transfer_mode(struct sdhci_host *host,
810         struct mmc_data *data)
811 {
812         u16 mode;
813
814         if (data == NULL)
815                 return;
816
817         WARN_ON(!host->data);
818
819         mode = SDHCI_TRNS_BLK_CNT_EN;
820         if (data->blocks > 1)
821                 mode |= SDHCI_TRNS_MULTI;
822         if (data->flags & MMC_DATA_READ)
823                 mode |= SDHCI_TRNS_READ;
824         if (host->flags & SDHCI_REQ_USE_DMA)
825                 mode |= SDHCI_TRNS_DMA;
826
827         sdhci_writew(host, mode, SDHCI_TRANSFER_MODE);
828 }
829
830 static void sdhci_finish_data(struct sdhci_host *host)
831 {
832         struct mmc_data *data;
833
834         BUG_ON(!host->data);
835
836         data = host->data;
837         host->data = NULL;
838
839         if (host->flags & SDHCI_REQ_USE_DMA) {
840                 if (host->flags & SDHCI_USE_ADMA)
841                         sdhci_adma_table_post(host, data);
842                 else {
843                         dma_unmap_sg(mmc_dev(host->mmc), data->sg,
844                                 data->sg_len, (data->flags & MMC_DATA_READ) ?
845                                         DMA_FROM_DEVICE : DMA_TO_DEVICE);
846                 }
847         }
848
849         /*
850          * The specification states that the block count register must
851          * be updated, but it does not specify at what point in the
852          * data flow. That makes the register entirely useless to read
853          * back so we have to assume that nothing made it to the card
854          * in the event of an error.
855          */
856         if (data->error)
857                 data->bytes_xfered = 0;
858         else
859                 data->bytes_xfered = data->blksz * data->blocks;
860
861         if (data->stop) {
862                 /*
863                  * The controller needs a reset of internal state machines
864                  * upon error conditions.
865                  */
866                 if (data->error) {
867                         sdhci_reset(host, SDHCI_RESET_CMD);
868                         sdhci_reset(host, SDHCI_RESET_DATA);
869                 }
870
871                 sdhci_send_command(host, data->stop);
872         } else
873                 tasklet_schedule(&host->finish_tasklet);
874 }
875
876 static void sdhci_send_command(struct sdhci_host *host, struct mmc_command *cmd)
877 {
878         int flags;
879         u32 mask;
880         unsigned long timeout;
881
882         WARN_ON(host->cmd);
883
884         /* Wait max 10 ms */
885         timeout = 10;
886
887         mask = SDHCI_CMD_INHIBIT;
888         if ((cmd->data != NULL) || (cmd->flags & MMC_RSP_BUSY))
889                 mask |= SDHCI_DATA_INHIBIT;
890
891         /* We shouldn't wait for data inihibit for stop commands, even
892            though they might use busy signaling */
893         if (host->mrq->data && (cmd == host->mrq->data->stop))
894                 mask &= ~SDHCI_DATA_INHIBIT;
895
896         while (sdhci_readl(host, SDHCI_PRESENT_STATE) & mask) {
897                 if (timeout == 0) {
898                         printk(KERN_ERR "%s: Controller never released "
899                                 "inhibit bit(s).\n", mmc_hostname(host->mmc));
900                         sdhci_dumpregs(host);
901                         cmd->error = -EIO;
902                         tasklet_schedule(&host->finish_tasklet);
903                         return;
904                 }
905                 timeout--;
906                 mdelay(1);
907         }
908
909         mod_timer(&host->timer, jiffies + 10 * HZ);
910
911         host->cmd = cmd;
912
913         sdhci_prepare_data(host, cmd->data);
914
915         sdhci_writel(host, cmd->arg, SDHCI_ARGUMENT);
916
917         sdhci_set_transfer_mode(host, cmd->data);
918
919         if ((cmd->flags & MMC_RSP_136) && (cmd->flags & MMC_RSP_BUSY)) {
920                 printk(KERN_ERR "%s: Unsupported response type!\n",
921                         mmc_hostname(host->mmc));
922                 cmd->error = -EINVAL;
923                 tasklet_schedule(&host->finish_tasklet);
924                 return;
925         }
926
927         if (!(cmd->flags & MMC_RSP_PRESENT))
928                 flags = SDHCI_CMD_RESP_NONE;
929         else if (cmd->flags & MMC_RSP_136)
930                 flags = SDHCI_CMD_RESP_LONG;
931         else if (cmd->flags & MMC_RSP_BUSY)
932                 flags = SDHCI_CMD_RESP_SHORT_BUSY;
933         else
934                 flags = SDHCI_CMD_RESP_SHORT;
935
936         if (cmd->flags & MMC_RSP_CRC)
937                 flags |= SDHCI_CMD_CRC;
938         if (cmd->flags & MMC_RSP_OPCODE)
939                 flags |= SDHCI_CMD_INDEX;
940         if (cmd->data)
941                 flags |= SDHCI_CMD_DATA;
942
943         sdhci_writew(host, SDHCI_MAKE_CMD(cmd->opcode, flags), SDHCI_COMMAND);
944 }
945
946 static void sdhci_finish_command(struct sdhci_host *host)
947 {
948         int i;
949
950         BUG_ON(host->cmd == NULL);
951
952         if (host->cmd->flags & MMC_RSP_PRESENT) {
953                 if (host->cmd->flags & MMC_RSP_136) {
954                         /* CRC is stripped so we need to do some shifting. */
955                         for (i = 0;i < 4;i++) {
956                                 host->cmd->resp[i] = sdhci_readl(host,
957                                         SDHCI_RESPONSE + (3-i)*4) << 8;
958                                 if (i != 3)
959                                         host->cmd->resp[i] |=
960                                                 sdhci_readb(host,
961                                                 SDHCI_RESPONSE + (3-i)*4-1);
962                         }
963                 } else {
964                         host->cmd->resp[0] = sdhci_readl(host, SDHCI_RESPONSE);
965                 }
966         }
967
968         host->cmd->error = 0;
969
970         if (host->data && host->data_early)
971                 sdhci_finish_data(host);
972
973         if (!host->cmd->data)
974                 tasklet_schedule(&host->finish_tasklet);
975
976         host->cmd = NULL;
977 }
978
979 static void sdhci_set_clock(struct sdhci_host *host, unsigned int clock)
980 {
981         int div;
982         u16 clk;
983         unsigned long timeout;
984
985         if (clock == host->clock)
986                 return;
987
988         if (host->ops->set_clock) {
989                 host->ops->set_clock(host, clock);
990                 if (host->quirks & SDHCI_QUIRK_NONSTANDARD_CLOCK)
991                         return;
992         }
993
994         sdhci_writew(host, 0, SDHCI_CLOCK_CONTROL);
995
996         if (clock == 0)
997                 goto out;
998
999         for (div = 1;div < 256;div *= 2) {
1000                 if ((host->max_clk / div) <= clock)
1001                         break;
1002         }
1003         div >>= 1;
1004
1005         clk = div << SDHCI_DIVIDER_SHIFT;
1006         clk |= SDHCI_CLOCK_INT_EN;
1007         sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
1008
1009         /* Wait max 20 ms */
1010         timeout = 20;
1011         while (!((clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL))
1012                 & SDHCI_CLOCK_INT_STABLE)) {
1013                 if (timeout == 0) {
1014                         printk(KERN_ERR "%s: Internal clock never "
1015                                 "stabilised.\n", mmc_hostname(host->mmc));
1016                         sdhci_dumpregs(host);
1017                         return;
1018                 }
1019                 timeout--;
1020                 mdelay(1);
1021         }
1022
1023         clk |= SDHCI_CLOCK_CARD_EN;
1024         sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
1025
1026 out:
1027         host->clock = clock;
1028 }
1029
1030 static void sdhci_set_power(struct sdhci_host *host, unsigned short power)
1031 {
1032         u8 pwr;
1033
1034         if (power == (unsigned short)-1)
1035                 pwr = 0;
1036         else {
1037                 switch (1 << power) {
1038                 case MMC_VDD_165_195:
1039                         pwr = SDHCI_POWER_180;
1040                         break;
1041                 case MMC_VDD_29_30:
1042                 case MMC_VDD_30_31:
1043                         pwr = SDHCI_POWER_300;
1044                         break;
1045                 case MMC_VDD_32_33:
1046                 case MMC_VDD_33_34:
1047                         pwr = SDHCI_POWER_330;
1048                         break;
1049                 default:
1050                         BUG();
1051                 }
1052         }
1053
1054         if (host->pwr == pwr)
1055                 return;
1056
1057         host->pwr = pwr;
1058
1059         if (pwr == 0) {
1060                 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
1061                 return;
1062         }
1063
1064         /*
1065          * Spec says that we should clear the power reg before setting
1066          * a new value. Some controllers don't seem to like this though.
1067          */
1068         if (!(host->quirks & SDHCI_QUIRK_SINGLE_POWER_WRITE))
1069                 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
1070
1071         /*
1072          * At least the Marvell CaFe chip gets confused if we set the voltage
1073          * and set turn on power at the same time, so set the voltage first.
1074          */
1075         if (host->quirks & SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER)
1076                 sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL);
1077
1078         pwr |= SDHCI_POWER_ON;
1079
1080         sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL);
1081
1082         /*
1083          * Some controllers need an extra 10ms delay of 10ms before they
1084          * can apply clock after applying power
1085          */
1086         if (host->quirks & SDHCI_QUIRK_DELAY_AFTER_POWER)
1087                 mdelay(10);
1088 }
1089
1090 /*****************************************************************************\
1091  *                                                                           *
1092  * MMC callbacks                                                             *
1093  *                                                                           *
1094 \*****************************************************************************/
1095
1096 static void sdhci_request(struct mmc_host *mmc, struct mmc_request *mrq)
1097 {
1098         struct sdhci_host *host;
1099         bool present;
1100         unsigned long flags;
1101
1102         host = mmc_priv(mmc);
1103
1104         spin_lock_irqsave(&host->lock, flags);
1105
1106         WARN_ON(host->mrq != NULL);
1107
1108 #ifndef SDHCI_USE_LEDS_CLASS
1109         sdhci_activate_led(host);
1110 #endif
1111
1112         host->mrq = mrq;
1113
1114         /* If polling, assume that the card is always present. */
1115         if (host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION)
1116                 present = true;
1117         else
1118                 present = sdhci_readl(host, SDHCI_PRESENT_STATE) &
1119                                 SDHCI_CARD_PRESENT;
1120
1121         if (!present || host->flags & SDHCI_DEVICE_DEAD) {
1122                 host->mrq->cmd->error = -ENOMEDIUM;
1123                 tasklet_schedule(&host->finish_tasklet);
1124         } else
1125                 sdhci_send_command(host, mrq->cmd);
1126
1127         mmiowb();
1128         spin_unlock_irqrestore(&host->lock, flags);
1129 }
1130
1131 static void sdhci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
1132 {
1133         struct sdhci_host *host;
1134         unsigned long flags;
1135         u8 ctrl;
1136
1137         host = mmc_priv(mmc);
1138
1139         spin_lock_irqsave(&host->lock, flags);
1140
1141         if (host->flags & SDHCI_DEVICE_DEAD)
1142                 goto out;
1143
1144         /*
1145          * Reset the chip on each power off.
1146          * Should clear out any weird states.
1147          */
1148         if (ios->power_mode == MMC_POWER_OFF) {
1149                 sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE);
1150                 sdhci_reinit(host);
1151         }
1152
1153         sdhci_set_clock(host, ios->clock);
1154
1155         if (ios->power_mode == MMC_POWER_OFF)
1156                 sdhci_set_power(host, -1);
1157         else
1158                 sdhci_set_power(host, ios->vdd);
1159
1160         ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
1161
1162         if (ios->bus_width == MMC_BUS_WIDTH_8)
1163                 ctrl |= SDHCI_CTRL_8BITBUS;
1164         else
1165                 ctrl &= ~SDHCI_CTRL_8BITBUS;
1166
1167         if (ios->bus_width == MMC_BUS_WIDTH_4)
1168                 ctrl |= SDHCI_CTRL_4BITBUS;
1169         else
1170                 ctrl &= ~SDHCI_CTRL_4BITBUS;
1171
1172         if (ios->timing == MMC_TIMING_SD_HS)
1173                 ctrl |= SDHCI_CTRL_HISPD;
1174         else
1175                 ctrl &= ~SDHCI_CTRL_HISPD;
1176
1177         sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
1178
1179         /*
1180          * Some (ENE) controllers go apeshit on some ios operation,
1181          * signalling timeout and CRC errors even on CMD0. Resetting
1182          * it on each ios seems to solve the problem.
1183          */
1184         if(host->quirks & SDHCI_QUIRK_RESET_CMD_DATA_ON_IOS)
1185                 sdhci_reset(host, SDHCI_RESET_CMD | SDHCI_RESET_DATA);
1186
1187 out:
1188         mmiowb();
1189         spin_unlock_irqrestore(&host->lock, flags);
1190 }
1191
1192 static int sdhci_get_ro(struct mmc_host *mmc)
1193 {
1194         struct sdhci_host *host;
1195         unsigned long flags;
1196         int present;
1197
1198         host = mmc_priv(mmc);
1199
1200         spin_lock_irqsave(&host->lock, flags);
1201
1202         if (host->flags & SDHCI_DEVICE_DEAD)
1203                 present = 0;
1204         else
1205                 present = sdhci_readl(host, SDHCI_PRESENT_STATE);
1206
1207         spin_unlock_irqrestore(&host->lock, flags);
1208
1209         if (host->quirks & SDHCI_QUIRK_INVERTED_WRITE_PROTECT)
1210                 return !!(present & SDHCI_WRITE_PROTECT);
1211         return !(present & SDHCI_WRITE_PROTECT);
1212 }
1213
1214 static void sdhci_enable_sdio_irq(struct mmc_host *mmc, int enable)
1215 {
1216         struct sdhci_host *host;
1217         unsigned long flags;
1218
1219         host = mmc_priv(mmc);
1220
1221         spin_lock_irqsave(&host->lock, flags);
1222
1223         if (host->flags & SDHCI_DEVICE_DEAD)
1224                 goto out;
1225
1226         if (enable)
1227                 sdhci_unmask_irqs(host, SDHCI_INT_CARD_INT);
1228         else
1229                 sdhci_mask_irqs(host, SDHCI_INT_CARD_INT);
1230 out:
1231         mmiowb();
1232
1233         spin_unlock_irqrestore(&host->lock, flags);
1234 }
1235
1236 static const struct mmc_host_ops sdhci_ops = {
1237         .request        = sdhci_request,
1238         .set_ios        = sdhci_set_ios,
1239         .get_ro         = sdhci_get_ro,
1240         .enable_sdio_irq = sdhci_enable_sdio_irq,
1241 };
1242
1243 /*****************************************************************************\
1244  *                                                                           *
1245  * Tasklets                                                                  *
1246  *                                                                           *
1247 \*****************************************************************************/
1248
1249 static void sdhci_tasklet_card(unsigned long param)
1250 {
1251         struct sdhci_host *host;
1252         unsigned long flags;
1253
1254         host = (struct sdhci_host*)param;
1255
1256         spin_lock_irqsave(&host->lock, flags);
1257
1258         if (!(sdhci_readl(host, SDHCI_PRESENT_STATE) & SDHCI_CARD_PRESENT)) {
1259                 if (host->mrq) {
1260                         printk(KERN_ERR "%s: Card removed during transfer!\n",
1261                                 mmc_hostname(host->mmc));
1262                         printk(KERN_ERR "%s: Resetting controller.\n",
1263                                 mmc_hostname(host->mmc));
1264
1265                         sdhci_reset(host, SDHCI_RESET_CMD);
1266                         sdhci_reset(host, SDHCI_RESET_DATA);
1267
1268                         host->mrq->cmd->error = -ENOMEDIUM;
1269                         tasklet_schedule(&host->finish_tasklet);
1270                 }
1271         }
1272
1273         spin_unlock_irqrestore(&host->lock, flags);
1274
1275         mmc_detect_change(host->mmc, msecs_to_jiffies(200));
1276 }
1277
1278 static void sdhci_tasklet_finish(unsigned long param)
1279 {
1280         struct sdhci_host *host;
1281         unsigned long flags;
1282         struct mmc_request *mrq;
1283
1284         host = (struct sdhci_host*)param;
1285
1286         spin_lock_irqsave(&host->lock, flags);
1287
1288         del_timer(&host->timer);
1289
1290         mrq = host->mrq;
1291
1292         /*
1293          * The controller needs a reset of internal state machines
1294          * upon error conditions.
1295          */
1296         if (!(host->flags & SDHCI_DEVICE_DEAD) &&
1297                 (mrq->cmd->error ||
1298                  (mrq->data && (mrq->data->error ||
1299                   (mrq->data->stop && mrq->data->stop->error))) ||
1300                    (host->quirks & SDHCI_QUIRK_RESET_AFTER_REQUEST))) {
1301
1302                 /* Some controllers need this kick or reset won't work here */
1303                 if (host->quirks & SDHCI_QUIRK_CLOCK_BEFORE_RESET) {
1304                         unsigned int clock;
1305
1306                         /* This is to force an update */
1307                         clock = host->clock;
1308                         host->clock = 0;
1309                         sdhci_set_clock(host, clock);
1310                 }
1311
1312                 /* Spec says we should do both at the same time, but Ricoh
1313                    controllers do not like that. */
1314                 sdhci_reset(host, SDHCI_RESET_CMD);
1315                 sdhci_reset(host, SDHCI_RESET_DATA);
1316         }
1317
1318         host->mrq = NULL;
1319         host->cmd = NULL;
1320         host->data = NULL;
1321
1322 #ifndef SDHCI_USE_LEDS_CLASS
1323         sdhci_deactivate_led(host);
1324 #endif
1325
1326         mmiowb();
1327         spin_unlock_irqrestore(&host->lock, flags);
1328
1329         mmc_request_done(host->mmc, mrq);
1330 }
1331
1332 static void sdhci_timeout_timer(unsigned long data)
1333 {
1334         struct sdhci_host *host;
1335         unsigned long flags;
1336
1337         host = (struct sdhci_host*)data;
1338
1339         spin_lock_irqsave(&host->lock, flags);
1340
1341         if (host->mrq) {
1342                 printk(KERN_ERR "%s: Timeout waiting for hardware "
1343                         "interrupt.\n", mmc_hostname(host->mmc));
1344                 sdhci_dumpregs(host);
1345
1346                 if (host->data) {
1347                         host->data->error = -ETIMEDOUT;
1348                         sdhci_finish_data(host);
1349                 } else {
1350                         if (host->cmd)
1351                                 host->cmd->error = -ETIMEDOUT;
1352                         else
1353                                 host->mrq->cmd->error = -ETIMEDOUT;
1354
1355                         tasklet_schedule(&host->finish_tasklet);
1356                 }
1357         }
1358
1359         mmiowb();
1360         spin_unlock_irqrestore(&host->lock, flags);
1361 }
1362
1363 /*****************************************************************************\
1364  *                                                                           *
1365  * Interrupt handling                                                        *
1366  *                                                                           *
1367 \*****************************************************************************/
1368
1369 static void sdhci_cmd_irq(struct sdhci_host *host, u32 intmask)
1370 {
1371         BUG_ON(intmask == 0);
1372
1373         if (!host->cmd) {
1374                 printk(KERN_ERR "%s: Got command interrupt 0x%08x even "
1375                         "though no command operation was in progress.\n",
1376                         mmc_hostname(host->mmc), (unsigned)intmask);
1377                 sdhci_dumpregs(host);
1378                 return;
1379         }
1380
1381         if (intmask & SDHCI_INT_TIMEOUT)
1382                 host->cmd->error = -ETIMEDOUT;
1383         else if (intmask & (SDHCI_INT_CRC | SDHCI_INT_END_BIT |
1384                         SDHCI_INT_INDEX))
1385                 host->cmd->error = -EILSEQ;
1386
1387         if (host->cmd->error) {
1388                 tasklet_schedule(&host->finish_tasklet);
1389                 return;
1390         }
1391
1392         /*
1393          * The host can send and interrupt when the busy state has
1394          * ended, allowing us to wait without wasting CPU cycles.
1395          * Unfortunately this is overloaded on the "data complete"
1396          * interrupt, so we need to take some care when handling
1397          * it.
1398          *
1399          * Note: The 1.0 specification is a bit ambiguous about this
1400          *       feature so there might be some problems with older
1401          *       controllers.
1402          */
1403         if (host->cmd->flags & MMC_RSP_BUSY) {
1404                 if (host->cmd->data)
1405                         DBG("Cannot wait for busy signal when also "
1406                                 "doing a data transfer");
1407                 else if (!(host->quirks & SDHCI_QUIRK_NO_BUSY_IRQ))
1408                         return;
1409
1410                 /* The controller does not support the end-of-busy IRQ,
1411                  * fall through and take the SDHCI_INT_RESPONSE */
1412         }
1413
1414         if (intmask & SDHCI_INT_RESPONSE)
1415                 sdhci_finish_command(host);
1416 }
1417
1418 #ifdef DEBUG
1419 static void sdhci_show_adma_error(struct sdhci_host *host)
1420 {
1421         const char *name = mmc_hostname(host->mmc);
1422         u8 *desc = host->adma_desc;
1423         __le32 *dma;
1424         __le16 *len;
1425         u8 attr;
1426
1427         sdhci_dumpregs(host);
1428
1429         while (true) {
1430                 dma = (__le32 *)(desc + 4);
1431                 len = (__le16 *)(desc + 2);
1432                 attr = *desc;
1433
1434                 DBG("%s: %p: DMA 0x%08x, LEN 0x%04x, Attr=0x%02x\n",
1435                     name, desc, le32_to_cpu(*dma), le16_to_cpu(*len), attr);
1436
1437                 desc += 8;
1438
1439                 if (attr & 2)
1440                         break;
1441         }
1442 }
1443 #else
1444 static void sdhci_show_adma_error(struct sdhci_host *host) { }
1445 #endif
1446
1447 static void sdhci_data_irq(struct sdhci_host *host, u32 intmask)
1448 {
1449         BUG_ON(intmask == 0);
1450
1451         if (!host->data) {
1452                 /*
1453                  * The "data complete" interrupt is also used to
1454                  * indicate that a busy state has ended. See comment
1455                  * above in sdhci_cmd_irq().
1456                  */
1457                 if (host->cmd && (host->cmd->flags & MMC_RSP_BUSY)) {
1458                         if (intmask & SDHCI_INT_DATA_END) {
1459                                 sdhci_finish_command(host);
1460                                 return;
1461                         }
1462                 }
1463
1464                 printk(KERN_ERR "%s: Got data interrupt 0x%08x even "
1465                         "though no data operation was in progress.\n",
1466                         mmc_hostname(host->mmc), (unsigned)intmask);
1467                 sdhci_dumpregs(host);
1468
1469                 return;
1470         }
1471
1472         if (intmask & SDHCI_INT_DATA_TIMEOUT)
1473                 host->data->error = -ETIMEDOUT;
1474         else if (intmask & (SDHCI_INT_DATA_CRC | SDHCI_INT_DATA_END_BIT))
1475                 host->data->error = -EILSEQ;
1476         else if (intmask & SDHCI_INT_ADMA_ERROR) {
1477                 printk(KERN_ERR "%s: ADMA error\n", mmc_hostname(host->mmc));
1478                 sdhci_show_adma_error(host);
1479                 host->data->error = -EIO;
1480         }
1481
1482         if (host->data->error)
1483                 sdhci_finish_data(host);
1484         else {
1485                 if (intmask & (SDHCI_INT_DATA_AVAIL | SDHCI_INT_SPACE_AVAIL))
1486                         sdhci_transfer_pio(host);
1487
1488                 /*
1489                  * We currently don't do anything fancy with DMA
1490                  * boundaries, but as we can't disable the feature
1491                  * we need to at least restart the transfer.
1492                  */
1493                 if (intmask & SDHCI_INT_DMA_END)
1494                         sdhci_writel(host, sdhci_readl(host, SDHCI_DMA_ADDRESS),
1495                                 SDHCI_DMA_ADDRESS);
1496
1497                 if (intmask & SDHCI_INT_DATA_END) {
1498                         if (host->cmd) {
1499                                 /*
1500                                  * Data managed to finish before the
1501                                  * command completed. Make sure we do
1502                                  * things in the proper order.
1503                                  */
1504                                 host->data_early = 1;
1505                         } else {
1506                                 sdhci_finish_data(host);
1507                         }
1508                 }
1509         }
1510 }
1511
1512 static irqreturn_t sdhci_irq(int irq, void *dev_id)
1513 {
1514         irqreturn_t result;
1515         struct sdhci_host* host = dev_id;
1516         u32 intmask;
1517         int cardint = 0;
1518
1519         spin_lock(&host->lock);
1520
1521         intmask = sdhci_readl(host, SDHCI_INT_STATUS);
1522
1523         if (!intmask || intmask == 0xffffffff) {
1524                 result = IRQ_NONE;
1525                 goto out;
1526         }
1527
1528         DBG("*** %s got interrupt: 0x%08x\n",
1529                 mmc_hostname(host->mmc), intmask);
1530
1531         if (intmask & (SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE)) {
1532                 sdhci_writel(host, intmask & (SDHCI_INT_CARD_INSERT |
1533                         SDHCI_INT_CARD_REMOVE), SDHCI_INT_STATUS);
1534                 tasklet_schedule(&host->card_tasklet);
1535         }
1536
1537         intmask &= ~(SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE);
1538
1539         if (intmask & SDHCI_INT_CMD_MASK) {
1540                 sdhci_writel(host, intmask & SDHCI_INT_CMD_MASK,
1541                         SDHCI_INT_STATUS);
1542                 sdhci_cmd_irq(host, intmask & SDHCI_INT_CMD_MASK);
1543         }
1544
1545         if (intmask & SDHCI_INT_DATA_MASK) {
1546                 sdhci_writel(host, intmask & SDHCI_INT_DATA_MASK,
1547                         SDHCI_INT_STATUS);
1548                 sdhci_data_irq(host, intmask & SDHCI_INT_DATA_MASK);
1549         }
1550
1551         intmask &= ~(SDHCI_INT_CMD_MASK | SDHCI_INT_DATA_MASK);
1552
1553         intmask &= ~SDHCI_INT_ERROR;
1554
1555         if (intmask & SDHCI_INT_BUS_POWER) {
1556                 printk(KERN_ERR "%s: Card is consuming too much power!\n",
1557                         mmc_hostname(host->mmc));
1558                 sdhci_writel(host, SDHCI_INT_BUS_POWER, SDHCI_INT_STATUS);
1559         }
1560
1561         intmask &= ~SDHCI_INT_BUS_POWER;
1562
1563         if (intmask & SDHCI_INT_CARD_INT)
1564                 cardint = 1;
1565
1566         intmask &= ~SDHCI_INT_CARD_INT;
1567
1568         if (intmask) {
1569                 printk(KERN_ERR "%s: Unexpected interrupt 0x%08x.\n",
1570                         mmc_hostname(host->mmc), intmask);
1571                 sdhci_dumpregs(host);
1572
1573                 sdhci_writel(host, intmask, SDHCI_INT_STATUS);
1574         }
1575
1576         result = IRQ_HANDLED;
1577
1578         mmiowb();
1579 out:
1580         spin_unlock(&host->lock);
1581
1582         /*
1583          * We have to delay this as it calls back into the driver.
1584          */
1585         if (cardint)
1586                 mmc_signal_sdio_irq(host->mmc);
1587
1588         return result;
1589 }
1590
1591 /*****************************************************************************\
1592  *                                                                           *
1593  * Suspend/resume                                                            *
1594  *                                                                           *
1595 \*****************************************************************************/
1596
1597 #ifdef CONFIG_PM
1598
1599 int sdhci_suspend_host(struct sdhci_host *host, pm_message_t state)
1600 {
1601         int ret;
1602
1603         sdhci_disable_card_detection(host);
1604
1605         ret = mmc_suspend_host(host->mmc);
1606         if (ret)
1607                 return ret;
1608
1609         free_irq(host->irq, host);
1610
1611         return 0;
1612 }
1613
1614 EXPORT_SYMBOL_GPL(sdhci_suspend_host);
1615
1616 int sdhci_resume_host(struct sdhci_host *host)
1617 {
1618         int ret;
1619
1620         if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
1621                 if (host->ops->enable_dma)
1622                         host->ops->enable_dma(host);
1623         }
1624
1625         ret = request_irq(host->irq, sdhci_irq, IRQF_SHARED,
1626                           mmc_hostname(host->mmc), host);
1627         if (ret)
1628                 return ret;
1629
1630         sdhci_init(host, (host->mmc->pm_flags & MMC_PM_KEEP_POWER));
1631         mmiowb();
1632
1633         ret = mmc_resume_host(host->mmc);
1634         sdhci_enable_card_detection(host);
1635
1636         return ret;
1637 }
1638
1639 EXPORT_SYMBOL_GPL(sdhci_resume_host);
1640
1641 #endif /* CONFIG_PM */
1642
1643 /*****************************************************************************\
1644  *                                                                           *
1645  * Device allocation/registration                                            *
1646  *                                                                           *
1647 \*****************************************************************************/
1648
1649 struct sdhci_host *sdhci_alloc_host(struct device *dev,
1650         size_t priv_size)
1651 {
1652         struct mmc_host *mmc;
1653         struct sdhci_host *host;
1654
1655         WARN_ON(dev == NULL);
1656
1657         mmc = mmc_alloc_host(sizeof(struct sdhci_host) + priv_size, dev);
1658         if (!mmc)
1659                 return ERR_PTR(-ENOMEM);
1660
1661         host = mmc_priv(mmc);
1662         host->mmc = mmc;
1663
1664         return host;
1665 }
1666
1667 EXPORT_SYMBOL_GPL(sdhci_alloc_host);
1668
1669 int sdhci_add_host(struct sdhci_host *host)
1670 {
1671         struct mmc_host *mmc;
1672         unsigned int caps;
1673         int ret;
1674
1675         WARN_ON(host == NULL);
1676         if (host == NULL)
1677                 return -EINVAL;
1678
1679         mmc = host->mmc;
1680
1681         if (debug_quirks)
1682                 host->quirks = debug_quirks;
1683
1684         sdhci_reset(host, SDHCI_RESET_ALL);
1685
1686         host->version = sdhci_readw(host, SDHCI_HOST_VERSION);
1687         host->version = (host->version & SDHCI_SPEC_VER_MASK)
1688                                 >> SDHCI_SPEC_VER_SHIFT;
1689         if (host->version > SDHCI_SPEC_200) {
1690                 printk(KERN_ERR "%s: Unknown controller version (%d). "
1691                         "You may experience problems.\n", mmc_hostname(mmc),
1692                         host->version);
1693         }
1694
1695         caps = (host->quirks & SDHCI_QUIRK_MISSING_CAPS) ? host->caps :
1696                 sdhci_readl(host, SDHCI_CAPABILITIES);
1697
1698         if (host->quirks & SDHCI_QUIRK_FORCE_DMA)
1699                 host->flags |= SDHCI_USE_SDMA;
1700         else if (!(caps & SDHCI_CAN_DO_SDMA))
1701                 DBG("Controller doesn't have SDMA capability\n");
1702         else
1703                 host->flags |= SDHCI_USE_SDMA;
1704
1705         if ((host->quirks & SDHCI_QUIRK_BROKEN_DMA) &&
1706                 (host->flags & SDHCI_USE_SDMA)) {
1707                 DBG("Disabling DMA as it is marked broken\n");
1708                 host->flags &= ~SDHCI_USE_SDMA;
1709         }
1710
1711         if ((host->version >= SDHCI_SPEC_200) && (caps & SDHCI_CAN_DO_ADMA2))
1712                 host->flags |= SDHCI_USE_ADMA;
1713
1714         if ((host->quirks & SDHCI_QUIRK_BROKEN_ADMA) &&
1715                 (host->flags & SDHCI_USE_ADMA)) {
1716                 DBG("Disabling ADMA as it is marked broken\n");
1717                 host->flags &= ~SDHCI_USE_ADMA;
1718         }
1719
1720         if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
1721                 if (host->ops->enable_dma) {
1722                         if (host->ops->enable_dma(host)) {
1723                                 printk(KERN_WARNING "%s: No suitable DMA "
1724                                         "available. Falling back to PIO.\n",
1725                                         mmc_hostname(mmc));
1726                                 host->flags &=
1727                                         ~(SDHCI_USE_SDMA | SDHCI_USE_ADMA);
1728                         }
1729                 }
1730         }
1731
1732         if (host->flags & SDHCI_USE_ADMA) {
1733                 /*
1734                  * We need to allocate descriptors for all sg entries
1735                  * (128) and potentially one alignment transfer for
1736                  * each of those entries.
1737                  */
1738                 host->adma_desc = kmalloc((128 * 2 + 1) * 4, GFP_KERNEL);
1739                 host->align_buffer = kmalloc(128 * 4, GFP_KERNEL);
1740                 if (!host->adma_desc || !host->align_buffer) {
1741                         kfree(host->adma_desc);
1742                         kfree(host->align_buffer);
1743                         printk(KERN_WARNING "%s: Unable to allocate ADMA "
1744                                 "buffers. Falling back to standard DMA.\n",
1745                                 mmc_hostname(mmc));
1746                         host->flags &= ~SDHCI_USE_ADMA;
1747                 }
1748         }
1749
1750         /*
1751          * If we use DMA, then it's up to the caller to set the DMA
1752          * mask, but PIO does not need the hw shim so we set a new
1753          * mask here in that case.
1754          */
1755         if (!(host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA))) {
1756                 host->dma_mask = DMA_BIT_MASK(64);
1757                 mmc_dev(host->mmc)->dma_mask = &host->dma_mask;
1758         }
1759
1760         host->max_clk =
1761                 (caps & SDHCI_CLOCK_BASE_MASK) >> SDHCI_CLOCK_BASE_SHIFT;
1762         host->max_clk *= 1000000;
1763         if (host->max_clk == 0 || host->quirks &
1764                         SDHCI_QUIRK_CAP_CLOCK_BASE_BROKEN) {
1765                 if (!host->ops->get_max_clock) {
1766                         printk(KERN_ERR
1767                                "%s: Hardware doesn't specify base clock "
1768                                "frequency.\n", mmc_hostname(mmc));
1769                         return -ENODEV;
1770                 }
1771                 host->max_clk = host->ops->get_max_clock(host);
1772         }
1773
1774         host->timeout_clk =
1775                 (caps & SDHCI_TIMEOUT_CLK_MASK) >> SDHCI_TIMEOUT_CLK_SHIFT;
1776         if (host->timeout_clk == 0) {
1777                 if (host->ops->get_timeout_clock) {
1778                         host->timeout_clk = host->ops->get_timeout_clock(host);
1779                 } else if (!(host->quirks &
1780                                 SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK)) {
1781                         printk(KERN_ERR
1782                                "%s: Hardware doesn't specify timeout clock "
1783                                "frequency.\n", mmc_hostname(mmc));
1784                         return -ENODEV;
1785                 }
1786         }
1787         if (caps & SDHCI_TIMEOUT_CLK_UNIT)
1788                 host->timeout_clk *= 1000;
1789
1790         /*
1791          * Set host parameters.
1792          */
1793         mmc->ops = &sdhci_ops;
1794         if (host->quirks & SDHCI_QUIRK_NONSTANDARD_CLOCK &&
1795                         host->ops->get_min_clock)
1796                 mmc->f_min = host->ops->get_min_clock(host);
1797         else
1798                 mmc->f_min = host->max_clk / 256;
1799         mmc->f_max = host->max_clk;
1800         mmc->caps |= MMC_CAP_SDIO_IRQ;
1801
1802         if (!(host->quirks & SDHCI_QUIRK_FORCE_1_BIT_DATA))
1803                 mmc->caps |= MMC_CAP_4_BIT_DATA;
1804
1805         if (caps & SDHCI_CAN_DO_HISPD)
1806                 mmc->caps |= MMC_CAP_SD_HIGHSPEED;
1807
1808         if (host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION)
1809                 mmc->caps |= MMC_CAP_NEEDS_POLL;
1810
1811         mmc->ocr_avail = 0;
1812         if (caps & SDHCI_CAN_VDD_330)
1813                 mmc->ocr_avail |= MMC_VDD_32_33|MMC_VDD_33_34;
1814         if (caps & SDHCI_CAN_VDD_300)
1815                 mmc->ocr_avail |= MMC_VDD_29_30|MMC_VDD_30_31;
1816         if (caps & SDHCI_CAN_VDD_180)
1817                 mmc->ocr_avail |= MMC_VDD_165_195;
1818
1819         if (mmc->ocr_avail == 0) {
1820                 printk(KERN_ERR "%s: Hardware doesn't report any "
1821                         "support voltages.\n", mmc_hostname(mmc));
1822                 return -ENODEV;
1823         }
1824
1825         spin_lock_init(&host->lock);
1826
1827         /*
1828          * Maximum number of segments. Depends on if the hardware
1829          * can do scatter/gather or not.
1830          */
1831         if (host->flags & SDHCI_USE_ADMA)
1832                 mmc->max_hw_segs = 128;
1833         else if (host->flags & SDHCI_USE_SDMA)
1834                 mmc->max_hw_segs = 1;
1835         else /* PIO */
1836                 mmc->max_hw_segs = 128;
1837         mmc->max_phys_segs = 128;
1838
1839         /*
1840          * Maximum number of sectors in one transfer. Limited by DMA boundary
1841          * size (512KiB).
1842          */
1843         mmc->max_req_size = 524288;
1844
1845         /*
1846          * Maximum segment size. Could be one segment with the maximum number
1847          * of bytes. When doing hardware scatter/gather, each entry cannot
1848          * be larger than 64 KiB though.
1849          */
1850         if (host->flags & SDHCI_USE_ADMA)
1851                 mmc->max_seg_size = 65536;
1852         else
1853                 mmc->max_seg_size = mmc->max_req_size;
1854
1855         /*
1856          * Maximum block size. This varies from controller to controller and
1857          * is specified in the capabilities register.
1858          */
1859         if (host->quirks & SDHCI_QUIRK_FORCE_BLK_SZ_2048) {
1860                 mmc->max_blk_size = 2;
1861         } else {
1862                 mmc->max_blk_size = (caps & SDHCI_MAX_BLOCK_MASK) >>
1863                                 SDHCI_MAX_BLOCK_SHIFT;
1864                 if (mmc->max_blk_size >= 3) {
1865                         printk(KERN_WARNING "%s: Invalid maximum block size, "
1866                                 "assuming 512 bytes\n", mmc_hostname(mmc));
1867                         mmc->max_blk_size = 0;
1868                 }
1869         }
1870
1871         mmc->max_blk_size = 512 << mmc->max_blk_size;
1872
1873         /*
1874          * Maximum block count.
1875          */
1876         mmc->max_blk_count = (host->quirks & SDHCI_QUIRK_NO_MULTIBLOCK) ? 1 : 65535;
1877
1878         /*
1879          * Init tasklets.
1880          */
1881         tasklet_init(&host->card_tasklet,
1882                 sdhci_tasklet_card, (unsigned long)host);
1883         tasklet_init(&host->finish_tasklet,
1884                 sdhci_tasklet_finish, (unsigned long)host);
1885
1886         setup_timer(&host->timer, sdhci_timeout_timer, (unsigned long)host);
1887
1888         ret = request_irq(host->irq, sdhci_irq, IRQF_SHARED,
1889                 mmc_hostname(mmc), host);
1890         if (ret)
1891                 goto untasklet;
1892
1893         sdhci_init(host, 0);
1894
1895 #ifdef CONFIG_MMC_DEBUG
1896         sdhci_dumpregs(host);
1897 #endif
1898
1899 #ifdef SDHCI_USE_LEDS_CLASS
1900         snprintf(host->led_name, sizeof(host->led_name),
1901                 "%s::", mmc_hostname(mmc));
1902         host->led.name = host->led_name;
1903         host->led.brightness = LED_OFF;
1904         host->led.default_trigger = mmc_hostname(mmc);
1905         host->led.brightness_set = sdhci_led_control;
1906
1907         ret = led_classdev_register(mmc_dev(mmc), &host->led);
1908         if (ret)
1909                 goto reset;
1910 #endif
1911
1912         mmiowb();
1913
1914         mmc_add_host(mmc);
1915
1916         printk(KERN_INFO "%s: SDHCI controller on %s [%s] using %s\n",
1917                 mmc_hostname(mmc), host->hw_name, dev_name(mmc_dev(mmc)),
1918                 (host->flags & SDHCI_USE_ADMA) ? "ADMA" :
1919                 (host->flags & SDHCI_USE_SDMA) ? "DMA" : "PIO");
1920
1921         sdhci_enable_card_detection(host);
1922
1923         return 0;
1924
1925 #ifdef SDHCI_USE_LEDS_CLASS
1926 reset:
1927         sdhci_reset(host, SDHCI_RESET_ALL);
1928         free_irq(host->irq, host);
1929 #endif
1930 untasklet:
1931         tasklet_kill(&host->card_tasklet);
1932         tasklet_kill(&host->finish_tasklet);
1933
1934         return ret;
1935 }
1936
1937 EXPORT_SYMBOL_GPL(sdhci_add_host);
1938
1939 void sdhci_remove_host(struct sdhci_host *host, int dead)
1940 {
1941         unsigned long flags;
1942
1943         if (dead) {
1944                 spin_lock_irqsave(&host->lock, flags);
1945
1946                 host->flags |= SDHCI_DEVICE_DEAD;
1947
1948                 if (host->mrq) {
1949                         printk(KERN_ERR "%s: Controller removed during "
1950                                 " transfer!\n", mmc_hostname(host->mmc));
1951
1952                         host->mrq->cmd->error = -ENOMEDIUM;
1953                         tasklet_schedule(&host->finish_tasklet);
1954                 }
1955
1956                 spin_unlock_irqrestore(&host->lock, flags);
1957         }
1958
1959         sdhci_disable_card_detection(host);
1960
1961         mmc_remove_host(host->mmc);
1962
1963 #ifdef SDHCI_USE_LEDS_CLASS
1964         led_classdev_unregister(&host->led);
1965 #endif
1966
1967         if (!dead)
1968                 sdhci_reset(host, SDHCI_RESET_ALL);
1969
1970         free_irq(host->irq, host);
1971
1972         del_timer_sync(&host->timer);
1973
1974         tasklet_kill(&host->card_tasklet);
1975         tasklet_kill(&host->finish_tasklet);
1976
1977         kfree(host->adma_desc);
1978         kfree(host->align_buffer);
1979
1980         host->adma_desc = NULL;
1981         host->align_buffer = NULL;
1982 }
1983
1984 EXPORT_SYMBOL_GPL(sdhci_remove_host);
1985
1986 void sdhci_free_host(struct sdhci_host *host)
1987 {
1988         mmc_free_host(host->mmc);
1989 }
1990
1991 EXPORT_SYMBOL_GPL(sdhci_free_host);
1992
1993 /*****************************************************************************\
1994  *                                                                           *
1995  * Driver init/exit                                                          *
1996  *                                                                           *
1997 \*****************************************************************************/
1998
1999 static int __init sdhci_drv_init(void)
2000 {
2001         printk(KERN_INFO DRIVER_NAME
2002                 ": Secure Digital Host Controller Interface driver\n");
2003         printk(KERN_INFO DRIVER_NAME ": Copyright(c) Pierre Ossman\n");
2004
2005         return 0;
2006 }
2007
2008 static void __exit sdhci_drv_exit(void)
2009 {
2010 }
2011
2012 module_init(sdhci_drv_init);
2013 module_exit(sdhci_drv_exit);
2014
2015 module_param(debug_quirks, uint, 0444);
2016
2017 MODULE_AUTHOR("Pierre Ossman <pierre@ossman.eu>");
2018 MODULE_DESCRIPTION("Secure Digital Host Controller Interface core driver");
2019 MODULE_LICENSE("GPL");
2020
2021 MODULE_PARM_DESC(debug_quirks, "Force certain quirks.");