blob: 5f311d30c20b3ab6943bb314a3f1ca20659e6139 [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
25 * SDIO support
26 * Better Power management
27 * Handle MMC errors better
28 * double buffer support
29 *
30 */
31
32#include <linux/delay.h>
33#include <linux/device.h>
34#include <linux/highmem.h>
35#include <linux/interrupt.h>
36#include <linux/io.h>
37#include <linux/irq.h>
38#include <linux/mfd/tmio.h>
Ai Kyuse4f119972016-11-03 15:16:03 +010039#include <linux/mmc/card.h>
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +010040#include <linux/mmc/host.h>
Guennadi Liakhovetski0f506a92012-06-20 19:10:35 +020041#include <linux/mmc/mmc.h>
Guennadi Liakhovetskifd0ea652012-04-30 23:31:57 +020042#include <linux/mmc/slot-gpio.h>
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +010043#include <linux/module.h>
44#include <linux/pagemap.h>
45#include <linux/platform_device.h>
Rafael J. Wysockic419e612012-03-13 01:01:51 +010046#include <linux/pm_qos.h>
Guennadi Liakhovetskie6ee7182011-05-05 16:13:12 +000047#include <linux/pm_runtime.h>
Guennadi Liakhovetski619b08d2013-02-15 16:14:00 +010048#include <linux/regulator/consumer.h>
Shinobu Ueharab8d11962014-08-24 20:00:25 -070049#include <linux/mmc/sdio.h>
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +010050#include <linux/scatterlist.h>
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +010051#include <linux/spinlock.h>
Guennadi Liakhovetskie3de2be2012-01-06 13:06:51 +010052#include <linux/workqueue.h>
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +010053
54#include "tmio_mmc.h"
55
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +010056void tmio_mmc_enable_mmc_irqs(struct tmio_mmc_host *host, u32 i)
57{
Simon Horman54680fe2011-08-25 10:27:25 +090058 host->sdcard_irq_mask &= ~(i & TMIO_MASK_IRQ);
Wolfram Sang2c545062016-04-27 18:51:23 +020059 sd_ctrl_write32_as_16_and_16(host, CTL_IRQ_MASK, host->sdcard_irq_mask);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +010060}
61
62void tmio_mmc_disable_mmc_irqs(struct tmio_mmc_host *host, u32 i)
63{
Simon Horman54680fe2011-08-25 10:27:25 +090064 host->sdcard_irq_mask |= (i & TMIO_MASK_IRQ);
Wolfram Sang2c545062016-04-27 18:51:23 +020065 sd_ctrl_write32_as_16_and_16(host, CTL_IRQ_MASK, host->sdcard_irq_mask);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +010066}
67
68static void tmio_mmc_ack_mmc_irqs(struct tmio_mmc_host *host, u32 i)
69{
Wolfram Sang2c545062016-04-27 18:51:23 +020070 sd_ctrl_write32_as_16_and_16(host, CTL_STATUS, ~i);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +010071}
72
73static void tmio_mmc_init_sg(struct tmio_mmc_host *host, struct mmc_data *data)
74{
75 host->sg_len = data->sg_len;
76 host->sg_ptr = data->sg;
77 host->sg_orig = data->sg;
78 host->sg_off = 0;
79}
80
81static int tmio_mmc_next_sg(struct tmio_mmc_host *host)
82{
83 host->sg_ptr = sg_next(host->sg_ptr);
84 host->sg_off = 0;
85 return --host->sg_len;
86}
87
Takeshi Kihara0df9d2e2015-07-20 01:39:59 +090088#define CMDREQ_TIMEOUT 5000
89
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +010090#ifdef CONFIG_MMC_DEBUG
91
92#define STATUS_TO_TEXT(a, status, i) \
93 do { \
94 if (status & TMIO_STAT_##a) { \
95 if (i++) \
96 printk(" | "); \
97 printk(#a); \
98 } \
99 } while (0)
100
101static void pr_debug_status(u32 status)
102{
103 int i = 0;
Girish K Sa3c76eb2011-10-11 11:44:09 +0530104 pr_debug("status: %08x = ", status);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100105 STATUS_TO_TEXT(CARD_REMOVE, status, i);
106 STATUS_TO_TEXT(CARD_INSERT, status, i);
107 STATUS_TO_TEXT(SIGSTATE, status, i);
108 STATUS_TO_TEXT(WRPROTECT, status, i);
109 STATUS_TO_TEXT(CARD_REMOVE_A, status, i);
110 STATUS_TO_TEXT(CARD_INSERT_A, status, i);
111 STATUS_TO_TEXT(SIGSTATE_A, status, i);
112 STATUS_TO_TEXT(CMD_IDX_ERR, status, i);
113 STATUS_TO_TEXT(STOPBIT_ERR, status, i);
114 STATUS_TO_TEXT(ILL_FUNC, status, i);
115 STATUS_TO_TEXT(CMD_BUSY, status, i);
116 STATUS_TO_TEXT(CMDRESPEND, status, i);
117 STATUS_TO_TEXT(DATAEND, status, i);
118 STATUS_TO_TEXT(CRCFAIL, status, i);
119 STATUS_TO_TEXT(DATATIMEOUT, status, i);
120 STATUS_TO_TEXT(CMDTIMEOUT, status, i);
121 STATUS_TO_TEXT(RXOVERFLOW, status, i);
122 STATUS_TO_TEXT(TXUNDERRUN, status, i);
123 STATUS_TO_TEXT(RXRDY, status, i);
124 STATUS_TO_TEXT(TXRQ, status, i);
125 STATUS_TO_TEXT(ILL_ACCESS, status, i);
126 printk("\n");
127}
128
129#else
130#define pr_debug_status(s) do { } while (0)
131#endif
132
133static void tmio_mmc_enable_sdio_irq(struct mmc_host *mmc, int enable)
134{
135 struct tmio_mmc_host *host = mmc_priv(mmc);
136
Ulf Hansson7501c432013-10-24 15:58:45 +0200137 if (enable && !host->sdio_irq_enabled) {
138 /* Keep device active while SDIO irq is enabled */
139 pm_runtime_get_sync(mmc_dev(mmc));
140 host->sdio_irq_enabled = true;
141
Simon Horman54680fe2011-08-25 10:27:25 +0900142 host->sdio_irq_mask = TMIO_SDIO_MASK_ALL &
143 ~TMIO_SDIO_STAT_IOIRQ;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100144 sd_ctrl_write16(host, CTL_TRANSACTION_CTL, 0x0001);
Simon Horman54680fe2011-08-25 10:27:25 +0900145 sd_ctrl_write16(host, CTL_SDIO_IRQ_MASK, host->sdio_irq_mask);
Ulf Hansson7501c432013-10-24 15:58:45 +0200146 } else if (!enable && host->sdio_irq_enabled) {
Simon Horman54680fe2011-08-25 10:27:25 +0900147 host->sdio_irq_mask = TMIO_SDIO_MASK_ALL;
148 sd_ctrl_write16(host, CTL_SDIO_IRQ_MASK, host->sdio_irq_mask);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100149 sd_ctrl_write16(host, CTL_TRANSACTION_CTL, 0x0000);
Ulf Hansson7501c432013-10-24 15:58:45 +0200150
151 host->sdio_irq_enabled = false;
Ulf Hansson03694832013-10-24 16:42:33 +0200152 pm_runtime_mark_last_busy(mmc_dev(mmc));
153 pm_runtime_put_autosuspend(mmc_dev(mmc));
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100154 }
155}
156
Wolfram Sang7fbc0302016-04-01 17:44:34 +0200157static void tmio_mmc_clk_start(struct tmio_mmc_host *host)
158{
159 sd_ctrl_write16(host, CTL_SD_CARD_CLK_CTL, CLK_CTL_SCLKEN |
160 sd_ctrl_read16(host, CTL_SD_CARD_CLK_CTL));
Wolfram Sang3d376fb2016-05-02 22:25:40 +0200161 msleep(host->pdata->flags & TMIO_MMC_MIN_RCAR2 ? 1 : 10);
Wolfram Sang7fbc0302016-04-01 17:44:34 +0200162
163 if (host->pdata->flags & TMIO_MMC_HAVE_HIGH_REG) {
164 sd_ctrl_write16(host, CTL_CLK_AND_WAIT_CTL, 0x0100);
165 msleep(10);
166 }
167}
168
Wolfram Sang148634d2016-04-01 17:44:35 +0200169static void tmio_mmc_clk_stop(struct tmio_mmc_host *host)
170{
171 if (host->pdata->flags & TMIO_MMC_HAVE_HIGH_REG) {
172 sd_ctrl_write16(host, CTL_CLK_AND_WAIT_CTL, 0x0000);
173 msleep(10);
174 }
175
176 sd_ctrl_write16(host, CTL_SD_CARD_CLK_CTL, ~CLK_CTL_SCLKEN &
177 sd_ctrl_read16(host, CTL_SD_CARD_CLK_CTL));
Wolfram Sang3d376fb2016-05-02 22:25:40 +0200178 msleep(host->pdata->flags & TMIO_MMC_MIN_RCAR2 ? 5 : 10);
Wolfram Sang148634d2016-04-01 17:44:35 +0200179}
180
Ulf Hanssonae12d252013-10-30 00:16:17 +0100181static void tmio_mmc_set_clock(struct tmio_mmc_host *host,
182 unsigned int new_clock)
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100183{
184 u32 clk = 0, clock;
185
Wolfram Sang148634d2016-04-01 17:44:35 +0200186 if (new_clock == 0) {
187 tmio_mmc_clk_stop(host);
188 return;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100189 }
190
Wolfram Sang148634d2016-04-01 17:44:35 +0200191 if (host->clk_update)
192 clock = host->clk_update(host, new_clock) / 512;
193 else
194 clock = host->mmc->f_min;
195
196 for (clk = 0x80000080; new_clock >= (clock << 1); clk >>= 1)
197 clock <<= 1;
198
199 /* 1/1 clock is option */
200 if ((host->pdata->flags & TMIO_MMC_CLK_ACTUAL) && ((clk >> 22) & 0x1))
201 clk |= 0xff;
202
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100203 if (host->set_clk_div)
Wolfram Sangbf962082016-01-19 12:32:58 +0100204 host->set_clk_div(host->pdev, (clk >> 22) & 1);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100205
Wolfram Sang14d58282016-01-19 12:32:58 +0100206 sd_ctrl_write16(host, CTL_SD_CARD_CLK_CTL, ~CLK_CTL_SCLKEN &
207 sd_ctrl_read16(host, CTL_SD_CARD_CLK_CTL));
Wolfram Sangbf962082016-01-19 12:32:58 +0100208 sd_ctrl_write16(host, CTL_SD_CARD_CLK_CTL, clk & CLK_CTL_DIV_MASK);
Wolfram Sang3d376fb2016-05-02 22:25:40 +0200209 if (!(host->pdata->flags & TMIO_MMC_MIN_RCAR2))
Wolfram Sang04e24b82016-01-19 12:28:31 +0100210 msleep(10);
Wolfram Sang7fbc0302016-04-01 17:44:34 +0200211
212 tmio_mmc_clk_start(host);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100213}
214
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100215static void tmio_mmc_reset(struct tmio_mmc_host *host)
216{
217 /* FIXME - should we set stop clock reg here */
218 sd_ctrl_write16(host, CTL_RESET_SD, 0x0000);
Kuninori Morimoto5d60e502013-11-20 00:31:06 -0800219 if (host->pdata->flags & TMIO_MMC_HAVE_HIGH_REG)
Guennadi Liakhovetski69d1fe12011-03-09 17:28:55 +0100220 sd_ctrl_write16(host, CTL_RESET_SDIO, 0x0000);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100221 msleep(10);
222 sd_ctrl_write16(host, CTL_RESET_SD, 0x0001);
Kuninori Morimoto5d60e502013-11-20 00:31:06 -0800223 if (host->pdata->flags & TMIO_MMC_HAVE_HIGH_REG)
Guennadi Liakhovetski69d1fe12011-03-09 17:28:55 +0100224 sd_ctrl_write16(host, CTL_RESET_SDIO, 0x0001);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100225 msleep(10);
226}
227
228static void tmio_mmc_reset_work(struct work_struct *work)
229{
230 struct tmio_mmc_host *host = container_of(work, struct tmio_mmc_host,
231 delayed_reset_work.work);
232 struct mmc_request *mrq;
233 unsigned long flags;
234
235 spin_lock_irqsave(&host->lock, flags);
236 mrq = host->mrq;
237
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000238 /*
239 * is request already finished? Since we use a non-blocking
240 * cancel_delayed_work(), it can happen, that a .set_ios() call preempts
241 * us, so, have to check for IS_ERR(host->mrq)
242 */
243 if (IS_ERR_OR_NULL(mrq)
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100244 || time_is_after_jiffies(host->last_req_ts +
Takeshi Kihara0df9d2e2015-07-20 01:39:59 +0900245 msecs_to_jiffies(CMDREQ_TIMEOUT))) {
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100246 spin_unlock_irqrestore(&host->lock, flags);
247 return;
248 }
249
250 dev_warn(&host->pdev->dev,
251 "timeout waiting for hardware interrupt (CMD%u)\n",
252 mrq->cmd->opcode);
253
254 if (host->data)
255 host->data->error = -ETIMEDOUT;
256 else if (host->cmd)
257 host->cmd->error = -ETIMEDOUT;
258 else
259 mrq->cmd->error = -ETIMEDOUT;
260
261 host->cmd = NULL;
262 host->data = NULL;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100263 host->force_pio = false;
264
265 spin_unlock_irqrestore(&host->lock, flags);
266
267 tmio_mmc_reset(host);
268
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000269 /* Ready for new calls */
270 host->mrq = NULL;
271
Guennadi Liakhovetskie3de2be2012-01-06 13:06:51 +0100272 tmio_mmc_abort_dma(host);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100273 mmc_request_done(host->mmc, mrq);
274}
275
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000276/* called with host->lock held, interrupts disabled */
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100277static void tmio_mmc_finish_request(struct tmio_mmc_host *host)
278{
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +0200279 struct mmc_request *mrq;
280 unsigned long flags;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100281
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +0200282 spin_lock_irqsave(&host->lock, flags);
283
284 mrq = host->mrq;
285 if (IS_ERR_OR_NULL(mrq)) {
286 spin_unlock_irqrestore(&host->lock, flags);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100287 return;
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +0200288 }
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100289
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100290 host->cmd = NULL;
291 host->data = NULL;
292 host->force_pio = false;
293
294 cancel_delayed_work(&host->delayed_reset_work);
295
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000296 host->mrq = NULL;
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +0200297 spin_unlock_irqrestore(&host->lock, flags);
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000298
Guennadi Liakhovetskie3de2be2012-01-06 13:06:51 +0100299 if (mrq->cmd->error || (mrq->data && mrq->data->error))
300 tmio_mmc_abort_dma(host);
301
Ai Kyuse4f119972016-11-03 15:16:03 +0100302 if (host->check_scc_error)
303 host->check_scc_error(host);
304
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100305 mmc_request_done(host->mmc, mrq);
306}
307
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +0200308static void tmio_mmc_done_work(struct work_struct *work)
309{
310 struct tmio_mmc_host *host = container_of(work, struct tmio_mmc_host,
311 done);
312 tmio_mmc_finish_request(host);
313}
314
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100315/* These are the bitmasks the tmio chip requires to implement the MMC response
316 * types. Note that R1 and R6 are the same in this scheme. */
317#define APP_CMD 0x0040
318#define RESP_NONE 0x0300
319#define RESP_R1 0x0400
320#define RESP_R1B 0x0500
321#define RESP_R2 0x0600
322#define RESP_R3 0x0700
323#define DATA_PRESENT 0x0800
324#define TRANSFER_READ 0x1000
325#define TRANSFER_MULTI 0x2000
326#define SECURITY_CMD 0x4000
Shinobu Ueharab8d11962014-08-24 20:00:25 -0700327#define NO_CMD12_ISSUE 0x4000 /* TMIO_MMC_HAVE_CMD12_CTRL */
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100328
329static int tmio_mmc_start_command(struct tmio_mmc_host *host, struct mmc_command *cmd)
330{
331 struct mmc_data *data = host->data;
332 int c = cmd->opcode;
Guennadi Liakhovetskie23cd532012-02-22 13:16:09 +0100333 u32 irq_mask = TMIO_MASK_CMD;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100334
Guennadi Liakhovetski0f506a92012-06-20 19:10:35 +0200335 /* CMD12 is handled by hardware */
336 if (cmd->opcode == MMC_STOP_TRANSMISSION && !cmd->arg) {
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100337 sd_ctrl_write16(host, CTL_STOP_INTERNAL_ACTION, 0x001);
338 return 0;
339 }
340
341 switch (mmc_resp_type(cmd)) {
342 case MMC_RSP_NONE: c |= RESP_NONE; break;
Wolfram Sang0bc0b6e2016-09-19 22:57:48 +0200343 case MMC_RSP_R1:
344 case MMC_RSP_R1_NO_CRC:
345 c |= RESP_R1; break;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100346 case MMC_RSP_R1B: c |= RESP_R1B; break;
347 case MMC_RSP_R2: c |= RESP_R2; break;
348 case MMC_RSP_R3: c |= RESP_R3; break;
349 default:
350 pr_debug("Unknown response type %d\n", mmc_resp_type(cmd));
351 return -EINVAL;
352 }
353
354 host->cmd = cmd;
355
356/* FIXME - this seems to be ok commented out but the spec suggest this bit
357 * should be set when issuing app commands.
358 * if(cmd->flags & MMC_FLAG_ACMD)
359 * c |= APP_CMD;
360 */
361 if (data) {
362 c |= DATA_PRESENT;
363 if (data->blocks > 1) {
364 sd_ctrl_write16(host, CTL_STOP_INTERNAL_ACTION, 0x100);
365 c |= TRANSFER_MULTI;
Shinobu Ueharab8d11962014-08-24 20:00:25 -0700366
367 /*
368 * Disable auto CMD12 at IO_RW_EXTENDED when
369 * multiple block transfer
370 */
371 if ((host->pdata->flags & TMIO_MMC_HAVE_CMD12_CTRL) &&
372 (cmd->opcode == SD_IO_RW_EXTENDED))
373 c |= NO_CMD12_ISSUE;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100374 }
375 if (data->flags & MMC_DATA_READ)
376 c |= TRANSFER_READ;
377 }
378
Guennadi Liakhovetskie23cd532012-02-22 13:16:09 +0100379 if (!host->native_hotplug)
380 irq_mask &= ~(TMIO_STAT_CARD_REMOVE | TMIO_STAT_CARD_INSERT);
381 tmio_mmc_enable_mmc_irqs(host, irq_mask);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100382
383 /* Fire off the command */
Wolfram Sang2c545062016-04-27 18:51:23 +0200384 sd_ctrl_write32_as_16_and_16(host, CTL_ARG_REG, cmd->arg);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100385 sd_ctrl_write16(host, CTL_SD_CMD, c);
386
387 return 0;
388}
389
Kuninori Morimotob9bd7ff2014-09-10 00:23:24 -0700390static void tmio_mmc_transfer_data(struct tmio_mmc_host *host,
391 unsigned short *buf,
392 unsigned int count)
393{
394 int is_read = host->data->flags & MMC_DATA_READ;
395 u8 *buf8;
396
397 /*
398 * Transfer the data
399 */
Chris Brandt8185e512016-09-12 10:15:06 -0400400 if (host->pdata->flags & TMIO_MMC_32BIT_DATA_PORT) {
401 u8 data[4] = { };
402
403 if (is_read)
404 sd_ctrl_read32_rep(host, CTL_SD_DATA_PORT, (u32 *)buf,
405 count >> 2);
406 else
407 sd_ctrl_write32_rep(host, CTL_SD_DATA_PORT, (u32 *)buf,
408 count >> 2);
409
410 /* if count was multiple of 4 */
411 if (!(count & 0x3))
412 return;
413
414 buf8 = (u8 *)(buf + (count >> 2));
415 count %= 4;
416
417 if (is_read) {
418 sd_ctrl_read32_rep(host, CTL_SD_DATA_PORT,
419 (u32 *)data, 1);
420 memcpy(buf8, data, count);
421 } else {
422 memcpy(data, buf8, count);
423 sd_ctrl_write32_rep(host, CTL_SD_DATA_PORT,
424 (u32 *)data, 1);
425 }
426
427 return;
428 }
429
Kuninori Morimotob9bd7ff2014-09-10 00:23:24 -0700430 if (is_read)
431 sd_ctrl_read16_rep(host, CTL_SD_DATA_PORT, buf, count >> 1);
432 else
433 sd_ctrl_write16_rep(host, CTL_SD_DATA_PORT, buf, count >> 1);
434
435 /* if count was even number */
436 if (!(count & 0x1))
437 return;
438
439 /* if count was odd number */
440 buf8 = (u8 *)(buf + (count >> 1));
441
442 /*
443 * FIXME
444 *
445 * driver and this function are assuming that
446 * it is used as little endian
447 */
448 if (is_read)
449 *buf8 = sd_ctrl_read16(host, CTL_SD_DATA_PORT) & 0xff;
450 else
451 sd_ctrl_write16(host, CTL_SD_DATA_PORT, *buf8);
452}
453
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100454/*
455 * This chip always returns (at least?) as much data as you ask for.
456 * I'm unsure what happens if you ask for less than a block. This should be
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300457 * looked into to ensure that a funny length read doesn't hose the controller.
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100458 */
459static void tmio_mmc_pio_irq(struct tmio_mmc_host *host)
460{
461 struct mmc_data *data = host->data;
462 void *sg_virt;
463 unsigned short *buf;
464 unsigned int count;
465 unsigned long flags;
466
467 if ((host->chan_tx || host->chan_rx) && !host->force_pio) {
468 pr_err("PIO IRQ in DMA mode!\n");
469 return;
470 } else if (!data) {
471 pr_debug("Spurious PIO IRQ\n");
472 return;
473 }
474
475 sg_virt = tmio_mmc_kmap_atomic(host->sg_ptr, &flags);
476 buf = (unsigned short *)(sg_virt + host->sg_off);
477
478 count = host->sg_ptr->length - host->sg_off;
479 if (count > data->blksz)
480 count = data->blksz;
481
482 pr_debug("count: %08x offset: %08x flags %08x\n",
483 count, host->sg_off, data->flags);
484
485 /* Transfer the data */
Kuninori Morimotob9bd7ff2014-09-10 00:23:24 -0700486 tmio_mmc_transfer_data(host, buf, count);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100487
488 host->sg_off += count;
489
490 tmio_mmc_kunmap_atomic(host->sg_ptr, &flags, sg_virt);
491
492 if (host->sg_off == host->sg_ptr->length)
493 tmio_mmc_next_sg(host);
494
495 return;
496}
497
498static void tmio_mmc_check_bounce_buffer(struct tmio_mmc_host *host)
499{
500 if (host->sg_ptr == &host->bounce_sg) {
501 unsigned long flags;
502 void *sg_vaddr = tmio_mmc_kmap_atomic(host->sg_orig, &flags);
503 memcpy(sg_vaddr, host->bounce_buf, host->bounce_sg.length);
504 tmio_mmc_kunmap_atomic(host->sg_orig, &flags, sg_vaddr);
505 }
506}
507
508/* needs to be called with host->lock held */
509void tmio_mmc_do_data_irq(struct tmio_mmc_host *host)
510{
511 struct mmc_data *data = host->data;
512 struct mmc_command *stop;
513
514 host->data = NULL;
515
516 if (!data) {
517 dev_warn(&host->pdev->dev, "Spurious data end IRQ\n");
518 return;
519 }
520 stop = data->stop;
521
522 /* FIXME - return correct transfer count on errors */
523 if (!data->error)
524 data->bytes_xfered = data->blocks * data->blksz;
525 else
526 data->bytes_xfered = 0;
527
528 pr_debug("Completed data request\n");
529
530 /*
531 * FIXME: other drivers allow an optional stop command of any given type
532 * which we dont do, as the chip can auto generate them.
533 * Perhaps we can be smarter about when to use auto CMD12 and
534 * only issue the auto request when we know this is the desired
535 * stop command, allowing fallback to the stop command the
536 * upper layers expect. For now, we do what works.
537 */
538
539 if (data->flags & MMC_DATA_READ) {
540 if (host->chan_rx && !host->force_pio)
541 tmio_mmc_check_bounce_buffer(host);
542 dev_dbg(&host->pdev->dev, "Complete Rx request %p\n",
543 host->mrq);
544 } else {
545 dev_dbg(&host->pdev->dev, "Complete Tx request %p\n",
546 host->mrq);
547 }
548
549 if (stop) {
Guennadi Liakhovetski0f506a92012-06-20 19:10:35 +0200550 if (stop->opcode == MMC_STOP_TRANSMISSION && !stop->arg)
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100551 sd_ctrl_write16(host, CTL_STOP_INTERNAL_ACTION, 0x000);
552 else
553 BUG();
554 }
555
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +0200556 schedule_work(&host->done);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100557}
558
Ai Kyuse96e0b2b2016-11-03 15:16:00 +0100559static void tmio_mmc_data_irq(struct tmio_mmc_host *host, unsigned int stat)
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100560{
561 struct mmc_data *data;
562 spin_lock(&host->lock);
563 data = host->data;
564
565 if (!data)
566 goto out;
567
Ai Kyuse96e0b2b2016-11-03 15:16:00 +0100568 if (stat & TMIO_STAT_CRCFAIL || stat & TMIO_STAT_STOPBIT_ERR ||
569 stat & TMIO_STAT_TXUNDERRUN)
570 data->error = -EILSEQ;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100571 if (host->chan_tx && (data->flags & MMC_DATA_WRITE) && !host->force_pio) {
Wolfram Sang2c545062016-04-27 18:51:23 +0200572 u32 status = sd_ctrl_read16_and_16_as_32(host, CTL_STATUS);
Shinobu Uehara81e888d2014-08-24 20:01:32 -0700573 bool done = false;
574
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100575 /*
576 * Has all data been written out yet? Testing on SuperH showed,
577 * that in most cases the first interrupt comes already with the
578 * BUSY status bit clear, but on some operations, like mount or
579 * in the beginning of a write / sync / umount, there is one
580 * DATAEND interrupt with the BUSY bit set, in this cases
581 * waiting for one more interrupt fixes the problem.
582 */
Shinobu Uehara81e888d2014-08-24 20:01:32 -0700583 if (host->pdata->flags & TMIO_MMC_HAS_IDLE_WAIT) {
Wolfram Sanga21553c2016-04-27 18:51:26 +0200584 if (status & TMIO_STAT_SCLKDIVEN)
Shinobu Uehara81e888d2014-08-24 20:01:32 -0700585 done = true;
586 } else {
587 if (!(status & TMIO_STAT_CMD_BUSY))
588 done = true;
589 }
590
591 if (done) {
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100592 tmio_mmc_disable_mmc_irqs(host, TMIO_STAT_DATAEND);
593 tasklet_schedule(&host->dma_complete);
594 }
595 } else if (host->chan_rx && (data->flags & MMC_DATA_READ) && !host->force_pio) {
596 tmio_mmc_disable_mmc_irqs(host, TMIO_STAT_DATAEND);
597 tasklet_schedule(&host->dma_complete);
598 } else {
599 tmio_mmc_do_data_irq(host);
600 tmio_mmc_disable_mmc_irqs(host, TMIO_MASK_READOP | TMIO_MASK_WRITEOP);
601 }
602out:
603 spin_unlock(&host->lock);
604}
605
606static void tmio_mmc_cmd_irq(struct tmio_mmc_host *host,
607 unsigned int stat)
608{
609 struct mmc_command *cmd = host->cmd;
610 int i, addr;
611
612 spin_lock(&host->lock);
613
614 if (!host->cmd) {
615 pr_debug("Spurious CMD irq\n");
616 goto out;
617 }
618
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100619 /* This controller is sicker than the PXA one. Not only do we need to
620 * drop the top 8 bits of the first response word, we also need to
621 * modify the order of the response for short response command types.
622 */
623
624 for (i = 3, addr = CTL_RESPONSE ; i >= 0 ; i--, addr += 4)
Wolfram Sang2c545062016-04-27 18:51:23 +0200625 cmd->resp[i] = sd_ctrl_read16_and_16_as_32(host, addr);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100626
627 if (cmd->flags & MMC_RSP_136) {
628 cmd->resp[0] = (cmd->resp[0] << 8) | (cmd->resp[1] >> 24);
629 cmd->resp[1] = (cmd->resp[1] << 8) | (cmd->resp[2] >> 24);
630 cmd->resp[2] = (cmd->resp[2] << 8) | (cmd->resp[3] >> 24);
631 cmd->resp[3] <<= 8;
632 } else if (cmd->flags & MMC_RSP_R3) {
633 cmd->resp[0] = cmd->resp[3];
634 }
635
636 if (stat & TMIO_STAT_CMDTIMEOUT)
637 cmd->error = -ETIMEDOUT;
Ai Kyuse96e0b2b2016-11-03 15:16:00 +0100638 else if ((stat & TMIO_STAT_CRCFAIL && cmd->flags & MMC_RSP_CRC) ||
639 stat & TMIO_STAT_STOPBIT_ERR ||
640 stat & TMIO_STAT_CMD_IDX_ERR)
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100641 cmd->error = -EILSEQ;
642
643 /* If there is data to handle we enable data IRQs here, and
644 * we will ultimatley finish the request in the data_end handler.
645 * If theres no data or we encountered an error, finish now.
646 */
Ai Kyuse96e0b2b2016-11-03 15:16:00 +0100647 if (host->data && (!cmd->error || cmd->error == -EILSEQ)) {
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100648 if (host->data->flags & MMC_DATA_READ) {
649 if (host->force_pio || !host->chan_rx)
650 tmio_mmc_enable_mmc_irqs(host, TMIO_MASK_READOP);
651 else
652 tasklet_schedule(&host->dma_issue);
653 } else {
654 if (host->force_pio || !host->chan_tx)
655 tmio_mmc_enable_mmc_irqs(host, TMIO_MASK_WRITEOP);
656 else
657 tasklet_schedule(&host->dma_issue);
658 }
659 } else {
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +0200660 schedule_work(&host->done);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100661 }
662
663out:
664 spin_unlock(&host->lock);
665}
666
Simon Horman7729c7a2011-08-25 10:27:26 +0900667static bool __tmio_mmc_card_detect_irq(struct tmio_mmc_host *host,
668 int ireg, int status)
669{
Guennadi Liakhovetski71d111c2011-07-14 12:16:59 +0200670 struct mmc_host *mmc = host->mmc;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100671
Paul Parsonse312eb12011-05-15 13:24:41 +0000672 /* Card insert / remove attempts */
673 if (ireg & (TMIO_STAT_CARD_INSERT | TMIO_STAT_CARD_REMOVE)) {
674 tmio_mmc_ack_mmc_irqs(host, TMIO_STAT_CARD_INSERT |
675 TMIO_STAT_CARD_REMOVE);
Guennadi Liakhovetski71d111c2011-07-14 12:16:59 +0200676 if ((((ireg & TMIO_STAT_CARD_REMOVE) && mmc->card) ||
677 ((ireg & TMIO_STAT_CARD_INSERT) && !mmc->card)) &&
678 !work_pending(&mmc->detect.work))
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +0200679 mmc_detect_change(host->mmc, msecs_to_jiffies(100));
Simon Horman7729c7a2011-08-25 10:27:26 +0900680 return true;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100681 }
682
Simon Horman7729c7a2011-08-25 10:27:26 +0900683 return false;
684}
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100685
Simon Horman7729c7a2011-08-25 10:27:26 +0900686static bool __tmio_mmc_sdcard_irq(struct tmio_mmc_host *host,
687 int ireg, int status)
688{
Paul Parsonse312eb12011-05-15 13:24:41 +0000689 /* Command completion */
690 if (ireg & (TMIO_STAT_CMDRESPEND | TMIO_STAT_CMDTIMEOUT)) {
691 tmio_mmc_ack_mmc_irqs(host,
692 TMIO_STAT_CMDRESPEND |
693 TMIO_STAT_CMDTIMEOUT);
694 tmio_mmc_cmd_irq(host, status);
Simon Horman7729c7a2011-08-25 10:27:26 +0900695 return true;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100696 }
Paul Parsonse312eb12011-05-15 13:24:41 +0000697
698 /* Data transfer */
699 if (ireg & (TMIO_STAT_RXRDY | TMIO_STAT_TXRQ)) {
700 tmio_mmc_ack_mmc_irqs(host, TMIO_STAT_RXRDY | TMIO_STAT_TXRQ);
701 tmio_mmc_pio_irq(host);
Simon Horman7729c7a2011-08-25 10:27:26 +0900702 return true;
Paul Parsonse312eb12011-05-15 13:24:41 +0000703 }
704
705 /* Data transfer completion */
706 if (ireg & TMIO_STAT_DATAEND) {
707 tmio_mmc_ack_mmc_irqs(host, TMIO_STAT_DATAEND);
Ai Kyuse96e0b2b2016-11-03 15:16:00 +0100708 tmio_mmc_data_irq(host, status);
Simon Horman7729c7a2011-08-25 10:27:26 +0900709 return true;
Paul Parsonse312eb12011-05-15 13:24:41 +0000710 }
711
Simon Horman7729c7a2011-08-25 10:27:26 +0900712 return false;
713}
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100714
Wolfram Sang4da98672016-04-26 17:55:24 +0200715static void tmio_mmc_sdio_irq(int irq, void *devid)
Simon Horman7729c7a2011-08-25 10:27:26 +0900716{
717 struct tmio_mmc_host *host = devid;
718 struct mmc_host *mmc = host->mmc;
719 struct tmio_mmc_data *pdata = host->pdata;
720 unsigned int ireg, status;
Shinobu Uehara6b987572014-08-24 20:00:52 -0700721 unsigned int sdio_status;
Simon Horman7729c7a2011-08-25 10:27:26 +0900722
723 if (!(pdata->flags & TMIO_MMC_SDIO_IRQ))
Wolfram Sang4da98672016-04-26 17:55:24 +0200724 return;
Simon Horman7729c7a2011-08-25 10:27:26 +0900725
726 status = sd_ctrl_read16(host, CTL_SDIO_STATUS);
Wolfram Sang0c4bf5b2016-11-13 15:29:11 +0100727 ireg = status & TMIO_SDIO_MASK_ALL & ~host->sdio_irq_mask;
Simon Horman7729c7a2011-08-25 10:27:26 +0900728
Shinobu Uehara6b987572014-08-24 20:00:52 -0700729 sdio_status = status & ~TMIO_SDIO_MASK_ALL;
730 if (pdata->flags & TMIO_MMC_SDIO_STATUS_QUIRK)
731 sdio_status |= 6;
732
733 sd_ctrl_write16(host, CTL_SDIO_STATUS, sdio_status);
Simon Horman7729c7a2011-08-25 10:27:26 +0900734
735 if (mmc->caps & MMC_CAP_SDIO_IRQ && ireg & TMIO_SDIO_STAT_IOIRQ)
736 mmc_signal_sdio_irq(mmc);
Simon Horman7729c7a2011-08-25 10:27:26 +0900737}
Simon Horman7729c7a2011-08-25 10:27:26 +0900738
739irqreturn_t tmio_mmc_irq(int irq, void *devid)
740{
741 struct tmio_mmc_host *host = devid;
742 unsigned int ireg, status;
743
Wolfram Sang2c545062016-04-27 18:51:23 +0200744 status = sd_ctrl_read16_and_16_as_32(host, CTL_STATUS);
Wolfram Sang95840122016-04-26 17:55:25 +0200745 ireg = status & TMIO_MASK_IRQ & ~host->sdcard_irq_mask;
Simon Horman7729c7a2011-08-25 10:27:26 +0900746
Wolfram Sang95840122016-04-26 17:55:25 +0200747 pr_debug_status(status);
748 pr_debug_status(ireg);
749
750 /* Clear the status except the interrupt status */
Wolfram Sang2c545062016-04-27 18:51:23 +0200751 sd_ctrl_write32_as_16_and_16(host, CTL_STATUS, TMIO_MASK_IRQ);
Wolfram Sang95840122016-04-26 17:55:25 +0200752
Simon Horman7729c7a2011-08-25 10:27:26 +0900753 if (__tmio_mmc_card_detect_irq(host, ireg, status))
754 return IRQ_HANDLED;
755 if (__tmio_mmc_sdcard_irq(host, ireg, status))
756 return IRQ_HANDLED;
757
758 tmio_mmc_sdio_irq(irq, devid);
759
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100760 return IRQ_HANDLED;
761}
Magnus Damm8e7bfdb2011-05-06 11:02:33 +0000762EXPORT_SYMBOL(tmio_mmc_irq);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100763
764static int tmio_mmc_start_data(struct tmio_mmc_host *host,
765 struct mmc_data *data)
766{
767 struct tmio_mmc_data *pdata = host->pdata;
768
769 pr_debug("setup data transfer: blocksize %08x nr_blocks %d\n",
770 data->blksz, data->blocks);
771
Wolfram Sang0bc0b6e2016-09-19 22:57:48 +0200772 /* Some hardware cannot perform 2 byte requests in 4/8 bit mode */
773 if (host->mmc->ios.bus_width == MMC_BUS_WIDTH_4 ||
774 host->mmc->ios.bus_width == MMC_BUS_WIDTH_8) {
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100775 int blksz_2bytes = pdata->flags & TMIO_MMC_BLKSZ_2BYTES;
776
777 if (data->blksz < 2 || (data->blksz < 4 && !blksz_2bytes)) {
Wolfram Sang0bc0b6e2016-09-19 22:57:48 +0200778 pr_err("%s: %d byte block unsupported in 4/8 bit mode\n",
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100779 mmc_hostname(host->mmc), data->blksz);
780 return -EINVAL;
781 }
782 }
783
784 tmio_mmc_init_sg(host, data);
785 host->data = data;
786
787 /* Set transfer length / blocksize */
788 sd_ctrl_write16(host, CTL_SD_XFER_LEN, data->blksz);
789 sd_ctrl_write16(host, CTL_XFER_BLK_COUNT, data->blocks);
790
791 tmio_mmc_start_dma(host, data);
792
793 return 0;
794}
795
Ai Kyusee8f36b52016-11-03 15:16:02 +0100796static void tmio_mmc_hw_reset(struct mmc_host *mmc)
797{
798 struct tmio_mmc_host *host = mmc_priv(mmc);
799
800 if (host->hw_reset)
801 host->hw_reset(host);
802}
803
Ai Kyuse4f119972016-11-03 15:16:03 +0100804static int tmio_mmc_execute_tuning(struct mmc_host *mmc, u32 opcode)
805{
806 struct tmio_mmc_host *host = mmc_priv(mmc);
807 int i, ret = 0;
808
809 if (!host->tap_num) {
810 if (!host->init_tuning || !host->select_tuning)
811 /* Tuning is not supported */
812 goto out;
813
814 host->tap_num = host->init_tuning(host);
815 if (!host->tap_num)
816 /* Tuning is not supported */
817 goto out;
818 }
819
820 if (host->tap_num * 2 >= sizeof(host->taps) * BITS_PER_BYTE) {
821 dev_warn_once(&host->pdev->dev,
822 "Too many taps, skipping tuning. Please consider updating size of taps field of tmio_mmc_host\n");
823 goto out;
824 }
825
826 bitmap_zero(host->taps, host->tap_num * 2);
827
828 /* Issue CMD19 twice for each tap */
829 for (i = 0; i < 2 * host->tap_num; i++) {
830 if (host->prepare_tuning)
831 host->prepare_tuning(host, i % host->tap_num);
832
833 ret = mmc_send_tuning(mmc, opcode, NULL);
834 if (ret && ret != -EILSEQ)
835 goto out;
836 if (ret == 0)
837 set_bit(i, host->taps);
838
839 mdelay(1);
840 }
841
842 ret = host->select_tuning(host);
843
844out:
845 if (ret < 0) {
846 dev_warn(&host->pdev->dev, "Tuning procedure failed\n");
847 tmio_mmc_hw_reset(mmc);
848 }
849
850 return ret;
851}
852
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100853/* Process requests from the MMC layer */
854static void tmio_mmc_request(struct mmc_host *mmc, struct mmc_request *mrq)
855{
856 struct tmio_mmc_host *host = mmc_priv(mmc);
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000857 unsigned long flags;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100858 int ret;
859
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000860 spin_lock_irqsave(&host->lock, flags);
861
862 if (host->mrq) {
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100863 pr_debug("request not null\n");
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000864 if (IS_ERR(host->mrq)) {
865 spin_unlock_irqrestore(&host->lock, flags);
866 mrq->cmd->error = -EAGAIN;
867 mmc_request_done(mmc, mrq);
868 return;
869 }
870 }
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100871
872 host->last_req_ts = jiffies;
873 wmb();
874 host->mrq = mrq;
875
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000876 spin_unlock_irqrestore(&host->lock, flags);
877
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100878 if (mrq->data) {
879 ret = tmio_mmc_start_data(host, mrq->data);
880 if (ret)
881 goto fail;
882 }
883
884 ret = tmio_mmc_start_command(host, mrq->cmd);
885 if (!ret) {
886 schedule_delayed_work(&host->delayed_reset_work,
Takeshi Kihara0df9d2e2015-07-20 01:39:59 +0900887 msecs_to_jiffies(CMDREQ_TIMEOUT));
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100888 return;
889 }
890
891fail:
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100892 host->force_pio = false;
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000893 host->mrq = NULL;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100894 mrq->cmd->error = ret;
895 mmc_request_done(mmc, mrq);
896}
897
Ben Hutchings2fb55952016-04-01 17:44:32 +0200898static int tmio_mmc_clk_enable(struct tmio_mmc_host *host)
Guennadi Liakhovetski8c102a92012-06-20 19:10:31 +0200899{
Kuninori Morimoto4fe2ec52015-01-13 04:57:52 +0000900 if (!host->clk_enable)
Guennadi Liakhovetski8c102a92012-06-20 19:10:31 +0200901 return -ENOTSUPP;
902
Ben Hutchings2fb55952016-04-01 17:44:32 +0200903 return host->clk_enable(host);
Guennadi Liakhovetski8c102a92012-06-20 19:10:31 +0200904}
905
Guennadi Liakhovetski619b08d2013-02-15 16:14:00 +0100906static void tmio_mmc_power_on(struct tmio_mmc_host *host, unsigned short vdd)
907{
908 struct mmc_host *mmc = host->mmc;
909 int ret = 0;
910
911 /* .set_ios() is returning void, so, no chance to report an error */
912
Chris Ball9d731e72013-09-06 07:29:05 -0400913 if (host->set_pwr)
914 host->set_pwr(host->pdev, 1);
915
Guennadi Liakhovetski619b08d2013-02-15 16:14:00 +0100916 if (!IS_ERR(mmc->supply.vmmc)) {
917 ret = mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, vdd);
918 /*
919 * Attention: empiric value. With a b43 WiFi SDIO card this
920 * delay proved necessary for reliable card-insertion probing.
921 * 100us were not enough. Is this the same 140us delay, as in
922 * tmio_mmc_set_ios()?
923 */
924 udelay(200);
925 }
926 /*
927 * It seems, VccQ should be switched on after Vcc, this is also what the
928 * omap_hsmmc.c driver does.
929 */
930 if (!IS_ERR(mmc->supply.vqmmc) && !ret) {
Guennadi Liakhovetski6d1d6b42013-07-08 11:38:09 +0200931 ret = regulator_enable(mmc->supply.vqmmc);
Guennadi Liakhovetski619b08d2013-02-15 16:14:00 +0100932 udelay(200);
933 }
Guennadi Liakhovetski6d1d6b42013-07-08 11:38:09 +0200934
935 if (ret < 0)
936 dev_dbg(&host->pdev->dev, "Regulators failed to power up: %d\n",
937 ret);
Guennadi Liakhovetski619b08d2013-02-15 16:14:00 +0100938}
939
940static void tmio_mmc_power_off(struct tmio_mmc_host *host)
Guennadi Liakhovetskib958a672012-06-20 19:10:33 +0200941{
942 struct mmc_host *mmc = host->mmc;
943
Guennadi Liakhovetski619b08d2013-02-15 16:14:00 +0100944 if (!IS_ERR(mmc->supply.vqmmc))
945 regulator_disable(mmc->supply.vqmmc);
946
Guennadi Liakhovetskib958a672012-06-20 19:10:33 +0200947 if (!IS_ERR(mmc->supply.vmmc))
Guennadi Liakhovetski619b08d2013-02-15 16:14:00 +0100948 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, 0);
Chris Ball9d731e72013-09-06 07:29:05 -0400949
950 if (host->set_pwr)
951 host->set_pwr(host->pdev, 0);
Guennadi Liakhovetskib958a672012-06-20 19:10:33 +0200952}
953
Ulf Hansson9ae4ed72013-10-24 17:42:53 +0200954static void tmio_mmc_set_bus_width(struct tmio_mmc_host *host,
955 unsigned char bus_width)
956{
Wolfram Sang0bc0b6e2016-09-19 22:57:48 +0200957 u16 reg = sd_ctrl_read16(host, CTL_SD_MEM_CARD_OPT)
958 & ~(CARD_OPT_WIDTH | CARD_OPT_WIDTH8);
959
960 /* reg now applies to MMC_BUS_WIDTH_4 */
961 if (bus_width == MMC_BUS_WIDTH_1)
962 reg |= CARD_OPT_WIDTH;
963 else if (bus_width == MMC_BUS_WIDTH_8)
964 reg |= CARD_OPT_WIDTH8;
965
966 sd_ctrl_write16(host, CTL_SD_MEM_CARD_OPT, reg);
Ulf Hansson9ae4ed72013-10-24 17:42:53 +0200967}
968
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100969/* Set MMC clock / power.
970 * Note: This controller uses a simple divider scheme therefore it cannot
971 * run a MMC card at full speed (20MHz). The max clock is 24MHz on SD, but as
972 * MMC wont run that fast, it has to be clocked at 12MHz which is the next
973 * slowest setting.
974 */
975static void tmio_mmc_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
976{
977 struct tmio_mmc_host *host = mmc_priv(mmc);
Guennadi Liakhovetski4932bd62012-02-09 22:57:16 +0100978 struct device *dev = &host->pdev->dev;
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000979 unsigned long flags;
980
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +0200981 mutex_lock(&host->ios_lock);
982
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000983 spin_lock_irqsave(&host->lock, flags);
984 if (host->mrq) {
985 if (IS_ERR(host->mrq)) {
Guennadi Liakhovetski4932bd62012-02-09 22:57:16 +0100986 dev_dbg(dev,
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000987 "%s.%d: concurrent .set_ios(), clk %u, mode %u\n",
988 current->comm, task_pid_nr(current),
989 ios->clock, ios->power_mode);
990 host->mrq = ERR_PTR(-EINTR);
991 } else {
Guennadi Liakhovetski4932bd62012-02-09 22:57:16 +0100992 dev_dbg(dev,
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000993 "%s.%d: CMD%u active since %lu, now %lu!\n",
994 current->comm, task_pid_nr(current),
995 host->mrq->cmd->opcode, host->last_req_ts, jiffies);
996 }
997 spin_unlock_irqrestore(&host->lock, flags);
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +0200998
999 mutex_unlock(&host->ios_lock);
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +00001000 return;
1001 }
1002
1003 host->mrq = ERR_PTR(-EBUSY);
1004
1005 spin_unlock_irqrestore(&host->lock, flags);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001006
Ulf Hansson3b292bb2013-10-24 17:53:15 +02001007 switch (ios->power_mode) {
1008 case MMC_POWER_OFF:
1009 tmio_mmc_power_off(host);
1010 tmio_mmc_clk_stop(host);
1011 break;
1012 case MMC_POWER_UP:
Ulf Hansson3b292bb2013-10-24 17:53:15 +02001013 tmio_mmc_power_on(host, ios->vdd);
Wolfram Sang7fbc0302016-04-01 17:44:34 +02001014 tmio_mmc_set_clock(host, ios->clock);
Ulf Hansson9ae4ed72013-10-24 17:42:53 +02001015 tmio_mmc_set_bus_width(host, ios->bus_width);
Ulf Hansson3b292bb2013-10-24 17:53:15 +02001016 break;
1017 case MMC_POWER_ON:
1018 tmio_mmc_set_clock(host, ios->clock);
Ulf Hansson3b292bb2013-10-24 17:53:15 +02001019 tmio_mmc_set_bus_width(host, ios->bus_width);
1020 break;
1021 }
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001022
1023 /* Let things settle. delay taken from winCE driver */
1024 udelay(140);
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +00001025 if (PTR_ERR(host->mrq) == -EINTR)
1026 dev_dbg(&host->pdev->dev,
1027 "%s.%d: IOS interrupted: clk %u, mode %u",
1028 current->comm, task_pid_nr(current),
1029 ios->clock, ios->power_mode);
1030 host->mrq = NULL;
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +02001031
Ulf Hanssonae12d252013-10-30 00:16:17 +01001032 host->clk_cache = ios->clock;
1033
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +02001034 mutex_unlock(&host->ios_lock);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001035}
1036
1037static int tmio_mmc_get_ro(struct mmc_host *mmc)
1038{
1039 struct tmio_mmc_host *host = mmc_priv(mmc);
1040 struct tmio_mmc_data *pdata = host->pdata;
Guennadi Liakhovetski3071caf2012-05-01 17:11:56 +02001041 int ret = mmc_gpio_get_ro(mmc);
1042 if (ret >= 0)
1043 return ret;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001044
Ulf Hansson03694832013-10-24 16:42:33 +02001045 ret = !((pdata->flags & TMIO_MMC_WRPROTECT_DISABLE) ||
Wolfram Sang2c545062016-04-27 18:51:23 +02001046 (sd_ctrl_read16_and_16_as_32(host, CTL_STATUS) & TMIO_STAT_WRPROTECT));
Ulf Hansson03694832013-10-24 16:42:33 +02001047
1048 return ret;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001049}
1050
Kuninori Morimotobbf02082014-09-08 23:45:25 -07001051static int tmio_multi_io_quirk(struct mmc_card *card,
1052 unsigned int direction, int blk_size)
1053{
1054 struct tmio_mmc_host *host = mmc_priv(card->host);
Kuninori Morimotobbf02082014-09-08 23:45:25 -07001055
Kuninori Morimoto85c02dd2015-01-13 04:58:10 +00001056 if (host->multi_io_quirk)
1057 return host->multi_io_quirk(card, direction, blk_size);
Kuninori Morimotobbf02082014-09-08 23:45:25 -07001058
1059 return blk_size;
1060}
1061
Wolfram Sang452e5ee2016-04-01 17:44:33 +02001062static struct mmc_host_ops tmio_mmc_ops = {
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001063 .request = tmio_mmc_request,
1064 .set_ios = tmio_mmc_set_ios,
1065 .get_ro = tmio_mmc_get_ro,
Laurent Pinchart2b63b342013-08-08 12:38:43 +02001066 .get_cd = mmc_gpio_get_cd,
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001067 .enable_sdio_irq = tmio_mmc_enable_sdio_irq,
Kuninori Morimotobbf02082014-09-08 23:45:25 -07001068 .multi_io_quirk = tmio_multi_io_quirk,
Ai Kyusee8f36b52016-11-03 15:16:02 +01001069 .hw_reset = tmio_mmc_hw_reset,
Ai Kyuse4f119972016-11-03 15:16:03 +01001070 .execute_tuning = tmio_mmc_execute_tuning,
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001071};
1072
Kuninori Morimoto05fae4a2013-11-20 00:30:39 -08001073static int tmio_mmc_init_ocr(struct tmio_mmc_host *host)
Guennadi Liakhovetskib958a672012-06-20 19:10:33 +02001074{
1075 struct tmio_mmc_data *pdata = host->pdata;
1076 struct mmc_host *mmc = host->mmc;
1077
1078 mmc_regulator_get_supply(mmc);
1079
Kuninori Morimoto05fae4a2013-11-20 00:30:39 -08001080 /* use ocr_mask if no regulator */
Guennadi Liakhovetskib958a672012-06-20 19:10:33 +02001081 if (!mmc->ocr_avail)
Kuninori Morimoto05fae4a2013-11-20 00:30:39 -08001082 mmc->ocr_avail = pdata->ocr_mask;
1083
1084 /*
1085 * try again.
1086 * There is possibility that regulator has not been probed
1087 */
1088 if (!mmc->ocr_avail)
1089 return -EPROBE_DEFER;
1090
1091 return 0;
Guennadi Liakhovetskib958a672012-06-20 19:10:33 +02001092}
1093
Guennadi Liakhovetski5a00a972013-02-15 16:13:56 +01001094static void tmio_mmc_of_parse(struct platform_device *pdev,
1095 struct tmio_mmc_data *pdata)
1096{
1097 const struct device_node *np = pdev->dev.of_node;
1098 if (!np)
1099 return;
1100
1101 if (of_get_property(np, "toshiba,mmc-wrprotect-disable", NULL))
1102 pdata->flags |= TMIO_MMC_WRPROTECT_DISABLE;
1103}
1104
Kuninori Morimoto94b110a2015-01-13 04:57:22 +00001105struct tmio_mmc_host*
1106tmio_mmc_host_alloc(struct platform_device *pdev)
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001107{
Kuninori Morimoto94b110a2015-01-13 04:57:22 +00001108 struct tmio_mmc_host *host;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001109 struct mmc_host *mmc;
Kuninori Morimoto94b110a2015-01-13 04:57:22 +00001110
1111 mmc = mmc_alloc_host(sizeof(struct tmio_mmc_host), &pdev->dev);
1112 if (!mmc)
1113 return NULL;
1114
1115 host = mmc_priv(mmc);
1116 host->mmc = mmc;
1117 host->pdev = pdev;
1118
1119 return host;
1120}
1121EXPORT_SYMBOL(tmio_mmc_host_alloc);
1122
1123void tmio_mmc_host_free(struct tmio_mmc_host *host)
1124{
1125 mmc_free_host(host->mmc);
Kuninori Morimoto94b110a2015-01-13 04:57:22 +00001126}
1127EXPORT_SYMBOL(tmio_mmc_host_free);
1128
1129int tmio_mmc_host_probe(struct tmio_mmc_host *_host,
1130 struct tmio_mmc_data *pdata)
1131{
1132 struct platform_device *pdev = _host->pdev;
1133 struct mmc_host *mmc = _host->mmc;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001134 struct resource *res_ctl;
1135 int ret;
1136 u32 irq_mask = TMIO_MASK_CMD;
1137
Guennadi Liakhovetski5a00a972013-02-15 16:13:56 +01001138 tmio_mmc_of_parse(pdev, pdata);
1139
Guennadi Liakhovetski7b952132013-02-15 16:13:50 +01001140 if (!(pdata->flags & TMIO_MMC_HAS_IDLE_WAIT))
Kuninori Morimotodfe9a222015-01-13 04:57:42 +00001141 _host->write16_hook = NULL;
Guennadi Liakhovetski7b952132013-02-15 16:13:50 +01001142
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001143 res_ctl = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1144 if (!res_ctl)
1145 return -EINVAL;
1146
Simon Baatz274a7522013-06-09 22:14:13 +02001147 ret = mmc_of_parse(mmc);
1148 if (ret < 0)
1149 goto host_free;
Guennadi Liakhovetski5a00a972013-02-15 16:13:56 +01001150
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001151 _host->pdata = pdata;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001152 platform_set_drvdata(pdev, mmc);
1153
Chris Ball9d731e72013-09-06 07:29:05 -04001154 _host->set_pwr = pdata->set_pwr;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001155 _host->set_clk_div = pdata->set_clk_div;
1156
Kuninori Morimoto05fae4a2013-11-20 00:30:39 -08001157 ret = tmio_mmc_init_ocr(_host);
1158 if (ret < 0)
1159 goto host_free;
1160
Ian Molton7df56bb2015-04-27 00:01:17 +01001161 _host->ctl = devm_ioremap(&pdev->dev,
1162 res_ctl->start, resource_size(res_ctl));
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001163 if (!_host->ctl) {
1164 ret = -ENOMEM;
1165 goto host_free;
1166 }
1167
Wolfram Sang6a4679f2016-08-24 11:34:37 +02001168 tmio_mmc_ops.card_busy = _host->card_busy;
Wolfram Sang452e5ee2016-04-01 17:44:33 +02001169 tmio_mmc_ops.start_signal_voltage_switch = _host->start_signal_voltage_switch;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001170 mmc->ops = &tmio_mmc_ops;
Wolfram Sang452e5ee2016-04-01 17:44:33 +02001171
Guennadi Liakhovetski5a00a972013-02-15 16:13:56 +01001172 mmc->caps |= MMC_CAP_4_BIT_DATA | pdata->capabilities;
Kuninori Morimotodd006b32013-11-20 00:16:14 -08001173 mmc->caps2 |= pdata->capabilities2;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001174 mmc->max_segs = 32;
1175 mmc->max_blk_size = 512;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001176 mmc->max_blk_count = (PAGE_SIZE / mmc->max_blk_size) *
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001177 mmc->max_segs;
1178 mmc->max_req_size = mmc->max_blk_size * mmc->max_blk_count;
1179 mmc->max_seg_size = mmc->max_req_size;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001180
Guennadi Liakhovetskic8be24c2012-02-09 22:57:09 +01001181 _host->native_hotplug = !(pdata->flags & TMIO_MMC_USE_GPIO_CD ||
Guennadi Liakhovetski2b1ac5c2012-02-09 22:57:08 +01001182 mmc->caps & MMC_CAP_NEEDS_POLL ||
Jaehoon Chung860951c2016-06-21 10:13:26 +09001183 !mmc_card_is_removable(mmc) ||
Guennadi Liakhovetski5a00a972013-02-15 16:13:56 +01001184 mmc->slot.cd_irq >= 0);
Guennadi Liakhovetski2b1ac5c2012-02-09 22:57:08 +01001185
Wolfram Sang0bc0b6e2016-09-19 22:57:48 +02001186 /*
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
Ben Hutchings2fb55952016-04-01 17:44:32 +02001195 if (tmio_mmc_clk_enable(_host) < 0) {
Guennadi Liakhovetski8c102a92012-06-20 19:10:31 +02001196 mmc->f_max = pdata->hclk;
1197 mmc->f_min = mmc->f_max / 512;
1198 }
1199
Bastian Hechtcbb18b32011-12-23 23:03:13 +01001200 /*
Sergei Shtylyovbb98d9d2014-09-18 23:33:49 +04001201 * 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 ret = -EINVAL;
1206 goto host_free;
1207 }
1208
1209 /*
Ulf Hansson03694832013-10-24 16:42:33 +02001210 * While using internal tmio hardware logic for card detection, we need
1211 * to ensure it stays powered for it to work.
Bastian Hechtcbb18b32011-12-23 23:03:13 +01001212 */
Guennadi Liakhovetski2b1ac5c2012-02-09 22:57:08 +01001213 if (_host->native_hotplug)
Bastian Hechtcbb18b32011-12-23 23:03:13 +01001214 pm_runtime_get_noresume(&pdev->dev);
1215
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001216 tmio_mmc_clk_stop(_host);
1217 tmio_mmc_reset(_host);
1218
Wolfram Sang2c545062016-04-27 18:51:23 +02001219 _host->sdcard_irq_mask = sd_ctrl_read16_and_16_as_32(_host, CTL_IRQ_MASK);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001220 tmio_mmc_disable_mmc_irqs(_host, TMIO_MASK_ALL);
Guennadi Liakhovetskie0337cc2012-06-20 19:10:30 +02001221
1222 /* Unmask the IRQs we want to know about */
1223 if (!_host->chan_rx)
1224 irq_mask |= TMIO_MASK_READOP;
1225 if (!_host->chan_tx)
1226 irq_mask |= TMIO_MASK_WRITEOP;
1227 if (!_host->native_hotplug)
1228 irq_mask &= ~(TMIO_STAT_CARD_REMOVE | TMIO_STAT_CARD_INSERT);
1229
1230 _host->sdcard_irq_mask &= ~irq_mask;
1231
Ulf Hansson7501c432013-10-24 15:58:45 +02001232 _host->sdio_irq_enabled = false;
1233 if (pdata->flags & TMIO_MMC_SDIO_IRQ) {
1234 _host->sdio_irq_mask = TMIO_SDIO_MASK_ALL;
1235 sd_ctrl_write16(_host, CTL_SDIO_IRQ_MASK, _host->sdio_irq_mask);
1236 sd_ctrl_write16(_host, CTL_TRANSACTION_CTL, 0x0000);
1237 }
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001238
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001239 spin_lock_init(&_host->lock);
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +02001240 mutex_init(&_host->ios_lock);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001241
1242 /* Init delayed work for request timeouts */
1243 INIT_DELAYED_WORK(&_host->delayed_reset_work, tmio_mmc_reset_work);
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +02001244 INIT_WORK(&_host->done, tmio_mmc_done_work);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001245
1246 /* See if we also get DMA */
1247 tmio_mmc_request_dma(_host, pdata);
1248
Ulf Hansson03694832013-10-24 16:42:33 +02001249 pm_runtime_set_active(&pdev->dev);
1250 pm_runtime_set_autosuspend_delay(&pdev->dev, 50);
1251 pm_runtime_use_autosuspend(&pdev->dev);
1252 pm_runtime_enable(&pdev->dev);
1253
Guennadi Liakhovetski8c102a92012-06-20 19:10:31 +02001254 ret = mmc_add_host(mmc);
Guennadi Liakhovetski8c102a92012-06-20 19:10:31 +02001255 if (ret < 0) {
1256 tmio_mmc_host_remove(_host);
1257 return ret;
1258 }
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001259
Rafael J. Wysockic419e612012-03-13 01:01:51 +01001260 dev_pm_qos_expose_latency_limit(&pdev->dev, 100);
1261
Guennadi Liakhovetskic8be24c2012-02-09 22:57:09 +01001262 if (pdata->flags & TMIO_MMC_USE_GPIO_CD) {
Laurent Pinchart214fc302013-08-08 12:38:31 +02001263 ret = mmc_gpio_request_cd(mmc, pdata->cd_gpio, 0);
Guennadi Liakhovetskic8be24c2012-02-09 22:57:09 +01001264 if (ret < 0) {
1265 tmio_mmc_host_remove(_host);
1266 return ret;
1267 }
Stephen Warrend4d11442014-09-22 09:57:42 -06001268 mmc_gpiod_request_cd_irq(mmc);
Guennadi Liakhovetskic8be24c2012-02-09 22:57:09 +01001269 }
1270
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001271 return 0;
1272
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001273host_free:
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001274
1275 return ret;
1276}
1277EXPORT_SYMBOL(tmio_mmc_host_probe);
1278
1279void tmio_mmc_host_remove(struct tmio_mmc_host *host)
1280{
Guennadi Liakhovetskie6ee7182011-05-05 16:13:12 +00001281 struct platform_device *pdev = host->pdev;
Guennadi Liakhovetskic8be24c2012-02-09 22:57:09 +01001282 struct mmc_host *mmc = host->mmc;
Guennadi Liakhovetskie6ee7182011-05-05 16:13:12 +00001283
Guennadi Liakhovetski2b1ac5c2012-02-09 22:57:08 +01001284 if (!host->native_hotplug)
Guennadi Liakhovetski7311bef2011-05-11 16:51:11 +00001285 pm_runtime_get_sync(&pdev->dev);
1286
Rafael J. Wysockic419e612012-03-13 01:01:51 +01001287 dev_pm_qos_hide_latency_limit(&pdev->dev);
1288
Guennadi Liakhovetskic8be24c2012-02-09 22:57:09 +01001289 mmc_remove_host(mmc);
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +02001290 cancel_work_sync(&host->done);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001291 cancel_delayed_work_sync(&host->delayed_reset_work);
1292 tmio_mmc_release_dma(host);
Guennadi Liakhovetskie6ee7182011-05-05 16:13:12 +00001293
Guennadi Liakhovetskie6ee7182011-05-05 16:13:12 +00001294 pm_runtime_put_sync(&pdev->dev);
1295 pm_runtime_disable(&pdev->dev);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001296}
1297EXPORT_SYMBOL(tmio_mmc_host_remove);
1298
Ulf Hansson9ade7db2014-08-25 12:03:20 +02001299#ifdef CONFIG_PM
Guennadi Liakhovetski7311bef2011-05-11 16:51:11 +00001300int tmio_mmc_host_runtime_suspend(struct device *dev)
1301{
Ulf Hanssonae12d252013-10-30 00:16:17 +01001302 struct mmc_host *mmc = dev_get_drvdata(dev);
1303 struct tmio_mmc_host *host = mmc_priv(mmc);
1304
Ulf Hansson20e955c2014-08-25 11:55:57 +02001305 tmio_mmc_disable_mmc_irqs(host, TMIO_MASK_ALL);
1306
Ulf Hanssonae12d252013-10-30 00:16:17 +01001307 if (host->clk_cache)
1308 tmio_mmc_clk_stop(host);
1309
Kuninori Morimoto00452c12015-01-13 04:58:01 +00001310 if (host->clk_disable)
Ben Hutchings0ea28212016-04-01 17:44:31 +02001311 host->clk_disable(host);
Ulf Hanssonae12d252013-10-30 00:16:17 +01001312
Guennadi Liakhovetski7311bef2011-05-11 16:51:11 +00001313 return 0;
1314}
1315EXPORT_SYMBOL(tmio_mmc_host_runtime_suspend);
1316
Ai Kyuse4f119972016-11-03 15:16:03 +01001317static bool tmio_mmc_can_retune(struct tmio_mmc_host *host)
1318{
1319 return host->tap_num && mmc_can_retune(host->mmc);
1320}
1321
Guennadi Liakhovetski7311bef2011-05-11 16:51:11 +00001322int tmio_mmc_host_runtime_resume(struct device *dev)
1323{
1324 struct mmc_host *mmc = dev_get_drvdata(dev);
1325 struct tmio_mmc_host *host = mmc_priv(mmc);
Guennadi Liakhovetski7311bef2011-05-11 16:51:11 +00001326
Ulf Hanssonae12d252013-10-30 00:16:17 +01001327 tmio_mmc_reset(host);
Ben Hutchings2fb55952016-04-01 17:44:32 +02001328 tmio_mmc_clk_enable(host);
Ulf Hanssonae12d252013-10-30 00:16:17 +01001329
Wolfram Sang7fbc0302016-04-01 17:44:34 +02001330 if (host->clk_cache)
Ulf Hanssonae12d252013-10-30 00:16:17 +01001331 tmio_mmc_set_clock(host, host->clk_cache);
Ulf Hanssonae12d252013-10-30 00:16:17 +01001332
Guennadi Liakhovetski162f43e2011-07-14 18:39:10 +02001333 tmio_mmc_enable_dma(host, true);
Guennadi Liakhovetski7311bef2011-05-11 16:51:11 +00001334
Ai Kyuse4f119972016-11-03 15:16:03 +01001335 if (tmio_mmc_can_retune(host) && host->select_tuning(host))
1336 dev_warn(&host->pdev->dev, "Tuning selection failed\n");
1337
Guennadi Liakhovetski7311bef2011-05-11 16:51:11 +00001338 return 0;
1339}
1340EXPORT_SYMBOL(tmio_mmc_host_runtime_resume);
Ulf Hansson710dec92013-10-23 14:55:07 +02001341#endif
Guennadi Liakhovetski7311bef2011-05-11 16:51:11 +00001342
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001343MODULE_LICENSE("GPL v2");