blob: 7e70c1a06d8ad6711a58661f00e9029b95a1fc6c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Pierre Ossman70f10482007-07-11 20:04:50 +02002 * linux/drivers/mmc/host/mmci.c - ARM PrimeCell MMCI PL180/1 driver
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Copyright (C) 2003 Deep Blue Solutions, Ltd, All Rights Reserved.
Linus Walleij64de0282010-02-19 01:09:10 +01005 * Copyright (C) 2010 ST-Ericsson AB.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/module.h>
12#include <linux/moduleparam.h>
13#include <linux/init.h>
14#include <linux/ioport.h>
15#include <linux/device.h>
16#include <linux/interrupt.h>
17#include <linux/delay.h>
18#include <linux/err.h>
19#include <linux/highmem.h>
Nicolas Pitre019a5f52007-10-11 01:06:03 -040020#include <linux/log2.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/mmc/host.h>
Russell Kinga62c80e2006-01-07 13:52:45 +000022#include <linux/amba/bus.h>
Russell Kingf8ce2542006-01-07 16:15:52 +000023#include <linux/clk.h>
Jens Axboebd6dee62007-10-24 09:01:09 +020024#include <linux/scatterlist.h>
Russell King89001442009-07-09 15:16:07 +010025#include <linux/gpio.h>
Linus Walleij6ef297f2009-09-22 14:29:36 +010026#include <linux/amba/mmci.h>
Linus Walleij34e84f32009-09-22 14:41:40 +010027#include <linux/regulator/consumer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Russell Kinge9c091b2006-01-04 16:24:05 +000029#include <asm/cacheflush.h>
Russell King7b09cda2005-07-01 12:02:59 +010030#include <asm/div64.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <asm/io.h>
Russell Kingc6b8fda2005-10-28 14:05:16 +010032#include <asm/sizes.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34#include "mmci.h"
35
36#define DRIVER_NAME "mmci-pl18x"
37
Linus Torvalds1da177e2005-04-16 15:20:36 -070038static unsigned int fmax = 515633;
39
Linus Walleija6a64642009-09-14 12:56:14 +010040/*
41 * This must be called with host->lock held
42 */
43static void mmci_set_clkreg(struct mmci_host *host, unsigned int desired)
44{
45 u32 clk = 0;
46
47 if (desired) {
48 if (desired >= host->mclk) {
49 clk = MCI_CLK_BYPASS;
50 host->cclk = host->mclk;
51 } else {
52 clk = host->mclk / (2 * desired) - 1;
53 if (clk >= 256)
54 clk = 255;
55 host->cclk = host->mclk / (2 * (clk + 1));
56 }
Linus Walleijb43149c2009-11-10 08:33:01 +010057 if (host->hw_designer == AMBA_VENDOR_ST)
Linus Walleij771dc152010-04-08 07:38:52 +010058 clk |= MCI_ST_FCEN; /* Bug fix in ST IP block */
Linus Walleija6a64642009-09-14 12:56:14 +010059 clk |= MCI_CLK_ENABLE;
60 /* This hasn't proven to be worthwhile */
61 /* clk |= MCI_CLK_PWRSAVE; */
62 }
63
Linus Walleij9e6c82c2009-09-14 12:57:11 +010064 if (host->mmc->ios.bus_width == MMC_BUS_WIDTH_4)
Linus Walleij771dc152010-04-08 07:38:52 +010065 clk |= MCI_4BIT_BUS;
66 if (host->mmc->ios.bus_width == MMC_BUS_WIDTH_8)
67 clk |= MCI_ST_8BIT_BUS;
Linus Walleij9e6c82c2009-09-14 12:57:11 +010068
Linus Walleija6a64642009-09-14 12:56:14 +010069 writel(clk, host->base + MMCICLOCK);
70}
71
Linus Torvalds1da177e2005-04-16 15:20:36 -070072static void
73mmci_request_end(struct mmci_host *host, struct mmc_request *mrq)
74{
75 writel(0, host->base + MMCICOMMAND);
76
Russell Kinge47c2222007-01-08 16:42:51 +000077 BUG_ON(host->data);
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 host->mrq = NULL;
80 host->cmd = NULL;
81
82 if (mrq->data)
83 mrq->data->bytes_xfered = host->data_xfered;
84
85 /*
86 * Need to drop the host lock here; mmc_request_done may call
87 * back into the driver...
88 */
89 spin_unlock(&host->lock);
90 mmc_request_done(host->mmc, mrq);
91 spin_lock(&host->lock);
92}
93
94static void mmci_stop_data(struct mmci_host *host)
95{
96 writel(0, host->base + MMCIDATACTRL);
97 writel(0, host->base + MMCIMASK1);
98 host->data = NULL;
99}
100
101static void mmci_start_data(struct mmci_host *host, struct mmc_data *data)
102{
103 unsigned int datactrl, timeout, irqmask;
Russell King7b09cda2005-07-01 12:02:59 +0100104 unsigned long long clks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 void __iomem *base;
Russell King3bc87f22006-08-27 13:51:28 +0100106 int blksz_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Linus Walleij64de0282010-02-19 01:09:10 +0100108 dev_dbg(mmc_dev(host->mmc), "blksz %04x blks %04x flags %08x\n",
109 data->blksz, data->blocks, data->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111 host->data = data;
Russell King3bc87f22006-08-27 13:51:28 +0100112 host->size = data->blksz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 host->data_xfered = 0;
114
115 mmci_init_sg(host, data);
116
Russell King7b09cda2005-07-01 12:02:59 +0100117 clks = (unsigned long long)data->timeout_ns * host->cclk;
118 do_div(clks, 1000000000UL);
119
120 timeout = data->timeout_clks + (unsigned int)clks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
122 base = host->base;
123 writel(timeout, base + MMCIDATATIMER);
124 writel(host->size, base + MMCIDATALENGTH);
125
Russell King3bc87f22006-08-27 13:51:28 +0100126 blksz_bits = ffs(data->blksz) - 1;
127 BUG_ON(1 << blksz_bits != data->blksz);
128
129 datactrl = MCI_DPSM_ENABLE | blksz_bits << 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 if (data->flags & MMC_DATA_READ) {
131 datactrl |= MCI_DPSM_DIRECTION;
132 irqmask = MCI_RXFIFOHALFFULLMASK;
Russell King0425a142006-02-16 16:48:31 +0000133
134 /*
135 * If we have less than a FIFOSIZE of bytes to transfer,
136 * trigger a PIO interrupt as soon as any data is available.
137 */
138 if (host->size < MCI_FIFOSIZE)
139 irqmask |= MCI_RXDATAAVLBLMASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 } else {
141 /*
142 * We don't actually need to include "FIFO empty" here
143 * since its implicit in "FIFO half empty".
144 */
145 irqmask = MCI_TXFIFOHALFEMPTYMASK;
146 }
147
148 writel(datactrl, base + MMCIDATACTRL);
149 writel(readl(base + MMCIMASK0) & ~MCI_DATAENDMASK, base + MMCIMASK0);
150 writel(irqmask, base + MMCIMASK1);
151}
152
153static void
154mmci_start_command(struct mmci_host *host, struct mmc_command *cmd, u32 c)
155{
156 void __iomem *base = host->base;
157
Linus Walleij64de0282010-02-19 01:09:10 +0100158 dev_dbg(mmc_dev(host->mmc), "op %02x arg %08x flags %08x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 cmd->opcode, cmd->arg, cmd->flags);
160
161 if (readl(base + MMCICOMMAND) & MCI_CPSM_ENABLE) {
162 writel(0, base + MMCICOMMAND);
163 udelay(1);
164 }
165
166 c |= cmd->opcode | MCI_CPSM_ENABLE;
Russell Kinge9225172006-02-02 12:23:12 +0000167 if (cmd->flags & MMC_RSP_PRESENT) {
168 if (cmd->flags & MMC_RSP_136)
169 c |= MCI_CPSM_LONGRSP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 c |= MCI_CPSM_RESPONSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 }
172 if (/*interrupt*/0)
173 c |= MCI_CPSM_INTERRUPT;
174
175 host->cmd = cmd;
176
177 writel(cmd->arg, base + MMCIARGUMENT);
178 writel(c, base + MMCICOMMAND);
179}
180
181static void
182mmci_data_irq(struct mmci_host *host, struct mmc_data *data,
183 unsigned int status)
184{
185 if (status & MCI_DATABLOCKEND) {
Russell King3bc87f22006-08-27 13:51:28 +0100186 host->data_xfered += data->blksz;
Linus Walleijf28e8a42010-01-25 07:14:46 +0100187#ifdef CONFIG_ARCH_U300
188 /*
189 * On the U300 some signal or other is
190 * badly routed so that a data write does
191 * not properly terminate with a MCI_DATAEND
192 * status flag. This quirk will make writes
193 * work again.
194 */
195 if (data->flags & MMC_DATA_WRITE)
196 status |= MCI_DATAEND;
197#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 }
199 if (status & (MCI_DATACRCFAIL|MCI_DATATIMEOUT|MCI_TXUNDERRUN|MCI_RXOVERRUN)) {
Linus Walleij64de0282010-02-19 01:09:10 +0100200 dev_dbg(mmc_dev(host->mmc), "MCI ERROR IRQ (status %08x)\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 if (status & MCI_DATACRCFAIL)
Pierre Ossman17b04292007-07-22 22:18:46 +0200202 data->error = -EILSEQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 else if (status & MCI_DATATIMEOUT)
Pierre Ossman17b04292007-07-22 22:18:46 +0200204 data->error = -ETIMEDOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 else if (status & (MCI_TXUNDERRUN|MCI_RXOVERRUN))
Pierre Ossman17b04292007-07-22 22:18:46 +0200206 data->error = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 status |= MCI_DATAEND;
Russell Kinge9c091b2006-01-04 16:24:05 +0000208
209 /*
210 * We hit an error condition. Ensure that any data
211 * partially written to a page is properly coherent.
212 */
213 if (host->sg_len && data->flags & MMC_DATA_READ)
Jens Axboebd6dee62007-10-24 09:01:09 +0200214 flush_dcache_page(sg_page(host->sg_ptr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 }
216 if (status & MCI_DATAEND) {
217 mmci_stop_data(host);
218
219 if (!data->stop) {
220 mmci_request_end(host, data->mrq);
221 } else {
222 mmci_start_command(host, data->stop, 0);
223 }
224 }
225}
226
227static void
228mmci_cmd_irq(struct mmci_host *host, struct mmc_command *cmd,
229 unsigned int status)
230{
231 void __iomem *base = host->base;
232
233 host->cmd = NULL;
234
235 cmd->resp[0] = readl(base + MMCIRESPONSE0);
236 cmd->resp[1] = readl(base + MMCIRESPONSE1);
237 cmd->resp[2] = readl(base + MMCIRESPONSE2);
238 cmd->resp[3] = readl(base + MMCIRESPONSE3);
239
240 if (status & MCI_CMDTIMEOUT) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200241 cmd->error = -ETIMEDOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 } else if (status & MCI_CMDCRCFAIL && cmd->flags & MMC_RSP_CRC) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200243 cmd->error = -EILSEQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 }
245
Pierre Ossman17b04292007-07-22 22:18:46 +0200246 if (!cmd->data || cmd->error) {
Russell Kinge47c2222007-01-08 16:42:51 +0000247 if (host->data)
248 mmci_stop_data(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 mmci_request_end(host, cmd->mrq);
250 } else if (!(cmd->data->flags & MMC_DATA_READ)) {
251 mmci_start_data(host, cmd->data);
252 }
253}
254
255static int mmci_pio_read(struct mmci_host *host, char *buffer, unsigned int remain)
256{
257 void __iomem *base = host->base;
258 char *ptr = buffer;
259 u32 status;
Linus Walleij26eed9a2008-04-26 23:39:44 +0100260 int host_remain = host->size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
262 do {
Linus Walleij26eed9a2008-04-26 23:39:44 +0100263 int count = host_remain - (readl(base + MMCIFIFOCNT) << 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
265 if (count > remain)
266 count = remain;
267
268 if (count <= 0)
269 break;
270
271 readsl(base + MMCIFIFO, ptr, count >> 2);
272
273 ptr += count;
274 remain -= count;
Linus Walleij26eed9a2008-04-26 23:39:44 +0100275 host_remain -= count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
277 if (remain == 0)
278 break;
279
280 status = readl(base + MMCISTATUS);
281 } while (status & MCI_RXDATAAVLBL);
282
283 return ptr - buffer;
284}
285
286static int mmci_pio_write(struct mmci_host *host, char *buffer, unsigned int remain, u32 status)
287{
288 void __iomem *base = host->base;
289 char *ptr = buffer;
290
291 do {
292 unsigned int count, maxcnt;
293
294 maxcnt = status & MCI_TXFIFOEMPTY ? MCI_FIFOSIZE : MCI_FIFOHALFSIZE;
295 count = min(remain, maxcnt);
296
297 writesl(base + MMCIFIFO, ptr, count >> 2);
298
299 ptr += count;
300 remain -= count;
301
302 if (remain == 0)
303 break;
304
305 status = readl(base + MMCISTATUS);
306 } while (status & MCI_TXFIFOHALFEMPTY);
307
308 return ptr - buffer;
309}
310
311/*
312 * PIO data transfer IRQ handler.
313 */
David Howells7d12e782006-10-05 14:55:46 +0100314static irqreturn_t mmci_pio_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315{
316 struct mmci_host *host = dev_id;
317 void __iomem *base = host->base;
318 u32 status;
319
320 status = readl(base + MMCISTATUS);
321
Linus Walleij64de0282010-02-19 01:09:10 +0100322 dev_dbg(mmc_dev(host->mmc), "irq1 (pio) %08x\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
324 do {
325 unsigned long flags;
326 unsigned int remain, len;
327 char *buffer;
328
329 /*
330 * For write, we only need to test the half-empty flag
331 * here - if the FIFO is completely empty, then by
332 * definition it is more than half empty.
333 *
334 * For read, check for data available.
335 */
336 if (!(status & (MCI_TXFIFOHALFEMPTY|MCI_RXDATAAVLBL)))
337 break;
338
339 /*
340 * Map the current scatter buffer.
341 */
342 buffer = mmci_kmap_atomic(host, &flags) + host->sg_off;
343 remain = host->sg_ptr->length - host->sg_off;
344
345 len = 0;
346 if (status & MCI_RXACTIVE)
347 len = mmci_pio_read(host, buffer, remain);
348 if (status & MCI_TXACTIVE)
349 len = mmci_pio_write(host, buffer, remain, status);
350
351 /*
352 * Unmap the buffer.
353 */
Evgeniy Polyakovf3e26282006-01-05 10:31:23 +0000354 mmci_kunmap_atomic(host, buffer, &flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
356 host->sg_off += len;
357 host->size -= len;
358 remain -= len;
359
360 if (remain)
361 break;
362
Russell Kinge9c091b2006-01-04 16:24:05 +0000363 /*
364 * If we were reading, and we have completed this
365 * page, ensure that the data cache is coherent.
366 */
367 if (status & MCI_RXACTIVE)
Jens Axboebd6dee62007-10-24 09:01:09 +0200368 flush_dcache_page(sg_page(host->sg_ptr));
Russell Kinge9c091b2006-01-04 16:24:05 +0000369
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 if (!mmci_next_sg(host))
371 break;
372
373 status = readl(base + MMCISTATUS);
374 } while (1);
375
376 /*
377 * If we're nearing the end of the read, switch to
378 * "any data available" mode.
379 */
380 if (status & MCI_RXACTIVE && host->size < MCI_FIFOSIZE)
381 writel(MCI_RXDATAAVLBLMASK, base + MMCIMASK1);
382
383 /*
384 * If we run out of data, disable the data IRQs; this
385 * prevents a race where the FIFO becomes empty before
386 * the chip itself has disabled the data path, and
387 * stops us racing with our data end IRQ.
388 */
389 if (host->size == 0) {
390 writel(0, base + MMCIMASK1);
391 writel(readl(base + MMCIMASK0) | MCI_DATAENDMASK, base + MMCIMASK0);
392 }
393
394 return IRQ_HANDLED;
395}
396
397/*
398 * Handle completion of command and data transfers.
399 */
David Howells7d12e782006-10-05 14:55:46 +0100400static irqreturn_t mmci_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401{
402 struct mmci_host *host = dev_id;
403 u32 status;
404 int ret = 0;
405
406 spin_lock(&host->lock);
407
408 do {
409 struct mmc_command *cmd;
410 struct mmc_data *data;
411
412 status = readl(host->base + MMCISTATUS);
413 status &= readl(host->base + MMCIMASK0);
414 writel(status, host->base + MMCICLEAR);
415
Linus Walleij64de0282010-02-19 01:09:10 +0100416 dev_dbg(mmc_dev(host->mmc), "irq0 (data+cmd) %08x\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
418 data = host->data;
419 if (status & (MCI_DATACRCFAIL|MCI_DATATIMEOUT|MCI_TXUNDERRUN|
420 MCI_RXOVERRUN|MCI_DATAEND|MCI_DATABLOCKEND) && data)
421 mmci_data_irq(host, data, status);
422
423 cmd = host->cmd;
424 if (status & (MCI_CMDCRCFAIL|MCI_CMDTIMEOUT|MCI_CMDSENT|MCI_CMDRESPEND) && cmd)
425 mmci_cmd_irq(host, cmd, status);
426
427 ret = 1;
428 } while (status);
429
430 spin_unlock(&host->lock);
431
432 return IRQ_RETVAL(ret);
433}
434
435static void mmci_request(struct mmc_host *mmc, struct mmc_request *mrq)
436{
437 struct mmci_host *host = mmc_priv(mmc);
Linus Walleij9e943022008-10-24 21:17:50 +0100438 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
440 WARN_ON(host->mrq != NULL);
441
Nicolas Pitre019a5f52007-10-11 01:06:03 -0400442 if (mrq->data && !is_power_of_2(mrq->data->blksz)) {
Linus Walleij64de0282010-02-19 01:09:10 +0100443 dev_err(mmc_dev(mmc), "unsupported block size (%d bytes)\n",
444 mrq->data->blksz);
Pierre Ossman255d01a2007-07-24 20:38:53 +0200445 mrq->cmd->error = -EINVAL;
446 mmc_request_done(mmc, mrq);
447 return;
448 }
449
Linus Walleij9e943022008-10-24 21:17:50 +0100450 spin_lock_irqsave(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
452 host->mrq = mrq;
453
454 if (mrq->data && mrq->data->flags & MMC_DATA_READ)
455 mmci_start_data(host, mrq->data);
456
457 mmci_start_command(host, mrq->cmd, 0);
458
Linus Walleij9e943022008-10-24 21:17:50 +0100459 spin_unlock_irqrestore(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460}
461
462static void mmci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
463{
464 struct mmci_host *host = mmc_priv(mmc);
Linus Walleija6a64642009-09-14 12:56:14 +0100465 u32 pwr = 0;
466 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 switch (ios->power_mode) {
469 case MMC_POWER_OFF:
Linus Walleij34e84f32009-09-22 14:41:40 +0100470 if(host->vcc &&
471 regulator_is_enabled(host->vcc))
472 regulator_disable(host->vcc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 break;
474 case MMC_POWER_UP:
Linus Walleij34e84f32009-09-22 14:41:40 +0100475#ifdef CONFIG_REGULATOR
476 if (host->vcc)
477 /* This implicitly enables the regulator */
478 mmc_regulator_set_ocr(host->vcc, ios->vdd);
479#endif
480 /*
481 * The translate_vdd function is not used if you have
482 * an external regulator, or your design is really weird.
483 * Using it would mean sending in power control BOTH using
484 * a regulator AND the 4 MMCIPWR bits. If we don't have
485 * a regulator, we might have some other platform specific
486 * power control behind this translate function.
487 */
488 if (!host->vcc && host->plat->translate_vdd)
489 pwr |= host->plat->translate_vdd(mmc_dev(mmc), ios->vdd);
Linus Walleijcc30d602009-01-04 15:18:54 +0100490 /* The ST version does not have this, fall through to POWER_ON */
Linus Walleijf17a1f02009-08-04 01:01:02 +0100491 if (host->hw_designer != AMBA_VENDOR_ST) {
Linus Walleijcc30d602009-01-04 15:18:54 +0100492 pwr |= MCI_PWR_UP;
493 break;
494 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 case MMC_POWER_ON:
496 pwr |= MCI_PWR_ON;
497 break;
498 }
499
Linus Walleijcc30d602009-01-04 15:18:54 +0100500 if (ios->bus_mode == MMC_BUSMODE_OPENDRAIN) {
Linus Walleijf17a1f02009-08-04 01:01:02 +0100501 if (host->hw_designer != AMBA_VENDOR_ST)
Linus Walleijcc30d602009-01-04 15:18:54 +0100502 pwr |= MCI_ROD;
503 else {
504 /*
505 * The ST Micro variant use the ROD bit for something
506 * else and only has OD (Open Drain).
507 */
508 pwr |= MCI_OD;
509 }
510 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
Linus Walleija6a64642009-09-14 12:56:14 +0100512 spin_lock_irqsave(&host->lock, flags);
513
514 mmci_set_clkreg(host, ios->clock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
516 if (host->pwr != pwr) {
517 host->pwr = pwr;
518 writel(pwr, host->base + MMCIPOWER);
519 }
Linus Walleija6a64642009-09-14 12:56:14 +0100520
521 spin_unlock_irqrestore(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522}
523
Russell King89001442009-07-09 15:16:07 +0100524static int mmci_get_ro(struct mmc_host *mmc)
525{
526 struct mmci_host *host = mmc_priv(mmc);
527
528 if (host->gpio_wp == -ENOSYS)
529 return -ENOSYS;
530
531 return gpio_get_value(host->gpio_wp);
532}
533
534static int mmci_get_cd(struct mmc_host *mmc)
535{
536 struct mmci_host *host = mmc_priv(mmc);
537 unsigned int status;
538
539 if (host->gpio_cd == -ENOSYS)
540 status = host->plat->status(mmc_dev(host->mmc));
541 else
542 status = gpio_get_value(host->gpio_cd);
543
544 return !status;
545}
546
David Brownellab7aefd2006-11-12 17:55:30 -0800547static const struct mmc_host_ops mmci_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 .request = mmci_request,
549 .set_ios = mmci_set_ios,
Russell King89001442009-07-09 15:16:07 +0100550 .get_ro = mmci_get_ro,
551 .get_cd = mmci_get_cd,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552};
553
554static void mmci_check_status(unsigned long data)
555{
556 struct mmci_host *host = (struct mmci_host *)data;
Russell King89001442009-07-09 15:16:07 +0100557 unsigned int status = mmci_get_cd(host->mmc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 if (status ^ host->oldstat)
Richard Purdie8dc00332005-09-08 17:53:01 +0100560 mmc_detect_change(host->mmc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
562 host->oldstat = status;
563 mod_timer(&host->timer, jiffies + HZ);
564}
565
Alessandro Rubini03fbdb12009-05-20 22:39:08 +0100566static int __devinit mmci_probe(struct amba_device *dev, struct amba_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567{
Linus Walleij6ef297f2009-09-22 14:29:36 +0100568 struct mmci_platform_data *plat = dev->dev.platform_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 struct mmci_host *host;
570 struct mmc_host *mmc;
571 int ret;
572
573 /* must have platform data */
574 if (!plat) {
575 ret = -EINVAL;
576 goto out;
577 }
578
579 ret = amba_request_regions(dev, DRIVER_NAME);
580 if (ret)
581 goto out;
582
583 mmc = mmc_alloc_host(sizeof(struct mmci_host), &dev->dev);
584 if (!mmc) {
585 ret = -ENOMEM;
586 goto rel_regions;
587 }
588
589 host = mmc_priv(mmc);
Rabin Vincent4ea580f2009-04-17 08:44:19 +0530590 host->mmc = mmc;
Russell King012b7d32009-07-09 15:13:56 +0100591
Russell King89001442009-07-09 15:16:07 +0100592 host->gpio_wp = -ENOSYS;
593 host->gpio_cd = -ENOSYS;
594
Russell King012b7d32009-07-09 15:13:56 +0100595 host->hw_designer = amba_manf(dev);
596 host->hw_revision = amba_rev(dev);
Linus Walleij64de0282010-02-19 01:09:10 +0100597 dev_dbg(mmc_dev(mmc), "designer ID = 0x%02x\n", host->hw_designer);
598 dev_dbg(mmc_dev(mmc), "revision = 0x%01x\n", host->hw_revision);
Russell King012b7d32009-07-09 15:13:56 +0100599
Russell Kingee569c42008-11-30 17:38:14 +0000600 host->clk = clk_get(&dev->dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 if (IS_ERR(host->clk)) {
602 ret = PTR_ERR(host->clk);
603 host->clk = NULL;
604 goto host_free;
605 }
606
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 ret = clk_enable(host->clk);
608 if (ret)
Russell Kinga8d35842006-01-03 18:41:37 +0000609 goto clk_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
611 host->plat = plat;
612 host->mclk = clk_get_rate(host->clk);
Linus Walleijc8df9a52008-04-29 09:34:07 +0100613 /*
614 * According to the spec, mclk is max 100 MHz,
615 * so we try to adjust the clock down to this,
616 * (if possible).
617 */
618 if (host->mclk > 100000000) {
619 ret = clk_set_rate(host->clk, 100000000);
620 if (ret < 0)
621 goto clk_disable;
622 host->mclk = clk_get_rate(host->clk);
Linus Walleij64de0282010-02-19 01:09:10 +0100623 dev_dbg(mmc_dev(mmc), "eventual mclk rate: %u Hz\n",
624 host->mclk);
Linus Walleijc8df9a52008-04-29 09:34:07 +0100625 }
Linus Walleijdc890c22009-06-07 23:27:31 +0100626 host->base = ioremap(dev->res.start, resource_size(&dev->res));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 if (!host->base) {
628 ret = -ENOMEM;
629 goto clk_disable;
630 }
631
632 mmc->ops = &mmci_ops;
633 mmc->f_min = (host->mclk + 511) / 512;
634 mmc->f_max = min(host->mclk, fmax);
Linus Walleij64de0282010-02-19 01:09:10 +0100635 dev_dbg(mmc_dev(mmc), "clocking block at %u Hz\n", mmc->f_max);
636
Linus Walleij34e84f32009-09-22 14:41:40 +0100637#ifdef CONFIG_REGULATOR
638 /* If we're using the regulator framework, try to fetch a regulator */
639 host->vcc = regulator_get(&dev->dev, "vmmc");
640 if (IS_ERR(host->vcc))
641 host->vcc = NULL;
642 else {
643 int mask = mmc_regulator_get_ocrmask(host->vcc);
644
645 if (mask < 0)
646 dev_err(&dev->dev, "error getting OCR mask (%d)\n",
647 mask);
648 else {
649 host->mmc->ocr_avail = (u32) mask;
650 if (plat->ocr_mask)
651 dev_warn(&dev->dev,
652 "Provided ocr_mask/setpower will not be used "
653 "(using regulator instead)\n");
654 }
655 }
656#endif
657 /* Fall back to platform data if no regulator is found */
658 if (host->vcc == NULL)
659 mmc->ocr_avail = plat->ocr_mask;
Linus Walleij9e6c82c2009-09-14 12:57:11 +0100660 mmc->caps = plat->capabilities;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
662 /*
663 * We can do SGIO
664 */
665 mmc->max_hw_segs = 16;
666 mmc->max_phys_segs = NR_SG;
667
668 /*
669 * Since we only have a 16-bit data length register, we must
670 * ensure that we don't exceed 2^16-1 bytes in a single request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 */
Pierre Ossman55db8902006-11-21 17:55:45 +0100672 mmc->max_req_size = 65535;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
674 /*
675 * Set the maximum segment size. Since we aren't doing DMA
676 * (yet) we are only limited by the data length register.
677 */
Pierre Ossman55db8902006-11-21 17:55:45 +0100678 mmc->max_seg_size = mmc->max_req_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +0100680 /*
681 * Block size can be up to 2048 bytes, but must be a power of two.
682 */
683 mmc->max_blk_size = 2048;
684
Pierre Ossman55db8902006-11-21 17:55:45 +0100685 /*
686 * No limit on the number of blocks transferred.
687 */
688 mmc->max_blk_count = mmc->max_req_size;
689
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 spin_lock_init(&host->lock);
691
692 writel(0, host->base + MMCIMASK0);
693 writel(0, host->base + MMCIMASK1);
694 writel(0xfff, host->base + MMCICLEAR);
695
Russell King89001442009-07-09 15:16:07 +0100696 if (gpio_is_valid(plat->gpio_cd)) {
697 ret = gpio_request(plat->gpio_cd, DRIVER_NAME " (cd)");
698 if (ret == 0)
699 ret = gpio_direction_input(plat->gpio_cd);
700 if (ret == 0)
701 host->gpio_cd = plat->gpio_cd;
702 else if (ret != -ENOSYS)
703 goto err_gpio_cd;
704 }
705 if (gpio_is_valid(plat->gpio_wp)) {
706 ret = gpio_request(plat->gpio_wp, DRIVER_NAME " (wp)");
707 if (ret == 0)
708 ret = gpio_direction_input(plat->gpio_wp);
709 if (ret == 0)
710 host->gpio_wp = plat->gpio_wp;
711 else if (ret != -ENOSYS)
712 goto err_gpio_wp;
713 }
714
Thomas Gleixnerdace1452006-07-01 19:29:38 -0700715 ret = request_irq(dev->irq[0], mmci_irq, IRQF_SHARED, DRIVER_NAME " (cmd)", host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 if (ret)
717 goto unmap;
718
Thomas Gleixnerdace1452006-07-01 19:29:38 -0700719 ret = request_irq(dev->irq[1], mmci_pio_irq, IRQF_SHARED, DRIVER_NAME " (pio)", host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 if (ret)
721 goto irq0_free;
722
723 writel(MCI_IRQENABLE, host->base + MMCIMASK0);
724
725 amba_set_drvdata(dev, mmc);
Russell King89001442009-07-09 15:16:07 +0100726 host->oldstat = mmci_get_cd(host->mmc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
728 mmc_add_host(mmc);
729
Linus Walleij64de0282010-02-19 01:09:10 +0100730 dev_info(&dev->dev, "%s: MMCI rev %x cfg %02x at 0x%016llx irq %d,%d\n",
Russell Kingd366b642005-08-19 09:40:08 +0100731 mmc_hostname(mmc), amba_rev(dev), amba_config(dev),
Greg Kroah-Hartmane29419f2006-06-12 15:20:16 -0700732 (unsigned long long)dev->res.start, dev->irq[0], dev->irq[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
734 init_timer(&host->timer);
735 host->timer.data = (unsigned long)host;
736 host->timer.function = mmci_check_status;
737 host->timer.expires = jiffies + HZ;
738 add_timer(&host->timer);
739
740 return 0;
741
742 irq0_free:
743 free_irq(dev->irq[0], host);
744 unmap:
Russell King89001442009-07-09 15:16:07 +0100745 if (host->gpio_wp != -ENOSYS)
746 gpio_free(host->gpio_wp);
747 err_gpio_wp:
748 if (host->gpio_cd != -ENOSYS)
749 gpio_free(host->gpio_cd);
750 err_gpio_cd:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 iounmap(host->base);
752 clk_disable:
753 clk_disable(host->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 clk_free:
755 clk_put(host->clk);
756 host_free:
757 mmc_free_host(mmc);
758 rel_regions:
759 amba_release_regions(dev);
760 out:
761 return ret;
762}
763
Linus Walleij6dc4a472009-03-07 00:23:52 +0100764static int __devexit mmci_remove(struct amba_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765{
766 struct mmc_host *mmc = amba_get_drvdata(dev);
767
768 amba_set_drvdata(dev, NULL);
769
770 if (mmc) {
771 struct mmci_host *host = mmc_priv(mmc);
772
773 del_timer_sync(&host->timer);
774
775 mmc_remove_host(mmc);
776
777 writel(0, host->base + MMCIMASK0);
778 writel(0, host->base + MMCIMASK1);
779
780 writel(0, host->base + MMCICOMMAND);
781 writel(0, host->base + MMCIDATACTRL);
782
783 free_irq(dev->irq[0], host);
784 free_irq(dev->irq[1], host);
785
Russell King89001442009-07-09 15:16:07 +0100786 if (host->gpio_wp != -ENOSYS)
787 gpio_free(host->gpio_wp);
788 if (host->gpio_cd != -ENOSYS)
789 gpio_free(host->gpio_cd);
790
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 iounmap(host->base);
792 clk_disable(host->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 clk_put(host->clk);
794
Linus Walleij34e84f32009-09-22 14:41:40 +0100795 if (regulator_is_enabled(host->vcc))
796 regulator_disable(host->vcc);
797 regulator_put(host->vcc);
798
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 mmc_free_host(mmc);
800
801 amba_release_regions(dev);
802 }
803
804 return 0;
805}
806
807#ifdef CONFIG_PM
Pavel Macheke5378ca2005-04-16 15:25:29 -0700808static int mmci_suspend(struct amba_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809{
810 struct mmc_host *mmc = amba_get_drvdata(dev);
811 int ret = 0;
812
813 if (mmc) {
814 struct mmci_host *host = mmc_priv(mmc);
815
816 ret = mmc_suspend_host(mmc, state);
817 if (ret == 0)
818 writel(0, host->base + MMCIMASK0);
819 }
820
821 return ret;
822}
823
824static int mmci_resume(struct amba_device *dev)
825{
826 struct mmc_host *mmc = amba_get_drvdata(dev);
827 int ret = 0;
828
829 if (mmc) {
830 struct mmci_host *host = mmc_priv(mmc);
831
832 writel(MCI_IRQENABLE, host->base + MMCIMASK0);
833
834 ret = mmc_resume_host(mmc);
835 }
836
837 return ret;
838}
839#else
840#define mmci_suspend NULL
841#define mmci_resume NULL
842#endif
843
844static struct amba_id mmci_ids[] = {
845 {
846 .id = 0x00041180,
847 .mask = 0x000fffff,
848 },
849 {
850 .id = 0x00041181,
851 .mask = 0x000fffff,
852 },
Linus Walleijcc30d602009-01-04 15:18:54 +0100853 /* ST Micro variants */
854 {
855 .id = 0x00180180,
856 .mask = 0x00ffffff,
857 },
858 {
859 .id = 0x00280180,
860 .mask = 0x00ffffff,
861 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 { 0, 0 },
863};
864
865static struct amba_driver mmci_driver = {
866 .drv = {
867 .name = DRIVER_NAME,
868 },
869 .probe = mmci_probe,
Linus Walleij6dc4a472009-03-07 00:23:52 +0100870 .remove = __devexit_p(mmci_remove),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 .suspend = mmci_suspend,
872 .resume = mmci_resume,
873 .id_table = mmci_ids,
874};
875
876static int __init mmci_init(void)
877{
878 return amba_driver_register(&mmci_driver);
879}
880
881static void __exit mmci_exit(void)
882{
883 amba_driver_unregister(&mmci_driver);
884}
885
886module_init(mmci_init);
887module_exit(mmci_exit);
888module_param(fmax, uint, 0444);
889
890MODULE_DESCRIPTION("ARM PrimeCell PL180/181 Multimedia Card Interface driver");
891MODULE_LICENSE("GPL");