blob: 6a21fc0bf3d86487b0d006ef11f86359afd7d477 [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
618 /*
619 * Attempt to use DMA operation mode, if this
620 * should fail, fall back to PIO mode
621 */
622 if (!mmci_dma_start_data(host, datactrl))
623 return;
624
625 /* IRQ mode, map the SG list for CPU reading/writing */
626 mmci_init_sg(host, data);
627
628 if (data->flags & MMC_DATA_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 irqmask = MCI_RXFIFOHALFFULLMASK;
Russell King0425a142006-02-16 16:48:31 +0000630
631 /*
Russell Kingc4d877c2011-01-27 09:50:13 +0000632 * If we have less than the fifo 'half-full' threshold to
633 * transfer, trigger a PIO interrupt as soon as any data
634 * is available.
Russell King0425a142006-02-16 16:48:31 +0000635 */
Russell Kingc4d877c2011-01-27 09:50:13 +0000636 if (host->size < variant->fifohalfsize)
Russell King0425a142006-02-16 16:48:31 +0000637 irqmask |= MCI_RXDATAAVLBLMASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 } else {
639 /*
640 * We don't actually need to include "FIFO empty" here
641 * since its implicit in "FIFO half empty".
642 */
643 irqmask = MCI_TXFIFOHALFEMPTYMASK;
644 }
645
Linus Walleij34177802010-10-19 12:43:58 +0100646 /* The ST Micro variants has a special bit to enable SDIO */
647 if (variant->sdio && host->mmc->card)
648 if (mmc_card_sdio(host->mmc->card))
649 datactrl |= MCI_ST_DPSM_SDIOEN;
650
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 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
797 readsl(base + MMCIFIFO, ptr, count >> 2);
798
799 ptr += count;
800 remain -= count;
Linus Walleij26eed9a2008-04-26 23:39:44 +0100801 host_remain -= count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
803 if (remain == 0)
804 break;
805
806 status = readl(base + MMCISTATUS);
807 } while (status & MCI_RXDATAAVLBL);
808
809 return ptr - buffer;
810}
811
812static int mmci_pio_write(struct mmci_host *host, char *buffer, unsigned int remain, u32 status)
813{
Rabin Vincent8301bb62010-08-09 12:57:30 +0100814 struct variant_data *variant = host->variant;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 void __iomem *base = host->base;
816 char *ptr = buffer;
817
818 do {
819 unsigned int count, maxcnt;
820
Rabin Vincent8301bb62010-08-09 12:57:30 +0100821 maxcnt = status & MCI_TXFIFOEMPTY ?
822 variant->fifosize : variant->fifohalfsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 count = min(remain, maxcnt);
824
Linus Walleij34177802010-10-19 12:43:58 +0100825 /*
826 * The ST Micro variant for SDIO transfer sizes
827 * less then 8 bytes should have clock H/W flow
828 * control disabled.
829 */
830 if (variant->sdio &&
831 mmc_card_sdio(host->mmc->card)) {
832 if (count < 8)
833 writel(readl(host->base + MMCICLOCK) &
834 ~variant->clkreg_enable,
835 host->base + MMCICLOCK);
836 else
837 writel(readl(host->base + MMCICLOCK) |
838 variant->clkreg_enable,
839 host->base + MMCICLOCK);
840 }
841
842 /*
843 * SDIO especially may want to send something that is
844 * not divisible by 4 (as opposed to card sectors
845 * etc), and the FIFO only accept full 32-bit writes.
846 * So compensate by adding +3 on the count, a single
847 * byte become a 32bit write, 7 bytes will be two
848 * 32bit writes etc.
849 */
850 writesl(base + MMCIFIFO, ptr, (count + 3) >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
852 ptr += count;
853 remain -= count;
854
855 if (remain == 0)
856 break;
857
858 status = readl(base + MMCISTATUS);
859 } while (status & MCI_TXFIFOHALFEMPTY);
860
861 return ptr - buffer;
862}
863
864/*
865 * PIO data transfer IRQ handler.
866 */
David Howells7d12e782006-10-05 14:55:46 +0100867static irqreturn_t mmci_pio_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868{
869 struct mmci_host *host = dev_id;
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100870 struct sg_mapping_iter *sg_miter = &host->sg_miter;
Rabin Vincent8301bb62010-08-09 12:57:30 +0100871 struct variant_data *variant = host->variant;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 void __iomem *base = host->base;
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100873 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 u32 status;
875
876 status = readl(base + MMCISTATUS);
877
Linus Walleij64de0282010-02-19 01:09:10 +0100878 dev_dbg(mmc_dev(host->mmc), "irq1 (pio) %08x\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100880 local_irq_save(flags);
881
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 unsigned int remain, len;
884 char *buffer;
885
886 /*
887 * For write, we only need to test the half-empty flag
888 * here - if the FIFO is completely empty, then by
889 * definition it is more than half empty.
890 *
891 * For read, check for data available.
892 */
893 if (!(status & (MCI_TXFIFOHALFEMPTY|MCI_RXDATAAVLBL)))
894 break;
895
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100896 if (!sg_miter_next(sg_miter))
897 break;
898
899 buffer = sg_miter->addr;
900 remain = sg_miter->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
902 len = 0;
903 if (status & MCI_RXACTIVE)
904 len = mmci_pio_read(host, buffer, remain);
905 if (status & MCI_TXACTIVE)
906 len = mmci_pio_write(host, buffer, remain, status);
907
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100908 sg_miter->consumed = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 host->size -= len;
911 remain -= len;
912
913 if (remain)
914 break;
915
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 status = readl(base + MMCISTATUS);
917 } while (1);
918
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100919 sg_miter_stop(sg_miter);
920
921 local_irq_restore(flags);
922
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 /*
Russell Kingc4d877c2011-01-27 09:50:13 +0000924 * If we have less than the fifo 'half-full' threshold to transfer,
925 * trigger a PIO interrupt as soon as any data is available.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 */
Russell Kingc4d877c2011-01-27 09:50:13 +0000927 if (status & MCI_RXACTIVE && host->size < variant->fifohalfsize)
Linus Walleij2686b4b2010-10-19 12:39:48 +0100928 mmci_set_mask1(host, MCI_RXDATAAVLBLMASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
930 /*
931 * If we run out of data, disable the data IRQs; this
932 * prevents a race where the FIFO becomes empty before
933 * the chip itself has disabled the data path, and
934 * stops us racing with our data end IRQ.
935 */
936 if (host->size == 0) {
Linus Walleij2686b4b2010-10-19 12:39:48 +0100937 mmci_set_mask1(host, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 writel(readl(base + MMCIMASK0) | MCI_DATAENDMASK, base + MMCIMASK0);
939 }
940
941 return IRQ_HANDLED;
942}
943
944/*
945 * Handle completion of command and data transfers.
946 */
David Howells7d12e782006-10-05 14:55:46 +0100947static irqreturn_t mmci_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948{
949 struct mmci_host *host = dev_id;
950 u32 status;
951 int ret = 0;
952
953 spin_lock(&host->lock);
954
955 do {
956 struct mmc_command *cmd;
957 struct mmc_data *data;
958
959 status = readl(host->base + MMCISTATUS);
Linus Walleij2686b4b2010-10-19 12:39:48 +0100960
961 if (host->singleirq) {
962 if (status & readl(host->base + MMCIMASK1))
963 mmci_pio_irq(irq, dev_id);
964
965 status &= ~MCI_IRQ1MASK;
966 }
967
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 status &= readl(host->base + MMCIMASK0);
969 writel(status, host->base + MMCICLEAR);
970
Linus Walleij64de0282010-02-19 01:09:10 +0100971 dev_dbg(mmc_dev(host->mmc), "irq0 (data+cmd) %08x\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972
973 data = host->data;
Ulf Hanssonb63038d2011-12-13 16:51:04 +0100974 if (status & (MCI_DATACRCFAIL|MCI_DATATIMEOUT|MCI_STARTBITERR|
975 MCI_TXUNDERRUN|MCI_RXOVERRUN|MCI_DATAEND|
976 MCI_DATABLOCKEND) && data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 mmci_data_irq(host, data, status);
978
979 cmd = host->cmd;
980 if (status & (MCI_CMDCRCFAIL|MCI_CMDTIMEOUT|MCI_CMDSENT|MCI_CMDRESPEND) && cmd)
981 mmci_cmd_irq(host, cmd, status);
982
983 ret = 1;
984 } while (status);
985
986 spin_unlock(&host->lock);
987
988 return IRQ_RETVAL(ret);
989}
990
991static void mmci_request(struct mmc_host *mmc, struct mmc_request *mrq)
992{
993 struct mmci_host *host = mmc_priv(mmc);
Linus Walleij9e943022008-10-24 21:17:50 +0100994 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
996 WARN_ON(host->mrq != NULL);
997
Nicolas Pitre019a5f52007-10-11 01:06:03 -0400998 if (mrq->data && !is_power_of_2(mrq->data->blksz)) {
Linus Walleij64de0282010-02-19 01:09:10 +0100999 dev_err(mmc_dev(mmc), "unsupported block size (%d bytes)\n",
1000 mrq->data->blksz);
Pierre Ossman255d01a2007-07-24 20:38:53 +02001001 mrq->cmd->error = -EINVAL;
1002 mmc_request_done(mmc, mrq);
1003 return;
1004 }
1005
Russell King1c3be362011-08-14 09:17:05 +01001006 pm_runtime_get_sync(mmc_dev(mmc));
1007
Linus Walleij9e943022008-10-24 21:17:50 +01001008 spin_lock_irqsave(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009
1010 host->mrq = mrq;
1011
Per Forlin58c7ccb2011-07-01 18:55:24 +02001012 if (mrq->data)
1013 mmci_get_next_data(host, mrq->data);
1014
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 if (mrq->data && mrq->data->flags & MMC_DATA_READ)
1016 mmci_start_data(host, mrq->data);
1017
1018 mmci_start_command(host, mrq->cmd, 0);
1019
Linus Walleij9e943022008-10-24 21:17:50 +01001020 spin_unlock_irqrestore(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021}
1022
1023static void mmci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
1024{
1025 struct mmci_host *host = mmc_priv(mmc);
Ulf Hansson7d72a1d2011-12-13 16:54:55 +01001026 struct variant_data *variant = host->variant;
Linus Walleija6a64642009-09-14 12:56:14 +01001027 u32 pwr = 0;
1028 unsigned long flags;
Linus Walleij99fc5132010-09-29 01:08:27 -04001029 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001031 pm_runtime_get_sync(mmc_dev(mmc));
1032
Ulf Hanssonbc521812011-12-13 16:57:55 +01001033 if (host->plat->ios_handler &&
1034 host->plat->ios_handler(mmc_dev(mmc), ios))
1035 dev_err(mmc_dev(mmc), "platform ios_handler failed\n");
1036
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 switch (ios->power_mode) {
1038 case MMC_POWER_OFF:
Linus Walleij99fc5132010-09-29 01:08:27 -04001039 if (host->vcc)
1040 ret = mmc_regulator_set_ocr(mmc, host->vcc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 break;
1042 case MMC_POWER_UP:
Linus Walleij99fc5132010-09-29 01:08:27 -04001043 if (host->vcc) {
1044 ret = mmc_regulator_set_ocr(mmc, host->vcc, ios->vdd);
1045 if (ret) {
1046 dev_err(mmc_dev(mmc), "unable to set OCR\n");
1047 /*
1048 * The .set_ios() function in the mmc_host_ops
1049 * struct return void, and failing to set the
1050 * power should be rare so we print an error
1051 * and return here.
1052 */
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001053 goto out;
Linus Walleij99fc5132010-09-29 01:08:27 -04001054 }
1055 }
Ulf Hansson7d72a1d2011-12-13 16:54:55 +01001056 /*
1057 * The ST Micro variant doesn't have the PL180s MCI_PWR_UP
1058 * and instead uses MCI_PWR_ON so apply whatever value is
1059 * configured in the variant data.
1060 */
1061 pwr |= variant->pwrreg_powerup;
1062
1063 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 case MMC_POWER_ON:
1065 pwr |= MCI_PWR_ON;
1066 break;
1067 }
1068
Ulf Hansson4d1a3a02011-12-13 16:57:07 +01001069 if (variant->signal_direction && ios->power_mode != MMC_POWER_OFF) {
1070 /*
1071 * The ST Micro variant has some additional bits
1072 * indicating signal direction for the signals in
1073 * the SD/MMC bus and feedback-clock usage.
1074 */
1075 pwr |= host->plat->sigdir;
1076
1077 if (ios->bus_width == MMC_BUS_WIDTH_4)
1078 pwr &= ~MCI_ST_DATA74DIREN;
1079 else if (ios->bus_width == MMC_BUS_WIDTH_1)
1080 pwr &= (~MCI_ST_DATA74DIREN &
1081 ~MCI_ST_DATA31DIREN &
1082 ~MCI_ST_DATA2DIREN);
1083 }
1084
Linus Walleijcc30d602009-01-04 15:18:54 +01001085 if (ios->bus_mode == MMC_BUSMODE_OPENDRAIN) {
Linus Walleijf17a1f02009-08-04 01:01:02 +01001086 if (host->hw_designer != AMBA_VENDOR_ST)
Linus Walleijcc30d602009-01-04 15:18:54 +01001087 pwr |= MCI_ROD;
1088 else {
1089 /*
1090 * The ST Micro variant use the ROD bit for something
1091 * else and only has OD (Open Drain).
1092 */
1093 pwr |= MCI_OD;
1094 }
1095 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
Linus Walleija6a64642009-09-14 12:56:14 +01001097 spin_lock_irqsave(&host->lock, flags);
1098
1099 mmci_set_clkreg(host, ios->clock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100
1101 if (host->pwr != pwr) {
1102 host->pwr = pwr;
1103 writel(pwr, host->base + MMCIPOWER);
1104 }
Linus Walleija6a64642009-09-14 12:56:14 +01001105
1106 spin_unlock_irqrestore(&host->lock, flags);
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001107
1108 out:
1109 pm_runtime_mark_last_busy(mmc_dev(mmc));
1110 pm_runtime_put_autosuspend(mmc_dev(mmc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111}
1112
Russell King89001442009-07-09 15:16:07 +01001113static int mmci_get_ro(struct mmc_host *mmc)
1114{
1115 struct mmci_host *host = mmc_priv(mmc);
1116
1117 if (host->gpio_wp == -ENOSYS)
1118 return -ENOSYS;
1119
Linus Walleij18a06302010-09-12 12:56:44 +01001120 return gpio_get_value_cansleep(host->gpio_wp);
Russell King89001442009-07-09 15:16:07 +01001121}
1122
1123static int mmci_get_cd(struct mmc_host *mmc)
1124{
1125 struct mmci_host *host = mmc_priv(mmc);
Rabin Vincent29719442010-08-09 12:54:43 +01001126 struct mmci_platform_data *plat = host->plat;
Russell King89001442009-07-09 15:16:07 +01001127 unsigned int status;
1128
Rabin Vincent4b8caec2010-08-09 12:56:40 +01001129 if (host->gpio_cd == -ENOSYS) {
1130 if (!plat->status)
1131 return 1; /* Assume always present */
1132
Rabin Vincent29719442010-08-09 12:54:43 +01001133 status = plat->status(mmc_dev(host->mmc));
Rabin Vincent4b8caec2010-08-09 12:56:40 +01001134 } else
Linus Walleij18a06302010-09-12 12:56:44 +01001135 status = !!gpio_get_value_cansleep(host->gpio_cd)
1136 ^ plat->cd_invert;
Russell King89001442009-07-09 15:16:07 +01001137
Russell King74bc8092010-07-29 15:58:59 +01001138 /*
1139 * Use positive logic throughout - status is zero for no card,
1140 * non-zero for card inserted.
1141 */
1142 return status;
Russell King89001442009-07-09 15:16:07 +01001143}
1144
Rabin Vincent148b8b32010-08-09 12:55:48 +01001145static irqreturn_t mmci_cd_irq(int irq, void *dev_id)
1146{
1147 struct mmci_host *host = dev_id;
1148
1149 mmc_detect_change(host->mmc, msecs_to_jiffies(500));
1150
1151 return IRQ_HANDLED;
1152}
1153
David Brownellab7aefd2006-11-12 17:55:30 -08001154static const struct mmc_host_ops mmci_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 .request = mmci_request,
Per Forlin58c7ccb2011-07-01 18:55:24 +02001156 .pre_req = mmci_pre_request,
1157 .post_req = mmci_post_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 .set_ios = mmci_set_ios,
Russell King89001442009-07-09 15:16:07 +01001159 .get_ro = mmci_get_ro,
1160 .get_cd = mmci_get_cd,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161};
1162
Russell Kingaa25afa2011-02-19 15:55:00 +00001163static int __devinit mmci_probe(struct amba_device *dev,
1164 const struct amba_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165{
Linus Walleij6ef297f2009-09-22 14:29:36 +01001166 struct mmci_platform_data *plat = dev->dev.platform_data;
Rabin Vincent4956e102010-07-21 12:54:40 +01001167 struct variant_data *variant = id->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 struct mmci_host *host;
1169 struct mmc_host *mmc;
1170 int ret;
1171
1172 /* must have platform data */
1173 if (!plat) {
1174 ret = -EINVAL;
1175 goto out;
1176 }
1177
1178 ret = amba_request_regions(dev, DRIVER_NAME);
1179 if (ret)
1180 goto out;
1181
1182 mmc = mmc_alloc_host(sizeof(struct mmci_host), &dev->dev);
1183 if (!mmc) {
1184 ret = -ENOMEM;
1185 goto rel_regions;
1186 }
1187
1188 host = mmc_priv(mmc);
Rabin Vincent4ea580f2009-04-17 08:44:19 +05301189 host->mmc = mmc;
Russell King012b7d32009-07-09 15:13:56 +01001190
Russell King89001442009-07-09 15:16:07 +01001191 host->gpio_wp = -ENOSYS;
1192 host->gpio_cd = -ENOSYS;
Rabin Vincent148b8b32010-08-09 12:55:48 +01001193 host->gpio_cd_irq = -1;
Russell King89001442009-07-09 15:16:07 +01001194
Russell King012b7d32009-07-09 15:13:56 +01001195 host->hw_designer = amba_manf(dev);
1196 host->hw_revision = amba_rev(dev);
Linus Walleij64de0282010-02-19 01:09:10 +01001197 dev_dbg(mmc_dev(mmc), "designer ID = 0x%02x\n", host->hw_designer);
1198 dev_dbg(mmc_dev(mmc), "revision = 0x%01x\n", host->hw_revision);
Russell King012b7d32009-07-09 15:13:56 +01001199
Russell Kingee569c42008-11-30 17:38:14 +00001200 host->clk = clk_get(&dev->dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 if (IS_ERR(host->clk)) {
1202 ret = PTR_ERR(host->clk);
1203 host->clk = NULL;
1204 goto host_free;
1205 }
1206
Russell King52ca0f32011-09-22 11:36:41 +01001207 ret = clk_prepare(host->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 if (ret)
Russell Kinga8d35842006-01-03 18:41:37 +00001209 goto clk_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210
Russell King52ca0f32011-09-22 11:36:41 +01001211 ret = clk_enable(host->clk);
1212 if (ret)
1213 goto clk_unprep;
1214
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 host->plat = plat;
Rabin Vincent4956e102010-07-21 12:54:40 +01001216 host->variant = variant;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 host->mclk = clk_get_rate(host->clk);
Linus Walleijc8df9a52008-04-29 09:34:07 +01001218 /*
1219 * According to the spec, mclk is max 100 MHz,
1220 * so we try to adjust the clock down to this,
1221 * (if possible).
1222 */
1223 if (host->mclk > 100000000) {
1224 ret = clk_set_rate(host->clk, 100000000);
1225 if (ret < 0)
1226 goto clk_disable;
1227 host->mclk = clk_get_rate(host->clk);
Linus Walleij64de0282010-02-19 01:09:10 +01001228 dev_dbg(mmc_dev(mmc), "eventual mclk rate: %u Hz\n",
1229 host->mclk);
Linus Walleijc8df9a52008-04-29 09:34:07 +01001230 }
Russell Kingc8ebae32011-01-11 19:35:53 +00001231 host->phybase = dev->res.start;
Linus Walleijdc890c22009-06-07 23:27:31 +01001232 host->base = ioremap(dev->res.start, resource_size(&dev->res));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 if (!host->base) {
1234 ret = -ENOMEM;
1235 goto clk_disable;
1236 }
1237
1238 mmc->ops = &mmci_ops;
Linus Walleij7f294e42011-07-08 09:57:15 +01001239 /*
1240 * The ARM and ST versions of the block have slightly different
1241 * clock divider equations which means that the minimum divider
1242 * differs too.
1243 */
1244 if (variant->st_clkdiv)
1245 mmc->f_min = DIV_ROUND_UP(host->mclk, 257);
1246 else
1247 mmc->f_min = DIV_ROUND_UP(host->mclk, 512);
Linus Walleij808d97c2010-04-08 07:39:38 +01001248 /*
1249 * If the platform data supplies a maximum operating
1250 * frequency, this takes precedence. Else, we fall back
1251 * to using the module parameter, which has a (low)
1252 * default value in case it is not specified. Either
1253 * value must not exceed the clock rate into the block,
1254 * of course.
1255 */
1256 if (plat->f_max)
1257 mmc->f_max = min(host->mclk, plat->f_max);
1258 else
1259 mmc->f_max = min(host->mclk, fmax);
Linus Walleij64de0282010-02-19 01:09:10 +01001260 dev_dbg(mmc_dev(mmc), "clocking block at %u Hz\n", mmc->f_max);
1261
Linus Walleij34e84f32009-09-22 14:41:40 +01001262#ifdef CONFIG_REGULATOR
1263 /* If we're using the regulator framework, try to fetch a regulator */
1264 host->vcc = regulator_get(&dev->dev, "vmmc");
1265 if (IS_ERR(host->vcc))
1266 host->vcc = NULL;
1267 else {
1268 int mask = mmc_regulator_get_ocrmask(host->vcc);
1269
1270 if (mask < 0)
1271 dev_err(&dev->dev, "error getting OCR mask (%d)\n",
1272 mask);
1273 else {
1274 host->mmc->ocr_avail = (u32) mask;
1275 if (plat->ocr_mask)
1276 dev_warn(&dev->dev,
1277 "Provided ocr_mask/setpower will not be used "
1278 "(using regulator instead)\n");
1279 }
1280 }
1281#endif
1282 /* Fall back to platform data if no regulator is found */
1283 if (host->vcc == NULL)
1284 mmc->ocr_avail = plat->ocr_mask;
Linus Walleij9e6c82c2009-09-14 12:57:11 +01001285 mmc->caps = plat->capabilities;
Per Forlin5a092622011-11-14 12:02:28 +01001286 mmc->caps2 = plat->capabilities2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287
1288 /*
1289 * We can do SGIO
1290 */
Martin K. Petersena36274e2010-09-10 01:33:59 -04001291 mmc->max_segs = NR_SG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292
1293 /*
Rabin Vincent08458ef2010-07-21 12:55:59 +01001294 * Since only a certain number of bits are valid in the data length
1295 * register, we must ensure that we don't exceed 2^num-1 bytes in a
1296 * single request.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 */
Rabin Vincent08458ef2010-07-21 12:55:59 +01001298 mmc->max_req_size = (1 << variant->datalength_bits) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
1300 /*
1301 * Set the maximum segment size. Since we aren't doing DMA
1302 * (yet) we are only limited by the data length register.
1303 */
Pierre Ossman55db8902006-11-21 17:55:45 +01001304 mmc->max_seg_size = mmc->max_req_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +01001306 /*
1307 * Block size can be up to 2048 bytes, but must be a power of two.
1308 */
1309 mmc->max_blk_size = 2048;
1310
Pierre Ossman55db8902006-11-21 17:55:45 +01001311 /*
1312 * No limit on the number of blocks transferred.
1313 */
1314 mmc->max_blk_count = mmc->max_req_size;
1315
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 spin_lock_init(&host->lock);
1317
1318 writel(0, host->base + MMCIMASK0);
1319 writel(0, host->base + MMCIMASK1);
1320 writel(0xfff, host->base + MMCICLEAR);
1321
Russell King89001442009-07-09 15:16:07 +01001322 if (gpio_is_valid(plat->gpio_cd)) {
1323 ret = gpio_request(plat->gpio_cd, DRIVER_NAME " (cd)");
1324 if (ret == 0)
1325 ret = gpio_direction_input(plat->gpio_cd);
1326 if (ret == 0)
1327 host->gpio_cd = plat->gpio_cd;
1328 else if (ret != -ENOSYS)
1329 goto err_gpio_cd;
Rabin Vincent148b8b32010-08-09 12:55:48 +01001330
Linus Walleij17ee0832011-05-05 17:23:10 +01001331 /*
1332 * A gpio pin that will detect cards when inserted and removed
1333 * will most likely want to trigger on the edges if it is
1334 * 0 when ejected and 1 when inserted (or mutatis mutandis
1335 * for the inverted case) so we request triggers on both
1336 * edges.
1337 */
Rabin Vincent148b8b32010-08-09 12:55:48 +01001338 ret = request_any_context_irq(gpio_to_irq(plat->gpio_cd),
Linus Walleij17ee0832011-05-05 17:23:10 +01001339 mmci_cd_irq,
1340 IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING,
1341 DRIVER_NAME " (cd)", host);
Rabin Vincent148b8b32010-08-09 12:55:48 +01001342 if (ret >= 0)
1343 host->gpio_cd_irq = gpio_to_irq(plat->gpio_cd);
Russell King89001442009-07-09 15:16:07 +01001344 }
1345 if (gpio_is_valid(plat->gpio_wp)) {
1346 ret = gpio_request(plat->gpio_wp, DRIVER_NAME " (wp)");
1347 if (ret == 0)
1348 ret = gpio_direction_input(plat->gpio_wp);
1349 if (ret == 0)
1350 host->gpio_wp = plat->gpio_wp;
1351 else if (ret != -ENOSYS)
1352 goto err_gpio_wp;
1353 }
1354
Rabin Vincent4b8caec2010-08-09 12:56:40 +01001355 if ((host->plat->status || host->gpio_cd != -ENOSYS)
1356 && host->gpio_cd_irq < 0)
Rabin Vincent148b8b32010-08-09 12:55:48 +01001357 mmc->caps |= MMC_CAP_NEEDS_POLL;
1358
Thomas Gleixnerdace1452006-07-01 19:29:38 -07001359 ret = request_irq(dev->irq[0], mmci_irq, IRQF_SHARED, DRIVER_NAME " (cmd)", host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 if (ret)
1361 goto unmap;
1362
Linus Walleij2686b4b2010-10-19 12:39:48 +01001363 if (dev->irq[1] == NO_IRQ)
1364 host->singleirq = true;
1365 else {
1366 ret = request_irq(dev->irq[1], mmci_pio_irq, IRQF_SHARED,
1367 DRIVER_NAME " (pio)", host);
1368 if (ret)
1369 goto irq0_free;
1370 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371
Linus Walleij8cb28152011-01-24 15:22:13 +01001372 writel(MCI_IRQENABLE, host->base + MMCIMASK0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373
1374 amba_set_drvdata(dev, mmc);
1375
Russell Kingc8ebae32011-01-11 19:35:53 +00001376 dev_info(&dev->dev, "%s: PL%03x manf %x rev%u at 0x%08llx irq %d,%d (pio)\n",
1377 mmc_hostname(mmc), amba_part(dev), amba_manf(dev),
1378 amba_rev(dev), (unsigned long long)dev->res.start,
1379 dev->irq[0], dev->irq[1]);
1380
1381 mmci_dma_setup(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001383 pm_runtime_set_autosuspend_delay(&dev->dev, 50);
1384 pm_runtime_use_autosuspend(&dev->dev);
Russell King1c3be362011-08-14 09:17:05 +01001385 pm_runtime_put(&dev->dev);
1386
Russell King8c11a942010-12-28 19:40:40 +00001387 mmc_add_host(mmc);
1388
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 return 0;
1390
1391 irq0_free:
1392 free_irq(dev->irq[0], host);
1393 unmap:
Russell King89001442009-07-09 15:16:07 +01001394 if (host->gpio_wp != -ENOSYS)
1395 gpio_free(host->gpio_wp);
1396 err_gpio_wp:
Rabin Vincent148b8b32010-08-09 12:55:48 +01001397 if (host->gpio_cd_irq >= 0)
1398 free_irq(host->gpio_cd_irq, host);
Russell King89001442009-07-09 15:16:07 +01001399 if (host->gpio_cd != -ENOSYS)
1400 gpio_free(host->gpio_cd);
1401 err_gpio_cd:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 iounmap(host->base);
1403 clk_disable:
1404 clk_disable(host->clk);
Russell King52ca0f32011-09-22 11:36:41 +01001405 clk_unprep:
1406 clk_unprepare(host->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 clk_free:
1408 clk_put(host->clk);
1409 host_free:
1410 mmc_free_host(mmc);
1411 rel_regions:
1412 amba_release_regions(dev);
1413 out:
1414 return ret;
1415}
1416
Linus Walleij6dc4a472009-03-07 00:23:52 +01001417static int __devexit mmci_remove(struct amba_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418{
1419 struct mmc_host *mmc = amba_get_drvdata(dev);
1420
1421 amba_set_drvdata(dev, NULL);
1422
1423 if (mmc) {
1424 struct mmci_host *host = mmc_priv(mmc);
1425
Russell King1c3be362011-08-14 09:17:05 +01001426 /*
1427 * Undo pm_runtime_put() in probe. We use the _sync
1428 * version here so that we can access the primecell.
1429 */
1430 pm_runtime_get_sync(&dev->dev);
1431
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 mmc_remove_host(mmc);
1433
1434 writel(0, host->base + MMCIMASK0);
1435 writel(0, host->base + MMCIMASK1);
1436
1437 writel(0, host->base + MMCICOMMAND);
1438 writel(0, host->base + MMCIDATACTRL);
1439
Russell Kingc8ebae32011-01-11 19:35:53 +00001440 mmci_dma_release(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 free_irq(dev->irq[0], host);
Linus Walleij2686b4b2010-10-19 12:39:48 +01001442 if (!host->singleirq)
1443 free_irq(dev->irq[1], host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444
Russell King89001442009-07-09 15:16:07 +01001445 if (host->gpio_wp != -ENOSYS)
1446 gpio_free(host->gpio_wp);
Rabin Vincent148b8b32010-08-09 12:55:48 +01001447 if (host->gpio_cd_irq >= 0)
1448 free_irq(host->gpio_cd_irq, host);
Russell King89001442009-07-09 15:16:07 +01001449 if (host->gpio_cd != -ENOSYS)
1450 gpio_free(host->gpio_cd);
1451
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 iounmap(host->base);
1453 clk_disable(host->clk);
Russell King52ca0f32011-09-22 11:36:41 +01001454 clk_unprepare(host->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 clk_put(host->clk);
1456
Linus Walleij99fc5132010-09-29 01:08:27 -04001457 if (host->vcc)
1458 mmc_regulator_set_ocr(mmc, host->vcc, 0);
Linus Walleij34e84f32009-09-22 14:41:40 +01001459 regulator_put(host->vcc);
1460
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 mmc_free_host(mmc);
1462
1463 amba_release_regions(dev);
1464 }
1465
1466 return 0;
1467}
1468
Ulf Hansson48fa7002011-12-13 16:59:34 +01001469#ifdef CONFIG_SUSPEND
1470static int mmci_suspend(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471{
Ulf Hansson48fa7002011-12-13 16:59:34 +01001472 struct amba_device *adev = to_amba_device(dev);
1473 struct mmc_host *mmc = amba_get_drvdata(adev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 int ret = 0;
1475
1476 if (mmc) {
1477 struct mmci_host *host = mmc_priv(mmc);
1478
Matt Fleming1a13f8f2010-05-26 14:42:08 -07001479 ret = mmc_suspend_host(mmc);
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001480 if (ret == 0) {
1481 pm_runtime_get_sync(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 writel(0, host->base + MMCIMASK0);
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001483 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 }
1485
1486 return ret;
1487}
1488
Ulf Hansson48fa7002011-12-13 16:59:34 +01001489static int mmci_resume(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490{
Ulf Hansson48fa7002011-12-13 16:59:34 +01001491 struct amba_device *adev = to_amba_device(dev);
1492 struct mmc_host *mmc = amba_get_drvdata(adev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 int ret = 0;
1494
1495 if (mmc) {
1496 struct mmci_host *host = mmc_priv(mmc);
1497
1498 writel(MCI_IRQENABLE, host->base + MMCIMASK0);
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001499 pm_runtime_put(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500
1501 ret = mmc_resume_host(mmc);
1502 }
1503
1504 return ret;
1505}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506#endif
1507
Ulf Hansson48fa7002011-12-13 16:59:34 +01001508static const struct dev_pm_ops mmci_dev_pm_ops = {
1509 SET_SYSTEM_SLEEP_PM_OPS(mmci_suspend, mmci_resume)
1510};
1511
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512static struct amba_id mmci_ids[] = {
1513 {
1514 .id = 0x00041180,
Pawel Moll768fbc12011-03-11 17:18:07 +00001515 .mask = 0xff0fffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001516 .data = &variant_arm,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 },
1518 {
Pawel Moll768fbc12011-03-11 17:18:07 +00001519 .id = 0x01041180,
1520 .mask = 0xff0fffff,
1521 .data = &variant_arm_extended_fifo,
1522 },
1523 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 .id = 0x00041181,
1525 .mask = 0x000fffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001526 .data = &variant_arm,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 },
Linus Walleijcc30d602009-01-04 15:18:54 +01001528 /* ST Micro variants */
1529 {
1530 .id = 0x00180180,
1531 .mask = 0x00ffffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001532 .data = &variant_u300,
Linus Walleijcc30d602009-01-04 15:18:54 +01001533 },
1534 {
1535 .id = 0x00280180,
1536 .mask = 0x00ffffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001537 .data = &variant_u300,
1538 },
1539 {
1540 .id = 0x00480180,
Philippe Langlais1784b152011-03-25 08:51:52 +01001541 .mask = 0xf0ffffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001542 .data = &variant_ux500,
Linus Walleijcc30d602009-01-04 15:18:54 +01001543 },
Philippe Langlais1784b152011-03-25 08:51:52 +01001544 {
1545 .id = 0x10480180,
1546 .mask = 0xf0ffffff,
1547 .data = &variant_ux500v2,
1548 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 { 0, 0 },
1550};
1551
Dave Martin9f998352011-10-05 15:15:21 +01001552MODULE_DEVICE_TABLE(amba, mmci_ids);
1553
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554static struct amba_driver mmci_driver = {
1555 .drv = {
1556 .name = DRIVER_NAME,
Ulf Hansson48fa7002011-12-13 16:59:34 +01001557 .pm = &mmci_dev_pm_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 },
1559 .probe = mmci_probe,
Linus Walleij6dc4a472009-03-07 00:23:52 +01001560 .remove = __devexit_p(mmci_remove),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 .id_table = mmci_ids,
1562};
1563
1564static int __init mmci_init(void)
1565{
1566 return amba_driver_register(&mmci_driver);
1567}
1568
1569static void __exit mmci_exit(void)
1570{
1571 amba_driver_unregister(&mmci_driver);
1572}
1573
1574module_init(mmci_init);
1575module_exit(mmci_exit);
1576module_param(fmax, uint, 0444);
1577
1578MODULE_DESCRIPTION("ARM PrimeCell PL180/181 Multimedia Card Interface driver");
1579MODULE_LICENSE("GPL");