blob: b4a7e4fba90fa2fdb30e78632e09d85a484baff2 [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.
Russell Kingc8ebae32011-01-11 19:35:53 +00005 * Copyright (C) 2010 ST-Ericsson SA
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>
Russell King613b1522011-01-30 21:06:53 +000017#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/delay.h>
19#include <linux/err.h>
20#include <linux/highmem.h>
Nicolas Pitre019a5f52007-10-11 01:06:03 -040021#include <linux/log2.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/mmc/host.h>
Linus Walleij34177802010-10-19 12:43:58 +010023#include <linux/mmc/card.h>
Russell Kinga62c80e2006-01-07 13:52:45 +000024#include <linux/amba/bus.h>
Russell Kingf8ce2542006-01-07 16:15:52 +000025#include <linux/clk.h>
Jens Axboebd6dee62007-10-24 09:01:09 +020026#include <linux/scatterlist.h>
Russell King89001442009-07-09 15:16:07 +010027#include <linux/gpio.h>
Linus Walleij34e84f32009-09-22 14:41:40 +010028#include <linux/regulator/consumer.h>
Russell Kingc8ebae32011-01-11 19:35:53 +000029#include <linux/dmaengine.h>
30#include <linux/dma-mapping.h>
31#include <linux/amba/mmci.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Russell King7b09cda2005-07-01 12:02:59 +010033#include <asm/div64.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <asm/io.h>
Russell Kingc6b8fda2005-10-28 14:05:16 +010035#include <asm/sizes.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37#include "mmci.h"
38
39#define DRIVER_NAME "mmci-pl18x"
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041static unsigned int fmax = 515633;
42
Rabin Vincent4956e102010-07-21 12:54:40 +010043/**
44 * struct variant_data - MMCI variant-specific quirks
45 * @clkreg: default value for MCICLOCK register
Rabin Vincent4380c142010-07-21 12:55:18 +010046 * @clkreg_enable: enable value for MMCICLOCK register
Rabin Vincent08458ef2010-07-21 12:55:59 +010047 * @datalength_bits: number of bits in the MMCIDATALENGTH register
Rabin Vincent8301bb62010-08-09 12:57:30 +010048 * @fifosize: number of bytes that can be written when MMCI_TXFIFOEMPTY
49 * is asserted (likewise for RX)
50 * @fifohalfsize: number of bytes that can be written when MCI_TXFIFOHALFEMPTY
51 * is asserted (likewise for RX)
Linus Walleij34177802010-10-19 12:43:58 +010052 * @sdio: variant supports SDIO
Linus Walleijb70a67f2010-12-06 09:24:14 +010053 * @st_clkdiv: true if using a ST-specific clock divider algorithm
Rabin Vincent4956e102010-07-21 12:54:40 +010054 */
55struct variant_data {
56 unsigned int clkreg;
Rabin Vincent4380c142010-07-21 12:55:18 +010057 unsigned int clkreg_enable;
Rabin Vincent08458ef2010-07-21 12:55:59 +010058 unsigned int datalength_bits;
Rabin Vincent8301bb62010-08-09 12:57:30 +010059 unsigned int fifosize;
60 unsigned int fifohalfsize;
Linus Walleij34177802010-10-19 12:43:58 +010061 bool sdio;
Linus Walleijb70a67f2010-12-06 09:24:14 +010062 bool st_clkdiv;
Rabin Vincent4956e102010-07-21 12:54:40 +010063};
64
65static struct variant_data variant_arm = {
Rabin Vincent8301bb62010-08-09 12:57:30 +010066 .fifosize = 16 * 4,
67 .fifohalfsize = 8 * 4,
Rabin Vincent08458ef2010-07-21 12:55:59 +010068 .datalength_bits = 16,
Rabin Vincent4956e102010-07-21 12:54:40 +010069};
70
Pawel Moll768fbc12011-03-11 17:18:07 +000071static struct variant_data variant_arm_extended_fifo = {
72 .fifosize = 128 * 4,
73 .fifohalfsize = 64 * 4,
74 .datalength_bits = 16,
75};
76
Rabin Vincent4956e102010-07-21 12:54:40 +010077static struct variant_data variant_u300 = {
Rabin Vincent8301bb62010-08-09 12:57:30 +010078 .fifosize = 16 * 4,
79 .fifohalfsize = 8 * 4,
Rabin Vincent4380c142010-07-21 12:55:18 +010080 .clkreg_enable = 1 << 13, /* HWFCEN */
Rabin Vincent08458ef2010-07-21 12:55:59 +010081 .datalength_bits = 16,
Linus Walleij34177802010-10-19 12:43:58 +010082 .sdio = true,
Rabin Vincent4956e102010-07-21 12:54:40 +010083};
84
85static struct variant_data variant_ux500 = {
Rabin Vincent8301bb62010-08-09 12:57:30 +010086 .fifosize = 30 * 4,
87 .fifohalfsize = 8 * 4,
Rabin Vincent4956e102010-07-21 12:54:40 +010088 .clkreg = MCI_CLK_ENABLE,
Rabin Vincent4380c142010-07-21 12:55:18 +010089 .clkreg_enable = 1 << 14, /* HWFCEN */
Rabin Vincent08458ef2010-07-21 12:55:59 +010090 .datalength_bits = 24,
Linus Walleij34177802010-10-19 12:43:58 +010091 .sdio = true,
Linus Walleijb70a67f2010-12-06 09:24:14 +010092 .st_clkdiv = true,
Rabin Vincent4956e102010-07-21 12:54:40 +010093};
Linus Walleijb70a67f2010-12-06 09:24:14 +010094
Linus Walleija6a64642009-09-14 12:56:14 +010095/*
96 * This must be called with host->lock held
97 */
98static void mmci_set_clkreg(struct mmci_host *host, unsigned int desired)
99{
Rabin Vincent4956e102010-07-21 12:54:40 +0100100 struct variant_data *variant = host->variant;
101 u32 clk = variant->clkreg;
Linus Walleija6a64642009-09-14 12:56:14 +0100102
103 if (desired) {
104 if (desired >= host->mclk) {
Linus Walleij991a86e2010-12-10 09:35:53 +0100105 clk = MCI_CLK_BYPASS;
Linus Walleija6a64642009-09-14 12:56:14 +0100106 host->cclk = host->mclk;
Linus Walleijb70a67f2010-12-06 09:24:14 +0100107 } else if (variant->st_clkdiv) {
108 /*
109 * DB8500 TRM says f = mclk / (clkdiv + 2)
110 * => clkdiv = (mclk / f) - 2
111 * Round the divider up so we don't exceed the max
112 * frequency
113 */
114 clk = DIV_ROUND_UP(host->mclk, desired) - 2;
115 if (clk >= 256)
116 clk = 255;
117 host->cclk = host->mclk / (clk + 2);
Linus Walleija6a64642009-09-14 12:56:14 +0100118 } else {
Linus Walleijb70a67f2010-12-06 09:24:14 +0100119 /*
120 * PL180 TRM says f = mclk / (2 * (clkdiv + 1))
121 * => clkdiv = mclk / (2 * f) - 1
122 */
Linus Walleija6a64642009-09-14 12:56:14 +0100123 clk = host->mclk / (2 * desired) - 1;
124 if (clk >= 256)
125 clk = 255;
126 host->cclk = host->mclk / (2 * (clk + 1));
127 }
Rabin Vincent4380c142010-07-21 12:55:18 +0100128
129 clk |= variant->clkreg_enable;
Linus Walleija6a64642009-09-14 12:56:14 +0100130 clk |= MCI_CLK_ENABLE;
131 /* This hasn't proven to be worthwhile */
132 /* clk |= MCI_CLK_PWRSAVE; */
133 }
134
Linus Walleij9e6c82c2009-09-14 12:57:11 +0100135 if (host->mmc->ios.bus_width == MMC_BUS_WIDTH_4)
Linus Walleij771dc152010-04-08 07:38:52 +0100136 clk |= MCI_4BIT_BUS;
137 if (host->mmc->ios.bus_width == MMC_BUS_WIDTH_8)
138 clk |= MCI_ST_8BIT_BUS;
Linus Walleij9e6c82c2009-09-14 12:57:11 +0100139
Linus Walleija6a64642009-09-14 12:56:14 +0100140 writel(clk, host->base + MMCICLOCK);
141}
142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143static void
144mmci_request_end(struct mmci_host *host, struct mmc_request *mrq)
145{
146 writel(0, host->base + MMCICOMMAND);
147
Russell Kinge47c2222007-01-08 16:42:51 +0000148 BUG_ON(host->data);
149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 host->mrq = NULL;
151 host->cmd = NULL;
152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 /*
154 * Need to drop the host lock here; mmc_request_done may call
155 * back into the driver...
156 */
157 spin_unlock(&host->lock);
158 mmc_request_done(host->mmc, mrq);
159 spin_lock(&host->lock);
160}
161
Linus Walleij2686b4b2010-10-19 12:39:48 +0100162static void mmci_set_mask1(struct mmci_host *host, unsigned int mask)
163{
164 void __iomem *base = host->base;
165
166 if (host->singleirq) {
167 unsigned int mask0 = readl(base + MMCIMASK0);
168
169 mask0 &= ~MCI_IRQ1MASK;
170 mask0 |= mask;
171
172 writel(mask0, base + MMCIMASK0);
173 }
174
175 writel(mask, base + MMCIMASK1);
176}
177
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178static void mmci_stop_data(struct mmci_host *host)
179{
180 writel(0, host->base + MMCIDATACTRL);
Linus Walleij2686b4b2010-10-19 12:39:48 +0100181 mmci_set_mask1(host, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 host->data = NULL;
183}
184
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100185static void mmci_init_sg(struct mmci_host *host, struct mmc_data *data)
186{
187 unsigned int flags = SG_MITER_ATOMIC;
188
189 if (data->flags & MMC_DATA_READ)
190 flags |= SG_MITER_TO_SG;
191 else
192 flags |= SG_MITER_FROM_SG;
193
194 sg_miter_start(&host->sg_miter, data->sg, data->sg_len, flags);
195}
196
Russell Kingc8ebae32011-01-11 19:35:53 +0000197/*
198 * All the DMA operation mode stuff goes inside this ifdef.
199 * This assumes that you have a generic DMA device interface,
200 * no custom DMA interfaces are supported.
201 */
202#ifdef CONFIG_DMA_ENGINE
203static void __devinit mmci_dma_setup(struct mmci_host *host)
204{
205 struct mmci_platform_data *plat = host->plat;
206 const char *rxname, *txname;
207 dma_cap_mask_t mask;
208
209 if (!plat || !plat->dma_filter) {
210 dev_info(mmc_dev(host->mmc), "no DMA platform data\n");
211 return;
212 }
213
214 /* Try to acquire a generic DMA engine slave channel */
215 dma_cap_zero(mask);
216 dma_cap_set(DMA_SLAVE, mask);
217
218 /*
219 * If only an RX channel is specified, the driver will
220 * attempt to use it bidirectionally, however if it is
221 * is specified but cannot be located, DMA will be disabled.
222 */
223 if (plat->dma_rx_param) {
224 host->dma_rx_channel = dma_request_channel(mask,
225 plat->dma_filter,
226 plat->dma_rx_param);
227 /* E.g if no DMA hardware is present */
228 if (!host->dma_rx_channel)
229 dev_err(mmc_dev(host->mmc), "no RX DMA channel\n");
230 }
231
232 if (plat->dma_tx_param) {
233 host->dma_tx_channel = dma_request_channel(mask,
234 plat->dma_filter,
235 plat->dma_tx_param);
236 if (!host->dma_tx_channel)
237 dev_warn(mmc_dev(host->mmc), "no TX DMA channel\n");
238 } else {
239 host->dma_tx_channel = host->dma_rx_channel;
240 }
241
242 if (host->dma_rx_channel)
243 rxname = dma_chan_name(host->dma_rx_channel);
244 else
245 rxname = "none";
246
247 if (host->dma_tx_channel)
248 txname = dma_chan_name(host->dma_tx_channel);
249 else
250 txname = "none";
251
252 dev_info(mmc_dev(host->mmc), "DMA channels RX %s, TX %s\n",
253 rxname, txname);
254
255 /*
256 * Limit the maximum segment size in any SG entry according to
257 * the parameters of the DMA engine device.
258 */
259 if (host->dma_tx_channel) {
260 struct device *dev = host->dma_tx_channel->device->dev;
261 unsigned int max_seg_size = dma_get_max_seg_size(dev);
262
263 if (max_seg_size < host->mmc->max_seg_size)
264 host->mmc->max_seg_size = max_seg_size;
265 }
266 if (host->dma_rx_channel) {
267 struct device *dev = host->dma_rx_channel->device->dev;
268 unsigned int max_seg_size = dma_get_max_seg_size(dev);
269
270 if (max_seg_size < host->mmc->max_seg_size)
271 host->mmc->max_seg_size = max_seg_size;
272 }
273}
274
275/*
276 * This is used in __devinit or __devexit so inline it
277 * so it can be discarded.
278 */
279static inline void mmci_dma_release(struct mmci_host *host)
280{
281 struct mmci_platform_data *plat = host->plat;
282
283 if (host->dma_rx_channel)
284 dma_release_channel(host->dma_rx_channel);
285 if (host->dma_tx_channel && plat->dma_tx_param)
286 dma_release_channel(host->dma_tx_channel);
287 host->dma_rx_channel = host->dma_tx_channel = NULL;
288}
289
290static void mmci_dma_unmap(struct mmci_host *host, struct mmc_data *data)
291{
292 struct dma_chan *chan = host->dma_current;
293 enum dma_data_direction dir;
294 u32 status;
295 int i;
296
297 /* Wait up to 1ms for the DMA to complete */
298 for (i = 0; ; i++) {
299 status = readl(host->base + MMCISTATUS);
300 if (!(status & MCI_RXDATAAVLBLMASK) || i >= 100)
301 break;
302 udelay(10);
303 }
304
305 /*
306 * Check to see whether we still have some data left in the FIFO -
307 * this catches DMA controllers which are unable to monitor the
308 * DMALBREQ and DMALSREQ signals while allowing us to DMA to non-
309 * contiguous buffers. On TX, we'll get a FIFO underrun error.
310 */
311 if (status & MCI_RXDATAAVLBLMASK) {
312 dmaengine_terminate_all(chan);
313 if (!data->error)
314 data->error = -EIO;
315 }
316
317 if (data->flags & MMC_DATA_WRITE) {
318 dir = DMA_TO_DEVICE;
319 } else {
320 dir = DMA_FROM_DEVICE;
321 }
322
323 dma_unmap_sg(chan->device->dev, data->sg, data->sg_len, dir);
324
325 /*
326 * Use of DMA with scatter-gather is impossible.
327 * Give up with DMA and switch back to PIO mode.
328 */
329 if (status & MCI_RXDATAAVLBLMASK) {
330 dev_err(mmc_dev(host->mmc), "buggy DMA detected. Taking evasive action.\n");
331 mmci_dma_release(host);
332 }
333}
334
335static void mmci_dma_data_error(struct mmci_host *host)
336{
337 dev_err(mmc_dev(host->mmc), "error during DMA transfer!\n");
338 dmaengine_terminate_all(host->dma_current);
339}
340
341static int mmci_dma_start_data(struct mmci_host *host, unsigned int datactrl)
342{
343 struct variant_data *variant = host->variant;
344 struct dma_slave_config conf = {
345 .src_addr = host->phybase + MMCIFIFO,
346 .dst_addr = host->phybase + MMCIFIFO,
347 .src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES,
348 .dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES,
349 .src_maxburst = variant->fifohalfsize >> 2, /* # of words */
350 .dst_maxburst = variant->fifohalfsize >> 2, /* # of words */
351 };
352 struct mmc_data *data = host->data;
353 struct dma_chan *chan;
354 struct dma_device *device;
355 struct dma_async_tx_descriptor *desc;
356 int nr_sg;
357
358 host->dma_current = NULL;
359
360 if (data->flags & MMC_DATA_READ) {
361 conf.direction = DMA_FROM_DEVICE;
362 chan = host->dma_rx_channel;
363 } else {
364 conf.direction = DMA_TO_DEVICE;
365 chan = host->dma_tx_channel;
366 }
367
368 /* If there's no DMA channel, fall back to PIO */
369 if (!chan)
370 return -EINVAL;
371
372 /* If less than or equal to the fifo size, don't bother with DMA */
373 if (host->size <= variant->fifosize)
374 return -EINVAL;
375
376 device = chan->device;
377 nr_sg = dma_map_sg(device->dev, data->sg, data->sg_len, conf.direction);
378 if (nr_sg == 0)
379 return -EINVAL;
380
381 dmaengine_slave_config(chan, &conf);
382 desc = device->device_prep_slave_sg(chan, data->sg, nr_sg,
383 conf.direction, DMA_CTRL_ACK);
384 if (!desc)
385 goto unmap_exit;
386
387 /* Okay, go for it. */
388 host->dma_current = chan;
389
390 dev_vdbg(mmc_dev(host->mmc),
391 "Submit MMCI DMA job, sglen %d blksz %04x blks %04x flags %08x\n",
392 data->sg_len, data->blksz, data->blocks, data->flags);
393 dmaengine_submit(desc);
394 dma_async_issue_pending(chan);
395
396 datactrl |= MCI_DPSM_DMAENABLE;
397
398 /* Trigger the DMA transfer */
399 writel(datactrl, host->base + MMCIDATACTRL);
400
401 /*
402 * Let the MMCI say when the data is ended and it's time
403 * to fire next DMA request. When that happens, MMCI will
404 * call mmci_data_end()
405 */
406 writel(readl(host->base + MMCIMASK0) | MCI_DATAENDMASK,
407 host->base + MMCIMASK0);
408 return 0;
409
410unmap_exit:
411 dmaengine_terminate_all(chan);
412 dma_unmap_sg(device->dev, data->sg, data->sg_len, conf.direction);
413 return -ENOMEM;
414}
415#else
416/* Blank functions if the DMA engine is not available */
417static inline void mmci_dma_setup(struct mmci_host *host)
418{
419}
420
421static inline void mmci_dma_release(struct mmci_host *host)
422{
423}
424
425static inline void mmci_dma_unmap(struct mmci_host *host, struct mmc_data *data)
426{
427}
428
429static inline void mmci_dma_data_error(struct mmci_host *host)
430{
431}
432
433static inline int mmci_dma_start_data(struct mmci_host *host, unsigned int datactrl)
434{
435 return -ENOSYS;
436}
437#endif
438
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439static void mmci_start_data(struct mmci_host *host, struct mmc_data *data)
440{
Rabin Vincent8301bb62010-08-09 12:57:30 +0100441 struct variant_data *variant = host->variant;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 unsigned int datactrl, timeout, irqmask;
Russell King7b09cda2005-07-01 12:02:59 +0100443 unsigned long long clks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 void __iomem *base;
Russell King3bc87f22006-08-27 13:51:28 +0100445 int blksz_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
Linus Walleij64de0282010-02-19 01:09:10 +0100447 dev_dbg(mmc_dev(host->mmc), "blksz %04x blks %04x flags %08x\n",
448 data->blksz, data->blocks, data->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
450 host->data = data;
Rabin Vincent528320d2010-07-21 12:49:49 +0100451 host->size = data->blksz * data->blocks;
Russell King51d43752011-01-27 10:56:52 +0000452 data->bytes_xfered = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Russell King7b09cda2005-07-01 12:02:59 +0100454 clks = (unsigned long long)data->timeout_ns * host->cclk;
455 do_div(clks, 1000000000UL);
456
457 timeout = data->timeout_clks + (unsigned int)clks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
459 base = host->base;
460 writel(timeout, base + MMCIDATATIMER);
461 writel(host->size, base + MMCIDATALENGTH);
462
Russell King3bc87f22006-08-27 13:51:28 +0100463 blksz_bits = ffs(data->blksz) - 1;
464 BUG_ON(1 << blksz_bits != data->blksz);
465
466 datactrl = MCI_DPSM_ENABLE | blksz_bits << 4;
Russell Kingc8ebae32011-01-11 19:35:53 +0000467
468 if (data->flags & MMC_DATA_READ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 datactrl |= MCI_DPSM_DIRECTION;
Russell Kingc8ebae32011-01-11 19:35:53 +0000470
471 /*
472 * Attempt to use DMA operation mode, if this
473 * should fail, fall back to PIO mode
474 */
475 if (!mmci_dma_start_data(host, datactrl))
476 return;
477
478 /* IRQ mode, map the SG list for CPU reading/writing */
479 mmci_init_sg(host, data);
480
481 if (data->flags & MMC_DATA_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 irqmask = MCI_RXFIFOHALFFULLMASK;
Russell King0425a142006-02-16 16:48:31 +0000483
484 /*
Russell Kingc4d877c2011-01-27 09:50:13 +0000485 * If we have less than the fifo 'half-full' threshold to
486 * transfer, trigger a PIO interrupt as soon as any data
487 * is available.
Russell King0425a142006-02-16 16:48:31 +0000488 */
Russell Kingc4d877c2011-01-27 09:50:13 +0000489 if (host->size < variant->fifohalfsize)
Russell King0425a142006-02-16 16:48:31 +0000490 irqmask |= MCI_RXDATAAVLBLMASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 } else {
492 /*
493 * We don't actually need to include "FIFO empty" here
494 * since its implicit in "FIFO half empty".
495 */
496 irqmask = MCI_TXFIFOHALFEMPTYMASK;
497 }
498
Linus Walleij34177802010-10-19 12:43:58 +0100499 /* The ST Micro variants has a special bit to enable SDIO */
500 if (variant->sdio && host->mmc->card)
501 if (mmc_card_sdio(host->mmc->card))
502 datactrl |= MCI_ST_DPSM_SDIOEN;
503
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 writel(datactrl, base + MMCIDATACTRL);
505 writel(readl(base + MMCIMASK0) & ~MCI_DATAENDMASK, base + MMCIMASK0);
Linus Walleij2686b4b2010-10-19 12:39:48 +0100506 mmci_set_mask1(host, irqmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507}
508
509static void
510mmci_start_command(struct mmci_host *host, struct mmc_command *cmd, u32 c)
511{
512 void __iomem *base = host->base;
513
Linus Walleij64de0282010-02-19 01:09:10 +0100514 dev_dbg(mmc_dev(host->mmc), "op %02x arg %08x flags %08x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 cmd->opcode, cmd->arg, cmd->flags);
516
517 if (readl(base + MMCICOMMAND) & MCI_CPSM_ENABLE) {
518 writel(0, base + MMCICOMMAND);
519 udelay(1);
520 }
521
522 c |= cmd->opcode | MCI_CPSM_ENABLE;
Russell Kinge9225172006-02-02 12:23:12 +0000523 if (cmd->flags & MMC_RSP_PRESENT) {
524 if (cmd->flags & MMC_RSP_136)
525 c |= MCI_CPSM_LONGRSP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 c |= MCI_CPSM_RESPONSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 }
528 if (/*interrupt*/0)
529 c |= MCI_CPSM_INTERRUPT;
530
531 host->cmd = cmd;
532
533 writel(cmd->arg, base + MMCIARGUMENT);
534 writel(c, base + MMCICOMMAND);
535}
536
537static void
538mmci_data_irq(struct mmci_host *host, struct mmc_data *data,
539 unsigned int status)
540{
Linus Walleijf20f8f22010-10-19 13:41:24 +0100541 /* First check for errors */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 if (status & (MCI_DATACRCFAIL|MCI_DATATIMEOUT|MCI_TXUNDERRUN|MCI_RXOVERRUN)) {
Linus Walleij8cb28152011-01-24 15:22:13 +0100543 u32 remain, success;
Linus Walleijf20f8f22010-10-19 13:41:24 +0100544
Russell Kingc8ebae32011-01-11 19:35:53 +0000545 /* Terminate the DMA transfer */
546 if (dma_inprogress(host))
547 mmci_dma_data_error(host);
548
Russell Kingc8afc9d2011-02-04 09:19:46 +0000549 /*
550 * Calculate how far we are into the transfer. Note that
551 * the data counter gives the number of bytes transferred
552 * on the MMC bus, not on the host side. On reads, this
553 * can be as much as a FIFO-worth of data ahead. This
554 * matters for FIFO overruns only.
555 */
Linus Walleijf5a106d2011-01-27 17:44:34 +0100556 remain = readl(host->base + MMCIDATACNT);
Linus Walleij8cb28152011-01-24 15:22:13 +0100557 success = data->blksz * data->blocks - remain;
558
Russell Kingc8afc9d2011-02-04 09:19:46 +0000559 dev_dbg(mmc_dev(host->mmc), "MCI ERROR IRQ, status 0x%08x at 0x%08x\n",
560 status, success);
Linus Walleij8cb28152011-01-24 15:22:13 +0100561 if (status & MCI_DATACRCFAIL) {
562 /* Last block was not successful */
Russell Kingc8afc9d2011-02-04 09:19:46 +0000563 success -= 1;
Pierre Ossman17b04292007-07-22 22:18:46 +0200564 data->error = -EILSEQ;
Linus Walleij8cb28152011-01-24 15:22:13 +0100565 } else if (status & MCI_DATATIMEOUT) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200566 data->error = -ETIMEDOUT;
Russell Kingc8afc9d2011-02-04 09:19:46 +0000567 } else if (status & MCI_TXUNDERRUN) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200568 data->error = -EIO;
Russell Kingc8afc9d2011-02-04 09:19:46 +0000569 } else if (status & MCI_RXOVERRUN) {
570 if (success > host->variant->fifosize)
571 success -= host->variant->fifosize;
572 else
573 success = 0;
Linus Walleij8cb28152011-01-24 15:22:13 +0100574 data->error = -EIO;
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100575 }
Russell King51d43752011-01-27 10:56:52 +0000576 data->bytes_xfered = round_down(success, data->blksz);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 }
Linus Walleijf20f8f22010-10-19 13:41:24 +0100578
Linus Walleij8cb28152011-01-24 15:22:13 +0100579 if (status & MCI_DATABLOCKEND)
580 dev_err(mmc_dev(host->mmc), "stray MCI_DATABLOCKEND interrupt\n");
Linus Walleijf20f8f22010-10-19 13:41:24 +0100581
Russell Kingccff9b52011-01-30 21:03:50 +0000582 if (status & MCI_DATAEND || data->error) {
Russell Kingc8ebae32011-01-11 19:35:53 +0000583 if (dma_inprogress(host))
584 mmci_dma_unmap(host, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 mmci_stop_data(host);
586
Linus Walleij8cb28152011-01-24 15:22:13 +0100587 if (!data->error)
588 /* The error clause is handled above, success! */
Russell King51d43752011-01-27 10:56:52 +0000589 data->bytes_xfered = data->blksz * data->blocks;
Linus Walleijf20f8f22010-10-19 13:41:24 +0100590
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 if (!data->stop) {
592 mmci_request_end(host, data->mrq);
593 } else {
594 mmci_start_command(host, data->stop, 0);
595 }
596 }
597}
598
599static void
600mmci_cmd_irq(struct mmci_host *host, struct mmc_command *cmd,
601 unsigned int status)
602{
603 void __iomem *base = host->base;
604
605 host->cmd = NULL;
606
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 if (status & MCI_CMDTIMEOUT) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200608 cmd->error = -ETIMEDOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 } else if (status & MCI_CMDCRCFAIL && cmd->flags & MMC_RSP_CRC) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200610 cmd->error = -EILSEQ;
Russell King - ARM Linux9047b432011-01-11 16:35:56 +0000611 } else {
612 cmd->resp[0] = readl(base + MMCIRESPONSE0);
613 cmd->resp[1] = readl(base + MMCIRESPONSE1);
614 cmd->resp[2] = readl(base + MMCIRESPONSE2);
615 cmd->resp[3] = readl(base + MMCIRESPONSE3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 }
617
Pierre Ossman17b04292007-07-22 22:18:46 +0200618 if (!cmd->data || cmd->error) {
Russell Kinge47c2222007-01-08 16:42:51 +0000619 if (host->data)
620 mmci_stop_data(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 mmci_request_end(host, cmd->mrq);
622 } else if (!(cmd->data->flags & MMC_DATA_READ)) {
623 mmci_start_data(host, cmd->data);
624 }
625}
626
627static int mmci_pio_read(struct mmci_host *host, char *buffer, unsigned int remain)
628{
629 void __iomem *base = host->base;
630 char *ptr = buffer;
631 u32 status;
Linus Walleij26eed9a2008-04-26 23:39:44 +0100632 int host_remain = host->size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
634 do {
Linus Walleij26eed9a2008-04-26 23:39:44 +0100635 int count = host_remain - (readl(base + MMCIFIFOCNT) << 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
637 if (count > remain)
638 count = remain;
639
640 if (count <= 0)
641 break;
642
643 readsl(base + MMCIFIFO, ptr, count >> 2);
644
645 ptr += count;
646 remain -= count;
Linus Walleij26eed9a2008-04-26 23:39:44 +0100647 host_remain -= count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
649 if (remain == 0)
650 break;
651
652 status = readl(base + MMCISTATUS);
653 } while (status & MCI_RXDATAAVLBL);
654
655 return ptr - buffer;
656}
657
658static int mmci_pio_write(struct mmci_host *host, char *buffer, unsigned int remain, u32 status)
659{
Rabin Vincent8301bb62010-08-09 12:57:30 +0100660 struct variant_data *variant = host->variant;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 void __iomem *base = host->base;
662 char *ptr = buffer;
663
664 do {
665 unsigned int count, maxcnt;
666
Rabin Vincent8301bb62010-08-09 12:57:30 +0100667 maxcnt = status & MCI_TXFIFOEMPTY ?
668 variant->fifosize : variant->fifohalfsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 count = min(remain, maxcnt);
670
Linus Walleij34177802010-10-19 12:43:58 +0100671 /*
672 * The ST Micro variant for SDIO transfer sizes
673 * less then 8 bytes should have clock H/W flow
674 * control disabled.
675 */
676 if (variant->sdio &&
677 mmc_card_sdio(host->mmc->card)) {
678 if (count < 8)
679 writel(readl(host->base + MMCICLOCK) &
680 ~variant->clkreg_enable,
681 host->base + MMCICLOCK);
682 else
683 writel(readl(host->base + MMCICLOCK) |
684 variant->clkreg_enable,
685 host->base + MMCICLOCK);
686 }
687
688 /*
689 * SDIO especially may want to send something that is
690 * not divisible by 4 (as opposed to card sectors
691 * etc), and the FIFO only accept full 32-bit writes.
692 * So compensate by adding +3 on the count, a single
693 * byte become a 32bit write, 7 bytes will be two
694 * 32bit writes etc.
695 */
696 writesl(base + MMCIFIFO, ptr, (count + 3) >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
698 ptr += count;
699 remain -= count;
700
701 if (remain == 0)
702 break;
703
704 status = readl(base + MMCISTATUS);
705 } while (status & MCI_TXFIFOHALFEMPTY);
706
707 return ptr - buffer;
708}
709
710/*
711 * PIO data transfer IRQ handler.
712 */
David Howells7d12e782006-10-05 14:55:46 +0100713static irqreturn_t mmci_pio_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714{
715 struct mmci_host *host = dev_id;
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100716 struct sg_mapping_iter *sg_miter = &host->sg_miter;
Rabin Vincent8301bb62010-08-09 12:57:30 +0100717 struct variant_data *variant = host->variant;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 void __iomem *base = host->base;
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100719 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 u32 status;
721
722 status = readl(base + MMCISTATUS);
723
Linus Walleij64de0282010-02-19 01:09:10 +0100724 dev_dbg(mmc_dev(host->mmc), "irq1 (pio) %08x\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100726 local_irq_save(flags);
727
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 unsigned int remain, len;
730 char *buffer;
731
732 /*
733 * For write, we only need to test the half-empty flag
734 * here - if the FIFO is completely empty, then by
735 * definition it is more than half empty.
736 *
737 * For read, check for data available.
738 */
739 if (!(status & (MCI_TXFIFOHALFEMPTY|MCI_RXDATAAVLBL)))
740 break;
741
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100742 if (!sg_miter_next(sg_miter))
743 break;
744
745 buffer = sg_miter->addr;
746 remain = sg_miter->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
748 len = 0;
749 if (status & MCI_RXACTIVE)
750 len = mmci_pio_read(host, buffer, remain);
751 if (status & MCI_TXACTIVE)
752 len = mmci_pio_write(host, buffer, remain, status);
753
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100754 sg_miter->consumed = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 host->size -= len;
757 remain -= len;
758
759 if (remain)
760 break;
761
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 status = readl(base + MMCISTATUS);
763 } while (1);
764
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100765 sg_miter_stop(sg_miter);
766
767 local_irq_restore(flags);
768
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 /*
Russell Kingc4d877c2011-01-27 09:50:13 +0000770 * If we have less than the fifo 'half-full' threshold to transfer,
771 * trigger a PIO interrupt as soon as any data is available.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 */
Russell Kingc4d877c2011-01-27 09:50:13 +0000773 if (status & MCI_RXACTIVE && host->size < variant->fifohalfsize)
Linus Walleij2686b4b2010-10-19 12:39:48 +0100774 mmci_set_mask1(host, MCI_RXDATAAVLBLMASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
776 /*
777 * If we run out of data, disable the data IRQs; this
778 * prevents a race where the FIFO becomes empty before
779 * the chip itself has disabled the data path, and
780 * stops us racing with our data end IRQ.
781 */
782 if (host->size == 0) {
Linus Walleij2686b4b2010-10-19 12:39:48 +0100783 mmci_set_mask1(host, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 writel(readl(base + MMCIMASK0) | MCI_DATAENDMASK, base + MMCIMASK0);
785 }
786
787 return IRQ_HANDLED;
788}
789
790/*
791 * Handle completion of command and data transfers.
792 */
David Howells7d12e782006-10-05 14:55:46 +0100793static irqreturn_t mmci_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794{
795 struct mmci_host *host = dev_id;
796 u32 status;
797 int ret = 0;
798
799 spin_lock(&host->lock);
800
801 do {
802 struct mmc_command *cmd;
803 struct mmc_data *data;
804
805 status = readl(host->base + MMCISTATUS);
Linus Walleij2686b4b2010-10-19 12:39:48 +0100806
807 if (host->singleirq) {
808 if (status & readl(host->base + MMCIMASK1))
809 mmci_pio_irq(irq, dev_id);
810
811 status &= ~MCI_IRQ1MASK;
812 }
813
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 status &= readl(host->base + MMCIMASK0);
815 writel(status, host->base + MMCICLEAR);
816
Linus Walleij64de0282010-02-19 01:09:10 +0100817 dev_dbg(mmc_dev(host->mmc), "irq0 (data+cmd) %08x\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
819 data = host->data;
820 if (status & (MCI_DATACRCFAIL|MCI_DATATIMEOUT|MCI_TXUNDERRUN|
821 MCI_RXOVERRUN|MCI_DATAEND|MCI_DATABLOCKEND) && data)
822 mmci_data_irq(host, data, status);
823
824 cmd = host->cmd;
825 if (status & (MCI_CMDCRCFAIL|MCI_CMDTIMEOUT|MCI_CMDSENT|MCI_CMDRESPEND) && cmd)
826 mmci_cmd_irq(host, cmd, status);
827
828 ret = 1;
829 } while (status);
830
831 spin_unlock(&host->lock);
832
833 return IRQ_RETVAL(ret);
834}
835
836static void mmci_request(struct mmc_host *mmc, struct mmc_request *mrq)
837{
838 struct mmci_host *host = mmc_priv(mmc);
Linus Walleij9e943022008-10-24 21:17:50 +0100839 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
841 WARN_ON(host->mrq != NULL);
842
Nicolas Pitre019a5f52007-10-11 01:06:03 -0400843 if (mrq->data && !is_power_of_2(mrq->data->blksz)) {
Linus Walleij64de0282010-02-19 01:09:10 +0100844 dev_err(mmc_dev(mmc), "unsupported block size (%d bytes)\n",
845 mrq->data->blksz);
Pierre Ossman255d01a2007-07-24 20:38:53 +0200846 mrq->cmd->error = -EINVAL;
847 mmc_request_done(mmc, mrq);
848 return;
849 }
850
Linus Walleij9e943022008-10-24 21:17:50 +0100851 spin_lock_irqsave(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
853 host->mrq = mrq;
854
855 if (mrq->data && mrq->data->flags & MMC_DATA_READ)
856 mmci_start_data(host, mrq->data);
857
858 mmci_start_command(host, mrq->cmd, 0);
859
Linus Walleij9e943022008-10-24 21:17:50 +0100860 spin_unlock_irqrestore(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861}
862
863static void mmci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
864{
865 struct mmci_host *host = mmc_priv(mmc);
Linus Walleija6a64642009-09-14 12:56:14 +0100866 u32 pwr = 0;
867 unsigned long flags;
Linus Walleij99fc5132010-09-29 01:08:27 -0400868 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 switch (ios->power_mode) {
871 case MMC_POWER_OFF:
Linus Walleij99fc5132010-09-29 01:08:27 -0400872 if (host->vcc)
873 ret = mmc_regulator_set_ocr(mmc, host->vcc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 break;
875 case MMC_POWER_UP:
Linus Walleij99fc5132010-09-29 01:08:27 -0400876 if (host->vcc) {
877 ret = mmc_regulator_set_ocr(mmc, host->vcc, ios->vdd);
878 if (ret) {
879 dev_err(mmc_dev(mmc), "unable to set OCR\n");
880 /*
881 * The .set_ios() function in the mmc_host_ops
882 * struct return void, and failing to set the
883 * power should be rare so we print an error
884 * and return here.
885 */
886 return;
887 }
888 }
Rabin Vincentbb8f5632010-07-21 12:53:57 +0100889 if (host->plat->vdd_handler)
890 pwr |= host->plat->vdd_handler(mmc_dev(mmc), ios->vdd,
891 ios->power_mode);
Linus Walleijcc30d602009-01-04 15:18:54 +0100892 /* The ST version does not have this, fall through to POWER_ON */
Linus Walleijf17a1f02009-08-04 01:01:02 +0100893 if (host->hw_designer != AMBA_VENDOR_ST) {
Linus Walleijcc30d602009-01-04 15:18:54 +0100894 pwr |= MCI_PWR_UP;
895 break;
896 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 case MMC_POWER_ON:
898 pwr |= MCI_PWR_ON;
899 break;
900 }
901
Linus Walleijcc30d602009-01-04 15:18:54 +0100902 if (ios->bus_mode == MMC_BUSMODE_OPENDRAIN) {
Linus Walleijf17a1f02009-08-04 01:01:02 +0100903 if (host->hw_designer != AMBA_VENDOR_ST)
Linus Walleijcc30d602009-01-04 15:18:54 +0100904 pwr |= MCI_ROD;
905 else {
906 /*
907 * The ST Micro variant use the ROD bit for something
908 * else and only has OD (Open Drain).
909 */
910 pwr |= MCI_OD;
911 }
912 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
Linus Walleija6a64642009-09-14 12:56:14 +0100914 spin_lock_irqsave(&host->lock, flags);
915
916 mmci_set_clkreg(host, ios->clock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
918 if (host->pwr != pwr) {
919 host->pwr = pwr;
920 writel(pwr, host->base + MMCIPOWER);
921 }
Linus Walleija6a64642009-09-14 12:56:14 +0100922
923 spin_unlock_irqrestore(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924}
925
Russell King89001442009-07-09 15:16:07 +0100926static int mmci_get_ro(struct mmc_host *mmc)
927{
928 struct mmci_host *host = mmc_priv(mmc);
929
930 if (host->gpio_wp == -ENOSYS)
931 return -ENOSYS;
932
Linus Walleij18a063012010-09-12 12:56:44 +0100933 return gpio_get_value_cansleep(host->gpio_wp);
Russell King89001442009-07-09 15:16:07 +0100934}
935
936static int mmci_get_cd(struct mmc_host *mmc)
937{
938 struct mmci_host *host = mmc_priv(mmc);
Rabin Vincent29719442010-08-09 12:54:43 +0100939 struct mmci_platform_data *plat = host->plat;
Russell King89001442009-07-09 15:16:07 +0100940 unsigned int status;
941
Rabin Vincent4b8caec2010-08-09 12:56:40 +0100942 if (host->gpio_cd == -ENOSYS) {
943 if (!plat->status)
944 return 1; /* Assume always present */
945
Rabin Vincent29719442010-08-09 12:54:43 +0100946 status = plat->status(mmc_dev(host->mmc));
Rabin Vincent4b8caec2010-08-09 12:56:40 +0100947 } else
Linus Walleij18a063012010-09-12 12:56:44 +0100948 status = !!gpio_get_value_cansleep(host->gpio_cd)
949 ^ plat->cd_invert;
Russell King89001442009-07-09 15:16:07 +0100950
Russell King74bc8092010-07-29 15:58:59 +0100951 /*
952 * Use positive logic throughout - status is zero for no card,
953 * non-zero for card inserted.
954 */
955 return status;
Russell King89001442009-07-09 15:16:07 +0100956}
957
Rabin Vincent148b8b32010-08-09 12:55:48 +0100958static irqreturn_t mmci_cd_irq(int irq, void *dev_id)
959{
960 struct mmci_host *host = dev_id;
961
962 mmc_detect_change(host->mmc, msecs_to_jiffies(500));
963
964 return IRQ_HANDLED;
965}
966
David Brownellab7aefd2006-11-12 17:55:30 -0800967static const struct mmc_host_ops mmci_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 .request = mmci_request,
969 .set_ios = mmci_set_ios,
Russell King89001442009-07-09 15:16:07 +0100970 .get_ro = mmci_get_ro,
971 .get_cd = mmci_get_cd,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972};
973
Russell Kingaa25afa2011-02-19 15:55:00 +0000974static int __devinit mmci_probe(struct amba_device *dev,
975 const struct amba_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976{
Linus Walleij6ef297f2009-09-22 14:29:36 +0100977 struct mmci_platform_data *plat = dev->dev.platform_data;
Rabin Vincent4956e102010-07-21 12:54:40 +0100978 struct variant_data *variant = id->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 struct mmci_host *host;
980 struct mmc_host *mmc;
981 int ret;
982
983 /* must have platform data */
984 if (!plat) {
985 ret = -EINVAL;
986 goto out;
987 }
988
989 ret = amba_request_regions(dev, DRIVER_NAME);
990 if (ret)
991 goto out;
992
993 mmc = mmc_alloc_host(sizeof(struct mmci_host), &dev->dev);
994 if (!mmc) {
995 ret = -ENOMEM;
996 goto rel_regions;
997 }
998
999 host = mmc_priv(mmc);
Rabin Vincent4ea580f2009-04-17 08:44:19 +05301000 host->mmc = mmc;
Russell King012b7d32009-07-09 15:13:56 +01001001
Russell King89001442009-07-09 15:16:07 +01001002 host->gpio_wp = -ENOSYS;
1003 host->gpio_cd = -ENOSYS;
Rabin Vincent148b8b32010-08-09 12:55:48 +01001004 host->gpio_cd_irq = -1;
Russell King89001442009-07-09 15:16:07 +01001005
Russell King012b7d32009-07-09 15:13:56 +01001006 host->hw_designer = amba_manf(dev);
1007 host->hw_revision = amba_rev(dev);
Linus Walleij64de0282010-02-19 01:09:10 +01001008 dev_dbg(mmc_dev(mmc), "designer ID = 0x%02x\n", host->hw_designer);
1009 dev_dbg(mmc_dev(mmc), "revision = 0x%01x\n", host->hw_revision);
Russell King012b7d32009-07-09 15:13:56 +01001010
Russell Kingee569c42008-11-30 17:38:14 +00001011 host->clk = clk_get(&dev->dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 if (IS_ERR(host->clk)) {
1013 ret = PTR_ERR(host->clk);
1014 host->clk = NULL;
1015 goto host_free;
1016 }
1017
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 ret = clk_enable(host->clk);
1019 if (ret)
Russell Kinga8d35842006-01-03 18:41:37 +00001020 goto clk_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021
1022 host->plat = plat;
Rabin Vincent4956e102010-07-21 12:54:40 +01001023 host->variant = variant;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 host->mclk = clk_get_rate(host->clk);
Linus Walleijc8df9a52008-04-29 09:34:07 +01001025 /*
1026 * According to the spec, mclk is max 100 MHz,
1027 * so we try to adjust the clock down to this,
1028 * (if possible).
1029 */
1030 if (host->mclk > 100000000) {
1031 ret = clk_set_rate(host->clk, 100000000);
1032 if (ret < 0)
1033 goto clk_disable;
1034 host->mclk = clk_get_rate(host->clk);
Linus Walleij64de0282010-02-19 01:09:10 +01001035 dev_dbg(mmc_dev(mmc), "eventual mclk rate: %u Hz\n",
1036 host->mclk);
Linus Walleijc8df9a52008-04-29 09:34:07 +01001037 }
Russell Kingc8ebae32011-01-11 19:35:53 +00001038 host->phybase = dev->res.start;
Linus Walleijdc890c22009-06-07 23:27:31 +01001039 host->base = ioremap(dev->res.start, resource_size(&dev->res));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 if (!host->base) {
1041 ret = -ENOMEM;
1042 goto clk_disable;
1043 }
1044
1045 mmc->ops = &mmci_ops;
1046 mmc->f_min = (host->mclk + 511) / 512;
Linus Walleij808d97c2010-04-08 07:39:38 +01001047 /*
1048 * If the platform data supplies a maximum operating
1049 * frequency, this takes precedence. Else, we fall back
1050 * to using the module parameter, which has a (low)
1051 * default value in case it is not specified. Either
1052 * value must not exceed the clock rate into the block,
1053 * of course.
1054 */
1055 if (plat->f_max)
1056 mmc->f_max = min(host->mclk, plat->f_max);
1057 else
1058 mmc->f_max = min(host->mclk, fmax);
Linus Walleij64de0282010-02-19 01:09:10 +01001059 dev_dbg(mmc_dev(mmc), "clocking block at %u Hz\n", mmc->f_max);
1060
Linus Walleij34e84f32009-09-22 14:41:40 +01001061#ifdef CONFIG_REGULATOR
1062 /* If we're using the regulator framework, try to fetch a regulator */
1063 host->vcc = regulator_get(&dev->dev, "vmmc");
1064 if (IS_ERR(host->vcc))
1065 host->vcc = NULL;
1066 else {
1067 int mask = mmc_regulator_get_ocrmask(host->vcc);
1068
1069 if (mask < 0)
1070 dev_err(&dev->dev, "error getting OCR mask (%d)\n",
1071 mask);
1072 else {
1073 host->mmc->ocr_avail = (u32) mask;
1074 if (plat->ocr_mask)
1075 dev_warn(&dev->dev,
1076 "Provided ocr_mask/setpower will not be used "
1077 "(using regulator instead)\n");
1078 }
1079 }
1080#endif
1081 /* Fall back to platform data if no regulator is found */
1082 if (host->vcc == NULL)
1083 mmc->ocr_avail = plat->ocr_mask;
Linus Walleij9e6c82c2009-09-14 12:57:11 +01001084 mmc->caps = plat->capabilities;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085
1086 /*
1087 * We can do SGIO
1088 */
Martin K. Petersena36274e2010-09-10 01:33:59 -04001089 mmc->max_segs = NR_SG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090
1091 /*
Rabin Vincent08458ef2010-07-21 12:55:59 +01001092 * Since only a certain number of bits are valid in the data length
1093 * register, we must ensure that we don't exceed 2^num-1 bytes in a
1094 * single request.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 */
Rabin Vincent08458ef2010-07-21 12:55:59 +01001096 mmc->max_req_size = (1 << variant->datalength_bits) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
1098 /*
1099 * Set the maximum segment size. Since we aren't doing DMA
1100 * (yet) we are only limited by the data length register.
1101 */
Pierre Ossman55db8902006-11-21 17:55:45 +01001102 mmc->max_seg_size = mmc->max_req_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +01001104 /*
1105 * Block size can be up to 2048 bytes, but must be a power of two.
1106 */
1107 mmc->max_blk_size = 2048;
1108
Pierre Ossman55db8902006-11-21 17:55:45 +01001109 /*
1110 * No limit on the number of blocks transferred.
1111 */
1112 mmc->max_blk_count = mmc->max_req_size;
1113
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 spin_lock_init(&host->lock);
1115
1116 writel(0, host->base + MMCIMASK0);
1117 writel(0, host->base + MMCIMASK1);
1118 writel(0xfff, host->base + MMCICLEAR);
1119
Russell King89001442009-07-09 15:16:07 +01001120 if (gpio_is_valid(plat->gpio_cd)) {
1121 ret = gpio_request(plat->gpio_cd, DRIVER_NAME " (cd)");
1122 if (ret == 0)
1123 ret = gpio_direction_input(plat->gpio_cd);
1124 if (ret == 0)
1125 host->gpio_cd = plat->gpio_cd;
1126 else if (ret != -ENOSYS)
1127 goto err_gpio_cd;
Rabin Vincent148b8b32010-08-09 12:55:48 +01001128
1129 ret = request_any_context_irq(gpio_to_irq(plat->gpio_cd),
1130 mmci_cd_irq, 0,
1131 DRIVER_NAME " (cd)", host);
1132 if (ret >= 0)
1133 host->gpio_cd_irq = gpio_to_irq(plat->gpio_cd);
Russell King89001442009-07-09 15:16:07 +01001134 }
1135 if (gpio_is_valid(plat->gpio_wp)) {
1136 ret = gpio_request(plat->gpio_wp, DRIVER_NAME " (wp)");
1137 if (ret == 0)
1138 ret = gpio_direction_input(plat->gpio_wp);
1139 if (ret == 0)
1140 host->gpio_wp = plat->gpio_wp;
1141 else if (ret != -ENOSYS)
1142 goto err_gpio_wp;
1143 }
1144
Rabin Vincent4b8caec2010-08-09 12:56:40 +01001145 if ((host->plat->status || host->gpio_cd != -ENOSYS)
1146 && host->gpio_cd_irq < 0)
Rabin Vincent148b8b32010-08-09 12:55:48 +01001147 mmc->caps |= MMC_CAP_NEEDS_POLL;
1148
Thomas Gleixnerdace1452006-07-01 19:29:38 -07001149 ret = request_irq(dev->irq[0], mmci_irq, IRQF_SHARED, DRIVER_NAME " (cmd)", host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 if (ret)
1151 goto unmap;
1152
Linus Walleij2686b4b2010-10-19 12:39:48 +01001153 if (dev->irq[1] == NO_IRQ)
1154 host->singleirq = true;
1155 else {
1156 ret = request_irq(dev->irq[1], mmci_pio_irq, IRQF_SHARED,
1157 DRIVER_NAME " (pio)", host);
1158 if (ret)
1159 goto irq0_free;
1160 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161
Linus Walleij8cb28152011-01-24 15:22:13 +01001162 writel(MCI_IRQENABLE, host->base + MMCIMASK0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
1164 amba_set_drvdata(dev, mmc);
1165
Russell Kingc8ebae32011-01-11 19:35:53 +00001166 dev_info(&dev->dev, "%s: PL%03x manf %x rev%u at 0x%08llx irq %d,%d (pio)\n",
1167 mmc_hostname(mmc), amba_part(dev), amba_manf(dev),
1168 amba_rev(dev), (unsigned long long)dev->res.start,
1169 dev->irq[0], dev->irq[1]);
1170
1171 mmci_dma_setup(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172
Russell King8c11a942010-12-28 19:40:40 +00001173 mmc_add_host(mmc);
1174
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 return 0;
1176
1177 irq0_free:
1178 free_irq(dev->irq[0], host);
1179 unmap:
Russell King89001442009-07-09 15:16:07 +01001180 if (host->gpio_wp != -ENOSYS)
1181 gpio_free(host->gpio_wp);
1182 err_gpio_wp:
Rabin Vincent148b8b32010-08-09 12:55:48 +01001183 if (host->gpio_cd_irq >= 0)
1184 free_irq(host->gpio_cd_irq, host);
Russell King89001442009-07-09 15:16:07 +01001185 if (host->gpio_cd != -ENOSYS)
1186 gpio_free(host->gpio_cd);
1187 err_gpio_cd:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 iounmap(host->base);
1189 clk_disable:
1190 clk_disable(host->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 clk_free:
1192 clk_put(host->clk);
1193 host_free:
1194 mmc_free_host(mmc);
1195 rel_regions:
1196 amba_release_regions(dev);
1197 out:
1198 return ret;
1199}
1200
Linus Walleij6dc4a472009-03-07 00:23:52 +01001201static int __devexit mmci_remove(struct amba_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202{
1203 struct mmc_host *mmc = amba_get_drvdata(dev);
1204
1205 amba_set_drvdata(dev, NULL);
1206
1207 if (mmc) {
1208 struct mmci_host *host = mmc_priv(mmc);
1209
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 mmc_remove_host(mmc);
1211
1212 writel(0, host->base + MMCIMASK0);
1213 writel(0, host->base + MMCIMASK1);
1214
1215 writel(0, host->base + MMCICOMMAND);
1216 writel(0, host->base + MMCIDATACTRL);
1217
Russell Kingc8ebae32011-01-11 19:35:53 +00001218 mmci_dma_release(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 free_irq(dev->irq[0], host);
Linus Walleij2686b4b2010-10-19 12:39:48 +01001220 if (!host->singleirq)
1221 free_irq(dev->irq[1], host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
Russell King89001442009-07-09 15:16:07 +01001223 if (host->gpio_wp != -ENOSYS)
1224 gpio_free(host->gpio_wp);
Rabin Vincent148b8b32010-08-09 12:55:48 +01001225 if (host->gpio_cd_irq >= 0)
1226 free_irq(host->gpio_cd_irq, host);
Russell King89001442009-07-09 15:16:07 +01001227 if (host->gpio_cd != -ENOSYS)
1228 gpio_free(host->gpio_cd);
1229
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 iounmap(host->base);
1231 clk_disable(host->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 clk_put(host->clk);
1233
Linus Walleij99fc5132010-09-29 01:08:27 -04001234 if (host->vcc)
1235 mmc_regulator_set_ocr(mmc, host->vcc, 0);
Linus Walleij34e84f32009-09-22 14:41:40 +01001236 regulator_put(host->vcc);
1237
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 mmc_free_host(mmc);
1239
1240 amba_release_regions(dev);
1241 }
1242
1243 return 0;
1244}
1245
1246#ifdef CONFIG_PM
Pavel Macheke5378ca2005-04-16 15:25:29 -07001247static int mmci_suspend(struct amba_device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248{
1249 struct mmc_host *mmc = amba_get_drvdata(dev);
1250 int ret = 0;
1251
1252 if (mmc) {
1253 struct mmci_host *host = mmc_priv(mmc);
1254
Matt Fleming1a13f8f2010-05-26 14:42:08 -07001255 ret = mmc_suspend_host(mmc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 if (ret == 0)
1257 writel(0, host->base + MMCIMASK0);
1258 }
1259
1260 return ret;
1261}
1262
1263static int mmci_resume(struct amba_device *dev)
1264{
1265 struct mmc_host *mmc = amba_get_drvdata(dev);
1266 int ret = 0;
1267
1268 if (mmc) {
1269 struct mmci_host *host = mmc_priv(mmc);
1270
1271 writel(MCI_IRQENABLE, host->base + MMCIMASK0);
1272
1273 ret = mmc_resume_host(mmc);
1274 }
1275
1276 return ret;
1277}
1278#else
1279#define mmci_suspend NULL
1280#define mmci_resume NULL
1281#endif
1282
1283static struct amba_id mmci_ids[] = {
1284 {
1285 .id = 0x00041180,
Pawel Moll768fbc12011-03-11 17:18:07 +00001286 .mask = 0xff0fffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001287 .data = &variant_arm,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 },
1289 {
Pawel Moll768fbc12011-03-11 17:18:07 +00001290 .id = 0x01041180,
1291 .mask = 0xff0fffff,
1292 .data = &variant_arm_extended_fifo,
1293 },
1294 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 .id = 0x00041181,
1296 .mask = 0x000fffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001297 .data = &variant_arm,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 },
Linus Walleijcc30d602009-01-04 15:18:54 +01001299 /* ST Micro variants */
1300 {
1301 .id = 0x00180180,
1302 .mask = 0x00ffffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001303 .data = &variant_u300,
Linus Walleijcc30d602009-01-04 15:18:54 +01001304 },
1305 {
1306 .id = 0x00280180,
1307 .mask = 0x00ffffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001308 .data = &variant_u300,
1309 },
1310 {
1311 .id = 0x00480180,
1312 .mask = 0x00ffffff,
1313 .data = &variant_ux500,
Linus Walleijcc30d602009-01-04 15:18:54 +01001314 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 { 0, 0 },
1316};
1317
1318static struct amba_driver mmci_driver = {
1319 .drv = {
1320 .name = DRIVER_NAME,
1321 },
1322 .probe = mmci_probe,
Linus Walleij6dc4a472009-03-07 00:23:52 +01001323 .remove = __devexit_p(mmci_remove),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 .suspend = mmci_suspend,
1325 .resume = mmci_resume,
1326 .id_table = mmci_ids,
1327};
1328
1329static int __init mmci_init(void)
1330{
1331 return amba_driver_register(&mmci_driver);
1332}
1333
1334static void __exit mmci_exit(void)
1335{
1336 amba_driver_unregister(&mmci_driver);
1337}
1338
1339module_init(mmci_init);
1340module_exit(mmci_exit);
1341module_param(fmax, uint, 0444);
1342
1343MODULE_DESCRIPTION("ARM PrimeCell PL180/181 Multimedia Card Interface driver");
1344MODULE_LICENSE("GPL");