blob: 3eaa0e9373cd7d9cfab21172405745d193d2ddd7 [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 King7b09cda2005-07-01 12:02:59 +010029#include <asm/div64.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <asm/io.h>
Russell Kingc6b8fda2005-10-28 14:05:16 +010031#include <asm/sizes.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33#include "mmci.h"
34
35#define DRIVER_NAME "mmci-pl18x"
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037static unsigned int fmax = 515633;
38
Linus Walleija6a64642009-09-14 12:56:14 +010039/*
40 * This must be called with host->lock held
41 */
42static void mmci_set_clkreg(struct mmci_host *host, unsigned int desired)
43{
44 u32 clk = 0;
45
46 if (desired) {
47 if (desired >= host->mclk) {
48 clk = MCI_CLK_BYPASS;
49 host->cclk = host->mclk;
50 } else {
51 clk = host->mclk / (2 * desired) - 1;
52 if (clk >= 256)
53 clk = 255;
54 host->cclk = host->mclk / (2 * (clk + 1));
55 }
Linus Walleijb43149c2009-11-10 08:33:01 +010056 if (host->hw_designer == AMBA_VENDOR_ST)
Linus Walleij771dc152010-04-08 07:38:52 +010057 clk |= MCI_ST_FCEN; /* Bug fix in ST IP block */
Linus Walleija6a64642009-09-14 12:56:14 +010058 clk |= MCI_CLK_ENABLE;
59 /* This hasn't proven to be worthwhile */
60 /* clk |= MCI_CLK_PWRSAVE; */
61 }
62
Linus Walleij9e6c82c2009-09-14 12:57:11 +010063 if (host->mmc->ios.bus_width == MMC_BUS_WIDTH_4)
Linus Walleij771dc152010-04-08 07:38:52 +010064 clk |= MCI_4BIT_BUS;
65 if (host->mmc->ios.bus_width == MMC_BUS_WIDTH_8)
66 clk |= MCI_ST_8BIT_BUS;
Linus Walleij9e6c82c2009-09-14 12:57:11 +010067
Linus Walleija6a64642009-09-14 12:56:14 +010068 writel(clk, host->base + MMCICLOCK);
69}
70
Linus Torvalds1da177e2005-04-16 15:20:36 -070071static void
72mmci_request_end(struct mmci_host *host, struct mmc_request *mrq)
73{
74 writel(0, host->base + MMCICOMMAND);
75
Russell Kinge47c2222007-01-08 16:42:51 +000076 BUG_ON(host->data);
77
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 host->mrq = NULL;
79 host->cmd = NULL;
80
81 if (mrq->data)
82 mrq->data->bytes_xfered = host->data_xfered;
83
84 /*
85 * Need to drop the host lock here; mmc_request_done may call
86 * back into the driver...
87 */
88 spin_unlock(&host->lock);
89 mmc_request_done(host->mmc, mrq);
90 spin_lock(&host->lock);
91}
92
93static void mmci_stop_data(struct mmci_host *host)
94{
95 writel(0, host->base + MMCIDATACTRL);
96 writel(0, host->base + MMCIMASK1);
97 host->data = NULL;
98}
99
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100100static void mmci_init_sg(struct mmci_host *host, struct mmc_data *data)
101{
102 unsigned int flags = SG_MITER_ATOMIC;
103
104 if (data->flags & MMC_DATA_READ)
105 flags |= SG_MITER_TO_SG;
106 else
107 flags |= SG_MITER_FROM_SG;
108
109 sg_miter_start(&host->sg_miter, data->sg, data->sg_len, flags);
110}
111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112static void mmci_start_data(struct mmci_host *host, struct mmc_data *data)
113{
114 unsigned int datactrl, timeout, irqmask;
Russell King7b09cda2005-07-01 12:02:59 +0100115 unsigned long long clks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 void __iomem *base;
Russell King3bc87f22006-08-27 13:51:28 +0100117 int blksz_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Linus Walleij64de0282010-02-19 01:09:10 +0100119 dev_dbg(mmc_dev(host->mmc), "blksz %04x blks %04x flags %08x\n",
120 data->blksz, data->blocks, data->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
122 host->data = data;
Rabin Vincent528320d2010-07-21 12:49:49 +0100123 host->size = data->blksz * data->blocks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 host->data_xfered = 0;
125
126 mmci_init_sg(host, data);
127
Russell King7b09cda2005-07-01 12:02:59 +0100128 clks = (unsigned long long)data->timeout_ns * host->cclk;
129 do_div(clks, 1000000000UL);
130
131 timeout = data->timeout_clks + (unsigned int)clks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133 base = host->base;
134 writel(timeout, base + MMCIDATATIMER);
135 writel(host->size, base + MMCIDATALENGTH);
136
Russell King3bc87f22006-08-27 13:51:28 +0100137 blksz_bits = ffs(data->blksz) - 1;
138 BUG_ON(1 << blksz_bits != data->blksz);
139
140 datactrl = MCI_DPSM_ENABLE | blksz_bits << 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 if (data->flags & MMC_DATA_READ) {
142 datactrl |= MCI_DPSM_DIRECTION;
143 irqmask = MCI_RXFIFOHALFFULLMASK;
Russell King0425a142006-02-16 16:48:31 +0000144
145 /*
146 * If we have less than a FIFOSIZE of bytes to transfer,
147 * trigger a PIO interrupt as soon as any data is available.
148 */
149 if (host->size < MCI_FIFOSIZE)
150 irqmask |= MCI_RXDATAAVLBLMASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 } else {
152 /*
153 * We don't actually need to include "FIFO empty" here
154 * since its implicit in "FIFO half empty".
155 */
156 irqmask = MCI_TXFIFOHALFEMPTYMASK;
157 }
158
159 writel(datactrl, base + MMCIDATACTRL);
160 writel(readl(base + MMCIMASK0) & ~MCI_DATAENDMASK, base + MMCIMASK0);
161 writel(irqmask, base + MMCIMASK1);
162}
163
164static void
165mmci_start_command(struct mmci_host *host, struct mmc_command *cmd, u32 c)
166{
167 void __iomem *base = host->base;
168
Linus Walleij64de0282010-02-19 01:09:10 +0100169 dev_dbg(mmc_dev(host->mmc), "op %02x arg %08x flags %08x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 cmd->opcode, cmd->arg, cmd->flags);
171
172 if (readl(base + MMCICOMMAND) & MCI_CPSM_ENABLE) {
173 writel(0, base + MMCICOMMAND);
174 udelay(1);
175 }
176
177 c |= cmd->opcode | MCI_CPSM_ENABLE;
Russell Kinge9225172006-02-02 12:23:12 +0000178 if (cmd->flags & MMC_RSP_PRESENT) {
179 if (cmd->flags & MMC_RSP_136)
180 c |= MCI_CPSM_LONGRSP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 c |= MCI_CPSM_RESPONSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 }
183 if (/*interrupt*/0)
184 c |= MCI_CPSM_INTERRUPT;
185
186 host->cmd = cmd;
187
188 writel(cmd->arg, base + MMCIARGUMENT);
189 writel(c, base + MMCICOMMAND);
190}
191
192static void
193mmci_data_irq(struct mmci_host *host, struct mmc_data *data,
194 unsigned int status)
195{
196 if (status & MCI_DATABLOCKEND) {
Russell King3bc87f22006-08-27 13:51:28 +0100197 host->data_xfered += data->blksz;
Linus Walleijf28e8a42010-01-25 07:14:46 +0100198#ifdef CONFIG_ARCH_U300
199 /*
200 * On the U300 some signal or other is
201 * badly routed so that a data write does
202 * not properly terminate with a MCI_DATAEND
203 * status flag. This quirk will make writes
204 * work again.
205 */
206 if (data->flags & MMC_DATA_WRITE)
207 status |= MCI_DATAEND;
208#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 }
210 if (status & (MCI_DATACRCFAIL|MCI_DATATIMEOUT|MCI_TXUNDERRUN|MCI_RXOVERRUN)) {
Linus Walleij64de0282010-02-19 01:09:10 +0100211 dev_dbg(mmc_dev(host->mmc), "MCI ERROR IRQ (status %08x)\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 if (status & MCI_DATACRCFAIL)
Pierre Ossman17b04292007-07-22 22:18:46 +0200213 data->error = -EILSEQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 else if (status & MCI_DATATIMEOUT)
Pierre Ossman17b04292007-07-22 22:18:46 +0200215 data->error = -ETIMEDOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 else if (status & (MCI_TXUNDERRUN|MCI_RXOVERRUN))
Pierre Ossman17b04292007-07-22 22:18:46 +0200217 data->error = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 status |= MCI_DATAEND;
Russell Kinge9c091b2006-01-04 16:24:05 +0000219
220 /*
221 * We hit an error condition. Ensure that any data
222 * partially written to a page is properly coherent.
223 */
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100224 if (data->flags & MMC_DATA_READ) {
225 struct sg_mapping_iter *sg_miter = &host->sg_miter;
226 unsigned long flags;
227
228 local_irq_save(flags);
229 if (sg_miter_next(sg_miter)) {
230 flush_dcache_page(sg_miter->page);
231 sg_miter_stop(sg_miter);
232 }
233 local_irq_restore(flags);
234 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 }
236 if (status & MCI_DATAEND) {
237 mmci_stop_data(host);
238
239 if (!data->stop) {
240 mmci_request_end(host, data->mrq);
241 } else {
242 mmci_start_command(host, data->stop, 0);
243 }
244 }
245}
246
247static void
248mmci_cmd_irq(struct mmci_host *host, struct mmc_command *cmd,
249 unsigned int status)
250{
251 void __iomem *base = host->base;
252
253 host->cmd = NULL;
254
255 cmd->resp[0] = readl(base + MMCIRESPONSE0);
256 cmd->resp[1] = readl(base + MMCIRESPONSE1);
257 cmd->resp[2] = readl(base + MMCIRESPONSE2);
258 cmd->resp[3] = readl(base + MMCIRESPONSE3);
259
260 if (status & MCI_CMDTIMEOUT) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200261 cmd->error = -ETIMEDOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 } else if (status & MCI_CMDCRCFAIL && cmd->flags & MMC_RSP_CRC) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200263 cmd->error = -EILSEQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 }
265
Pierre Ossman17b04292007-07-22 22:18:46 +0200266 if (!cmd->data || cmd->error) {
Russell Kinge47c2222007-01-08 16:42:51 +0000267 if (host->data)
268 mmci_stop_data(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 mmci_request_end(host, cmd->mrq);
270 } else if (!(cmd->data->flags & MMC_DATA_READ)) {
271 mmci_start_data(host, cmd->data);
272 }
273}
274
275static int mmci_pio_read(struct mmci_host *host, char *buffer, unsigned int remain)
276{
277 void __iomem *base = host->base;
278 char *ptr = buffer;
279 u32 status;
Linus Walleij26eed9a2008-04-26 23:39:44 +0100280 int host_remain = host->size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
282 do {
Linus Walleij26eed9a2008-04-26 23:39:44 +0100283 int count = host_remain - (readl(base + MMCIFIFOCNT) << 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
285 if (count > remain)
286 count = remain;
287
288 if (count <= 0)
289 break;
290
291 readsl(base + MMCIFIFO, ptr, count >> 2);
292
293 ptr += count;
294 remain -= count;
Linus Walleij26eed9a2008-04-26 23:39:44 +0100295 host_remain -= count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
297 if (remain == 0)
298 break;
299
300 status = readl(base + MMCISTATUS);
301 } while (status & MCI_RXDATAAVLBL);
302
303 return ptr - buffer;
304}
305
306static int mmci_pio_write(struct mmci_host *host, char *buffer, unsigned int remain, u32 status)
307{
308 void __iomem *base = host->base;
309 char *ptr = buffer;
310
311 do {
312 unsigned int count, maxcnt;
313
314 maxcnt = status & MCI_TXFIFOEMPTY ? MCI_FIFOSIZE : MCI_FIFOHALFSIZE;
315 count = min(remain, maxcnt);
316
317 writesl(base + MMCIFIFO, ptr, count >> 2);
318
319 ptr += count;
320 remain -= count;
321
322 if (remain == 0)
323 break;
324
325 status = readl(base + MMCISTATUS);
326 } while (status & MCI_TXFIFOHALFEMPTY);
327
328 return ptr - buffer;
329}
330
331/*
332 * PIO data transfer IRQ handler.
333 */
David Howells7d12e782006-10-05 14:55:46 +0100334static irqreturn_t mmci_pio_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335{
336 struct mmci_host *host = dev_id;
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100337 struct sg_mapping_iter *sg_miter = &host->sg_miter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 void __iomem *base = host->base;
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100339 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 u32 status;
341
342 status = readl(base + MMCISTATUS);
343
Linus Walleij64de0282010-02-19 01:09:10 +0100344 dev_dbg(mmc_dev(host->mmc), "irq1 (pio) %08x\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100346 local_irq_save(flags);
347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 unsigned int remain, len;
350 char *buffer;
351
352 /*
353 * For write, we only need to test the half-empty flag
354 * here - if the FIFO is completely empty, then by
355 * definition it is more than half empty.
356 *
357 * For read, check for data available.
358 */
359 if (!(status & (MCI_TXFIFOHALFEMPTY|MCI_RXDATAAVLBL)))
360 break;
361
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100362 if (!sg_miter_next(sg_miter))
363 break;
364
365 buffer = sg_miter->addr;
366 remain = sg_miter->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
368 len = 0;
369 if (status & MCI_RXACTIVE)
370 len = mmci_pio_read(host, buffer, remain);
371 if (status & MCI_TXACTIVE)
372 len = mmci_pio_write(host, buffer, remain, status);
373
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100374 sg_miter->consumed = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 host->size -= len;
377 remain -= len;
378
379 if (remain)
380 break;
381
Russell Kinge9c091b2006-01-04 16:24:05 +0000382 if (status & MCI_RXACTIVE)
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100383 flush_dcache_page(sg_miter->page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
385 status = readl(base + MMCISTATUS);
386 } while (1);
387
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100388 sg_miter_stop(sg_miter);
389
390 local_irq_restore(flags);
391
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 /*
393 * If we're nearing the end of the read, switch to
394 * "any data available" mode.
395 */
396 if (status & MCI_RXACTIVE && host->size < MCI_FIFOSIZE)
397 writel(MCI_RXDATAAVLBLMASK, base + MMCIMASK1);
398
399 /*
400 * If we run out of data, disable the data IRQs; this
401 * prevents a race where the FIFO becomes empty before
402 * the chip itself has disabled the data path, and
403 * stops us racing with our data end IRQ.
404 */
405 if (host->size == 0) {
406 writel(0, base + MMCIMASK1);
407 writel(readl(base + MMCIMASK0) | MCI_DATAENDMASK, base + MMCIMASK0);
408 }
409
410 return IRQ_HANDLED;
411}
412
413/*
414 * Handle completion of command and data transfers.
415 */
David Howells7d12e782006-10-05 14:55:46 +0100416static irqreturn_t mmci_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417{
418 struct mmci_host *host = dev_id;
419 u32 status;
420 int ret = 0;
421
422 spin_lock(&host->lock);
423
424 do {
425 struct mmc_command *cmd;
426 struct mmc_data *data;
427
428 status = readl(host->base + MMCISTATUS);
429 status &= readl(host->base + MMCIMASK0);
430 writel(status, host->base + MMCICLEAR);
431
Linus Walleij64de0282010-02-19 01:09:10 +0100432 dev_dbg(mmc_dev(host->mmc), "irq0 (data+cmd) %08x\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
434 data = host->data;
435 if (status & (MCI_DATACRCFAIL|MCI_DATATIMEOUT|MCI_TXUNDERRUN|
436 MCI_RXOVERRUN|MCI_DATAEND|MCI_DATABLOCKEND) && data)
437 mmci_data_irq(host, data, status);
438
439 cmd = host->cmd;
440 if (status & (MCI_CMDCRCFAIL|MCI_CMDTIMEOUT|MCI_CMDSENT|MCI_CMDRESPEND) && cmd)
441 mmci_cmd_irq(host, cmd, status);
442
443 ret = 1;
444 } while (status);
445
446 spin_unlock(&host->lock);
447
448 return IRQ_RETVAL(ret);
449}
450
451static void mmci_request(struct mmc_host *mmc, struct mmc_request *mrq)
452{
453 struct mmci_host *host = mmc_priv(mmc);
Linus Walleij9e943022008-10-24 21:17:50 +0100454 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
456 WARN_ON(host->mrq != NULL);
457
Nicolas Pitre019a5f52007-10-11 01:06:03 -0400458 if (mrq->data && !is_power_of_2(mrq->data->blksz)) {
Linus Walleij64de0282010-02-19 01:09:10 +0100459 dev_err(mmc_dev(mmc), "unsupported block size (%d bytes)\n",
460 mrq->data->blksz);
Pierre Ossman255d01a2007-07-24 20:38:53 +0200461 mrq->cmd->error = -EINVAL;
462 mmc_request_done(mmc, mrq);
463 return;
464 }
465
Linus Walleij9e943022008-10-24 21:17:50 +0100466 spin_lock_irqsave(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
468 host->mrq = mrq;
469
470 if (mrq->data && mrq->data->flags & MMC_DATA_READ)
471 mmci_start_data(host, mrq->data);
472
473 mmci_start_command(host, mrq->cmd, 0);
474
Linus Walleij9e943022008-10-24 21:17:50 +0100475 spin_unlock_irqrestore(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476}
477
478static void mmci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
479{
480 struct mmci_host *host = mmc_priv(mmc);
Linus Walleija6a64642009-09-14 12:56:14 +0100481 u32 pwr = 0;
482 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 switch (ios->power_mode) {
485 case MMC_POWER_OFF:
Linus Walleij34e84f32009-09-22 14:41:40 +0100486 if(host->vcc &&
487 regulator_is_enabled(host->vcc))
488 regulator_disable(host->vcc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 break;
490 case MMC_POWER_UP:
Linus Walleij34e84f32009-09-22 14:41:40 +0100491#ifdef CONFIG_REGULATOR
492 if (host->vcc)
493 /* This implicitly enables the regulator */
494 mmc_regulator_set_ocr(host->vcc, ios->vdd);
495#endif
496 /*
497 * The translate_vdd function is not used if you have
498 * an external regulator, or your design is really weird.
499 * Using it would mean sending in power control BOTH using
500 * a regulator AND the 4 MMCIPWR bits. If we don't have
501 * a regulator, we might have some other platform specific
502 * power control behind this translate function.
503 */
504 if (!host->vcc && host->plat->translate_vdd)
505 pwr |= host->plat->translate_vdd(mmc_dev(mmc), ios->vdd);
Linus Walleijcc30d602009-01-04 15:18:54 +0100506 /* The ST version does not have this, fall through to POWER_ON */
Linus Walleijf17a1f02009-08-04 01:01:02 +0100507 if (host->hw_designer != AMBA_VENDOR_ST) {
Linus Walleijcc30d602009-01-04 15:18:54 +0100508 pwr |= MCI_PWR_UP;
509 break;
510 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 case MMC_POWER_ON:
512 pwr |= MCI_PWR_ON;
513 break;
514 }
515
Linus Walleijcc30d602009-01-04 15:18:54 +0100516 if (ios->bus_mode == MMC_BUSMODE_OPENDRAIN) {
Linus Walleijf17a1f02009-08-04 01:01:02 +0100517 if (host->hw_designer != AMBA_VENDOR_ST)
Linus Walleijcc30d602009-01-04 15:18:54 +0100518 pwr |= MCI_ROD;
519 else {
520 /*
521 * The ST Micro variant use the ROD bit for something
522 * else and only has OD (Open Drain).
523 */
524 pwr |= MCI_OD;
525 }
526 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
Linus Walleija6a64642009-09-14 12:56:14 +0100528 spin_lock_irqsave(&host->lock, flags);
529
530 mmci_set_clkreg(host, ios->clock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
532 if (host->pwr != pwr) {
533 host->pwr = pwr;
534 writel(pwr, host->base + MMCIPOWER);
535 }
Linus Walleija6a64642009-09-14 12:56:14 +0100536
537 spin_unlock_irqrestore(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538}
539
Russell King89001442009-07-09 15:16:07 +0100540static int mmci_get_ro(struct mmc_host *mmc)
541{
542 struct mmci_host *host = mmc_priv(mmc);
543
544 if (host->gpio_wp == -ENOSYS)
545 return -ENOSYS;
546
547 return gpio_get_value(host->gpio_wp);
548}
549
550static int mmci_get_cd(struct mmc_host *mmc)
551{
552 struct mmci_host *host = mmc_priv(mmc);
553 unsigned int status;
554
555 if (host->gpio_cd == -ENOSYS)
556 status = host->plat->status(mmc_dev(host->mmc));
557 else
558 status = gpio_get_value(host->gpio_cd);
559
560 return !status;
561}
562
David Brownellab7aefd2006-11-12 17:55:30 -0800563static const struct mmc_host_ops mmci_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 .request = mmci_request,
565 .set_ios = mmci_set_ios,
Russell King89001442009-07-09 15:16:07 +0100566 .get_ro = mmci_get_ro,
567 .get_cd = mmci_get_cd,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568};
569
Alessandro Rubini03fbdb12009-05-20 22:39:08 +0100570static int __devinit mmci_probe(struct amba_device *dev, struct amba_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571{
Linus Walleij6ef297f2009-09-22 14:29:36 +0100572 struct mmci_platform_data *plat = dev->dev.platform_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 struct mmci_host *host;
574 struct mmc_host *mmc;
575 int ret;
576
577 /* must have platform data */
578 if (!plat) {
579 ret = -EINVAL;
580 goto out;
581 }
582
583 ret = amba_request_regions(dev, DRIVER_NAME);
584 if (ret)
585 goto out;
586
587 mmc = mmc_alloc_host(sizeof(struct mmci_host), &dev->dev);
588 if (!mmc) {
589 ret = -ENOMEM;
590 goto rel_regions;
591 }
592
593 host = mmc_priv(mmc);
Rabin Vincent4ea580f2009-04-17 08:44:19 +0530594 host->mmc = mmc;
Russell King012b7d32009-07-09 15:13:56 +0100595
Russell King89001442009-07-09 15:16:07 +0100596 host->gpio_wp = -ENOSYS;
597 host->gpio_cd = -ENOSYS;
598
Russell King012b7d32009-07-09 15:13:56 +0100599 host->hw_designer = amba_manf(dev);
600 host->hw_revision = amba_rev(dev);
Linus Walleij64de0282010-02-19 01:09:10 +0100601 dev_dbg(mmc_dev(mmc), "designer ID = 0x%02x\n", host->hw_designer);
602 dev_dbg(mmc_dev(mmc), "revision = 0x%01x\n", host->hw_revision);
Russell King012b7d32009-07-09 15:13:56 +0100603
Russell Kingee569c42008-11-30 17:38:14 +0000604 host->clk = clk_get(&dev->dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 if (IS_ERR(host->clk)) {
606 ret = PTR_ERR(host->clk);
607 host->clk = NULL;
608 goto host_free;
609 }
610
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 ret = clk_enable(host->clk);
612 if (ret)
Russell Kinga8d35842006-01-03 18:41:37 +0000613 goto clk_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
615 host->plat = plat;
616 host->mclk = clk_get_rate(host->clk);
Linus Walleijc8df9a52008-04-29 09:34:07 +0100617 /*
618 * According to the spec, mclk is max 100 MHz,
619 * so we try to adjust the clock down to this,
620 * (if possible).
621 */
622 if (host->mclk > 100000000) {
623 ret = clk_set_rate(host->clk, 100000000);
624 if (ret < 0)
625 goto clk_disable;
626 host->mclk = clk_get_rate(host->clk);
Linus Walleij64de0282010-02-19 01:09:10 +0100627 dev_dbg(mmc_dev(mmc), "eventual mclk rate: %u Hz\n",
628 host->mclk);
Linus Walleijc8df9a52008-04-29 09:34:07 +0100629 }
Linus Walleijdc890c22009-06-07 23:27:31 +0100630 host->base = ioremap(dev->res.start, resource_size(&dev->res));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 if (!host->base) {
632 ret = -ENOMEM;
633 goto clk_disable;
634 }
635
636 mmc->ops = &mmci_ops;
637 mmc->f_min = (host->mclk + 511) / 512;
Linus Walleij808d97c2010-04-08 07:39:38 +0100638 /*
639 * If the platform data supplies a maximum operating
640 * frequency, this takes precedence. Else, we fall back
641 * to using the module parameter, which has a (low)
642 * default value in case it is not specified. Either
643 * value must not exceed the clock rate into the block,
644 * of course.
645 */
646 if (plat->f_max)
647 mmc->f_max = min(host->mclk, plat->f_max);
648 else
649 mmc->f_max = min(host->mclk, fmax);
Linus Walleij64de0282010-02-19 01:09:10 +0100650 dev_dbg(mmc_dev(mmc), "clocking block at %u Hz\n", mmc->f_max);
651
Linus Walleij34e84f32009-09-22 14:41:40 +0100652#ifdef CONFIG_REGULATOR
653 /* If we're using the regulator framework, try to fetch a regulator */
654 host->vcc = regulator_get(&dev->dev, "vmmc");
655 if (IS_ERR(host->vcc))
656 host->vcc = NULL;
657 else {
658 int mask = mmc_regulator_get_ocrmask(host->vcc);
659
660 if (mask < 0)
661 dev_err(&dev->dev, "error getting OCR mask (%d)\n",
662 mask);
663 else {
664 host->mmc->ocr_avail = (u32) mask;
665 if (plat->ocr_mask)
666 dev_warn(&dev->dev,
667 "Provided ocr_mask/setpower will not be used "
668 "(using regulator instead)\n");
669 }
670 }
671#endif
672 /* Fall back to platform data if no regulator is found */
673 if (host->vcc == NULL)
674 mmc->ocr_avail = plat->ocr_mask;
Linus Walleij9e6c82c2009-09-14 12:57:11 +0100675 mmc->caps = plat->capabilities;
Rabin Vincentf5e25742010-07-21 12:50:31 +0100676 mmc->caps |= MMC_CAP_NEEDS_POLL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
678 /*
679 * We can do SGIO
680 */
681 mmc->max_hw_segs = 16;
682 mmc->max_phys_segs = NR_SG;
683
684 /*
685 * Since we only have a 16-bit data length register, we must
686 * ensure that we don't exceed 2^16-1 bytes in a single request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 */
Pierre Ossman55db8902006-11-21 17:55:45 +0100688 mmc->max_req_size = 65535;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
690 /*
691 * Set the maximum segment size. Since we aren't doing DMA
692 * (yet) we are only limited by the data length register.
693 */
Pierre Ossman55db8902006-11-21 17:55:45 +0100694 mmc->max_seg_size = mmc->max_req_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +0100696 /*
697 * Block size can be up to 2048 bytes, but must be a power of two.
698 */
699 mmc->max_blk_size = 2048;
700
Pierre Ossman55db8902006-11-21 17:55:45 +0100701 /*
702 * No limit on the number of blocks transferred.
703 */
704 mmc->max_blk_count = mmc->max_req_size;
705
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 spin_lock_init(&host->lock);
707
708 writel(0, host->base + MMCIMASK0);
709 writel(0, host->base + MMCIMASK1);
710 writel(0xfff, host->base + MMCICLEAR);
711
Russell King89001442009-07-09 15:16:07 +0100712 if (gpio_is_valid(plat->gpio_cd)) {
713 ret = gpio_request(plat->gpio_cd, DRIVER_NAME " (cd)");
714 if (ret == 0)
715 ret = gpio_direction_input(plat->gpio_cd);
716 if (ret == 0)
717 host->gpio_cd = plat->gpio_cd;
718 else if (ret != -ENOSYS)
719 goto err_gpio_cd;
720 }
721 if (gpio_is_valid(plat->gpio_wp)) {
722 ret = gpio_request(plat->gpio_wp, DRIVER_NAME " (wp)");
723 if (ret == 0)
724 ret = gpio_direction_input(plat->gpio_wp);
725 if (ret == 0)
726 host->gpio_wp = plat->gpio_wp;
727 else if (ret != -ENOSYS)
728 goto err_gpio_wp;
729 }
730
Thomas Gleixnerdace1452006-07-01 19:29:38 -0700731 ret = request_irq(dev->irq[0], mmci_irq, IRQF_SHARED, DRIVER_NAME " (cmd)", host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 if (ret)
733 goto unmap;
734
Thomas Gleixnerdace1452006-07-01 19:29:38 -0700735 ret = request_irq(dev->irq[1], mmci_pio_irq, IRQF_SHARED, DRIVER_NAME " (pio)", host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 if (ret)
737 goto irq0_free;
738
739 writel(MCI_IRQENABLE, host->base + MMCIMASK0);
740
741 amba_set_drvdata(dev, mmc);
742
743 mmc_add_host(mmc);
744
Linus Walleij64de0282010-02-19 01:09:10 +0100745 dev_info(&dev->dev, "%s: MMCI rev %x cfg %02x at 0x%016llx irq %d,%d\n",
Russell Kingd366b642005-08-19 09:40:08 +0100746 mmc_hostname(mmc), amba_rev(dev), amba_config(dev),
Greg Kroah-Hartmane29419f2006-06-12 15:20:16 -0700747 (unsigned long long)dev->res.start, dev->irq[0], dev->irq[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 return 0;
750
751 irq0_free:
752 free_irq(dev->irq[0], host);
753 unmap:
Russell King89001442009-07-09 15:16:07 +0100754 if (host->gpio_wp != -ENOSYS)
755 gpio_free(host->gpio_wp);
756 err_gpio_wp:
757 if (host->gpio_cd != -ENOSYS)
758 gpio_free(host->gpio_cd);
759 err_gpio_cd:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 iounmap(host->base);
761 clk_disable:
762 clk_disable(host->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 clk_free:
764 clk_put(host->clk);
765 host_free:
766 mmc_free_host(mmc);
767 rel_regions:
768 amba_release_regions(dev);
769 out:
770 return ret;
771}
772
Linus Walleij6dc4a472009-03-07 00:23:52 +0100773static int __devexit mmci_remove(struct amba_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774{
775 struct mmc_host *mmc = amba_get_drvdata(dev);
776
777 amba_set_drvdata(dev, NULL);
778
779 if (mmc) {
780 struct mmci_host *host = mmc_priv(mmc);
781
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 mmc_remove_host(mmc);
783
784 writel(0, host->base + MMCIMASK0);
785 writel(0, host->base + MMCIMASK1);
786
787 writel(0, host->base + MMCICOMMAND);
788 writel(0, host->base + MMCIDATACTRL);
789
790 free_irq(dev->irq[0], host);
791 free_irq(dev->irq[1], host);
792
Russell King89001442009-07-09 15:16:07 +0100793 if (host->gpio_wp != -ENOSYS)
794 gpio_free(host->gpio_wp);
795 if (host->gpio_cd != -ENOSYS)
796 gpio_free(host->gpio_cd);
797
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 iounmap(host->base);
799 clk_disable(host->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 clk_put(host->clk);
801
Linus Walleij34e84f32009-09-22 14:41:40 +0100802 if (regulator_is_enabled(host->vcc))
803 regulator_disable(host->vcc);
804 regulator_put(host->vcc);
805
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 mmc_free_host(mmc);
807
808 amba_release_regions(dev);
809 }
810
811 return 0;
812}
813
814#ifdef CONFIG_PM
Pavel Macheke5378ca2005-04-16 15:25:29 -0700815static int mmci_suspend(struct amba_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816{
817 struct mmc_host *mmc = amba_get_drvdata(dev);
818 int ret = 0;
819
820 if (mmc) {
821 struct mmci_host *host = mmc_priv(mmc);
822
Matt Fleming1a13f8f2010-05-26 14:42:08 -0700823 ret = mmc_suspend_host(mmc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 if (ret == 0)
825 writel(0, host->base + MMCIMASK0);
826 }
827
828 return ret;
829}
830
831static int mmci_resume(struct amba_device *dev)
832{
833 struct mmc_host *mmc = amba_get_drvdata(dev);
834 int ret = 0;
835
836 if (mmc) {
837 struct mmci_host *host = mmc_priv(mmc);
838
839 writel(MCI_IRQENABLE, host->base + MMCIMASK0);
840
841 ret = mmc_resume_host(mmc);
842 }
843
844 return ret;
845}
846#else
847#define mmci_suspend NULL
848#define mmci_resume NULL
849#endif
850
851static struct amba_id mmci_ids[] = {
852 {
853 .id = 0x00041180,
854 .mask = 0x000fffff,
855 },
856 {
857 .id = 0x00041181,
858 .mask = 0x000fffff,
859 },
Linus Walleijcc30d602009-01-04 15:18:54 +0100860 /* ST Micro variants */
861 {
862 .id = 0x00180180,
863 .mask = 0x00ffffff,
864 },
865 {
866 .id = 0x00280180,
867 .mask = 0x00ffffff,
868 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 { 0, 0 },
870};
871
872static struct amba_driver mmci_driver = {
873 .drv = {
874 .name = DRIVER_NAME,
875 },
876 .probe = mmci_probe,
Linus Walleij6dc4a472009-03-07 00:23:52 +0100877 .remove = __devexit_p(mmci_remove),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 .suspend = mmci_suspend,
879 .resume = mmci_resume,
880 .id_table = mmci_ids,
881};
882
883static int __init mmci_init(void)
884{
885 return amba_driver_register(&mmci_driver);
886}
887
888static void __exit mmci_exit(void)
889{
890 amba_driver_unregister(&mmci_driver);
891}
892
893module_init(mmci_init);
894module_exit(mmci_exit);
895module_param(fmax, uint, 0444);
896
897MODULE_DESCRIPTION("ARM PrimeCell PL180/181 Multimedia Card Interface driver");
898MODULE_LICENSE("GPL");