blob: 657901eecfced1b6222d2f772a81415a5b836eaa [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Pierre Ossman70f10482007-07-11 20:04:50 +02002 * linux/drivers/mmc/host/pxa.c - PXA MMCI driver
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Copyright (C) 2003 Russell King, All Rights Reserved.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10 * This hardware is really sick:
11 * - No way to clear interrupts.
12 * - Have to turn off the clock whenever we touch the device.
13 * - Doesn't tell you how many data blocks were transferred.
14 * Yuck!
15 *
16 * 1 and 3 byte data transfers not supported
17 * max block length up to 1023
18 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/module.h>
20#include <linux/init.h>
21#include <linux/ioport.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010022#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/delay.h>
24#include <linux/interrupt.h>
25#include <linux/dma-mapping.h>
26#include <linux/mmc/host.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28#include <asm/dma.h>
29#include <asm/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <asm/scatterlist.h>
31#include <asm/sizes.h>
32
33#include <asm/arch/pxa-regs.h>
34#include <asm/arch/mmc.h>
35
36#include "pxamci.h"
37
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#define DRIVER_NAME "pxa2xx-mci"
39
40#define NR_SG 1
41
42struct pxamci_host {
43 struct mmc_host *mmc;
44 spinlock_t lock;
45 struct resource *res;
46 void __iomem *base;
47 int irq;
48 int dma;
49 unsigned int clkrt;
50 unsigned int cmdat;
51 unsigned int imask;
52 unsigned int power_mode;
53 struct pxamci_platform_data *pdata;
54
55 struct mmc_request *mrq;
56 struct mmc_command *cmd;
57 struct mmc_data *data;
58
59 dma_addr_t sg_dma;
60 struct pxa_dma_desc *sg_cpu;
61 unsigned int dma_len;
62
63 unsigned int dma_dir;
64};
65
Linus Torvalds1da177e2005-04-16 15:20:36 -070066static void pxamci_stop_clock(struct pxamci_host *host)
67{
68 if (readl(host->base + MMC_STAT) & STAT_CLK_EN) {
69 unsigned long timeout = 10000;
70 unsigned int v;
71
72 writel(STOP_CLOCK, host->base + MMC_STRPCL);
73
74 do {
75 v = readl(host->base + MMC_STAT);
76 if (!(v & STAT_CLK_EN))
77 break;
78 udelay(1);
79 } while (timeout--);
80
81 if (v & STAT_CLK_EN)
82 dev_err(mmc_dev(host->mmc), "unable to stop clock\n");
83 }
84}
85
86static void pxamci_enable_irq(struct pxamci_host *host, unsigned int mask)
87{
88 unsigned long flags;
89
90 spin_lock_irqsave(&host->lock, flags);
91 host->imask &= ~mask;
92 writel(host->imask, host->base + MMC_I_MASK);
93 spin_unlock_irqrestore(&host->lock, flags);
94}
95
96static void pxamci_disable_irq(struct pxamci_host *host, unsigned int mask)
97{
98 unsigned long flags;
99
100 spin_lock_irqsave(&host->lock, flags);
101 host->imask |= mask;
102 writel(host->imask, host->base + MMC_I_MASK);
103 spin_unlock_irqrestore(&host->lock, flags);
104}
105
106static void pxamci_setup_data(struct pxamci_host *host, struct mmc_data *data)
107{
108 unsigned int nob = data->blocks;
Russell King3d63abe2006-04-24 11:27:02 +0100109 unsigned long long clks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 unsigned int timeout;
111 u32 dcmd;
112 int i;
113
114 host->data = data;
115
116 if (data->flags & MMC_DATA_STREAM)
117 nob = 0xffff;
118
119 writel(nob, host->base + MMC_NOB);
Pavel Pisa2c171bf2006-05-19 21:48:03 +0100120 writel(data->blksz, host->base + MMC_BLKLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Russell King3d63abe2006-04-24 11:27:02 +0100122 clks = (unsigned long long)data->timeout_ns * CLOCKRATE;
123 do_div(clks, 1000000000UL);
124 timeout = (unsigned int)clks + (data->timeout_clks << host->clkrt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 writel((timeout + 255) / 256, host->base + MMC_RDTO);
126
127 if (data->flags & MMC_DATA_READ) {
128 host->dma_dir = DMA_FROM_DEVICE;
129 dcmd = DCMD_INCTRGADDR | DCMD_FLOWTRG;
130 DRCMRTXMMC = 0;
131 DRCMRRXMMC = host->dma | DRCMR_MAPVLD;
132 } else {
133 host->dma_dir = DMA_TO_DEVICE;
134 dcmd = DCMD_INCSRCADDR | DCMD_FLOWSRC;
135 DRCMRRXMMC = 0;
136 DRCMRTXMMC = host->dma | DRCMR_MAPVLD;
137 }
138
139 dcmd |= DCMD_BURST32 | DCMD_WIDTH1;
140
141 host->dma_len = dma_map_sg(mmc_dev(host->mmc), data->sg, data->sg_len,
142 host->dma_dir);
143
144 for (i = 0; i < host->dma_len; i++) {
Nicolas Pitrec7838372007-10-09 17:07:58 -0400145 unsigned int length = sg_dma_len(&data->sg[i]);
146 host->sg_cpu[i].dcmd = dcmd | length;
147 if (length & 31 && !(data->flags & MMC_DATA_READ))
148 host->sg_cpu[i].dcmd |= DCMD_ENDIRQEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 if (data->flags & MMC_DATA_READ) {
150 host->sg_cpu[i].dsadr = host->res->start + MMC_RXFIFO;
151 host->sg_cpu[i].dtadr = sg_dma_address(&data->sg[i]);
152 } else {
153 host->sg_cpu[i].dsadr = sg_dma_address(&data->sg[i]);
154 host->sg_cpu[i].dtadr = host->res->start + MMC_TXFIFO;
155 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 host->sg_cpu[i].ddadr = host->sg_dma + (i + 1) *
157 sizeof(struct pxa_dma_desc);
158 }
159 host->sg_cpu[host->dma_len - 1].ddadr = DDADR_STOP;
160 wmb();
161
162 DDADR(host->dma) = host->sg_dma;
163 DCSR(host->dma) = DCSR_RUN;
164}
165
166static void pxamci_start_cmd(struct pxamci_host *host, struct mmc_command *cmd, unsigned int cmdat)
167{
168 WARN_ON(host->cmd != NULL);
169 host->cmd = cmd;
170
171 if (cmd->flags & MMC_RSP_BUSY)
172 cmdat |= CMDAT_BUSY;
173
Russell Kinge9225172006-02-02 12:23:12 +0000174#define RSP_TYPE(x) ((x) & ~(MMC_RSP_BUSY|MMC_RSP_OPCODE))
175 switch (RSP_TYPE(mmc_resp_type(cmd))) {
Philip Langdale6f949902007-01-04 07:04:47 -0800176 case RSP_TYPE(MMC_RSP_R1): /* r1, r1b, r6, r7 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 cmdat |= CMDAT_RESP_SHORT;
178 break;
Russell Kinge9225172006-02-02 12:23:12 +0000179 case RSP_TYPE(MMC_RSP_R3):
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 cmdat |= CMDAT_RESP_R3;
181 break;
Russell Kinge9225172006-02-02 12:23:12 +0000182 case RSP_TYPE(MMC_RSP_R2):
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 cmdat |= CMDAT_RESP_R2;
184 break;
185 default:
186 break;
187 }
188
189 writel(cmd->opcode, host->base + MMC_CMD);
190 writel(cmd->arg >> 16, host->base + MMC_ARGH);
191 writel(cmd->arg & 0xffff, host->base + MMC_ARGL);
192 writel(cmdat, host->base + MMC_CMDAT);
193 writel(host->clkrt, host->base + MMC_CLKRT);
194
195 writel(START_CLOCK, host->base + MMC_STRPCL);
196
197 pxamci_enable_irq(host, END_CMD_RES);
198}
199
200static void pxamci_finish_request(struct pxamci_host *host, struct mmc_request *mrq)
201{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 host->mrq = NULL;
203 host->cmd = NULL;
204 host->data = NULL;
205 mmc_request_done(host->mmc, mrq);
206}
207
208static int pxamci_cmd_done(struct pxamci_host *host, unsigned int stat)
209{
210 struct mmc_command *cmd = host->cmd;
211 int i;
212 u32 v;
213
214 if (!cmd)
215 return 0;
216
217 host->cmd = NULL;
218
219 /*
220 * Did I mention this is Sick. We always need to
221 * discard the upper 8 bits of the first 16-bit word.
222 */
223 v = readl(host->base + MMC_RES) & 0xffff;
224 for (i = 0; i < 4; i++) {
225 u32 w1 = readl(host->base + MMC_RES) & 0xffff;
226 u32 w2 = readl(host->base + MMC_RES) & 0xffff;
227 cmd->resp[i] = v << 24 | w1 << 8 | w2 >> 8;
228 v = w2;
229 }
230
231 if (stat & STAT_TIME_OUT_RESPONSE) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200232 cmd->error = -ETIMEDOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 } else if (stat & STAT_RES_CRC_ERR && cmd->flags & MMC_RSP_CRC) {
234#ifdef CONFIG_PXA27x
235 /*
236 * workaround for erratum #42:
237 * Intel PXA27x Family Processor Specification Update Rev 001
Nicolas Pitre90e07d92007-05-13 18:03:08 +0200238 * A bogus CRC error can appear if the msb of a 136 bit
239 * response is a one.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 */
Nicolas Pitre90e07d92007-05-13 18:03:08 +0200241 if (cmd->flags & MMC_RSP_136 && cmd->resp[0] & 0x80000000) {
242 pr_debug("ignoring CRC from command %d - *risky*\n", cmd->opcode);
243 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244#endif
Pierre Ossman17b04292007-07-22 22:18:46 +0200245 cmd->error = -EILSEQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 }
247
248 pxamci_disable_irq(host, END_CMD_RES);
Pierre Ossman17b04292007-07-22 22:18:46 +0200249 if (host->data && !cmd->error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 pxamci_enable_irq(host, DATA_TRAN_DONE);
251 } else {
252 pxamci_finish_request(host, host->mrq);
253 }
254
255 return 1;
256}
257
258static int pxamci_data_done(struct pxamci_host *host, unsigned int stat)
259{
260 struct mmc_data *data = host->data;
261
262 if (!data)
263 return 0;
264
265 DCSR(host->dma) = 0;
266 dma_unmap_sg(mmc_dev(host->mmc), data->sg, host->dma_len,
267 host->dma_dir);
268
269 if (stat & STAT_READ_TIME_OUT)
Pierre Ossman17b04292007-07-22 22:18:46 +0200270 data->error = -ETIMEDOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 else if (stat & (STAT_CRC_READ_ERROR|STAT_CRC_WRITE_ERROR))
Pierre Ossman17b04292007-07-22 22:18:46 +0200272 data->error = -EILSEQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
274 /*
275 * There appears to be a hardware design bug here. There seems to
276 * be no way to find out how much data was transferred to the card.
277 * This means that if there was an error on any block, we mark all
278 * data blocks as being in error.
279 */
Pierre Ossman17b04292007-07-22 22:18:46 +0200280 if (!data->error)
Pavel Pisa2c171bf2006-05-19 21:48:03 +0100281 data->bytes_xfered = data->blocks * data->blksz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 else
283 data->bytes_xfered = 0;
284
285 pxamci_disable_irq(host, DATA_TRAN_DONE);
286
287 host->data = NULL;
Russell King58741e82006-05-02 20:02:39 +0100288 if (host->mrq->stop) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 pxamci_stop_clock(host);
Bridge Wudf456f42007-09-25 19:09:19 +0200290 pxamci_start_cmd(host, host->mrq->stop, host->cmdat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 } else {
292 pxamci_finish_request(host, host->mrq);
293 }
294
295 return 1;
296}
297
David Howells7d12e782006-10-05 14:55:46 +0100298static irqreturn_t pxamci_irq(int irq, void *devid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299{
300 struct pxamci_host *host = devid;
301 unsigned int ireg;
302 int handled = 0;
303
Bridge Wu81ab570f2007-09-25 18:59:07 +0200304 ireg = readl(host->base + MMC_I_REG) & ~readl(host->base + MMC_I_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 if (ireg) {
307 unsigned stat = readl(host->base + MMC_STAT);
308
Russell Kingd78e9072006-05-02 20:18:53 +0100309 pr_debug("PXAMCI: irq %08x stat %08x\n", ireg, stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
311 if (ireg & END_CMD_RES)
312 handled |= pxamci_cmd_done(host, stat);
313 if (ireg & DATA_TRAN_DONE)
314 handled |= pxamci_data_done(host, stat);
Bridge Wu5d3ad4e2007-09-25 19:11:00 +0200315 if (ireg & SDIO_INT) {
316 mmc_signal_sdio_irq(host->mmc);
317 handled = 1;
318 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 }
320
321 return IRQ_RETVAL(handled);
322}
323
324static void pxamci_request(struct mmc_host *mmc, struct mmc_request *mrq)
325{
326 struct pxamci_host *host = mmc_priv(mmc);
327 unsigned int cmdat;
328
329 WARN_ON(host->mrq != NULL);
330
331 host->mrq = mrq;
332
333 pxamci_stop_clock(host);
334
335 cmdat = host->cmdat;
336 host->cmdat &= ~CMDAT_INIT;
337
338 if (mrq->data) {
339 pxamci_setup_data(host, mrq->data);
340
341 cmdat &= ~CMDAT_BUSY;
342 cmdat |= CMDAT_DATAEN | CMDAT_DMAEN;
343 if (mrq->data->flags & MMC_DATA_WRITE)
344 cmdat |= CMDAT_WRITE;
345
346 if (mrq->data->flags & MMC_DATA_STREAM)
347 cmdat |= CMDAT_STREAM;
348 }
349
350 pxamci_start_cmd(host, mrq->cmd, cmdat);
351}
352
Richard Purdiee6195242005-09-06 15:18:56 -0700353static int pxamci_get_ro(struct mmc_host *mmc)
354{
355 struct pxamci_host *host = mmc_priv(mmc);
356
357 if (host->pdata && host->pdata->get_ro)
Sascha Hauer9e866192006-12-05 07:41:09 +0100358 return host->pdata->get_ro(mmc_dev(mmc));
Richard Purdiee6195242005-09-06 15:18:56 -0700359 /* Host doesn't support read only detection so assume writeable */
360 return 0;
361}
362
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363static void pxamci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
364{
365 struct pxamci_host *host = mmc_priv(mmc);
366
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 if (ios->clock) {
368 unsigned int clk = CLOCKRATE / ios->clock;
369 if (CLOCKRATE / clk > ios->clock)
370 clk <<= 1;
371 host->clkrt = fls(clk) - 1;
Eric Miao7053acb2007-04-05 04:07:20 +0100372 pxa_set_cken(CKEN_MMC, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
374 /*
375 * we write clkrt on the next command
376 */
377 } else {
378 pxamci_stop_clock(host);
Eric Miao7053acb2007-04-05 04:07:20 +0100379 pxa_set_cken(CKEN_MMC, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 }
381
382 if (host->power_mode != ios->power_mode) {
383 host->power_mode = ios->power_mode;
384
385 if (host->pdata && host->pdata->setpower)
Sascha Hauer9e866192006-12-05 07:41:09 +0100386 host->pdata->setpower(mmc_dev(mmc), ios->vdd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
388 if (ios->power_mode == MMC_POWER_ON)
389 host->cmdat |= CMDAT_INIT;
390 }
391
Bridge Wudf456f42007-09-25 19:09:19 +0200392 if (ios->bus_width == MMC_BUS_WIDTH_4)
393 host->cmdat |= CMDAT_SD_4DAT;
394 else
395 host->cmdat &= ~CMDAT_SD_4DAT;
396
Russell Kingd78e9072006-05-02 20:18:53 +0100397 pr_debug("PXAMCI: clkrt = %x cmdat = %x\n",
Russell Kingc6563172006-03-29 09:30:20 +0100398 host->clkrt, host->cmdat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399}
400
Bridge Wu5d3ad4e2007-09-25 19:11:00 +0200401static void pxamci_enable_sdio_irq(struct mmc_host *host, int enable)
402{
403 struct pxamci_host *pxa_host = mmc_priv(host);
404
405 if (enable)
406 pxamci_enable_irq(pxa_host, SDIO_INT);
407 else
408 pxamci_disable_irq(pxa_host, SDIO_INT);
409}
410
David Brownellab7aefd2006-11-12 17:55:30 -0800411static const struct mmc_host_ops pxamci_ops = {
Bridge Wu5d3ad4e2007-09-25 19:11:00 +0200412 .request = pxamci_request,
413 .get_ro = pxamci_get_ro,
414 .set_ios = pxamci_set_ios,
415 .enable_sdio_irq = pxamci_enable_sdio_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416};
417
David Howells7d12e782006-10-05 14:55:46 +0100418static void pxamci_dma_irq(int dma, void *devid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419{
Nicolas Pitrec7838372007-10-09 17:07:58 -0400420 struct pxamci_host *host = devid;
421 int dcsr = DCSR(dma);
422 DCSR(dma) = dcsr & ~DCSR_STOPIRQEN;
423
424 if (dcsr & DCSR_ENDINTR) {
425 writel(BUF_PART_FULL, host->base + MMC_PRTBUF);
426 } else {
427 printk(KERN_ERR "%s: DMA error on channel %d (DCSR=%#x)\n",
428 mmc_hostname(host->mmc), dma, dcsr);
429 host->data->error = -EIO;
430 pxamci_data_done(host, 0);
431 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432}
433
David Howells7d12e782006-10-05 14:55:46 +0100434static irqreturn_t pxamci_detect_irq(int irq, void *devid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435{
Richard Purdiec26971c2005-09-08 22:48:16 +0100436 struct pxamci_host *host = mmc_priv(devid);
437
438 mmc_detect_change(devid, host->pdata->detect_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 return IRQ_HANDLED;
440}
441
Russell King3ae5eae2005-11-09 22:32:44 +0000442static int pxamci_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 struct mmc_host *mmc;
445 struct pxamci_host *host = NULL;
446 struct resource *r;
447 int ret, irq;
448
449 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
450 irq = platform_get_irq(pdev, 0);
David Vrabel48944732006-01-19 17:56:29 +0000451 if (!r || irq < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 return -ENXIO;
453
454 r = request_mem_region(r->start, SZ_4K, DRIVER_NAME);
455 if (!r)
456 return -EBUSY;
457
Russell King3ae5eae2005-11-09 22:32:44 +0000458 mmc = mmc_alloc_host(sizeof(struct pxamci_host), &pdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 if (!mmc) {
460 ret = -ENOMEM;
461 goto out;
462 }
463
464 mmc->ops = &pxamci_ops;
465 mmc->f_min = CLOCKRATE_MIN;
466 mmc->f_max = CLOCKRATE_MAX;
467
468 /*
469 * We can do SG-DMA, but we don't because we never know how much
470 * data we successfully wrote to the card.
471 */
472 mmc->max_phys_segs = NR_SG;
473
474 /*
475 * Our hardware DMA can handle a maximum of one page per SG entry.
476 */
477 mmc->max_seg_size = PAGE_SIZE;
478
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +0100479 /*
Nicolas Pitrefe2dc442007-09-24 15:47:18 -0400480 * Block length register is only 10 bits before PXA27x.
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +0100481 */
Nicolas Pitrefe2dc442007-09-24 15:47:18 -0400482 mmc->max_blk_size = (cpu_is_pxa21x() || cpu_is_pxa25x()) ? 1023 : 2048;
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +0100483
Pierre Ossman55db8902006-11-21 17:55:45 +0100484 /*
485 * Block count register is 16 bits.
486 */
487 mmc->max_blk_count = 65535;
488
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 host = mmc_priv(mmc);
490 host->mmc = mmc;
491 host->dma = -1;
492 host->pdata = pdev->dev.platform_data;
493 mmc->ocr_avail = host->pdata ?
494 host->pdata->ocr_mask :
495 MMC_VDD_32_33|MMC_VDD_33_34;
Bridge Wudf456f42007-09-25 19:09:19 +0200496 mmc->caps = 0;
Bridge Wu5d3ad4e2007-09-25 19:11:00 +0200497 host->cmdat = 0;
498 if (!cpu_is_pxa21x() && !cpu_is_pxa25x()) {
499 mmc->caps |= MMC_CAP_4_BIT_DATA | MMC_CAP_SDIO_IRQ;
500 host->cmdat |= CMDAT_SDIO_INT_EN;
501 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
Russell King3ae5eae2005-11-09 22:32:44 +0000503 host->sg_cpu = dma_alloc_coherent(&pdev->dev, PAGE_SIZE, &host->sg_dma, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 if (!host->sg_cpu) {
505 ret = -ENOMEM;
506 goto out;
507 }
508
509 spin_lock_init(&host->lock);
510 host->res = r;
511 host->irq = irq;
512 host->imask = MMC_I_MASK_ALL;
513
514 host->base = ioremap(r->start, SZ_4K);
515 if (!host->base) {
516 ret = -ENOMEM;
517 goto out;
518 }
519
520 /*
521 * Ensure that the host controller is shut down, and setup
522 * with our defaults.
523 */
524 pxamci_stop_clock(host);
525 writel(0, host->base + MMC_SPI);
526 writel(64, host->base + MMC_RESTO);
527 writel(host->imask, host->base + MMC_I_MASK);
528
529 host->dma = pxa_request_dma(DRIVER_NAME, DMA_PRIO_LOW,
530 pxamci_dma_irq, host);
531 if (host->dma < 0) {
532 ret = -EBUSY;
533 goto out;
534 }
535
536 ret = request_irq(host->irq, pxamci_irq, 0, DRIVER_NAME, host);
537 if (ret)
538 goto out;
539
Russell King3ae5eae2005-11-09 22:32:44 +0000540 platform_set_drvdata(pdev, mmc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
542 if (host->pdata && host->pdata->init)
Russell King3ae5eae2005-11-09 22:32:44 +0000543 host->pdata->init(&pdev->dev, pxamci_detect_irq, mmc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
545 mmc_add_host(mmc);
546
547 return 0;
548
549 out:
550 if (host) {
551 if (host->dma >= 0)
552 pxa_free_dma(host->dma);
553 if (host->base)
554 iounmap(host->base);
555 if (host->sg_cpu)
Russell King3ae5eae2005-11-09 22:32:44 +0000556 dma_free_coherent(&pdev->dev, PAGE_SIZE, host->sg_cpu, host->sg_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 }
558 if (mmc)
559 mmc_free_host(mmc);
560 release_resource(r);
561 return ret;
562}
563
Russell King3ae5eae2005-11-09 22:32:44 +0000564static int pxamci_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565{
Russell King3ae5eae2005-11-09 22:32:44 +0000566 struct mmc_host *mmc = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
Russell King3ae5eae2005-11-09 22:32:44 +0000568 platform_set_drvdata(pdev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
570 if (mmc) {
571 struct pxamci_host *host = mmc_priv(mmc);
572
573 if (host->pdata && host->pdata->exit)
Russell King3ae5eae2005-11-09 22:32:44 +0000574 host->pdata->exit(&pdev->dev, mmc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
576 mmc_remove_host(mmc);
577
578 pxamci_stop_clock(host);
579 writel(TXFIFO_WR_REQ|RXFIFO_RD_REQ|CLK_IS_OFF|STOP_CMD|
580 END_CMD_RES|PRG_DONE|DATA_TRAN_DONE,
581 host->base + MMC_I_MASK);
582
583 DRCMRRXMMC = 0;
584 DRCMRTXMMC = 0;
585
586 free_irq(host->irq, host);
587 pxa_free_dma(host->dma);
588 iounmap(host->base);
Russell King3ae5eae2005-11-09 22:32:44 +0000589 dma_free_coherent(&pdev->dev, PAGE_SIZE, host->sg_cpu, host->sg_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
591 release_resource(host->res);
592
593 mmc_free_host(mmc);
594 }
595 return 0;
596}
597
598#ifdef CONFIG_PM
Russell King3ae5eae2005-11-09 22:32:44 +0000599static int pxamci_suspend(struct platform_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600{
Russell King3ae5eae2005-11-09 22:32:44 +0000601 struct mmc_host *mmc = platform_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 int ret = 0;
603
Russell King9480e302005-10-28 09:52:56 -0700604 if (mmc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 ret = mmc_suspend_host(mmc, state);
606
607 return ret;
608}
609
Russell King3ae5eae2005-11-09 22:32:44 +0000610static int pxamci_resume(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611{
Russell King3ae5eae2005-11-09 22:32:44 +0000612 struct mmc_host *mmc = platform_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 int ret = 0;
614
Russell King9480e302005-10-28 09:52:56 -0700615 if (mmc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 ret = mmc_resume_host(mmc);
617
618 return ret;
619}
620#else
621#define pxamci_suspend NULL
622#define pxamci_resume NULL
623#endif
624
Russell King3ae5eae2005-11-09 22:32:44 +0000625static struct platform_driver pxamci_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 .probe = pxamci_probe,
627 .remove = pxamci_remove,
628 .suspend = pxamci_suspend,
629 .resume = pxamci_resume,
Russell King3ae5eae2005-11-09 22:32:44 +0000630 .driver = {
631 .name = DRIVER_NAME,
632 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633};
634
635static int __init pxamci_init(void)
636{
Russell King3ae5eae2005-11-09 22:32:44 +0000637 return platform_driver_register(&pxamci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638}
639
640static void __exit pxamci_exit(void)
641{
Russell King3ae5eae2005-11-09 22:32:44 +0000642 platform_driver_unregister(&pxamci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643}
644
645module_init(pxamci_init);
646module_exit(pxamci_exit);
647
648MODULE_DESCRIPTION("PXA Multimedia Card Interface Driver");
649MODULE_LICENSE("GPL");