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