blob: 8ce01d434ea8ce2439c57556adf68ab019c8e550 [file] [log] [blame]
Pierre Ossmand129bce2006-03-24 03:18:17 -08001/*
Pierre Ossman70f10482007-07-11 20:04:50 +02002 * linux/drivers/mmc/host/sdhci.c - Secure Digital Host Controller Interface driver
Pierre Ossmand129bce2006-03-24 03:18:17 -08003 *
Pierre Ossmanb69c9052008-03-08 23:44:25 +01004 * Copyright (C) 2005-2008 Pierre Ossman, All Rights Reserved.
Pierre Ossmand129bce2006-03-24 03:18:17 -08005 *
6 * This program is free software; you can redistribute it and/or modify
Pierre Ossman643f7202006-09-30 23:27:52 -07007 * 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.
Pierre Ossman84c46a52007-12-02 19:58:16 +010010 *
11 * Thanks to the following companies for their support:
12 *
13 * - JMicron (hardware and technical support)
Pierre Ossmand129bce2006-03-24 03:18:17 -080014 */
15
Pierre Ossmand129bce2006-03-24 03:18:17 -080016#include <linux/delay.h>
17#include <linux/highmem.h>
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +010018#include <linux/io.h>
Pierre Ossmand129bce2006-03-24 03:18:17 -080019#include <linux/dma-mapping.h>
Ralf Baechle11763602007-10-23 20:42:11 +020020#include <linux/scatterlist.h>
Pierre Ossmand129bce2006-03-24 03:18:17 -080021
Pierre Ossman2f730fe2008-03-17 10:29:38 +010022#include <linux/leds.h>
23
Pierre Ossmand129bce2006-03-24 03:18:17 -080024#include <linux/mmc/host.h>
Pierre Ossmand129bce2006-03-24 03:18:17 -080025
Pierre Ossmand129bce2006-03-24 03:18:17 -080026#include "sdhci.h"
27
28#define DRIVER_NAME "sdhci"
Pierre Ossmand129bce2006-03-24 03:18:17 -080029
Pierre Ossmand129bce2006-03-24 03:18:17 -080030#define DBG(f, x...) \
Russell Kingc6563172006-03-29 09:30:20 +010031 pr_debug(DRIVER_NAME " [%s()]: " f, __func__,## x)
Pierre Ossmand129bce2006-03-24 03:18:17 -080032
Pierre Ossmandf673b22006-06-30 02:22:31 -070033static unsigned int debug_quirks = 0;
Pierre Ossman67435272006-06-30 02:22:31 -070034
Pierre Ossmand129bce2006-03-24 03:18:17 -080035static void sdhci_prepare_data(struct sdhci_host *, struct mmc_data *);
36static void sdhci_finish_data(struct sdhci_host *);
37
38static void sdhci_send_command(struct sdhci_host *, struct mmc_command *);
39static void sdhci_finish_command(struct sdhci_host *);
40
41static void sdhci_dumpregs(struct sdhci_host *host)
42{
43 printk(KERN_DEBUG DRIVER_NAME ": ============== REGISTER DUMP ==============\n");
44
45 printk(KERN_DEBUG DRIVER_NAME ": Sys addr: 0x%08x | Version: 0x%08x\n",
46 readl(host->ioaddr + SDHCI_DMA_ADDRESS),
47 readw(host->ioaddr + SDHCI_HOST_VERSION));
48 printk(KERN_DEBUG DRIVER_NAME ": Blk size: 0x%08x | Blk cnt: 0x%08x\n",
49 readw(host->ioaddr + SDHCI_BLOCK_SIZE),
50 readw(host->ioaddr + SDHCI_BLOCK_COUNT));
51 printk(KERN_DEBUG DRIVER_NAME ": Argument: 0x%08x | Trn mode: 0x%08x\n",
52 readl(host->ioaddr + SDHCI_ARGUMENT),
53 readw(host->ioaddr + SDHCI_TRANSFER_MODE));
54 printk(KERN_DEBUG DRIVER_NAME ": Present: 0x%08x | Host ctl: 0x%08x\n",
55 readl(host->ioaddr + SDHCI_PRESENT_STATE),
56 readb(host->ioaddr + SDHCI_HOST_CONTROL));
57 printk(KERN_DEBUG DRIVER_NAME ": Power: 0x%08x | Blk gap: 0x%08x\n",
58 readb(host->ioaddr + SDHCI_POWER_CONTROL),
59 readb(host->ioaddr + SDHCI_BLOCK_GAP_CONTROL));
60 printk(KERN_DEBUG DRIVER_NAME ": Wake-up: 0x%08x | Clock: 0x%08x\n",
Nicolas Pitre2df3b712007-09-29 10:46:20 -040061 readb(host->ioaddr + SDHCI_WAKE_UP_CONTROL),
Pierre Ossmand129bce2006-03-24 03:18:17 -080062 readw(host->ioaddr + SDHCI_CLOCK_CONTROL));
63 printk(KERN_DEBUG DRIVER_NAME ": Timeout: 0x%08x | Int stat: 0x%08x\n",
64 readb(host->ioaddr + SDHCI_TIMEOUT_CONTROL),
65 readl(host->ioaddr + SDHCI_INT_STATUS));
66 printk(KERN_DEBUG DRIVER_NAME ": Int enab: 0x%08x | Sig enab: 0x%08x\n",
67 readl(host->ioaddr + SDHCI_INT_ENABLE),
68 readl(host->ioaddr + SDHCI_SIGNAL_ENABLE));
69 printk(KERN_DEBUG DRIVER_NAME ": AC12 err: 0x%08x | Slot int: 0x%08x\n",
70 readw(host->ioaddr + SDHCI_ACMD12_ERR),
71 readw(host->ioaddr + SDHCI_SLOT_INT_STATUS));
72 printk(KERN_DEBUG DRIVER_NAME ": Caps: 0x%08x | Max curr: 0x%08x\n",
73 readl(host->ioaddr + SDHCI_CAPABILITIES),
74 readl(host->ioaddr + SDHCI_MAX_CURRENT));
75
76 printk(KERN_DEBUG DRIVER_NAME ": ===========================================\n");
77}
78
79/*****************************************************************************\
80 * *
81 * Low level functions *
82 * *
83\*****************************************************************************/
84
85static void sdhci_reset(struct sdhci_host *host, u8 mask)
86{
Pierre Ossmane16514d82006-06-30 02:22:24 -070087 unsigned long timeout;
88
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +010089 if (host->quirks & SDHCI_QUIRK_NO_CARD_NO_RESET) {
Pierre Ossman8a4da142006-10-04 02:15:40 -070090 if (!(readl(host->ioaddr + SDHCI_PRESENT_STATE) &
91 SDHCI_CARD_PRESENT))
92 return;
93 }
94
Pierre Ossmand129bce2006-03-24 03:18:17 -080095 writeb(mask, host->ioaddr + SDHCI_SOFTWARE_RESET);
96
Pierre Ossmane16514d82006-06-30 02:22:24 -070097 if (mask & SDHCI_RESET_ALL)
Pierre Ossmand129bce2006-03-24 03:18:17 -080098 host->clock = 0;
99
Pierre Ossmane16514d82006-06-30 02:22:24 -0700100 /* Wait max 100 ms */
101 timeout = 100;
102
103 /* hw clears the bit when it's done */
104 while (readb(host->ioaddr + SDHCI_SOFTWARE_RESET) & mask) {
105 if (timeout == 0) {
Pierre Ossmanacf1da42007-02-09 08:29:19 +0100106 printk(KERN_ERR "%s: Reset 0x%x never completed.\n",
Pierre Ossmane16514d82006-06-30 02:22:24 -0700107 mmc_hostname(host->mmc), (int)mask);
108 sdhci_dumpregs(host);
109 return;
110 }
111 timeout--;
112 mdelay(1);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800113 }
114}
115
116static void sdhci_init(struct sdhci_host *host)
117{
118 u32 intmask;
119
120 sdhci_reset(host, SDHCI_RESET_ALL);
121
Pierre Ossman3192a282006-06-30 02:22:26 -0700122 intmask = SDHCI_INT_BUS_POWER | SDHCI_INT_DATA_END_BIT |
123 SDHCI_INT_DATA_CRC | SDHCI_INT_DATA_TIMEOUT | SDHCI_INT_INDEX |
124 SDHCI_INT_END_BIT | SDHCI_INT_CRC | SDHCI_INT_TIMEOUT |
125 SDHCI_INT_CARD_REMOVE | SDHCI_INT_CARD_INSERT |
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100126 SDHCI_INT_DATA_AVAIL | SDHCI_INT_SPACE_AVAIL |
Pierre Ossman3192a282006-06-30 02:22:26 -0700127 SDHCI_INT_DMA_END | SDHCI_INT_DATA_END | SDHCI_INT_RESPONSE;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800128
129 writel(intmask, host->ioaddr + SDHCI_INT_ENABLE);
130 writel(intmask, host->ioaddr + SDHCI_SIGNAL_ENABLE);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800131}
132
133static void sdhci_activate_led(struct sdhci_host *host)
134{
135 u8 ctrl;
136
137 ctrl = readb(host->ioaddr + SDHCI_HOST_CONTROL);
138 ctrl |= SDHCI_CTRL_LED;
139 writeb(ctrl, host->ioaddr + SDHCI_HOST_CONTROL);
140}
141
142static void sdhci_deactivate_led(struct sdhci_host *host)
143{
144 u8 ctrl;
145
146 ctrl = readb(host->ioaddr + SDHCI_HOST_CONTROL);
147 ctrl &= ~SDHCI_CTRL_LED;
148 writeb(ctrl, host->ioaddr + SDHCI_HOST_CONTROL);
149}
150
Pierre Ossman2f730fe2008-03-17 10:29:38 +0100151#ifdef CONFIG_LEDS_CLASS
152static void sdhci_led_control(struct led_classdev *led,
153 enum led_brightness brightness)
154{
155 struct sdhci_host *host = container_of(led, struct sdhci_host, led);
156 unsigned long flags;
157
158 spin_lock_irqsave(&host->lock, flags);
159
160 if (brightness == LED_OFF)
161 sdhci_deactivate_led(host);
162 else
163 sdhci_activate_led(host);
164
165 spin_unlock_irqrestore(&host->lock, flags);
166}
167#endif
168
Pierre Ossmand129bce2006-03-24 03:18:17 -0800169/*****************************************************************************\
170 * *
171 * Core functions *
172 * *
173\*****************************************************************************/
174
Pierre Ossman2a22b142007-02-02 18:27:42 +0100175static inline char* sdhci_sg_to_buffer(struct sdhci_host* host)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800176{
Jens Axboe45711f12007-10-22 21:19:53 +0200177 return sg_virt(host->cur_sg);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800178}
179
180static inline int sdhci_next_sg(struct sdhci_host* host)
181{
182 /*
183 * Skip to next SG entry.
184 */
185 host->cur_sg++;
186 host->num_sg--;
187
188 /*
189 * Any entries left?
190 */
191 if (host->num_sg > 0) {
192 host->offset = 0;
193 host->remain = host->cur_sg->length;
194 }
195
196 return host->num_sg;
197}
198
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100199static void sdhci_read_block_pio(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800200{
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100201 int blksize, chunk_remain;
202 u32 data;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800203 char *buffer;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100204 int size;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800205
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100206 DBG("PIO reading\n");
Pierre Ossmand129bce2006-03-24 03:18:17 -0800207
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100208 blksize = host->data->blksz;
209 chunk_remain = 0;
210 data = 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800211
Pierre Ossman2a22b142007-02-02 18:27:42 +0100212 buffer = sdhci_sg_to_buffer(host) + host->offset;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800213
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100214 while (blksize) {
215 if (chunk_remain == 0) {
216 data = readl(host->ioaddr + SDHCI_BUFFER);
217 chunk_remain = min(blksize, 4);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800218 }
219
Alex Dubov14d836e2007-04-13 19:04:38 +0200220 size = min(host->remain, chunk_remain);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800221
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100222 chunk_remain -= size;
223 blksize -= size;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800224 host->offset += size;
225 host->remain -= size;
Alex Dubov14d836e2007-04-13 19:04:38 +0200226
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100227 while (size) {
228 *buffer = data & 0xFF;
229 buffer++;
230 data >>= 8;
231 size--;
232 }
Pierre Ossmand129bce2006-03-24 03:18:17 -0800233
234 if (host->remain == 0) {
Pierre Ossmand129bce2006-03-24 03:18:17 -0800235 if (sdhci_next_sg(host) == 0) {
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100236 BUG_ON(blksize != 0);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800237 return;
238 }
Pierre Ossman2a22b142007-02-02 18:27:42 +0100239 buffer = sdhci_sg_to_buffer(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800240 }
241 }
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100242}
Pierre Ossmand129bce2006-03-24 03:18:17 -0800243
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100244static void sdhci_write_block_pio(struct sdhci_host *host)
245{
246 int blksize, chunk_remain;
247 u32 data;
248 char *buffer;
249 int bytes, size;
250
251 DBG("PIO writing\n");
252
253 blksize = host->data->blksz;
254 chunk_remain = 4;
255 data = 0;
256
257 bytes = 0;
Pierre Ossman2a22b142007-02-02 18:27:42 +0100258 buffer = sdhci_sg_to_buffer(host) + host->offset;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100259
260 while (blksize) {
Alex Dubov14d836e2007-04-13 19:04:38 +0200261 size = min(host->remain, chunk_remain);
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100262
263 chunk_remain -= size;
264 blksize -= size;
265 host->offset += size;
266 host->remain -= size;
Alex Dubov14d836e2007-04-13 19:04:38 +0200267
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100268 while (size) {
269 data >>= 8;
270 data |= (u32)*buffer << 24;
271 buffer++;
272 size--;
273 }
274
275 if (chunk_remain == 0) {
276 writel(data, host->ioaddr + SDHCI_BUFFER);
277 chunk_remain = min(blksize, 4);
278 }
279
280 if (host->remain == 0) {
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100281 if (sdhci_next_sg(host) == 0) {
282 BUG_ON(blksize != 0);
283 return;
284 }
Pierre Ossman2a22b142007-02-02 18:27:42 +0100285 buffer = sdhci_sg_to_buffer(host);
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100286 }
287 }
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100288}
289
290static void sdhci_transfer_pio(struct sdhci_host *host)
291{
292 u32 mask;
293
294 BUG_ON(!host->data);
295
Alex Dubov14d836e2007-04-13 19:04:38 +0200296 if (host->num_sg == 0)
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100297 return;
298
299 if (host->data->flags & MMC_DATA_READ)
300 mask = SDHCI_DATA_AVAILABLE;
301 else
302 mask = SDHCI_SPACE_AVAILABLE;
303
304 while (readl(host->ioaddr + SDHCI_PRESENT_STATE) & mask) {
305 if (host->data->flags & MMC_DATA_READ)
306 sdhci_read_block_pio(host);
307 else
308 sdhci_write_block_pio(host);
309
Alex Dubov14d836e2007-04-13 19:04:38 +0200310 if (host->num_sg == 0)
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100311 break;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100312 }
313
314 DBG("PIO transfer complete.\n");
Pierre Ossmand129bce2006-03-24 03:18:17 -0800315}
316
317static void sdhci_prepare_data(struct sdhci_host *host, struct mmc_data *data)
318{
Pierre Ossman1c8cde92006-06-30 02:22:25 -0700319 u8 count;
320 unsigned target_timeout, current_timeout;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800321
322 WARN_ON(host->data);
323
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700324 if (data == NULL)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800325 return;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800326
Pierre Ossmanbab76962006-07-02 16:51:35 +0100327 /* Sanity checks */
328 BUG_ON(data->blksz * data->blocks > 524288);
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +0100329 BUG_ON(data->blksz > host->mmc->max_blk_size);
Pierre Ossman1d676e02006-07-02 16:52:10 +0100330 BUG_ON(data->blocks > 65535);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800331
Pierre Ossmane538fbe2007-08-12 16:46:32 +0200332 host->data = data;
333 host->data_early = 0;
334
Pierre Ossman1c8cde92006-06-30 02:22:25 -0700335 /* timeout in us */
336 target_timeout = data->timeout_ns / 1000 +
337 data->timeout_clks / host->clock;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800338
Pierre Ossman1c8cde92006-06-30 02:22:25 -0700339 /*
340 * Figure out needed cycles.
341 * We do this in steps in order to fit inside a 32 bit int.
342 * The first step is the minimum timeout, which will have a
343 * minimum resolution of 6 bits:
344 * (1) 2^13*1000 > 2^22,
345 * (2) host->timeout_clk < 2^16
346 * =>
347 * (1) / (2) > 2^6
348 */
349 count = 0;
350 current_timeout = (1 << 13) * 1000 / host->timeout_clk;
351 while (current_timeout < target_timeout) {
352 count++;
353 current_timeout <<= 1;
354 if (count >= 0xF)
355 break;
356 }
357
Andres Salomon603ded12008-07-04 10:00:04 -0700358 /*
359 * Compensate for an off-by-one error in the CaFe hardware; otherwise,
360 * a too-small count gives us interrupt timeouts.
361 */
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +0100362 if ((host->quirks & SDHCI_QUIRK_INCR_TIMEOUT_CONTROL))
Andres Salomon603ded12008-07-04 10:00:04 -0700363 count++;
364
Pierre Ossman1c8cde92006-06-30 02:22:25 -0700365 if (count >= 0xF) {
366 printk(KERN_WARNING "%s: Too large timeout requested!\n",
367 mmc_hostname(host->mmc));
368 count = 0xE;
369 }
370
371 writeb(count, host->ioaddr + SDHCI_TIMEOUT_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800372
Pierre Ossmanc9fddbc2007-12-02 19:52:11 +0100373 if (host->flags & SDHCI_USE_DMA)
374 host->flags |= SDHCI_REQ_USE_DMA;
375
376 if (unlikely((host->flags & SDHCI_REQ_USE_DMA) &&
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +0100377 (host->quirks & SDHCI_QUIRK_32BIT_DMA_SIZE) &&
Pierre Ossmanc9fddbc2007-12-02 19:52:11 +0100378 ((data->blksz * data->blocks) & 0x3))) {
379 DBG("Reverting to PIO because of transfer size (%d)\n",
380 data->blksz * data->blocks);
381 host->flags &= ~SDHCI_REQ_USE_DMA;
382 }
383
384 /*
385 * The assumption here being that alignment is the same after
386 * translation to device address space.
387 */
388 if (unlikely((host->flags & SDHCI_REQ_USE_DMA) &&
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +0100389 (host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR) &&
Pierre Ossmanc9fddbc2007-12-02 19:52:11 +0100390 (data->sg->offset & 0x3))) {
391 DBG("Reverting to PIO because of bad alignment\n");
392 host->flags &= ~SDHCI_REQ_USE_DMA;
393 }
394
395 if (host->flags & SDHCI_REQ_USE_DMA) {
Pierre Ossmand129bce2006-03-24 03:18:17 -0800396 int count;
397
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +0100398 count = dma_map_sg(mmc_dev(host->mmc), data->sg, data->sg_len,
399 (data->flags & MMC_DATA_READ) ?
400 DMA_FROM_DEVICE : DMA_TO_DEVICE);
401 WARN_ON(count != 1);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800402
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +0100403 writel(sg_dma_address(data->sg),
404 host->ioaddr + SDHCI_DMA_ADDRESS);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800405 } else {
Pierre Ossmand129bce2006-03-24 03:18:17 -0800406 host->cur_sg = data->sg;
407 host->num_sg = data->sg_len;
408
409 host->offset = 0;
410 host->remain = host->cur_sg->length;
411 }
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700412
Pierre Ossmanbab76962006-07-02 16:51:35 +0100413 /* We do not handle DMA boundaries, so set it to max (512 KiB) */
414 writew(SDHCI_MAKE_BLKSZ(7, data->blksz),
415 host->ioaddr + SDHCI_BLOCK_SIZE);
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700416 writew(data->blocks, host->ioaddr + SDHCI_BLOCK_COUNT);
417}
418
419static void sdhci_set_transfer_mode(struct sdhci_host *host,
420 struct mmc_data *data)
421{
422 u16 mode;
423
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700424 if (data == NULL)
425 return;
426
Pierre Ossmane538fbe2007-08-12 16:46:32 +0200427 WARN_ON(!host->data);
428
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700429 mode = SDHCI_TRNS_BLK_CNT_EN;
430 if (data->blocks > 1)
431 mode |= SDHCI_TRNS_MULTI;
432 if (data->flags & MMC_DATA_READ)
433 mode |= SDHCI_TRNS_READ;
Pierre Ossmanc9fddbc2007-12-02 19:52:11 +0100434 if (host->flags & SDHCI_REQ_USE_DMA)
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700435 mode |= SDHCI_TRNS_DMA;
436
437 writew(mode, host->ioaddr + SDHCI_TRANSFER_MODE);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800438}
439
440static void sdhci_finish_data(struct sdhci_host *host)
441{
442 struct mmc_data *data;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800443
444 BUG_ON(!host->data);
445
446 data = host->data;
447 host->data = NULL;
448
Pierre Ossmanc9fddbc2007-12-02 19:52:11 +0100449 if (host->flags & SDHCI_REQ_USE_DMA) {
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +0100450 dma_unmap_sg(mmc_dev(host->mmc), data->sg, data->sg_len,
451 (data->flags & MMC_DATA_READ) ?
452 DMA_FROM_DEVICE : DMA_TO_DEVICE);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800453 }
454
455 /*
Pierre Ossmanc9b74c52008-04-18 20:41:49 +0200456 * The specification states that the block count register must
457 * be updated, but it does not specify at what point in the
458 * data flow. That makes the register entirely useless to read
459 * back so we have to assume that nothing made it to the card
460 * in the event of an error.
Pierre Ossmand129bce2006-03-24 03:18:17 -0800461 */
Pierre Ossmanc9b74c52008-04-18 20:41:49 +0200462 if (data->error)
463 data->bytes_xfered = 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800464 else
Pierre Ossmanc9b74c52008-04-18 20:41:49 +0200465 data->bytes_xfered = data->blksz * data->blocks;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800466
Pierre Ossmand129bce2006-03-24 03:18:17 -0800467 if (data->stop) {
468 /*
469 * The controller needs a reset of internal state machines
470 * upon error conditions.
471 */
Pierre Ossman17b04292007-07-22 22:18:46 +0200472 if (data->error) {
Pierre Ossmand129bce2006-03-24 03:18:17 -0800473 sdhci_reset(host, SDHCI_RESET_CMD);
474 sdhci_reset(host, SDHCI_RESET_DATA);
475 }
476
477 sdhci_send_command(host, data->stop);
478 } else
479 tasklet_schedule(&host->finish_tasklet);
480}
481
482static void sdhci_send_command(struct sdhci_host *host, struct mmc_command *cmd)
483{
484 int flags;
Pierre Ossmanfd2208d2006-06-30 02:22:28 -0700485 u32 mask;
Pierre Ossman7cb2c762006-06-30 02:22:23 -0700486 unsigned long timeout;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800487
488 WARN_ON(host->cmd);
489
Pierre Ossmand129bce2006-03-24 03:18:17 -0800490 /* Wait max 10 ms */
Pierre Ossman7cb2c762006-06-30 02:22:23 -0700491 timeout = 10;
Pierre Ossmanfd2208d2006-06-30 02:22:28 -0700492
493 mask = SDHCI_CMD_INHIBIT;
494 if ((cmd->data != NULL) || (cmd->flags & MMC_RSP_BUSY))
495 mask |= SDHCI_DATA_INHIBIT;
496
497 /* We shouldn't wait for data inihibit for stop commands, even
498 though they might use busy signaling */
499 if (host->mrq->data && (cmd == host->mrq->data->stop))
500 mask &= ~SDHCI_DATA_INHIBIT;
501
502 while (readl(host->ioaddr + SDHCI_PRESENT_STATE) & mask) {
Pierre Ossman7cb2c762006-06-30 02:22:23 -0700503 if (timeout == 0) {
Pierre Ossmand129bce2006-03-24 03:18:17 -0800504 printk(KERN_ERR "%s: Controller never released "
Pierre Ossmanacf1da42007-02-09 08:29:19 +0100505 "inhibit bit(s).\n", mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -0800506 sdhci_dumpregs(host);
Pierre Ossman17b04292007-07-22 22:18:46 +0200507 cmd->error = -EIO;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800508 tasklet_schedule(&host->finish_tasklet);
509 return;
510 }
Pierre Ossman7cb2c762006-06-30 02:22:23 -0700511 timeout--;
512 mdelay(1);
513 }
Pierre Ossmand129bce2006-03-24 03:18:17 -0800514
515 mod_timer(&host->timer, jiffies + 10 * HZ);
516
517 host->cmd = cmd;
518
519 sdhci_prepare_data(host, cmd->data);
520
521 writel(cmd->arg, host->ioaddr + SDHCI_ARGUMENT);
522
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700523 sdhci_set_transfer_mode(host, cmd->data);
524
Pierre Ossmand129bce2006-03-24 03:18:17 -0800525 if ((cmd->flags & MMC_RSP_136) && (cmd->flags & MMC_RSP_BUSY)) {
Pierre Ossmanacf1da42007-02-09 08:29:19 +0100526 printk(KERN_ERR "%s: Unsupported response type!\n",
Pierre Ossmand129bce2006-03-24 03:18:17 -0800527 mmc_hostname(host->mmc));
Pierre Ossman17b04292007-07-22 22:18:46 +0200528 cmd->error = -EINVAL;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800529 tasklet_schedule(&host->finish_tasklet);
530 return;
531 }
532
533 if (!(cmd->flags & MMC_RSP_PRESENT))
534 flags = SDHCI_CMD_RESP_NONE;
535 else if (cmd->flags & MMC_RSP_136)
536 flags = SDHCI_CMD_RESP_LONG;
537 else if (cmd->flags & MMC_RSP_BUSY)
538 flags = SDHCI_CMD_RESP_SHORT_BUSY;
539 else
540 flags = SDHCI_CMD_RESP_SHORT;
541
542 if (cmd->flags & MMC_RSP_CRC)
543 flags |= SDHCI_CMD_CRC;
544 if (cmd->flags & MMC_RSP_OPCODE)
545 flags |= SDHCI_CMD_INDEX;
546 if (cmd->data)
547 flags |= SDHCI_CMD_DATA;
548
Pierre Ossmanfb61e282006-07-11 21:06:48 +0200549 writew(SDHCI_MAKE_CMD(cmd->opcode, flags),
Pierre Ossmand129bce2006-03-24 03:18:17 -0800550 host->ioaddr + SDHCI_COMMAND);
551}
552
553static void sdhci_finish_command(struct sdhci_host *host)
554{
555 int i;
556
557 BUG_ON(host->cmd == NULL);
558
559 if (host->cmd->flags & MMC_RSP_PRESENT) {
560 if (host->cmd->flags & MMC_RSP_136) {
561 /* CRC is stripped so we need to do some shifting. */
562 for (i = 0;i < 4;i++) {
563 host->cmd->resp[i] = readl(host->ioaddr +
564 SDHCI_RESPONSE + (3-i)*4) << 8;
565 if (i != 3)
566 host->cmd->resp[i] |=
567 readb(host->ioaddr +
568 SDHCI_RESPONSE + (3-i)*4-1);
569 }
570 } else {
571 host->cmd->resp[0] = readl(host->ioaddr + SDHCI_RESPONSE);
572 }
573 }
574
Pierre Ossman17b04292007-07-22 22:18:46 +0200575 host->cmd->error = 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800576
Pierre Ossmane538fbe2007-08-12 16:46:32 +0200577 if (host->data && host->data_early)
578 sdhci_finish_data(host);
579
580 if (!host->cmd->data)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800581 tasklet_schedule(&host->finish_tasklet);
582
583 host->cmd = NULL;
584}
585
586static void sdhci_set_clock(struct sdhci_host *host, unsigned int clock)
587{
588 int div;
589 u16 clk;
Pierre Ossman7cb2c762006-06-30 02:22:23 -0700590 unsigned long timeout;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800591
592 if (clock == host->clock)
593 return;
594
595 writew(0, host->ioaddr + SDHCI_CLOCK_CONTROL);
596
597 if (clock == 0)
598 goto out;
599
600 for (div = 1;div < 256;div *= 2) {
601 if ((host->max_clk / div) <= clock)
602 break;
603 }
604 div >>= 1;
605
606 clk = div << SDHCI_DIVIDER_SHIFT;
607 clk |= SDHCI_CLOCK_INT_EN;
608 writew(clk, host->ioaddr + SDHCI_CLOCK_CONTROL);
609
610 /* Wait max 10 ms */
Pierre Ossman7cb2c762006-06-30 02:22:23 -0700611 timeout = 10;
612 while (!((clk = readw(host->ioaddr + SDHCI_CLOCK_CONTROL))
613 & SDHCI_CLOCK_INT_STABLE)) {
614 if (timeout == 0) {
Pierre Ossmanacf1da42007-02-09 08:29:19 +0100615 printk(KERN_ERR "%s: Internal clock never "
616 "stabilised.\n", mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -0800617 sdhci_dumpregs(host);
618 return;
619 }
Pierre Ossman7cb2c762006-06-30 02:22:23 -0700620 timeout--;
621 mdelay(1);
622 }
Pierre Ossmand129bce2006-03-24 03:18:17 -0800623
624 clk |= SDHCI_CLOCK_CARD_EN;
625 writew(clk, host->ioaddr + SDHCI_CLOCK_CONTROL);
626
627out:
628 host->clock = clock;
629}
630
Pierre Ossman146ad662006-06-30 02:22:23 -0700631static void sdhci_set_power(struct sdhci_host *host, unsigned short power)
632{
633 u8 pwr;
634
635 if (host->power == power)
636 return;
637
Darren Salt9e9dc5f2007-01-27 15:32:31 +0100638 if (power == (unsigned short)-1) {
639 writeb(0, host->ioaddr + SDHCI_POWER_CONTROL);
Pierre Ossman146ad662006-06-30 02:22:23 -0700640 goto out;
Darren Salt9e9dc5f2007-01-27 15:32:31 +0100641 }
642
643 /*
644 * Spec says that we should clear the power reg before setting
645 * a new value. Some controllers don't seem to like this though.
646 */
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +0100647 if (!(host->quirks & SDHCI_QUIRK_SINGLE_POWER_WRITE))
Darren Salt9e9dc5f2007-01-27 15:32:31 +0100648 writeb(0, host->ioaddr + SDHCI_POWER_CONTROL);
Pierre Ossman146ad662006-06-30 02:22:23 -0700649
650 pwr = SDHCI_POWER_ON;
651
Philip Langdale4be34c92007-03-11 17:15:15 -0700652 switch (1 << power) {
Philip Langdale55556da2007-03-16 19:39:00 -0700653 case MMC_VDD_165_195:
Pierre Ossman146ad662006-06-30 02:22:23 -0700654 pwr |= SDHCI_POWER_180;
655 break;
Philip Langdale4be34c92007-03-11 17:15:15 -0700656 case MMC_VDD_29_30:
657 case MMC_VDD_30_31:
Pierre Ossman146ad662006-06-30 02:22:23 -0700658 pwr |= SDHCI_POWER_300;
659 break;
Philip Langdale4be34c92007-03-11 17:15:15 -0700660 case MMC_VDD_32_33:
661 case MMC_VDD_33_34:
Pierre Ossman146ad662006-06-30 02:22:23 -0700662 pwr |= SDHCI_POWER_330;
663 break;
664 default:
665 BUG();
666 }
667
Andres Salomone08c1692008-07-04 10:00:03 -0700668 /*
669 * At least the CaFe chip gets confused if we set the voltage
670 * and set turn on power at the same time, so set the voltage first.
671 */
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +0100672 if ((host->quirks & SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER))
Andres Salomone08c1692008-07-04 10:00:03 -0700673 writeb(pwr & ~SDHCI_POWER_ON,
674 host->ioaddr + SDHCI_POWER_CONTROL);
675
Pierre Ossman146ad662006-06-30 02:22:23 -0700676 writeb(pwr, host->ioaddr + SDHCI_POWER_CONTROL);
677
678out:
679 host->power = power;
680}
681
Pierre Ossmand129bce2006-03-24 03:18:17 -0800682/*****************************************************************************\
683 * *
684 * MMC callbacks *
685 * *
686\*****************************************************************************/
687
688static void sdhci_request(struct mmc_host *mmc, struct mmc_request *mrq)
689{
690 struct sdhci_host *host;
691 unsigned long flags;
692
693 host = mmc_priv(mmc);
694
695 spin_lock_irqsave(&host->lock, flags);
696
697 WARN_ON(host->mrq != NULL);
698
Pierre Ossman2f730fe2008-03-17 10:29:38 +0100699#ifndef CONFIG_LEDS_CLASS
Pierre Ossmand129bce2006-03-24 03:18:17 -0800700 sdhci_activate_led(host);
Pierre Ossman2f730fe2008-03-17 10:29:38 +0100701#endif
Pierre Ossmand129bce2006-03-24 03:18:17 -0800702
703 host->mrq = mrq;
704
705 if (!(readl(host->ioaddr + SDHCI_PRESENT_STATE) & SDHCI_CARD_PRESENT)) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200706 host->mrq->cmd->error = -ENOMEDIUM;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800707 tasklet_schedule(&host->finish_tasklet);
708 } else
709 sdhci_send_command(host, mrq->cmd);
710
Pierre Ossman5f25a662006-10-04 02:15:39 -0700711 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -0800712 spin_unlock_irqrestore(&host->lock, flags);
713}
714
715static void sdhci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
716{
717 struct sdhci_host *host;
718 unsigned long flags;
719 u8 ctrl;
720
721 host = mmc_priv(mmc);
722
723 spin_lock_irqsave(&host->lock, flags);
724
Pierre Ossmand129bce2006-03-24 03:18:17 -0800725 /*
726 * Reset the chip on each power off.
727 * Should clear out any weird states.
728 */
729 if (ios->power_mode == MMC_POWER_OFF) {
730 writel(0, host->ioaddr + SDHCI_SIGNAL_ENABLE);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800731 sdhci_init(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800732 }
733
734 sdhci_set_clock(host, ios->clock);
735
736 if (ios->power_mode == MMC_POWER_OFF)
Pierre Ossman146ad662006-06-30 02:22:23 -0700737 sdhci_set_power(host, -1);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800738 else
Pierre Ossman146ad662006-06-30 02:22:23 -0700739 sdhci_set_power(host, ios->vdd);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800740
741 ctrl = readb(host->ioaddr + SDHCI_HOST_CONTROL);
Pierre Ossmancd9277c2007-02-18 12:07:47 +0100742
Pierre Ossmand129bce2006-03-24 03:18:17 -0800743 if (ios->bus_width == MMC_BUS_WIDTH_4)
744 ctrl |= SDHCI_CTRL_4BITBUS;
745 else
746 ctrl &= ~SDHCI_CTRL_4BITBUS;
Pierre Ossmancd9277c2007-02-18 12:07:47 +0100747
748 if (ios->timing == MMC_TIMING_SD_HS)
749 ctrl |= SDHCI_CTRL_HISPD;
750 else
751 ctrl &= ~SDHCI_CTRL_HISPD;
752
Pierre Ossmand129bce2006-03-24 03:18:17 -0800753 writeb(ctrl, host->ioaddr + SDHCI_HOST_CONTROL);
754
Leandro Dorileob8352262007-07-25 23:47:04 +0200755 /*
756 * Some (ENE) controllers go apeshit on some ios operation,
757 * signalling timeout and CRC errors even on CMD0. Resetting
758 * it on each ios seems to solve the problem.
759 */
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +0100760 if(host->quirks & SDHCI_QUIRK_RESET_CMD_DATA_ON_IOS)
Leandro Dorileob8352262007-07-25 23:47:04 +0200761 sdhci_reset(host, SDHCI_RESET_CMD | SDHCI_RESET_DATA);
762
Pierre Ossman5f25a662006-10-04 02:15:39 -0700763 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -0800764 spin_unlock_irqrestore(&host->lock, flags);
765}
766
767static int sdhci_get_ro(struct mmc_host *mmc)
768{
769 struct sdhci_host *host;
770 unsigned long flags;
771 int present;
772
773 host = mmc_priv(mmc);
774
775 spin_lock_irqsave(&host->lock, flags);
776
777 present = readl(host->ioaddr + SDHCI_PRESENT_STATE);
778
779 spin_unlock_irqrestore(&host->lock, flags);
780
781 return !(present & SDHCI_WRITE_PROTECT);
782}
783
Pierre Ossmanf75979b2007-09-04 07:59:18 +0200784static void sdhci_enable_sdio_irq(struct mmc_host *mmc, int enable)
785{
786 struct sdhci_host *host;
787 unsigned long flags;
788 u32 ier;
789
790 host = mmc_priv(mmc);
791
792 spin_lock_irqsave(&host->lock, flags);
793
794 ier = readl(host->ioaddr + SDHCI_INT_ENABLE);
795
796 ier &= ~SDHCI_INT_CARD_INT;
797 if (enable)
798 ier |= SDHCI_INT_CARD_INT;
799
800 writel(ier, host->ioaddr + SDHCI_INT_ENABLE);
801 writel(ier, host->ioaddr + SDHCI_SIGNAL_ENABLE);
802
803 mmiowb();
804
805 spin_unlock_irqrestore(&host->lock, flags);
806}
807
David Brownellab7aefd2006-11-12 17:55:30 -0800808static const struct mmc_host_ops sdhci_ops = {
Pierre Ossmand129bce2006-03-24 03:18:17 -0800809 .request = sdhci_request,
810 .set_ios = sdhci_set_ios,
811 .get_ro = sdhci_get_ro,
Pierre Ossmanf75979b2007-09-04 07:59:18 +0200812 .enable_sdio_irq = sdhci_enable_sdio_irq,
Pierre Ossmand129bce2006-03-24 03:18:17 -0800813};
814
815/*****************************************************************************\
816 * *
817 * Tasklets *
818 * *
819\*****************************************************************************/
820
821static void sdhci_tasklet_card(unsigned long param)
822{
823 struct sdhci_host *host;
824 unsigned long flags;
825
826 host = (struct sdhci_host*)param;
827
828 spin_lock_irqsave(&host->lock, flags);
829
830 if (!(readl(host->ioaddr + SDHCI_PRESENT_STATE) & SDHCI_CARD_PRESENT)) {
831 if (host->mrq) {
832 printk(KERN_ERR "%s: Card removed during transfer!\n",
833 mmc_hostname(host->mmc));
834 printk(KERN_ERR "%s: Resetting controller.\n",
835 mmc_hostname(host->mmc));
836
837 sdhci_reset(host, SDHCI_RESET_CMD);
838 sdhci_reset(host, SDHCI_RESET_DATA);
839
Pierre Ossman17b04292007-07-22 22:18:46 +0200840 host->mrq->cmd->error = -ENOMEDIUM;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800841 tasklet_schedule(&host->finish_tasklet);
842 }
843 }
844
845 spin_unlock_irqrestore(&host->lock, flags);
846
847 mmc_detect_change(host->mmc, msecs_to_jiffies(500));
848}
849
850static void sdhci_tasklet_finish(unsigned long param)
851{
852 struct sdhci_host *host;
853 unsigned long flags;
854 struct mmc_request *mrq;
855
856 host = (struct sdhci_host*)param;
857
858 spin_lock_irqsave(&host->lock, flags);
859
860 del_timer(&host->timer);
861
862 mrq = host->mrq;
863
Pierre Ossmand129bce2006-03-24 03:18:17 -0800864 /*
865 * The controller needs a reset of internal state machines
866 * upon error conditions.
867 */
Pierre Ossman17b04292007-07-22 22:18:46 +0200868 if (mrq->cmd->error ||
869 (mrq->data && (mrq->data->error ||
Pierre Ossman84c46a52007-12-02 19:58:16 +0100870 (mrq->data->stop && mrq->data->stop->error))) ||
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +0100871 (host->quirks & SDHCI_QUIRK_RESET_AFTER_REQUEST)) {
Pierre Ossman645289d2006-06-30 02:22:33 -0700872
873 /* Some controllers need this kick or reset won't work here */
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +0100874 if (host->quirks & SDHCI_QUIRK_CLOCK_BEFORE_RESET) {
Pierre Ossman645289d2006-06-30 02:22:33 -0700875 unsigned int clock;
876
877 /* This is to force an update */
878 clock = host->clock;
879 host->clock = 0;
880 sdhci_set_clock(host, clock);
881 }
882
883 /* Spec says we should do both at the same time, but Ricoh
884 controllers do not like that. */
Pierre Ossmand129bce2006-03-24 03:18:17 -0800885 sdhci_reset(host, SDHCI_RESET_CMD);
886 sdhci_reset(host, SDHCI_RESET_DATA);
887 }
888
889 host->mrq = NULL;
890 host->cmd = NULL;
891 host->data = NULL;
892
Pierre Ossman2f730fe2008-03-17 10:29:38 +0100893#ifndef CONFIG_LEDS_CLASS
Pierre Ossmand129bce2006-03-24 03:18:17 -0800894 sdhci_deactivate_led(host);
Pierre Ossman2f730fe2008-03-17 10:29:38 +0100895#endif
Pierre Ossmand129bce2006-03-24 03:18:17 -0800896
Pierre Ossman5f25a662006-10-04 02:15:39 -0700897 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -0800898 spin_unlock_irqrestore(&host->lock, flags);
899
900 mmc_request_done(host->mmc, mrq);
901}
902
903static void sdhci_timeout_timer(unsigned long data)
904{
905 struct sdhci_host *host;
906 unsigned long flags;
907
908 host = (struct sdhci_host*)data;
909
910 spin_lock_irqsave(&host->lock, flags);
911
912 if (host->mrq) {
Pierre Ossmanacf1da42007-02-09 08:29:19 +0100913 printk(KERN_ERR "%s: Timeout waiting for hardware "
914 "interrupt.\n", mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -0800915 sdhci_dumpregs(host);
916
917 if (host->data) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200918 host->data->error = -ETIMEDOUT;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800919 sdhci_finish_data(host);
920 } else {
921 if (host->cmd)
Pierre Ossman17b04292007-07-22 22:18:46 +0200922 host->cmd->error = -ETIMEDOUT;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800923 else
Pierre Ossman17b04292007-07-22 22:18:46 +0200924 host->mrq->cmd->error = -ETIMEDOUT;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800925
926 tasklet_schedule(&host->finish_tasklet);
927 }
928 }
929
Pierre Ossman5f25a662006-10-04 02:15:39 -0700930 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -0800931 spin_unlock_irqrestore(&host->lock, flags);
932}
933
934/*****************************************************************************\
935 * *
936 * Interrupt handling *
937 * *
938\*****************************************************************************/
939
940static void sdhci_cmd_irq(struct sdhci_host *host, u32 intmask)
941{
942 BUG_ON(intmask == 0);
943
944 if (!host->cmd) {
Pierre Ossmanb67ac3f2007-08-12 17:29:47 +0200945 printk(KERN_ERR "%s: Got command interrupt 0x%08x even "
946 "though no command operation was in progress.\n",
947 mmc_hostname(host->mmc), (unsigned)intmask);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800948 sdhci_dumpregs(host);
949 return;
950 }
951
Pierre Ossman43b58b32007-07-25 23:15:27 +0200952 if (intmask & SDHCI_INT_TIMEOUT)
Pierre Ossman17b04292007-07-22 22:18:46 +0200953 host->cmd->error = -ETIMEDOUT;
954 else if (intmask & (SDHCI_INT_CRC | SDHCI_INT_END_BIT |
955 SDHCI_INT_INDEX))
956 host->cmd->error = -EILSEQ;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800957
Pierre Ossman17b04292007-07-22 22:18:46 +0200958 if (host->cmd->error)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800959 tasklet_schedule(&host->finish_tasklet);
Pierre Ossman43b58b32007-07-25 23:15:27 +0200960 else if (intmask & SDHCI_INT_RESPONSE)
961 sdhci_finish_command(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800962}
963
964static void sdhci_data_irq(struct sdhci_host *host, u32 intmask)
965{
966 BUG_ON(intmask == 0);
967
968 if (!host->data) {
969 /*
970 * A data end interrupt is sent together with the response
971 * for the stop command.
972 */
973 if (intmask & SDHCI_INT_DATA_END)
974 return;
975
Pierre Ossmanb67ac3f2007-08-12 17:29:47 +0200976 printk(KERN_ERR "%s: Got data interrupt 0x%08x even "
977 "though no data operation was in progress.\n",
978 mmc_hostname(host->mmc), (unsigned)intmask);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800979 sdhci_dumpregs(host);
980
981 return;
982 }
983
984 if (intmask & SDHCI_INT_DATA_TIMEOUT)
Pierre Ossman17b04292007-07-22 22:18:46 +0200985 host->data->error = -ETIMEDOUT;
986 else if (intmask & (SDHCI_INT_DATA_CRC | SDHCI_INT_DATA_END_BIT))
987 host->data->error = -EILSEQ;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800988
Pierre Ossman17b04292007-07-22 22:18:46 +0200989 if (host->data->error)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800990 sdhci_finish_data(host);
991 else {
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100992 if (intmask & (SDHCI_INT_DATA_AVAIL | SDHCI_INT_SPACE_AVAIL))
Pierre Ossmand129bce2006-03-24 03:18:17 -0800993 sdhci_transfer_pio(host);
994
Pierre Ossman6ba736a2007-05-13 22:39:23 +0200995 /*
996 * We currently don't do anything fancy with DMA
997 * boundaries, but as we can't disable the feature
998 * we need to at least restart the transfer.
999 */
1000 if (intmask & SDHCI_INT_DMA_END)
1001 writel(readl(host->ioaddr + SDHCI_DMA_ADDRESS),
1002 host->ioaddr + SDHCI_DMA_ADDRESS);
1003
Pierre Ossmane538fbe2007-08-12 16:46:32 +02001004 if (intmask & SDHCI_INT_DATA_END) {
1005 if (host->cmd) {
1006 /*
1007 * Data managed to finish before the
1008 * command completed. Make sure we do
1009 * things in the proper order.
1010 */
1011 host->data_early = 1;
1012 } else {
1013 sdhci_finish_data(host);
1014 }
1015 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001016 }
1017}
1018
David Howells7d12e782006-10-05 14:55:46 +01001019static irqreturn_t sdhci_irq(int irq, void *dev_id)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001020{
1021 irqreturn_t result;
1022 struct sdhci_host* host = dev_id;
1023 u32 intmask;
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001024 int cardint = 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001025
1026 spin_lock(&host->lock);
1027
1028 intmask = readl(host->ioaddr + SDHCI_INT_STATUS);
1029
Mark Lord62df67a52007-03-06 13:30:13 +01001030 if (!intmask || intmask == 0xffffffff) {
Pierre Ossmand129bce2006-03-24 03:18:17 -08001031 result = IRQ_NONE;
1032 goto out;
1033 }
1034
Pierre Ossmanb69c9052008-03-08 23:44:25 +01001035 DBG("*** %s got interrupt: 0x%08x\n",
1036 mmc_hostname(host->mmc), intmask);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001037
Pierre Ossman3192a282006-06-30 02:22:26 -07001038 if (intmask & (SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE)) {
1039 writel(intmask & (SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE),
1040 host->ioaddr + SDHCI_INT_STATUS);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001041 tasklet_schedule(&host->card_tasklet);
Pierre Ossman3192a282006-06-30 02:22:26 -07001042 }
1043
1044 intmask &= ~(SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001045
1046 if (intmask & SDHCI_INT_CMD_MASK) {
Pierre Ossmand129bce2006-03-24 03:18:17 -08001047 writel(intmask & SDHCI_INT_CMD_MASK,
1048 host->ioaddr + SDHCI_INT_STATUS);
Pierre Ossman3192a282006-06-30 02:22:26 -07001049 sdhci_cmd_irq(host, intmask & SDHCI_INT_CMD_MASK);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001050 }
1051
1052 if (intmask & SDHCI_INT_DATA_MASK) {
Pierre Ossmand129bce2006-03-24 03:18:17 -08001053 writel(intmask & SDHCI_INT_DATA_MASK,
1054 host->ioaddr + SDHCI_INT_STATUS);
Pierre Ossman3192a282006-06-30 02:22:26 -07001055 sdhci_data_irq(host, intmask & SDHCI_INT_DATA_MASK);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001056 }
1057
1058 intmask &= ~(SDHCI_INT_CMD_MASK | SDHCI_INT_DATA_MASK);
1059
Pierre Ossman964f9ce2007-07-20 18:20:36 +02001060 intmask &= ~SDHCI_INT_ERROR;
1061
Pierre Ossmand129bce2006-03-24 03:18:17 -08001062 if (intmask & SDHCI_INT_BUS_POWER) {
Pierre Ossman3192a282006-06-30 02:22:26 -07001063 printk(KERN_ERR "%s: Card is consuming too much power!\n",
Pierre Ossmand129bce2006-03-24 03:18:17 -08001064 mmc_hostname(host->mmc));
Pierre Ossman3192a282006-06-30 02:22:26 -07001065 writel(SDHCI_INT_BUS_POWER, host->ioaddr + SDHCI_INT_STATUS);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001066 }
1067
Rolf Eike Beer9d26a5d2007-06-26 13:31:16 +02001068 intmask &= ~SDHCI_INT_BUS_POWER;
Pierre Ossman3192a282006-06-30 02:22:26 -07001069
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001070 if (intmask & SDHCI_INT_CARD_INT)
1071 cardint = 1;
1072
1073 intmask &= ~SDHCI_INT_CARD_INT;
1074
Pierre Ossman3192a282006-06-30 02:22:26 -07001075 if (intmask) {
Pierre Ossmanacf1da42007-02-09 08:29:19 +01001076 printk(KERN_ERR "%s: Unexpected interrupt 0x%08x.\n",
Pierre Ossman3192a282006-06-30 02:22:26 -07001077 mmc_hostname(host->mmc), intmask);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001078 sdhci_dumpregs(host);
1079
Pierre Ossmand129bce2006-03-24 03:18:17 -08001080 writel(intmask, host->ioaddr + SDHCI_INT_STATUS);
Pierre Ossman3192a282006-06-30 02:22:26 -07001081 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001082
1083 result = IRQ_HANDLED;
1084
Pierre Ossman5f25a662006-10-04 02:15:39 -07001085 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -08001086out:
1087 spin_unlock(&host->lock);
1088
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001089 /*
1090 * We have to delay this as it calls back into the driver.
1091 */
1092 if (cardint)
1093 mmc_signal_sdio_irq(host->mmc);
1094
Pierre Ossmand129bce2006-03-24 03:18:17 -08001095 return result;
1096}
1097
1098/*****************************************************************************\
1099 * *
1100 * Suspend/resume *
1101 * *
1102\*****************************************************************************/
1103
1104#ifdef CONFIG_PM
1105
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001106int sdhci_suspend_host(struct sdhci_host *host, pm_message_t state)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001107{
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001108 int ret;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001109
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001110 ret = mmc_suspend_host(host->mmc, state);
Pierre Ossmandf1c4b72007-01-30 07:55:15 +01001111 if (ret)
1112 return ret;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001113
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001114 free_irq(host->irq, host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001115
1116 return 0;
1117}
1118
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001119EXPORT_SYMBOL_GPL(sdhci_suspend_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001120
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001121int sdhci_resume_host(struct sdhci_host *host)
1122{
1123 int ret;
1124
1125 if (host->flags & SDHCI_USE_DMA) {
1126 if (host->ops->enable_dma)
1127 host->ops->enable_dma(host);
1128 }
1129
1130 ret = request_irq(host->irq, sdhci_irq, IRQF_SHARED,
1131 mmc_hostname(host->mmc), host);
1132 if (ret)
1133 return ret;
1134
1135 sdhci_init(host);
1136 mmiowb();
1137
1138 ret = mmc_resume_host(host->mmc);
1139 if (ret)
1140 return ret;
1141
1142 return 0;
1143}
1144
1145EXPORT_SYMBOL_GPL(sdhci_resume_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001146
1147#endif /* CONFIG_PM */
1148
1149/*****************************************************************************\
1150 * *
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001151 * Device allocation/registration *
Pierre Ossmand129bce2006-03-24 03:18:17 -08001152 * *
1153\*****************************************************************************/
1154
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001155struct sdhci_host *sdhci_alloc_host(struct device *dev,
1156 size_t priv_size)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001157{
Pierre Ossmand129bce2006-03-24 03:18:17 -08001158 struct mmc_host *mmc;
1159 struct sdhci_host *host;
1160
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001161 WARN_ON(dev == NULL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001162
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001163 mmc = mmc_alloc_host(sizeof(struct sdhci_host) + priv_size, dev);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001164 if (!mmc)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001165 return ERR_PTR(-ENOMEM);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001166
1167 host = mmc_priv(mmc);
1168 host->mmc = mmc;
1169
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001170 return host;
1171}
Pierre Ossman8a4da142006-10-04 02:15:40 -07001172
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001173EXPORT_SYMBOL_GPL(sdhci_alloc_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001174
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001175int sdhci_add_host(struct sdhci_host *host)
1176{
1177 struct mmc_host *mmc;
1178 unsigned int caps;
1179 unsigned int version;
1180 int ret;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001181
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001182 WARN_ON(host == NULL);
1183 if (host == NULL)
1184 return -EINVAL;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001185
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001186 mmc = host->mmc;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001187
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001188 if (debug_quirks)
1189 host->quirks = debug_quirks;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001190
Pierre Ossmand96649e2006-06-30 02:22:30 -07001191 sdhci_reset(host, SDHCI_RESET_ALL);
1192
Pierre Ossman4a965502006-06-30 02:22:29 -07001193 version = readw(host->ioaddr + SDHCI_HOST_VERSION);
1194 version = (version & SDHCI_SPEC_VER_MASK) >> SDHCI_SPEC_VER_SHIFT;
Pierre Ossmanc6573c92007-12-02 19:46:49 +01001195 if (version > 1) {
Pierre Ossman4a965502006-06-30 02:22:29 -07001196 printk(KERN_ERR "%s: Unknown controller version (%d). "
Pierre Ossmanb69c9052008-03-08 23:44:25 +01001197 "You may experience problems.\n", mmc_hostname(mmc),
Pierre Ossman4a965502006-06-30 02:22:29 -07001198 version);
Pierre Ossman4a965502006-06-30 02:22:29 -07001199 }
1200
Pierre Ossmand129bce2006-03-24 03:18:17 -08001201 caps = readl(host->ioaddr + SDHCI_CAPABILITIES);
1202
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001203 if (host->quirks & SDHCI_QUIRK_FORCE_DMA)
Pierre Ossman98608072006-06-30 02:22:34 -07001204 host->flags |= SDHCI_USE_DMA;
Pierre Ossman67435272006-06-30 02:22:31 -07001205 else if (!(caps & SDHCI_CAN_DO_DMA))
1206 DBG("Controller doesn't have DMA capability\n");
1207 else
Pierre Ossmand129bce2006-03-24 03:18:17 -08001208 host->flags |= SDHCI_USE_DMA;
1209
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001210 if ((host->quirks & SDHCI_QUIRK_BROKEN_DMA) &&
Feng Tang7c168e32007-09-30 12:44:18 +02001211 (host->flags & SDHCI_USE_DMA)) {
Rolf Eike Beercee687c2007-11-02 15:22:30 +01001212 DBG("Disabling DMA as it is marked broken\n");
Feng Tang7c168e32007-09-30 12:44:18 +02001213 host->flags &= ~SDHCI_USE_DMA;
1214 }
1215
Pierre Ossmand129bce2006-03-24 03:18:17 -08001216 if (host->flags & SDHCI_USE_DMA) {
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001217 if (host->ops->enable_dma) {
1218 if (host->ops->enable_dma(host)) {
1219 printk(KERN_WARNING "%s: No suitable DMA "
1220 "available. Falling back to PIO.\n",
1221 mmc_hostname(mmc));
1222 host->flags &= ~SDHCI_USE_DMA;
1223 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001224 }
1225 }
1226
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001227 /* XXX: Hack to get MMC layer to avoid highmem */
1228 if (!(host->flags & SDHCI_USE_DMA))
1229 mmc_dev(host->mmc)->dma_mask = 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001230
Pierre Ossman8ef1a142006-06-30 02:22:21 -07001231 host->max_clk =
1232 (caps & SDHCI_CLOCK_BASE_MASK) >> SDHCI_CLOCK_BASE_SHIFT;
1233 if (host->max_clk == 0) {
1234 printk(KERN_ERR "%s: Hardware doesn't specify base clock "
Pierre Ossmanb69c9052008-03-08 23:44:25 +01001235 "frequency.\n", mmc_hostname(mmc));
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001236 return -ENODEV;
Pierre Ossman8ef1a142006-06-30 02:22:21 -07001237 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001238 host->max_clk *= 1000000;
1239
Pierre Ossman1c8cde92006-06-30 02:22:25 -07001240 host->timeout_clk =
1241 (caps & SDHCI_TIMEOUT_CLK_MASK) >> SDHCI_TIMEOUT_CLK_SHIFT;
1242 if (host->timeout_clk == 0) {
1243 printk(KERN_ERR "%s: Hardware doesn't specify timeout clock "
Pierre Ossmanb69c9052008-03-08 23:44:25 +01001244 "frequency.\n", mmc_hostname(mmc));
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001245 return -ENODEV;
Pierre Ossman1c8cde92006-06-30 02:22:25 -07001246 }
1247 if (caps & SDHCI_TIMEOUT_CLK_UNIT)
1248 host->timeout_clk *= 1000;
1249
Pierre Ossmand129bce2006-03-24 03:18:17 -08001250 /*
1251 * Set host parameters.
1252 */
1253 mmc->ops = &sdhci_ops;
1254 mmc->f_min = host->max_clk / 256;
1255 mmc->f_max = host->max_clk;
Pierre Ossmanc9b74c52008-04-18 20:41:49 +02001256 mmc->caps = MMC_CAP_4_BIT_DATA | MMC_CAP_SDIO_IRQ;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001257
Pierre Ossmancd9277c2007-02-18 12:07:47 +01001258 if (caps & SDHCI_CAN_DO_HISPD)
1259 mmc->caps |= MMC_CAP_SD_HIGHSPEED;
1260
Pierre Ossman146ad662006-06-30 02:22:23 -07001261 mmc->ocr_avail = 0;
1262 if (caps & SDHCI_CAN_VDD_330)
1263 mmc->ocr_avail |= MMC_VDD_32_33|MMC_VDD_33_34;
Pierre Ossmanc70840e2007-02-02 22:41:41 +01001264 if (caps & SDHCI_CAN_VDD_300)
Pierre Ossman146ad662006-06-30 02:22:23 -07001265 mmc->ocr_avail |= MMC_VDD_29_30|MMC_VDD_30_31;
Pierre Ossmanc70840e2007-02-02 22:41:41 +01001266 if (caps & SDHCI_CAN_VDD_180)
Philip Langdale55556da2007-03-16 19:39:00 -07001267 mmc->ocr_avail |= MMC_VDD_165_195;
Pierre Ossman146ad662006-06-30 02:22:23 -07001268
1269 if (mmc->ocr_avail == 0) {
1270 printk(KERN_ERR "%s: Hardware doesn't report any "
Pierre Ossmanb69c9052008-03-08 23:44:25 +01001271 "support voltages.\n", mmc_hostname(mmc));
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001272 return -ENODEV;
Pierre Ossman146ad662006-06-30 02:22:23 -07001273 }
1274
Pierre Ossmand129bce2006-03-24 03:18:17 -08001275 spin_lock_init(&host->lock);
1276
1277 /*
1278 * Maximum number of segments. Hardware cannot do scatter lists.
1279 */
1280 if (host->flags & SDHCI_USE_DMA)
1281 mmc->max_hw_segs = 1;
1282 else
1283 mmc->max_hw_segs = 16;
1284 mmc->max_phys_segs = 16;
1285
1286 /*
Pierre Ossmanbab76962006-07-02 16:51:35 +01001287 * Maximum number of sectors in one transfer. Limited by DMA boundary
Pierre Ossman55db8902006-11-21 17:55:45 +01001288 * size (512KiB).
Pierre Ossmand129bce2006-03-24 03:18:17 -08001289 */
Pierre Ossman55db8902006-11-21 17:55:45 +01001290 mmc->max_req_size = 524288;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001291
1292 /*
1293 * Maximum segment size. Could be one segment with the maximum number
Pierre Ossman55db8902006-11-21 17:55:45 +01001294 * of bytes.
Pierre Ossmand129bce2006-03-24 03:18:17 -08001295 */
Pierre Ossman55db8902006-11-21 17:55:45 +01001296 mmc->max_seg_size = mmc->max_req_size;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001297
1298 /*
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +01001299 * Maximum block size. This varies from controller to controller and
1300 * is specified in the capabilities register.
1301 */
1302 mmc->max_blk_size = (caps & SDHCI_MAX_BLOCK_MASK) >> SDHCI_MAX_BLOCK_SHIFT;
1303 if (mmc->max_blk_size >= 3) {
Pierre Ossmanb69c9052008-03-08 23:44:25 +01001304 printk(KERN_WARNING "%s: Invalid maximum block size, "
1305 "assuming 512 bytes\n", mmc_hostname(mmc));
David Vrabel03f85902007-08-10 13:25:03 +01001306 mmc->max_blk_size = 512;
1307 } else
1308 mmc->max_blk_size = 512 << mmc->max_blk_size;
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +01001309
1310 /*
Pierre Ossman55db8902006-11-21 17:55:45 +01001311 * Maximum block count.
1312 */
1313 mmc->max_blk_count = 65535;
1314
1315 /*
Pierre Ossmand129bce2006-03-24 03:18:17 -08001316 * Init tasklets.
1317 */
1318 tasklet_init(&host->card_tasklet,
1319 sdhci_tasklet_card, (unsigned long)host);
1320 tasklet_init(&host->finish_tasklet,
1321 sdhci_tasklet_finish, (unsigned long)host);
1322
Al Viroe4cad1b2006-10-10 22:47:07 +01001323 setup_timer(&host->timer, sdhci_timeout_timer, (unsigned long)host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001324
Thomas Gleixnerdace1452006-07-01 19:29:38 -07001325 ret = request_irq(host->irq, sdhci_irq, IRQF_SHARED,
Pierre Ossmanb69c9052008-03-08 23:44:25 +01001326 mmc_hostname(mmc), host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001327 if (ret)
Pierre Ossman8ef1a142006-06-30 02:22:21 -07001328 goto untasklet;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001329
1330 sdhci_init(host);
1331
1332#ifdef CONFIG_MMC_DEBUG
1333 sdhci_dumpregs(host);
1334#endif
1335
Pierre Ossman2f730fe2008-03-17 10:29:38 +01001336#ifdef CONFIG_LEDS_CLASS
1337 host->led.name = mmc_hostname(mmc);
1338 host->led.brightness = LED_OFF;
1339 host->led.default_trigger = mmc_hostname(mmc);
1340 host->led.brightness_set = sdhci_led_control;
1341
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001342 ret = led_classdev_register(mmc_dev(mmc), &host->led);
Pierre Ossman2f730fe2008-03-17 10:29:38 +01001343 if (ret)
1344 goto reset;
1345#endif
1346
Pierre Ossman5f25a662006-10-04 02:15:39 -07001347 mmiowb();
1348
Pierre Ossmand129bce2006-03-24 03:18:17 -08001349 mmc_add_host(mmc);
1350
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001351 printk(KERN_INFO "%s: SDHCI controller on %s [%s] using %s\n",
1352 mmc_hostname(mmc), host->hw_name, mmc_dev(mmc)->bus_id,
Pierre Ossmand129bce2006-03-24 03:18:17 -08001353 (host->flags & SDHCI_USE_DMA)?"DMA":"PIO");
1354
1355 return 0;
1356
Pierre Ossman2f730fe2008-03-17 10:29:38 +01001357#ifdef CONFIG_LEDS_CLASS
1358reset:
1359 sdhci_reset(host, SDHCI_RESET_ALL);
1360 free_irq(host->irq, host);
1361#endif
Pierre Ossman8ef1a142006-06-30 02:22:21 -07001362untasklet:
Pierre Ossmand129bce2006-03-24 03:18:17 -08001363 tasklet_kill(&host->card_tasklet);
1364 tasklet_kill(&host->finish_tasklet);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001365
1366 return ret;
1367}
1368
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001369EXPORT_SYMBOL_GPL(sdhci_add_host);
1370
1371void sdhci_remove_host(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001372{
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001373 mmc_remove_host(host->mmc);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001374
Pierre Ossman2f730fe2008-03-17 10:29:38 +01001375#ifdef CONFIG_LEDS_CLASS
1376 led_classdev_unregister(&host->led);
1377#endif
1378
Pierre Ossmand129bce2006-03-24 03:18:17 -08001379 sdhci_reset(host, SDHCI_RESET_ALL);
1380
1381 free_irq(host->irq, host);
1382
1383 del_timer_sync(&host->timer);
1384
1385 tasklet_kill(&host->card_tasklet);
1386 tasklet_kill(&host->finish_tasklet);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001387}
1388
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001389EXPORT_SYMBOL_GPL(sdhci_remove_host);
1390
1391void sdhci_free_host(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001392{
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001393 mmc_free_host(host->mmc);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001394}
1395
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001396EXPORT_SYMBOL_GPL(sdhci_free_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001397
1398/*****************************************************************************\
1399 * *
1400 * Driver init/exit *
1401 * *
1402\*****************************************************************************/
1403
1404static int __init sdhci_drv_init(void)
1405{
1406 printk(KERN_INFO DRIVER_NAME
Pierre Ossman52fbf9c2007-02-09 08:23:41 +01001407 ": Secure Digital Host Controller Interface driver\n");
Pierre Ossmand129bce2006-03-24 03:18:17 -08001408 printk(KERN_INFO DRIVER_NAME ": Copyright(c) Pierre Ossman\n");
1409
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001410 return 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001411}
1412
1413static void __exit sdhci_drv_exit(void)
1414{
Pierre Ossmand129bce2006-03-24 03:18:17 -08001415}
1416
1417module_init(sdhci_drv_init);
1418module_exit(sdhci_drv_exit);
1419
Pierre Ossmandf673b22006-06-30 02:22:31 -07001420module_param(debug_quirks, uint, 0444);
Pierre Ossman67435272006-06-30 02:22:31 -07001421
Pierre Ossmand129bce2006-03-24 03:18:17 -08001422MODULE_AUTHOR("Pierre Ossman <drzeus@drzeus.cx>");
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001423MODULE_DESCRIPTION("Secure Digital Host Controller Interface core driver");
Pierre Ossmand129bce2006-03-24 03:18:17 -08001424MODULE_LICENSE("GPL");
Pierre Ossman67435272006-06-30 02:22:31 -07001425
Pierre Ossmandf673b22006-06-30 02:22:31 -07001426MODULE_PARM_DESC(debug_quirks, "Force certain quirks.");