blob: efc822df4b75fcdaabef43ada50db5c22c92b715 [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>
Lee Jones000bc9d2012-04-16 10:18:43 +010018#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/delay.h>
20#include <linux/err.h>
21#include <linux/highmem.h>
Nicolas Pitre019a5f52007-10-11 01:06:03 -040022#include <linux/log2.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/mmc/host.h>
Linus Walleij34177802010-10-19 12:43:58 +010024#include <linux/mmc/card.h>
Russell Kinga62c80e2006-01-07 13:52:45 +000025#include <linux/amba/bus.h>
Russell Kingf8ce2542006-01-07 16:15:52 +000026#include <linux/clk.h>
Jens Axboebd6dee62007-10-24 09:01:09 +020027#include <linux/scatterlist.h>
Russell King89001442009-07-09 15:16:07 +010028#include <linux/gpio.h>
Lee Jones9a597012012-04-12 16:51:13 +010029#include <linux/of_gpio.h>
Linus Walleij34e84f32009-09-22 14:41:40 +010030#include <linux/regulator/consumer.h>
Russell Kingc8ebae32011-01-11 19:35:53 +000031#include <linux/dmaengine.h>
32#include <linux/dma-mapping.h>
33#include <linux/amba/mmci.h>
Russell King1c3be362011-08-14 09:17:05 +010034#include <linux/pm_runtime.h>
Viresh Kumar258aea72012-02-01 16:12:19 +053035#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Russell King7b09cda2005-07-01 12:02:59 +010037#include <asm/div64.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <asm/io.h>
Russell Kingc6b8fda2005-10-28 14:05:16 +010039#include <asm/sizes.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41#include "mmci.h"
42
43#define DRIVER_NAME "mmci-pl18x"
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045static unsigned int fmax = 515633;
46
Rabin Vincent4956e102010-07-21 12:54:40 +010047/**
48 * struct variant_data - MMCI variant-specific quirks
49 * @clkreg: default value for MCICLOCK register
Rabin Vincent4380c142010-07-21 12:55:18 +010050 * @clkreg_enable: enable value for MMCICLOCK register
Rabin Vincent08458ef2010-07-21 12:55:59 +010051 * @datalength_bits: number of bits in the MMCIDATALENGTH register
Rabin Vincent8301bb62010-08-09 12:57:30 +010052 * @fifosize: number of bytes that can be written when MMCI_TXFIFOEMPTY
53 * is asserted (likewise for RX)
54 * @fifohalfsize: number of bytes that can be written when MCI_TXFIFOHALFEMPTY
55 * is asserted (likewise for RX)
Linus Walleij34177802010-10-19 12:43:58 +010056 * @sdio: variant supports SDIO
Linus Walleijb70a67f2010-12-06 09:24:14 +010057 * @st_clkdiv: true if using a ST-specific clock divider algorithm
Philippe Langlais1784b152011-03-25 08:51:52 +010058 * @blksz_datactrl16: true if Block size is at b16..b30 position in datactrl register
Ulf Hansson7d72a1d2011-12-13 16:54:55 +010059 * @pwrreg_powerup: power up value for MMCIPOWER register
Ulf Hansson4d1a3a02011-12-13 16:57:07 +010060 * @signal_direction: input/out direction of bus signals can be indicated
Rabin Vincent4956e102010-07-21 12:54:40 +010061 */
62struct variant_data {
63 unsigned int clkreg;
Rabin Vincent4380c142010-07-21 12:55:18 +010064 unsigned int clkreg_enable;
Rabin Vincent08458ef2010-07-21 12:55:59 +010065 unsigned int datalength_bits;
Rabin Vincent8301bb62010-08-09 12:57:30 +010066 unsigned int fifosize;
67 unsigned int fifohalfsize;
Linus Walleij34177802010-10-19 12:43:58 +010068 bool sdio;
Linus Walleijb70a67f2010-12-06 09:24:14 +010069 bool st_clkdiv;
Philippe Langlais1784b152011-03-25 08:51:52 +010070 bool blksz_datactrl16;
Ulf Hansson7d72a1d2011-12-13 16:54:55 +010071 u32 pwrreg_powerup;
Ulf Hansson4d1a3a02011-12-13 16:57:07 +010072 bool signal_direction;
Rabin Vincent4956e102010-07-21 12:54:40 +010073};
74
75static struct variant_data variant_arm = {
Rabin Vincent8301bb62010-08-09 12:57:30 +010076 .fifosize = 16 * 4,
77 .fifohalfsize = 8 * 4,
Rabin Vincent08458ef2010-07-21 12:55:59 +010078 .datalength_bits = 16,
Ulf Hansson7d72a1d2011-12-13 16:54:55 +010079 .pwrreg_powerup = MCI_PWR_UP,
Rabin Vincent4956e102010-07-21 12:54:40 +010080};
81
Pawel Moll768fbc12011-03-11 17:18:07 +000082static struct variant_data variant_arm_extended_fifo = {
83 .fifosize = 128 * 4,
84 .fifohalfsize = 64 * 4,
85 .datalength_bits = 16,
Ulf Hansson7d72a1d2011-12-13 16:54:55 +010086 .pwrreg_powerup = MCI_PWR_UP,
Pawel Moll768fbc12011-03-11 17:18:07 +000087};
88
Rabin Vincent4956e102010-07-21 12:54:40 +010089static struct variant_data variant_u300 = {
Rabin Vincent8301bb62010-08-09 12:57:30 +010090 .fifosize = 16 * 4,
91 .fifohalfsize = 8 * 4,
Linus Walleij49ac2152011-03-04 14:54:16 +010092 .clkreg_enable = MCI_ST_U300_HWFCEN,
Rabin Vincent08458ef2010-07-21 12:55:59 +010093 .datalength_bits = 16,
Linus Walleij34177802010-10-19 12:43:58 +010094 .sdio = true,
Ulf Hansson7d72a1d2011-12-13 16:54:55 +010095 .pwrreg_powerup = MCI_PWR_ON,
Ulf Hansson4d1a3a02011-12-13 16:57:07 +010096 .signal_direction = true,
Rabin Vincent4956e102010-07-21 12:54:40 +010097};
98
99static struct variant_data variant_ux500 = {
Rabin Vincent8301bb62010-08-09 12:57:30 +0100100 .fifosize = 30 * 4,
101 .fifohalfsize = 8 * 4,
Rabin Vincent4956e102010-07-21 12:54:40 +0100102 .clkreg = MCI_CLK_ENABLE,
Linus Walleij49ac2152011-03-04 14:54:16 +0100103 .clkreg_enable = MCI_ST_UX500_HWFCEN,
Rabin Vincent08458ef2010-07-21 12:55:59 +0100104 .datalength_bits = 24,
Linus Walleij34177802010-10-19 12:43:58 +0100105 .sdio = true,
Linus Walleijb70a67f2010-12-06 09:24:14 +0100106 .st_clkdiv = true,
Ulf Hansson7d72a1d2011-12-13 16:54:55 +0100107 .pwrreg_powerup = MCI_PWR_ON,
Ulf Hansson4d1a3a02011-12-13 16:57:07 +0100108 .signal_direction = true,
Rabin Vincent4956e102010-07-21 12:54:40 +0100109};
Linus Walleijb70a67f2010-12-06 09:24:14 +0100110
Philippe Langlais1784b152011-03-25 08:51:52 +0100111static struct variant_data variant_ux500v2 = {
112 .fifosize = 30 * 4,
113 .fifohalfsize = 8 * 4,
114 .clkreg = MCI_CLK_ENABLE,
115 .clkreg_enable = MCI_ST_UX500_HWFCEN,
116 .datalength_bits = 24,
117 .sdio = true,
118 .st_clkdiv = true,
119 .blksz_datactrl16 = true,
Ulf Hansson7d72a1d2011-12-13 16:54:55 +0100120 .pwrreg_powerup = MCI_PWR_ON,
Ulf Hansson4d1a3a02011-12-13 16:57:07 +0100121 .signal_direction = true,
Philippe Langlais1784b152011-03-25 08:51:52 +0100122};
123
Linus Walleija6a64642009-09-14 12:56:14 +0100124/*
125 * This must be called with host->lock held
126 */
Ulf Hansson7437cfa2012-01-18 09:17:27 +0100127static void mmci_write_clkreg(struct mmci_host *host, u32 clk)
128{
129 if (host->clk_reg != clk) {
130 host->clk_reg = clk;
131 writel(clk, host->base + MMCICLOCK);
132 }
133}
134
135/*
136 * This must be called with host->lock held
137 */
138static void mmci_write_pwrreg(struct mmci_host *host, u32 pwr)
139{
140 if (host->pwr_reg != pwr) {
141 host->pwr_reg = pwr;
142 writel(pwr, host->base + MMCIPOWER);
143 }
144}
145
146/*
147 * This must be called with host->lock held
148 */
Linus Walleija6a64642009-09-14 12:56:14 +0100149static void mmci_set_clkreg(struct mmci_host *host, unsigned int desired)
150{
Rabin Vincent4956e102010-07-21 12:54:40 +0100151 struct variant_data *variant = host->variant;
152 u32 clk = variant->clkreg;
Linus Walleija6a64642009-09-14 12:56:14 +0100153
154 if (desired) {
155 if (desired >= host->mclk) {
Linus Walleij991a86e2010-12-10 09:35:53 +0100156 clk = MCI_CLK_BYPASS;
Linus Walleij399bc482011-04-01 07:59:17 +0100157 if (variant->st_clkdiv)
158 clk |= MCI_ST_UX500_NEG_EDGE;
Linus Walleija6a64642009-09-14 12:56:14 +0100159 host->cclk = host->mclk;
Linus Walleijb70a67f2010-12-06 09:24:14 +0100160 } else if (variant->st_clkdiv) {
161 /*
162 * DB8500 TRM says f = mclk / (clkdiv + 2)
163 * => clkdiv = (mclk / f) - 2
164 * Round the divider up so we don't exceed the max
165 * frequency
166 */
167 clk = DIV_ROUND_UP(host->mclk, desired) - 2;
168 if (clk >= 256)
169 clk = 255;
170 host->cclk = host->mclk / (clk + 2);
Linus Walleija6a64642009-09-14 12:56:14 +0100171 } else {
Linus Walleijb70a67f2010-12-06 09:24:14 +0100172 /*
173 * PL180 TRM says f = mclk / (2 * (clkdiv + 1))
174 * => clkdiv = mclk / (2 * f) - 1
175 */
Linus Walleija6a64642009-09-14 12:56:14 +0100176 clk = host->mclk / (2 * desired) - 1;
177 if (clk >= 256)
178 clk = 255;
179 host->cclk = host->mclk / (2 * (clk + 1));
180 }
Rabin Vincent4380c142010-07-21 12:55:18 +0100181
182 clk |= variant->clkreg_enable;
Linus Walleija6a64642009-09-14 12:56:14 +0100183 clk |= MCI_CLK_ENABLE;
184 /* This hasn't proven to be worthwhile */
185 /* clk |= MCI_CLK_PWRSAVE; */
186 }
187
Linus Walleij9e6c82c2009-09-14 12:57:11 +0100188 if (host->mmc->ios.bus_width == MMC_BUS_WIDTH_4)
Linus Walleij771dc152010-04-08 07:38:52 +0100189 clk |= MCI_4BIT_BUS;
190 if (host->mmc->ios.bus_width == MMC_BUS_WIDTH_8)
191 clk |= MCI_ST_8BIT_BUS;
Linus Walleij9e6c82c2009-09-14 12:57:11 +0100192
Ulf Hansson7437cfa2012-01-18 09:17:27 +0100193 mmci_write_clkreg(host, clk);
Linus Walleija6a64642009-09-14 12:56:14 +0100194}
195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196static void
197mmci_request_end(struct mmci_host *host, struct mmc_request *mrq)
198{
199 writel(0, host->base + MMCICOMMAND);
200
Russell Kinge47c2222007-01-08 16:42:51 +0000201 BUG_ON(host->data);
202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 host->mrq = NULL;
204 host->cmd = NULL;
205
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 mmc_request_done(host->mmc, mrq);
Ulf Hansson2cd976c2011-12-13 17:01:11 +0100207
208 pm_runtime_mark_last_busy(mmc_dev(host->mmc));
209 pm_runtime_put_autosuspend(mmc_dev(host->mmc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210}
211
Linus Walleij2686b4b2010-10-19 12:39:48 +0100212static void mmci_set_mask1(struct mmci_host *host, unsigned int mask)
213{
214 void __iomem *base = host->base;
215
216 if (host->singleirq) {
217 unsigned int mask0 = readl(base + MMCIMASK0);
218
219 mask0 &= ~MCI_IRQ1MASK;
220 mask0 |= mask;
221
222 writel(mask0, base + MMCIMASK0);
223 }
224
225 writel(mask, base + MMCIMASK1);
226}
227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228static void mmci_stop_data(struct mmci_host *host)
229{
230 writel(0, host->base + MMCIDATACTRL);
Linus Walleij2686b4b2010-10-19 12:39:48 +0100231 mmci_set_mask1(host, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 host->data = NULL;
233}
234
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100235static void mmci_init_sg(struct mmci_host *host, struct mmc_data *data)
236{
237 unsigned int flags = SG_MITER_ATOMIC;
238
239 if (data->flags & MMC_DATA_READ)
240 flags |= SG_MITER_TO_SG;
241 else
242 flags |= SG_MITER_FROM_SG;
243
244 sg_miter_start(&host->sg_miter, data->sg, data->sg_len, flags);
245}
246
Russell Kingc8ebae32011-01-11 19:35:53 +0000247/*
248 * All the DMA operation mode stuff goes inside this ifdef.
249 * This assumes that you have a generic DMA device interface,
250 * no custom DMA interfaces are supported.
251 */
252#ifdef CONFIG_DMA_ENGINE
253static void __devinit mmci_dma_setup(struct mmci_host *host)
254{
255 struct mmci_platform_data *plat = host->plat;
256 const char *rxname, *txname;
257 dma_cap_mask_t mask;
258
259 if (!plat || !plat->dma_filter) {
260 dev_info(mmc_dev(host->mmc), "no DMA platform data\n");
261 return;
262 }
263
Per Forlin58c7ccb2011-07-01 18:55:24 +0200264 /* initialize pre request cookie */
265 host->next_data.cookie = 1;
266
Russell Kingc8ebae32011-01-11 19:35:53 +0000267 /* Try to acquire a generic DMA engine slave channel */
268 dma_cap_zero(mask);
269 dma_cap_set(DMA_SLAVE, mask);
270
271 /*
272 * If only an RX channel is specified, the driver will
273 * attempt to use it bidirectionally, however if it is
274 * is specified but cannot be located, DMA will be disabled.
275 */
276 if (plat->dma_rx_param) {
277 host->dma_rx_channel = dma_request_channel(mask,
278 plat->dma_filter,
279 plat->dma_rx_param);
280 /* E.g if no DMA hardware is present */
281 if (!host->dma_rx_channel)
282 dev_err(mmc_dev(host->mmc), "no RX DMA channel\n");
283 }
284
285 if (plat->dma_tx_param) {
286 host->dma_tx_channel = dma_request_channel(mask,
287 plat->dma_filter,
288 plat->dma_tx_param);
289 if (!host->dma_tx_channel)
290 dev_warn(mmc_dev(host->mmc), "no TX DMA channel\n");
291 } else {
292 host->dma_tx_channel = host->dma_rx_channel;
293 }
294
295 if (host->dma_rx_channel)
296 rxname = dma_chan_name(host->dma_rx_channel);
297 else
298 rxname = "none";
299
300 if (host->dma_tx_channel)
301 txname = dma_chan_name(host->dma_tx_channel);
302 else
303 txname = "none";
304
305 dev_info(mmc_dev(host->mmc), "DMA channels RX %s, TX %s\n",
306 rxname, txname);
307
308 /*
309 * Limit the maximum segment size in any SG entry according to
310 * the parameters of the DMA engine device.
311 */
312 if (host->dma_tx_channel) {
313 struct device *dev = host->dma_tx_channel->device->dev;
314 unsigned int max_seg_size = dma_get_max_seg_size(dev);
315
316 if (max_seg_size < host->mmc->max_seg_size)
317 host->mmc->max_seg_size = max_seg_size;
318 }
319 if (host->dma_rx_channel) {
320 struct device *dev = host->dma_rx_channel->device->dev;
321 unsigned int max_seg_size = dma_get_max_seg_size(dev);
322
323 if (max_seg_size < host->mmc->max_seg_size)
324 host->mmc->max_seg_size = max_seg_size;
325 }
326}
327
328/*
329 * This is used in __devinit or __devexit so inline it
330 * so it can be discarded.
331 */
332static inline void mmci_dma_release(struct mmci_host *host)
333{
334 struct mmci_platform_data *plat = host->plat;
335
336 if (host->dma_rx_channel)
337 dma_release_channel(host->dma_rx_channel);
338 if (host->dma_tx_channel && plat->dma_tx_param)
339 dma_release_channel(host->dma_tx_channel);
340 host->dma_rx_channel = host->dma_tx_channel = NULL;
341}
342
343static void mmci_dma_unmap(struct mmci_host *host, struct mmc_data *data)
344{
345 struct dma_chan *chan = host->dma_current;
346 enum dma_data_direction dir;
347 u32 status;
348 int i;
349
350 /* Wait up to 1ms for the DMA to complete */
351 for (i = 0; ; i++) {
352 status = readl(host->base + MMCISTATUS);
353 if (!(status & MCI_RXDATAAVLBLMASK) || i >= 100)
354 break;
355 udelay(10);
356 }
357
358 /*
359 * Check to see whether we still have some data left in the FIFO -
360 * this catches DMA controllers which are unable to monitor the
361 * DMALBREQ and DMALSREQ signals while allowing us to DMA to non-
362 * contiguous buffers. On TX, we'll get a FIFO underrun error.
363 */
364 if (status & MCI_RXDATAAVLBLMASK) {
365 dmaengine_terminate_all(chan);
366 if (!data->error)
367 data->error = -EIO;
368 }
369
370 if (data->flags & MMC_DATA_WRITE) {
371 dir = DMA_TO_DEVICE;
372 } else {
373 dir = DMA_FROM_DEVICE;
374 }
375
Per Forlin58c7ccb2011-07-01 18:55:24 +0200376 if (!data->host_cookie)
377 dma_unmap_sg(chan->device->dev, data->sg, data->sg_len, dir);
Russell Kingc8ebae32011-01-11 19:35:53 +0000378
379 /*
380 * Use of DMA with scatter-gather is impossible.
381 * Give up with DMA and switch back to PIO mode.
382 */
383 if (status & MCI_RXDATAAVLBLMASK) {
384 dev_err(mmc_dev(host->mmc), "buggy DMA detected. Taking evasive action.\n");
385 mmci_dma_release(host);
386 }
387}
388
389static void mmci_dma_data_error(struct mmci_host *host)
390{
391 dev_err(mmc_dev(host->mmc), "error during DMA transfer!\n");
392 dmaengine_terminate_all(host->dma_current);
393}
394
Per Forlin58c7ccb2011-07-01 18:55:24 +0200395static int mmci_dma_prep_data(struct mmci_host *host, struct mmc_data *data,
396 struct mmci_host_next *next)
Russell Kingc8ebae32011-01-11 19:35:53 +0000397{
398 struct variant_data *variant = host->variant;
399 struct dma_slave_config conf = {
400 .src_addr = host->phybase + MMCIFIFO,
401 .dst_addr = host->phybase + MMCIFIFO,
402 .src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES,
403 .dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES,
404 .src_maxburst = variant->fifohalfsize >> 2, /* # of words */
405 .dst_maxburst = variant->fifohalfsize >> 2, /* # of words */
Viresh Kumar258aea72012-02-01 16:12:19 +0530406 .device_fc = false,
Russell Kingc8ebae32011-01-11 19:35:53 +0000407 };
Russell Kingc8ebae32011-01-11 19:35:53 +0000408 struct dma_chan *chan;
409 struct dma_device *device;
410 struct dma_async_tx_descriptor *desc;
Vinod Koul05f57992011-10-14 10:45:11 +0530411 enum dma_data_direction buffer_dirn;
Russell Kingc8ebae32011-01-11 19:35:53 +0000412 int nr_sg;
413
Per Forlin58c7ccb2011-07-01 18:55:24 +0200414 /* Check if next job is already prepared */
415 if (data->host_cookie && !next &&
416 host->dma_current && host->dma_desc_current)
417 return 0;
418
419 if (!next) {
420 host->dma_current = NULL;
421 host->dma_desc_current = NULL;
422 }
Russell Kingc8ebae32011-01-11 19:35:53 +0000423
424 if (data->flags & MMC_DATA_READ) {
Vinod Koul05f57992011-10-14 10:45:11 +0530425 conf.direction = DMA_DEV_TO_MEM;
426 buffer_dirn = DMA_FROM_DEVICE;
Russell Kingc8ebae32011-01-11 19:35:53 +0000427 chan = host->dma_rx_channel;
428 } else {
Vinod Koul05f57992011-10-14 10:45:11 +0530429 conf.direction = DMA_MEM_TO_DEV;
430 buffer_dirn = DMA_TO_DEVICE;
Russell Kingc8ebae32011-01-11 19:35:53 +0000431 chan = host->dma_tx_channel;
432 }
433
434 /* If there's no DMA channel, fall back to PIO */
435 if (!chan)
436 return -EINVAL;
437
438 /* If less than or equal to the fifo size, don't bother with DMA */
Per Forlin58c7ccb2011-07-01 18:55:24 +0200439 if (data->blksz * data->blocks <= variant->fifosize)
Russell Kingc8ebae32011-01-11 19:35:53 +0000440 return -EINVAL;
441
442 device = chan->device;
Vinod Koul05f57992011-10-14 10:45:11 +0530443 nr_sg = dma_map_sg(device->dev, data->sg, data->sg_len, buffer_dirn);
Russell Kingc8ebae32011-01-11 19:35:53 +0000444 if (nr_sg == 0)
445 return -EINVAL;
446
447 dmaengine_slave_config(chan, &conf);
Alexandre Bounine16052822012-03-08 16:11:18 -0500448 desc = dmaengine_prep_slave_sg(chan, data->sg, nr_sg,
Russell Kingc8ebae32011-01-11 19:35:53 +0000449 conf.direction, DMA_CTRL_ACK);
450 if (!desc)
451 goto unmap_exit;
452
Per Forlin58c7ccb2011-07-01 18:55:24 +0200453 if (next) {
454 next->dma_chan = chan;
455 next->dma_desc = desc;
456 } else {
457 host->dma_current = chan;
458 host->dma_desc_current = desc;
459 }
Russell Kingc8ebae32011-01-11 19:35:53 +0000460
Per Forlin58c7ccb2011-07-01 18:55:24 +0200461 return 0;
462
463 unmap_exit:
464 if (!next)
465 dmaengine_terminate_all(chan);
Vinod Koul05f57992011-10-14 10:45:11 +0530466 dma_unmap_sg(device->dev, data->sg, data->sg_len, buffer_dirn);
Per Forlin58c7ccb2011-07-01 18:55:24 +0200467 return -ENOMEM;
468}
469
470static int mmci_dma_start_data(struct mmci_host *host, unsigned int datactrl)
471{
472 int ret;
473 struct mmc_data *data = host->data;
474
475 ret = mmci_dma_prep_data(host, host->data, NULL);
476 if (ret)
477 return ret;
478
479 /* Okay, go for it. */
Russell Kingc8ebae32011-01-11 19:35:53 +0000480 dev_vdbg(mmc_dev(host->mmc),
481 "Submit MMCI DMA job, sglen %d blksz %04x blks %04x flags %08x\n",
482 data->sg_len, data->blksz, data->blocks, data->flags);
Per Forlin58c7ccb2011-07-01 18:55:24 +0200483 dmaengine_submit(host->dma_desc_current);
484 dma_async_issue_pending(host->dma_current);
Russell Kingc8ebae32011-01-11 19:35:53 +0000485
486 datactrl |= MCI_DPSM_DMAENABLE;
487
488 /* Trigger the DMA transfer */
489 writel(datactrl, host->base + MMCIDATACTRL);
490
491 /*
492 * Let the MMCI say when the data is ended and it's time
493 * to fire next DMA request. When that happens, MMCI will
494 * call mmci_data_end()
495 */
496 writel(readl(host->base + MMCIMASK0) | MCI_DATAENDMASK,
497 host->base + MMCIMASK0);
498 return 0;
Russell Kingc8ebae32011-01-11 19:35:53 +0000499}
Per Forlin58c7ccb2011-07-01 18:55:24 +0200500
501static void mmci_get_next_data(struct mmci_host *host, struct mmc_data *data)
502{
503 struct mmci_host_next *next = &host->next_data;
504
505 if (data->host_cookie && data->host_cookie != next->cookie) {
Girish K Sa3c76eb2011-10-11 11:44:09 +0530506 pr_warning("[%s] invalid cookie: data->host_cookie %d"
Per Forlin58c7ccb2011-07-01 18:55:24 +0200507 " host->next_data.cookie %d\n",
508 __func__, data->host_cookie, host->next_data.cookie);
509 data->host_cookie = 0;
510 }
511
512 if (!data->host_cookie)
513 return;
514
515 host->dma_desc_current = next->dma_desc;
516 host->dma_current = next->dma_chan;
517
518 next->dma_desc = NULL;
519 next->dma_chan = NULL;
520}
521
522static void mmci_pre_request(struct mmc_host *mmc, struct mmc_request *mrq,
523 bool is_first_req)
524{
525 struct mmci_host *host = mmc_priv(mmc);
526 struct mmc_data *data = mrq->data;
527 struct mmci_host_next *nd = &host->next_data;
528
529 if (!data)
530 return;
531
532 if (data->host_cookie) {
533 data->host_cookie = 0;
534 return;
535 }
536
537 /* if config for dma */
538 if (((data->flags & MMC_DATA_WRITE) && host->dma_tx_channel) ||
539 ((data->flags & MMC_DATA_READ) && host->dma_rx_channel)) {
540 if (mmci_dma_prep_data(host, data, nd))
541 data->host_cookie = 0;
542 else
543 data->host_cookie = ++nd->cookie < 0 ? 1 : nd->cookie;
544 }
545}
546
547static void mmci_post_request(struct mmc_host *mmc, struct mmc_request *mrq,
548 int err)
549{
550 struct mmci_host *host = mmc_priv(mmc);
551 struct mmc_data *data = mrq->data;
552 struct dma_chan *chan;
553 enum dma_data_direction dir;
554
555 if (!data)
556 return;
557
558 if (data->flags & MMC_DATA_READ) {
559 dir = DMA_FROM_DEVICE;
560 chan = host->dma_rx_channel;
561 } else {
562 dir = DMA_TO_DEVICE;
563 chan = host->dma_tx_channel;
564 }
565
566
567 /* if config for dma */
568 if (chan) {
569 if (err)
570 dmaengine_terminate_all(chan);
Per Forlin8e3336b2011-08-29 15:35:59 +0200571 if (data->host_cookie)
Per Forlin58c7ccb2011-07-01 18:55:24 +0200572 dma_unmap_sg(mmc_dev(host->mmc), data->sg,
573 data->sg_len, dir);
574 mrq->data->host_cookie = 0;
575 }
576}
577
Russell Kingc8ebae32011-01-11 19:35:53 +0000578#else
579/* Blank functions if the DMA engine is not available */
Per Forlin58c7ccb2011-07-01 18:55:24 +0200580static void mmci_get_next_data(struct mmci_host *host, struct mmc_data *data)
581{
582}
Russell Kingc8ebae32011-01-11 19:35:53 +0000583static inline void mmci_dma_setup(struct mmci_host *host)
584{
585}
586
587static inline void mmci_dma_release(struct mmci_host *host)
588{
589}
590
591static inline void mmci_dma_unmap(struct mmci_host *host, struct mmc_data *data)
592{
593}
594
595static inline void mmci_dma_data_error(struct mmci_host *host)
596{
597}
598
599static inline int mmci_dma_start_data(struct mmci_host *host, unsigned int datactrl)
600{
601 return -ENOSYS;
602}
Per Forlin58c7ccb2011-07-01 18:55:24 +0200603
604#define mmci_pre_request NULL
605#define mmci_post_request NULL
606
Russell Kingc8ebae32011-01-11 19:35:53 +0000607#endif
608
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609static void mmci_start_data(struct mmci_host *host, struct mmc_data *data)
610{
Rabin Vincent8301bb62010-08-09 12:57:30 +0100611 struct variant_data *variant = host->variant;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 unsigned int datactrl, timeout, irqmask;
Russell King7b09cda2005-07-01 12:02:59 +0100613 unsigned long long clks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 void __iomem *base;
Russell King3bc87f22006-08-27 13:51:28 +0100615 int blksz_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
Linus Walleij64de0282010-02-19 01:09:10 +0100617 dev_dbg(mmc_dev(host->mmc), "blksz %04x blks %04x flags %08x\n",
618 data->blksz, data->blocks, data->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
620 host->data = data;
Rabin Vincent528320d2010-07-21 12:49:49 +0100621 host->size = data->blksz * data->blocks;
Russell King51d43752011-01-27 10:56:52 +0000622 data->bytes_xfered = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Russell King7b09cda2005-07-01 12:02:59 +0100624 clks = (unsigned long long)data->timeout_ns * host->cclk;
625 do_div(clks, 1000000000UL);
626
627 timeout = data->timeout_clks + (unsigned int)clks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
629 base = host->base;
630 writel(timeout, base + MMCIDATATIMER);
631 writel(host->size, base + MMCIDATALENGTH);
632
Russell King3bc87f22006-08-27 13:51:28 +0100633 blksz_bits = ffs(data->blksz) - 1;
634 BUG_ON(1 << blksz_bits != data->blksz);
635
Philippe Langlais1784b152011-03-25 08:51:52 +0100636 if (variant->blksz_datactrl16)
637 datactrl = MCI_DPSM_ENABLE | (data->blksz << 16);
638 else
639 datactrl = MCI_DPSM_ENABLE | blksz_bits << 4;
Russell Kingc8ebae32011-01-11 19:35:53 +0000640
641 if (data->flags & MMC_DATA_READ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 datactrl |= MCI_DPSM_DIRECTION;
Russell Kingc8ebae32011-01-11 19:35:53 +0000643
Ulf Hansson7258db72011-12-13 17:05:28 +0100644 /* The ST Micro variants has a special bit to enable SDIO */
645 if (variant->sdio && host->mmc->card)
646 if (mmc_card_sdio(host->mmc->card))
647 datactrl |= MCI_ST_DPSM_SDIOEN;
648
Russell Kingc8ebae32011-01-11 19:35:53 +0000649 /*
650 * Attempt to use DMA operation mode, if this
651 * should fail, fall back to PIO mode
652 */
653 if (!mmci_dma_start_data(host, datactrl))
654 return;
655
656 /* IRQ mode, map the SG list for CPU reading/writing */
657 mmci_init_sg(host, data);
658
659 if (data->flags & MMC_DATA_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 irqmask = MCI_RXFIFOHALFFULLMASK;
Russell King0425a142006-02-16 16:48:31 +0000661
662 /*
Russell Kingc4d877c2011-01-27 09:50:13 +0000663 * If we have less than the fifo 'half-full' threshold to
664 * transfer, trigger a PIO interrupt as soon as any data
665 * is available.
Russell King0425a142006-02-16 16:48:31 +0000666 */
Russell Kingc4d877c2011-01-27 09:50:13 +0000667 if (host->size < variant->fifohalfsize)
Russell King0425a142006-02-16 16:48:31 +0000668 irqmask |= MCI_RXDATAAVLBLMASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 } else {
670 /*
671 * We don't actually need to include "FIFO empty" here
672 * since its implicit in "FIFO half empty".
673 */
674 irqmask = MCI_TXFIFOHALFEMPTYMASK;
675 }
676
677 writel(datactrl, base + MMCIDATACTRL);
678 writel(readl(base + MMCIMASK0) & ~MCI_DATAENDMASK, base + MMCIMASK0);
Linus Walleij2686b4b2010-10-19 12:39:48 +0100679 mmci_set_mask1(host, irqmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680}
681
682static void
683mmci_start_command(struct mmci_host *host, struct mmc_command *cmd, u32 c)
684{
685 void __iomem *base = host->base;
686
Linus Walleij64de0282010-02-19 01:09:10 +0100687 dev_dbg(mmc_dev(host->mmc), "op %02x arg %08x flags %08x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 cmd->opcode, cmd->arg, cmd->flags);
689
690 if (readl(base + MMCICOMMAND) & MCI_CPSM_ENABLE) {
691 writel(0, base + MMCICOMMAND);
692 udelay(1);
693 }
694
695 c |= cmd->opcode | MCI_CPSM_ENABLE;
Russell Kinge9225172006-02-02 12:23:12 +0000696 if (cmd->flags & MMC_RSP_PRESENT) {
697 if (cmd->flags & MMC_RSP_136)
698 c |= MCI_CPSM_LONGRSP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 c |= MCI_CPSM_RESPONSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 }
701 if (/*interrupt*/0)
702 c |= MCI_CPSM_INTERRUPT;
703
704 host->cmd = cmd;
705
706 writel(cmd->arg, base + MMCIARGUMENT);
707 writel(c, base + MMCICOMMAND);
708}
709
710static void
711mmci_data_irq(struct mmci_host *host, struct mmc_data *data,
712 unsigned int status)
713{
Linus Walleijf20f8f212010-10-19 13:41:24 +0100714 /* First check for errors */
Ulf Hanssonb63038d2011-12-13 16:51:04 +0100715 if (status & (MCI_DATACRCFAIL|MCI_DATATIMEOUT|MCI_STARTBITERR|
716 MCI_TXUNDERRUN|MCI_RXOVERRUN)) {
Linus Walleij8cb28152011-01-24 15:22:13 +0100717 u32 remain, success;
Linus Walleijf20f8f212010-10-19 13:41:24 +0100718
Russell Kingc8ebae32011-01-11 19:35:53 +0000719 /* Terminate the DMA transfer */
720 if (dma_inprogress(host))
721 mmci_dma_data_error(host);
722
Russell Kingc8afc9d2011-02-04 09:19:46 +0000723 /*
724 * Calculate how far we are into the transfer. Note that
725 * the data counter gives the number of bytes transferred
726 * on the MMC bus, not on the host side. On reads, this
727 * can be as much as a FIFO-worth of data ahead. This
728 * matters for FIFO overruns only.
729 */
Linus Walleijf5a106d2011-01-27 17:44:34 +0100730 remain = readl(host->base + MMCIDATACNT);
Linus Walleij8cb28152011-01-24 15:22:13 +0100731 success = data->blksz * data->blocks - remain;
732
Russell Kingc8afc9d2011-02-04 09:19:46 +0000733 dev_dbg(mmc_dev(host->mmc), "MCI ERROR IRQ, status 0x%08x at 0x%08x\n",
734 status, success);
Linus Walleij8cb28152011-01-24 15:22:13 +0100735 if (status & MCI_DATACRCFAIL) {
736 /* Last block was not successful */
Russell Kingc8afc9d2011-02-04 09:19:46 +0000737 success -= 1;
Pierre Ossman17b04292007-07-22 22:18:46 +0200738 data->error = -EILSEQ;
Linus Walleij8cb28152011-01-24 15:22:13 +0100739 } else if (status & MCI_DATATIMEOUT) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200740 data->error = -ETIMEDOUT;
Linus Walleij757df742011-06-30 15:10:21 +0100741 } else if (status & MCI_STARTBITERR) {
742 data->error = -ECOMM;
Russell Kingc8afc9d2011-02-04 09:19:46 +0000743 } else if (status & MCI_TXUNDERRUN) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200744 data->error = -EIO;
Russell Kingc8afc9d2011-02-04 09:19:46 +0000745 } else if (status & MCI_RXOVERRUN) {
746 if (success > host->variant->fifosize)
747 success -= host->variant->fifosize;
748 else
749 success = 0;
Linus Walleij8cb28152011-01-24 15:22:13 +0100750 data->error = -EIO;
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100751 }
Russell King51d43752011-01-27 10:56:52 +0000752 data->bytes_xfered = round_down(success, data->blksz);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 }
Linus Walleijf20f8f212010-10-19 13:41:24 +0100754
Linus Walleij8cb28152011-01-24 15:22:13 +0100755 if (status & MCI_DATABLOCKEND)
756 dev_err(mmc_dev(host->mmc), "stray MCI_DATABLOCKEND interrupt\n");
Linus Walleijf20f8f212010-10-19 13:41:24 +0100757
Russell Kingccff9b52011-01-30 21:03:50 +0000758 if (status & MCI_DATAEND || data->error) {
Russell Kingc8ebae32011-01-11 19:35:53 +0000759 if (dma_inprogress(host))
760 mmci_dma_unmap(host, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 mmci_stop_data(host);
762
Linus Walleij8cb28152011-01-24 15:22:13 +0100763 if (!data->error)
764 /* The error clause is handled above, success! */
Russell King51d43752011-01-27 10:56:52 +0000765 data->bytes_xfered = data->blksz * data->blocks;
Linus Walleijf20f8f212010-10-19 13:41:24 +0100766
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 if (!data->stop) {
768 mmci_request_end(host, data->mrq);
769 } else {
770 mmci_start_command(host, data->stop, 0);
771 }
772 }
773}
774
775static void
776mmci_cmd_irq(struct mmci_host *host, struct mmc_command *cmd,
777 unsigned int status)
778{
779 void __iomem *base = host->base;
780
781 host->cmd = NULL;
782
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 if (status & MCI_CMDTIMEOUT) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200784 cmd->error = -ETIMEDOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 } else if (status & MCI_CMDCRCFAIL && cmd->flags & MMC_RSP_CRC) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200786 cmd->error = -EILSEQ;
Russell King - ARM Linux9047b432011-01-11 16:35:56 +0000787 } else {
788 cmd->resp[0] = readl(base + MMCIRESPONSE0);
789 cmd->resp[1] = readl(base + MMCIRESPONSE1);
790 cmd->resp[2] = readl(base + MMCIRESPONSE2);
791 cmd->resp[3] = readl(base + MMCIRESPONSE3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 }
793
Pierre Ossman17b04292007-07-22 22:18:46 +0200794 if (!cmd->data || cmd->error) {
Ulf Hansson3b6e3c72011-12-13 16:58:43 +0100795 if (host->data) {
796 /* Terminate the DMA transfer */
797 if (dma_inprogress(host))
798 mmci_dma_data_error(host);
Russell Kinge47c2222007-01-08 16:42:51 +0000799 mmci_stop_data(host);
Ulf Hansson3b6e3c72011-12-13 16:58:43 +0100800 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 mmci_request_end(host, cmd->mrq);
802 } else if (!(cmd->data->flags & MMC_DATA_READ)) {
803 mmci_start_data(host, cmd->data);
804 }
805}
806
807static int mmci_pio_read(struct mmci_host *host, char *buffer, unsigned int remain)
808{
809 void __iomem *base = host->base;
810 char *ptr = buffer;
811 u32 status;
Linus Walleij26eed9a2008-04-26 23:39:44 +0100812 int host_remain = host->size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
814 do {
Linus Walleij26eed9a2008-04-26 23:39:44 +0100815 int count = host_remain - (readl(base + MMCIFIFOCNT) << 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
817 if (count > remain)
818 count = remain;
819
820 if (count <= 0)
821 break;
822
Ulf Hansson393e5e22011-12-13 17:08:04 +0100823 /*
824 * SDIO especially may want to send something that is
825 * not divisible by 4 (as opposed to card sectors
826 * etc). Therefore make sure to always read the last bytes
827 * while only doing full 32-bit reads towards the FIFO.
828 */
829 if (unlikely(count & 0x3)) {
830 if (count < 4) {
831 unsigned char buf[4];
832 readsl(base + MMCIFIFO, buf, 1);
833 memcpy(ptr, buf, count);
834 } else {
835 readsl(base + MMCIFIFO, ptr, count >> 2);
836 count &= ~0x3;
837 }
838 } else {
839 readsl(base + MMCIFIFO, ptr, count >> 2);
840 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
842 ptr += count;
843 remain -= count;
Linus Walleij26eed9a2008-04-26 23:39:44 +0100844 host_remain -= count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
846 if (remain == 0)
847 break;
848
849 status = readl(base + MMCISTATUS);
850 } while (status & MCI_RXDATAAVLBL);
851
852 return ptr - buffer;
853}
854
855static int mmci_pio_write(struct mmci_host *host, char *buffer, unsigned int remain, u32 status)
856{
Rabin Vincent8301bb62010-08-09 12:57:30 +0100857 struct variant_data *variant = host->variant;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 void __iomem *base = host->base;
859 char *ptr = buffer;
860
861 do {
862 unsigned int count, maxcnt;
863
Rabin Vincent8301bb62010-08-09 12:57:30 +0100864 maxcnt = status & MCI_TXFIFOEMPTY ?
865 variant->fifosize : variant->fifohalfsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 count = min(remain, maxcnt);
867
Linus Walleij34177802010-10-19 12:43:58 +0100868 /*
869 * The ST Micro variant for SDIO transfer sizes
870 * less then 8 bytes should have clock H/W flow
871 * control disabled.
872 */
873 if (variant->sdio &&
874 mmc_card_sdio(host->mmc->card)) {
Ulf Hansson7437cfa2012-01-18 09:17:27 +0100875 u32 clk;
Linus Walleij34177802010-10-19 12:43:58 +0100876 if (count < 8)
Ulf Hansson7437cfa2012-01-18 09:17:27 +0100877 clk = host->clk_reg & ~variant->clkreg_enable;
Linus Walleij34177802010-10-19 12:43:58 +0100878 else
Ulf Hansson7437cfa2012-01-18 09:17:27 +0100879 clk = host->clk_reg | variant->clkreg_enable;
880
881 mmci_write_clkreg(host, clk);
Linus Walleij34177802010-10-19 12:43:58 +0100882 }
883
884 /*
885 * SDIO especially may want to send something that is
886 * not divisible by 4 (as opposed to card sectors
887 * etc), and the FIFO only accept full 32-bit writes.
888 * So compensate by adding +3 on the count, a single
889 * byte become a 32bit write, 7 bytes will be two
890 * 32bit writes etc.
891 */
892 writesl(base + MMCIFIFO, ptr, (count + 3) >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
894 ptr += count;
895 remain -= count;
896
897 if (remain == 0)
898 break;
899
900 status = readl(base + MMCISTATUS);
901 } while (status & MCI_TXFIFOHALFEMPTY);
902
903 return ptr - buffer;
904}
905
906/*
907 * PIO data transfer IRQ handler.
908 */
David Howells7d12e782006-10-05 14:55:46 +0100909static irqreturn_t mmci_pio_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910{
911 struct mmci_host *host = dev_id;
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100912 struct sg_mapping_iter *sg_miter = &host->sg_miter;
Rabin Vincent8301bb62010-08-09 12:57:30 +0100913 struct variant_data *variant = host->variant;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 void __iomem *base = host->base;
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100915 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 u32 status;
917
918 status = readl(base + MMCISTATUS);
919
Linus Walleij64de0282010-02-19 01:09:10 +0100920 dev_dbg(mmc_dev(host->mmc), "irq1 (pio) %08x\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100922 local_irq_save(flags);
923
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 unsigned int remain, len;
926 char *buffer;
927
928 /*
929 * For write, we only need to test the half-empty flag
930 * here - if the FIFO is completely empty, then by
931 * definition it is more than half empty.
932 *
933 * For read, check for data available.
934 */
935 if (!(status & (MCI_TXFIFOHALFEMPTY|MCI_RXDATAAVLBL)))
936 break;
937
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100938 if (!sg_miter_next(sg_miter))
939 break;
940
941 buffer = sg_miter->addr;
942 remain = sg_miter->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
944 len = 0;
945 if (status & MCI_RXACTIVE)
946 len = mmci_pio_read(host, buffer, remain);
947 if (status & MCI_TXACTIVE)
948 len = mmci_pio_write(host, buffer, remain, status);
949
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100950 sg_miter->consumed = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 host->size -= len;
953 remain -= len;
954
955 if (remain)
956 break;
957
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 status = readl(base + MMCISTATUS);
959 } while (1);
960
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100961 sg_miter_stop(sg_miter);
962
963 local_irq_restore(flags);
964
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 /*
Russell Kingc4d877c2011-01-27 09:50:13 +0000966 * If we have less than the fifo 'half-full' threshold to transfer,
967 * trigger a PIO interrupt as soon as any data is available.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 */
Russell Kingc4d877c2011-01-27 09:50:13 +0000969 if (status & MCI_RXACTIVE && host->size < variant->fifohalfsize)
Linus Walleij2686b4b2010-10-19 12:39:48 +0100970 mmci_set_mask1(host, MCI_RXDATAAVLBLMASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
972 /*
973 * If we run out of data, disable the data IRQs; this
974 * prevents a race where the FIFO becomes empty before
975 * the chip itself has disabled the data path, and
976 * stops us racing with our data end IRQ.
977 */
978 if (host->size == 0) {
Linus Walleij2686b4b2010-10-19 12:39:48 +0100979 mmci_set_mask1(host, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 writel(readl(base + MMCIMASK0) | MCI_DATAENDMASK, base + MMCIMASK0);
981 }
982
983 return IRQ_HANDLED;
984}
985
986/*
987 * Handle completion of command and data transfers.
988 */
David Howells7d12e782006-10-05 14:55:46 +0100989static irqreturn_t mmci_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990{
991 struct mmci_host *host = dev_id;
992 u32 status;
993 int ret = 0;
994
995 spin_lock(&host->lock);
996
997 do {
998 struct mmc_command *cmd;
999 struct mmc_data *data;
1000
1001 status = readl(host->base + MMCISTATUS);
Linus Walleij2686b4b2010-10-19 12:39:48 +01001002
1003 if (host->singleirq) {
1004 if (status & readl(host->base + MMCIMASK1))
1005 mmci_pio_irq(irq, dev_id);
1006
1007 status &= ~MCI_IRQ1MASK;
1008 }
1009
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 status &= readl(host->base + MMCIMASK0);
1011 writel(status, host->base + MMCICLEAR);
1012
Linus Walleij64de0282010-02-19 01:09:10 +01001013 dev_dbg(mmc_dev(host->mmc), "irq0 (data+cmd) %08x\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
1015 data = host->data;
Ulf Hanssonb63038d2011-12-13 16:51:04 +01001016 if (status & (MCI_DATACRCFAIL|MCI_DATATIMEOUT|MCI_STARTBITERR|
1017 MCI_TXUNDERRUN|MCI_RXOVERRUN|MCI_DATAEND|
1018 MCI_DATABLOCKEND) && data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 mmci_data_irq(host, data, status);
1020
1021 cmd = host->cmd;
1022 if (status & (MCI_CMDCRCFAIL|MCI_CMDTIMEOUT|MCI_CMDSENT|MCI_CMDRESPEND) && cmd)
1023 mmci_cmd_irq(host, cmd, status);
1024
1025 ret = 1;
1026 } while (status);
1027
1028 spin_unlock(&host->lock);
1029
1030 return IRQ_RETVAL(ret);
1031}
1032
1033static void mmci_request(struct mmc_host *mmc, struct mmc_request *mrq)
1034{
1035 struct mmci_host *host = mmc_priv(mmc);
Linus Walleij9e943022008-10-24 21:17:50 +01001036 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037
1038 WARN_ON(host->mrq != NULL);
1039
Nicolas Pitre019a5f52007-10-11 01:06:03 -04001040 if (mrq->data && !is_power_of_2(mrq->data->blksz)) {
Linus Walleij64de0282010-02-19 01:09:10 +01001041 dev_err(mmc_dev(mmc), "unsupported block size (%d bytes)\n",
1042 mrq->data->blksz);
Pierre Ossman255d01a2007-07-24 20:38:53 +02001043 mrq->cmd->error = -EINVAL;
1044 mmc_request_done(mmc, mrq);
1045 return;
1046 }
1047
Russell King1c3be362011-08-14 09:17:05 +01001048 pm_runtime_get_sync(mmc_dev(mmc));
1049
Linus Walleij9e943022008-10-24 21:17:50 +01001050 spin_lock_irqsave(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051
1052 host->mrq = mrq;
1053
Per Forlin58c7ccb2011-07-01 18:55:24 +02001054 if (mrq->data)
1055 mmci_get_next_data(host, mrq->data);
1056
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 if (mrq->data && mrq->data->flags & MMC_DATA_READ)
1058 mmci_start_data(host, mrq->data);
1059
1060 mmci_start_command(host, mrq->cmd, 0);
1061
Linus Walleij9e943022008-10-24 21:17:50 +01001062 spin_unlock_irqrestore(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063}
1064
1065static void mmci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
1066{
1067 struct mmci_host *host = mmc_priv(mmc);
Ulf Hansson7d72a1d2011-12-13 16:54:55 +01001068 struct variant_data *variant = host->variant;
Linus Walleija6a64642009-09-14 12:56:14 +01001069 u32 pwr = 0;
1070 unsigned long flags;
Linus Walleij99fc5132010-09-29 01:08:27 -04001071 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001073 pm_runtime_get_sync(mmc_dev(mmc));
1074
Ulf Hanssonbc521812011-12-13 16:57:55 +01001075 if (host->plat->ios_handler &&
1076 host->plat->ios_handler(mmc_dev(mmc), ios))
1077 dev_err(mmc_dev(mmc), "platform ios_handler failed\n");
1078
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 switch (ios->power_mode) {
1080 case MMC_POWER_OFF:
Linus Walleij99fc5132010-09-29 01:08:27 -04001081 if (host->vcc)
1082 ret = mmc_regulator_set_ocr(mmc, host->vcc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 break;
1084 case MMC_POWER_UP:
Linus Walleij99fc5132010-09-29 01:08:27 -04001085 if (host->vcc) {
1086 ret = mmc_regulator_set_ocr(mmc, host->vcc, ios->vdd);
1087 if (ret) {
1088 dev_err(mmc_dev(mmc), "unable to set OCR\n");
1089 /*
1090 * The .set_ios() function in the mmc_host_ops
1091 * struct return void, and failing to set the
1092 * power should be rare so we print an error
1093 * and return here.
1094 */
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001095 goto out;
Linus Walleij99fc5132010-09-29 01:08:27 -04001096 }
1097 }
Ulf Hansson7d72a1d2011-12-13 16:54:55 +01001098 /*
1099 * The ST Micro variant doesn't have the PL180s MCI_PWR_UP
1100 * and instead uses MCI_PWR_ON so apply whatever value is
1101 * configured in the variant data.
1102 */
1103 pwr |= variant->pwrreg_powerup;
1104
1105 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 case MMC_POWER_ON:
1107 pwr |= MCI_PWR_ON;
1108 break;
1109 }
1110
Ulf Hansson4d1a3a02011-12-13 16:57:07 +01001111 if (variant->signal_direction && ios->power_mode != MMC_POWER_OFF) {
1112 /*
1113 * The ST Micro variant has some additional bits
1114 * indicating signal direction for the signals in
1115 * the SD/MMC bus and feedback-clock usage.
1116 */
1117 pwr |= host->plat->sigdir;
1118
1119 if (ios->bus_width == MMC_BUS_WIDTH_4)
1120 pwr &= ~MCI_ST_DATA74DIREN;
1121 else if (ios->bus_width == MMC_BUS_WIDTH_1)
1122 pwr &= (~MCI_ST_DATA74DIREN &
1123 ~MCI_ST_DATA31DIREN &
1124 ~MCI_ST_DATA2DIREN);
1125 }
1126
Linus Walleijcc30d602009-01-04 15:18:54 +01001127 if (ios->bus_mode == MMC_BUSMODE_OPENDRAIN) {
Linus Walleijf17a1f02009-08-04 01:01:02 +01001128 if (host->hw_designer != AMBA_VENDOR_ST)
Linus Walleijcc30d602009-01-04 15:18:54 +01001129 pwr |= MCI_ROD;
1130 else {
1131 /*
1132 * The ST Micro variant use the ROD bit for something
1133 * else and only has OD (Open Drain).
1134 */
1135 pwr |= MCI_OD;
1136 }
1137 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138
Linus Walleija6a64642009-09-14 12:56:14 +01001139 spin_lock_irqsave(&host->lock, flags);
1140
1141 mmci_set_clkreg(host, ios->clock);
Ulf Hansson7437cfa2012-01-18 09:17:27 +01001142 mmci_write_pwrreg(host, pwr);
Linus Walleija6a64642009-09-14 12:56:14 +01001143
1144 spin_unlock_irqrestore(&host->lock, flags);
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001145
1146 out:
1147 pm_runtime_mark_last_busy(mmc_dev(mmc));
1148 pm_runtime_put_autosuspend(mmc_dev(mmc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149}
1150
Russell King89001442009-07-09 15:16:07 +01001151static int mmci_get_ro(struct mmc_host *mmc)
1152{
1153 struct mmci_host *host = mmc_priv(mmc);
1154
1155 if (host->gpio_wp == -ENOSYS)
1156 return -ENOSYS;
1157
Linus Walleij18a063012010-09-12 12:56:44 +01001158 return gpio_get_value_cansleep(host->gpio_wp);
Russell King89001442009-07-09 15:16:07 +01001159}
1160
1161static int mmci_get_cd(struct mmc_host *mmc)
1162{
1163 struct mmci_host *host = mmc_priv(mmc);
Rabin Vincent29719442010-08-09 12:54:43 +01001164 struct mmci_platform_data *plat = host->plat;
Russell King89001442009-07-09 15:16:07 +01001165 unsigned int status;
1166
Rabin Vincent4b8caec2010-08-09 12:56:40 +01001167 if (host->gpio_cd == -ENOSYS) {
1168 if (!plat->status)
1169 return 1; /* Assume always present */
1170
Rabin Vincent29719442010-08-09 12:54:43 +01001171 status = plat->status(mmc_dev(host->mmc));
Rabin Vincent4b8caec2010-08-09 12:56:40 +01001172 } else
Linus Walleij18a063012010-09-12 12:56:44 +01001173 status = !!gpio_get_value_cansleep(host->gpio_cd)
1174 ^ plat->cd_invert;
Russell King89001442009-07-09 15:16:07 +01001175
Russell King74bc8092010-07-29 15:58:59 +01001176 /*
1177 * Use positive logic throughout - status is zero for no card,
1178 * non-zero for card inserted.
1179 */
1180 return status;
Russell King89001442009-07-09 15:16:07 +01001181}
1182
Rabin Vincent148b8b32010-08-09 12:55:48 +01001183static irqreturn_t mmci_cd_irq(int irq, void *dev_id)
1184{
1185 struct mmci_host *host = dev_id;
1186
1187 mmc_detect_change(host->mmc, msecs_to_jiffies(500));
1188
1189 return IRQ_HANDLED;
1190}
1191
David Brownellab7aefd2006-11-12 17:55:30 -08001192static const struct mmc_host_ops mmci_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 .request = mmci_request,
Per Forlin58c7ccb2011-07-01 18:55:24 +02001194 .pre_req = mmci_pre_request,
1195 .post_req = mmci_post_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 .set_ios = mmci_set_ios,
Russell King89001442009-07-09 15:16:07 +01001197 .get_ro = mmci_get_ro,
1198 .get_cd = mmci_get_cd,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199};
1200
Lee Jones000bc9d2012-04-16 10:18:43 +01001201#ifdef CONFIG_OF
1202static void mmci_dt_populate_generic_pdata(struct device_node *np,
1203 struct mmci_platform_data *pdata)
1204{
1205 int bus_width = 0;
1206
Lee Jones9a597012012-04-12 16:51:13 +01001207 pdata->gpio_wp = of_get_named_gpio(np, "wp-gpios", 0);
Lee Jones000bc9d2012-04-16 10:18:43 +01001208 if (!pdata->gpio_wp)
1209 pdata->gpio_wp = -1;
1210
Lee Jones9a597012012-04-12 16:51:13 +01001211 pdata->gpio_cd = of_get_named_gpio(np, "cd-gpios", 0);
Lee Jones000bc9d2012-04-16 10:18:43 +01001212 if (!pdata->gpio_cd)
1213 pdata->gpio_cd = -1;
1214
1215 if (of_get_property(np, "cd-inverted", NULL))
1216 pdata->cd_invert = true;
1217 else
1218 pdata->cd_invert = false;
1219
1220 of_property_read_u32(np, "max-frequency", &pdata->f_max);
1221 if (!pdata->f_max)
1222 pr_warn("%s has no 'max-frequency' property\n", np->full_name);
1223
1224 if (of_get_property(np, "mmc-cap-mmc-highspeed", NULL))
1225 pdata->capabilities |= MMC_CAP_MMC_HIGHSPEED;
1226 if (of_get_property(np, "mmc-cap-sd-highspeed", NULL))
1227 pdata->capabilities |= MMC_CAP_SD_HIGHSPEED;
1228
1229 of_property_read_u32(np, "bus-width", &bus_width);
1230 switch (bus_width) {
1231 case 0 :
1232 /* No bus-width supplied. */
1233 break;
1234 case 4 :
1235 pdata->capabilities |= MMC_CAP_4_BIT_DATA;
1236 break;
1237 case 8 :
1238 pdata->capabilities |= MMC_CAP_8_BIT_DATA;
1239 break;
1240 default :
1241 pr_warn("%s: Unsupported bus width\n", np->full_name);
1242 }
1243}
Lee Jonesc0a120a2012-05-08 13:59:38 +01001244#else
1245static void mmci_dt_populate_generic_pdata(struct device_node *np,
1246 struct mmci_platform_data *pdata)
1247{
1248 return;
1249}
Lee Jones000bc9d2012-04-16 10:18:43 +01001250#endif
1251
Russell Kingaa25afa2011-02-19 15:55:00 +00001252static int __devinit mmci_probe(struct amba_device *dev,
1253 const struct amba_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254{
Linus Walleij6ef297f2009-09-22 14:29:36 +01001255 struct mmci_platform_data *plat = dev->dev.platform_data;
Lee Jones000bc9d2012-04-16 10:18:43 +01001256 struct device_node *np = dev->dev.of_node;
Rabin Vincent4956e102010-07-21 12:54:40 +01001257 struct variant_data *variant = id->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 struct mmci_host *host;
1259 struct mmc_host *mmc;
1260 int ret;
1261
Lee Jones000bc9d2012-04-16 10:18:43 +01001262 /* Must have platform data or Device Tree. */
1263 if (!plat && !np) {
1264 dev_err(&dev->dev, "No plat data or DT found\n");
1265 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 }
1267
Lee Jones000bc9d2012-04-16 10:18:43 +01001268 if (np)
1269 mmci_dt_populate_generic_pdata(np, plat);
1270
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 ret = amba_request_regions(dev, DRIVER_NAME);
1272 if (ret)
1273 goto out;
1274
1275 mmc = mmc_alloc_host(sizeof(struct mmci_host), &dev->dev);
1276 if (!mmc) {
1277 ret = -ENOMEM;
1278 goto rel_regions;
1279 }
1280
1281 host = mmc_priv(mmc);
Rabin Vincent4ea580f2009-04-17 08:44:19 +05301282 host->mmc = mmc;
Russell King012b7d32009-07-09 15:13:56 +01001283
Russell King89001442009-07-09 15:16:07 +01001284 host->gpio_wp = -ENOSYS;
1285 host->gpio_cd = -ENOSYS;
Rabin Vincent148b8b32010-08-09 12:55:48 +01001286 host->gpio_cd_irq = -1;
Russell King89001442009-07-09 15:16:07 +01001287
Russell King012b7d32009-07-09 15:13:56 +01001288 host->hw_designer = amba_manf(dev);
1289 host->hw_revision = amba_rev(dev);
Linus Walleij64de0282010-02-19 01:09:10 +01001290 dev_dbg(mmc_dev(mmc), "designer ID = 0x%02x\n", host->hw_designer);
1291 dev_dbg(mmc_dev(mmc), "revision = 0x%01x\n", host->hw_revision);
Russell King012b7d32009-07-09 15:13:56 +01001292
Russell Kingee569c42008-11-30 17:38:14 +00001293 host->clk = clk_get(&dev->dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 if (IS_ERR(host->clk)) {
1295 ret = PTR_ERR(host->clk);
1296 host->clk = NULL;
1297 goto host_free;
1298 }
1299
Russell King52ca0f32011-09-22 11:36:41 +01001300 ret = clk_prepare(host->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 if (ret)
Russell Kinga8d35842006-01-03 18:41:37 +00001302 goto clk_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
Russell King52ca0f32011-09-22 11:36:41 +01001304 ret = clk_enable(host->clk);
1305 if (ret)
1306 goto clk_unprep;
1307
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 host->plat = plat;
Rabin Vincent4956e102010-07-21 12:54:40 +01001309 host->variant = variant;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 host->mclk = clk_get_rate(host->clk);
Linus Walleijc8df9a52008-04-29 09:34:07 +01001311 /*
1312 * According to the spec, mclk is max 100 MHz,
1313 * so we try to adjust the clock down to this,
1314 * (if possible).
1315 */
1316 if (host->mclk > 100000000) {
1317 ret = clk_set_rate(host->clk, 100000000);
1318 if (ret < 0)
1319 goto clk_disable;
1320 host->mclk = clk_get_rate(host->clk);
Linus Walleij64de0282010-02-19 01:09:10 +01001321 dev_dbg(mmc_dev(mmc), "eventual mclk rate: %u Hz\n",
1322 host->mclk);
Linus Walleijc8df9a52008-04-29 09:34:07 +01001323 }
Russell Kingc8ebae32011-01-11 19:35:53 +00001324 host->phybase = dev->res.start;
Linus Walleijdc890c22009-06-07 23:27:31 +01001325 host->base = ioremap(dev->res.start, resource_size(&dev->res));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 if (!host->base) {
1327 ret = -ENOMEM;
1328 goto clk_disable;
1329 }
1330
1331 mmc->ops = &mmci_ops;
Linus Walleij7f294e42011-07-08 09:57:15 +01001332 /*
1333 * The ARM and ST versions of the block have slightly different
1334 * clock divider equations which means that the minimum divider
1335 * differs too.
1336 */
1337 if (variant->st_clkdiv)
1338 mmc->f_min = DIV_ROUND_UP(host->mclk, 257);
1339 else
1340 mmc->f_min = DIV_ROUND_UP(host->mclk, 512);
Linus Walleij808d97c2010-04-08 07:39:38 +01001341 /*
1342 * If the platform data supplies a maximum operating
1343 * frequency, this takes precedence. Else, we fall back
1344 * to using the module parameter, which has a (low)
1345 * default value in case it is not specified. Either
1346 * value must not exceed the clock rate into the block,
1347 * of course.
1348 */
1349 if (plat->f_max)
1350 mmc->f_max = min(host->mclk, plat->f_max);
1351 else
1352 mmc->f_max = min(host->mclk, fmax);
Linus Walleij64de0282010-02-19 01:09:10 +01001353 dev_dbg(mmc_dev(mmc), "clocking block at %u Hz\n", mmc->f_max);
1354
Linus Walleij34e84f32009-09-22 14:41:40 +01001355#ifdef CONFIG_REGULATOR
1356 /* If we're using the regulator framework, try to fetch a regulator */
1357 host->vcc = regulator_get(&dev->dev, "vmmc");
1358 if (IS_ERR(host->vcc))
1359 host->vcc = NULL;
1360 else {
1361 int mask = mmc_regulator_get_ocrmask(host->vcc);
1362
1363 if (mask < 0)
1364 dev_err(&dev->dev, "error getting OCR mask (%d)\n",
1365 mask);
1366 else {
1367 host->mmc->ocr_avail = (u32) mask;
1368 if (plat->ocr_mask)
1369 dev_warn(&dev->dev,
1370 "Provided ocr_mask/setpower will not be used "
1371 "(using regulator instead)\n");
1372 }
1373 }
1374#endif
1375 /* Fall back to platform data if no regulator is found */
1376 if (host->vcc == NULL)
1377 mmc->ocr_avail = plat->ocr_mask;
Linus Walleij9e6c82c2009-09-14 12:57:11 +01001378 mmc->caps = plat->capabilities;
Per Forlin5a092622011-11-14 12:02:28 +01001379 mmc->caps2 = plat->capabilities2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
1381 /*
1382 * We can do SGIO
1383 */
Martin K. Petersena36274e2010-09-10 01:33:59 -04001384 mmc->max_segs = NR_SG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
1386 /*
Rabin Vincent08458ef2010-07-21 12:55:59 +01001387 * Since only a certain number of bits are valid in the data length
1388 * register, we must ensure that we don't exceed 2^num-1 bytes in a
1389 * single request.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 */
Rabin Vincent08458ef2010-07-21 12:55:59 +01001391 mmc->max_req_size = (1 << variant->datalength_bits) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392
1393 /*
1394 * Set the maximum segment size. Since we aren't doing DMA
1395 * (yet) we are only limited by the data length register.
1396 */
Pierre Ossman55db8902006-11-21 17:55:45 +01001397 mmc->max_seg_size = mmc->max_req_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +01001399 /*
1400 * Block size can be up to 2048 bytes, but must be a power of two.
1401 */
Will Deacon8f7f6b7e2012-02-24 11:25:21 +00001402 mmc->max_blk_size = 1 << 11;
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +01001403
Pierre Ossman55db8902006-11-21 17:55:45 +01001404 /*
Will Deacon8f7f6b7e2012-02-24 11:25:21 +00001405 * Limit the number of blocks transferred so that we don't overflow
1406 * the maximum request size.
Pierre Ossman55db8902006-11-21 17:55:45 +01001407 */
Will Deacon8f7f6b7e2012-02-24 11:25:21 +00001408 mmc->max_blk_count = mmc->max_req_size >> 11;
Pierre Ossman55db8902006-11-21 17:55:45 +01001409
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 spin_lock_init(&host->lock);
1411
1412 writel(0, host->base + MMCIMASK0);
1413 writel(0, host->base + MMCIMASK1);
1414 writel(0xfff, host->base + MMCICLEAR);
1415
Russell King89001442009-07-09 15:16:07 +01001416 if (gpio_is_valid(plat->gpio_cd)) {
1417 ret = gpio_request(plat->gpio_cd, DRIVER_NAME " (cd)");
1418 if (ret == 0)
1419 ret = gpio_direction_input(plat->gpio_cd);
1420 if (ret == 0)
1421 host->gpio_cd = plat->gpio_cd;
1422 else if (ret != -ENOSYS)
1423 goto err_gpio_cd;
Rabin Vincent148b8b32010-08-09 12:55:48 +01001424
Linus Walleij17ee0832011-05-05 17:23:10 +01001425 /*
1426 * A gpio pin that will detect cards when inserted and removed
1427 * will most likely want to trigger on the edges if it is
1428 * 0 when ejected and 1 when inserted (or mutatis mutandis
1429 * for the inverted case) so we request triggers on both
1430 * edges.
1431 */
Rabin Vincent148b8b32010-08-09 12:55:48 +01001432 ret = request_any_context_irq(gpio_to_irq(plat->gpio_cd),
Linus Walleij17ee0832011-05-05 17:23:10 +01001433 mmci_cd_irq,
1434 IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING,
1435 DRIVER_NAME " (cd)", host);
Rabin Vincent148b8b32010-08-09 12:55:48 +01001436 if (ret >= 0)
1437 host->gpio_cd_irq = gpio_to_irq(plat->gpio_cd);
Russell King89001442009-07-09 15:16:07 +01001438 }
1439 if (gpio_is_valid(plat->gpio_wp)) {
1440 ret = gpio_request(plat->gpio_wp, DRIVER_NAME " (wp)");
1441 if (ret == 0)
1442 ret = gpio_direction_input(plat->gpio_wp);
1443 if (ret == 0)
1444 host->gpio_wp = plat->gpio_wp;
1445 else if (ret != -ENOSYS)
1446 goto err_gpio_wp;
1447 }
1448
Rabin Vincent4b8caec2010-08-09 12:56:40 +01001449 if ((host->plat->status || host->gpio_cd != -ENOSYS)
1450 && host->gpio_cd_irq < 0)
Rabin Vincent148b8b32010-08-09 12:55:48 +01001451 mmc->caps |= MMC_CAP_NEEDS_POLL;
1452
Thomas Gleixnerdace1452006-07-01 19:29:38 -07001453 ret = request_irq(dev->irq[0], mmci_irq, IRQF_SHARED, DRIVER_NAME " (cmd)", host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 if (ret)
1455 goto unmap;
1456
Russell King023f1172011-12-18 11:31:51 +00001457 if (dev->irq[1] == NO_IRQ || !dev->irq[1])
Linus Walleij2686b4b2010-10-19 12:39:48 +01001458 host->singleirq = true;
1459 else {
1460 ret = request_irq(dev->irq[1], mmci_pio_irq, IRQF_SHARED,
1461 DRIVER_NAME " (pio)", host);
1462 if (ret)
1463 goto irq0_free;
1464 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
Linus Walleij8cb28152011-01-24 15:22:13 +01001466 writel(MCI_IRQENABLE, host->base + MMCIMASK0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467
1468 amba_set_drvdata(dev, mmc);
1469
Russell Kingc8ebae32011-01-11 19:35:53 +00001470 dev_info(&dev->dev, "%s: PL%03x manf %x rev%u at 0x%08llx irq %d,%d (pio)\n",
1471 mmc_hostname(mmc), amba_part(dev), amba_manf(dev),
1472 amba_rev(dev), (unsigned long long)dev->res.start,
1473 dev->irq[0], dev->irq[1]);
1474
1475 mmci_dma_setup(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001477 pm_runtime_set_autosuspend_delay(&dev->dev, 50);
1478 pm_runtime_use_autosuspend(&dev->dev);
Russell King1c3be362011-08-14 09:17:05 +01001479 pm_runtime_put(&dev->dev);
1480
Russell King8c11a942010-12-28 19:40:40 +00001481 mmc_add_host(mmc);
1482
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 return 0;
1484
1485 irq0_free:
1486 free_irq(dev->irq[0], host);
1487 unmap:
Russell King89001442009-07-09 15:16:07 +01001488 if (host->gpio_wp != -ENOSYS)
1489 gpio_free(host->gpio_wp);
1490 err_gpio_wp:
Rabin Vincent148b8b32010-08-09 12:55:48 +01001491 if (host->gpio_cd_irq >= 0)
1492 free_irq(host->gpio_cd_irq, host);
Russell King89001442009-07-09 15:16:07 +01001493 if (host->gpio_cd != -ENOSYS)
1494 gpio_free(host->gpio_cd);
1495 err_gpio_cd:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 iounmap(host->base);
1497 clk_disable:
1498 clk_disable(host->clk);
Russell King52ca0f32011-09-22 11:36:41 +01001499 clk_unprep:
1500 clk_unprepare(host->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 clk_free:
1502 clk_put(host->clk);
1503 host_free:
1504 mmc_free_host(mmc);
1505 rel_regions:
1506 amba_release_regions(dev);
1507 out:
1508 return ret;
1509}
1510
Linus Walleij6dc4a472009-03-07 00:23:52 +01001511static int __devexit mmci_remove(struct amba_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512{
1513 struct mmc_host *mmc = amba_get_drvdata(dev);
1514
1515 amba_set_drvdata(dev, NULL);
1516
1517 if (mmc) {
1518 struct mmci_host *host = mmc_priv(mmc);
1519
Russell King1c3be362011-08-14 09:17:05 +01001520 /*
1521 * Undo pm_runtime_put() in probe. We use the _sync
1522 * version here so that we can access the primecell.
1523 */
1524 pm_runtime_get_sync(&dev->dev);
1525
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 mmc_remove_host(mmc);
1527
1528 writel(0, host->base + MMCIMASK0);
1529 writel(0, host->base + MMCIMASK1);
1530
1531 writel(0, host->base + MMCICOMMAND);
1532 writel(0, host->base + MMCIDATACTRL);
1533
Russell Kingc8ebae32011-01-11 19:35:53 +00001534 mmci_dma_release(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 free_irq(dev->irq[0], host);
Linus Walleij2686b4b2010-10-19 12:39:48 +01001536 if (!host->singleirq)
1537 free_irq(dev->irq[1], host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538
Russell King89001442009-07-09 15:16:07 +01001539 if (host->gpio_wp != -ENOSYS)
1540 gpio_free(host->gpio_wp);
Rabin Vincent148b8b32010-08-09 12:55:48 +01001541 if (host->gpio_cd_irq >= 0)
1542 free_irq(host->gpio_cd_irq, host);
Russell King89001442009-07-09 15:16:07 +01001543 if (host->gpio_cd != -ENOSYS)
1544 gpio_free(host->gpio_cd);
1545
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 iounmap(host->base);
1547 clk_disable(host->clk);
Russell King52ca0f32011-09-22 11:36:41 +01001548 clk_unprepare(host->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 clk_put(host->clk);
1550
Linus Walleij99fc5132010-09-29 01:08:27 -04001551 if (host->vcc)
1552 mmc_regulator_set_ocr(mmc, host->vcc, 0);
Linus Walleij34e84f32009-09-22 14:41:40 +01001553 regulator_put(host->vcc);
1554
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 mmc_free_host(mmc);
1556
1557 amba_release_regions(dev);
1558 }
1559
1560 return 0;
1561}
1562
Ulf Hansson48fa7002011-12-13 16:59:34 +01001563#ifdef CONFIG_SUSPEND
1564static int mmci_suspend(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565{
Ulf Hansson48fa7002011-12-13 16:59:34 +01001566 struct amba_device *adev = to_amba_device(dev);
1567 struct mmc_host *mmc = amba_get_drvdata(adev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 int ret = 0;
1569
1570 if (mmc) {
1571 struct mmci_host *host = mmc_priv(mmc);
1572
Matt Fleming1a13f8f2010-05-26 14:42:08 -07001573 ret = mmc_suspend_host(mmc);
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001574 if (ret == 0) {
1575 pm_runtime_get_sync(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 writel(0, host->base + MMCIMASK0);
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001577 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 }
1579
1580 return ret;
1581}
1582
Ulf Hansson48fa7002011-12-13 16:59:34 +01001583static int mmci_resume(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584{
Ulf Hansson48fa7002011-12-13 16:59:34 +01001585 struct amba_device *adev = to_amba_device(dev);
1586 struct mmc_host *mmc = amba_get_drvdata(adev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 int ret = 0;
1588
1589 if (mmc) {
1590 struct mmci_host *host = mmc_priv(mmc);
1591
1592 writel(MCI_IRQENABLE, host->base + MMCIMASK0);
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001593 pm_runtime_put(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594
1595 ret = mmc_resume_host(mmc);
1596 }
1597
1598 return ret;
1599}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600#endif
1601
Ulf Hansson48fa7002011-12-13 16:59:34 +01001602static const struct dev_pm_ops mmci_dev_pm_ops = {
1603 SET_SYSTEM_SLEEP_PM_OPS(mmci_suspend, mmci_resume)
1604};
1605
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606static struct amba_id mmci_ids[] = {
1607 {
1608 .id = 0x00041180,
Pawel Moll768fbc12011-03-11 17:18:07 +00001609 .mask = 0xff0fffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001610 .data = &variant_arm,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 },
1612 {
Pawel Moll768fbc12011-03-11 17:18:07 +00001613 .id = 0x01041180,
1614 .mask = 0xff0fffff,
1615 .data = &variant_arm_extended_fifo,
1616 },
1617 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 .id = 0x00041181,
1619 .mask = 0x000fffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001620 .data = &variant_arm,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 },
Linus Walleijcc30d602009-01-04 15:18:54 +01001622 /* ST Micro variants */
1623 {
1624 .id = 0x00180180,
1625 .mask = 0x00ffffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001626 .data = &variant_u300,
Linus Walleijcc30d602009-01-04 15:18:54 +01001627 },
1628 {
1629 .id = 0x00280180,
1630 .mask = 0x00ffffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001631 .data = &variant_u300,
1632 },
1633 {
1634 .id = 0x00480180,
Philippe Langlais1784b152011-03-25 08:51:52 +01001635 .mask = 0xf0ffffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001636 .data = &variant_ux500,
Linus Walleijcc30d602009-01-04 15:18:54 +01001637 },
Philippe Langlais1784b152011-03-25 08:51:52 +01001638 {
1639 .id = 0x10480180,
1640 .mask = 0xf0ffffff,
1641 .data = &variant_ux500v2,
1642 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 { 0, 0 },
1644};
1645
Dave Martin9f998352011-10-05 15:15:21 +01001646MODULE_DEVICE_TABLE(amba, mmci_ids);
1647
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648static struct amba_driver mmci_driver = {
1649 .drv = {
1650 .name = DRIVER_NAME,
Ulf Hansson48fa7002011-12-13 16:59:34 +01001651 .pm = &mmci_dev_pm_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 },
1653 .probe = mmci_probe,
Linus Walleij6dc4a472009-03-07 00:23:52 +01001654 .remove = __devexit_p(mmci_remove),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 .id_table = mmci_ids,
1656};
1657
viresh kumar9e5ed092012-03-15 10:40:38 +01001658module_amba_driver(mmci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660module_param(fmax, uint, 0444);
1661
1662MODULE_DESCRIPTION("ARM PrimeCell PL180/181 Multimedia Card Interface driver");
1663MODULE_LICENSE("GPL");