blob: b43e1ab5cb5cf3de671796744638508c5e7ea2d3 [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>
Ulf Hansson70be2082013-01-07 15:35:06 +010023#include <linux/mmc/pm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/mmc/host.h>
Linus Walleij34177802010-10-19 12:43:58 +010025#include <linux/mmc/card.h>
Russell Kinga62c80e2006-01-07 13:52:45 +000026#include <linux/amba/bus.h>
Russell Kingf8ce2542006-01-07 16:15:52 +000027#include <linux/clk.h>
Jens Axboebd6dee62007-10-24 09:01:09 +020028#include <linux/scatterlist.h>
Russell King89001442009-07-09 15:16:07 +010029#include <linux/gpio.h>
Lee Jones9a597012012-04-12 16:51:13 +010030#include <linux/of_gpio.h>
Linus Walleij34e84f32009-09-22 14:41:40 +010031#include <linux/regulator/consumer.h>
Russell Kingc8ebae32011-01-11 19:35:53 +000032#include <linux/dmaengine.h>
33#include <linux/dma-mapping.h>
34#include <linux/amba/mmci.h>
Russell King1c3be362011-08-14 09:17:05 +010035#include <linux/pm_runtime.h>
Viresh Kumar258aea72012-02-01 16:12:19 +053036#include <linux/types.h>
Linus Walleija9a83782012-10-29 14:39:30 +010037#include <linux/pinctrl/consumer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Russell King7b09cda2005-07-01 12:02:59 +010039#include <asm/div64.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <asm/io.h>
Russell Kingc6b8fda2005-10-28 14:05:16 +010041#include <asm/sizes.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43#include "mmci.h"
44
45#define DRIVER_NAME "mmci-pl18x"
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047static unsigned int fmax = 515633;
48
Rabin Vincent4956e102010-07-21 12:54:40 +010049/**
50 * struct variant_data - MMCI variant-specific quirks
51 * @clkreg: default value for MCICLOCK register
Rabin Vincent4380c142010-07-21 12:55:18 +010052 * @clkreg_enable: enable value for MMCICLOCK register
Rabin Vincent08458ef2010-07-21 12:55:59 +010053 * @datalength_bits: number of bits in the MMCIDATALENGTH register
Rabin Vincent8301bb62010-08-09 12:57:30 +010054 * @fifosize: number of bytes that can be written when MMCI_TXFIFOEMPTY
55 * is asserted (likewise for RX)
56 * @fifohalfsize: number of bytes that can be written when MCI_TXFIFOHALFEMPTY
57 * is asserted (likewise for RX)
Linus Walleij34177802010-10-19 12:43:58 +010058 * @sdio: variant supports SDIO
Linus Walleijb70a67f2010-12-06 09:24:14 +010059 * @st_clkdiv: true if using a ST-specific clock divider algorithm
Philippe Langlais1784b152011-03-25 08:51:52 +010060 * @blksz_datactrl16: true if Block size is at b16..b30 position in datactrl register
Ulf Hansson7d72a1d2011-12-13 16:54:55 +010061 * @pwrreg_powerup: power up value for MMCIPOWER register
Ulf Hansson4d1a3a02011-12-13 16:57:07 +010062 * @signal_direction: input/out direction of bus signals can be indicated
Rabin Vincent4956e102010-07-21 12:54:40 +010063 */
64struct variant_data {
65 unsigned int clkreg;
Rabin Vincent4380c142010-07-21 12:55:18 +010066 unsigned int clkreg_enable;
Rabin Vincent08458ef2010-07-21 12:55:59 +010067 unsigned int datalength_bits;
Rabin Vincent8301bb62010-08-09 12:57:30 +010068 unsigned int fifosize;
69 unsigned int fifohalfsize;
Linus Walleij34177802010-10-19 12:43:58 +010070 bool sdio;
Linus Walleijb70a67f2010-12-06 09:24:14 +010071 bool st_clkdiv;
Philippe Langlais1784b152011-03-25 08:51:52 +010072 bool blksz_datactrl16;
Ulf Hansson7d72a1d2011-12-13 16:54:55 +010073 u32 pwrreg_powerup;
Ulf Hansson4d1a3a02011-12-13 16:57:07 +010074 bool signal_direction;
Rabin Vincent4956e102010-07-21 12:54:40 +010075};
76
77static struct variant_data variant_arm = {
Rabin Vincent8301bb62010-08-09 12:57:30 +010078 .fifosize = 16 * 4,
79 .fifohalfsize = 8 * 4,
Rabin Vincent08458ef2010-07-21 12:55:59 +010080 .datalength_bits = 16,
Ulf Hansson7d72a1d2011-12-13 16:54:55 +010081 .pwrreg_powerup = MCI_PWR_UP,
Rabin Vincent4956e102010-07-21 12:54:40 +010082};
83
Pawel Moll768fbc12011-03-11 17:18:07 +000084static struct variant_data variant_arm_extended_fifo = {
85 .fifosize = 128 * 4,
86 .fifohalfsize = 64 * 4,
87 .datalength_bits = 16,
Ulf Hansson7d72a1d2011-12-13 16:54:55 +010088 .pwrreg_powerup = MCI_PWR_UP,
Pawel Moll768fbc12011-03-11 17:18:07 +000089};
90
Rabin Vincent4956e102010-07-21 12:54:40 +010091static struct variant_data variant_u300 = {
Rabin Vincent8301bb62010-08-09 12:57:30 +010092 .fifosize = 16 * 4,
93 .fifohalfsize = 8 * 4,
Linus Walleij49ac2152011-03-04 14:54:16 +010094 .clkreg_enable = MCI_ST_U300_HWFCEN,
Rabin Vincent08458ef2010-07-21 12:55:59 +010095 .datalength_bits = 16,
Linus Walleij34177802010-10-19 12:43:58 +010096 .sdio = true,
Ulf Hansson7d72a1d2011-12-13 16:54:55 +010097 .pwrreg_powerup = MCI_PWR_ON,
Ulf Hansson4d1a3a02011-12-13 16:57:07 +010098 .signal_direction = true,
Rabin Vincent4956e102010-07-21 12:54:40 +010099};
100
Linus Walleij34fd4212012-04-10 17:43:59 +0100101static struct variant_data variant_nomadik = {
102 .fifosize = 16 * 4,
103 .fifohalfsize = 8 * 4,
104 .clkreg = MCI_CLK_ENABLE,
105 .datalength_bits = 24,
106 .sdio = true,
107 .st_clkdiv = true,
108 .pwrreg_powerup = MCI_PWR_ON,
109 .signal_direction = true,
110};
111
Rabin Vincent4956e102010-07-21 12:54:40 +0100112static struct variant_data variant_ux500 = {
Rabin Vincent8301bb62010-08-09 12:57:30 +0100113 .fifosize = 30 * 4,
114 .fifohalfsize = 8 * 4,
Rabin Vincent4956e102010-07-21 12:54:40 +0100115 .clkreg = MCI_CLK_ENABLE,
Linus Walleij49ac2152011-03-04 14:54:16 +0100116 .clkreg_enable = MCI_ST_UX500_HWFCEN,
Rabin Vincent08458ef2010-07-21 12:55:59 +0100117 .datalength_bits = 24,
Linus Walleij34177802010-10-19 12:43:58 +0100118 .sdio = true,
Linus Walleijb70a67f2010-12-06 09:24:14 +0100119 .st_clkdiv = true,
Ulf Hansson7d72a1d2011-12-13 16:54:55 +0100120 .pwrreg_powerup = MCI_PWR_ON,
Ulf Hansson4d1a3a02011-12-13 16:57:07 +0100121 .signal_direction = true,
Rabin Vincent4956e102010-07-21 12:54:40 +0100122};
Linus Walleijb70a67f2010-12-06 09:24:14 +0100123
Philippe Langlais1784b152011-03-25 08:51:52 +0100124static struct variant_data variant_ux500v2 = {
125 .fifosize = 30 * 4,
126 .fifohalfsize = 8 * 4,
127 .clkreg = MCI_CLK_ENABLE,
128 .clkreg_enable = MCI_ST_UX500_HWFCEN,
129 .datalength_bits = 24,
130 .sdio = true,
131 .st_clkdiv = true,
132 .blksz_datactrl16 = true,
Ulf Hansson7d72a1d2011-12-13 16:54:55 +0100133 .pwrreg_powerup = MCI_PWR_ON,
Ulf Hansson4d1a3a02011-12-13 16:57:07 +0100134 .signal_direction = true,
Philippe Langlais1784b152011-03-25 08:51:52 +0100135};
136
Linus Walleija6a64642009-09-14 12:56:14 +0100137/*
138 * This must be called with host->lock held
139 */
Ulf Hansson7437cfa2012-01-18 09:17:27 +0100140static void mmci_write_clkreg(struct mmci_host *host, u32 clk)
141{
142 if (host->clk_reg != clk) {
143 host->clk_reg = clk;
144 writel(clk, host->base + MMCICLOCK);
145 }
146}
147
148/*
149 * This must be called with host->lock held
150 */
151static void mmci_write_pwrreg(struct mmci_host *host, u32 pwr)
152{
153 if (host->pwr_reg != pwr) {
154 host->pwr_reg = pwr;
155 writel(pwr, host->base + MMCIPOWER);
156 }
157}
158
159/*
160 * This must be called with host->lock held
161 */
Linus Walleija6a64642009-09-14 12:56:14 +0100162static void mmci_set_clkreg(struct mmci_host *host, unsigned int desired)
163{
Rabin Vincent4956e102010-07-21 12:54:40 +0100164 struct variant_data *variant = host->variant;
165 u32 clk = variant->clkreg;
Linus Walleija6a64642009-09-14 12:56:14 +0100166
167 if (desired) {
168 if (desired >= host->mclk) {
Linus Walleij991a86e2010-12-10 09:35:53 +0100169 clk = MCI_CLK_BYPASS;
Linus Walleij399bc482011-04-01 07:59:17 +0100170 if (variant->st_clkdiv)
171 clk |= MCI_ST_UX500_NEG_EDGE;
Linus Walleija6a64642009-09-14 12:56:14 +0100172 host->cclk = host->mclk;
Linus Walleijb70a67f2010-12-06 09:24:14 +0100173 } else if (variant->st_clkdiv) {
174 /*
175 * DB8500 TRM says f = mclk / (clkdiv + 2)
176 * => clkdiv = (mclk / f) - 2
177 * Round the divider up so we don't exceed the max
178 * frequency
179 */
180 clk = DIV_ROUND_UP(host->mclk, desired) - 2;
181 if (clk >= 256)
182 clk = 255;
183 host->cclk = host->mclk / (clk + 2);
Linus Walleija6a64642009-09-14 12:56:14 +0100184 } else {
Linus Walleijb70a67f2010-12-06 09:24:14 +0100185 /*
186 * PL180 TRM says f = mclk / (2 * (clkdiv + 1))
187 * => clkdiv = mclk / (2 * f) - 1
188 */
Linus Walleija6a64642009-09-14 12:56:14 +0100189 clk = host->mclk / (2 * desired) - 1;
190 if (clk >= 256)
191 clk = 255;
192 host->cclk = host->mclk / (2 * (clk + 1));
193 }
Rabin Vincent4380c142010-07-21 12:55:18 +0100194
195 clk |= variant->clkreg_enable;
Linus Walleija6a64642009-09-14 12:56:14 +0100196 clk |= MCI_CLK_ENABLE;
197 /* This hasn't proven to be worthwhile */
198 /* clk |= MCI_CLK_PWRSAVE; */
199 }
200
Linus Walleij9e6c82c2009-09-14 12:57:11 +0100201 if (host->mmc->ios.bus_width == MMC_BUS_WIDTH_4)
Linus Walleij771dc152010-04-08 07:38:52 +0100202 clk |= MCI_4BIT_BUS;
203 if (host->mmc->ios.bus_width == MMC_BUS_WIDTH_8)
204 clk |= MCI_ST_8BIT_BUS;
Linus Walleij9e6c82c2009-09-14 12:57:11 +0100205
Ulf Hansson6dbb6ee2013-01-07 15:30:44 +0100206 if (host->mmc->ios.timing == MMC_TIMING_UHS_DDR50)
207 clk |= MCI_ST_UX500_NEG_EDGE;
208
Ulf Hansson7437cfa2012-01-18 09:17:27 +0100209 mmci_write_clkreg(host, clk);
Linus Walleija6a64642009-09-14 12:56:14 +0100210}
211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212static void
213mmci_request_end(struct mmci_host *host, struct mmc_request *mrq)
214{
215 writel(0, host->base + MMCICOMMAND);
216
Russell Kinge47c2222007-01-08 16:42:51 +0000217 BUG_ON(host->data);
218
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 host->mrq = NULL;
220 host->cmd = NULL;
221
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 mmc_request_done(host->mmc, mrq);
Ulf Hansson2cd976c2011-12-13 17:01:11 +0100223
224 pm_runtime_mark_last_busy(mmc_dev(host->mmc));
225 pm_runtime_put_autosuspend(mmc_dev(host->mmc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226}
227
Linus Walleij2686b4b2010-10-19 12:39:48 +0100228static void mmci_set_mask1(struct mmci_host *host, unsigned int mask)
229{
230 void __iomem *base = host->base;
231
232 if (host->singleirq) {
233 unsigned int mask0 = readl(base + MMCIMASK0);
234
235 mask0 &= ~MCI_IRQ1MASK;
236 mask0 |= mask;
237
238 writel(mask0, base + MMCIMASK0);
239 }
240
241 writel(mask, base + MMCIMASK1);
242}
243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244static void mmci_stop_data(struct mmci_host *host)
245{
246 writel(0, host->base + MMCIDATACTRL);
Linus Walleij2686b4b2010-10-19 12:39:48 +0100247 mmci_set_mask1(host, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 host->data = NULL;
249}
250
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100251static void mmci_init_sg(struct mmci_host *host, struct mmc_data *data)
252{
253 unsigned int flags = SG_MITER_ATOMIC;
254
255 if (data->flags & MMC_DATA_READ)
256 flags |= SG_MITER_TO_SG;
257 else
258 flags |= SG_MITER_FROM_SG;
259
260 sg_miter_start(&host->sg_miter, data->sg, data->sg_len, flags);
261}
262
Russell Kingc8ebae32011-01-11 19:35:53 +0000263/*
264 * All the DMA operation mode stuff goes inside this ifdef.
265 * This assumes that you have a generic DMA device interface,
266 * no custom DMA interfaces are supported.
267 */
268#ifdef CONFIG_DMA_ENGINE
Bill Pembertonc3be1ef2012-11-19 13:23:06 -0500269static void mmci_dma_setup(struct mmci_host *host)
Russell Kingc8ebae32011-01-11 19:35:53 +0000270{
271 struct mmci_platform_data *plat = host->plat;
272 const char *rxname, *txname;
273 dma_cap_mask_t mask;
274
275 if (!plat || !plat->dma_filter) {
276 dev_info(mmc_dev(host->mmc), "no DMA platform data\n");
277 return;
278 }
279
Per Forlin58c7ccb2011-07-01 18:55:24 +0200280 /* initialize pre request cookie */
281 host->next_data.cookie = 1;
282
Russell Kingc8ebae32011-01-11 19:35:53 +0000283 /* Try to acquire a generic DMA engine slave channel */
284 dma_cap_zero(mask);
285 dma_cap_set(DMA_SLAVE, mask);
286
287 /*
288 * If only an RX channel is specified, the driver will
289 * attempt to use it bidirectionally, however if it is
290 * is specified but cannot be located, DMA will be disabled.
291 */
292 if (plat->dma_rx_param) {
293 host->dma_rx_channel = dma_request_channel(mask,
294 plat->dma_filter,
295 plat->dma_rx_param);
296 /* E.g if no DMA hardware is present */
297 if (!host->dma_rx_channel)
298 dev_err(mmc_dev(host->mmc), "no RX DMA channel\n");
299 }
300
301 if (plat->dma_tx_param) {
302 host->dma_tx_channel = dma_request_channel(mask,
303 plat->dma_filter,
304 plat->dma_tx_param);
305 if (!host->dma_tx_channel)
306 dev_warn(mmc_dev(host->mmc), "no TX DMA channel\n");
307 } else {
308 host->dma_tx_channel = host->dma_rx_channel;
309 }
310
311 if (host->dma_rx_channel)
312 rxname = dma_chan_name(host->dma_rx_channel);
313 else
314 rxname = "none";
315
316 if (host->dma_tx_channel)
317 txname = dma_chan_name(host->dma_tx_channel);
318 else
319 txname = "none";
320
321 dev_info(mmc_dev(host->mmc), "DMA channels RX %s, TX %s\n",
322 rxname, txname);
323
324 /*
325 * Limit the maximum segment size in any SG entry according to
326 * the parameters of the DMA engine device.
327 */
328 if (host->dma_tx_channel) {
329 struct device *dev = host->dma_tx_channel->device->dev;
330 unsigned int max_seg_size = dma_get_max_seg_size(dev);
331
332 if (max_seg_size < host->mmc->max_seg_size)
333 host->mmc->max_seg_size = max_seg_size;
334 }
335 if (host->dma_rx_channel) {
336 struct device *dev = host->dma_rx_channel->device->dev;
337 unsigned int max_seg_size = dma_get_max_seg_size(dev);
338
339 if (max_seg_size < host->mmc->max_seg_size)
340 host->mmc->max_seg_size = max_seg_size;
341 }
342}
343
344/*
Bill Pemberton6e0ee712012-11-19 13:26:03 -0500345 * This is used in or so inline it
Russell Kingc8ebae32011-01-11 19:35:53 +0000346 * so it can be discarded.
347 */
348static inline void mmci_dma_release(struct mmci_host *host)
349{
350 struct mmci_platform_data *plat = host->plat;
351
352 if (host->dma_rx_channel)
353 dma_release_channel(host->dma_rx_channel);
354 if (host->dma_tx_channel && plat->dma_tx_param)
355 dma_release_channel(host->dma_tx_channel);
356 host->dma_rx_channel = host->dma_tx_channel = NULL;
357}
358
359static void mmci_dma_unmap(struct mmci_host *host, struct mmc_data *data)
360{
361 struct dma_chan *chan = host->dma_current;
362 enum dma_data_direction dir;
363 u32 status;
364 int i;
365
366 /* Wait up to 1ms for the DMA to complete */
367 for (i = 0; ; i++) {
368 status = readl(host->base + MMCISTATUS);
369 if (!(status & MCI_RXDATAAVLBLMASK) || i >= 100)
370 break;
371 udelay(10);
372 }
373
374 /*
375 * Check to see whether we still have some data left in the FIFO -
376 * this catches DMA controllers which are unable to monitor the
377 * DMALBREQ and DMALSREQ signals while allowing us to DMA to non-
378 * contiguous buffers. On TX, we'll get a FIFO underrun error.
379 */
380 if (status & MCI_RXDATAAVLBLMASK) {
381 dmaengine_terminate_all(chan);
382 if (!data->error)
383 data->error = -EIO;
384 }
385
386 if (data->flags & MMC_DATA_WRITE) {
387 dir = DMA_TO_DEVICE;
388 } else {
389 dir = DMA_FROM_DEVICE;
390 }
391
Per Forlin58c7ccb2011-07-01 18:55:24 +0200392 if (!data->host_cookie)
393 dma_unmap_sg(chan->device->dev, data->sg, data->sg_len, dir);
Russell Kingc8ebae32011-01-11 19:35:53 +0000394
395 /*
396 * Use of DMA with scatter-gather is impossible.
397 * Give up with DMA and switch back to PIO mode.
398 */
399 if (status & MCI_RXDATAAVLBLMASK) {
400 dev_err(mmc_dev(host->mmc), "buggy DMA detected. Taking evasive action.\n");
401 mmci_dma_release(host);
402 }
403}
404
405static void mmci_dma_data_error(struct mmci_host *host)
406{
407 dev_err(mmc_dev(host->mmc), "error during DMA transfer!\n");
408 dmaengine_terminate_all(host->dma_current);
409}
410
Per Forlin58c7ccb2011-07-01 18:55:24 +0200411static int mmci_dma_prep_data(struct mmci_host *host, struct mmc_data *data,
412 struct mmci_host_next *next)
Russell Kingc8ebae32011-01-11 19:35:53 +0000413{
414 struct variant_data *variant = host->variant;
415 struct dma_slave_config conf = {
416 .src_addr = host->phybase + MMCIFIFO,
417 .dst_addr = host->phybase + MMCIFIFO,
418 .src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES,
419 .dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES,
420 .src_maxburst = variant->fifohalfsize >> 2, /* # of words */
421 .dst_maxburst = variant->fifohalfsize >> 2, /* # of words */
Viresh Kumar258aea72012-02-01 16:12:19 +0530422 .device_fc = false,
Russell Kingc8ebae32011-01-11 19:35:53 +0000423 };
Russell Kingc8ebae32011-01-11 19:35:53 +0000424 struct dma_chan *chan;
425 struct dma_device *device;
426 struct dma_async_tx_descriptor *desc;
Vinod Koul05f57992011-10-14 10:45:11 +0530427 enum dma_data_direction buffer_dirn;
Russell Kingc8ebae32011-01-11 19:35:53 +0000428 int nr_sg;
429
Per Forlin58c7ccb2011-07-01 18:55:24 +0200430 /* Check if next job is already prepared */
431 if (data->host_cookie && !next &&
432 host->dma_current && host->dma_desc_current)
433 return 0;
434
435 if (!next) {
436 host->dma_current = NULL;
437 host->dma_desc_current = NULL;
438 }
Russell Kingc8ebae32011-01-11 19:35:53 +0000439
440 if (data->flags & MMC_DATA_READ) {
Vinod Koul05f57992011-10-14 10:45:11 +0530441 conf.direction = DMA_DEV_TO_MEM;
442 buffer_dirn = DMA_FROM_DEVICE;
Russell Kingc8ebae32011-01-11 19:35:53 +0000443 chan = host->dma_rx_channel;
444 } else {
Vinod Koul05f57992011-10-14 10:45:11 +0530445 conf.direction = DMA_MEM_TO_DEV;
446 buffer_dirn = DMA_TO_DEVICE;
Russell Kingc8ebae32011-01-11 19:35:53 +0000447 chan = host->dma_tx_channel;
448 }
449
450 /* If there's no DMA channel, fall back to PIO */
451 if (!chan)
452 return -EINVAL;
453
454 /* If less than or equal to the fifo size, don't bother with DMA */
Per Forlin58c7ccb2011-07-01 18:55:24 +0200455 if (data->blksz * data->blocks <= variant->fifosize)
Russell Kingc8ebae32011-01-11 19:35:53 +0000456 return -EINVAL;
457
458 device = chan->device;
Vinod Koul05f57992011-10-14 10:45:11 +0530459 nr_sg = dma_map_sg(device->dev, data->sg, data->sg_len, buffer_dirn);
Russell Kingc8ebae32011-01-11 19:35:53 +0000460 if (nr_sg == 0)
461 return -EINVAL;
462
463 dmaengine_slave_config(chan, &conf);
Alexandre Bounine16052822012-03-08 16:11:18 -0500464 desc = dmaengine_prep_slave_sg(chan, data->sg, nr_sg,
Russell Kingc8ebae32011-01-11 19:35:53 +0000465 conf.direction, DMA_CTRL_ACK);
466 if (!desc)
467 goto unmap_exit;
468
Per Forlin58c7ccb2011-07-01 18:55:24 +0200469 if (next) {
470 next->dma_chan = chan;
471 next->dma_desc = desc;
472 } else {
473 host->dma_current = chan;
474 host->dma_desc_current = desc;
475 }
Russell Kingc8ebae32011-01-11 19:35:53 +0000476
Per Forlin58c7ccb2011-07-01 18:55:24 +0200477 return 0;
478
479 unmap_exit:
480 if (!next)
481 dmaengine_terminate_all(chan);
Vinod Koul05f57992011-10-14 10:45:11 +0530482 dma_unmap_sg(device->dev, data->sg, data->sg_len, buffer_dirn);
Per Forlin58c7ccb2011-07-01 18:55:24 +0200483 return -ENOMEM;
484}
485
486static int mmci_dma_start_data(struct mmci_host *host, unsigned int datactrl)
487{
488 int ret;
489 struct mmc_data *data = host->data;
490
491 ret = mmci_dma_prep_data(host, host->data, NULL);
492 if (ret)
493 return ret;
494
495 /* Okay, go for it. */
Russell Kingc8ebae32011-01-11 19:35:53 +0000496 dev_vdbg(mmc_dev(host->mmc),
497 "Submit MMCI DMA job, sglen %d blksz %04x blks %04x flags %08x\n",
498 data->sg_len, data->blksz, data->blocks, data->flags);
Per Forlin58c7ccb2011-07-01 18:55:24 +0200499 dmaengine_submit(host->dma_desc_current);
500 dma_async_issue_pending(host->dma_current);
Russell Kingc8ebae32011-01-11 19:35:53 +0000501
502 datactrl |= MCI_DPSM_DMAENABLE;
503
504 /* Trigger the DMA transfer */
505 writel(datactrl, host->base + MMCIDATACTRL);
506
507 /*
508 * Let the MMCI say when the data is ended and it's time
509 * to fire next DMA request. When that happens, MMCI will
510 * call mmci_data_end()
511 */
512 writel(readl(host->base + MMCIMASK0) | MCI_DATAENDMASK,
513 host->base + MMCIMASK0);
514 return 0;
Russell Kingc8ebae32011-01-11 19:35:53 +0000515}
Per Forlin58c7ccb2011-07-01 18:55:24 +0200516
517static void mmci_get_next_data(struct mmci_host *host, struct mmc_data *data)
518{
519 struct mmci_host_next *next = &host->next_data;
520
521 if (data->host_cookie && data->host_cookie != next->cookie) {
Girish K Sa3c76eb2011-10-11 11:44:09 +0530522 pr_warning("[%s] invalid cookie: data->host_cookie %d"
Per Forlin58c7ccb2011-07-01 18:55:24 +0200523 " host->next_data.cookie %d\n",
524 __func__, data->host_cookie, host->next_data.cookie);
525 data->host_cookie = 0;
526 }
527
528 if (!data->host_cookie)
529 return;
530
531 host->dma_desc_current = next->dma_desc;
532 host->dma_current = next->dma_chan;
533
534 next->dma_desc = NULL;
535 next->dma_chan = NULL;
536}
537
538static void mmci_pre_request(struct mmc_host *mmc, struct mmc_request *mrq,
539 bool is_first_req)
540{
541 struct mmci_host *host = mmc_priv(mmc);
542 struct mmc_data *data = mrq->data;
543 struct mmci_host_next *nd = &host->next_data;
544
545 if (!data)
546 return;
547
548 if (data->host_cookie) {
549 data->host_cookie = 0;
550 return;
551 }
552
553 /* if config for dma */
554 if (((data->flags & MMC_DATA_WRITE) && host->dma_tx_channel) ||
555 ((data->flags & MMC_DATA_READ) && host->dma_rx_channel)) {
556 if (mmci_dma_prep_data(host, data, nd))
557 data->host_cookie = 0;
558 else
559 data->host_cookie = ++nd->cookie < 0 ? 1 : nd->cookie;
560 }
561}
562
563static void mmci_post_request(struct mmc_host *mmc, struct mmc_request *mrq,
564 int err)
565{
566 struct mmci_host *host = mmc_priv(mmc);
567 struct mmc_data *data = mrq->data;
568 struct dma_chan *chan;
569 enum dma_data_direction dir;
570
571 if (!data)
572 return;
573
574 if (data->flags & MMC_DATA_READ) {
575 dir = DMA_FROM_DEVICE;
576 chan = host->dma_rx_channel;
577 } else {
578 dir = DMA_TO_DEVICE;
579 chan = host->dma_tx_channel;
580 }
581
582
583 /* if config for dma */
584 if (chan) {
585 if (err)
586 dmaengine_terminate_all(chan);
Per Forlin8e3336b2011-08-29 15:35:59 +0200587 if (data->host_cookie)
Per Forlin58c7ccb2011-07-01 18:55:24 +0200588 dma_unmap_sg(mmc_dev(host->mmc), data->sg,
589 data->sg_len, dir);
590 mrq->data->host_cookie = 0;
591 }
592}
593
Russell Kingc8ebae32011-01-11 19:35:53 +0000594#else
595/* Blank functions if the DMA engine is not available */
Per Forlin58c7ccb2011-07-01 18:55:24 +0200596static void mmci_get_next_data(struct mmci_host *host, struct mmc_data *data)
597{
598}
Russell Kingc8ebae32011-01-11 19:35:53 +0000599static inline void mmci_dma_setup(struct mmci_host *host)
600{
601}
602
603static inline void mmci_dma_release(struct mmci_host *host)
604{
605}
606
607static inline void mmci_dma_unmap(struct mmci_host *host, struct mmc_data *data)
608{
609}
610
611static inline void mmci_dma_data_error(struct mmci_host *host)
612{
613}
614
615static inline int mmci_dma_start_data(struct mmci_host *host, unsigned int datactrl)
616{
617 return -ENOSYS;
618}
Per Forlin58c7ccb2011-07-01 18:55:24 +0200619
620#define mmci_pre_request NULL
621#define mmci_post_request NULL
622
Russell Kingc8ebae32011-01-11 19:35:53 +0000623#endif
624
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625static void mmci_start_data(struct mmci_host *host, struct mmc_data *data)
626{
Rabin Vincent8301bb62010-08-09 12:57:30 +0100627 struct variant_data *variant = host->variant;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 unsigned int datactrl, timeout, irqmask;
Russell King7b09cda2005-07-01 12:02:59 +0100629 unsigned long long clks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 void __iomem *base;
Russell King3bc87f22006-08-27 13:51:28 +0100631 int blksz_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Linus Walleij64de0282010-02-19 01:09:10 +0100633 dev_dbg(mmc_dev(host->mmc), "blksz %04x blks %04x flags %08x\n",
634 data->blksz, data->blocks, data->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
636 host->data = data;
Rabin Vincent528320d2010-07-21 12:49:49 +0100637 host->size = data->blksz * data->blocks;
Russell King51d43752011-01-27 10:56:52 +0000638 data->bytes_xfered = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
Russell King7b09cda2005-07-01 12:02:59 +0100640 clks = (unsigned long long)data->timeout_ns * host->cclk;
641 do_div(clks, 1000000000UL);
642
643 timeout = data->timeout_clks + (unsigned int)clks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
645 base = host->base;
646 writel(timeout, base + MMCIDATATIMER);
647 writel(host->size, base + MMCIDATALENGTH);
648
Russell King3bc87f22006-08-27 13:51:28 +0100649 blksz_bits = ffs(data->blksz) - 1;
650 BUG_ON(1 << blksz_bits != data->blksz);
651
Philippe Langlais1784b152011-03-25 08:51:52 +0100652 if (variant->blksz_datactrl16)
653 datactrl = MCI_DPSM_ENABLE | (data->blksz << 16);
654 else
655 datactrl = MCI_DPSM_ENABLE | blksz_bits << 4;
Russell Kingc8ebae32011-01-11 19:35:53 +0000656
657 if (data->flags & MMC_DATA_READ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 datactrl |= MCI_DPSM_DIRECTION;
Russell Kingc8ebae32011-01-11 19:35:53 +0000659
Ulf Hansson7258db72011-12-13 17:05:28 +0100660 /* The ST Micro variants has a special bit to enable SDIO */
661 if (variant->sdio && host->mmc->card)
Ulf Hansson06c1a122012-10-12 14:01:50 +0100662 if (mmc_card_sdio(host->mmc->card)) {
663 /*
664 * The ST Micro variants has a special bit
665 * to enable SDIO.
666 */
667 u32 clk;
668
Ulf Hansson7258db72011-12-13 17:05:28 +0100669 datactrl |= MCI_ST_DPSM_SDIOEN;
670
Ulf Hansson06c1a122012-10-12 14:01:50 +0100671 /*
Ulf Hansson70ac0932012-10-12 14:07:36 +0100672 * The ST Micro variant for SDIO small write transfers
673 * needs to have clock H/W flow control disabled,
674 * otherwise the transfer will not start. The threshold
675 * depends on the rate of MCLK.
Ulf Hansson06c1a122012-10-12 14:01:50 +0100676 */
Ulf Hansson70ac0932012-10-12 14:07:36 +0100677 if (data->flags & MMC_DATA_WRITE &&
678 (host->size < 8 ||
679 (host->size <= 8 && host->mclk > 50000000)))
Ulf Hansson06c1a122012-10-12 14:01:50 +0100680 clk = host->clk_reg & ~variant->clkreg_enable;
681 else
682 clk = host->clk_reg | variant->clkreg_enable;
683
684 mmci_write_clkreg(host, clk);
685 }
686
Ulf Hansson6dbb6ee2013-01-07 15:30:44 +0100687 if (host->mmc->ios.timing == MMC_TIMING_UHS_DDR50)
688 datactrl |= MCI_ST_DPSM_DDRMODE;
689
Russell Kingc8ebae32011-01-11 19:35:53 +0000690 /*
691 * Attempt to use DMA operation mode, if this
692 * should fail, fall back to PIO mode
693 */
694 if (!mmci_dma_start_data(host, datactrl))
695 return;
696
697 /* IRQ mode, map the SG list for CPU reading/writing */
698 mmci_init_sg(host, data);
699
700 if (data->flags & MMC_DATA_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 irqmask = MCI_RXFIFOHALFFULLMASK;
Russell King0425a142006-02-16 16:48:31 +0000702
703 /*
Russell Kingc4d877c2011-01-27 09:50:13 +0000704 * If we have less than the fifo 'half-full' threshold to
705 * transfer, trigger a PIO interrupt as soon as any data
706 * is available.
Russell King0425a142006-02-16 16:48:31 +0000707 */
Russell Kingc4d877c2011-01-27 09:50:13 +0000708 if (host->size < variant->fifohalfsize)
Russell King0425a142006-02-16 16:48:31 +0000709 irqmask |= MCI_RXDATAAVLBLMASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 } else {
711 /*
712 * We don't actually need to include "FIFO empty" here
713 * since its implicit in "FIFO half empty".
714 */
715 irqmask = MCI_TXFIFOHALFEMPTYMASK;
716 }
717
718 writel(datactrl, base + MMCIDATACTRL);
719 writel(readl(base + MMCIMASK0) & ~MCI_DATAENDMASK, base + MMCIMASK0);
Linus Walleij2686b4b2010-10-19 12:39:48 +0100720 mmci_set_mask1(host, irqmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721}
722
723static void
724mmci_start_command(struct mmci_host *host, struct mmc_command *cmd, u32 c)
725{
726 void __iomem *base = host->base;
727
Linus Walleij64de0282010-02-19 01:09:10 +0100728 dev_dbg(mmc_dev(host->mmc), "op %02x arg %08x flags %08x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 cmd->opcode, cmd->arg, cmd->flags);
730
731 if (readl(base + MMCICOMMAND) & MCI_CPSM_ENABLE) {
732 writel(0, base + MMCICOMMAND);
733 udelay(1);
734 }
735
736 c |= cmd->opcode | MCI_CPSM_ENABLE;
Russell Kinge9225172006-02-02 12:23:12 +0000737 if (cmd->flags & MMC_RSP_PRESENT) {
738 if (cmd->flags & MMC_RSP_136)
739 c |= MCI_CPSM_LONGRSP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 c |= MCI_CPSM_RESPONSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 }
742 if (/*interrupt*/0)
743 c |= MCI_CPSM_INTERRUPT;
744
745 host->cmd = cmd;
746
747 writel(cmd->arg, base + MMCIARGUMENT);
748 writel(c, base + MMCICOMMAND);
749}
750
751static void
752mmci_data_irq(struct mmci_host *host, struct mmc_data *data,
753 unsigned int status)
754{
Linus Walleijf20f8f22010-10-19 13:41:24 +0100755 /* First check for errors */
Ulf Hanssonb63038d2011-12-13 16:51:04 +0100756 if (status & (MCI_DATACRCFAIL|MCI_DATATIMEOUT|MCI_STARTBITERR|
757 MCI_TXUNDERRUN|MCI_RXOVERRUN)) {
Linus Walleij8cb28152011-01-24 15:22:13 +0100758 u32 remain, success;
Linus Walleijf20f8f22010-10-19 13:41:24 +0100759
Russell Kingc8ebae32011-01-11 19:35:53 +0000760 /* Terminate the DMA transfer */
761 if (dma_inprogress(host))
762 mmci_dma_data_error(host);
763
Russell Kingc8afc9d2011-02-04 09:19:46 +0000764 /*
765 * Calculate how far we are into the transfer. Note that
766 * the data counter gives the number of bytes transferred
767 * on the MMC bus, not on the host side. On reads, this
768 * can be as much as a FIFO-worth of data ahead. This
769 * matters for FIFO overruns only.
770 */
Linus Walleijf5a106d2011-01-27 17:44:34 +0100771 remain = readl(host->base + MMCIDATACNT);
Linus Walleij8cb28152011-01-24 15:22:13 +0100772 success = data->blksz * data->blocks - remain;
773
Russell Kingc8afc9d2011-02-04 09:19:46 +0000774 dev_dbg(mmc_dev(host->mmc), "MCI ERROR IRQ, status 0x%08x at 0x%08x\n",
775 status, success);
Linus Walleij8cb28152011-01-24 15:22:13 +0100776 if (status & MCI_DATACRCFAIL) {
777 /* Last block was not successful */
Russell Kingc8afc9d2011-02-04 09:19:46 +0000778 success -= 1;
Pierre Ossman17b04292007-07-22 22:18:46 +0200779 data->error = -EILSEQ;
Linus Walleij8cb28152011-01-24 15:22:13 +0100780 } else if (status & MCI_DATATIMEOUT) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200781 data->error = -ETIMEDOUT;
Linus Walleij757df742011-06-30 15:10:21 +0100782 } else if (status & MCI_STARTBITERR) {
783 data->error = -ECOMM;
Russell Kingc8afc9d2011-02-04 09:19:46 +0000784 } else if (status & MCI_TXUNDERRUN) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200785 data->error = -EIO;
Russell Kingc8afc9d2011-02-04 09:19:46 +0000786 } else if (status & MCI_RXOVERRUN) {
787 if (success > host->variant->fifosize)
788 success -= host->variant->fifosize;
789 else
790 success = 0;
Linus Walleij8cb28152011-01-24 15:22:13 +0100791 data->error = -EIO;
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100792 }
Russell King51d43752011-01-27 10:56:52 +0000793 data->bytes_xfered = round_down(success, data->blksz);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 }
Linus Walleijf20f8f22010-10-19 13:41:24 +0100795
Linus Walleij8cb28152011-01-24 15:22:13 +0100796 if (status & MCI_DATABLOCKEND)
797 dev_err(mmc_dev(host->mmc), "stray MCI_DATABLOCKEND interrupt\n");
Linus Walleijf20f8f22010-10-19 13:41:24 +0100798
Russell Kingccff9b52011-01-30 21:03:50 +0000799 if (status & MCI_DATAEND || data->error) {
Russell Kingc8ebae32011-01-11 19:35:53 +0000800 if (dma_inprogress(host))
801 mmci_dma_unmap(host, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 mmci_stop_data(host);
803
Linus Walleij8cb28152011-01-24 15:22:13 +0100804 if (!data->error)
805 /* The error clause is handled above, success! */
Russell King51d43752011-01-27 10:56:52 +0000806 data->bytes_xfered = data->blksz * data->blocks;
Linus Walleijf20f8f22010-10-19 13:41:24 +0100807
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 if (!data->stop) {
809 mmci_request_end(host, data->mrq);
810 } else {
811 mmci_start_command(host, data->stop, 0);
812 }
813 }
814}
815
816static void
817mmci_cmd_irq(struct mmci_host *host, struct mmc_command *cmd,
818 unsigned int status)
819{
820 void __iomem *base = host->base;
821
822 host->cmd = NULL;
823
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 if (status & MCI_CMDTIMEOUT) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200825 cmd->error = -ETIMEDOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 } else if (status & MCI_CMDCRCFAIL && cmd->flags & MMC_RSP_CRC) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200827 cmd->error = -EILSEQ;
Russell King - ARM Linux9047b432011-01-11 16:35:56 +0000828 } else {
829 cmd->resp[0] = readl(base + MMCIRESPONSE0);
830 cmd->resp[1] = readl(base + MMCIRESPONSE1);
831 cmd->resp[2] = readl(base + MMCIRESPONSE2);
832 cmd->resp[3] = readl(base + MMCIRESPONSE3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 }
834
Pierre Ossman17b04292007-07-22 22:18:46 +0200835 if (!cmd->data || cmd->error) {
Ulf Hansson3b6e3c72011-12-13 16:58:43 +0100836 if (host->data) {
837 /* Terminate the DMA transfer */
838 if (dma_inprogress(host))
839 mmci_dma_data_error(host);
Russell Kinge47c2222007-01-08 16:42:51 +0000840 mmci_stop_data(host);
Ulf Hansson3b6e3c72011-12-13 16:58:43 +0100841 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 mmci_request_end(host, cmd->mrq);
843 } else if (!(cmd->data->flags & MMC_DATA_READ)) {
844 mmci_start_data(host, cmd->data);
845 }
846}
847
848static int mmci_pio_read(struct mmci_host *host, char *buffer, unsigned int remain)
849{
850 void __iomem *base = host->base;
851 char *ptr = buffer;
852 u32 status;
Linus Walleij26eed9a2008-04-26 23:39:44 +0100853 int host_remain = host->size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
855 do {
Linus Walleij26eed9a2008-04-26 23:39:44 +0100856 int count = host_remain - (readl(base + MMCIFIFOCNT) << 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
858 if (count > remain)
859 count = remain;
860
861 if (count <= 0)
862 break;
863
Ulf Hansson393e5e22011-12-13 17:08:04 +0100864 /*
865 * SDIO especially may want to send something that is
866 * not divisible by 4 (as opposed to card sectors
867 * etc). Therefore make sure to always read the last bytes
868 * while only doing full 32-bit reads towards the FIFO.
869 */
870 if (unlikely(count & 0x3)) {
871 if (count < 4) {
872 unsigned char buf[4];
Davide Ciminaghi4b85da02012-12-10 14:47:21 +0100873 ioread32_rep(base + MMCIFIFO, buf, 1);
Ulf Hansson393e5e22011-12-13 17:08:04 +0100874 memcpy(ptr, buf, count);
875 } else {
Davide Ciminaghi4b85da02012-12-10 14:47:21 +0100876 ioread32_rep(base + MMCIFIFO, ptr, count >> 2);
Ulf Hansson393e5e22011-12-13 17:08:04 +0100877 count &= ~0x3;
878 }
879 } else {
Davide Ciminaghi4b85da02012-12-10 14:47:21 +0100880 ioread32_rep(base + MMCIFIFO, ptr, count >> 2);
Ulf Hansson393e5e22011-12-13 17:08:04 +0100881 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
883 ptr += count;
884 remain -= count;
Linus Walleij26eed9a2008-04-26 23:39:44 +0100885 host_remain -= count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
887 if (remain == 0)
888 break;
889
890 status = readl(base + MMCISTATUS);
891 } while (status & MCI_RXDATAAVLBL);
892
893 return ptr - buffer;
894}
895
896static int mmci_pio_write(struct mmci_host *host, char *buffer, unsigned int remain, u32 status)
897{
Rabin Vincent8301bb62010-08-09 12:57:30 +0100898 struct variant_data *variant = host->variant;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 void __iomem *base = host->base;
900 char *ptr = buffer;
901
902 do {
903 unsigned int count, maxcnt;
904
Rabin Vincent8301bb62010-08-09 12:57:30 +0100905 maxcnt = status & MCI_TXFIFOEMPTY ?
906 variant->fifosize : variant->fifohalfsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 count = min(remain, maxcnt);
908
Linus Walleij34177802010-10-19 12:43:58 +0100909 /*
Linus Walleij34177802010-10-19 12:43:58 +0100910 * SDIO especially may want to send something that is
911 * not divisible by 4 (as opposed to card sectors
912 * etc), and the FIFO only accept full 32-bit writes.
913 * So compensate by adding +3 on the count, a single
914 * byte become a 32bit write, 7 bytes will be two
915 * 32bit writes etc.
916 */
Davide Ciminaghi4b85da02012-12-10 14:47:21 +0100917 iowrite32_rep(base + MMCIFIFO, ptr, (count + 3) >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
919 ptr += count;
920 remain -= count;
921
922 if (remain == 0)
923 break;
924
925 status = readl(base + MMCISTATUS);
926 } while (status & MCI_TXFIFOHALFEMPTY);
927
928 return ptr - buffer;
929}
930
931/*
932 * PIO data transfer IRQ handler.
933 */
David Howells7d12e782006-10-05 14:55:46 +0100934static irqreturn_t mmci_pio_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935{
936 struct mmci_host *host = dev_id;
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100937 struct sg_mapping_iter *sg_miter = &host->sg_miter;
Rabin Vincent8301bb62010-08-09 12:57:30 +0100938 struct variant_data *variant = host->variant;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 void __iomem *base = host->base;
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100940 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 u32 status;
942
943 status = readl(base + MMCISTATUS);
944
Linus Walleij64de0282010-02-19 01:09:10 +0100945 dev_dbg(mmc_dev(host->mmc), "irq1 (pio) %08x\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100947 local_irq_save(flags);
948
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 unsigned int remain, len;
951 char *buffer;
952
953 /*
954 * For write, we only need to test the half-empty flag
955 * here - if the FIFO is completely empty, then by
956 * definition it is more than half empty.
957 *
958 * For read, check for data available.
959 */
960 if (!(status & (MCI_TXFIFOHALFEMPTY|MCI_RXDATAAVLBL)))
961 break;
962
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100963 if (!sg_miter_next(sg_miter))
964 break;
965
966 buffer = sg_miter->addr;
967 remain = sg_miter->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968
969 len = 0;
970 if (status & MCI_RXACTIVE)
971 len = mmci_pio_read(host, buffer, remain);
972 if (status & MCI_TXACTIVE)
973 len = mmci_pio_write(host, buffer, remain, status);
974
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100975 sg_miter->consumed = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 host->size -= len;
978 remain -= len;
979
980 if (remain)
981 break;
982
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 status = readl(base + MMCISTATUS);
984 } while (1);
985
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100986 sg_miter_stop(sg_miter);
987
988 local_irq_restore(flags);
989
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 /*
Russell Kingc4d877c2011-01-27 09:50:13 +0000991 * If we have less than the fifo 'half-full' threshold to transfer,
992 * trigger a PIO interrupt as soon as any data is available.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 */
Russell Kingc4d877c2011-01-27 09:50:13 +0000994 if (status & MCI_RXACTIVE && host->size < variant->fifohalfsize)
Linus Walleij2686b4b2010-10-19 12:39:48 +0100995 mmci_set_mask1(host, MCI_RXDATAAVLBLMASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
997 /*
998 * If we run out of data, disable the data IRQs; this
999 * prevents a race where the FIFO becomes empty before
1000 * the chip itself has disabled the data path, and
1001 * stops us racing with our data end IRQ.
1002 */
1003 if (host->size == 0) {
Linus Walleij2686b4b2010-10-19 12:39:48 +01001004 mmci_set_mask1(host, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 writel(readl(base + MMCIMASK0) | MCI_DATAENDMASK, base + MMCIMASK0);
1006 }
1007
1008 return IRQ_HANDLED;
1009}
1010
1011/*
1012 * Handle completion of command and data transfers.
1013 */
David Howells7d12e782006-10-05 14:55:46 +01001014static irqreturn_t mmci_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015{
1016 struct mmci_host *host = dev_id;
1017 u32 status;
1018 int ret = 0;
1019
1020 spin_lock(&host->lock);
1021
1022 do {
1023 struct mmc_command *cmd;
1024 struct mmc_data *data;
1025
1026 status = readl(host->base + MMCISTATUS);
Linus Walleij2686b4b2010-10-19 12:39:48 +01001027
1028 if (host->singleirq) {
1029 if (status & readl(host->base + MMCIMASK1))
1030 mmci_pio_irq(irq, dev_id);
1031
1032 status &= ~MCI_IRQ1MASK;
1033 }
1034
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 status &= readl(host->base + MMCIMASK0);
1036 writel(status, host->base + MMCICLEAR);
1037
Linus Walleij64de0282010-02-19 01:09:10 +01001038 dev_dbg(mmc_dev(host->mmc), "irq0 (data+cmd) %08x\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039
1040 data = host->data;
Ulf Hanssonb63038d2011-12-13 16:51:04 +01001041 if (status & (MCI_DATACRCFAIL|MCI_DATATIMEOUT|MCI_STARTBITERR|
1042 MCI_TXUNDERRUN|MCI_RXOVERRUN|MCI_DATAEND|
1043 MCI_DATABLOCKEND) && data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 mmci_data_irq(host, data, status);
1045
1046 cmd = host->cmd;
1047 if (status & (MCI_CMDCRCFAIL|MCI_CMDTIMEOUT|MCI_CMDSENT|MCI_CMDRESPEND) && cmd)
1048 mmci_cmd_irq(host, cmd, status);
1049
1050 ret = 1;
1051 } while (status);
1052
1053 spin_unlock(&host->lock);
1054
1055 return IRQ_RETVAL(ret);
1056}
1057
1058static void mmci_request(struct mmc_host *mmc, struct mmc_request *mrq)
1059{
1060 struct mmci_host *host = mmc_priv(mmc);
Linus Walleij9e943022008-10-24 21:17:50 +01001061 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062
1063 WARN_ON(host->mrq != NULL);
1064
Nicolas Pitre019a5f52007-10-11 01:06:03 -04001065 if (mrq->data && !is_power_of_2(mrq->data->blksz)) {
Linus Walleij64de0282010-02-19 01:09:10 +01001066 dev_err(mmc_dev(mmc), "unsupported block size (%d bytes)\n",
1067 mrq->data->blksz);
Pierre Ossman255d01a2007-07-24 20:38:53 +02001068 mrq->cmd->error = -EINVAL;
1069 mmc_request_done(mmc, mrq);
1070 return;
1071 }
1072
Russell King1c3be362011-08-14 09:17:05 +01001073 pm_runtime_get_sync(mmc_dev(mmc));
1074
Linus Walleij9e943022008-10-24 21:17:50 +01001075 spin_lock_irqsave(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076
1077 host->mrq = mrq;
1078
Per Forlin58c7ccb2011-07-01 18:55:24 +02001079 if (mrq->data)
1080 mmci_get_next_data(host, mrq->data);
1081
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 if (mrq->data && mrq->data->flags & MMC_DATA_READ)
1083 mmci_start_data(host, mrq->data);
1084
1085 mmci_start_command(host, mrq->cmd, 0);
1086
Linus Walleij9e943022008-10-24 21:17:50 +01001087 spin_unlock_irqrestore(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088}
1089
1090static void mmci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
1091{
1092 struct mmci_host *host = mmc_priv(mmc);
Ulf Hansson7d72a1d2011-12-13 16:54:55 +01001093 struct variant_data *variant = host->variant;
Linus Walleija6a64642009-09-14 12:56:14 +01001094 u32 pwr = 0;
1095 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001097 pm_runtime_get_sync(mmc_dev(mmc));
1098
Ulf Hanssonbc521812011-12-13 16:57:55 +01001099 if (host->plat->ios_handler &&
1100 host->plat->ios_handler(mmc_dev(mmc), ios))
1101 dev_err(mmc_dev(mmc), "platform ios_handler failed\n");
1102
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 switch (ios->power_mode) {
1104 case MMC_POWER_OFF:
Ulf Hansson599c1d52013-01-07 16:22:50 +01001105 if (!IS_ERR(mmc->supply.vmmc))
1106 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 break;
1108 case MMC_POWER_UP:
Ulf Hansson599c1d52013-01-07 16:22:50 +01001109 if (!IS_ERR(mmc->supply.vmmc))
1110 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, ios->vdd);
1111
Ulf Hansson7d72a1d2011-12-13 16:54:55 +01001112 /*
1113 * The ST Micro variant doesn't have the PL180s MCI_PWR_UP
1114 * and instead uses MCI_PWR_ON so apply whatever value is
1115 * configured in the variant data.
1116 */
1117 pwr |= variant->pwrreg_powerup;
1118
1119 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 case MMC_POWER_ON:
1121 pwr |= MCI_PWR_ON;
1122 break;
1123 }
1124
Ulf Hansson4d1a3a02011-12-13 16:57:07 +01001125 if (variant->signal_direction && ios->power_mode != MMC_POWER_OFF) {
1126 /*
1127 * The ST Micro variant has some additional bits
1128 * indicating signal direction for the signals in
1129 * the SD/MMC bus and feedback-clock usage.
1130 */
1131 pwr |= host->plat->sigdir;
1132
1133 if (ios->bus_width == MMC_BUS_WIDTH_4)
1134 pwr &= ~MCI_ST_DATA74DIREN;
1135 else if (ios->bus_width == MMC_BUS_WIDTH_1)
1136 pwr &= (~MCI_ST_DATA74DIREN &
1137 ~MCI_ST_DATA31DIREN &
1138 ~MCI_ST_DATA2DIREN);
1139 }
1140
Linus Walleijcc30d602009-01-04 15:18:54 +01001141 if (ios->bus_mode == MMC_BUSMODE_OPENDRAIN) {
Linus Walleijf17a1f02009-08-04 01:01:02 +01001142 if (host->hw_designer != AMBA_VENDOR_ST)
Linus Walleijcc30d602009-01-04 15:18:54 +01001143 pwr |= MCI_ROD;
1144 else {
1145 /*
1146 * The ST Micro variant use the ROD bit for something
1147 * else and only has OD (Open Drain).
1148 */
1149 pwr |= MCI_OD;
1150 }
1151 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152
Linus Walleija6a64642009-09-14 12:56:14 +01001153 spin_lock_irqsave(&host->lock, flags);
1154
1155 mmci_set_clkreg(host, ios->clock);
Ulf Hansson7437cfa2012-01-18 09:17:27 +01001156 mmci_write_pwrreg(host, pwr);
Linus Walleija6a64642009-09-14 12:56:14 +01001157
1158 spin_unlock_irqrestore(&host->lock, flags);
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001159
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001160 pm_runtime_mark_last_busy(mmc_dev(mmc));
1161 pm_runtime_put_autosuspend(mmc_dev(mmc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162}
1163
Russell King89001442009-07-09 15:16:07 +01001164static int mmci_get_ro(struct mmc_host *mmc)
1165{
1166 struct mmci_host *host = mmc_priv(mmc);
1167
1168 if (host->gpio_wp == -ENOSYS)
1169 return -ENOSYS;
1170
Linus Walleij18a063012010-09-12 12:56:44 +01001171 return gpio_get_value_cansleep(host->gpio_wp);
Russell King89001442009-07-09 15:16:07 +01001172}
1173
1174static int mmci_get_cd(struct mmc_host *mmc)
1175{
1176 struct mmci_host *host = mmc_priv(mmc);
Rabin Vincent29719442010-08-09 12:54:43 +01001177 struct mmci_platform_data *plat = host->plat;
Russell King89001442009-07-09 15:16:07 +01001178 unsigned int status;
1179
Rabin Vincent4b8caec2010-08-09 12:56:40 +01001180 if (host->gpio_cd == -ENOSYS) {
1181 if (!plat->status)
1182 return 1; /* Assume always present */
1183
Rabin Vincent29719442010-08-09 12:54:43 +01001184 status = plat->status(mmc_dev(host->mmc));
Rabin Vincent4b8caec2010-08-09 12:56:40 +01001185 } else
Linus Walleij18a063012010-09-12 12:56:44 +01001186 status = !!gpio_get_value_cansleep(host->gpio_cd)
1187 ^ plat->cd_invert;
Russell King89001442009-07-09 15:16:07 +01001188
Russell King74bc8092010-07-29 15:58:59 +01001189 /*
1190 * Use positive logic throughout - status is zero for no card,
1191 * non-zero for card inserted.
1192 */
1193 return status;
Russell King89001442009-07-09 15:16:07 +01001194}
1195
Rabin Vincent148b8b32010-08-09 12:55:48 +01001196static irqreturn_t mmci_cd_irq(int irq, void *dev_id)
1197{
1198 struct mmci_host *host = dev_id;
1199
1200 mmc_detect_change(host->mmc, msecs_to_jiffies(500));
1201
1202 return IRQ_HANDLED;
1203}
1204
David Brownellab7aefd2006-11-12 17:55:30 -08001205static const struct mmc_host_ops mmci_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 .request = mmci_request,
Per Forlin58c7ccb2011-07-01 18:55:24 +02001207 .pre_req = mmci_pre_request,
1208 .post_req = mmci_post_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 .set_ios = mmci_set_ios,
Russell King89001442009-07-09 15:16:07 +01001210 .get_ro = mmci_get_ro,
1211 .get_cd = mmci_get_cd,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212};
1213
Lee Jones000bc9d2012-04-16 10:18:43 +01001214#ifdef CONFIG_OF
1215static void mmci_dt_populate_generic_pdata(struct device_node *np,
1216 struct mmci_platform_data *pdata)
1217{
1218 int bus_width = 0;
1219
Lee Jones9a597012012-04-12 16:51:13 +01001220 pdata->gpio_wp = of_get_named_gpio(np, "wp-gpios", 0);
Lee Jones9a597012012-04-12 16:51:13 +01001221 pdata->gpio_cd = of_get_named_gpio(np, "cd-gpios", 0);
Lee Jones000bc9d2012-04-16 10:18:43 +01001222
1223 if (of_get_property(np, "cd-inverted", NULL))
1224 pdata->cd_invert = true;
1225 else
1226 pdata->cd_invert = false;
1227
1228 of_property_read_u32(np, "max-frequency", &pdata->f_max);
1229 if (!pdata->f_max)
1230 pr_warn("%s has no 'max-frequency' property\n", np->full_name);
1231
1232 if (of_get_property(np, "mmc-cap-mmc-highspeed", NULL))
1233 pdata->capabilities |= MMC_CAP_MMC_HIGHSPEED;
1234 if (of_get_property(np, "mmc-cap-sd-highspeed", NULL))
1235 pdata->capabilities |= MMC_CAP_SD_HIGHSPEED;
1236
1237 of_property_read_u32(np, "bus-width", &bus_width);
1238 switch (bus_width) {
1239 case 0 :
1240 /* No bus-width supplied. */
1241 break;
1242 case 4 :
1243 pdata->capabilities |= MMC_CAP_4_BIT_DATA;
1244 break;
1245 case 8 :
1246 pdata->capabilities |= MMC_CAP_8_BIT_DATA;
1247 break;
1248 default :
1249 pr_warn("%s: Unsupported bus width\n", np->full_name);
1250 }
1251}
Lee Jonesc0a120a2012-05-08 13:59:38 +01001252#else
1253static void mmci_dt_populate_generic_pdata(struct device_node *np,
1254 struct mmci_platform_data *pdata)
1255{
1256 return;
1257}
Lee Jones000bc9d2012-04-16 10:18:43 +01001258#endif
1259
Bill Pembertonc3be1ef2012-11-19 13:23:06 -05001260static int mmci_probe(struct amba_device *dev,
Russell Kingaa25afa2011-02-19 15:55:00 +00001261 const struct amba_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262{
Linus Walleij6ef297f2009-09-22 14:29:36 +01001263 struct mmci_platform_data *plat = dev->dev.platform_data;
Lee Jones000bc9d2012-04-16 10:18:43 +01001264 struct device_node *np = dev->dev.of_node;
Rabin Vincent4956e102010-07-21 12:54:40 +01001265 struct variant_data *variant = id->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 struct mmci_host *host;
1267 struct mmc_host *mmc;
1268 int ret;
1269
Lee Jones000bc9d2012-04-16 10:18:43 +01001270 /* Must have platform data or Device Tree. */
1271 if (!plat && !np) {
1272 dev_err(&dev->dev, "No plat data or DT found\n");
1273 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 }
1275
Lee Jonesb9b52912012-06-12 10:49:51 +01001276 if (!plat) {
1277 plat = devm_kzalloc(&dev->dev, sizeof(*plat), GFP_KERNEL);
1278 if (!plat)
1279 return -ENOMEM;
1280 }
1281
Lee Jones000bc9d2012-04-16 10:18:43 +01001282 if (np)
1283 mmci_dt_populate_generic_pdata(np, plat);
1284
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 ret = amba_request_regions(dev, DRIVER_NAME);
1286 if (ret)
1287 goto out;
1288
1289 mmc = mmc_alloc_host(sizeof(struct mmci_host), &dev->dev);
1290 if (!mmc) {
1291 ret = -ENOMEM;
1292 goto rel_regions;
1293 }
1294
1295 host = mmc_priv(mmc);
Rabin Vincent4ea580f2009-04-17 08:44:19 +05301296 host->mmc = mmc;
Russell King012b7d32009-07-09 15:13:56 +01001297
Russell King89001442009-07-09 15:16:07 +01001298 host->gpio_wp = -ENOSYS;
1299 host->gpio_cd = -ENOSYS;
Rabin Vincent148b8b32010-08-09 12:55:48 +01001300 host->gpio_cd_irq = -1;
Russell King89001442009-07-09 15:16:07 +01001301
Russell King012b7d32009-07-09 15:13:56 +01001302 host->hw_designer = amba_manf(dev);
1303 host->hw_revision = amba_rev(dev);
Linus Walleij64de0282010-02-19 01:09:10 +01001304 dev_dbg(mmc_dev(mmc), "designer ID = 0x%02x\n", host->hw_designer);
1305 dev_dbg(mmc_dev(mmc), "revision = 0x%01x\n", host->hw_revision);
Russell King012b7d32009-07-09 15:13:56 +01001306
Russell Kingee569c42008-11-30 17:38:14 +00001307 host->clk = clk_get(&dev->dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 if (IS_ERR(host->clk)) {
1309 ret = PTR_ERR(host->clk);
1310 host->clk = NULL;
1311 goto host_free;
1312 }
1313
Julia Lawallac940932012-08-26 16:00:59 +00001314 ret = clk_prepare_enable(host->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 if (ret)
Russell Kinga8d35842006-01-03 18:41:37 +00001316 goto clk_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317
1318 host->plat = plat;
Rabin Vincent4956e102010-07-21 12:54:40 +01001319 host->variant = variant;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 host->mclk = clk_get_rate(host->clk);
Linus Walleijc8df9a52008-04-29 09:34:07 +01001321 /*
1322 * According to the spec, mclk is max 100 MHz,
1323 * so we try to adjust the clock down to this,
1324 * (if possible).
1325 */
1326 if (host->mclk > 100000000) {
1327 ret = clk_set_rate(host->clk, 100000000);
1328 if (ret < 0)
1329 goto clk_disable;
1330 host->mclk = clk_get_rate(host->clk);
Linus Walleij64de0282010-02-19 01:09:10 +01001331 dev_dbg(mmc_dev(mmc), "eventual mclk rate: %u Hz\n",
1332 host->mclk);
Linus Walleijc8df9a52008-04-29 09:34:07 +01001333 }
Russell Kingc8ebae32011-01-11 19:35:53 +00001334 host->phybase = dev->res.start;
Linus Walleijdc890c22009-06-07 23:27:31 +01001335 host->base = ioremap(dev->res.start, resource_size(&dev->res));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 if (!host->base) {
1337 ret = -ENOMEM;
1338 goto clk_disable;
1339 }
1340
1341 mmc->ops = &mmci_ops;
Linus Walleij7f294e42011-07-08 09:57:15 +01001342 /*
1343 * The ARM and ST versions of the block have slightly different
1344 * clock divider equations which means that the minimum divider
1345 * differs too.
1346 */
1347 if (variant->st_clkdiv)
1348 mmc->f_min = DIV_ROUND_UP(host->mclk, 257);
1349 else
1350 mmc->f_min = DIV_ROUND_UP(host->mclk, 512);
Linus Walleij808d97c2010-04-08 07:39:38 +01001351 /*
1352 * If the platform data supplies a maximum operating
1353 * frequency, this takes precedence. Else, we fall back
1354 * to using the module parameter, which has a (low)
1355 * default value in case it is not specified. Either
1356 * value must not exceed the clock rate into the block,
1357 * of course.
1358 */
1359 if (plat->f_max)
1360 mmc->f_max = min(host->mclk, plat->f_max);
1361 else
1362 mmc->f_max = min(host->mclk, fmax);
Linus Walleij64de0282010-02-19 01:09:10 +01001363 dev_dbg(mmc_dev(mmc), "clocking block at %u Hz\n", mmc->f_max);
1364
Linus Walleija9a83782012-10-29 14:39:30 +01001365 host->pinctrl = devm_pinctrl_get(&dev->dev);
1366 if (IS_ERR(host->pinctrl)) {
1367 ret = PTR_ERR(host->pinctrl);
1368 goto clk_disable;
1369 }
1370
1371 host->pins_default = pinctrl_lookup_state(host->pinctrl,
1372 PINCTRL_STATE_DEFAULT);
1373
1374 /* enable pins to be muxed in and configured */
1375 if (!IS_ERR(host->pins_default)) {
1376 ret = pinctrl_select_state(host->pinctrl, host->pins_default);
1377 if (ret)
1378 dev_warn(&dev->dev, "could not set default pins\n");
1379 } else
1380 dev_warn(&dev->dev, "could not get default pinstate\n");
1381
Ulf Hansson599c1d52013-01-07 16:22:50 +01001382 /* Get regulators and the supported OCR mask */
1383 mmc_regulator_get_supply(mmc);
1384 if (!mmc->ocr_avail)
Linus Walleij34e84f32009-09-22 14:41:40 +01001385 mmc->ocr_avail = plat->ocr_mask;
Ulf Hansson599c1d52013-01-07 16:22:50 +01001386 else if (plat->ocr_mask)
1387 dev_warn(mmc_dev(mmc), "Platform OCR mask is ignored\n");
1388
Linus Walleij9e6c82c2009-09-14 12:57:11 +01001389 mmc->caps = plat->capabilities;
Per Forlin5a092622011-11-14 12:02:28 +01001390 mmc->caps2 = plat->capabilities2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
Ulf Hansson70be2082013-01-07 15:35:06 +01001392 /* We support these PM capabilities. */
1393 mmc->pm_caps = MMC_PM_KEEP_POWER;
1394
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 /*
1396 * We can do SGIO
1397 */
Martin K. Petersena36274e2010-09-10 01:33:59 -04001398 mmc->max_segs = NR_SG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399
1400 /*
Rabin Vincent08458ef2010-07-21 12:55:59 +01001401 * Since only a certain number of bits are valid in the data length
1402 * register, we must ensure that we don't exceed 2^num-1 bytes in a
1403 * single request.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 */
Rabin Vincent08458ef2010-07-21 12:55:59 +01001405 mmc->max_req_size = (1 << variant->datalength_bits) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406
1407 /*
1408 * Set the maximum segment size. Since we aren't doing DMA
1409 * (yet) we are only limited by the data length register.
1410 */
Pierre Ossman55db8902006-11-21 17:55:45 +01001411 mmc->max_seg_size = mmc->max_req_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +01001413 /*
1414 * Block size can be up to 2048 bytes, but must be a power of two.
1415 */
Will Deacon8f7f6b72012-02-24 11:25:21 +00001416 mmc->max_blk_size = 1 << 11;
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +01001417
Pierre Ossman55db8902006-11-21 17:55:45 +01001418 /*
Will Deacon8f7f6b72012-02-24 11:25:21 +00001419 * Limit the number of blocks transferred so that we don't overflow
1420 * the maximum request size.
Pierre Ossman55db8902006-11-21 17:55:45 +01001421 */
Will Deacon8f7f6b72012-02-24 11:25:21 +00001422 mmc->max_blk_count = mmc->max_req_size >> 11;
Pierre Ossman55db8902006-11-21 17:55:45 +01001423
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 spin_lock_init(&host->lock);
1425
1426 writel(0, host->base + MMCIMASK0);
1427 writel(0, host->base + MMCIMASK1);
1428 writel(0xfff, host->base + MMCICLEAR);
1429
Roland Stigge2805b9a2012-06-17 21:14:27 +01001430 if (plat->gpio_cd == -EPROBE_DEFER) {
1431 ret = -EPROBE_DEFER;
1432 goto err_gpio_cd;
1433 }
Russell King89001442009-07-09 15:16:07 +01001434 if (gpio_is_valid(plat->gpio_cd)) {
1435 ret = gpio_request(plat->gpio_cd, DRIVER_NAME " (cd)");
1436 if (ret == 0)
1437 ret = gpio_direction_input(plat->gpio_cd);
1438 if (ret == 0)
1439 host->gpio_cd = plat->gpio_cd;
1440 else if (ret != -ENOSYS)
1441 goto err_gpio_cd;
Rabin Vincent148b8b32010-08-09 12:55:48 +01001442
Linus Walleij17ee0832011-05-05 17:23:10 +01001443 /*
1444 * A gpio pin that will detect cards when inserted and removed
1445 * will most likely want to trigger on the edges if it is
1446 * 0 when ejected and 1 when inserted (or mutatis mutandis
1447 * for the inverted case) so we request triggers on both
1448 * edges.
1449 */
Rabin Vincent148b8b32010-08-09 12:55:48 +01001450 ret = request_any_context_irq(gpio_to_irq(plat->gpio_cd),
Linus Walleij17ee0832011-05-05 17:23:10 +01001451 mmci_cd_irq,
1452 IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING,
1453 DRIVER_NAME " (cd)", host);
Rabin Vincent148b8b32010-08-09 12:55:48 +01001454 if (ret >= 0)
1455 host->gpio_cd_irq = gpio_to_irq(plat->gpio_cd);
Russell King89001442009-07-09 15:16:07 +01001456 }
Roland Stigge2805b9a2012-06-17 21:14:27 +01001457 if (plat->gpio_wp == -EPROBE_DEFER) {
1458 ret = -EPROBE_DEFER;
1459 goto err_gpio_wp;
1460 }
Russell King89001442009-07-09 15:16:07 +01001461 if (gpio_is_valid(plat->gpio_wp)) {
1462 ret = gpio_request(plat->gpio_wp, DRIVER_NAME " (wp)");
1463 if (ret == 0)
1464 ret = gpio_direction_input(plat->gpio_wp);
1465 if (ret == 0)
1466 host->gpio_wp = plat->gpio_wp;
1467 else if (ret != -ENOSYS)
1468 goto err_gpio_wp;
1469 }
1470
Rabin Vincent4b8caec2010-08-09 12:56:40 +01001471 if ((host->plat->status || host->gpio_cd != -ENOSYS)
1472 && host->gpio_cd_irq < 0)
Rabin Vincent148b8b32010-08-09 12:55:48 +01001473 mmc->caps |= MMC_CAP_NEEDS_POLL;
1474
Thomas Gleixnerdace1452006-07-01 19:29:38 -07001475 ret = request_irq(dev->irq[0], mmci_irq, IRQF_SHARED, DRIVER_NAME " (cmd)", host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 if (ret)
1477 goto unmap;
1478
Russell Kingdfb851852012-05-03 11:33:15 +01001479 if (!dev->irq[1])
Linus Walleij2686b4b2010-10-19 12:39:48 +01001480 host->singleirq = true;
1481 else {
1482 ret = request_irq(dev->irq[1], mmci_pio_irq, IRQF_SHARED,
1483 DRIVER_NAME " (pio)", host);
1484 if (ret)
1485 goto irq0_free;
1486 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487
Linus Walleij8cb28152011-01-24 15:22:13 +01001488 writel(MCI_IRQENABLE, host->base + MMCIMASK0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489
1490 amba_set_drvdata(dev, mmc);
1491
Russell Kingc8ebae32011-01-11 19:35:53 +00001492 dev_info(&dev->dev, "%s: PL%03x manf %x rev%u at 0x%08llx irq %d,%d (pio)\n",
1493 mmc_hostname(mmc), amba_part(dev), amba_manf(dev),
1494 amba_rev(dev), (unsigned long long)dev->res.start,
1495 dev->irq[0], dev->irq[1]);
1496
1497 mmci_dma_setup(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001499 pm_runtime_set_autosuspend_delay(&dev->dev, 50);
1500 pm_runtime_use_autosuspend(&dev->dev);
Russell King1c3be362011-08-14 09:17:05 +01001501 pm_runtime_put(&dev->dev);
1502
Russell King8c11a942010-12-28 19:40:40 +00001503 mmc_add_host(mmc);
1504
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 return 0;
1506
1507 irq0_free:
1508 free_irq(dev->irq[0], host);
1509 unmap:
Russell King89001442009-07-09 15:16:07 +01001510 if (host->gpio_wp != -ENOSYS)
1511 gpio_free(host->gpio_wp);
1512 err_gpio_wp:
Rabin Vincent148b8b32010-08-09 12:55:48 +01001513 if (host->gpio_cd_irq >= 0)
1514 free_irq(host->gpio_cd_irq, host);
Russell King89001442009-07-09 15:16:07 +01001515 if (host->gpio_cd != -ENOSYS)
1516 gpio_free(host->gpio_cd);
1517 err_gpio_cd:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 iounmap(host->base);
1519 clk_disable:
Julia Lawallac940932012-08-26 16:00:59 +00001520 clk_disable_unprepare(host->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 clk_free:
1522 clk_put(host->clk);
1523 host_free:
1524 mmc_free_host(mmc);
1525 rel_regions:
1526 amba_release_regions(dev);
1527 out:
1528 return ret;
1529}
1530
Bill Pemberton6e0ee712012-11-19 13:26:03 -05001531static int mmci_remove(struct amba_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532{
1533 struct mmc_host *mmc = amba_get_drvdata(dev);
1534
1535 amba_set_drvdata(dev, NULL);
1536
1537 if (mmc) {
1538 struct mmci_host *host = mmc_priv(mmc);
1539
Russell King1c3be362011-08-14 09:17:05 +01001540 /*
1541 * Undo pm_runtime_put() in probe. We use the _sync
1542 * version here so that we can access the primecell.
1543 */
1544 pm_runtime_get_sync(&dev->dev);
1545
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 mmc_remove_host(mmc);
1547
1548 writel(0, host->base + MMCIMASK0);
1549 writel(0, host->base + MMCIMASK1);
1550
1551 writel(0, host->base + MMCICOMMAND);
1552 writel(0, host->base + MMCIDATACTRL);
1553
Russell Kingc8ebae32011-01-11 19:35:53 +00001554 mmci_dma_release(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 free_irq(dev->irq[0], host);
Linus Walleij2686b4b2010-10-19 12:39:48 +01001556 if (!host->singleirq)
1557 free_irq(dev->irq[1], host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558
Russell King89001442009-07-09 15:16:07 +01001559 if (host->gpio_wp != -ENOSYS)
1560 gpio_free(host->gpio_wp);
Rabin Vincent148b8b32010-08-09 12:55:48 +01001561 if (host->gpio_cd_irq >= 0)
1562 free_irq(host->gpio_cd_irq, host);
Russell King89001442009-07-09 15:16:07 +01001563 if (host->gpio_cd != -ENOSYS)
1564 gpio_free(host->gpio_cd);
1565
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 iounmap(host->base);
Julia Lawallac940932012-08-26 16:00:59 +00001567 clk_disable_unprepare(host->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 clk_put(host->clk);
1569
1570 mmc_free_host(mmc);
1571
1572 amba_release_regions(dev);
1573 }
1574
1575 return 0;
1576}
1577
Ulf Hansson48fa7002011-12-13 16:59:34 +01001578#ifdef CONFIG_SUSPEND
1579static int mmci_suspend(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580{
Ulf Hansson48fa7002011-12-13 16:59:34 +01001581 struct amba_device *adev = to_amba_device(dev);
1582 struct mmc_host *mmc = amba_get_drvdata(adev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 int ret = 0;
1584
1585 if (mmc) {
1586 struct mmci_host *host = mmc_priv(mmc);
1587
Matt Fleming1a13f8f2010-05-26 14:42:08 -07001588 ret = mmc_suspend_host(mmc);
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001589 if (ret == 0) {
1590 pm_runtime_get_sync(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 writel(0, host->base + MMCIMASK0);
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001592 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 }
1594
1595 return ret;
1596}
1597
Ulf Hansson48fa7002011-12-13 16:59:34 +01001598static int mmci_resume(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599{
Ulf Hansson48fa7002011-12-13 16:59:34 +01001600 struct amba_device *adev = to_amba_device(dev);
1601 struct mmc_host *mmc = amba_get_drvdata(adev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 int ret = 0;
1603
1604 if (mmc) {
1605 struct mmci_host *host = mmc_priv(mmc);
1606
1607 writel(MCI_IRQENABLE, host->base + MMCIMASK0);
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001608 pm_runtime_put(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609
1610 ret = mmc_resume_host(mmc);
1611 }
1612
1613 return ret;
1614}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615#endif
1616
Ulf Hansson82592932013-01-09 11:15:26 +01001617#ifdef CONFIG_PM_RUNTIME
1618static int mmci_runtime_suspend(struct device *dev)
1619{
1620 struct amba_device *adev = to_amba_device(dev);
1621 struct mmc_host *mmc = amba_get_drvdata(adev);
1622
1623 if (mmc) {
1624 struct mmci_host *host = mmc_priv(mmc);
1625 clk_disable_unprepare(host->clk);
1626 }
1627
1628 return 0;
1629}
1630
1631static int mmci_runtime_resume(struct device *dev)
1632{
1633 struct amba_device *adev = to_amba_device(dev);
1634 struct mmc_host *mmc = amba_get_drvdata(adev);
1635
1636 if (mmc) {
1637 struct mmci_host *host = mmc_priv(mmc);
1638 clk_prepare_enable(host->clk);
1639 }
1640
1641 return 0;
1642}
1643#endif
1644
Ulf Hansson48fa7002011-12-13 16:59:34 +01001645static const struct dev_pm_ops mmci_dev_pm_ops = {
1646 SET_SYSTEM_SLEEP_PM_OPS(mmci_suspend, mmci_resume)
Ulf Hansson82592932013-01-09 11:15:26 +01001647 SET_RUNTIME_PM_OPS(mmci_runtime_suspend, mmci_runtime_resume, NULL)
Ulf Hansson48fa7002011-12-13 16:59:34 +01001648};
1649
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650static struct amba_id mmci_ids[] = {
1651 {
1652 .id = 0x00041180,
Pawel Moll768fbc12011-03-11 17:18:07 +00001653 .mask = 0xff0fffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001654 .data = &variant_arm,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 },
1656 {
Pawel Moll768fbc12011-03-11 17:18:07 +00001657 .id = 0x01041180,
1658 .mask = 0xff0fffff,
1659 .data = &variant_arm_extended_fifo,
1660 },
1661 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 .id = 0x00041181,
1663 .mask = 0x000fffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001664 .data = &variant_arm,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 },
Linus Walleijcc30d602009-01-04 15:18:54 +01001666 /* ST Micro variants */
1667 {
1668 .id = 0x00180180,
1669 .mask = 0x00ffffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001670 .data = &variant_u300,
Linus Walleijcc30d602009-01-04 15:18:54 +01001671 },
1672 {
Linus Walleij34fd4212012-04-10 17:43:59 +01001673 .id = 0x10180180,
1674 .mask = 0xf0ffffff,
1675 .data = &variant_nomadik,
1676 },
1677 {
Linus Walleijcc30d602009-01-04 15:18:54 +01001678 .id = 0x00280180,
1679 .mask = 0x00ffffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001680 .data = &variant_u300,
1681 },
1682 {
1683 .id = 0x00480180,
Philippe Langlais1784b152011-03-25 08:51:52 +01001684 .mask = 0xf0ffffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001685 .data = &variant_ux500,
Linus Walleijcc30d602009-01-04 15:18:54 +01001686 },
Philippe Langlais1784b152011-03-25 08:51:52 +01001687 {
1688 .id = 0x10480180,
1689 .mask = 0xf0ffffff,
1690 .data = &variant_ux500v2,
1691 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 { 0, 0 },
1693};
1694
Dave Martin9f998352011-10-05 15:15:21 +01001695MODULE_DEVICE_TABLE(amba, mmci_ids);
1696
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697static struct amba_driver mmci_driver = {
1698 .drv = {
1699 .name = DRIVER_NAME,
Ulf Hansson48fa7002011-12-13 16:59:34 +01001700 .pm = &mmci_dev_pm_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 },
1702 .probe = mmci_probe,
Bill Pemberton0433c142012-11-19 13:20:26 -05001703 .remove = mmci_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 .id_table = mmci_ids,
1705};
1706
viresh kumar9e5ed092012-03-15 10:40:38 +01001707module_amba_driver(mmci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709module_param(fmax, uint, 0444);
1710
1711MODULE_DESCRIPTION("ARM PrimeCell PL180/181 Multimedia Card Interface driver");
1712MODULE_LICENSE("GPL");