blob: 6e1acb628edc9412fd7e68500ab623cb97824c0e [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 Sange4f38eb2017-01-19 21:07:16 +0100712static void __tmio_mmc_sdio_irq(struct tmio_mmc_host *host)
Simon Horman7729c7a2011-08-25 10:27:26 +0900713{
Simon Horman7729c7a2011-08-25 10:27:26 +0900714 struct mmc_host *mmc = host->mmc;
715 struct tmio_mmc_data *pdata = host->pdata;
716 unsigned int ireg, status;
Shinobu Uehara6b987572014-08-24 20:00:52 -0700717 unsigned int sdio_status;
Simon Horman7729c7a2011-08-25 10:27:26 +0900718
719 if (!(pdata->flags & TMIO_MMC_SDIO_IRQ))
Wolfram Sang4da98672016-04-26 17:55:24 +0200720 return;
Simon Horman7729c7a2011-08-25 10:27:26 +0900721
722 status = sd_ctrl_read16(host, CTL_SDIO_STATUS);
Wolfram Sang0c4bf5b2016-11-13 15:29:11 +0100723 ireg = status & TMIO_SDIO_MASK_ALL & ~host->sdio_irq_mask;
Simon Horman7729c7a2011-08-25 10:27:26 +0900724
Shinobu Uehara6b987572014-08-24 20:00:52 -0700725 sdio_status = status & ~TMIO_SDIO_MASK_ALL;
Wolfram Sang20dd0372017-01-19 21:07:17 +0100726 if (pdata->flags & TMIO_MMC_SDIO_STATUS_SETBITS)
Shinobu Uehara6b987572014-08-24 20:00:52 -0700727 sdio_status |= 6;
728
729 sd_ctrl_write16(host, CTL_SDIO_STATUS, sdio_status);
Simon Horman7729c7a2011-08-25 10:27:26 +0900730
731 if (mmc->caps & MMC_CAP_SDIO_IRQ && ireg & TMIO_SDIO_STAT_IOIRQ)
732 mmc_signal_sdio_irq(mmc);
Simon Horman7729c7a2011-08-25 10:27:26 +0900733}
Simon Horman7729c7a2011-08-25 10:27:26 +0900734
735irqreturn_t tmio_mmc_irq(int irq, void *devid)
736{
737 struct tmio_mmc_host *host = devid;
738 unsigned int ireg, status;
739
Wolfram Sang2c545062016-04-27 18:51:23 +0200740 status = sd_ctrl_read16_and_16_as_32(host, CTL_STATUS);
Wolfram Sang95840122016-04-26 17:55:25 +0200741 ireg = status & TMIO_MASK_IRQ & ~host->sdcard_irq_mask;
Simon Horman7729c7a2011-08-25 10:27:26 +0900742
Wolfram Sang95840122016-04-26 17:55:25 +0200743 pr_debug_status(status);
744 pr_debug_status(ireg);
745
746 /* Clear the status except the interrupt status */
Wolfram Sang2c545062016-04-27 18:51:23 +0200747 sd_ctrl_write32_as_16_and_16(host, CTL_STATUS, TMIO_MASK_IRQ);
Wolfram Sang95840122016-04-26 17:55:25 +0200748
Simon Horman7729c7a2011-08-25 10:27:26 +0900749 if (__tmio_mmc_card_detect_irq(host, ireg, status))
750 return IRQ_HANDLED;
751 if (__tmio_mmc_sdcard_irq(host, ireg, status))
752 return IRQ_HANDLED;
753
Wolfram Sange4f38eb2017-01-19 21:07:16 +0100754 __tmio_mmc_sdio_irq(host);
Simon Horman7729c7a2011-08-25 10:27:26 +0900755
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100756 return IRQ_HANDLED;
757}
Magnus Damm8e7bfdb2011-05-06 11:02:33 +0000758EXPORT_SYMBOL(tmio_mmc_irq);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100759
760static int tmio_mmc_start_data(struct tmio_mmc_host *host,
761 struct mmc_data *data)
762{
763 struct tmio_mmc_data *pdata = host->pdata;
764
765 pr_debug("setup data transfer: blocksize %08x nr_blocks %d\n",
766 data->blksz, data->blocks);
767
Wolfram Sang0bc0b6e2016-09-19 22:57:48 +0200768 /* Some hardware cannot perform 2 byte requests in 4/8 bit mode */
769 if (host->mmc->ios.bus_width == MMC_BUS_WIDTH_4 ||
770 host->mmc->ios.bus_width == MMC_BUS_WIDTH_8) {
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100771 int blksz_2bytes = pdata->flags & TMIO_MMC_BLKSZ_2BYTES;
772
773 if (data->blksz < 2 || (data->blksz < 4 && !blksz_2bytes)) {
Wolfram Sang0bc0b6e2016-09-19 22:57:48 +0200774 pr_err("%s: %d byte block unsupported in 4/8 bit mode\n",
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100775 mmc_hostname(host->mmc), data->blksz);
776 return -EINVAL;
777 }
778 }
779
780 tmio_mmc_init_sg(host, data);
781 host->data = data;
782
783 /* Set transfer length / blocksize */
784 sd_ctrl_write16(host, CTL_SD_XFER_LEN, data->blksz);
785 sd_ctrl_write16(host, CTL_XFER_BLK_COUNT, data->blocks);
786
787 tmio_mmc_start_dma(host, data);
788
789 return 0;
790}
791
Ai Kyusee8f36b52016-11-03 15:16:02 +0100792static void tmio_mmc_hw_reset(struct mmc_host *mmc)
793{
794 struct tmio_mmc_host *host = mmc_priv(mmc);
795
796 if (host->hw_reset)
797 host->hw_reset(host);
798}
799
Ai Kyuse4f119972016-11-03 15:16:03 +0100800static int tmio_mmc_execute_tuning(struct mmc_host *mmc, u32 opcode)
801{
802 struct tmio_mmc_host *host = mmc_priv(mmc);
803 int i, ret = 0;
804
805 if (!host->tap_num) {
806 if (!host->init_tuning || !host->select_tuning)
807 /* Tuning is not supported */
808 goto out;
809
810 host->tap_num = host->init_tuning(host);
811 if (!host->tap_num)
812 /* Tuning is not supported */
813 goto out;
814 }
815
816 if (host->tap_num * 2 >= sizeof(host->taps) * BITS_PER_BYTE) {
817 dev_warn_once(&host->pdev->dev,
818 "Too many taps, skipping tuning. Please consider updating size of taps field of tmio_mmc_host\n");
819 goto out;
820 }
821
822 bitmap_zero(host->taps, host->tap_num * 2);
823
824 /* Issue CMD19 twice for each tap */
825 for (i = 0; i < 2 * host->tap_num; i++) {
826 if (host->prepare_tuning)
827 host->prepare_tuning(host, i % host->tap_num);
828
829 ret = mmc_send_tuning(mmc, opcode, NULL);
830 if (ret && ret != -EILSEQ)
831 goto out;
832 if (ret == 0)
833 set_bit(i, host->taps);
834
835 mdelay(1);
836 }
837
838 ret = host->select_tuning(host);
839
840out:
841 if (ret < 0) {
842 dev_warn(&host->pdev->dev, "Tuning procedure failed\n");
843 tmio_mmc_hw_reset(mmc);
844 }
845
846 return ret;
847}
848
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100849/* Process requests from the MMC layer */
850static void tmio_mmc_request(struct mmc_host *mmc, struct mmc_request *mrq)
851{
852 struct tmio_mmc_host *host = mmc_priv(mmc);
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000853 unsigned long flags;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100854 int ret;
855
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000856 spin_lock_irqsave(&host->lock, flags);
857
858 if (host->mrq) {
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100859 pr_debug("request not null\n");
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000860 if (IS_ERR(host->mrq)) {
861 spin_unlock_irqrestore(&host->lock, flags);
862 mrq->cmd->error = -EAGAIN;
863 mmc_request_done(mmc, mrq);
864 return;
865 }
866 }
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100867
868 host->last_req_ts = jiffies;
869 wmb();
870 host->mrq = mrq;
871
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000872 spin_unlock_irqrestore(&host->lock, flags);
873
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100874 if (mrq->data) {
875 ret = tmio_mmc_start_data(host, mrq->data);
876 if (ret)
877 goto fail;
878 }
879
880 ret = tmio_mmc_start_command(host, mrq->cmd);
881 if (!ret) {
882 schedule_delayed_work(&host->delayed_reset_work,
Takeshi Kihara0df9d2e2015-07-20 01:39:59 +0900883 msecs_to_jiffies(CMDREQ_TIMEOUT));
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100884 return;
885 }
886
887fail:
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100888 host->force_pio = false;
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000889 host->mrq = NULL;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100890 mrq->cmd->error = ret;
891 mmc_request_done(mmc, mrq);
892}
893
Ben Hutchings2fb55952016-04-01 17:44:32 +0200894static int tmio_mmc_clk_enable(struct tmio_mmc_host *host)
Guennadi Liakhovetski8c102a92012-06-20 19:10:31 +0200895{
Kuninori Morimoto4fe2ec52015-01-13 04:57:52 +0000896 if (!host->clk_enable)
Guennadi Liakhovetski8c102a92012-06-20 19:10:31 +0200897 return -ENOTSUPP;
898
Ben Hutchings2fb55952016-04-01 17:44:32 +0200899 return host->clk_enable(host);
Guennadi Liakhovetski8c102a92012-06-20 19:10:31 +0200900}
901
Wolfram Sangdfcba5f2017-01-17 21:26:01 +0100902static void tmio_mmc_clk_disable(struct tmio_mmc_host *host)
903{
904 if (host->clk_disable)
905 host->clk_disable(host);
906}
907
Guennadi Liakhovetski619b08d2013-02-15 16:14:00 +0100908static void tmio_mmc_power_on(struct tmio_mmc_host *host, unsigned short vdd)
909{
910 struct mmc_host *mmc = host->mmc;
911 int ret = 0;
912
913 /* .set_ios() is returning void, so, no chance to report an error */
914
Chris Ball9d731e72013-09-06 07:29:05 -0400915 if (host->set_pwr)
916 host->set_pwr(host->pdev, 1);
917
Guennadi Liakhovetski619b08d2013-02-15 16:14:00 +0100918 if (!IS_ERR(mmc->supply.vmmc)) {
919 ret = mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, vdd);
920 /*
921 * Attention: empiric value. With a b43 WiFi SDIO card this
922 * delay proved necessary for reliable card-insertion probing.
923 * 100us were not enough. Is this the same 140us delay, as in
924 * tmio_mmc_set_ios()?
925 */
926 udelay(200);
927 }
928 /*
929 * It seems, VccQ should be switched on after Vcc, this is also what the
930 * omap_hsmmc.c driver does.
931 */
932 if (!IS_ERR(mmc->supply.vqmmc) && !ret) {
Guennadi Liakhovetski6d1d6b42013-07-08 11:38:09 +0200933 ret = regulator_enable(mmc->supply.vqmmc);
Guennadi Liakhovetski619b08d2013-02-15 16:14:00 +0100934 udelay(200);
935 }
Guennadi Liakhovetski6d1d6b42013-07-08 11:38:09 +0200936
937 if (ret < 0)
938 dev_dbg(&host->pdev->dev, "Regulators failed to power up: %d\n",
939 ret);
Guennadi Liakhovetski619b08d2013-02-15 16:14:00 +0100940}
941
942static void tmio_mmc_power_off(struct tmio_mmc_host *host)
Guennadi Liakhovetskib958a672012-06-20 19:10:33 +0200943{
944 struct mmc_host *mmc = host->mmc;
945
Guennadi Liakhovetski619b08d2013-02-15 16:14:00 +0100946 if (!IS_ERR(mmc->supply.vqmmc))
947 regulator_disable(mmc->supply.vqmmc);
948
Guennadi Liakhovetskib958a672012-06-20 19:10:33 +0200949 if (!IS_ERR(mmc->supply.vmmc))
Guennadi Liakhovetski619b08d2013-02-15 16:14:00 +0100950 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, 0);
Chris Ball9d731e72013-09-06 07:29:05 -0400951
952 if (host->set_pwr)
953 host->set_pwr(host->pdev, 0);
Guennadi Liakhovetskib958a672012-06-20 19:10:33 +0200954}
955
Ulf Hansson9ae4ed72013-10-24 17:42:53 +0200956static void tmio_mmc_set_bus_width(struct tmio_mmc_host *host,
957 unsigned char bus_width)
958{
Wolfram Sang0bc0b6e2016-09-19 22:57:48 +0200959 u16 reg = sd_ctrl_read16(host, CTL_SD_MEM_CARD_OPT)
960 & ~(CARD_OPT_WIDTH | CARD_OPT_WIDTH8);
961
962 /* reg now applies to MMC_BUS_WIDTH_4 */
963 if (bus_width == MMC_BUS_WIDTH_1)
964 reg |= CARD_OPT_WIDTH;
965 else if (bus_width == MMC_BUS_WIDTH_8)
966 reg |= CARD_OPT_WIDTH8;
967
968 sd_ctrl_write16(host, CTL_SD_MEM_CARD_OPT, reg);
Ulf Hansson9ae4ed72013-10-24 17:42:53 +0200969}
970
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100971/* Set MMC clock / power.
972 * Note: This controller uses a simple divider scheme therefore it cannot
973 * run a MMC card at full speed (20MHz). The max clock is 24MHz on SD, but as
974 * MMC wont run that fast, it has to be clocked at 12MHz which is the next
975 * slowest setting.
976 */
977static void tmio_mmc_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
978{
979 struct tmio_mmc_host *host = mmc_priv(mmc);
Guennadi Liakhovetski4932bd62012-02-09 22:57:16 +0100980 struct device *dev = &host->pdev->dev;
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000981 unsigned long flags;
982
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +0200983 mutex_lock(&host->ios_lock);
984
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000985 spin_lock_irqsave(&host->lock, flags);
986 if (host->mrq) {
987 if (IS_ERR(host->mrq)) {
Guennadi Liakhovetski4932bd62012-02-09 22:57:16 +0100988 dev_dbg(dev,
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000989 "%s.%d: concurrent .set_ios(), clk %u, mode %u\n",
990 current->comm, task_pid_nr(current),
991 ios->clock, ios->power_mode);
992 host->mrq = ERR_PTR(-EINTR);
993 } else {
Guennadi Liakhovetski4932bd62012-02-09 22:57:16 +0100994 dev_dbg(dev,
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000995 "%s.%d: CMD%u active since %lu, now %lu!\n",
996 current->comm, task_pid_nr(current),
997 host->mrq->cmd->opcode, host->last_req_ts, jiffies);
998 }
999 spin_unlock_irqrestore(&host->lock, flags);
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +02001000
1001 mutex_unlock(&host->ios_lock);
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +00001002 return;
1003 }
1004
1005 host->mrq = ERR_PTR(-EBUSY);
1006
1007 spin_unlock_irqrestore(&host->lock, flags);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001008
Ulf Hansson3b292bb2013-10-24 17:53:15 +02001009 switch (ios->power_mode) {
1010 case MMC_POWER_OFF:
1011 tmio_mmc_power_off(host);
1012 tmio_mmc_clk_stop(host);
1013 break;
1014 case MMC_POWER_UP:
Ulf Hansson3b292bb2013-10-24 17:53:15 +02001015 tmio_mmc_power_on(host, ios->vdd);
Wolfram Sang7fbc0302016-04-01 17:44:34 +02001016 tmio_mmc_set_clock(host, ios->clock);
Ulf Hansson9ae4ed72013-10-24 17:42:53 +02001017 tmio_mmc_set_bus_width(host, ios->bus_width);
Ulf Hansson3b292bb2013-10-24 17:53:15 +02001018 break;
1019 case MMC_POWER_ON:
1020 tmio_mmc_set_clock(host, ios->clock);
Ulf Hansson3b292bb2013-10-24 17:53:15 +02001021 tmio_mmc_set_bus_width(host, ios->bus_width);
1022 break;
1023 }
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001024
1025 /* Let things settle. delay taken from winCE driver */
1026 udelay(140);
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +00001027 if (PTR_ERR(host->mrq) == -EINTR)
1028 dev_dbg(&host->pdev->dev,
1029 "%s.%d: IOS interrupted: clk %u, mode %u",
1030 current->comm, task_pid_nr(current),
1031 ios->clock, ios->power_mode);
1032 host->mrq = NULL;
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +02001033
Ulf Hanssonae12d252013-10-30 00:16:17 +01001034 host->clk_cache = ios->clock;
1035
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +02001036 mutex_unlock(&host->ios_lock);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001037}
1038
1039static int tmio_mmc_get_ro(struct mmc_host *mmc)
1040{
1041 struct tmio_mmc_host *host = mmc_priv(mmc);
1042 struct tmio_mmc_data *pdata = host->pdata;
Guennadi Liakhovetski3071caf2012-05-01 17:11:56 +02001043 int ret = mmc_gpio_get_ro(mmc);
1044 if (ret >= 0)
1045 return ret;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001046
Ulf Hansson03694832013-10-24 16:42:33 +02001047 ret = !((pdata->flags & TMIO_MMC_WRPROTECT_DISABLE) ||
Wolfram Sang2c545062016-04-27 18:51:23 +02001048 (sd_ctrl_read16_and_16_as_32(host, CTL_STATUS) & TMIO_STAT_WRPROTECT));
Ulf Hansson03694832013-10-24 16:42:33 +02001049
1050 return ret;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001051}
1052
Kuninori Morimotobbf02082014-09-08 23:45:25 -07001053static int tmio_multi_io_quirk(struct mmc_card *card,
1054 unsigned int direction, int blk_size)
1055{
1056 struct tmio_mmc_host *host = mmc_priv(card->host);
Kuninori Morimotobbf02082014-09-08 23:45:25 -07001057
Kuninori Morimoto85c02dd2015-01-13 04:58:10 +00001058 if (host->multi_io_quirk)
1059 return host->multi_io_quirk(card, direction, blk_size);
Kuninori Morimotobbf02082014-09-08 23:45:25 -07001060
1061 return blk_size;
1062}
1063
Wolfram Sang452e5ee2016-04-01 17:44:33 +02001064static struct mmc_host_ops tmio_mmc_ops = {
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001065 .request = tmio_mmc_request,
1066 .set_ios = tmio_mmc_set_ios,
1067 .get_ro = tmio_mmc_get_ro,
Laurent Pinchart2b63b342013-08-08 12:38:43 +02001068 .get_cd = mmc_gpio_get_cd,
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001069 .enable_sdio_irq = tmio_mmc_enable_sdio_irq,
Kuninori Morimotobbf02082014-09-08 23:45:25 -07001070 .multi_io_quirk = tmio_multi_io_quirk,
Ai Kyusee8f36b52016-11-03 15:16:02 +01001071 .hw_reset = tmio_mmc_hw_reset,
Ai Kyuse4f119972016-11-03 15:16:03 +01001072 .execute_tuning = tmio_mmc_execute_tuning,
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001073};
1074
Kuninori Morimoto05fae4a2013-11-20 00:30:39 -08001075static int tmio_mmc_init_ocr(struct tmio_mmc_host *host)
Guennadi Liakhovetskib958a672012-06-20 19:10:33 +02001076{
1077 struct tmio_mmc_data *pdata = host->pdata;
1078 struct mmc_host *mmc = host->mmc;
1079
1080 mmc_regulator_get_supply(mmc);
1081
Kuninori Morimoto05fae4a2013-11-20 00:30:39 -08001082 /* use ocr_mask if no regulator */
Guennadi Liakhovetskib958a672012-06-20 19:10:33 +02001083 if (!mmc->ocr_avail)
Kuninori Morimoto05fae4a2013-11-20 00:30:39 -08001084 mmc->ocr_avail = pdata->ocr_mask;
1085
1086 /*
1087 * try again.
1088 * There is possibility that regulator has not been probed
1089 */
1090 if (!mmc->ocr_avail)
1091 return -EPROBE_DEFER;
1092
1093 return 0;
Guennadi Liakhovetskib958a672012-06-20 19:10:33 +02001094}
1095
Guennadi Liakhovetski5a00a972013-02-15 16:13:56 +01001096static void tmio_mmc_of_parse(struct platform_device *pdev,
1097 struct tmio_mmc_data *pdata)
1098{
1099 const struct device_node *np = pdev->dev.of_node;
1100 if (!np)
1101 return;
1102
1103 if (of_get_property(np, "toshiba,mmc-wrprotect-disable", NULL))
1104 pdata->flags |= TMIO_MMC_WRPROTECT_DISABLE;
1105}
1106
Kuninori Morimoto94b110a2015-01-13 04:57:22 +00001107struct tmio_mmc_host*
1108tmio_mmc_host_alloc(struct platform_device *pdev)
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001109{
Kuninori Morimoto94b110a2015-01-13 04:57:22 +00001110 struct tmio_mmc_host *host;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001111 struct mmc_host *mmc;
Kuninori Morimoto94b110a2015-01-13 04:57:22 +00001112
1113 mmc = mmc_alloc_host(sizeof(struct tmio_mmc_host), &pdev->dev);
1114 if (!mmc)
1115 return NULL;
1116
1117 host = mmc_priv(mmc);
1118 host->mmc = mmc;
1119 host->pdev = pdev;
1120
1121 return host;
1122}
1123EXPORT_SYMBOL(tmio_mmc_host_alloc);
1124
1125void tmio_mmc_host_free(struct tmio_mmc_host *host)
1126{
1127 mmc_free_host(host->mmc);
Kuninori Morimoto94b110a2015-01-13 04:57:22 +00001128}
1129EXPORT_SYMBOL(tmio_mmc_host_free);
1130
1131int tmio_mmc_host_probe(struct tmio_mmc_host *_host,
1132 struct tmio_mmc_data *pdata)
1133{
1134 struct platform_device *pdev = _host->pdev;
1135 struct mmc_host *mmc = _host->mmc;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001136 struct resource *res_ctl;
1137 int ret;
1138 u32 irq_mask = TMIO_MASK_CMD;
1139
Guennadi Liakhovetski5a00a972013-02-15 16:13:56 +01001140 tmio_mmc_of_parse(pdev, pdata);
1141
Guennadi Liakhovetski7b952132013-02-15 16:13:50 +01001142 if (!(pdata->flags & TMIO_MMC_HAS_IDLE_WAIT))
Kuninori Morimotodfe9a222015-01-13 04:57:42 +00001143 _host->write16_hook = NULL;
Guennadi Liakhovetski7b952132013-02-15 16:13:50 +01001144
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001145 res_ctl = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1146 if (!res_ctl)
1147 return -EINVAL;
1148
Simon Baatz274a7522013-06-09 22:14:13 +02001149 ret = mmc_of_parse(mmc);
1150 if (ret < 0)
Wolfram Sangad7014b2017-01-06 09:38:33 +01001151 return ret;
Guennadi Liakhovetski5a00a972013-02-15 16:13:56 +01001152
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001153 _host->pdata = pdata;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001154 platform_set_drvdata(pdev, mmc);
1155
Chris Ball9d731e72013-09-06 07:29:05 -04001156 _host->set_pwr = pdata->set_pwr;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001157 _host->set_clk_div = pdata->set_clk_div;
1158
Kuninori Morimoto05fae4a2013-11-20 00:30:39 -08001159 ret = tmio_mmc_init_ocr(_host);
1160 if (ret < 0)
Wolfram Sangad7014b2017-01-06 09:38:33 +01001161 return ret;
Kuninori Morimoto05fae4a2013-11-20 00:30:39 -08001162
Ian Molton7df56bb2015-04-27 00:01:17 +01001163 _host->ctl = devm_ioremap(&pdev->dev,
1164 res_ctl->start, resource_size(res_ctl));
Wolfram Sangad7014b2017-01-06 09:38:33 +01001165 if (!_host->ctl)
1166 return -ENOMEM;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001167
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 ||
Ulf Hanssonefd7be72017-01-10 16:10:52 +01001183 !mmc_card_is_removable(mmc));
Guennadi Liakhovetski2b1ac5c2012-02-09 22:57:08 +01001184
Wolfram Sang0bc0b6e2016-09-19 22:57:48 +02001185 /*
1186 * On Gen2+, eMMC with NONREMOVABLE currently fails because native
1187 * hotplug gets disabled. It seems RuntimePM related yet we need further
1188 * research. Since we are planning a PM overhaul anyway, let's enforce
1189 * for now the device being active by enabling native hotplug always.
1190 */
1191 if (pdata->flags & TMIO_MMC_MIN_RCAR2)
1192 _host->native_hotplug = true;
1193
Ben Hutchings2fb55952016-04-01 17:44:32 +02001194 if (tmio_mmc_clk_enable(_host) < 0) {
Guennadi Liakhovetski8c102a92012-06-20 19:10:31 +02001195 mmc->f_max = pdata->hclk;
1196 mmc->f_min = mmc->f_max / 512;
1197 }
1198
Bastian Hechtcbb18b32011-12-23 23:03:13 +01001199 /*
Sergei Shtylyovbb98d9d2014-09-18 23:33:49 +04001200 * Check the sanity of mmc->f_min to prevent tmio_mmc_set_clock() from
1201 * looping forever...
1202 */
Wolfram Sangad7014b2017-01-06 09:38:33 +01001203 if (mmc->f_min == 0)
1204 return -EINVAL;
Sergei Shtylyovbb98d9d2014-09-18 23:33:49 +04001205
1206 /*
Ulf Hansson03694832013-10-24 16:42:33 +02001207 * While using internal tmio hardware logic for card detection, we need
1208 * to ensure it stays powered for it to work.
Bastian Hechtcbb18b32011-12-23 23:03:13 +01001209 */
Guennadi Liakhovetski2b1ac5c2012-02-09 22:57:08 +01001210 if (_host->native_hotplug)
Bastian Hechtcbb18b32011-12-23 23:03:13 +01001211 pm_runtime_get_noresume(&pdev->dev);
1212
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001213 tmio_mmc_clk_stop(_host);
1214 tmio_mmc_reset(_host);
1215
Wolfram Sang2c545062016-04-27 18:51:23 +02001216 _host->sdcard_irq_mask = sd_ctrl_read16_and_16_as_32(_host, CTL_IRQ_MASK);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001217 tmio_mmc_disable_mmc_irqs(_host, TMIO_MASK_ALL);
Guennadi Liakhovetskie0337cc2012-06-20 19:10:30 +02001218
1219 /* Unmask the IRQs we want to know about */
1220 if (!_host->chan_rx)
1221 irq_mask |= TMIO_MASK_READOP;
1222 if (!_host->chan_tx)
1223 irq_mask |= TMIO_MASK_WRITEOP;
1224 if (!_host->native_hotplug)
1225 irq_mask &= ~(TMIO_STAT_CARD_REMOVE | TMIO_STAT_CARD_INSERT);
1226
1227 _host->sdcard_irq_mask &= ~irq_mask;
1228
Ulf Hansson7501c432013-10-24 15:58:45 +02001229 _host->sdio_irq_enabled = false;
1230 if (pdata->flags & TMIO_MMC_SDIO_IRQ) {
1231 _host->sdio_irq_mask = TMIO_SDIO_MASK_ALL;
1232 sd_ctrl_write16(_host, CTL_SDIO_IRQ_MASK, _host->sdio_irq_mask);
Wolfram Sangc51ff6c2016-12-09 17:51:41 +01001233 sd_ctrl_write16(_host, CTL_TRANSACTION_CTL, 0x0001);
Ulf Hansson7501c432013-10-24 15:58:45 +02001234 }
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001235
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001236 spin_lock_init(&_host->lock);
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +02001237 mutex_init(&_host->ios_lock);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001238
1239 /* Init delayed work for request timeouts */
1240 INIT_DELAYED_WORK(&_host->delayed_reset_work, tmio_mmc_reset_work);
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +02001241 INIT_WORK(&_host->done, tmio_mmc_done_work);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001242
1243 /* See if we also get DMA */
1244 tmio_mmc_request_dma(_host, pdata);
1245
Ulf Hansson03694832013-10-24 16:42:33 +02001246 pm_runtime_set_active(&pdev->dev);
1247 pm_runtime_set_autosuspend_delay(&pdev->dev, 50);
1248 pm_runtime_use_autosuspend(&pdev->dev);
1249 pm_runtime_enable(&pdev->dev);
1250
Guennadi Liakhovetski8c102a92012-06-20 19:10:31 +02001251 ret = mmc_add_host(mmc);
Guennadi Liakhovetski8c102a92012-06-20 19:10:31 +02001252 if (ret < 0) {
1253 tmio_mmc_host_remove(_host);
1254 return ret;
1255 }
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001256
Rafael J. Wysockic419e612012-03-13 01:01:51 +01001257 dev_pm_qos_expose_latency_limit(&pdev->dev, 100);
1258
Guennadi Liakhovetskic8be24c2012-02-09 22:57:09 +01001259 if (pdata->flags & TMIO_MMC_USE_GPIO_CD) {
Laurent Pinchart214fc302013-08-08 12:38:31 +02001260 ret = mmc_gpio_request_cd(mmc, pdata->cd_gpio, 0);
Guennadi Liakhovetskic8be24c2012-02-09 22:57:09 +01001261 if (ret < 0) {
1262 tmio_mmc_host_remove(_host);
1263 return ret;
1264 }
Stephen Warrend4d11442014-09-22 09:57:42 -06001265 mmc_gpiod_request_cd_irq(mmc);
Guennadi Liakhovetskic8be24c2012-02-09 22:57:09 +01001266 }
1267
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001268 return 0;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001269}
1270EXPORT_SYMBOL(tmio_mmc_host_probe);
1271
1272void tmio_mmc_host_remove(struct tmio_mmc_host *host)
1273{
Guennadi Liakhovetskie6ee7182011-05-05 16:13:12 +00001274 struct platform_device *pdev = host->pdev;
Guennadi Liakhovetskic8be24c2012-02-09 22:57:09 +01001275 struct mmc_host *mmc = host->mmc;
Guennadi Liakhovetskie6ee7182011-05-05 16:13:12 +00001276
Wolfram Sangc51ff6c2016-12-09 17:51:41 +01001277 if (host->pdata->flags & TMIO_MMC_SDIO_IRQ)
1278 sd_ctrl_write16(host, CTL_TRANSACTION_CTL, 0x0000);
1279
Guennadi Liakhovetski2b1ac5c2012-02-09 22:57:08 +01001280 if (!host->native_hotplug)
Guennadi Liakhovetski7311bef2011-05-11 16:51:11 +00001281 pm_runtime_get_sync(&pdev->dev);
1282
Rafael J. Wysockic419e612012-03-13 01:01:51 +01001283 dev_pm_qos_hide_latency_limit(&pdev->dev);
1284
Guennadi Liakhovetskic8be24c2012-02-09 22:57:09 +01001285 mmc_remove_host(mmc);
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +02001286 cancel_work_sync(&host->done);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001287 cancel_delayed_work_sync(&host->delayed_reset_work);
1288 tmio_mmc_release_dma(host);
Guennadi Liakhovetskie6ee7182011-05-05 16:13:12 +00001289
Guennadi Liakhovetskie6ee7182011-05-05 16:13:12 +00001290 pm_runtime_put_sync(&pdev->dev);
1291 pm_runtime_disable(&pdev->dev);
Wolfram Sangdfcba5f2017-01-17 21:26:01 +01001292
1293 tmio_mmc_clk_disable(host);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001294}
1295EXPORT_SYMBOL(tmio_mmc_host_remove);
1296
Ulf Hansson9ade7db2014-08-25 12:03:20 +02001297#ifdef CONFIG_PM
Guennadi Liakhovetski7311bef2011-05-11 16:51:11 +00001298int tmio_mmc_host_runtime_suspend(struct device *dev)
1299{
Ulf Hanssonae12d252013-10-30 00:16:17 +01001300 struct mmc_host *mmc = dev_get_drvdata(dev);
1301 struct tmio_mmc_host *host = mmc_priv(mmc);
1302
Ulf Hansson20e955c2014-08-25 11:55:57 +02001303 tmio_mmc_disable_mmc_irqs(host, TMIO_MASK_ALL);
1304
Ulf Hanssonae12d252013-10-30 00:16:17 +01001305 if (host->clk_cache)
1306 tmio_mmc_clk_stop(host);
1307
Wolfram Sangdfcba5f2017-01-17 21:26:01 +01001308 tmio_mmc_clk_disable(host);
Ulf Hanssonae12d252013-10-30 00:16:17 +01001309
Guennadi Liakhovetski7311bef2011-05-11 16:51:11 +00001310 return 0;
1311}
1312EXPORT_SYMBOL(tmio_mmc_host_runtime_suspend);
1313
Ai Kyuse4f119972016-11-03 15:16:03 +01001314static bool tmio_mmc_can_retune(struct tmio_mmc_host *host)
1315{
1316 return host->tap_num && mmc_can_retune(host->mmc);
1317}
1318
Guennadi Liakhovetski7311bef2011-05-11 16:51:11 +00001319int tmio_mmc_host_runtime_resume(struct device *dev)
1320{
1321 struct mmc_host *mmc = dev_get_drvdata(dev);
1322 struct tmio_mmc_host *host = mmc_priv(mmc);
Guennadi Liakhovetski7311bef2011-05-11 16:51:11 +00001323
Ulf Hanssonae12d252013-10-30 00:16:17 +01001324 tmio_mmc_reset(host);
Ben Hutchings2fb55952016-04-01 17:44:32 +02001325 tmio_mmc_clk_enable(host);
Ulf Hanssonae12d252013-10-30 00:16:17 +01001326
Wolfram Sang7fbc0302016-04-01 17:44:34 +02001327 if (host->clk_cache)
Ulf Hanssonae12d252013-10-30 00:16:17 +01001328 tmio_mmc_set_clock(host, host->clk_cache);
Ulf Hanssonae12d252013-10-30 00:16:17 +01001329
Guennadi Liakhovetski162f43e2011-07-14 18:39:10 +02001330 tmio_mmc_enable_dma(host, true);
Guennadi Liakhovetski7311bef2011-05-11 16:51:11 +00001331
Ai Kyuse4f119972016-11-03 15:16:03 +01001332 if (tmio_mmc_can_retune(host) && host->select_tuning(host))
1333 dev_warn(&host->pdev->dev, "Tuning selection failed\n");
1334
Guennadi Liakhovetski7311bef2011-05-11 16:51:11 +00001335 return 0;
1336}
1337EXPORT_SYMBOL(tmio_mmc_host_runtime_resume);
Ulf Hansson710dec92013-10-23 14:55:07 +02001338#endif
Guennadi Liakhovetski7311bef2011-05-11 16:51:11 +00001339
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001340MODULE_LICENSE("GPL v2");