blob: 5e39b312c7ccbd93760488983d59e5e4e1120c55 [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 Walleija9a83782012-10-29 14:39:30 +010036#include <linux/pinctrl/consumer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Russell King7b09cda2005-07-01 12:02:59 +010038#include <asm/div64.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <asm/io.h>
Russell Kingc6b8fda2005-10-28 14:05:16 +010040#include <asm/sizes.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42#include "mmci.h"
43
44#define DRIVER_NAME "mmci-pl18x"
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046static unsigned int fmax = 515633;
47
Rabin Vincent4956e102010-07-21 12:54:40 +010048/**
49 * struct variant_data - MMCI variant-specific quirks
50 * @clkreg: default value for MCICLOCK register
Rabin Vincent4380c142010-07-21 12:55:18 +010051 * @clkreg_enable: enable value for MMCICLOCK register
Rabin Vincent08458ef2010-07-21 12:55:59 +010052 * @datalength_bits: number of bits in the MMCIDATALENGTH register
Rabin Vincent8301bb62010-08-09 12:57:30 +010053 * @fifosize: number of bytes that can be written when MMCI_TXFIFOEMPTY
54 * is asserted (likewise for RX)
55 * @fifohalfsize: number of bytes that can be written when MCI_TXFIFOHALFEMPTY
56 * is asserted (likewise for RX)
Linus Walleij34177802010-10-19 12:43:58 +010057 * @sdio: variant supports SDIO
Linus Walleijb70a67f2010-12-06 09:24:14 +010058 * @st_clkdiv: true if using a ST-specific clock divider algorithm
Philippe Langlais1784b152011-03-25 08:51:52 +010059 * @blksz_datactrl16: true if Block size is at b16..b30 position in datactrl register
Ulf Hansson7d72a1d2011-12-13 16:54:55 +010060 * @pwrreg_powerup: power up value for MMCIPOWER register
Ulf Hansson4d1a3a02011-12-13 16:57:07 +010061 * @signal_direction: input/out direction of bus signals can be indicated
Rabin Vincent4956e102010-07-21 12:54:40 +010062 */
63struct variant_data {
64 unsigned int clkreg;
Rabin Vincent4380c142010-07-21 12:55:18 +010065 unsigned int clkreg_enable;
Rabin Vincent08458ef2010-07-21 12:55:59 +010066 unsigned int datalength_bits;
Rabin Vincent8301bb62010-08-09 12:57:30 +010067 unsigned int fifosize;
68 unsigned int fifohalfsize;
Linus Walleij34177802010-10-19 12:43:58 +010069 bool sdio;
Linus Walleijb70a67f2010-12-06 09:24:14 +010070 bool st_clkdiv;
Philippe Langlais1784b152011-03-25 08:51:52 +010071 bool blksz_datactrl16;
Ulf Hansson7d72a1d2011-12-13 16:54:55 +010072 u32 pwrreg_powerup;
Ulf Hansson4d1a3a02011-12-13 16:57:07 +010073 bool signal_direction;
Rabin Vincent4956e102010-07-21 12:54:40 +010074};
75
76static struct variant_data variant_arm = {
Rabin Vincent8301bb62010-08-09 12:57:30 +010077 .fifosize = 16 * 4,
78 .fifohalfsize = 8 * 4,
Rabin Vincent08458ef2010-07-21 12:55:59 +010079 .datalength_bits = 16,
Ulf Hansson7d72a1d2011-12-13 16:54:55 +010080 .pwrreg_powerup = MCI_PWR_UP,
Rabin Vincent4956e102010-07-21 12:54:40 +010081};
82
Pawel Moll768fbc12011-03-11 17:18:07 +000083static struct variant_data variant_arm_extended_fifo = {
84 .fifosize = 128 * 4,
85 .fifohalfsize = 64 * 4,
86 .datalength_bits = 16,
Ulf Hansson7d72a1d2011-12-13 16:54:55 +010087 .pwrreg_powerup = MCI_PWR_UP,
Pawel Moll768fbc12011-03-11 17:18:07 +000088};
89
Rabin Vincent4956e102010-07-21 12:54:40 +010090static struct variant_data variant_u300 = {
Rabin Vincent8301bb62010-08-09 12:57:30 +010091 .fifosize = 16 * 4,
92 .fifohalfsize = 8 * 4,
Linus Walleij49ac2152011-03-04 14:54:16 +010093 .clkreg_enable = MCI_ST_U300_HWFCEN,
Rabin Vincent08458ef2010-07-21 12:55:59 +010094 .datalength_bits = 16,
Linus Walleij34177802010-10-19 12:43:58 +010095 .sdio = true,
Ulf Hansson7d72a1d2011-12-13 16:54:55 +010096 .pwrreg_powerup = MCI_PWR_ON,
Ulf Hansson4d1a3a02011-12-13 16:57:07 +010097 .signal_direction = true,
Rabin Vincent4956e102010-07-21 12:54:40 +010098};
99
Linus Walleij34fd4212012-04-10 17:43:59 +0100100static struct variant_data variant_nomadik = {
101 .fifosize = 16 * 4,
102 .fifohalfsize = 8 * 4,
103 .clkreg = MCI_CLK_ENABLE,
104 .datalength_bits = 24,
105 .sdio = true,
106 .st_clkdiv = true,
107 .pwrreg_powerup = MCI_PWR_ON,
108 .signal_direction = true,
109};
110
Rabin Vincent4956e102010-07-21 12:54:40 +0100111static struct variant_data variant_ux500 = {
Rabin Vincent8301bb62010-08-09 12:57:30 +0100112 .fifosize = 30 * 4,
113 .fifohalfsize = 8 * 4,
Rabin Vincent4956e102010-07-21 12:54:40 +0100114 .clkreg = MCI_CLK_ENABLE,
Linus Walleij49ac2152011-03-04 14:54:16 +0100115 .clkreg_enable = MCI_ST_UX500_HWFCEN,
Rabin Vincent08458ef2010-07-21 12:55:59 +0100116 .datalength_bits = 24,
Linus Walleij34177802010-10-19 12:43:58 +0100117 .sdio = true,
Linus Walleijb70a67f2010-12-06 09:24:14 +0100118 .st_clkdiv = 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,
Rabin Vincent4956e102010-07-21 12:54:40 +0100121};
Linus Walleijb70a67f2010-12-06 09:24:14 +0100122
Philippe Langlais1784b152011-03-25 08:51:52 +0100123static struct variant_data variant_ux500v2 = {
124 .fifosize = 30 * 4,
125 .fifohalfsize = 8 * 4,
126 .clkreg = MCI_CLK_ENABLE,
127 .clkreg_enable = MCI_ST_UX500_HWFCEN,
128 .datalength_bits = 24,
129 .sdio = true,
130 .st_clkdiv = true,
131 .blksz_datactrl16 = true,
Ulf Hansson7d72a1d2011-12-13 16:54:55 +0100132 .pwrreg_powerup = MCI_PWR_ON,
Ulf Hansson4d1a3a02011-12-13 16:57:07 +0100133 .signal_direction = true,
Philippe Langlais1784b152011-03-25 08:51:52 +0100134};
135
Linus Walleija6a64642009-09-14 12:56:14 +0100136/*
137 * This must be called with host->lock held
138 */
Ulf Hansson7437cfa2012-01-18 09:17:27 +0100139static void mmci_write_clkreg(struct mmci_host *host, u32 clk)
140{
141 if (host->clk_reg != clk) {
142 host->clk_reg = clk;
143 writel(clk, host->base + MMCICLOCK);
144 }
145}
146
147/*
148 * This must be called with host->lock held
149 */
150static void mmci_write_pwrreg(struct mmci_host *host, u32 pwr)
151{
152 if (host->pwr_reg != pwr) {
153 host->pwr_reg = pwr;
154 writel(pwr, host->base + MMCIPOWER);
155 }
156}
157
158/*
159 * This must be called with host->lock held
160 */
Linus Walleija6a64642009-09-14 12:56:14 +0100161static void mmci_set_clkreg(struct mmci_host *host, unsigned int desired)
162{
Rabin Vincent4956e102010-07-21 12:54:40 +0100163 struct variant_data *variant = host->variant;
164 u32 clk = variant->clkreg;
Linus Walleija6a64642009-09-14 12:56:14 +0100165
166 if (desired) {
167 if (desired >= host->mclk) {
Linus Walleij991a86e2010-12-10 09:35:53 +0100168 clk = MCI_CLK_BYPASS;
Linus Walleij399bc482011-04-01 07:59:17 +0100169 if (variant->st_clkdiv)
170 clk |= MCI_ST_UX500_NEG_EDGE;
Linus Walleija6a64642009-09-14 12:56:14 +0100171 host->cclk = host->mclk;
Linus Walleijb70a67f2010-12-06 09:24:14 +0100172 } else if (variant->st_clkdiv) {
173 /*
174 * DB8500 TRM says f = mclk / (clkdiv + 2)
175 * => clkdiv = (mclk / f) - 2
176 * Round the divider up so we don't exceed the max
177 * frequency
178 */
179 clk = DIV_ROUND_UP(host->mclk, desired) - 2;
180 if (clk >= 256)
181 clk = 255;
182 host->cclk = host->mclk / (clk + 2);
Linus Walleija6a64642009-09-14 12:56:14 +0100183 } else {
Linus Walleijb70a67f2010-12-06 09:24:14 +0100184 /*
185 * PL180 TRM says f = mclk / (2 * (clkdiv + 1))
186 * => clkdiv = mclk / (2 * f) - 1
187 */
Linus Walleija6a64642009-09-14 12:56:14 +0100188 clk = host->mclk / (2 * desired) - 1;
189 if (clk >= 256)
190 clk = 255;
191 host->cclk = host->mclk / (2 * (clk + 1));
192 }
Rabin Vincent4380c142010-07-21 12:55:18 +0100193
194 clk |= variant->clkreg_enable;
Linus Walleija6a64642009-09-14 12:56:14 +0100195 clk |= MCI_CLK_ENABLE;
196 /* This hasn't proven to be worthwhile */
197 /* clk |= MCI_CLK_PWRSAVE; */
198 }
199
Linus Walleij9e6c82c2009-09-14 12:57:11 +0100200 if (host->mmc->ios.bus_width == MMC_BUS_WIDTH_4)
Linus Walleij771dc152010-04-08 07:38:52 +0100201 clk |= MCI_4BIT_BUS;
202 if (host->mmc->ios.bus_width == MMC_BUS_WIDTH_8)
203 clk |= MCI_ST_8BIT_BUS;
Linus Walleij9e6c82c2009-09-14 12:57:11 +0100204
Ulf Hansson7437cfa2012-01-18 09:17:27 +0100205 mmci_write_clkreg(host, clk);
Linus Walleija6a64642009-09-14 12:56:14 +0100206}
207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208static void
209mmci_request_end(struct mmci_host *host, struct mmc_request *mrq)
210{
211 writel(0, host->base + MMCICOMMAND);
212
Russell Kinge47c2222007-01-08 16:42:51 +0000213 BUG_ON(host->data);
214
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 host->mrq = NULL;
216 host->cmd = NULL;
217
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 mmc_request_done(host->mmc, mrq);
Ulf Hansson2cd976c2011-12-13 17:01:11 +0100219
220 pm_runtime_mark_last_busy(mmc_dev(host->mmc));
221 pm_runtime_put_autosuspend(mmc_dev(host->mmc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222}
223
Linus Walleij2686b4b2010-10-19 12:39:48 +0100224static void mmci_set_mask1(struct mmci_host *host, unsigned int mask)
225{
226 void __iomem *base = host->base;
227
228 if (host->singleirq) {
229 unsigned int mask0 = readl(base + MMCIMASK0);
230
231 mask0 &= ~MCI_IRQ1MASK;
232 mask0 |= mask;
233
234 writel(mask0, base + MMCIMASK0);
235 }
236
237 writel(mask, base + MMCIMASK1);
238}
239
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240static void mmci_stop_data(struct mmci_host *host)
241{
242 writel(0, host->base + MMCIDATACTRL);
Linus Walleij2686b4b2010-10-19 12:39:48 +0100243 mmci_set_mask1(host, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 host->data = NULL;
245}
246
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100247static void mmci_init_sg(struct mmci_host *host, struct mmc_data *data)
248{
249 unsigned int flags = SG_MITER_ATOMIC;
250
251 if (data->flags & MMC_DATA_READ)
252 flags |= SG_MITER_TO_SG;
253 else
254 flags |= SG_MITER_FROM_SG;
255
256 sg_miter_start(&host->sg_miter, data->sg, data->sg_len, flags);
257}
258
Russell Kingc8ebae32011-01-11 19:35:53 +0000259/*
260 * All the DMA operation mode stuff goes inside this ifdef.
261 * This assumes that you have a generic DMA device interface,
262 * no custom DMA interfaces are supported.
263 */
264#ifdef CONFIG_DMA_ENGINE
265static void __devinit mmci_dma_setup(struct mmci_host *host)
266{
267 struct mmci_platform_data *plat = host->plat;
268 const char *rxname, *txname;
269 dma_cap_mask_t mask;
270
271 if (!plat || !plat->dma_filter) {
272 dev_info(mmc_dev(host->mmc), "no DMA platform data\n");
273 return;
274 }
275
Per Forlin58c7ccb2011-07-01 18:55:24 +0200276 /* initialize pre request cookie */
277 host->next_data.cookie = 1;
278
Russell Kingc8ebae32011-01-11 19:35:53 +0000279 /* Try to acquire a generic DMA engine slave channel */
280 dma_cap_zero(mask);
281 dma_cap_set(DMA_SLAVE, mask);
282
283 /*
284 * If only an RX channel is specified, the driver will
285 * attempt to use it bidirectionally, however if it is
286 * is specified but cannot be located, DMA will be disabled.
287 */
288 if (plat->dma_rx_param) {
289 host->dma_rx_channel = dma_request_channel(mask,
290 plat->dma_filter,
291 plat->dma_rx_param);
292 /* E.g if no DMA hardware is present */
293 if (!host->dma_rx_channel)
294 dev_err(mmc_dev(host->mmc), "no RX DMA channel\n");
295 }
296
297 if (plat->dma_tx_param) {
298 host->dma_tx_channel = dma_request_channel(mask,
299 plat->dma_filter,
300 plat->dma_tx_param);
301 if (!host->dma_tx_channel)
302 dev_warn(mmc_dev(host->mmc), "no TX DMA channel\n");
303 } else {
304 host->dma_tx_channel = host->dma_rx_channel;
305 }
306
307 if (host->dma_rx_channel)
308 rxname = dma_chan_name(host->dma_rx_channel);
309 else
310 rxname = "none";
311
312 if (host->dma_tx_channel)
313 txname = dma_chan_name(host->dma_tx_channel);
314 else
315 txname = "none";
316
317 dev_info(mmc_dev(host->mmc), "DMA channels RX %s, TX %s\n",
318 rxname, txname);
319
320 /*
321 * Limit the maximum segment size in any SG entry according to
322 * the parameters of the DMA engine device.
323 */
324 if (host->dma_tx_channel) {
325 struct device *dev = host->dma_tx_channel->device->dev;
326 unsigned int max_seg_size = dma_get_max_seg_size(dev);
327
328 if (max_seg_size < host->mmc->max_seg_size)
329 host->mmc->max_seg_size = max_seg_size;
330 }
331 if (host->dma_rx_channel) {
332 struct device *dev = host->dma_rx_channel->device->dev;
333 unsigned int max_seg_size = dma_get_max_seg_size(dev);
334
335 if (max_seg_size < host->mmc->max_seg_size)
336 host->mmc->max_seg_size = max_seg_size;
337 }
338}
339
340/*
341 * This is used in __devinit or __devexit so inline it
342 * so it can be discarded.
343 */
344static inline void mmci_dma_release(struct mmci_host *host)
345{
346 struct mmci_platform_data *plat = host->plat;
347
348 if (host->dma_rx_channel)
349 dma_release_channel(host->dma_rx_channel);
350 if (host->dma_tx_channel && plat->dma_tx_param)
351 dma_release_channel(host->dma_tx_channel);
352 host->dma_rx_channel = host->dma_tx_channel = NULL;
353}
354
355static void mmci_dma_unmap(struct mmci_host *host, struct mmc_data *data)
356{
357 struct dma_chan *chan = host->dma_current;
358 enum dma_data_direction dir;
359 u32 status;
360 int i;
361
362 /* Wait up to 1ms for the DMA to complete */
363 for (i = 0; ; i++) {
364 status = readl(host->base + MMCISTATUS);
365 if (!(status & MCI_RXDATAAVLBLMASK) || i >= 100)
366 break;
367 udelay(10);
368 }
369
370 /*
371 * Check to see whether we still have some data left in the FIFO -
372 * this catches DMA controllers which are unable to monitor the
373 * DMALBREQ and DMALSREQ signals while allowing us to DMA to non-
374 * contiguous buffers. On TX, we'll get a FIFO underrun error.
375 */
376 if (status & MCI_RXDATAAVLBLMASK) {
377 dmaengine_terminate_all(chan);
378 if (!data->error)
379 data->error = -EIO;
380 }
381
382 if (data->flags & MMC_DATA_WRITE) {
383 dir = DMA_TO_DEVICE;
384 } else {
385 dir = DMA_FROM_DEVICE;
386 }
387
Per Forlin58c7ccb2011-07-01 18:55:24 +0200388 if (!data->host_cookie)
389 dma_unmap_sg(chan->device->dev, data->sg, data->sg_len, dir);
Russell Kingc8ebae32011-01-11 19:35:53 +0000390
391 /*
392 * Use of DMA with scatter-gather is impossible.
393 * Give up with DMA and switch back to PIO mode.
394 */
395 if (status & MCI_RXDATAAVLBLMASK) {
396 dev_err(mmc_dev(host->mmc), "buggy DMA detected. Taking evasive action.\n");
397 mmci_dma_release(host);
398 }
399}
400
401static void mmci_dma_data_error(struct mmci_host *host)
402{
403 dev_err(mmc_dev(host->mmc), "error during DMA transfer!\n");
404 dmaengine_terminate_all(host->dma_current);
405}
406
Per Forlin58c7ccb2011-07-01 18:55:24 +0200407static int mmci_dma_prep_data(struct mmci_host *host, struct mmc_data *data,
408 struct mmci_host_next *next)
Russell Kingc8ebae32011-01-11 19:35:53 +0000409{
410 struct variant_data *variant = host->variant;
411 struct dma_slave_config conf = {
412 .src_addr = host->phybase + MMCIFIFO,
413 .dst_addr = host->phybase + MMCIFIFO,
414 .src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES,
415 .dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES,
416 .src_maxburst = variant->fifohalfsize >> 2, /* # of words */
417 .dst_maxburst = variant->fifohalfsize >> 2, /* # of words */
Viresh Kumar258aea72012-02-01 16:12:19 +0530418 .device_fc = false,
Russell Kingc8ebae32011-01-11 19:35:53 +0000419 };
Russell Kingc8ebae32011-01-11 19:35:53 +0000420 struct dma_chan *chan;
421 struct dma_device *device;
422 struct dma_async_tx_descriptor *desc;
Vinod Koul05f57992011-10-14 10:45:11 +0530423 enum dma_data_direction buffer_dirn;
Russell Kingc8ebae32011-01-11 19:35:53 +0000424 int nr_sg;
425
Per Forlin58c7ccb2011-07-01 18:55:24 +0200426 /* Check if next job is already prepared */
427 if (data->host_cookie && !next &&
428 host->dma_current && host->dma_desc_current)
429 return 0;
430
431 if (!next) {
432 host->dma_current = NULL;
433 host->dma_desc_current = NULL;
434 }
Russell Kingc8ebae32011-01-11 19:35:53 +0000435
436 if (data->flags & MMC_DATA_READ) {
Vinod Koul05f57992011-10-14 10:45:11 +0530437 conf.direction = DMA_DEV_TO_MEM;
438 buffer_dirn = DMA_FROM_DEVICE;
Russell Kingc8ebae32011-01-11 19:35:53 +0000439 chan = host->dma_rx_channel;
440 } else {
Vinod Koul05f57992011-10-14 10:45:11 +0530441 conf.direction = DMA_MEM_TO_DEV;
442 buffer_dirn = DMA_TO_DEVICE;
Russell Kingc8ebae32011-01-11 19:35:53 +0000443 chan = host->dma_tx_channel;
444 }
445
446 /* If there's no DMA channel, fall back to PIO */
447 if (!chan)
448 return -EINVAL;
449
450 /* If less than or equal to the fifo size, don't bother with DMA */
Per Forlin58c7ccb2011-07-01 18:55:24 +0200451 if (data->blksz * data->blocks <= variant->fifosize)
Russell Kingc8ebae32011-01-11 19:35:53 +0000452 return -EINVAL;
453
454 device = chan->device;
Vinod Koul05f57992011-10-14 10:45:11 +0530455 nr_sg = dma_map_sg(device->dev, data->sg, data->sg_len, buffer_dirn);
Russell Kingc8ebae32011-01-11 19:35:53 +0000456 if (nr_sg == 0)
457 return -EINVAL;
458
459 dmaengine_slave_config(chan, &conf);
Alexandre Bounine16052822012-03-08 16:11:18 -0500460 desc = dmaengine_prep_slave_sg(chan, data->sg, nr_sg,
Russell Kingc8ebae32011-01-11 19:35:53 +0000461 conf.direction, DMA_CTRL_ACK);
462 if (!desc)
463 goto unmap_exit;
464
Per Forlin58c7ccb2011-07-01 18:55:24 +0200465 if (next) {
466 next->dma_chan = chan;
467 next->dma_desc = desc;
468 } else {
469 host->dma_current = chan;
470 host->dma_desc_current = desc;
471 }
Russell Kingc8ebae32011-01-11 19:35:53 +0000472
Per Forlin58c7ccb2011-07-01 18:55:24 +0200473 return 0;
474
475 unmap_exit:
476 if (!next)
477 dmaengine_terminate_all(chan);
Vinod Koul05f57992011-10-14 10:45:11 +0530478 dma_unmap_sg(device->dev, data->sg, data->sg_len, buffer_dirn);
Per Forlin58c7ccb2011-07-01 18:55:24 +0200479 return -ENOMEM;
480}
481
482static int mmci_dma_start_data(struct mmci_host *host, unsigned int datactrl)
483{
484 int ret;
485 struct mmc_data *data = host->data;
486
487 ret = mmci_dma_prep_data(host, host->data, NULL);
488 if (ret)
489 return ret;
490
491 /* Okay, go for it. */
Russell Kingc8ebae32011-01-11 19:35:53 +0000492 dev_vdbg(mmc_dev(host->mmc),
493 "Submit MMCI DMA job, sglen %d blksz %04x blks %04x flags %08x\n",
494 data->sg_len, data->blksz, data->blocks, data->flags);
Per Forlin58c7ccb2011-07-01 18:55:24 +0200495 dmaengine_submit(host->dma_desc_current);
496 dma_async_issue_pending(host->dma_current);
Russell Kingc8ebae32011-01-11 19:35:53 +0000497
498 datactrl |= MCI_DPSM_DMAENABLE;
499
500 /* Trigger the DMA transfer */
501 writel(datactrl, host->base + MMCIDATACTRL);
502
503 /*
504 * Let the MMCI say when the data is ended and it's time
505 * to fire next DMA request. When that happens, MMCI will
506 * call mmci_data_end()
507 */
508 writel(readl(host->base + MMCIMASK0) | MCI_DATAENDMASK,
509 host->base + MMCIMASK0);
510 return 0;
Russell Kingc8ebae32011-01-11 19:35:53 +0000511}
Per Forlin58c7ccb2011-07-01 18:55:24 +0200512
513static void mmci_get_next_data(struct mmci_host *host, struct mmc_data *data)
514{
515 struct mmci_host_next *next = &host->next_data;
516
517 if (data->host_cookie && data->host_cookie != next->cookie) {
Girish K Sa3c76eb2011-10-11 11:44:09 +0530518 pr_warning("[%s] invalid cookie: data->host_cookie %d"
Per Forlin58c7ccb2011-07-01 18:55:24 +0200519 " host->next_data.cookie %d\n",
520 __func__, data->host_cookie, host->next_data.cookie);
521 data->host_cookie = 0;
522 }
523
524 if (!data->host_cookie)
525 return;
526
527 host->dma_desc_current = next->dma_desc;
528 host->dma_current = next->dma_chan;
529
530 next->dma_desc = NULL;
531 next->dma_chan = NULL;
532}
533
534static void mmci_pre_request(struct mmc_host *mmc, struct mmc_request *mrq,
535 bool is_first_req)
536{
537 struct mmci_host *host = mmc_priv(mmc);
538 struct mmc_data *data = mrq->data;
539 struct mmci_host_next *nd = &host->next_data;
540
541 if (!data)
542 return;
543
544 if (data->host_cookie) {
545 data->host_cookie = 0;
546 return;
547 }
548
549 /* if config for dma */
550 if (((data->flags & MMC_DATA_WRITE) && host->dma_tx_channel) ||
551 ((data->flags & MMC_DATA_READ) && host->dma_rx_channel)) {
552 if (mmci_dma_prep_data(host, data, nd))
553 data->host_cookie = 0;
554 else
555 data->host_cookie = ++nd->cookie < 0 ? 1 : nd->cookie;
556 }
557}
558
559static void mmci_post_request(struct mmc_host *mmc, struct mmc_request *mrq,
560 int err)
561{
562 struct mmci_host *host = mmc_priv(mmc);
563 struct mmc_data *data = mrq->data;
564 struct dma_chan *chan;
565 enum dma_data_direction dir;
566
567 if (!data)
568 return;
569
570 if (data->flags & MMC_DATA_READ) {
571 dir = DMA_FROM_DEVICE;
572 chan = host->dma_rx_channel;
573 } else {
574 dir = DMA_TO_DEVICE;
575 chan = host->dma_tx_channel;
576 }
577
578
579 /* if config for dma */
580 if (chan) {
581 if (err)
582 dmaengine_terminate_all(chan);
Per Forlin8e3336b2011-08-29 15:35:59 +0200583 if (data->host_cookie)
Per Forlin58c7ccb2011-07-01 18:55:24 +0200584 dma_unmap_sg(mmc_dev(host->mmc), data->sg,
585 data->sg_len, dir);
586 mrq->data->host_cookie = 0;
587 }
588}
589
Russell Kingc8ebae32011-01-11 19:35:53 +0000590#else
591/* Blank functions if the DMA engine is not available */
Per Forlin58c7ccb2011-07-01 18:55:24 +0200592static void mmci_get_next_data(struct mmci_host *host, struct mmc_data *data)
593{
594}
Russell Kingc8ebae32011-01-11 19:35:53 +0000595static inline void mmci_dma_setup(struct mmci_host *host)
596{
597}
598
599static inline void mmci_dma_release(struct mmci_host *host)
600{
601}
602
603static inline void mmci_dma_unmap(struct mmci_host *host, struct mmc_data *data)
604{
605}
606
607static inline void mmci_dma_data_error(struct mmci_host *host)
608{
609}
610
611static inline int mmci_dma_start_data(struct mmci_host *host, unsigned int datactrl)
612{
613 return -ENOSYS;
614}
Per Forlin58c7ccb2011-07-01 18:55:24 +0200615
616#define mmci_pre_request NULL
617#define mmci_post_request NULL
618
Russell Kingc8ebae32011-01-11 19:35:53 +0000619#endif
620
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621static void mmci_start_data(struct mmci_host *host, struct mmc_data *data)
622{
Rabin Vincent8301bb62010-08-09 12:57:30 +0100623 struct variant_data *variant = host->variant;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 unsigned int datactrl, timeout, irqmask;
Russell King7b09cda2005-07-01 12:02:59 +0100625 unsigned long long clks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 void __iomem *base;
Russell King3bc87f22006-08-27 13:51:28 +0100627 int blksz_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
Linus Walleij64de0282010-02-19 01:09:10 +0100629 dev_dbg(mmc_dev(host->mmc), "blksz %04x blks %04x flags %08x\n",
630 data->blksz, data->blocks, data->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
632 host->data = data;
Rabin Vincent528320d2010-07-21 12:49:49 +0100633 host->size = data->blksz * data->blocks;
Russell King51d43752011-01-27 10:56:52 +0000634 data->bytes_xfered = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Russell King7b09cda2005-07-01 12:02:59 +0100636 clks = (unsigned long long)data->timeout_ns * host->cclk;
637 do_div(clks, 1000000000UL);
638
639 timeout = data->timeout_clks + (unsigned int)clks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
641 base = host->base;
642 writel(timeout, base + MMCIDATATIMER);
643 writel(host->size, base + MMCIDATALENGTH);
644
Russell King3bc87f22006-08-27 13:51:28 +0100645 blksz_bits = ffs(data->blksz) - 1;
646 BUG_ON(1 << blksz_bits != data->blksz);
647
Philippe Langlais1784b152011-03-25 08:51:52 +0100648 if (variant->blksz_datactrl16)
649 datactrl = MCI_DPSM_ENABLE | (data->blksz << 16);
650 else
651 datactrl = MCI_DPSM_ENABLE | blksz_bits << 4;
Russell Kingc8ebae32011-01-11 19:35:53 +0000652
653 if (data->flags & MMC_DATA_READ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 datactrl |= MCI_DPSM_DIRECTION;
Russell Kingc8ebae32011-01-11 19:35:53 +0000655
Ulf Hansson7258db72011-12-13 17:05:28 +0100656 /* The ST Micro variants has a special bit to enable SDIO */
657 if (variant->sdio && host->mmc->card)
Ulf Hansson06c1a122012-10-12 14:01:50 +0100658 if (mmc_card_sdio(host->mmc->card)) {
659 /*
660 * The ST Micro variants has a special bit
661 * to enable SDIO.
662 */
663 u32 clk;
664
Ulf Hansson7258db72011-12-13 17:05:28 +0100665 datactrl |= MCI_ST_DPSM_SDIOEN;
666
Ulf Hansson06c1a122012-10-12 14:01:50 +0100667 /*
Ulf Hansson70ac0932012-10-12 14:07:36 +0100668 * The ST Micro variant for SDIO small write transfers
669 * needs to have clock H/W flow control disabled,
670 * otherwise the transfer will not start. The threshold
671 * depends on the rate of MCLK.
Ulf Hansson06c1a122012-10-12 14:01:50 +0100672 */
Ulf Hansson70ac0932012-10-12 14:07:36 +0100673 if (data->flags & MMC_DATA_WRITE &&
674 (host->size < 8 ||
675 (host->size <= 8 && host->mclk > 50000000)))
Ulf Hansson06c1a122012-10-12 14:01:50 +0100676 clk = host->clk_reg & ~variant->clkreg_enable;
677 else
678 clk = host->clk_reg | variant->clkreg_enable;
679
680 mmci_write_clkreg(host, clk);
681 }
682
Russell Kingc8ebae32011-01-11 19:35:53 +0000683 /*
684 * Attempt to use DMA operation mode, if this
685 * should fail, fall back to PIO mode
686 */
687 if (!mmci_dma_start_data(host, datactrl))
688 return;
689
690 /* IRQ mode, map the SG list for CPU reading/writing */
691 mmci_init_sg(host, data);
692
693 if (data->flags & MMC_DATA_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 irqmask = MCI_RXFIFOHALFFULLMASK;
Russell King0425a142006-02-16 16:48:31 +0000695
696 /*
Russell Kingc4d877c2011-01-27 09:50:13 +0000697 * If we have less than the fifo 'half-full' threshold to
698 * transfer, trigger a PIO interrupt as soon as any data
699 * is available.
Russell King0425a142006-02-16 16:48:31 +0000700 */
Russell Kingc4d877c2011-01-27 09:50:13 +0000701 if (host->size < variant->fifohalfsize)
Russell King0425a142006-02-16 16:48:31 +0000702 irqmask |= MCI_RXDATAAVLBLMASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 } else {
704 /*
705 * We don't actually need to include "FIFO empty" here
706 * since its implicit in "FIFO half empty".
707 */
708 irqmask = MCI_TXFIFOHALFEMPTYMASK;
709 }
710
711 writel(datactrl, base + MMCIDATACTRL);
712 writel(readl(base + MMCIMASK0) & ~MCI_DATAENDMASK, base + MMCIMASK0);
Linus Walleij2686b4b2010-10-19 12:39:48 +0100713 mmci_set_mask1(host, irqmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714}
715
716static void
717mmci_start_command(struct mmci_host *host, struct mmc_command *cmd, u32 c)
718{
719 void __iomem *base = host->base;
720
Linus Walleij64de0282010-02-19 01:09:10 +0100721 dev_dbg(mmc_dev(host->mmc), "op %02x arg %08x flags %08x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 cmd->opcode, cmd->arg, cmd->flags);
723
724 if (readl(base + MMCICOMMAND) & MCI_CPSM_ENABLE) {
725 writel(0, base + MMCICOMMAND);
726 udelay(1);
727 }
728
729 c |= cmd->opcode | MCI_CPSM_ENABLE;
Russell Kinge9225172006-02-02 12:23:12 +0000730 if (cmd->flags & MMC_RSP_PRESENT) {
731 if (cmd->flags & MMC_RSP_136)
732 c |= MCI_CPSM_LONGRSP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 c |= MCI_CPSM_RESPONSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 }
735 if (/*interrupt*/0)
736 c |= MCI_CPSM_INTERRUPT;
737
738 host->cmd = cmd;
739
740 writel(cmd->arg, base + MMCIARGUMENT);
741 writel(c, base + MMCICOMMAND);
742}
743
744static void
745mmci_data_irq(struct mmci_host *host, struct mmc_data *data,
746 unsigned int status)
747{
Linus Walleijf20f8f22010-10-19 13:41:24 +0100748 /* First check for errors */
Ulf Hanssonb63038d2011-12-13 16:51:04 +0100749 if (status & (MCI_DATACRCFAIL|MCI_DATATIMEOUT|MCI_STARTBITERR|
750 MCI_TXUNDERRUN|MCI_RXOVERRUN)) {
Linus Walleij8cb28152011-01-24 15:22:13 +0100751 u32 remain, success;
Linus Walleijf20f8f22010-10-19 13:41:24 +0100752
Russell Kingc8ebae32011-01-11 19:35:53 +0000753 /* Terminate the DMA transfer */
754 if (dma_inprogress(host))
755 mmci_dma_data_error(host);
756
Russell Kingc8afc9d2011-02-04 09:19:46 +0000757 /*
758 * Calculate how far we are into the transfer. Note that
759 * the data counter gives the number of bytes transferred
760 * on the MMC bus, not on the host side. On reads, this
761 * can be as much as a FIFO-worth of data ahead. This
762 * matters for FIFO overruns only.
763 */
Linus Walleijf5a106d2011-01-27 17:44:34 +0100764 remain = readl(host->base + MMCIDATACNT);
Linus Walleij8cb28152011-01-24 15:22:13 +0100765 success = data->blksz * data->blocks - remain;
766
Russell Kingc8afc9d2011-02-04 09:19:46 +0000767 dev_dbg(mmc_dev(host->mmc), "MCI ERROR IRQ, status 0x%08x at 0x%08x\n",
768 status, success);
Linus Walleij8cb28152011-01-24 15:22:13 +0100769 if (status & MCI_DATACRCFAIL) {
770 /* Last block was not successful */
Russell Kingc8afc9d2011-02-04 09:19:46 +0000771 success -= 1;
Pierre Ossman17b04292007-07-22 22:18:46 +0200772 data->error = -EILSEQ;
Linus Walleij8cb28152011-01-24 15:22:13 +0100773 } else if (status & MCI_DATATIMEOUT) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200774 data->error = -ETIMEDOUT;
Linus Walleij757df742011-06-30 15:10:21 +0100775 } else if (status & MCI_STARTBITERR) {
776 data->error = -ECOMM;
Russell Kingc8afc9d2011-02-04 09:19:46 +0000777 } else if (status & MCI_TXUNDERRUN) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200778 data->error = -EIO;
Russell Kingc8afc9d2011-02-04 09:19:46 +0000779 } else if (status & MCI_RXOVERRUN) {
780 if (success > host->variant->fifosize)
781 success -= host->variant->fifosize;
782 else
783 success = 0;
Linus Walleij8cb28152011-01-24 15:22:13 +0100784 data->error = -EIO;
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100785 }
Russell King51d43752011-01-27 10:56:52 +0000786 data->bytes_xfered = round_down(success, data->blksz);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 }
Linus Walleijf20f8f22010-10-19 13:41:24 +0100788
Linus Walleij8cb28152011-01-24 15:22:13 +0100789 if (status & MCI_DATABLOCKEND)
790 dev_err(mmc_dev(host->mmc), "stray MCI_DATABLOCKEND interrupt\n");
Linus Walleijf20f8f22010-10-19 13:41:24 +0100791
Russell Kingccff9b52011-01-30 21:03:50 +0000792 if (status & MCI_DATAEND || data->error) {
Russell Kingc8ebae32011-01-11 19:35:53 +0000793 if (dma_inprogress(host))
794 mmci_dma_unmap(host, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 mmci_stop_data(host);
796
Linus Walleij8cb28152011-01-24 15:22:13 +0100797 if (!data->error)
798 /* The error clause is handled above, success! */
Russell King51d43752011-01-27 10:56:52 +0000799 data->bytes_xfered = data->blksz * data->blocks;
Linus Walleijf20f8f22010-10-19 13:41:24 +0100800
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 if (!data->stop) {
802 mmci_request_end(host, data->mrq);
803 } else {
804 mmci_start_command(host, data->stop, 0);
805 }
806 }
807}
808
809static void
810mmci_cmd_irq(struct mmci_host *host, struct mmc_command *cmd,
811 unsigned int status)
812{
813 void __iomem *base = host->base;
814
815 host->cmd = NULL;
816
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 if (status & MCI_CMDTIMEOUT) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200818 cmd->error = -ETIMEDOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 } else if (status & MCI_CMDCRCFAIL && cmd->flags & MMC_RSP_CRC) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200820 cmd->error = -EILSEQ;
Russell King - ARM Linux9047b432011-01-11 16:35:56 +0000821 } else {
822 cmd->resp[0] = readl(base + MMCIRESPONSE0);
823 cmd->resp[1] = readl(base + MMCIRESPONSE1);
824 cmd->resp[2] = readl(base + MMCIRESPONSE2);
825 cmd->resp[3] = readl(base + MMCIRESPONSE3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 }
827
Pierre Ossman17b04292007-07-22 22:18:46 +0200828 if (!cmd->data || cmd->error) {
Ulf Hansson3b6e3c72011-12-13 16:58:43 +0100829 if (host->data) {
830 /* Terminate the DMA transfer */
831 if (dma_inprogress(host))
832 mmci_dma_data_error(host);
Russell Kinge47c2222007-01-08 16:42:51 +0000833 mmci_stop_data(host);
Ulf Hansson3b6e3c72011-12-13 16:58:43 +0100834 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 mmci_request_end(host, cmd->mrq);
836 } else if (!(cmd->data->flags & MMC_DATA_READ)) {
837 mmci_start_data(host, cmd->data);
838 }
839}
840
841static int mmci_pio_read(struct mmci_host *host, char *buffer, unsigned int remain)
842{
843 void __iomem *base = host->base;
844 char *ptr = buffer;
845 u32 status;
Linus Walleij26eed9a2008-04-26 23:39:44 +0100846 int host_remain = host->size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
848 do {
Linus Walleij26eed9a2008-04-26 23:39:44 +0100849 int count = host_remain - (readl(base + MMCIFIFOCNT) << 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
851 if (count > remain)
852 count = remain;
853
854 if (count <= 0)
855 break;
856
Ulf Hansson393e5e22011-12-13 17:08:04 +0100857 /*
858 * SDIO especially may want to send something that is
859 * not divisible by 4 (as opposed to card sectors
860 * etc). Therefore make sure to always read the last bytes
861 * while only doing full 32-bit reads towards the FIFO.
862 */
863 if (unlikely(count & 0x3)) {
864 if (count < 4) {
865 unsigned char buf[4];
Davide Ciminaghi4b85da02012-12-10 14:47:21 +0100866 ioread32_rep(base + MMCIFIFO, buf, 1);
Ulf Hansson393e5e22011-12-13 17:08:04 +0100867 memcpy(ptr, buf, count);
868 } else {
Davide Ciminaghi4b85da02012-12-10 14:47:21 +0100869 ioread32_rep(base + MMCIFIFO, ptr, count >> 2);
Ulf Hansson393e5e22011-12-13 17:08:04 +0100870 count &= ~0x3;
871 }
872 } else {
Davide Ciminaghi4b85da02012-12-10 14:47:21 +0100873 ioread32_rep(base + MMCIFIFO, ptr, count >> 2);
Ulf Hansson393e5e22011-12-13 17:08:04 +0100874 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
876 ptr += count;
877 remain -= count;
Linus Walleij26eed9a2008-04-26 23:39:44 +0100878 host_remain -= count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879
880 if (remain == 0)
881 break;
882
883 status = readl(base + MMCISTATUS);
884 } while (status & MCI_RXDATAAVLBL);
885
886 return ptr - buffer;
887}
888
889static int mmci_pio_write(struct mmci_host *host, char *buffer, unsigned int remain, u32 status)
890{
Rabin Vincent8301bb62010-08-09 12:57:30 +0100891 struct variant_data *variant = host->variant;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 void __iomem *base = host->base;
893 char *ptr = buffer;
894
895 do {
896 unsigned int count, maxcnt;
897
Rabin Vincent8301bb62010-08-09 12:57:30 +0100898 maxcnt = status & MCI_TXFIFOEMPTY ?
899 variant->fifosize : variant->fifohalfsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 count = min(remain, maxcnt);
901
Linus Walleij34177802010-10-19 12:43:58 +0100902 /*
Linus Walleij34177802010-10-19 12:43:58 +0100903 * SDIO especially may want to send something that is
904 * not divisible by 4 (as opposed to card sectors
905 * etc), and the FIFO only accept full 32-bit writes.
906 * So compensate by adding +3 on the count, a single
907 * byte become a 32bit write, 7 bytes will be two
908 * 32bit writes etc.
909 */
Davide Ciminaghi4b85da02012-12-10 14:47:21 +0100910 iowrite32_rep(base + MMCIFIFO, ptr, (count + 3) >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
912 ptr += count;
913 remain -= count;
914
915 if (remain == 0)
916 break;
917
918 status = readl(base + MMCISTATUS);
919 } while (status & MCI_TXFIFOHALFEMPTY);
920
921 return ptr - buffer;
922}
923
924/*
925 * PIO data transfer IRQ handler.
926 */
David Howells7d12e782006-10-05 14:55:46 +0100927static irqreturn_t mmci_pio_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928{
929 struct mmci_host *host = dev_id;
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100930 struct sg_mapping_iter *sg_miter = &host->sg_miter;
Rabin Vincent8301bb62010-08-09 12:57:30 +0100931 struct variant_data *variant = host->variant;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 void __iomem *base = host->base;
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100933 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 u32 status;
935
936 status = readl(base + MMCISTATUS);
937
Linus Walleij64de0282010-02-19 01:09:10 +0100938 dev_dbg(mmc_dev(host->mmc), "irq1 (pio) %08x\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100940 local_irq_save(flags);
941
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 unsigned int remain, len;
944 char *buffer;
945
946 /*
947 * For write, we only need to test the half-empty flag
948 * here - if the FIFO is completely empty, then by
949 * definition it is more than half empty.
950 *
951 * For read, check for data available.
952 */
953 if (!(status & (MCI_TXFIFOHALFEMPTY|MCI_RXDATAAVLBL)))
954 break;
955
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100956 if (!sg_miter_next(sg_miter))
957 break;
958
959 buffer = sg_miter->addr;
960 remain = sg_miter->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961
962 len = 0;
963 if (status & MCI_RXACTIVE)
964 len = mmci_pio_read(host, buffer, remain);
965 if (status & MCI_TXACTIVE)
966 len = mmci_pio_write(host, buffer, remain, status);
967
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100968 sg_miter->consumed = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 host->size -= len;
971 remain -= len;
972
973 if (remain)
974 break;
975
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 status = readl(base + MMCISTATUS);
977 } while (1);
978
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100979 sg_miter_stop(sg_miter);
980
981 local_irq_restore(flags);
982
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 /*
Russell Kingc4d877c2011-01-27 09:50:13 +0000984 * If we have less than the fifo 'half-full' threshold to transfer,
985 * trigger a PIO interrupt as soon as any data is available.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 */
Russell Kingc4d877c2011-01-27 09:50:13 +0000987 if (status & MCI_RXACTIVE && host->size < variant->fifohalfsize)
Linus Walleij2686b4b2010-10-19 12:39:48 +0100988 mmci_set_mask1(host, MCI_RXDATAAVLBLMASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
990 /*
991 * If we run out of data, disable the data IRQs; this
992 * prevents a race where the FIFO becomes empty before
993 * the chip itself has disabled the data path, and
994 * stops us racing with our data end IRQ.
995 */
996 if (host->size == 0) {
Linus Walleij2686b4b2010-10-19 12:39:48 +0100997 mmci_set_mask1(host, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 writel(readl(base + MMCIMASK0) | MCI_DATAENDMASK, base + MMCIMASK0);
999 }
1000
1001 return IRQ_HANDLED;
1002}
1003
1004/*
1005 * Handle completion of command and data transfers.
1006 */
David Howells7d12e782006-10-05 14:55:46 +01001007static irqreturn_t mmci_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008{
1009 struct mmci_host *host = dev_id;
1010 u32 status;
1011 int ret = 0;
1012
1013 spin_lock(&host->lock);
1014
1015 do {
1016 struct mmc_command *cmd;
1017 struct mmc_data *data;
1018
1019 status = readl(host->base + MMCISTATUS);
Linus Walleij2686b4b2010-10-19 12:39:48 +01001020
1021 if (host->singleirq) {
1022 if (status & readl(host->base + MMCIMASK1))
1023 mmci_pio_irq(irq, dev_id);
1024
1025 status &= ~MCI_IRQ1MASK;
1026 }
1027
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 status &= readl(host->base + MMCIMASK0);
1029 writel(status, host->base + MMCICLEAR);
1030
Linus Walleij64de0282010-02-19 01:09:10 +01001031 dev_dbg(mmc_dev(host->mmc), "irq0 (data+cmd) %08x\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
1033 data = host->data;
Ulf Hanssonb63038d2011-12-13 16:51:04 +01001034 if (status & (MCI_DATACRCFAIL|MCI_DATATIMEOUT|MCI_STARTBITERR|
1035 MCI_TXUNDERRUN|MCI_RXOVERRUN|MCI_DATAEND|
1036 MCI_DATABLOCKEND) && data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 mmci_data_irq(host, data, status);
1038
1039 cmd = host->cmd;
1040 if (status & (MCI_CMDCRCFAIL|MCI_CMDTIMEOUT|MCI_CMDSENT|MCI_CMDRESPEND) && cmd)
1041 mmci_cmd_irq(host, cmd, status);
1042
1043 ret = 1;
1044 } while (status);
1045
1046 spin_unlock(&host->lock);
1047
1048 return IRQ_RETVAL(ret);
1049}
1050
1051static void mmci_request(struct mmc_host *mmc, struct mmc_request *mrq)
1052{
1053 struct mmci_host *host = mmc_priv(mmc);
Linus Walleij9e943022008-10-24 21:17:50 +01001054 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
1056 WARN_ON(host->mrq != NULL);
1057
Nicolas Pitre019a5f52007-10-11 01:06:03 -04001058 if (mrq->data && !is_power_of_2(mrq->data->blksz)) {
Linus Walleij64de0282010-02-19 01:09:10 +01001059 dev_err(mmc_dev(mmc), "unsupported block size (%d bytes)\n",
1060 mrq->data->blksz);
Pierre Ossman255d01a2007-07-24 20:38:53 +02001061 mrq->cmd->error = -EINVAL;
1062 mmc_request_done(mmc, mrq);
1063 return;
1064 }
1065
Russell King1c3be362011-08-14 09:17:05 +01001066 pm_runtime_get_sync(mmc_dev(mmc));
1067
Linus Walleij9e943022008-10-24 21:17:50 +01001068 spin_lock_irqsave(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
1070 host->mrq = mrq;
1071
Per Forlin58c7ccb2011-07-01 18:55:24 +02001072 if (mrq->data)
1073 mmci_get_next_data(host, mrq->data);
1074
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 if (mrq->data && mrq->data->flags & MMC_DATA_READ)
1076 mmci_start_data(host, mrq->data);
1077
1078 mmci_start_command(host, mrq->cmd, 0);
1079
Linus Walleij9e943022008-10-24 21:17:50 +01001080 spin_unlock_irqrestore(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081}
1082
1083static void mmci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
1084{
1085 struct mmci_host *host = mmc_priv(mmc);
Ulf Hansson7d72a1d2011-12-13 16:54:55 +01001086 struct variant_data *variant = host->variant;
Linus Walleija6a64642009-09-14 12:56:14 +01001087 u32 pwr = 0;
1088 unsigned long flags;
Linus Walleij99fc5132010-09-29 01:08:27 -04001089 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001091 pm_runtime_get_sync(mmc_dev(mmc));
1092
Ulf Hanssonbc521812011-12-13 16:57:55 +01001093 if (host->plat->ios_handler &&
1094 host->plat->ios_handler(mmc_dev(mmc), ios))
1095 dev_err(mmc_dev(mmc), "platform ios_handler failed\n");
1096
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 switch (ios->power_mode) {
1098 case MMC_POWER_OFF:
Linus Walleij99fc5132010-09-29 01:08:27 -04001099 if (host->vcc)
1100 ret = mmc_regulator_set_ocr(mmc, host->vcc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 break;
1102 case MMC_POWER_UP:
Linus Walleij99fc5132010-09-29 01:08:27 -04001103 if (host->vcc) {
1104 ret = mmc_regulator_set_ocr(mmc, host->vcc, ios->vdd);
1105 if (ret) {
1106 dev_err(mmc_dev(mmc), "unable to set OCR\n");
1107 /*
1108 * The .set_ios() function in the mmc_host_ops
1109 * struct return void, and failing to set the
1110 * power should be rare so we print an error
1111 * and return here.
1112 */
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001113 goto out;
Linus Walleij99fc5132010-09-29 01:08:27 -04001114 }
1115 }
Ulf Hansson7d72a1d2011-12-13 16:54:55 +01001116 /*
1117 * The ST Micro variant doesn't have the PL180s MCI_PWR_UP
1118 * and instead uses MCI_PWR_ON so apply whatever value is
1119 * configured in the variant data.
1120 */
1121 pwr |= variant->pwrreg_powerup;
1122
1123 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 case MMC_POWER_ON:
1125 pwr |= MCI_PWR_ON;
1126 break;
1127 }
1128
Ulf Hansson4d1a3a02011-12-13 16:57:07 +01001129 if (variant->signal_direction && ios->power_mode != MMC_POWER_OFF) {
1130 /*
1131 * The ST Micro variant has some additional bits
1132 * indicating signal direction for the signals in
1133 * the SD/MMC bus and feedback-clock usage.
1134 */
1135 pwr |= host->plat->sigdir;
1136
1137 if (ios->bus_width == MMC_BUS_WIDTH_4)
1138 pwr &= ~MCI_ST_DATA74DIREN;
1139 else if (ios->bus_width == MMC_BUS_WIDTH_1)
1140 pwr &= (~MCI_ST_DATA74DIREN &
1141 ~MCI_ST_DATA31DIREN &
1142 ~MCI_ST_DATA2DIREN);
1143 }
1144
Linus Walleijcc30d602009-01-04 15:18:54 +01001145 if (ios->bus_mode == MMC_BUSMODE_OPENDRAIN) {
Linus Walleijf17a1f02009-08-04 01:01:02 +01001146 if (host->hw_designer != AMBA_VENDOR_ST)
Linus Walleijcc30d602009-01-04 15:18:54 +01001147 pwr |= MCI_ROD;
1148 else {
1149 /*
1150 * The ST Micro variant use the ROD bit for something
1151 * else and only has OD (Open Drain).
1152 */
1153 pwr |= MCI_OD;
1154 }
1155 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156
Linus Walleija6a64642009-09-14 12:56:14 +01001157 spin_lock_irqsave(&host->lock, flags);
1158
1159 mmci_set_clkreg(host, ios->clock);
Ulf Hansson7437cfa2012-01-18 09:17:27 +01001160 mmci_write_pwrreg(host, pwr);
Linus Walleija6a64642009-09-14 12:56:14 +01001161
1162 spin_unlock_irqrestore(&host->lock, flags);
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001163
1164 out:
1165 pm_runtime_mark_last_busy(mmc_dev(mmc));
1166 pm_runtime_put_autosuspend(mmc_dev(mmc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167}
1168
Russell King89001442009-07-09 15:16:07 +01001169static int mmci_get_ro(struct mmc_host *mmc)
1170{
1171 struct mmci_host *host = mmc_priv(mmc);
1172
1173 if (host->gpio_wp == -ENOSYS)
1174 return -ENOSYS;
1175
Linus Walleij18a063012010-09-12 12:56:44 +01001176 return gpio_get_value_cansleep(host->gpio_wp);
Russell King89001442009-07-09 15:16:07 +01001177}
1178
1179static int mmci_get_cd(struct mmc_host *mmc)
1180{
1181 struct mmci_host *host = mmc_priv(mmc);
Rabin Vincent29719442010-08-09 12:54:43 +01001182 struct mmci_platform_data *plat = host->plat;
Russell King89001442009-07-09 15:16:07 +01001183 unsigned int status;
1184
Rabin Vincent4b8caec2010-08-09 12:56:40 +01001185 if (host->gpio_cd == -ENOSYS) {
1186 if (!plat->status)
1187 return 1; /* Assume always present */
1188
Rabin Vincent29719442010-08-09 12:54:43 +01001189 status = plat->status(mmc_dev(host->mmc));
Rabin Vincent4b8caec2010-08-09 12:56:40 +01001190 } else
Linus Walleij18a063012010-09-12 12:56:44 +01001191 status = !!gpio_get_value_cansleep(host->gpio_cd)
1192 ^ plat->cd_invert;
Russell King89001442009-07-09 15:16:07 +01001193
Russell King74bc8092010-07-29 15:58:59 +01001194 /*
1195 * Use positive logic throughout - status is zero for no card,
1196 * non-zero for card inserted.
1197 */
1198 return status;
Russell King89001442009-07-09 15:16:07 +01001199}
1200
Rabin Vincent148b8b32010-08-09 12:55:48 +01001201static irqreturn_t mmci_cd_irq(int irq, void *dev_id)
1202{
1203 struct mmci_host *host = dev_id;
1204
1205 mmc_detect_change(host->mmc, msecs_to_jiffies(500));
1206
1207 return IRQ_HANDLED;
1208}
1209
David Brownellab7aefd2006-11-12 17:55:30 -08001210static const struct mmc_host_ops mmci_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 .request = mmci_request,
Per Forlin58c7ccb2011-07-01 18:55:24 +02001212 .pre_req = mmci_pre_request,
1213 .post_req = mmci_post_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 .set_ios = mmci_set_ios,
Russell King89001442009-07-09 15:16:07 +01001215 .get_ro = mmci_get_ro,
1216 .get_cd = mmci_get_cd,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217};
1218
Lee Jones000bc9d2012-04-16 10:18:43 +01001219#ifdef CONFIG_OF
1220static void mmci_dt_populate_generic_pdata(struct device_node *np,
1221 struct mmci_platform_data *pdata)
1222{
1223 int bus_width = 0;
1224
Lee Jones9a597012012-04-12 16:51:13 +01001225 pdata->gpio_wp = of_get_named_gpio(np, "wp-gpios", 0);
Lee Jones9a597012012-04-12 16:51:13 +01001226 pdata->gpio_cd = of_get_named_gpio(np, "cd-gpios", 0);
Lee Jones000bc9d2012-04-16 10:18:43 +01001227
1228 if (of_get_property(np, "cd-inverted", NULL))
1229 pdata->cd_invert = true;
1230 else
1231 pdata->cd_invert = false;
1232
1233 of_property_read_u32(np, "max-frequency", &pdata->f_max);
1234 if (!pdata->f_max)
1235 pr_warn("%s has no 'max-frequency' property\n", np->full_name);
1236
1237 if (of_get_property(np, "mmc-cap-mmc-highspeed", NULL))
1238 pdata->capabilities |= MMC_CAP_MMC_HIGHSPEED;
1239 if (of_get_property(np, "mmc-cap-sd-highspeed", NULL))
1240 pdata->capabilities |= MMC_CAP_SD_HIGHSPEED;
1241
1242 of_property_read_u32(np, "bus-width", &bus_width);
1243 switch (bus_width) {
1244 case 0 :
1245 /* No bus-width supplied. */
1246 break;
1247 case 4 :
1248 pdata->capabilities |= MMC_CAP_4_BIT_DATA;
1249 break;
1250 case 8 :
1251 pdata->capabilities |= MMC_CAP_8_BIT_DATA;
1252 break;
1253 default :
1254 pr_warn("%s: Unsupported bus width\n", np->full_name);
1255 }
1256}
Lee Jonesc0a120a2012-05-08 13:59:38 +01001257#else
1258static void mmci_dt_populate_generic_pdata(struct device_node *np,
1259 struct mmci_platform_data *pdata)
1260{
1261 return;
1262}
Lee Jones000bc9d2012-04-16 10:18:43 +01001263#endif
1264
Russell Kingaa25afa2011-02-19 15:55:00 +00001265static int __devinit mmci_probe(struct amba_device *dev,
1266 const struct amba_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267{
Linus Walleij6ef297f2009-09-22 14:29:36 +01001268 struct mmci_platform_data *plat = dev->dev.platform_data;
Lee Jones000bc9d2012-04-16 10:18:43 +01001269 struct device_node *np = dev->dev.of_node;
Rabin Vincent4956e102010-07-21 12:54:40 +01001270 struct variant_data *variant = id->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 struct mmci_host *host;
1272 struct mmc_host *mmc;
1273 int ret;
1274
Lee Jones000bc9d2012-04-16 10:18:43 +01001275 /* Must have platform data or Device Tree. */
1276 if (!plat && !np) {
1277 dev_err(&dev->dev, "No plat data or DT found\n");
1278 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 }
1280
Lee Jonesb9b52912012-06-12 10:49:51 +01001281 if (!plat) {
1282 plat = devm_kzalloc(&dev->dev, sizeof(*plat), GFP_KERNEL);
1283 if (!plat)
1284 return -ENOMEM;
1285 }
1286
Lee Jones000bc9d2012-04-16 10:18:43 +01001287 if (np)
1288 mmci_dt_populate_generic_pdata(np, plat);
1289
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 ret = amba_request_regions(dev, DRIVER_NAME);
1291 if (ret)
1292 goto out;
1293
1294 mmc = mmc_alloc_host(sizeof(struct mmci_host), &dev->dev);
1295 if (!mmc) {
1296 ret = -ENOMEM;
1297 goto rel_regions;
1298 }
1299
1300 host = mmc_priv(mmc);
Rabin Vincent4ea580f2009-04-17 08:44:19 +05301301 host->mmc = mmc;
Russell King012b7d32009-07-09 15:13:56 +01001302
Russell King89001442009-07-09 15:16:07 +01001303 host->gpio_wp = -ENOSYS;
1304 host->gpio_cd = -ENOSYS;
Rabin Vincent148b8b32010-08-09 12:55:48 +01001305 host->gpio_cd_irq = -1;
Russell King89001442009-07-09 15:16:07 +01001306
Russell King012b7d32009-07-09 15:13:56 +01001307 host->hw_designer = amba_manf(dev);
1308 host->hw_revision = amba_rev(dev);
Linus Walleij64de0282010-02-19 01:09:10 +01001309 dev_dbg(mmc_dev(mmc), "designer ID = 0x%02x\n", host->hw_designer);
1310 dev_dbg(mmc_dev(mmc), "revision = 0x%01x\n", host->hw_revision);
Russell King012b7d32009-07-09 15:13:56 +01001311
Russell Kingee569c42008-11-30 17:38:14 +00001312 host->clk = clk_get(&dev->dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 if (IS_ERR(host->clk)) {
1314 ret = PTR_ERR(host->clk);
1315 host->clk = NULL;
1316 goto host_free;
1317 }
1318
Julia Lawallac940932012-08-26 16:00:59 +00001319 ret = clk_prepare_enable(host->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 if (ret)
Russell Kinga8d35842006-01-03 18:41:37 +00001321 goto clk_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
1323 host->plat = plat;
Rabin Vincent4956e102010-07-21 12:54:40 +01001324 host->variant = variant;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 host->mclk = clk_get_rate(host->clk);
Linus Walleijc8df9a52008-04-29 09:34:07 +01001326 /*
1327 * According to the spec, mclk is max 100 MHz,
1328 * so we try to adjust the clock down to this,
1329 * (if possible).
1330 */
1331 if (host->mclk > 100000000) {
1332 ret = clk_set_rate(host->clk, 100000000);
1333 if (ret < 0)
1334 goto clk_disable;
1335 host->mclk = clk_get_rate(host->clk);
Linus Walleij64de0282010-02-19 01:09:10 +01001336 dev_dbg(mmc_dev(mmc), "eventual mclk rate: %u Hz\n",
1337 host->mclk);
Linus Walleijc8df9a52008-04-29 09:34:07 +01001338 }
Russell Kingc8ebae32011-01-11 19:35:53 +00001339 host->phybase = dev->res.start;
Linus Walleijdc890c22009-06-07 23:27:31 +01001340 host->base = ioremap(dev->res.start, resource_size(&dev->res));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 if (!host->base) {
1342 ret = -ENOMEM;
1343 goto clk_disable;
1344 }
1345
1346 mmc->ops = &mmci_ops;
Linus Walleij7f294e42011-07-08 09:57:15 +01001347 /*
1348 * The ARM and ST versions of the block have slightly different
1349 * clock divider equations which means that the minimum divider
1350 * differs too.
1351 */
1352 if (variant->st_clkdiv)
1353 mmc->f_min = DIV_ROUND_UP(host->mclk, 257);
1354 else
1355 mmc->f_min = DIV_ROUND_UP(host->mclk, 512);
Linus Walleij808d97c2010-04-08 07:39:38 +01001356 /*
1357 * If the platform data supplies a maximum operating
1358 * frequency, this takes precedence. Else, we fall back
1359 * to using the module parameter, which has a (low)
1360 * default value in case it is not specified. Either
1361 * value must not exceed the clock rate into the block,
1362 * of course.
1363 */
1364 if (plat->f_max)
1365 mmc->f_max = min(host->mclk, plat->f_max);
1366 else
1367 mmc->f_max = min(host->mclk, fmax);
Linus Walleij64de0282010-02-19 01:09:10 +01001368 dev_dbg(mmc_dev(mmc), "clocking block at %u Hz\n", mmc->f_max);
1369
Linus Walleija9a83782012-10-29 14:39:30 +01001370 host->pinctrl = devm_pinctrl_get(&dev->dev);
1371 if (IS_ERR(host->pinctrl)) {
1372 ret = PTR_ERR(host->pinctrl);
1373 goto clk_disable;
1374 }
1375
1376 host->pins_default = pinctrl_lookup_state(host->pinctrl,
1377 PINCTRL_STATE_DEFAULT);
1378
1379 /* enable pins to be muxed in and configured */
1380 if (!IS_ERR(host->pins_default)) {
1381 ret = pinctrl_select_state(host->pinctrl, host->pins_default);
1382 if (ret)
1383 dev_warn(&dev->dev, "could not set default pins\n");
1384 } else
1385 dev_warn(&dev->dev, "could not get default pinstate\n");
1386
Linus Walleij34e84f32009-09-22 14:41:40 +01001387#ifdef CONFIG_REGULATOR
1388 /* If we're using the regulator framework, try to fetch a regulator */
1389 host->vcc = regulator_get(&dev->dev, "vmmc");
1390 if (IS_ERR(host->vcc))
1391 host->vcc = NULL;
1392 else {
1393 int mask = mmc_regulator_get_ocrmask(host->vcc);
1394
1395 if (mask < 0)
1396 dev_err(&dev->dev, "error getting OCR mask (%d)\n",
1397 mask);
1398 else {
1399 host->mmc->ocr_avail = (u32) mask;
1400 if (plat->ocr_mask)
1401 dev_warn(&dev->dev,
1402 "Provided ocr_mask/setpower will not be used "
1403 "(using regulator instead)\n");
1404 }
1405 }
1406#endif
1407 /* Fall back to platform data if no regulator is found */
1408 if (host->vcc == NULL)
1409 mmc->ocr_avail = plat->ocr_mask;
Linus Walleij9e6c82c2009-09-14 12:57:11 +01001410 mmc->caps = plat->capabilities;
Per Forlin5a092622011-11-14 12:02:28 +01001411 mmc->caps2 = plat->capabilities2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412
1413 /*
1414 * We can do SGIO
1415 */
Martin K. Petersena36274e2010-09-10 01:33:59 -04001416 mmc->max_segs = NR_SG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417
1418 /*
Rabin Vincent08458ef2010-07-21 12:55:59 +01001419 * Since only a certain number of bits are valid in the data length
1420 * register, we must ensure that we don't exceed 2^num-1 bytes in a
1421 * single request.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 */
Rabin Vincent08458ef2010-07-21 12:55:59 +01001423 mmc->max_req_size = (1 << variant->datalength_bits) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
1425 /*
1426 * Set the maximum segment size. Since we aren't doing DMA
1427 * (yet) we are only limited by the data length register.
1428 */
Pierre Ossman55db8902006-11-21 17:55:45 +01001429 mmc->max_seg_size = mmc->max_req_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +01001431 /*
1432 * Block size can be up to 2048 bytes, but must be a power of two.
1433 */
Will Deacon8f7f6b72012-02-24 11:25:21 +00001434 mmc->max_blk_size = 1 << 11;
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +01001435
Pierre Ossman55db8902006-11-21 17:55:45 +01001436 /*
Will Deacon8f7f6b72012-02-24 11:25:21 +00001437 * Limit the number of blocks transferred so that we don't overflow
1438 * the maximum request size.
Pierre Ossman55db8902006-11-21 17:55:45 +01001439 */
Will Deacon8f7f6b72012-02-24 11:25:21 +00001440 mmc->max_blk_count = mmc->max_req_size >> 11;
Pierre Ossman55db8902006-11-21 17:55:45 +01001441
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 spin_lock_init(&host->lock);
1443
1444 writel(0, host->base + MMCIMASK0);
1445 writel(0, host->base + MMCIMASK1);
1446 writel(0xfff, host->base + MMCICLEAR);
1447
Roland Stigge2805b9a2012-06-17 21:14:27 +01001448 if (plat->gpio_cd == -EPROBE_DEFER) {
1449 ret = -EPROBE_DEFER;
1450 goto err_gpio_cd;
1451 }
Russell King89001442009-07-09 15:16:07 +01001452 if (gpio_is_valid(plat->gpio_cd)) {
1453 ret = gpio_request(plat->gpio_cd, DRIVER_NAME " (cd)");
1454 if (ret == 0)
1455 ret = gpio_direction_input(plat->gpio_cd);
1456 if (ret == 0)
1457 host->gpio_cd = plat->gpio_cd;
1458 else if (ret != -ENOSYS)
1459 goto err_gpio_cd;
Rabin Vincent148b8b32010-08-09 12:55:48 +01001460
Linus Walleij17ee0832011-05-05 17:23:10 +01001461 /*
1462 * A gpio pin that will detect cards when inserted and removed
1463 * will most likely want to trigger on the edges if it is
1464 * 0 when ejected and 1 when inserted (or mutatis mutandis
1465 * for the inverted case) so we request triggers on both
1466 * edges.
1467 */
Rabin Vincent148b8b32010-08-09 12:55:48 +01001468 ret = request_any_context_irq(gpio_to_irq(plat->gpio_cd),
Linus Walleij17ee0832011-05-05 17:23:10 +01001469 mmci_cd_irq,
1470 IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING,
1471 DRIVER_NAME " (cd)", host);
Rabin Vincent148b8b32010-08-09 12:55:48 +01001472 if (ret >= 0)
1473 host->gpio_cd_irq = gpio_to_irq(plat->gpio_cd);
Russell King89001442009-07-09 15:16:07 +01001474 }
Roland Stigge2805b9a2012-06-17 21:14:27 +01001475 if (plat->gpio_wp == -EPROBE_DEFER) {
1476 ret = -EPROBE_DEFER;
1477 goto err_gpio_wp;
1478 }
Russell King89001442009-07-09 15:16:07 +01001479 if (gpio_is_valid(plat->gpio_wp)) {
1480 ret = gpio_request(plat->gpio_wp, DRIVER_NAME " (wp)");
1481 if (ret == 0)
1482 ret = gpio_direction_input(plat->gpio_wp);
1483 if (ret == 0)
1484 host->gpio_wp = plat->gpio_wp;
1485 else if (ret != -ENOSYS)
1486 goto err_gpio_wp;
1487 }
1488
Rabin Vincent4b8caec2010-08-09 12:56:40 +01001489 if ((host->plat->status || host->gpio_cd != -ENOSYS)
1490 && host->gpio_cd_irq < 0)
Rabin Vincent148b8b32010-08-09 12:55:48 +01001491 mmc->caps |= MMC_CAP_NEEDS_POLL;
1492
Thomas Gleixnerdace1452006-07-01 19:29:38 -07001493 ret = request_irq(dev->irq[0], mmci_irq, IRQF_SHARED, DRIVER_NAME " (cmd)", host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 if (ret)
1495 goto unmap;
1496
Russell Kingdfb851852012-05-03 11:33:15 +01001497 if (!dev->irq[1])
Linus Walleij2686b4b2010-10-19 12:39:48 +01001498 host->singleirq = true;
1499 else {
1500 ret = request_irq(dev->irq[1], mmci_pio_irq, IRQF_SHARED,
1501 DRIVER_NAME " (pio)", host);
1502 if (ret)
1503 goto irq0_free;
1504 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505
Linus Walleij8cb28152011-01-24 15:22:13 +01001506 writel(MCI_IRQENABLE, host->base + MMCIMASK0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507
1508 amba_set_drvdata(dev, mmc);
1509
Russell Kingc8ebae32011-01-11 19:35:53 +00001510 dev_info(&dev->dev, "%s: PL%03x manf %x rev%u at 0x%08llx irq %d,%d (pio)\n",
1511 mmc_hostname(mmc), amba_part(dev), amba_manf(dev),
1512 amba_rev(dev), (unsigned long long)dev->res.start,
1513 dev->irq[0], dev->irq[1]);
1514
1515 mmci_dma_setup(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001517 pm_runtime_set_autosuspend_delay(&dev->dev, 50);
1518 pm_runtime_use_autosuspend(&dev->dev);
Russell King1c3be362011-08-14 09:17:05 +01001519 pm_runtime_put(&dev->dev);
1520
Russell King8c11a942010-12-28 19:40:40 +00001521 mmc_add_host(mmc);
1522
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 return 0;
1524
1525 irq0_free:
1526 free_irq(dev->irq[0], host);
1527 unmap:
Russell King89001442009-07-09 15:16:07 +01001528 if (host->gpio_wp != -ENOSYS)
1529 gpio_free(host->gpio_wp);
1530 err_gpio_wp:
Rabin Vincent148b8b32010-08-09 12:55:48 +01001531 if (host->gpio_cd_irq >= 0)
1532 free_irq(host->gpio_cd_irq, host);
Russell King89001442009-07-09 15:16:07 +01001533 if (host->gpio_cd != -ENOSYS)
1534 gpio_free(host->gpio_cd);
1535 err_gpio_cd:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 iounmap(host->base);
1537 clk_disable:
Julia Lawallac940932012-08-26 16:00:59 +00001538 clk_disable_unprepare(host->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 clk_free:
1540 clk_put(host->clk);
1541 host_free:
1542 mmc_free_host(mmc);
1543 rel_regions:
1544 amba_release_regions(dev);
1545 out:
1546 return ret;
1547}
1548
Linus Walleij6dc4a472009-03-07 00:23:52 +01001549static int __devexit mmci_remove(struct amba_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550{
1551 struct mmc_host *mmc = amba_get_drvdata(dev);
1552
1553 amba_set_drvdata(dev, NULL);
1554
1555 if (mmc) {
1556 struct mmci_host *host = mmc_priv(mmc);
1557
Russell King1c3be362011-08-14 09:17:05 +01001558 /*
1559 * Undo pm_runtime_put() in probe. We use the _sync
1560 * version here so that we can access the primecell.
1561 */
1562 pm_runtime_get_sync(&dev->dev);
1563
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 mmc_remove_host(mmc);
1565
1566 writel(0, host->base + MMCIMASK0);
1567 writel(0, host->base + MMCIMASK1);
1568
1569 writel(0, host->base + MMCICOMMAND);
1570 writel(0, host->base + MMCIDATACTRL);
1571
Russell Kingc8ebae32011-01-11 19:35:53 +00001572 mmci_dma_release(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 free_irq(dev->irq[0], host);
Linus Walleij2686b4b2010-10-19 12:39:48 +01001574 if (!host->singleirq)
1575 free_irq(dev->irq[1], host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576
Russell King89001442009-07-09 15:16:07 +01001577 if (host->gpio_wp != -ENOSYS)
1578 gpio_free(host->gpio_wp);
Rabin Vincent148b8b32010-08-09 12:55:48 +01001579 if (host->gpio_cd_irq >= 0)
1580 free_irq(host->gpio_cd_irq, host);
Russell King89001442009-07-09 15:16:07 +01001581 if (host->gpio_cd != -ENOSYS)
1582 gpio_free(host->gpio_cd);
1583
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 iounmap(host->base);
Julia Lawallac940932012-08-26 16:00:59 +00001585 clk_disable_unprepare(host->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 clk_put(host->clk);
1587
Linus Walleij99fc5132010-09-29 01:08:27 -04001588 if (host->vcc)
1589 mmc_regulator_set_ocr(mmc, host->vcc, 0);
Linus Walleij34e84f32009-09-22 14:41:40 +01001590 regulator_put(host->vcc);
1591
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 mmc_free_host(mmc);
1593
1594 amba_release_regions(dev);
1595 }
1596
1597 return 0;
1598}
1599
Ulf Hansson48fa7002011-12-13 16:59:34 +01001600#ifdef CONFIG_SUSPEND
1601static int mmci_suspend(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602{
Ulf Hansson48fa7002011-12-13 16:59:34 +01001603 struct amba_device *adev = to_amba_device(dev);
1604 struct mmc_host *mmc = amba_get_drvdata(adev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 int ret = 0;
1606
1607 if (mmc) {
1608 struct mmci_host *host = mmc_priv(mmc);
1609
Matt Fleming1a13f8f2010-05-26 14:42:08 -07001610 ret = mmc_suspend_host(mmc);
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001611 if (ret == 0) {
1612 pm_runtime_get_sync(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 writel(0, host->base + MMCIMASK0);
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001614 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 }
1616
1617 return ret;
1618}
1619
Ulf Hansson48fa7002011-12-13 16:59:34 +01001620static int mmci_resume(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621{
Ulf Hansson48fa7002011-12-13 16:59:34 +01001622 struct amba_device *adev = to_amba_device(dev);
1623 struct mmc_host *mmc = amba_get_drvdata(adev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 int ret = 0;
1625
1626 if (mmc) {
1627 struct mmci_host *host = mmc_priv(mmc);
1628
1629 writel(MCI_IRQENABLE, host->base + MMCIMASK0);
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001630 pm_runtime_put(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631
1632 ret = mmc_resume_host(mmc);
1633 }
1634
1635 return ret;
1636}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637#endif
1638
Ulf Hansson48fa7002011-12-13 16:59:34 +01001639static const struct dev_pm_ops mmci_dev_pm_ops = {
1640 SET_SYSTEM_SLEEP_PM_OPS(mmci_suspend, mmci_resume)
1641};
1642
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643static struct amba_id mmci_ids[] = {
1644 {
1645 .id = 0x00041180,
Pawel Moll768fbc12011-03-11 17:18:07 +00001646 .mask = 0xff0fffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001647 .data = &variant_arm,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 },
1649 {
Pawel Moll768fbc12011-03-11 17:18:07 +00001650 .id = 0x01041180,
1651 .mask = 0xff0fffff,
1652 .data = &variant_arm_extended_fifo,
1653 },
1654 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 .id = 0x00041181,
1656 .mask = 0x000fffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001657 .data = &variant_arm,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 },
Linus Walleijcc30d602009-01-04 15:18:54 +01001659 /* ST Micro variants */
1660 {
1661 .id = 0x00180180,
1662 .mask = 0x00ffffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001663 .data = &variant_u300,
Linus Walleijcc30d602009-01-04 15:18:54 +01001664 },
1665 {
Linus Walleij34fd4212012-04-10 17:43:59 +01001666 .id = 0x10180180,
1667 .mask = 0xf0ffffff,
1668 .data = &variant_nomadik,
1669 },
1670 {
Linus Walleijcc30d602009-01-04 15:18:54 +01001671 .id = 0x00280180,
1672 .mask = 0x00ffffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001673 .data = &variant_u300,
1674 },
1675 {
1676 .id = 0x00480180,
Philippe Langlais1784b152011-03-25 08:51:52 +01001677 .mask = 0xf0ffffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001678 .data = &variant_ux500,
Linus Walleijcc30d602009-01-04 15:18:54 +01001679 },
Philippe Langlais1784b152011-03-25 08:51:52 +01001680 {
1681 .id = 0x10480180,
1682 .mask = 0xf0ffffff,
1683 .data = &variant_ux500v2,
1684 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 { 0, 0 },
1686};
1687
Dave Martin9f998352011-10-05 15:15:21 +01001688MODULE_DEVICE_TABLE(amba, mmci_ids);
1689
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690static struct amba_driver mmci_driver = {
1691 .drv = {
1692 .name = DRIVER_NAME,
Ulf Hansson48fa7002011-12-13 16:59:34 +01001693 .pm = &mmci_dev_pm_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 },
1695 .probe = mmci_probe,
Linus Walleij6dc4a472009-03-07 00:23:52 +01001696 .remove = __devexit_p(mmci_remove),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 .id_table = mmci_ids,
1698};
1699
viresh kumar9e5ed092012-03-15 10:40:38 +01001700module_amba_driver(mmci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702module_param(fmax, uint, 0444);
1703
1704MODULE_DESCRIPTION("ARM PrimeCell PL180/181 Multimedia Card Interface driver");
1705MODULE_LICENSE("GPL");