blob: 1f8832699cdf63873a81856009da456874135a59 [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 */
124static void mmci_set_clkreg(struct mmci_host *host, unsigned int desired)
125{
Rabin Vincent4956e102010-07-21 12:54:40 +0100126 struct variant_data *variant = host->variant;
127 u32 clk = variant->clkreg;
Linus Walleija6a64642009-09-14 12:56:14 +0100128
129 if (desired) {
130 if (desired >= host->mclk) {
Linus Walleij991a86e2010-12-10 09:35:53 +0100131 clk = MCI_CLK_BYPASS;
Linus Walleij399bc482011-04-01 07:59:17 +0100132 if (variant->st_clkdiv)
133 clk |= MCI_ST_UX500_NEG_EDGE;
Linus Walleija6a64642009-09-14 12:56:14 +0100134 host->cclk = host->mclk;
Linus Walleijb70a67f2010-12-06 09:24:14 +0100135 } else if (variant->st_clkdiv) {
136 /*
137 * DB8500 TRM says f = mclk / (clkdiv + 2)
138 * => clkdiv = (mclk / f) - 2
139 * Round the divider up so we don't exceed the max
140 * frequency
141 */
142 clk = DIV_ROUND_UP(host->mclk, desired) - 2;
143 if (clk >= 256)
144 clk = 255;
145 host->cclk = host->mclk / (clk + 2);
Linus Walleija6a64642009-09-14 12:56:14 +0100146 } else {
Linus Walleijb70a67f2010-12-06 09:24:14 +0100147 /*
148 * PL180 TRM says f = mclk / (2 * (clkdiv + 1))
149 * => clkdiv = mclk / (2 * f) - 1
150 */
Linus Walleija6a64642009-09-14 12:56:14 +0100151 clk = host->mclk / (2 * desired) - 1;
152 if (clk >= 256)
153 clk = 255;
154 host->cclk = host->mclk / (2 * (clk + 1));
155 }
Rabin Vincent4380c142010-07-21 12:55:18 +0100156
157 clk |= variant->clkreg_enable;
Linus Walleija6a64642009-09-14 12:56:14 +0100158 clk |= MCI_CLK_ENABLE;
159 /* This hasn't proven to be worthwhile */
160 /* clk |= MCI_CLK_PWRSAVE; */
161 }
162
Linus Walleij9e6c82c2009-09-14 12:57:11 +0100163 if (host->mmc->ios.bus_width == MMC_BUS_WIDTH_4)
Linus Walleij771dc152010-04-08 07:38:52 +0100164 clk |= MCI_4BIT_BUS;
165 if (host->mmc->ios.bus_width == MMC_BUS_WIDTH_8)
166 clk |= MCI_ST_8BIT_BUS;
Linus Walleij9e6c82c2009-09-14 12:57:11 +0100167
Linus Walleija6a64642009-09-14 12:56:14 +0100168 writel(clk, host->base + MMCICLOCK);
169}
170
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171static void
172mmci_request_end(struct mmci_host *host, struct mmc_request *mrq)
173{
174 writel(0, host->base + MMCICOMMAND);
175
Russell Kinge47c2222007-01-08 16:42:51 +0000176 BUG_ON(host->data);
177
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 host->mrq = NULL;
179 host->cmd = NULL;
180
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 mmc_request_done(host->mmc, mrq);
Ulf Hansson2cd976c2011-12-13 17:01:11 +0100182
183 pm_runtime_mark_last_busy(mmc_dev(host->mmc));
184 pm_runtime_put_autosuspend(mmc_dev(host->mmc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185}
186
Linus Walleij2686b4b2010-10-19 12:39:48 +0100187static void mmci_set_mask1(struct mmci_host *host, unsigned int mask)
188{
189 void __iomem *base = host->base;
190
191 if (host->singleirq) {
192 unsigned int mask0 = readl(base + MMCIMASK0);
193
194 mask0 &= ~MCI_IRQ1MASK;
195 mask0 |= mask;
196
197 writel(mask0, base + MMCIMASK0);
198 }
199
200 writel(mask, base + MMCIMASK1);
201}
202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203static void mmci_stop_data(struct mmci_host *host)
204{
205 writel(0, host->base + MMCIDATACTRL);
Linus Walleij2686b4b2010-10-19 12:39:48 +0100206 mmci_set_mask1(host, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 host->data = NULL;
208}
209
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100210static void mmci_init_sg(struct mmci_host *host, struct mmc_data *data)
211{
212 unsigned int flags = SG_MITER_ATOMIC;
213
214 if (data->flags & MMC_DATA_READ)
215 flags |= SG_MITER_TO_SG;
216 else
217 flags |= SG_MITER_FROM_SG;
218
219 sg_miter_start(&host->sg_miter, data->sg, data->sg_len, flags);
220}
221
Russell Kingc8ebae32011-01-11 19:35:53 +0000222/*
223 * All the DMA operation mode stuff goes inside this ifdef.
224 * This assumes that you have a generic DMA device interface,
225 * no custom DMA interfaces are supported.
226 */
227#ifdef CONFIG_DMA_ENGINE
228static void __devinit mmci_dma_setup(struct mmci_host *host)
229{
230 struct mmci_platform_data *plat = host->plat;
231 const char *rxname, *txname;
232 dma_cap_mask_t mask;
233
234 if (!plat || !plat->dma_filter) {
235 dev_info(mmc_dev(host->mmc), "no DMA platform data\n");
236 return;
237 }
238
Per Forlin58c7ccb2011-07-01 18:55:24 +0200239 /* initialize pre request cookie */
240 host->next_data.cookie = 1;
241
Russell Kingc8ebae32011-01-11 19:35:53 +0000242 /* Try to acquire a generic DMA engine slave channel */
243 dma_cap_zero(mask);
244 dma_cap_set(DMA_SLAVE, mask);
245
246 /*
247 * If only an RX channel is specified, the driver will
248 * attempt to use it bidirectionally, however if it is
249 * is specified but cannot be located, DMA will be disabled.
250 */
251 if (plat->dma_rx_param) {
252 host->dma_rx_channel = dma_request_channel(mask,
253 plat->dma_filter,
254 plat->dma_rx_param);
255 /* E.g if no DMA hardware is present */
256 if (!host->dma_rx_channel)
257 dev_err(mmc_dev(host->mmc), "no RX DMA channel\n");
258 }
259
260 if (plat->dma_tx_param) {
261 host->dma_tx_channel = dma_request_channel(mask,
262 plat->dma_filter,
263 plat->dma_tx_param);
264 if (!host->dma_tx_channel)
265 dev_warn(mmc_dev(host->mmc), "no TX DMA channel\n");
266 } else {
267 host->dma_tx_channel = host->dma_rx_channel;
268 }
269
270 if (host->dma_rx_channel)
271 rxname = dma_chan_name(host->dma_rx_channel);
272 else
273 rxname = "none";
274
275 if (host->dma_tx_channel)
276 txname = dma_chan_name(host->dma_tx_channel);
277 else
278 txname = "none";
279
280 dev_info(mmc_dev(host->mmc), "DMA channels RX %s, TX %s\n",
281 rxname, txname);
282
283 /*
284 * Limit the maximum segment size in any SG entry according to
285 * the parameters of the DMA engine device.
286 */
287 if (host->dma_tx_channel) {
288 struct device *dev = host->dma_tx_channel->device->dev;
289 unsigned int max_seg_size = dma_get_max_seg_size(dev);
290
291 if (max_seg_size < host->mmc->max_seg_size)
292 host->mmc->max_seg_size = max_seg_size;
293 }
294 if (host->dma_rx_channel) {
295 struct device *dev = host->dma_rx_channel->device->dev;
296 unsigned int max_seg_size = dma_get_max_seg_size(dev);
297
298 if (max_seg_size < host->mmc->max_seg_size)
299 host->mmc->max_seg_size = max_seg_size;
300 }
301}
302
303/*
304 * This is used in __devinit or __devexit so inline it
305 * so it can be discarded.
306 */
307static inline void mmci_dma_release(struct mmci_host *host)
308{
309 struct mmci_platform_data *plat = host->plat;
310
311 if (host->dma_rx_channel)
312 dma_release_channel(host->dma_rx_channel);
313 if (host->dma_tx_channel && plat->dma_tx_param)
314 dma_release_channel(host->dma_tx_channel);
315 host->dma_rx_channel = host->dma_tx_channel = NULL;
316}
317
318static void mmci_dma_unmap(struct mmci_host *host, struct mmc_data *data)
319{
320 struct dma_chan *chan = host->dma_current;
321 enum dma_data_direction dir;
322 u32 status;
323 int i;
324
325 /* Wait up to 1ms for the DMA to complete */
326 for (i = 0; ; i++) {
327 status = readl(host->base + MMCISTATUS);
328 if (!(status & MCI_RXDATAAVLBLMASK) || i >= 100)
329 break;
330 udelay(10);
331 }
332
333 /*
334 * Check to see whether we still have some data left in the FIFO -
335 * this catches DMA controllers which are unable to monitor the
336 * DMALBREQ and DMALSREQ signals while allowing us to DMA to non-
337 * contiguous buffers. On TX, we'll get a FIFO underrun error.
338 */
339 if (status & MCI_RXDATAAVLBLMASK) {
340 dmaengine_terminate_all(chan);
341 if (!data->error)
342 data->error = -EIO;
343 }
344
345 if (data->flags & MMC_DATA_WRITE) {
346 dir = DMA_TO_DEVICE;
347 } else {
348 dir = DMA_FROM_DEVICE;
349 }
350
Per Forlin58c7ccb2011-07-01 18:55:24 +0200351 if (!data->host_cookie)
352 dma_unmap_sg(chan->device->dev, data->sg, data->sg_len, dir);
Russell Kingc8ebae32011-01-11 19:35:53 +0000353
354 /*
355 * Use of DMA with scatter-gather is impossible.
356 * Give up with DMA and switch back to PIO mode.
357 */
358 if (status & MCI_RXDATAAVLBLMASK) {
359 dev_err(mmc_dev(host->mmc), "buggy DMA detected. Taking evasive action.\n");
360 mmci_dma_release(host);
361 }
362}
363
364static void mmci_dma_data_error(struct mmci_host *host)
365{
366 dev_err(mmc_dev(host->mmc), "error during DMA transfer!\n");
367 dmaengine_terminate_all(host->dma_current);
368}
369
Per Forlin58c7ccb2011-07-01 18:55:24 +0200370static int mmci_dma_prep_data(struct mmci_host *host, struct mmc_data *data,
371 struct mmci_host_next *next)
Russell Kingc8ebae32011-01-11 19:35:53 +0000372{
373 struct variant_data *variant = host->variant;
374 struct dma_slave_config conf = {
375 .src_addr = host->phybase + MMCIFIFO,
376 .dst_addr = host->phybase + MMCIFIFO,
377 .src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES,
378 .dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES,
379 .src_maxburst = variant->fifohalfsize >> 2, /* # of words */
380 .dst_maxburst = variant->fifohalfsize >> 2, /* # of words */
381 };
Russell Kingc8ebae32011-01-11 19:35:53 +0000382 struct dma_chan *chan;
383 struct dma_device *device;
384 struct dma_async_tx_descriptor *desc;
Vinod Koul05f57992011-10-14 10:45:11 +0530385 enum dma_data_direction buffer_dirn;
Russell Kingc8ebae32011-01-11 19:35:53 +0000386 int nr_sg;
387
Per Forlin58c7ccb2011-07-01 18:55:24 +0200388 /* Check if next job is already prepared */
389 if (data->host_cookie && !next &&
390 host->dma_current && host->dma_desc_current)
391 return 0;
392
393 if (!next) {
394 host->dma_current = NULL;
395 host->dma_desc_current = NULL;
396 }
Russell Kingc8ebae32011-01-11 19:35:53 +0000397
398 if (data->flags & MMC_DATA_READ) {
Vinod Koul05f57992011-10-14 10:45:11 +0530399 conf.direction = DMA_DEV_TO_MEM;
400 buffer_dirn = DMA_FROM_DEVICE;
Russell Kingc8ebae32011-01-11 19:35:53 +0000401 chan = host->dma_rx_channel;
402 } else {
Vinod Koul05f57992011-10-14 10:45:11 +0530403 conf.direction = DMA_MEM_TO_DEV;
404 buffer_dirn = DMA_TO_DEVICE;
Russell Kingc8ebae32011-01-11 19:35:53 +0000405 chan = host->dma_tx_channel;
406 }
407
408 /* If there's no DMA channel, fall back to PIO */
409 if (!chan)
410 return -EINVAL;
411
412 /* If less than or equal to the fifo size, don't bother with DMA */
Per Forlin58c7ccb2011-07-01 18:55:24 +0200413 if (data->blksz * data->blocks <= variant->fifosize)
Russell Kingc8ebae32011-01-11 19:35:53 +0000414 return -EINVAL;
415
416 device = chan->device;
Vinod Koul05f57992011-10-14 10:45:11 +0530417 nr_sg = dma_map_sg(device->dev, data->sg, data->sg_len, buffer_dirn);
Russell Kingc8ebae32011-01-11 19:35:53 +0000418 if (nr_sg == 0)
419 return -EINVAL;
420
421 dmaengine_slave_config(chan, &conf);
422 desc = device->device_prep_slave_sg(chan, data->sg, nr_sg,
423 conf.direction, DMA_CTRL_ACK);
424 if (!desc)
425 goto unmap_exit;
426
Per Forlin58c7ccb2011-07-01 18:55:24 +0200427 if (next) {
428 next->dma_chan = chan;
429 next->dma_desc = desc;
430 } else {
431 host->dma_current = chan;
432 host->dma_desc_current = desc;
433 }
Russell Kingc8ebae32011-01-11 19:35:53 +0000434
Per Forlin58c7ccb2011-07-01 18:55:24 +0200435 return 0;
436
437 unmap_exit:
438 if (!next)
439 dmaengine_terminate_all(chan);
Vinod Koul05f57992011-10-14 10:45:11 +0530440 dma_unmap_sg(device->dev, data->sg, data->sg_len, buffer_dirn);
Per Forlin58c7ccb2011-07-01 18:55:24 +0200441 return -ENOMEM;
442}
443
444static int mmci_dma_start_data(struct mmci_host *host, unsigned int datactrl)
445{
446 int ret;
447 struct mmc_data *data = host->data;
448
449 ret = mmci_dma_prep_data(host, host->data, NULL);
450 if (ret)
451 return ret;
452
453 /* Okay, go for it. */
Russell Kingc8ebae32011-01-11 19:35:53 +0000454 dev_vdbg(mmc_dev(host->mmc),
455 "Submit MMCI DMA job, sglen %d blksz %04x blks %04x flags %08x\n",
456 data->sg_len, data->blksz, data->blocks, data->flags);
Per Forlin58c7ccb2011-07-01 18:55:24 +0200457 dmaengine_submit(host->dma_desc_current);
458 dma_async_issue_pending(host->dma_current);
Russell Kingc8ebae32011-01-11 19:35:53 +0000459
460 datactrl |= MCI_DPSM_DMAENABLE;
461
462 /* Trigger the DMA transfer */
463 writel(datactrl, host->base + MMCIDATACTRL);
464
465 /*
466 * Let the MMCI say when the data is ended and it's time
467 * to fire next DMA request. When that happens, MMCI will
468 * call mmci_data_end()
469 */
470 writel(readl(host->base + MMCIMASK0) | MCI_DATAENDMASK,
471 host->base + MMCIMASK0);
472 return 0;
Russell Kingc8ebae32011-01-11 19:35:53 +0000473}
Per Forlin58c7ccb2011-07-01 18:55:24 +0200474
475static void mmci_get_next_data(struct mmci_host *host, struct mmc_data *data)
476{
477 struct mmci_host_next *next = &host->next_data;
478
479 if (data->host_cookie && data->host_cookie != next->cookie) {
Girish K Sa3c76eb2011-10-11 11:44:09 +0530480 pr_warning("[%s] invalid cookie: data->host_cookie %d"
Per Forlin58c7ccb2011-07-01 18:55:24 +0200481 " host->next_data.cookie %d\n",
482 __func__, data->host_cookie, host->next_data.cookie);
483 data->host_cookie = 0;
484 }
485
486 if (!data->host_cookie)
487 return;
488
489 host->dma_desc_current = next->dma_desc;
490 host->dma_current = next->dma_chan;
491
492 next->dma_desc = NULL;
493 next->dma_chan = NULL;
494}
495
496static void mmci_pre_request(struct mmc_host *mmc, struct mmc_request *mrq,
497 bool is_first_req)
498{
499 struct mmci_host *host = mmc_priv(mmc);
500 struct mmc_data *data = mrq->data;
501 struct mmci_host_next *nd = &host->next_data;
502
503 if (!data)
504 return;
505
506 if (data->host_cookie) {
507 data->host_cookie = 0;
508 return;
509 }
510
511 /* if config for dma */
512 if (((data->flags & MMC_DATA_WRITE) && host->dma_tx_channel) ||
513 ((data->flags & MMC_DATA_READ) && host->dma_rx_channel)) {
514 if (mmci_dma_prep_data(host, data, nd))
515 data->host_cookie = 0;
516 else
517 data->host_cookie = ++nd->cookie < 0 ? 1 : nd->cookie;
518 }
519}
520
521static void mmci_post_request(struct mmc_host *mmc, struct mmc_request *mrq,
522 int err)
523{
524 struct mmci_host *host = mmc_priv(mmc);
525 struct mmc_data *data = mrq->data;
526 struct dma_chan *chan;
527 enum dma_data_direction dir;
528
529 if (!data)
530 return;
531
532 if (data->flags & MMC_DATA_READ) {
533 dir = DMA_FROM_DEVICE;
534 chan = host->dma_rx_channel;
535 } else {
536 dir = DMA_TO_DEVICE;
537 chan = host->dma_tx_channel;
538 }
539
540
541 /* if config for dma */
542 if (chan) {
543 if (err)
544 dmaengine_terminate_all(chan);
Per Forlin8e3336b2011-08-29 15:35:59 +0200545 if (data->host_cookie)
Per Forlin58c7ccb2011-07-01 18:55:24 +0200546 dma_unmap_sg(mmc_dev(host->mmc), data->sg,
547 data->sg_len, dir);
548 mrq->data->host_cookie = 0;
549 }
550}
551
Russell Kingc8ebae32011-01-11 19:35:53 +0000552#else
553/* Blank functions if the DMA engine is not available */
Per Forlin58c7ccb2011-07-01 18:55:24 +0200554static void mmci_get_next_data(struct mmci_host *host, struct mmc_data *data)
555{
556}
Russell Kingc8ebae32011-01-11 19:35:53 +0000557static inline void mmci_dma_setup(struct mmci_host *host)
558{
559}
560
561static inline void mmci_dma_release(struct mmci_host *host)
562{
563}
564
565static inline void mmci_dma_unmap(struct mmci_host *host, struct mmc_data *data)
566{
567}
568
569static inline void mmci_dma_data_error(struct mmci_host *host)
570{
571}
572
573static inline int mmci_dma_start_data(struct mmci_host *host, unsigned int datactrl)
574{
575 return -ENOSYS;
576}
Per Forlin58c7ccb2011-07-01 18:55:24 +0200577
578#define mmci_pre_request NULL
579#define mmci_post_request NULL
580
Russell Kingc8ebae32011-01-11 19:35:53 +0000581#endif
582
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583static void mmci_start_data(struct mmci_host *host, struct mmc_data *data)
584{
Rabin Vincent8301bb62010-08-09 12:57:30 +0100585 struct variant_data *variant = host->variant;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 unsigned int datactrl, timeout, irqmask;
Russell King7b09cda2005-07-01 12:02:59 +0100587 unsigned long long clks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 void __iomem *base;
Russell King3bc87f22006-08-27 13:51:28 +0100589 int blksz_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
Linus Walleij64de0282010-02-19 01:09:10 +0100591 dev_dbg(mmc_dev(host->mmc), "blksz %04x blks %04x flags %08x\n",
592 data->blksz, data->blocks, data->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
594 host->data = data;
Rabin Vincent528320d2010-07-21 12:49:49 +0100595 host->size = data->blksz * data->blocks;
Russell King51d43752011-01-27 10:56:52 +0000596 data->bytes_xfered = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
Russell King7b09cda2005-07-01 12:02:59 +0100598 clks = (unsigned long long)data->timeout_ns * host->cclk;
599 do_div(clks, 1000000000UL);
600
601 timeout = data->timeout_clks + (unsigned int)clks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
603 base = host->base;
604 writel(timeout, base + MMCIDATATIMER);
605 writel(host->size, base + MMCIDATALENGTH);
606
Russell King3bc87f22006-08-27 13:51:28 +0100607 blksz_bits = ffs(data->blksz) - 1;
608 BUG_ON(1 << blksz_bits != data->blksz);
609
Philippe Langlais1784b152011-03-25 08:51:52 +0100610 if (variant->blksz_datactrl16)
611 datactrl = MCI_DPSM_ENABLE | (data->blksz << 16);
612 else
613 datactrl = MCI_DPSM_ENABLE | blksz_bits << 4;
Russell Kingc8ebae32011-01-11 19:35:53 +0000614
615 if (data->flags & MMC_DATA_READ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 datactrl |= MCI_DPSM_DIRECTION;
Russell Kingc8ebae32011-01-11 19:35:53 +0000617
Ulf Hansson7258db72011-12-13 17:05:28 +0100618 /* The ST Micro variants has a special bit to enable SDIO */
619 if (variant->sdio && host->mmc->card)
620 if (mmc_card_sdio(host->mmc->card))
621 datactrl |= MCI_ST_DPSM_SDIOEN;
622
Russell Kingc8ebae32011-01-11 19:35:53 +0000623 /*
624 * Attempt to use DMA operation mode, if this
625 * should fail, fall back to PIO mode
626 */
627 if (!mmci_dma_start_data(host, datactrl))
628 return;
629
630 /* IRQ mode, map the SG list for CPU reading/writing */
631 mmci_init_sg(host, data);
632
633 if (data->flags & MMC_DATA_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 irqmask = MCI_RXFIFOHALFFULLMASK;
Russell King0425a142006-02-16 16:48:31 +0000635
636 /*
Russell Kingc4d877c2011-01-27 09:50:13 +0000637 * If we have less than the fifo 'half-full' threshold to
638 * transfer, trigger a PIO interrupt as soon as any data
639 * is available.
Russell King0425a142006-02-16 16:48:31 +0000640 */
Russell Kingc4d877c2011-01-27 09:50:13 +0000641 if (host->size < variant->fifohalfsize)
Russell King0425a142006-02-16 16:48:31 +0000642 irqmask |= MCI_RXDATAAVLBLMASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 } else {
644 /*
645 * We don't actually need to include "FIFO empty" here
646 * since its implicit in "FIFO half empty".
647 */
648 irqmask = MCI_TXFIFOHALFEMPTYMASK;
649 }
650
651 writel(datactrl, base + MMCIDATACTRL);
652 writel(readl(base + MMCIMASK0) & ~MCI_DATAENDMASK, base + MMCIMASK0);
Linus Walleij2686b4b2010-10-19 12:39:48 +0100653 mmci_set_mask1(host, irqmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654}
655
656static void
657mmci_start_command(struct mmci_host *host, struct mmc_command *cmd, u32 c)
658{
659 void __iomem *base = host->base;
660
Linus Walleij64de0282010-02-19 01:09:10 +0100661 dev_dbg(mmc_dev(host->mmc), "op %02x arg %08x flags %08x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 cmd->opcode, cmd->arg, cmd->flags);
663
664 if (readl(base + MMCICOMMAND) & MCI_CPSM_ENABLE) {
665 writel(0, base + MMCICOMMAND);
666 udelay(1);
667 }
668
669 c |= cmd->opcode | MCI_CPSM_ENABLE;
Russell Kinge9225172006-02-02 12:23:12 +0000670 if (cmd->flags & MMC_RSP_PRESENT) {
671 if (cmd->flags & MMC_RSP_136)
672 c |= MCI_CPSM_LONGRSP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 c |= MCI_CPSM_RESPONSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 }
675 if (/*interrupt*/0)
676 c |= MCI_CPSM_INTERRUPT;
677
678 host->cmd = cmd;
679
680 writel(cmd->arg, base + MMCIARGUMENT);
681 writel(c, base + MMCICOMMAND);
682}
683
684static void
685mmci_data_irq(struct mmci_host *host, struct mmc_data *data,
686 unsigned int status)
687{
Linus Walleijf20f8f22010-10-19 13:41:24 +0100688 /* First check for errors */
Ulf Hanssonb63038d2011-12-13 16:51:04 +0100689 if (status & (MCI_DATACRCFAIL|MCI_DATATIMEOUT|MCI_STARTBITERR|
690 MCI_TXUNDERRUN|MCI_RXOVERRUN)) {
Linus Walleij8cb28152011-01-24 15:22:13 +0100691 u32 remain, success;
Linus Walleijf20f8f22010-10-19 13:41:24 +0100692
Russell Kingc8ebae32011-01-11 19:35:53 +0000693 /* Terminate the DMA transfer */
694 if (dma_inprogress(host))
695 mmci_dma_data_error(host);
696
Russell Kingc8afc9d2011-02-04 09:19:46 +0000697 /*
698 * Calculate how far we are into the transfer. Note that
699 * the data counter gives the number of bytes transferred
700 * on the MMC bus, not on the host side. On reads, this
701 * can be as much as a FIFO-worth of data ahead. This
702 * matters for FIFO overruns only.
703 */
Linus Walleijf5a106d2011-01-27 17:44:34 +0100704 remain = readl(host->base + MMCIDATACNT);
Linus Walleij8cb28152011-01-24 15:22:13 +0100705 success = data->blksz * data->blocks - remain;
706
Russell Kingc8afc9d2011-02-04 09:19:46 +0000707 dev_dbg(mmc_dev(host->mmc), "MCI ERROR IRQ, status 0x%08x at 0x%08x\n",
708 status, success);
Linus Walleij8cb28152011-01-24 15:22:13 +0100709 if (status & MCI_DATACRCFAIL) {
710 /* Last block was not successful */
Russell Kingc8afc9d2011-02-04 09:19:46 +0000711 success -= 1;
Pierre Ossman17b04292007-07-22 22:18:46 +0200712 data->error = -EILSEQ;
Linus Walleij8cb28152011-01-24 15:22:13 +0100713 } else if (status & MCI_DATATIMEOUT) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200714 data->error = -ETIMEDOUT;
Linus Walleij757df742011-06-30 15:10:21 +0100715 } else if (status & MCI_STARTBITERR) {
716 data->error = -ECOMM;
Russell Kingc8afc9d2011-02-04 09:19:46 +0000717 } else if (status & MCI_TXUNDERRUN) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200718 data->error = -EIO;
Russell Kingc8afc9d2011-02-04 09:19:46 +0000719 } else if (status & MCI_RXOVERRUN) {
720 if (success > host->variant->fifosize)
721 success -= host->variant->fifosize;
722 else
723 success = 0;
Linus Walleij8cb28152011-01-24 15:22:13 +0100724 data->error = -EIO;
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100725 }
Russell King51d43752011-01-27 10:56:52 +0000726 data->bytes_xfered = round_down(success, data->blksz);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 }
Linus Walleijf20f8f22010-10-19 13:41:24 +0100728
Linus Walleij8cb28152011-01-24 15:22:13 +0100729 if (status & MCI_DATABLOCKEND)
730 dev_err(mmc_dev(host->mmc), "stray MCI_DATABLOCKEND interrupt\n");
Linus Walleijf20f8f22010-10-19 13:41:24 +0100731
Russell Kingccff9b52011-01-30 21:03:50 +0000732 if (status & MCI_DATAEND || data->error) {
Russell Kingc8ebae32011-01-11 19:35:53 +0000733 if (dma_inprogress(host))
734 mmci_dma_unmap(host, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 mmci_stop_data(host);
736
Linus Walleij8cb28152011-01-24 15:22:13 +0100737 if (!data->error)
738 /* The error clause is handled above, success! */
Russell King51d43752011-01-27 10:56:52 +0000739 data->bytes_xfered = data->blksz * data->blocks;
Linus Walleijf20f8f22010-10-19 13:41:24 +0100740
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 if (!data->stop) {
742 mmci_request_end(host, data->mrq);
743 } else {
744 mmci_start_command(host, data->stop, 0);
745 }
746 }
747}
748
749static void
750mmci_cmd_irq(struct mmci_host *host, struct mmc_command *cmd,
751 unsigned int status)
752{
753 void __iomem *base = host->base;
754
755 host->cmd = NULL;
756
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 if (status & MCI_CMDTIMEOUT) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200758 cmd->error = -ETIMEDOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 } else if (status & MCI_CMDCRCFAIL && cmd->flags & MMC_RSP_CRC) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200760 cmd->error = -EILSEQ;
Russell King - ARM Linux9047b432011-01-11 16:35:56 +0000761 } else {
762 cmd->resp[0] = readl(base + MMCIRESPONSE0);
763 cmd->resp[1] = readl(base + MMCIRESPONSE1);
764 cmd->resp[2] = readl(base + MMCIRESPONSE2);
765 cmd->resp[3] = readl(base + MMCIRESPONSE3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 }
767
Pierre Ossman17b04292007-07-22 22:18:46 +0200768 if (!cmd->data || cmd->error) {
Ulf Hansson3b6e3c72011-12-13 16:58:43 +0100769 if (host->data) {
770 /* Terminate the DMA transfer */
771 if (dma_inprogress(host))
772 mmci_dma_data_error(host);
Russell Kinge47c2222007-01-08 16:42:51 +0000773 mmci_stop_data(host);
Ulf Hansson3b6e3c72011-12-13 16:58:43 +0100774 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 mmci_request_end(host, cmd->mrq);
776 } else if (!(cmd->data->flags & MMC_DATA_READ)) {
777 mmci_start_data(host, cmd->data);
778 }
779}
780
781static int mmci_pio_read(struct mmci_host *host, char *buffer, unsigned int remain)
782{
783 void __iomem *base = host->base;
784 char *ptr = buffer;
785 u32 status;
Linus Walleij26eed9a2008-04-26 23:39:44 +0100786 int host_remain = host->size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
788 do {
Linus Walleij26eed9a2008-04-26 23:39:44 +0100789 int count = host_remain - (readl(base + MMCIFIFOCNT) << 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
791 if (count > remain)
792 count = remain;
793
794 if (count <= 0)
795 break;
796
Ulf Hansson393e5e22011-12-13 17:08:04 +0100797 /*
798 * SDIO especially may want to send something that is
799 * not divisible by 4 (as opposed to card sectors
800 * etc). Therefore make sure to always read the last bytes
801 * while only doing full 32-bit reads towards the FIFO.
802 */
803 if (unlikely(count & 0x3)) {
804 if (count < 4) {
805 unsigned char buf[4];
806 readsl(base + MMCIFIFO, buf, 1);
807 memcpy(ptr, buf, count);
808 } else {
809 readsl(base + MMCIFIFO, ptr, count >> 2);
810 count &= ~0x3;
811 }
812 } else {
813 readsl(base + MMCIFIFO, ptr, count >> 2);
814 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
816 ptr += count;
817 remain -= count;
Linus Walleij26eed9a2008-04-26 23:39:44 +0100818 host_remain -= count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
820 if (remain == 0)
821 break;
822
823 status = readl(base + MMCISTATUS);
824 } while (status & MCI_RXDATAAVLBL);
825
826 return ptr - buffer;
827}
828
829static int mmci_pio_write(struct mmci_host *host, char *buffer, unsigned int remain, u32 status)
830{
Rabin Vincent8301bb62010-08-09 12:57:30 +0100831 struct variant_data *variant = host->variant;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 void __iomem *base = host->base;
833 char *ptr = buffer;
834
835 do {
836 unsigned int count, maxcnt;
837
Rabin Vincent8301bb62010-08-09 12:57:30 +0100838 maxcnt = status & MCI_TXFIFOEMPTY ?
839 variant->fifosize : variant->fifohalfsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 count = min(remain, maxcnt);
841
Linus Walleij34177802010-10-19 12:43:58 +0100842 /*
843 * The ST Micro variant for SDIO transfer sizes
844 * less then 8 bytes should have clock H/W flow
845 * control disabled.
846 */
847 if (variant->sdio &&
848 mmc_card_sdio(host->mmc->card)) {
849 if (count < 8)
850 writel(readl(host->base + MMCICLOCK) &
851 ~variant->clkreg_enable,
852 host->base + MMCICLOCK);
853 else
854 writel(readl(host->base + MMCICLOCK) |
855 variant->clkreg_enable,
856 host->base + MMCICLOCK);
857 }
858
859 /*
860 * SDIO especially may want to send something that is
861 * not divisible by 4 (as opposed to card sectors
862 * etc), and the FIFO only accept full 32-bit writes.
863 * So compensate by adding +3 on the count, a single
864 * byte become a 32bit write, 7 bytes will be two
865 * 32bit writes etc.
866 */
867 writesl(base + MMCIFIFO, ptr, (count + 3) >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
869 ptr += count;
870 remain -= count;
871
872 if (remain == 0)
873 break;
874
875 status = readl(base + MMCISTATUS);
876 } while (status & MCI_TXFIFOHALFEMPTY);
877
878 return ptr - buffer;
879}
880
881/*
882 * PIO data transfer IRQ handler.
883 */
David Howells7d12e782006-10-05 14:55:46 +0100884static irqreturn_t mmci_pio_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885{
886 struct mmci_host *host = dev_id;
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100887 struct sg_mapping_iter *sg_miter = &host->sg_miter;
Rabin Vincent8301bb62010-08-09 12:57:30 +0100888 struct variant_data *variant = host->variant;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 void __iomem *base = host->base;
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100890 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 u32 status;
892
893 status = readl(base + MMCISTATUS);
894
Linus Walleij64de0282010-02-19 01:09:10 +0100895 dev_dbg(mmc_dev(host->mmc), "irq1 (pio) %08x\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100897 local_irq_save(flags);
898
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 unsigned int remain, len;
901 char *buffer;
902
903 /*
904 * For write, we only need to test the half-empty flag
905 * here - if the FIFO is completely empty, then by
906 * definition it is more than half empty.
907 *
908 * For read, check for data available.
909 */
910 if (!(status & (MCI_TXFIFOHALFEMPTY|MCI_RXDATAAVLBL)))
911 break;
912
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100913 if (!sg_miter_next(sg_miter))
914 break;
915
916 buffer = sg_miter->addr;
917 remain = sg_miter->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
919 len = 0;
920 if (status & MCI_RXACTIVE)
921 len = mmci_pio_read(host, buffer, remain);
922 if (status & MCI_TXACTIVE)
923 len = mmci_pio_write(host, buffer, remain, status);
924
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100925 sg_miter->consumed = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 host->size -= len;
928 remain -= len;
929
930 if (remain)
931 break;
932
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 status = readl(base + MMCISTATUS);
934 } while (1);
935
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100936 sg_miter_stop(sg_miter);
937
938 local_irq_restore(flags);
939
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 /*
Russell Kingc4d877c2011-01-27 09:50:13 +0000941 * If we have less than the fifo 'half-full' threshold to transfer,
942 * trigger a PIO interrupt as soon as any data is available.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 */
Russell Kingc4d877c2011-01-27 09:50:13 +0000944 if (status & MCI_RXACTIVE && host->size < variant->fifohalfsize)
Linus Walleij2686b4b2010-10-19 12:39:48 +0100945 mmci_set_mask1(host, MCI_RXDATAAVLBLMASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
947 /*
948 * If we run out of data, disable the data IRQs; this
949 * prevents a race where the FIFO becomes empty before
950 * the chip itself has disabled the data path, and
951 * stops us racing with our data end IRQ.
952 */
953 if (host->size == 0) {
Linus Walleij2686b4b2010-10-19 12:39:48 +0100954 mmci_set_mask1(host, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 writel(readl(base + MMCIMASK0) | MCI_DATAENDMASK, base + MMCIMASK0);
956 }
957
958 return IRQ_HANDLED;
959}
960
961/*
962 * Handle completion of command and data transfers.
963 */
David Howells7d12e782006-10-05 14:55:46 +0100964static irqreturn_t mmci_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965{
966 struct mmci_host *host = dev_id;
967 u32 status;
968 int ret = 0;
969
970 spin_lock(&host->lock);
971
972 do {
973 struct mmc_command *cmd;
974 struct mmc_data *data;
975
976 status = readl(host->base + MMCISTATUS);
Linus Walleij2686b4b2010-10-19 12:39:48 +0100977
978 if (host->singleirq) {
979 if (status & readl(host->base + MMCIMASK1))
980 mmci_pio_irq(irq, dev_id);
981
982 status &= ~MCI_IRQ1MASK;
983 }
984
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 status &= readl(host->base + MMCIMASK0);
986 writel(status, host->base + MMCICLEAR);
987
Linus Walleij64de0282010-02-19 01:09:10 +0100988 dev_dbg(mmc_dev(host->mmc), "irq0 (data+cmd) %08x\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
990 data = host->data;
Ulf Hanssonb63038d2011-12-13 16:51:04 +0100991 if (status & (MCI_DATACRCFAIL|MCI_DATATIMEOUT|MCI_STARTBITERR|
992 MCI_TXUNDERRUN|MCI_RXOVERRUN|MCI_DATAEND|
993 MCI_DATABLOCKEND) && data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 mmci_data_irq(host, data, status);
995
996 cmd = host->cmd;
997 if (status & (MCI_CMDCRCFAIL|MCI_CMDTIMEOUT|MCI_CMDSENT|MCI_CMDRESPEND) && cmd)
998 mmci_cmd_irq(host, cmd, status);
999
1000 ret = 1;
1001 } while (status);
1002
1003 spin_unlock(&host->lock);
1004
1005 return IRQ_RETVAL(ret);
1006}
1007
1008static void mmci_request(struct mmc_host *mmc, struct mmc_request *mrq)
1009{
1010 struct mmci_host *host = mmc_priv(mmc);
Linus Walleij9e943022008-10-24 21:17:50 +01001011 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
1013 WARN_ON(host->mrq != NULL);
1014
Nicolas Pitre019a5f52007-10-11 01:06:03 -04001015 if (mrq->data && !is_power_of_2(mrq->data->blksz)) {
Linus Walleij64de0282010-02-19 01:09:10 +01001016 dev_err(mmc_dev(mmc), "unsupported block size (%d bytes)\n",
1017 mrq->data->blksz);
Pierre Ossman255d01a2007-07-24 20:38:53 +02001018 mrq->cmd->error = -EINVAL;
1019 mmc_request_done(mmc, mrq);
1020 return;
1021 }
1022
Russell King1c3be362011-08-14 09:17:05 +01001023 pm_runtime_get_sync(mmc_dev(mmc));
1024
Linus Walleij9e943022008-10-24 21:17:50 +01001025 spin_lock_irqsave(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026
1027 host->mrq = mrq;
1028
Per Forlin58c7ccb2011-07-01 18:55:24 +02001029 if (mrq->data)
1030 mmci_get_next_data(host, mrq->data);
1031
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 if (mrq->data && mrq->data->flags & MMC_DATA_READ)
1033 mmci_start_data(host, mrq->data);
1034
1035 mmci_start_command(host, mrq->cmd, 0);
1036
Linus Walleij9e943022008-10-24 21:17:50 +01001037 spin_unlock_irqrestore(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038}
1039
1040static void mmci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
1041{
1042 struct mmci_host *host = mmc_priv(mmc);
Ulf Hansson7d72a1d2011-12-13 16:54:55 +01001043 struct variant_data *variant = host->variant;
Linus Walleija6a64642009-09-14 12:56:14 +01001044 u32 pwr = 0;
1045 unsigned long flags;
Linus Walleij99fc5132010-09-29 01:08:27 -04001046 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001048 pm_runtime_get_sync(mmc_dev(mmc));
1049
Ulf Hanssonbc521812011-12-13 16:57:55 +01001050 if (host->plat->ios_handler &&
1051 host->plat->ios_handler(mmc_dev(mmc), ios))
1052 dev_err(mmc_dev(mmc), "platform ios_handler failed\n");
1053
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 switch (ios->power_mode) {
1055 case MMC_POWER_OFF:
Linus Walleij99fc5132010-09-29 01:08:27 -04001056 if (host->vcc)
1057 ret = mmc_regulator_set_ocr(mmc, host->vcc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 break;
1059 case MMC_POWER_UP:
Linus Walleij99fc5132010-09-29 01:08:27 -04001060 if (host->vcc) {
1061 ret = mmc_regulator_set_ocr(mmc, host->vcc, ios->vdd);
1062 if (ret) {
1063 dev_err(mmc_dev(mmc), "unable to set OCR\n");
1064 /*
1065 * The .set_ios() function in the mmc_host_ops
1066 * struct return void, and failing to set the
1067 * power should be rare so we print an error
1068 * and return here.
1069 */
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001070 goto out;
Linus Walleij99fc5132010-09-29 01:08:27 -04001071 }
1072 }
Ulf Hansson7d72a1d2011-12-13 16:54:55 +01001073 /*
1074 * The ST Micro variant doesn't have the PL180s MCI_PWR_UP
1075 * and instead uses MCI_PWR_ON so apply whatever value is
1076 * configured in the variant data.
1077 */
1078 pwr |= variant->pwrreg_powerup;
1079
1080 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 case MMC_POWER_ON:
1082 pwr |= MCI_PWR_ON;
1083 break;
1084 }
1085
Ulf Hansson4d1a3a02011-12-13 16:57:07 +01001086 if (variant->signal_direction && ios->power_mode != MMC_POWER_OFF) {
1087 /*
1088 * The ST Micro variant has some additional bits
1089 * indicating signal direction for the signals in
1090 * the SD/MMC bus and feedback-clock usage.
1091 */
1092 pwr |= host->plat->sigdir;
1093
1094 if (ios->bus_width == MMC_BUS_WIDTH_4)
1095 pwr &= ~MCI_ST_DATA74DIREN;
1096 else if (ios->bus_width == MMC_BUS_WIDTH_1)
1097 pwr &= (~MCI_ST_DATA74DIREN &
1098 ~MCI_ST_DATA31DIREN &
1099 ~MCI_ST_DATA2DIREN);
1100 }
1101
Linus Walleijcc30d602009-01-04 15:18:54 +01001102 if (ios->bus_mode == MMC_BUSMODE_OPENDRAIN) {
Linus Walleijf17a1f02009-08-04 01:01:02 +01001103 if (host->hw_designer != AMBA_VENDOR_ST)
Linus Walleijcc30d602009-01-04 15:18:54 +01001104 pwr |= MCI_ROD;
1105 else {
1106 /*
1107 * The ST Micro variant use the ROD bit for something
1108 * else and only has OD (Open Drain).
1109 */
1110 pwr |= MCI_OD;
1111 }
1112 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113
Linus Walleija6a64642009-09-14 12:56:14 +01001114 spin_lock_irqsave(&host->lock, flags);
1115
1116 mmci_set_clkreg(host, ios->clock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117
1118 if (host->pwr != pwr) {
1119 host->pwr = pwr;
1120 writel(pwr, host->base + MMCIPOWER);
1121 }
Linus Walleija6a64642009-09-14 12:56:14 +01001122
1123 spin_unlock_irqrestore(&host->lock, flags);
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001124
1125 out:
1126 pm_runtime_mark_last_busy(mmc_dev(mmc));
1127 pm_runtime_put_autosuspend(mmc_dev(mmc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128}
1129
Russell King89001442009-07-09 15:16:07 +01001130static int mmci_get_ro(struct mmc_host *mmc)
1131{
1132 struct mmci_host *host = mmc_priv(mmc);
1133
1134 if (host->gpio_wp == -ENOSYS)
1135 return -ENOSYS;
1136
Linus Walleij18a063012010-09-12 12:56:44 +01001137 return gpio_get_value_cansleep(host->gpio_wp);
Russell King89001442009-07-09 15:16:07 +01001138}
1139
1140static int mmci_get_cd(struct mmc_host *mmc)
1141{
1142 struct mmci_host *host = mmc_priv(mmc);
Rabin Vincent29719442010-08-09 12:54:43 +01001143 struct mmci_platform_data *plat = host->plat;
Russell King89001442009-07-09 15:16:07 +01001144 unsigned int status;
1145
Rabin Vincent4b8caec2010-08-09 12:56:40 +01001146 if (host->gpio_cd == -ENOSYS) {
1147 if (!plat->status)
1148 return 1; /* Assume always present */
1149
Rabin Vincent29719442010-08-09 12:54:43 +01001150 status = plat->status(mmc_dev(host->mmc));
Rabin Vincent4b8caec2010-08-09 12:56:40 +01001151 } else
Linus Walleij18a063012010-09-12 12:56:44 +01001152 status = !!gpio_get_value_cansleep(host->gpio_cd)
1153 ^ plat->cd_invert;
Russell King89001442009-07-09 15:16:07 +01001154
Russell King74bc8092010-07-29 15:58:59 +01001155 /*
1156 * Use positive logic throughout - status is zero for no card,
1157 * non-zero for card inserted.
1158 */
1159 return status;
Russell King89001442009-07-09 15:16:07 +01001160}
1161
Rabin Vincent148b8b32010-08-09 12:55:48 +01001162static irqreturn_t mmci_cd_irq(int irq, void *dev_id)
1163{
1164 struct mmci_host *host = dev_id;
1165
1166 mmc_detect_change(host->mmc, msecs_to_jiffies(500));
1167
1168 return IRQ_HANDLED;
1169}
1170
David Brownellab7aefd2006-11-12 17:55:30 -08001171static const struct mmc_host_ops mmci_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 .request = mmci_request,
Per Forlin58c7ccb2011-07-01 18:55:24 +02001173 .pre_req = mmci_pre_request,
1174 .post_req = mmci_post_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 .set_ios = mmci_set_ios,
Russell King89001442009-07-09 15:16:07 +01001176 .get_ro = mmci_get_ro,
1177 .get_cd = mmci_get_cd,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178};
1179
Russell Kingaa25afa2011-02-19 15:55:00 +00001180static int __devinit mmci_probe(struct amba_device *dev,
1181 const struct amba_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182{
Linus Walleij6ef297f2009-09-22 14:29:36 +01001183 struct mmci_platform_data *plat = dev->dev.platform_data;
Rabin Vincent4956e102010-07-21 12:54:40 +01001184 struct variant_data *variant = id->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 struct mmci_host *host;
1186 struct mmc_host *mmc;
1187 int ret;
1188
1189 /* must have platform data */
1190 if (!plat) {
1191 ret = -EINVAL;
1192 goto out;
1193 }
1194
1195 ret = amba_request_regions(dev, DRIVER_NAME);
1196 if (ret)
1197 goto out;
1198
1199 mmc = mmc_alloc_host(sizeof(struct mmci_host), &dev->dev);
1200 if (!mmc) {
1201 ret = -ENOMEM;
1202 goto rel_regions;
1203 }
1204
1205 host = mmc_priv(mmc);
Rabin Vincent4ea580f2009-04-17 08:44:19 +05301206 host->mmc = mmc;
Russell King012b7d32009-07-09 15:13:56 +01001207
Russell King89001442009-07-09 15:16:07 +01001208 host->gpio_wp = -ENOSYS;
1209 host->gpio_cd = -ENOSYS;
Rabin Vincent148b8b32010-08-09 12:55:48 +01001210 host->gpio_cd_irq = -1;
Russell King89001442009-07-09 15:16:07 +01001211
Russell King012b7d32009-07-09 15:13:56 +01001212 host->hw_designer = amba_manf(dev);
1213 host->hw_revision = amba_rev(dev);
Linus Walleij64de0282010-02-19 01:09:10 +01001214 dev_dbg(mmc_dev(mmc), "designer ID = 0x%02x\n", host->hw_designer);
1215 dev_dbg(mmc_dev(mmc), "revision = 0x%01x\n", host->hw_revision);
Russell King012b7d32009-07-09 15:13:56 +01001216
Russell Kingee569c42008-11-30 17:38:14 +00001217 host->clk = clk_get(&dev->dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 if (IS_ERR(host->clk)) {
1219 ret = PTR_ERR(host->clk);
1220 host->clk = NULL;
1221 goto host_free;
1222 }
1223
Russell King52ca0f32011-09-22 11:36:41 +01001224 ret = clk_prepare(host->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 if (ret)
Russell Kinga8d35842006-01-03 18:41:37 +00001226 goto clk_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
Russell King52ca0f32011-09-22 11:36:41 +01001228 ret = clk_enable(host->clk);
1229 if (ret)
1230 goto clk_unprep;
1231
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 host->plat = plat;
Rabin Vincent4956e102010-07-21 12:54:40 +01001233 host->variant = variant;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 host->mclk = clk_get_rate(host->clk);
Linus Walleijc8df9a52008-04-29 09:34:07 +01001235 /*
1236 * According to the spec, mclk is max 100 MHz,
1237 * so we try to adjust the clock down to this,
1238 * (if possible).
1239 */
1240 if (host->mclk > 100000000) {
1241 ret = clk_set_rate(host->clk, 100000000);
1242 if (ret < 0)
1243 goto clk_disable;
1244 host->mclk = clk_get_rate(host->clk);
Linus Walleij64de0282010-02-19 01:09:10 +01001245 dev_dbg(mmc_dev(mmc), "eventual mclk rate: %u Hz\n",
1246 host->mclk);
Linus Walleijc8df9a52008-04-29 09:34:07 +01001247 }
Russell Kingc8ebae32011-01-11 19:35:53 +00001248 host->phybase = dev->res.start;
Linus Walleijdc890c22009-06-07 23:27:31 +01001249 host->base = ioremap(dev->res.start, resource_size(&dev->res));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 if (!host->base) {
1251 ret = -ENOMEM;
1252 goto clk_disable;
1253 }
1254
1255 mmc->ops = &mmci_ops;
Linus Walleij7f294e42011-07-08 09:57:15 +01001256 /*
1257 * The ARM and ST versions of the block have slightly different
1258 * clock divider equations which means that the minimum divider
1259 * differs too.
1260 */
1261 if (variant->st_clkdiv)
1262 mmc->f_min = DIV_ROUND_UP(host->mclk, 257);
1263 else
1264 mmc->f_min = DIV_ROUND_UP(host->mclk, 512);
Linus Walleij808d97c2010-04-08 07:39:38 +01001265 /*
1266 * If the platform data supplies a maximum operating
1267 * frequency, this takes precedence. Else, we fall back
1268 * to using the module parameter, which has a (low)
1269 * default value in case it is not specified. Either
1270 * value must not exceed the clock rate into the block,
1271 * of course.
1272 */
1273 if (plat->f_max)
1274 mmc->f_max = min(host->mclk, plat->f_max);
1275 else
1276 mmc->f_max = min(host->mclk, fmax);
Linus Walleij64de0282010-02-19 01:09:10 +01001277 dev_dbg(mmc_dev(mmc), "clocking block at %u Hz\n", mmc->f_max);
1278
Linus Walleij34e84f32009-09-22 14:41:40 +01001279#ifdef CONFIG_REGULATOR
1280 /* If we're using the regulator framework, try to fetch a regulator */
1281 host->vcc = regulator_get(&dev->dev, "vmmc");
1282 if (IS_ERR(host->vcc))
1283 host->vcc = NULL;
1284 else {
1285 int mask = mmc_regulator_get_ocrmask(host->vcc);
1286
1287 if (mask < 0)
1288 dev_err(&dev->dev, "error getting OCR mask (%d)\n",
1289 mask);
1290 else {
1291 host->mmc->ocr_avail = (u32) mask;
1292 if (plat->ocr_mask)
1293 dev_warn(&dev->dev,
1294 "Provided ocr_mask/setpower will not be used "
1295 "(using regulator instead)\n");
1296 }
1297 }
1298#endif
1299 /* Fall back to platform data if no regulator is found */
1300 if (host->vcc == NULL)
1301 mmc->ocr_avail = plat->ocr_mask;
Linus Walleij9e6c82c2009-09-14 12:57:11 +01001302 mmc->caps = plat->capabilities;
Per Forlin5a092622011-11-14 12:02:28 +01001303 mmc->caps2 = plat->capabilities2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
1305 /*
1306 * We can do SGIO
1307 */
Martin K. Petersena36274e2010-09-10 01:33:59 -04001308 mmc->max_segs = NR_SG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309
1310 /*
Rabin Vincent08458ef2010-07-21 12:55:59 +01001311 * Since only a certain number of bits are valid in the data length
1312 * register, we must ensure that we don't exceed 2^num-1 bytes in a
1313 * single request.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 */
Rabin Vincent08458ef2010-07-21 12:55:59 +01001315 mmc->max_req_size = (1 << variant->datalength_bits) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
1317 /*
1318 * Set the maximum segment size. Since we aren't doing DMA
1319 * (yet) we are only limited by the data length register.
1320 */
Pierre Ossman55db8902006-11-21 17:55:45 +01001321 mmc->max_seg_size = mmc->max_req_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +01001323 /*
1324 * Block size can be up to 2048 bytes, but must be a power of two.
1325 */
1326 mmc->max_blk_size = 2048;
1327
Pierre Ossman55db8902006-11-21 17:55:45 +01001328 /*
1329 * No limit on the number of blocks transferred.
1330 */
1331 mmc->max_blk_count = mmc->max_req_size;
1332
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 spin_lock_init(&host->lock);
1334
1335 writel(0, host->base + MMCIMASK0);
1336 writel(0, host->base + MMCIMASK1);
1337 writel(0xfff, host->base + MMCICLEAR);
1338
Russell King89001442009-07-09 15:16:07 +01001339 if (gpio_is_valid(plat->gpio_cd)) {
1340 ret = gpio_request(plat->gpio_cd, DRIVER_NAME " (cd)");
1341 if (ret == 0)
1342 ret = gpio_direction_input(plat->gpio_cd);
1343 if (ret == 0)
1344 host->gpio_cd = plat->gpio_cd;
1345 else if (ret != -ENOSYS)
1346 goto err_gpio_cd;
Rabin Vincent148b8b32010-08-09 12:55:48 +01001347
Linus Walleij17ee0832011-05-05 17:23:10 +01001348 /*
1349 * A gpio pin that will detect cards when inserted and removed
1350 * will most likely want to trigger on the edges if it is
1351 * 0 when ejected and 1 when inserted (or mutatis mutandis
1352 * for the inverted case) so we request triggers on both
1353 * edges.
1354 */
Rabin Vincent148b8b32010-08-09 12:55:48 +01001355 ret = request_any_context_irq(gpio_to_irq(plat->gpio_cd),
Linus Walleij17ee0832011-05-05 17:23:10 +01001356 mmci_cd_irq,
1357 IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING,
1358 DRIVER_NAME " (cd)", host);
Rabin Vincent148b8b32010-08-09 12:55:48 +01001359 if (ret >= 0)
1360 host->gpio_cd_irq = gpio_to_irq(plat->gpio_cd);
Russell King89001442009-07-09 15:16:07 +01001361 }
1362 if (gpio_is_valid(plat->gpio_wp)) {
1363 ret = gpio_request(plat->gpio_wp, DRIVER_NAME " (wp)");
1364 if (ret == 0)
1365 ret = gpio_direction_input(plat->gpio_wp);
1366 if (ret == 0)
1367 host->gpio_wp = plat->gpio_wp;
1368 else if (ret != -ENOSYS)
1369 goto err_gpio_wp;
1370 }
1371
Rabin Vincent4b8caec2010-08-09 12:56:40 +01001372 if ((host->plat->status || host->gpio_cd != -ENOSYS)
1373 && host->gpio_cd_irq < 0)
Rabin Vincent148b8b32010-08-09 12:55:48 +01001374 mmc->caps |= MMC_CAP_NEEDS_POLL;
1375
Thomas Gleixnerdace1452006-07-01 19:29:38 -07001376 ret = request_irq(dev->irq[0], mmci_irq, IRQF_SHARED, DRIVER_NAME " (cmd)", host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 if (ret)
1378 goto unmap;
1379
Linus Walleij2686b4b2010-10-19 12:39:48 +01001380 if (dev->irq[1] == NO_IRQ)
1381 host->singleirq = true;
1382 else {
1383 ret = request_irq(dev->irq[1], mmci_pio_irq, IRQF_SHARED,
1384 DRIVER_NAME " (pio)", host);
1385 if (ret)
1386 goto irq0_free;
1387 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388
Linus Walleij8cb28152011-01-24 15:22:13 +01001389 writel(MCI_IRQENABLE, host->base + MMCIMASK0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
1391 amba_set_drvdata(dev, mmc);
1392
Russell Kingc8ebae32011-01-11 19:35:53 +00001393 dev_info(&dev->dev, "%s: PL%03x manf %x rev%u at 0x%08llx irq %d,%d (pio)\n",
1394 mmc_hostname(mmc), amba_part(dev), amba_manf(dev),
1395 amba_rev(dev), (unsigned long long)dev->res.start,
1396 dev->irq[0], dev->irq[1]);
1397
1398 mmci_dma_setup(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001400 pm_runtime_set_autosuspend_delay(&dev->dev, 50);
1401 pm_runtime_use_autosuspend(&dev->dev);
Russell King1c3be362011-08-14 09:17:05 +01001402 pm_runtime_put(&dev->dev);
1403
Russell King8c11a942010-12-28 19:40:40 +00001404 mmc_add_host(mmc);
1405
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 return 0;
1407
1408 irq0_free:
1409 free_irq(dev->irq[0], host);
1410 unmap:
Russell King89001442009-07-09 15:16:07 +01001411 if (host->gpio_wp != -ENOSYS)
1412 gpio_free(host->gpio_wp);
1413 err_gpio_wp:
Rabin Vincent148b8b32010-08-09 12:55:48 +01001414 if (host->gpio_cd_irq >= 0)
1415 free_irq(host->gpio_cd_irq, host);
Russell King89001442009-07-09 15:16:07 +01001416 if (host->gpio_cd != -ENOSYS)
1417 gpio_free(host->gpio_cd);
1418 err_gpio_cd:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 iounmap(host->base);
1420 clk_disable:
1421 clk_disable(host->clk);
Russell King52ca0f32011-09-22 11:36:41 +01001422 clk_unprep:
1423 clk_unprepare(host->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 clk_free:
1425 clk_put(host->clk);
1426 host_free:
1427 mmc_free_host(mmc);
1428 rel_regions:
1429 amba_release_regions(dev);
1430 out:
1431 return ret;
1432}
1433
Linus Walleij6dc4a472009-03-07 00:23:52 +01001434static int __devexit mmci_remove(struct amba_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435{
1436 struct mmc_host *mmc = amba_get_drvdata(dev);
1437
1438 amba_set_drvdata(dev, NULL);
1439
1440 if (mmc) {
1441 struct mmci_host *host = mmc_priv(mmc);
1442
Russell King1c3be362011-08-14 09:17:05 +01001443 /*
1444 * Undo pm_runtime_put() in probe. We use the _sync
1445 * version here so that we can access the primecell.
1446 */
1447 pm_runtime_get_sync(&dev->dev);
1448
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 mmc_remove_host(mmc);
1450
1451 writel(0, host->base + MMCIMASK0);
1452 writel(0, host->base + MMCIMASK1);
1453
1454 writel(0, host->base + MMCICOMMAND);
1455 writel(0, host->base + MMCIDATACTRL);
1456
Russell Kingc8ebae32011-01-11 19:35:53 +00001457 mmci_dma_release(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 free_irq(dev->irq[0], host);
Linus Walleij2686b4b2010-10-19 12:39:48 +01001459 if (!host->singleirq)
1460 free_irq(dev->irq[1], host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461
Russell King89001442009-07-09 15:16:07 +01001462 if (host->gpio_wp != -ENOSYS)
1463 gpio_free(host->gpio_wp);
Rabin Vincent148b8b32010-08-09 12:55:48 +01001464 if (host->gpio_cd_irq >= 0)
1465 free_irq(host->gpio_cd_irq, host);
Russell King89001442009-07-09 15:16:07 +01001466 if (host->gpio_cd != -ENOSYS)
1467 gpio_free(host->gpio_cd);
1468
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 iounmap(host->base);
1470 clk_disable(host->clk);
Russell King52ca0f32011-09-22 11:36:41 +01001471 clk_unprepare(host->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 clk_put(host->clk);
1473
Linus Walleij99fc5132010-09-29 01:08:27 -04001474 if (host->vcc)
1475 mmc_regulator_set_ocr(mmc, host->vcc, 0);
Linus Walleij34e84f32009-09-22 14:41:40 +01001476 regulator_put(host->vcc);
1477
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 mmc_free_host(mmc);
1479
1480 amba_release_regions(dev);
1481 }
1482
1483 return 0;
1484}
1485
Ulf Hansson48fa7002011-12-13 16:59:34 +01001486#ifdef CONFIG_SUSPEND
1487static int mmci_suspend(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488{
Ulf Hansson48fa7002011-12-13 16:59:34 +01001489 struct amba_device *adev = to_amba_device(dev);
1490 struct mmc_host *mmc = amba_get_drvdata(adev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 int ret = 0;
1492
1493 if (mmc) {
1494 struct mmci_host *host = mmc_priv(mmc);
1495
Matt Fleming1a13f8f2010-05-26 14:42:08 -07001496 ret = mmc_suspend_host(mmc);
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001497 if (ret == 0) {
1498 pm_runtime_get_sync(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 writel(0, host->base + MMCIMASK0);
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001500 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 }
1502
1503 return ret;
1504}
1505
Ulf Hansson48fa7002011-12-13 16:59:34 +01001506static int mmci_resume(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507{
Ulf Hansson48fa7002011-12-13 16:59:34 +01001508 struct amba_device *adev = to_amba_device(dev);
1509 struct mmc_host *mmc = amba_get_drvdata(adev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 int ret = 0;
1511
1512 if (mmc) {
1513 struct mmci_host *host = mmc_priv(mmc);
1514
1515 writel(MCI_IRQENABLE, host->base + MMCIMASK0);
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001516 pm_runtime_put(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517
1518 ret = mmc_resume_host(mmc);
1519 }
1520
1521 return ret;
1522}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523#endif
1524
Ulf Hansson48fa7002011-12-13 16:59:34 +01001525static const struct dev_pm_ops mmci_dev_pm_ops = {
1526 SET_SYSTEM_SLEEP_PM_OPS(mmci_suspend, mmci_resume)
1527};
1528
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529static struct amba_id mmci_ids[] = {
1530 {
1531 .id = 0x00041180,
Pawel Moll768fbc12011-03-11 17:18:07 +00001532 .mask = 0xff0fffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001533 .data = &variant_arm,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 },
1535 {
Pawel Moll768fbc12011-03-11 17:18:07 +00001536 .id = 0x01041180,
1537 .mask = 0xff0fffff,
1538 .data = &variant_arm_extended_fifo,
1539 },
1540 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 .id = 0x00041181,
1542 .mask = 0x000fffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001543 .data = &variant_arm,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 },
Linus Walleijcc30d602009-01-04 15:18:54 +01001545 /* ST Micro variants */
1546 {
1547 .id = 0x00180180,
1548 .mask = 0x00ffffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001549 .data = &variant_u300,
Linus Walleijcc30d602009-01-04 15:18:54 +01001550 },
1551 {
1552 .id = 0x00280180,
1553 .mask = 0x00ffffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001554 .data = &variant_u300,
1555 },
1556 {
1557 .id = 0x00480180,
Philippe Langlais1784b152011-03-25 08:51:52 +01001558 .mask = 0xf0ffffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001559 .data = &variant_ux500,
Linus Walleijcc30d602009-01-04 15:18:54 +01001560 },
Philippe Langlais1784b152011-03-25 08:51:52 +01001561 {
1562 .id = 0x10480180,
1563 .mask = 0xf0ffffff,
1564 .data = &variant_ux500v2,
1565 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 { 0, 0 },
1567};
1568
Dave Martin9f998352011-10-05 15:15:21 +01001569MODULE_DEVICE_TABLE(amba, mmci_ids);
1570
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571static struct amba_driver mmci_driver = {
1572 .drv = {
1573 .name = DRIVER_NAME,
Ulf Hansson48fa7002011-12-13 16:59:34 +01001574 .pm = &mmci_dev_pm_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 },
1576 .probe = mmci_probe,
Linus Walleij6dc4a472009-03-07 00:23:52 +01001577 .remove = __devexit_p(mmci_remove),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 .id_table = mmci_ids,
1579};
1580
1581static int __init mmci_init(void)
1582{
1583 return amba_driver_register(&mmci_driver);
1584}
1585
1586static void __exit mmci_exit(void)
1587{
1588 amba_driver_unregister(&mmci_driver);
1589}
1590
1591module_init(mmci_init);
1592module_exit(mmci_exit);
1593module_param(fmax, uint, 0444);
1594
1595MODULE_DESCRIPTION("ARM PrimeCell PL180/181 Multimedia Card Interface driver");
1596MODULE_LICENSE("GPL");