blob: 6b789a739d4dfeb598a1fced82130ee05f1e4dc6 [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) {
Wolfram Sangee289812017-01-19 21:07:18 +0100137 u16 sdio_status;
138
Ulf Hansson7501c432013-10-24 15:58:45 +0200139 /* Keep device active while SDIO irq is enabled */
140 pm_runtime_get_sync(mmc_dev(mmc));
Ulf Hansson7501c432013-10-24 15:58:45 +0200141
Wolfram Sangee289812017-01-19 21:07:18 +0100142 host->sdio_irq_enabled = true;
Simon Horman54680fe2011-08-25 10:27:25 +0900143 host->sdio_irq_mask = TMIO_SDIO_MASK_ALL &
144 ~TMIO_SDIO_STAT_IOIRQ;
Wolfram Sangee289812017-01-19 21:07:18 +0100145
146 /* Clear obsolete interrupts before enabling */
147 sdio_status = sd_ctrl_read16(host, CTL_SDIO_STATUS) & ~TMIO_SDIO_MASK_ALL;
148 if (host->pdata->flags & TMIO_MMC_SDIO_STATUS_SETBITS)
149 sdio_status |= TMIO_SDIO_SETBITS_MASK;
150 sd_ctrl_write16(host, CTL_SDIO_STATUS, sdio_status);
151
Simon Horman54680fe2011-08-25 10:27:25 +0900152 sd_ctrl_write16(host, CTL_SDIO_IRQ_MASK, host->sdio_irq_mask);
Ulf Hansson7501c432013-10-24 15:58:45 +0200153 } else if (!enable && host->sdio_irq_enabled) {
Simon Horman54680fe2011-08-25 10:27:25 +0900154 host->sdio_irq_mask = TMIO_SDIO_MASK_ALL;
155 sd_ctrl_write16(host, CTL_SDIO_IRQ_MASK, host->sdio_irq_mask);
Ulf Hansson7501c432013-10-24 15:58:45 +0200156
157 host->sdio_irq_enabled = false;
Ulf Hansson03694832013-10-24 16:42:33 +0200158 pm_runtime_mark_last_busy(mmc_dev(mmc));
159 pm_runtime_put_autosuspend(mmc_dev(mmc));
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100160 }
161}
162
Wolfram Sang7fbc0302016-04-01 17:44:34 +0200163static void tmio_mmc_clk_start(struct tmio_mmc_host *host)
164{
165 sd_ctrl_write16(host, CTL_SD_CARD_CLK_CTL, CLK_CTL_SCLKEN |
166 sd_ctrl_read16(host, CTL_SD_CARD_CLK_CTL));
Wolfram Sang3d376fb2016-05-02 22:25:40 +0200167 msleep(host->pdata->flags & TMIO_MMC_MIN_RCAR2 ? 1 : 10);
Wolfram Sang7fbc0302016-04-01 17:44:34 +0200168
169 if (host->pdata->flags & TMIO_MMC_HAVE_HIGH_REG) {
170 sd_ctrl_write16(host, CTL_CLK_AND_WAIT_CTL, 0x0100);
171 msleep(10);
172 }
173}
174
Wolfram Sang148634d2016-04-01 17:44:35 +0200175static void tmio_mmc_clk_stop(struct tmio_mmc_host *host)
176{
177 if (host->pdata->flags & TMIO_MMC_HAVE_HIGH_REG) {
178 sd_ctrl_write16(host, CTL_CLK_AND_WAIT_CTL, 0x0000);
179 msleep(10);
180 }
181
182 sd_ctrl_write16(host, CTL_SD_CARD_CLK_CTL, ~CLK_CTL_SCLKEN &
183 sd_ctrl_read16(host, CTL_SD_CARD_CLK_CTL));
Wolfram Sang3d376fb2016-05-02 22:25:40 +0200184 msleep(host->pdata->flags & TMIO_MMC_MIN_RCAR2 ? 5 : 10);
Wolfram Sang148634d2016-04-01 17:44:35 +0200185}
186
Ulf Hanssonae12d252013-10-30 00:16:17 +0100187static void tmio_mmc_set_clock(struct tmio_mmc_host *host,
188 unsigned int new_clock)
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100189{
190 u32 clk = 0, clock;
191
Wolfram Sang148634d2016-04-01 17:44:35 +0200192 if (new_clock == 0) {
193 tmio_mmc_clk_stop(host);
194 return;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100195 }
196
Wolfram Sang148634d2016-04-01 17:44:35 +0200197 if (host->clk_update)
198 clock = host->clk_update(host, new_clock) / 512;
199 else
200 clock = host->mmc->f_min;
201
202 for (clk = 0x80000080; new_clock >= (clock << 1); clk >>= 1)
203 clock <<= 1;
204
205 /* 1/1 clock is option */
206 if ((host->pdata->flags & TMIO_MMC_CLK_ACTUAL) && ((clk >> 22) & 0x1))
207 clk |= 0xff;
208
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100209 if (host->set_clk_div)
Wolfram Sangbf962082016-01-19 12:32:58 +0100210 host->set_clk_div(host->pdev, (clk >> 22) & 1);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100211
Wolfram Sang14d58282016-01-19 12:32:58 +0100212 sd_ctrl_write16(host, CTL_SD_CARD_CLK_CTL, ~CLK_CTL_SCLKEN &
213 sd_ctrl_read16(host, CTL_SD_CARD_CLK_CTL));
Wolfram Sangbf962082016-01-19 12:32:58 +0100214 sd_ctrl_write16(host, CTL_SD_CARD_CLK_CTL, clk & CLK_CTL_DIV_MASK);
Wolfram Sang3d376fb2016-05-02 22:25:40 +0200215 if (!(host->pdata->flags & TMIO_MMC_MIN_RCAR2))
Wolfram Sang04e24b82016-01-19 12:28:31 +0100216 msleep(10);
Wolfram Sang7fbc0302016-04-01 17:44:34 +0200217
218 tmio_mmc_clk_start(host);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100219}
220
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100221static void tmio_mmc_reset(struct tmio_mmc_host *host)
222{
223 /* FIXME - should we set stop clock reg here */
224 sd_ctrl_write16(host, CTL_RESET_SD, 0x0000);
Kuninori Morimoto5d60e502013-11-20 00:31:06 -0800225 if (host->pdata->flags & TMIO_MMC_HAVE_HIGH_REG)
Guennadi Liakhovetski69d1fe12011-03-09 17:28:55 +0100226 sd_ctrl_write16(host, CTL_RESET_SDIO, 0x0000);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100227 msleep(10);
228 sd_ctrl_write16(host, CTL_RESET_SD, 0x0001);
Kuninori Morimoto5d60e502013-11-20 00:31:06 -0800229 if (host->pdata->flags & TMIO_MMC_HAVE_HIGH_REG)
Guennadi Liakhovetski69d1fe12011-03-09 17:28:55 +0100230 sd_ctrl_write16(host, CTL_RESET_SDIO, 0x0001);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100231 msleep(10);
232}
233
234static void tmio_mmc_reset_work(struct work_struct *work)
235{
236 struct tmio_mmc_host *host = container_of(work, struct tmio_mmc_host,
237 delayed_reset_work.work);
238 struct mmc_request *mrq;
239 unsigned long flags;
240
241 spin_lock_irqsave(&host->lock, flags);
242 mrq = host->mrq;
243
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000244 /*
245 * is request already finished? Since we use a non-blocking
246 * cancel_delayed_work(), it can happen, that a .set_ios() call preempts
247 * us, so, have to check for IS_ERR(host->mrq)
248 */
249 if (IS_ERR_OR_NULL(mrq)
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100250 || time_is_after_jiffies(host->last_req_ts +
Takeshi Kihara0df9d2e2015-07-20 01:39:59 +0900251 msecs_to_jiffies(CMDREQ_TIMEOUT))) {
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100252 spin_unlock_irqrestore(&host->lock, flags);
253 return;
254 }
255
256 dev_warn(&host->pdev->dev,
257 "timeout waiting for hardware interrupt (CMD%u)\n",
258 mrq->cmd->opcode);
259
260 if (host->data)
261 host->data->error = -ETIMEDOUT;
262 else if (host->cmd)
263 host->cmd->error = -ETIMEDOUT;
264 else
265 mrq->cmd->error = -ETIMEDOUT;
266
267 host->cmd = NULL;
268 host->data = NULL;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100269 host->force_pio = false;
270
271 spin_unlock_irqrestore(&host->lock, flags);
272
273 tmio_mmc_reset(host);
274
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000275 /* Ready for new calls */
276 host->mrq = NULL;
277
Guennadi Liakhovetskie3de2be2012-01-06 13:06:51 +0100278 tmio_mmc_abort_dma(host);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100279 mmc_request_done(host->mmc, mrq);
280}
281
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000282/* called with host->lock held, interrupts disabled */
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100283static void tmio_mmc_finish_request(struct tmio_mmc_host *host)
284{
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +0200285 struct mmc_request *mrq;
286 unsigned long flags;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100287
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +0200288 spin_lock_irqsave(&host->lock, flags);
289
290 mrq = host->mrq;
291 if (IS_ERR_OR_NULL(mrq)) {
292 spin_unlock_irqrestore(&host->lock, flags);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100293 return;
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +0200294 }
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100295
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100296 host->cmd = NULL;
297 host->data = NULL;
298 host->force_pio = false;
299
300 cancel_delayed_work(&host->delayed_reset_work);
301
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000302 host->mrq = NULL;
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +0200303 spin_unlock_irqrestore(&host->lock, flags);
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000304
Guennadi Liakhovetskie3de2be2012-01-06 13:06:51 +0100305 if (mrq->cmd->error || (mrq->data && mrq->data->error))
306 tmio_mmc_abort_dma(host);
307
Ai Kyuse4f119972016-11-03 15:16:03 +0100308 if (host->check_scc_error)
309 host->check_scc_error(host);
310
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100311 mmc_request_done(host->mmc, mrq);
312}
313
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +0200314static void tmio_mmc_done_work(struct work_struct *work)
315{
316 struct tmio_mmc_host *host = container_of(work, struct tmio_mmc_host,
317 done);
318 tmio_mmc_finish_request(host);
319}
320
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100321/* These are the bitmasks the tmio chip requires to implement the MMC response
322 * types. Note that R1 and R6 are the same in this scheme. */
323#define APP_CMD 0x0040
324#define RESP_NONE 0x0300
325#define RESP_R1 0x0400
326#define RESP_R1B 0x0500
327#define RESP_R2 0x0600
328#define RESP_R3 0x0700
329#define DATA_PRESENT 0x0800
330#define TRANSFER_READ 0x1000
331#define TRANSFER_MULTI 0x2000
332#define SECURITY_CMD 0x4000
Shinobu Ueharab8d11962014-08-24 20:00:25 -0700333#define NO_CMD12_ISSUE 0x4000 /* TMIO_MMC_HAVE_CMD12_CTRL */
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100334
335static int tmio_mmc_start_command(struct tmio_mmc_host *host, struct mmc_command *cmd)
336{
337 struct mmc_data *data = host->data;
338 int c = cmd->opcode;
Guennadi Liakhovetskie23cd532012-02-22 13:16:09 +0100339 u32 irq_mask = TMIO_MASK_CMD;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100340
Guennadi Liakhovetski0f506a92012-06-20 19:10:35 +0200341 /* CMD12 is handled by hardware */
342 if (cmd->opcode == MMC_STOP_TRANSMISSION && !cmd->arg) {
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100343 sd_ctrl_write16(host, CTL_STOP_INTERNAL_ACTION, 0x001);
344 return 0;
345 }
346
347 switch (mmc_resp_type(cmd)) {
348 case MMC_RSP_NONE: c |= RESP_NONE; break;
Wolfram Sang0bc0b6e2016-09-19 22:57:48 +0200349 case MMC_RSP_R1:
350 case MMC_RSP_R1_NO_CRC:
351 c |= RESP_R1; break;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100352 case MMC_RSP_R1B: c |= RESP_R1B; break;
353 case MMC_RSP_R2: c |= RESP_R2; break;
354 case MMC_RSP_R3: c |= RESP_R3; break;
355 default:
356 pr_debug("Unknown response type %d\n", mmc_resp_type(cmd));
357 return -EINVAL;
358 }
359
360 host->cmd = cmd;
361
362/* FIXME - this seems to be ok commented out but the spec suggest this bit
363 * should be set when issuing app commands.
364 * if(cmd->flags & MMC_FLAG_ACMD)
365 * c |= APP_CMD;
366 */
367 if (data) {
368 c |= DATA_PRESENT;
369 if (data->blocks > 1) {
370 sd_ctrl_write16(host, CTL_STOP_INTERNAL_ACTION, 0x100);
371 c |= TRANSFER_MULTI;
Shinobu Ueharab8d11962014-08-24 20:00:25 -0700372
373 /*
374 * Disable auto CMD12 at IO_RW_EXTENDED when
375 * multiple block transfer
376 */
377 if ((host->pdata->flags & TMIO_MMC_HAVE_CMD12_CTRL) &&
378 (cmd->opcode == SD_IO_RW_EXTENDED))
379 c |= NO_CMD12_ISSUE;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100380 }
381 if (data->flags & MMC_DATA_READ)
382 c |= TRANSFER_READ;
383 }
384
Guennadi Liakhovetskie23cd532012-02-22 13:16:09 +0100385 if (!host->native_hotplug)
386 irq_mask &= ~(TMIO_STAT_CARD_REMOVE | TMIO_STAT_CARD_INSERT);
387 tmio_mmc_enable_mmc_irqs(host, irq_mask);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100388
389 /* Fire off the command */
Wolfram Sang2c545062016-04-27 18:51:23 +0200390 sd_ctrl_write32_as_16_and_16(host, CTL_ARG_REG, cmd->arg);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100391 sd_ctrl_write16(host, CTL_SD_CMD, c);
392
393 return 0;
394}
395
Kuninori Morimotob9bd7ff2014-09-10 00:23:24 -0700396static void tmio_mmc_transfer_data(struct tmio_mmc_host *host,
397 unsigned short *buf,
398 unsigned int count)
399{
400 int is_read = host->data->flags & MMC_DATA_READ;
401 u8 *buf8;
402
403 /*
404 * Transfer the data
405 */
Chris Brandt8185e512016-09-12 10:15:06 -0400406 if (host->pdata->flags & TMIO_MMC_32BIT_DATA_PORT) {
407 u8 data[4] = { };
408
409 if (is_read)
410 sd_ctrl_read32_rep(host, CTL_SD_DATA_PORT, (u32 *)buf,
411 count >> 2);
412 else
413 sd_ctrl_write32_rep(host, CTL_SD_DATA_PORT, (u32 *)buf,
414 count >> 2);
415
416 /* if count was multiple of 4 */
417 if (!(count & 0x3))
418 return;
419
420 buf8 = (u8 *)(buf + (count >> 2));
421 count %= 4;
422
423 if (is_read) {
424 sd_ctrl_read32_rep(host, CTL_SD_DATA_PORT,
425 (u32 *)data, 1);
426 memcpy(buf8, data, count);
427 } else {
428 memcpy(data, buf8, count);
429 sd_ctrl_write32_rep(host, CTL_SD_DATA_PORT,
430 (u32 *)data, 1);
431 }
432
433 return;
434 }
435
Kuninori Morimotob9bd7ff2014-09-10 00:23:24 -0700436 if (is_read)
437 sd_ctrl_read16_rep(host, CTL_SD_DATA_PORT, buf, count >> 1);
438 else
439 sd_ctrl_write16_rep(host, CTL_SD_DATA_PORT, buf, count >> 1);
440
441 /* if count was even number */
442 if (!(count & 0x1))
443 return;
444
445 /* if count was odd number */
446 buf8 = (u8 *)(buf + (count >> 1));
447
448 /*
449 * FIXME
450 *
451 * driver and this function are assuming that
452 * it is used as little endian
453 */
454 if (is_read)
455 *buf8 = sd_ctrl_read16(host, CTL_SD_DATA_PORT) & 0xff;
456 else
457 sd_ctrl_write16(host, CTL_SD_DATA_PORT, *buf8);
458}
459
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100460/*
461 * This chip always returns (at least?) as much data as you ask for.
462 * I'm unsure what happens if you ask for less than a block. This should be
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300463 * looked into to ensure that a funny length read doesn't hose the controller.
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100464 */
465static void tmio_mmc_pio_irq(struct tmio_mmc_host *host)
466{
467 struct mmc_data *data = host->data;
468 void *sg_virt;
469 unsigned short *buf;
470 unsigned int count;
471 unsigned long flags;
472
473 if ((host->chan_tx || host->chan_rx) && !host->force_pio) {
474 pr_err("PIO IRQ in DMA mode!\n");
475 return;
476 } else if (!data) {
477 pr_debug("Spurious PIO IRQ\n");
478 return;
479 }
480
481 sg_virt = tmio_mmc_kmap_atomic(host->sg_ptr, &flags);
482 buf = (unsigned short *)(sg_virt + host->sg_off);
483
484 count = host->sg_ptr->length - host->sg_off;
485 if (count > data->blksz)
486 count = data->blksz;
487
488 pr_debug("count: %08x offset: %08x flags %08x\n",
489 count, host->sg_off, data->flags);
490
491 /* Transfer the data */
Kuninori Morimotob9bd7ff2014-09-10 00:23:24 -0700492 tmio_mmc_transfer_data(host, buf, count);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100493
494 host->sg_off += count;
495
496 tmio_mmc_kunmap_atomic(host->sg_ptr, &flags, sg_virt);
497
498 if (host->sg_off == host->sg_ptr->length)
499 tmio_mmc_next_sg(host);
500
501 return;
502}
503
504static void tmio_mmc_check_bounce_buffer(struct tmio_mmc_host *host)
505{
506 if (host->sg_ptr == &host->bounce_sg) {
507 unsigned long flags;
508 void *sg_vaddr = tmio_mmc_kmap_atomic(host->sg_orig, &flags);
509 memcpy(sg_vaddr, host->bounce_buf, host->bounce_sg.length);
510 tmio_mmc_kunmap_atomic(host->sg_orig, &flags, sg_vaddr);
511 }
512}
513
514/* needs to be called with host->lock held */
515void tmio_mmc_do_data_irq(struct tmio_mmc_host *host)
516{
517 struct mmc_data *data = host->data;
518 struct mmc_command *stop;
519
520 host->data = NULL;
521
522 if (!data) {
523 dev_warn(&host->pdev->dev, "Spurious data end IRQ\n");
524 return;
525 }
526 stop = data->stop;
527
528 /* FIXME - return correct transfer count on errors */
529 if (!data->error)
530 data->bytes_xfered = data->blocks * data->blksz;
531 else
532 data->bytes_xfered = 0;
533
534 pr_debug("Completed data request\n");
535
536 /*
537 * FIXME: other drivers allow an optional stop command of any given type
538 * which we dont do, as the chip can auto generate them.
539 * Perhaps we can be smarter about when to use auto CMD12 and
540 * only issue the auto request when we know this is the desired
541 * stop command, allowing fallback to the stop command the
542 * upper layers expect. For now, we do what works.
543 */
544
545 if (data->flags & MMC_DATA_READ) {
546 if (host->chan_rx && !host->force_pio)
547 tmio_mmc_check_bounce_buffer(host);
548 dev_dbg(&host->pdev->dev, "Complete Rx request %p\n",
549 host->mrq);
550 } else {
551 dev_dbg(&host->pdev->dev, "Complete Tx request %p\n",
552 host->mrq);
553 }
554
555 if (stop) {
Guennadi Liakhovetski0f506a92012-06-20 19:10:35 +0200556 if (stop->opcode == MMC_STOP_TRANSMISSION && !stop->arg)
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100557 sd_ctrl_write16(host, CTL_STOP_INTERNAL_ACTION, 0x000);
558 else
559 BUG();
560 }
561
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +0200562 schedule_work(&host->done);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100563}
564
Ai Kyuse96e0b2b2016-11-03 15:16:00 +0100565static void tmio_mmc_data_irq(struct tmio_mmc_host *host, unsigned int stat)
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100566{
567 struct mmc_data *data;
568 spin_lock(&host->lock);
569 data = host->data;
570
571 if (!data)
572 goto out;
573
Ai Kyuse96e0b2b2016-11-03 15:16:00 +0100574 if (stat & TMIO_STAT_CRCFAIL || stat & TMIO_STAT_STOPBIT_ERR ||
575 stat & TMIO_STAT_TXUNDERRUN)
576 data->error = -EILSEQ;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100577 if (host->chan_tx && (data->flags & MMC_DATA_WRITE) && !host->force_pio) {
Wolfram Sang2c545062016-04-27 18:51:23 +0200578 u32 status = sd_ctrl_read16_and_16_as_32(host, CTL_STATUS);
Shinobu Uehara81e888d2014-08-24 20:01:32 -0700579 bool done = false;
580
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100581 /*
582 * Has all data been written out yet? Testing on SuperH showed,
583 * that in most cases the first interrupt comes already with the
584 * BUSY status bit clear, but on some operations, like mount or
585 * in the beginning of a write / sync / umount, there is one
586 * DATAEND interrupt with the BUSY bit set, in this cases
587 * waiting for one more interrupt fixes the problem.
588 */
Shinobu Uehara81e888d2014-08-24 20:01:32 -0700589 if (host->pdata->flags & TMIO_MMC_HAS_IDLE_WAIT) {
Wolfram Sanga21553c2016-04-27 18:51:26 +0200590 if (status & TMIO_STAT_SCLKDIVEN)
Shinobu Uehara81e888d2014-08-24 20:01:32 -0700591 done = true;
592 } else {
593 if (!(status & TMIO_STAT_CMD_BUSY))
594 done = true;
595 }
596
597 if (done) {
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100598 tmio_mmc_disable_mmc_irqs(host, TMIO_STAT_DATAEND);
599 tasklet_schedule(&host->dma_complete);
600 }
601 } else if (host->chan_rx && (data->flags & MMC_DATA_READ) && !host->force_pio) {
602 tmio_mmc_disable_mmc_irqs(host, TMIO_STAT_DATAEND);
603 tasklet_schedule(&host->dma_complete);
604 } else {
605 tmio_mmc_do_data_irq(host);
606 tmio_mmc_disable_mmc_irqs(host, TMIO_MASK_READOP | TMIO_MASK_WRITEOP);
607 }
608out:
609 spin_unlock(&host->lock);
610}
611
612static void tmio_mmc_cmd_irq(struct tmio_mmc_host *host,
613 unsigned int stat)
614{
615 struct mmc_command *cmd = host->cmd;
616 int i, addr;
617
618 spin_lock(&host->lock);
619
620 if (!host->cmd) {
621 pr_debug("Spurious CMD irq\n");
622 goto out;
623 }
624
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100625 /* This controller is sicker than the PXA one. Not only do we need to
626 * drop the top 8 bits of the first response word, we also need to
627 * modify the order of the response for short response command types.
628 */
629
630 for (i = 3, addr = CTL_RESPONSE ; i >= 0 ; i--, addr += 4)
Wolfram Sang2c545062016-04-27 18:51:23 +0200631 cmd->resp[i] = sd_ctrl_read16_and_16_as_32(host, addr);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100632
633 if (cmd->flags & MMC_RSP_136) {
634 cmd->resp[0] = (cmd->resp[0] << 8) | (cmd->resp[1] >> 24);
635 cmd->resp[1] = (cmd->resp[1] << 8) | (cmd->resp[2] >> 24);
636 cmd->resp[2] = (cmd->resp[2] << 8) | (cmd->resp[3] >> 24);
637 cmd->resp[3] <<= 8;
638 } else if (cmd->flags & MMC_RSP_R3) {
639 cmd->resp[0] = cmd->resp[3];
640 }
641
642 if (stat & TMIO_STAT_CMDTIMEOUT)
643 cmd->error = -ETIMEDOUT;
Ai Kyuse96e0b2b2016-11-03 15:16:00 +0100644 else if ((stat & TMIO_STAT_CRCFAIL && cmd->flags & MMC_RSP_CRC) ||
645 stat & TMIO_STAT_STOPBIT_ERR ||
646 stat & TMIO_STAT_CMD_IDX_ERR)
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100647 cmd->error = -EILSEQ;
648
649 /* If there is data to handle we enable data IRQs here, and
650 * we will ultimatley finish the request in the data_end handler.
651 * If theres no data or we encountered an error, finish now.
652 */
Ai Kyuse96e0b2b2016-11-03 15:16:00 +0100653 if (host->data && (!cmd->error || cmd->error == -EILSEQ)) {
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100654 if (host->data->flags & MMC_DATA_READ) {
655 if (host->force_pio || !host->chan_rx)
656 tmio_mmc_enable_mmc_irqs(host, TMIO_MASK_READOP);
657 else
658 tasklet_schedule(&host->dma_issue);
659 } else {
660 if (host->force_pio || !host->chan_tx)
661 tmio_mmc_enable_mmc_irqs(host, TMIO_MASK_WRITEOP);
662 else
663 tasklet_schedule(&host->dma_issue);
664 }
665 } else {
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +0200666 schedule_work(&host->done);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100667 }
668
669out:
670 spin_unlock(&host->lock);
671}
672
Simon Horman7729c7a2011-08-25 10:27:26 +0900673static bool __tmio_mmc_card_detect_irq(struct tmio_mmc_host *host,
674 int ireg, int status)
675{
Guennadi Liakhovetski71d111c2011-07-14 12:16:59 +0200676 struct mmc_host *mmc = host->mmc;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100677
Paul Parsonse312eb12011-05-15 13:24:41 +0000678 /* Card insert / remove attempts */
679 if (ireg & (TMIO_STAT_CARD_INSERT | TMIO_STAT_CARD_REMOVE)) {
680 tmio_mmc_ack_mmc_irqs(host, TMIO_STAT_CARD_INSERT |
681 TMIO_STAT_CARD_REMOVE);
Guennadi Liakhovetski71d111c2011-07-14 12:16:59 +0200682 if ((((ireg & TMIO_STAT_CARD_REMOVE) && mmc->card) ||
683 ((ireg & TMIO_STAT_CARD_INSERT) && !mmc->card)) &&
684 !work_pending(&mmc->detect.work))
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +0200685 mmc_detect_change(host->mmc, msecs_to_jiffies(100));
Simon Horman7729c7a2011-08-25 10:27:26 +0900686 return true;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100687 }
688
Simon Horman7729c7a2011-08-25 10:27:26 +0900689 return false;
690}
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100691
Simon Horman7729c7a2011-08-25 10:27:26 +0900692static bool __tmio_mmc_sdcard_irq(struct tmio_mmc_host *host,
693 int ireg, int status)
694{
Paul Parsonse312eb12011-05-15 13:24:41 +0000695 /* Command completion */
696 if (ireg & (TMIO_STAT_CMDRESPEND | TMIO_STAT_CMDTIMEOUT)) {
697 tmio_mmc_ack_mmc_irqs(host,
698 TMIO_STAT_CMDRESPEND |
699 TMIO_STAT_CMDTIMEOUT);
700 tmio_mmc_cmd_irq(host, status);
Simon Horman7729c7a2011-08-25 10:27:26 +0900701 return true;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100702 }
Paul Parsonse312eb12011-05-15 13:24:41 +0000703
704 /* Data transfer */
705 if (ireg & (TMIO_STAT_RXRDY | TMIO_STAT_TXRQ)) {
706 tmio_mmc_ack_mmc_irqs(host, TMIO_STAT_RXRDY | TMIO_STAT_TXRQ);
707 tmio_mmc_pio_irq(host);
Simon Horman7729c7a2011-08-25 10:27:26 +0900708 return true;
Paul Parsonse312eb12011-05-15 13:24:41 +0000709 }
710
711 /* Data transfer completion */
712 if (ireg & TMIO_STAT_DATAEND) {
713 tmio_mmc_ack_mmc_irqs(host, TMIO_STAT_DATAEND);
Ai Kyuse96e0b2b2016-11-03 15:16:00 +0100714 tmio_mmc_data_irq(host, status);
Simon Horman7729c7a2011-08-25 10:27:26 +0900715 return true;
Paul Parsonse312eb12011-05-15 13:24:41 +0000716 }
717
Simon Horman7729c7a2011-08-25 10:27:26 +0900718 return false;
719}
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100720
Wolfram Sange4f38eb2017-01-19 21:07:16 +0100721static void __tmio_mmc_sdio_irq(struct tmio_mmc_host *host)
Simon Horman7729c7a2011-08-25 10:27:26 +0900722{
Simon Horman7729c7a2011-08-25 10:27:26 +0900723 struct mmc_host *mmc = host->mmc;
724 struct tmio_mmc_data *pdata = host->pdata;
725 unsigned int ireg, status;
Shinobu Uehara6b987572014-08-24 20:00:52 -0700726 unsigned int sdio_status;
Simon Horman7729c7a2011-08-25 10:27:26 +0900727
728 if (!(pdata->flags & TMIO_MMC_SDIO_IRQ))
Wolfram Sang4da98672016-04-26 17:55:24 +0200729 return;
Simon Horman7729c7a2011-08-25 10:27:26 +0900730
731 status = sd_ctrl_read16(host, CTL_SDIO_STATUS);
Wolfram Sang0c4bf5b2016-11-13 15:29:11 +0100732 ireg = status & TMIO_SDIO_MASK_ALL & ~host->sdio_irq_mask;
Simon Horman7729c7a2011-08-25 10:27:26 +0900733
Shinobu Uehara6b987572014-08-24 20:00:52 -0700734 sdio_status = status & ~TMIO_SDIO_MASK_ALL;
Wolfram Sang20dd0372017-01-19 21:07:17 +0100735 if (pdata->flags & TMIO_MMC_SDIO_STATUS_SETBITS)
Wolfram Sangee289812017-01-19 21:07:18 +0100736 sdio_status |= TMIO_SDIO_SETBITS_MASK;
Shinobu Uehara6b987572014-08-24 20:00:52 -0700737
738 sd_ctrl_write16(host, CTL_SDIO_STATUS, sdio_status);
Simon Horman7729c7a2011-08-25 10:27:26 +0900739
740 if (mmc->caps & MMC_CAP_SDIO_IRQ && ireg & TMIO_SDIO_STAT_IOIRQ)
741 mmc_signal_sdio_irq(mmc);
Simon Horman7729c7a2011-08-25 10:27:26 +0900742}
Simon Horman7729c7a2011-08-25 10:27:26 +0900743
744irqreturn_t tmio_mmc_irq(int irq, void *devid)
745{
746 struct tmio_mmc_host *host = devid;
747 unsigned int ireg, status;
748
Wolfram Sang2c545062016-04-27 18:51:23 +0200749 status = sd_ctrl_read16_and_16_as_32(host, CTL_STATUS);
Wolfram Sang95840122016-04-26 17:55:25 +0200750 ireg = status & TMIO_MASK_IRQ & ~host->sdcard_irq_mask;
Simon Horman7729c7a2011-08-25 10:27:26 +0900751
Wolfram Sang95840122016-04-26 17:55:25 +0200752 pr_debug_status(status);
753 pr_debug_status(ireg);
754
755 /* Clear the status except the interrupt status */
Wolfram Sang2c545062016-04-27 18:51:23 +0200756 sd_ctrl_write32_as_16_and_16(host, CTL_STATUS, TMIO_MASK_IRQ);
Wolfram Sang95840122016-04-26 17:55:25 +0200757
Simon Horman7729c7a2011-08-25 10:27:26 +0900758 if (__tmio_mmc_card_detect_irq(host, ireg, status))
759 return IRQ_HANDLED;
760 if (__tmio_mmc_sdcard_irq(host, ireg, status))
761 return IRQ_HANDLED;
762
Wolfram Sange4f38eb2017-01-19 21:07:16 +0100763 __tmio_mmc_sdio_irq(host);
Simon Horman7729c7a2011-08-25 10:27:26 +0900764
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100765 return IRQ_HANDLED;
766}
Magnus Damm8e7bfdb2011-05-06 11:02:33 +0000767EXPORT_SYMBOL(tmio_mmc_irq);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100768
769static int tmio_mmc_start_data(struct tmio_mmc_host *host,
770 struct mmc_data *data)
771{
772 struct tmio_mmc_data *pdata = host->pdata;
773
774 pr_debug("setup data transfer: blocksize %08x nr_blocks %d\n",
775 data->blksz, data->blocks);
776
Wolfram Sang0bc0b6e2016-09-19 22:57:48 +0200777 /* Some hardware cannot perform 2 byte requests in 4/8 bit mode */
778 if (host->mmc->ios.bus_width == MMC_BUS_WIDTH_4 ||
779 host->mmc->ios.bus_width == MMC_BUS_WIDTH_8) {
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100780 int blksz_2bytes = pdata->flags & TMIO_MMC_BLKSZ_2BYTES;
781
782 if (data->blksz < 2 || (data->blksz < 4 && !blksz_2bytes)) {
Wolfram Sang0bc0b6e2016-09-19 22:57:48 +0200783 pr_err("%s: %d byte block unsupported in 4/8 bit mode\n",
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100784 mmc_hostname(host->mmc), data->blksz);
785 return -EINVAL;
786 }
787 }
788
789 tmio_mmc_init_sg(host, data);
790 host->data = data;
791
792 /* Set transfer length / blocksize */
793 sd_ctrl_write16(host, CTL_SD_XFER_LEN, data->blksz);
794 sd_ctrl_write16(host, CTL_XFER_BLK_COUNT, data->blocks);
795
796 tmio_mmc_start_dma(host, data);
797
798 return 0;
799}
800
Ai Kyusee8f36b52016-11-03 15:16:02 +0100801static void tmio_mmc_hw_reset(struct mmc_host *mmc)
802{
803 struct tmio_mmc_host *host = mmc_priv(mmc);
804
805 if (host->hw_reset)
806 host->hw_reset(host);
807}
808
Ai Kyuse4f119972016-11-03 15:16:03 +0100809static int tmio_mmc_execute_tuning(struct mmc_host *mmc, u32 opcode)
810{
811 struct tmio_mmc_host *host = mmc_priv(mmc);
812 int i, ret = 0;
813
814 if (!host->tap_num) {
815 if (!host->init_tuning || !host->select_tuning)
816 /* Tuning is not supported */
817 goto out;
818
819 host->tap_num = host->init_tuning(host);
820 if (!host->tap_num)
821 /* Tuning is not supported */
822 goto out;
823 }
824
825 if (host->tap_num * 2 >= sizeof(host->taps) * BITS_PER_BYTE) {
826 dev_warn_once(&host->pdev->dev,
827 "Too many taps, skipping tuning. Please consider updating size of taps field of tmio_mmc_host\n");
828 goto out;
829 }
830
831 bitmap_zero(host->taps, host->tap_num * 2);
832
833 /* Issue CMD19 twice for each tap */
834 for (i = 0; i < 2 * host->tap_num; i++) {
835 if (host->prepare_tuning)
836 host->prepare_tuning(host, i % host->tap_num);
837
838 ret = mmc_send_tuning(mmc, opcode, NULL);
839 if (ret && ret != -EILSEQ)
840 goto out;
841 if (ret == 0)
842 set_bit(i, host->taps);
843
844 mdelay(1);
845 }
846
847 ret = host->select_tuning(host);
848
849out:
850 if (ret < 0) {
851 dev_warn(&host->pdev->dev, "Tuning procedure failed\n");
852 tmio_mmc_hw_reset(mmc);
853 }
854
855 return ret;
856}
857
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100858/* Process requests from the MMC layer */
859static void tmio_mmc_request(struct mmc_host *mmc, struct mmc_request *mrq)
860{
861 struct tmio_mmc_host *host = mmc_priv(mmc);
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000862 unsigned long flags;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100863 int ret;
864
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000865 spin_lock_irqsave(&host->lock, flags);
866
867 if (host->mrq) {
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100868 pr_debug("request not null\n");
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000869 if (IS_ERR(host->mrq)) {
870 spin_unlock_irqrestore(&host->lock, flags);
871 mrq->cmd->error = -EAGAIN;
872 mmc_request_done(mmc, mrq);
873 return;
874 }
875 }
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100876
877 host->last_req_ts = jiffies;
878 wmb();
879 host->mrq = mrq;
880
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000881 spin_unlock_irqrestore(&host->lock, flags);
882
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100883 if (mrq->data) {
884 ret = tmio_mmc_start_data(host, mrq->data);
885 if (ret)
886 goto fail;
887 }
888
889 ret = tmio_mmc_start_command(host, mrq->cmd);
890 if (!ret) {
891 schedule_delayed_work(&host->delayed_reset_work,
Takeshi Kihara0df9d2e2015-07-20 01:39:59 +0900892 msecs_to_jiffies(CMDREQ_TIMEOUT));
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100893 return;
894 }
895
896fail:
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100897 host->force_pio = false;
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000898 host->mrq = NULL;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100899 mrq->cmd->error = ret;
900 mmc_request_done(mmc, mrq);
901}
902
Ben Hutchings2fb55952016-04-01 17:44:32 +0200903static int tmio_mmc_clk_enable(struct tmio_mmc_host *host)
Guennadi Liakhovetski8c102a92012-06-20 19:10:31 +0200904{
Kuninori Morimoto4fe2ec52015-01-13 04:57:52 +0000905 if (!host->clk_enable)
Guennadi Liakhovetski8c102a92012-06-20 19:10:31 +0200906 return -ENOTSUPP;
907
Ben Hutchings2fb55952016-04-01 17:44:32 +0200908 return host->clk_enable(host);
Guennadi Liakhovetski8c102a92012-06-20 19:10:31 +0200909}
910
Wolfram Sangdfcba5f2017-01-17 21:26:01 +0100911static void tmio_mmc_clk_disable(struct tmio_mmc_host *host)
912{
913 if (host->clk_disable)
914 host->clk_disable(host);
915}
916
Guennadi Liakhovetski619b08d2013-02-15 16:14:00 +0100917static void tmio_mmc_power_on(struct tmio_mmc_host *host, unsigned short vdd)
918{
919 struct mmc_host *mmc = host->mmc;
920 int ret = 0;
921
922 /* .set_ios() is returning void, so, no chance to report an error */
923
Chris Ball9d731e72013-09-06 07:29:05 -0400924 if (host->set_pwr)
925 host->set_pwr(host->pdev, 1);
926
Guennadi Liakhovetski619b08d2013-02-15 16:14:00 +0100927 if (!IS_ERR(mmc->supply.vmmc)) {
928 ret = mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, vdd);
929 /*
930 * Attention: empiric value. With a b43 WiFi SDIO card this
931 * delay proved necessary for reliable card-insertion probing.
932 * 100us were not enough. Is this the same 140us delay, as in
933 * tmio_mmc_set_ios()?
934 */
935 udelay(200);
936 }
937 /*
938 * It seems, VccQ should be switched on after Vcc, this is also what the
939 * omap_hsmmc.c driver does.
940 */
941 if (!IS_ERR(mmc->supply.vqmmc) && !ret) {
Guennadi Liakhovetski6d1d6b42013-07-08 11:38:09 +0200942 ret = regulator_enable(mmc->supply.vqmmc);
Guennadi Liakhovetski619b08d2013-02-15 16:14:00 +0100943 udelay(200);
944 }
Guennadi Liakhovetski6d1d6b42013-07-08 11:38:09 +0200945
946 if (ret < 0)
947 dev_dbg(&host->pdev->dev, "Regulators failed to power up: %d\n",
948 ret);
Guennadi Liakhovetski619b08d2013-02-15 16:14:00 +0100949}
950
951static void tmio_mmc_power_off(struct tmio_mmc_host *host)
Guennadi Liakhovetskib958a672012-06-20 19:10:33 +0200952{
953 struct mmc_host *mmc = host->mmc;
954
Guennadi Liakhovetski619b08d2013-02-15 16:14:00 +0100955 if (!IS_ERR(mmc->supply.vqmmc))
956 regulator_disable(mmc->supply.vqmmc);
957
Guennadi Liakhovetskib958a672012-06-20 19:10:33 +0200958 if (!IS_ERR(mmc->supply.vmmc))
Guennadi Liakhovetski619b08d2013-02-15 16:14:00 +0100959 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, 0);
Chris Ball9d731e72013-09-06 07:29:05 -0400960
961 if (host->set_pwr)
962 host->set_pwr(host->pdev, 0);
Guennadi Liakhovetskib958a672012-06-20 19:10:33 +0200963}
964
Ulf Hansson9ae4ed72013-10-24 17:42:53 +0200965static void tmio_mmc_set_bus_width(struct tmio_mmc_host *host,
966 unsigned char bus_width)
967{
Wolfram Sang0bc0b6e2016-09-19 22:57:48 +0200968 u16 reg = sd_ctrl_read16(host, CTL_SD_MEM_CARD_OPT)
969 & ~(CARD_OPT_WIDTH | CARD_OPT_WIDTH8);
970
971 /* reg now applies to MMC_BUS_WIDTH_4 */
972 if (bus_width == MMC_BUS_WIDTH_1)
973 reg |= CARD_OPT_WIDTH;
974 else if (bus_width == MMC_BUS_WIDTH_8)
975 reg |= CARD_OPT_WIDTH8;
976
977 sd_ctrl_write16(host, CTL_SD_MEM_CARD_OPT, reg);
Ulf Hansson9ae4ed72013-10-24 17:42:53 +0200978}
979
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100980/* Set MMC clock / power.
981 * Note: This controller uses a simple divider scheme therefore it cannot
982 * run a MMC card at full speed (20MHz). The max clock is 24MHz on SD, but as
983 * MMC wont run that fast, it has to be clocked at 12MHz which is the next
984 * slowest setting.
985 */
986static void tmio_mmc_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
987{
988 struct tmio_mmc_host *host = mmc_priv(mmc);
Guennadi Liakhovetski4932bd62012-02-09 22:57:16 +0100989 struct device *dev = &host->pdev->dev;
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000990 unsigned long flags;
991
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +0200992 mutex_lock(&host->ios_lock);
993
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000994 spin_lock_irqsave(&host->lock, flags);
995 if (host->mrq) {
996 if (IS_ERR(host->mrq)) {
Guennadi Liakhovetski4932bd62012-02-09 22:57:16 +0100997 dev_dbg(dev,
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000998 "%s.%d: concurrent .set_ios(), clk %u, mode %u\n",
999 current->comm, task_pid_nr(current),
1000 ios->clock, ios->power_mode);
1001 host->mrq = ERR_PTR(-EINTR);
1002 } else {
Guennadi Liakhovetski4932bd62012-02-09 22:57:16 +01001003 dev_dbg(dev,
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +00001004 "%s.%d: CMD%u active since %lu, now %lu!\n",
1005 current->comm, task_pid_nr(current),
1006 host->mrq->cmd->opcode, host->last_req_ts, jiffies);
1007 }
1008 spin_unlock_irqrestore(&host->lock, flags);
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +02001009
1010 mutex_unlock(&host->ios_lock);
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +00001011 return;
1012 }
1013
1014 host->mrq = ERR_PTR(-EBUSY);
1015
1016 spin_unlock_irqrestore(&host->lock, flags);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001017
Ulf Hansson3b292bb2013-10-24 17:53:15 +02001018 switch (ios->power_mode) {
1019 case MMC_POWER_OFF:
1020 tmio_mmc_power_off(host);
1021 tmio_mmc_clk_stop(host);
1022 break;
1023 case MMC_POWER_UP:
Ulf Hansson3b292bb2013-10-24 17:53:15 +02001024 tmio_mmc_power_on(host, ios->vdd);
Wolfram Sang7fbc0302016-04-01 17:44:34 +02001025 tmio_mmc_set_clock(host, ios->clock);
Ulf Hansson9ae4ed72013-10-24 17:42:53 +02001026 tmio_mmc_set_bus_width(host, ios->bus_width);
Ulf Hansson3b292bb2013-10-24 17:53:15 +02001027 break;
1028 case MMC_POWER_ON:
1029 tmio_mmc_set_clock(host, ios->clock);
Ulf Hansson3b292bb2013-10-24 17:53:15 +02001030 tmio_mmc_set_bus_width(host, ios->bus_width);
1031 break;
1032 }
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001033
1034 /* Let things settle. delay taken from winCE driver */
1035 udelay(140);
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +00001036 if (PTR_ERR(host->mrq) == -EINTR)
1037 dev_dbg(&host->pdev->dev,
1038 "%s.%d: IOS interrupted: clk %u, mode %u",
1039 current->comm, task_pid_nr(current),
1040 ios->clock, ios->power_mode);
1041 host->mrq = NULL;
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +02001042
Ulf Hanssonae12d252013-10-30 00:16:17 +01001043 host->clk_cache = ios->clock;
1044
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +02001045 mutex_unlock(&host->ios_lock);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001046}
1047
1048static int tmio_mmc_get_ro(struct mmc_host *mmc)
1049{
1050 struct tmio_mmc_host *host = mmc_priv(mmc);
1051 struct tmio_mmc_data *pdata = host->pdata;
Guennadi Liakhovetski3071caf2012-05-01 17:11:56 +02001052 int ret = mmc_gpio_get_ro(mmc);
1053 if (ret >= 0)
1054 return ret;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001055
Ulf Hansson03694832013-10-24 16:42:33 +02001056 ret = !((pdata->flags & TMIO_MMC_WRPROTECT_DISABLE) ||
Wolfram Sang2c545062016-04-27 18:51:23 +02001057 (sd_ctrl_read16_and_16_as_32(host, CTL_STATUS) & TMIO_STAT_WRPROTECT));
Ulf Hansson03694832013-10-24 16:42:33 +02001058
1059 return ret;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001060}
1061
Kuninori Morimotobbf02082014-09-08 23:45:25 -07001062static int tmio_multi_io_quirk(struct mmc_card *card,
1063 unsigned int direction, int blk_size)
1064{
1065 struct tmio_mmc_host *host = mmc_priv(card->host);
Kuninori Morimotobbf02082014-09-08 23:45:25 -07001066
Kuninori Morimoto85c02dd2015-01-13 04:58:10 +00001067 if (host->multi_io_quirk)
1068 return host->multi_io_quirk(card, direction, blk_size);
Kuninori Morimotobbf02082014-09-08 23:45:25 -07001069
1070 return blk_size;
1071}
1072
Wolfram Sang452e5ee2016-04-01 17:44:33 +02001073static struct mmc_host_ops tmio_mmc_ops = {
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001074 .request = tmio_mmc_request,
1075 .set_ios = tmio_mmc_set_ios,
1076 .get_ro = tmio_mmc_get_ro,
Laurent Pinchart2b63b342013-08-08 12:38:43 +02001077 .get_cd = mmc_gpio_get_cd,
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001078 .enable_sdio_irq = tmio_mmc_enable_sdio_irq,
Kuninori Morimotobbf02082014-09-08 23:45:25 -07001079 .multi_io_quirk = tmio_multi_io_quirk,
Ai Kyusee8f36b52016-11-03 15:16:02 +01001080 .hw_reset = tmio_mmc_hw_reset,
Ai Kyuse4f119972016-11-03 15:16:03 +01001081 .execute_tuning = tmio_mmc_execute_tuning,
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001082};
1083
Kuninori Morimoto05fae4a2013-11-20 00:30:39 -08001084static int tmio_mmc_init_ocr(struct tmio_mmc_host *host)
Guennadi Liakhovetskib958a672012-06-20 19:10:33 +02001085{
1086 struct tmio_mmc_data *pdata = host->pdata;
1087 struct mmc_host *mmc = host->mmc;
1088
1089 mmc_regulator_get_supply(mmc);
1090
Kuninori Morimoto05fae4a2013-11-20 00:30:39 -08001091 /* use ocr_mask if no regulator */
Guennadi Liakhovetskib958a672012-06-20 19:10:33 +02001092 if (!mmc->ocr_avail)
Kuninori Morimoto05fae4a2013-11-20 00:30:39 -08001093 mmc->ocr_avail = pdata->ocr_mask;
1094
1095 /*
1096 * try again.
1097 * There is possibility that regulator has not been probed
1098 */
1099 if (!mmc->ocr_avail)
1100 return -EPROBE_DEFER;
1101
1102 return 0;
Guennadi Liakhovetskib958a672012-06-20 19:10:33 +02001103}
1104
Guennadi Liakhovetski5a00a972013-02-15 16:13:56 +01001105static void tmio_mmc_of_parse(struct platform_device *pdev,
1106 struct tmio_mmc_data *pdata)
1107{
1108 const struct device_node *np = pdev->dev.of_node;
1109 if (!np)
1110 return;
1111
1112 if (of_get_property(np, "toshiba,mmc-wrprotect-disable", NULL))
1113 pdata->flags |= TMIO_MMC_WRPROTECT_DISABLE;
1114}
1115
Kuninori Morimoto94b110a2015-01-13 04:57:22 +00001116struct tmio_mmc_host*
1117tmio_mmc_host_alloc(struct platform_device *pdev)
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001118{
Kuninori Morimoto94b110a2015-01-13 04:57:22 +00001119 struct tmio_mmc_host *host;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001120 struct mmc_host *mmc;
Kuninori Morimoto94b110a2015-01-13 04:57:22 +00001121
1122 mmc = mmc_alloc_host(sizeof(struct tmio_mmc_host), &pdev->dev);
1123 if (!mmc)
1124 return NULL;
1125
1126 host = mmc_priv(mmc);
1127 host->mmc = mmc;
1128 host->pdev = pdev;
1129
1130 return host;
1131}
1132EXPORT_SYMBOL(tmio_mmc_host_alloc);
1133
1134void tmio_mmc_host_free(struct tmio_mmc_host *host)
1135{
1136 mmc_free_host(host->mmc);
Kuninori Morimoto94b110a2015-01-13 04:57:22 +00001137}
1138EXPORT_SYMBOL(tmio_mmc_host_free);
1139
1140int tmio_mmc_host_probe(struct tmio_mmc_host *_host,
1141 struct tmio_mmc_data *pdata)
1142{
1143 struct platform_device *pdev = _host->pdev;
1144 struct mmc_host *mmc = _host->mmc;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001145 struct resource *res_ctl;
1146 int ret;
1147 u32 irq_mask = TMIO_MASK_CMD;
1148
Guennadi Liakhovetski5a00a972013-02-15 16:13:56 +01001149 tmio_mmc_of_parse(pdev, pdata);
1150
Guennadi Liakhovetski7b952132013-02-15 16:13:50 +01001151 if (!(pdata->flags & TMIO_MMC_HAS_IDLE_WAIT))
Kuninori Morimotodfe9a222015-01-13 04:57:42 +00001152 _host->write16_hook = NULL;
Guennadi Liakhovetski7b952132013-02-15 16:13:50 +01001153
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001154 res_ctl = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1155 if (!res_ctl)
1156 return -EINVAL;
1157
Simon Baatz274a7522013-06-09 22:14:13 +02001158 ret = mmc_of_parse(mmc);
1159 if (ret < 0)
Wolfram Sangad7014b2017-01-06 09:38:33 +01001160 return ret;
Guennadi Liakhovetski5a00a972013-02-15 16:13:56 +01001161
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001162 _host->pdata = pdata;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001163 platform_set_drvdata(pdev, mmc);
1164
Chris Ball9d731e72013-09-06 07:29:05 -04001165 _host->set_pwr = pdata->set_pwr;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001166 _host->set_clk_div = pdata->set_clk_div;
1167
Kuninori Morimoto05fae4a2013-11-20 00:30:39 -08001168 ret = tmio_mmc_init_ocr(_host);
1169 if (ret < 0)
Wolfram Sangad7014b2017-01-06 09:38:33 +01001170 return ret;
Kuninori Morimoto05fae4a2013-11-20 00:30:39 -08001171
Ian Molton7df56bb2015-04-27 00:01:17 +01001172 _host->ctl = devm_ioremap(&pdev->dev,
1173 res_ctl->start, resource_size(res_ctl));
Wolfram Sangad7014b2017-01-06 09:38:33 +01001174 if (!_host->ctl)
1175 return -ENOMEM;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001176
Wolfram Sang6a4679f2016-08-24 11:34:37 +02001177 tmio_mmc_ops.card_busy = _host->card_busy;
Wolfram Sang452e5ee2016-04-01 17:44:33 +02001178 tmio_mmc_ops.start_signal_voltage_switch = _host->start_signal_voltage_switch;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001179 mmc->ops = &tmio_mmc_ops;
Wolfram Sang452e5ee2016-04-01 17:44:33 +02001180
Guennadi Liakhovetski5a00a972013-02-15 16:13:56 +01001181 mmc->caps |= MMC_CAP_4_BIT_DATA | pdata->capabilities;
Kuninori Morimotodd006b32013-11-20 00:16:14 -08001182 mmc->caps2 |= pdata->capabilities2;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001183 mmc->max_segs = 32;
1184 mmc->max_blk_size = 512;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001185 mmc->max_blk_count = (PAGE_SIZE / mmc->max_blk_size) *
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001186 mmc->max_segs;
1187 mmc->max_req_size = mmc->max_blk_size * mmc->max_blk_count;
1188 mmc->max_seg_size = mmc->max_req_size;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001189
Guennadi Liakhovetskic8be24c2012-02-09 22:57:09 +01001190 _host->native_hotplug = !(pdata->flags & TMIO_MMC_USE_GPIO_CD ||
Guennadi Liakhovetski2b1ac5c2012-02-09 22:57:08 +01001191 mmc->caps & MMC_CAP_NEEDS_POLL ||
Ulf Hanssonefd7be72017-01-10 16:10:52 +01001192 !mmc_card_is_removable(mmc));
Guennadi Liakhovetski2b1ac5c2012-02-09 22:57:08 +01001193
Wolfram Sang0bc0b6e2016-09-19 22:57:48 +02001194 /*
1195 * On Gen2+, eMMC with NONREMOVABLE currently fails because native
1196 * hotplug gets disabled. It seems RuntimePM related yet we need further
1197 * research. Since we are planning a PM overhaul anyway, let's enforce
1198 * for now the device being active by enabling native hotplug always.
1199 */
1200 if (pdata->flags & TMIO_MMC_MIN_RCAR2)
1201 _host->native_hotplug = true;
1202
Ben Hutchings2fb55952016-04-01 17:44:32 +02001203 if (tmio_mmc_clk_enable(_host) < 0) {
Guennadi Liakhovetski8c102a92012-06-20 19:10:31 +02001204 mmc->f_max = pdata->hclk;
1205 mmc->f_min = mmc->f_max / 512;
1206 }
1207
Bastian Hechtcbb18b32011-12-23 23:03:13 +01001208 /*
Sergei Shtylyovbb98d9d2014-09-18 23:33:49 +04001209 * Check the sanity of mmc->f_min to prevent tmio_mmc_set_clock() from
1210 * looping forever...
1211 */
Wolfram Sangad7014b2017-01-06 09:38:33 +01001212 if (mmc->f_min == 0)
1213 return -EINVAL;
Sergei Shtylyovbb98d9d2014-09-18 23:33:49 +04001214
1215 /*
Ulf Hansson03694832013-10-24 16:42:33 +02001216 * While using internal tmio hardware logic for card detection, we need
1217 * to ensure it stays powered for it to work.
Bastian Hechtcbb18b32011-12-23 23:03:13 +01001218 */
Guennadi Liakhovetski2b1ac5c2012-02-09 22:57:08 +01001219 if (_host->native_hotplug)
Bastian Hechtcbb18b32011-12-23 23:03:13 +01001220 pm_runtime_get_noresume(&pdev->dev);
1221
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001222 tmio_mmc_clk_stop(_host);
1223 tmio_mmc_reset(_host);
1224
Wolfram Sang2c545062016-04-27 18:51:23 +02001225 _host->sdcard_irq_mask = sd_ctrl_read16_and_16_as_32(_host, CTL_IRQ_MASK);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001226 tmio_mmc_disable_mmc_irqs(_host, TMIO_MASK_ALL);
Guennadi Liakhovetskie0337cc2012-06-20 19:10:30 +02001227
1228 /* Unmask the IRQs we want to know about */
1229 if (!_host->chan_rx)
1230 irq_mask |= TMIO_MASK_READOP;
1231 if (!_host->chan_tx)
1232 irq_mask |= TMIO_MASK_WRITEOP;
1233 if (!_host->native_hotplug)
1234 irq_mask &= ~(TMIO_STAT_CARD_REMOVE | TMIO_STAT_CARD_INSERT);
1235
1236 _host->sdcard_irq_mask &= ~irq_mask;
1237
Ulf Hansson7501c432013-10-24 15:58:45 +02001238 _host->sdio_irq_enabled = false;
1239 if (pdata->flags & TMIO_MMC_SDIO_IRQ) {
1240 _host->sdio_irq_mask = TMIO_SDIO_MASK_ALL;
1241 sd_ctrl_write16(_host, CTL_SDIO_IRQ_MASK, _host->sdio_irq_mask);
Wolfram Sangc51ff6c2016-12-09 17:51:41 +01001242 sd_ctrl_write16(_host, CTL_TRANSACTION_CTL, 0x0001);
Ulf Hansson7501c432013-10-24 15:58:45 +02001243 }
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001244
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001245 spin_lock_init(&_host->lock);
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +02001246 mutex_init(&_host->ios_lock);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001247
1248 /* Init delayed work for request timeouts */
1249 INIT_DELAYED_WORK(&_host->delayed_reset_work, tmio_mmc_reset_work);
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +02001250 INIT_WORK(&_host->done, tmio_mmc_done_work);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001251
1252 /* See if we also get DMA */
1253 tmio_mmc_request_dma(_host, pdata);
1254
Ulf Hansson03694832013-10-24 16:42:33 +02001255 pm_runtime_set_active(&pdev->dev);
1256 pm_runtime_set_autosuspend_delay(&pdev->dev, 50);
1257 pm_runtime_use_autosuspend(&pdev->dev);
1258 pm_runtime_enable(&pdev->dev);
1259
Guennadi Liakhovetski8c102a92012-06-20 19:10:31 +02001260 ret = mmc_add_host(mmc);
Guennadi Liakhovetski8c102a92012-06-20 19:10:31 +02001261 if (ret < 0) {
1262 tmio_mmc_host_remove(_host);
1263 return ret;
1264 }
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001265
Rafael J. Wysockic419e612012-03-13 01:01:51 +01001266 dev_pm_qos_expose_latency_limit(&pdev->dev, 100);
1267
Guennadi Liakhovetskic8be24c2012-02-09 22:57:09 +01001268 if (pdata->flags & TMIO_MMC_USE_GPIO_CD) {
Laurent Pinchart214fc302013-08-08 12:38:31 +02001269 ret = mmc_gpio_request_cd(mmc, pdata->cd_gpio, 0);
Guennadi Liakhovetskic8be24c2012-02-09 22:57:09 +01001270 if (ret < 0) {
1271 tmio_mmc_host_remove(_host);
1272 return ret;
1273 }
Stephen Warrend4d11442014-09-22 09:57:42 -06001274 mmc_gpiod_request_cd_irq(mmc);
Guennadi Liakhovetskic8be24c2012-02-09 22:57:09 +01001275 }
1276
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001277 return 0;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001278}
1279EXPORT_SYMBOL(tmio_mmc_host_probe);
1280
1281void tmio_mmc_host_remove(struct tmio_mmc_host *host)
1282{
Guennadi Liakhovetskie6ee7182011-05-05 16:13:12 +00001283 struct platform_device *pdev = host->pdev;
Guennadi Liakhovetskic8be24c2012-02-09 22:57:09 +01001284 struct mmc_host *mmc = host->mmc;
Guennadi Liakhovetskie6ee7182011-05-05 16:13:12 +00001285
Wolfram Sangc51ff6c2016-12-09 17:51:41 +01001286 if (host->pdata->flags & TMIO_MMC_SDIO_IRQ)
1287 sd_ctrl_write16(host, CTL_TRANSACTION_CTL, 0x0000);
1288
Guennadi Liakhovetski2b1ac5c2012-02-09 22:57:08 +01001289 if (!host->native_hotplug)
Guennadi Liakhovetski7311bef2011-05-11 16:51:11 +00001290 pm_runtime_get_sync(&pdev->dev);
1291
Rafael J. Wysockic419e612012-03-13 01:01:51 +01001292 dev_pm_qos_hide_latency_limit(&pdev->dev);
1293
Guennadi Liakhovetskic8be24c2012-02-09 22:57:09 +01001294 mmc_remove_host(mmc);
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +02001295 cancel_work_sync(&host->done);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001296 cancel_delayed_work_sync(&host->delayed_reset_work);
1297 tmio_mmc_release_dma(host);
Guennadi Liakhovetskie6ee7182011-05-05 16:13:12 +00001298
Guennadi Liakhovetskie6ee7182011-05-05 16:13:12 +00001299 pm_runtime_put_sync(&pdev->dev);
1300 pm_runtime_disable(&pdev->dev);
Wolfram Sangdfcba5f2017-01-17 21:26:01 +01001301
1302 tmio_mmc_clk_disable(host);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001303}
1304EXPORT_SYMBOL(tmio_mmc_host_remove);
1305
Ulf Hansson9ade7db2014-08-25 12:03:20 +02001306#ifdef CONFIG_PM
Guennadi Liakhovetski7311bef2011-05-11 16:51:11 +00001307int tmio_mmc_host_runtime_suspend(struct device *dev)
1308{
Ulf Hanssonae12d252013-10-30 00:16:17 +01001309 struct mmc_host *mmc = dev_get_drvdata(dev);
1310 struct tmio_mmc_host *host = mmc_priv(mmc);
1311
Ulf Hansson20e955c2014-08-25 11:55:57 +02001312 tmio_mmc_disable_mmc_irqs(host, TMIO_MASK_ALL);
1313
Ulf Hanssonae12d252013-10-30 00:16:17 +01001314 if (host->clk_cache)
1315 tmio_mmc_clk_stop(host);
1316
Wolfram Sangdfcba5f2017-01-17 21:26:01 +01001317 tmio_mmc_clk_disable(host);
Ulf Hanssonae12d252013-10-30 00:16:17 +01001318
Guennadi Liakhovetski7311bef2011-05-11 16:51:11 +00001319 return 0;
1320}
1321EXPORT_SYMBOL(tmio_mmc_host_runtime_suspend);
1322
Ai Kyuse4f119972016-11-03 15:16:03 +01001323static bool tmio_mmc_can_retune(struct tmio_mmc_host *host)
1324{
1325 return host->tap_num && mmc_can_retune(host->mmc);
1326}
1327
Guennadi Liakhovetski7311bef2011-05-11 16:51:11 +00001328int tmio_mmc_host_runtime_resume(struct device *dev)
1329{
1330 struct mmc_host *mmc = dev_get_drvdata(dev);
1331 struct tmio_mmc_host *host = mmc_priv(mmc);
Guennadi Liakhovetski7311bef2011-05-11 16:51:11 +00001332
Ulf Hanssonae12d252013-10-30 00:16:17 +01001333 tmio_mmc_reset(host);
Ben Hutchings2fb55952016-04-01 17:44:32 +02001334 tmio_mmc_clk_enable(host);
Ulf Hanssonae12d252013-10-30 00:16:17 +01001335
Wolfram Sang7fbc0302016-04-01 17:44:34 +02001336 if (host->clk_cache)
Ulf Hanssonae12d252013-10-30 00:16:17 +01001337 tmio_mmc_set_clock(host, host->clk_cache);
Ulf Hanssonae12d252013-10-30 00:16:17 +01001338
Guennadi Liakhovetski162f43e2011-07-14 18:39:10 +02001339 tmio_mmc_enable_dma(host, true);
Guennadi Liakhovetski7311bef2011-05-11 16:51:11 +00001340
Ai Kyuse4f119972016-11-03 15:16:03 +01001341 if (tmio_mmc_can_retune(host) && host->select_tuning(host))
1342 dev_warn(&host->pdev->dev, "Tuning selection failed\n");
1343
Guennadi Liakhovetski7311bef2011-05-11 16:51:11 +00001344 return 0;
1345}
1346EXPORT_SYMBOL(tmio_mmc_host_runtime_resume);
Ulf Hansson710dec92013-10-23 14:55:07 +02001347#endif
Guennadi Liakhovetski7311bef2011-05-11 16:51:11 +00001348
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001349MODULE_LICENSE("GPL v2");