]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/mmc/host/dw_mmc.c
mmc: dw_mmc: fix the IDMAC sw reset
[mirror_ubuntu-bionic-kernel.git] / drivers / mmc / host / dw_mmc.c
CommitLineData
f95f3850
WN
1/*
2 * Synopsys DesignWare Multimedia Card Interface driver
3 * (Based on NXP driver for lpc 31xx)
4 *
5 * Copyright (C) 2009 NXP Semiconductors
6 * Copyright (C) 2009, 2010 Imagination Technologies Ltd.
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 */
13
14#include <linux/blkdev.h>
15#include <linux/clk.h>
16#include <linux/debugfs.h>
17#include <linux/device.h>
18#include <linux/dma-mapping.h>
19#include <linux/err.h>
20#include <linux/init.h>
21#include <linux/interrupt.h>
22#include <linux/ioport.h>
23#include <linux/module.h>
24#include <linux/platform_device.h>
f95f3850
WN
25#include <linux/seq_file.h>
26#include <linux/slab.h>
27#include <linux/stat.h>
28#include <linux/delay.h>
29#include <linux/irq.h>
30#include <linux/mmc/host.h>
31#include <linux/mmc/mmc.h>
32#include <linux/mmc/dw_mmc.h>
33#include <linux/bitops.h>
c07946a3 34#include <linux/regulator/consumer.h>
1791b13e 35#include <linux/workqueue.h>
f95f3850
WN
36
37#include "dw_mmc.h"
38
39/* Common flag combinations */
40#define DW_MCI_DATA_ERROR_FLAGS (SDMMC_INT_DTO | SDMMC_INT_DCRC | \
41 SDMMC_INT_HTO | SDMMC_INT_SBE | \
42 SDMMC_INT_EBE)
43#define DW_MCI_CMD_ERROR_FLAGS (SDMMC_INT_RTO | SDMMC_INT_RCRC | \
44 SDMMC_INT_RESP_ERR)
45#define DW_MCI_ERROR_FLAGS (DW_MCI_DATA_ERROR_FLAGS | \
46 DW_MCI_CMD_ERROR_FLAGS | SDMMC_INT_HLE)
47#define DW_MCI_SEND_STATUS 1
48#define DW_MCI_RECV_STATUS 2
49#define DW_MCI_DMA_THRESHOLD 16
50
51#ifdef CONFIG_MMC_DW_IDMAC
52struct idmac_desc {
53 u32 des0; /* Control Descriptor */
54#define IDMAC_DES0_DIC BIT(1)
55#define IDMAC_DES0_LD BIT(2)
56#define IDMAC_DES0_FD BIT(3)
57#define IDMAC_DES0_CH BIT(4)
58#define IDMAC_DES0_ER BIT(5)
59#define IDMAC_DES0_CES BIT(30)
60#define IDMAC_DES0_OWN BIT(31)
61
62 u32 des1; /* Buffer sizes */
63#define IDMAC_SET_BUFFER1_SIZE(d, s) \
9b7bbe10 64 ((d)->des1 = ((d)->des1 & 0x03ffe000) | ((s) & 0x1fff))
f95f3850
WN
65
66 u32 des2; /* buffer 1 physical address */
67
68 u32 des3; /* buffer 2 physical address */
69};
70#endif /* CONFIG_MMC_DW_IDMAC */
71
72/**
73 * struct dw_mci_slot - MMC slot state
74 * @mmc: The mmc_host representing this slot.
75 * @host: The MMC controller this slot is using.
76 * @ctype: Card type for this slot.
77 * @mrq: mmc_request currently being processed or waiting to be
78 * processed, or NULL when the slot is idle.
79 * @queue_node: List node for placing this node in the @queue list of
80 * &struct dw_mci.
81 * @clock: Clock rate configured by set_ios(). Protected by host->lock.
82 * @flags: Random state bits associated with the slot.
83 * @id: Number of this slot.
84 * @last_detect_state: Most recently observed card detect state.
85 */
86struct dw_mci_slot {
87 struct mmc_host *mmc;
88 struct dw_mci *host;
89
90 u32 ctype;
91
92 struct mmc_request *mrq;
93 struct list_head queue_node;
94
95 unsigned int clock;
96 unsigned long flags;
97#define DW_MMC_CARD_PRESENT 0
98#define DW_MMC_CARD_NEED_INIT 1
99 int id;
100 int last_detect_state;
101};
102
103#if defined(CONFIG_DEBUG_FS)
104static int dw_mci_req_show(struct seq_file *s, void *v)
105{
106 struct dw_mci_slot *slot = s->private;
107 struct mmc_request *mrq;
108 struct mmc_command *cmd;
109 struct mmc_command *stop;
110 struct mmc_data *data;
111
112 /* Make sure we get a consistent snapshot */
113 spin_lock_bh(&slot->host->lock);
114 mrq = slot->mrq;
115
116 if (mrq) {
117 cmd = mrq->cmd;
118 data = mrq->data;
119 stop = mrq->stop;
120
121 if (cmd)
122 seq_printf(s,
123 "CMD%u(0x%x) flg %x rsp %x %x %x %x err %d\n",
124 cmd->opcode, cmd->arg, cmd->flags,
125 cmd->resp[0], cmd->resp[1], cmd->resp[2],
126 cmd->resp[2], cmd->error);
127 if (data)
128 seq_printf(s, "DATA %u / %u * %u flg %x err %d\n",
129 data->bytes_xfered, data->blocks,
130 data->blksz, data->flags, data->error);
131 if (stop)
132 seq_printf(s,
133 "CMD%u(0x%x) flg %x rsp %x %x %x %x err %d\n",
134 stop->opcode, stop->arg, stop->flags,
135 stop->resp[0], stop->resp[1], stop->resp[2],
136 stop->resp[2], stop->error);
137 }
138
139 spin_unlock_bh(&slot->host->lock);
140
141 return 0;
142}
143
144static int dw_mci_req_open(struct inode *inode, struct file *file)
145{
146 return single_open(file, dw_mci_req_show, inode->i_private);
147}
148
149static const struct file_operations dw_mci_req_fops = {
150 .owner = THIS_MODULE,
151 .open = dw_mci_req_open,
152 .read = seq_read,
153 .llseek = seq_lseek,
154 .release = single_release,
155};
156
157static int dw_mci_regs_show(struct seq_file *s, void *v)
158{
159 seq_printf(s, "STATUS:\t0x%08x\n", SDMMC_STATUS);
160 seq_printf(s, "RINTSTS:\t0x%08x\n", SDMMC_RINTSTS);
161 seq_printf(s, "CMD:\t0x%08x\n", SDMMC_CMD);
162 seq_printf(s, "CTRL:\t0x%08x\n", SDMMC_CTRL);
163 seq_printf(s, "INTMASK:\t0x%08x\n", SDMMC_INTMASK);
164 seq_printf(s, "CLKENA:\t0x%08x\n", SDMMC_CLKENA);
165
166 return 0;
167}
168
169static int dw_mci_regs_open(struct inode *inode, struct file *file)
170{
171 return single_open(file, dw_mci_regs_show, inode->i_private);
172}
173
174static const struct file_operations dw_mci_regs_fops = {
175 .owner = THIS_MODULE,
176 .open = dw_mci_regs_open,
177 .read = seq_read,
178 .llseek = seq_lseek,
179 .release = single_release,
180};
181
182static void dw_mci_init_debugfs(struct dw_mci_slot *slot)
183{
184 struct mmc_host *mmc = slot->mmc;
185 struct dw_mci *host = slot->host;
186 struct dentry *root;
187 struct dentry *node;
188
189 root = mmc->debugfs_root;
190 if (!root)
191 return;
192
193 node = debugfs_create_file("regs", S_IRUSR, root, host,
194 &dw_mci_regs_fops);
195 if (!node)
196 goto err;
197
198 node = debugfs_create_file("req", S_IRUSR, root, slot,
199 &dw_mci_req_fops);
200 if (!node)
201 goto err;
202
203 node = debugfs_create_u32("state", S_IRUSR, root, (u32 *)&host->state);
204 if (!node)
205 goto err;
206
207 node = debugfs_create_x32("pending_events", S_IRUSR, root,
208 (u32 *)&host->pending_events);
209 if (!node)
210 goto err;
211
212 node = debugfs_create_x32("completed_events", S_IRUSR, root,
213 (u32 *)&host->completed_events);
214 if (!node)
215 goto err;
216
217 return;
218
219err:
220 dev_err(&mmc->class_dev, "failed to initialize debugfs for slot\n");
221}
222#endif /* defined(CONFIG_DEBUG_FS) */
223
224static void dw_mci_set_timeout(struct dw_mci *host)
225{
226 /* timeout (maximum) */
227 mci_writel(host, TMOUT, 0xffffffff);
228}
229
230static u32 dw_mci_prepare_command(struct mmc_host *mmc, struct mmc_command *cmd)
231{
232 struct mmc_data *data;
233 u32 cmdr;
234 cmd->error = -EINPROGRESS;
235
236 cmdr = cmd->opcode;
237
238 if (cmdr == MMC_STOP_TRANSMISSION)
239 cmdr |= SDMMC_CMD_STOP;
240 else
241 cmdr |= SDMMC_CMD_PRV_DAT_WAIT;
242
243 if (cmd->flags & MMC_RSP_PRESENT) {
244 /* We expect a response, so set this bit */
245 cmdr |= SDMMC_CMD_RESP_EXP;
246 if (cmd->flags & MMC_RSP_136)
247 cmdr |= SDMMC_CMD_RESP_LONG;
248 }
249
250 if (cmd->flags & MMC_RSP_CRC)
251 cmdr |= SDMMC_CMD_RESP_CRC;
252
253 data = cmd->data;
254 if (data) {
255 cmdr |= SDMMC_CMD_DAT_EXP;
256 if (data->flags & MMC_DATA_STREAM)
257 cmdr |= SDMMC_CMD_STRM_MODE;
258 if (data->flags & MMC_DATA_WRITE)
259 cmdr |= SDMMC_CMD_DAT_WR;
260 }
261
262 return cmdr;
263}
264
265static void dw_mci_start_command(struct dw_mci *host,
266 struct mmc_command *cmd, u32 cmd_flags)
267{
268 host->cmd = cmd;
62ca8034 269 dev_vdbg(&host->dev,
f95f3850
WN
270 "start command: ARGR=0x%08x CMDR=0x%08x\n",
271 cmd->arg, cmd_flags);
272
273 mci_writel(host, CMDARG, cmd->arg);
274 wmb();
275
276 mci_writel(host, CMD, cmd_flags | SDMMC_CMD_START);
277}
278
279static void send_stop_cmd(struct dw_mci *host, struct mmc_data *data)
280{
281 dw_mci_start_command(host, data->stop, host->stop_cmdr);
282}
283
284/* DMA interface functions */
285static void dw_mci_stop_dma(struct dw_mci *host)
286{
03e8cb53 287 if (host->using_dma) {
f95f3850
WN
288 host->dma_ops->stop(host);
289 host->dma_ops->cleanup(host);
290 } else {
291 /* Data transfer was stopped by the interrupt handler */
292 set_bit(EVENT_XFER_COMPLETE, &host->pending_events);
293 }
294}
295
9aa51408
SJ
296static int dw_mci_get_dma_dir(struct mmc_data *data)
297{
298 if (data->flags & MMC_DATA_WRITE)
299 return DMA_TO_DEVICE;
300 else
301 return DMA_FROM_DEVICE;
302}
303
9beee912 304#ifdef CONFIG_MMC_DW_IDMAC
f95f3850
WN
305static void dw_mci_dma_cleanup(struct dw_mci *host)
306{
307 struct mmc_data *data = host->data;
308
309 if (data)
9aa51408
SJ
310 if (!data->host_cookie)
311 dma_unmap_sg(&host->dev,
312 data->sg,
313 data->sg_len,
314 dw_mci_get_dma_dir(data));
f95f3850
WN
315}
316
317static void dw_mci_idmac_stop_dma(struct dw_mci *host)
318{
319 u32 temp;
320
321 /* Disable and reset the IDMAC interface */
322 temp = mci_readl(host, CTRL);
323 temp &= ~SDMMC_CTRL_USE_IDMAC;
324 temp |= SDMMC_CTRL_DMA_RESET;
325 mci_writel(host, CTRL, temp);
326
327 /* Stop the IDMAC running */
328 temp = mci_readl(host, BMOD);
a5289a43 329 temp &= ~(SDMMC_IDMAC_ENABLE | SDMMC_IDMAC_FB);
f95f3850
WN
330 mci_writel(host, BMOD, temp);
331}
332
333static void dw_mci_idmac_complete_dma(struct dw_mci *host)
334{
335 struct mmc_data *data = host->data;
336
62ca8034 337 dev_vdbg(&host->dev, "DMA complete\n");
f95f3850
WN
338
339 host->dma_ops->cleanup(host);
340
341 /*
342 * If the card was removed, data will be NULL. No point in trying to
343 * send the stop command or waiting for NBUSY in this case.
344 */
345 if (data) {
346 set_bit(EVENT_XFER_COMPLETE, &host->pending_events);
347 tasklet_schedule(&host->tasklet);
348 }
349}
350
351static void dw_mci_translate_sglist(struct dw_mci *host, struct mmc_data *data,
352 unsigned int sg_len)
353{
354 int i;
355 struct idmac_desc *desc = host->sg_cpu;
356
357 for (i = 0; i < sg_len; i++, desc++) {
358 unsigned int length = sg_dma_len(&data->sg[i]);
359 u32 mem_addr = sg_dma_address(&data->sg[i]);
360
361 /* Set the OWN bit and disable interrupts for this descriptor */
362 desc->des0 = IDMAC_DES0_OWN | IDMAC_DES0_DIC | IDMAC_DES0_CH;
363
364 /* Buffer length */
365 IDMAC_SET_BUFFER1_SIZE(desc, length);
366
367 /* Physical address to DMA to/from */
368 desc->des2 = mem_addr;
369 }
370
371 /* Set first descriptor */
372 desc = host->sg_cpu;
373 desc->des0 |= IDMAC_DES0_FD;
374
375 /* Set last descriptor */
376 desc = host->sg_cpu + (i - 1) * sizeof(struct idmac_desc);
377 desc->des0 &= ~(IDMAC_DES0_CH | IDMAC_DES0_DIC);
378 desc->des0 |= IDMAC_DES0_LD;
379
380 wmb();
381}
382
383static void dw_mci_idmac_start_dma(struct dw_mci *host, unsigned int sg_len)
384{
385 u32 temp;
386
387 dw_mci_translate_sglist(host, host->data, sg_len);
388
389 /* Select IDMAC interface */
390 temp = mci_readl(host, CTRL);
391 temp |= SDMMC_CTRL_USE_IDMAC;
392 mci_writel(host, CTRL, temp);
393
394 wmb();
395
396 /* Enable the IDMAC */
397 temp = mci_readl(host, BMOD);
a5289a43 398 temp |= SDMMC_IDMAC_ENABLE | SDMMC_IDMAC_FB;
f95f3850
WN
399 mci_writel(host, BMOD, temp);
400
401 /* Start it running */
402 mci_writel(host, PLDMND, 1);
403}
404
405static int dw_mci_idmac_init(struct dw_mci *host)
406{
407 struct idmac_desc *p;
408 int i;
409
410 /* Number of descriptors in the ring buffer */
411 host->ring_size = PAGE_SIZE / sizeof(struct idmac_desc);
412
413 /* Forward link the descriptor list */
414 for (i = 0, p = host->sg_cpu; i < host->ring_size - 1; i++, p++)
415 p->des3 = host->sg_dma + (sizeof(struct idmac_desc) * (i + 1));
416
417 /* Set the last descriptor as the end-of-ring descriptor */
418 p->des3 = host->sg_dma;
419 p->des0 = IDMAC_DES0_ER;
420
141a712a
SJ
421 mci_writel(host, BMOD, SDMMC_IDMAC_SWRESET);
422
f95f3850
WN
423 /* Mask out interrupts - get Tx & Rx complete only */
424 mci_writel(host, IDINTEN, SDMMC_IDMAC_INT_NI | SDMMC_IDMAC_INT_RI |
425 SDMMC_IDMAC_INT_TI);
426
427 /* Set the descriptor base address */
428 mci_writel(host, DBADDR, host->sg_dma);
429 return 0;
430}
431
885c3e80
SJ
432static struct dw_mci_dma_ops dw_mci_idmac_ops = {
433 .init = dw_mci_idmac_init,
434 .start = dw_mci_idmac_start_dma,
435 .stop = dw_mci_idmac_stop_dma,
436 .complete = dw_mci_idmac_complete_dma,
437 .cleanup = dw_mci_dma_cleanup,
438};
439#endif /* CONFIG_MMC_DW_IDMAC */
440
9aa51408
SJ
441static int dw_mci_pre_dma_transfer(struct dw_mci *host,
442 struct mmc_data *data,
443 bool next)
f95f3850
WN
444{
445 struct scatterlist *sg;
9aa51408 446 unsigned int i, sg_len;
03e8cb53 447
9aa51408
SJ
448 if (!next && data->host_cookie)
449 return data->host_cookie;
f95f3850
WN
450
451 /*
452 * We don't do DMA on "complex" transfers, i.e. with
453 * non-word-aligned buffers or lengths. Also, we don't bother
454 * with all the DMA setup overhead for short transfers.
455 */
456 if (data->blocks * data->blksz < DW_MCI_DMA_THRESHOLD)
457 return -EINVAL;
9aa51408 458
f95f3850
WN
459 if (data->blksz & 3)
460 return -EINVAL;
461
462 for_each_sg(data->sg, sg, data->sg_len, i) {
463 if (sg->offset & 3 || sg->length & 3)
464 return -EINVAL;
465 }
466
9aa51408
SJ
467 sg_len = dma_map_sg(&host->dev,
468 data->sg,
469 data->sg_len,
470 dw_mci_get_dma_dir(data));
471 if (sg_len == 0)
472 return -EINVAL;
03e8cb53 473
9aa51408
SJ
474 if (next)
475 data->host_cookie = sg_len;
f95f3850 476
9aa51408
SJ
477 return sg_len;
478}
479
9aa51408
SJ
480static void dw_mci_pre_req(struct mmc_host *mmc,
481 struct mmc_request *mrq,
482 bool is_first_req)
483{
484 struct dw_mci_slot *slot = mmc_priv(mmc);
485 struct mmc_data *data = mrq->data;
486
487 if (!slot->host->use_dma || !data)
488 return;
489
490 if (data->host_cookie) {
491 data->host_cookie = 0;
492 return;
493 }
494
495 if (dw_mci_pre_dma_transfer(slot->host, mrq->data, 1) < 0)
496 data->host_cookie = 0;
497}
498
499static void dw_mci_post_req(struct mmc_host *mmc,
500 struct mmc_request *mrq,
501 int err)
502{
503 struct dw_mci_slot *slot = mmc_priv(mmc);
504 struct mmc_data *data = mrq->data;
505
506 if (!slot->host->use_dma || !data)
507 return;
508
509 if (data->host_cookie)
510 dma_unmap_sg(&slot->host->dev,
511 data->sg,
512 data->sg_len,
513 dw_mci_get_dma_dir(data));
514 data->host_cookie = 0;
515}
516
517static int dw_mci_submit_data_dma(struct dw_mci *host, struct mmc_data *data)
518{
519 int sg_len;
520 u32 temp;
521
522 host->using_dma = 0;
523
524 /* If we don't have a channel, we can't do DMA */
525 if (!host->use_dma)
526 return -ENODEV;
527
528 sg_len = dw_mci_pre_dma_transfer(host, data, 0);
a99aa9b9
SJ
529 if (sg_len < 0) {
530 host->dma_ops->stop(host);
9aa51408 531 return sg_len;
a99aa9b9 532 }
9aa51408
SJ
533
534 host->using_dma = 1;
f95f3850 535
62ca8034 536 dev_vdbg(&host->dev,
f95f3850
WN
537 "sd sg_cpu: %#lx sg_dma: %#lx sg_len: %d\n",
538 (unsigned long)host->sg_cpu, (unsigned long)host->sg_dma,
539 sg_len);
540
541 /* Enable the DMA interface */
542 temp = mci_readl(host, CTRL);
543 temp |= SDMMC_CTRL_DMA_ENABLE;
544 mci_writel(host, CTRL, temp);
545
546 /* Disable RX/TX IRQs, let DMA handle it */
547 temp = mci_readl(host, INTMASK);
548 temp &= ~(SDMMC_INT_RXDR | SDMMC_INT_TXDR);
549 mci_writel(host, INTMASK, temp);
550
551 host->dma_ops->start(host, sg_len);
552
553 return 0;
554}
555
556static void dw_mci_submit_data(struct dw_mci *host, struct mmc_data *data)
557{
558 u32 temp;
559
560 data->error = -EINPROGRESS;
561
562 WARN_ON(host->data);
563 host->sg = NULL;
564 host->data = data;
565
55c5efbc
JH
566 if (data->flags & MMC_DATA_READ)
567 host->dir_status = DW_MCI_RECV_STATUS;
568 else
569 host->dir_status = DW_MCI_SEND_STATUS;
570
f95f3850 571 if (dw_mci_submit_data_dma(host, data)) {
f9c2a0dc
SJ
572 int flags = SG_MITER_ATOMIC;
573 if (host->data->flags & MMC_DATA_READ)
574 flags |= SG_MITER_TO_SG;
575 else
576 flags |= SG_MITER_FROM_SG;
577
578 sg_miter_start(&host->sg_miter, data->sg, data->sg_len, flags);
f95f3850 579 host->sg = data->sg;
34b664a2
JH
580 host->part_buf_start = 0;
581 host->part_buf_count = 0;
f95f3850 582
b40af3aa 583 mci_writel(host, RINTSTS, SDMMC_INT_TXDR | SDMMC_INT_RXDR);
f95f3850
WN
584 temp = mci_readl(host, INTMASK);
585 temp |= SDMMC_INT_TXDR | SDMMC_INT_RXDR;
586 mci_writel(host, INTMASK, temp);
587
588 temp = mci_readl(host, CTRL);
589 temp &= ~SDMMC_CTRL_DMA_ENABLE;
590 mci_writel(host, CTRL, temp);
591 }
592}
593
594static void mci_send_cmd(struct dw_mci_slot *slot, u32 cmd, u32 arg)
595{
596 struct dw_mci *host = slot->host;
597 unsigned long timeout = jiffies + msecs_to_jiffies(500);
598 unsigned int cmd_status = 0;
599
600 mci_writel(host, CMDARG, arg);
601 wmb();
602 mci_writel(host, CMD, SDMMC_CMD_START | cmd);
603
604 while (time_before(jiffies, timeout)) {
605 cmd_status = mci_readl(host, CMD);
606 if (!(cmd_status & SDMMC_CMD_START))
607 return;
608 }
609 dev_err(&slot->mmc->class_dev,
610 "Timeout sending command (cmd %#x arg %#x status %#x)\n",
611 cmd, arg, cmd_status);
612}
613
614static void dw_mci_setup_bus(struct dw_mci_slot *slot)
615{
616 struct dw_mci *host = slot->host;
617 u32 div;
618
619 if (slot->clock != host->current_speed) {
620 if (host->bus_hz % slot->clock)
621 /*
622 * move the + 1 after the divide to prevent
623 * over-clocking the card.
624 */
625 div = ((host->bus_hz / slot->clock) >> 1) + 1;
626 else
627 div = (host->bus_hz / slot->clock) >> 1;
628
629 dev_info(&slot->mmc->class_dev,
630 "Bus speed (slot %d) = %dHz (slot req %dHz, actual %dHZ"
631 " div = %d)\n", slot->id, host->bus_hz, slot->clock,
632 div ? ((host->bus_hz / div) >> 1) : host->bus_hz, div);
633
634 /* disable clock */
635 mci_writel(host, CLKENA, 0);
636 mci_writel(host, CLKSRC, 0);
637
638 /* inform CIU */
639 mci_send_cmd(slot,
640 SDMMC_CMD_UPD_CLK | SDMMC_CMD_PRV_DAT_WAIT, 0);
641
642 /* set clock to desired speed */
643 mci_writel(host, CLKDIV, div);
644
645 /* inform CIU */
646 mci_send_cmd(slot,
647 SDMMC_CMD_UPD_CLK | SDMMC_CMD_PRV_DAT_WAIT, 0);
648
649 /* enable clock */
e3891dc5
JC
650 mci_writel(host, CLKENA, ((SDMMC_CLKEN_ENABLE |
651 SDMMC_CLKEN_LOW_PWR) << slot->id));
f95f3850
WN
652
653 /* inform CIU */
654 mci_send_cmd(slot,
655 SDMMC_CMD_UPD_CLK | SDMMC_CMD_PRV_DAT_WAIT, 0);
656
657 host->current_speed = slot->clock;
658 }
659
660 /* Set the current slot bus width */
1d56c453 661 mci_writel(host, CTYPE, (slot->ctype << slot->id));
f95f3850
WN
662}
663
053b3ce6
SJ
664static void __dw_mci_start_request(struct dw_mci *host,
665 struct dw_mci_slot *slot,
666 struct mmc_command *cmd)
f95f3850
WN
667{
668 struct mmc_request *mrq;
f95f3850
WN
669 struct mmc_data *data;
670 u32 cmdflags;
671
672 mrq = slot->mrq;
673 if (host->pdata->select_slot)
674 host->pdata->select_slot(slot->id);
675
676 /* Slot specific timing and width adjustment */
677 dw_mci_setup_bus(slot);
678
679 host->cur_slot = slot;
680 host->mrq = mrq;
681
682 host->pending_events = 0;
683 host->completed_events = 0;
684 host->data_status = 0;
685
053b3ce6 686 data = cmd->data;
f95f3850
WN
687 if (data) {
688 dw_mci_set_timeout(host);
689 mci_writel(host, BYTCNT, data->blksz*data->blocks);
690 mci_writel(host, BLKSIZ, data->blksz);
691 }
692
f95f3850
WN
693 cmdflags = dw_mci_prepare_command(slot->mmc, cmd);
694
695 /* this is the first command, send the initialization clock */
696 if (test_and_clear_bit(DW_MMC_CARD_NEED_INIT, &slot->flags))
697 cmdflags |= SDMMC_CMD_INIT;
698
699 if (data) {
700 dw_mci_submit_data(host, data);
701 wmb();
702 }
703
704 dw_mci_start_command(host, cmd, cmdflags);
705
706 if (mrq->stop)
707 host->stop_cmdr = dw_mci_prepare_command(slot->mmc, mrq->stop);
708}
709
053b3ce6
SJ
710static void dw_mci_start_request(struct dw_mci *host,
711 struct dw_mci_slot *slot)
712{
713 struct mmc_request *mrq = slot->mrq;
714 struct mmc_command *cmd;
715
716 cmd = mrq->sbc ? mrq->sbc : mrq->cmd;
717 __dw_mci_start_request(host, slot, cmd);
718}
719
7456caae 720/* must be called with host->lock held */
f95f3850
WN
721static void dw_mci_queue_request(struct dw_mci *host, struct dw_mci_slot *slot,
722 struct mmc_request *mrq)
723{
724 dev_vdbg(&slot->mmc->class_dev, "queue request: state=%d\n",
725 host->state);
726
f95f3850
WN
727 slot->mrq = mrq;
728
729 if (host->state == STATE_IDLE) {
730 host->state = STATE_SENDING_CMD;
731 dw_mci_start_request(host, slot);
732 } else {
733 list_add_tail(&slot->queue_node, &host->queue);
734 }
f95f3850
WN
735}
736
737static void dw_mci_request(struct mmc_host *mmc, struct mmc_request *mrq)
738{
739 struct dw_mci_slot *slot = mmc_priv(mmc);
740 struct dw_mci *host = slot->host;
741
742 WARN_ON(slot->mrq);
743
7456caae
JH
744 /*
745 * The check for card presence and queueing of the request must be
746 * atomic, otherwise the card could be removed in between and the
747 * request wouldn't fail until another card was inserted.
748 */
749 spin_lock_bh(&host->lock);
750
f95f3850 751 if (!test_bit(DW_MMC_CARD_PRESENT, &slot->flags)) {
7456caae 752 spin_unlock_bh(&host->lock);
f95f3850
WN
753 mrq->cmd->error = -ENOMEDIUM;
754 mmc_request_done(mmc, mrq);
755 return;
756 }
757
f95f3850 758 dw_mci_queue_request(host, slot, mrq);
7456caae
JH
759
760 spin_unlock_bh(&host->lock);
f95f3850
WN
761}
762
763static void dw_mci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
764{
765 struct dw_mci_slot *slot = mmc_priv(mmc);
41babf75 766 u32 regs;
f95f3850
WN
767
768 /* set default 1 bit mode */
769 slot->ctype = SDMMC_CTYPE_1BIT;
770
771 switch (ios->bus_width) {
772 case MMC_BUS_WIDTH_1:
773 slot->ctype = SDMMC_CTYPE_1BIT;
774 break;
775 case MMC_BUS_WIDTH_4:
776 slot->ctype = SDMMC_CTYPE_4BIT;
777 break;
c9b2a06f
JC
778 case MMC_BUS_WIDTH_8:
779 slot->ctype = SDMMC_CTYPE_8BIT;
780 break;
f95f3850
WN
781 }
782
3f514291
SJ
783 regs = mci_readl(slot->host, UHS_REG);
784
41babf75 785 /* DDR mode set */
3f514291 786 if (ios->timing == MMC_TIMING_UHS_DDR50)
41babf75 787 regs |= (0x1 << slot->id) << 16;
3f514291
SJ
788 else
789 regs &= ~(0x1 << slot->id) << 16;
790
791 mci_writel(slot->host, UHS_REG, regs);
41babf75 792
f95f3850
WN
793 if (ios->clock) {
794 /*
795 * Use mirror of ios->clock to prevent race with mmc
796 * core ios update when finding the minimum.
797 */
798 slot->clock = ios->clock;
799 }
800
801 switch (ios->power_mode) {
802 case MMC_POWER_UP:
803 set_bit(DW_MMC_CARD_NEED_INIT, &slot->flags);
804 break;
805 default:
806 break;
807 }
808}
809
810static int dw_mci_get_ro(struct mmc_host *mmc)
811{
812 int read_only;
813 struct dw_mci_slot *slot = mmc_priv(mmc);
814 struct dw_mci_board *brd = slot->host->pdata;
815
816 /* Use platform get_ro function, else try on board write protect */
817 if (brd->get_ro)
818 read_only = brd->get_ro(slot->id);
819 else
820 read_only =
821 mci_readl(slot->host, WRTPRT) & (1 << slot->id) ? 1 : 0;
822
823 dev_dbg(&mmc->class_dev, "card is %s\n",
824 read_only ? "read-only" : "read-write");
825
826 return read_only;
827}
828
829static int dw_mci_get_cd(struct mmc_host *mmc)
830{
831 int present;
832 struct dw_mci_slot *slot = mmc_priv(mmc);
833 struct dw_mci_board *brd = slot->host->pdata;
834
835 /* Use platform get_cd function, else try onboard card detect */
fc3d7720
JC
836 if (brd->quirks & DW_MCI_QUIRK_BROKEN_CARD_DETECTION)
837 present = 1;
838 else if (brd->get_cd)
f95f3850
WN
839 present = !brd->get_cd(slot->id);
840 else
841 present = (mci_readl(slot->host, CDETECT) & (1 << slot->id))
842 == 0 ? 1 : 0;
843
844 if (present)
845 dev_dbg(&mmc->class_dev, "card is present\n");
846 else
847 dev_dbg(&mmc->class_dev, "card is not present\n");
848
849 return present;
850}
851
1a5c8e1f
SH
852static void dw_mci_enable_sdio_irq(struct mmc_host *mmc, int enb)
853{
854 struct dw_mci_slot *slot = mmc_priv(mmc);
855 struct dw_mci *host = slot->host;
856 u32 int_mask;
857
858 /* Enable/disable Slot Specific SDIO interrupt */
859 int_mask = mci_readl(host, INTMASK);
860 if (enb) {
861 mci_writel(host, INTMASK,
705ad047 862 (int_mask | SDMMC_INT_SDIO(slot->id)));
1a5c8e1f
SH
863 } else {
864 mci_writel(host, INTMASK,
705ad047 865 (int_mask & ~SDMMC_INT_SDIO(slot->id)));
1a5c8e1f
SH
866 }
867}
868
f95f3850 869static const struct mmc_host_ops dw_mci_ops = {
1a5c8e1f 870 .request = dw_mci_request,
9aa51408
SJ
871 .pre_req = dw_mci_pre_req,
872 .post_req = dw_mci_post_req,
1a5c8e1f
SH
873 .set_ios = dw_mci_set_ios,
874 .get_ro = dw_mci_get_ro,
875 .get_cd = dw_mci_get_cd,
876 .enable_sdio_irq = dw_mci_enable_sdio_irq,
f95f3850
WN
877};
878
879static void dw_mci_request_end(struct dw_mci *host, struct mmc_request *mrq)
880 __releases(&host->lock)
881 __acquires(&host->lock)
882{
883 struct dw_mci_slot *slot;
884 struct mmc_host *prev_mmc = host->cur_slot->mmc;
885
886 WARN_ON(host->cmd || host->data);
887
888 host->cur_slot->mrq = NULL;
889 host->mrq = NULL;
890 if (!list_empty(&host->queue)) {
891 slot = list_entry(host->queue.next,
892 struct dw_mci_slot, queue_node);
893 list_del(&slot->queue_node);
62ca8034 894 dev_vdbg(&host->dev, "list not empty: %s is next\n",
f95f3850
WN
895 mmc_hostname(slot->mmc));
896 host->state = STATE_SENDING_CMD;
897 dw_mci_start_request(host, slot);
898 } else {
62ca8034 899 dev_vdbg(&host->dev, "list empty\n");
f95f3850
WN
900 host->state = STATE_IDLE;
901 }
902
903 spin_unlock(&host->lock);
904 mmc_request_done(prev_mmc, mrq);
905 spin_lock(&host->lock);
906}
907
908static void dw_mci_command_complete(struct dw_mci *host, struct mmc_command *cmd)
909{
910 u32 status = host->cmd_status;
911
912 host->cmd_status = 0;
913
914 /* Read the response from the card (up to 16 bytes) */
915 if (cmd->flags & MMC_RSP_PRESENT) {
916 if (cmd->flags & MMC_RSP_136) {
917 cmd->resp[3] = mci_readl(host, RESP0);
918 cmd->resp[2] = mci_readl(host, RESP1);
919 cmd->resp[1] = mci_readl(host, RESP2);
920 cmd->resp[0] = mci_readl(host, RESP3);
921 } else {
922 cmd->resp[0] = mci_readl(host, RESP0);
923 cmd->resp[1] = 0;
924 cmd->resp[2] = 0;
925 cmd->resp[3] = 0;
926 }
927 }
928
929 if (status & SDMMC_INT_RTO)
930 cmd->error = -ETIMEDOUT;
931 else if ((cmd->flags & MMC_RSP_CRC) && (status & SDMMC_INT_RCRC))
932 cmd->error = -EILSEQ;
933 else if (status & SDMMC_INT_RESP_ERR)
934 cmd->error = -EIO;
935 else
936 cmd->error = 0;
937
938 if (cmd->error) {
939 /* newer ip versions need a delay between retries */
940 if (host->quirks & DW_MCI_QUIRK_RETRY_DELAY)
941 mdelay(20);
942
943 if (cmd->data) {
944 host->data = NULL;
945 dw_mci_stop_dma(host);
946 }
947 }
948}
949
950static void dw_mci_tasklet_func(unsigned long priv)
951{
952 struct dw_mci *host = (struct dw_mci *)priv;
953 struct mmc_data *data;
954 struct mmc_command *cmd;
955 enum dw_mci_state state;
956 enum dw_mci_state prev_state;
94dd5b33 957 u32 status, ctrl;
f95f3850
WN
958
959 spin_lock(&host->lock);
960
961 state = host->state;
962 data = host->data;
963
964 do {
965 prev_state = state;
966
967 switch (state) {
968 case STATE_IDLE:
969 break;
970
971 case STATE_SENDING_CMD:
972 if (!test_and_clear_bit(EVENT_CMD_COMPLETE,
973 &host->pending_events))
974 break;
975
976 cmd = host->cmd;
977 host->cmd = NULL;
978 set_bit(EVENT_CMD_COMPLETE, &host->completed_events);
053b3ce6
SJ
979 dw_mci_command_complete(host, cmd);
980 if (cmd == host->mrq->sbc && !cmd->error) {
981 prev_state = state = STATE_SENDING_CMD;
982 __dw_mci_start_request(host, host->cur_slot,
983 host->mrq->cmd);
984 goto unlock;
985 }
986
f95f3850
WN
987 if (!host->mrq->data || cmd->error) {
988 dw_mci_request_end(host, host->mrq);
989 goto unlock;
990 }
991
992 prev_state = state = STATE_SENDING_DATA;
993 /* fall through */
994
995 case STATE_SENDING_DATA:
996 if (test_and_clear_bit(EVENT_DATA_ERROR,
997 &host->pending_events)) {
998 dw_mci_stop_dma(host);
999 if (data->stop)
1000 send_stop_cmd(host, data);
1001 state = STATE_DATA_ERROR;
1002 break;
1003 }
1004
1005 if (!test_and_clear_bit(EVENT_XFER_COMPLETE,
1006 &host->pending_events))
1007 break;
1008
1009 set_bit(EVENT_XFER_COMPLETE, &host->completed_events);
1010 prev_state = state = STATE_DATA_BUSY;
1011 /* fall through */
1012
1013 case STATE_DATA_BUSY:
1014 if (!test_and_clear_bit(EVENT_DATA_COMPLETE,
1015 &host->pending_events))
1016 break;
1017
1018 host->data = NULL;
1019 set_bit(EVENT_DATA_COMPLETE, &host->completed_events);
1020 status = host->data_status;
1021
1022 if (status & DW_MCI_DATA_ERROR_FLAGS) {
1023 if (status & SDMMC_INT_DTO) {
f95f3850
WN
1024 data->error = -ETIMEDOUT;
1025 } else if (status & SDMMC_INT_DCRC) {
f95f3850 1026 data->error = -EILSEQ;
55c5efbc
JH
1027 } else if (status & SDMMC_INT_EBE &&
1028 host->dir_status ==
1029 DW_MCI_SEND_STATUS) {
1030 /*
1031 * No data CRC status was returned.
1032 * The number of bytes transferred will
1033 * be exaggerated in PIO mode.
1034 */
1035 data->bytes_xfered = 0;
1036 data->error = -ETIMEDOUT;
f95f3850 1037 } else {
62ca8034 1038 dev_err(&host->dev,
f95f3850
WN
1039 "data FIFO error "
1040 "(status=%08x)\n",
1041 status);
1042 data->error = -EIO;
1043 }
94dd5b33
JH
1044 /*
1045 * After an error, there may be data lingering
1046 * in the FIFO, so reset it - doing so
1047 * generates a block interrupt, hence setting
1048 * the scatter-gather pointer to NULL.
1049 */
f9c2a0dc 1050 sg_miter_stop(&host->sg_miter);
94dd5b33
JH
1051 host->sg = NULL;
1052 ctrl = mci_readl(host, CTRL);
1053 ctrl |= SDMMC_CTRL_FIFO_RESET;
1054 mci_writel(host, CTRL, ctrl);
f95f3850
WN
1055 } else {
1056 data->bytes_xfered = data->blocks * data->blksz;
1057 data->error = 0;
1058 }
1059
1060 if (!data->stop) {
1061 dw_mci_request_end(host, host->mrq);
1062 goto unlock;
1063 }
1064
053b3ce6
SJ
1065 if (host->mrq->sbc && !data->error) {
1066 data->stop->error = 0;
1067 dw_mci_request_end(host, host->mrq);
1068 goto unlock;
1069 }
1070
f95f3850
WN
1071 prev_state = state = STATE_SENDING_STOP;
1072 if (!data->error)
1073 send_stop_cmd(host, data);
1074 /* fall through */
1075
1076 case STATE_SENDING_STOP:
1077 if (!test_and_clear_bit(EVENT_CMD_COMPLETE,
1078 &host->pending_events))
1079 break;
1080
1081 host->cmd = NULL;
1082 dw_mci_command_complete(host, host->mrq->stop);
1083 dw_mci_request_end(host, host->mrq);
1084 goto unlock;
1085
1086 case STATE_DATA_ERROR:
1087 if (!test_and_clear_bit(EVENT_XFER_COMPLETE,
1088 &host->pending_events))
1089 break;
1090
1091 state = STATE_DATA_BUSY;
1092 break;
1093 }
1094 } while (state != prev_state);
1095
1096 host->state = state;
1097unlock:
1098 spin_unlock(&host->lock);
1099
1100}
1101
34b664a2
JH
1102/* push final bytes to part_buf, only use during push */
1103static void dw_mci_set_part_bytes(struct dw_mci *host, void *buf, int cnt)
f95f3850 1104{
34b664a2
JH
1105 memcpy((void *)&host->part_buf, buf, cnt);
1106 host->part_buf_count = cnt;
1107}
f95f3850 1108
34b664a2
JH
1109/* append bytes to part_buf, only use during push */
1110static int dw_mci_push_part_bytes(struct dw_mci *host, void *buf, int cnt)
1111{
1112 cnt = min(cnt, (1 << host->data_shift) - host->part_buf_count);
1113 memcpy((void *)&host->part_buf + host->part_buf_count, buf, cnt);
1114 host->part_buf_count += cnt;
1115 return cnt;
1116}
f95f3850 1117
34b664a2
JH
1118/* pull first bytes from part_buf, only use during pull */
1119static int dw_mci_pull_part_bytes(struct dw_mci *host, void *buf, int cnt)
1120{
1121 cnt = min(cnt, (int)host->part_buf_count);
1122 if (cnt) {
1123 memcpy(buf, (void *)&host->part_buf + host->part_buf_start,
1124 cnt);
1125 host->part_buf_count -= cnt;
1126 host->part_buf_start += cnt;
f95f3850 1127 }
34b664a2 1128 return cnt;
f95f3850
WN
1129}
1130
34b664a2
JH
1131/* pull final bytes from the part_buf, assuming it's just been filled */
1132static void dw_mci_pull_final_bytes(struct dw_mci *host, void *buf, int cnt)
f95f3850 1133{
34b664a2
JH
1134 memcpy(buf, &host->part_buf, cnt);
1135 host->part_buf_start = cnt;
1136 host->part_buf_count = (1 << host->data_shift) - cnt;
1137}
f95f3850 1138
34b664a2
JH
1139static void dw_mci_push_data16(struct dw_mci *host, void *buf, int cnt)
1140{
1141 /* try and push anything in the part_buf */
1142 if (unlikely(host->part_buf_count)) {
1143 int len = dw_mci_push_part_bytes(host, buf, cnt);
1144 buf += len;
1145 cnt -= len;
1146 if (!sg_next(host->sg) || host->part_buf_count == 2) {
4e0a5adf
JC
1147 mci_writew(host, DATA(host->data_offset),
1148 host->part_buf16);
34b664a2
JH
1149 host->part_buf_count = 0;
1150 }
1151 }
1152#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
1153 if (unlikely((unsigned long)buf & 0x1)) {
1154 while (cnt >= 2) {
1155 u16 aligned_buf[64];
1156 int len = min(cnt & -2, (int)sizeof(aligned_buf));
1157 int items = len >> 1;
1158 int i;
1159 /* memcpy from input buffer into aligned buffer */
1160 memcpy(aligned_buf, buf, len);
1161 buf += len;
1162 cnt -= len;
1163 /* push data from aligned buffer into fifo */
1164 for (i = 0; i < items; ++i)
4e0a5adf
JC
1165 mci_writew(host, DATA(host->data_offset),
1166 aligned_buf[i]);
34b664a2
JH
1167 }
1168 } else
1169#endif
1170 {
1171 u16 *pdata = buf;
1172 for (; cnt >= 2; cnt -= 2)
4e0a5adf 1173 mci_writew(host, DATA(host->data_offset), *pdata++);
34b664a2
JH
1174 buf = pdata;
1175 }
1176 /* put anything remaining in the part_buf */
1177 if (cnt) {
1178 dw_mci_set_part_bytes(host, buf, cnt);
1179 if (!sg_next(host->sg))
4e0a5adf
JC
1180 mci_writew(host, DATA(host->data_offset),
1181 host->part_buf16);
34b664a2
JH
1182 }
1183}
f95f3850 1184
34b664a2
JH
1185static void dw_mci_pull_data16(struct dw_mci *host, void *buf, int cnt)
1186{
1187#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
1188 if (unlikely((unsigned long)buf & 0x1)) {
1189 while (cnt >= 2) {
1190 /* pull data from fifo into aligned buffer */
1191 u16 aligned_buf[64];
1192 int len = min(cnt & -2, (int)sizeof(aligned_buf));
1193 int items = len >> 1;
1194 int i;
1195 for (i = 0; i < items; ++i)
4e0a5adf
JC
1196 aligned_buf[i] = mci_readw(host,
1197 DATA(host->data_offset));
34b664a2
JH
1198 /* memcpy from aligned buffer into output buffer */
1199 memcpy(buf, aligned_buf, len);
1200 buf += len;
1201 cnt -= len;
1202 }
1203 } else
1204#endif
1205 {
1206 u16 *pdata = buf;
1207 for (; cnt >= 2; cnt -= 2)
4e0a5adf 1208 *pdata++ = mci_readw(host, DATA(host->data_offset));
34b664a2
JH
1209 buf = pdata;
1210 }
1211 if (cnt) {
4e0a5adf 1212 host->part_buf16 = mci_readw(host, DATA(host->data_offset));
34b664a2 1213 dw_mci_pull_final_bytes(host, buf, cnt);
f95f3850
WN
1214 }
1215}
1216
1217static void dw_mci_push_data32(struct dw_mci *host, void *buf, int cnt)
1218{
34b664a2
JH
1219 /* try and push anything in the part_buf */
1220 if (unlikely(host->part_buf_count)) {
1221 int len = dw_mci_push_part_bytes(host, buf, cnt);
1222 buf += len;
1223 cnt -= len;
1224 if (!sg_next(host->sg) || host->part_buf_count == 4) {
4e0a5adf
JC
1225 mci_writel(host, DATA(host->data_offset),
1226 host->part_buf32);
34b664a2
JH
1227 host->part_buf_count = 0;
1228 }
1229 }
1230#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
1231 if (unlikely((unsigned long)buf & 0x3)) {
1232 while (cnt >= 4) {
1233 u32 aligned_buf[32];
1234 int len = min(cnt & -4, (int)sizeof(aligned_buf));
1235 int items = len >> 2;
1236 int i;
1237 /* memcpy from input buffer into aligned buffer */
1238 memcpy(aligned_buf, buf, len);
1239 buf += len;
1240 cnt -= len;
1241 /* push data from aligned buffer into fifo */
1242 for (i = 0; i < items; ++i)
4e0a5adf
JC
1243 mci_writel(host, DATA(host->data_offset),
1244 aligned_buf[i]);
34b664a2
JH
1245 }
1246 } else
1247#endif
1248 {
1249 u32 *pdata = buf;
1250 for (; cnt >= 4; cnt -= 4)
4e0a5adf 1251 mci_writel(host, DATA(host->data_offset), *pdata++);
34b664a2
JH
1252 buf = pdata;
1253 }
1254 /* put anything remaining in the part_buf */
1255 if (cnt) {
1256 dw_mci_set_part_bytes(host, buf, cnt);
1257 if (!sg_next(host->sg))
4e0a5adf
JC
1258 mci_writel(host, DATA(host->data_offset),
1259 host->part_buf32);
f95f3850
WN
1260 }
1261}
1262
1263static void dw_mci_pull_data32(struct dw_mci *host, void *buf, int cnt)
1264{
34b664a2
JH
1265#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
1266 if (unlikely((unsigned long)buf & 0x3)) {
1267 while (cnt >= 4) {
1268 /* pull data from fifo into aligned buffer */
1269 u32 aligned_buf[32];
1270 int len = min(cnt & -4, (int)sizeof(aligned_buf));
1271 int items = len >> 2;
1272 int i;
1273 for (i = 0; i < items; ++i)
4e0a5adf
JC
1274 aligned_buf[i] = mci_readl(host,
1275 DATA(host->data_offset));
34b664a2
JH
1276 /* memcpy from aligned buffer into output buffer */
1277 memcpy(buf, aligned_buf, len);
1278 buf += len;
1279 cnt -= len;
1280 }
1281 } else
1282#endif
1283 {
1284 u32 *pdata = buf;
1285 for (; cnt >= 4; cnt -= 4)
4e0a5adf 1286 *pdata++ = mci_readl(host, DATA(host->data_offset));
34b664a2
JH
1287 buf = pdata;
1288 }
1289 if (cnt) {
4e0a5adf 1290 host->part_buf32 = mci_readl(host, DATA(host->data_offset));
34b664a2 1291 dw_mci_pull_final_bytes(host, buf, cnt);
f95f3850
WN
1292 }
1293}
1294
1295static void dw_mci_push_data64(struct dw_mci *host, void *buf, int cnt)
1296{
34b664a2
JH
1297 /* try and push anything in the part_buf */
1298 if (unlikely(host->part_buf_count)) {
1299 int len = dw_mci_push_part_bytes(host, buf, cnt);
1300 buf += len;
1301 cnt -= len;
1302 if (!sg_next(host->sg) || host->part_buf_count == 8) {
4e0a5adf
JC
1303 mci_writew(host, DATA(host->data_offset),
1304 host->part_buf);
34b664a2
JH
1305 host->part_buf_count = 0;
1306 }
1307 }
1308#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
1309 if (unlikely((unsigned long)buf & 0x7)) {
1310 while (cnt >= 8) {
1311 u64 aligned_buf[16];
1312 int len = min(cnt & -8, (int)sizeof(aligned_buf));
1313 int items = len >> 3;
1314 int i;
1315 /* memcpy from input buffer into aligned buffer */
1316 memcpy(aligned_buf, buf, len);
1317 buf += len;
1318 cnt -= len;
1319 /* push data from aligned buffer into fifo */
1320 for (i = 0; i < items; ++i)
4e0a5adf
JC
1321 mci_writeq(host, DATA(host->data_offset),
1322 aligned_buf[i]);
34b664a2
JH
1323 }
1324 } else
1325#endif
1326 {
1327 u64 *pdata = buf;
1328 for (; cnt >= 8; cnt -= 8)
4e0a5adf 1329 mci_writeq(host, DATA(host->data_offset), *pdata++);
34b664a2
JH
1330 buf = pdata;
1331 }
1332 /* put anything remaining in the part_buf */
1333 if (cnt) {
1334 dw_mci_set_part_bytes(host, buf, cnt);
1335 if (!sg_next(host->sg))
4e0a5adf
JC
1336 mci_writeq(host, DATA(host->data_offset),
1337 host->part_buf);
f95f3850
WN
1338 }
1339}
1340
1341static void dw_mci_pull_data64(struct dw_mci *host, void *buf, int cnt)
1342{
34b664a2
JH
1343#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
1344 if (unlikely((unsigned long)buf & 0x7)) {
1345 while (cnt >= 8) {
1346 /* pull data from fifo into aligned buffer */
1347 u64 aligned_buf[16];
1348 int len = min(cnt & -8, (int)sizeof(aligned_buf));
1349 int items = len >> 3;
1350 int i;
1351 for (i = 0; i < items; ++i)
4e0a5adf
JC
1352 aligned_buf[i] = mci_readq(host,
1353 DATA(host->data_offset));
34b664a2
JH
1354 /* memcpy from aligned buffer into output buffer */
1355 memcpy(buf, aligned_buf, len);
1356 buf += len;
1357 cnt -= len;
1358 }
1359 } else
1360#endif
1361 {
1362 u64 *pdata = buf;
1363 for (; cnt >= 8; cnt -= 8)
4e0a5adf 1364 *pdata++ = mci_readq(host, DATA(host->data_offset));
34b664a2
JH
1365 buf = pdata;
1366 }
1367 if (cnt) {
4e0a5adf 1368 host->part_buf = mci_readq(host, DATA(host->data_offset));
34b664a2
JH
1369 dw_mci_pull_final_bytes(host, buf, cnt);
1370 }
1371}
f95f3850 1372
34b664a2
JH
1373static void dw_mci_pull_data(struct dw_mci *host, void *buf, int cnt)
1374{
1375 int len;
f95f3850 1376
34b664a2
JH
1377 /* get remaining partial bytes */
1378 len = dw_mci_pull_part_bytes(host, buf, cnt);
1379 if (unlikely(len == cnt))
1380 return;
1381 buf += len;
1382 cnt -= len;
1383
1384 /* get the rest of the data */
1385 host->pull_data(host, buf, cnt);
f95f3850
WN
1386}
1387
1388static void dw_mci_read_data_pio(struct dw_mci *host)
1389{
f9c2a0dc
SJ
1390 struct sg_mapping_iter *sg_miter = &host->sg_miter;
1391 void *buf;
1392 unsigned int offset;
f95f3850
WN
1393 struct mmc_data *data = host->data;
1394 int shift = host->data_shift;
1395 u32 status;
ba6a902d 1396 unsigned int nbytes = 0, len;
f9c2a0dc 1397 unsigned int remain, fcnt;
f95f3850
WN
1398
1399 do {
f9c2a0dc
SJ
1400 if (!sg_miter_next(sg_miter))
1401 goto done;
1402
1403 host->sg = sg_miter->__sg;
1404 buf = sg_miter->addr;
1405 remain = sg_miter->length;
1406 offset = 0;
1407
1408 do {
1409 fcnt = (SDMMC_GET_FCNT(mci_readl(host, STATUS))
1410 << shift) + host->part_buf_count;
1411 len = min(remain, fcnt);
1412 if (!len)
1413 break;
34b664a2 1414 dw_mci_pull_data(host, (void *)(buf + offset), len);
f95f3850
WN
1415 offset += len;
1416 nbytes += len;
f9c2a0dc
SJ
1417 remain -= len;
1418 } while (remain);
1419 sg_miter->consumed = offset;
f95f3850
WN
1420
1421 status = mci_readl(host, MINTSTS);
1422 mci_writel(host, RINTSTS, SDMMC_INT_RXDR);
1423 if (status & DW_MCI_DATA_ERROR_FLAGS) {
1424 host->data_status = status;
1425 data->bytes_xfered += nbytes;
f9c2a0dc
SJ
1426 sg_miter_stop(sg_miter);
1427 host->sg = NULL;
f95f3850
WN
1428 smp_wmb();
1429
1430 set_bit(EVENT_DATA_ERROR, &host->pending_events);
1431
1432 tasklet_schedule(&host->tasklet);
1433 return;
1434 }
f95f3850 1435 } while (status & SDMMC_INT_RXDR); /*if the RXDR is ready read again*/
f95f3850 1436 data->bytes_xfered += nbytes;
f9c2a0dc
SJ
1437
1438 if (!remain) {
1439 if (!sg_miter_next(sg_miter))
1440 goto done;
1441 sg_miter->consumed = 0;
1442 }
1443 sg_miter_stop(sg_miter);
f95f3850
WN
1444 return;
1445
1446done:
1447 data->bytes_xfered += nbytes;
f9c2a0dc
SJ
1448 sg_miter_stop(sg_miter);
1449 host->sg = NULL;
f95f3850
WN
1450 smp_wmb();
1451 set_bit(EVENT_XFER_COMPLETE, &host->pending_events);
1452}
1453
1454static void dw_mci_write_data_pio(struct dw_mci *host)
1455{
f9c2a0dc
SJ
1456 struct sg_mapping_iter *sg_miter = &host->sg_miter;
1457 void *buf;
1458 unsigned int offset;
f95f3850
WN
1459 struct mmc_data *data = host->data;
1460 int shift = host->data_shift;
1461 u32 status;
1462 unsigned int nbytes = 0, len;
f9c2a0dc
SJ
1463 unsigned int fifo_depth = host->fifo_depth;
1464 unsigned int remain, fcnt;
f95f3850
WN
1465
1466 do {
f9c2a0dc
SJ
1467 if (!sg_miter_next(sg_miter))
1468 goto done;
1469
1470 host->sg = sg_miter->__sg;
1471 buf = sg_miter->addr;
1472 remain = sg_miter->length;
1473 offset = 0;
1474
1475 do {
1476 fcnt = ((fifo_depth -
1477 SDMMC_GET_FCNT(mci_readl(host, STATUS)))
1478 << shift) - host->part_buf_count;
1479 len = min(remain, fcnt);
1480 if (!len)
1481 break;
f95f3850 1482 host->push_data(host, (void *)(buf + offset), len);
f95f3850
WN
1483 offset += len;
1484 nbytes += len;
f9c2a0dc
SJ
1485 remain -= len;
1486 } while (remain);
1487 sg_miter->consumed = offset;
f95f3850
WN
1488
1489 status = mci_readl(host, MINTSTS);
1490 mci_writel(host, RINTSTS, SDMMC_INT_TXDR);
1491 if (status & DW_MCI_DATA_ERROR_FLAGS) {
1492 host->data_status = status;
1493 data->bytes_xfered += nbytes;
f9c2a0dc
SJ
1494 sg_miter_stop(sg_miter);
1495 host->sg = NULL;
f95f3850
WN
1496
1497 smp_wmb();
1498
1499 set_bit(EVENT_DATA_ERROR, &host->pending_events);
1500
1501 tasklet_schedule(&host->tasklet);
1502 return;
1503 }
1504 } while (status & SDMMC_INT_TXDR); /* if TXDR write again */
f95f3850 1505 data->bytes_xfered += nbytes;
f9c2a0dc
SJ
1506
1507 if (!remain) {
1508 if (!sg_miter_next(sg_miter))
1509 goto done;
1510 sg_miter->consumed = 0;
1511 }
1512 sg_miter_stop(sg_miter);
f95f3850
WN
1513 return;
1514
1515done:
1516 data->bytes_xfered += nbytes;
f9c2a0dc
SJ
1517 sg_miter_stop(sg_miter);
1518 host->sg = NULL;
f95f3850
WN
1519 smp_wmb();
1520 set_bit(EVENT_XFER_COMPLETE, &host->pending_events);
1521}
1522
1523static void dw_mci_cmd_interrupt(struct dw_mci *host, u32 status)
1524{
1525 if (!host->cmd_status)
1526 host->cmd_status = status;
1527
1528 smp_wmb();
1529
1530 set_bit(EVENT_CMD_COMPLETE, &host->pending_events);
1531 tasklet_schedule(&host->tasklet);
1532}
1533
1534static irqreturn_t dw_mci_interrupt(int irq, void *dev_id)
1535{
1536 struct dw_mci *host = dev_id;
1537 u32 status, pending;
1538 unsigned int pass_count = 0;
1a5c8e1f 1539 int i;
f95f3850
WN
1540
1541 do {
1542 status = mci_readl(host, RINTSTS);
1543 pending = mci_readl(host, MINTSTS); /* read-only mask reg */
1544
1545 /*
1546 * DTO fix - version 2.10a and below, and only if internal DMA
1547 * is configured.
1548 */
1549 if (host->quirks & DW_MCI_QUIRK_IDMAC_DTO) {
1550 if (!pending &&
1551 ((mci_readl(host, STATUS) >> 17) & 0x1fff))
1552 pending |= SDMMC_INT_DATA_OVER;
1553 }
1554
1555 if (!pending)
1556 break;
1557
1558 if (pending & DW_MCI_CMD_ERROR_FLAGS) {
1559 mci_writel(host, RINTSTS, DW_MCI_CMD_ERROR_FLAGS);
1560 host->cmd_status = status;
1561 smp_wmb();
1562 set_bit(EVENT_CMD_COMPLETE, &host->pending_events);
f95f3850
WN
1563 }
1564
1565 if (pending & DW_MCI_DATA_ERROR_FLAGS) {
1566 /* if there is an error report DATA_ERROR */
1567 mci_writel(host, RINTSTS, DW_MCI_DATA_ERROR_FLAGS);
1568 host->data_status = status;
1569 smp_wmb();
1570 set_bit(EVENT_DATA_ERROR, &host->pending_events);
6e83e10d
SJ
1571 if (!(pending & (SDMMC_INT_DTO | SDMMC_INT_DCRC |
1572 SDMMC_INT_SBE | SDMMC_INT_EBE)))
1573 tasklet_schedule(&host->tasklet);
f95f3850
WN
1574 }
1575
1576 if (pending & SDMMC_INT_DATA_OVER) {
1577 mci_writel(host, RINTSTS, SDMMC_INT_DATA_OVER);
1578 if (!host->data_status)
1579 host->data_status = status;
1580 smp_wmb();
1581 if (host->dir_status == DW_MCI_RECV_STATUS) {
1582 if (host->sg != NULL)
1583 dw_mci_read_data_pio(host);
1584 }
1585 set_bit(EVENT_DATA_COMPLETE, &host->pending_events);
1586 tasklet_schedule(&host->tasklet);
1587 }
1588
1589 if (pending & SDMMC_INT_RXDR) {
1590 mci_writel(host, RINTSTS, SDMMC_INT_RXDR);
b40af3aa 1591 if (host->dir_status == DW_MCI_RECV_STATUS && host->sg)
f95f3850
WN
1592 dw_mci_read_data_pio(host);
1593 }
1594
1595 if (pending & SDMMC_INT_TXDR) {
1596 mci_writel(host, RINTSTS, SDMMC_INT_TXDR);
b40af3aa 1597 if (host->dir_status == DW_MCI_SEND_STATUS && host->sg)
f95f3850
WN
1598 dw_mci_write_data_pio(host);
1599 }
1600
1601 if (pending & SDMMC_INT_CMD_DONE) {
1602 mci_writel(host, RINTSTS, SDMMC_INT_CMD_DONE);
1603 dw_mci_cmd_interrupt(host, status);
1604 }
1605
1606 if (pending & SDMMC_INT_CD) {
1607 mci_writel(host, RINTSTS, SDMMC_INT_CD);
95dcc2cb 1608 queue_work(host->card_workqueue, &host->card_work);
f95f3850
WN
1609 }
1610
1a5c8e1f
SH
1611 /* Handle SDIO Interrupts */
1612 for (i = 0; i < host->num_slots; i++) {
1613 struct dw_mci_slot *slot = host->slot[i];
1614 if (pending & SDMMC_INT_SDIO(i)) {
1615 mci_writel(host, RINTSTS, SDMMC_INT_SDIO(i));
1616 mmc_signal_sdio_irq(slot->mmc);
1617 }
1618 }
1619
f95f3850
WN
1620 } while (pass_count++ < 5);
1621
1622#ifdef CONFIG_MMC_DW_IDMAC
1623 /* Handle DMA interrupts */
1624 pending = mci_readl(host, IDSTS);
1625 if (pending & (SDMMC_IDMAC_INT_TI | SDMMC_IDMAC_INT_RI)) {
1626 mci_writel(host, IDSTS, SDMMC_IDMAC_INT_TI | SDMMC_IDMAC_INT_RI);
1627 mci_writel(host, IDSTS, SDMMC_IDMAC_INT_NI);
f95f3850
WN
1628 host->dma_ops->complete(host);
1629 }
1630#endif
1631
1632 return IRQ_HANDLED;
1633}
1634
1791b13e 1635static void dw_mci_work_routine_card(struct work_struct *work)
f95f3850 1636{
1791b13e 1637 struct dw_mci *host = container_of(work, struct dw_mci, card_work);
f95f3850
WN
1638 int i;
1639
1640 for (i = 0; i < host->num_slots; i++) {
1641 struct dw_mci_slot *slot = host->slot[i];
1642 struct mmc_host *mmc = slot->mmc;
1643 struct mmc_request *mrq;
1644 int present;
1645 u32 ctrl;
1646
1647 present = dw_mci_get_cd(mmc);
1648 while (present != slot->last_detect_state) {
f95f3850
WN
1649 dev_dbg(&slot->mmc->class_dev, "card %s\n",
1650 present ? "inserted" : "removed");
1651
1791b13e
JH
1652 /* Power up slot (before spin_lock, may sleep) */
1653 if (present != 0 && host->pdata->setpower)
1654 host->pdata->setpower(slot->id, mmc->ocr_avail);
1655
1656 spin_lock_bh(&host->lock);
1657
f95f3850
WN
1658 /* Card change detected */
1659 slot->last_detect_state = present;
1660
1791b13e
JH
1661 /* Mark card as present if applicable */
1662 if (present != 0)
f95f3850 1663 set_bit(DW_MMC_CARD_PRESENT, &slot->flags);
f95f3850
WN
1664
1665 /* Clean up queue if present */
1666 mrq = slot->mrq;
1667 if (mrq) {
1668 if (mrq == host->mrq) {
1669 host->data = NULL;
1670 host->cmd = NULL;
1671
1672 switch (host->state) {
1673 case STATE_IDLE:
1674 break;
1675 case STATE_SENDING_CMD:
1676 mrq->cmd->error = -ENOMEDIUM;
1677 if (!mrq->data)
1678 break;
1679 /* fall through */
1680 case STATE_SENDING_DATA:
1681 mrq->data->error = -ENOMEDIUM;
1682 dw_mci_stop_dma(host);
1683 break;
1684 case STATE_DATA_BUSY:
1685 case STATE_DATA_ERROR:
1686 if (mrq->data->error == -EINPROGRESS)
1687 mrq->data->error = -ENOMEDIUM;
1688 if (!mrq->stop)
1689 break;
1690 /* fall through */
1691 case STATE_SENDING_STOP:
1692 mrq->stop->error = -ENOMEDIUM;
1693 break;
1694 }
1695
1696 dw_mci_request_end(host, mrq);
1697 } else {
1698 list_del(&slot->queue_node);
1699 mrq->cmd->error = -ENOMEDIUM;
1700 if (mrq->data)
1701 mrq->data->error = -ENOMEDIUM;
1702 if (mrq->stop)
1703 mrq->stop->error = -ENOMEDIUM;
1704
1705 spin_unlock(&host->lock);
1706 mmc_request_done(slot->mmc, mrq);
1707 spin_lock(&host->lock);
1708 }
1709 }
1710
1711 /* Power down slot */
1712 if (present == 0) {
f95f3850
WN
1713 clear_bit(DW_MMC_CARD_PRESENT, &slot->flags);
1714
1715 /*
1716 * Clear down the FIFO - doing so generates a
1717 * block interrupt, hence setting the
1718 * scatter-gather pointer to NULL.
1719 */
f9c2a0dc 1720 sg_miter_stop(&host->sg_miter);
f95f3850
WN
1721 host->sg = NULL;
1722
1723 ctrl = mci_readl(host, CTRL);
1724 ctrl |= SDMMC_CTRL_FIFO_RESET;
1725 mci_writel(host, CTRL, ctrl);
1726
1727#ifdef CONFIG_MMC_DW_IDMAC
1728 ctrl = mci_readl(host, BMOD);
141a712a
SJ
1729 /* Software reset of DMA */
1730 ctrl |= SDMMC_IDMAC_SWRESET;
f95f3850
WN
1731 mci_writel(host, BMOD, ctrl);
1732#endif
1733
1734 }
1735
1791b13e
JH
1736 spin_unlock_bh(&host->lock);
1737
1738 /* Power down slot (after spin_unlock, may sleep) */
1739 if (present == 0 && host->pdata->setpower)
1740 host->pdata->setpower(slot->id, 0);
1741
f95f3850
WN
1742 present = dw_mci_get_cd(mmc);
1743 }
1744
1745 mmc_detect_change(slot->mmc,
1746 msecs_to_jiffies(host->pdata->detect_delay_ms));
1747 }
1748}
1749
1750static int __init dw_mci_init_slot(struct dw_mci *host, unsigned int id)
1751{
1752 struct mmc_host *mmc;
1753 struct dw_mci_slot *slot;
1754
62ca8034 1755 mmc = mmc_alloc_host(sizeof(struct dw_mci_slot), &host->dev);
f95f3850
WN
1756 if (!mmc)
1757 return -ENOMEM;
1758
1759 slot = mmc_priv(mmc);
1760 slot->id = id;
1761 slot->mmc = mmc;
1762 slot->host = host;
1763
1764 mmc->ops = &dw_mci_ops;
1765 mmc->f_min = DIV_ROUND_UP(host->bus_hz, 510);
1766 mmc->f_max = host->bus_hz;
1767
1768 if (host->pdata->get_ocr)
1769 mmc->ocr_avail = host->pdata->get_ocr(id);
1770 else
1771 mmc->ocr_avail = MMC_VDD_32_33 | MMC_VDD_33_34;
1772
1773 /*
1774 * Start with slot power disabled, it will be enabled when a card
1775 * is detected.
1776 */
1777 if (host->pdata->setpower)
1778 host->pdata->setpower(id, 0);
1779
fc3d7720
JC
1780 if (host->pdata->caps)
1781 mmc->caps = host->pdata->caps;
fc3d7720 1782
4f408cc6
SJ
1783 if (host->pdata->caps2)
1784 mmc->caps2 = host->pdata->caps2;
4f408cc6 1785
f95f3850
WN
1786 if (host->pdata->get_bus_wd)
1787 if (host->pdata->get_bus_wd(slot->id) >= 4)
1788 mmc->caps |= MMC_CAP_4_BIT_DATA;
1789
1790 if (host->pdata->quirks & DW_MCI_QUIRK_HIGHSPEED)
6daa7778 1791 mmc->caps |= MMC_CAP_SD_HIGHSPEED | MMC_CAP_MMC_HIGHSPEED;
f95f3850 1792
356ac2cf
JC
1793 if (mmc->caps2 & MMC_CAP2_POWEROFF_NOTIFY)
1794 mmc->power_notify_type = MMC_HOST_PW_NOTIFY_SHORT;
1795 else
1796 mmc->power_notify_type = MMC_HOST_PW_NOTIFY_NONE;
1797
f95f3850
WN
1798 if (host->pdata->blk_settings) {
1799 mmc->max_segs = host->pdata->blk_settings->max_segs;
1800 mmc->max_blk_size = host->pdata->blk_settings->max_blk_size;
1801 mmc->max_blk_count = host->pdata->blk_settings->max_blk_count;
1802 mmc->max_req_size = host->pdata->blk_settings->max_req_size;
1803 mmc->max_seg_size = host->pdata->blk_settings->max_seg_size;
1804 } else {
1805 /* Useful defaults if platform data is unset. */
a39e5746
JC
1806#ifdef CONFIG_MMC_DW_IDMAC
1807 mmc->max_segs = host->ring_size;
1808 mmc->max_blk_size = 65536;
1809 mmc->max_blk_count = host->ring_size;
1810 mmc->max_seg_size = 0x1000;
1811 mmc->max_req_size = mmc->max_seg_size * mmc->max_blk_count;
1812#else
f95f3850
WN
1813 mmc->max_segs = 64;
1814 mmc->max_blk_size = 65536; /* BLKSIZ is 16 bits */
1815 mmc->max_blk_count = 512;
1816 mmc->max_req_size = mmc->max_blk_size * mmc->max_blk_count;
1817 mmc->max_seg_size = mmc->max_req_size;
f95f3850 1818#endif /* CONFIG_MMC_DW_IDMAC */
a39e5746 1819 }
f95f3850 1820
c07946a3
JC
1821 host->vmmc = regulator_get(mmc_dev(mmc), "vmmc");
1822 if (IS_ERR(host->vmmc)) {
a3c76eb9 1823 pr_info("%s: no vmmc regulator found\n", mmc_hostname(mmc));
c07946a3
JC
1824 host->vmmc = NULL;
1825 } else
1826 regulator_enable(host->vmmc);
1827
f95f3850
WN
1828 if (dw_mci_get_cd(mmc))
1829 set_bit(DW_MMC_CARD_PRESENT, &slot->flags);
1830 else
1831 clear_bit(DW_MMC_CARD_PRESENT, &slot->flags);
1832
1833 host->slot[id] = slot;
1834 mmc_add_host(mmc);
1835
1836#if defined(CONFIG_DEBUG_FS)
1837 dw_mci_init_debugfs(slot);
1838#endif
1839
1840 /* Card initially undetected */
1841 slot->last_detect_state = 0;
1842
dd6c4b98
WN
1843 /*
1844 * Card may have been plugged in prior to boot so we
1845 * need to run the detect tasklet
1846 */
95dcc2cb 1847 queue_work(host->card_workqueue, &host->card_work);
dd6c4b98 1848
f95f3850
WN
1849 return 0;
1850}
1851
1852static void dw_mci_cleanup_slot(struct dw_mci_slot *slot, unsigned int id)
1853{
1854 /* Shutdown detect IRQ */
1855 if (slot->host->pdata->exit)
1856 slot->host->pdata->exit(id);
1857
1858 /* Debugfs stuff is cleaned up by mmc core */
1859 mmc_remove_host(slot->mmc);
1860 slot->host->slot[id] = NULL;
1861 mmc_free_host(slot->mmc);
1862}
1863
1864static void dw_mci_init_dma(struct dw_mci *host)
1865{
1866 /* Alloc memory for sg translation */
62ca8034 1867 host->sg_cpu = dma_alloc_coherent(&host->dev, PAGE_SIZE,
f95f3850
WN
1868 &host->sg_dma, GFP_KERNEL);
1869 if (!host->sg_cpu) {
62ca8034 1870 dev_err(&host->dev, "%s: could not alloc DMA memory\n",
f95f3850
WN
1871 __func__);
1872 goto no_dma;
1873 }
1874
1875 /* Determine which DMA interface to use */
1876#ifdef CONFIG_MMC_DW_IDMAC
1877 host->dma_ops = &dw_mci_idmac_ops;
62ca8034 1878 dev_info(&host->dev, "Using internal DMA controller.\n");
f95f3850
WN
1879#endif
1880
1881 if (!host->dma_ops)
1882 goto no_dma;
1883
e1631f98
JC
1884 if (host->dma_ops->init && host->dma_ops->start &&
1885 host->dma_ops->stop && host->dma_ops->cleanup) {
f95f3850 1886 if (host->dma_ops->init(host)) {
62ca8034 1887 dev_err(&host->dev, "%s: Unable to initialize "
f95f3850
WN
1888 "DMA Controller.\n", __func__);
1889 goto no_dma;
1890 }
1891 } else {
62ca8034 1892 dev_err(&host->dev, "DMA initialization not found.\n");
f95f3850
WN
1893 goto no_dma;
1894 }
1895
1896 host->use_dma = 1;
1897 return;
1898
1899no_dma:
62ca8034 1900 dev_info(&host->dev, "Using PIO mode.\n");
f95f3850
WN
1901 host->use_dma = 0;
1902 return;
1903}
1904
1905static bool mci_wait_reset(struct device *dev, struct dw_mci *host)
1906{
1907 unsigned long timeout = jiffies + msecs_to_jiffies(500);
1908 unsigned int ctrl;
1909
1910 mci_writel(host, CTRL, (SDMMC_CTRL_RESET | SDMMC_CTRL_FIFO_RESET |
1911 SDMMC_CTRL_DMA_RESET));
1912
1913 /* wait till resets clear */
1914 do {
1915 ctrl = mci_readl(host, CTRL);
1916 if (!(ctrl & (SDMMC_CTRL_RESET | SDMMC_CTRL_FIFO_RESET |
1917 SDMMC_CTRL_DMA_RESET)))
1918 return true;
1919 } while (time_before(jiffies, timeout));
1920
1921 dev_err(dev, "Timeout resetting block (ctrl %#x)\n", ctrl);
1922
1923 return false;
1924}
1925
62ca8034 1926int dw_mci_probe(struct dw_mci *host)
f95f3850 1927{
62ca8034 1928 int width, i, ret = 0;
f95f3850
WN
1929 u32 fifo_size;
1930
62ca8034
SH
1931 if (!host->pdata || !host->pdata->init) {
1932 dev_err(&host->dev,
f95f3850 1933 "Platform data must supply init function\n");
62ca8034 1934 return -ENODEV;
f95f3850
WN
1935 }
1936
62ca8034
SH
1937 if (!host->pdata->select_slot && host->pdata->num_slots > 1) {
1938 dev_err(&host->dev,
f95f3850 1939 "Platform data must supply select_slot function\n");
62ca8034 1940 return -ENODEV;
f95f3850
WN
1941 }
1942
62ca8034
SH
1943 if (!host->pdata->bus_hz) {
1944 dev_err(&host->dev,
f95f3850 1945 "Platform data must supply bus speed\n");
62ca8034 1946 return -ENODEV;
f95f3850
WN
1947 }
1948
62ca8034
SH
1949 host->bus_hz = host->pdata->bus_hz;
1950 host->quirks = host->pdata->quirks;
f95f3850
WN
1951
1952 spin_lock_init(&host->lock);
1953 INIT_LIST_HEAD(&host->queue);
1954
f95f3850
WN
1955 /*
1956 * Get the host data width - this assumes that HCON has been set with
1957 * the correct values.
1958 */
1959 i = (mci_readl(host, HCON) >> 7) & 0x7;
1960 if (!i) {
1961 host->push_data = dw_mci_push_data16;
1962 host->pull_data = dw_mci_pull_data16;
1963 width = 16;
1964 host->data_shift = 1;
1965 } else if (i == 2) {
1966 host->push_data = dw_mci_push_data64;
1967 host->pull_data = dw_mci_pull_data64;
1968 width = 64;
1969 host->data_shift = 3;
1970 } else {
1971 /* Check for a reserved value, and warn if it is */
1972 WARN((i != 1),
1973 "HCON reports a reserved host data width!\n"
1974 "Defaulting to 32-bit access.\n");
1975 host->push_data = dw_mci_push_data32;
1976 host->pull_data = dw_mci_pull_data32;
1977 width = 32;
1978 host->data_shift = 2;
1979 }
1980
1981 /* Reset all blocks */
141a712a
SJ
1982 if (!mci_wait_reset(&host->dev, host))
1983 return -ENODEV;
1984
1985 host->dma_ops = host->pdata->dma_ops;
1986 dw_mci_init_dma(host);
f95f3850
WN
1987
1988 /* Clear the interrupts for the host controller */
1989 mci_writel(host, RINTSTS, 0xFFFFFFFF);
1990 mci_writel(host, INTMASK, 0); /* disable all mmc interrupt first */
1991
1992 /* Put in max timeout */
1993 mci_writel(host, TMOUT, 0xFFFFFFFF);
1994
1995 /*
1996 * FIFO threshold settings RxMark = fifo_size / 2 - 1,
1997 * Tx Mark = fifo_size / 2 DMA Size = 8
1998 */
b86d8253
JH
1999 if (!host->pdata->fifo_depth) {
2000 /*
2001 * Power-on value of RX_WMark is FIFO_DEPTH-1, but this may
2002 * have been overwritten by the bootloader, just like we're
2003 * about to do, so if you know the value for your hardware, you
2004 * should put it in the platform data.
2005 */
2006 fifo_size = mci_readl(host, FIFOTH);
8234e869 2007 fifo_size = 1 + ((fifo_size >> 16) & 0xfff);
b86d8253
JH
2008 } else {
2009 fifo_size = host->pdata->fifo_depth;
2010 }
2011 host->fifo_depth = fifo_size;
e61cf118
JC
2012 host->fifoth_val = ((0x2 << 28) | ((fifo_size/2 - 1) << 16) |
2013 ((fifo_size/2) << 0));
2014 mci_writel(host, FIFOTH, host->fifoth_val);
f95f3850
WN
2015
2016 /* disable clock to CIU */
2017 mci_writel(host, CLKENA, 0);
2018 mci_writel(host, CLKSRC, 0);
2019
2020 tasklet_init(&host->tasklet, dw_mci_tasklet_func, (unsigned long)host);
95dcc2cb 2021 host->card_workqueue = alloc_workqueue("dw-mci-card",
1791b13e 2022 WQ_MEM_RECLAIM | WQ_NON_REENTRANT, 1);
95dcc2cb 2023 if (!host->card_workqueue)
1791b13e
JH
2024 goto err_dmaunmap;
2025 INIT_WORK(&host->card_work, dw_mci_work_routine_card);
62ca8034 2026 ret = request_irq(host->irq, dw_mci_interrupt, host->irq_flags, "dw-mci", host);
f95f3850 2027 if (ret)
1791b13e 2028 goto err_workqueue;
f95f3850 2029
f95f3850
WN
2030 if (host->pdata->num_slots)
2031 host->num_slots = host->pdata->num_slots;
2032 else
2033 host->num_slots = ((mci_readl(host, HCON) >> 1) & 0x1F) + 1;
2034
2035 /* We need at least one slot to succeed */
2036 for (i = 0; i < host->num_slots; i++) {
2037 ret = dw_mci_init_slot(host, i);
2038 if (ret) {
2039 ret = -ENODEV;
2040 goto err_init_slot;
2041 }
2042 }
2043
4e0a5adf
JC
2044 /*
2045 * In 2.40a spec, Data offset is changed.
2046 * Need to check the version-id and set data-offset for DATA register.
2047 */
2048 host->verid = SDMMC_GET_VERID(mci_readl(host, VERID));
62ca8034 2049 dev_info(&host->dev, "Version ID is %04x\n", host->verid);
4e0a5adf
JC
2050
2051 if (host->verid < DW_MMC_240A)
2052 host->data_offset = DATA_OFFSET;
2053 else
2054 host->data_offset = DATA_240A_OFFSET;
2055
f95f3850
WN
2056 /*
2057 * Enable interrupts for command done, data over, data empty, card det,
2058 * receive ready and error such as transmit, receive timeout, crc error
2059 */
2060 mci_writel(host, RINTSTS, 0xFFFFFFFF);
2061 mci_writel(host, INTMASK, SDMMC_INT_CMD_DONE | SDMMC_INT_DATA_OVER |
2062 SDMMC_INT_TXDR | SDMMC_INT_RXDR |
2063 DW_MCI_ERROR_FLAGS | SDMMC_INT_CD);
2064 mci_writel(host, CTRL, SDMMC_CTRL_INT_ENABLE); /* Enable mci interrupt */
2065
62ca8034 2066 dev_info(&host->dev, "DW MMC controller at irq %d, "
b86d8253
JH
2067 "%d bit host data width, "
2068 "%u deep fifo\n",
62ca8034 2069 host->irq, width, fifo_size);
f95f3850 2070 if (host->quirks & DW_MCI_QUIRK_IDMAC_DTO)
62ca8034 2071 dev_info(&host->dev, "Internal DMAC interrupt fix enabled.\n");
f95f3850
WN
2072
2073 return 0;
2074
2075err_init_slot:
2076 /* De-init any initialized slots */
2077 while (i > 0) {
2078 if (host->slot[i])
2079 dw_mci_cleanup_slot(host->slot[i], i);
2080 i--;
2081 }
62ca8034 2082 free_irq(host->irq, host);
f95f3850 2083
1791b13e 2084err_workqueue:
95dcc2cb 2085 destroy_workqueue(host->card_workqueue);
1791b13e 2086
f95f3850
WN
2087err_dmaunmap:
2088 if (host->use_dma && host->dma_ops->exit)
2089 host->dma_ops->exit(host);
62ca8034 2090 dma_free_coherent(&host->dev, PAGE_SIZE,
f95f3850 2091 host->sg_cpu, host->sg_dma);
f95f3850 2092
c07946a3
JC
2093 if (host->vmmc) {
2094 regulator_disable(host->vmmc);
2095 regulator_put(host->vmmc);
2096 }
f95f3850
WN
2097 return ret;
2098}
62ca8034 2099EXPORT_SYMBOL(dw_mci_probe);
f95f3850 2100
62ca8034 2101void dw_mci_remove(struct dw_mci *host)
f95f3850 2102{
f95f3850
WN
2103 int i;
2104
2105 mci_writel(host, RINTSTS, 0xFFFFFFFF);
2106 mci_writel(host, INTMASK, 0); /* disable all mmc interrupt first */
2107
f95f3850 2108 for (i = 0; i < host->num_slots; i++) {
62ca8034 2109 dev_dbg(&host->dev, "remove slot %d\n", i);
f95f3850
WN
2110 if (host->slot[i])
2111 dw_mci_cleanup_slot(host->slot[i], i);
2112 }
2113
2114 /* disable clock to CIU */
2115 mci_writel(host, CLKENA, 0);
2116 mci_writel(host, CLKSRC, 0);
2117
62ca8034 2118 free_irq(host->irq, host);
95dcc2cb 2119 destroy_workqueue(host->card_workqueue);
62ca8034 2120 dma_free_coherent(&host->dev, PAGE_SIZE, host->sg_cpu, host->sg_dma);
f95f3850
WN
2121
2122 if (host->use_dma && host->dma_ops->exit)
2123 host->dma_ops->exit(host);
2124
c07946a3
JC
2125 if (host->vmmc) {
2126 regulator_disable(host->vmmc);
2127 regulator_put(host->vmmc);
2128 }
2129
f95f3850 2130}
62ca8034
SH
2131EXPORT_SYMBOL(dw_mci_remove);
2132
2133
f95f3850 2134
6fe8890d 2135#ifdef CONFIG_PM_SLEEP
f95f3850
WN
2136/*
2137 * TODO: we should probably disable the clock to the card in the suspend path.
2138 */
62ca8034 2139int dw_mci_suspend(struct dw_mci *host)
f95f3850 2140{
62ca8034 2141 int i, ret = 0;
f95f3850
WN
2142
2143 for (i = 0; i < host->num_slots; i++) {
2144 struct dw_mci_slot *slot = host->slot[i];
2145 if (!slot)
2146 continue;
2147 ret = mmc_suspend_host(slot->mmc);
2148 if (ret < 0) {
2149 while (--i >= 0) {
2150 slot = host->slot[i];
2151 if (slot)
2152 mmc_resume_host(host->slot[i]->mmc);
2153 }
2154 return ret;
2155 }
2156 }
2157
c07946a3
JC
2158 if (host->vmmc)
2159 regulator_disable(host->vmmc);
2160
f95f3850
WN
2161 return 0;
2162}
62ca8034 2163EXPORT_SYMBOL(dw_mci_suspend);
f95f3850 2164
62ca8034 2165int dw_mci_resume(struct dw_mci *host)
f95f3850
WN
2166{
2167 int i, ret;
f95f3850 2168
1d6c4e0a
JC
2169 if (host->vmmc)
2170 regulator_enable(host->vmmc);
2171
62ca8034 2172 if (!mci_wait_reset(&host->dev, host)) {
e61cf118
JC
2173 ret = -ENODEV;
2174 return ret;
2175 }
2176
141a712a
SJ
2177 if (host->dma_ops->init)
2178 host->dma_ops->init(host);
2179
e61cf118
JC
2180 /* Restore the old value at FIFOTH register */
2181 mci_writel(host, FIFOTH, host->fifoth_val);
2182
2183 mci_writel(host, RINTSTS, 0xFFFFFFFF);
2184 mci_writel(host, INTMASK, SDMMC_INT_CMD_DONE | SDMMC_INT_DATA_OVER |
2185 SDMMC_INT_TXDR | SDMMC_INT_RXDR |
2186 DW_MCI_ERROR_FLAGS | SDMMC_INT_CD);
2187 mci_writel(host, CTRL, SDMMC_CTRL_INT_ENABLE);
2188
f95f3850
WN
2189 for (i = 0; i < host->num_slots; i++) {
2190 struct dw_mci_slot *slot = host->slot[i];
2191 if (!slot)
2192 continue;
2193 ret = mmc_resume_host(host->slot[i]->mmc);
2194 if (ret < 0)
2195 return ret;
2196 }
f95f3850
WN
2197 return 0;
2198}
62ca8034 2199EXPORT_SYMBOL(dw_mci_resume);
6fe8890d
JC
2200#endif /* CONFIG_PM_SLEEP */
2201
f95f3850
WN
2202static int __init dw_mci_init(void)
2203{
62ca8034
SH
2204 printk(KERN_INFO "Synopsys Designware Multimedia Card Interface Driver");
2205 return 0;
f95f3850
WN
2206}
2207
2208static void __exit dw_mci_exit(void)
2209{
f95f3850
WN
2210}
2211
2212module_init(dw_mci_init);
2213module_exit(dw_mci_exit);
2214
2215MODULE_DESCRIPTION("DW Multimedia Card Interface driver");
2216MODULE_AUTHOR("NXP Semiconductor VietNam");
2217MODULE_AUTHOR("Imagination Technologies Ltd");
2218MODULE_LICENSE("GPL v2");