GNU Linux-libre 5.10.217-gnu1
[releases.git] / drivers / mmc / host / tmio_mmc_core.c
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Driver for the MMC / SD / SDIO IP found in:
4  *
5  * TC6393XB, TC6391XB, TC6387XB, T7L66XB, ASIC3, SH-Mobile SoCs
6  *
7  * Copyright (C) 2015-19 Renesas Electronics Corporation
8  * Copyright (C) 2016-19 Sang Engineering, Wolfram Sang
9  * Copyright (C) 2017 Horms Solutions, Simon Horman
10  * Copyright (C) 2011 Guennadi Liakhovetski
11  * Copyright (C) 2007 Ian Molton
12  * Copyright (C) 2004 Ian Molton
13  *
14  * This driver draws mainly on scattered spec sheets, Reverse engineering
15  * of the toshiba e800  SD driver and some parts of the 2.4 ASIC3 driver (4 bit
16  * support). (Further 4 bit support from a later datasheet).
17  *
18  * TODO:
19  *   Investigate using a workqueue for PIO transfers
20  *   Eliminate FIXMEs
21  *   Better Power management
22  *   Handle MMC errors better
23  *   double buffer support
24  *
25  */
26
27 #include <linux/delay.h>
28 #include <linux/device.h>
29 #include <linux/dma-mapping.h>
30 #include <linux/highmem.h>
31 #include <linux/interrupt.h>
32 #include <linux/io.h>
33 #include <linux/irq.h>
34 #include <linux/mfd/tmio.h>
35 #include <linux/mmc/card.h>
36 #include <linux/mmc/host.h>
37 #include <linux/mmc/mmc.h>
38 #include <linux/mmc/slot-gpio.h>
39 #include <linux/module.h>
40 #include <linux/pagemap.h>
41 #include <linux/platform_device.h>
42 #include <linux/pm_qos.h>
43 #include <linux/pm_runtime.h>
44 #include <linux/regulator/consumer.h>
45 #include <linux/mmc/sdio.h>
46 #include <linux/scatterlist.h>
47 #include <linux/sizes.h>
48 #include <linux/spinlock.h>
49 #include <linux/workqueue.h>
50
51 #include "tmio_mmc.h"
52
53 static inline void tmio_mmc_start_dma(struct tmio_mmc_host *host,
54                                       struct mmc_data *data)
55 {
56         if (host->dma_ops)
57                 host->dma_ops->start(host, data);
58 }
59
60 static inline void tmio_mmc_end_dma(struct tmio_mmc_host *host)
61 {
62         if (host->dma_ops && host->dma_ops->end)
63                 host->dma_ops->end(host);
64 }
65
66 static inline void tmio_mmc_enable_dma(struct tmio_mmc_host *host, bool enable)
67 {
68         if (host->dma_ops)
69                 host->dma_ops->enable(host, enable);
70 }
71
72 static inline void tmio_mmc_request_dma(struct tmio_mmc_host *host,
73                                         struct tmio_mmc_data *pdata)
74 {
75         if (host->dma_ops) {
76                 host->dma_ops->request(host, pdata);
77         } else {
78                 host->chan_tx = NULL;
79                 host->chan_rx = NULL;
80         }
81 }
82
83 static inline void tmio_mmc_release_dma(struct tmio_mmc_host *host)
84 {
85         if (host->dma_ops)
86                 host->dma_ops->release(host);
87 }
88
89 static inline void tmio_mmc_abort_dma(struct tmio_mmc_host *host)
90 {
91         if (host->dma_ops)
92                 host->dma_ops->abort(host);
93 }
94
95 static inline void tmio_mmc_dataend_dma(struct tmio_mmc_host *host)
96 {
97         if (host->dma_ops)
98                 host->dma_ops->dataend(host);
99 }
100
101 void tmio_mmc_enable_mmc_irqs(struct tmio_mmc_host *host, u32 i)
102 {
103         host->sdcard_irq_mask &= ~(i & TMIO_MASK_IRQ);
104         sd_ctrl_write32_as_16_and_16(host, CTL_IRQ_MASK, host->sdcard_irq_mask);
105 }
106 EXPORT_SYMBOL_GPL(tmio_mmc_enable_mmc_irqs);
107
108 void tmio_mmc_disable_mmc_irqs(struct tmio_mmc_host *host, u32 i)
109 {
110         host->sdcard_irq_mask |= (i & TMIO_MASK_IRQ);
111         sd_ctrl_write32_as_16_and_16(host, CTL_IRQ_MASK, host->sdcard_irq_mask);
112 }
113 EXPORT_SYMBOL_GPL(tmio_mmc_disable_mmc_irqs);
114
115 static void tmio_mmc_ack_mmc_irqs(struct tmio_mmc_host *host, u32 i)
116 {
117         sd_ctrl_write32_as_16_and_16(host, CTL_STATUS, ~i);
118 }
119
120 static void tmio_mmc_init_sg(struct tmio_mmc_host *host, struct mmc_data *data)
121 {
122         host->sg_len = data->sg_len;
123         host->sg_ptr = data->sg;
124         host->sg_orig = data->sg;
125         host->sg_off = 0;
126 }
127
128 static int tmio_mmc_next_sg(struct tmio_mmc_host *host)
129 {
130         host->sg_ptr = sg_next(host->sg_ptr);
131         host->sg_off = 0;
132         return --host->sg_len;
133 }
134
135 #define CMDREQ_TIMEOUT  5000
136
137 static void tmio_mmc_enable_sdio_irq(struct mmc_host *mmc, int enable)
138 {
139         struct tmio_mmc_host *host = mmc_priv(mmc);
140
141         if (enable && !host->sdio_irq_enabled) {
142                 u16 sdio_status;
143
144                 /* Keep device active while SDIO irq is enabled */
145                 pm_runtime_get_sync(mmc_dev(mmc));
146
147                 host->sdio_irq_enabled = true;
148                 host->sdio_irq_mask = TMIO_SDIO_MASK_ALL & ~TMIO_SDIO_STAT_IOIRQ;
149
150                 /* Clear obsolete interrupts before enabling */
151                 sdio_status = sd_ctrl_read16(host, CTL_SDIO_STATUS) & ~TMIO_SDIO_MASK_ALL;
152                 if (host->pdata->flags & TMIO_MMC_SDIO_STATUS_SETBITS)
153                         sdio_status |= TMIO_SDIO_SETBITS_MASK;
154                 sd_ctrl_write16(host, CTL_SDIO_STATUS, sdio_status);
155
156                 sd_ctrl_write16(host, CTL_SDIO_IRQ_MASK, host->sdio_irq_mask);
157         } else if (!enable && host->sdio_irq_enabled) {
158                 host->sdio_irq_mask = TMIO_SDIO_MASK_ALL;
159                 sd_ctrl_write16(host, CTL_SDIO_IRQ_MASK, host->sdio_irq_mask);
160
161                 host->sdio_irq_enabled = false;
162                 pm_runtime_mark_last_busy(mmc_dev(mmc));
163                 pm_runtime_put_autosuspend(mmc_dev(mmc));
164         }
165 }
166
167 static void tmio_mmc_reset(struct tmio_mmc_host *host)
168 {
169         /* FIXME - should we set stop clock reg here */
170         sd_ctrl_write16(host, CTL_RESET_SD, 0x0000);
171         usleep_range(10000, 11000);
172         sd_ctrl_write16(host, CTL_RESET_SD, 0x0001);
173         usleep_range(10000, 11000);
174
175         if (host->reset)
176                 host->reset(host);
177
178         tmio_mmc_abort_dma(host);
179
180         if (host->pdata->flags & TMIO_MMC_SDIO_IRQ) {
181                 sd_ctrl_write16(host, CTL_SDIO_IRQ_MASK, host->sdio_irq_mask);
182                 sd_ctrl_write16(host, CTL_TRANSACTION_CTL, 0x0001);
183         }
184 }
185
186 static void tmio_mmc_reset_work(struct work_struct *work)
187 {
188         struct tmio_mmc_host *host = container_of(work, struct tmio_mmc_host,
189                                                   delayed_reset_work.work);
190         struct mmc_request *mrq;
191         unsigned long flags;
192
193         spin_lock_irqsave(&host->lock, flags);
194         mrq = host->mrq;
195
196         /*
197          * is request already finished? Since we use a non-blocking
198          * cancel_delayed_work(), it can happen, that a .set_ios() call preempts
199          * us, so, have to check for IS_ERR(host->mrq)
200          */
201         if (IS_ERR_OR_NULL(mrq) ||
202             time_is_after_jiffies(host->last_req_ts +
203                                   msecs_to_jiffies(CMDREQ_TIMEOUT))) {
204                 spin_unlock_irqrestore(&host->lock, flags);
205                 return;
206         }
207
208         dev_warn(&host->pdev->dev,
209                  "timeout waiting for hardware interrupt (CMD%u)\n",
210                  mrq->cmd->opcode);
211
212         if (host->data)
213                 host->data->error = -ETIMEDOUT;
214         else if (host->cmd)
215                 host->cmd->error = -ETIMEDOUT;
216         else
217                 mrq->cmd->error = -ETIMEDOUT;
218
219         /* No new calls yet, but disallow concurrent tmio_mmc_done_work() */
220         host->mrq = ERR_PTR(-EBUSY);
221         host->cmd = NULL;
222         host->data = NULL;
223
224         spin_unlock_irqrestore(&host->lock, flags);
225
226         tmio_mmc_reset(host);
227
228         /* Ready for new calls */
229         host->mrq = NULL;
230         mmc_request_done(host->mmc, mrq);
231 }
232
233 /* These are the bitmasks the tmio chip requires to implement the MMC response
234  * types. Note that R1 and R6 are the same in this scheme. */
235 #define APP_CMD        0x0040
236 #define RESP_NONE      0x0300
237 #define RESP_R1        0x0400
238 #define RESP_R1B       0x0500
239 #define RESP_R2        0x0600
240 #define RESP_R3        0x0700
241 #define DATA_PRESENT   0x0800
242 #define TRANSFER_READ  0x1000
243 #define TRANSFER_MULTI 0x2000
244 #define SECURITY_CMD   0x4000
245 #define NO_CMD12_ISSUE 0x4000 /* TMIO_MMC_HAVE_CMD12_CTRL */
246
247 static int tmio_mmc_start_command(struct tmio_mmc_host *host,
248                                   struct mmc_command *cmd)
249 {
250         struct mmc_data *data = host->data;
251         int c = cmd->opcode;
252
253         switch (mmc_resp_type(cmd)) {
254         case MMC_RSP_NONE: c |= RESP_NONE; break;
255         case MMC_RSP_R1:
256         case MMC_RSP_R1_NO_CRC:
257                            c |= RESP_R1;   break;
258         case MMC_RSP_R1B:  c |= RESP_R1B;  break;
259         case MMC_RSP_R2:   c |= RESP_R2;   break;
260         case MMC_RSP_R3:   c |= RESP_R3;   break;
261         default:
262                 pr_debug("Unknown response type %d\n", mmc_resp_type(cmd));
263                 return -EINVAL;
264         }
265
266         host->cmd = cmd;
267
268 /* FIXME - this seems to be ok commented out but the spec suggest this bit
269  *         should be set when issuing app commands.
270  *      if(cmd->flags & MMC_FLAG_ACMD)
271  *              c |= APP_CMD;
272  */
273         if (data) {
274                 c |= DATA_PRESENT;
275                 if (data->blocks > 1) {
276                         sd_ctrl_write16(host, CTL_STOP_INTERNAL_ACTION, TMIO_STOP_SEC);
277                         c |= TRANSFER_MULTI;
278
279                         /*
280                          * Disable auto CMD12 at IO_RW_EXTENDED and
281                          * SET_BLOCK_COUNT when doing multiple block transfer
282                          */
283                         if ((host->pdata->flags & TMIO_MMC_HAVE_CMD12_CTRL) &&
284                             (cmd->opcode == SD_IO_RW_EXTENDED || host->mrq->sbc))
285                                 c |= NO_CMD12_ISSUE;
286                 }
287                 if (data->flags & MMC_DATA_READ)
288                         c |= TRANSFER_READ;
289         }
290
291         tmio_mmc_enable_mmc_irqs(host, TMIO_MASK_CMD);
292
293         /* Fire off the command */
294         sd_ctrl_write32_as_16_and_16(host, CTL_ARG_REG, cmd->arg);
295         sd_ctrl_write16(host, CTL_SD_CMD, c);
296
297         return 0;
298 }
299
300 static void tmio_mmc_transfer_data(struct tmio_mmc_host *host,
301                                    unsigned short *buf,
302                                    unsigned int count)
303 {
304         int is_read = host->data->flags & MMC_DATA_READ;
305         u8  *buf8;
306
307         /*
308          * Transfer the data
309          */
310         if (host->pdata->flags & TMIO_MMC_32BIT_DATA_PORT) {
311                 u32 data = 0;
312                 u32 *buf32 = (u32 *)buf;
313
314                 if (is_read)
315                         sd_ctrl_read32_rep(host, CTL_SD_DATA_PORT, buf32,
316                                            count >> 2);
317                 else
318                         sd_ctrl_write32_rep(host, CTL_SD_DATA_PORT, buf32,
319                                             count >> 2);
320
321                 /* if count was multiple of 4 */
322                 if (!(count & 0x3))
323                         return;
324
325                 buf32 += count >> 2;
326                 count %= 4;
327
328                 if (is_read) {
329                         sd_ctrl_read32_rep(host, CTL_SD_DATA_PORT, &data, 1);
330                         memcpy(buf32, &data, count);
331                 } else {
332                         memcpy(&data, buf32, count);
333                         sd_ctrl_write32_rep(host, CTL_SD_DATA_PORT, &data, 1);
334                 }
335
336                 return;
337         }
338
339         if (is_read)
340                 sd_ctrl_read16_rep(host, CTL_SD_DATA_PORT, buf, count >> 1);
341         else
342                 sd_ctrl_write16_rep(host, CTL_SD_DATA_PORT, buf, count >> 1);
343
344         /* if count was even number */
345         if (!(count & 0x1))
346                 return;
347
348         /* if count was odd number */
349         buf8 = (u8 *)(buf + (count >> 1));
350
351         /*
352          * FIXME
353          *
354          * driver and this function are assuming that
355          * it is used as little endian
356          */
357         if (is_read)
358                 *buf8 = sd_ctrl_read16(host, CTL_SD_DATA_PORT) & 0xff;
359         else
360                 sd_ctrl_write16(host, CTL_SD_DATA_PORT, *buf8);
361 }
362
363 /*
364  * This chip always returns (at least?) as much data as you ask for.
365  * I'm unsure what happens if you ask for less than a block. This should be
366  * looked into to ensure that a funny length read doesn't hose the controller.
367  */
368 static void tmio_mmc_pio_irq(struct tmio_mmc_host *host)
369 {
370         struct mmc_data *data = host->data;
371         void *sg_virt;
372         unsigned short *buf;
373         unsigned int count;
374         unsigned long flags;
375
376         if (host->dma_on) {
377                 pr_err("PIO IRQ in DMA mode!\n");
378                 return;
379         } else if (!data) {
380                 pr_debug("Spurious PIO IRQ\n");
381                 return;
382         }
383
384         sg_virt = tmio_mmc_kmap_atomic(host->sg_ptr, &flags);
385         buf = (unsigned short *)(sg_virt + host->sg_off);
386
387         count = host->sg_ptr->length - host->sg_off;
388         if (count > data->blksz)
389                 count = data->blksz;
390
391         pr_debug("count: %08x offset: %08x flags %08x\n",
392                  count, host->sg_off, data->flags);
393
394         /* Transfer the data */
395         tmio_mmc_transfer_data(host, buf, count);
396
397         host->sg_off += count;
398
399         tmio_mmc_kunmap_atomic(host->sg_ptr, &flags, sg_virt);
400
401         if (host->sg_off == host->sg_ptr->length)
402                 tmio_mmc_next_sg(host);
403 }
404
405 static void tmio_mmc_check_bounce_buffer(struct tmio_mmc_host *host)
406 {
407         if (host->sg_ptr == &host->bounce_sg) {
408                 unsigned long flags;
409                 void *sg_vaddr = tmio_mmc_kmap_atomic(host->sg_orig, &flags);
410
411                 memcpy(sg_vaddr, host->bounce_buf, host->bounce_sg.length);
412                 tmio_mmc_kunmap_atomic(host->sg_orig, &flags, sg_vaddr);
413         }
414 }
415
416 /* needs to be called with host->lock held */
417 void tmio_mmc_do_data_irq(struct tmio_mmc_host *host)
418 {
419         struct mmc_data *data = host->data;
420         struct mmc_command *stop;
421
422         host->data = NULL;
423
424         if (!data) {
425                 dev_warn(&host->pdev->dev, "Spurious data end IRQ\n");
426                 return;
427         }
428         stop = data->stop;
429
430         /* FIXME - return correct transfer count on errors */
431         if (!data->error)
432                 data->bytes_xfered = data->blocks * data->blksz;
433         else
434                 data->bytes_xfered = 0;
435
436         pr_debug("Completed data request\n");
437
438         /*
439          * FIXME: other drivers allow an optional stop command of any given type
440          *        which we dont do, as the chip can auto generate them.
441          *        Perhaps we can be smarter about when to use auto CMD12 and
442          *        only issue the auto request when we know this is the desired
443          *        stop command, allowing fallback to the stop command the
444          *        upper layers expect. For now, we do what works.
445          */
446
447         if (data->flags & MMC_DATA_READ) {
448                 if (host->dma_on)
449                         tmio_mmc_check_bounce_buffer(host);
450                 dev_dbg(&host->pdev->dev, "Complete Rx request %p\n",
451                         host->mrq);
452         } else {
453                 dev_dbg(&host->pdev->dev, "Complete Tx request %p\n",
454                         host->mrq);
455         }
456
457         if (stop && !host->mrq->sbc) {
458                 if (stop->opcode != MMC_STOP_TRANSMISSION || stop->arg)
459                         dev_err(&host->pdev->dev, "unsupported stop: CMD%u,0x%x. We did CMD12,0\n",
460                                 stop->opcode, stop->arg);
461
462                 /* fill in response from auto CMD12 */
463                 stop->resp[0] = sd_ctrl_read16_and_16_as_32(host, CTL_RESPONSE);
464
465                 sd_ctrl_write16(host, CTL_STOP_INTERNAL_ACTION, 0);
466         }
467
468         schedule_work(&host->done);
469 }
470 EXPORT_SYMBOL_GPL(tmio_mmc_do_data_irq);
471
472 static void tmio_mmc_data_irq(struct tmio_mmc_host *host, unsigned int stat)
473 {
474         struct mmc_data *data;
475
476         spin_lock(&host->lock);
477         data = host->data;
478
479         if (!data)
480                 goto out;
481
482         if (stat & TMIO_STAT_CRCFAIL || stat & TMIO_STAT_STOPBIT_ERR ||
483             stat & TMIO_STAT_TXUNDERRUN)
484                 data->error = -EILSEQ;
485         if (host->dma_on && (data->flags & MMC_DATA_WRITE)) {
486                 u32 status = sd_ctrl_read16_and_16_as_32(host, CTL_STATUS);
487                 bool done = false;
488
489                 /*
490                  * Has all data been written out yet? Testing on SuperH showed,
491                  * that in most cases the first interrupt comes already with the
492                  * BUSY status bit clear, but on some operations, like mount or
493                  * in the beginning of a write / sync / umount, there is one
494                  * DATAEND interrupt with the BUSY bit set, in this cases
495                  * waiting for one more interrupt fixes the problem.
496                  */
497                 if (host->pdata->flags & TMIO_MMC_HAS_IDLE_WAIT) {
498                         if (status & TMIO_STAT_SCLKDIVEN)
499                                 done = true;
500                 } else {
501                         if (!(status & TMIO_STAT_CMD_BUSY))
502                                 done = true;
503                 }
504
505                 if (done) {
506                         tmio_mmc_disable_mmc_irqs(host, TMIO_STAT_DATAEND);
507                         tmio_mmc_dataend_dma(host);
508                 }
509         } else if (host->dma_on && (data->flags & MMC_DATA_READ)) {
510                 tmio_mmc_disable_mmc_irqs(host, TMIO_STAT_DATAEND);
511                 tmio_mmc_dataend_dma(host);
512         } else {
513                 tmio_mmc_do_data_irq(host);
514                 tmio_mmc_disable_mmc_irqs(host, TMIO_MASK_READOP | TMIO_MASK_WRITEOP);
515         }
516 out:
517         spin_unlock(&host->lock);
518 }
519
520 static void tmio_mmc_cmd_irq(struct tmio_mmc_host *host, unsigned int stat)
521 {
522         struct mmc_command *cmd = host->cmd;
523         int i, addr;
524
525         spin_lock(&host->lock);
526
527         if (!host->cmd) {
528                 pr_debug("Spurious CMD irq\n");
529                 goto out;
530         }
531
532         /* This controller is sicker than the PXA one. Not only do we need to
533          * drop the top 8 bits of the first response word, we also need to
534          * modify the order of the response for short response command types.
535          */
536
537         for (i = 3, addr = CTL_RESPONSE ; i >= 0 ; i--, addr += 4)
538                 cmd->resp[i] = sd_ctrl_read16_and_16_as_32(host, addr);
539
540         if (cmd->flags &  MMC_RSP_136) {
541                 cmd->resp[0] = (cmd->resp[0] << 8) | (cmd->resp[1] >> 24);
542                 cmd->resp[1] = (cmd->resp[1] << 8) | (cmd->resp[2] >> 24);
543                 cmd->resp[2] = (cmd->resp[2] << 8) | (cmd->resp[3] >> 24);
544                 cmd->resp[3] <<= 8;
545         } else if (cmd->flags & MMC_RSP_R3) {
546                 cmd->resp[0] = cmd->resp[3];
547         }
548
549         if (stat & TMIO_STAT_CMDTIMEOUT)
550                 cmd->error = -ETIMEDOUT;
551         else if ((stat & TMIO_STAT_CRCFAIL && cmd->flags & MMC_RSP_CRC) ||
552                  stat & TMIO_STAT_STOPBIT_ERR ||
553                  stat & TMIO_STAT_CMD_IDX_ERR)
554                 cmd->error = -EILSEQ;
555
556         /* If there is data to handle we enable data IRQs here, and
557          * we will ultimatley finish the request in the data_end handler.
558          * If theres no data or we encountered an error, finish now.
559          */
560         if (host->data && (!cmd->error || cmd->error == -EILSEQ)) {
561                 if (host->data->flags & MMC_DATA_READ) {
562                         if (!host->dma_on) {
563                                 tmio_mmc_enable_mmc_irqs(host, TMIO_MASK_READOP);
564                         } else {
565                                 tmio_mmc_disable_mmc_irqs(host,
566                                                           TMIO_MASK_READOP);
567                                 tasklet_schedule(&host->dma_issue);
568                         }
569                 } else {
570                         if (!host->dma_on) {
571                                 tmio_mmc_enable_mmc_irqs(host, TMIO_MASK_WRITEOP);
572                         } else {
573                                 tmio_mmc_disable_mmc_irqs(host,
574                                                           TMIO_MASK_WRITEOP);
575                                 tasklet_schedule(&host->dma_issue);
576                         }
577                 }
578         } else {
579                 schedule_work(&host->done);
580         }
581
582 out:
583         spin_unlock(&host->lock);
584 }
585
586 static bool __tmio_mmc_card_detect_irq(struct tmio_mmc_host *host,
587                                        int ireg, int status)
588 {
589         struct mmc_host *mmc = host->mmc;
590
591         /* Card insert / remove attempts */
592         if (ireg & (TMIO_STAT_CARD_INSERT | TMIO_STAT_CARD_REMOVE)) {
593                 tmio_mmc_ack_mmc_irqs(host, TMIO_STAT_CARD_INSERT |
594                         TMIO_STAT_CARD_REMOVE);
595                 if ((((ireg & TMIO_STAT_CARD_REMOVE) && mmc->card) ||
596                      ((ireg & TMIO_STAT_CARD_INSERT) && !mmc->card)) &&
597                     !work_pending(&mmc->detect.work))
598                         mmc_detect_change(host->mmc, msecs_to_jiffies(100));
599                 return true;
600         }
601
602         return false;
603 }
604
605 static bool __tmio_mmc_sdcard_irq(struct tmio_mmc_host *host, int ireg,
606                                   int status)
607 {
608         /* Command completion */
609         if (ireg & (TMIO_STAT_CMDRESPEND | TMIO_STAT_CMDTIMEOUT)) {
610                 tmio_mmc_ack_mmc_irqs(host, TMIO_STAT_CMDRESPEND |
611                                       TMIO_STAT_CMDTIMEOUT);
612                 tmio_mmc_cmd_irq(host, status);
613                 return true;
614         }
615
616         /* Data transfer */
617         if (ireg & (TMIO_STAT_RXRDY | TMIO_STAT_TXRQ)) {
618                 tmio_mmc_ack_mmc_irqs(host, TMIO_STAT_RXRDY | TMIO_STAT_TXRQ);
619                 tmio_mmc_pio_irq(host);
620                 return true;
621         }
622
623         /* Data transfer completion */
624         if (ireg & TMIO_STAT_DATAEND) {
625                 tmio_mmc_ack_mmc_irqs(host, TMIO_STAT_DATAEND);
626                 tmio_mmc_data_irq(host, status);
627                 return true;
628         }
629
630         return false;
631 }
632
633 static bool __tmio_mmc_sdio_irq(struct tmio_mmc_host *host)
634 {
635         struct mmc_host *mmc = host->mmc;
636         struct tmio_mmc_data *pdata = host->pdata;
637         unsigned int ireg, status;
638         unsigned int sdio_status;
639
640         if (!(pdata->flags & TMIO_MMC_SDIO_IRQ))
641                 return false;
642
643         status = sd_ctrl_read16(host, CTL_SDIO_STATUS);
644         ireg = status & TMIO_SDIO_MASK_ALL & ~host->sdio_irq_mask;
645
646         sdio_status = status & ~TMIO_SDIO_MASK_ALL;
647         if (pdata->flags & TMIO_MMC_SDIO_STATUS_SETBITS)
648                 sdio_status |= TMIO_SDIO_SETBITS_MASK;
649
650         sd_ctrl_write16(host, CTL_SDIO_STATUS, sdio_status);
651
652         if (mmc->caps & MMC_CAP_SDIO_IRQ && ireg & TMIO_SDIO_STAT_IOIRQ)
653                 mmc_signal_sdio_irq(mmc);
654
655         return ireg;
656 }
657
658 irqreturn_t tmio_mmc_irq(int irq, void *devid)
659 {
660         struct tmio_mmc_host *host = devid;
661         unsigned int ireg, status;
662
663         status = sd_ctrl_read16_and_16_as_32(host, CTL_STATUS);
664         ireg = status & TMIO_MASK_IRQ & ~host->sdcard_irq_mask;
665
666         /* Clear the status except the interrupt status */
667         sd_ctrl_write32_as_16_and_16(host, CTL_STATUS, TMIO_MASK_IRQ);
668
669         if (__tmio_mmc_card_detect_irq(host, ireg, status))
670                 return IRQ_HANDLED;
671         if (__tmio_mmc_sdcard_irq(host, ireg, status))
672                 return IRQ_HANDLED;
673
674         if (__tmio_mmc_sdio_irq(host))
675                 return IRQ_HANDLED;
676
677         return IRQ_NONE;
678 }
679 EXPORT_SYMBOL_GPL(tmio_mmc_irq);
680
681 static int tmio_mmc_start_data(struct tmio_mmc_host *host,
682                                struct mmc_data *data)
683 {
684         struct tmio_mmc_data *pdata = host->pdata;
685
686         pr_debug("setup data transfer: blocksize %08x  nr_blocks %d\n",
687                  data->blksz, data->blocks);
688
689         /* Some hardware cannot perform 2 byte requests in 4/8 bit mode */
690         if (host->mmc->ios.bus_width == MMC_BUS_WIDTH_4 ||
691             host->mmc->ios.bus_width == MMC_BUS_WIDTH_8) {
692                 int blksz_2bytes = pdata->flags & TMIO_MMC_BLKSZ_2BYTES;
693
694                 if (data->blksz < 2 || (data->blksz < 4 && !blksz_2bytes)) {
695                         pr_err("%s: %d byte block unsupported in 4/8 bit mode\n",
696                                mmc_hostname(host->mmc), data->blksz);
697                         return -EINVAL;
698                 }
699         }
700
701         tmio_mmc_init_sg(host, data);
702         host->data = data;
703         host->dma_on = false;
704
705         /* Set transfer length / blocksize */
706         sd_ctrl_write16(host, CTL_SD_XFER_LEN, data->blksz);
707         if (host->mmc->max_blk_count >= SZ_64K)
708                 sd_ctrl_write32(host, CTL_XFER_BLK_COUNT, data->blocks);
709         else
710                 sd_ctrl_write16(host, CTL_XFER_BLK_COUNT, data->blocks);
711
712         tmio_mmc_start_dma(host, data);
713
714         return 0;
715 }
716
717 static void tmio_process_mrq(struct tmio_mmc_host *host,
718                              struct mmc_request *mrq)
719 {
720         struct mmc_command *cmd;
721         int ret;
722
723         if (mrq->sbc && host->cmd != mrq->sbc) {
724                 cmd = mrq->sbc;
725         } else {
726                 cmd = mrq->cmd;
727                 if (mrq->data) {
728                         ret = tmio_mmc_start_data(host, mrq->data);
729                         if (ret)
730                                 goto fail;
731                 }
732         }
733
734         ret = tmio_mmc_start_command(host, cmd);
735         if (ret)
736                 goto fail;
737
738         schedule_delayed_work(&host->delayed_reset_work,
739                               msecs_to_jiffies(CMDREQ_TIMEOUT));
740         return;
741
742 fail:
743         host->mrq = NULL;
744         mrq->cmd->error = ret;
745         mmc_request_done(host->mmc, mrq);
746 }
747
748 /* Process requests from the MMC layer */
749 static void tmio_mmc_request(struct mmc_host *mmc, struct mmc_request *mrq)
750 {
751         struct tmio_mmc_host *host = mmc_priv(mmc);
752         unsigned long flags;
753
754         spin_lock_irqsave(&host->lock, flags);
755
756         if (host->mrq) {
757                 pr_debug("request not null\n");
758                 if (IS_ERR(host->mrq)) {
759                         spin_unlock_irqrestore(&host->lock, flags);
760                         mrq->cmd->error = -EAGAIN;
761                         mmc_request_done(mmc, mrq);
762                         return;
763                 }
764         }
765
766         host->last_req_ts = jiffies;
767         wmb();
768         host->mrq = mrq;
769
770         spin_unlock_irqrestore(&host->lock, flags);
771
772         tmio_process_mrq(host, mrq);
773 }
774
775 static void tmio_mmc_finish_request(struct tmio_mmc_host *host)
776 {
777         struct mmc_request *mrq;
778         unsigned long flags;
779
780         spin_lock_irqsave(&host->lock, flags);
781
782         tmio_mmc_end_dma(host);
783
784         mrq = host->mrq;
785         if (IS_ERR_OR_NULL(mrq)) {
786                 spin_unlock_irqrestore(&host->lock, flags);
787                 return;
788         }
789
790         /* If not SET_BLOCK_COUNT, clear old data */
791         if (host->cmd != mrq->sbc) {
792                 host->cmd = NULL;
793                 host->data = NULL;
794                 host->mrq = NULL;
795         }
796
797         cancel_delayed_work(&host->delayed_reset_work);
798
799         spin_unlock_irqrestore(&host->lock, flags);
800
801         if (mrq->cmd->error || (mrq->data && mrq->data->error))
802                 tmio_mmc_abort_dma(host);
803
804         /* Error means retune, but executed command was still successful */
805         if (host->check_retune && host->check_retune(host))
806                 mmc_retune_needed(host->mmc);
807
808         /* If SET_BLOCK_COUNT, continue with main command */
809         if (host->mrq && !mrq->cmd->error) {
810                 tmio_process_mrq(host, mrq);
811                 return;
812         }
813
814         if (host->fixup_request)
815                 host->fixup_request(host, mrq);
816
817         mmc_request_done(host->mmc, mrq);
818 }
819
820 static void tmio_mmc_done_work(struct work_struct *work)
821 {
822         struct tmio_mmc_host *host = container_of(work, struct tmio_mmc_host,
823                                                   done);
824         tmio_mmc_finish_request(host);
825 }
826
827 static void tmio_mmc_power_on(struct tmio_mmc_host *host, unsigned short vdd)
828 {
829         struct mmc_host *mmc = host->mmc;
830         int ret = 0;
831
832         /* .set_ios() is returning void, so, no chance to report an error */
833
834         if (host->set_pwr)
835                 host->set_pwr(host->pdev, 1);
836
837         if (!IS_ERR(mmc->supply.vmmc)) {
838                 ret = mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, vdd);
839                 /*
840                  * Attention: empiric value. With a b43 WiFi SDIO card this
841                  * delay proved necessary for reliable card-insertion probing.
842                  * 100us were not enough. Is this the same 140us delay, as in
843                  * tmio_mmc_set_ios()?
844                  */
845                 usleep_range(200, 300);
846         }
847         /*
848          * It seems, VccQ should be switched on after Vcc, this is also what the
849          * omap_hsmmc.c driver does.
850          */
851         if (!IS_ERR(mmc->supply.vqmmc) && !ret) {
852                 ret = regulator_enable(mmc->supply.vqmmc);
853                 usleep_range(200, 300);
854         }
855
856         if (ret < 0)
857                 dev_dbg(&host->pdev->dev, "Regulators failed to power up: %d\n",
858                         ret);
859 }
860
861 static void tmio_mmc_power_off(struct tmio_mmc_host *host)
862 {
863         struct mmc_host *mmc = host->mmc;
864
865         if (!IS_ERR(mmc->supply.vqmmc))
866                 regulator_disable(mmc->supply.vqmmc);
867
868         if (!IS_ERR(mmc->supply.vmmc))
869                 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, 0);
870
871         if (host->set_pwr)
872                 host->set_pwr(host->pdev, 0);
873 }
874
875 static void tmio_mmc_set_bus_width(struct tmio_mmc_host *host,
876                                    unsigned char bus_width)
877 {
878         u16 reg = sd_ctrl_read16(host, CTL_SD_MEM_CARD_OPT)
879                                 & ~(CARD_OPT_WIDTH | CARD_OPT_WIDTH8);
880
881         /* reg now applies to MMC_BUS_WIDTH_4 */
882         if (bus_width == MMC_BUS_WIDTH_1)
883                 reg |= CARD_OPT_WIDTH;
884         else if (bus_width == MMC_BUS_WIDTH_8)
885                 reg |= CARD_OPT_WIDTH8;
886
887         sd_ctrl_write16(host, CTL_SD_MEM_CARD_OPT, reg);
888 }
889
890 /* Set MMC clock / power.
891  * Note: This controller uses a simple divider scheme therefore it cannot
892  * run a MMC card at full speed (20MHz). The max clock is 24MHz on SD, but as
893  * MMC wont run that fast, it has to be clocked at 12MHz which is the next
894  * slowest setting.
895  */
896 static void tmio_mmc_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
897 {
898         struct tmio_mmc_host *host = mmc_priv(mmc);
899         struct device *dev = &host->pdev->dev;
900         unsigned long flags;
901
902         mutex_lock(&host->ios_lock);
903
904         spin_lock_irqsave(&host->lock, flags);
905         if (host->mrq) {
906                 if (IS_ERR(host->mrq)) {
907                         dev_dbg(dev,
908                                 "%s.%d: concurrent .set_ios(), clk %u, mode %u\n",
909                                 current->comm, task_pid_nr(current),
910                                 ios->clock, ios->power_mode);
911                         host->mrq = ERR_PTR(-EINTR);
912                 } else {
913                         dev_dbg(dev,
914                                 "%s.%d: CMD%u active since %lu, now %lu!\n",
915                                 current->comm, task_pid_nr(current),
916                                 host->mrq->cmd->opcode, host->last_req_ts,
917                                 jiffies);
918                 }
919                 spin_unlock_irqrestore(&host->lock, flags);
920
921                 mutex_unlock(&host->ios_lock);
922                 return;
923         }
924
925         host->mrq = ERR_PTR(-EBUSY);
926
927         spin_unlock_irqrestore(&host->lock, flags);
928
929         switch (ios->power_mode) {
930         case MMC_POWER_OFF:
931                 tmio_mmc_power_off(host);
932                 /* For R-Car Gen2+, we need to reset SDHI specific SCC */
933                 if (host->pdata->flags & TMIO_MMC_MIN_RCAR2)
934                         host->reset(host);
935                 host->set_clock(host, 0);
936                 break;
937         case MMC_POWER_UP:
938                 tmio_mmc_power_on(host, ios->vdd);
939                 host->set_clock(host, ios->clock);
940                 tmio_mmc_set_bus_width(host, ios->bus_width);
941                 break;
942         case MMC_POWER_ON:
943                 host->set_clock(host, ios->clock);
944                 tmio_mmc_set_bus_width(host, ios->bus_width);
945                 break;
946         }
947
948         /* Let things settle. delay taken from winCE driver */
949         usleep_range(140, 200);
950         if (PTR_ERR(host->mrq) == -EINTR)
951                 dev_dbg(&host->pdev->dev,
952                         "%s.%d: IOS interrupted: clk %u, mode %u",
953                         current->comm, task_pid_nr(current),
954                         ios->clock, ios->power_mode);
955         host->mrq = NULL;
956
957         host->clk_cache = ios->clock;
958
959         mutex_unlock(&host->ios_lock);
960 }
961
962 static int tmio_mmc_get_ro(struct mmc_host *mmc)
963 {
964         struct tmio_mmc_host *host = mmc_priv(mmc);
965
966         return !(sd_ctrl_read16_and_16_as_32(host, CTL_STATUS) &
967                  TMIO_STAT_WRPROTECT);
968 }
969
970 static int tmio_mmc_get_cd(struct mmc_host *mmc)
971 {
972         struct tmio_mmc_host *host = mmc_priv(mmc);
973
974         return !!(sd_ctrl_read16_and_16_as_32(host, CTL_STATUS) &
975                   TMIO_STAT_SIGSTATE);
976 }
977
978 static int tmio_multi_io_quirk(struct mmc_card *card,
979                                unsigned int direction, int blk_size)
980 {
981         struct tmio_mmc_host *host = mmc_priv(card->host);
982
983         if (host->multi_io_quirk)
984                 return host->multi_io_quirk(card, direction, blk_size);
985
986         return blk_size;
987 }
988
989 static struct mmc_host_ops tmio_mmc_ops = {
990         .request        = tmio_mmc_request,
991         .set_ios        = tmio_mmc_set_ios,
992         .get_ro         = tmio_mmc_get_ro,
993         .get_cd         = tmio_mmc_get_cd,
994         .enable_sdio_irq = tmio_mmc_enable_sdio_irq,
995         .multi_io_quirk = tmio_multi_io_quirk,
996 };
997
998 static int tmio_mmc_init_ocr(struct tmio_mmc_host *host)
999 {
1000         struct tmio_mmc_data *pdata = host->pdata;
1001         struct mmc_host *mmc = host->mmc;
1002         int err;
1003
1004         err = mmc_regulator_get_supply(mmc);
1005         if (err)
1006                 return err;
1007
1008         /* use ocr_mask if no regulator */
1009         if (!mmc->ocr_avail)
1010                 mmc->ocr_avail = pdata->ocr_mask;
1011
1012         /*
1013          * try again.
1014          * There is possibility that regulator has not been probed
1015          */
1016         if (!mmc->ocr_avail)
1017                 return -EPROBE_DEFER;
1018
1019         return 0;
1020 }
1021
1022 static void tmio_mmc_of_parse(struct platform_device *pdev,
1023                               struct mmc_host *mmc)
1024 {
1025         const struct device_node *np = pdev->dev.of_node;
1026
1027         if (!np)
1028                 return;
1029
1030         /*
1031          * DEPRECATED:
1032          * For new platforms, please use "disable-wp" instead of
1033          * "toshiba,mmc-wrprotect-disable"
1034          */
1035         if (of_get_property(np, "toshiba,mmc-wrprotect-disable", NULL))
1036                 mmc->caps2 |= MMC_CAP2_NO_WRITE_PROTECT;
1037 }
1038
1039 struct tmio_mmc_host *tmio_mmc_host_alloc(struct platform_device *pdev,
1040                                           struct tmio_mmc_data *pdata)
1041 {
1042         struct tmio_mmc_host *host;
1043         struct mmc_host *mmc;
1044         void __iomem *ctl;
1045         int ret;
1046
1047         ctl = devm_platform_ioremap_resource(pdev, 0);
1048         if (IS_ERR(ctl))
1049                 return ERR_CAST(ctl);
1050
1051         mmc = mmc_alloc_host(sizeof(struct tmio_mmc_host), &pdev->dev);
1052         if (!mmc)
1053                 return ERR_PTR(-ENOMEM);
1054
1055         host = mmc_priv(mmc);
1056         host->ctl = ctl;
1057         host->mmc = mmc;
1058         host->pdev = pdev;
1059         host->pdata = pdata;
1060         host->ops = tmio_mmc_ops;
1061         mmc->ops = &host->ops;
1062
1063         ret = mmc_of_parse(host->mmc);
1064         if (ret) {
1065                 host = ERR_PTR(ret);
1066                 goto free;
1067         }
1068
1069         tmio_mmc_of_parse(pdev, mmc);
1070
1071         platform_set_drvdata(pdev, host);
1072
1073         return host;
1074 free:
1075         mmc_free_host(mmc);
1076
1077         return host;
1078 }
1079 EXPORT_SYMBOL_GPL(tmio_mmc_host_alloc);
1080
1081 void tmio_mmc_host_free(struct tmio_mmc_host *host)
1082 {
1083         mmc_free_host(host->mmc);
1084 }
1085 EXPORT_SYMBOL_GPL(tmio_mmc_host_free);
1086
1087 int tmio_mmc_host_probe(struct tmio_mmc_host *_host)
1088 {
1089         struct platform_device *pdev = _host->pdev;
1090         struct tmio_mmc_data *pdata = _host->pdata;
1091         struct mmc_host *mmc = _host->mmc;
1092         int ret;
1093
1094         /*
1095          * Check the sanity of mmc->f_min to prevent host->set_clock() from
1096          * looping forever...
1097          */
1098         if (mmc->f_min == 0)
1099                 return -EINVAL;
1100
1101         if (!(pdata->flags & TMIO_MMC_HAS_IDLE_WAIT))
1102                 _host->write16_hook = NULL;
1103
1104         _host->set_pwr = pdata->set_pwr;
1105
1106         ret = tmio_mmc_init_ocr(_host);
1107         if (ret < 0)
1108                 return ret;
1109
1110         /*
1111          * Look for a card detect GPIO, if it fails with anything
1112          * else than a probe deferral, just live without it.
1113          */
1114         ret = mmc_gpiod_request_cd(mmc, "cd", 0, false, 0);
1115         if (ret == -EPROBE_DEFER)
1116                 return ret;
1117
1118         mmc->caps |= MMC_CAP_4_BIT_DATA | pdata->capabilities;
1119         mmc->caps2 |= pdata->capabilities2;
1120         mmc->max_segs = pdata->max_segs ? : 32;
1121         mmc->max_blk_size = TMIO_MAX_BLK_SIZE;
1122         mmc->max_blk_count = pdata->max_blk_count ? :
1123                 (PAGE_SIZE / mmc->max_blk_size) * mmc->max_segs;
1124         mmc->max_req_size = min_t(size_t,
1125                                   mmc->max_blk_size * mmc->max_blk_count,
1126                                   dma_max_mapping_size(&pdev->dev));
1127         mmc->max_seg_size = mmc->max_req_size;
1128
1129         if (mmc_can_gpio_ro(mmc))
1130                 _host->ops.get_ro = mmc_gpio_get_ro;
1131
1132         if (mmc_can_gpio_cd(mmc))
1133                 _host->ops.get_cd = mmc_gpio_get_cd;
1134
1135         _host->native_hotplug = !(mmc_can_gpio_cd(mmc) ||
1136                                   mmc->caps & MMC_CAP_NEEDS_POLL ||
1137                                   !mmc_card_is_removable(mmc));
1138
1139         /*
1140          * On Gen2+, eMMC with NONREMOVABLE currently fails because native
1141          * hotplug gets disabled. It seems RuntimePM related yet we need further
1142          * research. Since we are planning a PM overhaul anyway, let's enforce
1143          * for now the device being active by enabling native hotplug always.
1144          */
1145         if (pdata->flags & TMIO_MMC_MIN_RCAR2)
1146                 _host->native_hotplug = true;
1147
1148         /*
1149          * While using internal tmio hardware logic for card detection, we need
1150          * to ensure it stays powered for it to work.
1151          */
1152         if (_host->native_hotplug)
1153                 pm_runtime_get_noresume(&pdev->dev);
1154
1155         _host->sdio_irq_enabled = false;
1156         if (pdata->flags & TMIO_MMC_SDIO_IRQ)
1157                 _host->sdio_irq_mask = TMIO_SDIO_MASK_ALL;
1158
1159         _host->set_clock(_host, 0);
1160         tmio_mmc_reset(_host);
1161
1162         _host->sdcard_irq_mask = sd_ctrl_read16_and_16_as_32(_host, CTL_IRQ_MASK);
1163         if (!_host->sdcard_irq_mask_all)
1164                 _host->sdcard_irq_mask_all = TMIO_MASK_ALL;
1165         tmio_mmc_disable_mmc_irqs(_host, _host->sdcard_irq_mask_all);
1166
1167         if (_host->native_hotplug)
1168                 tmio_mmc_enable_mmc_irqs(_host,
1169                                 TMIO_STAT_CARD_REMOVE | TMIO_STAT_CARD_INSERT);
1170
1171         spin_lock_init(&_host->lock);
1172         mutex_init(&_host->ios_lock);
1173
1174         /* Init delayed work for request timeouts */
1175         INIT_DELAYED_WORK(&_host->delayed_reset_work, tmio_mmc_reset_work);
1176         INIT_WORK(&_host->done, tmio_mmc_done_work);
1177
1178         /* See if we also get DMA */
1179         tmio_mmc_request_dma(_host, pdata);
1180
1181         pm_runtime_get_noresume(&pdev->dev);
1182         pm_runtime_set_active(&pdev->dev);
1183         pm_runtime_set_autosuspend_delay(&pdev->dev, 50);
1184         pm_runtime_use_autosuspend(&pdev->dev);
1185         pm_runtime_enable(&pdev->dev);
1186
1187         ret = mmc_add_host(mmc);
1188         if (ret)
1189                 goto remove_host;
1190
1191         dev_pm_qos_expose_latency_limit(&pdev->dev, 100);
1192         pm_runtime_put(&pdev->dev);
1193
1194         return 0;
1195
1196 remove_host:
1197         pm_runtime_put_noidle(&pdev->dev);
1198         tmio_mmc_host_remove(_host);
1199         return ret;
1200 }
1201 EXPORT_SYMBOL_GPL(tmio_mmc_host_probe);
1202
1203 void tmio_mmc_host_remove(struct tmio_mmc_host *host)
1204 {
1205         struct platform_device *pdev = host->pdev;
1206         struct mmc_host *mmc = host->mmc;
1207
1208         pm_runtime_get_sync(&pdev->dev);
1209
1210         if (host->pdata->flags & TMIO_MMC_SDIO_IRQ)
1211                 sd_ctrl_write16(host, CTL_TRANSACTION_CTL, 0x0000);
1212
1213         dev_pm_qos_hide_latency_limit(&pdev->dev);
1214
1215         mmc_remove_host(mmc);
1216         cancel_work_sync(&host->done);
1217         cancel_delayed_work_sync(&host->delayed_reset_work);
1218         tmio_mmc_release_dma(host);
1219         tmio_mmc_disable_mmc_irqs(host, host->sdcard_irq_mask_all);
1220
1221         if (host->native_hotplug)
1222                 pm_runtime_put_noidle(&pdev->dev);
1223
1224         pm_runtime_disable(&pdev->dev);
1225         pm_runtime_dont_use_autosuspend(&pdev->dev);
1226         pm_runtime_put_noidle(&pdev->dev);
1227 }
1228 EXPORT_SYMBOL_GPL(tmio_mmc_host_remove);
1229
1230 #ifdef CONFIG_PM
1231 static int tmio_mmc_clk_enable(struct tmio_mmc_host *host)
1232 {
1233         if (!host->clk_enable)
1234                 return -ENOTSUPP;
1235
1236         return host->clk_enable(host);
1237 }
1238
1239 static void tmio_mmc_clk_disable(struct tmio_mmc_host *host)
1240 {
1241         if (host->clk_disable)
1242                 host->clk_disable(host);
1243 }
1244
1245 int tmio_mmc_host_runtime_suspend(struct device *dev)
1246 {
1247         struct tmio_mmc_host *host = dev_get_drvdata(dev);
1248
1249         tmio_mmc_disable_mmc_irqs(host, host->sdcard_irq_mask_all);
1250
1251         if (host->clk_cache)
1252                 host->set_clock(host, 0);
1253
1254         tmio_mmc_clk_disable(host);
1255
1256         return 0;
1257 }
1258 EXPORT_SYMBOL_GPL(tmio_mmc_host_runtime_suspend);
1259
1260 int tmio_mmc_host_runtime_resume(struct device *dev)
1261 {
1262         struct tmio_mmc_host *host = dev_get_drvdata(dev);
1263
1264         tmio_mmc_clk_enable(host);
1265         tmio_mmc_reset(host);
1266
1267         if (host->clk_cache)
1268                 host->set_clock(host, host->clk_cache);
1269
1270         if (host->native_hotplug)
1271                 tmio_mmc_enable_mmc_irqs(host,
1272                                 TMIO_STAT_CARD_REMOVE | TMIO_STAT_CARD_INSERT);
1273
1274         tmio_mmc_enable_dma(host, true);
1275
1276         mmc_retune_needed(host->mmc);
1277
1278         return 0;
1279 }
1280 EXPORT_SYMBOL_GPL(tmio_mmc_host_runtime_resume);
1281 #endif
1282
1283 MODULE_LICENSE("GPL v2");