mmc: dw_mmc: call the dw_mci_prep_stop_abort() by default
[platform/kernel/linux-starfive.git] / drivers / mmc / host / dw_mmc.c
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>
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/card.h>
31 #include <linux/mmc/host.h>
32 #include <linux/mmc/mmc.h>
33 #include <linux/mmc/sd.h>
34 #include <linux/mmc/sdio.h>
35 #include <linux/mmc/dw_mmc.h>
36 #include <linux/bitops.h>
37 #include <linux/regulator/consumer.h>
38 #include <linux/of.h>
39 #include <linux/of_gpio.h>
40 #include <linux/mmc/slot-gpio.h>
41
42 #include "dw_mmc.h"
43
44 /* Common flag combinations */
45 #define DW_MCI_DATA_ERROR_FLAGS (SDMMC_INT_DRTO | SDMMC_INT_DCRC | \
46                                  SDMMC_INT_HTO | SDMMC_INT_SBE  | \
47                                  SDMMC_INT_EBE | SDMMC_INT_HLE)
48 #define DW_MCI_CMD_ERROR_FLAGS  (SDMMC_INT_RTO | SDMMC_INT_RCRC | \
49                                  SDMMC_INT_RESP_ERR | SDMMC_INT_HLE)
50 #define DW_MCI_ERROR_FLAGS      (DW_MCI_DATA_ERROR_FLAGS | \
51                                  DW_MCI_CMD_ERROR_FLAGS)
52 #define DW_MCI_SEND_STATUS      1
53 #define DW_MCI_RECV_STATUS      2
54 #define DW_MCI_DMA_THRESHOLD    16
55
56 #define DW_MCI_FREQ_MAX 200000000       /* unit: HZ */
57 #define DW_MCI_FREQ_MIN 100000          /* unit: HZ */
58
59 #define IDMAC_INT_CLR           (SDMMC_IDMAC_INT_AI | SDMMC_IDMAC_INT_NI | \
60                                  SDMMC_IDMAC_INT_CES | SDMMC_IDMAC_INT_DU | \
61                                  SDMMC_IDMAC_INT_FBE | SDMMC_IDMAC_INT_RI | \
62                                  SDMMC_IDMAC_INT_TI)
63
64 #define DESC_RING_BUF_SZ        PAGE_SIZE
65
66 struct idmac_desc_64addr {
67         u32             des0;   /* Control Descriptor */
68
69         u32             des1;   /* Reserved */
70
71         u32             des2;   /*Buffer sizes */
72 #define IDMAC_64ADDR_SET_BUFFER1_SIZE(d, s) \
73         ((d)->des2 = ((d)->des2 & cpu_to_le32(0x03ffe000)) | \
74          ((cpu_to_le32(s)) & cpu_to_le32(0x1fff)))
75
76         u32             des3;   /* Reserved */
77
78         u32             des4;   /* Lower 32-bits of Buffer Address Pointer 1*/
79         u32             des5;   /* Upper 32-bits of Buffer Address Pointer 1*/
80
81         u32             des6;   /* Lower 32-bits of Next Descriptor Address */
82         u32             des7;   /* Upper 32-bits of Next Descriptor Address */
83 };
84
85 struct idmac_desc {
86         __le32          des0;   /* Control Descriptor */
87 #define IDMAC_DES0_DIC  BIT(1)
88 #define IDMAC_DES0_LD   BIT(2)
89 #define IDMAC_DES0_FD   BIT(3)
90 #define IDMAC_DES0_CH   BIT(4)
91 #define IDMAC_DES0_ER   BIT(5)
92 #define IDMAC_DES0_CES  BIT(30)
93 #define IDMAC_DES0_OWN  BIT(31)
94
95         __le32          des1;   /* Buffer sizes */
96 #define IDMAC_SET_BUFFER1_SIZE(d, s) \
97         ((d)->des1 = ((d)->des1 & cpu_to_le32(0x03ffe000)) | (cpu_to_le32((s) & 0x1fff)))
98
99         __le32          des2;   /* buffer 1 physical address */
100
101         __le32          des3;   /* buffer 2 physical address */
102 };
103
104 /* Each descriptor can transfer up to 4KB of data in chained mode */
105 #define DW_MCI_DESC_DATA_LENGTH 0x1000
106
107 static bool dw_mci_reset(struct dw_mci *host);
108 static bool dw_mci_ctrl_reset(struct dw_mci *host, u32 reset);
109 static int dw_mci_card_busy(struct mmc_host *mmc);
110 static int dw_mci_get_cd(struct mmc_host *mmc);
111
112 #if defined(CONFIG_DEBUG_FS)
113 static int dw_mci_req_show(struct seq_file *s, void *v)
114 {
115         struct dw_mci_slot *slot = s->private;
116         struct mmc_request *mrq;
117         struct mmc_command *cmd;
118         struct mmc_command *stop;
119         struct mmc_data *data;
120
121         /* Make sure we get a consistent snapshot */
122         spin_lock_bh(&slot->host->lock);
123         mrq = slot->mrq;
124
125         if (mrq) {
126                 cmd = mrq->cmd;
127                 data = mrq->data;
128                 stop = mrq->stop;
129
130                 if (cmd)
131                         seq_printf(s,
132                                    "CMD%u(0x%x) flg %x rsp %x %x %x %x err %d\n",
133                                    cmd->opcode, cmd->arg, cmd->flags,
134                                    cmd->resp[0], cmd->resp[1], cmd->resp[2],
135                                    cmd->resp[2], cmd->error);
136                 if (data)
137                         seq_printf(s, "DATA %u / %u * %u flg %x err %d\n",
138                                    data->bytes_xfered, data->blocks,
139                                    data->blksz, data->flags, data->error);
140                 if (stop)
141                         seq_printf(s,
142                                    "CMD%u(0x%x) flg %x rsp %x %x %x %x err %d\n",
143                                    stop->opcode, stop->arg, stop->flags,
144                                    stop->resp[0], stop->resp[1], stop->resp[2],
145                                    stop->resp[2], stop->error);
146         }
147
148         spin_unlock_bh(&slot->host->lock);
149
150         return 0;
151 }
152
153 static int dw_mci_req_open(struct inode *inode, struct file *file)
154 {
155         return single_open(file, dw_mci_req_show, inode->i_private);
156 }
157
158 static const struct file_operations dw_mci_req_fops = {
159         .owner          = THIS_MODULE,
160         .open           = dw_mci_req_open,
161         .read           = seq_read,
162         .llseek         = seq_lseek,
163         .release        = single_release,
164 };
165
166 static int dw_mci_regs_show(struct seq_file *s, void *v)
167 {
168         struct dw_mci *host = s->private;
169
170         seq_printf(s, "STATUS:\t0x%08x\n", mci_readl(host, STATUS));
171         seq_printf(s, "RINTSTS:\t0x%08x\n", mci_readl(host, RINTSTS));
172         seq_printf(s, "CMD:\t0x%08x\n", mci_readl(host, CMD));
173         seq_printf(s, "CTRL:\t0x%08x\n", mci_readl(host, CTRL));
174         seq_printf(s, "INTMASK:\t0x%08x\n", mci_readl(host, INTMASK));
175         seq_printf(s, "CLKENA:\t0x%08x\n", mci_readl(host, CLKENA));
176
177         return 0;
178 }
179
180 static int dw_mci_regs_open(struct inode *inode, struct file *file)
181 {
182         return single_open(file, dw_mci_regs_show, inode->i_private);
183 }
184
185 static const struct file_operations dw_mci_regs_fops = {
186         .owner          = THIS_MODULE,
187         .open           = dw_mci_regs_open,
188         .read           = seq_read,
189         .llseek         = seq_lseek,
190         .release        = single_release,
191 };
192
193 static void dw_mci_init_debugfs(struct dw_mci_slot *slot)
194 {
195         struct mmc_host *mmc = slot->mmc;
196         struct dw_mci *host = slot->host;
197         struct dentry *root;
198         struct dentry *node;
199
200         root = mmc->debugfs_root;
201         if (!root)
202                 return;
203
204         node = debugfs_create_file("regs", S_IRUSR, root, host,
205                                    &dw_mci_regs_fops);
206         if (!node)
207                 goto err;
208
209         node = debugfs_create_file("req", S_IRUSR, root, slot,
210                                    &dw_mci_req_fops);
211         if (!node)
212                 goto err;
213
214         node = debugfs_create_u32("state", S_IRUSR, root, (u32 *)&host->state);
215         if (!node)
216                 goto err;
217
218         node = debugfs_create_x32("pending_events", S_IRUSR, root,
219                                   (u32 *)&host->pending_events);
220         if (!node)
221                 goto err;
222
223         node = debugfs_create_x32("completed_events", S_IRUSR, root,
224                                   (u32 *)&host->completed_events);
225         if (!node)
226                 goto err;
227
228         return;
229
230 err:
231         dev_err(&mmc->class_dev, "failed to initialize debugfs for slot\n");
232 }
233 #endif /* defined(CONFIG_DEBUG_FS) */
234
235 static void mci_send_cmd(struct dw_mci_slot *slot, u32 cmd, u32 arg);
236
237 static u32 dw_mci_prepare_command(struct mmc_host *mmc, struct mmc_command *cmd)
238 {
239         struct mmc_data *data;
240         struct dw_mci_slot *slot = mmc_priv(mmc);
241         struct dw_mci *host = slot->host;
242         u32 cmdr;
243
244         cmd->error = -EINPROGRESS;
245         cmdr = cmd->opcode;
246
247         if (cmd->opcode == MMC_STOP_TRANSMISSION ||
248             cmd->opcode == MMC_GO_IDLE_STATE ||
249             cmd->opcode == MMC_GO_INACTIVE_STATE ||
250             (cmd->opcode == SD_IO_RW_DIRECT &&
251              ((cmd->arg >> 9) & 0x1FFFF) == SDIO_CCCR_ABORT))
252                 cmdr |= SDMMC_CMD_STOP;
253         else if (cmd->opcode != MMC_SEND_STATUS && cmd->data)
254                 cmdr |= SDMMC_CMD_PRV_DAT_WAIT;
255
256         if (cmd->opcode == SD_SWITCH_VOLTAGE) {
257                 u32 clk_en_a;
258
259                 /* Special bit makes CMD11 not die */
260                 cmdr |= SDMMC_CMD_VOLT_SWITCH;
261
262                 /* Change state to continue to handle CMD11 weirdness */
263                 WARN_ON(slot->host->state != STATE_SENDING_CMD);
264                 slot->host->state = STATE_SENDING_CMD11;
265
266                 /*
267                  * We need to disable low power mode (automatic clock stop)
268                  * while doing voltage switch so we don't confuse the card,
269                  * since stopping the clock is a specific part of the UHS
270                  * voltage change dance.
271                  *
272                  * Note that low power mode (SDMMC_CLKEN_LOW_PWR) will be
273                  * unconditionally turned back on in dw_mci_setup_bus() if it's
274                  * ever called with a non-zero clock.  That shouldn't happen
275                  * until the voltage change is all done.
276                  */
277                 clk_en_a = mci_readl(host, CLKENA);
278                 clk_en_a &= ~(SDMMC_CLKEN_LOW_PWR << slot->id);
279                 mci_writel(host, CLKENA, clk_en_a);
280                 mci_send_cmd(slot, SDMMC_CMD_UPD_CLK |
281                              SDMMC_CMD_PRV_DAT_WAIT, 0);
282         }
283
284         if (cmd->flags & MMC_RSP_PRESENT) {
285                 /* We expect a response, so set this bit */
286                 cmdr |= SDMMC_CMD_RESP_EXP;
287                 if (cmd->flags & MMC_RSP_136)
288                         cmdr |= SDMMC_CMD_RESP_LONG;
289         }
290
291         if (cmd->flags & MMC_RSP_CRC)
292                 cmdr |= SDMMC_CMD_RESP_CRC;
293
294         data = cmd->data;
295         if (data) {
296                 cmdr |= SDMMC_CMD_DAT_EXP;
297                 if (data->flags & MMC_DATA_WRITE)
298                         cmdr |= SDMMC_CMD_DAT_WR;
299         }
300
301         if (!test_bit(DW_MMC_CARD_NO_USE_HOLD, &slot->flags))
302                 cmdr |= SDMMC_CMD_USE_HOLD_REG;
303
304         return cmdr;
305 }
306
307 static u32 dw_mci_prep_stop_abort(struct dw_mci *host, struct mmc_command *cmd)
308 {
309         struct mmc_command *stop;
310         u32 cmdr;
311
312         if (!cmd->data)
313                 return 0;
314
315         stop = &host->stop_abort;
316         cmdr = cmd->opcode;
317         memset(stop, 0, sizeof(struct mmc_command));
318
319         if (cmdr == MMC_READ_SINGLE_BLOCK ||
320             cmdr == MMC_READ_MULTIPLE_BLOCK ||
321             cmdr == MMC_WRITE_BLOCK ||
322             cmdr == MMC_WRITE_MULTIPLE_BLOCK ||
323             cmdr == MMC_SEND_TUNING_BLOCK ||
324             cmdr == MMC_SEND_TUNING_BLOCK_HS200) {
325                 stop->opcode = MMC_STOP_TRANSMISSION;
326                 stop->arg = 0;
327                 stop->flags = MMC_RSP_R1B | MMC_CMD_AC;
328         } else if (cmdr == SD_IO_RW_EXTENDED) {
329                 stop->opcode = SD_IO_RW_DIRECT;
330                 stop->arg |= (1 << 31) | (0 << 28) | (SDIO_CCCR_ABORT << 9) |
331                              ((cmd->arg >> 28) & 0x7);
332                 stop->flags = MMC_RSP_SPI_R5 | MMC_RSP_R5 | MMC_CMD_AC;
333         } else {
334                 return 0;
335         }
336
337         cmdr = stop->opcode | SDMMC_CMD_STOP |
338                 SDMMC_CMD_RESP_CRC | SDMMC_CMD_RESP_EXP;
339
340         if (!test_bit(DW_MMC_CARD_NO_USE_HOLD, &host->cur_slot->flags))
341                 cmdr |= SDMMC_CMD_USE_HOLD_REG;
342
343         return cmdr;
344 }
345
346 static void dw_mci_wait_while_busy(struct dw_mci *host, u32 cmd_flags)
347 {
348         unsigned long timeout = jiffies + msecs_to_jiffies(500);
349
350         /*
351          * Databook says that before issuing a new data transfer command
352          * we need to check to see if the card is busy.  Data transfer commands
353          * all have SDMMC_CMD_PRV_DAT_WAIT set, so we'll key off that.
354          *
355          * ...also allow sending for SDMMC_CMD_VOLT_SWITCH where busy is
356          * expected.
357          */
358         if ((cmd_flags & SDMMC_CMD_PRV_DAT_WAIT) &&
359             !(cmd_flags & SDMMC_CMD_VOLT_SWITCH)) {
360                 while (mci_readl(host, STATUS) & SDMMC_STATUS_BUSY) {
361                         if (time_after(jiffies, timeout)) {
362                                 /* Command will fail; we'll pass error then */
363                                 dev_err(host->dev, "Busy; trying anyway\n");
364                                 break;
365                         }
366                         udelay(10);
367                 }
368         }
369 }
370
371 static void dw_mci_start_command(struct dw_mci *host,
372                                  struct mmc_command *cmd, u32 cmd_flags)
373 {
374         host->cmd = cmd;
375         dev_vdbg(host->dev,
376                  "start command: ARGR=0x%08x CMDR=0x%08x\n",
377                  cmd->arg, cmd_flags);
378
379         mci_writel(host, CMDARG, cmd->arg);
380         wmb(); /* drain writebuffer */
381         dw_mci_wait_while_busy(host, cmd_flags);
382
383         mci_writel(host, CMD, cmd_flags | SDMMC_CMD_START);
384 }
385
386 static inline void send_stop_abort(struct dw_mci *host, struct mmc_data *data)
387 {
388         struct mmc_command *stop = &host->stop_abort;
389
390         dw_mci_start_command(host, stop, host->stop_cmdr);
391 }
392
393 /* DMA interface functions */
394 static void dw_mci_stop_dma(struct dw_mci *host)
395 {
396         if (host->using_dma) {
397                 host->dma_ops->stop(host);
398                 host->dma_ops->cleanup(host);
399         }
400
401         /* Data transfer was stopped by the interrupt handler */
402         set_bit(EVENT_XFER_COMPLETE, &host->pending_events);
403 }
404
405 static int dw_mci_get_dma_dir(struct mmc_data *data)
406 {
407         if (data->flags & MMC_DATA_WRITE)
408                 return DMA_TO_DEVICE;
409         else
410                 return DMA_FROM_DEVICE;
411 }
412
413 static void dw_mci_dma_cleanup(struct dw_mci *host)
414 {
415         struct mmc_data *data = host->data;
416
417         if (data)
418                 if (!data->host_cookie)
419                         dma_unmap_sg(host->dev,
420                                      data->sg,
421                                      data->sg_len,
422                                      dw_mci_get_dma_dir(data));
423 }
424
425 static void dw_mci_idmac_reset(struct dw_mci *host)
426 {
427         u32 bmod = mci_readl(host, BMOD);
428         /* Software reset of DMA */
429         bmod |= SDMMC_IDMAC_SWRESET;
430         mci_writel(host, BMOD, bmod);
431 }
432
433 static void dw_mci_idmac_stop_dma(struct dw_mci *host)
434 {
435         u32 temp;
436
437         /* Disable and reset the IDMAC interface */
438         temp = mci_readl(host, CTRL);
439         temp &= ~SDMMC_CTRL_USE_IDMAC;
440         temp |= SDMMC_CTRL_DMA_RESET;
441         mci_writel(host, CTRL, temp);
442
443         /* Stop the IDMAC running */
444         temp = mci_readl(host, BMOD);
445         temp &= ~(SDMMC_IDMAC_ENABLE | SDMMC_IDMAC_FB);
446         temp |= SDMMC_IDMAC_SWRESET;
447         mci_writel(host, BMOD, temp);
448 }
449
450 static void dw_mci_dmac_complete_dma(void *arg)
451 {
452         struct dw_mci *host = arg;
453         struct mmc_data *data = host->data;
454
455         dev_vdbg(host->dev, "DMA complete\n");
456
457         if ((host->use_dma == TRANS_MODE_EDMAC) &&
458             data && (data->flags & MMC_DATA_READ))
459                 /* Invalidate cache after read */
460                 dma_sync_sg_for_cpu(mmc_dev(host->cur_slot->mmc),
461                                     data->sg,
462                                     data->sg_len,
463                                     DMA_FROM_DEVICE);
464
465         host->dma_ops->cleanup(host);
466
467         /*
468          * If the card was removed, data will be NULL. No point in trying to
469          * send the stop command or waiting for NBUSY in this case.
470          */
471         if (data) {
472                 set_bit(EVENT_XFER_COMPLETE, &host->pending_events);
473                 tasklet_schedule(&host->tasklet);
474         }
475 }
476
477 static int dw_mci_idmac_init(struct dw_mci *host)
478 {
479         int i;
480
481         if (host->dma_64bit_address == 1) {
482                 struct idmac_desc_64addr *p;
483                 /* Number of descriptors in the ring buffer */
484                 host->ring_size =
485                         DESC_RING_BUF_SZ / sizeof(struct idmac_desc_64addr);
486
487                 /* Forward link the descriptor list */
488                 for (i = 0, p = host->sg_cpu; i < host->ring_size - 1;
489                                                                 i++, p++) {
490                         p->des6 = (host->sg_dma +
491                                         (sizeof(struct idmac_desc_64addr) *
492                                                         (i + 1))) & 0xffffffff;
493
494                         p->des7 = (u64)(host->sg_dma +
495                                         (sizeof(struct idmac_desc_64addr) *
496                                                         (i + 1))) >> 32;
497                         /* Initialize reserved and buffer size fields to "0" */
498                         p->des1 = 0;
499                         p->des2 = 0;
500                         p->des3 = 0;
501                 }
502
503                 /* Set the last descriptor as the end-of-ring descriptor */
504                 p->des6 = host->sg_dma & 0xffffffff;
505                 p->des7 = (u64)host->sg_dma >> 32;
506                 p->des0 = IDMAC_DES0_ER;
507
508         } else {
509                 struct idmac_desc *p;
510                 /* Number of descriptors in the ring buffer */
511                 host->ring_size =
512                         DESC_RING_BUF_SZ / sizeof(struct idmac_desc);
513
514                 /* Forward link the descriptor list */
515                 for (i = 0, p = host->sg_cpu;
516                      i < host->ring_size - 1;
517                      i++, p++) {
518                         p->des3 = cpu_to_le32(host->sg_dma +
519                                         (sizeof(struct idmac_desc) * (i + 1)));
520                         p->des1 = 0;
521                 }
522
523                 /* Set the last descriptor as the end-of-ring descriptor */
524                 p->des3 = cpu_to_le32(host->sg_dma);
525                 p->des0 = cpu_to_le32(IDMAC_DES0_ER);
526         }
527
528         dw_mci_idmac_reset(host);
529
530         if (host->dma_64bit_address == 1) {
531                 /* Mask out interrupts - get Tx & Rx complete only */
532                 mci_writel(host, IDSTS64, IDMAC_INT_CLR);
533                 mci_writel(host, IDINTEN64, SDMMC_IDMAC_INT_NI |
534                                 SDMMC_IDMAC_INT_RI | SDMMC_IDMAC_INT_TI);
535
536                 /* Set the descriptor base address */
537                 mci_writel(host, DBADDRL, host->sg_dma & 0xffffffff);
538                 mci_writel(host, DBADDRU, (u64)host->sg_dma >> 32);
539
540         } else {
541                 /* Mask out interrupts - get Tx & Rx complete only */
542                 mci_writel(host, IDSTS, IDMAC_INT_CLR);
543                 mci_writel(host, IDINTEN, SDMMC_IDMAC_INT_NI |
544                                 SDMMC_IDMAC_INT_RI | SDMMC_IDMAC_INT_TI);
545
546                 /* Set the descriptor base address */
547                 mci_writel(host, DBADDR, host->sg_dma);
548         }
549
550         return 0;
551 }
552
553 static inline int dw_mci_prepare_desc64(struct dw_mci *host,
554                                          struct mmc_data *data,
555                                          unsigned int sg_len)
556 {
557         unsigned int desc_len;
558         struct idmac_desc_64addr *desc_first, *desc_last, *desc;
559         unsigned long timeout;
560         int i;
561
562         desc_first = desc_last = desc = host->sg_cpu;
563
564         for (i = 0; i < sg_len; i++) {
565                 unsigned int length = sg_dma_len(&data->sg[i]);
566
567                 u64 mem_addr = sg_dma_address(&data->sg[i]);
568
569                 for ( ; length ; desc++) {
570                         desc_len = (length <= DW_MCI_DESC_DATA_LENGTH) ?
571                                    length : DW_MCI_DESC_DATA_LENGTH;
572
573                         length -= desc_len;
574
575                         /*
576                          * Wait for the former clear OWN bit operation
577                          * of IDMAC to make sure that this descriptor
578                          * isn't still owned by IDMAC as IDMAC's write
579                          * ops and CPU's read ops are asynchronous.
580                          */
581                         timeout = jiffies + msecs_to_jiffies(100);
582                         while (readl(&desc->des0) & IDMAC_DES0_OWN) {
583                                 if (time_after(jiffies, timeout))
584                                         goto err_own_bit;
585                                 udelay(10);
586                         }
587
588                         /*
589                          * Set the OWN bit and disable interrupts
590                          * for this descriptor
591                          */
592                         desc->des0 = IDMAC_DES0_OWN | IDMAC_DES0_DIC |
593                                                 IDMAC_DES0_CH;
594
595                         /* Buffer length */
596                         IDMAC_64ADDR_SET_BUFFER1_SIZE(desc, desc_len);
597
598                         /* Physical address to DMA to/from */
599                         desc->des4 = mem_addr & 0xffffffff;
600                         desc->des5 = mem_addr >> 32;
601
602                         /* Update physical address for the next desc */
603                         mem_addr += desc_len;
604
605                         /* Save pointer to the last descriptor */
606                         desc_last = desc;
607                 }
608         }
609
610         /* Set first descriptor */
611         desc_first->des0 |= IDMAC_DES0_FD;
612
613         /* Set last descriptor */
614         desc_last->des0 &= ~(IDMAC_DES0_CH | IDMAC_DES0_DIC);
615         desc_last->des0 |= IDMAC_DES0_LD;
616
617         return 0;
618 err_own_bit:
619         /* restore the descriptor chain as it's polluted */
620         dev_dbg(host->dev, "descriptor is still owned by IDMAC.\n");
621         memset(host->sg_cpu, 0, DESC_RING_BUF_SZ);
622         dw_mci_idmac_init(host);
623         return -EINVAL;
624 }
625
626
627 static inline int dw_mci_prepare_desc32(struct dw_mci *host,
628                                          struct mmc_data *data,
629                                          unsigned int sg_len)
630 {
631         unsigned int desc_len;
632         struct idmac_desc *desc_first, *desc_last, *desc;
633         unsigned long timeout;
634         int i;
635
636         desc_first = desc_last = desc = host->sg_cpu;
637
638         for (i = 0; i < sg_len; i++) {
639                 unsigned int length = sg_dma_len(&data->sg[i]);
640
641                 u32 mem_addr = sg_dma_address(&data->sg[i]);
642
643                 for ( ; length ; desc++) {
644                         desc_len = (length <= DW_MCI_DESC_DATA_LENGTH) ?
645                                    length : DW_MCI_DESC_DATA_LENGTH;
646
647                         length -= desc_len;
648
649                         /*
650                          * Wait for the former clear OWN bit operation
651                          * of IDMAC to make sure that this descriptor
652                          * isn't still owned by IDMAC as IDMAC's write
653                          * ops and CPU's read ops are asynchronous.
654                          */
655                         timeout = jiffies + msecs_to_jiffies(100);
656                         while (readl(&desc->des0) &
657                                cpu_to_le32(IDMAC_DES0_OWN)) {
658                                 if (time_after(jiffies, timeout))
659                                         goto err_own_bit;
660                                 udelay(10);
661                         }
662
663                         /*
664                          * Set the OWN bit and disable interrupts
665                          * for this descriptor
666                          */
667                         desc->des0 = cpu_to_le32(IDMAC_DES0_OWN |
668                                                  IDMAC_DES0_DIC |
669                                                  IDMAC_DES0_CH);
670
671                         /* Buffer length */
672                         IDMAC_SET_BUFFER1_SIZE(desc, desc_len);
673
674                         /* Physical address to DMA to/from */
675                         desc->des2 = cpu_to_le32(mem_addr);
676
677                         /* Update physical address for the next desc */
678                         mem_addr += desc_len;
679
680                         /* Save pointer to the last descriptor */
681                         desc_last = desc;
682                 }
683         }
684
685         /* Set first descriptor */
686         desc_first->des0 |= cpu_to_le32(IDMAC_DES0_FD);
687
688         /* Set last descriptor */
689         desc_last->des0 &= cpu_to_le32(~(IDMAC_DES0_CH |
690                                        IDMAC_DES0_DIC));
691         desc_last->des0 |= cpu_to_le32(IDMAC_DES0_LD);
692
693         return 0;
694 err_own_bit:
695         /* restore the descriptor chain as it's polluted */
696         dev_dbg(host->dev, "descriptor is still owned by IDMAC.\n");
697         memset(host->sg_cpu, 0, DESC_RING_BUF_SZ);
698         dw_mci_idmac_init(host);
699         return -EINVAL;
700 }
701
702 static int dw_mci_idmac_start_dma(struct dw_mci *host, unsigned int sg_len)
703 {
704         u32 temp;
705         int ret;
706
707         if (host->dma_64bit_address == 1)
708                 ret = dw_mci_prepare_desc64(host, host->data, sg_len);
709         else
710                 ret = dw_mci_prepare_desc32(host, host->data, sg_len);
711
712         if (ret)
713                 goto out;
714
715         /* drain writebuffer */
716         wmb();
717
718         /* Make sure to reset DMA in case we did PIO before this */
719         dw_mci_ctrl_reset(host, SDMMC_CTRL_DMA_RESET);
720         dw_mci_idmac_reset(host);
721
722         /* Select IDMAC interface */
723         temp = mci_readl(host, CTRL);
724         temp |= SDMMC_CTRL_USE_IDMAC;
725         mci_writel(host, CTRL, temp);
726
727         /* drain writebuffer */
728         wmb();
729
730         /* Enable the IDMAC */
731         temp = mci_readl(host, BMOD);
732         temp |= SDMMC_IDMAC_ENABLE | SDMMC_IDMAC_FB;
733         mci_writel(host, BMOD, temp);
734
735         /* Start it running */
736         mci_writel(host, PLDMND, 1);
737
738 out:
739         return ret;
740 }
741
742 static const struct dw_mci_dma_ops dw_mci_idmac_ops = {
743         .init = dw_mci_idmac_init,
744         .start = dw_mci_idmac_start_dma,
745         .stop = dw_mci_idmac_stop_dma,
746         .complete = dw_mci_dmac_complete_dma,
747         .cleanup = dw_mci_dma_cleanup,
748 };
749
750 static void dw_mci_edmac_stop_dma(struct dw_mci *host)
751 {
752         dmaengine_terminate_async(host->dms->ch);
753 }
754
755 static int dw_mci_edmac_start_dma(struct dw_mci *host,
756                                             unsigned int sg_len)
757 {
758         struct dma_slave_config cfg;
759         struct dma_async_tx_descriptor *desc = NULL;
760         struct scatterlist *sgl = host->data->sg;
761         const u32 mszs[] = {1, 4, 8, 16, 32, 64, 128, 256};
762         u32 sg_elems = host->data->sg_len;
763         u32 fifoth_val;
764         u32 fifo_offset = host->fifo_reg - host->regs;
765         int ret = 0;
766
767         /* Set external dma config: burst size, burst width */
768         cfg.dst_addr = host->phy_regs + fifo_offset;
769         cfg.src_addr = cfg.dst_addr;
770         cfg.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
771         cfg.src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
772
773         /* Match burst msize with external dma config */
774         fifoth_val = mci_readl(host, FIFOTH);
775         cfg.dst_maxburst = mszs[(fifoth_val >> 28) & 0x7];
776         cfg.src_maxburst = cfg.dst_maxburst;
777
778         if (host->data->flags & MMC_DATA_WRITE)
779                 cfg.direction = DMA_MEM_TO_DEV;
780         else
781                 cfg.direction = DMA_DEV_TO_MEM;
782
783         ret = dmaengine_slave_config(host->dms->ch, &cfg);
784         if (ret) {
785                 dev_err(host->dev, "Failed to config edmac.\n");
786                 return -EBUSY;
787         }
788
789         desc = dmaengine_prep_slave_sg(host->dms->ch, sgl,
790                                        sg_len, cfg.direction,
791                                        DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
792         if (!desc) {
793                 dev_err(host->dev, "Can't prepare slave sg.\n");
794                 return -EBUSY;
795         }
796
797         /* Set dw_mci_dmac_complete_dma as callback */
798         desc->callback = dw_mci_dmac_complete_dma;
799         desc->callback_param = (void *)host;
800         dmaengine_submit(desc);
801
802         /* Flush cache before write */
803         if (host->data->flags & MMC_DATA_WRITE)
804                 dma_sync_sg_for_device(mmc_dev(host->cur_slot->mmc), sgl,
805                                        sg_elems, DMA_TO_DEVICE);
806
807         dma_async_issue_pending(host->dms->ch);
808
809         return 0;
810 }
811
812 static int dw_mci_edmac_init(struct dw_mci *host)
813 {
814         /* Request external dma channel */
815         host->dms = kzalloc(sizeof(struct dw_mci_dma_slave), GFP_KERNEL);
816         if (!host->dms)
817                 return -ENOMEM;
818
819         host->dms->ch = dma_request_slave_channel(host->dev, "rx-tx");
820         if (!host->dms->ch) {
821                 dev_err(host->dev, "Failed to get external DMA channel.\n");
822                 kfree(host->dms);
823                 host->dms = NULL;
824                 return -ENXIO;
825         }
826
827         return 0;
828 }
829
830 static void dw_mci_edmac_exit(struct dw_mci *host)
831 {
832         if (host->dms) {
833                 if (host->dms->ch) {
834                         dma_release_channel(host->dms->ch);
835                         host->dms->ch = NULL;
836                 }
837                 kfree(host->dms);
838                 host->dms = NULL;
839         }
840 }
841
842 static const struct dw_mci_dma_ops dw_mci_edmac_ops = {
843         .init = dw_mci_edmac_init,
844         .exit = dw_mci_edmac_exit,
845         .start = dw_mci_edmac_start_dma,
846         .stop = dw_mci_edmac_stop_dma,
847         .complete = dw_mci_dmac_complete_dma,
848         .cleanup = dw_mci_dma_cleanup,
849 };
850
851 static int dw_mci_pre_dma_transfer(struct dw_mci *host,
852                                    struct mmc_data *data,
853                                    bool next)
854 {
855         struct scatterlist *sg;
856         unsigned int i, sg_len;
857
858         if (!next && data->host_cookie)
859                 return data->host_cookie;
860
861         /*
862          * We don't do DMA on "complex" transfers, i.e. with
863          * non-word-aligned buffers or lengths. Also, we don't bother
864          * with all the DMA setup overhead for short transfers.
865          */
866         if (data->blocks * data->blksz < DW_MCI_DMA_THRESHOLD)
867                 return -EINVAL;
868
869         if (data->blksz & 3)
870                 return -EINVAL;
871
872         for_each_sg(data->sg, sg, data->sg_len, i) {
873                 if (sg->offset & 3 || sg->length & 3)
874                         return -EINVAL;
875         }
876
877         sg_len = dma_map_sg(host->dev,
878                             data->sg,
879                             data->sg_len,
880                             dw_mci_get_dma_dir(data));
881         if (sg_len == 0)
882                 return -EINVAL;
883
884         if (next)
885                 data->host_cookie = sg_len;
886
887         return sg_len;
888 }
889
890 static void dw_mci_pre_req(struct mmc_host *mmc,
891                            struct mmc_request *mrq,
892                            bool is_first_req)
893 {
894         struct dw_mci_slot *slot = mmc_priv(mmc);
895         struct mmc_data *data = mrq->data;
896
897         if (!slot->host->use_dma || !data)
898                 return;
899
900         if (data->host_cookie) {
901                 data->host_cookie = 0;
902                 return;
903         }
904
905         if (dw_mci_pre_dma_transfer(slot->host, mrq->data, 1) < 0)
906                 data->host_cookie = 0;
907 }
908
909 static void dw_mci_post_req(struct mmc_host *mmc,
910                             struct mmc_request *mrq,
911                             int err)
912 {
913         struct dw_mci_slot *slot = mmc_priv(mmc);
914         struct mmc_data *data = mrq->data;
915
916         if (!slot->host->use_dma || !data)
917                 return;
918
919         if (data->host_cookie)
920                 dma_unmap_sg(slot->host->dev,
921                              data->sg,
922                              data->sg_len,
923                              dw_mci_get_dma_dir(data));
924         data->host_cookie = 0;
925 }
926
927 static void dw_mci_adjust_fifoth(struct dw_mci *host, struct mmc_data *data)
928 {
929         unsigned int blksz = data->blksz;
930         const u32 mszs[] = {1, 4, 8, 16, 32, 64, 128, 256};
931         u32 fifo_width = 1 << host->data_shift;
932         u32 blksz_depth = blksz / fifo_width, fifoth_val;
933         u32 msize = 0, rx_wmark = 1, tx_wmark, tx_wmark_invers;
934         int idx = ARRAY_SIZE(mszs) - 1;
935
936         /* pio should ship this scenario */
937         if (!host->use_dma)
938                 return;
939
940         tx_wmark = (host->fifo_depth) / 2;
941         tx_wmark_invers = host->fifo_depth - tx_wmark;
942
943         /*
944          * MSIZE is '1',
945          * if blksz is not a multiple of the FIFO width
946          */
947         if (blksz % fifo_width)
948                 goto done;
949
950         do {
951                 if (!((blksz_depth % mszs[idx]) ||
952                      (tx_wmark_invers % mszs[idx]))) {
953                         msize = idx;
954                         rx_wmark = mszs[idx] - 1;
955                         break;
956                 }
957         } while (--idx > 0);
958         /*
959          * If idx is '0', it won't be tried
960          * Thus, initial values are uesed
961          */
962 done:
963         fifoth_val = SDMMC_SET_FIFOTH(msize, rx_wmark, tx_wmark);
964         mci_writel(host, FIFOTH, fifoth_val);
965 }
966
967 static void dw_mci_ctrl_thld(struct dw_mci *host, struct mmc_data *data)
968 {
969         unsigned int blksz = data->blksz;
970         u32 blksz_depth, fifo_depth;
971         u16 thld_size;
972         u8 enable;
973
974         /*
975          * CDTHRCTL doesn't exist prior to 240A (in fact that register offset is
976          * in the FIFO region, so we really shouldn't access it).
977          */
978         if (host->verid < DW_MMC_240A ||
979                 (host->verid < DW_MMC_280A && data->flags & MMC_DATA_WRITE))
980                 return;
981
982         /*
983          * Card write Threshold is introduced since 2.80a
984          * It's used when HS400 mode is enabled.
985          */
986         if (data->flags & MMC_DATA_WRITE &&
987                 !(host->timing != MMC_TIMING_MMC_HS400))
988                 return;
989
990         if (data->flags & MMC_DATA_WRITE)
991                 enable = SDMMC_CARD_WR_THR_EN;
992         else
993                 enable = SDMMC_CARD_RD_THR_EN;
994
995         if (host->timing != MMC_TIMING_MMC_HS200 &&
996             host->timing != MMC_TIMING_UHS_SDR104)
997                 goto disable;
998
999         blksz_depth = blksz / (1 << host->data_shift);
1000         fifo_depth = host->fifo_depth;
1001
1002         if (blksz_depth > fifo_depth)
1003                 goto disable;
1004
1005         /*
1006          * If (blksz_depth) >= (fifo_depth >> 1), should be 'thld_size <= blksz'
1007          * If (blksz_depth) <  (fifo_depth >> 1), should be thld_size = blksz
1008          * Currently just choose blksz.
1009          */
1010         thld_size = blksz;
1011         mci_writel(host, CDTHRCTL, SDMMC_SET_THLD(thld_size, enable));
1012         return;
1013
1014 disable:
1015         mci_writel(host, CDTHRCTL, 0);
1016 }
1017
1018 static int dw_mci_submit_data_dma(struct dw_mci *host, struct mmc_data *data)
1019 {
1020         unsigned long irqflags;
1021         int sg_len;
1022         u32 temp;
1023
1024         host->using_dma = 0;
1025
1026         /* If we don't have a channel, we can't do DMA */
1027         if (!host->use_dma)
1028                 return -ENODEV;
1029
1030         sg_len = dw_mci_pre_dma_transfer(host, data, 0);
1031         if (sg_len < 0) {
1032                 host->dma_ops->stop(host);
1033                 return sg_len;
1034         }
1035
1036         host->using_dma = 1;
1037
1038         if (host->use_dma == TRANS_MODE_IDMAC)
1039                 dev_vdbg(host->dev,
1040                          "sd sg_cpu: %#lx sg_dma: %#lx sg_len: %d\n",
1041                          (unsigned long)host->sg_cpu,
1042                          (unsigned long)host->sg_dma,
1043                          sg_len);
1044
1045         /*
1046          * Decide the MSIZE and RX/TX Watermark.
1047          * If current block size is same with previous size,
1048          * no need to update fifoth.
1049          */
1050         if (host->prev_blksz != data->blksz)
1051                 dw_mci_adjust_fifoth(host, data);
1052
1053         /* Enable the DMA interface */
1054         temp = mci_readl(host, CTRL);
1055         temp |= SDMMC_CTRL_DMA_ENABLE;
1056         mci_writel(host, CTRL, temp);
1057
1058         /* Disable RX/TX IRQs, let DMA handle it */
1059         spin_lock_irqsave(&host->irq_lock, irqflags);
1060         temp = mci_readl(host, INTMASK);
1061         temp  &= ~(SDMMC_INT_RXDR | SDMMC_INT_TXDR);
1062         mci_writel(host, INTMASK, temp);
1063         spin_unlock_irqrestore(&host->irq_lock, irqflags);
1064
1065         if (host->dma_ops->start(host, sg_len)) {
1066                 host->dma_ops->stop(host);
1067                 /* We can't do DMA, try PIO for this one */
1068                 dev_dbg(host->dev,
1069                         "%s: fall back to PIO mode for current transfer\n",
1070                         __func__);
1071                 return -ENODEV;
1072         }
1073
1074         return 0;
1075 }
1076
1077 static void dw_mci_submit_data(struct dw_mci *host, struct mmc_data *data)
1078 {
1079         unsigned long irqflags;
1080         int flags = SG_MITER_ATOMIC;
1081         u32 temp;
1082
1083         data->error = -EINPROGRESS;
1084
1085         WARN_ON(host->data);
1086         host->sg = NULL;
1087         host->data = data;
1088
1089         if (data->flags & MMC_DATA_READ)
1090                 host->dir_status = DW_MCI_RECV_STATUS;
1091         else
1092                 host->dir_status = DW_MCI_SEND_STATUS;
1093
1094         dw_mci_ctrl_thld(host, data);
1095
1096         if (dw_mci_submit_data_dma(host, data)) {
1097                 if (host->data->flags & MMC_DATA_READ)
1098                         flags |= SG_MITER_TO_SG;
1099                 else
1100                         flags |= SG_MITER_FROM_SG;
1101
1102                 sg_miter_start(&host->sg_miter, data->sg, data->sg_len, flags);
1103                 host->sg = data->sg;
1104                 host->part_buf_start = 0;
1105                 host->part_buf_count = 0;
1106
1107                 mci_writel(host, RINTSTS, SDMMC_INT_TXDR | SDMMC_INT_RXDR);
1108
1109                 spin_lock_irqsave(&host->irq_lock, irqflags);
1110                 temp = mci_readl(host, INTMASK);
1111                 temp |= SDMMC_INT_TXDR | SDMMC_INT_RXDR;
1112                 mci_writel(host, INTMASK, temp);
1113                 spin_unlock_irqrestore(&host->irq_lock, irqflags);
1114
1115                 temp = mci_readl(host, CTRL);
1116                 temp &= ~SDMMC_CTRL_DMA_ENABLE;
1117                 mci_writel(host, CTRL, temp);
1118
1119                 /*
1120                  * Use the initial fifoth_val for PIO mode.
1121                  * If next issued data may be transfered by DMA mode,
1122                  * prev_blksz should be invalidated.
1123                  */
1124                 mci_writel(host, FIFOTH, host->fifoth_val);
1125                 host->prev_blksz = 0;
1126         } else {
1127                 /*
1128                  * Keep the current block size.
1129                  * It will be used to decide whether to update
1130                  * fifoth register next time.
1131                  */
1132                 host->prev_blksz = data->blksz;
1133         }
1134 }
1135
1136 static void mci_send_cmd(struct dw_mci_slot *slot, u32 cmd, u32 arg)
1137 {
1138         struct dw_mci *host = slot->host;
1139         unsigned long timeout = jiffies + msecs_to_jiffies(500);
1140         unsigned int cmd_status = 0;
1141
1142         mci_writel(host, CMDARG, arg);
1143         wmb(); /* drain writebuffer */
1144         dw_mci_wait_while_busy(host, cmd);
1145         mci_writel(host, CMD, SDMMC_CMD_START | cmd);
1146
1147         while (time_before(jiffies, timeout)) {
1148                 cmd_status = mci_readl(host, CMD);
1149                 if (!(cmd_status & SDMMC_CMD_START))
1150                         return;
1151         }
1152         dev_err(&slot->mmc->class_dev,
1153                 "Timeout sending command (cmd %#x arg %#x status %#x)\n",
1154                 cmd, arg, cmd_status);
1155 }
1156
1157 static void dw_mci_setup_bus(struct dw_mci_slot *slot, bool force_clkinit)
1158 {
1159         struct dw_mci *host = slot->host;
1160         unsigned int clock = slot->clock;
1161         u32 div;
1162         u32 clk_en_a;
1163         u32 sdmmc_cmd_bits = SDMMC_CMD_UPD_CLK | SDMMC_CMD_PRV_DAT_WAIT;
1164
1165         /* We must continue to set bit 28 in CMD until the change is complete */
1166         if (host->state == STATE_WAITING_CMD11_DONE)
1167                 sdmmc_cmd_bits |= SDMMC_CMD_VOLT_SWITCH;
1168
1169         if (!clock) {
1170                 mci_writel(host, CLKENA, 0);
1171                 mci_send_cmd(slot, sdmmc_cmd_bits, 0);
1172         } else if (clock != host->current_speed || force_clkinit) {
1173                 div = host->bus_hz / clock;
1174                 if (host->bus_hz % clock && host->bus_hz > clock)
1175                         /*
1176                          * move the + 1 after the divide to prevent
1177                          * over-clocking the card.
1178                          */
1179                         div += 1;
1180
1181                 div = (host->bus_hz != clock) ? DIV_ROUND_UP(div, 2) : 0;
1182
1183                 if (clock != slot->__clk_old || force_clkinit)
1184                         dev_info(&slot->mmc->class_dev,
1185                                  "Bus speed (slot %d) = %dHz (slot req %dHz, actual %dHZ div = %d)\n",
1186                                  slot->id, host->bus_hz, clock,
1187                                  div ? ((host->bus_hz / div) >> 1) :
1188                                  host->bus_hz, div);
1189
1190                 /* disable clock */
1191                 mci_writel(host, CLKENA, 0);
1192                 mci_writel(host, CLKSRC, 0);
1193
1194                 /* inform CIU */
1195                 mci_send_cmd(slot, sdmmc_cmd_bits, 0);
1196
1197                 /* set clock to desired speed */
1198                 mci_writel(host, CLKDIV, div);
1199
1200                 /* inform CIU */
1201                 mci_send_cmd(slot, sdmmc_cmd_bits, 0);
1202
1203                 /* enable clock; only low power if no SDIO */
1204                 clk_en_a = SDMMC_CLKEN_ENABLE << slot->id;
1205                 if (!test_bit(DW_MMC_CARD_NO_LOW_PWR, &slot->flags))
1206                         clk_en_a |= SDMMC_CLKEN_LOW_PWR << slot->id;
1207                 mci_writel(host, CLKENA, clk_en_a);
1208
1209                 /* inform CIU */
1210                 mci_send_cmd(slot, sdmmc_cmd_bits, 0);
1211
1212                 /* keep the last clock value that was requested from core */
1213                 slot->__clk_old = clock;
1214         }
1215
1216         host->current_speed = clock;
1217
1218         /* Set the current slot bus width */
1219         mci_writel(host, CTYPE, (slot->ctype << slot->id));
1220 }
1221
1222 static void __dw_mci_start_request(struct dw_mci *host,
1223                                    struct dw_mci_slot *slot,
1224                                    struct mmc_command *cmd)
1225 {
1226         struct mmc_request *mrq;
1227         struct mmc_data *data;
1228         u32 cmdflags;
1229
1230         mrq = slot->mrq;
1231
1232         host->cur_slot = slot;
1233         host->mrq = mrq;
1234
1235         host->pending_events = 0;
1236         host->completed_events = 0;
1237         host->cmd_status = 0;
1238         host->data_status = 0;
1239         host->dir_status = 0;
1240
1241         data = cmd->data;
1242         if (data) {
1243                 mci_writel(host, TMOUT, 0xFFFFFFFF);
1244                 mci_writel(host, BYTCNT, data->blksz*data->blocks);
1245                 mci_writel(host, BLKSIZ, data->blksz);
1246         }
1247
1248         cmdflags = dw_mci_prepare_command(slot->mmc, cmd);
1249
1250         /* this is the first command, send the initialization clock */
1251         if (test_and_clear_bit(DW_MMC_CARD_NEED_INIT, &slot->flags))
1252                 cmdflags |= SDMMC_CMD_INIT;
1253
1254         if (data) {
1255                 dw_mci_submit_data(host, data);
1256                 wmb(); /* drain writebuffer */
1257         }
1258
1259         dw_mci_start_command(host, cmd, cmdflags);
1260
1261         if (cmd->opcode == SD_SWITCH_VOLTAGE) {
1262                 unsigned long irqflags;
1263
1264                 /*
1265                  * Databook says to fail after 2ms w/ no response, but evidence
1266                  * shows that sometimes the cmd11 interrupt takes over 130ms.
1267                  * We'll set to 500ms, plus an extra jiffy just in case jiffies
1268                  * is just about to roll over.
1269                  *
1270                  * We do this whole thing under spinlock and only if the
1271                  * command hasn't already completed (indicating the the irq
1272                  * already ran so we don't want the timeout).
1273                  */
1274                 spin_lock_irqsave(&host->irq_lock, irqflags);
1275                 if (!test_bit(EVENT_CMD_COMPLETE, &host->pending_events))
1276                         mod_timer(&host->cmd11_timer,
1277                                 jiffies + msecs_to_jiffies(500) + 1);
1278                 spin_unlock_irqrestore(&host->irq_lock, irqflags);
1279         }
1280
1281         host->stop_cmdr = dw_mci_prep_stop_abort(host, cmd);
1282 }
1283
1284 static void dw_mci_start_request(struct dw_mci *host,
1285                                  struct dw_mci_slot *slot)
1286 {
1287         struct mmc_request *mrq = slot->mrq;
1288         struct mmc_command *cmd;
1289
1290         cmd = mrq->sbc ? mrq->sbc : mrq->cmd;
1291         __dw_mci_start_request(host, slot, cmd);
1292 }
1293
1294 /* must be called with host->lock held */
1295 static void dw_mci_queue_request(struct dw_mci *host, struct dw_mci_slot *slot,
1296                                  struct mmc_request *mrq)
1297 {
1298         dev_vdbg(&slot->mmc->class_dev, "queue request: state=%d\n",
1299                  host->state);
1300
1301         slot->mrq = mrq;
1302
1303         if (host->state == STATE_WAITING_CMD11_DONE) {
1304                 dev_warn(&slot->mmc->class_dev,
1305                          "Voltage change didn't complete\n");
1306                 /*
1307                  * this case isn't expected to happen, so we can
1308                  * either crash here or just try to continue on
1309                  * in the closest possible state
1310                  */
1311                 host->state = STATE_IDLE;
1312         }
1313
1314         if (host->state == STATE_IDLE) {
1315                 host->state = STATE_SENDING_CMD;
1316                 dw_mci_start_request(host, slot);
1317         } else {
1318                 list_add_tail(&slot->queue_node, &host->queue);
1319         }
1320 }
1321
1322 static void dw_mci_request(struct mmc_host *mmc, struct mmc_request *mrq)
1323 {
1324         struct dw_mci_slot *slot = mmc_priv(mmc);
1325         struct dw_mci *host = slot->host;
1326
1327         WARN_ON(slot->mrq);
1328
1329         /*
1330          * The check for card presence and queueing of the request must be
1331          * atomic, otherwise the card could be removed in between and the
1332          * request wouldn't fail until another card was inserted.
1333          */
1334
1335         if (!dw_mci_get_cd(mmc)) {
1336                 mrq->cmd->error = -ENOMEDIUM;
1337                 mmc_request_done(mmc, mrq);
1338                 return;
1339         }
1340
1341         spin_lock_bh(&host->lock);
1342
1343         dw_mci_queue_request(host, slot, mrq);
1344
1345         spin_unlock_bh(&host->lock);
1346 }
1347
1348 static void dw_mci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
1349 {
1350         struct dw_mci_slot *slot = mmc_priv(mmc);
1351         const struct dw_mci_drv_data *drv_data = slot->host->drv_data;
1352         u32 regs;
1353         int ret;
1354
1355         switch (ios->bus_width) {
1356         case MMC_BUS_WIDTH_4:
1357                 slot->ctype = SDMMC_CTYPE_4BIT;
1358                 break;
1359         case MMC_BUS_WIDTH_8:
1360                 slot->ctype = SDMMC_CTYPE_8BIT;
1361                 break;
1362         default:
1363                 /* set default 1 bit mode */
1364                 slot->ctype = SDMMC_CTYPE_1BIT;
1365         }
1366
1367         regs = mci_readl(slot->host, UHS_REG);
1368
1369         /* DDR mode set */
1370         if (ios->timing == MMC_TIMING_MMC_DDR52 ||
1371             ios->timing == MMC_TIMING_UHS_DDR50 ||
1372             ios->timing == MMC_TIMING_MMC_HS400)
1373                 regs |= ((0x1 << slot->id) << 16);
1374         else
1375                 regs &= ~((0x1 << slot->id) << 16);
1376
1377         mci_writel(slot->host, UHS_REG, regs);
1378         slot->host->timing = ios->timing;
1379
1380         /*
1381          * Use mirror of ios->clock to prevent race with mmc
1382          * core ios update when finding the minimum.
1383          */
1384         slot->clock = ios->clock;
1385
1386         if (drv_data && drv_data->set_ios)
1387                 drv_data->set_ios(slot->host, ios);
1388
1389         switch (ios->power_mode) {
1390         case MMC_POWER_UP:
1391                 if (!IS_ERR(mmc->supply.vmmc)) {
1392                         ret = mmc_regulator_set_ocr(mmc, mmc->supply.vmmc,
1393                                         ios->vdd);
1394                         if (ret) {
1395                                 dev_err(slot->host->dev,
1396                                         "failed to enable vmmc regulator\n");
1397                                 /*return, if failed turn on vmmc*/
1398                                 return;
1399                         }
1400                 }
1401                 set_bit(DW_MMC_CARD_NEED_INIT, &slot->flags);
1402                 regs = mci_readl(slot->host, PWREN);
1403                 regs |= (1 << slot->id);
1404                 mci_writel(slot->host, PWREN, regs);
1405                 break;
1406         case MMC_POWER_ON:
1407                 if (!slot->host->vqmmc_enabled) {
1408                         if (!IS_ERR(mmc->supply.vqmmc)) {
1409                                 ret = regulator_enable(mmc->supply.vqmmc);
1410                                 if (ret < 0)
1411                                         dev_err(slot->host->dev,
1412                                                 "failed to enable vqmmc\n");
1413                                 else
1414                                         slot->host->vqmmc_enabled = true;
1415
1416                         } else {
1417                                 /* Keep track so we don't reset again */
1418                                 slot->host->vqmmc_enabled = true;
1419                         }
1420
1421                         /* Reset our state machine after powering on */
1422                         dw_mci_ctrl_reset(slot->host,
1423                                           SDMMC_CTRL_ALL_RESET_FLAGS);
1424                 }
1425
1426                 /* Adjust clock / bus width after power is up */
1427                 dw_mci_setup_bus(slot, false);
1428
1429                 break;
1430         case MMC_POWER_OFF:
1431                 /* Turn clock off before power goes down */
1432                 dw_mci_setup_bus(slot, false);
1433
1434                 if (!IS_ERR(mmc->supply.vmmc))
1435                         mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, 0);
1436
1437                 if (!IS_ERR(mmc->supply.vqmmc) && slot->host->vqmmc_enabled)
1438                         regulator_disable(mmc->supply.vqmmc);
1439                 slot->host->vqmmc_enabled = false;
1440
1441                 regs = mci_readl(slot->host, PWREN);
1442                 regs &= ~(1 << slot->id);
1443                 mci_writel(slot->host, PWREN, regs);
1444                 break;
1445         default:
1446                 break;
1447         }
1448
1449         if (slot->host->state == STATE_WAITING_CMD11_DONE && ios->clock != 0)
1450                 slot->host->state = STATE_IDLE;
1451 }
1452
1453 static int dw_mci_card_busy(struct mmc_host *mmc)
1454 {
1455         struct dw_mci_slot *slot = mmc_priv(mmc);
1456         u32 status;
1457
1458         /*
1459          * Check the busy bit which is low when DAT[3:0]
1460          * (the data lines) are 0000
1461          */
1462         status = mci_readl(slot->host, STATUS);
1463
1464         return !!(status & SDMMC_STATUS_BUSY);
1465 }
1466
1467 static int dw_mci_switch_voltage(struct mmc_host *mmc, struct mmc_ios *ios)
1468 {
1469         struct dw_mci_slot *slot = mmc_priv(mmc);
1470         struct dw_mci *host = slot->host;
1471         const struct dw_mci_drv_data *drv_data = host->drv_data;
1472         u32 uhs;
1473         u32 v18 = SDMMC_UHS_18V << slot->id;
1474         int ret;
1475
1476         if (drv_data && drv_data->switch_voltage)
1477                 return drv_data->switch_voltage(mmc, ios);
1478
1479         /*
1480          * Program the voltage.  Note that some instances of dw_mmc may use
1481          * the UHS_REG for this.  For other instances (like exynos) the UHS_REG
1482          * does no harm but you need to set the regulator directly.  Try both.
1483          */
1484         uhs = mci_readl(host, UHS_REG);
1485         if (ios->signal_voltage == MMC_SIGNAL_VOLTAGE_330)
1486                 uhs &= ~v18;
1487         else
1488                 uhs |= v18;
1489
1490         if (!IS_ERR(mmc->supply.vqmmc)) {
1491                 ret = mmc_regulator_set_vqmmc(mmc, ios);
1492
1493                 if (ret) {
1494                         dev_dbg(&mmc->class_dev,
1495                                          "Regulator set error %d - %s V\n",
1496                                          ret, uhs & v18 ? "1.8" : "3.3");
1497                         return ret;
1498                 }
1499         }
1500         mci_writel(host, UHS_REG, uhs);
1501
1502         return 0;
1503 }
1504
1505 static int dw_mci_get_ro(struct mmc_host *mmc)
1506 {
1507         int read_only;
1508         struct dw_mci_slot *slot = mmc_priv(mmc);
1509         int gpio_ro = mmc_gpio_get_ro(mmc);
1510
1511         /* Use platform get_ro function, else try on board write protect */
1512         if (gpio_ro >= 0)
1513                 read_only = gpio_ro;
1514         else
1515                 read_only =
1516                         mci_readl(slot->host, WRTPRT) & (1 << slot->id) ? 1 : 0;
1517
1518         dev_dbg(&mmc->class_dev, "card is %s\n",
1519                 read_only ? "read-only" : "read-write");
1520
1521         return read_only;
1522 }
1523
1524 static int dw_mci_get_cd(struct mmc_host *mmc)
1525 {
1526         int present;
1527         struct dw_mci_slot *slot = mmc_priv(mmc);
1528         struct dw_mci *host = slot->host;
1529         int gpio_cd = mmc_gpio_get_cd(mmc);
1530
1531         /* Use platform get_cd function, else try onboard card detect */
1532         if ((mmc->caps & MMC_CAP_NEEDS_POLL) || !mmc_card_is_removable(mmc))
1533                 present = 1;
1534         else if (gpio_cd >= 0)
1535                 present = gpio_cd;
1536         else
1537                 present = (mci_readl(slot->host, CDETECT) & (1 << slot->id))
1538                         == 0 ? 1 : 0;
1539
1540         spin_lock_bh(&host->lock);
1541         if (present && !test_and_set_bit(DW_MMC_CARD_PRESENT, &slot->flags))
1542                 dev_dbg(&mmc->class_dev, "card is present\n");
1543         else if (!test_and_clear_bit(DW_MMC_CARD_PRESENT, &slot->flags))
1544                 dev_dbg(&mmc->class_dev, "card is not present\n");
1545         spin_unlock_bh(&host->lock);
1546
1547         return present;
1548 }
1549
1550 static void dw_mci_hw_reset(struct mmc_host *mmc)
1551 {
1552         struct dw_mci_slot *slot = mmc_priv(mmc);
1553         struct dw_mci *host = slot->host;
1554         int reset;
1555
1556         if (host->use_dma == TRANS_MODE_IDMAC)
1557                 dw_mci_idmac_reset(host);
1558
1559         if (!dw_mci_ctrl_reset(host, SDMMC_CTRL_DMA_RESET |
1560                                      SDMMC_CTRL_FIFO_RESET))
1561                 return;
1562
1563         /*
1564          * According to eMMC spec, card reset procedure:
1565          * tRstW >= 1us:   RST_n pulse width
1566          * tRSCA >= 200us: RST_n to Command time
1567          * tRSTH >= 1us:   RST_n high period
1568          */
1569         reset = mci_readl(host, RST_N);
1570         reset &= ~(SDMMC_RST_HWACTIVE << slot->id);
1571         mci_writel(host, RST_N, reset);
1572         usleep_range(1, 2);
1573         reset |= SDMMC_RST_HWACTIVE << slot->id;
1574         mci_writel(host, RST_N, reset);
1575         usleep_range(200, 300);
1576 }
1577
1578 static void dw_mci_init_card(struct mmc_host *mmc, struct mmc_card *card)
1579 {
1580         struct dw_mci_slot *slot = mmc_priv(mmc);
1581         struct dw_mci *host = slot->host;
1582
1583         /*
1584          * Low power mode will stop the card clock when idle.  According to the
1585          * description of the CLKENA register we should disable low power mode
1586          * for SDIO cards if we need SDIO interrupts to work.
1587          */
1588         if (mmc->caps & MMC_CAP_SDIO_IRQ) {
1589                 const u32 clken_low_pwr = SDMMC_CLKEN_LOW_PWR << slot->id;
1590                 u32 clk_en_a_old;
1591                 u32 clk_en_a;
1592
1593                 clk_en_a_old = mci_readl(host, CLKENA);
1594
1595                 if (card->type == MMC_TYPE_SDIO ||
1596                     card->type == MMC_TYPE_SD_COMBO) {
1597                         set_bit(DW_MMC_CARD_NO_LOW_PWR, &slot->flags);
1598                         clk_en_a = clk_en_a_old & ~clken_low_pwr;
1599                 } else {
1600                         clear_bit(DW_MMC_CARD_NO_LOW_PWR, &slot->flags);
1601                         clk_en_a = clk_en_a_old | clken_low_pwr;
1602                 }
1603
1604                 if (clk_en_a != clk_en_a_old) {
1605                         mci_writel(host, CLKENA, clk_en_a);
1606                         mci_send_cmd(slot, SDMMC_CMD_UPD_CLK |
1607                                      SDMMC_CMD_PRV_DAT_WAIT, 0);
1608                 }
1609         }
1610 }
1611
1612 static void dw_mci_enable_sdio_irq(struct mmc_host *mmc, int enb)
1613 {
1614         struct dw_mci_slot *slot = mmc_priv(mmc);
1615         struct dw_mci *host = slot->host;
1616         unsigned long irqflags;
1617         u32 int_mask;
1618
1619         spin_lock_irqsave(&host->irq_lock, irqflags);
1620
1621         /* Enable/disable Slot Specific SDIO interrupt */
1622         int_mask = mci_readl(host, INTMASK);
1623         if (enb)
1624                 int_mask |= SDMMC_INT_SDIO(slot->sdio_id);
1625         else
1626                 int_mask &= ~SDMMC_INT_SDIO(slot->sdio_id);
1627         mci_writel(host, INTMASK, int_mask);
1628
1629         spin_unlock_irqrestore(&host->irq_lock, irqflags);
1630 }
1631
1632 static int dw_mci_execute_tuning(struct mmc_host *mmc, u32 opcode)
1633 {
1634         struct dw_mci_slot *slot = mmc_priv(mmc);
1635         struct dw_mci *host = slot->host;
1636         const struct dw_mci_drv_data *drv_data = host->drv_data;
1637         int err = -EINVAL;
1638
1639         if (drv_data && drv_data->execute_tuning)
1640                 err = drv_data->execute_tuning(slot, opcode);
1641         return err;
1642 }
1643
1644 static int dw_mci_prepare_hs400_tuning(struct mmc_host *mmc,
1645                                        struct mmc_ios *ios)
1646 {
1647         struct dw_mci_slot *slot = mmc_priv(mmc);
1648         struct dw_mci *host = slot->host;
1649         const struct dw_mci_drv_data *drv_data = host->drv_data;
1650
1651         if (drv_data && drv_data->prepare_hs400_tuning)
1652                 return drv_data->prepare_hs400_tuning(host, ios);
1653
1654         return 0;
1655 }
1656
1657 static const struct mmc_host_ops dw_mci_ops = {
1658         .request                = dw_mci_request,
1659         .pre_req                = dw_mci_pre_req,
1660         .post_req               = dw_mci_post_req,
1661         .set_ios                = dw_mci_set_ios,
1662         .get_ro                 = dw_mci_get_ro,
1663         .get_cd                 = dw_mci_get_cd,
1664         .hw_reset               = dw_mci_hw_reset,
1665         .enable_sdio_irq        = dw_mci_enable_sdio_irq,
1666         .execute_tuning         = dw_mci_execute_tuning,
1667         .card_busy              = dw_mci_card_busy,
1668         .start_signal_voltage_switch = dw_mci_switch_voltage,
1669         .init_card              = dw_mci_init_card,
1670         .prepare_hs400_tuning   = dw_mci_prepare_hs400_tuning,
1671 };
1672
1673 static void dw_mci_request_end(struct dw_mci *host, struct mmc_request *mrq)
1674         __releases(&host->lock)
1675         __acquires(&host->lock)
1676 {
1677         struct dw_mci_slot *slot;
1678         struct mmc_host *prev_mmc = host->cur_slot->mmc;
1679
1680         WARN_ON(host->cmd || host->data);
1681
1682         host->cur_slot->mrq = NULL;
1683         host->mrq = NULL;
1684         if (!list_empty(&host->queue)) {
1685                 slot = list_entry(host->queue.next,
1686                                   struct dw_mci_slot, queue_node);
1687                 list_del(&slot->queue_node);
1688                 dev_vdbg(host->dev, "list not empty: %s is next\n",
1689                          mmc_hostname(slot->mmc));
1690                 host->state = STATE_SENDING_CMD;
1691                 dw_mci_start_request(host, slot);
1692         } else {
1693                 dev_vdbg(host->dev, "list empty\n");
1694
1695                 if (host->state == STATE_SENDING_CMD11)
1696                         host->state = STATE_WAITING_CMD11_DONE;
1697                 else
1698                         host->state = STATE_IDLE;
1699         }
1700
1701         spin_unlock(&host->lock);
1702         mmc_request_done(prev_mmc, mrq);
1703         spin_lock(&host->lock);
1704 }
1705
1706 static int dw_mci_command_complete(struct dw_mci *host, struct mmc_command *cmd)
1707 {
1708         u32 status = host->cmd_status;
1709
1710         host->cmd_status = 0;
1711
1712         /* Read the response from the card (up to 16 bytes) */
1713         if (cmd->flags & MMC_RSP_PRESENT) {
1714                 if (cmd->flags & MMC_RSP_136) {
1715                         cmd->resp[3] = mci_readl(host, RESP0);
1716                         cmd->resp[2] = mci_readl(host, RESP1);
1717                         cmd->resp[1] = mci_readl(host, RESP2);
1718                         cmd->resp[0] = mci_readl(host, RESP3);
1719                 } else {
1720                         cmd->resp[0] = mci_readl(host, RESP0);
1721                         cmd->resp[1] = 0;
1722                         cmd->resp[2] = 0;
1723                         cmd->resp[3] = 0;
1724                 }
1725         }
1726
1727         if (status & SDMMC_INT_RTO)
1728                 cmd->error = -ETIMEDOUT;
1729         else if ((cmd->flags & MMC_RSP_CRC) && (status & SDMMC_INT_RCRC))
1730                 cmd->error = -EILSEQ;
1731         else if (status & SDMMC_INT_RESP_ERR)
1732                 cmd->error = -EIO;
1733         else
1734                 cmd->error = 0;
1735
1736         return cmd->error;
1737 }
1738
1739 static int dw_mci_data_complete(struct dw_mci *host, struct mmc_data *data)
1740 {
1741         u32 status = host->data_status;
1742
1743         if (status & DW_MCI_DATA_ERROR_FLAGS) {
1744                 if (status & SDMMC_INT_DRTO) {
1745                         data->error = -ETIMEDOUT;
1746                 } else if (status & SDMMC_INT_DCRC) {
1747                         data->error = -EILSEQ;
1748                 } else if (status & SDMMC_INT_EBE) {
1749                         if (host->dir_status ==
1750                                 DW_MCI_SEND_STATUS) {
1751                                 /*
1752                                  * No data CRC status was returned.
1753                                  * The number of bytes transferred
1754                                  * will be exaggerated in PIO mode.
1755                                  */
1756                                 data->bytes_xfered = 0;
1757                                 data->error = -ETIMEDOUT;
1758                         } else if (host->dir_status ==
1759                                         DW_MCI_RECV_STATUS) {
1760                                 data->error = -EILSEQ;
1761                         }
1762                 } else {
1763                         /* SDMMC_INT_SBE is included */
1764                         data->error = -EILSEQ;
1765                 }
1766
1767                 dev_dbg(host->dev, "data error, status 0x%08x\n", status);
1768
1769                 /*
1770                  * After an error, there may be data lingering
1771                  * in the FIFO
1772                  */
1773                 dw_mci_reset(host);
1774         } else {
1775                 data->bytes_xfered = data->blocks * data->blksz;
1776                 data->error = 0;
1777         }
1778
1779         return data->error;
1780 }
1781
1782 static void dw_mci_set_drto(struct dw_mci *host)
1783 {
1784         unsigned int drto_clks;
1785         unsigned int drto_ms;
1786
1787         drto_clks = mci_readl(host, TMOUT) >> 8;
1788         drto_ms = DIV_ROUND_UP(drto_clks, host->bus_hz / 1000);
1789
1790         /* add a bit spare time */
1791         drto_ms += 10;
1792
1793         mod_timer(&host->dto_timer, jiffies + msecs_to_jiffies(drto_ms));
1794 }
1795
1796 static void dw_mci_tasklet_func(unsigned long priv)
1797 {
1798         struct dw_mci *host = (struct dw_mci *)priv;
1799         struct mmc_data *data;
1800         struct mmc_command *cmd;
1801         struct mmc_request *mrq;
1802         enum dw_mci_state state;
1803         enum dw_mci_state prev_state;
1804         unsigned int err;
1805
1806         spin_lock(&host->lock);
1807
1808         state = host->state;
1809         data = host->data;
1810         mrq = host->mrq;
1811
1812         do {
1813                 prev_state = state;
1814
1815                 switch (state) {
1816                 case STATE_IDLE:
1817                 case STATE_WAITING_CMD11_DONE:
1818                         break;
1819
1820                 case STATE_SENDING_CMD11:
1821                 case STATE_SENDING_CMD:
1822                         if (!test_and_clear_bit(EVENT_CMD_COMPLETE,
1823                                                 &host->pending_events))
1824                                 break;
1825
1826                         cmd = host->cmd;
1827                         host->cmd = NULL;
1828                         set_bit(EVENT_CMD_COMPLETE, &host->completed_events);
1829                         err = dw_mci_command_complete(host, cmd);
1830                         if (cmd == mrq->sbc && !err) {
1831                                 prev_state = state = STATE_SENDING_CMD;
1832                                 __dw_mci_start_request(host, host->cur_slot,
1833                                                        mrq->cmd);
1834                                 goto unlock;
1835                         }
1836
1837                         if (cmd->data && err) {
1838                                 /*
1839                                  * During UHS tuning sequence, sending the stop
1840                                  * command after the response CRC error would
1841                                  * throw the system into a confused state
1842                                  * causing all future tuning phases to report
1843                                  * failure.
1844                                  *
1845                                  * In such case controller will move into a data
1846                                  * transfer state after a response error or
1847                                  * response CRC error. Let's let that finish
1848                                  * before trying to send a stop, so we'll go to
1849                                  * STATE_SENDING_DATA.
1850                                  *
1851                                  * Although letting the data transfer take place
1852                                  * will waste a bit of time (we already know
1853                                  * the command was bad), it can't cause any
1854                                  * errors since it's possible it would have
1855                                  * taken place anyway if this tasklet got
1856                                  * delayed. Allowing the transfer to take place
1857                                  * avoids races and keeps things simple.
1858                                  */
1859                                 if ((err != -ETIMEDOUT) &&
1860                                     (cmd->opcode == MMC_SEND_TUNING_BLOCK)) {
1861                                         state = STATE_SENDING_DATA;
1862                                         continue;
1863                                 }
1864
1865                                 dw_mci_stop_dma(host);
1866                                 send_stop_abort(host, data);
1867                                 state = STATE_SENDING_STOP;
1868                                 break;
1869                         }
1870
1871                         if (!cmd->data || err) {
1872                                 dw_mci_request_end(host, mrq);
1873                                 goto unlock;
1874                         }
1875
1876                         prev_state = state = STATE_SENDING_DATA;
1877                         /* fall through */
1878
1879                 case STATE_SENDING_DATA:
1880                         /*
1881                          * We could get a data error and never a transfer
1882                          * complete so we'd better check for it here.
1883                          *
1884                          * Note that we don't really care if we also got a
1885                          * transfer complete; stopping the DMA and sending an
1886                          * abort won't hurt.
1887                          */
1888                         if (test_and_clear_bit(EVENT_DATA_ERROR,
1889                                                &host->pending_events)) {
1890                                 dw_mci_stop_dma(host);
1891                                 if (!(host->data_status & (SDMMC_INT_DRTO |
1892                                                            SDMMC_INT_EBE)))
1893                                         send_stop_abort(host, data);
1894                                 state = STATE_DATA_ERROR;
1895                                 break;
1896                         }
1897
1898                         if (!test_and_clear_bit(EVENT_XFER_COMPLETE,
1899                                                 &host->pending_events)) {
1900                                 /*
1901                                  * If all data-related interrupts don't come
1902                                  * within the given time in reading data state.
1903                                  */
1904                                 if (host->dir_status == DW_MCI_RECV_STATUS)
1905                                         dw_mci_set_drto(host);
1906                                 break;
1907                         }
1908
1909                         set_bit(EVENT_XFER_COMPLETE, &host->completed_events);
1910
1911                         /*
1912                          * Handle an EVENT_DATA_ERROR that might have shown up
1913                          * before the transfer completed.  This might not have
1914                          * been caught by the check above because the interrupt
1915                          * could have gone off between the previous check and
1916                          * the check for transfer complete.
1917                          *
1918                          * Technically this ought not be needed assuming we
1919                          * get a DATA_COMPLETE eventually (we'll notice the
1920                          * error and end the request), but it shouldn't hurt.
1921                          *
1922                          * This has the advantage of sending the stop command.
1923                          */
1924                         if (test_and_clear_bit(EVENT_DATA_ERROR,
1925                                                &host->pending_events)) {
1926                                 dw_mci_stop_dma(host);
1927                                 if (!(host->data_status & (SDMMC_INT_DRTO |
1928                                                            SDMMC_INT_EBE)))
1929                                         send_stop_abort(host, data);
1930                                 state = STATE_DATA_ERROR;
1931                                 break;
1932                         }
1933                         prev_state = state = STATE_DATA_BUSY;
1934
1935                         /* fall through */
1936
1937                 case STATE_DATA_BUSY:
1938                         if (!test_and_clear_bit(EVENT_DATA_COMPLETE,
1939                                                 &host->pending_events)) {
1940                                 /*
1941                                  * If data error interrupt comes but data over
1942                                  * interrupt doesn't come within the given time.
1943                                  * in reading data state.
1944                                  */
1945                                 if (host->dir_status == DW_MCI_RECV_STATUS)
1946                                         dw_mci_set_drto(host);
1947                                 break;
1948                         }
1949
1950                         host->data = NULL;
1951                         set_bit(EVENT_DATA_COMPLETE, &host->completed_events);
1952                         err = dw_mci_data_complete(host, data);
1953
1954                         if (!err) {
1955                                 if (!data->stop || mrq->sbc) {
1956                                         if (mrq->sbc && data->stop)
1957                                                 data->stop->error = 0;
1958                                         dw_mci_request_end(host, mrq);
1959                                         goto unlock;
1960                                 }
1961
1962                                 /* stop command for open-ended transfer*/
1963                                 if (data->stop)
1964                                         send_stop_abort(host, data);
1965                         } else {
1966                                 /*
1967                                  * If we don't have a command complete now we'll
1968                                  * never get one since we just reset everything;
1969                                  * better end the request.
1970                                  *
1971                                  * If we do have a command complete we'll fall
1972                                  * through to the SENDING_STOP command and
1973                                  * everything will be peachy keen.
1974                                  */
1975                                 if (!test_bit(EVENT_CMD_COMPLETE,
1976                                               &host->pending_events)) {
1977                                         host->cmd = NULL;
1978                                         dw_mci_request_end(host, mrq);
1979                                         goto unlock;
1980                                 }
1981                         }
1982
1983                         /*
1984                          * If err has non-zero,
1985                          * stop-abort command has been already issued.
1986                          */
1987                         prev_state = state = STATE_SENDING_STOP;
1988
1989                         /* fall through */
1990
1991                 case STATE_SENDING_STOP:
1992                         if (!test_and_clear_bit(EVENT_CMD_COMPLETE,
1993                                                 &host->pending_events))
1994                                 break;
1995
1996                         /* CMD error in data command */
1997                         if (mrq->cmd->error && mrq->data)
1998                                 dw_mci_reset(host);
1999
2000                         host->cmd = NULL;
2001                         host->data = NULL;
2002
2003                         if (!mrq->sbc && mrq->stop)
2004                                 dw_mci_command_complete(host, mrq->stop);
2005                         else
2006                                 host->cmd_status = 0;
2007
2008                         dw_mci_request_end(host, mrq);
2009                         goto unlock;
2010
2011                 case STATE_DATA_ERROR:
2012                         if (!test_and_clear_bit(EVENT_XFER_COMPLETE,
2013                                                 &host->pending_events))
2014                                 break;
2015
2016                         state = STATE_DATA_BUSY;
2017                         break;
2018                 }
2019         } while (state != prev_state);
2020
2021         host->state = state;
2022 unlock:
2023         spin_unlock(&host->lock);
2024
2025 }
2026
2027 /* push final bytes to part_buf, only use during push */
2028 static void dw_mci_set_part_bytes(struct dw_mci *host, void *buf, int cnt)
2029 {
2030         memcpy((void *)&host->part_buf, buf, cnt);
2031         host->part_buf_count = cnt;
2032 }
2033
2034 /* append bytes to part_buf, only use during push */
2035 static int dw_mci_push_part_bytes(struct dw_mci *host, void *buf, int cnt)
2036 {
2037         cnt = min(cnt, (1 << host->data_shift) - host->part_buf_count);
2038         memcpy((void *)&host->part_buf + host->part_buf_count, buf, cnt);
2039         host->part_buf_count += cnt;
2040         return cnt;
2041 }
2042
2043 /* pull first bytes from part_buf, only use during pull */
2044 static int dw_mci_pull_part_bytes(struct dw_mci *host, void *buf, int cnt)
2045 {
2046         cnt = min_t(int, cnt, host->part_buf_count);
2047         if (cnt) {
2048                 memcpy(buf, (void *)&host->part_buf + host->part_buf_start,
2049                        cnt);
2050                 host->part_buf_count -= cnt;
2051                 host->part_buf_start += cnt;
2052         }
2053         return cnt;
2054 }
2055
2056 /* pull final bytes from the part_buf, assuming it's just been filled */
2057 static void dw_mci_pull_final_bytes(struct dw_mci *host, void *buf, int cnt)
2058 {
2059         memcpy(buf, &host->part_buf, cnt);
2060         host->part_buf_start = cnt;
2061         host->part_buf_count = (1 << host->data_shift) - cnt;
2062 }
2063
2064 static void dw_mci_push_data16(struct dw_mci *host, void *buf, int cnt)
2065 {
2066         struct mmc_data *data = host->data;
2067         int init_cnt = cnt;
2068
2069         /* try and push anything in the part_buf */
2070         if (unlikely(host->part_buf_count)) {
2071                 int len = dw_mci_push_part_bytes(host, buf, cnt);
2072
2073                 buf += len;
2074                 cnt -= len;
2075                 if (host->part_buf_count == 2) {
2076                         mci_fifo_writew(host->fifo_reg, host->part_buf16);
2077                         host->part_buf_count = 0;
2078                 }
2079         }
2080 #ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
2081         if (unlikely((unsigned long)buf & 0x1)) {
2082                 while (cnt >= 2) {
2083                         u16 aligned_buf[64];
2084                         int len = min(cnt & -2, (int)sizeof(aligned_buf));
2085                         int items = len >> 1;
2086                         int i;
2087                         /* memcpy from input buffer into aligned buffer */
2088                         memcpy(aligned_buf, buf, len);
2089                         buf += len;
2090                         cnt -= len;
2091                         /* push data from aligned buffer into fifo */
2092                         for (i = 0; i < items; ++i)
2093                                 mci_fifo_writew(host->fifo_reg, aligned_buf[i]);
2094                 }
2095         } else
2096 #endif
2097         {
2098                 u16 *pdata = buf;
2099
2100                 for (; cnt >= 2; cnt -= 2)
2101                         mci_fifo_writew(host->fifo_reg, *pdata++);
2102                 buf = pdata;
2103         }
2104         /* put anything remaining in the part_buf */
2105         if (cnt) {
2106                 dw_mci_set_part_bytes(host, buf, cnt);
2107                  /* Push data if we have reached the expected data length */
2108                 if ((data->bytes_xfered + init_cnt) ==
2109                     (data->blksz * data->blocks))
2110                         mci_fifo_writew(host->fifo_reg, host->part_buf16);
2111         }
2112 }
2113
2114 static void dw_mci_pull_data16(struct dw_mci *host, void *buf, int cnt)
2115 {
2116 #ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
2117         if (unlikely((unsigned long)buf & 0x1)) {
2118                 while (cnt >= 2) {
2119                         /* pull data from fifo into aligned buffer */
2120                         u16 aligned_buf[64];
2121                         int len = min(cnt & -2, (int)sizeof(aligned_buf));
2122                         int items = len >> 1;
2123                         int i;
2124
2125                         for (i = 0; i < items; ++i)
2126                                 aligned_buf[i] = mci_fifo_readw(host->fifo_reg);
2127                         /* memcpy from aligned buffer into output buffer */
2128                         memcpy(buf, aligned_buf, len);
2129                         buf += len;
2130                         cnt -= len;
2131                 }
2132         } else
2133 #endif
2134         {
2135                 u16 *pdata = buf;
2136
2137                 for (; cnt >= 2; cnt -= 2)
2138                         *pdata++ = mci_fifo_readw(host->fifo_reg);
2139                 buf = pdata;
2140         }
2141         if (cnt) {
2142                 host->part_buf16 = mci_fifo_readw(host->fifo_reg);
2143                 dw_mci_pull_final_bytes(host, buf, cnt);
2144         }
2145 }
2146
2147 static void dw_mci_push_data32(struct dw_mci *host, void *buf, int cnt)
2148 {
2149         struct mmc_data *data = host->data;
2150         int init_cnt = cnt;
2151
2152         /* try and push anything in the part_buf */
2153         if (unlikely(host->part_buf_count)) {
2154                 int len = dw_mci_push_part_bytes(host, buf, cnt);
2155
2156                 buf += len;
2157                 cnt -= len;
2158                 if (host->part_buf_count == 4) {
2159                         mci_fifo_writel(host->fifo_reg, host->part_buf32);
2160                         host->part_buf_count = 0;
2161                 }
2162         }
2163 #ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
2164         if (unlikely((unsigned long)buf & 0x3)) {
2165                 while (cnt >= 4) {
2166                         u32 aligned_buf[32];
2167                         int len = min(cnt & -4, (int)sizeof(aligned_buf));
2168                         int items = len >> 2;
2169                         int i;
2170                         /* memcpy from input buffer into aligned buffer */
2171                         memcpy(aligned_buf, buf, len);
2172                         buf += len;
2173                         cnt -= len;
2174                         /* push data from aligned buffer into fifo */
2175                         for (i = 0; i < items; ++i)
2176                                 mci_fifo_writel(host->fifo_reg, aligned_buf[i]);
2177                 }
2178         } else
2179 #endif
2180         {
2181                 u32 *pdata = buf;
2182
2183                 for (; cnt >= 4; cnt -= 4)
2184                         mci_fifo_writel(host->fifo_reg, *pdata++);
2185                 buf = pdata;
2186         }
2187         /* put anything remaining in the part_buf */
2188         if (cnt) {
2189                 dw_mci_set_part_bytes(host, buf, cnt);
2190                  /* Push data if we have reached the expected data length */
2191                 if ((data->bytes_xfered + init_cnt) ==
2192                     (data->blksz * data->blocks))
2193                         mci_fifo_writel(host->fifo_reg, host->part_buf32);
2194         }
2195 }
2196
2197 static void dw_mci_pull_data32(struct dw_mci *host, void *buf, int cnt)
2198 {
2199 #ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
2200         if (unlikely((unsigned long)buf & 0x3)) {
2201                 while (cnt >= 4) {
2202                         /* pull data from fifo into aligned buffer */
2203                         u32 aligned_buf[32];
2204                         int len = min(cnt & -4, (int)sizeof(aligned_buf));
2205                         int items = len >> 2;
2206                         int i;
2207
2208                         for (i = 0; i < items; ++i)
2209                                 aligned_buf[i] = mci_fifo_readl(host->fifo_reg);
2210                         /* memcpy from aligned buffer into output buffer */
2211                         memcpy(buf, aligned_buf, len);
2212                         buf += len;
2213                         cnt -= len;
2214                 }
2215         } else
2216 #endif
2217         {
2218                 u32 *pdata = buf;
2219
2220                 for (; cnt >= 4; cnt -= 4)
2221                         *pdata++ = mci_fifo_readl(host->fifo_reg);
2222                 buf = pdata;
2223         }
2224         if (cnt) {
2225                 host->part_buf32 = mci_fifo_readl(host->fifo_reg);
2226                 dw_mci_pull_final_bytes(host, buf, cnt);
2227         }
2228 }
2229
2230 static void dw_mci_push_data64(struct dw_mci *host, void *buf, int cnt)
2231 {
2232         struct mmc_data *data = host->data;
2233         int init_cnt = cnt;
2234
2235         /* try and push anything in the part_buf */
2236         if (unlikely(host->part_buf_count)) {
2237                 int len = dw_mci_push_part_bytes(host, buf, cnt);
2238
2239                 buf += len;
2240                 cnt -= len;
2241
2242                 if (host->part_buf_count == 8) {
2243                         mci_fifo_writeq(host->fifo_reg, host->part_buf);
2244                         host->part_buf_count = 0;
2245                 }
2246         }
2247 #ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
2248         if (unlikely((unsigned long)buf & 0x7)) {
2249                 while (cnt >= 8) {
2250                         u64 aligned_buf[16];
2251                         int len = min(cnt & -8, (int)sizeof(aligned_buf));
2252                         int items = len >> 3;
2253                         int i;
2254                         /* memcpy from input buffer into aligned buffer */
2255                         memcpy(aligned_buf, buf, len);
2256                         buf += len;
2257                         cnt -= len;
2258                         /* push data from aligned buffer into fifo */
2259                         for (i = 0; i < items; ++i)
2260                                 mci_fifo_writeq(host->fifo_reg, aligned_buf[i]);
2261                 }
2262         } else
2263 #endif
2264         {
2265                 u64 *pdata = buf;
2266
2267                 for (; cnt >= 8; cnt -= 8)
2268                         mci_fifo_writeq(host->fifo_reg, *pdata++);
2269                 buf = pdata;
2270         }
2271         /* put anything remaining in the part_buf */
2272         if (cnt) {
2273                 dw_mci_set_part_bytes(host, buf, cnt);
2274                 /* Push data if we have reached the expected data length */
2275                 if ((data->bytes_xfered + init_cnt) ==
2276                     (data->blksz * data->blocks))
2277                         mci_fifo_writeq(host->fifo_reg, host->part_buf);
2278         }
2279 }
2280
2281 static void dw_mci_pull_data64(struct dw_mci *host, void *buf, int cnt)
2282 {
2283 #ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
2284         if (unlikely((unsigned long)buf & 0x7)) {
2285                 while (cnt >= 8) {
2286                         /* pull data from fifo into aligned buffer */
2287                         u64 aligned_buf[16];
2288                         int len = min(cnt & -8, (int)sizeof(aligned_buf));
2289                         int items = len >> 3;
2290                         int i;
2291
2292                         for (i = 0; i < items; ++i)
2293                                 aligned_buf[i] = mci_fifo_readq(host->fifo_reg);
2294
2295                         /* memcpy from aligned buffer into output buffer */
2296                         memcpy(buf, aligned_buf, len);
2297                         buf += len;
2298                         cnt -= len;
2299                 }
2300         } else
2301 #endif
2302         {
2303                 u64 *pdata = buf;
2304
2305                 for (; cnt >= 8; cnt -= 8)
2306                         *pdata++ = mci_fifo_readq(host->fifo_reg);
2307                 buf = pdata;
2308         }
2309         if (cnt) {
2310                 host->part_buf = mci_fifo_readq(host->fifo_reg);
2311                 dw_mci_pull_final_bytes(host, buf, cnt);
2312         }
2313 }
2314
2315 static void dw_mci_pull_data(struct dw_mci *host, void *buf, int cnt)
2316 {
2317         int len;
2318
2319         /* get remaining partial bytes */
2320         len = dw_mci_pull_part_bytes(host, buf, cnt);
2321         if (unlikely(len == cnt))
2322                 return;
2323         buf += len;
2324         cnt -= len;
2325
2326         /* get the rest of the data */
2327         host->pull_data(host, buf, cnt);
2328 }
2329
2330 static void dw_mci_read_data_pio(struct dw_mci *host, bool dto)
2331 {
2332         struct sg_mapping_iter *sg_miter = &host->sg_miter;
2333         void *buf;
2334         unsigned int offset;
2335         struct mmc_data *data = host->data;
2336         int shift = host->data_shift;
2337         u32 status;
2338         unsigned int len;
2339         unsigned int remain, fcnt;
2340
2341         do {
2342                 if (!sg_miter_next(sg_miter))
2343                         goto done;
2344
2345                 host->sg = sg_miter->piter.sg;
2346                 buf = sg_miter->addr;
2347                 remain = sg_miter->length;
2348                 offset = 0;
2349
2350                 do {
2351                         fcnt = (SDMMC_GET_FCNT(mci_readl(host, STATUS))
2352                                         << shift) + host->part_buf_count;
2353                         len = min(remain, fcnt);
2354                         if (!len)
2355                                 break;
2356                         dw_mci_pull_data(host, (void *)(buf + offset), len);
2357                         data->bytes_xfered += len;
2358                         offset += len;
2359                         remain -= len;
2360                 } while (remain);
2361
2362                 sg_miter->consumed = offset;
2363                 status = mci_readl(host, MINTSTS);
2364                 mci_writel(host, RINTSTS, SDMMC_INT_RXDR);
2365         /* if the RXDR is ready read again */
2366         } while ((status & SDMMC_INT_RXDR) ||
2367                  (dto && SDMMC_GET_FCNT(mci_readl(host, STATUS))));
2368
2369         if (!remain) {
2370                 if (!sg_miter_next(sg_miter))
2371                         goto done;
2372                 sg_miter->consumed = 0;
2373         }
2374         sg_miter_stop(sg_miter);
2375         return;
2376
2377 done:
2378         sg_miter_stop(sg_miter);
2379         host->sg = NULL;
2380         smp_wmb(); /* drain writebuffer */
2381         set_bit(EVENT_XFER_COMPLETE, &host->pending_events);
2382 }
2383
2384 static void dw_mci_write_data_pio(struct dw_mci *host)
2385 {
2386         struct sg_mapping_iter *sg_miter = &host->sg_miter;
2387         void *buf;
2388         unsigned int offset;
2389         struct mmc_data *data = host->data;
2390         int shift = host->data_shift;
2391         u32 status;
2392         unsigned int len;
2393         unsigned int fifo_depth = host->fifo_depth;
2394         unsigned int remain, fcnt;
2395
2396         do {
2397                 if (!sg_miter_next(sg_miter))
2398                         goto done;
2399
2400                 host->sg = sg_miter->piter.sg;
2401                 buf = sg_miter->addr;
2402                 remain = sg_miter->length;
2403                 offset = 0;
2404
2405                 do {
2406                         fcnt = ((fifo_depth -
2407                                  SDMMC_GET_FCNT(mci_readl(host, STATUS)))
2408                                         << shift) - host->part_buf_count;
2409                         len = min(remain, fcnt);
2410                         if (!len)
2411                                 break;
2412                         host->push_data(host, (void *)(buf + offset), len);
2413                         data->bytes_xfered += len;
2414                         offset += len;
2415                         remain -= len;
2416                 } while (remain);
2417
2418                 sg_miter->consumed = offset;
2419                 status = mci_readl(host, MINTSTS);
2420                 mci_writel(host, RINTSTS, SDMMC_INT_TXDR);
2421         } while (status & SDMMC_INT_TXDR); /* if TXDR write again */
2422
2423         if (!remain) {
2424                 if (!sg_miter_next(sg_miter))
2425                         goto done;
2426                 sg_miter->consumed = 0;
2427         }
2428         sg_miter_stop(sg_miter);
2429         return;
2430
2431 done:
2432         sg_miter_stop(sg_miter);
2433         host->sg = NULL;
2434         smp_wmb(); /* drain writebuffer */
2435         set_bit(EVENT_XFER_COMPLETE, &host->pending_events);
2436 }
2437
2438 static void dw_mci_cmd_interrupt(struct dw_mci *host, u32 status)
2439 {
2440         if (!host->cmd_status)
2441                 host->cmd_status = status;
2442
2443         smp_wmb(); /* drain writebuffer */
2444
2445         set_bit(EVENT_CMD_COMPLETE, &host->pending_events);
2446         tasklet_schedule(&host->tasklet);
2447 }
2448
2449 static void dw_mci_handle_cd(struct dw_mci *host)
2450 {
2451         int i;
2452
2453         for (i = 0; i < host->num_slots; i++) {
2454                 struct dw_mci_slot *slot = host->slot[i];
2455
2456                 if (!slot)
2457                         continue;
2458
2459                 if (slot->mmc->ops->card_event)
2460                         slot->mmc->ops->card_event(slot->mmc);
2461                 mmc_detect_change(slot->mmc,
2462                         msecs_to_jiffies(host->pdata->detect_delay_ms));
2463         }
2464 }
2465
2466 static irqreturn_t dw_mci_interrupt(int irq, void *dev_id)
2467 {
2468         struct dw_mci *host = dev_id;
2469         u32 pending;
2470         int i;
2471
2472         pending = mci_readl(host, MINTSTS); /* read-only mask reg */
2473
2474         if (pending) {
2475                 /* Check volt switch first, since it can look like an error */
2476                 if ((host->state == STATE_SENDING_CMD11) &&
2477                     (pending & SDMMC_INT_VOLT_SWITCH)) {
2478                         unsigned long irqflags;
2479
2480                         mci_writel(host, RINTSTS, SDMMC_INT_VOLT_SWITCH);
2481                         pending &= ~SDMMC_INT_VOLT_SWITCH;
2482
2483                         /*
2484                          * Hold the lock; we know cmd11_timer can't be kicked
2485                          * off after the lock is released, so safe to delete.
2486                          */
2487                         spin_lock_irqsave(&host->irq_lock, irqflags);
2488                         dw_mci_cmd_interrupt(host, pending);
2489                         spin_unlock_irqrestore(&host->irq_lock, irqflags);
2490
2491                         del_timer(&host->cmd11_timer);
2492                 }
2493
2494                 if (pending & DW_MCI_CMD_ERROR_FLAGS) {
2495                         mci_writel(host, RINTSTS, DW_MCI_CMD_ERROR_FLAGS);
2496                         host->cmd_status = pending;
2497                         smp_wmb(); /* drain writebuffer */
2498                         set_bit(EVENT_CMD_COMPLETE, &host->pending_events);
2499                 }
2500
2501                 if (pending & DW_MCI_DATA_ERROR_FLAGS) {
2502                         /* if there is an error report DATA_ERROR */
2503                         mci_writel(host, RINTSTS, DW_MCI_DATA_ERROR_FLAGS);
2504                         host->data_status = pending;
2505                         smp_wmb(); /* drain writebuffer */
2506                         set_bit(EVENT_DATA_ERROR, &host->pending_events);
2507                         tasklet_schedule(&host->tasklet);
2508                 }
2509
2510                 if (pending & SDMMC_INT_DATA_OVER) {
2511                         del_timer(&host->dto_timer);
2512
2513                         mci_writel(host, RINTSTS, SDMMC_INT_DATA_OVER);
2514                         if (!host->data_status)
2515                                 host->data_status = pending;
2516                         smp_wmb(); /* drain writebuffer */
2517                         if (host->dir_status == DW_MCI_RECV_STATUS) {
2518                                 if (host->sg != NULL)
2519                                         dw_mci_read_data_pio(host, true);
2520                         }
2521                         set_bit(EVENT_DATA_COMPLETE, &host->pending_events);
2522                         tasklet_schedule(&host->tasklet);
2523                 }
2524
2525                 if (pending & SDMMC_INT_RXDR) {
2526                         mci_writel(host, RINTSTS, SDMMC_INT_RXDR);
2527                         if (host->dir_status == DW_MCI_RECV_STATUS && host->sg)
2528                                 dw_mci_read_data_pio(host, false);
2529                 }
2530
2531                 if (pending & SDMMC_INT_TXDR) {
2532                         mci_writel(host, RINTSTS, SDMMC_INT_TXDR);
2533                         if (host->dir_status == DW_MCI_SEND_STATUS && host->sg)
2534                                 dw_mci_write_data_pio(host);
2535                 }
2536
2537                 if (pending & SDMMC_INT_CMD_DONE) {
2538                         mci_writel(host, RINTSTS, SDMMC_INT_CMD_DONE);
2539                         dw_mci_cmd_interrupt(host, pending);
2540                 }
2541
2542                 if (pending & SDMMC_INT_CD) {
2543                         mci_writel(host, RINTSTS, SDMMC_INT_CD);
2544                         dw_mci_handle_cd(host);
2545                 }
2546
2547                 /* Handle SDIO Interrupts */
2548                 for (i = 0; i < host->num_slots; i++) {
2549                         struct dw_mci_slot *slot = host->slot[i];
2550
2551                         if (!slot)
2552                                 continue;
2553
2554                         if (pending & SDMMC_INT_SDIO(slot->sdio_id)) {
2555                                 mci_writel(host, RINTSTS,
2556                                            SDMMC_INT_SDIO(slot->sdio_id));
2557                                 mmc_signal_sdio_irq(slot->mmc);
2558                         }
2559                 }
2560
2561         }
2562
2563         if (host->use_dma != TRANS_MODE_IDMAC)
2564                 return IRQ_HANDLED;
2565
2566         /* Handle IDMA interrupts */
2567         if (host->dma_64bit_address == 1) {
2568                 pending = mci_readl(host, IDSTS64);
2569                 if (pending & (SDMMC_IDMAC_INT_TI | SDMMC_IDMAC_INT_RI)) {
2570                         mci_writel(host, IDSTS64, SDMMC_IDMAC_INT_TI |
2571                                                         SDMMC_IDMAC_INT_RI);
2572                         mci_writel(host, IDSTS64, SDMMC_IDMAC_INT_NI);
2573                         if (!test_bit(EVENT_DATA_ERROR, &host->pending_events))
2574                                 host->dma_ops->complete((void *)host);
2575                 }
2576         } else {
2577                 pending = mci_readl(host, IDSTS);
2578                 if (pending & (SDMMC_IDMAC_INT_TI | SDMMC_IDMAC_INT_RI)) {
2579                         mci_writel(host, IDSTS, SDMMC_IDMAC_INT_TI |
2580                                                         SDMMC_IDMAC_INT_RI);
2581                         mci_writel(host, IDSTS, SDMMC_IDMAC_INT_NI);
2582                         if (!test_bit(EVENT_DATA_ERROR, &host->pending_events))
2583                                 host->dma_ops->complete((void *)host);
2584                 }
2585         }
2586
2587         return IRQ_HANDLED;
2588 }
2589
2590 static int dw_mci_init_slot(struct dw_mci *host, unsigned int id)
2591 {
2592         struct mmc_host *mmc;
2593         struct dw_mci_slot *slot;
2594         const struct dw_mci_drv_data *drv_data = host->drv_data;
2595         int ctrl_id, ret;
2596         u32 freq[2];
2597
2598         mmc = mmc_alloc_host(sizeof(struct dw_mci_slot), host->dev);
2599         if (!mmc)
2600                 return -ENOMEM;
2601
2602         slot = mmc_priv(mmc);
2603         slot->id = id;
2604         slot->sdio_id = host->sdio_id0 + id;
2605         slot->mmc = mmc;
2606         slot->host = host;
2607         host->slot[id] = slot;
2608
2609         mmc->ops = &dw_mci_ops;
2610         if (of_property_read_u32_array(host->dev->of_node,
2611                                        "clock-freq-min-max", freq, 2)) {
2612                 mmc->f_min = DW_MCI_FREQ_MIN;
2613                 mmc->f_max = DW_MCI_FREQ_MAX;
2614         } else {
2615                 mmc->f_min = freq[0];
2616                 mmc->f_max = freq[1];
2617         }
2618
2619         /*if there are external regulators, get them*/
2620         ret = mmc_regulator_get_supply(mmc);
2621         if (ret == -EPROBE_DEFER)
2622                 goto err_host_allocated;
2623
2624         if (!mmc->ocr_avail)
2625                 mmc->ocr_avail = MMC_VDD_32_33 | MMC_VDD_33_34;
2626
2627         if (host->pdata->caps)
2628                 mmc->caps = host->pdata->caps;
2629
2630         /*
2631          * Support MMC_CAP_ERASE by default.
2632          * It needs to use trim/discard/erase commands.
2633          */
2634         mmc->caps |= MMC_CAP_ERASE;
2635
2636         if (host->pdata->pm_caps)
2637                 mmc->pm_caps = host->pdata->pm_caps;
2638
2639         if (host->dev->of_node) {
2640                 ctrl_id = of_alias_get_id(host->dev->of_node, "mshc");
2641                 if (ctrl_id < 0)
2642                         ctrl_id = 0;
2643         } else {
2644                 ctrl_id = to_platform_device(host->dev)->id;
2645         }
2646         if (drv_data && drv_data->caps)
2647                 mmc->caps |= drv_data->caps[ctrl_id];
2648
2649         if (host->pdata->caps2)
2650                 mmc->caps2 = host->pdata->caps2;
2651
2652         ret = mmc_of_parse(mmc);
2653         if (ret)
2654                 goto err_host_allocated;
2655
2656         /* Useful defaults if platform data is unset. */
2657         if (host->use_dma == TRANS_MODE_IDMAC) {
2658                 mmc->max_segs = host->ring_size;
2659                 mmc->max_blk_size = 65535;
2660                 mmc->max_seg_size = 0x1000;
2661                 mmc->max_req_size = mmc->max_seg_size * host->ring_size;
2662                 mmc->max_blk_count = mmc->max_req_size / 512;
2663         } else if (host->use_dma == TRANS_MODE_EDMAC) {
2664                 mmc->max_segs = 64;
2665                 mmc->max_blk_size = 65535;
2666                 mmc->max_blk_count = 65535;
2667                 mmc->max_req_size =
2668                                 mmc->max_blk_size * mmc->max_blk_count;
2669                 mmc->max_seg_size = mmc->max_req_size;
2670         } else {
2671                 /* TRANS_MODE_PIO */
2672                 mmc->max_segs = 64;
2673                 mmc->max_blk_size = 65535; /* BLKSIZ is 16 bits */
2674                 mmc->max_blk_count = 512;
2675                 mmc->max_req_size = mmc->max_blk_size *
2676                                     mmc->max_blk_count;
2677                 mmc->max_seg_size = mmc->max_req_size;
2678         }
2679
2680         dw_mci_get_cd(mmc);
2681
2682         ret = mmc_add_host(mmc);
2683         if (ret)
2684                 goto err_host_allocated;
2685
2686 #if defined(CONFIG_DEBUG_FS)
2687         dw_mci_init_debugfs(slot);
2688 #endif
2689
2690         return 0;
2691
2692 err_host_allocated:
2693         mmc_free_host(mmc);
2694         return ret;
2695 }
2696
2697 static void dw_mci_cleanup_slot(struct dw_mci_slot *slot, unsigned int id)
2698 {
2699         /* Debugfs stuff is cleaned up by mmc core */
2700         mmc_remove_host(slot->mmc);
2701         slot->host->slot[id] = NULL;
2702         mmc_free_host(slot->mmc);
2703 }
2704
2705 static void dw_mci_init_dma(struct dw_mci *host)
2706 {
2707         int addr_config;
2708         struct device *dev = host->dev;
2709         struct device_node *np = dev->of_node;
2710
2711         /*
2712         * Check tansfer mode from HCON[17:16]
2713         * Clear the ambiguous description of dw_mmc databook:
2714         * 2b'00: No DMA Interface -> Actually means using Internal DMA block
2715         * 2b'01: DesignWare DMA Interface -> Synopsys DW-DMA block
2716         * 2b'10: Generic DMA Interface -> non-Synopsys generic DMA block
2717         * 2b'11: Non DW DMA Interface -> pio only
2718         * Compared to DesignWare DMA Interface, Generic DMA Interface has a
2719         * simpler request/acknowledge handshake mechanism and both of them
2720         * are regarded as external dma master for dw_mmc.
2721         */
2722         host->use_dma = SDMMC_GET_TRANS_MODE(mci_readl(host, HCON));
2723         if (host->use_dma == DMA_INTERFACE_IDMA) {
2724                 host->use_dma = TRANS_MODE_IDMAC;
2725         } else if (host->use_dma == DMA_INTERFACE_DWDMA ||
2726                    host->use_dma == DMA_INTERFACE_GDMA) {
2727                 host->use_dma = TRANS_MODE_EDMAC;
2728         } else {
2729                 goto no_dma;
2730         }
2731
2732         /* Determine which DMA interface to use */
2733         if (host->use_dma == TRANS_MODE_IDMAC) {
2734                 /*
2735                 * Check ADDR_CONFIG bit in HCON to find
2736                 * IDMAC address bus width
2737                 */
2738                 addr_config = SDMMC_GET_ADDR_CONFIG(mci_readl(host, HCON));
2739
2740                 if (addr_config == 1) {
2741                         /* host supports IDMAC in 64-bit address mode */
2742                         host->dma_64bit_address = 1;
2743                         dev_info(host->dev,
2744                                  "IDMAC supports 64-bit address mode.\n");
2745                         if (!dma_set_mask(host->dev, DMA_BIT_MASK(64)))
2746                                 dma_set_coherent_mask(host->dev,
2747                                                       DMA_BIT_MASK(64));
2748                 } else {
2749                         /* host supports IDMAC in 32-bit address mode */
2750                         host->dma_64bit_address = 0;
2751                         dev_info(host->dev,
2752                                  "IDMAC supports 32-bit address mode.\n");
2753                 }
2754
2755                 /* Alloc memory for sg translation */
2756                 host->sg_cpu = dmam_alloc_coherent(host->dev,
2757                                                    DESC_RING_BUF_SZ,
2758                                                    &host->sg_dma, GFP_KERNEL);
2759                 if (!host->sg_cpu) {
2760                         dev_err(host->dev,
2761                                 "%s: could not alloc DMA memory\n",
2762                                 __func__);
2763                         goto no_dma;
2764                 }
2765
2766                 host->dma_ops = &dw_mci_idmac_ops;
2767                 dev_info(host->dev, "Using internal DMA controller.\n");
2768         } else {
2769                 /* TRANS_MODE_EDMAC: check dma bindings again */
2770                 if ((of_property_count_strings(np, "dma-names") < 0) ||
2771                     (!of_find_property(np, "dmas", NULL))) {
2772                         goto no_dma;
2773                 }
2774                 host->dma_ops = &dw_mci_edmac_ops;
2775                 dev_info(host->dev, "Using external DMA controller.\n");
2776         }
2777
2778         if (host->dma_ops->init && host->dma_ops->start &&
2779             host->dma_ops->stop && host->dma_ops->cleanup) {
2780                 if (host->dma_ops->init(host)) {
2781                         dev_err(host->dev, "%s: Unable to initialize DMA Controller.\n",
2782                                 __func__);
2783                         goto no_dma;
2784                 }
2785         } else {
2786                 dev_err(host->dev, "DMA initialization not found.\n");
2787                 goto no_dma;
2788         }
2789
2790         return;
2791
2792 no_dma:
2793         dev_info(host->dev, "Using PIO mode.\n");
2794         host->use_dma = TRANS_MODE_PIO;
2795 }
2796
2797 static bool dw_mci_ctrl_reset(struct dw_mci *host, u32 reset)
2798 {
2799         unsigned long timeout = jiffies + msecs_to_jiffies(500);
2800         u32 ctrl;
2801
2802         ctrl = mci_readl(host, CTRL);
2803         ctrl |= reset;
2804         mci_writel(host, CTRL, ctrl);
2805
2806         /* wait till resets clear */
2807         do {
2808                 ctrl = mci_readl(host, CTRL);
2809                 if (!(ctrl & reset))
2810                         return true;
2811         } while (time_before(jiffies, timeout));
2812
2813         dev_err(host->dev,
2814                 "Timeout resetting block (ctrl reset %#x)\n",
2815                 ctrl & reset);
2816
2817         return false;
2818 }
2819
2820 static bool dw_mci_reset(struct dw_mci *host)
2821 {
2822         u32 flags = SDMMC_CTRL_RESET | SDMMC_CTRL_FIFO_RESET;
2823         bool ret = false;
2824
2825         /*
2826          * Reseting generates a block interrupt, hence setting
2827          * the scatter-gather pointer to NULL.
2828          */
2829         if (host->sg) {
2830                 sg_miter_stop(&host->sg_miter);
2831                 host->sg = NULL;
2832         }
2833
2834         if (host->use_dma)
2835                 flags |= SDMMC_CTRL_DMA_RESET;
2836
2837         if (dw_mci_ctrl_reset(host, flags)) {
2838                 /*
2839                  * In all cases we clear the RAWINTS register to clear any
2840                  * interrupts.
2841                  */
2842                 mci_writel(host, RINTSTS, 0xFFFFFFFF);
2843
2844                 /* if using dma we wait for dma_req to clear */
2845                 if (host->use_dma) {
2846                         unsigned long timeout = jiffies + msecs_to_jiffies(500);
2847                         u32 status;
2848
2849                         do {
2850                                 status = mci_readl(host, STATUS);
2851                                 if (!(status & SDMMC_STATUS_DMA_REQ))
2852                                         break;
2853                                 cpu_relax();
2854                         } while (time_before(jiffies, timeout));
2855
2856                         if (status & SDMMC_STATUS_DMA_REQ) {
2857                                 dev_err(host->dev,
2858                                         "%s: Timeout waiting for dma_req to clear during reset\n",
2859                                         __func__);
2860                                 goto ciu_out;
2861                         }
2862
2863                         /* when using DMA next we reset the fifo again */
2864                         if (!dw_mci_ctrl_reset(host, SDMMC_CTRL_FIFO_RESET))
2865                                 goto ciu_out;
2866                 }
2867         } else {
2868                 /* if the controller reset bit did clear, then set clock regs */
2869                 if (!(mci_readl(host, CTRL) & SDMMC_CTRL_RESET)) {
2870                         dev_err(host->dev,
2871                                 "%s: fifo/dma reset bits didn't clear but ciu was reset, doing clock update\n",
2872                                 __func__);
2873                         goto ciu_out;
2874                 }
2875         }
2876
2877         if (host->use_dma == TRANS_MODE_IDMAC)
2878                 /* It is also recommended that we reset and reprogram idmac */
2879                 dw_mci_idmac_reset(host);
2880
2881         ret = true;
2882
2883 ciu_out:
2884         /* After a CTRL reset we need to have CIU set clock registers  */
2885         mci_send_cmd(host->cur_slot, SDMMC_CMD_UPD_CLK, 0);
2886
2887         return ret;
2888 }
2889
2890 static void dw_mci_cmd11_timer(unsigned long arg)
2891 {
2892         struct dw_mci *host = (struct dw_mci *)arg;
2893
2894         if (host->state != STATE_SENDING_CMD11) {
2895                 dev_warn(host->dev, "Unexpected CMD11 timeout\n");
2896                 return;
2897         }
2898
2899         host->cmd_status = SDMMC_INT_RTO;
2900         set_bit(EVENT_CMD_COMPLETE, &host->pending_events);
2901         tasklet_schedule(&host->tasklet);
2902 }
2903
2904 static void dw_mci_dto_timer(unsigned long arg)
2905 {
2906         struct dw_mci *host = (struct dw_mci *)arg;
2907
2908         switch (host->state) {
2909         case STATE_SENDING_DATA:
2910         case STATE_DATA_BUSY:
2911                 /*
2912                  * If DTO interrupt does NOT come in sending data state,
2913                  * we should notify the driver to terminate current transfer
2914                  * and report a data timeout to the core.
2915                  */
2916                 host->data_status = SDMMC_INT_DRTO;
2917                 set_bit(EVENT_DATA_ERROR, &host->pending_events);
2918                 set_bit(EVENT_DATA_COMPLETE, &host->pending_events);
2919                 tasklet_schedule(&host->tasklet);
2920                 break;
2921         default:
2922                 break;
2923         }
2924 }
2925
2926 #ifdef CONFIG_OF
2927 static struct dw_mci_board *dw_mci_parse_dt(struct dw_mci *host)
2928 {
2929         struct dw_mci_board *pdata;
2930         struct device *dev = host->dev;
2931         struct device_node *np = dev->of_node;
2932         const struct dw_mci_drv_data *drv_data = host->drv_data;
2933         int ret;
2934         u32 clock_frequency;
2935
2936         pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL);
2937         if (!pdata)
2938                 return ERR_PTR(-ENOMEM);
2939
2940         /* find reset controller when exist */
2941         pdata->rstc = devm_reset_control_get_optional(dev, "reset");
2942         if (IS_ERR(pdata->rstc)) {
2943                 if (PTR_ERR(pdata->rstc) == -EPROBE_DEFER)
2944                         return ERR_PTR(-EPROBE_DEFER);
2945         }
2946
2947         /* find out number of slots supported */
2948         of_property_read_u32(np, "num-slots", &pdata->num_slots);
2949
2950         if (of_property_read_u32(np, "fifo-depth", &pdata->fifo_depth))
2951                 dev_info(dev,
2952                          "fifo-depth property not found, using value of FIFOTH register as default\n");
2953
2954         of_property_read_u32(np, "card-detect-delay", &pdata->detect_delay_ms);
2955
2956         if (!of_property_read_u32(np, "clock-frequency", &clock_frequency))
2957                 pdata->bus_hz = clock_frequency;
2958
2959         if (drv_data && drv_data->parse_dt) {
2960                 ret = drv_data->parse_dt(host);
2961                 if (ret)
2962                         return ERR_PTR(ret);
2963         }
2964
2965         return pdata;
2966 }
2967
2968 #else /* CONFIG_OF */
2969 static struct dw_mci_board *dw_mci_parse_dt(struct dw_mci *host)
2970 {
2971         return ERR_PTR(-EINVAL);
2972 }
2973 #endif /* CONFIG_OF */
2974
2975 static void dw_mci_enable_cd(struct dw_mci *host)
2976 {
2977         unsigned long irqflags;
2978         u32 temp;
2979         int i;
2980         struct dw_mci_slot *slot;
2981
2982         /*
2983          * No need for CD if all slots have a non-error GPIO
2984          * as well as broken card detection is found.
2985          */
2986         for (i = 0; i < host->num_slots; i++) {
2987                 slot = host->slot[i];
2988                 if (slot->mmc->caps & MMC_CAP_NEEDS_POLL)
2989                         return;
2990
2991                 if (mmc_gpio_get_cd(slot->mmc) < 0)
2992                         break;
2993         }
2994         if (i == host->num_slots)
2995                 return;
2996
2997         spin_lock_irqsave(&host->irq_lock, irqflags);
2998         temp = mci_readl(host, INTMASK);
2999         temp  |= SDMMC_INT_CD;
3000         mci_writel(host, INTMASK, temp);
3001         spin_unlock_irqrestore(&host->irq_lock, irqflags);
3002 }
3003
3004 int dw_mci_probe(struct dw_mci *host)
3005 {
3006         const struct dw_mci_drv_data *drv_data = host->drv_data;
3007         int width, i, ret = 0;
3008         u32 fifo_size;
3009         int init_slots = 0;
3010
3011         if (!host->pdata) {
3012                 host->pdata = dw_mci_parse_dt(host);
3013                 if (PTR_ERR(host->pdata) == -EPROBE_DEFER) {
3014                         return -EPROBE_DEFER;
3015                 } else if (IS_ERR(host->pdata)) {
3016                         dev_err(host->dev, "platform data not available\n");
3017                         return -EINVAL;
3018                 }
3019         }
3020
3021         host->biu_clk = devm_clk_get(host->dev, "biu");
3022         if (IS_ERR(host->biu_clk)) {
3023                 dev_dbg(host->dev, "biu clock not available\n");
3024         } else {
3025                 ret = clk_prepare_enable(host->biu_clk);
3026                 if (ret) {
3027                         dev_err(host->dev, "failed to enable biu clock\n");
3028                         return ret;
3029                 }
3030         }
3031
3032         host->ciu_clk = devm_clk_get(host->dev, "ciu");
3033         if (IS_ERR(host->ciu_clk)) {
3034                 dev_dbg(host->dev, "ciu clock not available\n");
3035                 host->bus_hz = host->pdata->bus_hz;
3036         } else {
3037                 ret = clk_prepare_enable(host->ciu_clk);
3038                 if (ret) {
3039                         dev_err(host->dev, "failed to enable ciu clock\n");
3040                         goto err_clk_biu;
3041                 }
3042
3043                 if (host->pdata->bus_hz) {
3044                         ret = clk_set_rate(host->ciu_clk, host->pdata->bus_hz);
3045                         if (ret)
3046                                 dev_warn(host->dev,
3047                                          "Unable to set bus rate to %uHz\n",
3048                                          host->pdata->bus_hz);
3049                 }
3050                 host->bus_hz = clk_get_rate(host->ciu_clk);
3051         }
3052
3053         if (!host->bus_hz) {
3054                 dev_err(host->dev,
3055                         "Platform data must supply bus speed\n");
3056                 ret = -ENODEV;
3057                 goto err_clk_ciu;
3058         }
3059
3060         if (drv_data && drv_data->init) {
3061                 ret = drv_data->init(host);
3062                 if (ret) {
3063                         dev_err(host->dev,
3064                                 "implementation specific init failed\n");
3065                         goto err_clk_ciu;
3066                 }
3067         }
3068
3069         if (!IS_ERR(host->pdata->rstc)) {
3070                 reset_control_assert(host->pdata->rstc);
3071                 usleep_range(10, 50);
3072                 reset_control_deassert(host->pdata->rstc);
3073         }
3074
3075         setup_timer(&host->cmd11_timer,
3076                     dw_mci_cmd11_timer, (unsigned long)host);
3077
3078         setup_timer(&host->dto_timer,
3079                     dw_mci_dto_timer, (unsigned long)host);
3080
3081         spin_lock_init(&host->lock);
3082         spin_lock_init(&host->irq_lock);
3083         INIT_LIST_HEAD(&host->queue);
3084
3085         /*
3086          * Get the host data width - this assumes that HCON has been set with
3087          * the correct values.
3088          */
3089         i = SDMMC_GET_HDATA_WIDTH(mci_readl(host, HCON));
3090         if (!i) {
3091                 host->push_data = dw_mci_push_data16;
3092                 host->pull_data = dw_mci_pull_data16;
3093                 width = 16;
3094                 host->data_shift = 1;
3095         } else if (i == 2) {
3096                 host->push_data = dw_mci_push_data64;
3097                 host->pull_data = dw_mci_pull_data64;
3098                 width = 64;
3099                 host->data_shift = 3;
3100         } else {
3101                 /* Check for a reserved value, and warn if it is */
3102                 WARN((i != 1),
3103                      "HCON reports a reserved host data width!\n"
3104                      "Defaulting to 32-bit access.\n");
3105                 host->push_data = dw_mci_push_data32;
3106                 host->pull_data = dw_mci_pull_data32;
3107                 width = 32;
3108                 host->data_shift = 2;
3109         }
3110
3111         /* Reset all blocks */
3112         if (!dw_mci_ctrl_reset(host, SDMMC_CTRL_ALL_RESET_FLAGS)) {
3113                 ret = -ENODEV;
3114                 goto err_clk_ciu;
3115         }
3116
3117         host->dma_ops = host->pdata->dma_ops;
3118         dw_mci_init_dma(host);
3119
3120         /* Clear the interrupts for the host controller */
3121         mci_writel(host, RINTSTS, 0xFFFFFFFF);
3122         mci_writel(host, INTMASK, 0); /* disable all mmc interrupt first */
3123
3124         /* Put in max timeout */
3125         mci_writel(host, TMOUT, 0xFFFFFFFF);
3126
3127         /*
3128          * FIFO threshold settings  RxMark  = fifo_size / 2 - 1,
3129          *                          Tx Mark = fifo_size / 2 DMA Size = 8
3130          */
3131         if (!host->pdata->fifo_depth) {
3132                 /*
3133                  * Power-on value of RX_WMark is FIFO_DEPTH-1, but this may
3134                  * have been overwritten by the bootloader, just like we're
3135                  * about to do, so if you know the value for your hardware, you
3136                  * should put it in the platform data.
3137                  */
3138                 fifo_size = mci_readl(host, FIFOTH);
3139                 fifo_size = 1 + ((fifo_size >> 16) & 0xfff);
3140         } else {
3141                 fifo_size = host->pdata->fifo_depth;
3142         }
3143         host->fifo_depth = fifo_size;
3144         host->fifoth_val =
3145                 SDMMC_SET_FIFOTH(0x2, fifo_size / 2 - 1, fifo_size / 2);
3146         mci_writel(host, FIFOTH, host->fifoth_val);
3147
3148         /* disable clock to CIU */
3149         mci_writel(host, CLKENA, 0);
3150         mci_writel(host, CLKSRC, 0);
3151
3152         /*
3153          * In 2.40a spec, Data offset is changed.
3154          * Need to check the version-id and set data-offset for DATA register.
3155          */
3156         host->verid = SDMMC_GET_VERID(mci_readl(host, VERID));
3157         dev_info(host->dev, "Version ID is %04x\n", host->verid);
3158
3159         if (host->verid < DW_MMC_240A)
3160                 host->fifo_reg = host->regs + DATA_OFFSET;
3161         else
3162                 host->fifo_reg = host->regs + DATA_240A_OFFSET;
3163
3164         tasklet_init(&host->tasklet, dw_mci_tasklet_func, (unsigned long)host);
3165         ret = devm_request_irq(host->dev, host->irq, dw_mci_interrupt,
3166                                host->irq_flags, "dw-mci", host);
3167         if (ret)
3168                 goto err_dmaunmap;
3169
3170         if (host->pdata->num_slots)
3171                 host->num_slots = host->pdata->num_slots;
3172         else
3173                 host->num_slots = 1;
3174
3175         if (host->num_slots < 1 ||
3176             host->num_slots > SDMMC_GET_SLOT_NUM(mci_readl(host, HCON))) {
3177                 dev_err(host->dev,
3178                         "Platform data must supply correct num_slots.\n");
3179                 ret = -ENODEV;
3180                 goto err_clk_ciu;
3181         }
3182
3183         /*
3184          * Enable interrupts for command done, data over, data empty,
3185          * receive ready and error such as transmit, receive timeout, crc error
3186          */
3187         mci_writel(host, INTMASK, SDMMC_INT_CMD_DONE | SDMMC_INT_DATA_OVER |
3188                    SDMMC_INT_TXDR | SDMMC_INT_RXDR |
3189                    DW_MCI_ERROR_FLAGS);
3190         /* Enable mci interrupt */
3191         mci_writel(host, CTRL, SDMMC_CTRL_INT_ENABLE);
3192
3193         dev_info(host->dev,
3194                  "DW MMC controller at irq %d,%d bit host data width,%u deep fifo\n",
3195                  host->irq, width, fifo_size);
3196
3197         /* We need at least one slot to succeed */
3198         for (i = 0; i < host->num_slots; i++) {
3199                 ret = dw_mci_init_slot(host, i);
3200                 if (ret)
3201                         dev_dbg(host->dev, "slot %d init failed\n", i);
3202                 else
3203                         init_slots++;
3204         }
3205
3206         if (init_slots) {
3207                 dev_info(host->dev, "%d slots initialized\n", init_slots);
3208         } else {
3209                 dev_dbg(host->dev,
3210                         "attempted to initialize %d slots, but failed on all\n",
3211                         host->num_slots);
3212                 goto err_dmaunmap;
3213         }
3214
3215         /* Now that slots are all setup, we can enable card detect */
3216         dw_mci_enable_cd(host);
3217
3218         return 0;
3219
3220 err_dmaunmap:
3221         if (host->use_dma && host->dma_ops->exit)
3222                 host->dma_ops->exit(host);
3223
3224         if (!IS_ERR(host->pdata->rstc))
3225                 reset_control_assert(host->pdata->rstc);
3226
3227 err_clk_ciu:
3228         clk_disable_unprepare(host->ciu_clk);
3229
3230 err_clk_biu:
3231         clk_disable_unprepare(host->biu_clk);
3232
3233         return ret;
3234 }
3235 EXPORT_SYMBOL(dw_mci_probe);
3236
3237 void dw_mci_remove(struct dw_mci *host)
3238 {
3239         int i;
3240
3241         for (i = 0; i < host->num_slots; i++) {
3242                 dev_dbg(host->dev, "remove slot %d\n", i);
3243                 if (host->slot[i])
3244                         dw_mci_cleanup_slot(host->slot[i], i);
3245         }
3246
3247         mci_writel(host, RINTSTS, 0xFFFFFFFF);
3248         mci_writel(host, INTMASK, 0); /* disable all mmc interrupt first */
3249
3250         /* disable clock to CIU */
3251         mci_writel(host, CLKENA, 0);
3252         mci_writel(host, CLKSRC, 0);
3253
3254         if (host->use_dma && host->dma_ops->exit)
3255                 host->dma_ops->exit(host);
3256
3257         if (!IS_ERR(host->pdata->rstc))
3258                 reset_control_assert(host->pdata->rstc);
3259
3260         clk_disable_unprepare(host->ciu_clk);
3261         clk_disable_unprepare(host->biu_clk);
3262 }
3263 EXPORT_SYMBOL(dw_mci_remove);
3264
3265
3266
3267 #ifdef CONFIG_PM
3268 int dw_mci_runtime_suspend(struct device *dev)
3269 {
3270         struct dw_mci *host = dev_get_drvdata(dev);
3271
3272         if (host->use_dma && host->dma_ops->exit)
3273                 host->dma_ops->exit(host);
3274
3275         clk_disable_unprepare(host->ciu_clk);
3276
3277         if (host->cur_slot &&
3278             (mmc_can_gpio_cd(host->cur_slot->mmc) ||
3279              !mmc_card_is_removable(host->cur_slot->mmc)))
3280                 clk_disable_unprepare(host->biu_clk);
3281
3282         return 0;
3283 }
3284 EXPORT_SYMBOL(dw_mci_runtime_suspend);
3285
3286 int dw_mci_runtime_resume(struct device *dev)
3287 {
3288         int i, ret = 0;
3289         struct dw_mci *host = dev_get_drvdata(dev);
3290
3291         if (host->cur_slot &&
3292             (mmc_can_gpio_cd(host->cur_slot->mmc) ||
3293              !mmc_card_is_removable(host->cur_slot->mmc))) {
3294                 ret = clk_prepare_enable(host->biu_clk);
3295                 if (ret)
3296                         return ret;
3297         }
3298
3299         ret = clk_prepare_enable(host->ciu_clk);
3300         if (ret)
3301                 return ret;
3302
3303         if (host->use_dma && host->dma_ops->init)
3304                 host->dma_ops->init(host);
3305
3306         /*
3307          * Restore the initial value at FIFOTH register
3308          * And Invalidate the prev_blksz with zero
3309          */
3310          mci_writel(host, FIFOTH, host->fifoth_val);
3311          host->prev_blksz = 0;
3312
3313         /* Put in max timeout */
3314         mci_writel(host, TMOUT, 0xFFFFFFFF);
3315
3316         mci_writel(host, RINTSTS, 0xFFFFFFFF);
3317         mci_writel(host, INTMASK, SDMMC_INT_CMD_DONE | SDMMC_INT_DATA_OVER |
3318                    SDMMC_INT_TXDR | SDMMC_INT_RXDR |
3319                    DW_MCI_ERROR_FLAGS);
3320         mci_writel(host, CTRL, SDMMC_CTRL_INT_ENABLE);
3321
3322         for (i = 0; i < host->num_slots; i++) {
3323                 struct dw_mci_slot *slot = host->slot[i];
3324
3325                 if (!slot)
3326                         continue;
3327                 if (slot->mmc->pm_flags & MMC_PM_KEEP_POWER) {
3328                         dw_mci_set_ios(slot->mmc, &slot->mmc->ios);
3329                         dw_mci_setup_bus(slot, true);
3330                 }
3331         }
3332
3333         /* Now that slots are all setup, we can enable card detect */
3334         dw_mci_enable_cd(host);
3335
3336         return ret;
3337 }
3338 EXPORT_SYMBOL(dw_mci_runtime_resume);
3339 #endif /* CONFIG_PM */
3340
3341 static int __init dw_mci_init(void)
3342 {
3343         pr_info("Synopsys Designware Multimedia Card Interface Driver\n");
3344         return 0;
3345 }
3346
3347 static void __exit dw_mci_exit(void)
3348 {
3349 }
3350
3351 module_init(dw_mci_init);
3352 module_exit(dw_mci_exit);
3353
3354 MODULE_DESCRIPTION("DW Multimedia Card Interface driver");
3355 MODULE_AUTHOR("NXP Semiconductor VietNam");
3356 MODULE_AUTHOR("Imagination Technologies Ltd");
3357 MODULE_LICENSE("GPL v2");