blob: 5a7da175201c1a9377864f38ac4102e65ff7ba35 [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>
Linus Walleij34e84f32009-09-22 14:41:40 +010029#include <linux/regulator/consumer.h>
Russell Kingc8ebae32011-01-11 19:35:53 +000030#include <linux/dmaengine.h>
31#include <linux/dma-mapping.h>
32#include <linux/amba/mmci.h>
Russell King1c3be362011-08-14 09:17:05 +010033#include <linux/pm_runtime.h>
Viresh Kumar258aea72012-02-01 16:12:19 +053034#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Russell King7b09cda2005-07-01 12:02:59 +010036#include <asm/div64.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <asm/io.h>
Russell Kingc6b8fda2005-10-28 14:05:16 +010038#include <asm/sizes.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40#include "mmci.h"
41
42#define DRIVER_NAME "mmci-pl18x"
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044static unsigned int fmax = 515633;
45
Rabin Vincent4956e102010-07-21 12:54:40 +010046/**
47 * struct variant_data - MMCI variant-specific quirks
48 * @clkreg: default value for MCICLOCK register
Rabin Vincent4380c142010-07-21 12:55:18 +010049 * @clkreg_enable: enable value for MMCICLOCK register
Rabin Vincent08458ef2010-07-21 12:55:59 +010050 * @datalength_bits: number of bits in the MMCIDATALENGTH register
Rabin Vincent8301bb62010-08-09 12:57:30 +010051 * @fifosize: number of bytes that can be written when MMCI_TXFIFOEMPTY
52 * is asserted (likewise for RX)
53 * @fifohalfsize: number of bytes that can be written when MCI_TXFIFOHALFEMPTY
54 * is asserted (likewise for RX)
Linus Walleij34177802010-10-19 12:43:58 +010055 * @sdio: variant supports SDIO
Linus Walleijb70a67f2010-12-06 09:24:14 +010056 * @st_clkdiv: true if using a ST-specific clock divider algorithm
Philippe Langlais1784b152011-03-25 08:51:52 +010057 * @blksz_datactrl16: true if Block size is at b16..b30 position in datactrl register
Ulf Hansson7d72a1d2011-12-13 16:54:55 +010058 * @pwrreg_powerup: power up value for MMCIPOWER register
Ulf Hansson4d1a3a02011-12-13 16:57:07 +010059 * @signal_direction: input/out direction of bus signals can be indicated
Rabin Vincent4956e102010-07-21 12:54:40 +010060 */
61struct variant_data {
62 unsigned int clkreg;
Rabin Vincent4380c142010-07-21 12:55:18 +010063 unsigned int clkreg_enable;
Rabin Vincent08458ef2010-07-21 12:55:59 +010064 unsigned int datalength_bits;
Rabin Vincent8301bb62010-08-09 12:57:30 +010065 unsigned int fifosize;
66 unsigned int fifohalfsize;
Linus Walleij34177802010-10-19 12:43:58 +010067 bool sdio;
Linus Walleijb70a67f2010-12-06 09:24:14 +010068 bool st_clkdiv;
Philippe Langlais1784b152011-03-25 08:51:52 +010069 bool blksz_datactrl16;
Ulf Hansson7d72a1d2011-12-13 16:54:55 +010070 u32 pwrreg_powerup;
Ulf Hansson4d1a3a02011-12-13 16:57:07 +010071 bool signal_direction;
Rabin Vincent4956e102010-07-21 12:54:40 +010072};
73
74static struct variant_data variant_arm = {
Rabin Vincent8301bb62010-08-09 12:57:30 +010075 .fifosize = 16 * 4,
76 .fifohalfsize = 8 * 4,
Rabin Vincent08458ef2010-07-21 12:55:59 +010077 .datalength_bits = 16,
Ulf Hansson7d72a1d2011-12-13 16:54:55 +010078 .pwrreg_powerup = MCI_PWR_UP,
Rabin Vincent4956e102010-07-21 12:54:40 +010079};
80
Pawel Moll768fbc12011-03-11 17:18:07 +000081static struct variant_data variant_arm_extended_fifo = {
82 .fifosize = 128 * 4,
83 .fifohalfsize = 64 * 4,
84 .datalength_bits = 16,
Ulf Hansson7d72a1d2011-12-13 16:54:55 +010085 .pwrreg_powerup = MCI_PWR_UP,
Pawel Moll768fbc12011-03-11 17:18:07 +000086};
87
Rabin Vincent4956e102010-07-21 12:54:40 +010088static struct variant_data variant_u300 = {
Rabin Vincent8301bb62010-08-09 12:57:30 +010089 .fifosize = 16 * 4,
90 .fifohalfsize = 8 * 4,
Linus Walleij49ac2152011-03-04 14:54:16 +010091 .clkreg_enable = MCI_ST_U300_HWFCEN,
Rabin Vincent08458ef2010-07-21 12:55:59 +010092 .datalength_bits = 16,
Linus Walleij34177802010-10-19 12:43:58 +010093 .sdio = true,
Ulf Hansson7d72a1d2011-12-13 16:54:55 +010094 .pwrreg_powerup = MCI_PWR_ON,
Ulf Hansson4d1a3a02011-12-13 16:57:07 +010095 .signal_direction = true,
Rabin Vincent4956e102010-07-21 12:54:40 +010096};
97
98static struct variant_data variant_ux500 = {
Rabin Vincent8301bb62010-08-09 12:57:30 +010099 .fifosize = 30 * 4,
100 .fifohalfsize = 8 * 4,
Rabin Vincent4956e102010-07-21 12:54:40 +0100101 .clkreg = MCI_CLK_ENABLE,
Linus Walleij49ac2152011-03-04 14:54:16 +0100102 .clkreg_enable = MCI_ST_UX500_HWFCEN,
Rabin Vincent08458ef2010-07-21 12:55:59 +0100103 .datalength_bits = 24,
Linus Walleij34177802010-10-19 12:43:58 +0100104 .sdio = true,
Linus Walleijb70a67f2010-12-06 09:24:14 +0100105 .st_clkdiv = true,
Ulf Hansson7d72a1d2011-12-13 16:54:55 +0100106 .pwrreg_powerup = MCI_PWR_ON,
Ulf Hansson4d1a3a02011-12-13 16:57:07 +0100107 .signal_direction = true,
Rabin Vincent4956e102010-07-21 12:54:40 +0100108};
Linus Walleijb70a67f2010-12-06 09:24:14 +0100109
Philippe Langlais1784b152011-03-25 08:51:52 +0100110static struct variant_data variant_ux500v2 = {
111 .fifosize = 30 * 4,
112 .fifohalfsize = 8 * 4,
113 .clkreg = MCI_CLK_ENABLE,
114 .clkreg_enable = MCI_ST_UX500_HWFCEN,
115 .datalength_bits = 24,
116 .sdio = true,
117 .st_clkdiv = true,
118 .blksz_datactrl16 = true,
Ulf Hansson7d72a1d2011-12-13 16:54:55 +0100119 .pwrreg_powerup = MCI_PWR_ON,
Ulf Hansson4d1a3a02011-12-13 16:57:07 +0100120 .signal_direction = true,
Philippe Langlais1784b152011-03-25 08:51:52 +0100121};
122
Linus Walleija6a64642009-09-14 12:56:14 +0100123/*
124 * This must be called with host->lock held
125 */
Ulf Hansson7437cfa2012-01-18 09:17:27 +0100126static void mmci_write_clkreg(struct mmci_host *host, u32 clk)
127{
128 if (host->clk_reg != clk) {
129 host->clk_reg = clk;
130 writel(clk, host->base + MMCICLOCK);
131 }
132}
133
134/*
135 * This must be called with host->lock held
136 */
137static void mmci_write_pwrreg(struct mmci_host *host, u32 pwr)
138{
139 if (host->pwr_reg != pwr) {
140 host->pwr_reg = pwr;
141 writel(pwr, host->base + MMCIPOWER);
142 }
143}
144
145/*
146 * This must be called with host->lock held
147 */
Linus Walleija6a64642009-09-14 12:56:14 +0100148static void mmci_set_clkreg(struct mmci_host *host, unsigned int desired)
149{
Rabin Vincent4956e102010-07-21 12:54:40 +0100150 struct variant_data *variant = host->variant;
151 u32 clk = variant->clkreg;
Linus Walleija6a64642009-09-14 12:56:14 +0100152
153 if (desired) {
154 if (desired >= host->mclk) {
Linus Walleij991a86e2010-12-10 09:35:53 +0100155 clk = MCI_CLK_BYPASS;
Linus Walleij399bc482011-04-01 07:59:17 +0100156 if (variant->st_clkdiv)
157 clk |= MCI_ST_UX500_NEG_EDGE;
Linus Walleija6a64642009-09-14 12:56:14 +0100158 host->cclk = host->mclk;
Linus Walleijb70a67f2010-12-06 09:24:14 +0100159 } else if (variant->st_clkdiv) {
160 /*
161 * DB8500 TRM says f = mclk / (clkdiv + 2)
162 * => clkdiv = (mclk / f) - 2
163 * Round the divider up so we don't exceed the max
164 * frequency
165 */
166 clk = DIV_ROUND_UP(host->mclk, desired) - 2;
167 if (clk >= 256)
168 clk = 255;
169 host->cclk = host->mclk / (clk + 2);
Linus Walleija6a64642009-09-14 12:56:14 +0100170 } else {
Linus Walleijb70a67f2010-12-06 09:24:14 +0100171 /*
172 * PL180 TRM says f = mclk / (2 * (clkdiv + 1))
173 * => clkdiv = mclk / (2 * f) - 1
174 */
Linus Walleija6a64642009-09-14 12:56:14 +0100175 clk = host->mclk / (2 * desired) - 1;
176 if (clk >= 256)
177 clk = 255;
178 host->cclk = host->mclk / (2 * (clk + 1));
179 }
Rabin Vincent4380c142010-07-21 12:55:18 +0100180
181 clk |= variant->clkreg_enable;
Linus Walleija6a64642009-09-14 12:56:14 +0100182 clk |= MCI_CLK_ENABLE;
183 /* This hasn't proven to be worthwhile */
184 /* clk |= MCI_CLK_PWRSAVE; */
185 }
186
Linus Walleij9e6c82c2009-09-14 12:57:11 +0100187 if (host->mmc->ios.bus_width == MMC_BUS_WIDTH_4)
Linus Walleij771dc152010-04-08 07:38:52 +0100188 clk |= MCI_4BIT_BUS;
189 if (host->mmc->ios.bus_width == MMC_BUS_WIDTH_8)
190 clk |= MCI_ST_8BIT_BUS;
Linus Walleij9e6c82c2009-09-14 12:57:11 +0100191
Ulf Hansson7437cfa2012-01-18 09:17:27 +0100192 mmci_write_clkreg(host, clk);
Linus Walleija6a64642009-09-14 12:56:14 +0100193}
194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195static void
196mmci_request_end(struct mmci_host *host, struct mmc_request *mrq)
197{
198 writel(0, host->base + MMCICOMMAND);
199
Russell Kinge47c2222007-01-08 16:42:51 +0000200 BUG_ON(host->data);
201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 host->mrq = NULL;
203 host->cmd = NULL;
204
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 mmc_request_done(host->mmc, mrq);
Ulf Hansson2cd976c2011-12-13 17:01:11 +0100206
207 pm_runtime_mark_last_busy(mmc_dev(host->mmc));
208 pm_runtime_put_autosuspend(mmc_dev(host->mmc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209}
210
Linus Walleij2686b4b2010-10-19 12:39:48 +0100211static void mmci_set_mask1(struct mmci_host *host, unsigned int mask)
212{
213 void __iomem *base = host->base;
214
215 if (host->singleirq) {
216 unsigned int mask0 = readl(base + MMCIMASK0);
217
218 mask0 &= ~MCI_IRQ1MASK;
219 mask0 |= mask;
220
221 writel(mask0, base + MMCIMASK0);
222 }
223
224 writel(mask, base + MMCIMASK1);
225}
226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227static void mmci_stop_data(struct mmci_host *host)
228{
229 writel(0, host->base + MMCIDATACTRL);
Linus Walleij2686b4b2010-10-19 12:39:48 +0100230 mmci_set_mask1(host, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 host->data = NULL;
232}
233
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100234static void mmci_init_sg(struct mmci_host *host, struct mmc_data *data)
235{
236 unsigned int flags = SG_MITER_ATOMIC;
237
238 if (data->flags & MMC_DATA_READ)
239 flags |= SG_MITER_TO_SG;
240 else
241 flags |= SG_MITER_FROM_SG;
242
243 sg_miter_start(&host->sg_miter, data->sg, data->sg_len, flags);
244}
245
Russell Kingc8ebae32011-01-11 19:35:53 +0000246/*
247 * All the DMA operation mode stuff goes inside this ifdef.
248 * This assumes that you have a generic DMA device interface,
249 * no custom DMA interfaces are supported.
250 */
251#ifdef CONFIG_DMA_ENGINE
252static void __devinit mmci_dma_setup(struct mmci_host *host)
253{
254 struct mmci_platform_data *plat = host->plat;
255 const char *rxname, *txname;
256 dma_cap_mask_t mask;
257
258 if (!plat || !plat->dma_filter) {
259 dev_info(mmc_dev(host->mmc), "no DMA platform data\n");
260 return;
261 }
262
Per Forlin58c7ccb2011-07-01 18:55:24 +0200263 /* initialize pre request cookie */
264 host->next_data.cookie = 1;
265
Russell Kingc8ebae32011-01-11 19:35:53 +0000266 /* Try to acquire a generic DMA engine slave channel */
267 dma_cap_zero(mask);
268 dma_cap_set(DMA_SLAVE, mask);
269
270 /*
271 * If only an RX channel is specified, the driver will
272 * attempt to use it bidirectionally, however if it is
273 * is specified but cannot be located, DMA will be disabled.
274 */
275 if (plat->dma_rx_param) {
276 host->dma_rx_channel = dma_request_channel(mask,
277 plat->dma_filter,
278 plat->dma_rx_param);
279 /* E.g if no DMA hardware is present */
280 if (!host->dma_rx_channel)
281 dev_err(mmc_dev(host->mmc), "no RX DMA channel\n");
282 }
283
284 if (plat->dma_tx_param) {
285 host->dma_tx_channel = dma_request_channel(mask,
286 plat->dma_filter,
287 plat->dma_tx_param);
288 if (!host->dma_tx_channel)
289 dev_warn(mmc_dev(host->mmc), "no TX DMA channel\n");
290 } else {
291 host->dma_tx_channel = host->dma_rx_channel;
292 }
293
294 if (host->dma_rx_channel)
295 rxname = dma_chan_name(host->dma_rx_channel);
296 else
297 rxname = "none";
298
299 if (host->dma_tx_channel)
300 txname = dma_chan_name(host->dma_tx_channel);
301 else
302 txname = "none";
303
304 dev_info(mmc_dev(host->mmc), "DMA channels RX %s, TX %s\n",
305 rxname, txname);
306
307 /*
308 * Limit the maximum segment size in any SG entry according to
309 * the parameters of the DMA engine device.
310 */
311 if (host->dma_tx_channel) {
312 struct device *dev = host->dma_tx_channel->device->dev;
313 unsigned int max_seg_size = dma_get_max_seg_size(dev);
314
315 if (max_seg_size < host->mmc->max_seg_size)
316 host->mmc->max_seg_size = max_seg_size;
317 }
318 if (host->dma_rx_channel) {
319 struct device *dev = host->dma_rx_channel->device->dev;
320 unsigned int max_seg_size = dma_get_max_seg_size(dev);
321
322 if (max_seg_size < host->mmc->max_seg_size)
323 host->mmc->max_seg_size = max_seg_size;
324 }
325}
326
327/*
328 * This is used in __devinit or __devexit so inline it
329 * so it can be discarded.
330 */
331static inline void mmci_dma_release(struct mmci_host *host)
332{
333 struct mmci_platform_data *plat = host->plat;
334
335 if (host->dma_rx_channel)
336 dma_release_channel(host->dma_rx_channel);
337 if (host->dma_tx_channel && plat->dma_tx_param)
338 dma_release_channel(host->dma_tx_channel);
339 host->dma_rx_channel = host->dma_tx_channel = NULL;
340}
341
342static void mmci_dma_unmap(struct mmci_host *host, struct mmc_data *data)
343{
344 struct dma_chan *chan = host->dma_current;
345 enum dma_data_direction dir;
346 u32 status;
347 int i;
348
349 /* Wait up to 1ms for the DMA to complete */
350 for (i = 0; ; i++) {
351 status = readl(host->base + MMCISTATUS);
352 if (!(status & MCI_RXDATAAVLBLMASK) || i >= 100)
353 break;
354 udelay(10);
355 }
356
357 /*
358 * Check to see whether we still have some data left in the FIFO -
359 * this catches DMA controllers which are unable to monitor the
360 * DMALBREQ and DMALSREQ signals while allowing us to DMA to non-
361 * contiguous buffers. On TX, we'll get a FIFO underrun error.
362 */
363 if (status & MCI_RXDATAAVLBLMASK) {
364 dmaengine_terminate_all(chan);
365 if (!data->error)
366 data->error = -EIO;
367 }
368
369 if (data->flags & MMC_DATA_WRITE) {
370 dir = DMA_TO_DEVICE;
371 } else {
372 dir = DMA_FROM_DEVICE;
373 }
374
Per Forlin58c7ccb2011-07-01 18:55:24 +0200375 if (!data->host_cookie)
376 dma_unmap_sg(chan->device->dev, data->sg, data->sg_len, dir);
Russell Kingc8ebae32011-01-11 19:35:53 +0000377
378 /*
379 * Use of DMA with scatter-gather is impossible.
380 * Give up with DMA and switch back to PIO mode.
381 */
382 if (status & MCI_RXDATAAVLBLMASK) {
383 dev_err(mmc_dev(host->mmc), "buggy DMA detected. Taking evasive action.\n");
384 mmci_dma_release(host);
385 }
386}
387
388static void mmci_dma_data_error(struct mmci_host *host)
389{
390 dev_err(mmc_dev(host->mmc), "error during DMA transfer!\n");
391 dmaengine_terminate_all(host->dma_current);
392}
393
Per Forlin58c7ccb2011-07-01 18:55:24 +0200394static int mmci_dma_prep_data(struct mmci_host *host, struct mmc_data *data,
395 struct mmci_host_next *next)
Russell Kingc8ebae32011-01-11 19:35:53 +0000396{
397 struct variant_data *variant = host->variant;
398 struct dma_slave_config conf = {
399 .src_addr = host->phybase + MMCIFIFO,
400 .dst_addr = host->phybase + MMCIFIFO,
401 .src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES,
402 .dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES,
403 .src_maxburst = variant->fifohalfsize >> 2, /* # of words */
404 .dst_maxburst = variant->fifohalfsize >> 2, /* # of words */
Viresh Kumar258aea72012-02-01 16:12:19 +0530405 .device_fc = false,
Russell Kingc8ebae32011-01-11 19:35:53 +0000406 };
Russell Kingc8ebae32011-01-11 19:35:53 +0000407 struct dma_chan *chan;
408 struct dma_device *device;
409 struct dma_async_tx_descriptor *desc;
Vinod Koul05f57992011-10-14 10:45:11 +0530410 enum dma_data_direction buffer_dirn;
Russell Kingc8ebae32011-01-11 19:35:53 +0000411 int nr_sg;
412
Per Forlin58c7ccb2011-07-01 18:55:24 +0200413 /* Check if next job is already prepared */
414 if (data->host_cookie && !next &&
415 host->dma_current && host->dma_desc_current)
416 return 0;
417
418 if (!next) {
419 host->dma_current = NULL;
420 host->dma_desc_current = NULL;
421 }
Russell Kingc8ebae32011-01-11 19:35:53 +0000422
423 if (data->flags & MMC_DATA_READ) {
Vinod Koul05f57992011-10-14 10:45:11 +0530424 conf.direction = DMA_DEV_TO_MEM;
425 buffer_dirn = DMA_FROM_DEVICE;
Russell Kingc8ebae32011-01-11 19:35:53 +0000426 chan = host->dma_rx_channel;
427 } else {
Vinod Koul05f57992011-10-14 10:45:11 +0530428 conf.direction = DMA_MEM_TO_DEV;
429 buffer_dirn = DMA_TO_DEVICE;
Russell Kingc8ebae32011-01-11 19:35:53 +0000430 chan = host->dma_tx_channel;
431 }
432
433 /* If there's no DMA channel, fall back to PIO */
434 if (!chan)
435 return -EINVAL;
436
437 /* If less than or equal to the fifo size, don't bother with DMA */
Per Forlin58c7ccb2011-07-01 18:55:24 +0200438 if (data->blksz * data->blocks <= variant->fifosize)
Russell Kingc8ebae32011-01-11 19:35:53 +0000439 return -EINVAL;
440
441 device = chan->device;
Vinod Koul05f57992011-10-14 10:45:11 +0530442 nr_sg = dma_map_sg(device->dev, data->sg, data->sg_len, buffer_dirn);
Russell Kingc8ebae32011-01-11 19:35:53 +0000443 if (nr_sg == 0)
444 return -EINVAL;
445
446 dmaengine_slave_config(chan, &conf);
Alexandre Bounine16052822012-03-08 16:11:18 -0500447 desc = dmaengine_prep_slave_sg(chan, data->sg, nr_sg,
Russell Kingc8ebae32011-01-11 19:35:53 +0000448 conf.direction, DMA_CTRL_ACK);
449 if (!desc)
450 goto unmap_exit;
451
Per Forlin58c7ccb2011-07-01 18:55:24 +0200452 if (next) {
453 next->dma_chan = chan;
454 next->dma_desc = desc;
455 } else {
456 host->dma_current = chan;
457 host->dma_desc_current = desc;
458 }
Russell Kingc8ebae32011-01-11 19:35:53 +0000459
Per Forlin58c7ccb2011-07-01 18:55:24 +0200460 return 0;
461
462 unmap_exit:
463 if (!next)
464 dmaengine_terminate_all(chan);
Vinod Koul05f57992011-10-14 10:45:11 +0530465 dma_unmap_sg(device->dev, data->sg, data->sg_len, buffer_dirn);
Per Forlin58c7ccb2011-07-01 18:55:24 +0200466 return -ENOMEM;
467}
468
469static int mmci_dma_start_data(struct mmci_host *host, unsigned int datactrl)
470{
471 int ret;
472 struct mmc_data *data = host->data;
473
474 ret = mmci_dma_prep_data(host, host->data, NULL);
475 if (ret)
476 return ret;
477
478 /* Okay, go for it. */
Russell Kingc8ebae32011-01-11 19:35:53 +0000479 dev_vdbg(mmc_dev(host->mmc),
480 "Submit MMCI DMA job, sglen %d blksz %04x blks %04x flags %08x\n",
481 data->sg_len, data->blksz, data->blocks, data->flags);
Per Forlin58c7ccb2011-07-01 18:55:24 +0200482 dmaengine_submit(host->dma_desc_current);
483 dma_async_issue_pending(host->dma_current);
Russell Kingc8ebae32011-01-11 19:35:53 +0000484
485 datactrl |= MCI_DPSM_DMAENABLE;
486
487 /* Trigger the DMA transfer */
488 writel(datactrl, host->base + MMCIDATACTRL);
489
490 /*
491 * Let the MMCI say when the data is ended and it's time
492 * to fire next DMA request. When that happens, MMCI will
493 * call mmci_data_end()
494 */
495 writel(readl(host->base + MMCIMASK0) | MCI_DATAENDMASK,
496 host->base + MMCIMASK0);
497 return 0;
Russell Kingc8ebae32011-01-11 19:35:53 +0000498}
Per Forlin58c7ccb2011-07-01 18:55:24 +0200499
500static void mmci_get_next_data(struct mmci_host *host, struct mmc_data *data)
501{
502 struct mmci_host_next *next = &host->next_data;
503
504 if (data->host_cookie && data->host_cookie != next->cookie) {
Girish K Sa3c76eb2011-10-11 11:44:09 +0530505 pr_warning("[%s] invalid cookie: data->host_cookie %d"
Per Forlin58c7ccb2011-07-01 18:55:24 +0200506 " host->next_data.cookie %d\n",
507 __func__, data->host_cookie, host->next_data.cookie);
508 data->host_cookie = 0;
509 }
510
511 if (!data->host_cookie)
512 return;
513
514 host->dma_desc_current = next->dma_desc;
515 host->dma_current = next->dma_chan;
516
517 next->dma_desc = NULL;
518 next->dma_chan = NULL;
519}
520
521static void mmci_pre_request(struct mmc_host *mmc, struct mmc_request *mrq,
522 bool is_first_req)
523{
524 struct mmci_host *host = mmc_priv(mmc);
525 struct mmc_data *data = mrq->data;
526 struct mmci_host_next *nd = &host->next_data;
527
528 if (!data)
529 return;
530
531 if (data->host_cookie) {
532 data->host_cookie = 0;
533 return;
534 }
535
536 /* if config for dma */
537 if (((data->flags & MMC_DATA_WRITE) && host->dma_tx_channel) ||
538 ((data->flags & MMC_DATA_READ) && host->dma_rx_channel)) {
539 if (mmci_dma_prep_data(host, data, nd))
540 data->host_cookie = 0;
541 else
542 data->host_cookie = ++nd->cookie < 0 ? 1 : nd->cookie;
543 }
544}
545
546static void mmci_post_request(struct mmc_host *mmc, struct mmc_request *mrq,
547 int err)
548{
549 struct mmci_host *host = mmc_priv(mmc);
550 struct mmc_data *data = mrq->data;
551 struct dma_chan *chan;
552 enum dma_data_direction dir;
553
554 if (!data)
555 return;
556
557 if (data->flags & MMC_DATA_READ) {
558 dir = DMA_FROM_DEVICE;
559 chan = host->dma_rx_channel;
560 } else {
561 dir = DMA_TO_DEVICE;
562 chan = host->dma_tx_channel;
563 }
564
565
566 /* if config for dma */
567 if (chan) {
568 if (err)
569 dmaengine_terminate_all(chan);
Per Forlin8e3336b2011-08-29 15:35:59 +0200570 if (data->host_cookie)
Per Forlin58c7ccb2011-07-01 18:55:24 +0200571 dma_unmap_sg(mmc_dev(host->mmc), data->sg,
572 data->sg_len, dir);
573 mrq->data->host_cookie = 0;
574 }
575}
576
Russell Kingc8ebae32011-01-11 19:35:53 +0000577#else
578/* Blank functions if the DMA engine is not available */
Per Forlin58c7ccb2011-07-01 18:55:24 +0200579static void mmci_get_next_data(struct mmci_host *host, struct mmc_data *data)
580{
581}
Russell Kingc8ebae32011-01-11 19:35:53 +0000582static inline void mmci_dma_setup(struct mmci_host *host)
583{
584}
585
586static inline void mmci_dma_release(struct mmci_host *host)
587{
588}
589
590static inline void mmci_dma_unmap(struct mmci_host *host, struct mmc_data *data)
591{
592}
593
594static inline void mmci_dma_data_error(struct mmci_host *host)
595{
596}
597
598static inline int mmci_dma_start_data(struct mmci_host *host, unsigned int datactrl)
599{
600 return -ENOSYS;
601}
Per Forlin58c7ccb2011-07-01 18:55:24 +0200602
603#define mmci_pre_request NULL
604#define mmci_post_request NULL
605
Russell Kingc8ebae32011-01-11 19:35:53 +0000606#endif
607
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608static void mmci_start_data(struct mmci_host *host, struct mmc_data *data)
609{
Rabin Vincent8301bb62010-08-09 12:57:30 +0100610 struct variant_data *variant = host->variant;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 unsigned int datactrl, timeout, irqmask;
Russell King7b09cda2005-07-01 12:02:59 +0100612 unsigned long long clks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 void __iomem *base;
Russell King3bc87f22006-08-27 13:51:28 +0100614 int blksz_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
Linus Walleij64de0282010-02-19 01:09:10 +0100616 dev_dbg(mmc_dev(host->mmc), "blksz %04x blks %04x flags %08x\n",
617 data->blksz, data->blocks, data->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
619 host->data = data;
Rabin Vincent528320d2010-07-21 12:49:49 +0100620 host->size = data->blksz * data->blocks;
Russell King51d43752011-01-27 10:56:52 +0000621 data->bytes_xfered = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Russell King7b09cda2005-07-01 12:02:59 +0100623 clks = (unsigned long long)data->timeout_ns * host->cclk;
624 do_div(clks, 1000000000UL);
625
626 timeout = data->timeout_clks + (unsigned int)clks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
628 base = host->base;
629 writel(timeout, base + MMCIDATATIMER);
630 writel(host->size, base + MMCIDATALENGTH);
631
Russell King3bc87f22006-08-27 13:51:28 +0100632 blksz_bits = ffs(data->blksz) - 1;
633 BUG_ON(1 << blksz_bits != data->blksz);
634
Philippe Langlais1784b152011-03-25 08:51:52 +0100635 if (variant->blksz_datactrl16)
636 datactrl = MCI_DPSM_ENABLE | (data->blksz << 16);
637 else
638 datactrl = MCI_DPSM_ENABLE | blksz_bits << 4;
Russell Kingc8ebae32011-01-11 19:35:53 +0000639
640 if (data->flags & MMC_DATA_READ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 datactrl |= MCI_DPSM_DIRECTION;
Russell Kingc8ebae32011-01-11 19:35:53 +0000642
Ulf Hansson7258db72011-12-13 17:05:28 +0100643 /* The ST Micro variants has a special bit to enable SDIO */
644 if (variant->sdio && host->mmc->card)
645 if (mmc_card_sdio(host->mmc->card))
646 datactrl |= MCI_ST_DPSM_SDIOEN;
647
Russell Kingc8ebae32011-01-11 19:35:53 +0000648 /*
649 * Attempt to use DMA operation mode, if this
650 * should fail, fall back to PIO mode
651 */
652 if (!mmci_dma_start_data(host, datactrl))
653 return;
654
655 /* IRQ mode, map the SG list for CPU reading/writing */
656 mmci_init_sg(host, data);
657
658 if (data->flags & MMC_DATA_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 irqmask = MCI_RXFIFOHALFFULLMASK;
Russell King0425a142006-02-16 16:48:31 +0000660
661 /*
Russell Kingc4d877c2011-01-27 09:50:13 +0000662 * If we have less than the fifo 'half-full' threshold to
663 * transfer, trigger a PIO interrupt as soon as any data
664 * is available.
Russell King0425a142006-02-16 16:48:31 +0000665 */
Russell Kingc4d877c2011-01-27 09:50:13 +0000666 if (host->size < variant->fifohalfsize)
Russell King0425a142006-02-16 16:48:31 +0000667 irqmask |= MCI_RXDATAAVLBLMASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 } else {
669 /*
670 * We don't actually need to include "FIFO empty" here
671 * since its implicit in "FIFO half empty".
672 */
673 irqmask = MCI_TXFIFOHALFEMPTYMASK;
674 }
675
676 writel(datactrl, base + MMCIDATACTRL);
677 writel(readl(base + MMCIMASK0) & ~MCI_DATAENDMASK, base + MMCIMASK0);
Linus Walleij2686b4b2010-10-19 12:39:48 +0100678 mmci_set_mask1(host, irqmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679}
680
681static void
682mmci_start_command(struct mmci_host *host, struct mmc_command *cmd, u32 c)
683{
684 void __iomem *base = host->base;
685
Linus Walleij64de0282010-02-19 01:09:10 +0100686 dev_dbg(mmc_dev(host->mmc), "op %02x arg %08x flags %08x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 cmd->opcode, cmd->arg, cmd->flags);
688
689 if (readl(base + MMCICOMMAND) & MCI_CPSM_ENABLE) {
690 writel(0, base + MMCICOMMAND);
691 udelay(1);
692 }
693
694 c |= cmd->opcode | MCI_CPSM_ENABLE;
Russell Kinge9225172006-02-02 12:23:12 +0000695 if (cmd->flags & MMC_RSP_PRESENT) {
696 if (cmd->flags & MMC_RSP_136)
697 c |= MCI_CPSM_LONGRSP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 c |= MCI_CPSM_RESPONSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 }
700 if (/*interrupt*/0)
701 c |= MCI_CPSM_INTERRUPT;
702
703 host->cmd = cmd;
704
705 writel(cmd->arg, base + MMCIARGUMENT);
706 writel(c, base + MMCICOMMAND);
707}
708
709static void
710mmci_data_irq(struct mmci_host *host, struct mmc_data *data,
711 unsigned int status)
712{
Linus Walleijf20f8f22010-10-19 13:41:24 +0100713 /* First check for errors */
Ulf Hanssonb63038d2011-12-13 16:51:04 +0100714 if (status & (MCI_DATACRCFAIL|MCI_DATATIMEOUT|MCI_STARTBITERR|
715 MCI_TXUNDERRUN|MCI_RXOVERRUN)) {
Linus Walleij8cb28152011-01-24 15:22:13 +0100716 u32 remain, success;
Linus Walleijf20f8f22010-10-19 13:41:24 +0100717
Russell Kingc8ebae32011-01-11 19:35:53 +0000718 /* Terminate the DMA transfer */
719 if (dma_inprogress(host))
720 mmci_dma_data_error(host);
721
Russell Kingc8afc9d2011-02-04 09:19:46 +0000722 /*
723 * Calculate how far we are into the transfer. Note that
724 * the data counter gives the number of bytes transferred
725 * on the MMC bus, not on the host side. On reads, this
726 * can be as much as a FIFO-worth of data ahead. This
727 * matters for FIFO overruns only.
728 */
Linus Walleijf5a106d2011-01-27 17:44:34 +0100729 remain = readl(host->base + MMCIDATACNT);
Linus Walleij8cb28152011-01-24 15:22:13 +0100730 success = data->blksz * data->blocks - remain;
731
Russell Kingc8afc9d2011-02-04 09:19:46 +0000732 dev_dbg(mmc_dev(host->mmc), "MCI ERROR IRQ, status 0x%08x at 0x%08x\n",
733 status, success);
Linus Walleij8cb28152011-01-24 15:22:13 +0100734 if (status & MCI_DATACRCFAIL) {
735 /* Last block was not successful */
Russell Kingc8afc9d2011-02-04 09:19:46 +0000736 success -= 1;
Pierre Ossman17b04292007-07-22 22:18:46 +0200737 data->error = -EILSEQ;
Linus Walleij8cb28152011-01-24 15:22:13 +0100738 } else if (status & MCI_DATATIMEOUT) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200739 data->error = -ETIMEDOUT;
Linus Walleij757df742011-06-30 15:10:21 +0100740 } else if (status & MCI_STARTBITERR) {
741 data->error = -ECOMM;
Russell Kingc8afc9d2011-02-04 09:19:46 +0000742 } else if (status & MCI_TXUNDERRUN) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200743 data->error = -EIO;
Russell Kingc8afc9d2011-02-04 09:19:46 +0000744 } else if (status & MCI_RXOVERRUN) {
745 if (success > host->variant->fifosize)
746 success -= host->variant->fifosize;
747 else
748 success = 0;
Linus Walleij8cb28152011-01-24 15:22:13 +0100749 data->error = -EIO;
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100750 }
Russell King51d43752011-01-27 10:56:52 +0000751 data->bytes_xfered = round_down(success, data->blksz);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 }
Linus Walleijf20f8f22010-10-19 13:41:24 +0100753
Linus Walleij8cb28152011-01-24 15:22:13 +0100754 if (status & MCI_DATABLOCKEND)
755 dev_err(mmc_dev(host->mmc), "stray MCI_DATABLOCKEND interrupt\n");
Linus Walleijf20f8f22010-10-19 13:41:24 +0100756
Russell Kingccff9b52011-01-30 21:03:50 +0000757 if (status & MCI_DATAEND || data->error) {
Russell Kingc8ebae32011-01-11 19:35:53 +0000758 if (dma_inprogress(host))
759 mmci_dma_unmap(host, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 mmci_stop_data(host);
761
Linus Walleij8cb28152011-01-24 15:22:13 +0100762 if (!data->error)
763 /* The error clause is handled above, success! */
Russell King51d43752011-01-27 10:56:52 +0000764 data->bytes_xfered = data->blksz * data->blocks;
Linus Walleijf20f8f22010-10-19 13:41:24 +0100765
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 if (!data->stop) {
767 mmci_request_end(host, data->mrq);
768 } else {
769 mmci_start_command(host, data->stop, 0);
770 }
771 }
772}
773
774static void
775mmci_cmd_irq(struct mmci_host *host, struct mmc_command *cmd,
776 unsigned int status)
777{
778 void __iomem *base = host->base;
779
780 host->cmd = NULL;
781
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 if (status & MCI_CMDTIMEOUT) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200783 cmd->error = -ETIMEDOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 } else if (status & MCI_CMDCRCFAIL && cmd->flags & MMC_RSP_CRC) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200785 cmd->error = -EILSEQ;
Russell King - ARM Linux9047b432011-01-11 16:35:56 +0000786 } else {
787 cmd->resp[0] = readl(base + MMCIRESPONSE0);
788 cmd->resp[1] = readl(base + MMCIRESPONSE1);
789 cmd->resp[2] = readl(base + MMCIRESPONSE2);
790 cmd->resp[3] = readl(base + MMCIRESPONSE3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 }
792
Pierre Ossman17b04292007-07-22 22:18:46 +0200793 if (!cmd->data || cmd->error) {
Ulf Hansson3b6e3c72011-12-13 16:58:43 +0100794 if (host->data) {
795 /* Terminate the DMA transfer */
796 if (dma_inprogress(host))
797 mmci_dma_data_error(host);
Russell Kinge47c2222007-01-08 16:42:51 +0000798 mmci_stop_data(host);
Ulf Hansson3b6e3c72011-12-13 16:58:43 +0100799 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 mmci_request_end(host, cmd->mrq);
801 } else if (!(cmd->data->flags & MMC_DATA_READ)) {
802 mmci_start_data(host, cmd->data);
803 }
804}
805
806static int mmci_pio_read(struct mmci_host *host, char *buffer, unsigned int remain)
807{
808 void __iomem *base = host->base;
809 char *ptr = buffer;
810 u32 status;
Linus Walleij26eed9a2008-04-26 23:39:44 +0100811 int host_remain = host->size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
813 do {
Linus Walleij26eed9a2008-04-26 23:39:44 +0100814 int count = host_remain - (readl(base + MMCIFIFOCNT) << 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
816 if (count > remain)
817 count = remain;
818
819 if (count <= 0)
820 break;
821
Ulf Hansson393e5e22011-12-13 17:08:04 +0100822 /*
823 * SDIO especially may want to send something that is
824 * not divisible by 4 (as opposed to card sectors
825 * etc). Therefore make sure to always read the last bytes
826 * while only doing full 32-bit reads towards the FIFO.
827 */
828 if (unlikely(count & 0x3)) {
829 if (count < 4) {
830 unsigned char buf[4];
831 readsl(base + MMCIFIFO, buf, 1);
832 memcpy(ptr, buf, count);
833 } else {
834 readsl(base + MMCIFIFO, ptr, count >> 2);
835 count &= ~0x3;
836 }
837 } else {
838 readsl(base + MMCIFIFO, ptr, count >> 2);
839 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
841 ptr += count;
842 remain -= count;
Linus Walleij26eed9a2008-04-26 23:39:44 +0100843 host_remain -= count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
845 if (remain == 0)
846 break;
847
848 status = readl(base + MMCISTATUS);
849 } while (status & MCI_RXDATAAVLBL);
850
851 return ptr - buffer;
852}
853
854static int mmci_pio_write(struct mmci_host *host, char *buffer, unsigned int remain, u32 status)
855{
Rabin Vincent8301bb62010-08-09 12:57:30 +0100856 struct variant_data *variant = host->variant;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 void __iomem *base = host->base;
858 char *ptr = buffer;
859
860 do {
861 unsigned int count, maxcnt;
862
Rabin Vincent8301bb62010-08-09 12:57:30 +0100863 maxcnt = status & MCI_TXFIFOEMPTY ?
864 variant->fifosize : variant->fifohalfsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 count = min(remain, maxcnt);
866
Linus Walleij34177802010-10-19 12:43:58 +0100867 /*
868 * The ST Micro variant for SDIO transfer sizes
869 * less then 8 bytes should have clock H/W flow
870 * control disabled.
871 */
872 if (variant->sdio &&
873 mmc_card_sdio(host->mmc->card)) {
Ulf Hansson7437cfa2012-01-18 09:17:27 +0100874 u32 clk;
Linus Walleij34177802010-10-19 12:43:58 +0100875 if (count < 8)
Ulf Hansson7437cfa2012-01-18 09:17:27 +0100876 clk = host->clk_reg & ~variant->clkreg_enable;
Linus Walleij34177802010-10-19 12:43:58 +0100877 else
Ulf Hansson7437cfa2012-01-18 09:17:27 +0100878 clk = host->clk_reg | variant->clkreg_enable;
879
880 mmci_write_clkreg(host, clk);
Linus Walleij34177802010-10-19 12:43:58 +0100881 }
882
883 /*
884 * SDIO especially may want to send something that is
885 * not divisible by 4 (as opposed to card sectors
886 * etc), and the FIFO only accept full 32-bit writes.
887 * So compensate by adding +3 on the count, a single
888 * byte become a 32bit write, 7 bytes will be two
889 * 32bit writes etc.
890 */
891 writesl(base + MMCIFIFO, ptr, (count + 3) >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
893 ptr += count;
894 remain -= count;
895
896 if (remain == 0)
897 break;
898
899 status = readl(base + MMCISTATUS);
900 } while (status & MCI_TXFIFOHALFEMPTY);
901
902 return ptr - buffer;
903}
904
905/*
906 * PIO data transfer IRQ handler.
907 */
David Howells7d12e782006-10-05 14:55:46 +0100908static irqreturn_t mmci_pio_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909{
910 struct mmci_host *host = dev_id;
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100911 struct sg_mapping_iter *sg_miter = &host->sg_miter;
Rabin Vincent8301bb62010-08-09 12:57:30 +0100912 struct variant_data *variant = host->variant;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 void __iomem *base = host->base;
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100914 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 u32 status;
916
917 status = readl(base + MMCISTATUS);
918
Linus Walleij64de0282010-02-19 01:09:10 +0100919 dev_dbg(mmc_dev(host->mmc), "irq1 (pio) %08x\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100921 local_irq_save(flags);
922
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 unsigned int remain, len;
925 char *buffer;
926
927 /*
928 * For write, we only need to test the half-empty flag
929 * here - if the FIFO is completely empty, then by
930 * definition it is more than half empty.
931 *
932 * For read, check for data available.
933 */
934 if (!(status & (MCI_TXFIFOHALFEMPTY|MCI_RXDATAAVLBL)))
935 break;
936
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100937 if (!sg_miter_next(sg_miter))
938 break;
939
940 buffer = sg_miter->addr;
941 remain = sg_miter->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
943 len = 0;
944 if (status & MCI_RXACTIVE)
945 len = mmci_pio_read(host, buffer, remain);
946 if (status & MCI_TXACTIVE)
947 len = mmci_pio_write(host, buffer, remain, status);
948
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100949 sg_miter->consumed = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 host->size -= len;
952 remain -= len;
953
954 if (remain)
955 break;
956
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 status = readl(base + MMCISTATUS);
958 } while (1);
959
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100960 sg_miter_stop(sg_miter);
961
962 local_irq_restore(flags);
963
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 /*
Russell Kingc4d877c2011-01-27 09:50:13 +0000965 * If we have less than the fifo 'half-full' threshold to transfer,
966 * trigger a PIO interrupt as soon as any data is available.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 */
Russell Kingc4d877c2011-01-27 09:50:13 +0000968 if (status & MCI_RXACTIVE && host->size < variant->fifohalfsize)
Linus Walleij2686b4b2010-10-19 12:39:48 +0100969 mmci_set_mask1(host, MCI_RXDATAAVLBLMASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970
971 /*
972 * If we run out of data, disable the data IRQs; this
973 * prevents a race where the FIFO becomes empty before
974 * the chip itself has disabled the data path, and
975 * stops us racing with our data end IRQ.
976 */
977 if (host->size == 0) {
Linus Walleij2686b4b2010-10-19 12:39:48 +0100978 mmci_set_mask1(host, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 writel(readl(base + MMCIMASK0) | MCI_DATAENDMASK, base + MMCIMASK0);
980 }
981
982 return IRQ_HANDLED;
983}
984
985/*
986 * Handle completion of command and data transfers.
987 */
David Howells7d12e782006-10-05 14:55:46 +0100988static irqreturn_t mmci_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989{
990 struct mmci_host *host = dev_id;
991 u32 status;
992 int ret = 0;
993
994 spin_lock(&host->lock);
995
996 do {
997 struct mmc_command *cmd;
998 struct mmc_data *data;
999
1000 status = readl(host->base + MMCISTATUS);
Linus Walleij2686b4b2010-10-19 12:39:48 +01001001
1002 if (host->singleirq) {
1003 if (status & readl(host->base + MMCIMASK1))
1004 mmci_pio_irq(irq, dev_id);
1005
1006 status &= ~MCI_IRQ1MASK;
1007 }
1008
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 status &= readl(host->base + MMCIMASK0);
1010 writel(status, host->base + MMCICLEAR);
1011
Linus Walleij64de0282010-02-19 01:09:10 +01001012 dev_dbg(mmc_dev(host->mmc), "irq0 (data+cmd) %08x\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
1014 data = host->data;
Ulf Hanssonb63038d2011-12-13 16:51:04 +01001015 if (status & (MCI_DATACRCFAIL|MCI_DATATIMEOUT|MCI_STARTBITERR|
1016 MCI_TXUNDERRUN|MCI_RXOVERRUN|MCI_DATAEND|
1017 MCI_DATABLOCKEND) && data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 mmci_data_irq(host, data, status);
1019
1020 cmd = host->cmd;
1021 if (status & (MCI_CMDCRCFAIL|MCI_CMDTIMEOUT|MCI_CMDSENT|MCI_CMDRESPEND) && cmd)
1022 mmci_cmd_irq(host, cmd, status);
1023
1024 ret = 1;
1025 } while (status);
1026
1027 spin_unlock(&host->lock);
1028
1029 return IRQ_RETVAL(ret);
1030}
1031
1032static void mmci_request(struct mmc_host *mmc, struct mmc_request *mrq)
1033{
1034 struct mmci_host *host = mmc_priv(mmc);
Linus Walleij9e943022008-10-24 21:17:50 +01001035 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
1037 WARN_ON(host->mrq != NULL);
1038
Nicolas Pitre019a5f52007-10-11 01:06:03 -04001039 if (mrq->data && !is_power_of_2(mrq->data->blksz)) {
Linus Walleij64de0282010-02-19 01:09:10 +01001040 dev_err(mmc_dev(mmc), "unsupported block size (%d bytes)\n",
1041 mrq->data->blksz);
Pierre Ossman255d01a2007-07-24 20:38:53 +02001042 mrq->cmd->error = -EINVAL;
1043 mmc_request_done(mmc, mrq);
1044 return;
1045 }
1046
Russell King1c3be362011-08-14 09:17:05 +01001047 pm_runtime_get_sync(mmc_dev(mmc));
1048
Linus Walleij9e943022008-10-24 21:17:50 +01001049 spin_lock_irqsave(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050
1051 host->mrq = mrq;
1052
Per Forlin58c7ccb2011-07-01 18:55:24 +02001053 if (mrq->data)
1054 mmci_get_next_data(host, mrq->data);
1055
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 if (mrq->data && mrq->data->flags & MMC_DATA_READ)
1057 mmci_start_data(host, mrq->data);
1058
1059 mmci_start_command(host, mrq->cmd, 0);
1060
Linus Walleij9e943022008-10-24 21:17:50 +01001061 spin_unlock_irqrestore(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062}
1063
1064static void mmci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
1065{
1066 struct mmci_host *host = mmc_priv(mmc);
Ulf Hansson7d72a1d2011-12-13 16:54:55 +01001067 struct variant_data *variant = host->variant;
Linus Walleija6a64642009-09-14 12:56:14 +01001068 u32 pwr = 0;
1069 unsigned long flags;
Linus Walleij99fc5132010-09-29 01:08:27 -04001070 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001072 pm_runtime_get_sync(mmc_dev(mmc));
1073
Ulf Hanssonbc521812011-12-13 16:57:55 +01001074 if (host->plat->ios_handler &&
1075 host->plat->ios_handler(mmc_dev(mmc), ios))
1076 dev_err(mmc_dev(mmc), "platform ios_handler failed\n");
1077
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 switch (ios->power_mode) {
1079 case MMC_POWER_OFF:
Linus Walleij99fc5132010-09-29 01:08:27 -04001080 if (host->vcc)
1081 ret = mmc_regulator_set_ocr(mmc, host->vcc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 break;
1083 case MMC_POWER_UP:
Linus Walleij99fc5132010-09-29 01:08:27 -04001084 if (host->vcc) {
1085 ret = mmc_regulator_set_ocr(mmc, host->vcc, ios->vdd);
1086 if (ret) {
1087 dev_err(mmc_dev(mmc), "unable to set OCR\n");
1088 /*
1089 * The .set_ios() function in the mmc_host_ops
1090 * struct return void, and failing to set the
1091 * power should be rare so we print an error
1092 * and return here.
1093 */
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001094 goto out;
Linus Walleij99fc5132010-09-29 01:08:27 -04001095 }
1096 }
Ulf Hansson7d72a1d2011-12-13 16:54:55 +01001097 /*
1098 * The ST Micro variant doesn't have the PL180s MCI_PWR_UP
1099 * and instead uses MCI_PWR_ON so apply whatever value is
1100 * configured in the variant data.
1101 */
1102 pwr |= variant->pwrreg_powerup;
1103
1104 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 case MMC_POWER_ON:
1106 pwr |= MCI_PWR_ON;
1107 break;
1108 }
1109
Ulf Hansson4d1a3a02011-12-13 16:57:07 +01001110 if (variant->signal_direction && ios->power_mode != MMC_POWER_OFF) {
1111 /*
1112 * The ST Micro variant has some additional bits
1113 * indicating signal direction for the signals in
1114 * the SD/MMC bus and feedback-clock usage.
1115 */
1116 pwr |= host->plat->sigdir;
1117
1118 if (ios->bus_width == MMC_BUS_WIDTH_4)
1119 pwr &= ~MCI_ST_DATA74DIREN;
1120 else if (ios->bus_width == MMC_BUS_WIDTH_1)
1121 pwr &= (~MCI_ST_DATA74DIREN &
1122 ~MCI_ST_DATA31DIREN &
1123 ~MCI_ST_DATA2DIREN);
1124 }
1125
Linus Walleijcc30d602009-01-04 15:18:54 +01001126 if (ios->bus_mode == MMC_BUSMODE_OPENDRAIN) {
Linus Walleijf17a1f02009-08-04 01:01:02 +01001127 if (host->hw_designer != AMBA_VENDOR_ST)
Linus Walleijcc30d602009-01-04 15:18:54 +01001128 pwr |= MCI_ROD;
1129 else {
1130 /*
1131 * The ST Micro variant use the ROD bit for something
1132 * else and only has OD (Open Drain).
1133 */
1134 pwr |= MCI_OD;
1135 }
1136 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
Linus Walleija6a64642009-09-14 12:56:14 +01001138 spin_lock_irqsave(&host->lock, flags);
1139
1140 mmci_set_clkreg(host, ios->clock);
Ulf Hansson7437cfa2012-01-18 09:17:27 +01001141 mmci_write_pwrreg(host, pwr);
Linus Walleija6a64642009-09-14 12:56:14 +01001142
1143 spin_unlock_irqrestore(&host->lock, flags);
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001144
1145 out:
1146 pm_runtime_mark_last_busy(mmc_dev(mmc));
1147 pm_runtime_put_autosuspend(mmc_dev(mmc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148}
1149
Russell King89001442009-07-09 15:16:07 +01001150static int mmci_get_ro(struct mmc_host *mmc)
1151{
1152 struct mmci_host *host = mmc_priv(mmc);
1153
1154 if (host->gpio_wp == -ENOSYS)
1155 return -ENOSYS;
1156
Linus Walleij18a063012010-09-12 12:56:44 +01001157 return gpio_get_value_cansleep(host->gpio_wp);
Russell King89001442009-07-09 15:16:07 +01001158}
1159
1160static int mmci_get_cd(struct mmc_host *mmc)
1161{
1162 struct mmci_host *host = mmc_priv(mmc);
Rabin Vincent29719442010-08-09 12:54:43 +01001163 struct mmci_platform_data *plat = host->plat;
Russell King89001442009-07-09 15:16:07 +01001164 unsigned int status;
1165
Rabin Vincent4b8caec2010-08-09 12:56:40 +01001166 if (host->gpio_cd == -ENOSYS) {
1167 if (!plat->status)
1168 return 1; /* Assume always present */
1169
Rabin Vincent29719442010-08-09 12:54:43 +01001170 status = plat->status(mmc_dev(host->mmc));
Rabin Vincent4b8caec2010-08-09 12:56:40 +01001171 } else
Linus Walleij18a063012010-09-12 12:56:44 +01001172 status = !!gpio_get_value_cansleep(host->gpio_cd)
1173 ^ plat->cd_invert;
Russell King89001442009-07-09 15:16:07 +01001174
Russell King74bc8092010-07-29 15:58:59 +01001175 /*
1176 * Use positive logic throughout - status is zero for no card,
1177 * non-zero for card inserted.
1178 */
1179 return status;
Russell King89001442009-07-09 15:16:07 +01001180}
1181
Rabin Vincent148b8b32010-08-09 12:55:48 +01001182static irqreturn_t mmci_cd_irq(int irq, void *dev_id)
1183{
1184 struct mmci_host *host = dev_id;
1185
1186 mmc_detect_change(host->mmc, msecs_to_jiffies(500));
1187
1188 return IRQ_HANDLED;
1189}
1190
David Brownellab7aefd2006-11-12 17:55:30 -08001191static const struct mmc_host_ops mmci_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 .request = mmci_request,
Per Forlin58c7ccb2011-07-01 18:55:24 +02001193 .pre_req = mmci_pre_request,
1194 .post_req = mmci_post_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 .set_ios = mmci_set_ios,
Russell King89001442009-07-09 15:16:07 +01001196 .get_ro = mmci_get_ro,
1197 .get_cd = mmci_get_cd,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198};
1199
Lee Jones000bc9d2012-04-16 10:18:43 +01001200#ifdef CONFIG_OF
1201static void mmci_dt_populate_generic_pdata(struct device_node *np,
1202 struct mmci_platform_data *pdata)
1203{
1204 int bus_width = 0;
1205
1206 of_property_read_u32(np, "wp-gpios", &pdata->gpio_wp);
1207 if (!pdata->gpio_wp)
1208 pdata->gpio_wp = -1;
1209
1210 of_property_read_u32(np, "cd-gpios", &pdata->gpio_cd);
1211 if (!pdata->gpio_cd)
1212 pdata->gpio_cd = -1;
1213
1214 if (of_get_property(np, "cd-inverted", NULL))
1215 pdata->cd_invert = true;
1216 else
1217 pdata->cd_invert = false;
1218
1219 of_property_read_u32(np, "max-frequency", &pdata->f_max);
1220 if (!pdata->f_max)
1221 pr_warn("%s has no 'max-frequency' property\n", np->full_name);
1222
1223 if (of_get_property(np, "mmc-cap-mmc-highspeed", NULL))
1224 pdata->capabilities |= MMC_CAP_MMC_HIGHSPEED;
1225 if (of_get_property(np, "mmc-cap-sd-highspeed", NULL))
1226 pdata->capabilities |= MMC_CAP_SD_HIGHSPEED;
1227
1228 of_property_read_u32(np, "bus-width", &bus_width);
1229 switch (bus_width) {
1230 case 0 :
1231 /* No bus-width supplied. */
1232 break;
1233 case 4 :
1234 pdata->capabilities |= MMC_CAP_4_BIT_DATA;
1235 break;
1236 case 8 :
1237 pdata->capabilities |= MMC_CAP_8_BIT_DATA;
1238 break;
1239 default :
1240 pr_warn("%s: Unsupported bus width\n", np->full_name);
1241 }
1242}
1243#endif
1244
Russell Kingaa25afa2011-02-19 15:55:00 +00001245static int __devinit mmci_probe(struct amba_device *dev,
1246 const struct amba_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247{
Linus Walleij6ef297f2009-09-22 14:29:36 +01001248 struct mmci_platform_data *plat = dev->dev.platform_data;
Lee Jones000bc9d2012-04-16 10:18:43 +01001249 struct device_node *np = dev->dev.of_node;
Rabin Vincent4956e102010-07-21 12:54:40 +01001250 struct variant_data *variant = id->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 struct mmci_host *host;
1252 struct mmc_host *mmc;
1253 int ret;
1254
Lee Jones000bc9d2012-04-16 10:18:43 +01001255 /* Must have platform data or Device Tree. */
1256 if (!plat && !np) {
1257 dev_err(&dev->dev, "No plat data or DT found\n");
1258 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 }
1260
Lee Jones000bc9d2012-04-16 10:18:43 +01001261 if (np)
1262 mmci_dt_populate_generic_pdata(np, plat);
1263
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 ret = amba_request_regions(dev, DRIVER_NAME);
1265 if (ret)
1266 goto out;
1267
1268 mmc = mmc_alloc_host(sizeof(struct mmci_host), &dev->dev);
1269 if (!mmc) {
1270 ret = -ENOMEM;
1271 goto rel_regions;
1272 }
1273
1274 host = mmc_priv(mmc);
Rabin Vincent4ea580f2009-04-17 08:44:19 +05301275 host->mmc = mmc;
Russell King012b7d32009-07-09 15:13:56 +01001276
Russell King89001442009-07-09 15:16:07 +01001277 host->gpio_wp = -ENOSYS;
1278 host->gpio_cd = -ENOSYS;
Rabin Vincent148b8b32010-08-09 12:55:48 +01001279 host->gpio_cd_irq = -1;
Russell King89001442009-07-09 15:16:07 +01001280
Russell King012b7d32009-07-09 15:13:56 +01001281 host->hw_designer = amba_manf(dev);
1282 host->hw_revision = amba_rev(dev);
Linus Walleij64de0282010-02-19 01:09:10 +01001283 dev_dbg(mmc_dev(mmc), "designer ID = 0x%02x\n", host->hw_designer);
1284 dev_dbg(mmc_dev(mmc), "revision = 0x%01x\n", host->hw_revision);
Russell King012b7d32009-07-09 15:13:56 +01001285
Russell Kingee569c42008-11-30 17:38:14 +00001286 host->clk = clk_get(&dev->dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 if (IS_ERR(host->clk)) {
1288 ret = PTR_ERR(host->clk);
1289 host->clk = NULL;
1290 goto host_free;
1291 }
1292
Russell King52ca0f32011-09-22 11:36:41 +01001293 ret = clk_prepare(host->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 if (ret)
Russell Kinga8d35842006-01-03 18:41:37 +00001295 goto clk_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
Russell King52ca0f32011-09-22 11:36:41 +01001297 ret = clk_enable(host->clk);
1298 if (ret)
1299 goto clk_unprep;
1300
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 host->plat = plat;
Rabin Vincent4956e102010-07-21 12:54:40 +01001302 host->variant = variant;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 host->mclk = clk_get_rate(host->clk);
Linus Walleijc8df9a52008-04-29 09:34:07 +01001304 /*
1305 * According to the spec, mclk is max 100 MHz,
1306 * so we try to adjust the clock down to this,
1307 * (if possible).
1308 */
1309 if (host->mclk > 100000000) {
1310 ret = clk_set_rate(host->clk, 100000000);
1311 if (ret < 0)
1312 goto clk_disable;
1313 host->mclk = clk_get_rate(host->clk);
Linus Walleij64de0282010-02-19 01:09:10 +01001314 dev_dbg(mmc_dev(mmc), "eventual mclk rate: %u Hz\n",
1315 host->mclk);
Linus Walleijc8df9a52008-04-29 09:34:07 +01001316 }
Russell Kingc8ebae32011-01-11 19:35:53 +00001317 host->phybase = dev->res.start;
Linus Walleijdc890c22009-06-07 23:27:31 +01001318 host->base = ioremap(dev->res.start, resource_size(&dev->res));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 if (!host->base) {
1320 ret = -ENOMEM;
1321 goto clk_disable;
1322 }
1323
1324 mmc->ops = &mmci_ops;
Linus Walleij7f294e42011-07-08 09:57:15 +01001325 /*
1326 * The ARM and ST versions of the block have slightly different
1327 * clock divider equations which means that the minimum divider
1328 * differs too.
1329 */
1330 if (variant->st_clkdiv)
1331 mmc->f_min = DIV_ROUND_UP(host->mclk, 257);
1332 else
1333 mmc->f_min = DIV_ROUND_UP(host->mclk, 512);
Linus Walleij808d97c2010-04-08 07:39:38 +01001334 /*
1335 * If the platform data supplies a maximum operating
1336 * frequency, this takes precedence. Else, we fall back
1337 * to using the module parameter, which has a (low)
1338 * default value in case it is not specified. Either
1339 * value must not exceed the clock rate into the block,
1340 * of course.
1341 */
1342 if (plat->f_max)
1343 mmc->f_max = min(host->mclk, plat->f_max);
1344 else
1345 mmc->f_max = min(host->mclk, fmax);
Linus Walleij64de0282010-02-19 01:09:10 +01001346 dev_dbg(mmc_dev(mmc), "clocking block at %u Hz\n", mmc->f_max);
1347
Linus Walleij34e84f32009-09-22 14:41:40 +01001348#ifdef CONFIG_REGULATOR
1349 /* If we're using the regulator framework, try to fetch a regulator */
1350 host->vcc = regulator_get(&dev->dev, "vmmc");
1351 if (IS_ERR(host->vcc))
1352 host->vcc = NULL;
1353 else {
1354 int mask = mmc_regulator_get_ocrmask(host->vcc);
1355
1356 if (mask < 0)
1357 dev_err(&dev->dev, "error getting OCR mask (%d)\n",
1358 mask);
1359 else {
1360 host->mmc->ocr_avail = (u32) mask;
1361 if (plat->ocr_mask)
1362 dev_warn(&dev->dev,
1363 "Provided ocr_mask/setpower will not be used "
1364 "(using regulator instead)\n");
1365 }
1366 }
1367#endif
1368 /* Fall back to platform data if no regulator is found */
1369 if (host->vcc == NULL)
1370 mmc->ocr_avail = plat->ocr_mask;
Linus Walleij9e6c82c2009-09-14 12:57:11 +01001371 mmc->caps = plat->capabilities;
Per Forlin5a092622011-11-14 12:02:28 +01001372 mmc->caps2 = plat->capabilities2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373
1374 /*
1375 * We can do SGIO
1376 */
Martin K. Petersena36274e2010-09-10 01:33:59 -04001377 mmc->max_segs = NR_SG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378
1379 /*
Rabin Vincent08458ef2010-07-21 12:55:59 +01001380 * Since only a certain number of bits are valid in the data length
1381 * register, we must ensure that we don't exceed 2^num-1 bytes in a
1382 * single request.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 */
Rabin Vincent08458ef2010-07-21 12:55:59 +01001384 mmc->max_req_size = (1 << variant->datalength_bits) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
1386 /*
1387 * Set the maximum segment size. Since we aren't doing DMA
1388 * (yet) we are only limited by the data length register.
1389 */
Pierre Ossman55db8902006-11-21 17:55:45 +01001390 mmc->max_seg_size = mmc->max_req_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +01001392 /*
1393 * Block size can be up to 2048 bytes, but must be a power of two.
1394 */
Will Deacon8f7f6b72012-02-24 11:25:21 +00001395 mmc->max_blk_size = 1 << 11;
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +01001396
Pierre Ossman55db8902006-11-21 17:55:45 +01001397 /*
Will Deacon8f7f6b72012-02-24 11:25:21 +00001398 * Limit the number of blocks transferred so that we don't overflow
1399 * the maximum request size.
Pierre Ossman55db8902006-11-21 17:55:45 +01001400 */
Will Deacon8f7f6b72012-02-24 11:25:21 +00001401 mmc->max_blk_count = mmc->max_req_size >> 11;
Pierre Ossman55db8902006-11-21 17:55:45 +01001402
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 spin_lock_init(&host->lock);
1404
1405 writel(0, host->base + MMCIMASK0);
1406 writel(0, host->base + MMCIMASK1);
1407 writel(0xfff, host->base + MMCICLEAR);
1408
Russell King89001442009-07-09 15:16:07 +01001409 if (gpio_is_valid(plat->gpio_cd)) {
1410 ret = gpio_request(plat->gpio_cd, DRIVER_NAME " (cd)");
1411 if (ret == 0)
1412 ret = gpio_direction_input(plat->gpio_cd);
1413 if (ret == 0)
1414 host->gpio_cd = plat->gpio_cd;
1415 else if (ret != -ENOSYS)
1416 goto err_gpio_cd;
Rabin Vincent148b8b32010-08-09 12:55:48 +01001417
Linus Walleij17ee0832011-05-05 17:23:10 +01001418 /*
1419 * A gpio pin that will detect cards when inserted and removed
1420 * will most likely want to trigger on the edges if it is
1421 * 0 when ejected and 1 when inserted (or mutatis mutandis
1422 * for the inverted case) so we request triggers on both
1423 * edges.
1424 */
Rabin Vincent148b8b32010-08-09 12:55:48 +01001425 ret = request_any_context_irq(gpio_to_irq(plat->gpio_cd),
Linus Walleij17ee0832011-05-05 17:23:10 +01001426 mmci_cd_irq,
1427 IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING,
1428 DRIVER_NAME " (cd)", host);
Rabin Vincent148b8b32010-08-09 12:55:48 +01001429 if (ret >= 0)
1430 host->gpio_cd_irq = gpio_to_irq(plat->gpio_cd);
Russell King89001442009-07-09 15:16:07 +01001431 }
1432 if (gpio_is_valid(plat->gpio_wp)) {
1433 ret = gpio_request(plat->gpio_wp, DRIVER_NAME " (wp)");
1434 if (ret == 0)
1435 ret = gpio_direction_input(plat->gpio_wp);
1436 if (ret == 0)
1437 host->gpio_wp = plat->gpio_wp;
1438 else if (ret != -ENOSYS)
1439 goto err_gpio_wp;
1440 }
1441
Rabin Vincent4b8caec2010-08-09 12:56:40 +01001442 if ((host->plat->status || host->gpio_cd != -ENOSYS)
1443 && host->gpio_cd_irq < 0)
Rabin Vincent148b8b32010-08-09 12:55:48 +01001444 mmc->caps |= MMC_CAP_NEEDS_POLL;
1445
Thomas Gleixnerdace1452006-07-01 19:29:38 -07001446 ret = request_irq(dev->irq[0], mmci_irq, IRQF_SHARED, DRIVER_NAME " (cmd)", host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 if (ret)
1448 goto unmap;
1449
Russell King023f1172011-12-18 11:31:51 +00001450 if (dev->irq[1] == NO_IRQ || !dev->irq[1])
Linus Walleij2686b4b2010-10-19 12:39:48 +01001451 host->singleirq = true;
1452 else {
1453 ret = request_irq(dev->irq[1], mmci_pio_irq, IRQF_SHARED,
1454 DRIVER_NAME " (pio)", host);
1455 if (ret)
1456 goto irq0_free;
1457 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458
Linus Walleij8cb28152011-01-24 15:22:13 +01001459 writel(MCI_IRQENABLE, host->base + MMCIMASK0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460
1461 amba_set_drvdata(dev, mmc);
1462
Russell Kingc8ebae32011-01-11 19:35:53 +00001463 dev_info(&dev->dev, "%s: PL%03x manf %x rev%u at 0x%08llx irq %d,%d (pio)\n",
1464 mmc_hostname(mmc), amba_part(dev), amba_manf(dev),
1465 amba_rev(dev), (unsigned long long)dev->res.start,
1466 dev->irq[0], dev->irq[1]);
1467
1468 mmci_dma_setup(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001470 pm_runtime_set_autosuspend_delay(&dev->dev, 50);
1471 pm_runtime_use_autosuspend(&dev->dev);
Russell King1c3be362011-08-14 09:17:05 +01001472 pm_runtime_put(&dev->dev);
1473
Russell King8c11a942010-12-28 19:40:40 +00001474 mmc_add_host(mmc);
1475
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 return 0;
1477
1478 irq0_free:
1479 free_irq(dev->irq[0], host);
1480 unmap:
Russell King89001442009-07-09 15:16:07 +01001481 if (host->gpio_wp != -ENOSYS)
1482 gpio_free(host->gpio_wp);
1483 err_gpio_wp:
Rabin Vincent148b8b32010-08-09 12:55:48 +01001484 if (host->gpio_cd_irq >= 0)
1485 free_irq(host->gpio_cd_irq, host);
Russell King89001442009-07-09 15:16:07 +01001486 if (host->gpio_cd != -ENOSYS)
1487 gpio_free(host->gpio_cd);
1488 err_gpio_cd:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 iounmap(host->base);
1490 clk_disable:
1491 clk_disable(host->clk);
Russell King52ca0f32011-09-22 11:36:41 +01001492 clk_unprep:
1493 clk_unprepare(host->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 clk_free:
1495 clk_put(host->clk);
1496 host_free:
1497 mmc_free_host(mmc);
1498 rel_regions:
1499 amba_release_regions(dev);
1500 out:
1501 return ret;
1502}
1503
Linus Walleij6dc4a472009-03-07 00:23:52 +01001504static int __devexit mmci_remove(struct amba_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505{
1506 struct mmc_host *mmc = amba_get_drvdata(dev);
1507
1508 amba_set_drvdata(dev, NULL);
1509
1510 if (mmc) {
1511 struct mmci_host *host = mmc_priv(mmc);
1512
Russell King1c3be362011-08-14 09:17:05 +01001513 /*
1514 * Undo pm_runtime_put() in probe. We use the _sync
1515 * version here so that we can access the primecell.
1516 */
1517 pm_runtime_get_sync(&dev->dev);
1518
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 mmc_remove_host(mmc);
1520
1521 writel(0, host->base + MMCIMASK0);
1522 writel(0, host->base + MMCIMASK1);
1523
1524 writel(0, host->base + MMCICOMMAND);
1525 writel(0, host->base + MMCIDATACTRL);
1526
Russell Kingc8ebae32011-01-11 19:35:53 +00001527 mmci_dma_release(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 free_irq(dev->irq[0], host);
Linus Walleij2686b4b2010-10-19 12:39:48 +01001529 if (!host->singleirq)
1530 free_irq(dev->irq[1], host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531
Russell King89001442009-07-09 15:16:07 +01001532 if (host->gpio_wp != -ENOSYS)
1533 gpio_free(host->gpio_wp);
Rabin Vincent148b8b32010-08-09 12:55:48 +01001534 if (host->gpio_cd_irq >= 0)
1535 free_irq(host->gpio_cd_irq, host);
Russell King89001442009-07-09 15:16:07 +01001536 if (host->gpio_cd != -ENOSYS)
1537 gpio_free(host->gpio_cd);
1538
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 iounmap(host->base);
1540 clk_disable(host->clk);
Russell King52ca0f32011-09-22 11:36:41 +01001541 clk_unprepare(host->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 clk_put(host->clk);
1543
Linus Walleij99fc5132010-09-29 01:08:27 -04001544 if (host->vcc)
1545 mmc_regulator_set_ocr(mmc, host->vcc, 0);
Linus Walleij34e84f32009-09-22 14:41:40 +01001546 regulator_put(host->vcc);
1547
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 mmc_free_host(mmc);
1549
1550 amba_release_regions(dev);
1551 }
1552
1553 return 0;
1554}
1555
Ulf Hansson48fa7002011-12-13 16:59:34 +01001556#ifdef CONFIG_SUSPEND
1557static int mmci_suspend(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558{
Ulf Hansson48fa7002011-12-13 16:59:34 +01001559 struct amba_device *adev = to_amba_device(dev);
1560 struct mmc_host *mmc = amba_get_drvdata(adev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 int ret = 0;
1562
1563 if (mmc) {
1564 struct mmci_host *host = mmc_priv(mmc);
1565
Matt Fleming1a13f8f2010-05-26 14:42:08 -07001566 ret = mmc_suspend_host(mmc);
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001567 if (ret == 0) {
1568 pm_runtime_get_sync(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 writel(0, host->base + MMCIMASK0);
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001570 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 }
1572
1573 return ret;
1574}
1575
Ulf Hansson48fa7002011-12-13 16:59:34 +01001576static int mmci_resume(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577{
Ulf Hansson48fa7002011-12-13 16:59:34 +01001578 struct amba_device *adev = to_amba_device(dev);
1579 struct mmc_host *mmc = amba_get_drvdata(adev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 int ret = 0;
1581
1582 if (mmc) {
1583 struct mmci_host *host = mmc_priv(mmc);
1584
1585 writel(MCI_IRQENABLE, host->base + MMCIMASK0);
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001586 pm_runtime_put(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587
1588 ret = mmc_resume_host(mmc);
1589 }
1590
1591 return ret;
1592}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593#endif
1594
Ulf Hansson48fa7002011-12-13 16:59:34 +01001595static const struct dev_pm_ops mmci_dev_pm_ops = {
1596 SET_SYSTEM_SLEEP_PM_OPS(mmci_suspend, mmci_resume)
1597};
1598
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599static struct amba_id mmci_ids[] = {
1600 {
1601 .id = 0x00041180,
Pawel Moll768fbc12011-03-11 17:18:07 +00001602 .mask = 0xff0fffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001603 .data = &variant_arm,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 },
1605 {
Pawel Moll768fbc12011-03-11 17:18:07 +00001606 .id = 0x01041180,
1607 .mask = 0xff0fffff,
1608 .data = &variant_arm_extended_fifo,
1609 },
1610 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 .id = 0x00041181,
1612 .mask = 0x000fffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001613 .data = &variant_arm,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 },
Linus Walleijcc30d602009-01-04 15:18:54 +01001615 /* ST Micro variants */
1616 {
1617 .id = 0x00180180,
1618 .mask = 0x00ffffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001619 .data = &variant_u300,
Linus Walleijcc30d602009-01-04 15:18:54 +01001620 },
1621 {
1622 .id = 0x00280180,
1623 .mask = 0x00ffffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001624 .data = &variant_u300,
1625 },
1626 {
1627 .id = 0x00480180,
Philippe Langlais1784b152011-03-25 08:51:52 +01001628 .mask = 0xf0ffffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001629 .data = &variant_ux500,
Linus Walleijcc30d602009-01-04 15:18:54 +01001630 },
Philippe Langlais1784b152011-03-25 08:51:52 +01001631 {
1632 .id = 0x10480180,
1633 .mask = 0xf0ffffff,
1634 .data = &variant_ux500v2,
1635 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 { 0, 0 },
1637};
1638
Dave Martin9f998352011-10-05 15:15:21 +01001639MODULE_DEVICE_TABLE(amba, mmci_ids);
1640
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641static struct amba_driver mmci_driver = {
1642 .drv = {
1643 .name = DRIVER_NAME,
Ulf Hansson48fa7002011-12-13 16:59:34 +01001644 .pm = &mmci_dev_pm_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 },
1646 .probe = mmci_probe,
Linus Walleij6dc4a472009-03-07 00:23:52 +01001647 .remove = __devexit_p(mmci_remove),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 .id_table = mmci_ids,
1649};
1650
viresh kumar9e5ed092012-03-15 10:40:38 +01001651module_amba_driver(mmci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653module_param(fmax, uint, 0444);
1654
1655MODULE_DESCRIPTION("ARM PrimeCell PL180/181 Multimedia Card Interface driver");
1656MODULE_LICENSE("GPL");