blob: 228ce42371dcabfaf4e1feb8df1d6f172eb498c0 [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 *
Alex Dubov14d836e2007-04-13 19:04:38 +02004 * Copyright (C) 2005-2007 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 Ossmand129bce2006-03-24 03:18:17 -080010 */
11
Pierre Ossmand129bce2006-03-24 03:18:17 -080012#include <linux/delay.h>
13#include <linux/highmem.h>
14#include <linux/pci.h>
15#include <linux/dma-mapping.h>
16
17#include <linux/mmc/host.h>
Pierre Ossmand129bce2006-03-24 03:18:17 -080018
19#include <asm/scatterlist.h>
20
21#include "sdhci.h"
22
23#define DRIVER_NAME "sdhci"
Pierre Ossmand129bce2006-03-24 03:18:17 -080024
Pierre Ossmand129bce2006-03-24 03:18:17 -080025#define DBG(f, x...) \
Russell Kingc6563172006-03-29 09:30:20 +010026 pr_debug(DRIVER_NAME " [%s()]: " f, __func__,## x)
Pierre Ossmand129bce2006-03-24 03:18:17 -080027
Pierre Ossman67435272006-06-30 02:22:31 -070028static unsigned int debug_nodma = 0;
29static unsigned int debug_forcedma = 0;
Pierre Ossmandf673b22006-06-30 02:22:31 -070030static unsigned int debug_quirks = 0;
Pierre Ossman67435272006-06-30 02:22:31 -070031
Pierre Ossman645289d2006-06-30 02:22:33 -070032#define SDHCI_QUIRK_CLOCK_BEFORE_RESET (1<<0)
Pierre Ossman98608072006-06-30 02:22:34 -070033#define SDHCI_QUIRK_FORCE_DMA (1<<1)
Pierre Ossman8a4da142006-10-04 02:15:40 -070034/* Controller doesn't like some resets when there is no card inserted. */
35#define SDHCI_QUIRK_NO_CARD_NO_RESET (1<<2)
Darren Salt9e9dc5f2007-01-27 15:32:31 +010036#define SDHCI_QUIRK_SINGLE_POWER_WRITE (1<<3)
Leandro Dorileob8352262007-07-25 23:47:04 +020037#define SDHCI_QUIRK_RESET_CMD_DATA_ON_IOS (1<<4)
Pierre Ossman645289d2006-06-30 02:22:33 -070038
Pierre Ossmand129bce2006-03-24 03:18:17 -080039static const struct pci_device_id pci_ids[] __devinitdata = {
Pierre Ossman645289d2006-06-30 02:22:33 -070040 {
41 .vendor = PCI_VENDOR_ID_RICOH,
42 .device = PCI_DEVICE_ID_RICOH_R5C822,
43 .subvendor = PCI_VENDOR_ID_IBM,
44 .subdevice = PCI_ANY_ID,
Pierre Ossman98608072006-06-30 02:22:34 -070045 .driver_data = SDHCI_QUIRK_CLOCK_BEFORE_RESET |
46 SDHCI_QUIRK_FORCE_DMA,
47 },
48
49 {
50 .vendor = PCI_VENDOR_ID_RICOH,
51 .device = PCI_DEVICE_ID_RICOH_R5C822,
52 .subvendor = PCI_ANY_ID,
53 .subdevice = PCI_ANY_ID,
Pierre Ossman8a4da142006-10-04 02:15:40 -070054 .driver_data = SDHCI_QUIRK_FORCE_DMA |
55 SDHCI_QUIRK_NO_CARD_NO_RESET,
Pierre Ossman98608072006-06-30 02:22:34 -070056 },
57
58 {
59 .vendor = PCI_VENDOR_ID_TI,
60 .device = PCI_DEVICE_ID_TI_XX21_XX11_SD,
61 .subvendor = PCI_ANY_ID,
62 .subdevice = PCI_ANY_ID,
63 .driver_data = SDHCI_QUIRK_FORCE_DMA,
Pierre Ossman645289d2006-06-30 02:22:33 -070064 },
65
Darren Salt9e9dc5f2007-01-27 15:32:31 +010066 {
67 .vendor = PCI_VENDOR_ID_ENE,
68 .device = PCI_DEVICE_ID_ENE_CB712_SD,
69 .subvendor = PCI_ANY_ID,
70 .subdevice = PCI_ANY_ID,
71 .driver_data = SDHCI_QUIRK_SINGLE_POWER_WRITE,
72 },
73
Milko Krachounov7de064e2007-05-19 01:18:03 +020074 {
75 .vendor = PCI_VENDOR_ID_ENE,
76 .device = PCI_DEVICE_ID_ENE_CB712_SD_2,
77 .subvendor = PCI_ANY_ID,
78 .subdevice = PCI_ANY_ID,
79 .driver_data = SDHCI_QUIRK_SINGLE_POWER_WRITE,
80 },
81
Leandro Dorileob8352262007-07-25 23:47:04 +020082 {
83 .vendor = PCI_VENDOR_ID_ENE,
84 .device = PCI_DEVICE_ID_ENE_CB714_SD,
85 .subvendor = PCI_ANY_ID,
86 .subdevice = PCI_ANY_ID,
87 .driver_data = SDHCI_QUIRK_SINGLE_POWER_WRITE |
88 SDHCI_QUIRK_RESET_CMD_DATA_ON_IOS,
89 },
90
91 {
92 .vendor = PCI_VENDOR_ID_ENE,
93 .device = PCI_DEVICE_ID_ENE_CB714_SD_2,
94 .subvendor = PCI_ANY_ID,
95 .subdevice = PCI_ANY_ID,
96 .driver_data = SDHCI_QUIRK_SINGLE_POWER_WRITE |
97 SDHCI_QUIRK_RESET_CMD_DATA_ON_IOS,
98 },
99
Pierre Ossman645289d2006-06-30 02:22:33 -0700100 { /* Generic SD host controller */
101 PCI_DEVICE_CLASS((PCI_CLASS_SYSTEM_SDHCI << 8), 0xFFFF00)
102 },
103
Pierre Ossmand129bce2006-03-24 03:18:17 -0800104 { /* end: all zeroes */ },
105};
106
107MODULE_DEVICE_TABLE(pci, pci_ids);
108
109static void sdhci_prepare_data(struct sdhci_host *, struct mmc_data *);
110static void sdhci_finish_data(struct sdhci_host *);
111
112static void sdhci_send_command(struct sdhci_host *, struct mmc_command *);
113static void sdhci_finish_command(struct sdhci_host *);
114
115static void sdhci_dumpregs(struct sdhci_host *host)
116{
117 printk(KERN_DEBUG DRIVER_NAME ": ============== REGISTER DUMP ==============\n");
118
119 printk(KERN_DEBUG DRIVER_NAME ": Sys addr: 0x%08x | Version: 0x%08x\n",
120 readl(host->ioaddr + SDHCI_DMA_ADDRESS),
121 readw(host->ioaddr + SDHCI_HOST_VERSION));
122 printk(KERN_DEBUG DRIVER_NAME ": Blk size: 0x%08x | Blk cnt: 0x%08x\n",
123 readw(host->ioaddr + SDHCI_BLOCK_SIZE),
124 readw(host->ioaddr + SDHCI_BLOCK_COUNT));
125 printk(KERN_DEBUG DRIVER_NAME ": Argument: 0x%08x | Trn mode: 0x%08x\n",
126 readl(host->ioaddr + SDHCI_ARGUMENT),
127 readw(host->ioaddr + SDHCI_TRANSFER_MODE));
128 printk(KERN_DEBUG DRIVER_NAME ": Present: 0x%08x | Host ctl: 0x%08x\n",
129 readl(host->ioaddr + SDHCI_PRESENT_STATE),
130 readb(host->ioaddr + SDHCI_HOST_CONTROL));
131 printk(KERN_DEBUG DRIVER_NAME ": Power: 0x%08x | Blk gap: 0x%08x\n",
132 readb(host->ioaddr + SDHCI_POWER_CONTROL),
133 readb(host->ioaddr + SDHCI_BLOCK_GAP_CONTROL));
134 printk(KERN_DEBUG DRIVER_NAME ": Wake-up: 0x%08x | Clock: 0x%08x\n",
135 readb(host->ioaddr + SDHCI_WALK_UP_CONTROL),
136 readw(host->ioaddr + SDHCI_CLOCK_CONTROL));
137 printk(KERN_DEBUG DRIVER_NAME ": Timeout: 0x%08x | Int stat: 0x%08x\n",
138 readb(host->ioaddr + SDHCI_TIMEOUT_CONTROL),
139 readl(host->ioaddr + SDHCI_INT_STATUS));
140 printk(KERN_DEBUG DRIVER_NAME ": Int enab: 0x%08x | Sig enab: 0x%08x\n",
141 readl(host->ioaddr + SDHCI_INT_ENABLE),
142 readl(host->ioaddr + SDHCI_SIGNAL_ENABLE));
143 printk(KERN_DEBUG DRIVER_NAME ": AC12 err: 0x%08x | Slot int: 0x%08x\n",
144 readw(host->ioaddr + SDHCI_ACMD12_ERR),
145 readw(host->ioaddr + SDHCI_SLOT_INT_STATUS));
146 printk(KERN_DEBUG DRIVER_NAME ": Caps: 0x%08x | Max curr: 0x%08x\n",
147 readl(host->ioaddr + SDHCI_CAPABILITIES),
148 readl(host->ioaddr + SDHCI_MAX_CURRENT));
149
150 printk(KERN_DEBUG DRIVER_NAME ": ===========================================\n");
151}
152
153/*****************************************************************************\
154 * *
155 * Low level functions *
156 * *
157\*****************************************************************************/
158
159static void sdhci_reset(struct sdhci_host *host, u8 mask)
160{
Pierre Ossmane16514d82006-06-30 02:22:24 -0700161 unsigned long timeout;
162
Pierre Ossman8a4da142006-10-04 02:15:40 -0700163 if (host->chip->quirks & SDHCI_QUIRK_NO_CARD_NO_RESET) {
164 if (!(readl(host->ioaddr + SDHCI_PRESENT_STATE) &
165 SDHCI_CARD_PRESENT))
166 return;
167 }
168
Pierre Ossmand129bce2006-03-24 03:18:17 -0800169 writeb(mask, host->ioaddr + SDHCI_SOFTWARE_RESET);
170
Pierre Ossmane16514d82006-06-30 02:22:24 -0700171 if (mask & SDHCI_RESET_ALL)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800172 host->clock = 0;
173
Pierre Ossmane16514d82006-06-30 02:22:24 -0700174 /* Wait max 100 ms */
175 timeout = 100;
176
177 /* hw clears the bit when it's done */
178 while (readb(host->ioaddr + SDHCI_SOFTWARE_RESET) & mask) {
179 if (timeout == 0) {
Pierre Ossmanacf1da42007-02-09 08:29:19 +0100180 printk(KERN_ERR "%s: Reset 0x%x never completed.\n",
Pierre Ossmane16514d82006-06-30 02:22:24 -0700181 mmc_hostname(host->mmc), (int)mask);
182 sdhci_dumpregs(host);
183 return;
184 }
185 timeout--;
186 mdelay(1);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800187 }
188}
189
190static void sdhci_init(struct sdhci_host *host)
191{
192 u32 intmask;
193
194 sdhci_reset(host, SDHCI_RESET_ALL);
195
Pierre Ossman3192a282006-06-30 02:22:26 -0700196 intmask = SDHCI_INT_BUS_POWER | SDHCI_INT_DATA_END_BIT |
197 SDHCI_INT_DATA_CRC | SDHCI_INT_DATA_TIMEOUT | SDHCI_INT_INDEX |
198 SDHCI_INT_END_BIT | SDHCI_INT_CRC | SDHCI_INT_TIMEOUT |
199 SDHCI_INT_CARD_REMOVE | SDHCI_INT_CARD_INSERT |
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100200 SDHCI_INT_DATA_AVAIL | SDHCI_INT_SPACE_AVAIL |
Pierre Ossman3192a282006-06-30 02:22:26 -0700201 SDHCI_INT_DMA_END | SDHCI_INT_DATA_END | SDHCI_INT_RESPONSE;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800202
203 writel(intmask, host->ioaddr + SDHCI_INT_ENABLE);
204 writel(intmask, host->ioaddr + SDHCI_SIGNAL_ENABLE);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800205}
206
207static void sdhci_activate_led(struct sdhci_host *host)
208{
209 u8 ctrl;
210
211 ctrl = readb(host->ioaddr + SDHCI_HOST_CONTROL);
212 ctrl |= SDHCI_CTRL_LED;
213 writeb(ctrl, host->ioaddr + SDHCI_HOST_CONTROL);
214}
215
216static void sdhci_deactivate_led(struct sdhci_host *host)
217{
218 u8 ctrl;
219
220 ctrl = readb(host->ioaddr + SDHCI_HOST_CONTROL);
221 ctrl &= ~SDHCI_CTRL_LED;
222 writeb(ctrl, host->ioaddr + SDHCI_HOST_CONTROL);
223}
224
225/*****************************************************************************\
226 * *
227 * Core functions *
228 * *
229\*****************************************************************************/
230
Pierre Ossman2a22b142007-02-02 18:27:42 +0100231static inline char* sdhci_sg_to_buffer(struct sdhci_host* host)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800232{
Pierre Ossman2a22b142007-02-02 18:27:42 +0100233 return page_address(host->cur_sg->page) + host->cur_sg->offset;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800234}
235
236static inline int sdhci_next_sg(struct sdhci_host* host)
237{
238 /*
239 * Skip to next SG entry.
240 */
241 host->cur_sg++;
242 host->num_sg--;
243
244 /*
245 * Any entries left?
246 */
247 if (host->num_sg > 0) {
248 host->offset = 0;
249 host->remain = host->cur_sg->length;
250 }
251
252 return host->num_sg;
253}
254
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100255static void sdhci_read_block_pio(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800256{
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100257 int blksize, chunk_remain;
258 u32 data;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800259 char *buffer;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100260 int size;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800261
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100262 DBG("PIO reading\n");
Pierre Ossmand129bce2006-03-24 03:18:17 -0800263
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100264 blksize = host->data->blksz;
265 chunk_remain = 0;
266 data = 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800267
Pierre Ossman2a22b142007-02-02 18:27:42 +0100268 buffer = sdhci_sg_to_buffer(host) + host->offset;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800269
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100270 while (blksize) {
271 if (chunk_remain == 0) {
272 data = readl(host->ioaddr + SDHCI_BUFFER);
273 chunk_remain = min(blksize, 4);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800274 }
275
Alex Dubov14d836e2007-04-13 19:04:38 +0200276 size = min(host->remain, chunk_remain);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800277
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100278 chunk_remain -= size;
279 blksize -= size;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800280 host->offset += size;
281 host->remain -= size;
Alex Dubov14d836e2007-04-13 19:04:38 +0200282
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100283 while (size) {
284 *buffer = data & 0xFF;
285 buffer++;
286 data >>= 8;
287 size--;
288 }
Pierre Ossmand129bce2006-03-24 03:18:17 -0800289
290 if (host->remain == 0) {
Pierre Ossmand129bce2006-03-24 03:18:17 -0800291 if (sdhci_next_sg(host) == 0) {
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100292 BUG_ON(blksize != 0);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800293 return;
294 }
Pierre Ossman2a22b142007-02-02 18:27:42 +0100295 buffer = sdhci_sg_to_buffer(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800296 }
297 }
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100298}
Pierre Ossmand129bce2006-03-24 03:18:17 -0800299
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100300static void sdhci_write_block_pio(struct sdhci_host *host)
301{
302 int blksize, chunk_remain;
303 u32 data;
304 char *buffer;
305 int bytes, size;
306
307 DBG("PIO writing\n");
308
309 blksize = host->data->blksz;
310 chunk_remain = 4;
311 data = 0;
312
313 bytes = 0;
Pierre Ossman2a22b142007-02-02 18:27:42 +0100314 buffer = sdhci_sg_to_buffer(host) + host->offset;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100315
316 while (blksize) {
Alex Dubov14d836e2007-04-13 19:04:38 +0200317 size = min(host->remain, chunk_remain);
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100318
319 chunk_remain -= size;
320 blksize -= size;
321 host->offset += size;
322 host->remain -= size;
Alex Dubov14d836e2007-04-13 19:04:38 +0200323
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100324 while (size) {
325 data >>= 8;
326 data |= (u32)*buffer << 24;
327 buffer++;
328 size--;
329 }
330
331 if (chunk_remain == 0) {
332 writel(data, host->ioaddr + SDHCI_BUFFER);
333 chunk_remain = min(blksize, 4);
334 }
335
336 if (host->remain == 0) {
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100337 if (sdhci_next_sg(host) == 0) {
338 BUG_ON(blksize != 0);
339 return;
340 }
Pierre Ossman2a22b142007-02-02 18:27:42 +0100341 buffer = sdhci_sg_to_buffer(host);
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100342 }
343 }
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100344}
345
346static void sdhci_transfer_pio(struct sdhci_host *host)
347{
348 u32 mask;
349
350 BUG_ON(!host->data);
351
Alex Dubov14d836e2007-04-13 19:04:38 +0200352 if (host->num_sg == 0)
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100353 return;
354
355 if (host->data->flags & MMC_DATA_READ)
356 mask = SDHCI_DATA_AVAILABLE;
357 else
358 mask = SDHCI_SPACE_AVAILABLE;
359
360 while (readl(host->ioaddr + SDHCI_PRESENT_STATE) & mask) {
361 if (host->data->flags & MMC_DATA_READ)
362 sdhci_read_block_pio(host);
363 else
364 sdhci_write_block_pio(host);
365
Alex Dubov14d836e2007-04-13 19:04:38 +0200366 if (host->num_sg == 0)
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100367 break;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100368 }
369
370 DBG("PIO transfer complete.\n");
Pierre Ossmand129bce2006-03-24 03:18:17 -0800371}
372
373static void sdhci_prepare_data(struct sdhci_host *host, struct mmc_data *data)
374{
Pierre Ossman1c8cde92006-06-30 02:22:25 -0700375 u8 count;
376 unsigned target_timeout, current_timeout;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800377
378 WARN_ON(host->data);
379
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700380 if (data == NULL)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800381 return;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800382
Pierre Ossmanbab76962006-07-02 16:51:35 +0100383 /* Sanity checks */
384 BUG_ON(data->blksz * data->blocks > 524288);
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +0100385 BUG_ON(data->blksz > host->mmc->max_blk_size);
Pierre Ossman1d676e02006-07-02 16:52:10 +0100386 BUG_ON(data->blocks > 65535);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800387
Pierre Ossmane538fbe2007-08-12 16:46:32 +0200388 host->data = data;
389 host->data_early = 0;
390
Pierre Ossman1c8cde92006-06-30 02:22:25 -0700391 /* timeout in us */
392 target_timeout = data->timeout_ns / 1000 +
393 data->timeout_clks / host->clock;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800394
Pierre Ossman1c8cde92006-06-30 02:22:25 -0700395 /*
396 * Figure out needed cycles.
397 * We do this in steps in order to fit inside a 32 bit int.
398 * The first step is the minimum timeout, which will have a
399 * minimum resolution of 6 bits:
400 * (1) 2^13*1000 > 2^22,
401 * (2) host->timeout_clk < 2^16
402 * =>
403 * (1) / (2) > 2^6
404 */
405 count = 0;
406 current_timeout = (1 << 13) * 1000 / host->timeout_clk;
407 while (current_timeout < target_timeout) {
408 count++;
409 current_timeout <<= 1;
410 if (count >= 0xF)
411 break;
412 }
413
414 if (count >= 0xF) {
415 printk(KERN_WARNING "%s: Too large timeout requested!\n",
416 mmc_hostname(host->mmc));
417 count = 0xE;
418 }
419
420 writeb(count, host->ioaddr + SDHCI_TIMEOUT_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800421
422 if (host->flags & SDHCI_USE_DMA) {
423 int count;
424
425 count = pci_map_sg(host->chip->pdev, data->sg, data->sg_len,
426 (data->flags & MMC_DATA_READ)?PCI_DMA_FROMDEVICE:PCI_DMA_TODEVICE);
427 BUG_ON(count != 1);
428
429 writel(sg_dma_address(data->sg), host->ioaddr + SDHCI_DMA_ADDRESS);
430 } else {
Pierre Ossmand129bce2006-03-24 03:18:17 -0800431 host->cur_sg = data->sg;
432 host->num_sg = data->sg_len;
433
434 host->offset = 0;
435 host->remain = host->cur_sg->length;
436 }
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700437
Pierre Ossmanbab76962006-07-02 16:51:35 +0100438 /* We do not handle DMA boundaries, so set it to max (512 KiB) */
439 writew(SDHCI_MAKE_BLKSZ(7, data->blksz),
440 host->ioaddr + SDHCI_BLOCK_SIZE);
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700441 writew(data->blocks, host->ioaddr + SDHCI_BLOCK_COUNT);
442}
443
444static void sdhci_set_transfer_mode(struct sdhci_host *host,
445 struct mmc_data *data)
446{
447 u16 mode;
448
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700449 if (data == NULL)
450 return;
451
Pierre Ossmane538fbe2007-08-12 16:46:32 +0200452 WARN_ON(!host->data);
453
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700454 mode = SDHCI_TRNS_BLK_CNT_EN;
455 if (data->blocks > 1)
456 mode |= SDHCI_TRNS_MULTI;
457 if (data->flags & MMC_DATA_READ)
458 mode |= SDHCI_TRNS_READ;
459 if (host->flags & SDHCI_USE_DMA)
460 mode |= SDHCI_TRNS_DMA;
461
462 writew(mode, host->ioaddr + SDHCI_TRANSFER_MODE);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800463}
464
465static void sdhci_finish_data(struct sdhci_host *host)
466{
467 struct mmc_data *data;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800468 u16 blocks;
469
470 BUG_ON(!host->data);
471
472 data = host->data;
473 host->data = NULL;
474
475 if (host->flags & SDHCI_USE_DMA) {
476 pci_unmap_sg(host->chip->pdev, data->sg, data->sg_len,
477 (data->flags & MMC_DATA_READ)?PCI_DMA_FROMDEVICE:PCI_DMA_TODEVICE);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800478 }
479
480 /*
481 * Controller doesn't count down when in single block mode.
482 */
Pierre Ossman2b061972007-08-12 13:13:24 +0200483 if (data->blocks == 1)
Pierre Ossman17b04292007-07-22 22:18:46 +0200484 blocks = (data->error == 0) ? 0 : 1;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800485 else
486 blocks = readw(host->ioaddr + SDHCI_BLOCK_COUNT);
Russell Kinga3fd4a12006-06-04 17:51:15 +0100487 data->bytes_xfered = data->blksz * (data->blocks - blocks);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800488
Pierre Ossman17b04292007-07-22 22:18:46 +0200489 if (!data->error && blocks) {
Pierre Ossmand129bce2006-03-24 03:18:17 -0800490 printk(KERN_ERR "%s: Controller signalled completion even "
Pierre Ossmanacf1da42007-02-09 08:29:19 +0100491 "though there were blocks left.\n",
492 mmc_hostname(host->mmc));
Pierre Ossman17b04292007-07-22 22:18:46 +0200493 data->error = -EIO;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800494 }
495
Pierre Ossmand129bce2006-03-24 03:18:17 -0800496 if (data->stop) {
497 /*
498 * The controller needs a reset of internal state machines
499 * upon error conditions.
500 */
Pierre Ossman17b04292007-07-22 22:18:46 +0200501 if (data->error) {
Pierre Ossmand129bce2006-03-24 03:18:17 -0800502 sdhci_reset(host, SDHCI_RESET_CMD);
503 sdhci_reset(host, SDHCI_RESET_DATA);
504 }
505
506 sdhci_send_command(host, data->stop);
507 } else
508 tasklet_schedule(&host->finish_tasklet);
509}
510
511static void sdhci_send_command(struct sdhci_host *host, struct mmc_command *cmd)
512{
513 int flags;
Pierre Ossmanfd2208d2006-06-30 02:22:28 -0700514 u32 mask;
Pierre Ossman7cb2c762006-06-30 02:22:23 -0700515 unsigned long timeout;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800516
517 WARN_ON(host->cmd);
518
Pierre Ossmand129bce2006-03-24 03:18:17 -0800519 /* Wait max 10 ms */
Pierre Ossman7cb2c762006-06-30 02:22:23 -0700520 timeout = 10;
Pierre Ossmanfd2208d2006-06-30 02:22:28 -0700521
522 mask = SDHCI_CMD_INHIBIT;
523 if ((cmd->data != NULL) || (cmd->flags & MMC_RSP_BUSY))
524 mask |= SDHCI_DATA_INHIBIT;
525
526 /* We shouldn't wait for data inihibit for stop commands, even
527 though they might use busy signaling */
528 if (host->mrq->data && (cmd == host->mrq->data->stop))
529 mask &= ~SDHCI_DATA_INHIBIT;
530
531 while (readl(host->ioaddr + SDHCI_PRESENT_STATE) & mask) {
Pierre Ossman7cb2c762006-06-30 02:22:23 -0700532 if (timeout == 0) {
Pierre Ossmand129bce2006-03-24 03:18:17 -0800533 printk(KERN_ERR "%s: Controller never released "
Pierre Ossmanacf1da42007-02-09 08:29:19 +0100534 "inhibit bit(s).\n", mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -0800535 sdhci_dumpregs(host);
Pierre Ossman17b04292007-07-22 22:18:46 +0200536 cmd->error = -EIO;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800537 tasklet_schedule(&host->finish_tasklet);
538 return;
539 }
Pierre Ossman7cb2c762006-06-30 02:22:23 -0700540 timeout--;
541 mdelay(1);
542 }
Pierre Ossmand129bce2006-03-24 03:18:17 -0800543
544 mod_timer(&host->timer, jiffies + 10 * HZ);
545
546 host->cmd = cmd;
547
548 sdhci_prepare_data(host, cmd->data);
549
550 writel(cmd->arg, host->ioaddr + SDHCI_ARGUMENT);
551
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700552 sdhci_set_transfer_mode(host, cmd->data);
553
Pierre Ossmand129bce2006-03-24 03:18:17 -0800554 if ((cmd->flags & MMC_RSP_136) && (cmd->flags & MMC_RSP_BUSY)) {
Pierre Ossmanacf1da42007-02-09 08:29:19 +0100555 printk(KERN_ERR "%s: Unsupported response type!\n",
Pierre Ossmand129bce2006-03-24 03:18:17 -0800556 mmc_hostname(host->mmc));
Pierre Ossman17b04292007-07-22 22:18:46 +0200557 cmd->error = -EINVAL;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800558 tasklet_schedule(&host->finish_tasklet);
559 return;
560 }
561
562 if (!(cmd->flags & MMC_RSP_PRESENT))
563 flags = SDHCI_CMD_RESP_NONE;
564 else if (cmd->flags & MMC_RSP_136)
565 flags = SDHCI_CMD_RESP_LONG;
566 else if (cmd->flags & MMC_RSP_BUSY)
567 flags = SDHCI_CMD_RESP_SHORT_BUSY;
568 else
569 flags = SDHCI_CMD_RESP_SHORT;
570
571 if (cmd->flags & MMC_RSP_CRC)
572 flags |= SDHCI_CMD_CRC;
573 if (cmd->flags & MMC_RSP_OPCODE)
574 flags |= SDHCI_CMD_INDEX;
575 if (cmd->data)
576 flags |= SDHCI_CMD_DATA;
577
Pierre Ossmanfb61e282006-07-11 21:06:48 +0200578 writew(SDHCI_MAKE_CMD(cmd->opcode, flags),
Pierre Ossmand129bce2006-03-24 03:18:17 -0800579 host->ioaddr + SDHCI_COMMAND);
580}
581
582static void sdhci_finish_command(struct sdhci_host *host)
583{
584 int i;
585
586 BUG_ON(host->cmd == NULL);
587
588 if (host->cmd->flags & MMC_RSP_PRESENT) {
589 if (host->cmd->flags & MMC_RSP_136) {
590 /* CRC is stripped so we need to do some shifting. */
591 for (i = 0;i < 4;i++) {
592 host->cmd->resp[i] = readl(host->ioaddr +
593 SDHCI_RESPONSE + (3-i)*4) << 8;
594 if (i != 3)
595 host->cmd->resp[i] |=
596 readb(host->ioaddr +
597 SDHCI_RESPONSE + (3-i)*4-1);
598 }
599 } else {
600 host->cmd->resp[0] = readl(host->ioaddr + SDHCI_RESPONSE);
601 }
602 }
603
Pierre Ossman17b04292007-07-22 22:18:46 +0200604 host->cmd->error = 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800605
Pierre Ossmane538fbe2007-08-12 16:46:32 +0200606 if (host->data && host->data_early)
607 sdhci_finish_data(host);
608
609 if (!host->cmd->data)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800610 tasklet_schedule(&host->finish_tasklet);
611
612 host->cmd = NULL;
613}
614
615static void sdhci_set_clock(struct sdhci_host *host, unsigned int clock)
616{
617 int div;
618 u16 clk;
Pierre Ossman7cb2c762006-06-30 02:22:23 -0700619 unsigned long timeout;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800620
621 if (clock == host->clock)
622 return;
623
624 writew(0, host->ioaddr + SDHCI_CLOCK_CONTROL);
625
626 if (clock == 0)
627 goto out;
628
629 for (div = 1;div < 256;div *= 2) {
630 if ((host->max_clk / div) <= clock)
631 break;
632 }
633 div >>= 1;
634
635 clk = div << SDHCI_DIVIDER_SHIFT;
636 clk |= SDHCI_CLOCK_INT_EN;
637 writew(clk, host->ioaddr + SDHCI_CLOCK_CONTROL);
638
639 /* Wait max 10 ms */
Pierre Ossman7cb2c762006-06-30 02:22:23 -0700640 timeout = 10;
641 while (!((clk = readw(host->ioaddr + SDHCI_CLOCK_CONTROL))
642 & SDHCI_CLOCK_INT_STABLE)) {
643 if (timeout == 0) {
Pierre Ossmanacf1da42007-02-09 08:29:19 +0100644 printk(KERN_ERR "%s: Internal clock never "
645 "stabilised.\n", mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -0800646 sdhci_dumpregs(host);
647 return;
648 }
Pierre Ossman7cb2c762006-06-30 02:22:23 -0700649 timeout--;
650 mdelay(1);
651 }
Pierre Ossmand129bce2006-03-24 03:18:17 -0800652
653 clk |= SDHCI_CLOCK_CARD_EN;
654 writew(clk, host->ioaddr + SDHCI_CLOCK_CONTROL);
655
656out:
657 host->clock = clock;
658}
659
Pierre Ossman146ad662006-06-30 02:22:23 -0700660static void sdhci_set_power(struct sdhci_host *host, unsigned short power)
661{
662 u8 pwr;
663
664 if (host->power == power)
665 return;
666
Darren Salt9e9dc5f2007-01-27 15:32:31 +0100667 if (power == (unsigned short)-1) {
668 writeb(0, host->ioaddr + SDHCI_POWER_CONTROL);
Pierre Ossman146ad662006-06-30 02:22:23 -0700669 goto out;
Darren Salt9e9dc5f2007-01-27 15:32:31 +0100670 }
671
672 /*
673 * Spec says that we should clear the power reg before setting
674 * a new value. Some controllers don't seem to like this though.
675 */
676 if (!(host->chip->quirks & SDHCI_QUIRK_SINGLE_POWER_WRITE))
677 writeb(0, host->ioaddr + SDHCI_POWER_CONTROL);
Pierre Ossman146ad662006-06-30 02:22:23 -0700678
679 pwr = SDHCI_POWER_ON;
680
Philip Langdale4be34c92007-03-11 17:15:15 -0700681 switch (1 << power) {
Philip Langdale55556da2007-03-16 19:39:00 -0700682 case MMC_VDD_165_195:
Pierre Ossman146ad662006-06-30 02:22:23 -0700683 pwr |= SDHCI_POWER_180;
684 break;
Philip Langdale4be34c92007-03-11 17:15:15 -0700685 case MMC_VDD_29_30:
686 case MMC_VDD_30_31:
Pierre Ossman146ad662006-06-30 02:22:23 -0700687 pwr |= SDHCI_POWER_300;
688 break;
Philip Langdale4be34c92007-03-11 17:15:15 -0700689 case MMC_VDD_32_33:
690 case MMC_VDD_33_34:
Pierre Ossman146ad662006-06-30 02:22:23 -0700691 pwr |= SDHCI_POWER_330;
692 break;
693 default:
694 BUG();
695 }
696
697 writeb(pwr, host->ioaddr + SDHCI_POWER_CONTROL);
698
699out:
700 host->power = power;
701}
702
Pierre Ossmand129bce2006-03-24 03:18:17 -0800703/*****************************************************************************\
704 * *
705 * MMC callbacks *
706 * *
707\*****************************************************************************/
708
709static void sdhci_request(struct mmc_host *mmc, struct mmc_request *mrq)
710{
711 struct sdhci_host *host;
712 unsigned long flags;
713
714 host = mmc_priv(mmc);
715
716 spin_lock_irqsave(&host->lock, flags);
717
718 WARN_ON(host->mrq != NULL);
719
720 sdhci_activate_led(host);
721
722 host->mrq = mrq;
723
724 if (!(readl(host->ioaddr + SDHCI_PRESENT_STATE) & SDHCI_CARD_PRESENT)) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200725 host->mrq->cmd->error = -ENOMEDIUM;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800726 tasklet_schedule(&host->finish_tasklet);
727 } else
728 sdhci_send_command(host, mrq->cmd);
729
Pierre Ossman5f25a662006-10-04 02:15:39 -0700730 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -0800731 spin_unlock_irqrestore(&host->lock, flags);
732}
733
734static void sdhci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
735{
736 struct sdhci_host *host;
737 unsigned long flags;
738 u8 ctrl;
739
740 host = mmc_priv(mmc);
741
742 spin_lock_irqsave(&host->lock, flags);
743
Pierre Ossmand129bce2006-03-24 03:18:17 -0800744 /*
745 * Reset the chip on each power off.
746 * Should clear out any weird states.
747 */
748 if (ios->power_mode == MMC_POWER_OFF) {
749 writel(0, host->ioaddr + SDHCI_SIGNAL_ENABLE);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800750 sdhci_init(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800751 }
752
753 sdhci_set_clock(host, ios->clock);
754
755 if (ios->power_mode == MMC_POWER_OFF)
Pierre Ossman146ad662006-06-30 02:22:23 -0700756 sdhci_set_power(host, -1);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800757 else
Pierre Ossman146ad662006-06-30 02:22:23 -0700758 sdhci_set_power(host, ios->vdd);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800759
760 ctrl = readb(host->ioaddr + SDHCI_HOST_CONTROL);
Pierre Ossmancd9277c2007-02-18 12:07:47 +0100761
Pierre Ossmand129bce2006-03-24 03:18:17 -0800762 if (ios->bus_width == MMC_BUS_WIDTH_4)
763 ctrl |= SDHCI_CTRL_4BITBUS;
764 else
765 ctrl &= ~SDHCI_CTRL_4BITBUS;
Pierre Ossmancd9277c2007-02-18 12:07:47 +0100766
767 if (ios->timing == MMC_TIMING_SD_HS)
768 ctrl |= SDHCI_CTRL_HISPD;
769 else
770 ctrl &= ~SDHCI_CTRL_HISPD;
771
Pierre Ossmand129bce2006-03-24 03:18:17 -0800772 writeb(ctrl, host->ioaddr + SDHCI_HOST_CONTROL);
773
Leandro Dorileob8352262007-07-25 23:47:04 +0200774 /*
775 * Some (ENE) controllers go apeshit on some ios operation,
776 * signalling timeout and CRC errors even on CMD0. Resetting
777 * it on each ios seems to solve the problem.
778 */
779 if(host->chip->quirks & SDHCI_QUIRK_RESET_CMD_DATA_ON_IOS)
780 sdhci_reset(host, SDHCI_RESET_CMD | SDHCI_RESET_DATA);
781
Pierre Ossman5f25a662006-10-04 02:15:39 -0700782 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -0800783 spin_unlock_irqrestore(&host->lock, flags);
784}
785
786static int sdhci_get_ro(struct mmc_host *mmc)
787{
788 struct sdhci_host *host;
789 unsigned long flags;
790 int present;
791
792 host = mmc_priv(mmc);
793
794 spin_lock_irqsave(&host->lock, flags);
795
796 present = readl(host->ioaddr + SDHCI_PRESENT_STATE);
797
798 spin_unlock_irqrestore(&host->lock, flags);
799
800 return !(present & SDHCI_WRITE_PROTECT);
801}
802
Pierre Ossmanf75979b2007-09-04 07:59:18 +0200803static void sdhci_enable_sdio_irq(struct mmc_host *mmc, int enable)
804{
805 struct sdhci_host *host;
806 unsigned long flags;
807 u32 ier;
808
809 host = mmc_priv(mmc);
810
811 spin_lock_irqsave(&host->lock, flags);
812
813 ier = readl(host->ioaddr + SDHCI_INT_ENABLE);
814
815 ier &= ~SDHCI_INT_CARD_INT;
816 if (enable)
817 ier |= SDHCI_INT_CARD_INT;
818
819 writel(ier, host->ioaddr + SDHCI_INT_ENABLE);
820 writel(ier, host->ioaddr + SDHCI_SIGNAL_ENABLE);
821
822 mmiowb();
823
824 spin_unlock_irqrestore(&host->lock, flags);
825}
826
David Brownellab7aefd2006-11-12 17:55:30 -0800827static const struct mmc_host_ops sdhci_ops = {
Pierre Ossmand129bce2006-03-24 03:18:17 -0800828 .request = sdhci_request,
829 .set_ios = sdhci_set_ios,
830 .get_ro = sdhci_get_ro,
Pierre Ossmanf75979b2007-09-04 07:59:18 +0200831 .enable_sdio_irq = sdhci_enable_sdio_irq,
Pierre Ossmand129bce2006-03-24 03:18:17 -0800832};
833
834/*****************************************************************************\
835 * *
836 * Tasklets *
837 * *
838\*****************************************************************************/
839
840static void sdhci_tasklet_card(unsigned long param)
841{
842 struct sdhci_host *host;
843 unsigned long flags;
844
845 host = (struct sdhci_host*)param;
846
847 spin_lock_irqsave(&host->lock, flags);
848
849 if (!(readl(host->ioaddr + SDHCI_PRESENT_STATE) & SDHCI_CARD_PRESENT)) {
850 if (host->mrq) {
851 printk(KERN_ERR "%s: Card removed during transfer!\n",
852 mmc_hostname(host->mmc));
853 printk(KERN_ERR "%s: Resetting controller.\n",
854 mmc_hostname(host->mmc));
855
856 sdhci_reset(host, SDHCI_RESET_CMD);
857 sdhci_reset(host, SDHCI_RESET_DATA);
858
Pierre Ossman17b04292007-07-22 22:18:46 +0200859 host->mrq->cmd->error = -ENOMEDIUM;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800860 tasklet_schedule(&host->finish_tasklet);
861 }
862 }
863
864 spin_unlock_irqrestore(&host->lock, flags);
865
866 mmc_detect_change(host->mmc, msecs_to_jiffies(500));
867}
868
869static void sdhci_tasklet_finish(unsigned long param)
870{
871 struct sdhci_host *host;
872 unsigned long flags;
873 struct mmc_request *mrq;
874
875 host = (struct sdhci_host*)param;
876
877 spin_lock_irqsave(&host->lock, flags);
878
879 del_timer(&host->timer);
880
881 mrq = host->mrq;
882
Pierre Ossmand129bce2006-03-24 03:18:17 -0800883 /*
884 * The controller needs a reset of internal state machines
885 * upon error conditions.
886 */
Pierre Ossman17b04292007-07-22 22:18:46 +0200887 if (mrq->cmd->error ||
888 (mrq->data && (mrq->data->error ||
889 (mrq->data->stop && mrq->data->stop->error)))) {
Pierre Ossman645289d2006-06-30 02:22:33 -0700890
891 /* Some controllers need this kick or reset won't work here */
892 if (host->chip->quirks & SDHCI_QUIRK_CLOCK_BEFORE_RESET) {
893 unsigned int clock;
894
895 /* This is to force an update */
896 clock = host->clock;
897 host->clock = 0;
898 sdhci_set_clock(host, clock);
899 }
900
901 /* Spec says we should do both at the same time, but Ricoh
902 controllers do not like that. */
Pierre Ossmand129bce2006-03-24 03:18:17 -0800903 sdhci_reset(host, SDHCI_RESET_CMD);
904 sdhci_reset(host, SDHCI_RESET_DATA);
905 }
906
907 host->mrq = NULL;
908 host->cmd = NULL;
909 host->data = NULL;
910
911 sdhci_deactivate_led(host);
912
Pierre Ossman5f25a662006-10-04 02:15:39 -0700913 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -0800914 spin_unlock_irqrestore(&host->lock, flags);
915
916 mmc_request_done(host->mmc, mrq);
917}
918
919static void sdhci_timeout_timer(unsigned long data)
920{
921 struct sdhci_host *host;
922 unsigned long flags;
923
924 host = (struct sdhci_host*)data;
925
926 spin_lock_irqsave(&host->lock, flags);
927
928 if (host->mrq) {
Pierre Ossmanacf1da42007-02-09 08:29:19 +0100929 printk(KERN_ERR "%s: Timeout waiting for hardware "
930 "interrupt.\n", mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -0800931 sdhci_dumpregs(host);
932
933 if (host->data) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200934 host->data->error = -ETIMEDOUT;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800935 sdhci_finish_data(host);
936 } else {
937 if (host->cmd)
Pierre Ossman17b04292007-07-22 22:18:46 +0200938 host->cmd->error = -ETIMEDOUT;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800939 else
Pierre Ossman17b04292007-07-22 22:18:46 +0200940 host->mrq->cmd->error = -ETIMEDOUT;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800941
942 tasklet_schedule(&host->finish_tasklet);
943 }
944 }
945
Pierre Ossman5f25a662006-10-04 02:15:39 -0700946 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -0800947 spin_unlock_irqrestore(&host->lock, flags);
948}
949
950/*****************************************************************************\
951 * *
952 * Interrupt handling *
953 * *
954\*****************************************************************************/
955
956static void sdhci_cmd_irq(struct sdhci_host *host, u32 intmask)
957{
958 BUG_ON(intmask == 0);
959
960 if (!host->cmd) {
Pierre Ossmanb67ac3f2007-08-12 17:29:47 +0200961 printk(KERN_ERR "%s: Got command interrupt 0x%08x even "
962 "though no command operation was in progress.\n",
963 mmc_hostname(host->mmc), (unsigned)intmask);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800964 sdhci_dumpregs(host);
965 return;
966 }
967
Pierre Ossman43b58b32007-07-25 23:15:27 +0200968 if (intmask & SDHCI_INT_TIMEOUT)
Pierre Ossman17b04292007-07-22 22:18:46 +0200969 host->cmd->error = -ETIMEDOUT;
970 else if (intmask & (SDHCI_INT_CRC | SDHCI_INT_END_BIT |
971 SDHCI_INT_INDEX))
972 host->cmd->error = -EILSEQ;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800973
Pierre Ossman17b04292007-07-22 22:18:46 +0200974 if (host->cmd->error)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800975 tasklet_schedule(&host->finish_tasklet);
Pierre Ossman43b58b32007-07-25 23:15:27 +0200976 else if (intmask & SDHCI_INT_RESPONSE)
977 sdhci_finish_command(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800978}
979
980static void sdhci_data_irq(struct sdhci_host *host, u32 intmask)
981{
982 BUG_ON(intmask == 0);
983
984 if (!host->data) {
985 /*
986 * A data end interrupt is sent together with the response
987 * for the stop command.
988 */
989 if (intmask & SDHCI_INT_DATA_END)
990 return;
991
Pierre Ossmanb67ac3f2007-08-12 17:29:47 +0200992 printk(KERN_ERR "%s: Got data interrupt 0x%08x even "
993 "though no data operation was in progress.\n",
994 mmc_hostname(host->mmc), (unsigned)intmask);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800995 sdhci_dumpregs(host);
996
997 return;
998 }
999
1000 if (intmask & SDHCI_INT_DATA_TIMEOUT)
Pierre Ossman17b04292007-07-22 22:18:46 +02001001 host->data->error = -ETIMEDOUT;
1002 else if (intmask & (SDHCI_INT_DATA_CRC | SDHCI_INT_DATA_END_BIT))
1003 host->data->error = -EILSEQ;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001004
Pierre Ossman17b04292007-07-22 22:18:46 +02001005 if (host->data->error)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001006 sdhci_finish_data(host);
1007 else {
Pierre Ossmana406f5a2006-07-02 16:50:59 +01001008 if (intmask & (SDHCI_INT_DATA_AVAIL | SDHCI_INT_SPACE_AVAIL))
Pierre Ossmand129bce2006-03-24 03:18:17 -08001009 sdhci_transfer_pio(host);
1010
Pierre Ossman6ba736a2007-05-13 22:39:23 +02001011 /*
1012 * We currently don't do anything fancy with DMA
1013 * boundaries, but as we can't disable the feature
1014 * we need to at least restart the transfer.
1015 */
1016 if (intmask & SDHCI_INT_DMA_END)
1017 writel(readl(host->ioaddr + SDHCI_DMA_ADDRESS),
1018 host->ioaddr + SDHCI_DMA_ADDRESS);
1019
Pierre Ossmane538fbe2007-08-12 16:46:32 +02001020 if (intmask & SDHCI_INT_DATA_END) {
1021 if (host->cmd) {
1022 /*
1023 * Data managed to finish before the
1024 * command completed. Make sure we do
1025 * things in the proper order.
1026 */
1027 host->data_early = 1;
1028 } else {
1029 sdhci_finish_data(host);
1030 }
1031 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001032 }
1033}
1034
David Howells7d12e782006-10-05 14:55:46 +01001035static irqreturn_t sdhci_irq(int irq, void *dev_id)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001036{
1037 irqreturn_t result;
1038 struct sdhci_host* host = dev_id;
1039 u32 intmask;
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001040 int cardint = 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001041
1042 spin_lock(&host->lock);
1043
1044 intmask = readl(host->ioaddr + SDHCI_INT_STATUS);
1045
Mark Lord62df67a52007-03-06 13:30:13 +01001046 if (!intmask || intmask == 0xffffffff) {
Pierre Ossmand129bce2006-03-24 03:18:17 -08001047 result = IRQ_NONE;
1048 goto out;
1049 }
1050
1051 DBG("*** %s got interrupt: 0x%08x\n", host->slot_descr, intmask);
1052
Pierre Ossman3192a282006-06-30 02:22:26 -07001053 if (intmask & (SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE)) {
1054 writel(intmask & (SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE),
1055 host->ioaddr + SDHCI_INT_STATUS);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001056 tasklet_schedule(&host->card_tasklet);
Pierre Ossman3192a282006-06-30 02:22:26 -07001057 }
1058
1059 intmask &= ~(SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001060
1061 if (intmask & SDHCI_INT_CMD_MASK) {
Pierre Ossmand129bce2006-03-24 03:18:17 -08001062 writel(intmask & SDHCI_INT_CMD_MASK,
1063 host->ioaddr + SDHCI_INT_STATUS);
Pierre Ossman3192a282006-06-30 02:22:26 -07001064 sdhci_cmd_irq(host, intmask & SDHCI_INT_CMD_MASK);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001065 }
1066
1067 if (intmask & SDHCI_INT_DATA_MASK) {
Pierre Ossmand129bce2006-03-24 03:18:17 -08001068 writel(intmask & SDHCI_INT_DATA_MASK,
1069 host->ioaddr + SDHCI_INT_STATUS);
Pierre Ossman3192a282006-06-30 02:22:26 -07001070 sdhci_data_irq(host, intmask & SDHCI_INT_DATA_MASK);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001071 }
1072
1073 intmask &= ~(SDHCI_INT_CMD_MASK | SDHCI_INT_DATA_MASK);
1074
Pierre Ossman964f9ce2007-07-20 18:20:36 +02001075 intmask &= ~SDHCI_INT_ERROR;
1076
Pierre Ossmand129bce2006-03-24 03:18:17 -08001077 if (intmask & SDHCI_INT_BUS_POWER) {
Pierre Ossman3192a282006-06-30 02:22:26 -07001078 printk(KERN_ERR "%s: Card is consuming too much power!\n",
Pierre Ossmand129bce2006-03-24 03:18:17 -08001079 mmc_hostname(host->mmc));
Pierre Ossman3192a282006-06-30 02:22:26 -07001080 writel(SDHCI_INT_BUS_POWER, host->ioaddr + SDHCI_INT_STATUS);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001081 }
1082
Rolf Eike Beer9d26a5d2007-06-26 13:31:16 +02001083 intmask &= ~SDHCI_INT_BUS_POWER;
Pierre Ossman3192a282006-06-30 02:22:26 -07001084
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001085 if (intmask & SDHCI_INT_CARD_INT)
1086 cardint = 1;
1087
1088 intmask &= ~SDHCI_INT_CARD_INT;
1089
Pierre Ossman3192a282006-06-30 02:22:26 -07001090 if (intmask) {
Pierre Ossmanacf1da42007-02-09 08:29:19 +01001091 printk(KERN_ERR "%s: Unexpected interrupt 0x%08x.\n",
Pierre Ossman3192a282006-06-30 02:22:26 -07001092 mmc_hostname(host->mmc), intmask);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001093 sdhci_dumpregs(host);
1094
Pierre Ossmand129bce2006-03-24 03:18:17 -08001095 writel(intmask, host->ioaddr + SDHCI_INT_STATUS);
Pierre Ossman3192a282006-06-30 02:22:26 -07001096 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001097
1098 result = IRQ_HANDLED;
1099
Pierre Ossman5f25a662006-10-04 02:15:39 -07001100 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -08001101out:
1102 spin_unlock(&host->lock);
1103
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001104 /*
1105 * We have to delay this as it calls back into the driver.
1106 */
1107 if (cardint)
1108 mmc_signal_sdio_irq(host->mmc);
1109
Pierre Ossmand129bce2006-03-24 03:18:17 -08001110 return result;
1111}
1112
1113/*****************************************************************************\
1114 * *
1115 * Suspend/resume *
1116 * *
1117\*****************************************************************************/
1118
1119#ifdef CONFIG_PM
1120
1121static int sdhci_suspend (struct pci_dev *pdev, pm_message_t state)
1122{
1123 struct sdhci_chip *chip;
1124 int i, ret;
1125
1126 chip = pci_get_drvdata(pdev);
1127 if (!chip)
1128 return 0;
1129
1130 DBG("Suspending...\n");
1131
1132 for (i = 0;i < chip->num_slots;i++) {
1133 if (!chip->hosts[i])
1134 continue;
1135 ret = mmc_suspend_host(chip->hosts[i]->mmc, state);
1136 if (ret) {
1137 for (i--;i >= 0;i--)
1138 mmc_resume_host(chip->hosts[i]->mmc);
1139 return ret;
1140 }
1141 }
1142
1143 pci_save_state(pdev);
1144 pci_enable_wake(pdev, pci_choose_state(pdev, state), 0);
Pierre Ossmana715dfc2007-03-06 13:38:49 +01001145
1146 for (i = 0;i < chip->num_slots;i++) {
1147 if (!chip->hosts[i])
1148 continue;
1149 free_irq(chip->hosts[i]->irq, chip->hosts[i]);
1150 }
1151
Pierre Ossmand129bce2006-03-24 03:18:17 -08001152 pci_disable_device(pdev);
1153 pci_set_power_state(pdev, pci_choose_state(pdev, state));
1154
1155 return 0;
1156}
1157
1158static int sdhci_resume (struct pci_dev *pdev)
1159{
1160 struct sdhci_chip *chip;
1161 int i, ret;
1162
1163 chip = pci_get_drvdata(pdev);
1164 if (!chip)
1165 return 0;
1166
1167 DBG("Resuming...\n");
1168
1169 pci_set_power_state(pdev, PCI_D0);
1170 pci_restore_state(pdev);
Pierre Ossmandf1c4b72007-01-30 07:55:15 +01001171 ret = pci_enable_device(pdev);
1172 if (ret)
1173 return ret;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001174
1175 for (i = 0;i < chip->num_slots;i++) {
1176 if (!chip->hosts[i])
1177 continue;
1178 if (chip->hosts[i]->flags & SDHCI_USE_DMA)
1179 pci_set_master(pdev);
Pierre Ossmana715dfc2007-03-06 13:38:49 +01001180 ret = request_irq(chip->hosts[i]->irq, sdhci_irq,
1181 IRQF_SHARED, chip->hosts[i]->slot_descr,
1182 chip->hosts[i]);
1183 if (ret)
1184 return ret;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001185 sdhci_init(chip->hosts[i]);
Pierre Ossman5f25a662006-10-04 02:15:39 -07001186 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -08001187 ret = mmc_resume_host(chip->hosts[i]->mmc);
1188 if (ret)
1189 return ret;
1190 }
1191
1192 return 0;
1193}
1194
1195#else /* CONFIG_PM */
1196
1197#define sdhci_suspend NULL
1198#define sdhci_resume NULL
1199
1200#endif /* CONFIG_PM */
1201
1202/*****************************************************************************\
1203 * *
1204 * Device probing/removal *
1205 * *
1206\*****************************************************************************/
1207
1208static int __devinit sdhci_probe_slot(struct pci_dev *pdev, int slot)
1209{
1210 int ret;
Pierre Ossman4a965502006-06-30 02:22:29 -07001211 unsigned int version;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001212 struct sdhci_chip *chip;
1213 struct mmc_host *mmc;
1214 struct sdhci_host *host;
1215
1216 u8 first_bar;
1217 unsigned int caps;
1218
1219 chip = pci_get_drvdata(pdev);
1220 BUG_ON(!chip);
1221
1222 ret = pci_read_config_byte(pdev, PCI_SLOT_INFO, &first_bar);
1223 if (ret)
1224 return ret;
1225
1226 first_bar &= PCI_SLOT_INFO_FIRST_BAR_MASK;
1227
1228 if (first_bar > 5) {
1229 printk(KERN_ERR DRIVER_NAME ": Invalid first BAR. Aborting.\n");
1230 return -ENODEV;
1231 }
1232
1233 if (!(pci_resource_flags(pdev, first_bar + slot) & IORESOURCE_MEM)) {
1234 printk(KERN_ERR DRIVER_NAME ": BAR is not iomem. Aborting.\n");
1235 return -ENODEV;
1236 }
1237
1238 if (pci_resource_len(pdev, first_bar + slot) != 0x100) {
Pierre Ossmana98087c2006-12-07 19:17:20 +01001239 printk(KERN_ERR DRIVER_NAME ": Invalid iomem size. "
1240 "You may experience problems.\n");
Pierre Ossmand129bce2006-03-24 03:18:17 -08001241 }
1242
Pierre Ossman67435272006-06-30 02:22:31 -07001243 if ((pdev->class & 0x0000FF) == PCI_SDHCI_IFVENDOR) {
1244 printk(KERN_ERR DRIVER_NAME ": Vendor specific interface. Aborting.\n");
1245 return -ENODEV;
1246 }
1247
1248 if ((pdev->class & 0x0000FF) > PCI_SDHCI_IFVENDOR) {
1249 printk(KERN_ERR DRIVER_NAME ": Unknown interface. Aborting.\n");
1250 return -ENODEV;
1251 }
1252
Pierre Ossmand129bce2006-03-24 03:18:17 -08001253 mmc = mmc_alloc_host(sizeof(struct sdhci_host), &pdev->dev);
1254 if (!mmc)
1255 return -ENOMEM;
1256
1257 host = mmc_priv(mmc);
1258 host->mmc = mmc;
1259
Pierre Ossman8a4da142006-10-04 02:15:40 -07001260 host->chip = chip;
1261 chip->hosts[slot] = host;
1262
Pierre Ossmand129bce2006-03-24 03:18:17 -08001263 host->bar = first_bar + slot;
1264
1265 host->addr = pci_resource_start(pdev, host->bar);
1266 host->irq = pdev->irq;
1267
1268 DBG("slot %d at 0x%08lx, irq %d\n", slot, host->addr, host->irq);
1269
1270 snprintf(host->slot_descr, 20, "sdhci:slot%d", slot);
1271
1272 ret = pci_request_region(pdev, host->bar, host->slot_descr);
1273 if (ret)
1274 goto free;
1275
1276 host->ioaddr = ioremap_nocache(host->addr,
1277 pci_resource_len(pdev, host->bar));
1278 if (!host->ioaddr) {
1279 ret = -ENOMEM;
1280 goto release;
1281 }
1282
Pierre Ossmand96649e2006-06-30 02:22:30 -07001283 sdhci_reset(host, SDHCI_RESET_ALL);
1284
Pierre Ossman4a965502006-06-30 02:22:29 -07001285 version = readw(host->ioaddr + SDHCI_HOST_VERSION);
1286 version = (version & SDHCI_SPEC_VER_MASK) >> SDHCI_SPEC_VER_SHIFT;
1287 if (version != 0) {
1288 printk(KERN_ERR "%s: Unknown controller version (%d). "
Pierre Ossman8b1b2182006-07-11 21:07:10 +02001289 "You may experience problems.\n", host->slot_descr,
Pierre Ossman4a965502006-06-30 02:22:29 -07001290 version);
Pierre Ossman4a965502006-06-30 02:22:29 -07001291 }
1292
Pierre Ossmand129bce2006-03-24 03:18:17 -08001293 caps = readl(host->ioaddr + SDHCI_CAPABILITIES);
1294
Pierre Ossman67435272006-06-30 02:22:31 -07001295 if (debug_nodma)
1296 DBG("DMA forced off\n");
1297 else if (debug_forcedma) {
1298 DBG("DMA forced on\n");
1299 host->flags |= SDHCI_USE_DMA;
Pierre Ossman98608072006-06-30 02:22:34 -07001300 } else if (chip->quirks & SDHCI_QUIRK_FORCE_DMA)
1301 host->flags |= SDHCI_USE_DMA;
1302 else if ((pdev->class & 0x0000FF) != PCI_SDHCI_IFDMA)
Pierre Ossman67435272006-06-30 02:22:31 -07001303 DBG("Controller doesn't have DMA interface\n");
1304 else if (!(caps & SDHCI_CAN_DO_DMA))
1305 DBG("Controller doesn't have DMA capability\n");
1306 else
Pierre Ossmand129bce2006-03-24 03:18:17 -08001307 host->flags |= SDHCI_USE_DMA;
1308
1309 if (host->flags & SDHCI_USE_DMA) {
1310 if (pci_set_dma_mask(pdev, DMA_32BIT_MASK)) {
1311 printk(KERN_WARNING "%s: No suitable DMA available. "
1312 "Falling back to PIO.\n", host->slot_descr);
1313 host->flags &= ~SDHCI_USE_DMA;
1314 }
1315 }
1316
1317 if (host->flags & SDHCI_USE_DMA)
1318 pci_set_master(pdev);
1319 else /* XXX: Hack to get MMC layer to avoid highmem */
1320 pdev->dma_mask = 0;
1321
Pierre Ossman8ef1a142006-06-30 02:22:21 -07001322 host->max_clk =
1323 (caps & SDHCI_CLOCK_BASE_MASK) >> SDHCI_CLOCK_BASE_SHIFT;
1324 if (host->max_clk == 0) {
1325 printk(KERN_ERR "%s: Hardware doesn't specify base clock "
1326 "frequency.\n", host->slot_descr);
1327 ret = -ENODEV;
1328 goto unmap;
1329 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001330 host->max_clk *= 1000000;
1331
Pierre Ossman1c8cde92006-06-30 02:22:25 -07001332 host->timeout_clk =
1333 (caps & SDHCI_TIMEOUT_CLK_MASK) >> SDHCI_TIMEOUT_CLK_SHIFT;
1334 if (host->timeout_clk == 0) {
1335 printk(KERN_ERR "%s: Hardware doesn't specify timeout clock "
1336 "frequency.\n", host->slot_descr);
1337 ret = -ENODEV;
1338 goto unmap;
1339 }
1340 if (caps & SDHCI_TIMEOUT_CLK_UNIT)
1341 host->timeout_clk *= 1000;
1342
Pierre Ossmand129bce2006-03-24 03:18:17 -08001343 /*
1344 * Set host parameters.
1345 */
1346 mmc->ops = &sdhci_ops;
1347 mmc->f_min = host->max_clk / 256;
1348 mmc->f_max = host->max_clk;
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001349 mmc->caps = MMC_CAP_4_BIT_DATA | MMC_CAP_MULTIWRITE | MMC_CAP_SDIO_IRQ;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001350
Pierre Ossmancd9277c2007-02-18 12:07:47 +01001351 if (caps & SDHCI_CAN_DO_HISPD)
1352 mmc->caps |= MMC_CAP_SD_HIGHSPEED;
1353
Pierre Ossman146ad662006-06-30 02:22:23 -07001354 mmc->ocr_avail = 0;
1355 if (caps & SDHCI_CAN_VDD_330)
1356 mmc->ocr_avail |= MMC_VDD_32_33|MMC_VDD_33_34;
Pierre Ossmanc70840e2007-02-02 22:41:41 +01001357 if (caps & SDHCI_CAN_VDD_300)
Pierre Ossman146ad662006-06-30 02:22:23 -07001358 mmc->ocr_avail |= MMC_VDD_29_30|MMC_VDD_30_31;
Pierre Ossmanc70840e2007-02-02 22:41:41 +01001359 if (caps & SDHCI_CAN_VDD_180)
Philip Langdale55556da2007-03-16 19:39:00 -07001360 mmc->ocr_avail |= MMC_VDD_165_195;
Pierre Ossman146ad662006-06-30 02:22:23 -07001361
1362 if (mmc->ocr_avail == 0) {
1363 printk(KERN_ERR "%s: Hardware doesn't report any "
1364 "support voltages.\n", host->slot_descr);
1365 ret = -ENODEV;
1366 goto unmap;
1367 }
1368
Pierre Ossmand129bce2006-03-24 03:18:17 -08001369 spin_lock_init(&host->lock);
1370
1371 /*
1372 * Maximum number of segments. Hardware cannot do scatter lists.
1373 */
1374 if (host->flags & SDHCI_USE_DMA)
1375 mmc->max_hw_segs = 1;
1376 else
1377 mmc->max_hw_segs = 16;
1378 mmc->max_phys_segs = 16;
1379
1380 /*
Pierre Ossmanbab76962006-07-02 16:51:35 +01001381 * Maximum number of sectors in one transfer. Limited by DMA boundary
Pierre Ossman55db8902006-11-21 17:55:45 +01001382 * size (512KiB).
Pierre Ossmand129bce2006-03-24 03:18:17 -08001383 */
Pierre Ossman55db8902006-11-21 17:55:45 +01001384 mmc->max_req_size = 524288;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001385
1386 /*
1387 * Maximum segment size. Could be one segment with the maximum number
Pierre Ossman55db8902006-11-21 17:55:45 +01001388 * of bytes.
Pierre Ossmand129bce2006-03-24 03:18:17 -08001389 */
Pierre Ossman55db8902006-11-21 17:55:45 +01001390 mmc->max_seg_size = mmc->max_req_size;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001391
1392 /*
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +01001393 * Maximum block size. This varies from controller to controller and
1394 * is specified in the capabilities register.
1395 */
1396 mmc->max_blk_size = (caps & SDHCI_MAX_BLOCK_MASK) >> SDHCI_MAX_BLOCK_SHIFT;
1397 if (mmc->max_blk_size >= 3) {
David Vrabel03f85902007-08-10 13:25:03 +01001398 printk(KERN_WARNING "%s: Invalid maximum block size, assuming 512\n",
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +01001399 host->slot_descr);
David Vrabel03f85902007-08-10 13:25:03 +01001400 mmc->max_blk_size = 512;
1401 } else
1402 mmc->max_blk_size = 512 << mmc->max_blk_size;
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +01001403
1404 /*
Pierre Ossman55db8902006-11-21 17:55:45 +01001405 * Maximum block count.
1406 */
1407 mmc->max_blk_count = 65535;
1408
1409 /*
Pierre Ossmand129bce2006-03-24 03:18:17 -08001410 * Init tasklets.
1411 */
1412 tasklet_init(&host->card_tasklet,
1413 sdhci_tasklet_card, (unsigned long)host);
1414 tasklet_init(&host->finish_tasklet,
1415 sdhci_tasklet_finish, (unsigned long)host);
1416
Al Viroe4cad1b2006-10-10 22:47:07 +01001417 setup_timer(&host->timer, sdhci_timeout_timer, (unsigned long)host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001418
Thomas Gleixnerdace1452006-07-01 19:29:38 -07001419 ret = request_irq(host->irq, sdhci_irq, IRQF_SHARED,
Pierre Ossmand129bce2006-03-24 03:18:17 -08001420 host->slot_descr, host);
1421 if (ret)
Pierre Ossman8ef1a142006-06-30 02:22:21 -07001422 goto untasklet;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001423
1424 sdhci_init(host);
1425
1426#ifdef CONFIG_MMC_DEBUG
1427 sdhci_dumpregs(host);
1428#endif
1429
Pierre Ossman5f25a662006-10-04 02:15:39 -07001430 mmiowb();
1431
Pierre Ossmand129bce2006-03-24 03:18:17 -08001432 mmc_add_host(mmc);
1433
1434 printk(KERN_INFO "%s: SDHCI at 0x%08lx irq %d %s\n", mmc_hostname(mmc),
1435 host->addr, host->irq,
1436 (host->flags & SDHCI_USE_DMA)?"DMA":"PIO");
1437
1438 return 0;
1439
Pierre Ossman8ef1a142006-06-30 02:22:21 -07001440untasklet:
Pierre Ossmand129bce2006-03-24 03:18:17 -08001441 tasklet_kill(&host->card_tasklet);
1442 tasklet_kill(&host->finish_tasklet);
Pierre Ossman8ef1a142006-06-30 02:22:21 -07001443unmap:
Pierre Ossmand129bce2006-03-24 03:18:17 -08001444 iounmap(host->ioaddr);
1445release:
1446 pci_release_region(pdev, host->bar);
1447free:
1448 mmc_free_host(mmc);
1449
1450 return ret;
1451}
1452
1453static void sdhci_remove_slot(struct pci_dev *pdev, int slot)
1454{
1455 struct sdhci_chip *chip;
1456 struct mmc_host *mmc;
1457 struct sdhci_host *host;
1458
1459 chip = pci_get_drvdata(pdev);
1460 host = chip->hosts[slot];
1461 mmc = host->mmc;
1462
1463 chip->hosts[slot] = NULL;
1464
1465 mmc_remove_host(mmc);
1466
1467 sdhci_reset(host, SDHCI_RESET_ALL);
1468
1469 free_irq(host->irq, host);
1470
1471 del_timer_sync(&host->timer);
1472
1473 tasklet_kill(&host->card_tasklet);
1474 tasklet_kill(&host->finish_tasklet);
1475
1476 iounmap(host->ioaddr);
1477
1478 pci_release_region(pdev, host->bar);
1479
1480 mmc_free_host(mmc);
1481}
1482
1483static int __devinit sdhci_probe(struct pci_dev *pdev,
1484 const struct pci_device_id *ent)
1485{
1486 int ret, i;
Pierre Ossman51f82bc2006-06-30 02:22:22 -07001487 u8 slots, rev;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001488 struct sdhci_chip *chip;
1489
1490 BUG_ON(pdev == NULL);
1491 BUG_ON(ent == NULL);
1492
Pierre Ossman51f82bc2006-06-30 02:22:22 -07001493 pci_read_config_byte(pdev, PCI_CLASS_REVISION, &rev);
1494
1495 printk(KERN_INFO DRIVER_NAME
1496 ": SDHCI controller found at %s [%04x:%04x] (rev %x)\n",
1497 pci_name(pdev), (int)pdev->vendor, (int)pdev->device,
1498 (int)rev);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001499
1500 ret = pci_read_config_byte(pdev, PCI_SLOT_INFO, &slots);
1501 if (ret)
1502 return ret;
1503
1504 slots = PCI_SLOT_INFO_SLOTS(slots) + 1;
1505 DBG("found %d slot(s)\n", slots);
1506 if (slots == 0)
1507 return -ENODEV;
1508
1509 ret = pci_enable_device(pdev);
1510 if (ret)
1511 return ret;
1512
1513 chip = kzalloc(sizeof(struct sdhci_chip) +
1514 sizeof(struct sdhci_host*) * slots, GFP_KERNEL);
1515 if (!chip) {
1516 ret = -ENOMEM;
1517 goto err;
1518 }
1519
1520 chip->pdev = pdev;
Pierre Ossmandf673b22006-06-30 02:22:31 -07001521 chip->quirks = ent->driver_data;
1522
1523 if (debug_quirks)
1524 chip->quirks = debug_quirks;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001525
1526 chip->num_slots = slots;
1527 pci_set_drvdata(pdev, chip);
1528
1529 for (i = 0;i < slots;i++) {
1530 ret = sdhci_probe_slot(pdev, i);
1531 if (ret) {
1532 for (i--;i >= 0;i--)
1533 sdhci_remove_slot(pdev, i);
1534 goto free;
1535 }
1536 }
1537
1538 return 0;
1539
1540free:
1541 pci_set_drvdata(pdev, NULL);
1542 kfree(chip);
1543
1544err:
1545 pci_disable_device(pdev);
1546 return ret;
1547}
1548
1549static void __devexit sdhci_remove(struct pci_dev *pdev)
1550{
1551 int i;
1552 struct sdhci_chip *chip;
1553
1554 chip = pci_get_drvdata(pdev);
1555
1556 if (chip) {
1557 for (i = 0;i < chip->num_slots;i++)
1558 sdhci_remove_slot(pdev, i);
1559
1560 pci_set_drvdata(pdev, NULL);
1561
1562 kfree(chip);
1563 }
1564
1565 pci_disable_device(pdev);
1566}
1567
1568static struct pci_driver sdhci_driver = {
1569 .name = DRIVER_NAME,
1570 .id_table = pci_ids,
1571 .probe = sdhci_probe,
1572 .remove = __devexit_p(sdhci_remove),
1573 .suspend = sdhci_suspend,
1574 .resume = sdhci_resume,
1575};
1576
1577/*****************************************************************************\
1578 * *
1579 * Driver init/exit *
1580 * *
1581\*****************************************************************************/
1582
1583static int __init sdhci_drv_init(void)
1584{
1585 printk(KERN_INFO DRIVER_NAME
Pierre Ossman52fbf9c2007-02-09 08:23:41 +01001586 ": Secure Digital Host Controller Interface driver\n");
Pierre Ossmand129bce2006-03-24 03:18:17 -08001587 printk(KERN_INFO DRIVER_NAME ": Copyright(c) Pierre Ossman\n");
1588
1589 return pci_register_driver(&sdhci_driver);
1590}
1591
1592static void __exit sdhci_drv_exit(void)
1593{
1594 DBG("Exiting\n");
1595
1596 pci_unregister_driver(&sdhci_driver);
1597}
1598
1599module_init(sdhci_drv_init);
1600module_exit(sdhci_drv_exit);
1601
Pierre Ossman67435272006-06-30 02:22:31 -07001602module_param(debug_nodma, uint, 0444);
1603module_param(debug_forcedma, uint, 0444);
Pierre Ossmandf673b22006-06-30 02:22:31 -07001604module_param(debug_quirks, uint, 0444);
Pierre Ossman67435272006-06-30 02:22:31 -07001605
Pierre Ossmand129bce2006-03-24 03:18:17 -08001606MODULE_AUTHOR("Pierre Ossman <drzeus@drzeus.cx>");
1607MODULE_DESCRIPTION("Secure Digital Host Controller Interface driver");
Pierre Ossmand129bce2006-03-24 03:18:17 -08001608MODULE_LICENSE("GPL");
Pierre Ossman67435272006-06-30 02:22:31 -07001609
1610MODULE_PARM_DESC(debug_nodma, "Forcefully disable DMA transfers. (default 0)");
1611MODULE_PARM_DESC(debug_forcedma, "Forcefully enable DMA transfers. (default 0)");
Pierre Ossmandf673b22006-06-30 02:22:31 -07001612MODULE_PARM_DESC(debug_quirks, "Force certain quirks.");