blob: dee9b73ce29394ac1e59a6051e7419de72476cc1 [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
Ulf Hanssonf4670da2013-01-09 17:19:54 +010063 * @pwrreg_clkgate: MMCIPOWER register must be used to gate the clock
Rabin Vincent4956e102010-07-21 12:54:40 +010064 */
65struct variant_data {
66 unsigned int clkreg;
Rabin Vincent4380c142010-07-21 12:55:18 +010067 unsigned int clkreg_enable;
Rabin Vincent08458ef2010-07-21 12:55:59 +010068 unsigned int datalength_bits;
Rabin Vincent8301bb62010-08-09 12:57:30 +010069 unsigned int fifosize;
70 unsigned int fifohalfsize;
Linus Walleij34177802010-10-19 12:43:58 +010071 bool sdio;
Linus Walleijb70a67f2010-12-06 09:24:14 +010072 bool st_clkdiv;
Philippe Langlais1784b152011-03-25 08:51:52 +010073 bool blksz_datactrl16;
Ulf Hansson7d72a1d2011-12-13 16:54:55 +010074 u32 pwrreg_powerup;
Ulf Hansson4d1a3a02011-12-13 16:57:07 +010075 bool signal_direction;
Ulf Hanssonf4670da2013-01-09 17:19:54 +010076 bool pwrreg_clkgate;
Rabin Vincent4956e102010-07-21 12:54:40 +010077};
78
79static struct variant_data variant_arm = {
Rabin Vincent8301bb62010-08-09 12:57:30 +010080 .fifosize = 16 * 4,
81 .fifohalfsize = 8 * 4,
Rabin Vincent08458ef2010-07-21 12:55:59 +010082 .datalength_bits = 16,
Ulf Hansson7d72a1d2011-12-13 16:54:55 +010083 .pwrreg_powerup = MCI_PWR_UP,
Rabin Vincent4956e102010-07-21 12:54:40 +010084};
85
Pawel Moll768fbc12011-03-11 17:18:07 +000086static struct variant_data variant_arm_extended_fifo = {
87 .fifosize = 128 * 4,
88 .fifohalfsize = 64 * 4,
89 .datalength_bits = 16,
Ulf Hansson7d72a1d2011-12-13 16:54:55 +010090 .pwrreg_powerup = MCI_PWR_UP,
Pawel Moll768fbc12011-03-11 17:18:07 +000091};
92
Pawel Moll3a372982013-01-24 14:12:45 +010093static struct variant_data variant_arm_extended_fifo_hwfc = {
94 .fifosize = 128 * 4,
95 .fifohalfsize = 64 * 4,
96 .clkreg_enable = MCI_ARM_HWFCEN,
97 .datalength_bits = 16,
98 .pwrreg_powerup = MCI_PWR_UP,
99};
100
Rabin Vincent4956e102010-07-21 12:54:40 +0100101static struct variant_data variant_u300 = {
Rabin Vincent8301bb62010-08-09 12:57:30 +0100102 .fifosize = 16 * 4,
103 .fifohalfsize = 8 * 4,
Linus Walleij49ac2152011-03-04 14:54:16 +0100104 .clkreg_enable = MCI_ST_U300_HWFCEN,
Rabin Vincent08458ef2010-07-21 12:55:59 +0100105 .datalength_bits = 16,
Linus Walleij34177802010-10-19 12:43:58 +0100106 .sdio = true,
Ulf Hansson7d72a1d2011-12-13 16:54:55 +0100107 .pwrreg_powerup = MCI_PWR_ON,
Ulf Hansson4d1a3a02011-12-13 16:57:07 +0100108 .signal_direction = true,
Ulf Hanssonf4670da2013-01-09 17:19:54 +0100109 .pwrreg_clkgate = true,
Rabin Vincent4956e102010-07-21 12:54:40 +0100110};
111
Linus Walleij34fd4212012-04-10 17:43:59 +0100112static struct variant_data variant_nomadik = {
113 .fifosize = 16 * 4,
114 .fifohalfsize = 8 * 4,
115 .clkreg = MCI_CLK_ENABLE,
116 .datalength_bits = 24,
117 .sdio = true,
118 .st_clkdiv = true,
119 .pwrreg_powerup = MCI_PWR_ON,
120 .signal_direction = true,
Ulf Hanssonf4670da2013-01-09 17:19:54 +0100121 .pwrreg_clkgate = true,
Linus Walleij34fd4212012-04-10 17:43:59 +0100122};
123
Rabin Vincent4956e102010-07-21 12:54:40 +0100124static struct variant_data variant_ux500 = {
Rabin Vincent8301bb62010-08-09 12:57:30 +0100125 .fifosize = 30 * 4,
126 .fifohalfsize = 8 * 4,
Rabin Vincent4956e102010-07-21 12:54:40 +0100127 .clkreg = MCI_CLK_ENABLE,
Linus Walleij49ac2152011-03-04 14:54:16 +0100128 .clkreg_enable = MCI_ST_UX500_HWFCEN,
Rabin Vincent08458ef2010-07-21 12:55:59 +0100129 .datalength_bits = 24,
Linus Walleij34177802010-10-19 12:43:58 +0100130 .sdio = true,
Linus Walleijb70a67f2010-12-06 09:24:14 +0100131 .st_clkdiv = 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,
Ulf Hanssonf4670da2013-01-09 17:19:54 +0100134 .pwrreg_clkgate = true,
Rabin Vincent4956e102010-07-21 12:54:40 +0100135};
Linus Walleijb70a67f2010-12-06 09:24:14 +0100136
Philippe Langlais1784b152011-03-25 08:51:52 +0100137static struct variant_data variant_ux500v2 = {
138 .fifosize = 30 * 4,
139 .fifohalfsize = 8 * 4,
140 .clkreg = MCI_CLK_ENABLE,
141 .clkreg_enable = MCI_ST_UX500_HWFCEN,
142 .datalength_bits = 24,
143 .sdio = true,
144 .st_clkdiv = true,
145 .blksz_datactrl16 = true,
Ulf Hansson7d72a1d2011-12-13 16:54:55 +0100146 .pwrreg_powerup = MCI_PWR_ON,
Ulf Hansson4d1a3a02011-12-13 16:57:07 +0100147 .signal_direction = true,
Ulf Hanssonf4670da2013-01-09 17:19:54 +0100148 .pwrreg_clkgate = true,
Philippe Langlais1784b152011-03-25 08:51:52 +0100149};
150
Linus Walleija6a64642009-09-14 12:56:14 +0100151/*
152 * This must be called with host->lock held
153 */
Ulf Hansson7437cfa2012-01-18 09:17:27 +0100154static void mmci_write_clkreg(struct mmci_host *host, u32 clk)
155{
156 if (host->clk_reg != clk) {
157 host->clk_reg = clk;
158 writel(clk, host->base + MMCICLOCK);
159 }
160}
161
162/*
163 * This must be called with host->lock held
164 */
165static void mmci_write_pwrreg(struct mmci_host *host, u32 pwr)
166{
167 if (host->pwr_reg != pwr) {
168 host->pwr_reg = pwr;
169 writel(pwr, host->base + MMCIPOWER);
170 }
171}
172
173/*
174 * This must be called with host->lock held
175 */
Linus Walleija6a64642009-09-14 12:56:14 +0100176static void mmci_set_clkreg(struct mmci_host *host, unsigned int desired)
177{
Rabin Vincent4956e102010-07-21 12:54:40 +0100178 struct variant_data *variant = host->variant;
179 u32 clk = variant->clkreg;
Linus Walleija6a64642009-09-14 12:56:14 +0100180
181 if (desired) {
182 if (desired >= host->mclk) {
Linus Walleij991a86e2010-12-10 09:35:53 +0100183 clk = MCI_CLK_BYPASS;
Linus Walleij399bc482011-04-01 07:59:17 +0100184 if (variant->st_clkdiv)
185 clk |= MCI_ST_UX500_NEG_EDGE;
Linus Walleija6a64642009-09-14 12:56:14 +0100186 host->cclk = host->mclk;
Linus Walleijb70a67f2010-12-06 09:24:14 +0100187 } else if (variant->st_clkdiv) {
188 /*
189 * DB8500 TRM says f = mclk / (clkdiv + 2)
190 * => clkdiv = (mclk / f) - 2
191 * Round the divider up so we don't exceed the max
192 * frequency
193 */
194 clk = DIV_ROUND_UP(host->mclk, desired) - 2;
195 if (clk >= 256)
196 clk = 255;
197 host->cclk = host->mclk / (clk + 2);
Linus Walleija6a64642009-09-14 12:56:14 +0100198 } else {
Linus Walleijb70a67f2010-12-06 09:24:14 +0100199 /*
200 * PL180 TRM says f = mclk / (2 * (clkdiv + 1))
201 * => clkdiv = mclk / (2 * f) - 1
202 */
Linus Walleija6a64642009-09-14 12:56:14 +0100203 clk = host->mclk / (2 * desired) - 1;
204 if (clk >= 256)
205 clk = 255;
206 host->cclk = host->mclk / (2 * (clk + 1));
207 }
Rabin Vincent4380c142010-07-21 12:55:18 +0100208
209 clk |= variant->clkreg_enable;
Linus Walleija6a64642009-09-14 12:56:14 +0100210 clk |= MCI_CLK_ENABLE;
211 /* This hasn't proven to be worthwhile */
212 /* clk |= MCI_CLK_PWRSAVE; */
213 }
214
Linus Walleij9e6c82c2009-09-14 12:57:11 +0100215 if (host->mmc->ios.bus_width == MMC_BUS_WIDTH_4)
Linus Walleij771dc152010-04-08 07:38:52 +0100216 clk |= MCI_4BIT_BUS;
217 if (host->mmc->ios.bus_width == MMC_BUS_WIDTH_8)
218 clk |= MCI_ST_8BIT_BUS;
Linus Walleij9e6c82c2009-09-14 12:57:11 +0100219
Ulf Hansson6dbb6ee2013-01-07 15:30:44 +0100220 if (host->mmc->ios.timing == MMC_TIMING_UHS_DDR50)
221 clk |= MCI_ST_UX500_NEG_EDGE;
222
Ulf Hansson7437cfa2012-01-18 09:17:27 +0100223 mmci_write_clkreg(host, clk);
Linus Walleija6a64642009-09-14 12:56:14 +0100224}
225
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226static void
227mmci_request_end(struct mmci_host *host, struct mmc_request *mrq)
228{
229 writel(0, host->base + MMCICOMMAND);
230
Russell Kinge47c2222007-01-08 16:42:51 +0000231 BUG_ON(host->data);
232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 host->mrq = NULL;
234 host->cmd = NULL;
235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 mmc_request_done(host->mmc, mrq);
Ulf Hansson2cd976c2011-12-13 17:01:11 +0100237
238 pm_runtime_mark_last_busy(mmc_dev(host->mmc));
239 pm_runtime_put_autosuspend(mmc_dev(host->mmc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240}
241
Linus Walleij2686b4b2010-10-19 12:39:48 +0100242static void mmci_set_mask1(struct mmci_host *host, unsigned int mask)
243{
244 void __iomem *base = host->base;
245
246 if (host->singleirq) {
247 unsigned int mask0 = readl(base + MMCIMASK0);
248
249 mask0 &= ~MCI_IRQ1MASK;
250 mask0 |= mask;
251
252 writel(mask0, base + MMCIMASK0);
253 }
254
255 writel(mask, base + MMCIMASK1);
256}
257
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258static void mmci_stop_data(struct mmci_host *host)
259{
260 writel(0, host->base + MMCIDATACTRL);
Linus Walleij2686b4b2010-10-19 12:39:48 +0100261 mmci_set_mask1(host, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 host->data = NULL;
263}
264
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100265static void mmci_init_sg(struct mmci_host *host, struct mmc_data *data)
266{
267 unsigned int flags = SG_MITER_ATOMIC;
268
269 if (data->flags & MMC_DATA_READ)
270 flags |= SG_MITER_TO_SG;
271 else
272 flags |= SG_MITER_FROM_SG;
273
274 sg_miter_start(&host->sg_miter, data->sg, data->sg_len, flags);
275}
276
Russell Kingc8ebae32011-01-11 19:35:53 +0000277/*
278 * All the DMA operation mode stuff goes inside this ifdef.
279 * This assumes that you have a generic DMA device interface,
280 * no custom DMA interfaces are supported.
281 */
282#ifdef CONFIG_DMA_ENGINE
Bill Pembertonc3be1ef2012-11-19 13:23:06 -0500283static void mmci_dma_setup(struct mmci_host *host)
Russell Kingc8ebae32011-01-11 19:35:53 +0000284{
285 struct mmci_platform_data *plat = host->plat;
286 const char *rxname, *txname;
287 dma_cap_mask_t mask;
288
289 if (!plat || !plat->dma_filter) {
290 dev_info(mmc_dev(host->mmc), "no DMA platform data\n");
291 return;
292 }
293
Per Forlin58c7ccb2011-07-01 18:55:24 +0200294 /* initialize pre request cookie */
295 host->next_data.cookie = 1;
296
Russell Kingc8ebae32011-01-11 19:35:53 +0000297 /* Try to acquire a generic DMA engine slave channel */
298 dma_cap_zero(mask);
299 dma_cap_set(DMA_SLAVE, mask);
300
301 /*
302 * If only an RX channel is specified, the driver will
303 * attempt to use it bidirectionally, however if it is
304 * is specified but cannot be located, DMA will be disabled.
305 */
306 if (plat->dma_rx_param) {
307 host->dma_rx_channel = dma_request_channel(mask,
308 plat->dma_filter,
309 plat->dma_rx_param);
310 /* E.g if no DMA hardware is present */
311 if (!host->dma_rx_channel)
312 dev_err(mmc_dev(host->mmc), "no RX DMA channel\n");
313 }
314
315 if (plat->dma_tx_param) {
316 host->dma_tx_channel = dma_request_channel(mask,
317 plat->dma_filter,
318 plat->dma_tx_param);
319 if (!host->dma_tx_channel)
320 dev_warn(mmc_dev(host->mmc), "no TX DMA channel\n");
321 } else {
322 host->dma_tx_channel = host->dma_rx_channel;
323 }
324
325 if (host->dma_rx_channel)
326 rxname = dma_chan_name(host->dma_rx_channel);
327 else
328 rxname = "none";
329
330 if (host->dma_tx_channel)
331 txname = dma_chan_name(host->dma_tx_channel);
332 else
333 txname = "none";
334
335 dev_info(mmc_dev(host->mmc), "DMA channels RX %s, TX %s\n",
336 rxname, txname);
337
338 /*
339 * Limit the maximum segment size in any SG entry according to
340 * the parameters of the DMA engine device.
341 */
342 if (host->dma_tx_channel) {
343 struct device *dev = host->dma_tx_channel->device->dev;
344 unsigned int max_seg_size = dma_get_max_seg_size(dev);
345
346 if (max_seg_size < host->mmc->max_seg_size)
347 host->mmc->max_seg_size = max_seg_size;
348 }
349 if (host->dma_rx_channel) {
350 struct device *dev = host->dma_rx_channel->device->dev;
351 unsigned int max_seg_size = dma_get_max_seg_size(dev);
352
353 if (max_seg_size < host->mmc->max_seg_size)
354 host->mmc->max_seg_size = max_seg_size;
355 }
356}
357
358/*
Bill Pemberton6e0ee712012-11-19 13:26:03 -0500359 * This is used in or so inline it
Russell Kingc8ebae32011-01-11 19:35:53 +0000360 * so it can be discarded.
361 */
362static inline void mmci_dma_release(struct mmci_host *host)
363{
364 struct mmci_platform_data *plat = host->plat;
365
366 if (host->dma_rx_channel)
367 dma_release_channel(host->dma_rx_channel);
368 if (host->dma_tx_channel && plat->dma_tx_param)
369 dma_release_channel(host->dma_tx_channel);
370 host->dma_rx_channel = host->dma_tx_channel = NULL;
371}
372
373static void mmci_dma_unmap(struct mmci_host *host, struct mmc_data *data)
374{
375 struct dma_chan *chan = host->dma_current;
376 enum dma_data_direction dir;
377 u32 status;
378 int i;
379
380 /* Wait up to 1ms for the DMA to complete */
381 for (i = 0; ; i++) {
382 status = readl(host->base + MMCISTATUS);
383 if (!(status & MCI_RXDATAAVLBLMASK) || i >= 100)
384 break;
385 udelay(10);
386 }
387
388 /*
389 * Check to see whether we still have some data left in the FIFO -
390 * this catches DMA controllers which are unable to monitor the
391 * DMALBREQ and DMALSREQ signals while allowing us to DMA to non-
392 * contiguous buffers. On TX, we'll get a FIFO underrun error.
393 */
394 if (status & MCI_RXDATAAVLBLMASK) {
395 dmaengine_terminate_all(chan);
396 if (!data->error)
397 data->error = -EIO;
398 }
399
400 if (data->flags & MMC_DATA_WRITE) {
401 dir = DMA_TO_DEVICE;
402 } else {
403 dir = DMA_FROM_DEVICE;
404 }
405
Per Forlin58c7ccb2011-07-01 18:55:24 +0200406 if (!data->host_cookie)
407 dma_unmap_sg(chan->device->dev, data->sg, data->sg_len, dir);
Russell Kingc8ebae32011-01-11 19:35:53 +0000408
409 /*
410 * Use of DMA with scatter-gather is impossible.
411 * Give up with DMA and switch back to PIO mode.
412 */
413 if (status & MCI_RXDATAAVLBLMASK) {
414 dev_err(mmc_dev(host->mmc), "buggy DMA detected. Taking evasive action.\n");
415 mmci_dma_release(host);
416 }
417}
418
419static void mmci_dma_data_error(struct mmci_host *host)
420{
421 dev_err(mmc_dev(host->mmc), "error during DMA transfer!\n");
422 dmaengine_terminate_all(host->dma_current);
423}
424
Per Forlin58c7ccb2011-07-01 18:55:24 +0200425static int mmci_dma_prep_data(struct mmci_host *host, struct mmc_data *data,
426 struct mmci_host_next *next)
Russell Kingc8ebae32011-01-11 19:35:53 +0000427{
428 struct variant_data *variant = host->variant;
429 struct dma_slave_config conf = {
430 .src_addr = host->phybase + MMCIFIFO,
431 .dst_addr = host->phybase + MMCIFIFO,
432 .src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES,
433 .dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES,
434 .src_maxburst = variant->fifohalfsize >> 2, /* # of words */
435 .dst_maxburst = variant->fifohalfsize >> 2, /* # of words */
Viresh Kumar258aea72012-02-01 16:12:19 +0530436 .device_fc = false,
Russell Kingc8ebae32011-01-11 19:35:53 +0000437 };
Russell Kingc8ebae32011-01-11 19:35:53 +0000438 struct dma_chan *chan;
439 struct dma_device *device;
440 struct dma_async_tx_descriptor *desc;
Vinod Koul05f57992011-10-14 10:45:11 +0530441 enum dma_data_direction buffer_dirn;
Russell Kingc8ebae32011-01-11 19:35:53 +0000442 int nr_sg;
443
Per Forlin58c7ccb2011-07-01 18:55:24 +0200444 /* Check if next job is already prepared */
445 if (data->host_cookie && !next &&
446 host->dma_current && host->dma_desc_current)
447 return 0;
448
449 if (!next) {
450 host->dma_current = NULL;
451 host->dma_desc_current = NULL;
452 }
Russell Kingc8ebae32011-01-11 19:35:53 +0000453
454 if (data->flags & MMC_DATA_READ) {
Vinod Koul05f57992011-10-14 10:45:11 +0530455 conf.direction = DMA_DEV_TO_MEM;
456 buffer_dirn = DMA_FROM_DEVICE;
Russell Kingc8ebae32011-01-11 19:35:53 +0000457 chan = host->dma_rx_channel;
458 } else {
Vinod Koul05f57992011-10-14 10:45:11 +0530459 conf.direction = DMA_MEM_TO_DEV;
460 buffer_dirn = DMA_TO_DEVICE;
Russell Kingc8ebae32011-01-11 19:35:53 +0000461 chan = host->dma_tx_channel;
462 }
463
464 /* If there's no DMA channel, fall back to PIO */
465 if (!chan)
466 return -EINVAL;
467
468 /* If less than or equal to the fifo size, don't bother with DMA */
Per Forlin58c7ccb2011-07-01 18:55:24 +0200469 if (data->blksz * data->blocks <= variant->fifosize)
Russell Kingc8ebae32011-01-11 19:35:53 +0000470 return -EINVAL;
471
472 device = chan->device;
Vinod Koul05f57992011-10-14 10:45:11 +0530473 nr_sg = dma_map_sg(device->dev, data->sg, data->sg_len, buffer_dirn);
Russell Kingc8ebae32011-01-11 19:35:53 +0000474 if (nr_sg == 0)
475 return -EINVAL;
476
477 dmaengine_slave_config(chan, &conf);
Alexandre Bounine16052822012-03-08 16:11:18 -0500478 desc = dmaengine_prep_slave_sg(chan, data->sg, nr_sg,
Russell Kingc8ebae32011-01-11 19:35:53 +0000479 conf.direction, DMA_CTRL_ACK);
480 if (!desc)
481 goto unmap_exit;
482
Per Forlin58c7ccb2011-07-01 18:55:24 +0200483 if (next) {
484 next->dma_chan = chan;
485 next->dma_desc = desc;
486 } else {
487 host->dma_current = chan;
488 host->dma_desc_current = desc;
489 }
Russell Kingc8ebae32011-01-11 19:35:53 +0000490
Per Forlin58c7ccb2011-07-01 18:55:24 +0200491 return 0;
492
493 unmap_exit:
494 if (!next)
495 dmaengine_terminate_all(chan);
Vinod Koul05f57992011-10-14 10:45:11 +0530496 dma_unmap_sg(device->dev, data->sg, data->sg_len, buffer_dirn);
Per Forlin58c7ccb2011-07-01 18:55:24 +0200497 return -ENOMEM;
498}
499
500static int mmci_dma_start_data(struct mmci_host *host, unsigned int datactrl)
501{
502 int ret;
503 struct mmc_data *data = host->data;
504
505 ret = mmci_dma_prep_data(host, host->data, NULL);
506 if (ret)
507 return ret;
508
509 /* Okay, go for it. */
Russell Kingc8ebae32011-01-11 19:35:53 +0000510 dev_vdbg(mmc_dev(host->mmc),
511 "Submit MMCI DMA job, sglen %d blksz %04x blks %04x flags %08x\n",
512 data->sg_len, data->blksz, data->blocks, data->flags);
Per Forlin58c7ccb2011-07-01 18:55:24 +0200513 dmaengine_submit(host->dma_desc_current);
514 dma_async_issue_pending(host->dma_current);
Russell Kingc8ebae32011-01-11 19:35:53 +0000515
516 datactrl |= MCI_DPSM_DMAENABLE;
517
518 /* Trigger the DMA transfer */
519 writel(datactrl, host->base + MMCIDATACTRL);
520
521 /*
522 * Let the MMCI say when the data is ended and it's time
523 * to fire next DMA request. When that happens, MMCI will
524 * call mmci_data_end()
525 */
526 writel(readl(host->base + MMCIMASK0) | MCI_DATAENDMASK,
527 host->base + MMCIMASK0);
528 return 0;
Russell Kingc8ebae32011-01-11 19:35:53 +0000529}
Per Forlin58c7ccb2011-07-01 18:55:24 +0200530
531static void mmci_get_next_data(struct mmci_host *host, struct mmc_data *data)
532{
533 struct mmci_host_next *next = &host->next_data;
534
535 if (data->host_cookie && data->host_cookie != next->cookie) {
Girish K Sa3c76eb2011-10-11 11:44:09 +0530536 pr_warning("[%s] invalid cookie: data->host_cookie %d"
Per Forlin58c7ccb2011-07-01 18:55:24 +0200537 " host->next_data.cookie %d\n",
538 __func__, data->host_cookie, host->next_data.cookie);
539 data->host_cookie = 0;
540 }
541
542 if (!data->host_cookie)
543 return;
544
545 host->dma_desc_current = next->dma_desc;
546 host->dma_current = next->dma_chan;
547
548 next->dma_desc = NULL;
549 next->dma_chan = NULL;
550}
551
552static void mmci_pre_request(struct mmc_host *mmc, struct mmc_request *mrq,
553 bool is_first_req)
554{
555 struct mmci_host *host = mmc_priv(mmc);
556 struct mmc_data *data = mrq->data;
557 struct mmci_host_next *nd = &host->next_data;
558
559 if (!data)
560 return;
561
562 if (data->host_cookie) {
563 data->host_cookie = 0;
564 return;
565 }
566
567 /* if config for dma */
568 if (((data->flags & MMC_DATA_WRITE) && host->dma_tx_channel) ||
569 ((data->flags & MMC_DATA_READ) && host->dma_rx_channel)) {
570 if (mmci_dma_prep_data(host, data, nd))
571 data->host_cookie = 0;
572 else
573 data->host_cookie = ++nd->cookie < 0 ? 1 : nd->cookie;
574 }
575}
576
577static void mmci_post_request(struct mmc_host *mmc, struct mmc_request *mrq,
578 int err)
579{
580 struct mmci_host *host = mmc_priv(mmc);
581 struct mmc_data *data = mrq->data;
582 struct dma_chan *chan;
583 enum dma_data_direction dir;
584
585 if (!data)
586 return;
587
588 if (data->flags & MMC_DATA_READ) {
589 dir = DMA_FROM_DEVICE;
590 chan = host->dma_rx_channel;
591 } else {
592 dir = DMA_TO_DEVICE;
593 chan = host->dma_tx_channel;
594 }
595
596
597 /* if config for dma */
598 if (chan) {
599 if (err)
600 dmaengine_terminate_all(chan);
Per Forlin8e3336b2011-08-29 15:35:59 +0200601 if (data->host_cookie)
Per Forlin58c7ccb2011-07-01 18:55:24 +0200602 dma_unmap_sg(mmc_dev(host->mmc), data->sg,
603 data->sg_len, dir);
604 mrq->data->host_cookie = 0;
605 }
606}
607
Russell Kingc8ebae32011-01-11 19:35:53 +0000608#else
609/* Blank functions if the DMA engine is not available */
Per Forlin58c7ccb2011-07-01 18:55:24 +0200610static void mmci_get_next_data(struct mmci_host *host, struct mmc_data *data)
611{
612}
Russell Kingc8ebae32011-01-11 19:35:53 +0000613static inline void mmci_dma_setup(struct mmci_host *host)
614{
615}
616
617static inline void mmci_dma_release(struct mmci_host *host)
618{
619}
620
621static inline void mmci_dma_unmap(struct mmci_host *host, struct mmc_data *data)
622{
623}
624
625static inline void mmci_dma_data_error(struct mmci_host *host)
626{
627}
628
629static inline int mmci_dma_start_data(struct mmci_host *host, unsigned int datactrl)
630{
631 return -ENOSYS;
632}
Per Forlin58c7ccb2011-07-01 18:55:24 +0200633
634#define mmci_pre_request NULL
635#define mmci_post_request NULL
636
Russell Kingc8ebae32011-01-11 19:35:53 +0000637#endif
638
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639static void mmci_start_data(struct mmci_host *host, struct mmc_data *data)
640{
Rabin Vincent8301bb62010-08-09 12:57:30 +0100641 struct variant_data *variant = host->variant;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 unsigned int datactrl, timeout, irqmask;
Russell King7b09cda2005-07-01 12:02:59 +0100643 unsigned long long clks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 void __iomem *base;
Russell King3bc87f22006-08-27 13:51:28 +0100645 int blksz_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
Linus Walleij64de0282010-02-19 01:09:10 +0100647 dev_dbg(mmc_dev(host->mmc), "blksz %04x blks %04x flags %08x\n",
648 data->blksz, data->blocks, data->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
650 host->data = data;
Rabin Vincent528320d2010-07-21 12:49:49 +0100651 host->size = data->blksz * data->blocks;
Russell King51d43752011-01-27 10:56:52 +0000652 data->bytes_xfered = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
Russell King7b09cda2005-07-01 12:02:59 +0100654 clks = (unsigned long long)data->timeout_ns * host->cclk;
655 do_div(clks, 1000000000UL);
656
657 timeout = data->timeout_clks + (unsigned int)clks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
659 base = host->base;
660 writel(timeout, base + MMCIDATATIMER);
661 writel(host->size, base + MMCIDATALENGTH);
662
Russell King3bc87f22006-08-27 13:51:28 +0100663 blksz_bits = ffs(data->blksz) - 1;
664 BUG_ON(1 << blksz_bits != data->blksz);
665
Philippe Langlais1784b152011-03-25 08:51:52 +0100666 if (variant->blksz_datactrl16)
667 datactrl = MCI_DPSM_ENABLE | (data->blksz << 16);
668 else
669 datactrl = MCI_DPSM_ENABLE | blksz_bits << 4;
Russell Kingc8ebae32011-01-11 19:35:53 +0000670
671 if (data->flags & MMC_DATA_READ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 datactrl |= MCI_DPSM_DIRECTION;
Russell Kingc8ebae32011-01-11 19:35:53 +0000673
Ulf Hansson7258db72011-12-13 17:05:28 +0100674 /* The ST Micro variants has a special bit to enable SDIO */
675 if (variant->sdio && host->mmc->card)
Ulf Hansson06c1a122012-10-12 14:01:50 +0100676 if (mmc_card_sdio(host->mmc->card)) {
677 /*
678 * The ST Micro variants has a special bit
679 * to enable SDIO.
680 */
681 u32 clk;
682
Ulf Hansson7258db72011-12-13 17:05:28 +0100683 datactrl |= MCI_ST_DPSM_SDIOEN;
684
Ulf Hansson06c1a122012-10-12 14:01:50 +0100685 /*
Ulf Hansson70ac0932012-10-12 14:07:36 +0100686 * The ST Micro variant for SDIO small write transfers
687 * needs to have clock H/W flow control disabled,
688 * otherwise the transfer will not start. The threshold
689 * depends on the rate of MCLK.
Ulf Hansson06c1a122012-10-12 14:01:50 +0100690 */
Ulf Hansson70ac0932012-10-12 14:07:36 +0100691 if (data->flags & MMC_DATA_WRITE &&
692 (host->size < 8 ||
693 (host->size <= 8 && host->mclk > 50000000)))
Ulf Hansson06c1a122012-10-12 14:01:50 +0100694 clk = host->clk_reg & ~variant->clkreg_enable;
695 else
696 clk = host->clk_reg | variant->clkreg_enable;
697
698 mmci_write_clkreg(host, clk);
699 }
700
Ulf Hansson6dbb6ee2013-01-07 15:30:44 +0100701 if (host->mmc->ios.timing == MMC_TIMING_UHS_DDR50)
702 datactrl |= MCI_ST_DPSM_DDRMODE;
703
Russell Kingc8ebae32011-01-11 19:35:53 +0000704 /*
705 * Attempt to use DMA operation mode, if this
706 * should fail, fall back to PIO mode
707 */
708 if (!mmci_dma_start_data(host, datactrl))
709 return;
710
711 /* IRQ mode, map the SG list for CPU reading/writing */
712 mmci_init_sg(host, data);
713
714 if (data->flags & MMC_DATA_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 irqmask = MCI_RXFIFOHALFFULLMASK;
Russell King0425a142006-02-16 16:48:31 +0000716
717 /*
Russell Kingc4d877c2011-01-27 09:50:13 +0000718 * If we have less than the fifo 'half-full' threshold to
719 * transfer, trigger a PIO interrupt as soon as any data
720 * is available.
Russell King0425a142006-02-16 16:48:31 +0000721 */
Russell Kingc4d877c2011-01-27 09:50:13 +0000722 if (host->size < variant->fifohalfsize)
Russell King0425a142006-02-16 16:48:31 +0000723 irqmask |= MCI_RXDATAAVLBLMASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 } else {
725 /*
726 * We don't actually need to include "FIFO empty" here
727 * since its implicit in "FIFO half empty".
728 */
729 irqmask = MCI_TXFIFOHALFEMPTYMASK;
730 }
731
732 writel(datactrl, base + MMCIDATACTRL);
733 writel(readl(base + MMCIMASK0) & ~MCI_DATAENDMASK, base + MMCIMASK0);
Linus Walleij2686b4b2010-10-19 12:39:48 +0100734 mmci_set_mask1(host, irqmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735}
736
737static void
738mmci_start_command(struct mmci_host *host, struct mmc_command *cmd, u32 c)
739{
740 void __iomem *base = host->base;
741
Linus Walleij64de0282010-02-19 01:09:10 +0100742 dev_dbg(mmc_dev(host->mmc), "op %02x arg %08x flags %08x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 cmd->opcode, cmd->arg, cmd->flags);
744
745 if (readl(base + MMCICOMMAND) & MCI_CPSM_ENABLE) {
746 writel(0, base + MMCICOMMAND);
747 udelay(1);
748 }
749
750 c |= cmd->opcode | MCI_CPSM_ENABLE;
Russell Kinge9225172006-02-02 12:23:12 +0000751 if (cmd->flags & MMC_RSP_PRESENT) {
752 if (cmd->flags & MMC_RSP_136)
753 c |= MCI_CPSM_LONGRSP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 c |= MCI_CPSM_RESPONSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 }
756 if (/*interrupt*/0)
757 c |= MCI_CPSM_INTERRUPT;
758
759 host->cmd = cmd;
760
761 writel(cmd->arg, base + MMCIARGUMENT);
762 writel(c, base + MMCICOMMAND);
763}
764
765static void
766mmci_data_irq(struct mmci_host *host, struct mmc_data *data,
767 unsigned int status)
768{
Linus Walleijf20f8f22010-10-19 13:41:24 +0100769 /* First check for errors */
Ulf Hanssonb63038d2011-12-13 16:51:04 +0100770 if (status & (MCI_DATACRCFAIL|MCI_DATATIMEOUT|MCI_STARTBITERR|
771 MCI_TXUNDERRUN|MCI_RXOVERRUN)) {
Linus Walleij8cb28152011-01-24 15:22:13 +0100772 u32 remain, success;
Linus Walleijf20f8f22010-10-19 13:41:24 +0100773
Russell Kingc8ebae32011-01-11 19:35:53 +0000774 /* Terminate the DMA transfer */
775 if (dma_inprogress(host))
776 mmci_dma_data_error(host);
777
Russell Kingc8afc9d2011-02-04 09:19:46 +0000778 /*
779 * Calculate how far we are into the transfer. Note that
780 * the data counter gives the number of bytes transferred
781 * on the MMC bus, not on the host side. On reads, this
782 * can be as much as a FIFO-worth of data ahead. This
783 * matters for FIFO overruns only.
784 */
Linus Walleijf5a106d2011-01-27 17:44:34 +0100785 remain = readl(host->base + MMCIDATACNT);
Linus Walleij8cb28152011-01-24 15:22:13 +0100786 success = data->blksz * data->blocks - remain;
787
Russell Kingc8afc9d2011-02-04 09:19:46 +0000788 dev_dbg(mmc_dev(host->mmc), "MCI ERROR IRQ, status 0x%08x at 0x%08x\n",
789 status, success);
Linus Walleij8cb28152011-01-24 15:22:13 +0100790 if (status & MCI_DATACRCFAIL) {
791 /* Last block was not successful */
Russell Kingc8afc9d2011-02-04 09:19:46 +0000792 success -= 1;
Pierre Ossman17b04292007-07-22 22:18:46 +0200793 data->error = -EILSEQ;
Linus Walleij8cb28152011-01-24 15:22:13 +0100794 } else if (status & MCI_DATATIMEOUT) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200795 data->error = -ETIMEDOUT;
Linus Walleij757df742011-06-30 15:10:21 +0100796 } else if (status & MCI_STARTBITERR) {
797 data->error = -ECOMM;
Russell Kingc8afc9d2011-02-04 09:19:46 +0000798 } else if (status & MCI_TXUNDERRUN) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200799 data->error = -EIO;
Russell Kingc8afc9d2011-02-04 09:19:46 +0000800 } else if (status & MCI_RXOVERRUN) {
801 if (success > host->variant->fifosize)
802 success -= host->variant->fifosize;
803 else
804 success = 0;
Linus Walleij8cb28152011-01-24 15:22:13 +0100805 data->error = -EIO;
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100806 }
Russell King51d43752011-01-27 10:56:52 +0000807 data->bytes_xfered = round_down(success, data->blksz);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 }
Linus Walleijf20f8f22010-10-19 13:41:24 +0100809
Linus Walleij8cb28152011-01-24 15:22:13 +0100810 if (status & MCI_DATABLOCKEND)
811 dev_err(mmc_dev(host->mmc), "stray MCI_DATABLOCKEND interrupt\n");
Linus Walleijf20f8f22010-10-19 13:41:24 +0100812
Russell Kingccff9b52011-01-30 21:03:50 +0000813 if (status & MCI_DATAEND || data->error) {
Russell Kingc8ebae32011-01-11 19:35:53 +0000814 if (dma_inprogress(host))
815 mmci_dma_unmap(host, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 mmci_stop_data(host);
817
Linus Walleij8cb28152011-01-24 15:22:13 +0100818 if (!data->error)
819 /* The error clause is handled above, success! */
Russell King51d43752011-01-27 10:56:52 +0000820 data->bytes_xfered = data->blksz * data->blocks;
Linus Walleijf20f8f22010-10-19 13:41:24 +0100821
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 if (!data->stop) {
823 mmci_request_end(host, data->mrq);
824 } else {
825 mmci_start_command(host, data->stop, 0);
826 }
827 }
828}
829
830static void
831mmci_cmd_irq(struct mmci_host *host, struct mmc_command *cmd,
832 unsigned int status)
833{
834 void __iomem *base = host->base;
835
836 host->cmd = NULL;
837
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 if (status & MCI_CMDTIMEOUT) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200839 cmd->error = -ETIMEDOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 } else if (status & MCI_CMDCRCFAIL && cmd->flags & MMC_RSP_CRC) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200841 cmd->error = -EILSEQ;
Russell King - ARM Linux9047b432011-01-11 16:35:56 +0000842 } else {
843 cmd->resp[0] = readl(base + MMCIRESPONSE0);
844 cmd->resp[1] = readl(base + MMCIRESPONSE1);
845 cmd->resp[2] = readl(base + MMCIRESPONSE2);
846 cmd->resp[3] = readl(base + MMCIRESPONSE3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 }
848
Pierre Ossman17b04292007-07-22 22:18:46 +0200849 if (!cmd->data || cmd->error) {
Ulf Hansson3b6e3c72011-12-13 16:58:43 +0100850 if (host->data) {
851 /* Terminate the DMA transfer */
852 if (dma_inprogress(host))
853 mmci_dma_data_error(host);
Russell Kinge47c2222007-01-08 16:42:51 +0000854 mmci_stop_data(host);
Ulf Hansson3b6e3c72011-12-13 16:58:43 +0100855 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 mmci_request_end(host, cmd->mrq);
857 } else if (!(cmd->data->flags & MMC_DATA_READ)) {
858 mmci_start_data(host, cmd->data);
859 }
860}
861
862static int mmci_pio_read(struct mmci_host *host, char *buffer, unsigned int remain)
863{
864 void __iomem *base = host->base;
865 char *ptr = buffer;
866 u32 status;
Linus Walleij26eed9a2008-04-26 23:39:44 +0100867 int host_remain = host->size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
869 do {
Linus Walleij26eed9a2008-04-26 23:39:44 +0100870 int count = host_remain - (readl(base + MMCIFIFOCNT) << 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
872 if (count > remain)
873 count = remain;
874
875 if (count <= 0)
876 break;
877
Ulf Hansson393e5e22011-12-13 17:08:04 +0100878 /*
879 * SDIO especially may want to send something that is
880 * not divisible by 4 (as opposed to card sectors
881 * etc). Therefore make sure to always read the last bytes
882 * while only doing full 32-bit reads towards the FIFO.
883 */
884 if (unlikely(count & 0x3)) {
885 if (count < 4) {
886 unsigned char buf[4];
Davide Ciminaghi4b85da02012-12-10 14:47:21 +0100887 ioread32_rep(base + MMCIFIFO, buf, 1);
Ulf Hansson393e5e22011-12-13 17:08:04 +0100888 memcpy(ptr, buf, count);
889 } else {
Davide Ciminaghi4b85da02012-12-10 14:47:21 +0100890 ioread32_rep(base + MMCIFIFO, ptr, count >> 2);
Ulf Hansson393e5e22011-12-13 17:08:04 +0100891 count &= ~0x3;
892 }
893 } else {
Davide Ciminaghi4b85da02012-12-10 14:47:21 +0100894 ioread32_rep(base + MMCIFIFO, ptr, count >> 2);
Ulf Hansson393e5e22011-12-13 17:08:04 +0100895 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
897 ptr += count;
898 remain -= count;
Linus Walleij26eed9a2008-04-26 23:39:44 +0100899 host_remain -= count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900
901 if (remain == 0)
902 break;
903
904 status = readl(base + MMCISTATUS);
905 } while (status & MCI_RXDATAAVLBL);
906
907 return ptr - buffer;
908}
909
910static int mmci_pio_write(struct mmci_host *host, char *buffer, unsigned int remain, u32 status)
911{
Rabin Vincent8301bb62010-08-09 12:57:30 +0100912 struct variant_data *variant = host->variant;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 void __iomem *base = host->base;
914 char *ptr = buffer;
915
916 do {
917 unsigned int count, maxcnt;
918
Rabin Vincent8301bb62010-08-09 12:57:30 +0100919 maxcnt = status & MCI_TXFIFOEMPTY ?
920 variant->fifosize : variant->fifohalfsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 count = min(remain, maxcnt);
922
Linus Walleij34177802010-10-19 12:43:58 +0100923 /*
Linus Walleij34177802010-10-19 12:43:58 +0100924 * SDIO especially may want to send something that is
925 * not divisible by 4 (as opposed to card sectors
926 * etc), and the FIFO only accept full 32-bit writes.
927 * So compensate by adding +3 on the count, a single
928 * byte become a 32bit write, 7 bytes will be two
929 * 32bit writes etc.
930 */
Davide Ciminaghi4b85da02012-12-10 14:47:21 +0100931 iowrite32_rep(base + MMCIFIFO, ptr, (count + 3) >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
933 ptr += count;
934 remain -= count;
935
936 if (remain == 0)
937 break;
938
939 status = readl(base + MMCISTATUS);
940 } while (status & MCI_TXFIFOHALFEMPTY);
941
942 return ptr - buffer;
943}
944
945/*
946 * PIO data transfer IRQ handler.
947 */
David Howells7d12e782006-10-05 14:55:46 +0100948static irqreturn_t mmci_pio_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949{
950 struct mmci_host *host = dev_id;
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100951 struct sg_mapping_iter *sg_miter = &host->sg_miter;
Rabin Vincent8301bb62010-08-09 12:57:30 +0100952 struct variant_data *variant = host->variant;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 void __iomem *base = host->base;
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100954 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 u32 status;
956
957 status = readl(base + MMCISTATUS);
958
Linus Walleij64de0282010-02-19 01:09:10 +0100959 dev_dbg(mmc_dev(host->mmc), "irq1 (pio) %08x\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100961 local_irq_save(flags);
962
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 unsigned int remain, len;
965 char *buffer;
966
967 /*
968 * For write, we only need to test the half-empty flag
969 * here - if the FIFO is completely empty, then by
970 * definition it is more than half empty.
971 *
972 * For read, check for data available.
973 */
974 if (!(status & (MCI_TXFIFOHALFEMPTY|MCI_RXDATAAVLBL)))
975 break;
976
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100977 if (!sg_miter_next(sg_miter))
978 break;
979
980 buffer = sg_miter->addr;
981 remain = sg_miter->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
983 len = 0;
984 if (status & MCI_RXACTIVE)
985 len = mmci_pio_read(host, buffer, remain);
986 if (status & MCI_TXACTIVE)
987 len = mmci_pio_write(host, buffer, remain, status);
988
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100989 sg_miter->consumed = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 host->size -= len;
992 remain -= len;
993
994 if (remain)
995 break;
996
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 status = readl(base + MMCISTATUS);
998 } while (1);
999
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +01001000 sg_miter_stop(sg_miter);
1001
1002 local_irq_restore(flags);
1003
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 /*
Russell Kingc4d877c2011-01-27 09:50:13 +00001005 * If we have less than the fifo 'half-full' threshold to transfer,
1006 * trigger a PIO interrupt as soon as any data is available.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 */
Russell Kingc4d877c2011-01-27 09:50:13 +00001008 if (status & MCI_RXACTIVE && host->size < variant->fifohalfsize)
Linus Walleij2686b4b2010-10-19 12:39:48 +01001009 mmci_set_mask1(host, MCI_RXDATAAVLBLMASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010
1011 /*
1012 * If we run out of data, disable the data IRQs; this
1013 * prevents a race where the FIFO becomes empty before
1014 * the chip itself has disabled the data path, and
1015 * stops us racing with our data end IRQ.
1016 */
1017 if (host->size == 0) {
Linus Walleij2686b4b2010-10-19 12:39:48 +01001018 mmci_set_mask1(host, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 writel(readl(base + MMCIMASK0) | MCI_DATAENDMASK, base + MMCIMASK0);
1020 }
1021
1022 return IRQ_HANDLED;
1023}
1024
1025/*
1026 * Handle completion of command and data transfers.
1027 */
David Howells7d12e782006-10-05 14:55:46 +01001028static irqreturn_t mmci_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029{
1030 struct mmci_host *host = dev_id;
1031 u32 status;
1032 int ret = 0;
1033
1034 spin_lock(&host->lock);
1035
1036 do {
1037 struct mmc_command *cmd;
1038 struct mmc_data *data;
1039
1040 status = readl(host->base + MMCISTATUS);
Linus Walleij2686b4b2010-10-19 12:39:48 +01001041
1042 if (host->singleirq) {
1043 if (status & readl(host->base + MMCIMASK1))
1044 mmci_pio_irq(irq, dev_id);
1045
1046 status &= ~MCI_IRQ1MASK;
1047 }
1048
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 status &= readl(host->base + MMCIMASK0);
1050 writel(status, host->base + MMCICLEAR);
1051
Linus Walleij64de0282010-02-19 01:09:10 +01001052 dev_dbg(mmc_dev(host->mmc), "irq0 (data+cmd) %08x\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053
1054 data = host->data;
Ulf Hanssonb63038d2011-12-13 16:51:04 +01001055 if (status & (MCI_DATACRCFAIL|MCI_DATATIMEOUT|MCI_STARTBITERR|
1056 MCI_TXUNDERRUN|MCI_RXOVERRUN|MCI_DATAEND|
1057 MCI_DATABLOCKEND) && data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 mmci_data_irq(host, data, status);
1059
1060 cmd = host->cmd;
1061 if (status & (MCI_CMDCRCFAIL|MCI_CMDTIMEOUT|MCI_CMDSENT|MCI_CMDRESPEND) && cmd)
1062 mmci_cmd_irq(host, cmd, status);
1063
1064 ret = 1;
1065 } while (status);
1066
1067 spin_unlock(&host->lock);
1068
1069 return IRQ_RETVAL(ret);
1070}
1071
1072static void mmci_request(struct mmc_host *mmc, struct mmc_request *mrq)
1073{
1074 struct mmci_host *host = mmc_priv(mmc);
Linus Walleij9e943022008-10-24 21:17:50 +01001075 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076
1077 WARN_ON(host->mrq != NULL);
1078
Nicolas Pitre019a5f52007-10-11 01:06:03 -04001079 if (mrq->data && !is_power_of_2(mrq->data->blksz)) {
Linus Walleij64de0282010-02-19 01:09:10 +01001080 dev_err(mmc_dev(mmc), "unsupported block size (%d bytes)\n",
1081 mrq->data->blksz);
Pierre Ossman255d01a2007-07-24 20:38:53 +02001082 mrq->cmd->error = -EINVAL;
1083 mmc_request_done(mmc, mrq);
1084 return;
1085 }
1086
Russell King1c3be362011-08-14 09:17:05 +01001087 pm_runtime_get_sync(mmc_dev(mmc));
1088
Linus Walleij9e943022008-10-24 21:17:50 +01001089 spin_lock_irqsave(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090
1091 host->mrq = mrq;
1092
Per Forlin58c7ccb2011-07-01 18:55:24 +02001093 if (mrq->data)
1094 mmci_get_next_data(host, mrq->data);
1095
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 if (mrq->data && mrq->data->flags & MMC_DATA_READ)
1097 mmci_start_data(host, mrq->data);
1098
1099 mmci_start_command(host, mrq->cmd, 0);
1100
Linus Walleij9e943022008-10-24 21:17:50 +01001101 spin_unlock_irqrestore(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102}
1103
1104static void mmci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
1105{
1106 struct mmci_host *host = mmc_priv(mmc);
Ulf Hansson7d72a1d2011-12-13 16:54:55 +01001107 struct variant_data *variant = host->variant;
Linus Walleija6a64642009-09-14 12:56:14 +01001108 u32 pwr = 0;
1109 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001111 pm_runtime_get_sync(mmc_dev(mmc));
1112
Ulf Hanssonbc521812011-12-13 16:57:55 +01001113 if (host->plat->ios_handler &&
1114 host->plat->ios_handler(mmc_dev(mmc), ios))
1115 dev_err(mmc_dev(mmc), "platform ios_handler failed\n");
1116
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 switch (ios->power_mode) {
1118 case MMC_POWER_OFF:
Ulf Hansson599c1d52013-01-07 16:22:50 +01001119 if (!IS_ERR(mmc->supply.vmmc))
1120 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 break;
1122 case MMC_POWER_UP:
Ulf Hansson599c1d52013-01-07 16:22:50 +01001123 if (!IS_ERR(mmc->supply.vmmc))
1124 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, ios->vdd);
1125
Ulf Hansson7d72a1d2011-12-13 16:54:55 +01001126 /*
1127 * The ST Micro variant doesn't have the PL180s MCI_PWR_UP
1128 * and instead uses MCI_PWR_ON so apply whatever value is
1129 * configured in the variant data.
1130 */
1131 pwr |= variant->pwrreg_powerup;
1132
1133 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 case MMC_POWER_ON:
1135 pwr |= MCI_PWR_ON;
1136 break;
1137 }
1138
Ulf Hansson4d1a3a02011-12-13 16:57:07 +01001139 if (variant->signal_direction && ios->power_mode != MMC_POWER_OFF) {
1140 /*
1141 * The ST Micro variant has some additional bits
1142 * indicating signal direction for the signals in
1143 * the SD/MMC bus and feedback-clock usage.
1144 */
1145 pwr |= host->plat->sigdir;
1146
1147 if (ios->bus_width == MMC_BUS_WIDTH_4)
1148 pwr &= ~MCI_ST_DATA74DIREN;
1149 else if (ios->bus_width == MMC_BUS_WIDTH_1)
1150 pwr &= (~MCI_ST_DATA74DIREN &
1151 ~MCI_ST_DATA31DIREN &
1152 ~MCI_ST_DATA2DIREN);
1153 }
1154
Linus Walleijcc30d602009-01-04 15:18:54 +01001155 if (ios->bus_mode == MMC_BUSMODE_OPENDRAIN) {
Linus Walleijf17a1f02009-08-04 01:01:02 +01001156 if (host->hw_designer != AMBA_VENDOR_ST)
Linus Walleijcc30d602009-01-04 15:18:54 +01001157 pwr |= MCI_ROD;
1158 else {
1159 /*
1160 * The ST Micro variant use the ROD bit for something
1161 * else and only has OD (Open Drain).
1162 */
1163 pwr |= MCI_OD;
1164 }
1165 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166
Ulf Hanssonf4670da2013-01-09 17:19:54 +01001167 /*
1168 * If clock = 0 and the variant requires the MMCIPOWER to be used for
1169 * gating the clock, the MCI_PWR_ON bit is cleared.
1170 */
1171 if (!ios->clock && variant->pwrreg_clkgate)
1172 pwr &= ~MCI_PWR_ON;
1173
Linus Walleija6a64642009-09-14 12:56:14 +01001174 spin_lock_irqsave(&host->lock, flags);
1175
1176 mmci_set_clkreg(host, ios->clock);
Ulf Hansson7437cfa2012-01-18 09:17:27 +01001177 mmci_write_pwrreg(host, pwr);
Linus Walleija6a64642009-09-14 12:56:14 +01001178
1179 spin_unlock_irqrestore(&host->lock, flags);
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001180
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001181 pm_runtime_mark_last_busy(mmc_dev(mmc));
1182 pm_runtime_put_autosuspend(mmc_dev(mmc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183}
1184
Russell King89001442009-07-09 15:16:07 +01001185static int mmci_get_ro(struct mmc_host *mmc)
1186{
1187 struct mmci_host *host = mmc_priv(mmc);
1188
1189 if (host->gpio_wp == -ENOSYS)
1190 return -ENOSYS;
1191
Linus Walleij18a063012010-09-12 12:56:44 +01001192 return gpio_get_value_cansleep(host->gpio_wp);
Russell King89001442009-07-09 15:16:07 +01001193}
1194
1195static int mmci_get_cd(struct mmc_host *mmc)
1196{
1197 struct mmci_host *host = mmc_priv(mmc);
Rabin Vincent29719442010-08-09 12:54:43 +01001198 struct mmci_platform_data *plat = host->plat;
Russell King89001442009-07-09 15:16:07 +01001199 unsigned int status;
1200
Rabin Vincent4b8caec2010-08-09 12:56:40 +01001201 if (host->gpio_cd == -ENOSYS) {
1202 if (!plat->status)
1203 return 1; /* Assume always present */
1204
Rabin Vincent29719442010-08-09 12:54:43 +01001205 status = plat->status(mmc_dev(host->mmc));
Rabin Vincent4b8caec2010-08-09 12:56:40 +01001206 } else
Linus Walleij18a063012010-09-12 12:56:44 +01001207 status = !!gpio_get_value_cansleep(host->gpio_cd)
1208 ^ plat->cd_invert;
Russell King89001442009-07-09 15:16:07 +01001209
Russell King74bc8092010-07-29 15:58:59 +01001210 /*
1211 * Use positive logic throughout - status is zero for no card,
1212 * non-zero for card inserted.
1213 */
1214 return status;
Russell King89001442009-07-09 15:16:07 +01001215}
1216
Rabin Vincent148b8b32010-08-09 12:55:48 +01001217static irqreturn_t mmci_cd_irq(int irq, void *dev_id)
1218{
1219 struct mmci_host *host = dev_id;
1220
1221 mmc_detect_change(host->mmc, msecs_to_jiffies(500));
1222
1223 return IRQ_HANDLED;
1224}
1225
David Brownellab7aefd2006-11-12 17:55:30 -08001226static const struct mmc_host_ops mmci_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 .request = mmci_request,
Per Forlin58c7ccb2011-07-01 18:55:24 +02001228 .pre_req = mmci_pre_request,
1229 .post_req = mmci_post_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 .set_ios = mmci_set_ios,
Russell King89001442009-07-09 15:16:07 +01001231 .get_ro = mmci_get_ro,
1232 .get_cd = mmci_get_cd,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233};
1234
Lee Jones000bc9d2012-04-16 10:18:43 +01001235#ifdef CONFIG_OF
1236static void mmci_dt_populate_generic_pdata(struct device_node *np,
1237 struct mmci_platform_data *pdata)
1238{
1239 int bus_width = 0;
1240
Lee Jones9a597012012-04-12 16:51:13 +01001241 pdata->gpio_wp = of_get_named_gpio(np, "wp-gpios", 0);
Lee Jones9a597012012-04-12 16:51:13 +01001242 pdata->gpio_cd = of_get_named_gpio(np, "cd-gpios", 0);
Lee Jones000bc9d2012-04-16 10:18:43 +01001243
1244 if (of_get_property(np, "cd-inverted", NULL))
1245 pdata->cd_invert = true;
1246 else
1247 pdata->cd_invert = false;
1248
1249 of_property_read_u32(np, "max-frequency", &pdata->f_max);
1250 if (!pdata->f_max)
1251 pr_warn("%s has no 'max-frequency' property\n", np->full_name);
1252
1253 if (of_get_property(np, "mmc-cap-mmc-highspeed", NULL))
1254 pdata->capabilities |= MMC_CAP_MMC_HIGHSPEED;
1255 if (of_get_property(np, "mmc-cap-sd-highspeed", NULL))
1256 pdata->capabilities |= MMC_CAP_SD_HIGHSPEED;
1257
1258 of_property_read_u32(np, "bus-width", &bus_width);
1259 switch (bus_width) {
1260 case 0 :
1261 /* No bus-width supplied. */
1262 break;
1263 case 4 :
1264 pdata->capabilities |= MMC_CAP_4_BIT_DATA;
1265 break;
1266 case 8 :
1267 pdata->capabilities |= MMC_CAP_8_BIT_DATA;
1268 break;
1269 default :
1270 pr_warn("%s: Unsupported bus width\n", np->full_name);
1271 }
1272}
Lee Jonesc0a120a2012-05-08 13:59:38 +01001273#else
1274static void mmci_dt_populate_generic_pdata(struct device_node *np,
1275 struct mmci_platform_data *pdata)
1276{
1277 return;
1278}
Lee Jones000bc9d2012-04-16 10:18:43 +01001279#endif
1280
Bill Pembertonc3be1ef2012-11-19 13:23:06 -05001281static int mmci_probe(struct amba_device *dev,
Russell Kingaa25afa2011-02-19 15:55:00 +00001282 const struct amba_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283{
Linus Walleij6ef297f2009-09-22 14:29:36 +01001284 struct mmci_platform_data *plat = dev->dev.platform_data;
Lee Jones000bc9d2012-04-16 10:18:43 +01001285 struct device_node *np = dev->dev.of_node;
Rabin Vincent4956e102010-07-21 12:54:40 +01001286 struct variant_data *variant = id->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 struct mmci_host *host;
1288 struct mmc_host *mmc;
1289 int ret;
1290
Lee Jones000bc9d2012-04-16 10:18:43 +01001291 /* Must have platform data or Device Tree. */
1292 if (!plat && !np) {
1293 dev_err(&dev->dev, "No plat data or DT found\n");
1294 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 }
1296
Lee Jonesb9b52912012-06-12 10:49:51 +01001297 if (!plat) {
1298 plat = devm_kzalloc(&dev->dev, sizeof(*plat), GFP_KERNEL);
1299 if (!plat)
1300 return -ENOMEM;
1301 }
1302
Lee Jones000bc9d2012-04-16 10:18:43 +01001303 if (np)
1304 mmci_dt_populate_generic_pdata(np, plat);
1305
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 ret = amba_request_regions(dev, DRIVER_NAME);
1307 if (ret)
1308 goto out;
1309
1310 mmc = mmc_alloc_host(sizeof(struct mmci_host), &dev->dev);
1311 if (!mmc) {
1312 ret = -ENOMEM;
1313 goto rel_regions;
1314 }
1315
1316 host = mmc_priv(mmc);
Rabin Vincent4ea580f2009-04-17 08:44:19 +05301317 host->mmc = mmc;
Russell King012b7d32009-07-09 15:13:56 +01001318
Russell King89001442009-07-09 15:16:07 +01001319 host->gpio_wp = -ENOSYS;
1320 host->gpio_cd = -ENOSYS;
Rabin Vincent148b8b32010-08-09 12:55:48 +01001321 host->gpio_cd_irq = -1;
Russell King89001442009-07-09 15:16:07 +01001322
Russell King012b7d32009-07-09 15:13:56 +01001323 host->hw_designer = amba_manf(dev);
1324 host->hw_revision = amba_rev(dev);
Linus Walleij64de0282010-02-19 01:09:10 +01001325 dev_dbg(mmc_dev(mmc), "designer ID = 0x%02x\n", host->hw_designer);
1326 dev_dbg(mmc_dev(mmc), "revision = 0x%01x\n", host->hw_revision);
Russell King012b7d32009-07-09 15:13:56 +01001327
Russell Kingee569c42008-11-30 17:38:14 +00001328 host->clk = clk_get(&dev->dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 if (IS_ERR(host->clk)) {
1330 ret = PTR_ERR(host->clk);
1331 host->clk = NULL;
1332 goto host_free;
1333 }
1334
Julia Lawallac940932012-08-26 16:00:59 +00001335 ret = clk_prepare_enable(host->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 if (ret)
Russell Kinga8d35842006-01-03 18:41:37 +00001337 goto clk_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338
1339 host->plat = plat;
Rabin Vincent4956e102010-07-21 12:54:40 +01001340 host->variant = variant;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 host->mclk = clk_get_rate(host->clk);
Linus Walleijc8df9a52008-04-29 09:34:07 +01001342 /*
1343 * According to the spec, mclk is max 100 MHz,
1344 * so we try to adjust the clock down to this,
1345 * (if possible).
1346 */
1347 if (host->mclk > 100000000) {
1348 ret = clk_set_rate(host->clk, 100000000);
1349 if (ret < 0)
1350 goto clk_disable;
1351 host->mclk = clk_get_rate(host->clk);
Linus Walleij64de0282010-02-19 01:09:10 +01001352 dev_dbg(mmc_dev(mmc), "eventual mclk rate: %u Hz\n",
1353 host->mclk);
Linus Walleijc8df9a52008-04-29 09:34:07 +01001354 }
Russell Kingc8ebae32011-01-11 19:35:53 +00001355 host->phybase = dev->res.start;
Linus Walleijdc890c22009-06-07 23:27:31 +01001356 host->base = ioremap(dev->res.start, resource_size(&dev->res));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 if (!host->base) {
1358 ret = -ENOMEM;
1359 goto clk_disable;
1360 }
1361
1362 mmc->ops = &mmci_ops;
Linus Walleij7f294e42011-07-08 09:57:15 +01001363 /*
1364 * The ARM and ST versions of the block have slightly different
1365 * clock divider equations which means that the minimum divider
1366 * differs too.
1367 */
1368 if (variant->st_clkdiv)
1369 mmc->f_min = DIV_ROUND_UP(host->mclk, 257);
1370 else
1371 mmc->f_min = DIV_ROUND_UP(host->mclk, 512);
Linus Walleij808d97c2010-04-08 07:39:38 +01001372 /*
1373 * If the platform data supplies a maximum operating
1374 * frequency, this takes precedence. Else, we fall back
1375 * to using the module parameter, which has a (low)
1376 * default value in case it is not specified. Either
1377 * value must not exceed the clock rate into the block,
1378 * of course.
1379 */
1380 if (plat->f_max)
1381 mmc->f_max = min(host->mclk, plat->f_max);
1382 else
1383 mmc->f_max = min(host->mclk, fmax);
Linus Walleij64de0282010-02-19 01:09:10 +01001384 dev_dbg(mmc_dev(mmc), "clocking block at %u Hz\n", mmc->f_max);
1385
Linus Walleija9a83782012-10-29 14:39:30 +01001386 host->pinctrl = devm_pinctrl_get(&dev->dev);
1387 if (IS_ERR(host->pinctrl)) {
1388 ret = PTR_ERR(host->pinctrl);
1389 goto clk_disable;
1390 }
1391
1392 host->pins_default = pinctrl_lookup_state(host->pinctrl,
1393 PINCTRL_STATE_DEFAULT);
1394
1395 /* enable pins to be muxed in and configured */
1396 if (!IS_ERR(host->pins_default)) {
1397 ret = pinctrl_select_state(host->pinctrl, host->pins_default);
1398 if (ret)
1399 dev_warn(&dev->dev, "could not set default pins\n");
1400 } else
1401 dev_warn(&dev->dev, "could not get default pinstate\n");
1402
Ulf Hansson599c1d52013-01-07 16:22:50 +01001403 /* Get regulators and the supported OCR mask */
1404 mmc_regulator_get_supply(mmc);
1405 if (!mmc->ocr_avail)
Linus Walleij34e84f32009-09-22 14:41:40 +01001406 mmc->ocr_avail = plat->ocr_mask;
Ulf Hansson599c1d52013-01-07 16:22:50 +01001407 else if (plat->ocr_mask)
1408 dev_warn(mmc_dev(mmc), "Platform OCR mask is ignored\n");
1409
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
Ulf Hansson70be2082013-01-07 15:35:06 +01001413 /* We support these PM capabilities. */
1414 mmc->pm_caps = MMC_PM_KEEP_POWER;
1415
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 /*
1417 * We can do SGIO
1418 */
Martin K. Petersena36274e2010-09-10 01:33:59 -04001419 mmc->max_segs = NR_SG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420
1421 /*
Rabin Vincent08458ef2010-07-21 12:55:59 +01001422 * Since only a certain number of bits are valid in the data length
1423 * register, we must ensure that we don't exceed 2^num-1 bytes in a
1424 * single request.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 */
Rabin Vincent08458ef2010-07-21 12:55:59 +01001426 mmc->max_req_size = (1 << variant->datalength_bits) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427
1428 /*
1429 * Set the maximum segment size. Since we aren't doing DMA
1430 * (yet) we are only limited by the data length register.
1431 */
Pierre Ossman55db8902006-11-21 17:55:45 +01001432 mmc->max_seg_size = mmc->max_req_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +01001434 /*
1435 * Block size can be up to 2048 bytes, but must be a power of two.
1436 */
Will Deacon8f7f6b72012-02-24 11:25:21 +00001437 mmc->max_blk_size = 1 << 11;
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +01001438
Pierre Ossman55db8902006-11-21 17:55:45 +01001439 /*
Will Deacon8f7f6b72012-02-24 11:25:21 +00001440 * Limit the number of blocks transferred so that we don't overflow
1441 * the maximum request size.
Pierre Ossman55db8902006-11-21 17:55:45 +01001442 */
Will Deacon8f7f6b72012-02-24 11:25:21 +00001443 mmc->max_blk_count = mmc->max_req_size >> 11;
Pierre Ossman55db8902006-11-21 17:55:45 +01001444
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 spin_lock_init(&host->lock);
1446
1447 writel(0, host->base + MMCIMASK0);
1448 writel(0, host->base + MMCIMASK1);
1449 writel(0xfff, host->base + MMCICLEAR);
1450
Roland Stigge2805b9a2012-06-17 21:14:27 +01001451 if (plat->gpio_cd == -EPROBE_DEFER) {
1452 ret = -EPROBE_DEFER;
1453 goto err_gpio_cd;
1454 }
Russell King89001442009-07-09 15:16:07 +01001455 if (gpio_is_valid(plat->gpio_cd)) {
1456 ret = gpio_request(plat->gpio_cd, DRIVER_NAME " (cd)");
1457 if (ret == 0)
1458 ret = gpio_direction_input(plat->gpio_cd);
1459 if (ret == 0)
1460 host->gpio_cd = plat->gpio_cd;
1461 else if (ret != -ENOSYS)
1462 goto err_gpio_cd;
Rabin Vincent148b8b32010-08-09 12:55:48 +01001463
Linus Walleij17ee0832011-05-05 17:23:10 +01001464 /*
1465 * A gpio pin that will detect cards when inserted and removed
1466 * will most likely want to trigger on the edges if it is
1467 * 0 when ejected and 1 when inserted (or mutatis mutandis
1468 * for the inverted case) so we request triggers on both
1469 * edges.
1470 */
Rabin Vincent148b8b32010-08-09 12:55:48 +01001471 ret = request_any_context_irq(gpio_to_irq(plat->gpio_cd),
Linus Walleij17ee0832011-05-05 17:23:10 +01001472 mmci_cd_irq,
1473 IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING,
1474 DRIVER_NAME " (cd)", host);
Rabin Vincent148b8b32010-08-09 12:55:48 +01001475 if (ret >= 0)
1476 host->gpio_cd_irq = gpio_to_irq(plat->gpio_cd);
Russell King89001442009-07-09 15:16:07 +01001477 }
Roland Stigge2805b9a2012-06-17 21:14:27 +01001478 if (plat->gpio_wp == -EPROBE_DEFER) {
1479 ret = -EPROBE_DEFER;
1480 goto err_gpio_wp;
1481 }
Russell King89001442009-07-09 15:16:07 +01001482 if (gpio_is_valid(plat->gpio_wp)) {
1483 ret = gpio_request(plat->gpio_wp, DRIVER_NAME " (wp)");
1484 if (ret == 0)
1485 ret = gpio_direction_input(plat->gpio_wp);
1486 if (ret == 0)
1487 host->gpio_wp = plat->gpio_wp;
1488 else if (ret != -ENOSYS)
1489 goto err_gpio_wp;
1490 }
1491
Rabin Vincent4b8caec2010-08-09 12:56:40 +01001492 if ((host->plat->status || host->gpio_cd != -ENOSYS)
1493 && host->gpio_cd_irq < 0)
Rabin Vincent148b8b32010-08-09 12:55:48 +01001494 mmc->caps |= MMC_CAP_NEEDS_POLL;
1495
Thomas Gleixnerdace1452006-07-01 19:29:38 -07001496 ret = request_irq(dev->irq[0], mmci_irq, IRQF_SHARED, DRIVER_NAME " (cmd)", host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 if (ret)
1498 goto unmap;
1499
Russell Kingdfb85182012-05-03 11:33:15 +01001500 if (!dev->irq[1])
Linus Walleij2686b4b2010-10-19 12:39:48 +01001501 host->singleirq = true;
1502 else {
1503 ret = request_irq(dev->irq[1], mmci_pio_irq, IRQF_SHARED,
1504 DRIVER_NAME " (pio)", host);
1505 if (ret)
1506 goto irq0_free;
1507 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508
Linus Walleij8cb28152011-01-24 15:22:13 +01001509 writel(MCI_IRQENABLE, host->base + MMCIMASK0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510
1511 amba_set_drvdata(dev, mmc);
1512
Russell Kingc8ebae32011-01-11 19:35:53 +00001513 dev_info(&dev->dev, "%s: PL%03x manf %x rev%u at 0x%08llx irq %d,%d (pio)\n",
1514 mmc_hostname(mmc), amba_part(dev), amba_manf(dev),
1515 amba_rev(dev), (unsigned long long)dev->res.start,
1516 dev->irq[0], dev->irq[1]);
1517
1518 mmci_dma_setup(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001520 pm_runtime_set_autosuspend_delay(&dev->dev, 50);
1521 pm_runtime_use_autosuspend(&dev->dev);
Russell King1c3be362011-08-14 09:17:05 +01001522 pm_runtime_put(&dev->dev);
1523
Russell King8c11a942010-12-28 19:40:40 +00001524 mmc_add_host(mmc);
1525
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 return 0;
1527
1528 irq0_free:
1529 free_irq(dev->irq[0], host);
1530 unmap:
Russell King89001442009-07-09 15:16:07 +01001531 if (host->gpio_wp != -ENOSYS)
1532 gpio_free(host->gpio_wp);
1533 err_gpio_wp:
Rabin Vincent148b8b32010-08-09 12:55:48 +01001534 if (host->gpio_cd_irq >= 0)
1535 free_irq(host->gpio_cd_irq, host);
Russell King89001442009-07-09 15:16:07 +01001536 if (host->gpio_cd != -ENOSYS)
1537 gpio_free(host->gpio_cd);
1538 err_gpio_cd:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 iounmap(host->base);
1540 clk_disable:
Julia Lawallac940932012-08-26 16:00:59 +00001541 clk_disable_unprepare(host->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 clk_free:
1543 clk_put(host->clk);
1544 host_free:
1545 mmc_free_host(mmc);
1546 rel_regions:
1547 amba_release_regions(dev);
1548 out:
1549 return ret;
1550}
1551
Bill Pemberton6e0ee712012-11-19 13:26:03 -05001552static int mmci_remove(struct amba_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553{
1554 struct mmc_host *mmc = amba_get_drvdata(dev);
1555
1556 amba_set_drvdata(dev, NULL);
1557
1558 if (mmc) {
1559 struct mmci_host *host = mmc_priv(mmc);
1560
Russell King1c3be362011-08-14 09:17:05 +01001561 /*
1562 * Undo pm_runtime_put() in probe. We use the _sync
1563 * version here so that we can access the primecell.
1564 */
1565 pm_runtime_get_sync(&dev->dev);
1566
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 mmc_remove_host(mmc);
1568
1569 writel(0, host->base + MMCIMASK0);
1570 writel(0, host->base + MMCIMASK1);
1571
1572 writel(0, host->base + MMCICOMMAND);
1573 writel(0, host->base + MMCIDATACTRL);
1574
Russell Kingc8ebae32011-01-11 19:35:53 +00001575 mmci_dma_release(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 free_irq(dev->irq[0], host);
Linus Walleij2686b4b2010-10-19 12:39:48 +01001577 if (!host->singleirq)
1578 free_irq(dev->irq[1], host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579
Russell King89001442009-07-09 15:16:07 +01001580 if (host->gpio_wp != -ENOSYS)
1581 gpio_free(host->gpio_wp);
Rabin Vincent148b8b32010-08-09 12:55:48 +01001582 if (host->gpio_cd_irq >= 0)
1583 free_irq(host->gpio_cd_irq, host);
Russell King89001442009-07-09 15:16:07 +01001584 if (host->gpio_cd != -ENOSYS)
1585 gpio_free(host->gpio_cd);
1586
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 iounmap(host->base);
Julia Lawallac940932012-08-26 16:00:59 +00001588 clk_disable_unprepare(host->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 clk_put(host->clk);
1590
1591 mmc_free_host(mmc);
1592
1593 amba_release_regions(dev);
1594 }
1595
1596 return 0;
1597}
1598
Ulf Hansson48fa7002011-12-13 16:59:34 +01001599#ifdef CONFIG_SUSPEND
1600static int mmci_suspend(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601{
Ulf Hansson48fa7002011-12-13 16:59:34 +01001602 struct amba_device *adev = to_amba_device(dev);
1603 struct mmc_host *mmc = amba_get_drvdata(adev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 int ret = 0;
1605
1606 if (mmc) {
1607 struct mmci_host *host = mmc_priv(mmc);
1608
Matt Fleming1a13f8f2010-05-26 14:42:08 -07001609 ret = mmc_suspend_host(mmc);
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001610 if (ret == 0) {
1611 pm_runtime_get_sync(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 writel(0, host->base + MMCIMASK0);
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001613 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 }
1615
1616 return ret;
1617}
1618
Ulf Hansson48fa7002011-12-13 16:59:34 +01001619static int mmci_resume(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620{
Ulf Hansson48fa7002011-12-13 16:59:34 +01001621 struct amba_device *adev = to_amba_device(dev);
1622 struct mmc_host *mmc = amba_get_drvdata(adev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 int ret = 0;
1624
1625 if (mmc) {
1626 struct mmci_host *host = mmc_priv(mmc);
1627
1628 writel(MCI_IRQENABLE, host->base + MMCIMASK0);
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001629 pm_runtime_put(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
1631 ret = mmc_resume_host(mmc);
1632 }
1633
1634 return ret;
1635}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636#endif
1637
Ulf Hansson82592932013-01-09 11:15:26 +01001638#ifdef CONFIG_PM_RUNTIME
1639static int mmci_runtime_suspend(struct device *dev)
1640{
1641 struct amba_device *adev = to_amba_device(dev);
1642 struct mmc_host *mmc = amba_get_drvdata(adev);
1643
1644 if (mmc) {
1645 struct mmci_host *host = mmc_priv(mmc);
1646 clk_disable_unprepare(host->clk);
1647 }
1648
1649 return 0;
1650}
1651
1652static int mmci_runtime_resume(struct device *dev)
1653{
1654 struct amba_device *adev = to_amba_device(dev);
1655 struct mmc_host *mmc = amba_get_drvdata(adev);
1656
1657 if (mmc) {
1658 struct mmci_host *host = mmc_priv(mmc);
1659 clk_prepare_enable(host->clk);
1660 }
1661
1662 return 0;
1663}
1664#endif
1665
Ulf Hansson48fa7002011-12-13 16:59:34 +01001666static const struct dev_pm_ops mmci_dev_pm_ops = {
1667 SET_SYSTEM_SLEEP_PM_OPS(mmci_suspend, mmci_resume)
Ulf Hansson82592932013-01-09 11:15:26 +01001668 SET_RUNTIME_PM_OPS(mmci_runtime_suspend, mmci_runtime_resume, NULL)
Ulf Hansson48fa7002011-12-13 16:59:34 +01001669};
1670
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671static struct amba_id mmci_ids[] = {
1672 {
1673 .id = 0x00041180,
Pawel Moll768fbc12011-03-11 17:18:07 +00001674 .mask = 0xff0fffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001675 .data = &variant_arm,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 },
1677 {
Pawel Moll768fbc12011-03-11 17:18:07 +00001678 .id = 0x01041180,
1679 .mask = 0xff0fffff,
1680 .data = &variant_arm_extended_fifo,
1681 },
1682 {
Pawel Moll3a372982013-01-24 14:12:45 +01001683 .id = 0x02041180,
1684 .mask = 0xff0fffff,
1685 .data = &variant_arm_extended_fifo_hwfc,
1686 },
1687 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 .id = 0x00041181,
1689 .mask = 0x000fffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001690 .data = &variant_arm,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 },
Linus Walleijcc30d602009-01-04 15:18:54 +01001692 /* ST Micro variants */
1693 {
1694 .id = 0x00180180,
1695 .mask = 0x00ffffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001696 .data = &variant_u300,
Linus Walleijcc30d602009-01-04 15:18:54 +01001697 },
1698 {
Linus Walleij34fd4212012-04-10 17:43:59 +01001699 .id = 0x10180180,
1700 .mask = 0xf0ffffff,
1701 .data = &variant_nomadik,
1702 },
1703 {
Linus Walleijcc30d602009-01-04 15:18:54 +01001704 .id = 0x00280180,
1705 .mask = 0x00ffffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001706 .data = &variant_u300,
1707 },
1708 {
1709 .id = 0x00480180,
Philippe Langlais1784b152011-03-25 08:51:52 +01001710 .mask = 0xf0ffffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001711 .data = &variant_ux500,
Linus Walleijcc30d602009-01-04 15:18:54 +01001712 },
Philippe Langlais1784b152011-03-25 08:51:52 +01001713 {
1714 .id = 0x10480180,
1715 .mask = 0xf0ffffff,
1716 .data = &variant_ux500v2,
1717 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 { 0, 0 },
1719};
1720
Dave Martin9f998352011-10-05 15:15:21 +01001721MODULE_DEVICE_TABLE(amba, mmci_ids);
1722
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723static struct amba_driver mmci_driver = {
1724 .drv = {
1725 .name = DRIVER_NAME,
Ulf Hansson48fa7002011-12-13 16:59:34 +01001726 .pm = &mmci_dev_pm_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 },
1728 .probe = mmci_probe,
Bill Pemberton0433c142012-11-19 13:20:26 -05001729 .remove = mmci_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 .id_table = mmci_ids,
1731};
1732
viresh kumar9e5ed092012-03-15 10:40:38 +01001733module_amba_driver(mmci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735module_param(fmax, uint, 0444);
1736
1737MODULE_DESCRIPTION("ARM PrimeCell PL180/181 Multimedia Card Interface driver");
1738MODULE_LICENSE("GPL");