blob: 459f4b4feded9f9302c493083c116bcaa85cc00c [file] [log] [blame]
Andrew Victor65dbf342006-04-02 19:18:51 +01001/*
Andrew Victor99eeb8df2006-12-11 12:40:23 +01002 * linux/drivers/mmc/at91_mci.c - ATMEL AT91 MCI Driver
Andrew Victor65dbf342006-04-02 19:18:51 +01003 *
4 * Copyright (C) 2005 Cougar Creek Computing Devices Ltd, All Rights Reserved
5 *
6 * Copyright (C) 2006 Malcolm Noyes
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
12
13/*
Andrew Victor99eeb8df2006-12-11 12:40:23 +010014 This is the AT91 MCI driver that has been tested with both MMC cards
Andrew Victor65dbf342006-04-02 19:18:51 +010015 and SD-cards. Boards that support write protect are now supported.
16 The CCAT91SBC001 board does not support SD cards.
17
18 The three entry points are at91_mci_request, at91_mci_set_ios
19 and at91_mci_get_ro.
20
21 SET IOS
22 This configures the device to put it into the correct mode and clock speed
23 required.
24
25 MCI REQUEST
26 MCI request processes the commands sent in the mmc_request structure. This
27 can consist of a processing command and a stop command in the case of
28 multiple block transfers.
29
30 There are three main types of request, commands, reads and writes.
31
32 Commands are straight forward. The command is submitted to the controller and
33 the request function returns. When the controller generates an interrupt to indicate
34 the command is finished, the response to the command are read and the mmc_request_done
35 function called to end the request.
36
37 Reads and writes work in a similar manner to normal commands but involve the PDC (DMA)
38 controller to manage the transfers.
39
40 A read is done from the controller directly to the scatterlist passed in from the request.
Andrew Victor99eeb8df2006-12-11 12:40:23 +010041 Due to a bug in the AT91RM9200 controller, when a read is completed, all the words are byte
42 swapped in the scatterlist buffers. AT91SAM926x are not affected by this bug.
Andrew Victor65dbf342006-04-02 19:18:51 +010043
44 The sequence of read interrupts is: ENDRX, RXBUFF, CMDRDY
45
46 A write is slightly different in that the bytes to write are read from the scatterlist
47 into a dma memory buffer (this is in case the source buffer should be read only). The
48 entire write buffer is then done from this single dma memory buffer.
49
50 The sequence of write interrupts is: ENDTX, TXBUFE, NOTBUSY, CMDRDY
51
52 GET RO
53 Gets the status of the write protect pin, if available.
54*/
55
Andrew Victor65dbf342006-04-02 19:18:51 +010056#include <linux/module.h>
57#include <linux/moduleparam.h>
58#include <linux/init.h>
59#include <linux/ioport.h>
60#include <linux/platform_device.h>
61#include <linux/interrupt.h>
62#include <linux/blkdev.h>
63#include <linux/delay.h>
64#include <linux/err.h>
65#include <linux/dma-mapping.h>
66#include <linux/clk.h>
Andrew Victor93a3ddc2007-02-08 11:31:22 +010067#include <linux/atmel_pdc.h>
Andrew Victor65dbf342006-04-02 19:18:51 +010068
69#include <linux/mmc/host.h>
70#include <linux/mmc/protocol.h>
71
72#include <asm/io.h>
73#include <asm/irq.h>
74#include <asm/mach/mmc.h>
75#include <asm/arch/board.h>
Andrew Victor99eeb8df2006-12-11 12:40:23 +010076#include <asm/arch/cpu.h>
Andrew Victor65dbf342006-04-02 19:18:51 +010077#include <asm/arch/gpio.h>
Andrew Victor55d8bae2006-11-30 17:16:43 +010078#include <asm/arch/at91_mci.h>
Andrew Victor65dbf342006-04-02 19:18:51 +010079
80#define DRIVER_NAME "at91_mci"
81
82#undef SUPPORT_4WIRE
83
Andrew Victordf05a302006-10-23 14:50:09 +020084#define FL_SENT_COMMAND (1 << 0)
85#define FL_SENT_STOP (1 << 1)
Andrew Victor65dbf342006-04-02 19:18:51 +010086
Andrew Victordf05a302006-10-23 14:50:09 +020087#define AT91_MCI_ERRORS (AT91_MCI_RINDE | AT91_MCI_RDIRE | AT91_MCI_RCRCE \
88 | AT91_MCI_RENDE | AT91_MCI_RTOE | AT91_MCI_DCRCE \
89 | AT91_MCI_DTOE | AT91_MCI_OVRE | AT91_MCI_UNRE)
Andrew Victor65dbf342006-04-02 19:18:51 +010090
Andrew Victore0b19b82006-10-25 19:42:38 +020091#define at91_mci_read(host, reg) __raw_readl((host)->baseaddr + (reg))
92#define at91_mci_write(host, reg, val) __raw_writel((val), (host)->baseaddr + (reg))
Andrew Victor65dbf342006-04-02 19:18:51 +010093
Andrew Victor65dbf342006-04-02 19:18:51 +010094
95/*
96 * Low level type for this driver
97 */
98struct at91mci_host
99{
100 struct mmc_host *mmc;
101 struct mmc_command *cmd;
102 struct mmc_request *request;
103
Andrew Victore0b19b82006-10-25 19:42:38 +0200104 void __iomem *baseaddr;
Andrew Victor17ea0592006-10-23 14:44:40 +0200105 int irq;
Andrew Victore0b19b82006-10-25 19:42:38 +0200106
Andrew Victor65dbf342006-04-02 19:18:51 +0100107 struct at91_mmc_data *board;
108 int present;
109
Andrew Victor3dd3b032006-10-23 14:46:54 +0200110 struct clk *mci_clk;
111
Andrew Victor65dbf342006-04-02 19:18:51 +0100112 /*
113 * Flag indicating when the command has been sent. This is used to
114 * work out whether or not to send the stop
115 */
116 unsigned int flags;
117 /* flag for current bus settings */
118 u32 bus_mode;
119
120 /* DMA buffer used for transmitting */
121 unsigned int* buffer;
122 dma_addr_t physical_address;
123 unsigned int total_length;
124
125 /* Latest in the scatterlist that has been enabled for transfer, but not freed */
126 int in_use_index;
127
128 /* Latest in the scatterlist that has been enabled for transfer */
129 int transfer_index;
130};
131
132/*
133 * Copy from sg to a dma block - used for transfers
134 */
135static inline void at91mci_sg_to_dma(struct at91mci_host *host, struct mmc_data *data)
136{
137 unsigned int len, i, size;
138 unsigned *dmabuf = host->buffer;
139
140 size = host->total_length;
141 len = data->sg_len;
142
143 /*
144 * Just loop through all entries. Size might not
145 * be the entire list though so make sure that
146 * we do not transfer too much.
147 */
148 for (i = 0; i < len; i++) {
149 struct scatterlist *sg;
150 int amount;
Andrew Victor65dbf342006-04-02 19:18:51 +0100151 unsigned int *sgbuffer;
152
153 sg = &data->sg[i];
154
155 sgbuffer = kmap_atomic(sg->page, KM_BIO_SRC_IRQ) + sg->offset;
156 amount = min(size, sg->length);
157 size -= amount;
Andrew Victor65dbf342006-04-02 19:18:51 +0100158
Andrew Victor99eeb8df2006-12-11 12:40:23 +0100159 if (cpu_is_at91rm9200()) { /* AT91RM9200 errata */
160 int index;
161
162 for (index = 0; index < (amount / 4); index++)
163 *dmabuf++ = swab32(sgbuffer[index]);
164 }
165 else
166 memcpy(dmabuf, sgbuffer, amount);
Andrew Victor65dbf342006-04-02 19:18:51 +0100167
168 kunmap_atomic(sgbuffer, KM_BIO_SRC_IRQ);
169
170 if (size == 0)
171 break;
172 }
173
174 /*
175 * Check that we didn't get a request to transfer
176 * more data than can fit into the SG list.
177 */
178 BUG_ON(size != 0);
179}
180
181/*
182 * Prepare a dma read
183 */
184static void at91mci_pre_dma_read(struct at91mci_host *host)
185{
186 int i;
187 struct scatterlist *sg;
188 struct mmc_command *cmd;
189 struct mmc_data *data;
190
Andrew Victorb44fb7a2006-06-19 13:06:05 +0100191 pr_debug("pre dma read\n");
Andrew Victor65dbf342006-04-02 19:18:51 +0100192
193 cmd = host->cmd;
194 if (!cmd) {
Andrew Victorb44fb7a2006-06-19 13:06:05 +0100195 pr_debug("no command\n");
Andrew Victor65dbf342006-04-02 19:18:51 +0100196 return;
197 }
198
199 data = cmd->data;
200 if (!data) {
Andrew Victorb44fb7a2006-06-19 13:06:05 +0100201 pr_debug("no data\n");
Andrew Victor65dbf342006-04-02 19:18:51 +0100202 return;
203 }
204
205 for (i = 0; i < 2; i++) {
206 /* nothing left to transfer */
207 if (host->transfer_index >= data->sg_len) {
Andrew Victorb44fb7a2006-06-19 13:06:05 +0100208 pr_debug("Nothing left to transfer (index = %d)\n", host->transfer_index);
Andrew Victor65dbf342006-04-02 19:18:51 +0100209 break;
210 }
211
212 /* Check to see if this needs filling */
213 if (i == 0) {
Andrew Victor93a3ddc2007-02-08 11:31:22 +0100214 if (at91_mci_read(host, ATMEL_PDC_RCR) != 0) {
Andrew Victorb44fb7a2006-06-19 13:06:05 +0100215 pr_debug("Transfer active in current\n");
Andrew Victor65dbf342006-04-02 19:18:51 +0100216 continue;
217 }
218 }
219 else {
Andrew Victor93a3ddc2007-02-08 11:31:22 +0100220 if (at91_mci_read(host, ATMEL_PDC_RNCR) != 0) {
Andrew Victorb44fb7a2006-06-19 13:06:05 +0100221 pr_debug("Transfer active in next\n");
Andrew Victor65dbf342006-04-02 19:18:51 +0100222 continue;
223 }
224 }
225
226 /* Setup the next transfer */
Andrew Victorb44fb7a2006-06-19 13:06:05 +0100227 pr_debug("Using transfer index %d\n", host->transfer_index);
Andrew Victor65dbf342006-04-02 19:18:51 +0100228
229 sg = &data->sg[host->transfer_index++];
Andrew Victorb44fb7a2006-06-19 13:06:05 +0100230 pr_debug("sg = %p\n", sg);
Andrew Victor65dbf342006-04-02 19:18:51 +0100231
232 sg->dma_address = dma_map_page(NULL, sg->page, sg->offset, sg->length, DMA_FROM_DEVICE);
233
Andrew Victorb44fb7a2006-06-19 13:06:05 +0100234 pr_debug("dma address = %08X, length = %d\n", sg->dma_address, sg->length);
Andrew Victor65dbf342006-04-02 19:18:51 +0100235
236 if (i == 0) {
Andrew Victor93a3ddc2007-02-08 11:31:22 +0100237 at91_mci_write(host, ATMEL_PDC_RPR, sg->dma_address);
238 at91_mci_write(host, ATMEL_PDC_RCR, sg->length / 4);
Andrew Victor65dbf342006-04-02 19:18:51 +0100239 }
240 else {
Andrew Victor93a3ddc2007-02-08 11:31:22 +0100241 at91_mci_write(host, ATMEL_PDC_RNPR, sg->dma_address);
242 at91_mci_write(host, ATMEL_PDC_RNCR, sg->length / 4);
Andrew Victor65dbf342006-04-02 19:18:51 +0100243 }
244 }
245
Andrew Victorb44fb7a2006-06-19 13:06:05 +0100246 pr_debug("pre dma read done\n");
Andrew Victor65dbf342006-04-02 19:18:51 +0100247}
248
249/*
250 * Handle after a dma read
251 */
252static void at91mci_post_dma_read(struct at91mci_host *host)
253{
254 struct mmc_command *cmd;
255 struct mmc_data *data;
256
Andrew Victorb44fb7a2006-06-19 13:06:05 +0100257 pr_debug("post dma read\n");
Andrew Victor65dbf342006-04-02 19:18:51 +0100258
259 cmd = host->cmd;
260 if (!cmd) {
Andrew Victorb44fb7a2006-06-19 13:06:05 +0100261 pr_debug("no command\n");
Andrew Victor65dbf342006-04-02 19:18:51 +0100262 return;
263 }
264
265 data = cmd->data;
266 if (!data) {
Andrew Victorb44fb7a2006-06-19 13:06:05 +0100267 pr_debug("no data\n");
Andrew Victor65dbf342006-04-02 19:18:51 +0100268 return;
269 }
270
271 while (host->in_use_index < host->transfer_index) {
272 unsigned int *buffer;
Andrew Victor65dbf342006-04-02 19:18:51 +0100273
274 struct scatterlist *sg;
275
Andrew Victorb44fb7a2006-06-19 13:06:05 +0100276 pr_debug("finishing index %d\n", host->in_use_index);
Andrew Victor65dbf342006-04-02 19:18:51 +0100277
278 sg = &data->sg[host->in_use_index++];
279
Andrew Victorb44fb7a2006-06-19 13:06:05 +0100280 pr_debug("Unmapping page %08X\n", sg->dma_address);
Andrew Victor65dbf342006-04-02 19:18:51 +0100281
282 dma_unmap_page(NULL, sg->dma_address, sg->length, DMA_FROM_DEVICE);
283
284 /* Swap the contents of the buffer */
285 buffer = kmap_atomic(sg->page, KM_BIO_SRC_IRQ) + sg->offset;
Andrew Victorb44fb7a2006-06-19 13:06:05 +0100286 pr_debug("buffer = %p, length = %d\n", buffer, sg->length);
Andrew Victor65dbf342006-04-02 19:18:51 +0100287
288 data->bytes_xfered += sg->length;
289
Andrew Victor99eeb8df2006-12-11 12:40:23 +0100290 if (cpu_is_at91rm9200()) { /* AT91RM9200 errata */
291 int index;
Andrew Victor65dbf342006-04-02 19:18:51 +0100292
Andrew Victor99eeb8df2006-12-11 12:40:23 +0100293 for (index = 0; index < (sg->length / 4); index++)
294 buffer[index] = swab32(buffer[index]);
Andrew Victor65dbf342006-04-02 19:18:51 +0100295 }
Andrew Victor99eeb8df2006-12-11 12:40:23 +0100296
Andrew Victor65dbf342006-04-02 19:18:51 +0100297 kunmap_atomic(buffer, KM_BIO_SRC_IRQ);
298 flush_dcache_page(sg->page);
299 }
300
301 /* Is there another transfer to trigger? */
302 if (host->transfer_index < data->sg_len)
303 at91mci_pre_dma_read(host);
304 else {
Andrew Victore0b19b82006-10-25 19:42:38 +0200305 at91_mci_write(host, AT91_MCI_IER, AT91_MCI_RXBUFF);
Andrew Victor93a3ddc2007-02-08 11:31:22 +0100306 at91_mci_write(host, ATMEL_PDC_PTCR, ATMEL_PDC_RXTDIS | ATMEL_PDC_TXTDIS);
Andrew Victor65dbf342006-04-02 19:18:51 +0100307 }
308
Andrew Victorb44fb7a2006-06-19 13:06:05 +0100309 pr_debug("post dma read done\n");
Andrew Victor65dbf342006-04-02 19:18:51 +0100310}
311
312/*
313 * Handle transmitted data
314 */
315static void at91_mci_handle_transmitted(struct at91mci_host *host)
316{
317 struct mmc_command *cmd;
318 struct mmc_data *data;
319
Andrew Victorb44fb7a2006-06-19 13:06:05 +0100320 pr_debug("Handling the transmit\n");
Andrew Victor65dbf342006-04-02 19:18:51 +0100321
322 /* Disable the transfer */
Andrew Victor93a3ddc2007-02-08 11:31:22 +0100323 at91_mci_write(host, ATMEL_PDC_PTCR, ATMEL_PDC_RXTDIS | ATMEL_PDC_TXTDIS);
Andrew Victor65dbf342006-04-02 19:18:51 +0100324
325 /* Now wait for cmd ready */
Andrew Victore0b19b82006-10-25 19:42:38 +0200326 at91_mci_write(host, AT91_MCI_IDR, AT91_MCI_TXBUFE);
327 at91_mci_write(host, AT91_MCI_IER, AT91_MCI_NOTBUSY);
Andrew Victor65dbf342006-04-02 19:18:51 +0100328
329 cmd = host->cmd;
330 if (!cmd) return;
331
332 data = cmd->data;
333 if (!data) return;
334
335 data->bytes_xfered = host->total_length;
336}
337
338/*
339 * Enable the controller
340 */
Andrew Victore0b19b82006-10-25 19:42:38 +0200341static void at91_mci_enable(struct at91mci_host *host)
Andrew Victor65dbf342006-04-02 19:18:51 +0100342{
Andrew Victore0b19b82006-10-25 19:42:38 +0200343 at91_mci_write(host, AT91_MCI_CR, AT91_MCI_MCIEN);
Andrew Victorf3a8efa2006-10-23 14:53:20 +0200344 at91_mci_write(host, AT91_MCI_IDR, 0xffffffff);
Andrew Victore0b19b82006-10-25 19:42:38 +0200345 at91_mci_write(host, AT91_MCI_DTOR, AT91_MCI_DTOMUL_1M | AT91_MCI_DTOCYC);
Andrew Victorf3a8efa2006-10-23 14:53:20 +0200346 at91_mci_write(host, AT91_MCI_MR, AT91_MCI_PDCMODE | 0x34a);
Andrew Victor99eeb8df2006-12-11 12:40:23 +0100347
348 /* use Slot A or B (only one at same time) */
349 at91_mci_write(host, AT91_MCI_SDCR, host->board->slot_b);
Andrew Victor65dbf342006-04-02 19:18:51 +0100350}
351
352/*
353 * Disable the controller
354 */
Andrew Victore0b19b82006-10-25 19:42:38 +0200355static void at91_mci_disable(struct at91mci_host *host)
Andrew Victor65dbf342006-04-02 19:18:51 +0100356{
Andrew Victore0b19b82006-10-25 19:42:38 +0200357 at91_mci_write(host, AT91_MCI_CR, AT91_MCI_MCIDIS | AT91_MCI_SWRST);
Andrew Victor65dbf342006-04-02 19:18:51 +0100358}
359
360/*
361 * Send a command
362 * return the interrupts to enable
363 */
364static unsigned int at91_mci_send_command(struct at91mci_host *host, struct mmc_command *cmd)
365{
366 unsigned int cmdr, mr;
367 unsigned int block_length;
368 struct mmc_data *data = cmd->data;
369
370 unsigned int blocks;
371 unsigned int ier = 0;
372
373 host->cmd = cmd;
374
375 /* Not sure if this is needed */
376#if 0
Andrew Victore0b19b82006-10-25 19:42:38 +0200377 if ((at91_mci_read(host, AT91_MCI_SR) & AT91_MCI_RTOE) && (cmd->opcode == 1)) {
Andrew Victorb44fb7a2006-06-19 13:06:05 +0100378 pr_debug("Clearing timeout\n");
Andrew Victore0b19b82006-10-25 19:42:38 +0200379 at91_mci_write(host, AT91_MCI_ARGR, 0);
380 at91_mci_write(host, AT91_MCI_CMDR, AT91_MCI_OPDCMD);
381 while (!(at91_mci_read(host, AT91_MCI_SR) & AT91_MCI_CMDRDY)) {
Andrew Victor65dbf342006-04-02 19:18:51 +0100382 /* spin */
Andrew Victore0b19b82006-10-25 19:42:38 +0200383 pr_debug("Clearing: SR = %08X\n", at91_mci_read(host, AT91_MCI_SR));
Andrew Victor65dbf342006-04-02 19:18:51 +0100384 }
385 }
386#endif
387 cmdr = cmd->opcode;
388
389 if (mmc_resp_type(cmd) == MMC_RSP_NONE)
390 cmdr |= AT91_MCI_RSPTYP_NONE;
391 else {
392 /* if a response is expected then allow maximum response latancy */
393 cmdr |= AT91_MCI_MAXLAT;
394 /* set 136 bit response for R2, 48 bit response otherwise */
395 if (mmc_resp_type(cmd) == MMC_RSP_R2)
396 cmdr |= AT91_MCI_RSPTYP_136;
397 else
398 cmdr |= AT91_MCI_RSPTYP_48;
399 }
400
401 if (data) {
Russell Kinga3fd4a12006-06-04 17:51:15 +0100402 block_length = data->blksz;
Andrew Victor65dbf342006-04-02 19:18:51 +0100403 blocks = data->blocks;
404
405 /* always set data start - also set direction flag for read */
406 if (data->flags & MMC_DATA_READ)
407 cmdr |= (AT91_MCI_TRDIR | AT91_MCI_TRCMD_START);
408 else if (data->flags & MMC_DATA_WRITE)
409 cmdr |= AT91_MCI_TRCMD_START;
410
411 if (data->flags & MMC_DATA_STREAM)
412 cmdr |= AT91_MCI_TRTYP_STREAM;
413 if (data->flags & MMC_DATA_MULTI)
414 cmdr |= AT91_MCI_TRTYP_MULTIPLE;
415 }
416 else {
417 block_length = 0;
418 blocks = 0;
419 }
420
421 if (cmd->opcode == MMC_STOP_TRANSMISSION)
422 cmdr |= AT91_MCI_TRCMD_STOP;
423
424 if (host->bus_mode == MMC_BUSMODE_OPENDRAIN)
425 cmdr |= AT91_MCI_OPDCMD;
426
427 /*
428 * Set the arguments and send the command
429 */
Andrew Victorf3a8efa2006-10-23 14:53:20 +0200430 pr_debug("Sending command %d as %08X, arg = %08X, blocks = %d, length = %d (MR = %08X)\n",
Andrew Victore0b19b82006-10-25 19:42:38 +0200431 cmd->opcode, cmdr, cmd->arg, blocks, block_length, at91_mci_read(host, AT91_MCI_MR));
Andrew Victor65dbf342006-04-02 19:18:51 +0100432
433 if (!data) {
Andrew Victor93a3ddc2007-02-08 11:31:22 +0100434 at91_mci_write(host, ATMEL_PDC_PTCR, ATMEL_PDC_TXTDIS | ATMEL_PDC_RXTDIS);
435 at91_mci_write(host, ATMEL_PDC_RPR, 0);
436 at91_mci_write(host, ATMEL_PDC_RCR, 0);
437 at91_mci_write(host, ATMEL_PDC_RNPR, 0);
438 at91_mci_write(host, ATMEL_PDC_RNCR, 0);
439 at91_mci_write(host, ATMEL_PDC_TPR, 0);
440 at91_mci_write(host, ATMEL_PDC_TCR, 0);
441 at91_mci_write(host, ATMEL_PDC_TNPR, 0);
442 at91_mci_write(host, ATMEL_PDC_TNCR, 0);
Andrew Victor65dbf342006-04-02 19:18:51 +0100443
Andrew Victore0b19b82006-10-25 19:42:38 +0200444 at91_mci_write(host, AT91_MCI_ARGR, cmd->arg);
445 at91_mci_write(host, AT91_MCI_CMDR, cmdr);
Andrew Victor65dbf342006-04-02 19:18:51 +0100446 return AT91_MCI_CMDRDY;
447 }
448
Andrew Victore0b19b82006-10-25 19:42:38 +0200449 mr = at91_mci_read(host, AT91_MCI_MR) & 0x7fff; /* zero block length and PDC mode */
450 at91_mci_write(host, AT91_MCI_MR, mr | (block_length << 16) | AT91_MCI_PDCMODE);
Andrew Victor65dbf342006-04-02 19:18:51 +0100451
452 /*
453 * Disable the PDC controller
454 */
Andrew Victor93a3ddc2007-02-08 11:31:22 +0100455 at91_mci_write(host, ATMEL_PDC_PTCR, ATMEL_PDC_RXTDIS | ATMEL_PDC_TXTDIS);
Andrew Victor65dbf342006-04-02 19:18:51 +0100456
457 if (cmdr & AT91_MCI_TRCMD_START) {
458 data->bytes_xfered = 0;
459 host->transfer_index = 0;
460 host->in_use_index = 0;
461 if (cmdr & AT91_MCI_TRDIR) {
462 /*
463 * Handle a read
464 */
465 host->buffer = NULL;
466 host->total_length = 0;
467
468 at91mci_pre_dma_read(host);
469 ier = AT91_MCI_ENDRX /* | AT91_MCI_RXBUFF */;
470 }
471 else {
472 /*
473 * Handle a write
474 */
475 host->total_length = block_length * blocks;
476 host->buffer = dma_alloc_coherent(NULL,
477 host->total_length,
478 &host->physical_address, GFP_KERNEL);
479
480 at91mci_sg_to_dma(host, data);
481
Andrew Victorb44fb7a2006-06-19 13:06:05 +0100482 pr_debug("Transmitting %d bytes\n", host->total_length);
Andrew Victor65dbf342006-04-02 19:18:51 +0100483
Andrew Victor93a3ddc2007-02-08 11:31:22 +0100484 at91_mci_write(host, ATMEL_PDC_TPR, host->physical_address);
485 at91_mci_write(host, ATMEL_PDC_TCR, host->total_length / 4);
Andrew Victor65dbf342006-04-02 19:18:51 +0100486 ier = AT91_MCI_TXBUFE;
487 }
488 }
489
490 /*
491 * Send the command and then enable the PDC - not the other way round as
492 * the data sheet says
493 */
494
Andrew Victore0b19b82006-10-25 19:42:38 +0200495 at91_mci_write(host, AT91_MCI_ARGR, cmd->arg);
496 at91_mci_write(host, AT91_MCI_CMDR, cmdr);
Andrew Victor65dbf342006-04-02 19:18:51 +0100497
498 if (cmdr & AT91_MCI_TRCMD_START) {
499 if (cmdr & AT91_MCI_TRDIR)
Andrew Victor93a3ddc2007-02-08 11:31:22 +0100500 at91_mci_write(host, ATMEL_PDC_PTCR, ATMEL_PDC_RXTEN);
Andrew Victor65dbf342006-04-02 19:18:51 +0100501 else
Andrew Victor93a3ddc2007-02-08 11:31:22 +0100502 at91_mci_write(host, ATMEL_PDC_PTCR, ATMEL_PDC_TXTEN);
Andrew Victor65dbf342006-04-02 19:18:51 +0100503 }
504 return ier;
505}
506
507/*
508 * Wait for a command to complete
509 */
510static void at91mci_process_command(struct at91mci_host *host, struct mmc_command *cmd)
511{
512 unsigned int ier;
513
514 ier = at91_mci_send_command(host, cmd);
515
Andrew Victorb44fb7a2006-06-19 13:06:05 +0100516 pr_debug("setting ier to %08X\n", ier);
Andrew Victor65dbf342006-04-02 19:18:51 +0100517
518 /* Stop on errors or the required value */
Andrew Victordf05a302006-10-23 14:50:09 +0200519 at91_mci_write(host, AT91_MCI_IER, AT91_MCI_ERRORS | ier);
Andrew Victor65dbf342006-04-02 19:18:51 +0100520}
521
522/*
523 * Process the next step in the request
524 */
525static void at91mci_process_next(struct at91mci_host *host)
526{
527 if (!(host->flags & FL_SENT_COMMAND)) {
528 host->flags |= FL_SENT_COMMAND;
529 at91mci_process_command(host, host->request->cmd);
530 }
531 else if ((!(host->flags & FL_SENT_STOP)) && host->request->stop) {
532 host->flags |= FL_SENT_STOP;
533 at91mci_process_command(host, host->request->stop);
534 }
535 else
536 mmc_request_done(host->mmc, host->request);
537}
538
539/*
540 * Handle a command that has been completed
541 */
542static void at91mci_completed_command(struct at91mci_host *host)
543{
544 struct mmc_command *cmd = host->cmd;
545 unsigned int status;
546
Andrew Victore0b19b82006-10-25 19:42:38 +0200547 at91_mci_write(host, AT91_MCI_IDR, 0xffffffff);
Andrew Victor65dbf342006-04-02 19:18:51 +0100548
Andrew Victore0b19b82006-10-25 19:42:38 +0200549 cmd->resp[0] = at91_mci_read(host, AT91_MCI_RSPR(0));
550 cmd->resp[1] = at91_mci_read(host, AT91_MCI_RSPR(1));
551 cmd->resp[2] = at91_mci_read(host, AT91_MCI_RSPR(2));
552 cmd->resp[3] = at91_mci_read(host, AT91_MCI_RSPR(3));
Andrew Victor65dbf342006-04-02 19:18:51 +0100553
554 if (host->buffer) {
555 dma_free_coherent(NULL, host->total_length, host->buffer, host->physical_address);
556 host->buffer = NULL;
557 }
558
Andrew Victore0b19b82006-10-25 19:42:38 +0200559 status = at91_mci_read(host, AT91_MCI_SR);
Andrew Victor65dbf342006-04-02 19:18:51 +0100560
Andrew Victorb44fb7a2006-06-19 13:06:05 +0100561 pr_debug("Status = %08X [%08X %08X %08X %08X]\n",
Andrew Victor65dbf342006-04-02 19:18:51 +0100562 status, cmd->resp[0], cmd->resp[1], cmd->resp[2], cmd->resp[3]);
563
564 if (status & (AT91_MCI_RINDE | AT91_MCI_RDIRE | AT91_MCI_RCRCE |
565 AT91_MCI_RENDE | AT91_MCI_RTOE | AT91_MCI_DCRCE |
566 AT91_MCI_DTOE | AT91_MCI_OVRE | AT91_MCI_UNRE)) {
567 if ((status & AT91_MCI_RCRCE) &&
568 ((cmd->opcode == MMC_SEND_OP_COND) || (cmd->opcode == SD_APP_OP_COND))) {
569 cmd->error = MMC_ERR_NONE;
570 }
571 else {
572 if (status & (AT91_MCI_RTOE | AT91_MCI_DTOE))
573 cmd->error = MMC_ERR_TIMEOUT;
574 else if (status & (AT91_MCI_RCRCE | AT91_MCI_DCRCE))
575 cmd->error = MMC_ERR_BADCRC;
576 else if (status & (AT91_MCI_OVRE | AT91_MCI_UNRE))
577 cmd->error = MMC_ERR_FIFO;
578 else
579 cmd->error = MMC_ERR_FAILED;
580
Andrew Victorb44fb7a2006-06-19 13:06:05 +0100581 pr_debug("Error detected and set to %d (cmd = %d, retries = %d)\n",
Andrew Victor65dbf342006-04-02 19:18:51 +0100582 cmd->error, cmd->opcode, cmd->retries);
583 }
584 }
585 else
586 cmd->error = MMC_ERR_NONE;
587
588 at91mci_process_next(host);
589}
590
591/*
592 * Handle an MMC request
593 */
594static void at91_mci_request(struct mmc_host *mmc, struct mmc_request *mrq)
595{
596 struct at91mci_host *host = mmc_priv(mmc);
597 host->request = mrq;
598 host->flags = 0;
599
600 at91mci_process_next(host);
601}
602
603/*
604 * Set the IOS
605 */
606static void at91_mci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
607{
608 int clkdiv;
609 struct at91mci_host *host = mmc_priv(mmc);
Andrew Victor3dd3b032006-10-23 14:46:54 +0200610 unsigned long at91_master_clock = clk_get_rate(host->mci_clk);
Andrew Victor65dbf342006-04-02 19:18:51 +0100611
Andrew Victorb44fb7a2006-06-19 13:06:05 +0100612 host->bus_mode = ios->bus_mode;
Andrew Victor65dbf342006-04-02 19:18:51 +0100613
614 if (ios->clock == 0) {
615 /* Disable the MCI controller */
Andrew Victore0b19b82006-10-25 19:42:38 +0200616 at91_mci_write(host, AT91_MCI_CR, AT91_MCI_MCIDIS);
Andrew Victor65dbf342006-04-02 19:18:51 +0100617 clkdiv = 0;
618 }
619 else {
620 /* Enable the MCI controller */
Andrew Victore0b19b82006-10-25 19:42:38 +0200621 at91_mci_write(host, AT91_MCI_CR, AT91_MCI_MCIEN);
Andrew Victor65dbf342006-04-02 19:18:51 +0100622
623 if ((at91_master_clock % (ios->clock * 2)) == 0)
624 clkdiv = ((at91_master_clock / ios->clock) / 2) - 1;
625 else
626 clkdiv = (at91_master_clock / ios->clock) / 2;
627
Andrew Victorb44fb7a2006-06-19 13:06:05 +0100628 pr_debug("clkdiv = %d. mcck = %ld\n", clkdiv,
Andrew Victor65dbf342006-04-02 19:18:51 +0100629 at91_master_clock / (2 * (clkdiv + 1)));
630 }
631 if (ios->bus_width == MMC_BUS_WIDTH_4 && host->board->wire4) {
Andrew Victorb44fb7a2006-06-19 13:06:05 +0100632 pr_debug("MMC: Setting controller bus width to 4\n");
Andrew Victore0b19b82006-10-25 19:42:38 +0200633 at91_mci_write(host, AT91_MCI_SDCR, at91_mci_read(host, AT91_MCI_SDCR) | AT91_MCI_SDCBUS);
Andrew Victor65dbf342006-04-02 19:18:51 +0100634 }
635 else {
Andrew Victorb44fb7a2006-06-19 13:06:05 +0100636 pr_debug("MMC: Setting controller bus width to 1\n");
Andrew Victore0b19b82006-10-25 19:42:38 +0200637 at91_mci_write(host, AT91_MCI_SDCR, at91_mci_read(host, AT91_MCI_SDCR) & ~AT91_MCI_SDCBUS);
Andrew Victor65dbf342006-04-02 19:18:51 +0100638 }
639
640 /* Set the clock divider */
Andrew Victore0b19b82006-10-25 19:42:38 +0200641 at91_mci_write(host, AT91_MCI_MR, (at91_mci_read(host, AT91_MCI_MR) & ~AT91_MCI_CLKDIV) | clkdiv);
Andrew Victor65dbf342006-04-02 19:18:51 +0100642
643 /* maybe switch power to the card */
Andrew Victorb44fb7a2006-06-19 13:06:05 +0100644 if (host->board->vcc_pin) {
Andrew Victor65dbf342006-04-02 19:18:51 +0100645 switch (ios->power_mode) {
646 case MMC_POWER_OFF:
Andrew Victor99eeb8df2006-12-11 12:40:23 +0100647 at91_set_gpio_value(host->board->vcc_pin, 0);
Andrew Victor65dbf342006-04-02 19:18:51 +0100648 break;
649 case MMC_POWER_UP:
650 case MMC_POWER_ON:
Andrew Victor99eeb8df2006-12-11 12:40:23 +0100651 at91_set_gpio_value(host->board->vcc_pin, 1);
Andrew Victor65dbf342006-04-02 19:18:51 +0100652 break;
653 }
654 }
655}
656
657/*
658 * Handle an interrupt
659 */
David Howells7d12e782006-10-05 14:55:46 +0100660static irqreturn_t at91_mci_irq(int irq, void *devid)
Andrew Victor65dbf342006-04-02 19:18:51 +0100661{
662 struct at91mci_host *host = devid;
663 int completed = 0;
Andrew Victordf05a302006-10-23 14:50:09 +0200664 unsigned int int_status, int_mask;
Andrew Victor65dbf342006-04-02 19:18:51 +0100665
Andrew Victore0b19b82006-10-25 19:42:38 +0200666 int_status = at91_mci_read(host, AT91_MCI_SR);
Andrew Victordf05a302006-10-23 14:50:09 +0200667 int_mask = at91_mci_read(host, AT91_MCI_IMR);
668
Andrew Victorf3a8efa2006-10-23 14:53:20 +0200669 pr_debug("MCI irq: status = %08X, %08X, %08X\n", int_status, int_mask,
Andrew Victordf05a302006-10-23 14:50:09 +0200670 int_status & int_mask);
671
672 int_status = int_status & int_mask;
Andrew Victor65dbf342006-04-02 19:18:51 +0100673
Andrew Victordf05a302006-10-23 14:50:09 +0200674 if (int_status & AT91_MCI_ERRORS) {
Andrew Victor65dbf342006-04-02 19:18:51 +0100675 completed = 1;
Andrew Victordf05a302006-10-23 14:50:09 +0200676
677 if (int_status & AT91_MCI_UNRE)
678 pr_debug("MMC: Underrun error\n");
679 if (int_status & AT91_MCI_OVRE)
680 pr_debug("MMC: Overrun error\n");
681 if (int_status & AT91_MCI_DTOE)
682 pr_debug("MMC: Data timeout\n");
683 if (int_status & AT91_MCI_DCRCE)
684 pr_debug("MMC: CRC error in data\n");
685 if (int_status & AT91_MCI_RTOE)
686 pr_debug("MMC: Response timeout\n");
687 if (int_status & AT91_MCI_RENDE)
688 pr_debug("MMC: Response end bit error\n");
689 if (int_status & AT91_MCI_RCRCE)
690 pr_debug("MMC: Response CRC error\n");
691 if (int_status & AT91_MCI_RDIRE)
692 pr_debug("MMC: Response direction error\n");
693 if (int_status & AT91_MCI_RINDE)
694 pr_debug("MMC: Response index error\n");
695 } else {
696 /* Only continue processing if no errors */
Andrew Victor65dbf342006-04-02 19:18:51 +0100697
Andrew Victor65dbf342006-04-02 19:18:51 +0100698 if (int_status & AT91_MCI_TXBUFE) {
Andrew Victorb44fb7a2006-06-19 13:06:05 +0100699 pr_debug("TX buffer empty\n");
Andrew Victor65dbf342006-04-02 19:18:51 +0100700 at91_mci_handle_transmitted(host);
701 }
702
703 if (int_status & AT91_MCI_RXBUFF) {
Andrew Victorb44fb7a2006-06-19 13:06:05 +0100704 pr_debug("RX buffer full\n");
Andrew Victore0b19b82006-10-25 19:42:38 +0200705 at91_mci_write(host, AT91_MCI_IER, AT91_MCI_CMDRDY);
Andrew Victor65dbf342006-04-02 19:18:51 +0100706 }
707
Andrew Victordf05a302006-10-23 14:50:09 +0200708 if (int_status & AT91_MCI_ENDTX)
Andrew Victorb44fb7a2006-06-19 13:06:05 +0100709 pr_debug("Transmit has ended\n");
Andrew Victor65dbf342006-04-02 19:18:51 +0100710
711 if (int_status & AT91_MCI_ENDRX) {
Andrew Victorb44fb7a2006-06-19 13:06:05 +0100712 pr_debug("Receive has ended\n");
Andrew Victor65dbf342006-04-02 19:18:51 +0100713 at91mci_post_dma_read(host);
714 }
715
716 if (int_status & AT91_MCI_NOTBUSY) {
Andrew Victorb44fb7a2006-06-19 13:06:05 +0100717 pr_debug("Card is ready\n");
Andrew Victore0b19b82006-10-25 19:42:38 +0200718 at91_mci_write(host, AT91_MCI_IER, AT91_MCI_CMDRDY);
Andrew Victor65dbf342006-04-02 19:18:51 +0100719 }
720
Andrew Victordf05a302006-10-23 14:50:09 +0200721 if (int_status & AT91_MCI_DTIP)
Andrew Victorb44fb7a2006-06-19 13:06:05 +0100722 pr_debug("Data transfer in progress\n");
Andrew Victor65dbf342006-04-02 19:18:51 +0100723
Andrew Victordf05a302006-10-23 14:50:09 +0200724 if (int_status & AT91_MCI_BLKE)
Andrew Victorb44fb7a2006-06-19 13:06:05 +0100725 pr_debug("Block transfer has ended\n");
Andrew Victor65dbf342006-04-02 19:18:51 +0100726
Andrew Victordf05a302006-10-23 14:50:09 +0200727 if (int_status & AT91_MCI_TXRDY)
Andrew Victorb44fb7a2006-06-19 13:06:05 +0100728 pr_debug("Ready to transmit\n");
Andrew Victor65dbf342006-04-02 19:18:51 +0100729
Andrew Victordf05a302006-10-23 14:50:09 +0200730 if (int_status & AT91_MCI_RXRDY)
Andrew Victorb44fb7a2006-06-19 13:06:05 +0100731 pr_debug("Ready to receive\n");
Andrew Victor65dbf342006-04-02 19:18:51 +0100732
733 if (int_status & AT91_MCI_CMDRDY) {
Andrew Victorb44fb7a2006-06-19 13:06:05 +0100734 pr_debug("Command ready\n");
Andrew Victor65dbf342006-04-02 19:18:51 +0100735 completed = 1;
736 }
737 }
Andrew Victor65dbf342006-04-02 19:18:51 +0100738
739 if (completed) {
Andrew Victorb44fb7a2006-06-19 13:06:05 +0100740 pr_debug("Completed command\n");
Andrew Victore0b19b82006-10-25 19:42:38 +0200741 at91_mci_write(host, AT91_MCI_IDR, 0xffffffff);
Andrew Victor65dbf342006-04-02 19:18:51 +0100742 at91mci_completed_command(host);
Andrew Victordf05a302006-10-23 14:50:09 +0200743 } else
744 at91_mci_write(host, AT91_MCI_IDR, int_status);
Andrew Victor65dbf342006-04-02 19:18:51 +0100745
746 return IRQ_HANDLED;
747}
748
David Howells7d12e782006-10-05 14:55:46 +0100749static irqreturn_t at91_mmc_det_irq(int irq, void *_host)
Andrew Victor65dbf342006-04-02 19:18:51 +0100750{
751 struct at91mci_host *host = _host;
752 int present = !at91_get_gpio_value(irq);
753
754 /*
755 * we expect this irq on both insert and remove,
756 * and use a short delay to debounce.
757 */
758 if (present != host->present) {
759 host->present = present;
Andrew Victorb44fb7a2006-06-19 13:06:05 +0100760 pr_debug("%s: card %s\n", mmc_hostname(host->mmc),
Andrew Victor65dbf342006-04-02 19:18:51 +0100761 present ? "insert" : "remove");
762 if (!present) {
Andrew Victorb44fb7a2006-06-19 13:06:05 +0100763 pr_debug("****** Resetting SD-card bus width ******\n");
Andrew Victor99eeb8df2006-12-11 12:40:23 +0100764 at91_mci_write(host, AT91_MCI_SDCR, at91_mci_read(host, AT91_MCI_SDCR) & ~AT91_MCI_SDCBUS);
Andrew Victor65dbf342006-04-02 19:18:51 +0100765 }
766 mmc_detect_change(host->mmc, msecs_to_jiffies(100));
767 }
768 return IRQ_HANDLED;
769}
770
David Brownella26b4982006-12-26 14:45:26 -0800771static int at91_mci_get_ro(struct mmc_host *mmc)
Andrew Victor65dbf342006-04-02 19:18:51 +0100772{
773 int read_only = 0;
774 struct at91mci_host *host = mmc_priv(mmc);
775
776 if (host->board->wp_pin) {
777 read_only = at91_get_gpio_value(host->board->wp_pin);
778 printk(KERN_WARNING "%s: card is %s\n", mmc_hostname(mmc),
779 (read_only ? "read-only" : "read-write") );
780 }
781 else {
782 printk(KERN_WARNING "%s: host does not support reading read-only "
783 "switch. Assuming write-enable.\n", mmc_hostname(mmc));
784 }
785 return read_only;
786}
787
David Brownellab7aefd2006-11-12 17:55:30 -0800788static const struct mmc_host_ops at91_mci_ops = {
Andrew Victor65dbf342006-04-02 19:18:51 +0100789 .request = at91_mci_request,
790 .set_ios = at91_mci_set_ios,
791 .get_ro = at91_mci_get_ro,
792};
793
794/*
795 * Probe for the device
796 */
David Brownella26b4982006-12-26 14:45:26 -0800797static int __init at91_mci_probe(struct platform_device *pdev)
Andrew Victor65dbf342006-04-02 19:18:51 +0100798{
799 struct mmc_host *mmc;
800 struct at91mci_host *host;
Andrew Victor17ea0592006-10-23 14:44:40 +0200801 struct resource *res;
Andrew Victor65dbf342006-04-02 19:18:51 +0100802 int ret;
803
Andrew Victorb44fb7a2006-06-19 13:06:05 +0100804 pr_debug("Probe MCI devices\n");
Andrew Victor65dbf342006-04-02 19:18:51 +0100805
Andrew Victor17ea0592006-10-23 14:44:40 +0200806 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
807 if (!res)
808 return -ENXIO;
809
810 if (!request_mem_region(res->start, res->end - res->start + 1, DRIVER_NAME))
811 return -EBUSY;
812
Andrew Victor65dbf342006-04-02 19:18:51 +0100813 mmc = mmc_alloc_host(sizeof(struct at91mci_host), &pdev->dev);
814 if (!mmc) {
Andrew Victorb44fb7a2006-06-19 13:06:05 +0100815 pr_debug("Failed to allocate mmc host\n");
Andrew Victor17ea0592006-10-23 14:44:40 +0200816 release_mem_region(res->start, res->end - res->start + 1);
Andrew Victor65dbf342006-04-02 19:18:51 +0100817 return -ENOMEM;
818 }
819
820 mmc->ops = &at91_mci_ops;
821 mmc->f_min = 375000;
822 mmc->f_max = 25000000;
823 mmc->ocr_avail = MMC_VDD_32_33 | MMC_VDD_33_34;
Russell King42431ac2006-09-24 10:44:09 +0100824 mmc->caps = MMC_CAP_BYTEBLOCK;
Andrew Victor65dbf342006-04-02 19:18:51 +0100825
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +0100826 mmc->max_blk_size = 4095;
Pierre Ossman55db8902006-11-21 17:55:45 +0100827 mmc->max_blk_count = mmc->max_req_size;
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +0100828
Andrew Victor65dbf342006-04-02 19:18:51 +0100829 host = mmc_priv(mmc);
830 host->mmc = mmc;
831 host->buffer = NULL;
832 host->bus_mode = 0;
833 host->board = pdev->dev.platform_data;
834 if (host->board->wire4) {
835#ifdef SUPPORT_4WIRE
836 mmc->caps |= MMC_CAP_4_BIT_DATA;
837#else
Andrew Victorf3a8efa2006-10-23 14:53:20 +0200838 printk("AT91 MMC: 4 wire bus mode not supported by this driver - using 1 wire\n");
Andrew Victor65dbf342006-04-02 19:18:51 +0100839#endif
840 }
841
842 /*
843 * Get Clock
844 */
Andrew Victor3dd3b032006-10-23 14:46:54 +0200845 host->mci_clk = clk_get(&pdev->dev, "mci_clk");
846 if (IS_ERR(host->mci_clk)) {
Andrew Victor65dbf342006-04-02 19:18:51 +0100847 printk(KERN_ERR "AT91 MMC: no clock defined.\n");
Andrew Victorb44fb7a2006-06-19 13:06:05 +0100848 mmc_free_host(mmc);
Andrew Victor17ea0592006-10-23 14:44:40 +0200849 release_mem_region(res->start, res->end - res->start + 1);
Andrew Victor65dbf342006-04-02 19:18:51 +0100850 return -ENODEV;
851 }
Andrew Victor65dbf342006-04-02 19:18:51 +0100852
Andrew Victor17ea0592006-10-23 14:44:40 +0200853 /*
854 * Map I/O region
855 */
856 host->baseaddr = ioremap(res->start, res->end - res->start + 1);
857 if (!host->baseaddr) {
Andrew Victor3dd3b032006-10-23 14:46:54 +0200858 clk_put(host->mci_clk);
Andrew Victor17ea0592006-10-23 14:44:40 +0200859 mmc_free_host(mmc);
860 release_mem_region(res->start, res->end - res->start + 1);
861 return -ENOMEM;
862 }
Andrew Victore0b19b82006-10-25 19:42:38 +0200863
864 /*
865 * Reset hardware
866 */
Andrew Victor3dd3b032006-10-23 14:46:54 +0200867 clk_enable(host->mci_clk); /* Enable the peripheral clock */
Andrew Victore0b19b82006-10-25 19:42:38 +0200868 at91_mci_disable(host);
869 at91_mci_enable(host);
870
Andrew Victor65dbf342006-04-02 19:18:51 +0100871 /*
872 * Allocate the MCI interrupt
873 */
Andrew Victor17ea0592006-10-23 14:44:40 +0200874 host->irq = platform_get_irq(pdev, 0);
875 ret = request_irq(host->irq, at91_mci_irq, IRQF_SHARED, DRIVER_NAME, host);
Andrew Victor65dbf342006-04-02 19:18:51 +0100876 if (ret) {
Andrew Victorf3a8efa2006-10-23 14:53:20 +0200877 printk(KERN_ERR "AT91 MMC: Failed to request MCI interrupt\n");
Andrew Victor3dd3b032006-10-23 14:46:54 +0200878 clk_disable(host->mci_clk);
879 clk_put(host->mci_clk);
Andrew Victorb44fb7a2006-06-19 13:06:05 +0100880 mmc_free_host(mmc);
Andrew Victor17ea0592006-10-23 14:44:40 +0200881 iounmap(host->baseaddr);
882 release_mem_region(res->start, res->end - res->start + 1);
Andrew Victor65dbf342006-04-02 19:18:51 +0100883 return ret;
884 }
885
886 platform_set_drvdata(pdev, mmc);
887
888 /*
889 * Add host to MMC layer
890 */
891 if (host->board->det_pin)
892 host->present = !at91_get_gpio_value(host->board->det_pin);
893 else
894 host->present = -1;
895
896 mmc_add_host(mmc);
897
898 /*
899 * monitor card insertion/removal if we can
900 */
901 if (host->board->det_pin) {
902 ret = request_irq(host->board->det_pin, at91_mmc_det_irq,
Andrew Victorb44fb7a2006-06-19 13:06:05 +0100903 0, DRIVER_NAME, host);
Andrew Victor65dbf342006-04-02 19:18:51 +0100904 if (ret)
Andrew Victorf3a8efa2006-10-23 14:53:20 +0200905 printk(KERN_ERR "AT91 MMC: Couldn't allocate MMC detect irq\n");
Andrew Victor65dbf342006-04-02 19:18:51 +0100906 }
907
Andrew Victorf3a8efa2006-10-23 14:53:20 +0200908 pr_debug("Added MCI driver\n");
Andrew Victor65dbf342006-04-02 19:18:51 +0100909
910 return 0;
911}
912
913/*
914 * Remove a device
915 */
David Brownella26b4982006-12-26 14:45:26 -0800916static int __exit at91_mci_remove(struct platform_device *pdev)
Andrew Victor65dbf342006-04-02 19:18:51 +0100917{
918 struct mmc_host *mmc = platform_get_drvdata(pdev);
919 struct at91mci_host *host;
Andrew Victor17ea0592006-10-23 14:44:40 +0200920 struct resource *res;
Andrew Victor65dbf342006-04-02 19:18:51 +0100921
922 if (!mmc)
923 return -1;
924
925 host = mmc_priv(mmc);
926
927 if (host->present != -1) {
928 free_irq(host->board->det_pin, host);
929 cancel_delayed_work(&host->mmc->detect);
930 }
931
Andrew Victore0b19b82006-10-25 19:42:38 +0200932 at91_mci_disable(host);
Andrew Victor17ea0592006-10-23 14:44:40 +0200933 mmc_remove_host(mmc);
934 free_irq(host->irq, host);
Andrew Victor65dbf342006-04-02 19:18:51 +0100935
Andrew Victor3dd3b032006-10-23 14:46:54 +0200936 clk_disable(host->mci_clk); /* Disable the peripheral clock */
937 clk_put(host->mci_clk);
Andrew Victor65dbf342006-04-02 19:18:51 +0100938
Andrew Victor17ea0592006-10-23 14:44:40 +0200939 iounmap(host->baseaddr);
940 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
941 release_mem_region(res->start, res->end - res->start + 1);
Andrew Victor65dbf342006-04-02 19:18:51 +0100942
Andrew Victor17ea0592006-10-23 14:44:40 +0200943 mmc_free_host(mmc);
944 platform_set_drvdata(pdev, NULL);
Andrew Victorb44fb7a2006-06-19 13:06:05 +0100945 pr_debug("MCI Removed\n");
Andrew Victor65dbf342006-04-02 19:18:51 +0100946
947 return 0;
948}
949
950#ifdef CONFIG_PM
951static int at91_mci_suspend(struct platform_device *pdev, pm_message_t state)
952{
953 struct mmc_host *mmc = platform_get_drvdata(pdev);
954 int ret = 0;
955
956 if (mmc)
957 ret = mmc_suspend_host(mmc, state);
958
959 return ret;
960}
961
962static int at91_mci_resume(struct platform_device *pdev)
963{
964 struct mmc_host *mmc = platform_get_drvdata(pdev);
965 int ret = 0;
966
967 if (mmc)
968 ret = mmc_resume_host(mmc);
969
970 return ret;
971}
972#else
973#define at91_mci_suspend NULL
974#define at91_mci_resume NULL
975#endif
976
977static struct platform_driver at91_mci_driver = {
David Brownella26b4982006-12-26 14:45:26 -0800978 .remove = __exit_p(at91_mci_remove),
Andrew Victor65dbf342006-04-02 19:18:51 +0100979 .suspend = at91_mci_suspend,
980 .resume = at91_mci_resume,
981 .driver = {
982 .name = DRIVER_NAME,
983 .owner = THIS_MODULE,
984 },
985};
986
987static int __init at91_mci_init(void)
988{
David Brownella26b4982006-12-26 14:45:26 -0800989 return platform_driver_probe(&at91_mci_driver, at91_mci_probe);
Andrew Victor65dbf342006-04-02 19:18:51 +0100990}
991
992static void __exit at91_mci_exit(void)
993{
994 platform_driver_unregister(&at91_mci_driver);
995}
996
997module_init(at91_mci_init);
998module_exit(at91_mci_exit);
999
1000MODULE_DESCRIPTION("AT91 Multimedia Card Interface driver");
1001MODULE_AUTHOR("Nick Randell");
1002MODULE_LICENSE("GPL");