blob: 3000422f4d8119ec363fd1eafefa34bd9f6573d1 [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>
Russell Kingebebd9b2007-08-20 10:20:03 +010026#include <linux/clk.h>
27#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/mmc/host.h>
Russell King05678a92008-11-28 16:04:54 +000029#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <asm/sizes.h>
32
Russell Kingdcea83a2008-11-29 11:40:28 +000033#include <mach/dma.h>
Russell King05678a92008-11-28 16:04:54 +000034#include <mach/hardware.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010035#include <mach/pxa-regs.h>
36#include <mach/mmc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38#include "pxamci.h"
39
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#define DRIVER_NAME "pxa2xx-mci"
41
42#define NR_SG 1
Russell Kingd8cb70d2007-10-26 17:56:40 +010043#define CLKRT_OFF (~0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45struct pxamci_host {
46 struct mmc_host *mmc;
47 spinlock_t lock;
48 struct resource *res;
49 void __iomem *base;
Russell Kingebebd9b2007-08-20 10:20:03 +010050 struct clk *clk;
51 unsigned long clkrate;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 int irq;
53 int dma;
54 unsigned int clkrt;
55 unsigned int cmdat;
56 unsigned int imask;
57 unsigned int power_mode;
58 struct pxamci_platform_data *pdata;
59
60 struct mmc_request *mrq;
61 struct mmc_command *cmd;
62 struct mmc_data *data;
63
64 dma_addr_t sg_dma;
65 struct pxa_dma_desc *sg_cpu;
66 unsigned int dma_len;
67
68 unsigned int dma_dir;
Bridge Wu9a788c62007-12-14 10:40:25 +010069 unsigned int dma_drcmrrx;
70 unsigned int dma_drcmrtx;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071};
72
Linus Torvalds1da177e2005-04-16 15:20:36 -070073static void pxamci_stop_clock(struct pxamci_host *host)
74{
75 if (readl(host->base + MMC_STAT) & STAT_CLK_EN) {
76 unsigned long timeout = 10000;
77 unsigned int v;
78
79 writel(STOP_CLOCK, host->base + MMC_STRPCL);
80
81 do {
82 v = readl(host->base + MMC_STAT);
83 if (!(v & STAT_CLK_EN))
84 break;
85 udelay(1);
86 } while (timeout--);
87
88 if (v & STAT_CLK_EN)
89 dev_err(mmc_dev(host->mmc), "unable to stop clock\n");
90 }
91}
92
93static void pxamci_enable_irq(struct pxamci_host *host, unsigned int mask)
94{
95 unsigned long flags;
96
97 spin_lock_irqsave(&host->lock, flags);
98 host->imask &= ~mask;
99 writel(host->imask, host->base + MMC_I_MASK);
100 spin_unlock_irqrestore(&host->lock, flags);
101}
102
103static void pxamci_disable_irq(struct pxamci_host *host, unsigned int mask)
104{
105 unsigned long flags;
106
107 spin_lock_irqsave(&host->lock, flags);
108 host->imask |= mask;
109 writel(host->imask, host->base + MMC_I_MASK);
110 spin_unlock_irqrestore(&host->lock, flags);
111}
112
113static void pxamci_setup_data(struct pxamci_host *host, struct mmc_data *data)
114{
115 unsigned int nob = data->blocks;
Russell King3d63abe2006-04-24 11:27:02 +0100116 unsigned long long clks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 unsigned int timeout;
Philipp Zabel97f85712008-07-06 01:15:34 +0200118 bool dalgn = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 u32 dcmd;
120 int i;
121
122 host->data = data;
123
124 if (data->flags & MMC_DATA_STREAM)
125 nob = 0xffff;
126
127 writel(nob, host->base + MMC_NOB);
Pavel Pisa2c171bf2006-05-19 21:48:03 +0100128 writel(data->blksz, host->base + MMC_BLKLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Russell Kingebebd9b2007-08-20 10:20:03 +0100130 clks = (unsigned long long)data->timeout_ns * host->clkrate;
Russell King3d63abe2006-04-24 11:27:02 +0100131 do_div(clks, 1000000000UL);
132 timeout = (unsigned int)clks + (data->timeout_clks << host->clkrt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 writel((timeout + 255) / 256, host->base + MMC_RDTO);
134
135 if (data->flags & MMC_DATA_READ) {
136 host->dma_dir = DMA_FROM_DEVICE;
137 dcmd = DCMD_INCTRGADDR | DCMD_FLOWTRG;
Bridge Wu9a788c62007-12-14 10:40:25 +0100138 DRCMR(host->dma_drcmrtx) = 0;
139 DRCMR(host->dma_drcmrrx) = host->dma | DRCMR_MAPVLD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 } else {
141 host->dma_dir = DMA_TO_DEVICE;
142 dcmd = DCMD_INCSRCADDR | DCMD_FLOWSRC;
Bridge Wu9a788c62007-12-14 10:40:25 +0100143 DRCMR(host->dma_drcmrrx) = 0;
144 DRCMR(host->dma_drcmrtx) = host->dma | DRCMR_MAPVLD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 }
146
147 dcmd |= DCMD_BURST32 | DCMD_WIDTH1;
148
149 host->dma_len = dma_map_sg(mmc_dev(host->mmc), data->sg, data->sg_len,
150 host->dma_dir);
151
152 for (i = 0; i < host->dma_len; i++) {
Nicolas Pitrec7838372007-10-09 17:07:58 -0400153 unsigned int length = sg_dma_len(&data->sg[i]);
154 host->sg_cpu[i].dcmd = dcmd | length;
155 if (length & 31 && !(data->flags & MMC_DATA_READ))
156 host->sg_cpu[i].dcmd |= DCMD_ENDIRQEN;
Philipp Zabel97f85712008-07-06 01:15:34 +0200157 /* Not aligned to 8-byte boundary? */
158 if (sg_dma_address(&data->sg[i]) & 0x7)
159 dalgn = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 if (data->flags & MMC_DATA_READ) {
161 host->sg_cpu[i].dsadr = host->res->start + MMC_RXFIFO;
162 host->sg_cpu[i].dtadr = sg_dma_address(&data->sg[i]);
163 } else {
164 host->sg_cpu[i].dsadr = sg_dma_address(&data->sg[i]);
165 host->sg_cpu[i].dtadr = host->res->start + MMC_TXFIFO;
166 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 host->sg_cpu[i].ddadr = host->sg_dma + (i + 1) *
168 sizeof(struct pxa_dma_desc);
169 }
170 host->sg_cpu[host->dma_len - 1].ddadr = DDADR_STOP;
171 wmb();
172
Philipp Zabel97f85712008-07-06 01:15:34 +0200173 /*
174 * The PXA27x DMA controller encounters overhead when working with
175 * unaligned (to 8-byte boundaries) data, so switch on byte alignment
176 * mode only if we have unaligned data.
177 */
178 if (dalgn)
179 DALGN |= (1 << host->dma);
180 else
Karl Beldan4fe16892008-07-16 18:29:11 +0200181 DALGN &= ~(1 << host->dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 DDADR(host->dma) = host->sg_dma;
183 DCSR(host->dma) = DCSR_RUN;
184}
185
186static void pxamci_start_cmd(struct pxamci_host *host, struct mmc_command *cmd, unsigned int cmdat)
187{
188 WARN_ON(host->cmd != NULL);
189 host->cmd = cmd;
190
191 if (cmd->flags & MMC_RSP_BUSY)
192 cmdat |= CMDAT_BUSY;
193
Russell Kinge9225172006-02-02 12:23:12 +0000194#define RSP_TYPE(x) ((x) & ~(MMC_RSP_BUSY|MMC_RSP_OPCODE))
195 switch (RSP_TYPE(mmc_resp_type(cmd))) {
Philip Langdale6f949902007-01-04 07:04:47 -0800196 case RSP_TYPE(MMC_RSP_R1): /* r1, r1b, r6, r7 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 cmdat |= CMDAT_RESP_SHORT;
198 break;
Russell Kinge9225172006-02-02 12:23:12 +0000199 case RSP_TYPE(MMC_RSP_R3):
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 cmdat |= CMDAT_RESP_R3;
201 break;
Russell Kinge9225172006-02-02 12:23:12 +0000202 case RSP_TYPE(MMC_RSP_R2):
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 cmdat |= CMDAT_RESP_R2;
204 break;
205 default:
206 break;
207 }
208
209 writel(cmd->opcode, host->base + MMC_CMD);
210 writel(cmd->arg >> 16, host->base + MMC_ARGH);
211 writel(cmd->arg & 0xffff, host->base + MMC_ARGL);
212 writel(cmdat, host->base + MMC_CMDAT);
213 writel(host->clkrt, host->base + MMC_CLKRT);
214
215 writel(START_CLOCK, host->base + MMC_STRPCL);
216
217 pxamci_enable_irq(host, END_CMD_RES);
218}
219
220static void pxamci_finish_request(struct pxamci_host *host, struct mmc_request *mrq)
221{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 host->mrq = NULL;
223 host->cmd = NULL;
224 host->data = NULL;
225 mmc_request_done(host->mmc, mrq);
226}
227
228static int pxamci_cmd_done(struct pxamci_host *host, unsigned int stat)
229{
230 struct mmc_command *cmd = host->cmd;
231 int i;
232 u32 v;
233
234 if (!cmd)
235 return 0;
236
237 host->cmd = NULL;
238
239 /*
240 * Did I mention this is Sick. We always need to
241 * discard the upper 8 bits of the first 16-bit word.
242 */
243 v = readl(host->base + MMC_RES) & 0xffff;
244 for (i = 0; i < 4; i++) {
245 u32 w1 = readl(host->base + MMC_RES) & 0xffff;
246 u32 w2 = readl(host->base + MMC_RES) & 0xffff;
247 cmd->resp[i] = v << 24 | w1 << 8 | w2 >> 8;
248 v = w2;
249 }
250
251 if (stat & STAT_TIME_OUT_RESPONSE) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200252 cmd->error = -ETIMEDOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 } else if (stat & STAT_RES_CRC_ERR && cmd->flags & MMC_RSP_CRC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 /*
255 * workaround for erratum #42:
256 * Intel PXA27x Family Processor Specification Update Rev 001
Nicolas Pitre90e07d92007-05-13 18:03:08 +0200257 * A bogus CRC error can appear if the msb of a 136 bit
258 * response is a one.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 */
Cliff Brakee10a8542009-01-22 16:58:58 -0500260 if (cpu_is_pxa27x() &&
261 (cmd->flags & MMC_RSP_136 && cmd->resp[0] & 0x80000000))
Nicolas Pitre90e07d92007-05-13 18:03:08 +0200262 pr_debug("ignoring CRC from command %d - *risky*\n", cmd->opcode);
Cliff Brakee10a8542009-01-22 16:58:58 -0500263 else
264 cmd->error = -EILSEQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 }
266
267 pxamci_disable_irq(host, END_CMD_RES);
Pierre Ossman17b04292007-07-22 22:18:46 +0200268 if (host->data && !cmd->error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 pxamci_enable_irq(host, DATA_TRAN_DONE);
270 } else {
271 pxamci_finish_request(host, host->mrq);
272 }
273
274 return 1;
275}
276
277static int pxamci_data_done(struct pxamci_host *host, unsigned int stat)
278{
279 struct mmc_data *data = host->data;
280
281 if (!data)
282 return 0;
283
284 DCSR(host->dma) = 0;
Vernon Sauderc00a46a2008-12-29 19:21:28 -0500285 dma_unmap_sg(mmc_dev(host->mmc), data->sg, data->sg_len,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 host->dma_dir);
287
288 if (stat & STAT_READ_TIME_OUT)
Pierre Ossman17b04292007-07-22 22:18:46 +0200289 data->error = -ETIMEDOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 else if (stat & (STAT_CRC_READ_ERROR|STAT_CRC_WRITE_ERROR))
Pierre Ossman17b04292007-07-22 22:18:46 +0200291 data->error = -EILSEQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
293 /*
294 * There appears to be a hardware design bug here. There seems to
295 * be no way to find out how much data was transferred to the card.
296 * This means that if there was an error on any block, we mark all
297 * data blocks as being in error.
298 */
Pierre Ossman17b04292007-07-22 22:18:46 +0200299 if (!data->error)
Pavel Pisa2c171bf2006-05-19 21:48:03 +0100300 data->bytes_xfered = data->blocks * data->blksz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 else
302 data->bytes_xfered = 0;
303
304 pxamci_disable_irq(host, DATA_TRAN_DONE);
305
306 host->data = NULL;
Russell King58741e82006-05-02 20:02:39 +0100307 if (host->mrq->stop) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 pxamci_stop_clock(host);
Bridge Wudf456f42007-09-25 19:09:19 +0200309 pxamci_start_cmd(host, host->mrq->stop, host->cmdat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 } else {
311 pxamci_finish_request(host, host->mrq);
312 }
313
314 return 1;
315}
316
David Howells7d12e782006-10-05 14:55:46 +0100317static irqreturn_t pxamci_irq(int irq, void *devid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318{
319 struct pxamci_host *host = devid;
320 unsigned int ireg;
321 int handled = 0;
322
Bridge Wu81ab570f2007-09-25 18:59:07 +0200323 ireg = readl(host->base + MMC_I_REG) & ~readl(host->base + MMC_I_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 if (ireg) {
326 unsigned stat = readl(host->base + MMC_STAT);
327
Russell Kingd78e9072006-05-02 20:18:53 +0100328 pr_debug("PXAMCI: irq %08x stat %08x\n", ireg, stat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
330 if (ireg & END_CMD_RES)
331 handled |= pxamci_cmd_done(host, stat);
332 if (ireg & DATA_TRAN_DONE)
333 handled |= pxamci_data_done(host, stat);
Bridge Wu5d3ad4e2007-09-25 19:11:00 +0200334 if (ireg & SDIO_INT) {
335 mmc_signal_sdio_irq(host->mmc);
336 handled = 1;
337 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 }
339
340 return IRQ_RETVAL(handled);
341}
342
343static void pxamci_request(struct mmc_host *mmc, struct mmc_request *mrq)
344{
345 struct pxamci_host *host = mmc_priv(mmc);
346 unsigned int cmdat;
347
348 WARN_ON(host->mrq != NULL);
349
350 host->mrq = mrq;
351
352 pxamci_stop_clock(host);
353
354 cmdat = host->cmdat;
355 host->cmdat &= ~CMDAT_INIT;
356
357 if (mrq->data) {
358 pxamci_setup_data(host, mrq->data);
359
360 cmdat &= ~CMDAT_BUSY;
361 cmdat |= CMDAT_DATAEN | CMDAT_DMAEN;
362 if (mrq->data->flags & MMC_DATA_WRITE)
363 cmdat |= CMDAT_WRITE;
364
365 if (mrq->data->flags & MMC_DATA_STREAM)
366 cmdat |= CMDAT_STREAM;
367 }
368
369 pxamci_start_cmd(host, mrq->cmd, cmdat);
370}
371
Richard Purdiee6195242005-09-06 15:18:56 -0700372static int pxamci_get_ro(struct mmc_host *mmc)
373{
374 struct pxamci_host *host = mmc_priv(mmc);
375
376 if (host->pdata && host->pdata->get_ro)
Anton Vorontsov08f80bb2008-06-17 18:17:39 +0400377 return !!host->pdata->get_ro(mmc_dev(mmc));
378 /*
379 * Board doesn't support read only detection; let the mmc core
380 * decide what to do.
381 */
382 return -ENOSYS;
Richard Purdiee6195242005-09-06 15:18:56 -0700383}
384
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385static void pxamci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
386{
387 struct pxamci_host *host = mmc_priv(mmc);
388
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 if (ios->clock) {
Russell Kingebebd9b2007-08-20 10:20:03 +0100390 unsigned long rate = host->clkrate;
391 unsigned int clk = rate / ios->clock;
392
Russell Kingd8cb70d2007-10-26 17:56:40 +0100393 if (host->clkrt == CLKRT_OFF)
394 clk_enable(host->clk);
395
Bridge Wu64eb0362007-12-13 07:24:30 +0100396 if (ios->clock == 26000000) {
397 /* to support 26MHz on pxa300/pxa310 */
398 host->clkrt = 7;
399 } else {
400 /* to handle (19.5MHz, 26MHz) */
401 if (!clk)
402 clk = 1;
403
404 /*
405 * clk might result in a lower divisor than we
406 * desire. check for that condition and adjust
407 * as appropriate.
408 */
409 if (rate / clk > ios->clock)
410 clk <<= 1;
411 host->clkrt = fls(clk) - 1;
412 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
414 /*
415 * we write clkrt on the next command
416 */
417 } else {
418 pxamci_stop_clock(host);
Russell Kingd8cb70d2007-10-26 17:56:40 +0100419 if (host->clkrt != CLKRT_OFF) {
420 host->clkrt = CLKRT_OFF;
421 clk_disable(host->clk);
422 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 }
424
425 if (host->power_mode != ios->power_mode) {
426 host->power_mode = ios->power_mode;
427
428 if (host->pdata && host->pdata->setpower)
Sascha Hauer9e866192006-12-05 07:41:09 +0100429 host->pdata->setpower(mmc_dev(mmc), ios->vdd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
431 if (ios->power_mode == MMC_POWER_ON)
432 host->cmdat |= CMDAT_INIT;
433 }
434
Bridge Wudf456f42007-09-25 19:09:19 +0200435 if (ios->bus_width == MMC_BUS_WIDTH_4)
436 host->cmdat |= CMDAT_SD_4DAT;
437 else
438 host->cmdat &= ~CMDAT_SD_4DAT;
439
Russell Kingd78e9072006-05-02 20:18:53 +0100440 pr_debug("PXAMCI: clkrt = %x cmdat = %x\n",
Russell Kingc6563172006-03-29 09:30:20 +0100441 host->clkrt, host->cmdat);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442}
443
Bridge Wu5d3ad4e2007-09-25 19:11:00 +0200444static void pxamci_enable_sdio_irq(struct mmc_host *host, int enable)
445{
446 struct pxamci_host *pxa_host = mmc_priv(host);
447
448 if (enable)
449 pxamci_enable_irq(pxa_host, SDIO_INT);
450 else
451 pxamci_disable_irq(pxa_host, SDIO_INT);
452}
453
David Brownellab7aefd2006-11-12 17:55:30 -0800454static const struct mmc_host_ops pxamci_ops = {
Bridge Wu5d3ad4e2007-09-25 19:11:00 +0200455 .request = pxamci_request,
456 .get_ro = pxamci_get_ro,
457 .set_ios = pxamci_set_ios,
458 .enable_sdio_irq = pxamci_enable_sdio_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459};
460
David Howells7d12e782006-10-05 14:55:46 +0100461static void pxamci_dma_irq(int dma, void *devid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462{
Nicolas Pitrec7838372007-10-09 17:07:58 -0400463 struct pxamci_host *host = devid;
464 int dcsr = DCSR(dma);
465 DCSR(dma) = dcsr & ~DCSR_STOPIRQEN;
466
467 if (dcsr & DCSR_ENDINTR) {
468 writel(BUF_PART_FULL, host->base + MMC_PRTBUF);
469 } else {
470 printk(KERN_ERR "%s: DMA error on channel %d (DCSR=%#x)\n",
471 mmc_hostname(host->mmc), dma, dcsr);
472 host->data->error = -EIO;
473 pxamci_data_done(host, 0);
474 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475}
476
David Howells7d12e782006-10-05 14:55:46 +0100477static irqreturn_t pxamci_detect_irq(int irq, void *devid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478{
Richard Purdiec26971c2005-09-08 22:48:16 +0100479 struct pxamci_host *host = mmc_priv(devid);
480
481 mmc_detect_change(devid, host->pdata->detect_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 return IRQ_HANDLED;
483}
484
Russell King3ae5eae2005-11-09 22:32:44 +0000485static int pxamci_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 struct mmc_host *mmc;
488 struct pxamci_host *host = NULL;
Bridge Wu9a788c62007-12-14 10:40:25 +0100489 struct resource *r, *dmarx, *dmatx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 int ret, irq;
491
492 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
493 irq = platform_get_irq(pdev, 0);
David Vrabel48944732006-01-19 17:56:29 +0000494 if (!r || irq < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 return -ENXIO;
496
497 r = request_mem_region(r->start, SZ_4K, DRIVER_NAME);
498 if (!r)
499 return -EBUSY;
500
Russell King3ae5eae2005-11-09 22:32:44 +0000501 mmc = mmc_alloc_host(sizeof(struct pxamci_host), &pdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 if (!mmc) {
503 ret = -ENOMEM;
504 goto out;
505 }
506
507 mmc->ops = &pxamci_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
509 /*
510 * We can do SG-DMA, but we don't because we never know how much
511 * data we successfully wrote to the card.
512 */
513 mmc->max_phys_segs = NR_SG;
514
515 /*
516 * Our hardware DMA can handle a maximum of one page per SG entry.
517 */
518 mmc->max_seg_size = PAGE_SIZE;
519
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +0100520 /*
Nicolas Pitrefe2dc442007-09-24 15:47:18 -0400521 * Block length register is only 10 bits before PXA27x.
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +0100522 */
Eric Miao0ffcbfd2008-09-11 10:27:30 +0800523 mmc->max_blk_size = cpu_is_pxa25x() ? 1023 : 2048;
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +0100524
Pierre Ossman55db8902006-11-21 17:55:45 +0100525 /*
526 * Block count register is 16 bits.
527 */
528 mmc->max_blk_count = 65535;
529
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 host = mmc_priv(mmc);
531 host->mmc = mmc;
532 host->dma = -1;
533 host->pdata = pdev->dev.platform_data;
Russell Kingd8cb70d2007-10-26 17:56:40 +0100534 host->clkrt = CLKRT_OFF;
Russell Kingebebd9b2007-08-20 10:20:03 +0100535
Russell Kinge0d8b132008-11-11 17:52:32 +0000536 host->clk = clk_get(&pdev->dev, NULL);
Russell Kingebebd9b2007-08-20 10:20:03 +0100537 if (IS_ERR(host->clk)) {
538 ret = PTR_ERR(host->clk);
539 host->clk = NULL;
540 goto out;
541 }
542
543 host->clkrate = clk_get_rate(host->clk);
544
545 /*
546 * Calculate minimum clock rate, rounding up.
547 */
548 mmc->f_min = (host->clkrate + 63) / 64;
Bridge Wu64eb0362007-12-13 07:24:30 +0100549 mmc->f_max = (cpu_is_pxa300() || cpu_is_pxa310()) ? 26000000
550 : host->clkrate;
Russell Kingebebd9b2007-08-20 10:20:03 +0100551
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 mmc->ocr_avail = host->pdata ?
553 host->pdata->ocr_mask :
554 MMC_VDD_32_33|MMC_VDD_33_34;
Bridge Wudf456f42007-09-25 19:09:19 +0200555 mmc->caps = 0;
Bridge Wu5d3ad4e2007-09-25 19:11:00 +0200556 host->cmdat = 0;
Eric Miao0ffcbfd2008-09-11 10:27:30 +0800557 if (!cpu_is_pxa25x()) {
Bridge Wu5d3ad4e2007-09-25 19:11:00 +0200558 mmc->caps |= MMC_CAP_4_BIT_DATA | MMC_CAP_SDIO_IRQ;
559 host->cmdat |= CMDAT_SDIO_INT_EN;
Bridge Wu64eb0362007-12-13 07:24:30 +0100560 if (cpu_is_pxa300() || cpu_is_pxa310())
561 mmc->caps |= MMC_CAP_MMC_HIGHSPEED |
562 MMC_CAP_SD_HIGHSPEED;
Bridge Wu5d3ad4e2007-09-25 19:11:00 +0200563 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
Russell King3ae5eae2005-11-09 22:32:44 +0000565 host->sg_cpu = dma_alloc_coherent(&pdev->dev, PAGE_SIZE, &host->sg_dma, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 if (!host->sg_cpu) {
567 ret = -ENOMEM;
568 goto out;
569 }
570
571 spin_lock_init(&host->lock);
572 host->res = r;
573 host->irq = irq;
574 host->imask = MMC_I_MASK_ALL;
575
576 host->base = ioremap(r->start, SZ_4K);
577 if (!host->base) {
578 ret = -ENOMEM;
579 goto out;
580 }
581
582 /*
583 * Ensure that the host controller is shut down, and setup
584 * with our defaults.
585 */
586 pxamci_stop_clock(host);
587 writel(0, host->base + MMC_SPI);
588 writel(64, host->base + MMC_RESTO);
589 writel(host->imask, host->base + MMC_I_MASK);
590
591 host->dma = pxa_request_dma(DRIVER_NAME, DMA_PRIO_LOW,
592 pxamci_dma_irq, host);
593 if (host->dma < 0) {
594 ret = -EBUSY;
595 goto out;
596 }
597
598 ret = request_irq(host->irq, pxamci_irq, 0, DRIVER_NAME, host);
599 if (ret)
600 goto out;
601
Russell King3ae5eae2005-11-09 22:32:44 +0000602 platform_set_drvdata(pdev, mmc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Bridge Wu9a788c62007-12-14 10:40:25 +0100604 dmarx = platform_get_resource(pdev, IORESOURCE_DMA, 0);
605 if (!dmarx) {
606 ret = -ENXIO;
607 goto out;
608 }
609 host->dma_drcmrrx = dmarx->start;
610
611 dmatx = platform_get_resource(pdev, IORESOURCE_DMA, 1);
612 if (!dmatx) {
613 ret = -ENXIO;
614 goto out;
615 }
616 host->dma_drcmrtx = dmatx->start;
617
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 if (host->pdata && host->pdata->init)
Russell King3ae5eae2005-11-09 22:32:44 +0000619 host->pdata->init(&pdev->dev, pxamci_detect_irq, mmc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
621 mmc_add_host(mmc);
622
623 return 0;
624
625 out:
626 if (host) {
627 if (host->dma >= 0)
628 pxa_free_dma(host->dma);
629 if (host->base)
630 iounmap(host->base);
631 if (host->sg_cpu)
Russell King3ae5eae2005-11-09 22:32:44 +0000632 dma_free_coherent(&pdev->dev, PAGE_SIZE, host->sg_cpu, host->sg_dma);
Russell Kingebebd9b2007-08-20 10:20:03 +0100633 if (host->clk)
634 clk_put(host->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 }
636 if (mmc)
637 mmc_free_host(mmc);
638 release_resource(r);
639 return ret;
640}
641
Russell King3ae5eae2005-11-09 22:32:44 +0000642static int pxamci_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643{
Russell King3ae5eae2005-11-09 22:32:44 +0000644 struct mmc_host *mmc = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
Russell King3ae5eae2005-11-09 22:32:44 +0000646 platform_set_drvdata(pdev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
648 if (mmc) {
649 struct pxamci_host *host = mmc_priv(mmc);
650
651 if (host->pdata && host->pdata->exit)
Russell King3ae5eae2005-11-09 22:32:44 +0000652 host->pdata->exit(&pdev->dev, mmc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
654 mmc_remove_host(mmc);
655
656 pxamci_stop_clock(host);
657 writel(TXFIFO_WR_REQ|RXFIFO_RD_REQ|CLK_IS_OFF|STOP_CMD|
658 END_CMD_RES|PRG_DONE|DATA_TRAN_DONE,
659 host->base + MMC_I_MASK);
660
Bridge Wu9a788c62007-12-14 10:40:25 +0100661 DRCMR(host->dma_drcmrrx) = 0;
662 DRCMR(host->dma_drcmrtx) = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
664 free_irq(host->irq, host);
665 pxa_free_dma(host->dma);
666 iounmap(host->base);
Russell King3ae5eae2005-11-09 22:32:44 +0000667 dma_free_coherent(&pdev->dev, PAGE_SIZE, host->sg_cpu, host->sg_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
Russell Kingebebd9b2007-08-20 10:20:03 +0100669 clk_put(host->clk);
670
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 release_resource(host->res);
672
673 mmc_free_host(mmc);
674 }
675 return 0;
676}
677
678#ifdef CONFIG_PM
Russell King3ae5eae2005-11-09 22:32:44 +0000679static int pxamci_suspend(struct platform_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680{
Russell King3ae5eae2005-11-09 22:32:44 +0000681 struct mmc_host *mmc = platform_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 int ret = 0;
683
Russell King9480e302005-10-28 09:52:56 -0700684 if (mmc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 ret = mmc_suspend_host(mmc, state);
686
687 return ret;
688}
689
Russell King3ae5eae2005-11-09 22:32:44 +0000690static int pxamci_resume(struct platform_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691{
Russell King3ae5eae2005-11-09 22:32:44 +0000692 struct mmc_host *mmc = platform_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 int ret = 0;
694
Russell King9480e302005-10-28 09:52:56 -0700695 if (mmc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 ret = mmc_resume_host(mmc);
697
698 return ret;
699}
700#else
701#define pxamci_suspend NULL
702#define pxamci_resume NULL
703#endif
704
Russell King3ae5eae2005-11-09 22:32:44 +0000705static struct platform_driver pxamci_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 .probe = pxamci_probe,
707 .remove = pxamci_remove,
708 .suspend = pxamci_suspend,
709 .resume = pxamci_resume,
Russell King3ae5eae2005-11-09 22:32:44 +0000710 .driver = {
711 .name = DRIVER_NAME,
Kay Sieversbc65c722008-04-15 14:34:28 -0700712 .owner = THIS_MODULE,
Russell King3ae5eae2005-11-09 22:32:44 +0000713 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714};
715
716static int __init pxamci_init(void)
717{
Russell King3ae5eae2005-11-09 22:32:44 +0000718 return platform_driver_register(&pxamci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719}
720
721static void __exit pxamci_exit(void)
722{
Russell King3ae5eae2005-11-09 22:32:44 +0000723 platform_driver_unregister(&pxamci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724}
725
726module_init(pxamci_init);
727module_exit(pxamci_exit);
728
729MODULE_DESCRIPTION("PXA Multimedia Card Interface Driver");
730MODULE_LICENSE("GPL");
Kay Sieversbc65c722008-04-15 14:34:28 -0700731MODULE_ALIAS("platform:pxa2xx-mci");