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