mmc: mmci: Add Qualcomm specific register defines.
[deliverable/linux.git] / drivers / mmc / host / mmci.c
CommitLineData
1da177e4 1/*
70f10482 2 * linux/drivers/mmc/host/mmci.c - ARM PrimeCell MMCI PL180/1 driver
1da177e4
LT
3 *
4 * Copyright (C) 2003 Deep Blue Solutions, Ltd, All Rights Reserved.
c8ebae37 5 * Copyright (C) 2010 ST-Ericsson SA
1da177e4
LT
6 *
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 */
1da177e4
LT
11#include <linux/module.h>
12#include <linux/moduleparam.h>
13#include <linux/init.h>
14#include <linux/ioport.h>
15#include <linux/device.h>
ef289982 16#include <linux/io.h>
1da177e4 17#include <linux/interrupt.h>
613b152c 18#include <linux/kernel.h>
000bc9d5 19#include <linux/slab.h>
1da177e4
LT
20#include <linux/delay.h>
21#include <linux/err.h>
22#include <linux/highmem.h>
019a5f56 23#include <linux/log2.h>
70be208f 24#include <linux/mmc/pm.h>
1da177e4 25#include <linux/mmc/host.h>
34177802 26#include <linux/mmc/card.h>
d2762090 27#include <linux/mmc/slot-gpio.h>
a62c80e5 28#include <linux/amba/bus.h>
f8ce2547 29#include <linux/clk.h>
bd6dee6f 30#include <linux/scatterlist.h>
89001446 31#include <linux/gpio.h>
9a597016 32#include <linux/of_gpio.h>
34e84f39 33#include <linux/regulator/consumer.h>
c8ebae37
RK
34#include <linux/dmaengine.h>
35#include <linux/dma-mapping.h>
36#include <linux/amba/mmci.h>
1c3be369 37#include <linux/pm_runtime.h>
258aea76 38#include <linux/types.h>
a9a83785 39#include <linux/pinctrl/consumer.h>
1da177e4 40
7b09cdac 41#include <asm/div64.h>
1da177e4 42#include <asm/io.h>
c6b8fdad 43#include <asm/sizes.h>
1da177e4
LT
44
45#include "mmci.h"
46
47#define DRIVER_NAME "mmci-pl18x"
48
1da177e4
LT
49static unsigned int fmax = 515633;
50
4956e109
RV
51/**
52 * struct variant_data - MMCI variant-specific quirks
53 * @clkreg: default value for MCICLOCK register
4380c14f 54 * @clkreg_enable: enable value for MMCICLOCK register
08458ef6 55 * @datalength_bits: number of bits in the MMCIDATALENGTH register
8301bb68
RV
56 * @fifosize: number of bytes that can be written when MMCI_TXFIFOEMPTY
57 * is asserted (likewise for RX)
58 * @fifohalfsize: number of bytes that can be written when MCI_TXFIFOHALFEMPTY
59 * is asserted (likewise for RX)
34177802 60 * @sdio: variant supports SDIO
b70a67f9 61 * @st_clkdiv: true if using a ST-specific clock divider algorithm
1784b157 62 * @blksz_datactrl16: true if Block size is at b16..b30 position in datactrl register
7d72a1d4 63 * @pwrreg_powerup: power up value for MMCIPOWER register
4d1a3a0d 64 * @signal_direction: input/out direction of bus signals can be indicated
f4670dae 65 * @pwrreg_clkgate: MMCIPOWER register must be used to gate the clock
01259620 66 * @busy_detect: true if busy detection on dat0 is supported
1ff44433 67 * @pwrreg_nopower: bits in MMCIPOWER don't controls ext. power supply
4956e109
RV
68 */
69struct variant_data {
70 unsigned int clkreg;
4380c14f 71 unsigned int clkreg_enable;
08458ef6 72 unsigned int datalength_bits;
8301bb68
RV
73 unsigned int fifosize;
74 unsigned int fifohalfsize;
34177802 75 bool sdio;
b70a67f9 76 bool st_clkdiv;
1784b157 77 bool blksz_datactrl16;
7d72a1d4 78 u32 pwrreg_powerup;
4d1a3a0d 79 bool signal_direction;
f4670dae 80 bool pwrreg_clkgate;
01259620 81 bool busy_detect;
1ff44433 82 bool pwrreg_nopower;
4956e109
RV
83};
84
85static struct variant_data variant_arm = {
8301bb68
RV
86 .fifosize = 16 * 4,
87 .fifohalfsize = 8 * 4,
08458ef6 88 .datalength_bits = 16,
7d72a1d4 89 .pwrreg_powerup = MCI_PWR_UP,
4956e109
RV
90};
91
768fbc18
PM
92static struct variant_data variant_arm_extended_fifo = {
93 .fifosize = 128 * 4,
94 .fifohalfsize = 64 * 4,
95 .datalength_bits = 16,
7d72a1d4 96 .pwrreg_powerup = MCI_PWR_UP,
768fbc18
PM
97};
98
3a37298a
PM
99static struct variant_data variant_arm_extended_fifo_hwfc = {
100 .fifosize = 128 * 4,
101 .fifohalfsize = 64 * 4,
102 .clkreg_enable = MCI_ARM_HWFCEN,
103 .datalength_bits = 16,
104 .pwrreg_powerup = MCI_PWR_UP,
105};
106
4956e109 107static struct variant_data variant_u300 = {
8301bb68
RV
108 .fifosize = 16 * 4,
109 .fifohalfsize = 8 * 4,
49ac215e 110 .clkreg_enable = MCI_ST_U300_HWFCEN,
08458ef6 111 .datalength_bits = 16,
34177802 112 .sdio = true,
7d72a1d4 113 .pwrreg_powerup = MCI_PWR_ON,
4d1a3a0d 114 .signal_direction = true,
f4670dae 115 .pwrreg_clkgate = true,
1ff44433 116 .pwrreg_nopower = true,
4956e109
RV
117};
118
34fd4213
LW
119static struct variant_data variant_nomadik = {
120 .fifosize = 16 * 4,
121 .fifohalfsize = 8 * 4,
122 .clkreg = MCI_CLK_ENABLE,
123 .datalength_bits = 24,
124 .sdio = true,
125 .st_clkdiv = true,
126 .pwrreg_powerup = MCI_PWR_ON,
127 .signal_direction = true,
f4670dae 128 .pwrreg_clkgate = true,
1ff44433 129 .pwrreg_nopower = true,
34fd4213
LW
130};
131
4956e109 132static struct variant_data variant_ux500 = {
8301bb68
RV
133 .fifosize = 30 * 4,
134 .fifohalfsize = 8 * 4,
4956e109 135 .clkreg = MCI_CLK_ENABLE,
49ac215e 136 .clkreg_enable = MCI_ST_UX500_HWFCEN,
08458ef6 137 .datalength_bits = 24,
34177802 138 .sdio = true,
b70a67f9 139 .st_clkdiv = true,
7d72a1d4 140 .pwrreg_powerup = MCI_PWR_ON,
4d1a3a0d 141 .signal_direction = true,
f4670dae 142 .pwrreg_clkgate = true,
01259620 143 .busy_detect = true,
1ff44433 144 .pwrreg_nopower = true,
4956e109 145};
b70a67f9 146
1784b157
PL
147static struct variant_data variant_ux500v2 = {
148 .fifosize = 30 * 4,
149 .fifohalfsize = 8 * 4,
150 .clkreg = MCI_CLK_ENABLE,
151 .clkreg_enable = MCI_ST_UX500_HWFCEN,
152 .datalength_bits = 24,
153 .sdio = true,
154 .st_clkdiv = true,
155 .blksz_datactrl16 = true,
7d72a1d4 156 .pwrreg_powerup = MCI_PWR_ON,
4d1a3a0d 157 .signal_direction = true,
f4670dae 158 .pwrreg_clkgate = true,
01259620 159 .busy_detect = true,
1ff44433 160 .pwrreg_nopower = true,
1784b157
PL
161};
162
01259620
UH
163static int mmci_card_busy(struct mmc_host *mmc)
164{
165 struct mmci_host *host = mmc_priv(mmc);
166 unsigned long flags;
167 int busy = 0;
168
169 pm_runtime_get_sync(mmc_dev(mmc));
170
171 spin_lock_irqsave(&host->lock, flags);
172 if (readl(host->base + MMCISTATUS) & MCI_ST_CARDBUSY)
173 busy = 1;
174 spin_unlock_irqrestore(&host->lock, flags);
175
176 pm_runtime_mark_last_busy(mmc_dev(mmc));
177 pm_runtime_put_autosuspend(mmc_dev(mmc));
178
179 return busy;
180}
181
653a761e
UH
182/*
183 * Validate mmc prerequisites
184 */
185static int mmci_validate_data(struct mmci_host *host,
186 struct mmc_data *data)
187{
188 if (!data)
189 return 0;
190
191 if (!is_power_of_2(data->blksz)) {
192 dev_err(mmc_dev(host->mmc),
193 "unsupported block size (%d bytes)\n", data->blksz);
194 return -EINVAL;
195 }
196
197 return 0;
198}
199
f829c042
UH
200static void mmci_reg_delay(struct mmci_host *host)
201{
202 /*
203 * According to the spec, at least three feedback clock cycles
204 * of max 52 MHz must pass between two writes to the MMCICLOCK reg.
205 * Three MCLK clock cycles must pass between two MMCIPOWER reg writes.
206 * Worst delay time during card init is at 100 kHz => 30 us.
207 * Worst delay time when up and running is at 25 MHz => 120 ns.
208 */
209 if (host->cclk < 25000000)
210 udelay(30);
211 else
212 ndelay(120);
213}
214
7437cfa5
UH
215/*
216 * This must be called with host->lock held
217 */
218static void mmci_write_clkreg(struct mmci_host *host, u32 clk)
219{
220 if (host->clk_reg != clk) {
221 host->clk_reg = clk;
222 writel(clk, host->base + MMCICLOCK);
223 }
224}
225
226/*
227 * This must be called with host->lock held
228 */
229static void mmci_write_pwrreg(struct mmci_host *host, u32 pwr)
230{
231 if (host->pwr_reg != pwr) {
232 host->pwr_reg = pwr;
233 writel(pwr, host->base + MMCIPOWER);
234 }
235}
236
9cc639a2
UH
237/*
238 * This must be called with host->lock held
239 */
240static void mmci_write_datactrlreg(struct mmci_host *host, u32 datactrl)
241{
01259620
UH
242 /* Keep ST Micro busy mode if enabled */
243 datactrl |= host->datactrl_reg & MCI_ST_DPSM_BUSYMODE;
244
9cc639a2
UH
245 if (host->datactrl_reg != datactrl) {
246 host->datactrl_reg = datactrl;
247 writel(datactrl, host->base + MMCIDATACTRL);
248 }
249}
250
a6a6464a
LW
251/*
252 * This must be called with host->lock held
253 */
254static void mmci_set_clkreg(struct mmci_host *host, unsigned int desired)
255{
4956e109
RV
256 struct variant_data *variant = host->variant;
257 u32 clk = variant->clkreg;
a6a6464a 258
c58a8509
UH
259 /* Make sure cclk reflects the current calculated clock */
260 host->cclk = 0;
261
a6a6464a
LW
262 if (desired) {
263 if (desired >= host->mclk) {
991a86e1 264 clk = MCI_CLK_BYPASS;
399bc486
LW
265 if (variant->st_clkdiv)
266 clk |= MCI_ST_UX500_NEG_EDGE;
a6a6464a 267 host->cclk = host->mclk;
b70a67f9
LW
268 } else if (variant->st_clkdiv) {
269 /*
270 * DB8500 TRM says f = mclk / (clkdiv + 2)
271 * => clkdiv = (mclk / f) - 2
272 * Round the divider up so we don't exceed the max
273 * frequency
274 */
275 clk = DIV_ROUND_UP(host->mclk, desired) - 2;
276 if (clk >= 256)
277 clk = 255;
278 host->cclk = host->mclk / (clk + 2);
a6a6464a 279 } else {
b70a67f9
LW
280 /*
281 * PL180 TRM says f = mclk / (2 * (clkdiv + 1))
282 * => clkdiv = mclk / (2 * f) - 1
283 */
a6a6464a
LW
284 clk = host->mclk / (2 * desired) - 1;
285 if (clk >= 256)
286 clk = 255;
287 host->cclk = host->mclk / (2 * (clk + 1));
288 }
4380c14f
RV
289
290 clk |= variant->clkreg_enable;
a6a6464a
LW
291 clk |= MCI_CLK_ENABLE;
292 /* This hasn't proven to be worthwhile */
293 /* clk |= MCI_CLK_PWRSAVE; */
294 }
295
c58a8509
UH
296 /* Set actual clock for debug */
297 host->mmc->actual_clock = host->cclk;
298
9e6c82cd 299 if (host->mmc->ios.bus_width == MMC_BUS_WIDTH_4)
771dc157
LW
300 clk |= MCI_4BIT_BUS;
301 if (host->mmc->ios.bus_width == MMC_BUS_WIDTH_8)
302 clk |= MCI_ST_8BIT_BUS;
9e6c82cd 303
6dad6c95
SJ
304 if (host->mmc->ios.timing == MMC_TIMING_UHS_DDR50 ||
305 host->mmc->ios.timing == MMC_TIMING_MMC_DDR52)
6dbb6ee0
UH
306 clk |= MCI_ST_UX500_NEG_EDGE;
307
7437cfa5 308 mmci_write_clkreg(host, clk);
a6a6464a
LW
309}
310
1da177e4
LT
311static void
312mmci_request_end(struct mmci_host *host, struct mmc_request *mrq)
313{
314 writel(0, host->base + MMCICOMMAND);
315
e47c222b
RK
316 BUG_ON(host->data);
317
1da177e4
LT
318 host->mrq = NULL;
319 host->cmd = NULL;
320
1da177e4 321 mmc_request_done(host->mmc, mrq);
2cd976c4
UH
322
323 pm_runtime_mark_last_busy(mmc_dev(host->mmc));
324 pm_runtime_put_autosuspend(mmc_dev(host->mmc));
1da177e4
LT
325}
326
2686b4b4
LW
327static void mmci_set_mask1(struct mmci_host *host, unsigned int mask)
328{
329 void __iomem *base = host->base;
330
331 if (host->singleirq) {
332 unsigned int mask0 = readl(base + MMCIMASK0);
333
334 mask0 &= ~MCI_IRQ1MASK;
335 mask0 |= mask;
336
337 writel(mask0, base + MMCIMASK0);
338 }
339
340 writel(mask, base + MMCIMASK1);
341}
342
1da177e4
LT
343static void mmci_stop_data(struct mmci_host *host)
344{
9cc639a2 345 mmci_write_datactrlreg(host, 0);
2686b4b4 346 mmci_set_mask1(host, 0);
1da177e4
LT
347 host->data = NULL;
348}
349
4ce1d6cb
RV
350static void mmci_init_sg(struct mmci_host *host, struct mmc_data *data)
351{
352 unsigned int flags = SG_MITER_ATOMIC;
353
354 if (data->flags & MMC_DATA_READ)
355 flags |= SG_MITER_TO_SG;
356 else
357 flags |= SG_MITER_FROM_SG;
358
359 sg_miter_start(&host->sg_miter, data->sg, data->sg_len, flags);
360}
361
c8ebae37
RK
362/*
363 * All the DMA operation mode stuff goes inside this ifdef.
364 * This assumes that you have a generic DMA device interface,
365 * no custom DMA interfaces are supported.
366 */
367#ifdef CONFIG_DMA_ENGINE
c3be1efd 368static void mmci_dma_setup(struct mmci_host *host)
c8ebae37 369{
c8ebae37
RK
370 const char *rxname, *txname;
371 dma_cap_mask_t mask;
372
1fd83f0e
LJ
373 host->dma_rx_channel = dma_request_slave_channel(mmc_dev(host->mmc), "rx");
374 host->dma_tx_channel = dma_request_slave_channel(mmc_dev(host->mmc), "tx");
c8ebae37 375
58c7ccbf
PF
376 /* initialize pre request cookie */
377 host->next_data.cookie = 1;
378
c8ebae37
RK
379 /* Try to acquire a generic DMA engine slave channel */
380 dma_cap_zero(mask);
381 dma_cap_set(DMA_SLAVE, mask);
382
1fd83f0e
LJ
383 /*
384 * If only an RX channel is specified, the driver will
385 * attempt to use it bidirectionally, however if it is
386 * is specified but cannot be located, DMA will be disabled.
387 */
388 if (host->dma_rx_channel && !host->dma_tx_channel)
389 host->dma_tx_channel = host->dma_rx_channel;
390
c8ebae37
RK
391 if (host->dma_rx_channel)
392 rxname = dma_chan_name(host->dma_rx_channel);
393 else
394 rxname = "none";
395
396 if (host->dma_tx_channel)
397 txname = dma_chan_name(host->dma_tx_channel);
398 else
399 txname = "none";
400
401 dev_info(mmc_dev(host->mmc), "DMA channels RX %s, TX %s\n",
402 rxname, txname);
403
404 /*
405 * Limit the maximum segment size in any SG entry according to
406 * the parameters of the DMA engine device.
407 */
408 if (host->dma_tx_channel) {
409 struct device *dev = host->dma_tx_channel->device->dev;
410 unsigned int max_seg_size = dma_get_max_seg_size(dev);
411
412 if (max_seg_size < host->mmc->max_seg_size)
413 host->mmc->max_seg_size = max_seg_size;
414 }
415 if (host->dma_rx_channel) {
416 struct device *dev = host->dma_rx_channel->device->dev;
417 unsigned int max_seg_size = dma_get_max_seg_size(dev);
418
419 if (max_seg_size < host->mmc->max_seg_size)
420 host->mmc->max_seg_size = max_seg_size;
421 }
422}
423
424/*
6e0ee714 425 * This is used in or so inline it
c8ebae37
RK
426 * so it can be discarded.
427 */
428static inline void mmci_dma_release(struct mmci_host *host)
429{
c8ebae37
RK
430 if (host->dma_rx_channel)
431 dma_release_channel(host->dma_rx_channel);
8c3a05b4 432 if (host->dma_tx_channel)
c8ebae37
RK
433 dma_release_channel(host->dma_tx_channel);
434 host->dma_rx_channel = host->dma_tx_channel = NULL;
435}
436
653a761e
UH
437static void mmci_dma_data_error(struct mmci_host *host)
438{
439 dev_err(mmc_dev(host->mmc), "error during DMA transfer!\n");
440 dmaengine_terminate_all(host->dma_current);
441 host->dma_current = NULL;
442 host->dma_desc_current = NULL;
443 host->data->host_cookie = 0;
444}
445
c8ebae37
RK
446static void mmci_dma_unmap(struct mmci_host *host, struct mmc_data *data)
447{
653a761e 448 struct dma_chan *chan;
c8ebae37 449 enum dma_data_direction dir;
653a761e
UH
450
451 if (data->flags & MMC_DATA_READ) {
452 dir = DMA_FROM_DEVICE;
453 chan = host->dma_rx_channel;
454 } else {
455 dir = DMA_TO_DEVICE;
456 chan = host->dma_tx_channel;
457 }
458
459 dma_unmap_sg(chan->device->dev, data->sg, data->sg_len, dir);
460}
461
462static void mmci_dma_finalize(struct mmci_host *host, struct mmc_data *data)
463{
c8ebae37
RK
464 u32 status;
465 int i;
466
467 /* Wait up to 1ms for the DMA to complete */
468 for (i = 0; ; i++) {
469 status = readl(host->base + MMCISTATUS);
470 if (!(status & MCI_RXDATAAVLBLMASK) || i >= 100)
471 break;
472 udelay(10);
473 }
474
475 /*
476 * Check to see whether we still have some data left in the FIFO -
477 * this catches DMA controllers which are unable to monitor the
478 * DMALBREQ and DMALSREQ signals while allowing us to DMA to non-
479 * contiguous buffers. On TX, we'll get a FIFO underrun error.
480 */
481 if (status & MCI_RXDATAAVLBLMASK) {
653a761e 482 mmci_dma_data_error(host);
c8ebae37
RK
483 if (!data->error)
484 data->error = -EIO;
485 }
486
58c7ccbf 487 if (!data->host_cookie)
653a761e 488 mmci_dma_unmap(host, data);
c8ebae37
RK
489
490 /*
491 * Use of DMA with scatter-gather is impossible.
492 * Give up with DMA and switch back to PIO mode.
493 */
494 if (status & MCI_RXDATAAVLBLMASK) {
495 dev_err(mmc_dev(host->mmc), "buggy DMA detected. Taking evasive action.\n");
496 mmci_dma_release(host);
497 }
c8ebae37 498
653a761e
UH
499 host->dma_current = NULL;
500 host->dma_desc_current = NULL;
c8ebae37
RK
501}
502
653a761e
UH
503/* prepares DMA channel and DMA descriptor, returns non-zero on failure */
504static int __mmci_dma_prep_data(struct mmci_host *host, struct mmc_data *data,
505 struct dma_chan **dma_chan,
506 struct dma_async_tx_descriptor **dma_desc)
c8ebae37
RK
507{
508 struct variant_data *variant = host->variant;
509 struct dma_slave_config conf = {
510 .src_addr = host->phybase + MMCIFIFO,
511 .dst_addr = host->phybase + MMCIFIFO,
512 .src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES,
513 .dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES,
514 .src_maxburst = variant->fifohalfsize >> 2, /* # of words */
515 .dst_maxburst = variant->fifohalfsize >> 2, /* # of words */
258aea76 516 .device_fc = false,
c8ebae37 517 };
c8ebae37
RK
518 struct dma_chan *chan;
519 struct dma_device *device;
520 struct dma_async_tx_descriptor *desc;
05f5799c 521 enum dma_data_direction buffer_dirn;
c8ebae37
RK
522 int nr_sg;
523
c8ebae37 524 if (data->flags & MMC_DATA_READ) {
05f5799c
VK
525 conf.direction = DMA_DEV_TO_MEM;
526 buffer_dirn = DMA_FROM_DEVICE;
c8ebae37
RK
527 chan = host->dma_rx_channel;
528 } else {
05f5799c
VK
529 conf.direction = DMA_MEM_TO_DEV;
530 buffer_dirn = DMA_TO_DEVICE;
c8ebae37
RK
531 chan = host->dma_tx_channel;
532 }
533
534 /* If there's no DMA channel, fall back to PIO */
535 if (!chan)
536 return -EINVAL;
537
538 /* If less than or equal to the fifo size, don't bother with DMA */
58c7ccbf 539 if (data->blksz * data->blocks <= variant->fifosize)
c8ebae37
RK
540 return -EINVAL;
541
542 device = chan->device;
05f5799c 543 nr_sg = dma_map_sg(device->dev, data->sg, data->sg_len, buffer_dirn);
c8ebae37
RK
544 if (nr_sg == 0)
545 return -EINVAL;
546
547 dmaengine_slave_config(chan, &conf);
16052827 548 desc = dmaengine_prep_slave_sg(chan, data->sg, nr_sg,
c8ebae37
RK
549 conf.direction, DMA_CTRL_ACK);
550 if (!desc)
551 goto unmap_exit;
552
653a761e
UH
553 *dma_chan = chan;
554 *dma_desc = desc;
58c7ccbf
PF
555
556 return 0;
c8ebae37 557
58c7ccbf 558 unmap_exit:
05f5799c 559 dma_unmap_sg(device->dev, data->sg, data->sg_len, buffer_dirn);
58c7ccbf
PF
560 return -ENOMEM;
561}
562
653a761e
UH
563static inline int mmci_dma_prep_data(struct mmci_host *host,
564 struct mmc_data *data)
565{
566 /* Check if next job is already prepared. */
567 if (host->dma_current && host->dma_desc_current)
568 return 0;
569
570 /* No job were prepared thus do it now. */
571 return __mmci_dma_prep_data(host, data, &host->dma_current,
572 &host->dma_desc_current);
573}
574
575static inline int mmci_dma_prep_next(struct mmci_host *host,
576 struct mmc_data *data)
577{
578 struct mmci_host_next *nd = &host->next_data;
579 return __mmci_dma_prep_data(host, data, &nd->dma_chan, &nd->dma_desc);
580}
581
58c7ccbf
PF
582static int mmci_dma_start_data(struct mmci_host *host, unsigned int datactrl)
583{
584 int ret;
585 struct mmc_data *data = host->data;
586
653a761e 587 ret = mmci_dma_prep_data(host, host->data);
58c7ccbf
PF
588 if (ret)
589 return ret;
590
591 /* Okay, go for it. */
c8ebae37
RK
592 dev_vdbg(mmc_dev(host->mmc),
593 "Submit MMCI DMA job, sglen %d blksz %04x blks %04x flags %08x\n",
594 data->sg_len, data->blksz, data->blocks, data->flags);
58c7ccbf
PF
595 dmaengine_submit(host->dma_desc_current);
596 dma_async_issue_pending(host->dma_current);
c8ebae37
RK
597
598 datactrl |= MCI_DPSM_DMAENABLE;
599
600 /* Trigger the DMA transfer */
9cc639a2 601 mmci_write_datactrlreg(host, datactrl);
c8ebae37
RK
602
603 /*
604 * Let the MMCI say when the data is ended and it's time
605 * to fire next DMA request. When that happens, MMCI will
606 * call mmci_data_end()
607 */
608 writel(readl(host->base + MMCIMASK0) | MCI_DATAENDMASK,
609 host->base + MMCIMASK0);
610 return 0;
58c7ccbf 611}
c8ebae37 612
58c7ccbf
PF
613static void mmci_get_next_data(struct mmci_host *host, struct mmc_data *data)
614{
615 struct mmci_host_next *next = &host->next_data;
616
653a761e
UH
617 WARN_ON(data->host_cookie && data->host_cookie != next->cookie);
618 WARN_ON(!data->host_cookie && (next->dma_desc || next->dma_chan));
58c7ccbf
PF
619
620 host->dma_desc_current = next->dma_desc;
621 host->dma_current = next->dma_chan;
58c7ccbf
PF
622 next->dma_desc = NULL;
623 next->dma_chan = NULL;
c8ebae37 624}
58c7ccbf
PF
625
626static void mmci_pre_request(struct mmc_host *mmc, struct mmc_request *mrq,
627 bool is_first_req)
628{
629 struct mmci_host *host = mmc_priv(mmc);
630 struct mmc_data *data = mrq->data;
631 struct mmci_host_next *nd = &host->next_data;
632
633 if (!data)
634 return;
635
653a761e
UH
636 BUG_ON(data->host_cookie);
637
638 if (mmci_validate_data(host, data))
58c7ccbf 639 return;
58c7ccbf 640
653a761e
UH
641 if (!mmci_dma_prep_next(host, data))
642 data->host_cookie = ++nd->cookie < 0 ? 1 : nd->cookie;
58c7ccbf
PF
643}
644
645static void mmci_post_request(struct mmc_host *mmc, struct mmc_request *mrq,
646 int err)
647{
648 struct mmci_host *host = mmc_priv(mmc);
649 struct mmc_data *data = mrq->data;
58c7ccbf 650
653a761e 651 if (!data || !data->host_cookie)
58c7ccbf
PF
652 return;
653
653a761e 654 mmci_dma_unmap(host, data);
58c7ccbf 655
653a761e
UH
656 if (err) {
657 struct mmci_host_next *next = &host->next_data;
658 struct dma_chan *chan;
659 if (data->flags & MMC_DATA_READ)
660 chan = host->dma_rx_channel;
661 else
662 chan = host->dma_tx_channel;
663 dmaengine_terminate_all(chan);
58c7ccbf 664
653a761e
UH
665 next->dma_desc = NULL;
666 next->dma_chan = NULL;
58c7ccbf
PF
667 }
668}
669
c8ebae37
RK
670#else
671/* Blank functions if the DMA engine is not available */
58c7ccbf
PF
672static void mmci_get_next_data(struct mmci_host *host, struct mmc_data *data)
673{
674}
c8ebae37
RK
675static inline void mmci_dma_setup(struct mmci_host *host)
676{
677}
678
679static inline void mmci_dma_release(struct mmci_host *host)
680{
681}
682
683static inline void mmci_dma_unmap(struct mmci_host *host, struct mmc_data *data)
684{
685}
686
653a761e
UH
687static inline void mmci_dma_finalize(struct mmci_host *host,
688 struct mmc_data *data)
689{
690}
691
c8ebae37
RK
692static inline void mmci_dma_data_error(struct mmci_host *host)
693{
694}
695
696static inline int mmci_dma_start_data(struct mmci_host *host, unsigned int datactrl)
697{
698 return -ENOSYS;
699}
58c7ccbf
PF
700
701#define mmci_pre_request NULL
702#define mmci_post_request NULL
703
c8ebae37
RK
704#endif
705
1da177e4
LT
706static void mmci_start_data(struct mmci_host *host, struct mmc_data *data)
707{
8301bb68 708 struct variant_data *variant = host->variant;
1da177e4 709 unsigned int datactrl, timeout, irqmask;
7b09cdac 710 unsigned long long clks;
1da177e4 711 void __iomem *base;
3bc87f24 712 int blksz_bits;
1da177e4 713
64de0289
LW
714 dev_dbg(mmc_dev(host->mmc), "blksz %04x blks %04x flags %08x\n",
715 data->blksz, data->blocks, data->flags);
1da177e4
LT
716
717 host->data = data;
528320db 718 host->size = data->blksz * data->blocks;
51d4375d 719 data->bytes_xfered = 0;
1da177e4 720
7b09cdac 721 clks = (unsigned long long)data->timeout_ns * host->cclk;
c4a35769 722 do_div(clks, NSEC_PER_SEC);
7b09cdac
RK
723
724 timeout = data->timeout_clks + (unsigned int)clks;
1da177e4
LT
725
726 base = host->base;
727 writel(timeout, base + MMCIDATATIMER);
728 writel(host->size, base + MMCIDATALENGTH);
729
3bc87f24
RK
730 blksz_bits = ffs(data->blksz) - 1;
731 BUG_ON(1 << blksz_bits != data->blksz);
732
1784b157
PL
733 if (variant->blksz_datactrl16)
734 datactrl = MCI_DPSM_ENABLE | (data->blksz << 16);
735 else
736 datactrl = MCI_DPSM_ENABLE | blksz_bits << 4;
c8ebae37
RK
737
738 if (data->flags & MMC_DATA_READ)
1da177e4 739 datactrl |= MCI_DPSM_DIRECTION;
c8ebae37 740
7258db7e
UH
741 /* The ST Micro variants has a special bit to enable SDIO */
742 if (variant->sdio && host->mmc->card)
06c1a121
UH
743 if (mmc_card_sdio(host->mmc->card)) {
744 /*
745 * The ST Micro variants has a special bit
746 * to enable SDIO.
747 */
748 u32 clk;
749
7258db7e
UH
750 datactrl |= MCI_ST_DPSM_SDIOEN;
751
06c1a121 752 /*
70ac0935
UH
753 * The ST Micro variant for SDIO small write transfers
754 * needs to have clock H/W flow control disabled,
755 * otherwise the transfer will not start. The threshold
756 * depends on the rate of MCLK.
06c1a121 757 */
70ac0935
UH
758 if (data->flags & MMC_DATA_WRITE &&
759 (host->size < 8 ||
760 (host->size <= 8 && host->mclk > 50000000)))
06c1a121
UH
761 clk = host->clk_reg & ~variant->clkreg_enable;
762 else
763 clk = host->clk_reg | variant->clkreg_enable;
764
765 mmci_write_clkreg(host, clk);
766 }
767
6dad6c95
SJ
768 if (host->mmc->ios.timing == MMC_TIMING_UHS_DDR50 ||
769 host->mmc->ios.timing == MMC_TIMING_MMC_DDR52)
6dbb6ee0
UH
770 datactrl |= MCI_ST_DPSM_DDRMODE;
771
c8ebae37
RK
772 /*
773 * Attempt to use DMA operation mode, if this
774 * should fail, fall back to PIO mode
775 */
776 if (!mmci_dma_start_data(host, datactrl))
777 return;
778
779 /* IRQ mode, map the SG list for CPU reading/writing */
780 mmci_init_sg(host, data);
781
782 if (data->flags & MMC_DATA_READ) {
1da177e4 783 irqmask = MCI_RXFIFOHALFFULLMASK;
0425a142
RK
784
785 /*
c4d877c1
RK
786 * If we have less than the fifo 'half-full' threshold to
787 * transfer, trigger a PIO interrupt as soon as any data
788 * is available.
0425a142 789 */
c4d877c1 790 if (host->size < variant->fifohalfsize)
0425a142 791 irqmask |= MCI_RXDATAAVLBLMASK;
1da177e4
LT
792 } else {
793 /*
794 * We don't actually need to include "FIFO empty" here
795 * since its implicit in "FIFO half empty".
796 */
797 irqmask = MCI_TXFIFOHALFEMPTYMASK;
798 }
799
9cc639a2 800 mmci_write_datactrlreg(host, datactrl);
1da177e4 801 writel(readl(base + MMCIMASK0) & ~MCI_DATAENDMASK, base + MMCIMASK0);
2686b4b4 802 mmci_set_mask1(host, irqmask);
1da177e4
LT
803}
804
805static void
806mmci_start_command(struct mmci_host *host, struct mmc_command *cmd, u32 c)
807{
808 void __iomem *base = host->base;
809
64de0289 810 dev_dbg(mmc_dev(host->mmc), "op %02x arg %08x flags %08x\n",
1da177e4
LT
811 cmd->opcode, cmd->arg, cmd->flags);
812
813 if (readl(base + MMCICOMMAND) & MCI_CPSM_ENABLE) {
814 writel(0, base + MMCICOMMAND);
815 udelay(1);
816 }
817
818 c |= cmd->opcode | MCI_CPSM_ENABLE;
e9225176
RK
819 if (cmd->flags & MMC_RSP_PRESENT) {
820 if (cmd->flags & MMC_RSP_136)
821 c |= MCI_CPSM_LONGRSP;
1da177e4 822 c |= MCI_CPSM_RESPONSE;
1da177e4
LT
823 }
824 if (/*interrupt*/0)
825 c |= MCI_CPSM_INTERRUPT;
826
827 host->cmd = cmd;
828
829 writel(cmd->arg, base + MMCIARGUMENT);
830 writel(c, base + MMCICOMMAND);
831}
832
833static void
834mmci_data_irq(struct mmci_host *host, struct mmc_data *data,
835 unsigned int status)
836{
f20f8f21 837 /* First check for errors */
b63038d6
UH
838 if (status & (MCI_DATACRCFAIL|MCI_DATATIMEOUT|MCI_STARTBITERR|
839 MCI_TXUNDERRUN|MCI_RXOVERRUN)) {
8cb28155 840 u32 remain, success;
f20f8f21 841
c8ebae37 842 /* Terminate the DMA transfer */
653a761e 843 if (dma_inprogress(host)) {
c8ebae37 844 mmci_dma_data_error(host);
653a761e
UH
845 mmci_dma_unmap(host, data);
846 }
e9c091b4
RK
847
848 /*
c8afc9d5
RK
849 * Calculate how far we are into the transfer. Note that
850 * the data counter gives the number of bytes transferred
851 * on the MMC bus, not on the host side. On reads, this
852 * can be as much as a FIFO-worth of data ahead. This
853 * matters for FIFO overruns only.
e9c091b4 854 */
f5a106d9 855 remain = readl(host->base + MMCIDATACNT);
8cb28155
LW
856 success = data->blksz * data->blocks - remain;
857
c8afc9d5
RK
858 dev_dbg(mmc_dev(host->mmc), "MCI ERROR IRQ, status 0x%08x at 0x%08x\n",
859 status, success);
8cb28155
LW
860 if (status & MCI_DATACRCFAIL) {
861 /* Last block was not successful */
c8afc9d5 862 success -= 1;
17b0429d 863 data->error = -EILSEQ;
8cb28155 864 } else if (status & MCI_DATATIMEOUT) {
17b0429d 865 data->error = -ETIMEDOUT;
757df746
LW
866 } else if (status & MCI_STARTBITERR) {
867 data->error = -ECOMM;
c8afc9d5
RK
868 } else if (status & MCI_TXUNDERRUN) {
869 data->error = -EIO;
870 } else if (status & MCI_RXOVERRUN) {
871 if (success > host->variant->fifosize)
872 success -= host->variant->fifosize;
873 else
874 success = 0;
17b0429d 875 data->error = -EIO;
4ce1d6cb 876 }
51d4375d 877 data->bytes_xfered = round_down(success, data->blksz);
1da177e4 878 }
f20f8f21 879
8cb28155
LW
880 if (status & MCI_DATABLOCKEND)
881 dev_err(mmc_dev(host->mmc), "stray MCI_DATABLOCKEND interrupt\n");
f20f8f21 882
ccff9b51 883 if (status & MCI_DATAEND || data->error) {
c8ebae37 884 if (dma_inprogress(host))
653a761e 885 mmci_dma_finalize(host, data);
1da177e4
LT
886 mmci_stop_data(host);
887
8cb28155
LW
888 if (!data->error)
889 /* The error clause is handled above, success! */
51d4375d 890 data->bytes_xfered = data->blksz * data->blocks;
f20f8f21 891
024629c6 892 if (!data->stop || host->mrq->sbc) {
1da177e4
LT
893 mmci_request_end(host, data->mrq);
894 } else {
895 mmci_start_command(host, data->stop, 0);
896 }
897 }
898}
899
900static void
901mmci_cmd_irq(struct mmci_host *host, struct mmc_command *cmd,
902 unsigned int status)
903{
904 void __iomem *base = host->base;
024629c6 905 bool sbc = (cmd == host->mrq->sbc);
8d94b54d
UH
906 bool busy_resp = host->variant->busy_detect &&
907 (cmd->flags & MMC_RSP_BUSY);
908
909 /* Check if we need to wait for busy completion. */
910 if (host->busy_status && (status & MCI_ST_CARDBUSY))
911 return;
912
913 /* Enable busy completion if needed and supported. */
914 if (!host->busy_status && busy_resp &&
915 !(status & (MCI_CMDCRCFAIL|MCI_CMDTIMEOUT)) &&
916 (readl(base + MMCISTATUS) & MCI_ST_CARDBUSY)) {
917 writel(readl(base + MMCIMASK0) | MCI_ST_BUSYEND,
918 base + MMCIMASK0);
919 host->busy_status = status & (MCI_CMDSENT|MCI_CMDRESPEND);
920 return;
921 }
922
923 /* At busy completion, mask the IRQ and complete the request. */
924 if (host->busy_status) {
925 writel(readl(base + MMCIMASK0) & ~MCI_ST_BUSYEND,
926 base + MMCIMASK0);
927 host->busy_status = 0;
928 }
1da177e4
LT
929
930 host->cmd = NULL;
931
1da177e4 932 if (status & MCI_CMDTIMEOUT) {
17b0429d 933 cmd->error = -ETIMEDOUT;
1da177e4 934 } else if (status & MCI_CMDCRCFAIL && cmd->flags & MMC_RSP_CRC) {
17b0429d 935 cmd->error = -EILSEQ;
9047b435
RKAL
936 } else {
937 cmd->resp[0] = readl(base + MMCIRESPONSE0);
938 cmd->resp[1] = readl(base + MMCIRESPONSE1);
939 cmd->resp[2] = readl(base + MMCIRESPONSE2);
940 cmd->resp[3] = readl(base + MMCIRESPONSE3);
1da177e4
LT
941 }
942
024629c6 943 if ((!sbc && !cmd->data) || cmd->error) {
3b6e3c73
UH
944 if (host->data) {
945 /* Terminate the DMA transfer */
653a761e 946 if (dma_inprogress(host)) {
3b6e3c73 947 mmci_dma_data_error(host);
653a761e
UH
948 mmci_dma_unmap(host, host->data);
949 }
e47c222b 950 mmci_stop_data(host);
3b6e3c73 951 }
024629c6
UH
952 mmci_request_end(host, host->mrq);
953 } else if (sbc) {
954 mmci_start_command(host, host->mrq->cmd, 0);
1da177e4
LT
955 } else if (!(cmd->data->flags & MMC_DATA_READ)) {
956 mmci_start_data(host, cmd->data);
957 }
958}
959
960static int mmci_pio_read(struct mmci_host *host, char *buffer, unsigned int remain)
961{
962 void __iomem *base = host->base;
963 char *ptr = buffer;
964 u32 status;
26eed9a5 965 int host_remain = host->size;
1da177e4
LT
966
967 do {
26eed9a5 968 int count = host_remain - (readl(base + MMCIFIFOCNT) << 2);
1da177e4
LT
969
970 if (count > remain)
971 count = remain;
972
973 if (count <= 0)
974 break;
975
393e5e24
UH
976 /*
977 * SDIO especially may want to send something that is
978 * not divisible by 4 (as opposed to card sectors
979 * etc). Therefore make sure to always read the last bytes
980 * while only doing full 32-bit reads towards the FIFO.
981 */
982 if (unlikely(count & 0x3)) {
983 if (count < 4) {
984 unsigned char buf[4];
4b85da08 985 ioread32_rep(base + MMCIFIFO, buf, 1);
393e5e24
UH
986 memcpy(ptr, buf, count);
987 } else {
4b85da08 988 ioread32_rep(base + MMCIFIFO, ptr, count >> 2);
393e5e24
UH
989 count &= ~0x3;
990 }
991 } else {
4b85da08 992 ioread32_rep(base + MMCIFIFO, ptr, count >> 2);
393e5e24 993 }
1da177e4
LT
994
995 ptr += count;
996 remain -= count;
26eed9a5 997 host_remain -= count;
1da177e4
LT
998
999 if (remain == 0)
1000 break;
1001
1002 status = readl(base + MMCISTATUS);
1003 } while (status & MCI_RXDATAAVLBL);
1004
1005 return ptr - buffer;
1006}
1007
1008static int mmci_pio_write(struct mmci_host *host, char *buffer, unsigned int remain, u32 status)
1009{
8301bb68 1010 struct variant_data *variant = host->variant;
1da177e4
LT
1011 void __iomem *base = host->base;
1012 char *ptr = buffer;
1013
1014 do {
1015 unsigned int count, maxcnt;
1016
8301bb68
RV
1017 maxcnt = status & MCI_TXFIFOEMPTY ?
1018 variant->fifosize : variant->fifohalfsize;
1da177e4
LT
1019 count = min(remain, maxcnt);
1020
34177802
LW
1021 /*
1022 * SDIO especially may want to send something that is
1023 * not divisible by 4 (as opposed to card sectors
1024 * etc), and the FIFO only accept full 32-bit writes.
1025 * So compensate by adding +3 on the count, a single
1026 * byte become a 32bit write, 7 bytes will be two
1027 * 32bit writes etc.
1028 */
4b85da08 1029 iowrite32_rep(base + MMCIFIFO, ptr, (count + 3) >> 2);
1da177e4
LT
1030
1031 ptr += count;
1032 remain -= count;
1033
1034 if (remain == 0)
1035 break;
1036
1037 status = readl(base + MMCISTATUS);
1038 } while (status & MCI_TXFIFOHALFEMPTY);
1039
1040 return ptr - buffer;
1041}
1042
1043/*
1044 * PIO data transfer IRQ handler.
1045 */
7d12e780 1046static irqreturn_t mmci_pio_irq(int irq, void *dev_id)
1da177e4
LT
1047{
1048 struct mmci_host *host = dev_id;
4ce1d6cb 1049 struct sg_mapping_iter *sg_miter = &host->sg_miter;
8301bb68 1050 struct variant_data *variant = host->variant;
1da177e4 1051 void __iomem *base = host->base;
4ce1d6cb 1052 unsigned long flags;
1da177e4
LT
1053 u32 status;
1054
1055 status = readl(base + MMCISTATUS);
1056
64de0289 1057 dev_dbg(mmc_dev(host->mmc), "irq1 (pio) %08x\n", status);
1da177e4 1058
4ce1d6cb
RV
1059 local_irq_save(flags);
1060
1da177e4 1061 do {
1da177e4
LT
1062 unsigned int remain, len;
1063 char *buffer;
1064
1065 /*
1066 * For write, we only need to test the half-empty flag
1067 * here - if the FIFO is completely empty, then by
1068 * definition it is more than half empty.
1069 *
1070 * For read, check for data available.
1071 */
1072 if (!(status & (MCI_TXFIFOHALFEMPTY|MCI_RXDATAAVLBL)))
1073 break;
1074
4ce1d6cb
RV
1075 if (!sg_miter_next(sg_miter))
1076 break;
1077
1078 buffer = sg_miter->addr;
1079 remain = sg_miter->length;
1da177e4
LT
1080
1081 len = 0;
1082 if (status & MCI_RXACTIVE)
1083 len = mmci_pio_read(host, buffer, remain);
1084 if (status & MCI_TXACTIVE)
1085 len = mmci_pio_write(host, buffer, remain, status);
1086
4ce1d6cb 1087 sg_miter->consumed = len;
1da177e4 1088
1da177e4
LT
1089 host->size -= len;
1090 remain -= len;
1091
1092 if (remain)
1093 break;
1094
1da177e4
LT
1095 status = readl(base + MMCISTATUS);
1096 } while (1);
1097
4ce1d6cb
RV
1098 sg_miter_stop(sg_miter);
1099
1100 local_irq_restore(flags);
1101
1da177e4 1102 /*
c4d877c1
RK
1103 * If we have less than the fifo 'half-full' threshold to transfer,
1104 * trigger a PIO interrupt as soon as any data is available.
1da177e4 1105 */
c4d877c1 1106 if (status & MCI_RXACTIVE && host->size < variant->fifohalfsize)
2686b4b4 1107 mmci_set_mask1(host, MCI_RXDATAAVLBLMASK);
1da177e4
LT
1108
1109 /*
1110 * If we run out of data, disable the data IRQs; this
1111 * prevents a race where the FIFO becomes empty before
1112 * the chip itself has disabled the data path, and
1113 * stops us racing with our data end IRQ.
1114 */
1115 if (host->size == 0) {
2686b4b4 1116 mmci_set_mask1(host, 0);
1da177e4
LT
1117 writel(readl(base + MMCIMASK0) | MCI_DATAENDMASK, base + MMCIMASK0);
1118 }
1119
1120 return IRQ_HANDLED;
1121}
1122
1123/*
1124 * Handle completion of command and data transfers.
1125 */
7d12e780 1126static irqreturn_t mmci_irq(int irq, void *dev_id)
1da177e4
LT
1127{
1128 struct mmci_host *host = dev_id;
1129 u32 status;
1130 int ret = 0;
1131
1132 spin_lock(&host->lock);
1133
1134 do {
1135 struct mmc_command *cmd;
1136 struct mmc_data *data;
1137
1138 status = readl(host->base + MMCISTATUS);
2686b4b4
LW
1139
1140 if (host->singleirq) {
1141 if (status & readl(host->base + MMCIMASK1))
1142 mmci_pio_irq(irq, dev_id);
1143
1144 status &= ~MCI_IRQ1MASK;
1145 }
1146
8d94b54d
UH
1147 /*
1148 * We intentionally clear the MCI_ST_CARDBUSY IRQ here (if it's
1149 * enabled) since the HW seems to be triggering the IRQ on both
1150 * edges while monitoring DAT0 for busy completion.
1151 */
1da177e4
LT
1152 status &= readl(host->base + MMCIMASK0);
1153 writel(status, host->base + MMCICLEAR);
1154
64de0289 1155 dev_dbg(mmc_dev(host->mmc), "irq0 (data+cmd) %08x\n", status);
1da177e4 1156
e7f3d222 1157 cmd = host->cmd;
8d94b54d
UH
1158 if ((status|host->busy_status) & (MCI_CMDCRCFAIL|MCI_CMDTIMEOUT|
1159 MCI_CMDSENT|MCI_CMDRESPEND) && cmd)
e7f3d222
UH
1160 mmci_cmd_irq(host, cmd, status);
1161
1da177e4 1162 data = host->data;
b63038d6
UH
1163 if (status & (MCI_DATACRCFAIL|MCI_DATATIMEOUT|MCI_STARTBITERR|
1164 MCI_TXUNDERRUN|MCI_RXOVERRUN|MCI_DATAEND|
1165 MCI_DATABLOCKEND) && data)
1da177e4
LT
1166 mmci_data_irq(host, data, status);
1167
8d94b54d
UH
1168 /* Don't poll for busy completion in irq context. */
1169 if (host->busy_status)
1170 status &= ~MCI_ST_CARDBUSY;
1171
1da177e4
LT
1172 ret = 1;
1173 } while (status);
1174
1175 spin_unlock(&host->lock);
1176
1177 return IRQ_RETVAL(ret);
1178}
1179
1180static void mmci_request(struct mmc_host *mmc, struct mmc_request *mrq)
1181{
1182 struct mmci_host *host = mmc_priv(mmc);
9e943021 1183 unsigned long flags;
1da177e4
LT
1184
1185 WARN_ON(host->mrq != NULL);
1186
653a761e
UH
1187 mrq->cmd->error = mmci_validate_data(host, mrq->data);
1188 if (mrq->cmd->error) {
255d01af
PO
1189 mmc_request_done(mmc, mrq);
1190 return;
1191 }
1192
1c3be369
RK
1193 pm_runtime_get_sync(mmc_dev(mmc));
1194
9e943021 1195 spin_lock_irqsave(&host->lock, flags);
1da177e4
LT
1196
1197 host->mrq = mrq;
1198
58c7ccbf
PF
1199 if (mrq->data)
1200 mmci_get_next_data(host, mrq->data);
1201
1da177e4
LT
1202 if (mrq->data && mrq->data->flags & MMC_DATA_READ)
1203 mmci_start_data(host, mrq->data);
1204
024629c6
UH
1205 if (mrq->sbc)
1206 mmci_start_command(host, mrq->sbc, 0);
1207 else
1208 mmci_start_command(host, mrq->cmd, 0);
1da177e4 1209
9e943021 1210 spin_unlock_irqrestore(&host->lock, flags);
1da177e4
LT
1211}
1212
1213static void mmci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
1214{
1215 struct mmci_host *host = mmc_priv(mmc);
7d72a1d4 1216 struct variant_data *variant = host->variant;
a6a6464a
LW
1217 u32 pwr = 0;
1218 unsigned long flags;
db90f91f 1219 int ret;
1da177e4 1220
2cd976c4
UH
1221 pm_runtime_get_sync(mmc_dev(mmc));
1222
bc521818
UH
1223 if (host->plat->ios_handler &&
1224 host->plat->ios_handler(mmc_dev(mmc), ios))
1225 dev_err(mmc_dev(mmc), "platform ios_handler failed\n");
1226
1da177e4
LT
1227 switch (ios->power_mode) {
1228 case MMC_POWER_OFF:
599c1d5c
UH
1229 if (!IS_ERR(mmc->supply.vmmc))
1230 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, 0);
237fb5e6 1231
7c0136ef 1232 if (!IS_ERR(mmc->supply.vqmmc) && host->vqmmc_enabled) {
237fb5e6 1233 regulator_disable(mmc->supply.vqmmc);
7c0136ef
UH
1234 host->vqmmc_enabled = false;
1235 }
237fb5e6 1236
1da177e4
LT
1237 break;
1238 case MMC_POWER_UP:
599c1d5c
UH
1239 if (!IS_ERR(mmc->supply.vmmc))
1240 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, ios->vdd);
1241
7d72a1d4
UH
1242 /*
1243 * The ST Micro variant doesn't have the PL180s MCI_PWR_UP
1244 * and instead uses MCI_PWR_ON so apply whatever value is
1245 * configured in the variant data.
1246 */
1247 pwr |= variant->pwrreg_powerup;
1248
1249 break;
1da177e4 1250 case MMC_POWER_ON:
7c0136ef 1251 if (!IS_ERR(mmc->supply.vqmmc) && !host->vqmmc_enabled) {
db90f91f
LJ
1252 ret = regulator_enable(mmc->supply.vqmmc);
1253 if (ret < 0)
1254 dev_err(mmc_dev(mmc),
1255 "failed to enable vqmmc regulator\n");
7c0136ef
UH
1256 else
1257 host->vqmmc_enabled = true;
db90f91f 1258 }
237fb5e6 1259
1da177e4
LT
1260 pwr |= MCI_PWR_ON;
1261 break;
1262 }
1263
4d1a3a0d
UH
1264 if (variant->signal_direction && ios->power_mode != MMC_POWER_OFF) {
1265 /*
1266 * The ST Micro variant has some additional bits
1267 * indicating signal direction for the signals in
1268 * the SD/MMC bus and feedback-clock usage.
1269 */
4593df29 1270 pwr |= host->pwr_reg_add;
4d1a3a0d
UH
1271
1272 if (ios->bus_width == MMC_BUS_WIDTH_4)
1273 pwr &= ~MCI_ST_DATA74DIREN;
1274 else if (ios->bus_width == MMC_BUS_WIDTH_1)
1275 pwr &= (~MCI_ST_DATA74DIREN &
1276 ~MCI_ST_DATA31DIREN &
1277 ~MCI_ST_DATA2DIREN);
1278 }
1279
cc30d60e 1280 if (ios->bus_mode == MMC_BUSMODE_OPENDRAIN) {
f17a1f06 1281 if (host->hw_designer != AMBA_VENDOR_ST)
cc30d60e
LW
1282 pwr |= MCI_ROD;
1283 else {
1284 /*
1285 * The ST Micro variant use the ROD bit for something
1286 * else and only has OD (Open Drain).
1287 */
1288 pwr |= MCI_OD;
1289 }
1290 }
1da177e4 1291
f4670dae
UH
1292 /*
1293 * If clock = 0 and the variant requires the MMCIPOWER to be used for
1294 * gating the clock, the MCI_PWR_ON bit is cleared.
1295 */
1296 if (!ios->clock && variant->pwrreg_clkgate)
1297 pwr &= ~MCI_PWR_ON;
1298
a6a6464a
LW
1299 spin_lock_irqsave(&host->lock, flags);
1300
1301 mmci_set_clkreg(host, ios->clock);
7437cfa5 1302 mmci_write_pwrreg(host, pwr);
f829c042 1303 mmci_reg_delay(host);
a6a6464a
LW
1304
1305 spin_unlock_irqrestore(&host->lock, flags);
2cd976c4 1306
2cd976c4
UH
1307 pm_runtime_mark_last_busy(mmc_dev(mmc));
1308 pm_runtime_put_autosuspend(mmc_dev(mmc));
1da177e4
LT
1309}
1310
89001446
RK
1311static int mmci_get_cd(struct mmc_host *mmc)
1312{
1313 struct mmci_host *host = mmc_priv(mmc);
29719445 1314 struct mmci_platform_data *plat = host->plat;
d2762090 1315 unsigned int status = mmc_gpio_get_cd(mmc);
89001446 1316
d2762090 1317 if (status == -ENOSYS) {
4b8caec0
RV
1318 if (!plat->status)
1319 return 1; /* Assume always present */
1320
29719445 1321 status = plat->status(mmc_dev(host->mmc));
d2762090 1322 }
74bc8093 1323 return status;
89001446
RK
1324}
1325
0f3ed7f7
UH
1326static int mmci_sig_volt_switch(struct mmc_host *mmc, struct mmc_ios *ios)
1327{
1328 int ret = 0;
1329
1330 if (!IS_ERR(mmc->supply.vqmmc)) {
1331
1332 pm_runtime_get_sync(mmc_dev(mmc));
1333
1334 switch (ios->signal_voltage) {
1335 case MMC_SIGNAL_VOLTAGE_330:
1336 ret = regulator_set_voltage(mmc->supply.vqmmc,
1337 2700000, 3600000);
1338 break;
1339 case MMC_SIGNAL_VOLTAGE_180:
1340 ret = regulator_set_voltage(mmc->supply.vqmmc,
1341 1700000, 1950000);
1342 break;
1343 case MMC_SIGNAL_VOLTAGE_120:
1344 ret = regulator_set_voltage(mmc->supply.vqmmc,
1345 1100000, 1300000);
1346 break;
1347 }
1348
1349 if (ret)
1350 dev_warn(mmc_dev(mmc), "Voltage switch failed\n");
1351
1352 pm_runtime_mark_last_busy(mmc_dev(mmc));
1353 pm_runtime_put_autosuspend(mmc_dev(mmc));
1354 }
1355
1356 return ret;
1357}
1358
01259620 1359static struct mmc_host_ops mmci_ops = {
1da177e4 1360 .request = mmci_request,
58c7ccbf
PF
1361 .pre_req = mmci_pre_request,
1362 .post_req = mmci_post_request,
1da177e4 1363 .set_ios = mmci_set_ios,
d2762090 1364 .get_ro = mmc_gpio_get_ro,
89001446 1365 .get_cd = mmci_get_cd,
0f3ed7f7 1366 .start_signal_voltage_switch = mmci_sig_volt_switch,
1da177e4
LT
1367};
1368
4593df29 1369static int mmci_of_parse(struct device_node *np, struct mmc_host *mmc)
000bc9d5 1370{
4593df29
UH
1371 struct mmci_host *host = mmc_priv(mmc);
1372 int ret = mmc_of_parse(mmc);
1373
1374 if (ret)
1375 return ret;
1376
ae94cafe 1377 if (of_get_property(np, "st,sig-dir-dat0", NULL))
4593df29 1378 host->pwr_reg_add |= MCI_ST_DATA0DIREN;
ae94cafe 1379 if (of_get_property(np, "st,sig-dir-dat2", NULL))
4593df29 1380 host->pwr_reg_add |= MCI_ST_DATA2DIREN;
ae94cafe 1381 if (of_get_property(np, "st,sig-dir-dat31", NULL))
4593df29 1382 host->pwr_reg_add |= MCI_ST_DATA31DIREN;
ae94cafe 1383 if (of_get_property(np, "st,sig-dir-dat74", NULL))
4593df29 1384 host->pwr_reg_add |= MCI_ST_DATA74DIREN;
ae94cafe 1385 if (of_get_property(np, "st,sig-dir-cmd", NULL))
4593df29 1386 host->pwr_reg_add |= MCI_ST_CMDDIREN;
1a7e99c1 1387 if (of_get_property(np, "st,sig-pin-fbclk", NULL))
4593df29 1388 host->pwr_reg_add |= MCI_ST_FBCLKEN;
000bc9d5
LJ
1389
1390 if (of_get_property(np, "mmc-cap-mmc-highspeed", NULL))
78f87df2 1391 mmc->caps |= MMC_CAP_MMC_HIGHSPEED;
000bc9d5 1392 if (of_get_property(np, "mmc-cap-sd-highspeed", NULL))
78f87df2 1393 mmc->caps |= MMC_CAP_SD_HIGHSPEED;
000bc9d5 1394
78f87df2 1395 return 0;
c0a120a4 1396}
000bc9d5 1397
c3be1efd 1398static int mmci_probe(struct amba_device *dev,
aa25afad 1399 const struct amba_id *id)
1da177e4 1400{
6ef297f8 1401 struct mmci_platform_data *plat = dev->dev.platform_data;
000bc9d5 1402 struct device_node *np = dev->dev.of_node;
4956e109 1403 struct variant_data *variant = id->data;
1da177e4
LT
1404 struct mmci_host *host;
1405 struct mmc_host *mmc;
1406 int ret;
1407
000bc9d5
LJ
1408 /* Must have platform data or Device Tree. */
1409 if (!plat && !np) {
1410 dev_err(&dev->dev, "No plat data or DT found\n");
1411 return -EINVAL;
1da177e4
LT
1412 }
1413
b9b52918
LJ
1414 if (!plat) {
1415 plat = devm_kzalloc(&dev->dev, sizeof(*plat), GFP_KERNEL);
1416 if (!plat)
1417 return -ENOMEM;
1418 }
1419
1da177e4 1420 mmc = mmc_alloc_host(sizeof(struct mmci_host), &dev->dev);
ef289982
UH
1421 if (!mmc)
1422 return -ENOMEM;
1da177e4 1423
78f87df2
UH
1424 ret = mmci_of_parse(np, mmc);
1425 if (ret)
1426 goto host_free;
1427
1da177e4 1428 host = mmc_priv(mmc);
4ea580f1 1429 host->mmc = mmc;
012b7d33
RK
1430
1431 host->hw_designer = amba_manf(dev);
1432 host->hw_revision = amba_rev(dev);
64de0289
LW
1433 dev_dbg(mmc_dev(mmc), "designer ID = 0x%02x\n", host->hw_designer);
1434 dev_dbg(mmc_dev(mmc), "revision = 0x%01x\n", host->hw_revision);
012b7d33 1435
665ba56f 1436 host->clk = devm_clk_get(&dev->dev, NULL);
1da177e4
LT
1437 if (IS_ERR(host->clk)) {
1438 ret = PTR_ERR(host->clk);
1da177e4
LT
1439 goto host_free;
1440 }
1441
ac940938 1442 ret = clk_prepare_enable(host->clk);
1da177e4 1443 if (ret)
665ba56f 1444 goto host_free;
1da177e4
LT
1445
1446 host->plat = plat;
4956e109 1447 host->variant = variant;
1da177e4 1448 host->mclk = clk_get_rate(host->clk);
c8df9a53
LW
1449 /*
1450 * According to the spec, mclk is max 100 MHz,
1451 * so we try to adjust the clock down to this,
1452 * (if possible).
1453 */
1454 if (host->mclk > 100000000) {
1455 ret = clk_set_rate(host->clk, 100000000);
1456 if (ret < 0)
1457 goto clk_disable;
1458 host->mclk = clk_get_rate(host->clk);
64de0289
LW
1459 dev_dbg(mmc_dev(mmc), "eventual mclk rate: %u Hz\n",
1460 host->mclk);
c8df9a53 1461 }
ef289982 1462
c8ebae37 1463 host->phybase = dev->res.start;
ef289982
UH
1464 host->base = devm_ioremap_resource(&dev->dev, &dev->res);
1465 if (IS_ERR(host->base)) {
1466 ret = PTR_ERR(host->base);
1da177e4
LT
1467 goto clk_disable;
1468 }
1469
7f294e49
LW
1470 /*
1471 * The ARM and ST versions of the block have slightly different
1472 * clock divider equations which means that the minimum divider
1473 * differs too.
1474 */
1475 if (variant->st_clkdiv)
1476 mmc->f_min = DIV_ROUND_UP(host->mclk, 257);
1477 else
1478 mmc->f_min = DIV_ROUND_UP(host->mclk, 512);
808d97cc 1479 /*
78f87df2
UH
1480 * If no maximum operating frequency is supplied, fall back to use
1481 * the module parameter, which has a (low) default value in case it
1482 * is not specified. Either value must not exceed the clock rate into
5080a08d 1483 * the block, of course.
808d97cc 1484 */
78f87df2
UH
1485 if (mmc->f_max)
1486 mmc->f_max = min(host->mclk, mmc->f_max);
808d97cc
LW
1487 else
1488 mmc->f_max = min(host->mclk, fmax);
64de0289
LW
1489 dev_dbg(mmc_dev(mmc), "clocking block at %u Hz\n", mmc->f_max);
1490
599c1d5c
UH
1491 /* Get regulators and the supported OCR mask */
1492 mmc_regulator_get_supply(mmc);
1493 if (!mmc->ocr_avail)
34e84f39 1494 mmc->ocr_avail = plat->ocr_mask;
599c1d5c
UH
1495 else if (plat->ocr_mask)
1496 dev_warn(mmc_dev(mmc), "Platform OCR mask is ignored\n");
1497
78f87df2 1498 /* DT takes precedence over platform data. */
78f87df2
UH
1499 if (!np) {
1500 if (!plat->cd_invert)
1501 mmc->caps2 |= MMC_CAP2_CD_ACTIVE_HIGH;
1502 mmc->caps2 |= MMC_CAP2_RO_ACTIVE_HIGH;
1503 }
1da177e4 1504
9dd8a8b8
UH
1505 /* We support these capabilities. */
1506 mmc->caps |= MMC_CAP_CMD23;
1507
8d94b54d
UH
1508 if (variant->busy_detect) {
1509 mmci_ops.card_busy = mmci_card_busy;
1510 mmci_write_datactrlreg(host, MCI_ST_DPSM_BUSYMODE);
1511 mmc->caps |= MMC_CAP_WAIT_WHILE_BUSY;
1512 mmc->max_busy_timeout = 0;
1513 }
1514
1515 mmc->ops = &mmci_ops;
1516
70be208f 1517 /* We support these PM capabilities. */
78f87df2 1518 mmc->pm_caps |= MMC_PM_KEEP_POWER;
70be208f 1519
1da177e4
LT
1520 /*
1521 * We can do SGIO
1522 */
a36274e0 1523 mmc->max_segs = NR_SG;
1da177e4
LT
1524
1525 /*
08458ef6
RV
1526 * Since only a certain number of bits are valid in the data length
1527 * register, we must ensure that we don't exceed 2^num-1 bytes in a
1528 * single request.
1da177e4 1529 */
08458ef6 1530 mmc->max_req_size = (1 << variant->datalength_bits) - 1;
1da177e4
LT
1531
1532 /*
1533 * Set the maximum segment size. Since we aren't doing DMA
1534 * (yet) we are only limited by the data length register.
1535 */
55db890a 1536 mmc->max_seg_size = mmc->max_req_size;
1da177e4 1537
fe4a3c7a
PO
1538 /*
1539 * Block size can be up to 2048 bytes, but must be a power of two.
1540 */
8f7f6b7e 1541 mmc->max_blk_size = 1 << 11;
fe4a3c7a 1542
55db890a 1543 /*
8f7f6b7e
WD
1544 * Limit the number of blocks transferred so that we don't overflow
1545 * the maximum request size.
55db890a 1546 */
8f7f6b7e 1547 mmc->max_blk_count = mmc->max_req_size >> 11;
55db890a 1548
1da177e4
LT
1549 spin_lock_init(&host->lock);
1550
1551 writel(0, host->base + MMCIMASK0);
1552 writel(0, host->base + MMCIMASK1);
1553 writel(0xfff, host->base + MMCICLEAR);
1554
78f87df2
UH
1555 /* If DT, cd/wp gpios must be supplied through it. */
1556 if (!np && gpio_is_valid(plat->gpio_cd)) {
d2762090
UH
1557 ret = mmc_gpio_request_cd(mmc, plat->gpio_cd, 0);
1558 if (ret)
ef289982 1559 goto clk_disable;
89001446 1560 }
78f87df2 1561 if (!np && gpio_is_valid(plat->gpio_wp)) {
d2762090
UH
1562 ret = mmc_gpio_request_ro(mmc, plat->gpio_wp);
1563 if (ret)
ef289982 1564 goto clk_disable;
89001446
RK
1565 }
1566
ef289982
UH
1567 ret = devm_request_irq(&dev->dev, dev->irq[0], mmci_irq, IRQF_SHARED,
1568 DRIVER_NAME " (cmd)", host);
1da177e4 1569 if (ret)
ef289982 1570 goto clk_disable;
1da177e4 1571
dfb85185 1572 if (!dev->irq[1])
2686b4b4
LW
1573 host->singleirq = true;
1574 else {
ef289982
UH
1575 ret = devm_request_irq(&dev->dev, dev->irq[1], mmci_pio_irq,
1576 IRQF_SHARED, DRIVER_NAME " (pio)", host);
2686b4b4 1577 if (ret)
ef289982 1578 goto clk_disable;
2686b4b4 1579 }
1da177e4 1580
8cb28155 1581 writel(MCI_IRQENABLE, host->base + MMCIMASK0);
1da177e4
LT
1582
1583 amba_set_drvdata(dev, mmc);
1584
c8ebae37
RK
1585 dev_info(&dev->dev, "%s: PL%03x manf %x rev%u at 0x%08llx irq %d,%d (pio)\n",
1586 mmc_hostname(mmc), amba_part(dev), amba_manf(dev),
1587 amba_rev(dev), (unsigned long long)dev->res.start,
1588 dev->irq[0], dev->irq[1]);
1589
1590 mmci_dma_setup(host);
1da177e4 1591
2cd976c4
UH
1592 pm_runtime_set_autosuspend_delay(&dev->dev, 50);
1593 pm_runtime_use_autosuspend(&dev->dev);
1c3be369
RK
1594 pm_runtime_put(&dev->dev);
1595
8c11a94d
RK
1596 mmc_add_host(mmc);
1597
1da177e4
LT
1598 return 0;
1599
1da177e4 1600 clk_disable:
ac940938 1601 clk_disable_unprepare(host->clk);
1da177e4
LT
1602 host_free:
1603 mmc_free_host(mmc);
1da177e4
LT
1604 return ret;
1605}
1606
6e0ee714 1607static int mmci_remove(struct amba_device *dev)
1da177e4
LT
1608{
1609 struct mmc_host *mmc = amba_get_drvdata(dev);
1610
1da177e4
LT
1611 if (mmc) {
1612 struct mmci_host *host = mmc_priv(mmc);
1613
1c3be369
RK
1614 /*
1615 * Undo pm_runtime_put() in probe. We use the _sync
1616 * version here so that we can access the primecell.
1617 */
1618 pm_runtime_get_sync(&dev->dev);
1619
1da177e4
LT
1620 mmc_remove_host(mmc);
1621
1622 writel(0, host->base + MMCIMASK0);
1623 writel(0, host->base + MMCIMASK1);
1624
1625 writel(0, host->base + MMCICOMMAND);
1626 writel(0, host->base + MMCIDATACTRL);
1627
c8ebae37 1628 mmci_dma_release(host);
ac940938 1629 clk_disable_unprepare(host->clk);
1da177e4 1630 mmc_free_host(mmc);
1da177e4
LT
1631 }
1632
1633 return 0;
1634}
1635
571dce4f 1636#ifdef CONFIG_PM
1ff44433
UH
1637static void mmci_save(struct mmci_host *host)
1638{
1639 unsigned long flags;
1640
42dcc89a 1641 spin_lock_irqsave(&host->lock, flags);
1ff44433 1642
42dcc89a
UH
1643 writel(0, host->base + MMCIMASK0);
1644 if (host->variant->pwrreg_nopower) {
1ff44433
UH
1645 writel(0, host->base + MMCIDATACTRL);
1646 writel(0, host->base + MMCIPOWER);
1647 writel(0, host->base + MMCICLOCK);
1ff44433 1648 }
42dcc89a 1649 mmci_reg_delay(host);
1ff44433 1650
42dcc89a 1651 spin_unlock_irqrestore(&host->lock, flags);
1ff44433
UH
1652}
1653
1654static void mmci_restore(struct mmci_host *host)
1655{
1656 unsigned long flags;
1657
42dcc89a 1658 spin_lock_irqsave(&host->lock, flags);
1ff44433 1659
42dcc89a 1660 if (host->variant->pwrreg_nopower) {
1ff44433
UH
1661 writel(host->clk_reg, host->base + MMCICLOCK);
1662 writel(host->datactrl_reg, host->base + MMCIDATACTRL);
1663 writel(host->pwr_reg, host->base + MMCIPOWER);
1ff44433 1664 }
42dcc89a
UH
1665 writel(MCI_IRQENABLE, host->base + MMCIMASK0);
1666 mmci_reg_delay(host);
1667
1668 spin_unlock_irqrestore(&host->lock, flags);
1ff44433
UH
1669}
1670
8259293a
UH
1671static int mmci_runtime_suspend(struct device *dev)
1672{
1673 struct amba_device *adev = to_amba_device(dev);
1674 struct mmc_host *mmc = amba_get_drvdata(adev);
1675
1676 if (mmc) {
1677 struct mmci_host *host = mmc_priv(mmc);
e36bd9c6 1678 pinctrl_pm_select_sleep_state(dev);
1ff44433 1679 mmci_save(host);
8259293a
UH
1680 clk_disable_unprepare(host->clk);
1681 }
1682
1683 return 0;
1684}
1685
1686static int mmci_runtime_resume(struct device *dev)
1687{
1688 struct amba_device *adev = to_amba_device(dev);
1689 struct mmc_host *mmc = amba_get_drvdata(adev);
1690
1691 if (mmc) {
1692 struct mmci_host *host = mmc_priv(mmc);
1693 clk_prepare_enable(host->clk);
1ff44433 1694 mmci_restore(host);
e36bd9c6 1695 pinctrl_pm_select_default_state(dev);
8259293a
UH
1696 }
1697
1698 return 0;
1699}
1700#endif
1701
48fa7003 1702static const struct dev_pm_ops mmci_dev_pm_ops = {
f3737fa3
UH
1703 SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend,
1704 pm_runtime_force_resume)
571dce4f 1705 SET_PM_RUNTIME_PM_OPS(mmci_runtime_suspend, mmci_runtime_resume, NULL)
48fa7003
UH
1706};
1707
1da177e4
LT
1708static struct amba_id mmci_ids[] = {
1709 {
1710 .id = 0x00041180,
768fbc18 1711 .mask = 0xff0fffff,
4956e109 1712 .data = &variant_arm,
1da177e4 1713 },
768fbc18
PM
1714 {
1715 .id = 0x01041180,
1716 .mask = 0xff0fffff,
1717 .data = &variant_arm_extended_fifo,
1718 },
3a37298a
PM
1719 {
1720 .id = 0x02041180,
1721 .mask = 0xff0fffff,
1722 .data = &variant_arm_extended_fifo_hwfc,
1723 },
1da177e4
LT
1724 {
1725 .id = 0x00041181,
1726 .mask = 0x000fffff,
4956e109 1727 .data = &variant_arm,
1da177e4 1728 },
cc30d60e
LW
1729 /* ST Micro variants */
1730 {
1731 .id = 0x00180180,
1732 .mask = 0x00ffffff,
4956e109 1733 .data = &variant_u300,
cc30d60e 1734 },
34fd4213
LW
1735 {
1736 .id = 0x10180180,
1737 .mask = 0xf0ffffff,
1738 .data = &variant_nomadik,
1739 },
cc30d60e
LW
1740 {
1741 .id = 0x00280180,
1742 .mask = 0x00ffffff,
4956e109
RV
1743 .data = &variant_u300,
1744 },
1745 {
1746 .id = 0x00480180,
1784b157 1747 .mask = 0xf0ffffff,
4956e109 1748 .data = &variant_ux500,
cc30d60e 1749 },
1784b157
PL
1750 {
1751 .id = 0x10480180,
1752 .mask = 0xf0ffffff,
1753 .data = &variant_ux500v2,
1754 },
1da177e4
LT
1755 { 0, 0 },
1756};
1757
9f99835f
DM
1758MODULE_DEVICE_TABLE(amba, mmci_ids);
1759
1da177e4
LT
1760static struct amba_driver mmci_driver = {
1761 .drv = {
1762 .name = DRIVER_NAME,
48fa7003 1763 .pm = &mmci_dev_pm_ops,
1da177e4
LT
1764 },
1765 .probe = mmci_probe,
0433c143 1766 .remove = mmci_remove,
1da177e4
LT
1767 .id_table = mmci_ids,
1768};
1769
9e5ed094 1770module_amba_driver(mmci_driver);
1da177e4 1771
1da177e4
LT
1772module_param(fmax, uint, 0444);
1773
1774MODULE_DESCRIPTION("ARM PrimeCell PL180/181 Multimedia Card Interface driver");
1775MODULE_LICENSE("GPL");
This page took 0.847006 seconds and 5 git commands to generate.