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