blob: f36d8b8c891f65491882b18bbbf778b4b2c74204 [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>
Russell King1c3be362011-08-14 09:17:05 +010032#include <linux/pm_runtime.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Russell King7b09cda2005-07-01 12:02:59 +010034#include <asm/div64.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <asm/io.h>
Russell Kingc6b8fda2005-10-28 14:05:16 +010036#include <asm/sizes.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38#include "mmci.h"
39
40#define DRIVER_NAME "mmci-pl18x"
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042static unsigned int fmax = 515633;
43
Rabin Vincent4956e102010-07-21 12:54:40 +010044/**
45 * struct variant_data - MMCI variant-specific quirks
46 * @clkreg: default value for MCICLOCK register
Rabin Vincent4380c142010-07-21 12:55:18 +010047 * @clkreg_enable: enable value for MMCICLOCK register
Rabin Vincent08458ef2010-07-21 12:55:59 +010048 * @datalength_bits: number of bits in the MMCIDATALENGTH register
Rabin Vincent8301bb62010-08-09 12:57:30 +010049 * @fifosize: number of bytes that can be written when MMCI_TXFIFOEMPTY
50 * is asserted (likewise for RX)
51 * @fifohalfsize: number of bytes that can be written when MCI_TXFIFOHALFEMPTY
52 * is asserted (likewise for RX)
Linus Walleij34177802010-10-19 12:43:58 +010053 * @sdio: variant supports SDIO
Linus Walleijb70a67f2010-12-06 09:24:14 +010054 * @st_clkdiv: true if using a ST-specific clock divider algorithm
Philippe Langlais1784b152011-03-25 08:51:52 +010055 * @blksz_datactrl16: true if Block size is at b16..b30 position in datactrl register
Ulf Hansson7d72a1d2011-12-13 16:54:55 +010056 * @pwrreg_powerup: power up value for MMCIPOWER register
Ulf Hansson4d1a3a02011-12-13 16:57:07 +010057 * @signal_direction: input/out direction of bus signals can be indicated
Rabin Vincent4956e102010-07-21 12:54:40 +010058 */
59struct variant_data {
60 unsigned int clkreg;
Rabin Vincent4380c142010-07-21 12:55:18 +010061 unsigned int clkreg_enable;
Rabin Vincent08458ef2010-07-21 12:55:59 +010062 unsigned int datalength_bits;
Rabin Vincent8301bb62010-08-09 12:57:30 +010063 unsigned int fifosize;
64 unsigned int fifohalfsize;
Linus Walleij34177802010-10-19 12:43:58 +010065 bool sdio;
Linus Walleijb70a67f2010-12-06 09:24:14 +010066 bool st_clkdiv;
Philippe Langlais1784b152011-03-25 08:51:52 +010067 bool blksz_datactrl16;
Ulf Hansson7d72a1d2011-12-13 16:54:55 +010068 u32 pwrreg_powerup;
Ulf Hansson4d1a3a02011-12-13 16:57:07 +010069 bool signal_direction;
Rabin Vincent4956e102010-07-21 12:54:40 +010070};
71
72static struct variant_data variant_arm = {
Rabin Vincent8301bb62010-08-09 12:57:30 +010073 .fifosize = 16 * 4,
74 .fifohalfsize = 8 * 4,
Rabin Vincent08458ef2010-07-21 12:55:59 +010075 .datalength_bits = 16,
Ulf Hansson7d72a1d2011-12-13 16:54:55 +010076 .pwrreg_powerup = MCI_PWR_UP,
Rabin Vincent4956e102010-07-21 12:54:40 +010077};
78
Pawel Moll768fbc12011-03-11 17:18:07 +000079static struct variant_data variant_arm_extended_fifo = {
80 .fifosize = 128 * 4,
81 .fifohalfsize = 64 * 4,
82 .datalength_bits = 16,
Ulf Hansson7d72a1d2011-12-13 16:54:55 +010083 .pwrreg_powerup = MCI_PWR_UP,
Pawel Moll768fbc12011-03-11 17:18:07 +000084};
85
Rabin Vincent4956e102010-07-21 12:54:40 +010086static struct variant_data variant_u300 = {
Rabin Vincent8301bb62010-08-09 12:57:30 +010087 .fifosize = 16 * 4,
88 .fifohalfsize = 8 * 4,
Linus Walleij49ac2152011-03-04 14:54:16 +010089 .clkreg_enable = MCI_ST_U300_HWFCEN,
Rabin Vincent08458ef2010-07-21 12:55:59 +010090 .datalength_bits = 16,
Linus Walleij34177802010-10-19 12:43:58 +010091 .sdio = true,
Ulf Hansson7d72a1d2011-12-13 16:54:55 +010092 .pwrreg_powerup = MCI_PWR_ON,
Ulf Hansson4d1a3a02011-12-13 16:57:07 +010093 .signal_direction = true,
Rabin Vincent4956e102010-07-21 12:54:40 +010094};
95
96static struct variant_data variant_ux500 = {
Rabin Vincent8301bb62010-08-09 12:57:30 +010097 .fifosize = 30 * 4,
98 .fifohalfsize = 8 * 4,
Rabin Vincent4956e102010-07-21 12:54:40 +010099 .clkreg = MCI_CLK_ENABLE,
Linus Walleij49ac2152011-03-04 14:54:16 +0100100 .clkreg_enable = MCI_ST_UX500_HWFCEN,
Rabin Vincent08458ef2010-07-21 12:55:59 +0100101 .datalength_bits = 24,
Linus Walleij34177802010-10-19 12:43:58 +0100102 .sdio = true,
Linus Walleijb70a67f2010-12-06 09:24:14 +0100103 .st_clkdiv = true,
Ulf Hansson7d72a1d2011-12-13 16:54:55 +0100104 .pwrreg_powerup = MCI_PWR_ON,
Ulf Hansson4d1a3a02011-12-13 16:57:07 +0100105 .signal_direction = true,
Rabin Vincent4956e102010-07-21 12:54:40 +0100106};
Linus Walleijb70a67f2010-12-06 09:24:14 +0100107
Philippe Langlais1784b152011-03-25 08:51:52 +0100108static struct variant_data variant_ux500v2 = {
109 .fifosize = 30 * 4,
110 .fifohalfsize = 8 * 4,
111 .clkreg = MCI_CLK_ENABLE,
112 .clkreg_enable = MCI_ST_UX500_HWFCEN,
113 .datalength_bits = 24,
114 .sdio = true,
115 .st_clkdiv = true,
116 .blksz_datactrl16 = true,
Ulf Hansson7d72a1d2011-12-13 16:54:55 +0100117 .pwrreg_powerup = MCI_PWR_ON,
Ulf Hansson4d1a3a02011-12-13 16:57:07 +0100118 .signal_direction = true,
Philippe Langlais1784b152011-03-25 08:51:52 +0100119};
120
Linus Walleija6a64642009-09-14 12:56:14 +0100121/*
122 * This must be called with host->lock held
123 */
Ulf Hansson7437cfa2012-01-18 09:17:27 +0100124static void mmci_write_clkreg(struct mmci_host *host, u32 clk)
125{
126 if (host->clk_reg != clk) {
127 host->clk_reg = clk;
128 writel(clk, host->base + MMCICLOCK);
129 }
130}
131
132/*
133 * This must be called with host->lock held
134 */
135static void mmci_write_pwrreg(struct mmci_host *host, u32 pwr)
136{
137 if (host->pwr_reg != pwr) {
138 host->pwr_reg = pwr;
139 writel(pwr, host->base + MMCIPOWER);
140 }
141}
142
143/*
144 * This must be called with host->lock held
145 */
Linus Walleija6a64642009-09-14 12:56:14 +0100146static void mmci_set_clkreg(struct mmci_host *host, unsigned int desired)
147{
Rabin Vincent4956e102010-07-21 12:54:40 +0100148 struct variant_data *variant = host->variant;
149 u32 clk = variant->clkreg;
Linus Walleija6a64642009-09-14 12:56:14 +0100150
151 if (desired) {
152 if (desired >= host->mclk) {
Linus Walleij991a86e2010-12-10 09:35:53 +0100153 clk = MCI_CLK_BYPASS;
Linus Walleij399bc482011-04-01 07:59:17 +0100154 if (variant->st_clkdiv)
155 clk |= MCI_ST_UX500_NEG_EDGE;
Linus Walleija6a64642009-09-14 12:56:14 +0100156 host->cclk = host->mclk;
Linus Walleijb70a67f2010-12-06 09:24:14 +0100157 } else if (variant->st_clkdiv) {
158 /*
159 * DB8500 TRM says f = mclk / (clkdiv + 2)
160 * => clkdiv = (mclk / f) - 2
161 * Round the divider up so we don't exceed the max
162 * frequency
163 */
164 clk = DIV_ROUND_UP(host->mclk, desired) - 2;
165 if (clk >= 256)
166 clk = 255;
167 host->cclk = host->mclk / (clk + 2);
Linus Walleija6a64642009-09-14 12:56:14 +0100168 } else {
Linus Walleijb70a67f2010-12-06 09:24:14 +0100169 /*
170 * PL180 TRM says f = mclk / (2 * (clkdiv + 1))
171 * => clkdiv = mclk / (2 * f) - 1
172 */
Linus Walleija6a64642009-09-14 12:56:14 +0100173 clk = host->mclk / (2 * desired) - 1;
174 if (clk >= 256)
175 clk = 255;
176 host->cclk = host->mclk / (2 * (clk + 1));
177 }
Rabin Vincent4380c142010-07-21 12:55:18 +0100178
179 clk |= variant->clkreg_enable;
Linus Walleija6a64642009-09-14 12:56:14 +0100180 clk |= MCI_CLK_ENABLE;
181 /* This hasn't proven to be worthwhile */
182 /* clk |= MCI_CLK_PWRSAVE; */
183 }
184
Linus Walleij9e6c82c2009-09-14 12:57:11 +0100185 if (host->mmc->ios.bus_width == MMC_BUS_WIDTH_4)
Linus Walleij771dc152010-04-08 07:38:52 +0100186 clk |= MCI_4BIT_BUS;
187 if (host->mmc->ios.bus_width == MMC_BUS_WIDTH_8)
188 clk |= MCI_ST_8BIT_BUS;
Linus Walleij9e6c82c2009-09-14 12:57:11 +0100189
Ulf Hansson7437cfa2012-01-18 09:17:27 +0100190 mmci_write_clkreg(host, clk);
Linus Walleija6a64642009-09-14 12:56:14 +0100191}
192
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193static void
194mmci_request_end(struct mmci_host *host, struct mmc_request *mrq)
195{
196 writel(0, host->base + MMCICOMMAND);
197
Russell Kinge47c2222007-01-08 16:42:51 +0000198 BUG_ON(host->data);
199
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 host->mrq = NULL;
201 host->cmd = NULL;
202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 mmc_request_done(host->mmc, mrq);
Ulf Hansson2cd976c2011-12-13 17:01:11 +0100204
205 pm_runtime_mark_last_busy(mmc_dev(host->mmc));
206 pm_runtime_put_autosuspend(mmc_dev(host->mmc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207}
208
Linus Walleij2686b4b2010-10-19 12:39:48 +0100209static void mmci_set_mask1(struct mmci_host *host, unsigned int mask)
210{
211 void __iomem *base = host->base;
212
213 if (host->singleirq) {
214 unsigned int mask0 = readl(base + MMCIMASK0);
215
216 mask0 &= ~MCI_IRQ1MASK;
217 mask0 |= mask;
218
219 writel(mask0, base + MMCIMASK0);
220 }
221
222 writel(mask, base + MMCIMASK1);
223}
224
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225static void mmci_stop_data(struct mmci_host *host)
226{
227 writel(0, host->base + MMCIDATACTRL);
Linus Walleij2686b4b2010-10-19 12:39:48 +0100228 mmci_set_mask1(host, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 host->data = NULL;
230}
231
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100232static void mmci_init_sg(struct mmci_host *host, struct mmc_data *data)
233{
234 unsigned int flags = SG_MITER_ATOMIC;
235
236 if (data->flags & MMC_DATA_READ)
237 flags |= SG_MITER_TO_SG;
238 else
239 flags |= SG_MITER_FROM_SG;
240
241 sg_miter_start(&host->sg_miter, data->sg, data->sg_len, flags);
242}
243
Russell Kingc8ebae32011-01-11 19:35:53 +0000244/*
245 * All the DMA operation mode stuff goes inside this ifdef.
246 * This assumes that you have a generic DMA device interface,
247 * no custom DMA interfaces are supported.
248 */
249#ifdef CONFIG_DMA_ENGINE
250static void __devinit mmci_dma_setup(struct mmci_host *host)
251{
252 struct mmci_platform_data *plat = host->plat;
253 const char *rxname, *txname;
254 dma_cap_mask_t mask;
255
256 if (!plat || !plat->dma_filter) {
257 dev_info(mmc_dev(host->mmc), "no DMA platform data\n");
258 return;
259 }
260
Per Forlin58c7ccb2011-07-01 18:55:24 +0200261 /* initialize pre request cookie */
262 host->next_data.cookie = 1;
263
Russell Kingc8ebae32011-01-11 19:35:53 +0000264 /* Try to acquire a generic DMA engine slave channel */
265 dma_cap_zero(mask);
266 dma_cap_set(DMA_SLAVE, mask);
267
268 /*
269 * If only an RX channel is specified, the driver will
270 * attempt to use it bidirectionally, however if it is
271 * is specified but cannot be located, DMA will be disabled.
272 */
273 if (plat->dma_rx_param) {
274 host->dma_rx_channel = dma_request_channel(mask,
275 plat->dma_filter,
276 plat->dma_rx_param);
277 /* E.g if no DMA hardware is present */
278 if (!host->dma_rx_channel)
279 dev_err(mmc_dev(host->mmc), "no RX DMA channel\n");
280 }
281
282 if (plat->dma_tx_param) {
283 host->dma_tx_channel = dma_request_channel(mask,
284 plat->dma_filter,
285 plat->dma_tx_param);
286 if (!host->dma_tx_channel)
287 dev_warn(mmc_dev(host->mmc), "no TX DMA channel\n");
288 } else {
289 host->dma_tx_channel = host->dma_rx_channel;
290 }
291
292 if (host->dma_rx_channel)
293 rxname = dma_chan_name(host->dma_rx_channel);
294 else
295 rxname = "none";
296
297 if (host->dma_tx_channel)
298 txname = dma_chan_name(host->dma_tx_channel);
299 else
300 txname = "none";
301
302 dev_info(mmc_dev(host->mmc), "DMA channels RX %s, TX %s\n",
303 rxname, txname);
304
305 /*
306 * Limit the maximum segment size in any SG entry according to
307 * the parameters of the DMA engine device.
308 */
309 if (host->dma_tx_channel) {
310 struct device *dev = host->dma_tx_channel->device->dev;
311 unsigned int max_seg_size = dma_get_max_seg_size(dev);
312
313 if (max_seg_size < host->mmc->max_seg_size)
314 host->mmc->max_seg_size = max_seg_size;
315 }
316 if (host->dma_rx_channel) {
317 struct device *dev = host->dma_rx_channel->device->dev;
318 unsigned int max_seg_size = dma_get_max_seg_size(dev);
319
320 if (max_seg_size < host->mmc->max_seg_size)
321 host->mmc->max_seg_size = max_seg_size;
322 }
323}
324
325/*
326 * This is used in __devinit or __devexit so inline it
327 * so it can be discarded.
328 */
329static inline void mmci_dma_release(struct mmci_host *host)
330{
331 struct mmci_platform_data *plat = host->plat;
332
333 if (host->dma_rx_channel)
334 dma_release_channel(host->dma_rx_channel);
335 if (host->dma_tx_channel && plat->dma_tx_param)
336 dma_release_channel(host->dma_tx_channel);
337 host->dma_rx_channel = host->dma_tx_channel = NULL;
338}
339
340static void mmci_dma_unmap(struct mmci_host *host, struct mmc_data *data)
341{
342 struct dma_chan *chan = host->dma_current;
343 enum dma_data_direction dir;
344 u32 status;
345 int i;
346
347 /* Wait up to 1ms for the DMA to complete */
348 for (i = 0; ; i++) {
349 status = readl(host->base + MMCISTATUS);
350 if (!(status & MCI_RXDATAAVLBLMASK) || i >= 100)
351 break;
352 udelay(10);
353 }
354
355 /*
356 * Check to see whether we still have some data left in the FIFO -
357 * this catches DMA controllers which are unable to monitor the
358 * DMALBREQ and DMALSREQ signals while allowing us to DMA to non-
359 * contiguous buffers. On TX, we'll get a FIFO underrun error.
360 */
361 if (status & MCI_RXDATAAVLBLMASK) {
362 dmaengine_terminate_all(chan);
363 if (!data->error)
364 data->error = -EIO;
365 }
366
367 if (data->flags & MMC_DATA_WRITE) {
368 dir = DMA_TO_DEVICE;
369 } else {
370 dir = DMA_FROM_DEVICE;
371 }
372
Per Forlin58c7ccb2011-07-01 18:55:24 +0200373 if (!data->host_cookie)
374 dma_unmap_sg(chan->device->dev, data->sg, data->sg_len, dir);
Russell Kingc8ebae32011-01-11 19:35:53 +0000375
376 /*
377 * Use of DMA with scatter-gather is impossible.
378 * Give up with DMA and switch back to PIO mode.
379 */
380 if (status & MCI_RXDATAAVLBLMASK) {
381 dev_err(mmc_dev(host->mmc), "buggy DMA detected. Taking evasive action.\n");
382 mmci_dma_release(host);
383 }
384}
385
386static void mmci_dma_data_error(struct mmci_host *host)
387{
388 dev_err(mmc_dev(host->mmc), "error during DMA transfer!\n");
389 dmaengine_terminate_all(host->dma_current);
390}
391
Per Forlin58c7ccb2011-07-01 18:55:24 +0200392static int mmci_dma_prep_data(struct mmci_host *host, struct mmc_data *data,
393 struct mmci_host_next *next)
Russell Kingc8ebae32011-01-11 19:35:53 +0000394{
395 struct variant_data *variant = host->variant;
396 struct dma_slave_config conf = {
397 .src_addr = host->phybase + MMCIFIFO,
398 .dst_addr = host->phybase + MMCIFIFO,
399 .src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES,
400 .dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES,
401 .src_maxburst = variant->fifohalfsize >> 2, /* # of words */
402 .dst_maxburst = variant->fifohalfsize >> 2, /* # of words */
403 };
Russell Kingc8ebae32011-01-11 19:35:53 +0000404 struct dma_chan *chan;
405 struct dma_device *device;
406 struct dma_async_tx_descriptor *desc;
Vinod Koul05f57992011-10-14 10:45:11 +0530407 enum dma_data_direction buffer_dirn;
Russell Kingc8ebae32011-01-11 19:35:53 +0000408 int nr_sg;
409
Per Forlin58c7ccb2011-07-01 18:55:24 +0200410 /* Check if next job is already prepared */
411 if (data->host_cookie && !next &&
412 host->dma_current && host->dma_desc_current)
413 return 0;
414
415 if (!next) {
416 host->dma_current = NULL;
417 host->dma_desc_current = NULL;
418 }
Russell Kingc8ebae32011-01-11 19:35:53 +0000419
420 if (data->flags & MMC_DATA_READ) {
Vinod Koul05f57992011-10-14 10:45:11 +0530421 conf.direction = DMA_DEV_TO_MEM;
422 buffer_dirn = DMA_FROM_DEVICE;
Russell Kingc8ebae32011-01-11 19:35:53 +0000423 chan = host->dma_rx_channel;
424 } else {
Vinod Koul05f57992011-10-14 10:45:11 +0530425 conf.direction = DMA_MEM_TO_DEV;
426 buffer_dirn = DMA_TO_DEVICE;
Russell Kingc8ebae32011-01-11 19:35:53 +0000427 chan = host->dma_tx_channel;
428 }
429
430 /* If there's no DMA channel, fall back to PIO */
431 if (!chan)
432 return -EINVAL;
433
434 /* If less than or equal to the fifo size, don't bother with DMA */
Per Forlin58c7ccb2011-07-01 18:55:24 +0200435 if (data->blksz * data->blocks <= variant->fifosize)
Russell Kingc8ebae32011-01-11 19:35:53 +0000436 return -EINVAL;
437
438 device = chan->device;
Vinod Koul05f57992011-10-14 10:45:11 +0530439 nr_sg = dma_map_sg(device->dev, data->sg, data->sg_len, buffer_dirn);
Russell Kingc8ebae32011-01-11 19:35:53 +0000440 if (nr_sg == 0)
441 return -EINVAL;
442
443 dmaengine_slave_config(chan, &conf);
444 desc = device->device_prep_slave_sg(chan, data->sg, nr_sg,
445 conf.direction, DMA_CTRL_ACK);
446 if (!desc)
447 goto unmap_exit;
448
Per Forlin58c7ccb2011-07-01 18:55:24 +0200449 if (next) {
450 next->dma_chan = chan;
451 next->dma_desc = desc;
452 } else {
453 host->dma_current = chan;
454 host->dma_desc_current = desc;
455 }
Russell Kingc8ebae32011-01-11 19:35:53 +0000456
Per Forlin58c7ccb2011-07-01 18:55:24 +0200457 return 0;
458
459 unmap_exit:
460 if (!next)
461 dmaengine_terminate_all(chan);
Vinod Koul05f57992011-10-14 10:45:11 +0530462 dma_unmap_sg(device->dev, data->sg, data->sg_len, buffer_dirn);
Per Forlin58c7ccb2011-07-01 18:55:24 +0200463 return -ENOMEM;
464}
465
466static int mmci_dma_start_data(struct mmci_host *host, unsigned int datactrl)
467{
468 int ret;
469 struct mmc_data *data = host->data;
470
471 ret = mmci_dma_prep_data(host, host->data, NULL);
472 if (ret)
473 return ret;
474
475 /* Okay, go for it. */
Russell Kingc8ebae32011-01-11 19:35:53 +0000476 dev_vdbg(mmc_dev(host->mmc),
477 "Submit MMCI DMA job, sglen %d blksz %04x blks %04x flags %08x\n",
478 data->sg_len, data->blksz, data->blocks, data->flags);
Per Forlin58c7ccb2011-07-01 18:55:24 +0200479 dmaengine_submit(host->dma_desc_current);
480 dma_async_issue_pending(host->dma_current);
Russell Kingc8ebae32011-01-11 19:35:53 +0000481
482 datactrl |= MCI_DPSM_DMAENABLE;
483
484 /* Trigger the DMA transfer */
485 writel(datactrl, host->base + MMCIDATACTRL);
486
487 /*
488 * Let the MMCI say when the data is ended and it's time
489 * to fire next DMA request. When that happens, MMCI will
490 * call mmci_data_end()
491 */
492 writel(readl(host->base + MMCIMASK0) | MCI_DATAENDMASK,
493 host->base + MMCIMASK0);
494 return 0;
Russell Kingc8ebae32011-01-11 19:35:53 +0000495}
Per Forlin58c7ccb2011-07-01 18:55:24 +0200496
497static void mmci_get_next_data(struct mmci_host *host, struct mmc_data *data)
498{
499 struct mmci_host_next *next = &host->next_data;
500
501 if (data->host_cookie && data->host_cookie != next->cookie) {
Girish K Sa3c76eb2011-10-11 11:44:09 +0530502 pr_warning("[%s] invalid cookie: data->host_cookie %d"
Per Forlin58c7ccb2011-07-01 18:55:24 +0200503 " host->next_data.cookie %d\n",
504 __func__, data->host_cookie, host->next_data.cookie);
505 data->host_cookie = 0;
506 }
507
508 if (!data->host_cookie)
509 return;
510
511 host->dma_desc_current = next->dma_desc;
512 host->dma_current = next->dma_chan;
513
514 next->dma_desc = NULL;
515 next->dma_chan = NULL;
516}
517
518static void mmci_pre_request(struct mmc_host *mmc, struct mmc_request *mrq,
519 bool is_first_req)
520{
521 struct mmci_host *host = mmc_priv(mmc);
522 struct mmc_data *data = mrq->data;
523 struct mmci_host_next *nd = &host->next_data;
524
525 if (!data)
526 return;
527
528 if (data->host_cookie) {
529 data->host_cookie = 0;
530 return;
531 }
532
533 /* if config for dma */
534 if (((data->flags & MMC_DATA_WRITE) && host->dma_tx_channel) ||
535 ((data->flags & MMC_DATA_READ) && host->dma_rx_channel)) {
536 if (mmci_dma_prep_data(host, data, nd))
537 data->host_cookie = 0;
538 else
539 data->host_cookie = ++nd->cookie < 0 ? 1 : nd->cookie;
540 }
541}
542
543static void mmci_post_request(struct mmc_host *mmc, struct mmc_request *mrq,
544 int err)
545{
546 struct mmci_host *host = mmc_priv(mmc);
547 struct mmc_data *data = mrq->data;
548 struct dma_chan *chan;
549 enum dma_data_direction dir;
550
551 if (!data)
552 return;
553
554 if (data->flags & MMC_DATA_READ) {
555 dir = DMA_FROM_DEVICE;
556 chan = host->dma_rx_channel;
557 } else {
558 dir = DMA_TO_DEVICE;
559 chan = host->dma_tx_channel;
560 }
561
562
563 /* if config for dma */
564 if (chan) {
565 if (err)
566 dmaengine_terminate_all(chan);
Per Forlin8e3336b2011-08-29 15:35:59 +0200567 if (data->host_cookie)
Per Forlin58c7ccb2011-07-01 18:55:24 +0200568 dma_unmap_sg(mmc_dev(host->mmc), data->sg,
569 data->sg_len, dir);
570 mrq->data->host_cookie = 0;
571 }
572}
573
Russell Kingc8ebae32011-01-11 19:35:53 +0000574#else
575/* Blank functions if the DMA engine is not available */
Per Forlin58c7ccb2011-07-01 18:55:24 +0200576static void mmci_get_next_data(struct mmci_host *host, struct mmc_data *data)
577{
578}
Russell Kingc8ebae32011-01-11 19:35:53 +0000579static inline void mmci_dma_setup(struct mmci_host *host)
580{
581}
582
583static inline void mmci_dma_release(struct mmci_host *host)
584{
585}
586
587static inline void mmci_dma_unmap(struct mmci_host *host, struct mmc_data *data)
588{
589}
590
591static inline void mmci_dma_data_error(struct mmci_host *host)
592{
593}
594
595static inline int mmci_dma_start_data(struct mmci_host *host, unsigned int datactrl)
596{
597 return -ENOSYS;
598}
Per Forlin58c7ccb2011-07-01 18:55:24 +0200599
600#define mmci_pre_request NULL
601#define mmci_post_request NULL
602
Russell Kingc8ebae32011-01-11 19:35:53 +0000603#endif
604
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605static void mmci_start_data(struct mmci_host *host, struct mmc_data *data)
606{
Rabin Vincent8301bb62010-08-09 12:57:30 +0100607 struct variant_data *variant = host->variant;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 unsigned int datactrl, timeout, irqmask;
Russell King7b09cda2005-07-01 12:02:59 +0100609 unsigned long long clks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 void __iomem *base;
Russell King3bc87f22006-08-27 13:51:28 +0100611 int blksz_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Linus Walleij64de0282010-02-19 01:09:10 +0100613 dev_dbg(mmc_dev(host->mmc), "blksz %04x blks %04x flags %08x\n",
614 data->blksz, data->blocks, data->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
616 host->data = data;
Rabin Vincent528320d2010-07-21 12:49:49 +0100617 host->size = data->blksz * data->blocks;
Russell King51d43752011-01-27 10:56:52 +0000618 data->bytes_xfered = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
Russell King7b09cda2005-07-01 12:02:59 +0100620 clks = (unsigned long long)data->timeout_ns * host->cclk;
621 do_div(clks, 1000000000UL);
622
623 timeout = data->timeout_clks + (unsigned int)clks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
625 base = host->base;
626 writel(timeout, base + MMCIDATATIMER);
627 writel(host->size, base + MMCIDATALENGTH);
628
Russell King3bc87f22006-08-27 13:51:28 +0100629 blksz_bits = ffs(data->blksz) - 1;
630 BUG_ON(1 << blksz_bits != data->blksz);
631
Philippe Langlais1784b152011-03-25 08:51:52 +0100632 if (variant->blksz_datactrl16)
633 datactrl = MCI_DPSM_ENABLE | (data->blksz << 16);
634 else
635 datactrl = MCI_DPSM_ENABLE | blksz_bits << 4;
Russell Kingc8ebae32011-01-11 19:35:53 +0000636
637 if (data->flags & MMC_DATA_READ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 datactrl |= MCI_DPSM_DIRECTION;
Russell Kingc8ebae32011-01-11 19:35:53 +0000639
Ulf Hansson7258db72011-12-13 17:05:28 +0100640 /* The ST Micro variants has a special bit to enable SDIO */
641 if (variant->sdio && host->mmc->card)
642 if (mmc_card_sdio(host->mmc->card))
643 datactrl |= MCI_ST_DPSM_SDIOEN;
644
Russell Kingc8ebae32011-01-11 19:35:53 +0000645 /*
646 * Attempt to use DMA operation mode, if this
647 * should fail, fall back to PIO mode
648 */
649 if (!mmci_dma_start_data(host, datactrl))
650 return;
651
652 /* IRQ mode, map the SG list for CPU reading/writing */
653 mmci_init_sg(host, data);
654
655 if (data->flags & MMC_DATA_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 irqmask = MCI_RXFIFOHALFFULLMASK;
Russell King0425a142006-02-16 16:48:31 +0000657
658 /*
Russell Kingc4d877c2011-01-27 09:50:13 +0000659 * If we have less than the fifo 'half-full' threshold to
660 * transfer, trigger a PIO interrupt as soon as any data
661 * is available.
Russell King0425a142006-02-16 16:48:31 +0000662 */
Russell Kingc4d877c2011-01-27 09:50:13 +0000663 if (host->size < variant->fifohalfsize)
Russell King0425a142006-02-16 16:48:31 +0000664 irqmask |= MCI_RXDATAAVLBLMASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 } else {
666 /*
667 * We don't actually need to include "FIFO empty" here
668 * since its implicit in "FIFO half empty".
669 */
670 irqmask = MCI_TXFIFOHALFEMPTYMASK;
671 }
672
673 writel(datactrl, base + MMCIDATACTRL);
674 writel(readl(base + MMCIMASK0) & ~MCI_DATAENDMASK, base + MMCIMASK0);
Linus Walleij2686b4b2010-10-19 12:39:48 +0100675 mmci_set_mask1(host, irqmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676}
677
678static void
679mmci_start_command(struct mmci_host *host, struct mmc_command *cmd, u32 c)
680{
681 void __iomem *base = host->base;
682
Linus Walleij64de0282010-02-19 01:09:10 +0100683 dev_dbg(mmc_dev(host->mmc), "op %02x arg %08x flags %08x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 cmd->opcode, cmd->arg, cmd->flags);
685
686 if (readl(base + MMCICOMMAND) & MCI_CPSM_ENABLE) {
687 writel(0, base + MMCICOMMAND);
688 udelay(1);
689 }
690
691 c |= cmd->opcode | MCI_CPSM_ENABLE;
Russell Kinge9225172006-02-02 12:23:12 +0000692 if (cmd->flags & MMC_RSP_PRESENT) {
693 if (cmd->flags & MMC_RSP_136)
694 c |= MCI_CPSM_LONGRSP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 c |= MCI_CPSM_RESPONSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 }
697 if (/*interrupt*/0)
698 c |= MCI_CPSM_INTERRUPT;
699
700 host->cmd = cmd;
701
702 writel(cmd->arg, base + MMCIARGUMENT);
703 writel(c, base + MMCICOMMAND);
704}
705
706static void
707mmci_data_irq(struct mmci_host *host, struct mmc_data *data,
708 unsigned int status)
709{
Linus Walleijf20f8f22010-10-19 13:41:24 +0100710 /* First check for errors */
Ulf Hanssonb63038d2011-12-13 16:51:04 +0100711 if (status & (MCI_DATACRCFAIL|MCI_DATATIMEOUT|MCI_STARTBITERR|
712 MCI_TXUNDERRUN|MCI_RXOVERRUN)) {
Linus Walleij8cb28152011-01-24 15:22:13 +0100713 u32 remain, success;
Linus Walleijf20f8f22010-10-19 13:41:24 +0100714
Russell Kingc8ebae32011-01-11 19:35:53 +0000715 /* Terminate the DMA transfer */
716 if (dma_inprogress(host))
717 mmci_dma_data_error(host);
718
Russell Kingc8afc9d2011-02-04 09:19:46 +0000719 /*
720 * Calculate how far we are into the transfer. Note that
721 * the data counter gives the number of bytes transferred
722 * on the MMC bus, not on the host side. On reads, this
723 * can be as much as a FIFO-worth of data ahead. This
724 * matters for FIFO overruns only.
725 */
Linus Walleijf5a106d2011-01-27 17:44:34 +0100726 remain = readl(host->base + MMCIDATACNT);
Linus Walleij8cb28152011-01-24 15:22:13 +0100727 success = data->blksz * data->blocks - remain;
728
Russell Kingc8afc9d2011-02-04 09:19:46 +0000729 dev_dbg(mmc_dev(host->mmc), "MCI ERROR IRQ, status 0x%08x at 0x%08x\n",
730 status, success);
Linus Walleij8cb28152011-01-24 15:22:13 +0100731 if (status & MCI_DATACRCFAIL) {
732 /* Last block was not successful */
Russell Kingc8afc9d2011-02-04 09:19:46 +0000733 success -= 1;
Pierre Ossman17b04292007-07-22 22:18:46 +0200734 data->error = -EILSEQ;
Linus Walleij8cb28152011-01-24 15:22:13 +0100735 } else if (status & MCI_DATATIMEOUT) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200736 data->error = -ETIMEDOUT;
Linus Walleij757df742011-06-30 15:10:21 +0100737 } else if (status & MCI_STARTBITERR) {
738 data->error = -ECOMM;
Russell Kingc8afc9d2011-02-04 09:19:46 +0000739 } else if (status & MCI_TXUNDERRUN) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200740 data->error = -EIO;
Russell Kingc8afc9d2011-02-04 09:19:46 +0000741 } else if (status & MCI_RXOVERRUN) {
742 if (success > host->variant->fifosize)
743 success -= host->variant->fifosize;
744 else
745 success = 0;
Linus Walleij8cb28152011-01-24 15:22:13 +0100746 data->error = -EIO;
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100747 }
Russell King51d43752011-01-27 10:56:52 +0000748 data->bytes_xfered = round_down(success, data->blksz);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 }
Linus Walleijf20f8f22010-10-19 13:41:24 +0100750
Linus Walleij8cb28152011-01-24 15:22:13 +0100751 if (status & MCI_DATABLOCKEND)
752 dev_err(mmc_dev(host->mmc), "stray MCI_DATABLOCKEND interrupt\n");
Linus Walleijf20f8f22010-10-19 13:41:24 +0100753
Russell Kingccff9b52011-01-30 21:03:50 +0000754 if (status & MCI_DATAEND || data->error) {
Russell Kingc8ebae32011-01-11 19:35:53 +0000755 if (dma_inprogress(host))
756 mmci_dma_unmap(host, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 mmci_stop_data(host);
758
Linus Walleij8cb28152011-01-24 15:22:13 +0100759 if (!data->error)
760 /* The error clause is handled above, success! */
Russell King51d43752011-01-27 10:56:52 +0000761 data->bytes_xfered = data->blksz * data->blocks;
Linus Walleijf20f8f22010-10-19 13:41:24 +0100762
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 if (!data->stop) {
764 mmci_request_end(host, data->mrq);
765 } else {
766 mmci_start_command(host, data->stop, 0);
767 }
768 }
769}
770
771static void
772mmci_cmd_irq(struct mmci_host *host, struct mmc_command *cmd,
773 unsigned int status)
774{
775 void __iomem *base = host->base;
776
777 host->cmd = NULL;
778
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 if (status & MCI_CMDTIMEOUT) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200780 cmd->error = -ETIMEDOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 } else if (status & MCI_CMDCRCFAIL && cmd->flags & MMC_RSP_CRC) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200782 cmd->error = -EILSEQ;
Russell King - ARM Linux9047b432011-01-11 16:35:56 +0000783 } else {
784 cmd->resp[0] = readl(base + MMCIRESPONSE0);
785 cmd->resp[1] = readl(base + MMCIRESPONSE1);
786 cmd->resp[2] = readl(base + MMCIRESPONSE2);
787 cmd->resp[3] = readl(base + MMCIRESPONSE3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 }
789
Pierre Ossman17b04292007-07-22 22:18:46 +0200790 if (!cmd->data || cmd->error) {
Ulf Hansson3b6e3c72011-12-13 16:58:43 +0100791 if (host->data) {
792 /* Terminate the DMA transfer */
793 if (dma_inprogress(host))
794 mmci_dma_data_error(host);
Russell Kinge47c2222007-01-08 16:42:51 +0000795 mmci_stop_data(host);
Ulf Hansson3b6e3c72011-12-13 16:58:43 +0100796 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 mmci_request_end(host, cmd->mrq);
798 } else if (!(cmd->data->flags & MMC_DATA_READ)) {
799 mmci_start_data(host, cmd->data);
800 }
801}
802
803static int mmci_pio_read(struct mmci_host *host, char *buffer, unsigned int remain)
804{
805 void __iomem *base = host->base;
806 char *ptr = buffer;
807 u32 status;
Linus Walleij26eed9a2008-04-26 23:39:44 +0100808 int host_remain = host->size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
810 do {
Linus Walleij26eed9a2008-04-26 23:39:44 +0100811 int count = host_remain - (readl(base + MMCIFIFOCNT) << 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
813 if (count > remain)
814 count = remain;
815
816 if (count <= 0)
817 break;
818
Ulf Hansson393e5e22011-12-13 17:08:04 +0100819 /*
820 * SDIO especially may want to send something that is
821 * not divisible by 4 (as opposed to card sectors
822 * etc). Therefore make sure to always read the last bytes
823 * while only doing full 32-bit reads towards the FIFO.
824 */
825 if (unlikely(count & 0x3)) {
826 if (count < 4) {
827 unsigned char buf[4];
828 readsl(base + MMCIFIFO, buf, 1);
829 memcpy(ptr, buf, count);
830 } else {
831 readsl(base + MMCIFIFO, ptr, count >> 2);
832 count &= ~0x3;
833 }
834 } else {
835 readsl(base + MMCIFIFO, ptr, count >> 2);
836 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
838 ptr += count;
839 remain -= count;
Linus Walleij26eed9a2008-04-26 23:39:44 +0100840 host_remain -= count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
842 if (remain == 0)
843 break;
844
845 status = readl(base + MMCISTATUS);
846 } while (status & MCI_RXDATAAVLBL);
847
848 return ptr - buffer;
849}
850
851static int mmci_pio_write(struct mmci_host *host, char *buffer, unsigned int remain, u32 status)
852{
Rabin Vincent8301bb62010-08-09 12:57:30 +0100853 struct variant_data *variant = host->variant;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 void __iomem *base = host->base;
855 char *ptr = buffer;
856
857 do {
858 unsigned int count, maxcnt;
859
Rabin Vincent8301bb62010-08-09 12:57:30 +0100860 maxcnt = status & MCI_TXFIFOEMPTY ?
861 variant->fifosize : variant->fifohalfsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 count = min(remain, maxcnt);
863
Linus Walleij34177802010-10-19 12:43:58 +0100864 /*
865 * The ST Micro variant for SDIO transfer sizes
866 * less then 8 bytes should have clock H/W flow
867 * control disabled.
868 */
869 if (variant->sdio &&
870 mmc_card_sdio(host->mmc->card)) {
Ulf Hansson7437cfa2012-01-18 09:17:27 +0100871 u32 clk;
Linus Walleij34177802010-10-19 12:43:58 +0100872 if (count < 8)
Ulf Hansson7437cfa2012-01-18 09:17:27 +0100873 clk = host->clk_reg & ~variant->clkreg_enable;
Linus Walleij34177802010-10-19 12:43:58 +0100874 else
Ulf Hansson7437cfa2012-01-18 09:17:27 +0100875 clk = host->clk_reg | variant->clkreg_enable;
876
877 mmci_write_clkreg(host, clk);
Linus Walleij34177802010-10-19 12:43:58 +0100878 }
879
880 /*
881 * SDIO especially may want to send something that is
882 * not divisible by 4 (as opposed to card sectors
883 * etc), and the FIFO only accept full 32-bit writes.
884 * So compensate by adding +3 on the count, a single
885 * byte become a 32bit write, 7 bytes will be two
886 * 32bit writes etc.
887 */
888 writesl(base + MMCIFIFO, ptr, (count + 3) >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
890 ptr += count;
891 remain -= count;
892
893 if (remain == 0)
894 break;
895
896 status = readl(base + MMCISTATUS);
897 } while (status & MCI_TXFIFOHALFEMPTY);
898
899 return ptr - buffer;
900}
901
902/*
903 * PIO data transfer IRQ handler.
904 */
David Howells7d12e782006-10-05 14:55:46 +0100905static irqreturn_t mmci_pio_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906{
907 struct mmci_host *host = dev_id;
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100908 struct sg_mapping_iter *sg_miter = &host->sg_miter;
Rabin Vincent8301bb62010-08-09 12:57:30 +0100909 struct variant_data *variant = host->variant;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 void __iomem *base = host->base;
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100911 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 u32 status;
913
914 status = readl(base + MMCISTATUS);
915
Linus Walleij64de0282010-02-19 01:09:10 +0100916 dev_dbg(mmc_dev(host->mmc), "irq1 (pio) %08x\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100918 local_irq_save(flags);
919
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 unsigned int remain, len;
922 char *buffer;
923
924 /*
925 * For write, we only need to test the half-empty flag
926 * here - if the FIFO is completely empty, then by
927 * definition it is more than half empty.
928 *
929 * For read, check for data available.
930 */
931 if (!(status & (MCI_TXFIFOHALFEMPTY|MCI_RXDATAAVLBL)))
932 break;
933
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100934 if (!sg_miter_next(sg_miter))
935 break;
936
937 buffer = sg_miter->addr;
938 remain = sg_miter->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
940 len = 0;
941 if (status & MCI_RXACTIVE)
942 len = mmci_pio_read(host, buffer, remain);
943 if (status & MCI_TXACTIVE)
944 len = mmci_pio_write(host, buffer, remain, status);
945
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100946 sg_miter->consumed = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 host->size -= len;
949 remain -= len;
950
951 if (remain)
952 break;
953
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 status = readl(base + MMCISTATUS);
955 } while (1);
956
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100957 sg_miter_stop(sg_miter);
958
959 local_irq_restore(flags);
960
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 /*
Russell Kingc4d877c2011-01-27 09:50:13 +0000962 * If we have less than the fifo 'half-full' threshold to transfer,
963 * trigger a PIO interrupt as soon as any data is available.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 */
Russell Kingc4d877c2011-01-27 09:50:13 +0000965 if (status & MCI_RXACTIVE && host->size < variant->fifohalfsize)
Linus Walleij2686b4b2010-10-19 12:39:48 +0100966 mmci_set_mask1(host, MCI_RXDATAAVLBLMASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
968 /*
969 * If we run out of data, disable the data IRQs; this
970 * prevents a race where the FIFO becomes empty before
971 * the chip itself has disabled the data path, and
972 * stops us racing with our data end IRQ.
973 */
974 if (host->size == 0) {
Linus Walleij2686b4b2010-10-19 12:39:48 +0100975 mmci_set_mask1(host, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 writel(readl(base + MMCIMASK0) | MCI_DATAENDMASK, base + MMCIMASK0);
977 }
978
979 return IRQ_HANDLED;
980}
981
982/*
983 * Handle completion of command and data transfers.
984 */
David Howells7d12e782006-10-05 14:55:46 +0100985static irqreturn_t mmci_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986{
987 struct mmci_host *host = dev_id;
988 u32 status;
989 int ret = 0;
990
991 spin_lock(&host->lock);
992
993 do {
994 struct mmc_command *cmd;
995 struct mmc_data *data;
996
997 status = readl(host->base + MMCISTATUS);
Linus Walleij2686b4b2010-10-19 12:39:48 +0100998
999 if (host->singleirq) {
1000 if (status & readl(host->base + MMCIMASK1))
1001 mmci_pio_irq(irq, dev_id);
1002
1003 status &= ~MCI_IRQ1MASK;
1004 }
1005
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 status &= readl(host->base + MMCIMASK0);
1007 writel(status, host->base + MMCICLEAR);
1008
Linus Walleij64de0282010-02-19 01:09:10 +01001009 dev_dbg(mmc_dev(host->mmc), "irq0 (data+cmd) %08x\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010
1011 data = host->data;
Ulf Hanssonb63038d2011-12-13 16:51:04 +01001012 if (status & (MCI_DATACRCFAIL|MCI_DATATIMEOUT|MCI_STARTBITERR|
1013 MCI_TXUNDERRUN|MCI_RXOVERRUN|MCI_DATAEND|
1014 MCI_DATABLOCKEND) && data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 mmci_data_irq(host, data, status);
1016
1017 cmd = host->cmd;
1018 if (status & (MCI_CMDCRCFAIL|MCI_CMDTIMEOUT|MCI_CMDSENT|MCI_CMDRESPEND) && cmd)
1019 mmci_cmd_irq(host, cmd, status);
1020
1021 ret = 1;
1022 } while (status);
1023
1024 spin_unlock(&host->lock);
1025
1026 return IRQ_RETVAL(ret);
1027}
1028
1029static void mmci_request(struct mmc_host *mmc, struct mmc_request *mrq)
1030{
1031 struct mmci_host *host = mmc_priv(mmc);
Linus Walleij9e943022008-10-24 21:17:50 +01001032 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
1034 WARN_ON(host->mrq != NULL);
1035
Nicolas Pitre019a5f52007-10-11 01:06:03 -04001036 if (mrq->data && !is_power_of_2(mrq->data->blksz)) {
Linus Walleij64de0282010-02-19 01:09:10 +01001037 dev_err(mmc_dev(mmc), "unsupported block size (%d bytes)\n",
1038 mrq->data->blksz);
Pierre Ossman255d01a2007-07-24 20:38:53 +02001039 mrq->cmd->error = -EINVAL;
1040 mmc_request_done(mmc, mrq);
1041 return;
1042 }
1043
Russell King1c3be362011-08-14 09:17:05 +01001044 pm_runtime_get_sync(mmc_dev(mmc));
1045
Linus Walleij9e943022008-10-24 21:17:50 +01001046 spin_lock_irqsave(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
1048 host->mrq = mrq;
1049
Per Forlin58c7ccb2011-07-01 18:55:24 +02001050 if (mrq->data)
1051 mmci_get_next_data(host, mrq->data);
1052
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 if (mrq->data && mrq->data->flags & MMC_DATA_READ)
1054 mmci_start_data(host, mrq->data);
1055
1056 mmci_start_command(host, mrq->cmd, 0);
1057
Linus Walleij9e943022008-10-24 21:17:50 +01001058 spin_unlock_irqrestore(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059}
1060
1061static void mmci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
1062{
1063 struct mmci_host *host = mmc_priv(mmc);
Ulf Hansson7d72a1d2011-12-13 16:54:55 +01001064 struct variant_data *variant = host->variant;
Linus Walleija6a64642009-09-14 12:56:14 +01001065 u32 pwr = 0;
1066 unsigned long flags;
Linus Walleij99fc5132010-09-29 01:08:27 -04001067 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001069 pm_runtime_get_sync(mmc_dev(mmc));
1070
Ulf Hanssonbc521812011-12-13 16:57:55 +01001071 if (host->plat->ios_handler &&
1072 host->plat->ios_handler(mmc_dev(mmc), ios))
1073 dev_err(mmc_dev(mmc), "platform ios_handler failed\n");
1074
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 switch (ios->power_mode) {
1076 case MMC_POWER_OFF:
Linus Walleij99fc5132010-09-29 01:08:27 -04001077 if (host->vcc)
1078 ret = mmc_regulator_set_ocr(mmc, host->vcc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 break;
1080 case MMC_POWER_UP:
Linus Walleij99fc5132010-09-29 01:08:27 -04001081 if (host->vcc) {
1082 ret = mmc_regulator_set_ocr(mmc, host->vcc, ios->vdd);
1083 if (ret) {
1084 dev_err(mmc_dev(mmc), "unable to set OCR\n");
1085 /*
1086 * The .set_ios() function in the mmc_host_ops
1087 * struct return void, and failing to set the
1088 * power should be rare so we print an error
1089 * and return here.
1090 */
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001091 goto out;
Linus Walleij99fc5132010-09-29 01:08:27 -04001092 }
1093 }
Ulf Hansson7d72a1d2011-12-13 16:54:55 +01001094 /*
1095 * The ST Micro variant doesn't have the PL180s MCI_PWR_UP
1096 * and instead uses MCI_PWR_ON so apply whatever value is
1097 * configured in the variant data.
1098 */
1099 pwr |= variant->pwrreg_powerup;
1100
1101 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 case MMC_POWER_ON:
1103 pwr |= MCI_PWR_ON;
1104 break;
1105 }
1106
Ulf Hansson4d1a3a02011-12-13 16:57:07 +01001107 if (variant->signal_direction && ios->power_mode != MMC_POWER_OFF) {
1108 /*
1109 * The ST Micro variant has some additional bits
1110 * indicating signal direction for the signals in
1111 * the SD/MMC bus and feedback-clock usage.
1112 */
1113 pwr |= host->plat->sigdir;
1114
1115 if (ios->bus_width == MMC_BUS_WIDTH_4)
1116 pwr &= ~MCI_ST_DATA74DIREN;
1117 else if (ios->bus_width == MMC_BUS_WIDTH_1)
1118 pwr &= (~MCI_ST_DATA74DIREN &
1119 ~MCI_ST_DATA31DIREN &
1120 ~MCI_ST_DATA2DIREN);
1121 }
1122
Linus Walleijcc30d602009-01-04 15:18:54 +01001123 if (ios->bus_mode == MMC_BUSMODE_OPENDRAIN) {
Linus Walleijf17a1f02009-08-04 01:01:02 +01001124 if (host->hw_designer != AMBA_VENDOR_ST)
Linus Walleijcc30d602009-01-04 15:18:54 +01001125 pwr |= MCI_ROD;
1126 else {
1127 /*
1128 * The ST Micro variant use the ROD bit for something
1129 * else and only has OD (Open Drain).
1130 */
1131 pwr |= MCI_OD;
1132 }
1133 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134
Linus Walleija6a64642009-09-14 12:56:14 +01001135 spin_lock_irqsave(&host->lock, flags);
1136
1137 mmci_set_clkreg(host, ios->clock);
Ulf Hansson7437cfa2012-01-18 09:17:27 +01001138 mmci_write_pwrreg(host, pwr);
Linus Walleija6a64642009-09-14 12:56:14 +01001139
1140 spin_unlock_irqrestore(&host->lock, flags);
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001141
1142 out:
1143 pm_runtime_mark_last_busy(mmc_dev(mmc));
1144 pm_runtime_put_autosuspend(mmc_dev(mmc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145}
1146
Russell King89001442009-07-09 15:16:07 +01001147static int mmci_get_ro(struct mmc_host *mmc)
1148{
1149 struct mmci_host *host = mmc_priv(mmc);
1150
1151 if (host->gpio_wp == -ENOSYS)
1152 return -ENOSYS;
1153
Linus Walleij18a063012010-09-12 12:56:44 +01001154 return gpio_get_value_cansleep(host->gpio_wp);
Russell King89001442009-07-09 15:16:07 +01001155}
1156
1157static int mmci_get_cd(struct mmc_host *mmc)
1158{
1159 struct mmci_host *host = mmc_priv(mmc);
Rabin Vincent29719442010-08-09 12:54:43 +01001160 struct mmci_platform_data *plat = host->plat;
Russell King89001442009-07-09 15:16:07 +01001161 unsigned int status;
1162
Rabin Vincent4b8caec2010-08-09 12:56:40 +01001163 if (host->gpio_cd == -ENOSYS) {
1164 if (!plat->status)
1165 return 1; /* Assume always present */
1166
Rabin Vincent29719442010-08-09 12:54:43 +01001167 status = plat->status(mmc_dev(host->mmc));
Rabin Vincent4b8caec2010-08-09 12:56:40 +01001168 } else
Linus Walleij18a063012010-09-12 12:56:44 +01001169 status = !!gpio_get_value_cansleep(host->gpio_cd)
1170 ^ plat->cd_invert;
Russell King89001442009-07-09 15:16:07 +01001171
Russell King74bc8092010-07-29 15:58:59 +01001172 /*
1173 * Use positive logic throughout - status is zero for no card,
1174 * non-zero for card inserted.
1175 */
1176 return status;
Russell King89001442009-07-09 15:16:07 +01001177}
1178
Rabin Vincent148b8b32010-08-09 12:55:48 +01001179static irqreturn_t mmci_cd_irq(int irq, void *dev_id)
1180{
1181 struct mmci_host *host = dev_id;
1182
1183 mmc_detect_change(host->mmc, msecs_to_jiffies(500));
1184
1185 return IRQ_HANDLED;
1186}
1187
David Brownellab7aefd2006-11-12 17:55:30 -08001188static const struct mmc_host_ops mmci_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 .request = mmci_request,
Per Forlin58c7ccb2011-07-01 18:55:24 +02001190 .pre_req = mmci_pre_request,
1191 .post_req = mmci_post_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 .set_ios = mmci_set_ios,
Russell King89001442009-07-09 15:16:07 +01001193 .get_ro = mmci_get_ro,
1194 .get_cd = mmci_get_cd,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195};
1196
Russell Kingaa25afa2011-02-19 15:55:00 +00001197static int __devinit mmci_probe(struct amba_device *dev,
1198 const struct amba_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199{
Linus Walleij6ef297f2009-09-22 14:29:36 +01001200 struct mmci_platform_data *plat = dev->dev.platform_data;
Rabin Vincent4956e102010-07-21 12:54:40 +01001201 struct variant_data *variant = id->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 struct mmci_host *host;
1203 struct mmc_host *mmc;
1204 int ret;
1205
1206 /* must have platform data */
1207 if (!plat) {
1208 ret = -EINVAL;
1209 goto out;
1210 }
1211
1212 ret = amba_request_regions(dev, DRIVER_NAME);
1213 if (ret)
1214 goto out;
1215
1216 mmc = mmc_alloc_host(sizeof(struct mmci_host), &dev->dev);
1217 if (!mmc) {
1218 ret = -ENOMEM;
1219 goto rel_regions;
1220 }
1221
1222 host = mmc_priv(mmc);
Rabin Vincent4ea580f2009-04-17 08:44:19 +05301223 host->mmc = mmc;
Russell King012b7d32009-07-09 15:13:56 +01001224
Russell King89001442009-07-09 15:16:07 +01001225 host->gpio_wp = -ENOSYS;
1226 host->gpio_cd = -ENOSYS;
Rabin Vincent148b8b32010-08-09 12:55:48 +01001227 host->gpio_cd_irq = -1;
Russell King89001442009-07-09 15:16:07 +01001228
Russell King012b7d32009-07-09 15:13:56 +01001229 host->hw_designer = amba_manf(dev);
1230 host->hw_revision = amba_rev(dev);
Linus Walleij64de0282010-02-19 01:09:10 +01001231 dev_dbg(mmc_dev(mmc), "designer ID = 0x%02x\n", host->hw_designer);
1232 dev_dbg(mmc_dev(mmc), "revision = 0x%01x\n", host->hw_revision);
Russell King012b7d32009-07-09 15:13:56 +01001233
Russell Kingee569c42008-11-30 17:38:14 +00001234 host->clk = clk_get(&dev->dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 if (IS_ERR(host->clk)) {
1236 ret = PTR_ERR(host->clk);
1237 host->clk = NULL;
1238 goto host_free;
1239 }
1240
Russell King52ca0f32011-09-22 11:36:41 +01001241 ret = clk_prepare(host->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 if (ret)
Russell Kinga8d35842006-01-03 18:41:37 +00001243 goto clk_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244
Russell King52ca0f32011-09-22 11:36:41 +01001245 ret = clk_enable(host->clk);
1246 if (ret)
1247 goto clk_unprep;
1248
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 host->plat = plat;
Rabin Vincent4956e102010-07-21 12:54:40 +01001250 host->variant = variant;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 host->mclk = clk_get_rate(host->clk);
Linus Walleijc8df9a52008-04-29 09:34:07 +01001252 /*
1253 * According to the spec, mclk is max 100 MHz,
1254 * so we try to adjust the clock down to this,
1255 * (if possible).
1256 */
1257 if (host->mclk > 100000000) {
1258 ret = clk_set_rate(host->clk, 100000000);
1259 if (ret < 0)
1260 goto clk_disable;
1261 host->mclk = clk_get_rate(host->clk);
Linus Walleij64de0282010-02-19 01:09:10 +01001262 dev_dbg(mmc_dev(mmc), "eventual mclk rate: %u Hz\n",
1263 host->mclk);
Linus Walleijc8df9a52008-04-29 09:34:07 +01001264 }
Russell Kingc8ebae32011-01-11 19:35:53 +00001265 host->phybase = dev->res.start;
Linus Walleijdc890c22009-06-07 23:27:31 +01001266 host->base = ioremap(dev->res.start, resource_size(&dev->res));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 if (!host->base) {
1268 ret = -ENOMEM;
1269 goto clk_disable;
1270 }
1271
1272 mmc->ops = &mmci_ops;
Linus Walleij7f294e42011-07-08 09:57:15 +01001273 /*
1274 * The ARM and ST versions of the block have slightly different
1275 * clock divider equations which means that the minimum divider
1276 * differs too.
1277 */
1278 if (variant->st_clkdiv)
1279 mmc->f_min = DIV_ROUND_UP(host->mclk, 257);
1280 else
1281 mmc->f_min = DIV_ROUND_UP(host->mclk, 512);
Linus Walleij808d97c2010-04-08 07:39:38 +01001282 /*
1283 * If the platform data supplies a maximum operating
1284 * frequency, this takes precedence. Else, we fall back
1285 * to using the module parameter, which has a (low)
1286 * default value in case it is not specified. Either
1287 * value must not exceed the clock rate into the block,
1288 * of course.
1289 */
1290 if (plat->f_max)
1291 mmc->f_max = min(host->mclk, plat->f_max);
1292 else
1293 mmc->f_max = min(host->mclk, fmax);
Linus Walleij64de0282010-02-19 01:09:10 +01001294 dev_dbg(mmc_dev(mmc), "clocking block at %u Hz\n", mmc->f_max);
1295
Linus Walleij34e84f32009-09-22 14:41:40 +01001296#ifdef CONFIG_REGULATOR
1297 /* If we're using the regulator framework, try to fetch a regulator */
1298 host->vcc = regulator_get(&dev->dev, "vmmc");
1299 if (IS_ERR(host->vcc))
1300 host->vcc = NULL;
1301 else {
1302 int mask = mmc_regulator_get_ocrmask(host->vcc);
1303
1304 if (mask < 0)
1305 dev_err(&dev->dev, "error getting OCR mask (%d)\n",
1306 mask);
1307 else {
1308 host->mmc->ocr_avail = (u32) mask;
1309 if (plat->ocr_mask)
1310 dev_warn(&dev->dev,
1311 "Provided ocr_mask/setpower will not be used "
1312 "(using regulator instead)\n");
1313 }
1314 }
1315#endif
1316 /* Fall back to platform data if no regulator is found */
1317 if (host->vcc == NULL)
1318 mmc->ocr_avail = plat->ocr_mask;
Linus Walleij9e6c82c2009-09-14 12:57:11 +01001319 mmc->caps = plat->capabilities;
Per Forlin5a092622011-11-14 12:02:28 +01001320 mmc->caps2 = plat->capabilities2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
1322 /*
1323 * We can do SGIO
1324 */
Martin K. Petersena36274e2010-09-10 01:33:59 -04001325 mmc->max_segs = NR_SG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
1327 /*
Rabin Vincent08458ef2010-07-21 12:55:59 +01001328 * Since only a certain number of bits are valid in the data length
1329 * register, we must ensure that we don't exceed 2^num-1 bytes in a
1330 * single request.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 */
Rabin Vincent08458ef2010-07-21 12:55:59 +01001332 mmc->max_req_size = (1 << variant->datalength_bits) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
1334 /*
1335 * Set the maximum segment size. Since we aren't doing DMA
1336 * (yet) we are only limited by the data length register.
1337 */
Pierre Ossman55db8902006-11-21 17:55:45 +01001338 mmc->max_seg_size = mmc->max_req_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +01001340 /*
1341 * Block size can be up to 2048 bytes, but must be a power of two.
1342 */
1343 mmc->max_blk_size = 2048;
1344
Pierre Ossman55db8902006-11-21 17:55:45 +01001345 /*
1346 * No limit on the number of blocks transferred.
1347 */
1348 mmc->max_blk_count = mmc->max_req_size;
1349
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 spin_lock_init(&host->lock);
1351
1352 writel(0, host->base + MMCIMASK0);
1353 writel(0, host->base + MMCIMASK1);
1354 writel(0xfff, host->base + MMCICLEAR);
1355
Russell King89001442009-07-09 15:16:07 +01001356 if (gpio_is_valid(plat->gpio_cd)) {
1357 ret = gpio_request(plat->gpio_cd, DRIVER_NAME " (cd)");
1358 if (ret == 0)
1359 ret = gpio_direction_input(plat->gpio_cd);
1360 if (ret == 0)
1361 host->gpio_cd = plat->gpio_cd;
1362 else if (ret != -ENOSYS)
1363 goto err_gpio_cd;
Rabin Vincent148b8b32010-08-09 12:55:48 +01001364
Linus Walleij17ee0832011-05-05 17:23:10 +01001365 /*
1366 * A gpio pin that will detect cards when inserted and removed
1367 * will most likely want to trigger on the edges if it is
1368 * 0 when ejected and 1 when inserted (or mutatis mutandis
1369 * for the inverted case) so we request triggers on both
1370 * edges.
1371 */
Rabin Vincent148b8b32010-08-09 12:55:48 +01001372 ret = request_any_context_irq(gpio_to_irq(plat->gpio_cd),
Linus Walleij17ee0832011-05-05 17:23:10 +01001373 mmci_cd_irq,
1374 IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING,
1375 DRIVER_NAME " (cd)", host);
Rabin Vincent148b8b32010-08-09 12:55:48 +01001376 if (ret >= 0)
1377 host->gpio_cd_irq = gpio_to_irq(plat->gpio_cd);
Russell King89001442009-07-09 15:16:07 +01001378 }
1379 if (gpio_is_valid(plat->gpio_wp)) {
1380 ret = gpio_request(plat->gpio_wp, DRIVER_NAME " (wp)");
1381 if (ret == 0)
1382 ret = gpio_direction_input(plat->gpio_wp);
1383 if (ret == 0)
1384 host->gpio_wp = plat->gpio_wp;
1385 else if (ret != -ENOSYS)
1386 goto err_gpio_wp;
1387 }
1388
Rabin Vincent4b8caec2010-08-09 12:56:40 +01001389 if ((host->plat->status || host->gpio_cd != -ENOSYS)
1390 && host->gpio_cd_irq < 0)
Rabin Vincent148b8b32010-08-09 12:55:48 +01001391 mmc->caps |= MMC_CAP_NEEDS_POLL;
1392
Thomas Gleixnerdace1452006-07-01 19:29:38 -07001393 ret = request_irq(dev->irq[0], mmci_irq, IRQF_SHARED, DRIVER_NAME " (cmd)", host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 if (ret)
1395 goto unmap;
1396
Linus Walleij2686b4b2010-10-19 12:39:48 +01001397 if (dev->irq[1] == NO_IRQ)
1398 host->singleirq = true;
1399 else {
1400 ret = request_irq(dev->irq[1], mmci_pio_irq, IRQF_SHARED,
1401 DRIVER_NAME " (pio)", host);
1402 if (ret)
1403 goto irq0_free;
1404 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405
Linus Walleij8cb28152011-01-24 15:22:13 +01001406 writel(MCI_IRQENABLE, host->base + MMCIMASK0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407
1408 amba_set_drvdata(dev, mmc);
1409
Russell Kingc8ebae32011-01-11 19:35:53 +00001410 dev_info(&dev->dev, "%s: PL%03x manf %x rev%u at 0x%08llx irq %d,%d (pio)\n",
1411 mmc_hostname(mmc), amba_part(dev), amba_manf(dev),
1412 amba_rev(dev), (unsigned long long)dev->res.start,
1413 dev->irq[0], dev->irq[1]);
1414
1415 mmci_dma_setup(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001417 pm_runtime_set_autosuspend_delay(&dev->dev, 50);
1418 pm_runtime_use_autosuspend(&dev->dev);
Russell King1c3be362011-08-14 09:17:05 +01001419 pm_runtime_put(&dev->dev);
1420
Russell King8c11a942010-12-28 19:40:40 +00001421 mmc_add_host(mmc);
1422
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 return 0;
1424
1425 irq0_free:
1426 free_irq(dev->irq[0], host);
1427 unmap:
Russell King89001442009-07-09 15:16:07 +01001428 if (host->gpio_wp != -ENOSYS)
1429 gpio_free(host->gpio_wp);
1430 err_gpio_wp:
Rabin Vincent148b8b32010-08-09 12:55:48 +01001431 if (host->gpio_cd_irq >= 0)
1432 free_irq(host->gpio_cd_irq, host);
Russell King89001442009-07-09 15:16:07 +01001433 if (host->gpio_cd != -ENOSYS)
1434 gpio_free(host->gpio_cd);
1435 err_gpio_cd:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 iounmap(host->base);
1437 clk_disable:
1438 clk_disable(host->clk);
Russell King52ca0f32011-09-22 11:36:41 +01001439 clk_unprep:
1440 clk_unprepare(host->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 clk_free:
1442 clk_put(host->clk);
1443 host_free:
1444 mmc_free_host(mmc);
1445 rel_regions:
1446 amba_release_regions(dev);
1447 out:
1448 return ret;
1449}
1450
Linus Walleij6dc4a472009-03-07 00:23:52 +01001451static int __devexit mmci_remove(struct amba_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452{
1453 struct mmc_host *mmc = amba_get_drvdata(dev);
1454
1455 amba_set_drvdata(dev, NULL);
1456
1457 if (mmc) {
1458 struct mmci_host *host = mmc_priv(mmc);
1459
Russell King1c3be362011-08-14 09:17:05 +01001460 /*
1461 * Undo pm_runtime_put() in probe. We use the _sync
1462 * version here so that we can access the primecell.
1463 */
1464 pm_runtime_get_sync(&dev->dev);
1465
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 mmc_remove_host(mmc);
1467
1468 writel(0, host->base + MMCIMASK0);
1469 writel(0, host->base + MMCIMASK1);
1470
1471 writel(0, host->base + MMCICOMMAND);
1472 writel(0, host->base + MMCIDATACTRL);
1473
Russell Kingc8ebae32011-01-11 19:35:53 +00001474 mmci_dma_release(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 free_irq(dev->irq[0], host);
Linus Walleij2686b4b2010-10-19 12:39:48 +01001476 if (!host->singleirq)
1477 free_irq(dev->irq[1], host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478
Russell King89001442009-07-09 15:16:07 +01001479 if (host->gpio_wp != -ENOSYS)
1480 gpio_free(host->gpio_wp);
Rabin Vincent148b8b32010-08-09 12:55:48 +01001481 if (host->gpio_cd_irq >= 0)
1482 free_irq(host->gpio_cd_irq, host);
Russell King89001442009-07-09 15:16:07 +01001483 if (host->gpio_cd != -ENOSYS)
1484 gpio_free(host->gpio_cd);
1485
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 iounmap(host->base);
1487 clk_disable(host->clk);
Russell King52ca0f32011-09-22 11:36:41 +01001488 clk_unprepare(host->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 clk_put(host->clk);
1490
Linus Walleij99fc5132010-09-29 01:08:27 -04001491 if (host->vcc)
1492 mmc_regulator_set_ocr(mmc, host->vcc, 0);
Linus Walleij34e84f32009-09-22 14:41:40 +01001493 regulator_put(host->vcc);
1494
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 mmc_free_host(mmc);
1496
1497 amba_release_regions(dev);
1498 }
1499
1500 return 0;
1501}
1502
Ulf Hansson48fa7002011-12-13 16:59:34 +01001503#ifdef CONFIG_SUSPEND
1504static int mmci_suspend(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505{
Ulf Hansson48fa7002011-12-13 16:59:34 +01001506 struct amba_device *adev = to_amba_device(dev);
1507 struct mmc_host *mmc = amba_get_drvdata(adev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 int ret = 0;
1509
1510 if (mmc) {
1511 struct mmci_host *host = mmc_priv(mmc);
1512
Matt Fleming1a13f8f2010-05-26 14:42:08 -07001513 ret = mmc_suspend_host(mmc);
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001514 if (ret == 0) {
1515 pm_runtime_get_sync(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 writel(0, host->base + MMCIMASK0);
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001517 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 }
1519
1520 return ret;
1521}
1522
Ulf Hansson48fa7002011-12-13 16:59:34 +01001523static int mmci_resume(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524{
Ulf Hansson48fa7002011-12-13 16:59:34 +01001525 struct amba_device *adev = to_amba_device(dev);
1526 struct mmc_host *mmc = amba_get_drvdata(adev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 int ret = 0;
1528
1529 if (mmc) {
1530 struct mmci_host *host = mmc_priv(mmc);
1531
1532 writel(MCI_IRQENABLE, host->base + MMCIMASK0);
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001533 pm_runtime_put(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534
1535 ret = mmc_resume_host(mmc);
1536 }
1537
1538 return ret;
1539}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540#endif
1541
Ulf Hansson48fa7002011-12-13 16:59:34 +01001542static const struct dev_pm_ops mmci_dev_pm_ops = {
1543 SET_SYSTEM_SLEEP_PM_OPS(mmci_suspend, mmci_resume)
1544};
1545
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546static struct amba_id mmci_ids[] = {
1547 {
1548 .id = 0x00041180,
Pawel Moll768fbc12011-03-11 17:18:07 +00001549 .mask = 0xff0fffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001550 .data = &variant_arm,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 },
1552 {
Pawel Moll768fbc12011-03-11 17:18:07 +00001553 .id = 0x01041180,
1554 .mask = 0xff0fffff,
1555 .data = &variant_arm_extended_fifo,
1556 },
1557 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 .id = 0x00041181,
1559 .mask = 0x000fffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001560 .data = &variant_arm,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 },
Linus Walleijcc30d602009-01-04 15:18:54 +01001562 /* ST Micro variants */
1563 {
1564 .id = 0x00180180,
1565 .mask = 0x00ffffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001566 .data = &variant_u300,
Linus Walleijcc30d602009-01-04 15:18:54 +01001567 },
1568 {
1569 .id = 0x00280180,
1570 .mask = 0x00ffffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001571 .data = &variant_u300,
1572 },
1573 {
1574 .id = 0x00480180,
Philippe Langlais1784b152011-03-25 08:51:52 +01001575 .mask = 0xf0ffffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001576 .data = &variant_ux500,
Linus Walleijcc30d602009-01-04 15:18:54 +01001577 },
Philippe Langlais1784b152011-03-25 08:51:52 +01001578 {
1579 .id = 0x10480180,
1580 .mask = 0xf0ffffff,
1581 .data = &variant_ux500v2,
1582 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 { 0, 0 },
1584};
1585
Dave Martin9f998352011-10-05 15:15:21 +01001586MODULE_DEVICE_TABLE(amba, mmci_ids);
1587
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588static struct amba_driver mmci_driver = {
1589 .drv = {
1590 .name = DRIVER_NAME,
Ulf Hansson48fa7002011-12-13 16:59:34 +01001591 .pm = &mmci_dev_pm_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 },
1593 .probe = mmci_probe,
Linus Walleij6dc4a472009-03-07 00:23:52 +01001594 .remove = __devexit_p(mmci_remove),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 .id_table = mmci_ids,
1596};
1597
1598static int __init mmci_init(void)
1599{
1600 return amba_driver_register(&mmci_driver);
1601}
1602
1603static void __exit mmci_exit(void)
1604{
1605 amba_driver_unregister(&mmci_driver);
1606}
1607
1608module_init(mmci_init);
1609module_exit(mmci_exit);
1610module_param(fmax, uint, 0444);
1611
1612MODULE_DESCRIPTION("ARM PrimeCell PL180/181 Multimedia Card Interface driver");
1613MODULE_LICENSE("GPL");