blob: 908186adf52d5b36c00c2c4b699574537b558ff5 [file] [log] [blame]
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001/*
2 * linux/drivers/mmc/host/tmio_mmc_pio.c
3 *
Wolfram Sangbf962082016-01-19 12:32:58 +01004 * Copyright (C) 2016 Sang Engineering, Wolfram Sang
5 * Copyright (C) 2015-16 Renesas Electronics Corporation
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01006 * 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
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +010025 * 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>
Ai Kyuse4f119972016-11-03 15:16:03 +010038#include <linux/mmc/card.h>
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +010039#include <linux/mmc/host.h>
Guennadi Liakhovetski0f506a92012-06-20 19:10:35 +020040#include <linux/mmc/mmc.h>
Guennadi Liakhovetskifd0ea652012-04-30 23:31:57 +020041#include <linux/mmc/slot-gpio.h>
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +010042#include <linux/module.h>
43#include <linux/pagemap.h>
44#include <linux/platform_device.h>
Rafael J. Wysockic419e612012-03-13 01:01:51 +010045#include <linux/pm_qos.h>
Guennadi Liakhovetskie6ee7182011-05-05 16:13:12 +000046#include <linux/pm_runtime.h>
Guennadi Liakhovetski619b08d2013-02-15 16:14:00 +010047#include <linux/regulator/consumer.h>
Shinobu Ueharab8d11962014-08-24 20:00:25 -070048#include <linux/mmc/sdio.h>
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +010049#include <linux/scatterlist.h>
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +010050#include <linux/spinlock.h>
Guennadi Liakhovetskie3de2be2012-01-06 13:06:51 +010051#include <linux/workqueue.h>
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +010052
53#include "tmio_mmc.h"
54
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +010055void tmio_mmc_enable_mmc_irqs(struct tmio_mmc_host *host, u32 i)
56{
Simon Horman54680fe2011-08-25 10:27:25 +090057 host->sdcard_irq_mask &= ~(i & TMIO_MASK_IRQ);
Wolfram Sang2c545062016-04-27 18:51:23 +020058 sd_ctrl_write32_as_16_and_16(host, CTL_IRQ_MASK, host->sdcard_irq_mask);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +010059}
60
61void tmio_mmc_disable_mmc_irqs(struct tmio_mmc_host *host, u32 i)
62{
Simon Horman54680fe2011-08-25 10:27:25 +090063 host->sdcard_irq_mask |= (i & TMIO_MASK_IRQ);
Wolfram Sang2c545062016-04-27 18:51:23 +020064 sd_ctrl_write32_as_16_and_16(host, CTL_IRQ_MASK, host->sdcard_irq_mask);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +010065}
66
67static void tmio_mmc_ack_mmc_irqs(struct tmio_mmc_host *host, u32 i)
68{
Wolfram Sang2c545062016-04-27 18:51:23 +020069 sd_ctrl_write32_as_16_and_16(host, CTL_STATUS, ~i);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +010070}
71
72static 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
80static 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
Takeshi Kihara0df9d2e2015-07-20 01:39:59 +090087#define CMDREQ_TIMEOUT 5000
88
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +010089#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
100static void pr_debug_status(u32 status)
101{
102 int i = 0;
Girish K Sa3c76eb2011-10-11 11:44:09 +0530103 pr_debug("status: %08x = ", status);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100104 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
132static void tmio_mmc_enable_sdio_irq(struct mmc_host *mmc, int enable)
133{
134 struct tmio_mmc_host *host = mmc_priv(mmc);
135
Ulf Hansson7501c432013-10-24 15:58:45 +0200136 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
Simon Horman54680fe2011-08-25 10:27:25 +0900141 host->sdio_irq_mask = TMIO_SDIO_MASK_ALL &
142 ~TMIO_SDIO_STAT_IOIRQ;
Simon Horman54680fe2011-08-25 10:27:25 +0900143 sd_ctrl_write16(host, CTL_SDIO_IRQ_MASK, host->sdio_irq_mask);
Ulf Hansson7501c432013-10-24 15:58:45 +0200144 } else if (!enable && host->sdio_irq_enabled) {
Simon Horman54680fe2011-08-25 10:27:25 +0900145 host->sdio_irq_mask = TMIO_SDIO_MASK_ALL;
146 sd_ctrl_write16(host, CTL_SDIO_IRQ_MASK, host->sdio_irq_mask);
Ulf Hansson7501c432013-10-24 15:58:45 +0200147
148 host->sdio_irq_enabled = false;
Ulf Hansson03694832013-10-24 16:42:33 +0200149 pm_runtime_mark_last_busy(mmc_dev(mmc));
150 pm_runtime_put_autosuspend(mmc_dev(mmc));
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100151 }
152}
153
Wolfram Sang7fbc0302016-04-01 17:44:34 +0200154static 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));
Wolfram Sang3d376fb2016-05-02 22:25:40 +0200158 msleep(host->pdata->flags & TMIO_MMC_MIN_RCAR2 ? 1 : 10);
Wolfram Sang7fbc0302016-04-01 17:44:34 +0200159
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
Wolfram Sang148634d2016-04-01 17:44:35 +0200166static 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));
Wolfram Sang3d376fb2016-05-02 22:25:40 +0200175 msleep(host->pdata->flags & TMIO_MMC_MIN_RCAR2 ? 5 : 10);
Wolfram Sang148634d2016-04-01 17:44:35 +0200176}
177
Ulf Hanssonae12d252013-10-30 00:16:17 +0100178static void tmio_mmc_set_clock(struct tmio_mmc_host *host,
179 unsigned int new_clock)
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100180{
181 u32 clk = 0, clock;
182
Wolfram Sang148634d2016-04-01 17:44:35 +0200183 if (new_clock == 0) {
184 tmio_mmc_clk_stop(host);
185 return;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100186 }
187
Wolfram Sang148634d2016-04-01 17:44:35 +0200188 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
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100200 if (host->set_clk_div)
Wolfram Sangbf962082016-01-19 12:32:58 +0100201 host->set_clk_div(host->pdev, (clk >> 22) & 1);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100202
Wolfram Sang14d58282016-01-19 12:32:58 +0100203 sd_ctrl_write16(host, CTL_SD_CARD_CLK_CTL, ~CLK_CTL_SCLKEN &
204 sd_ctrl_read16(host, CTL_SD_CARD_CLK_CTL));
Wolfram Sangbf962082016-01-19 12:32:58 +0100205 sd_ctrl_write16(host, CTL_SD_CARD_CLK_CTL, clk & CLK_CTL_DIV_MASK);
Wolfram Sang3d376fb2016-05-02 22:25:40 +0200206 if (!(host->pdata->flags & TMIO_MMC_MIN_RCAR2))
Wolfram Sang04e24b82016-01-19 12:28:31 +0100207 msleep(10);
Wolfram Sang7fbc0302016-04-01 17:44:34 +0200208
209 tmio_mmc_clk_start(host);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100210}
211
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100212static 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);
Kuninori Morimoto5d60e502013-11-20 00:31:06 -0800216 if (host->pdata->flags & TMIO_MMC_HAVE_HIGH_REG)
Guennadi Liakhovetski69d1fe12011-03-09 17:28:55 +0100217 sd_ctrl_write16(host, CTL_RESET_SDIO, 0x0000);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100218 msleep(10);
219 sd_ctrl_write16(host, CTL_RESET_SD, 0x0001);
Kuninori Morimoto5d60e502013-11-20 00:31:06 -0800220 if (host->pdata->flags & TMIO_MMC_HAVE_HIGH_REG)
Guennadi Liakhovetski69d1fe12011-03-09 17:28:55 +0100221 sd_ctrl_write16(host, CTL_RESET_SDIO, 0x0001);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100222 msleep(10);
223}
224
225static 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
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000235 /*
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)
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100241 || time_is_after_jiffies(host->last_req_ts +
Takeshi Kihara0df9d2e2015-07-20 01:39:59 +0900242 msecs_to_jiffies(CMDREQ_TIMEOUT))) {
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100243 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;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100260 host->force_pio = false;
261
262 spin_unlock_irqrestore(&host->lock, flags);
263
264 tmio_mmc_reset(host);
265
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000266 /* Ready for new calls */
267 host->mrq = NULL;
268
Guennadi Liakhovetskie3de2be2012-01-06 13:06:51 +0100269 tmio_mmc_abort_dma(host);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100270 mmc_request_done(host->mmc, mrq);
271}
272
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000273/* called with host->lock held, interrupts disabled */
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100274static void tmio_mmc_finish_request(struct tmio_mmc_host *host)
275{
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +0200276 struct mmc_request *mrq;
277 unsigned long flags;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100278
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +0200279 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);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100284 return;
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +0200285 }
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100286
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100287 host->cmd = NULL;
288 host->data = NULL;
289 host->force_pio = false;
290
291 cancel_delayed_work(&host->delayed_reset_work);
292
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000293 host->mrq = NULL;
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +0200294 spin_unlock_irqrestore(&host->lock, flags);
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000295
Guennadi Liakhovetskie3de2be2012-01-06 13:06:51 +0100296 if (mrq->cmd->error || (mrq->data && mrq->data->error))
297 tmio_mmc_abort_dma(host);
298
Ai Kyuse4f119972016-11-03 15:16:03 +0100299 if (host->check_scc_error)
300 host->check_scc_error(host);
301
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100302 mmc_request_done(host->mmc, mrq);
303}
304
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +0200305static 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
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100312/* 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
Shinobu Ueharab8d11962014-08-24 20:00:25 -0700324#define NO_CMD12_ISSUE 0x4000 /* TMIO_MMC_HAVE_CMD12_CTRL */
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100325
326static 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;
Guennadi Liakhovetskie23cd532012-02-22 13:16:09 +0100330 u32 irq_mask = TMIO_MASK_CMD;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100331
Guennadi Liakhovetski0f506a92012-06-20 19:10:35 +0200332 /* CMD12 is handled by hardware */
333 if (cmd->opcode == MMC_STOP_TRANSMISSION && !cmd->arg) {
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100334 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;
Wolfram Sang0bc0b6e2016-09-19 22:57:48 +0200340 case MMC_RSP_R1:
341 case MMC_RSP_R1_NO_CRC:
342 c |= RESP_R1; break;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100343 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;
Shinobu Ueharab8d11962014-08-24 20:00:25 -0700363
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;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100371 }
372 if (data->flags & MMC_DATA_READ)
373 c |= TRANSFER_READ;
374 }
375
Guennadi Liakhovetskie23cd532012-02-22 13:16:09 +0100376 if (!host->native_hotplug)
377 irq_mask &= ~(TMIO_STAT_CARD_REMOVE | TMIO_STAT_CARD_INSERT);
378 tmio_mmc_enable_mmc_irqs(host, irq_mask);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100379
380 /* Fire off the command */
Wolfram Sang2c545062016-04-27 18:51:23 +0200381 sd_ctrl_write32_as_16_and_16(host, CTL_ARG_REG, cmd->arg);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100382 sd_ctrl_write16(host, CTL_SD_CMD, c);
383
384 return 0;
385}
386
Kuninori Morimotob9bd7ff2014-09-10 00:23:24 -0700387static 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 */
Chris Brandt8185e512016-09-12 10:15:06 -0400397 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
Kuninori Morimotob9bd7ff2014-09-10 00:23:24 -0700427 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
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100451/*
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
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300454 * looked into to ensure that a funny length read doesn't hose the controller.
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100455 */
456static 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 */
Kuninori Morimotob9bd7ff2014-09-10 00:23:24 -0700483 tmio_mmc_transfer_data(host, buf, count);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100484
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
495static 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 */
506void 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) {
Guennadi Liakhovetski0f506a92012-06-20 19:10:35 +0200547 if (stop->opcode == MMC_STOP_TRANSMISSION && !stop->arg)
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100548 sd_ctrl_write16(host, CTL_STOP_INTERNAL_ACTION, 0x000);
549 else
550 BUG();
551 }
552
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +0200553 schedule_work(&host->done);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100554}
555
Ai Kyuse96e0b2b2016-11-03 15:16:00 +0100556static void tmio_mmc_data_irq(struct tmio_mmc_host *host, unsigned int stat)
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100557{
558 struct mmc_data *data;
559 spin_lock(&host->lock);
560 data = host->data;
561
562 if (!data)
563 goto out;
564
Ai Kyuse96e0b2b2016-11-03 15:16:00 +0100565 if (stat & TMIO_STAT_CRCFAIL || stat & TMIO_STAT_STOPBIT_ERR ||
566 stat & TMIO_STAT_TXUNDERRUN)
567 data->error = -EILSEQ;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100568 if (host->chan_tx && (data->flags & MMC_DATA_WRITE) && !host->force_pio) {
Wolfram Sang2c545062016-04-27 18:51:23 +0200569 u32 status = sd_ctrl_read16_and_16_as_32(host, CTL_STATUS);
Shinobu Uehara81e888d2014-08-24 20:01:32 -0700570 bool done = false;
571
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100572 /*
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 */
Shinobu Uehara81e888d2014-08-24 20:01:32 -0700580 if (host->pdata->flags & TMIO_MMC_HAS_IDLE_WAIT) {
Wolfram Sanga21553c2016-04-27 18:51:26 +0200581 if (status & TMIO_STAT_SCLKDIVEN)
Shinobu Uehara81e888d2014-08-24 20:01:32 -0700582 done = true;
583 } else {
584 if (!(status & TMIO_STAT_CMD_BUSY))
585 done = true;
586 }
587
588 if (done) {
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100589 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 }
599out:
600 spin_unlock(&host->lock);
601}
602
603static 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
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100616 /* 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)
Wolfram Sang2c545062016-04-27 18:51:23 +0200622 cmd->resp[i] = sd_ctrl_read16_and_16_as_32(host, addr);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100623
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;
Ai Kyuse96e0b2b2016-11-03 15:16:00 +0100635 else if ((stat & TMIO_STAT_CRCFAIL && cmd->flags & MMC_RSP_CRC) ||
636 stat & TMIO_STAT_STOPBIT_ERR ||
637 stat & TMIO_STAT_CMD_IDX_ERR)
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100638 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 */
Ai Kyuse96e0b2b2016-11-03 15:16:00 +0100644 if (host->data && (!cmd->error || cmd->error == -EILSEQ)) {
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100645 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 {
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +0200657 schedule_work(&host->done);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100658 }
659
660out:
661 spin_unlock(&host->lock);
662}
663
Simon Horman7729c7a2011-08-25 10:27:26 +0900664static bool __tmio_mmc_card_detect_irq(struct tmio_mmc_host *host,
665 int ireg, int status)
666{
Guennadi Liakhovetski71d111c2011-07-14 12:16:59 +0200667 struct mmc_host *mmc = host->mmc;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100668
Paul Parsonse312eb12011-05-15 13:24:41 +0000669 /* 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);
Guennadi Liakhovetski71d111c2011-07-14 12:16:59 +0200673 if ((((ireg & TMIO_STAT_CARD_REMOVE) && mmc->card) ||
674 ((ireg & TMIO_STAT_CARD_INSERT) && !mmc->card)) &&
675 !work_pending(&mmc->detect.work))
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +0200676 mmc_detect_change(host->mmc, msecs_to_jiffies(100));
Simon Horman7729c7a2011-08-25 10:27:26 +0900677 return true;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100678 }
679
Simon Horman7729c7a2011-08-25 10:27:26 +0900680 return false;
681}
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100682
Simon Horman7729c7a2011-08-25 10:27:26 +0900683static bool __tmio_mmc_sdcard_irq(struct tmio_mmc_host *host,
684 int ireg, int status)
685{
Paul Parsonse312eb12011-05-15 13:24:41 +0000686 /* 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);
Simon Horman7729c7a2011-08-25 10:27:26 +0900692 return true;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100693 }
Paul Parsonse312eb12011-05-15 13:24:41 +0000694
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);
Simon Horman7729c7a2011-08-25 10:27:26 +0900699 return true;
Paul Parsonse312eb12011-05-15 13:24:41 +0000700 }
701
702 /* Data transfer completion */
703 if (ireg & TMIO_STAT_DATAEND) {
704 tmio_mmc_ack_mmc_irqs(host, TMIO_STAT_DATAEND);
Ai Kyuse96e0b2b2016-11-03 15:16:00 +0100705 tmio_mmc_data_irq(host, status);
Simon Horman7729c7a2011-08-25 10:27:26 +0900706 return true;
Paul Parsonse312eb12011-05-15 13:24:41 +0000707 }
708
Simon Horman7729c7a2011-08-25 10:27:26 +0900709 return false;
710}
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100711
Wolfram Sang4da98672016-04-26 17:55:24 +0200712static void tmio_mmc_sdio_irq(int irq, void *devid)
Simon Horman7729c7a2011-08-25 10:27:26 +0900713{
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;
Shinobu Uehara6b987572014-08-24 20:00:52 -0700718 unsigned int sdio_status;
Simon Horman7729c7a2011-08-25 10:27:26 +0900719
720 if (!(pdata->flags & TMIO_MMC_SDIO_IRQ))
Wolfram Sang4da98672016-04-26 17:55:24 +0200721 return;
Simon Horman7729c7a2011-08-25 10:27:26 +0900722
723 status = sd_ctrl_read16(host, CTL_SDIO_STATUS);
Wolfram Sang0c4bf5b2016-11-13 15:29:11 +0100724 ireg = status & TMIO_SDIO_MASK_ALL & ~host->sdio_irq_mask;
Simon Horman7729c7a2011-08-25 10:27:26 +0900725
Shinobu Uehara6b987572014-08-24 20:00:52 -0700726 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);
Simon Horman7729c7a2011-08-25 10:27:26 +0900731
732 if (mmc->caps & MMC_CAP_SDIO_IRQ && ireg & TMIO_SDIO_STAT_IOIRQ)
733 mmc_signal_sdio_irq(mmc);
Simon Horman7729c7a2011-08-25 10:27:26 +0900734}
Simon Horman7729c7a2011-08-25 10:27:26 +0900735
736irqreturn_t tmio_mmc_irq(int irq, void *devid)
737{
738 struct tmio_mmc_host *host = devid;
739 unsigned int ireg, status;
740
Wolfram Sang2c545062016-04-27 18:51:23 +0200741 status = sd_ctrl_read16_and_16_as_32(host, CTL_STATUS);
Wolfram Sang95840122016-04-26 17:55:25 +0200742 ireg = status & TMIO_MASK_IRQ & ~host->sdcard_irq_mask;
Simon Horman7729c7a2011-08-25 10:27:26 +0900743
Wolfram Sang95840122016-04-26 17:55:25 +0200744 pr_debug_status(status);
745 pr_debug_status(ireg);
746
747 /* Clear the status except the interrupt status */
Wolfram Sang2c545062016-04-27 18:51:23 +0200748 sd_ctrl_write32_as_16_and_16(host, CTL_STATUS, TMIO_MASK_IRQ);
Wolfram Sang95840122016-04-26 17:55:25 +0200749
Simon Horman7729c7a2011-08-25 10:27:26 +0900750 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
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100757 return IRQ_HANDLED;
758}
Magnus Damm8e7bfdb2011-05-06 11:02:33 +0000759EXPORT_SYMBOL(tmio_mmc_irq);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100760
761static 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
Wolfram Sang0bc0b6e2016-09-19 22:57:48 +0200769 /* 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) {
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100772 int blksz_2bytes = pdata->flags & TMIO_MMC_BLKSZ_2BYTES;
773
774 if (data->blksz < 2 || (data->blksz < 4 && !blksz_2bytes)) {
Wolfram Sang0bc0b6e2016-09-19 22:57:48 +0200775 pr_err("%s: %d byte block unsupported in 4/8 bit mode\n",
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100776 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
Ai Kyusee8f36b52016-11-03 15:16:02 +0100793static 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
Ai Kyuse4f119972016-11-03 15:16:03 +0100801static 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
841out:
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
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100850/* Process requests from the MMC layer */
851static void tmio_mmc_request(struct mmc_host *mmc, struct mmc_request *mrq)
852{
853 struct tmio_mmc_host *host = mmc_priv(mmc);
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000854 unsigned long flags;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100855 int ret;
856
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000857 spin_lock_irqsave(&host->lock, flags);
858
859 if (host->mrq) {
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100860 pr_debug("request not null\n");
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000861 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 }
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100868
869 host->last_req_ts = jiffies;
870 wmb();
871 host->mrq = mrq;
872
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000873 spin_unlock_irqrestore(&host->lock, flags);
874
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100875 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,
Takeshi Kihara0df9d2e2015-07-20 01:39:59 +0900884 msecs_to_jiffies(CMDREQ_TIMEOUT));
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100885 return;
886 }
887
888fail:
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100889 host->force_pio = false;
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000890 host->mrq = NULL;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100891 mrq->cmd->error = ret;
892 mmc_request_done(mmc, mrq);
893}
894
Ben Hutchings2fb55952016-04-01 17:44:32 +0200895static int tmio_mmc_clk_enable(struct tmio_mmc_host *host)
Guennadi Liakhovetski8c102a92012-06-20 19:10:31 +0200896{
Kuninori Morimoto4fe2ec52015-01-13 04:57:52 +0000897 if (!host->clk_enable)
Guennadi Liakhovetski8c102a92012-06-20 19:10:31 +0200898 return -ENOTSUPP;
899
Ben Hutchings2fb55952016-04-01 17:44:32 +0200900 return host->clk_enable(host);
Guennadi Liakhovetski8c102a92012-06-20 19:10:31 +0200901}
902
Guennadi Liakhovetski619b08d2013-02-15 16:14:00 +0100903static void tmio_mmc_power_on(struct tmio_mmc_host *host, unsigned short vdd)
904{
905 struct mmc_host *mmc = host->mmc;
906 int ret = 0;
907
908 /* .set_ios() is returning void, so, no chance to report an error */
909
Chris Ball9d731e72013-09-06 07:29:05 -0400910 if (host->set_pwr)
911 host->set_pwr(host->pdev, 1);
912
Guennadi Liakhovetski619b08d2013-02-15 16:14:00 +0100913 if (!IS_ERR(mmc->supply.vmmc)) {
914 ret = mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, vdd);
915 /*
916 * Attention: empiric value. With a b43 WiFi SDIO card this
917 * delay proved necessary for reliable card-insertion probing.
918 * 100us were not enough. Is this the same 140us delay, as in
919 * tmio_mmc_set_ios()?
920 */
921 udelay(200);
922 }
923 /*
924 * It seems, VccQ should be switched on after Vcc, this is also what the
925 * omap_hsmmc.c driver does.
926 */
927 if (!IS_ERR(mmc->supply.vqmmc) && !ret) {
Guennadi Liakhovetski6d1d6b42013-07-08 11:38:09 +0200928 ret = regulator_enable(mmc->supply.vqmmc);
Guennadi Liakhovetski619b08d2013-02-15 16:14:00 +0100929 udelay(200);
930 }
Guennadi Liakhovetski6d1d6b42013-07-08 11:38:09 +0200931
932 if (ret < 0)
933 dev_dbg(&host->pdev->dev, "Regulators failed to power up: %d\n",
934 ret);
Guennadi Liakhovetski619b08d2013-02-15 16:14:00 +0100935}
936
937static void tmio_mmc_power_off(struct tmio_mmc_host *host)
Guennadi Liakhovetskib958a672012-06-20 19:10:33 +0200938{
939 struct mmc_host *mmc = host->mmc;
940
Guennadi Liakhovetski619b08d2013-02-15 16:14:00 +0100941 if (!IS_ERR(mmc->supply.vqmmc))
942 regulator_disable(mmc->supply.vqmmc);
943
Guennadi Liakhovetskib958a672012-06-20 19:10:33 +0200944 if (!IS_ERR(mmc->supply.vmmc))
Guennadi Liakhovetski619b08d2013-02-15 16:14:00 +0100945 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, 0);
Chris Ball9d731e72013-09-06 07:29:05 -0400946
947 if (host->set_pwr)
948 host->set_pwr(host->pdev, 0);
Guennadi Liakhovetskib958a672012-06-20 19:10:33 +0200949}
950
Ulf Hansson9ae4ed72013-10-24 17:42:53 +0200951static void tmio_mmc_set_bus_width(struct tmio_mmc_host *host,
952 unsigned char bus_width)
953{
Wolfram Sang0bc0b6e2016-09-19 22:57:48 +0200954 u16 reg = sd_ctrl_read16(host, CTL_SD_MEM_CARD_OPT)
955 & ~(CARD_OPT_WIDTH | CARD_OPT_WIDTH8);
956
957 /* reg now applies to MMC_BUS_WIDTH_4 */
958 if (bus_width == MMC_BUS_WIDTH_1)
959 reg |= CARD_OPT_WIDTH;
960 else if (bus_width == MMC_BUS_WIDTH_8)
961 reg |= CARD_OPT_WIDTH8;
962
963 sd_ctrl_write16(host, CTL_SD_MEM_CARD_OPT, reg);
Ulf Hansson9ae4ed72013-10-24 17:42:53 +0200964}
965
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100966/* Set MMC clock / power.
967 * Note: This controller uses a simple divider scheme therefore it cannot
968 * run a MMC card at full speed (20MHz). The max clock is 24MHz on SD, but as
969 * MMC wont run that fast, it has to be clocked at 12MHz which is the next
970 * slowest setting.
971 */
972static void tmio_mmc_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
973{
974 struct tmio_mmc_host *host = mmc_priv(mmc);
Guennadi Liakhovetski4932bd62012-02-09 22:57:16 +0100975 struct device *dev = &host->pdev->dev;
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000976 unsigned long flags;
977
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +0200978 mutex_lock(&host->ios_lock);
979
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000980 spin_lock_irqsave(&host->lock, flags);
981 if (host->mrq) {
982 if (IS_ERR(host->mrq)) {
Guennadi Liakhovetski4932bd62012-02-09 22:57:16 +0100983 dev_dbg(dev,
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000984 "%s.%d: concurrent .set_ios(), clk %u, mode %u\n",
985 current->comm, task_pid_nr(current),
986 ios->clock, ios->power_mode);
987 host->mrq = ERR_PTR(-EINTR);
988 } else {
Guennadi Liakhovetski4932bd62012-02-09 22:57:16 +0100989 dev_dbg(dev,
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000990 "%s.%d: CMD%u active since %lu, now %lu!\n",
991 current->comm, task_pid_nr(current),
992 host->mrq->cmd->opcode, host->last_req_ts, jiffies);
993 }
994 spin_unlock_irqrestore(&host->lock, flags);
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +0200995
996 mutex_unlock(&host->ios_lock);
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000997 return;
998 }
999
1000 host->mrq = ERR_PTR(-EBUSY);
1001
1002 spin_unlock_irqrestore(&host->lock, flags);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001003
Ulf Hansson3b292bb2013-10-24 17:53:15 +02001004 switch (ios->power_mode) {
1005 case MMC_POWER_OFF:
1006 tmio_mmc_power_off(host);
1007 tmio_mmc_clk_stop(host);
1008 break;
1009 case MMC_POWER_UP:
Ulf Hansson3b292bb2013-10-24 17:53:15 +02001010 tmio_mmc_power_on(host, ios->vdd);
Wolfram Sang7fbc0302016-04-01 17:44:34 +02001011 tmio_mmc_set_clock(host, ios->clock);
Ulf Hansson9ae4ed72013-10-24 17:42:53 +02001012 tmio_mmc_set_bus_width(host, ios->bus_width);
Ulf Hansson3b292bb2013-10-24 17:53:15 +02001013 break;
1014 case MMC_POWER_ON:
1015 tmio_mmc_set_clock(host, ios->clock);
Ulf Hansson3b292bb2013-10-24 17:53:15 +02001016 tmio_mmc_set_bus_width(host, ios->bus_width);
1017 break;
1018 }
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001019
1020 /* Let things settle. delay taken from winCE driver */
1021 udelay(140);
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +00001022 if (PTR_ERR(host->mrq) == -EINTR)
1023 dev_dbg(&host->pdev->dev,
1024 "%s.%d: IOS interrupted: clk %u, mode %u",
1025 current->comm, task_pid_nr(current),
1026 ios->clock, ios->power_mode);
1027 host->mrq = NULL;
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +02001028
Ulf Hanssonae12d252013-10-30 00:16:17 +01001029 host->clk_cache = ios->clock;
1030
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +02001031 mutex_unlock(&host->ios_lock);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001032}
1033
1034static int tmio_mmc_get_ro(struct mmc_host *mmc)
1035{
1036 struct tmio_mmc_host *host = mmc_priv(mmc);
1037 struct tmio_mmc_data *pdata = host->pdata;
Guennadi Liakhovetski3071caf2012-05-01 17:11:56 +02001038 int ret = mmc_gpio_get_ro(mmc);
1039 if (ret >= 0)
1040 return ret;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001041
Ulf Hansson03694832013-10-24 16:42:33 +02001042 ret = !((pdata->flags & TMIO_MMC_WRPROTECT_DISABLE) ||
Wolfram Sang2c545062016-04-27 18:51:23 +02001043 (sd_ctrl_read16_and_16_as_32(host, CTL_STATUS) & TMIO_STAT_WRPROTECT));
Ulf Hansson03694832013-10-24 16:42:33 +02001044
1045 return ret;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001046}
1047
Kuninori Morimotobbf02082014-09-08 23:45:25 -07001048static int tmio_multi_io_quirk(struct mmc_card *card,
1049 unsigned int direction, int blk_size)
1050{
1051 struct tmio_mmc_host *host = mmc_priv(card->host);
Kuninori Morimotobbf02082014-09-08 23:45:25 -07001052
Kuninori Morimoto85c02dd2015-01-13 04:58:10 +00001053 if (host->multi_io_quirk)
1054 return host->multi_io_quirk(card, direction, blk_size);
Kuninori Morimotobbf02082014-09-08 23:45:25 -07001055
1056 return blk_size;
1057}
1058
Wolfram Sang452e5ee2016-04-01 17:44:33 +02001059static struct mmc_host_ops tmio_mmc_ops = {
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001060 .request = tmio_mmc_request,
1061 .set_ios = tmio_mmc_set_ios,
1062 .get_ro = tmio_mmc_get_ro,
Laurent Pinchart2b63b342013-08-08 12:38:43 +02001063 .get_cd = mmc_gpio_get_cd,
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001064 .enable_sdio_irq = tmio_mmc_enable_sdio_irq,
Kuninori Morimotobbf02082014-09-08 23:45:25 -07001065 .multi_io_quirk = tmio_multi_io_quirk,
Ai Kyusee8f36b52016-11-03 15:16:02 +01001066 .hw_reset = tmio_mmc_hw_reset,
Ai Kyuse4f119972016-11-03 15:16:03 +01001067 .execute_tuning = tmio_mmc_execute_tuning,
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001068};
1069
Kuninori Morimoto05fae4a2013-11-20 00:30:39 -08001070static int tmio_mmc_init_ocr(struct tmio_mmc_host *host)
Guennadi Liakhovetskib958a672012-06-20 19:10:33 +02001071{
1072 struct tmio_mmc_data *pdata = host->pdata;
1073 struct mmc_host *mmc = host->mmc;
1074
1075 mmc_regulator_get_supply(mmc);
1076
Kuninori Morimoto05fae4a2013-11-20 00:30:39 -08001077 /* use ocr_mask if no regulator */
Guennadi Liakhovetskib958a672012-06-20 19:10:33 +02001078 if (!mmc->ocr_avail)
Kuninori Morimoto05fae4a2013-11-20 00:30:39 -08001079 mmc->ocr_avail = pdata->ocr_mask;
1080
1081 /*
1082 * try again.
1083 * There is possibility that regulator has not been probed
1084 */
1085 if (!mmc->ocr_avail)
1086 return -EPROBE_DEFER;
1087
1088 return 0;
Guennadi Liakhovetskib958a672012-06-20 19:10:33 +02001089}
1090
Guennadi Liakhovetski5a00a972013-02-15 16:13:56 +01001091static void tmio_mmc_of_parse(struct platform_device *pdev,
1092 struct tmio_mmc_data *pdata)
1093{
1094 const struct device_node *np = pdev->dev.of_node;
1095 if (!np)
1096 return;
1097
1098 if (of_get_property(np, "toshiba,mmc-wrprotect-disable", NULL))
1099 pdata->flags |= TMIO_MMC_WRPROTECT_DISABLE;
1100}
1101
Kuninori Morimoto94b110a2015-01-13 04:57:22 +00001102struct tmio_mmc_host*
1103tmio_mmc_host_alloc(struct platform_device *pdev)
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001104{
Kuninori Morimoto94b110a2015-01-13 04:57:22 +00001105 struct tmio_mmc_host *host;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001106 struct mmc_host *mmc;
Kuninori Morimoto94b110a2015-01-13 04:57:22 +00001107
1108 mmc = mmc_alloc_host(sizeof(struct tmio_mmc_host), &pdev->dev);
1109 if (!mmc)
1110 return NULL;
1111
1112 host = mmc_priv(mmc);
1113 host->mmc = mmc;
1114 host->pdev = pdev;
1115
1116 return host;
1117}
1118EXPORT_SYMBOL(tmio_mmc_host_alloc);
1119
1120void tmio_mmc_host_free(struct tmio_mmc_host *host)
1121{
1122 mmc_free_host(host->mmc);
Kuninori Morimoto94b110a2015-01-13 04:57:22 +00001123}
1124EXPORT_SYMBOL(tmio_mmc_host_free);
1125
1126int tmio_mmc_host_probe(struct tmio_mmc_host *_host,
1127 struct tmio_mmc_data *pdata)
1128{
1129 struct platform_device *pdev = _host->pdev;
1130 struct mmc_host *mmc = _host->mmc;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001131 struct resource *res_ctl;
1132 int ret;
1133 u32 irq_mask = TMIO_MASK_CMD;
1134
Guennadi Liakhovetski5a00a972013-02-15 16:13:56 +01001135 tmio_mmc_of_parse(pdev, pdata);
1136
Guennadi Liakhovetski7b952132013-02-15 16:13:50 +01001137 if (!(pdata->flags & TMIO_MMC_HAS_IDLE_WAIT))
Kuninori Morimotodfe9a222015-01-13 04:57:42 +00001138 _host->write16_hook = NULL;
Guennadi Liakhovetski7b952132013-02-15 16:13:50 +01001139
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001140 res_ctl = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1141 if (!res_ctl)
1142 return -EINVAL;
1143
Simon Baatz274a7522013-06-09 22:14:13 +02001144 ret = mmc_of_parse(mmc);
1145 if (ret < 0)
Wolfram Sangad7014b2017-01-06 09:38:33 +01001146 return ret;
Guennadi Liakhovetski5a00a972013-02-15 16:13:56 +01001147
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001148 _host->pdata = pdata;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001149 platform_set_drvdata(pdev, mmc);
1150
Chris Ball9d731e72013-09-06 07:29:05 -04001151 _host->set_pwr = pdata->set_pwr;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001152 _host->set_clk_div = pdata->set_clk_div;
1153
Kuninori Morimoto05fae4a2013-11-20 00:30:39 -08001154 ret = tmio_mmc_init_ocr(_host);
1155 if (ret < 0)
Wolfram Sangad7014b2017-01-06 09:38:33 +01001156 return ret;
Kuninori Morimoto05fae4a2013-11-20 00:30:39 -08001157
Ian Molton7df56bb2015-04-27 00:01:17 +01001158 _host->ctl = devm_ioremap(&pdev->dev,
1159 res_ctl->start, resource_size(res_ctl));
Wolfram Sangad7014b2017-01-06 09:38:33 +01001160 if (!_host->ctl)
1161 return -ENOMEM;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001162
Wolfram Sang6a4679f2016-08-24 11:34:37 +02001163 tmio_mmc_ops.card_busy = _host->card_busy;
Wolfram Sang452e5ee2016-04-01 17:44:33 +02001164 tmio_mmc_ops.start_signal_voltage_switch = _host->start_signal_voltage_switch;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001165 mmc->ops = &tmio_mmc_ops;
Wolfram Sang452e5ee2016-04-01 17:44:33 +02001166
Guennadi Liakhovetski5a00a972013-02-15 16:13:56 +01001167 mmc->caps |= MMC_CAP_4_BIT_DATA | pdata->capabilities;
Kuninori Morimotodd006b32013-11-20 00:16:14 -08001168 mmc->caps2 |= pdata->capabilities2;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001169 mmc->max_segs = 32;
1170 mmc->max_blk_size = 512;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001171 mmc->max_blk_count = (PAGE_SIZE / mmc->max_blk_size) *
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001172 mmc->max_segs;
1173 mmc->max_req_size = mmc->max_blk_size * mmc->max_blk_count;
1174 mmc->max_seg_size = mmc->max_req_size;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001175
Guennadi Liakhovetskic8be24c2012-02-09 22:57:09 +01001176 _host->native_hotplug = !(pdata->flags & TMIO_MMC_USE_GPIO_CD ||
Guennadi Liakhovetski2b1ac5c2012-02-09 22:57:08 +01001177 mmc->caps & MMC_CAP_NEEDS_POLL ||
Ulf Hanssonefd7be72017-01-10 16:10:52 +01001178 !mmc_card_is_removable(mmc));
Guennadi Liakhovetski2b1ac5c2012-02-09 22:57:08 +01001179
Wolfram Sang0bc0b6e2016-09-19 22:57:48 +02001180 /*
1181 * On Gen2+, eMMC with NONREMOVABLE currently fails because native
1182 * hotplug gets disabled. It seems RuntimePM related yet we need further
1183 * research. Since we are planning a PM overhaul anyway, let's enforce
1184 * for now the device being active by enabling native hotplug always.
1185 */
1186 if (pdata->flags & TMIO_MMC_MIN_RCAR2)
1187 _host->native_hotplug = true;
1188
Ben Hutchings2fb55952016-04-01 17:44:32 +02001189 if (tmio_mmc_clk_enable(_host) < 0) {
Guennadi Liakhovetski8c102a92012-06-20 19:10:31 +02001190 mmc->f_max = pdata->hclk;
1191 mmc->f_min = mmc->f_max / 512;
1192 }
1193
Bastian Hechtcbb18b32011-12-23 23:03:13 +01001194 /*
Sergei Shtylyovbb98d9d2014-09-18 23:33:49 +04001195 * Check the sanity of mmc->f_min to prevent tmio_mmc_set_clock() from
1196 * looping forever...
1197 */
Wolfram Sangad7014b2017-01-06 09:38:33 +01001198 if (mmc->f_min == 0)
1199 return -EINVAL;
Sergei Shtylyovbb98d9d2014-09-18 23:33:49 +04001200
1201 /*
Ulf Hansson03694832013-10-24 16:42:33 +02001202 * While using internal tmio hardware logic for card detection, we need
1203 * to ensure it stays powered for it to work.
Bastian Hechtcbb18b32011-12-23 23:03:13 +01001204 */
Guennadi Liakhovetski2b1ac5c2012-02-09 22:57:08 +01001205 if (_host->native_hotplug)
Bastian Hechtcbb18b32011-12-23 23:03:13 +01001206 pm_runtime_get_noresume(&pdev->dev);
1207
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001208 tmio_mmc_clk_stop(_host);
1209 tmio_mmc_reset(_host);
1210
Wolfram Sang2c545062016-04-27 18:51:23 +02001211 _host->sdcard_irq_mask = sd_ctrl_read16_and_16_as_32(_host, CTL_IRQ_MASK);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001212 tmio_mmc_disable_mmc_irqs(_host, TMIO_MASK_ALL);
Guennadi Liakhovetskie0337cc2012-06-20 19:10:30 +02001213
1214 /* Unmask the IRQs we want to know about */
1215 if (!_host->chan_rx)
1216 irq_mask |= TMIO_MASK_READOP;
1217 if (!_host->chan_tx)
1218 irq_mask |= TMIO_MASK_WRITEOP;
1219 if (!_host->native_hotplug)
1220 irq_mask &= ~(TMIO_STAT_CARD_REMOVE | TMIO_STAT_CARD_INSERT);
1221
1222 _host->sdcard_irq_mask &= ~irq_mask;
1223
Ulf Hansson7501c432013-10-24 15:58:45 +02001224 _host->sdio_irq_enabled = false;
1225 if (pdata->flags & TMIO_MMC_SDIO_IRQ) {
1226 _host->sdio_irq_mask = TMIO_SDIO_MASK_ALL;
1227 sd_ctrl_write16(_host, CTL_SDIO_IRQ_MASK, _host->sdio_irq_mask);
Wolfram Sangc51ff6c2016-12-09 17:51:41 +01001228 sd_ctrl_write16(_host, CTL_TRANSACTION_CTL, 0x0001);
Ulf Hansson7501c432013-10-24 15:58:45 +02001229 }
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001230
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001231 spin_lock_init(&_host->lock);
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +02001232 mutex_init(&_host->ios_lock);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001233
1234 /* Init delayed work for request timeouts */
1235 INIT_DELAYED_WORK(&_host->delayed_reset_work, tmio_mmc_reset_work);
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +02001236 INIT_WORK(&_host->done, tmio_mmc_done_work);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001237
1238 /* See if we also get DMA */
1239 tmio_mmc_request_dma(_host, pdata);
1240
Ulf Hansson03694832013-10-24 16:42:33 +02001241 pm_runtime_set_active(&pdev->dev);
1242 pm_runtime_set_autosuspend_delay(&pdev->dev, 50);
1243 pm_runtime_use_autosuspend(&pdev->dev);
1244 pm_runtime_enable(&pdev->dev);
1245
Guennadi Liakhovetski8c102a92012-06-20 19:10:31 +02001246 ret = mmc_add_host(mmc);
Guennadi Liakhovetski8c102a92012-06-20 19:10:31 +02001247 if (ret < 0) {
1248 tmio_mmc_host_remove(_host);
1249 return ret;
1250 }
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001251
Rafael J. Wysockic419e612012-03-13 01:01:51 +01001252 dev_pm_qos_expose_latency_limit(&pdev->dev, 100);
1253
Guennadi Liakhovetskic8be24c2012-02-09 22:57:09 +01001254 if (pdata->flags & TMIO_MMC_USE_GPIO_CD) {
Laurent Pinchart214fc302013-08-08 12:38:31 +02001255 ret = mmc_gpio_request_cd(mmc, pdata->cd_gpio, 0);
Guennadi Liakhovetskic8be24c2012-02-09 22:57:09 +01001256 if (ret < 0) {
1257 tmio_mmc_host_remove(_host);
1258 return ret;
1259 }
Stephen Warrend4d11442014-09-22 09:57:42 -06001260 mmc_gpiod_request_cd_irq(mmc);
Guennadi Liakhovetskic8be24c2012-02-09 22:57:09 +01001261 }
1262
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001263 return 0;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001264}
1265EXPORT_SYMBOL(tmio_mmc_host_probe);
1266
1267void tmio_mmc_host_remove(struct tmio_mmc_host *host)
1268{
Guennadi Liakhovetskie6ee7182011-05-05 16:13:12 +00001269 struct platform_device *pdev = host->pdev;
Guennadi Liakhovetskic8be24c2012-02-09 22:57:09 +01001270 struct mmc_host *mmc = host->mmc;
Guennadi Liakhovetskie6ee7182011-05-05 16:13:12 +00001271
Wolfram Sangc51ff6c2016-12-09 17:51:41 +01001272 if (host->pdata->flags & TMIO_MMC_SDIO_IRQ)
1273 sd_ctrl_write16(host, CTL_TRANSACTION_CTL, 0x0000);
1274
Guennadi Liakhovetski2b1ac5c2012-02-09 22:57:08 +01001275 if (!host->native_hotplug)
Guennadi Liakhovetski7311bef2011-05-11 16:51:11 +00001276 pm_runtime_get_sync(&pdev->dev);
1277
Rafael J. Wysockic419e612012-03-13 01:01:51 +01001278 dev_pm_qos_hide_latency_limit(&pdev->dev);
1279
Guennadi Liakhovetskic8be24c2012-02-09 22:57:09 +01001280 mmc_remove_host(mmc);
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +02001281 cancel_work_sync(&host->done);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001282 cancel_delayed_work_sync(&host->delayed_reset_work);
1283 tmio_mmc_release_dma(host);
Guennadi Liakhovetskie6ee7182011-05-05 16:13:12 +00001284
Guennadi Liakhovetskie6ee7182011-05-05 16:13:12 +00001285 pm_runtime_put_sync(&pdev->dev);
1286 pm_runtime_disable(&pdev->dev);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001287}
1288EXPORT_SYMBOL(tmio_mmc_host_remove);
1289
Ulf Hansson9ade7db2014-08-25 12:03:20 +02001290#ifdef CONFIG_PM
Guennadi Liakhovetski7311bef2011-05-11 16:51:11 +00001291int tmio_mmc_host_runtime_suspend(struct device *dev)
1292{
Ulf Hanssonae12d252013-10-30 00:16:17 +01001293 struct mmc_host *mmc = dev_get_drvdata(dev);
1294 struct tmio_mmc_host *host = mmc_priv(mmc);
1295
Ulf Hansson20e955c2014-08-25 11:55:57 +02001296 tmio_mmc_disable_mmc_irqs(host, TMIO_MASK_ALL);
1297
Ulf Hanssonae12d252013-10-30 00:16:17 +01001298 if (host->clk_cache)
1299 tmio_mmc_clk_stop(host);
1300
Kuninori Morimoto00452c12015-01-13 04:58:01 +00001301 if (host->clk_disable)
Ben Hutchings0ea28212016-04-01 17:44:31 +02001302 host->clk_disable(host);
Ulf Hanssonae12d252013-10-30 00:16:17 +01001303
Guennadi Liakhovetski7311bef2011-05-11 16:51:11 +00001304 return 0;
1305}
1306EXPORT_SYMBOL(tmio_mmc_host_runtime_suspend);
1307
Ai Kyuse4f119972016-11-03 15:16:03 +01001308static bool tmio_mmc_can_retune(struct tmio_mmc_host *host)
1309{
1310 return host->tap_num && mmc_can_retune(host->mmc);
1311}
1312
Guennadi Liakhovetski7311bef2011-05-11 16:51:11 +00001313int tmio_mmc_host_runtime_resume(struct device *dev)
1314{
1315 struct mmc_host *mmc = dev_get_drvdata(dev);
1316 struct tmio_mmc_host *host = mmc_priv(mmc);
Guennadi Liakhovetski7311bef2011-05-11 16:51:11 +00001317
Ulf Hanssonae12d252013-10-30 00:16:17 +01001318 tmio_mmc_reset(host);
Ben Hutchings2fb55952016-04-01 17:44:32 +02001319 tmio_mmc_clk_enable(host);
Ulf Hanssonae12d252013-10-30 00:16:17 +01001320
Wolfram Sang7fbc0302016-04-01 17:44:34 +02001321 if (host->clk_cache)
Ulf Hanssonae12d252013-10-30 00:16:17 +01001322 tmio_mmc_set_clock(host, host->clk_cache);
Ulf Hanssonae12d252013-10-30 00:16:17 +01001323
Guennadi Liakhovetski162f43e2011-07-14 18:39:10 +02001324 tmio_mmc_enable_dma(host, true);
Guennadi Liakhovetski7311bef2011-05-11 16:51:11 +00001325
Ai Kyuse4f119972016-11-03 15:16:03 +01001326 if (tmio_mmc_can_retune(host) && host->select_tuning(host))
1327 dev_warn(&host->pdev->dev, "Tuning selection failed\n");
1328
Guennadi Liakhovetski7311bef2011-05-11 16:51:11 +00001329 return 0;
1330}
1331EXPORT_SYMBOL(tmio_mmc_host_runtime_resume);
Ulf Hansson710dec92013-10-23 14:55:07 +02001332#endif
Guennadi Liakhovetski7311bef2011-05-11 16:51:11 +00001333
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001334MODULE_LICENSE("GPL v2");