blob: 5f53cf8b8f5a149badf5c55e6a9851b342ce2ecd [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/*
Ulf Hansson653a7612013-01-21 21:29:34 +0100152 * Validate mmc prerequisites
153 */
154static int mmci_validate_data(struct mmci_host *host,
155 struct mmc_data *data)
156{
157 if (!data)
158 return 0;
159
160 if (!is_power_of_2(data->blksz)) {
161 dev_err(mmc_dev(host->mmc),
162 "unsupported block size (%d bytes)\n", data->blksz);
163 return -EINVAL;
164 }
165
166 return 0;
167}
168
169/*
Linus Walleija6a64642009-09-14 12:56:14 +0100170 * This must be called with host->lock held
171 */
Ulf Hansson7437cfa2012-01-18 09:17:27 +0100172static void mmci_write_clkreg(struct mmci_host *host, u32 clk)
173{
174 if (host->clk_reg != clk) {
175 host->clk_reg = clk;
176 writel(clk, host->base + MMCICLOCK);
177 }
178}
179
180/*
181 * This must be called with host->lock held
182 */
183static void mmci_write_pwrreg(struct mmci_host *host, u32 pwr)
184{
185 if (host->pwr_reg != pwr) {
186 host->pwr_reg = pwr;
187 writel(pwr, host->base + MMCIPOWER);
188 }
189}
190
191/*
192 * This must be called with host->lock held
193 */
Linus Walleija6a64642009-09-14 12:56:14 +0100194static void mmci_set_clkreg(struct mmci_host *host, unsigned int desired)
195{
Rabin Vincent4956e102010-07-21 12:54:40 +0100196 struct variant_data *variant = host->variant;
197 u32 clk = variant->clkreg;
Linus Walleija6a64642009-09-14 12:56:14 +0100198
Ulf Hanssonc58a8502013-05-13 15:40:03 +0100199 /* Make sure cclk reflects the current calculated clock */
200 host->cclk = 0;
201
Linus Walleija6a64642009-09-14 12:56:14 +0100202 if (desired) {
203 if (desired >= host->mclk) {
Linus Walleij991a86e2010-12-10 09:35:53 +0100204 clk = MCI_CLK_BYPASS;
Linus Walleij399bc482011-04-01 07:59:17 +0100205 if (variant->st_clkdiv)
206 clk |= MCI_ST_UX500_NEG_EDGE;
Linus Walleija6a64642009-09-14 12:56:14 +0100207 host->cclk = host->mclk;
Linus Walleijb70a67f2010-12-06 09:24:14 +0100208 } else if (variant->st_clkdiv) {
209 /*
210 * DB8500 TRM says f = mclk / (clkdiv + 2)
211 * => clkdiv = (mclk / f) - 2
212 * Round the divider up so we don't exceed the max
213 * frequency
214 */
215 clk = DIV_ROUND_UP(host->mclk, desired) - 2;
216 if (clk >= 256)
217 clk = 255;
218 host->cclk = host->mclk / (clk + 2);
Linus Walleija6a64642009-09-14 12:56:14 +0100219 } else {
Linus Walleijb70a67f2010-12-06 09:24:14 +0100220 /*
221 * PL180 TRM says f = mclk / (2 * (clkdiv + 1))
222 * => clkdiv = mclk / (2 * f) - 1
223 */
Linus Walleija6a64642009-09-14 12:56:14 +0100224 clk = host->mclk / (2 * desired) - 1;
225 if (clk >= 256)
226 clk = 255;
227 host->cclk = host->mclk / (2 * (clk + 1));
228 }
Rabin Vincent4380c142010-07-21 12:55:18 +0100229
230 clk |= variant->clkreg_enable;
Linus Walleija6a64642009-09-14 12:56:14 +0100231 clk |= MCI_CLK_ENABLE;
232 /* This hasn't proven to be worthwhile */
233 /* clk |= MCI_CLK_PWRSAVE; */
234 }
235
Ulf Hanssonc58a8502013-05-13 15:40:03 +0100236 /* Set actual clock for debug */
237 host->mmc->actual_clock = host->cclk;
238
Linus Walleij9e6c82c2009-09-14 12:57:11 +0100239 if (host->mmc->ios.bus_width == MMC_BUS_WIDTH_4)
Linus Walleij771dc152010-04-08 07:38:52 +0100240 clk |= MCI_4BIT_BUS;
241 if (host->mmc->ios.bus_width == MMC_BUS_WIDTH_8)
242 clk |= MCI_ST_8BIT_BUS;
Linus Walleij9e6c82c2009-09-14 12:57:11 +0100243
Ulf Hansson6dbb6ee2013-01-07 15:30:44 +0100244 if (host->mmc->ios.timing == MMC_TIMING_UHS_DDR50)
245 clk |= MCI_ST_UX500_NEG_EDGE;
246
Ulf Hansson7437cfa2012-01-18 09:17:27 +0100247 mmci_write_clkreg(host, clk);
Linus Walleija6a64642009-09-14 12:56:14 +0100248}
249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250static void
251mmci_request_end(struct mmci_host *host, struct mmc_request *mrq)
252{
253 writel(0, host->base + MMCICOMMAND);
254
Russell Kinge47c2222007-01-08 16:42:51 +0000255 BUG_ON(host->data);
256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 host->mrq = NULL;
258 host->cmd = NULL;
259
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 mmc_request_done(host->mmc, mrq);
Ulf Hansson2cd976c2011-12-13 17:01:11 +0100261
262 pm_runtime_mark_last_busy(mmc_dev(host->mmc));
263 pm_runtime_put_autosuspend(mmc_dev(host->mmc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264}
265
Linus Walleij2686b4b2010-10-19 12:39:48 +0100266static void mmci_set_mask1(struct mmci_host *host, unsigned int mask)
267{
268 void __iomem *base = host->base;
269
270 if (host->singleirq) {
271 unsigned int mask0 = readl(base + MMCIMASK0);
272
273 mask0 &= ~MCI_IRQ1MASK;
274 mask0 |= mask;
275
276 writel(mask0, base + MMCIMASK0);
277 }
278
279 writel(mask, base + MMCIMASK1);
280}
281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282static void mmci_stop_data(struct mmci_host *host)
283{
284 writel(0, host->base + MMCIDATACTRL);
Linus Walleij2686b4b2010-10-19 12:39:48 +0100285 mmci_set_mask1(host, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 host->data = NULL;
287}
288
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100289static void mmci_init_sg(struct mmci_host *host, struct mmc_data *data)
290{
291 unsigned int flags = SG_MITER_ATOMIC;
292
293 if (data->flags & MMC_DATA_READ)
294 flags |= SG_MITER_TO_SG;
295 else
296 flags |= SG_MITER_FROM_SG;
297
298 sg_miter_start(&host->sg_miter, data->sg, data->sg_len, flags);
299}
300
Russell Kingc8ebae32011-01-11 19:35:53 +0000301/*
302 * All the DMA operation mode stuff goes inside this ifdef.
303 * This assumes that you have a generic DMA device interface,
304 * no custom DMA interfaces are supported.
305 */
306#ifdef CONFIG_DMA_ENGINE
Bill Pembertonc3be1ef2012-11-19 13:23:06 -0500307static void mmci_dma_setup(struct mmci_host *host)
Russell Kingc8ebae32011-01-11 19:35:53 +0000308{
309 struct mmci_platform_data *plat = host->plat;
310 const char *rxname, *txname;
311 dma_cap_mask_t mask;
312
313 if (!plat || !plat->dma_filter) {
314 dev_info(mmc_dev(host->mmc), "no DMA platform data\n");
315 return;
316 }
317
Per Forlin58c7ccb2011-07-01 18:55:24 +0200318 /* initialize pre request cookie */
319 host->next_data.cookie = 1;
320
Russell Kingc8ebae32011-01-11 19:35:53 +0000321 /* Try to acquire a generic DMA engine slave channel */
322 dma_cap_zero(mask);
323 dma_cap_set(DMA_SLAVE, mask);
324
325 /*
326 * If only an RX channel is specified, the driver will
327 * attempt to use it bidirectionally, however if it is
328 * is specified but cannot be located, DMA will be disabled.
329 */
330 if (plat->dma_rx_param) {
331 host->dma_rx_channel = dma_request_channel(mask,
332 plat->dma_filter,
333 plat->dma_rx_param);
334 /* E.g if no DMA hardware is present */
335 if (!host->dma_rx_channel)
336 dev_err(mmc_dev(host->mmc), "no RX DMA channel\n");
337 }
338
339 if (plat->dma_tx_param) {
340 host->dma_tx_channel = dma_request_channel(mask,
341 plat->dma_filter,
342 plat->dma_tx_param);
343 if (!host->dma_tx_channel)
344 dev_warn(mmc_dev(host->mmc), "no TX DMA channel\n");
345 } else {
346 host->dma_tx_channel = host->dma_rx_channel;
347 }
348
349 if (host->dma_rx_channel)
350 rxname = dma_chan_name(host->dma_rx_channel);
351 else
352 rxname = "none";
353
354 if (host->dma_tx_channel)
355 txname = dma_chan_name(host->dma_tx_channel);
356 else
357 txname = "none";
358
359 dev_info(mmc_dev(host->mmc), "DMA channels RX %s, TX %s\n",
360 rxname, txname);
361
362 /*
363 * Limit the maximum segment size in any SG entry according to
364 * the parameters of the DMA engine device.
365 */
366 if (host->dma_tx_channel) {
367 struct device *dev = host->dma_tx_channel->device->dev;
368 unsigned int max_seg_size = dma_get_max_seg_size(dev);
369
370 if (max_seg_size < host->mmc->max_seg_size)
371 host->mmc->max_seg_size = max_seg_size;
372 }
373 if (host->dma_rx_channel) {
374 struct device *dev = host->dma_rx_channel->device->dev;
375 unsigned int max_seg_size = dma_get_max_seg_size(dev);
376
377 if (max_seg_size < host->mmc->max_seg_size)
378 host->mmc->max_seg_size = max_seg_size;
379 }
380}
381
382/*
Bill Pemberton6e0ee712012-11-19 13:26:03 -0500383 * This is used in or so inline it
Russell Kingc8ebae32011-01-11 19:35:53 +0000384 * so it can be discarded.
385 */
386static inline void mmci_dma_release(struct mmci_host *host)
387{
388 struct mmci_platform_data *plat = host->plat;
389
390 if (host->dma_rx_channel)
391 dma_release_channel(host->dma_rx_channel);
392 if (host->dma_tx_channel && plat->dma_tx_param)
393 dma_release_channel(host->dma_tx_channel);
394 host->dma_rx_channel = host->dma_tx_channel = NULL;
395}
396
Ulf Hansson653a7612013-01-21 21:29:34 +0100397static void mmci_dma_data_error(struct mmci_host *host)
398{
399 dev_err(mmc_dev(host->mmc), "error during DMA transfer!\n");
400 dmaengine_terminate_all(host->dma_current);
401 host->dma_current = NULL;
402 host->dma_desc_current = NULL;
403 host->data->host_cookie = 0;
404}
405
Russell Kingc8ebae32011-01-11 19:35:53 +0000406static void mmci_dma_unmap(struct mmci_host *host, struct mmc_data *data)
407{
Ulf Hansson653a7612013-01-21 21:29:34 +0100408 struct dma_chan *chan;
Russell Kingc8ebae32011-01-11 19:35:53 +0000409 enum dma_data_direction dir;
Ulf Hansson653a7612013-01-21 21:29:34 +0100410
411 if (data->flags & MMC_DATA_READ) {
412 dir = DMA_FROM_DEVICE;
413 chan = host->dma_rx_channel;
414 } else {
415 dir = DMA_TO_DEVICE;
416 chan = host->dma_tx_channel;
417 }
418
419 dma_unmap_sg(chan->device->dev, data->sg, data->sg_len, dir);
420}
421
422static void mmci_dma_finalize(struct mmci_host *host, struct mmc_data *data)
423{
Russell Kingc8ebae32011-01-11 19:35:53 +0000424 u32 status;
425 int i;
426
427 /* Wait up to 1ms for the DMA to complete */
428 for (i = 0; ; i++) {
429 status = readl(host->base + MMCISTATUS);
430 if (!(status & MCI_RXDATAAVLBLMASK) || i >= 100)
431 break;
432 udelay(10);
433 }
434
435 /*
436 * Check to see whether we still have some data left in the FIFO -
437 * this catches DMA controllers which are unable to monitor the
438 * DMALBREQ and DMALSREQ signals while allowing us to DMA to non-
439 * contiguous buffers. On TX, we'll get a FIFO underrun error.
440 */
441 if (status & MCI_RXDATAAVLBLMASK) {
Ulf Hansson653a7612013-01-21 21:29:34 +0100442 mmci_dma_data_error(host);
Russell Kingc8ebae32011-01-11 19:35:53 +0000443 if (!data->error)
444 data->error = -EIO;
445 }
446
Per Forlin58c7ccb2011-07-01 18:55:24 +0200447 if (!data->host_cookie)
Ulf Hansson653a7612013-01-21 21:29:34 +0100448 mmci_dma_unmap(host, data);
Russell Kingc8ebae32011-01-11 19:35:53 +0000449
450 /*
451 * Use of DMA with scatter-gather is impossible.
452 * Give up with DMA and switch back to PIO mode.
453 */
454 if (status & MCI_RXDATAAVLBLMASK) {
455 dev_err(mmc_dev(host->mmc), "buggy DMA detected. Taking evasive action.\n");
456 mmci_dma_release(host);
457 }
Ulf Hansson653a7612013-01-21 21:29:34 +0100458
459 host->dma_current = NULL;
460 host->dma_desc_current = NULL;
Russell Kingc8ebae32011-01-11 19:35:53 +0000461}
462
Ulf Hansson653a7612013-01-21 21:29:34 +0100463/* prepares DMA channel and DMA descriptor, returns non-zero on failure */
464static int __mmci_dma_prep_data(struct mmci_host *host, struct mmc_data *data,
465 struct dma_chan **dma_chan,
466 struct dma_async_tx_descriptor **dma_desc)
Russell Kingc8ebae32011-01-11 19:35:53 +0000467{
468 struct variant_data *variant = host->variant;
469 struct dma_slave_config conf = {
470 .src_addr = host->phybase + MMCIFIFO,
471 .dst_addr = host->phybase + MMCIFIFO,
472 .src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES,
473 .dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES,
474 .src_maxburst = variant->fifohalfsize >> 2, /* # of words */
475 .dst_maxburst = variant->fifohalfsize >> 2, /* # of words */
Viresh Kumar258aea72012-02-01 16:12:19 +0530476 .device_fc = false,
Russell Kingc8ebae32011-01-11 19:35:53 +0000477 };
Russell Kingc8ebae32011-01-11 19:35:53 +0000478 struct dma_chan *chan;
479 struct dma_device *device;
480 struct dma_async_tx_descriptor *desc;
Vinod Koul05f57992011-10-14 10:45:11 +0530481 enum dma_data_direction buffer_dirn;
Russell Kingc8ebae32011-01-11 19:35:53 +0000482 int nr_sg;
483
Russell Kingc8ebae32011-01-11 19:35:53 +0000484 if (data->flags & MMC_DATA_READ) {
Vinod Koul05f57992011-10-14 10:45:11 +0530485 conf.direction = DMA_DEV_TO_MEM;
486 buffer_dirn = DMA_FROM_DEVICE;
Russell Kingc8ebae32011-01-11 19:35:53 +0000487 chan = host->dma_rx_channel;
488 } else {
Vinod Koul05f57992011-10-14 10:45:11 +0530489 conf.direction = DMA_MEM_TO_DEV;
490 buffer_dirn = DMA_TO_DEVICE;
Russell Kingc8ebae32011-01-11 19:35:53 +0000491 chan = host->dma_tx_channel;
492 }
493
494 /* If there's no DMA channel, fall back to PIO */
495 if (!chan)
496 return -EINVAL;
497
498 /* If less than or equal to the fifo size, don't bother with DMA */
Per Forlin58c7ccb2011-07-01 18:55:24 +0200499 if (data->blksz * data->blocks <= variant->fifosize)
Russell Kingc8ebae32011-01-11 19:35:53 +0000500 return -EINVAL;
501
502 device = chan->device;
Vinod Koul05f57992011-10-14 10:45:11 +0530503 nr_sg = dma_map_sg(device->dev, data->sg, data->sg_len, buffer_dirn);
Russell Kingc8ebae32011-01-11 19:35:53 +0000504 if (nr_sg == 0)
505 return -EINVAL;
506
507 dmaengine_slave_config(chan, &conf);
Alexandre Bounine16052822012-03-08 16:11:18 -0500508 desc = dmaengine_prep_slave_sg(chan, data->sg, nr_sg,
Russell Kingc8ebae32011-01-11 19:35:53 +0000509 conf.direction, DMA_CTRL_ACK);
510 if (!desc)
511 goto unmap_exit;
512
Ulf Hansson653a7612013-01-21 21:29:34 +0100513 *dma_chan = chan;
514 *dma_desc = desc;
Russell Kingc8ebae32011-01-11 19:35:53 +0000515
Per Forlin58c7ccb2011-07-01 18:55:24 +0200516 return 0;
517
518 unmap_exit:
Vinod Koul05f57992011-10-14 10:45:11 +0530519 dma_unmap_sg(device->dev, data->sg, data->sg_len, buffer_dirn);
Per Forlin58c7ccb2011-07-01 18:55:24 +0200520 return -ENOMEM;
521}
522
Ulf Hansson653a7612013-01-21 21:29:34 +0100523static inline int mmci_dma_prep_data(struct mmci_host *host,
524 struct mmc_data *data)
525{
526 /* Check if next job is already prepared. */
527 if (host->dma_current && host->dma_desc_current)
528 return 0;
529
530 /* No job were prepared thus do it now. */
531 return __mmci_dma_prep_data(host, data, &host->dma_current,
532 &host->dma_desc_current);
533}
534
535static inline int mmci_dma_prep_next(struct mmci_host *host,
536 struct mmc_data *data)
537{
538 struct mmci_host_next *nd = &host->next_data;
539 return __mmci_dma_prep_data(host, data, &nd->dma_chan, &nd->dma_desc);
540}
541
Per Forlin58c7ccb2011-07-01 18:55:24 +0200542static int mmci_dma_start_data(struct mmci_host *host, unsigned int datactrl)
543{
544 int ret;
545 struct mmc_data *data = host->data;
546
Ulf Hansson653a7612013-01-21 21:29:34 +0100547 ret = mmci_dma_prep_data(host, host->data);
Per Forlin58c7ccb2011-07-01 18:55:24 +0200548 if (ret)
549 return ret;
550
551 /* Okay, go for it. */
Russell Kingc8ebae32011-01-11 19:35:53 +0000552 dev_vdbg(mmc_dev(host->mmc),
553 "Submit MMCI DMA job, sglen %d blksz %04x blks %04x flags %08x\n",
554 data->sg_len, data->blksz, data->blocks, data->flags);
Per Forlin58c7ccb2011-07-01 18:55:24 +0200555 dmaengine_submit(host->dma_desc_current);
556 dma_async_issue_pending(host->dma_current);
Russell Kingc8ebae32011-01-11 19:35:53 +0000557
558 datactrl |= MCI_DPSM_DMAENABLE;
559
560 /* Trigger the DMA transfer */
561 writel(datactrl, host->base + MMCIDATACTRL);
562
563 /*
564 * Let the MMCI say when the data is ended and it's time
565 * to fire next DMA request. When that happens, MMCI will
566 * call mmci_data_end()
567 */
568 writel(readl(host->base + MMCIMASK0) | MCI_DATAENDMASK,
569 host->base + MMCIMASK0);
570 return 0;
Russell Kingc8ebae32011-01-11 19:35:53 +0000571}
Per Forlin58c7ccb2011-07-01 18:55:24 +0200572
573static void mmci_get_next_data(struct mmci_host *host, struct mmc_data *data)
574{
575 struct mmci_host_next *next = &host->next_data;
576
Ulf Hansson653a7612013-01-21 21:29:34 +0100577 WARN_ON(data->host_cookie && data->host_cookie != next->cookie);
578 WARN_ON(!data->host_cookie && (next->dma_desc || next->dma_chan));
Per Forlin58c7ccb2011-07-01 18:55:24 +0200579
580 host->dma_desc_current = next->dma_desc;
581 host->dma_current = next->dma_chan;
Per Forlin58c7ccb2011-07-01 18:55:24 +0200582 next->dma_desc = NULL;
583 next->dma_chan = NULL;
584}
585
586static void mmci_pre_request(struct mmc_host *mmc, struct mmc_request *mrq,
587 bool is_first_req)
588{
589 struct mmci_host *host = mmc_priv(mmc);
590 struct mmc_data *data = mrq->data;
591 struct mmci_host_next *nd = &host->next_data;
592
593 if (!data)
594 return;
595
Ulf Hansson653a7612013-01-21 21:29:34 +0100596 BUG_ON(data->host_cookie);
Per Forlin58c7ccb2011-07-01 18:55:24 +0200597
Ulf Hansson653a7612013-01-21 21:29:34 +0100598 if (mmci_validate_data(host, data))
599 return;
600
601 if (!mmci_dma_prep_next(host, data))
602 data->host_cookie = ++nd->cookie < 0 ? 1 : nd->cookie;
Per Forlin58c7ccb2011-07-01 18:55:24 +0200603}
604
605static void mmci_post_request(struct mmc_host *mmc, struct mmc_request *mrq,
606 int err)
607{
608 struct mmci_host *host = mmc_priv(mmc);
609 struct mmc_data *data = mrq->data;
Per Forlin58c7ccb2011-07-01 18:55:24 +0200610
Ulf Hansson653a7612013-01-21 21:29:34 +0100611 if (!data || !data->host_cookie)
Per Forlin58c7ccb2011-07-01 18:55:24 +0200612 return;
613
Ulf Hansson653a7612013-01-21 21:29:34 +0100614 mmci_dma_unmap(host, data);
Per Forlin58c7ccb2011-07-01 18:55:24 +0200615
Ulf Hansson653a7612013-01-21 21:29:34 +0100616 if (err) {
617 struct mmci_host_next *next = &host->next_data;
618 struct dma_chan *chan;
619 if (data->flags & MMC_DATA_READ)
620 chan = host->dma_rx_channel;
621 else
622 chan = host->dma_tx_channel;
623 dmaengine_terminate_all(chan);
Per Forlin58c7ccb2011-07-01 18:55:24 +0200624
Ulf Hansson653a7612013-01-21 21:29:34 +0100625 next->dma_desc = NULL;
626 next->dma_chan = NULL;
Per Forlin58c7ccb2011-07-01 18:55:24 +0200627 }
628}
629
Russell Kingc8ebae32011-01-11 19:35:53 +0000630#else
631/* Blank functions if the DMA engine is not available */
Per Forlin58c7ccb2011-07-01 18:55:24 +0200632static void mmci_get_next_data(struct mmci_host *host, struct mmc_data *data)
633{
634}
Russell Kingc8ebae32011-01-11 19:35:53 +0000635static inline void mmci_dma_setup(struct mmci_host *host)
636{
637}
638
639static inline void mmci_dma_release(struct mmci_host *host)
640{
641}
642
643static inline void mmci_dma_unmap(struct mmci_host *host, struct mmc_data *data)
644{
645}
646
Ulf Hansson653a7612013-01-21 21:29:34 +0100647static inline void mmci_dma_finalize(struct mmci_host *host,
648 struct mmc_data *data)
649{
650}
651
Russell Kingc8ebae32011-01-11 19:35:53 +0000652static inline void mmci_dma_data_error(struct mmci_host *host)
653{
654}
655
656static inline int mmci_dma_start_data(struct mmci_host *host, unsigned int datactrl)
657{
658 return -ENOSYS;
659}
Per Forlin58c7ccb2011-07-01 18:55:24 +0200660
661#define mmci_pre_request NULL
662#define mmci_post_request NULL
663
Russell Kingc8ebae32011-01-11 19:35:53 +0000664#endif
665
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666static void mmci_start_data(struct mmci_host *host, struct mmc_data *data)
667{
Rabin Vincent8301bb62010-08-09 12:57:30 +0100668 struct variant_data *variant = host->variant;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 unsigned int datactrl, timeout, irqmask;
Russell King7b09cda2005-07-01 12:02:59 +0100670 unsigned long long clks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 void __iomem *base;
Russell King3bc87f22006-08-27 13:51:28 +0100672 int blksz_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
Linus Walleij64de0282010-02-19 01:09:10 +0100674 dev_dbg(mmc_dev(host->mmc), "blksz %04x blks %04x flags %08x\n",
675 data->blksz, data->blocks, data->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
677 host->data = data;
Rabin Vincent528320d2010-07-21 12:49:49 +0100678 host->size = data->blksz * data->blocks;
Russell King51d43752011-01-27 10:56:52 +0000679 data->bytes_xfered = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
Russell King7b09cda2005-07-01 12:02:59 +0100681 clks = (unsigned long long)data->timeout_ns * host->cclk;
682 do_div(clks, 1000000000UL);
683
684 timeout = data->timeout_clks + (unsigned int)clks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
686 base = host->base;
687 writel(timeout, base + MMCIDATATIMER);
688 writel(host->size, base + MMCIDATALENGTH);
689
Russell King3bc87f22006-08-27 13:51:28 +0100690 blksz_bits = ffs(data->blksz) - 1;
691 BUG_ON(1 << blksz_bits != data->blksz);
692
Philippe Langlais1784b152011-03-25 08:51:52 +0100693 if (variant->blksz_datactrl16)
694 datactrl = MCI_DPSM_ENABLE | (data->blksz << 16);
695 else
696 datactrl = MCI_DPSM_ENABLE | blksz_bits << 4;
Russell Kingc8ebae32011-01-11 19:35:53 +0000697
698 if (data->flags & MMC_DATA_READ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 datactrl |= MCI_DPSM_DIRECTION;
Russell Kingc8ebae32011-01-11 19:35:53 +0000700
Ulf Hansson7258db72011-12-13 17:05:28 +0100701 /* The ST Micro variants has a special bit to enable SDIO */
702 if (variant->sdio && host->mmc->card)
Ulf Hansson06c1a122012-10-12 14:01:50 +0100703 if (mmc_card_sdio(host->mmc->card)) {
704 /*
705 * The ST Micro variants has a special bit
706 * to enable SDIO.
707 */
708 u32 clk;
709
Ulf Hansson7258db72011-12-13 17:05:28 +0100710 datactrl |= MCI_ST_DPSM_SDIOEN;
711
Ulf Hansson06c1a122012-10-12 14:01:50 +0100712 /*
Ulf Hansson70ac0932012-10-12 14:07:36 +0100713 * The ST Micro variant for SDIO small write transfers
714 * needs to have clock H/W flow control disabled,
715 * otherwise the transfer will not start. The threshold
716 * depends on the rate of MCLK.
Ulf Hansson06c1a122012-10-12 14:01:50 +0100717 */
Ulf Hansson70ac0932012-10-12 14:07:36 +0100718 if (data->flags & MMC_DATA_WRITE &&
719 (host->size < 8 ||
720 (host->size <= 8 && host->mclk > 50000000)))
Ulf Hansson06c1a122012-10-12 14:01:50 +0100721 clk = host->clk_reg & ~variant->clkreg_enable;
722 else
723 clk = host->clk_reg | variant->clkreg_enable;
724
725 mmci_write_clkreg(host, clk);
726 }
727
Ulf Hansson6dbb6ee2013-01-07 15:30:44 +0100728 if (host->mmc->ios.timing == MMC_TIMING_UHS_DDR50)
729 datactrl |= MCI_ST_DPSM_DDRMODE;
730
Russell Kingc8ebae32011-01-11 19:35:53 +0000731 /*
732 * Attempt to use DMA operation mode, if this
733 * should fail, fall back to PIO mode
734 */
735 if (!mmci_dma_start_data(host, datactrl))
736 return;
737
738 /* IRQ mode, map the SG list for CPU reading/writing */
739 mmci_init_sg(host, data);
740
741 if (data->flags & MMC_DATA_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 irqmask = MCI_RXFIFOHALFFULLMASK;
Russell King0425a142006-02-16 16:48:31 +0000743
744 /*
Russell Kingc4d877c2011-01-27 09:50:13 +0000745 * If we have less than the fifo 'half-full' threshold to
746 * transfer, trigger a PIO interrupt as soon as any data
747 * is available.
Russell King0425a142006-02-16 16:48:31 +0000748 */
Russell Kingc4d877c2011-01-27 09:50:13 +0000749 if (host->size < variant->fifohalfsize)
Russell King0425a142006-02-16 16:48:31 +0000750 irqmask |= MCI_RXDATAAVLBLMASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 } else {
752 /*
753 * We don't actually need to include "FIFO empty" here
754 * since its implicit in "FIFO half empty".
755 */
756 irqmask = MCI_TXFIFOHALFEMPTYMASK;
757 }
758
759 writel(datactrl, base + MMCIDATACTRL);
760 writel(readl(base + MMCIMASK0) & ~MCI_DATAENDMASK, base + MMCIMASK0);
Linus Walleij2686b4b2010-10-19 12:39:48 +0100761 mmci_set_mask1(host, irqmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762}
763
764static void
765mmci_start_command(struct mmci_host *host, struct mmc_command *cmd, u32 c)
766{
767 void __iomem *base = host->base;
768
Linus Walleij64de0282010-02-19 01:09:10 +0100769 dev_dbg(mmc_dev(host->mmc), "op %02x arg %08x flags %08x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 cmd->opcode, cmd->arg, cmd->flags);
771
772 if (readl(base + MMCICOMMAND) & MCI_CPSM_ENABLE) {
773 writel(0, base + MMCICOMMAND);
774 udelay(1);
775 }
776
777 c |= cmd->opcode | MCI_CPSM_ENABLE;
Russell Kinge9225172006-02-02 12:23:12 +0000778 if (cmd->flags & MMC_RSP_PRESENT) {
779 if (cmd->flags & MMC_RSP_136)
780 c |= MCI_CPSM_LONGRSP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 c |= MCI_CPSM_RESPONSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 }
783 if (/*interrupt*/0)
784 c |= MCI_CPSM_INTERRUPT;
785
786 host->cmd = cmd;
787
788 writel(cmd->arg, base + MMCIARGUMENT);
789 writel(c, base + MMCICOMMAND);
790}
791
792static void
793mmci_data_irq(struct mmci_host *host, struct mmc_data *data,
794 unsigned int status)
795{
Linus Walleijf20f8f22010-10-19 13:41:24 +0100796 /* First check for errors */
Ulf Hanssonb63038d2011-12-13 16:51:04 +0100797 if (status & (MCI_DATACRCFAIL|MCI_DATATIMEOUT|MCI_STARTBITERR|
798 MCI_TXUNDERRUN|MCI_RXOVERRUN)) {
Linus Walleij8cb28152011-01-24 15:22:13 +0100799 u32 remain, success;
Linus Walleijf20f8f22010-10-19 13:41:24 +0100800
Russell Kingc8ebae32011-01-11 19:35:53 +0000801 /* Terminate the DMA transfer */
Ulf Hansson653a7612013-01-21 21:29:34 +0100802 if (dma_inprogress(host)) {
Russell Kingc8ebae32011-01-11 19:35:53 +0000803 mmci_dma_data_error(host);
Ulf Hansson653a7612013-01-21 21:29:34 +0100804 mmci_dma_unmap(host, data);
805 }
Russell Kingc8ebae32011-01-11 19:35:53 +0000806
Russell Kingc8afc9d2011-02-04 09:19:46 +0000807 /*
808 * Calculate how far we are into the transfer. Note that
809 * the data counter gives the number of bytes transferred
810 * on the MMC bus, not on the host side. On reads, this
811 * can be as much as a FIFO-worth of data ahead. This
812 * matters for FIFO overruns only.
813 */
Linus Walleijf5a106d2011-01-27 17:44:34 +0100814 remain = readl(host->base + MMCIDATACNT);
Linus Walleij8cb28152011-01-24 15:22:13 +0100815 success = data->blksz * data->blocks - remain;
816
Russell Kingc8afc9d2011-02-04 09:19:46 +0000817 dev_dbg(mmc_dev(host->mmc), "MCI ERROR IRQ, status 0x%08x at 0x%08x\n",
818 status, success);
Linus Walleij8cb28152011-01-24 15:22:13 +0100819 if (status & MCI_DATACRCFAIL) {
820 /* Last block was not successful */
Russell Kingc8afc9d2011-02-04 09:19:46 +0000821 success -= 1;
Pierre Ossman17b04292007-07-22 22:18:46 +0200822 data->error = -EILSEQ;
Linus Walleij8cb28152011-01-24 15:22:13 +0100823 } else if (status & MCI_DATATIMEOUT) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200824 data->error = -ETIMEDOUT;
Linus Walleij757df742011-06-30 15:10:21 +0100825 } else if (status & MCI_STARTBITERR) {
826 data->error = -ECOMM;
Russell Kingc8afc9d2011-02-04 09:19:46 +0000827 } else if (status & MCI_TXUNDERRUN) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200828 data->error = -EIO;
Russell Kingc8afc9d2011-02-04 09:19:46 +0000829 } else if (status & MCI_RXOVERRUN) {
830 if (success > host->variant->fifosize)
831 success -= host->variant->fifosize;
832 else
833 success = 0;
Linus Walleij8cb28152011-01-24 15:22:13 +0100834 data->error = -EIO;
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100835 }
Russell King51d43752011-01-27 10:56:52 +0000836 data->bytes_xfered = round_down(success, data->blksz);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 }
Linus Walleijf20f8f22010-10-19 13:41:24 +0100838
Linus Walleij8cb28152011-01-24 15:22:13 +0100839 if (status & MCI_DATABLOCKEND)
840 dev_err(mmc_dev(host->mmc), "stray MCI_DATABLOCKEND interrupt\n");
Linus Walleijf20f8f22010-10-19 13:41:24 +0100841
Russell Kingccff9b52011-01-30 21:03:50 +0000842 if (status & MCI_DATAEND || data->error) {
Russell Kingc8ebae32011-01-11 19:35:53 +0000843 if (dma_inprogress(host))
Ulf Hansson653a7612013-01-21 21:29:34 +0100844 mmci_dma_finalize(host, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 mmci_stop_data(host);
846
Linus Walleij8cb28152011-01-24 15:22:13 +0100847 if (!data->error)
848 /* The error clause is handled above, success! */
Russell King51d43752011-01-27 10:56:52 +0000849 data->bytes_xfered = data->blksz * data->blocks;
Linus Walleijf20f8f22010-10-19 13:41:24 +0100850
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 if (!data->stop) {
852 mmci_request_end(host, data->mrq);
853 } else {
854 mmci_start_command(host, data->stop, 0);
855 }
856 }
857}
858
859static void
860mmci_cmd_irq(struct mmci_host *host, struct mmc_command *cmd,
861 unsigned int status)
862{
863 void __iomem *base = host->base;
864
865 host->cmd = NULL;
866
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 if (status & MCI_CMDTIMEOUT) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200868 cmd->error = -ETIMEDOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 } else if (status & MCI_CMDCRCFAIL && cmd->flags & MMC_RSP_CRC) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200870 cmd->error = -EILSEQ;
Russell King - ARM Linux9047b432011-01-11 16:35:56 +0000871 } else {
872 cmd->resp[0] = readl(base + MMCIRESPONSE0);
873 cmd->resp[1] = readl(base + MMCIRESPONSE1);
874 cmd->resp[2] = readl(base + MMCIRESPONSE2);
875 cmd->resp[3] = readl(base + MMCIRESPONSE3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 }
877
Pierre Ossman17b04292007-07-22 22:18:46 +0200878 if (!cmd->data || cmd->error) {
Ulf Hansson3b6e3c72011-12-13 16:58:43 +0100879 if (host->data) {
880 /* Terminate the DMA transfer */
Ulf Hansson653a7612013-01-21 21:29:34 +0100881 if (dma_inprogress(host)) {
Ulf Hansson3b6e3c72011-12-13 16:58:43 +0100882 mmci_dma_data_error(host);
Ulf Hansson653a7612013-01-21 21:29:34 +0100883 mmci_dma_unmap(host, host->data);
884 }
Russell Kinge47c2222007-01-08 16:42:51 +0000885 mmci_stop_data(host);
Ulf Hansson3b6e3c72011-12-13 16:58:43 +0100886 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 mmci_request_end(host, cmd->mrq);
888 } else if (!(cmd->data->flags & MMC_DATA_READ)) {
889 mmci_start_data(host, cmd->data);
890 }
891}
892
893static int mmci_pio_read(struct mmci_host *host, char *buffer, unsigned int remain)
894{
895 void __iomem *base = host->base;
896 char *ptr = buffer;
897 u32 status;
Linus Walleij26eed9a2008-04-26 23:39:44 +0100898 int host_remain = host->size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
900 do {
Linus Walleij26eed9a2008-04-26 23:39:44 +0100901 int count = host_remain - (readl(base + MMCIFIFOCNT) << 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
903 if (count > remain)
904 count = remain;
905
906 if (count <= 0)
907 break;
908
Ulf Hansson393e5e22011-12-13 17:08:04 +0100909 /*
910 * SDIO especially may want to send something that is
911 * not divisible by 4 (as opposed to card sectors
912 * etc). Therefore make sure to always read the last bytes
913 * while only doing full 32-bit reads towards the FIFO.
914 */
915 if (unlikely(count & 0x3)) {
916 if (count < 4) {
917 unsigned char buf[4];
Davide Ciminaghi4b85da02012-12-10 14:47:21 +0100918 ioread32_rep(base + MMCIFIFO, buf, 1);
Ulf Hansson393e5e22011-12-13 17:08:04 +0100919 memcpy(ptr, buf, count);
920 } else {
Davide Ciminaghi4b85da02012-12-10 14:47:21 +0100921 ioread32_rep(base + MMCIFIFO, ptr, count >> 2);
Ulf Hansson393e5e22011-12-13 17:08:04 +0100922 count &= ~0x3;
923 }
924 } else {
Davide Ciminaghi4b85da02012-12-10 14:47:21 +0100925 ioread32_rep(base + MMCIFIFO, ptr, count >> 2);
Ulf Hansson393e5e22011-12-13 17:08:04 +0100926 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
928 ptr += count;
929 remain -= count;
Linus Walleij26eed9a2008-04-26 23:39:44 +0100930 host_remain -= count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
932 if (remain == 0)
933 break;
934
935 status = readl(base + MMCISTATUS);
936 } while (status & MCI_RXDATAAVLBL);
937
938 return ptr - buffer;
939}
940
941static int mmci_pio_write(struct mmci_host *host, char *buffer, unsigned int remain, u32 status)
942{
Rabin Vincent8301bb62010-08-09 12:57:30 +0100943 struct variant_data *variant = host->variant;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 void __iomem *base = host->base;
945 char *ptr = buffer;
946
947 do {
948 unsigned int count, maxcnt;
949
Rabin Vincent8301bb62010-08-09 12:57:30 +0100950 maxcnt = status & MCI_TXFIFOEMPTY ?
951 variant->fifosize : variant->fifohalfsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 count = min(remain, maxcnt);
953
Linus Walleij34177802010-10-19 12:43:58 +0100954 /*
Linus Walleij34177802010-10-19 12:43:58 +0100955 * SDIO especially may want to send something that is
956 * not divisible by 4 (as opposed to card sectors
957 * etc), and the FIFO only accept full 32-bit writes.
958 * So compensate by adding +3 on the count, a single
959 * byte become a 32bit write, 7 bytes will be two
960 * 32bit writes etc.
961 */
Davide Ciminaghi4b85da02012-12-10 14:47:21 +0100962 iowrite32_rep(base + MMCIFIFO, ptr, (count + 3) >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
964 ptr += count;
965 remain -= count;
966
967 if (remain == 0)
968 break;
969
970 status = readl(base + MMCISTATUS);
971 } while (status & MCI_TXFIFOHALFEMPTY);
972
973 return ptr - buffer;
974}
975
976/*
977 * PIO data transfer IRQ handler.
978 */
David Howells7d12e782006-10-05 14:55:46 +0100979static irqreturn_t mmci_pio_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980{
981 struct mmci_host *host = dev_id;
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100982 struct sg_mapping_iter *sg_miter = &host->sg_miter;
Rabin Vincent8301bb62010-08-09 12:57:30 +0100983 struct variant_data *variant = host->variant;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 void __iomem *base = host->base;
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100985 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 u32 status;
987
988 status = readl(base + MMCISTATUS);
989
Linus Walleij64de0282010-02-19 01:09:10 +0100990 dev_dbg(mmc_dev(host->mmc), "irq1 (pio) %08x\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100992 local_irq_save(flags);
993
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 unsigned int remain, len;
996 char *buffer;
997
998 /*
999 * For write, we only need to test the half-empty flag
1000 * here - if the FIFO is completely empty, then by
1001 * definition it is more than half empty.
1002 *
1003 * For read, check for data available.
1004 */
1005 if (!(status & (MCI_TXFIFOHALFEMPTY|MCI_RXDATAAVLBL)))
1006 break;
1007
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +01001008 if (!sg_miter_next(sg_miter))
1009 break;
1010
1011 buffer = sg_miter->addr;
1012 remain = sg_miter->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
1014 len = 0;
1015 if (status & MCI_RXACTIVE)
1016 len = mmci_pio_read(host, buffer, remain);
1017 if (status & MCI_TXACTIVE)
1018 len = mmci_pio_write(host, buffer, remain, status);
1019
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +01001020 sg_miter->consumed = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 host->size -= len;
1023 remain -= len;
1024
1025 if (remain)
1026 break;
1027
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 status = readl(base + MMCISTATUS);
1029 } while (1);
1030
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +01001031 sg_miter_stop(sg_miter);
1032
1033 local_irq_restore(flags);
1034
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 /*
Russell Kingc4d877c2011-01-27 09:50:13 +00001036 * If we have less than the fifo 'half-full' threshold to transfer,
1037 * trigger a PIO interrupt as soon as any data is available.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 */
Russell Kingc4d877c2011-01-27 09:50:13 +00001039 if (status & MCI_RXACTIVE && host->size < variant->fifohalfsize)
Linus Walleij2686b4b2010-10-19 12:39:48 +01001040 mmci_set_mask1(host, MCI_RXDATAAVLBLMASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041
1042 /*
1043 * If we run out of data, disable the data IRQs; this
1044 * prevents a race where the FIFO becomes empty before
1045 * the chip itself has disabled the data path, and
1046 * stops us racing with our data end IRQ.
1047 */
1048 if (host->size == 0) {
Linus Walleij2686b4b2010-10-19 12:39:48 +01001049 mmci_set_mask1(host, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 writel(readl(base + MMCIMASK0) | MCI_DATAENDMASK, base + MMCIMASK0);
1051 }
1052
1053 return IRQ_HANDLED;
1054}
1055
1056/*
1057 * Handle completion of command and data transfers.
1058 */
David Howells7d12e782006-10-05 14:55:46 +01001059static irqreturn_t mmci_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060{
1061 struct mmci_host *host = dev_id;
1062 u32 status;
1063 int ret = 0;
1064
1065 spin_lock(&host->lock);
1066
1067 do {
1068 struct mmc_command *cmd;
1069 struct mmc_data *data;
1070
1071 status = readl(host->base + MMCISTATUS);
Linus Walleij2686b4b2010-10-19 12:39:48 +01001072
1073 if (host->singleirq) {
1074 if (status & readl(host->base + MMCIMASK1))
1075 mmci_pio_irq(irq, dev_id);
1076
1077 status &= ~MCI_IRQ1MASK;
1078 }
1079
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 status &= readl(host->base + MMCIMASK0);
1081 writel(status, host->base + MMCICLEAR);
1082
Linus Walleij64de0282010-02-19 01:09:10 +01001083 dev_dbg(mmc_dev(host->mmc), "irq0 (data+cmd) %08x\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084
1085 data = host->data;
Ulf Hanssonb63038d2011-12-13 16:51:04 +01001086 if (status & (MCI_DATACRCFAIL|MCI_DATATIMEOUT|MCI_STARTBITERR|
1087 MCI_TXUNDERRUN|MCI_RXOVERRUN|MCI_DATAEND|
1088 MCI_DATABLOCKEND) && data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 mmci_data_irq(host, data, status);
1090
1091 cmd = host->cmd;
1092 if (status & (MCI_CMDCRCFAIL|MCI_CMDTIMEOUT|MCI_CMDSENT|MCI_CMDRESPEND) && cmd)
1093 mmci_cmd_irq(host, cmd, status);
1094
1095 ret = 1;
1096 } while (status);
1097
1098 spin_unlock(&host->lock);
1099
1100 return IRQ_RETVAL(ret);
1101}
1102
1103static void mmci_request(struct mmc_host *mmc, struct mmc_request *mrq)
1104{
1105 struct mmci_host *host = mmc_priv(mmc);
Linus Walleij9e943022008-10-24 21:17:50 +01001106 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107
1108 WARN_ON(host->mrq != NULL);
1109
Ulf Hansson653a7612013-01-21 21:29:34 +01001110 mrq->cmd->error = mmci_validate_data(host, mrq->data);
1111 if (mrq->cmd->error) {
Pierre Ossman255d01a2007-07-24 20:38:53 +02001112 mmc_request_done(mmc, mrq);
1113 return;
1114 }
1115
Russell King1c3be362011-08-14 09:17:05 +01001116 pm_runtime_get_sync(mmc_dev(mmc));
1117
Linus Walleij9e943022008-10-24 21:17:50 +01001118 spin_lock_irqsave(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119
1120 host->mrq = mrq;
1121
Per Forlin58c7ccb2011-07-01 18:55:24 +02001122 if (mrq->data)
1123 mmci_get_next_data(host, mrq->data);
1124
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 if (mrq->data && mrq->data->flags & MMC_DATA_READ)
1126 mmci_start_data(host, mrq->data);
1127
1128 mmci_start_command(host, mrq->cmd, 0);
1129
Linus Walleij9e943022008-10-24 21:17:50 +01001130 spin_unlock_irqrestore(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131}
1132
1133static void mmci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
1134{
1135 struct mmci_host *host = mmc_priv(mmc);
Ulf Hansson7d72a1d2011-12-13 16:54:55 +01001136 struct variant_data *variant = host->variant;
Linus Walleija6a64642009-09-14 12:56:14 +01001137 u32 pwr = 0;
1138 unsigned long flags;
Lee Jonesdb90f912013-05-03 12:52:12 +01001139 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001141 pm_runtime_get_sync(mmc_dev(mmc));
1142
Ulf Hanssonbc521812011-12-13 16:57:55 +01001143 if (host->plat->ios_handler &&
1144 host->plat->ios_handler(mmc_dev(mmc), ios))
1145 dev_err(mmc_dev(mmc), "platform ios_handler failed\n");
1146
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 switch (ios->power_mode) {
1148 case MMC_POWER_OFF:
Ulf Hansson599c1d52013-01-07 16:22:50 +01001149 if (!IS_ERR(mmc->supply.vmmc))
1150 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, 0);
Lee Jones237fb5e2013-01-31 11:27:52 +00001151
1152 if (!IS_ERR(mmc->supply.vqmmc) &&
1153 regulator_is_enabled(mmc->supply.vqmmc))
1154 regulator_disable(mmc->supply.vqmmc);
1155
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 break;
1157 case MMC_POWER_UP:
Ulf Hansson599c1d52013-01-07 16:22:50 +01001158 if (!IS_ERR(mmc->supply.vmmc))
1159 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, ios->vdd);
1160
Ulf Hansson7d72a1d2011-12-13 16:54:55 +01001161 /*
1162 * The ST Micro variant doesn't have the PL180s MCI_PWR_UP
1163 * and instead uses MCI_PWR_ON so apply whatever value is
1164 * configured in the variant data.
1165 */
1166 pwr |= variant->pwrreg_powerup;
1167
1168 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 case MMC_POWER_ON:
Lee Jones237fb5e2013-01-31 11:27:52 +00001170 if (!IS_ERR(mmc->supply.vqmmc) &&
Lee Jonesdb90f912013-05-03 12:52:12 +01001171 !regulator_is_enabled(mmc->supply.vqmmc)) {
1172 ret = regulator_enable(mmc->supply.vqmmc);
1173 if (ret < 0)
1174 dev_err(mmc_dev(mmc),
1175 "failed to enable vqmmc regulator\n");
1176 }
Lee Jones237fb5e2013-01-31 11:27:52 +00001177
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 pwr |= MCI_PWR_ON;
1179 break;
1180 }
1181
Ulf Hansson4d1a3a02011-12-13 16:57:07 +01001182 if (variant->signal_direction && ios->power_mode != MMC_POWER_OFF) {
1183 /*
1184 * The ST Micro variant has some additional bits
1185 * indicating signal direction for the signals in
1186 * the SD/MMC bus and feedback-clock usage.
1187 */
1188 pwr |= host->plat->sigdir;
1189
1190 if (ios->bus_width == MMC_BUS_WIDTH_4)
1191 pwr &= ~MCI_ST_DATA74DIREN;
1192 else if (ios->bus_width == MMC_BUS_WIDTH_1)
1193 pwr &= (~MCI_ST_DATA74DIREN &
1194 ~MCI_ST_DATA31DIREN &
1195 ~MCI_ST_DATA2DIREN);
1196 }
1197
Linus Walleijcc30d602009-01-04 15:18:54 +01001198 if (ios->bus_mode == MMC_BUSMODE_OPENDRAIN) {
Linus Walleijf17a1f02009-08-04 01:01:02 +01001199 if (host->hw_designer != AMBA_VENDOR_ST)
Linus Walleijcc30d602009-01-04 15:18:54 +01001200 pwr |= MCI_ROD;
1201 else {
1202 /*
1203 * The ST Micro variant use the ROD bit for something
1204 * else and only has OD (Open Drain).
1205 */
1206 pwr |= MCI_OD;
1207 }
1208 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209
Ulf Hanssonf4670da2013-01-09 17:19:54 +01001210 /*
1211 * If clock = 0 and the variant requires the MMCIPOWER to be used for
1212 * gating the clock, the MCI_PWR_ON bit is cleared.
1213 */
1214 if (!ios->clock && variant->pwrreg_clkgate)
1215 pwr &= ~MCI_PWR_ON;
1216
Linus Walleija6a64642009-09-14 12:56:14 +01001217 spin_lock_irqsave(&host->lock, flags);
1218
1219 mmci_set_clkreg(host, ios->clock);
Ulf Hansson7437cfa2012-01-18 09:17:27 +01001220 mmci_write_pwrreg(host, pwr);
Linus Walleija6a64642009-09-14 12:56:14 +01001221
1222 spin_unlock_irqrestore(&host->lock, flags);
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001223
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001224 pm_runtime_mark_last_busy(mmc_dev(mmc));
1225 pm_runtime_put_autosuspend(mmc_dev(mmc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226}
1227
Russell King89001442009-07-09 15:16:07 +01001228static int mmci_get_ro(struct mmc_host *mmc)
1229{
1230 struct mmci_host *host = mmc_priv(mmc);
1231
1232 if (host->gpio_wp == -ENOSYS)
1233 return -ENOSYS;
1234
Linus Walleij18a063012010-09-12 12:56:44 +01001235 return gpio_get_value_cansleep(host->gpio_wp);
Russell King89001442009-07-09 15:16:07 +01001236}
1237
1238static int mmci_get_cd(struct mmc_host *mmc)
1239{
1240 struct mmci_host *host = mmc_priv(mmc);
Rabin Vincent29719442010-08-09 12:54:43 +01001241 struct mmci_platform_data *plat = host->plat;
Russell King89001442009-07-09 15:16:07 +01001242 unsigned int status;
1243
Rabin Vincent4b8caec2010-08-09 12:56:40 +01001244 if (host->gpio_cd == -ENOSYS) {
1245 if (!plat->status)
1246 return 1; /* Assume always present */
1247
Rabin Vincent29719442010-08-09 12:54:43 +01001248 status = plat->status(mmc_dev(host->mmc));
Rabin Vincent4b8caec2010-08-09 12:56:40 +01001249 } else
Linus Walleij18a063012010-09-12 12:56:44 +01001250 status = !!gpio_get_value_cansleep(host->gpio_cd)
1251 ^ plat->cd_invert;
Russell King89001442009-07-09 15:16:07 +01001252
Russell King74bc8092010-07-29 15:58:59 +01001253 /*
1254 * Use positive logic throughout - status is zero for no card,
1255 * non-zero for card inserted.
1256 */
1257 return status;
Russell King89001442009-07-09 15:16:07 +01001258}
1259
Rabin Vincent148b8b32010-08-09 12:55:48 +01001260static irqreturn_t mmci_cd_irq(int irq, void *dev_id)
1261{
1262 struct mmci_host *host = dev_id;
1263
1264 mmc_detect_change(host->mmc, msecs_to_jiffies(500));
1265
1266 return IRQ_HANDLED;
1267}
1268
David Brownellab7aefd2006-11-12 17:55:30 -08001269static const struct mmc_host_ops mmci_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 .request = mmci_request,
Per Forlin58c7ccb2011-07-01 18:55:24 +02001271 .pre_req = mmci_pre_request,
1272 .post_req = mmci_post_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 .set_ios = mmci_set_ios,
Russell King89001442009-07-09 15:16:07 +01001274 .get_ro = mmci_get_ro,
1275 .get_cd = mmci_get_cd,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276};
1277
Lee Jones000bc9d2012-04-16 10:18:43 +01001278#ifdef CONFIG_OF
1279static void mmci_dt_populate_generic_pdata(struct device_node *np,
1280 struct mmci_platform_data *pdata)
1281{
1282 int bus_width = 0;
1283
Lee Jones9a597012012-04-12 16:51:13 +01001284 pdata->gpio_wp = of_get_named_gpio(np, "wp-gpios", 0);
Lee Jones9a597012012-04-12 16:51:13 +01001285 pdata->gpio_cd = of_get_named_gpio(np, "cd-gpios", 0);
Lee Jones000bc9d2012-04-16 10:18:43 +01001286
1287 if (of_get_property(np, "cd-inverted", NULL))
1288 pdata->cd_invert = true;
1289 else
1290 pdata->cd_invert = false;
1291
1292 of_property_read_u32(np, "max-frequency", &pdata->f_max);
1293 if (!pdata->f_max)
1294 pr_warn("%s has no 'max-frequency' property\n", np->full_name);
1295
1296 if (of_get_property(np, "mmc-cap-mmc-highspeed", NULL))
1297 pdata->capabilities |= MMC_CAP_MMC_HIGHSPEED;
1298 if (of_get_property(np, "mmc-cap-sd-highspeed", NULL))
1299 pdata->capabilities |= MMC_CAP_SD_HIGHSPEED;
1300
1301 of_property_read_u32(np, "bus-width", &bus_width);
1302 switch (bus_width) {
1303 case 0 :
1304 /* No bus-width supplied. */
1305 break;
1306 case 4 :
1307 pdata->capabilities |= MMC_CAP_4_BIT_DATA;
1308 break;
1309 case 8 :
1310 pdata->capabilities |= MMC_CAP_8_BIT_DATA;
1311 break;
1312 default :
1313 pr_warn("%s: Unsupported bus width\n", np->full_name);
1314 }
1315}
Lee Jonesc0a120a2012-05-08 13:59:38 +01001316#else
1317static void mmci_dt_populate_generic_pdata(struct device_node *np,
1318 struct mmci_platform_data *pdata)
1319{
1320 return;
1321}
Lee Jones000bc9d2012-04-16 10:18:43 +01001322#endif
1323
Bill Pembertonc3be1ef2012-11-19 13:23:06 -05001324static int mmci_probe(struct amba_device *dev,
Russell Kingaa25afa2011-02-19 15:55:00 +00001325 const struct amba_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326{
Linus Walleij6ef297f2009-09-22 14:29:36 +01001327 struct mmci_platform_data *plat = dev->dev.platform_data;
Lee Jones000bc9d2012-04-16 10:18:43 +01001328 struct device_node *np = dev->dev.of_node;
Rabin Vincent4956e102010-07-21 12:54:40 +01001329 struct variant_data *variant = id->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 struct mmci_host *host;
1331 struct mmc_host *mmc;
1332 int ret;
1333
Lee Jones000bc9d2012-04-16 10:18:43 +01001334 /* Must have platform data or Device Tree. */
1335 if (!plat && !np) {
1336 dev_err(&dev->dev, "No plat data or DT found\n");
1337 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 }
1339
Lee Jonesb9b52912012-06-12 10:49:51 +01001340 if (!plat) {
1341 plat = devm_kzalloc(&dev->dev, sizeof(*plat), GFP_KERNEL);
1342 if (!plat)
1343 return -ENOMEM;
1344 }
1345
Lee Jones000bc9d2012-04-16 10:18:43 +01001346 if (np)
1347 mmci_dt_populate_generic_pdata(np, plat);
1348
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 ret = amba_request_regions(dev, DRIVER_NAME);
1350 if (ret)
1351 goto out;
1352
1353 mmc = mmc_alloc_host(sizeof(struct mmci_host), &dev->dev);
1354 if (!mmc) {
1355 ret = -ENOMEM;
1356 goto rel_regions;
1357 }
1358
1359 host = mmc_priv(mmc);
Rabin Vincent4ea580f2009-04-17 08:44:19 +05301360 host->mmc = mmc;
Russell King012b7d32009-07-09 15:13:56 +01001361
Russell King89001442009-07-09 15:16:07 +01001362 host->gpio_wp = -ENOSYS;
1363 host->gpio_cd = -ENOSYS;
Rabin Vincent148b8b32010-08-09 12:55:48 +01001364 host->gpio_cd_irq = -1;
Russell King89001442009-07-09 15:16:07 +01001365
Russell King012b7d32009-07-09 15:13:56 +01001366 host->hw_designer = amba_manf(dev);
1367 host->hw_revision = amba_rev(dev);
Linus Walleij64de0282010-02-19 01:09:10 +01001368 dev_dbg(mmc_dev(mmc), "designer ID = 0x%02x\n", host->hw_designer);
1369 dev_dbg(mmc_dev(mmc), "revision = 0x%01x\n", host->hw_revision);
Russell King012b7d32009-07-09 15:13:56 +01001370
Ulf Hansson665ba562013-05-13 15:39:17 +01001371 host->clk = devm_clk_get(&dev->dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 if (IS_ERR(host->clk)) {
1373 ret = PTR_ERR(host->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 goto host_free;
1375 }
1376
Julia Lawallac940932012-08-26 16:00:59 +00001377 ret = clk_prepare_enable(host->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 if (ret)
Ulf Hansson665ba562013-05-13 15:39:17 +01001379 goto host_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
1381 host->plat = plat;
Rabin Vincent4956e102010-07-21 12:54:40 +01001382 host->variant = variant;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 host->mclk = clk_get_rate(host->clk);
Linus Walleijc8df9a52008-04-29 09:34:07 +01001384 /*
1385 * According to the spec, mclk is max 100 MHz,
1386 * so we try to adjust the clock down to this,
1387 * (if possible).
1388 */
1389 if (host->mclk > 100000000) {
1390 ret = clk_set_rate(host->clk, 100000000);
1391 if (ret < 0)
1392 goto clk_disable;
1393 host->mclk = clk_get_rate(host->clk);
Linus Walleij64de0282010-02-19 01:09:10 +01001394 dev_dbg(mmc_dev(mmc), "eventual mclk rate: %u Hz\n",
1395 host->mclk);
Linus Walleijc8df9a52008-04-29 09:34:07 +01001396 }
Russell Kingc8ebae32011-01-11 19:35:53 +00001397 host->phybase = dev->res.start;
Linus Walleijdc890c22009-06-07 23:27:31 +01001398 host->base = ioremap(dev->res.start, resource_size(&dev->res));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 if (!host->base) {
1400 ret = -ENOMEM;
1401 goto clk_disable;
1402 }
1403
1404 mmc->ops = &mmci_ops;
Linus Walleij7f294e42011-07-08 09:57:15 +01001405 /*
1406 * The ARM and ST versions of the block have slightly different
1407 * clock divider equations which means that the minimum divider
1408 * differs too.
1409 */
1410 if (variant->st_clkdiv)
1411 mmc->f_min = DIV_ROUND_UP(host->mclk, 257);
1412 else
1413 mmc->f_min = DIV_ROUND_UP(host->mclk, 512);
Linus Walleij808d97c2010-04-08 07:39:38 +01001414 /*
1415 * If the platform data supplies a maximum operating
1416 * frequency, this takes precedence. Else, we fall back
1417 * to using the module parameter, which has a (low)
1418 * default value in case it is not specified. Either
1419 * value must not exceed the clock rate into the block,
1420 * of course.
1421 */
1422 if (plat->f_max)
1423 mmc->f_max = min(host->mclk, plat->f_max);
1424 else
1425 mmc->f_max = min(host->mclk, fmax);
Linus Walleij64de0282010-02-19 01:09:10 +01001426 dev_dbg(mmc_dev(mmc), "clocking block at %u Hz\n", mmc->f_max);
1427
Linus Walleija9a83782012-10-29 14:39:30 +01001428 host->pinctrl = devm_pinctrl_get(&dev->dev);
1429 if (IS_ERR(host->pinctrl)) {
1430 ret = PTR_ERR(host->pinctrl);
1431 goto clk_disable;
1432 }
1433
1434 host->pins_default = pinctrl_lookup_state(host->pinctrl,
1435 PINCTRL_STATE_DEFAULT);
1436
1437 /* enable pins to be muxed in and configured */
1438 if (!IS_ERR(host->pins_default)) {
1439 ret = pinctrl_select_state(host->pinctrl, host->pins_default);
1440 if (ret)
1441 dev_warn(&dev->dev, "could not set default pins\n");
1442 } else
1443 dev_warn(&dev->dev, "could not get default pinstate\n");
1444
Ulf Hansson599c1d52013-01-07 16:22:50 +01001445 /* Get regulators and the supported OCR mask */
1446 mmc_regulator_get_supply(mmc);
1447 if (!mmc->ocr_avail)
Linus Walleij34e84f32009-09-22 14:41:40 +01001448 mmc->ocr_avail = plat->ocr_mask;
Ulf Hansson599c1d52013-01-07 16:22:50 +01001449 else if (plat->ocr_mask)
1450 dev_warn(mmc_dev(mmc), "Platform OCR mask is ignored\n");
1451
Linus Walleij9e6c82c2009-09-14 12:57:11 +01001452 mmc->caps = plat->capabilities;
Per Forlin5a092622011-11-14 12:02:28 +01001453 mmc->caps2 = plat->capabilities2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
Ulf Hansson70be2082013-01-07 15:35:06 +01001455 /* We support these PM capabilities. */
1456 mmc->pm_caps = MMC_PM_KEEP_POWER;
1457
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 /*
1459 * We can do SGIO
1460 */
Martin K. Petersena36274e2010-09-10 01:33:59 -04001461 mmc->max_segs = NR_SG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462
1463 /*
Rabin Vincent08458ef2010-07-21 12:55:59 +01001464 * Since only a certain number of bits are valid in the data length
1465 * register, we must ensure that we don't exceed 2^num-1 bytes in a
1466 * single request.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 */
Rabin Vincent08458ef2010-07-21 12:55:59 +01001468 mmc->max_req_size = (1 << variant->datalength_bits) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469
1470 /*
1471 * Set the maximum segment size. Since we aren't doing DMA
1472 * (yet) we are only limited by the data length register.
1473 */
Pierre Ossman55db8902006-11-21 17:55:45 +01001474 mmc->max_seg_size = mmc->max_req_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +01001476 /*
1477 * Block size can be up to 2048 bytes, but must be a power of two.
1478 */
Will Deacon8f7f6b72012-02-24 11:25:21 +00001479 mmc->max_blk_size = 1 << 11;
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +01001480
Pierre Ossman55db8902006-11-21 17:55:45 +01001481 /*
Will Deacon8f7f6b72012-02-24 11:25:21 +00001482 * Limit the number of blocks transferred so that we don't overflow
1483 * the maximum request size.
Pierre Ossman55db8902006-11-21 17:55:45 +01001484 */
Will Deacon8f7f6b72012-02-24 11:25:21 +00001485 mmc->max_blk_count = mmc->max_req_size >> 11;
Pierre Ossman55db8902006-11-21 17:55:45 +01001486
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 spin_lock_init(&host->lock);
1488
1489 writel(0, host->base + MMCIMASK0);
1490 writel(0, host->base + MMCIMASK1);
1491 writel(0xfff, host->base + MMCICLEAR);
1492
Roland Stigge2805b9a2012-06-17 21:14:27 +01001493 if (plat->gpio_cd == -EPROBE_DEFER) {
1494 ret = -EPROBE_DEFER;
1495 goto err_gpio_cd;
1496 }
Russell King89001442009-07-09 15:16:07 +01001497 if (gpio_is_valid(plat->gpio_cd)) {
1498 ret = gpio_request(plat->gpio_cd, DRIVER_NAME " (cd)");
1499 if (ret == 0)
1500 ret = gpio_direction_input(plat->gpio_cd);
1501 if (ret == 0)
1502 host->gpio_cd = plat->gpio_cd;
1503 else if (ret != -ENOSYS)
1504 goto err_gpio_cd;
Rabin Vincent148b8b32010-08-09 12:55:48 +01001505
Linus Walleij17ee0832011-05-05 17:23:10 +01001506 /*
1507 * A gpio pin that will detect cards when inserted and removed
1508 * will most likely want to trigger on the edges if it is
1509 * 0 when ejected and 1 when inserted (or mutatis mutandis
1510 * for the inverted case) so we request triggers on both
1511 * edges.
1512 */
Rabin Vincent148b8b32010-08-09 12:55:48 +01001513 ret = request_any_context_irq(gpio_to_irq(plat->gpio_cd),
Linus Walleij17ee0832011-05-05 17:23:10 +01001514 mmci_cd_irq,
1515 IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING,
1516 DRIVER_NAME " (cd)", host);
Rabin Vincent148b8b32010-08-09 12:55:48 +01001517 if (ret >= 0)
1518 host->gpio_cd_irq = gpio_to_irq(plat->gpio_cd);
Russell King89001442009-07-09 15:16:07 +01001519 }
Roland Stigge2805b9a2012-06-17 21:14:27 +01001520 if (plat->gpio_wp == -EPROBE_DEFER) {
1521 ret = -EPROBE_DEFER;
1522 goto err_gpio_wp;
1523 }
Russell King89001442009-07-09 15:16:07 +01001524 if (gpio_is_valid(plat->gpio_wp)) {
1525 ret = gpio_request(plat->gpio_wp, DRIVER_NAME " (wp)");
1526 if (ret == 0)
1527 ret = gpio_direction_input(plat->gpio_wp);
1528 if (ret == 0)
1529 host->gpio_wp = plat->gpio_wp;
1530 else if (ret != -ENOSYS)
1531 goto err_gpio_wp;
1532 }
1533
Rabin Vincent4b8caec2010-08-09 12:56:40 +01001534 if ((host->plat->status || host->gpio_cd != -ENOSYS)
1535 && host->gpio_cd_irq < 0)
Rabin Vincent148b8b32010-08-09 12:55:48 +01001536 mmc->caps |= MMC_CAP_NEEDS_POLL;
1537
Thomas Gleixnerdace1452006-07-01 19:29:38 -07001538 ret = request_irq(dev->irq[0], mmci_irq, IRQF_SHARED, DRIVER_NAME " (cmd)", host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 if (ret)
1540 goto unmap;
1541
Russell Kingdfb851852012-05-03 11:33:15 +01001542 if (!dev->irq[1])
Linus Walleij2686b4b2010-10-19 12:39:48 +01001543 host->singleirq = true;
1544 else {
1545 ret = request_irq(dev->irq[1], mmci_pio_irq, IRQF_SHARED,
1546 DRIVER_NAME " (pio)", host);
1547 if (ret)
1548 goto irq0_free;
1549 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550
Linus Walleij8cb28152011-01-24 15:22:13 +01001551 writel(MCI_IRQENABLE, host->base + MMCIMASK0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552
1553 amba_set_drvdata(dev, mmc);
1554
Russell Kingc8ebae32011-01-11 19:35:53 +00001555 dev_info(&dev->dev, "%s: PL%03x manf %x rev%u at 0x%08llx irq %d,%d (pio)\n",
1556 mmc_hostname(mmc), amba_part(dev), amba_manf(dev),
1557 amba_rev(dev), (unsigned long long)dev->res.start,
1558 dev->irq[0], dev->irq[1]);
1559
1560 mmci_dma_setup(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001562 pm_runtime_set_autosuspend_delay(&dev->dev, 50);
1563 pm_runtime_use_autosuspend(&dev->dev);
Russell King1c3be362011-08-14 09:17:05 +01001564 pm_runtime_put(&dev->dev);
1565
Russell King8c11a942010-12-28 19:40:40 +00001566 mmc_add_host(mmc);
1567
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 return 0;
1569
1570 irq0_free:
1571 free_irq(dev->irq[0], host);
1572 unmap:
Russell King89001442009-07-09 15:16:07 +01001573 if (host->gpio_wp != -ENOSYS)
1574 gpio_free(host->gpio_wp);
1575 err_gpio_wp:
Rabin Vincent148b8b32010-08-09 12:55:48 +01001576 if (host->gpio_cd_irq >= 0)
1577 free_irq(host->gpio_cd_irq, host);
Russell King89001442009-07-09 15:16:07 +01001578 if (host->gpio_cd != -ENOSYS)
1579 gpio_free(host->gpio_cd);
1580 err_gpio_cd:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 iounmap(host->base);
1582 clk_disable:
Julia Lawallac940932012-08-26 16:00:59 +00001583 clk_disable_unprepare(host->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 host_free:
1585 mmc_free_host(mmc);
1586 rel_regions:
1587 amba_release_regions(dev);
1588 out:
1589 return ret;
1590}
1591
Bill Pemberton6e0ee712012-11-19 13:26:03 -05001592static int mmci_remove(struct amba_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593{
1594 struct mmc_host *mmc = amba_get_drvdata(dev);
1595
1596 amba_set_drvdata(dev, NULL);
1597
1598 if (mmc) {
1599 struct mmci_host *host = mmc_priv(mmc);
1600
Russell King1c3be362011-08-14 09:17:05 +01001601 /*
1602 * Undo pm_runtime_put() in probe. We use the _sync
1603 * version here so that we can access the primecell.
1604 */
1605 pm_runtime_get_sync(&dev->dev);
1606
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 mmc_remove_host(mmc);
1608
1609 writel(0, host->base + MMCIMASK0);
1610 writel(0, host->base + MMCIMASK1);
1611
1612 writel(0, host->base + MMCICOMMAND);
1613 writel(0, host->base + MMCIDATACTRL);
1614
Russell Kingc8ebae32011-01-11 19:35:53 +00001615 mmci_dma_release(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 free_irq(dev->irq[0], host);
Linus Walleij2686b4b2010-10-19 12:39:48 +01001617 if (!host->singleirq)
1618 free_irq(dev->irq[1], host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619
Russell King89001442009-07-09 15:16:07 +01001620 if (host->gpio_wp != -ENOSYS)
1621 gpio_free(host->gpio_wp);
Rabin Vincent148b8b32010-08-09 12:55:48 +01001622 if (host->gpio_cd_irq >= 0)
1623 free_irq(host->gpio_cd_irq, host);
Russell King89001442009-07-09 15:16:07 +01001624 if (host->gpio_cd != -ENOSYS)
1625 gpio_free(host->gpio_cd);
1626
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 iounmap(host->base);
Julia Lawallac940932012-08-26 16:00:59 +00001628 clk_disable_unprepare(host->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629
1630 mmc_free_host(mmc);
1631
1632 amba_release_regions(dev);
1633 }
1634
1635 return 0;
1636}
1637
Ulf Hansson48fa7002011-12-13 16:59:34 +01001638#ifdef CONFIG_SUSPEND
1639static int mmci_suspend(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640{
Ulf Hansson48fa7002011-12-13 16:59:34 +01001641 struct amba_device *adev = to_amba_device(dev);
1642 struct mmc_host *mmc = amba_get_drvdata(adev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 int ret = 0;
1644
1645 if (mmc) {
1646 struct mmci_host *host = mmc_priv(mmc);
1647
Matt Fleming1a13f8f2010-05-26 14:42:08 -07001648 ret = mmc_suspend_host(mmc);
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001649 if (ret == 0) {
1650 pm_runtime_get_sync(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 writel(0, host->base + MMCIMASK0);
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001652 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 }
1654
1655 return ret;
1656}
1657
Ulf Hansson48fa7002011-12-13 16:59:34 +01001658static int mmci_resume(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659{
Ulf Hansson48fa7002011-12-13 16:59:34 +01001660 struct amba_device *adev = to_amba_device(dev);
1661 struct mmc_host *mmc = amba_get_drvdata(adev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 int ret = 0;
1663
1664 if (mmc) {
1665 struct mmci_host *host = mmc_priv(mmc);
1666
1667 writel(MCI_IRQENABLE, host->base + MMCIMASK0);
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001668 pm_runtime_put(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669
1670 ret = mmc_resume_host(mmc);
1671 }
1672
1673 return ret;
1674}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675#endif
1676
Ulf Hansson82592932013-01-09 11:15:26 +01001677#ifdef CONFIG_PM_RUNTIME
1678static int mmci_runtime_suspend(struct device *dev)
1679{
1680 struct amba_device *adev = to_amba_device(dev);
1681 struct mmc_host *mmc = amba_get_drvdata(adev);
1682
1683 if (mmc) {
1684 struct mmci_host *host = mmc_priv(mmc);
1685 clk_disable_unprepare(host->clk);
1686 }
1687
1688 return 0;
1689}
1690
1691static int mmci_runtime_resume(struct device *dev)
1692{
1693 struct amba_device *adev = to_amba_device(dev);
1694 struct mmc_host *mmc = amba_get_drvdata(adev);
1695
1696 if (mmc) {
1697 struct mmci_host *host = mmc_priv(mmc);
1698 clk_prepare_enable(host->clk);
1699 }
1700
1701 return 0;
1702}
1703#endif
1704
Ulf Hansson48fa7002011-12-13 16:59:34 +01001705static const struct dev_pm_ops mmci_dev_pm_ops = {
1706 SET_SYSTEM_SLEEP_PM_OPS(mmci_suspend, mmci_resume)
Ulf Hansson82592932013-01-09 11:15:26 +01001707 SET_RUNTIME_PM_OPS(mmci_runtime_suspend, mmci_runtime_resume, NULL)
Ulf Hansson48fa7002011-12-13 16:59:34 +01001708};
1709
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710static struct amba_id mmci_ids[] = {
1711 {
1712 .id = 0x00041180,
Pawel Moll768fbc12011-03-11 17:18:07 +00001713 .mask = 0xff0fffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001714 .data = &variant_arm,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 },
1716 {
Pawel Moll768fbc12011-03-11 17:18:07 +00001717 .id = 0x01041180,
1718 .mask = 0xff0fffff,
1719 .data = &variant_arm_extended_fifo,
1720 },
1721 {
Pawel Moll3a372982013-01-24 14:12:45 +01001722 .id = 0x02041180,
1723 .mask = 0xff0fffff,
1724 .data = &variant_arm_extended_fifo_hwfc,
1725 },
1726 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 .id = 0x00041181,
1728 .mask = 0x000fffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001729 .data = &variant_arm,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 },
Linus Walleijcc30d602009-01-04 15:18:54 +01001731 /* ST Micro variants */
1732 {
1733 .id = 0x00180180,
1734 .mask = 0x00ffffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001735 .data = &variant_u300,
Linus Walleijcc30d602009-01-04 15:18:54 +01001736 },
1737 {
Linus Walleij34fd4212012-04-10 17:43:59 +01001738 .id = 0x10180180,
1739 .mask = 0xf0ffffff,
1740 .data = &variant_nomadik,
1741 },
1742 {
Linus Walleijcc30d602009-01-04 15:18:54 +01001743 .id = 0x00280180,
1744 .mask = 0x00ffffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001745 .data = &variant_u300,
1746 },
1747 {
1748 .id = 0x00480180,
Philippe Langlais1784b152011-03-25 08:51:52 +01001749 .mask = 0xf0ffffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001750 .data = &variant_ux500,
Linus Walleijcc30d602009-01-04 15:18:54 +01001751 },
Philippe Langlais1784b152011-03-25 08:51:52 +01001752 {
1753 .id = 0x10480180,
1754 .mask = 0xf0ffffff,
1755 .data = &variant_ux500v2,
1756 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 { 0, 0 },
1758};
1759
Dave Martin9f998352011-10-05 15:15:21 +01001760MODULE_DEVICE_TABLE(amba, mmci_ids);
1761
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762static struct amba_driver mmci_driver = {
1763 .drv = {
1764 .name = DRIVER_NAME,
Ulf Hansson48fa7002011-12-13 16:59:34 +01001765 .pm = &mmci_dev_pm_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 },
1767 .probe = mmci_probe,
Bill Pemberton0433c142012-11-19 13:20:26 -05001768 .remove = mmci_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 .id_table = mmci_ids,
1770};
1771
viresh kumar9e5ed092012-03-15 10:40:38 +01001772module_amba_driver(mmci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774module_param(fmax, uint, 0444);
1775
1776MODULE_DESCRIPTION("ARM PrimeCell PL180/181 Multimedia Card Interface driver");
1777MODULE_LICENSE("GPL");