blob: 5c2e5a36258ad62d8fdbd81e8daad9fd6f1ca279 [file] [log] [blame]
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001/*
2 * linux/drivers/mmc/host/tmio_mmc_pio.c
3 *
4 * Copyright (C) 2011 Guennadi Liakhovetski
5 * Copyright (C) 2007 Ian Molton
6 * Copyright (C) 2004 Ian Molton
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 *
12 * Driver for the MMC / SD / SDIO IP found in:
13 *
14 * TC6393XB, TC6391XB, TC6387XB, T7L66XB, ASIC3, SH-Mobile SoCs
15 *
16 * This driver draws mainly on scattered spec sheets, Reverse engineering
17 * of the toshiba e800 SD driver and some parts of the 2.4 ASIC3 driver (4 bit
18 * support). (Further 4 bit support from a later datasheet).
19 *
20 * TODO:
21 * Investigate using a workqueue for PIO transfers
22 * Eliminate FIXMEs
23 * SDIO support
24 * Better Power management
25 * Handle MMC errors better
26 * double buffer support
27 *
28 */
29
30#include <linux/delay.h>
31#include <linux/device.h>
32#include <linux/highmem.h>
33#include <linux/interrupt.h>
34#include <linux/io.h>
35#include <linux/irq.h>
36#include <linux/mfd/tmio.h>
37#include <linux/mmc/host.h>
Guennadi Liakhovetski0f506a92012-06-20 19:10:35 +020038#include <linux/mmc/mmc.h>
Guennadi Liakhovetskifd0ea652012-04-30 23:31:57 +020039#include <linux/mmc/slot-gpio.h>
Simon Hormancba179a2011-03-24 09:48:36 +010040#include <linux/mmc/tmio.h>
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +010041#include <linux/module.h>
42#include <linux/pagemap.h>
43#include <linux/platform_device.h>
Rafael J. Wysockic419e612012-03-13 01:01:51 +010044#include <linux/pm_qos.h>
Guennadi Liakhovetskie6ee7182011-05-05 16:13:12 +000045#include <linux/pm_runtime.h>
Guennadi Liakhovetski619b08d2013-02-15 16:14:00 +010046#include <linux/regulator/consumer.h>
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +010047#include <linux/scatterlist.h>
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +010048#include <linux/spinlock.h>
Guennadi Liakhovetskie3de2be2012-01-06 13:06:51 +010049#include <linux/workqueue.h>
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +010050
51#include "tmio_mmc.h"
52
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +010053void tmio_mmc_enable_mmc_irqs(struct tmio_mmc_host *host, u32 i)
54{
Simon Horman54680fe2011-08-25 10:27:25 +090055 host->sdcard_irq_mask &= ~(i & TMIO_MASK_IRQ);
56 sd_ctrl_write32(host, CTL_IRQ_MASK, host->sdcard_irq_mask);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +010057}
58
59void tmio_mmc_disable_mmc_irqs(struct tmio_mmc_host *host, u32 i)
60{
Simon Horman54680fe2011-08-25 10:27:25 +090061 host->sdcard_irq_mask |= (i & TMIO_MASK_IRQ);
62 sd_ctrl_write32(host, CTL_IRQ_MASK, host->sdcard_irq_mask);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +010063}
64
65static void tmio_mmc_ack_mmc_irqs(struct tmio_mmc_host *host, u32 i)
66{
67 sd_ctrl_write32(host, CTL_STATUS, ~i);
68}
69
70static void tmio_mmc_init_sg(struct tmio_mmc_host *host, struct mmc_data *data)
71{
72 host->sg_len = data->sg_len;
73 host->sg_ptr = data->sg;
74 host->sg_orig = data->sg;
75 host->sg_off = 0;
76}
77
78static int tmio_mmc_next_sg(struct tmio_mmc_host *host)
79{
80 host->sg_ptr = sg_next(host->sg_ptr);
81 host->sg_off = 0;
82 return --host->sg_len;
83}
84
85#ifdef CONFIG_MMC_DEBUG
86
87#define STATUS_TO_TEXT(a, status, i) \
88 do { \
89 if (status & TMIO_STAT_##a) { \
90 if (i++) \
91 printk(" | "); \
92 printk(#a); \
93 } \
94 } while (0)
95
96static void pr_debug_status(u32 status)
97{
98 int i = 0;
Girish K Sa3c76eb2011-10-11 11:44:09 +053099 pr_debug("status: %08x = ", status);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100100 STATUS_TO_TEXT(CARD_REMOVE, status, i);
101 STATUS_TO_TEXT(CARD_INSERT, status, i);
102 STATUS_TO_TEXT(SIGSTATE, status, i);
103 STATUS_TO_TEXT(WRPROTECT, status, i);
104 STATUS_TO_TEXT(CARD_REMOVE_A, status, i);
105 STATUS_TO_TEXT(CARD_INSERT_A, status, i);
106 STATUS_TO_TEXT(SIGSTATE_A, status, i);
107 STATUS_TO_TEXT(CMD_IDX_ERR, status, i);
108 STATUS_TO_TEXT(STOPBIT_ERR, status, i);
109 STATUS_TO_TEXT(ILL_FUNC, status, i);
110 STATUS_TO_TEXT(CMD_BUSY, status, i);
111 STATUS_TO_TEXT(CMDRESPEND, status, i);
112 STATUS_TO_TEXT(DATAEND, status, i);
113 STATUS_TO_TEXT(CRCFAIL, status, i);
114 STATUS_TO_TEXT(DATATIMEOUT, status, i);
115 STATUS_TO_TEXT(CMDTIMEOUT, status, i);
116 STATUS_TO_TEXT(RXOVERFLOW, status, i);
117 STATUS_TO_TEXT(TXUNDERRUN, status, i);
118 STATUS_TO_TEXT(RXRDY, status, i);
119 STATUS_TO_TEXT(TXRQ, status, i);
120 STATUS_TO_TEXT(ILL_ACCESS, status, i);
121 printk("\n");
122}
123
124#else
125#define pr_debug_status(s) do { } while (0)
126#endif
127
128static void tmio_mmc_enable_sdio_irq(struct mmc_host *mmc, int enable)
129{
130 struct tmio_mmc_host *host = mmc_priv(mmc);
131
Ulf Hansson7501c432013-10-24 15:58:45 +0200132 if (enable && !host->sdio_irq_enabled) {
133 /* Keep device active while SDIO irq is enabled */
134 pm_runtime_get_sync(mmc_dev(mmc));
135 host->sdio_irq_enabled = true;
136
Simon Horman54680fe2011-08-25 10:27:25 +0900137 host->sdio_irq_mask = TMIO_SDIO_MASK_ALL &
138 ~TMIO_SDIO_STAT_IOIRQ;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100139 sd_ctrl_write16(host, CTL_TRANSACTION_CTL, 0x0001);
Simon Horman54680fe2011-08-25 10:27:25 +0900140 sd_ctrl_write16(host, CTL_SDIO_IRQ_MASK, host->sdio_irq_mask);
Ulf Hansson7501c432013-10-24 15:58:45 +0200141 } else if (!enable && host->sdio_irq_enabled) {
Simon Horman54680fe2011-08-25 10:27:25 +0900142 host->sdio_irq_mask = TMIO_SDIO_MASK_ALL;
143 sd_ctrl_write16(host, CTL_SDIO_IRQ_MASK, host->sdio_irq_mask);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100144 sd_ctrl_write16(host, CTL_TRANSACTION_CTL, 0x0000);
Ulf Hansson7501c432013-10-24 15:58:45 +0200145
146 host->sdio_irq_enabled = false;
147 pm_runtime_put(mmc_dev(mmc));
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100148 }
149}
150
151static void tmio_mmc_set_clock(struct tmio_mmc_host *host, int new_clock)
152{
153 u32 clk = 0, clock;
154
155 if (new_clock) {
156 for (clock = host->mmc->f_min, clk = 0x80000080;
157 new_clock >= (clock<<1); clk >>= 1)
158 clock <<= 1;
159 clk |= 0x100;
160 }
161
162 if (host->set_clk_div)
163 host->set_clk_div(host->pdev, (clk>>22) & 1);
164
165 sd_ctrl_write16(host, CTL_SD_CARD_CLK_CTL, clk & 0x1ff);
Guennadi Liakhovetski619b08d2013-02-15 16:14:00 +0100166 msleep(10);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100167}
168
169static void tmio_mmc_clk_stop(struct tmio_mmc_host *host)
170{
Guennadi Liakhovetski69d1fe12011-03-09 17:28:55 +0100171 /* implicit BUG_ON(!res) */
Kuninori Morimoto5d60e502013-11-20 00:31:06 -0800172 if (host->pdata->flags & TMIO_MMC_HAVE_HIGH_REG) {
Guennadi Liakhovetski69d1fe12011-03-09 17:28:55 +0100173 sd_ctrl_write16(host, CTL_CLK_AND_WAIT_CTL, 0x0000);
174 msleep(10);
175 }
Guennadi Liakhovetskid9b03422011-03-10 18:43:07 +0100176
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100177 sd_ctrl_write16(host, CTL_SD_CARD_CLK_CTL, ~0x0100 &
178 sd_ctrl_read16(host, CTL_SD_CARD_CLK_CTL));
179 msleep(10);
180}
181
182static void tmio_mmc_clk_start(struct tmio_mmc_host *host)
183{
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100184 sd_ctrl_write16(host, CTL_SD_CARD_CLK_CTL, 0x0100 |
185 sd_ctrl_read16(host, CTL_SD_CARD_CLK_CTL));
186 msleep(10);
Guennadi Liakhovetskid9b03422011-03-10 18:43:07 +0100187
Guennadi Liakhovetski69d1fe12011-03-09 17:28:55 +0100188 /* implicit BUG_ON(!res) */
Kuninori Morimoto5d60e502013-11-20 00:31:06 -0800189 if (host->pdata->flags & TMIO_MMC_HAVE_HIGH_REG) {
Guennadi Liakhovetski69d1fe12011-03-09 17:28:55 +0100190 sd_ctrl_write16(host, CTL_CLK_AND_WAIT_CTL, 0x0100);
191 msleep(10);
192 }
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100193}
194
195static void tmio_mmc_reset(struct tmio_mmc_host *host)
196{
197 /* FIXME - should we set stop clock reg here */
198 sd_ctrl_write16(host, CTL_RESET_SD, 0x0000);
Guennadi Liakhovetski69d1fe12011-03-09 17:28:55 +0100199 /* implicit BUG_ON(!res) */
Kuninori Morimoto5d60e502013-11-20 00:31:06 -0800200 if (host->pdata->flags & TMIO_MMC_HAVE_HIGH_REG)
Guennadi Liakhovetski69d1fe12011-03-09 17:28:55 +0100201 sd_ctrl_write16(host, CTL_RESET_SDIO, 0x0000);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100202 msleep(10);
203 sd_ctrl_write16(host, CTL_RESET_SD, 0x0001);
Kuninori Morimoto5d60e502013-11-20 00:31:06 -0800204 if (host->pdata->flags & TMIO_MMC_HAVE_HIGH_REG)
Guennadi Liakhovetski69d1fe12011-03-09 17:28:55 +0100205 sd_ctrl_write16(host, CTL_RESET_SDIO, 0x0001);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100206 msleep(10);
207}
208
209static void tmio_mmc_reset_work(struct work_struct *work)
210{
211 struct tmio_mmc_host *host = container_of(work, struct tmio_mmc_host,
212 delayed_reset_work.work);
213 struct mmc_request *mrq;
214 unsigned long flags;
215
216 spin_lock_irqsave(&host->lock, flags);
217 mrq = host->mrq;
218
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000219 /*
220 * is request already finished? Since we use a non-blocking
221 * cancel_delayed_work(), it can happen, that a .set_ios() call preempts
222 * us, so, have to check for IS_ERR(host->mrq)
223 */
224 if (IS_ERR_OR_NULL(mrq)
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100225 || time_is_after_jiffies(host->last_req_ts +
226 msecs_to_jiffies(2000))) {
227 spin_unlock_irqrestore(&host->lock, flags);
228 return;
229 }
230
231 dev_warn(&host->pdev->dev,
232 "timeout waiting for hardware interrupt (CMD%u)\n",
233 mrq->cmd->opcode);
234
235 if (host->data)
236 host->data->error = -ETIMEDOUT;
237 else if (host->cmd)
238 host->cmd->error = -ETIMEDOUT;
239 else
240 mrq->cmd->error = -ETIMEDOUT;
241
242 host->cmd = NULL;
243 host->data = NULL;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100244 host->force_pio = false;
245
246 spin_unlock_irqrestore(&host->lock, flags);
247
248 tmio_mmc_reset(host);
249
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000250 /* Ready for new calls */
251 host->mrq = NULL;
252
Guennadi Liakhovetskie3de2be2012-01-06 13:06:51 +0100253 tmio_mmc_abort_dma(host);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100254 mmc_request_done(host->mmc, mrq);
255}
256
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000257/* called with host->lock held, interrupts disabled */
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100258static void tmio_mmc_finish_request(struct tmio_mmc_host *host)
259{
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +0200260 struct mmc_request *mrq;
261 unsigned long flags;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100262
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +0200263 spin_lock_irqsave(&host->lock, flags);
264
265 mrq = host->mrq;
266 if (IS_ERR_OR_NULL(mrq)) {
267 spin_unlock_irqrestore(&host->lock, flags);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100268 return;
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +0200269 }
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100270
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100271 host->cmd = NULL;
272 host->data = NULL;
273 host->force_pio = false;
274
275 cancel_delayed_work(&host->delayed_reset_work);
276
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000277 host->mrq = NULL;
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +0200278 spin_unlock_irqrestore(&host->lock, flags);
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000279
Guennadi Liakhovetskie3de2be2012-01-06 13:06:51 +0100280 if (mrq->cmd->error || (mrq->data && mrq->data->error))
281 tmio_mmc_abort_dma(host);
282
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100283 mmc_request_done(host->mmc, mrq);
284}
285
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +0200286static void tmio_mmc_done_work(struct work_struct *work)
287{
288 struct tmio_mmc_host *host = container_of(work, struct tmio_mmc_host,
289 done);
290 tmio_mmc_finish_request(host);
291}
292
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100293/* These are the bitmasks the tmio chip requires to implement the MMC response
294 * types. Note that R1 and R6 are the same in this scheme. */
295#define APP_CMD 0x0040
296#define RESP_NONE 0x0300
297#define RESP_R1 0x0400
298#define RESP_R1B 0x0500
299#define RESP_R2 0x0600
300#define RESP_R3 0x0700
301#define DATA_PRESENT 0x0800
302#define TRANSFER_READ 0x1000
303#define TRANSFER_MULTI 0x2000
304#define SECURITY_CMD 0x4000
305
306static int tmio_mmc_start_command(struct tmio_mmc_host *host, struct mmc_command *cmd)
307{
308 struct mmc_data *data = host->data;
309 int c = cmd->opcode;
Guennadi Liakhovetskie23cd532012-02-22 13:16:09 +0100310 u32 irq_mask = TMIO_MASK_CMD;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100311
Guennadi Liakhovetski0f506a92012-06-20 19:10:35 +0200312 /* CMD12 is handled by hardware */
313 if (cmd->opcode == MMC_STOP_TRANSMISSION && !cmd->arg) {
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100314 sd_ctrl_write16(host, CTL_STOP_INTERNAL_ACTION, 0x001);
315 return 0;
316 }
317
318 switch (mmc_resp_type(cmd)) {
319 case MMC_RSP_NONE: c |= RESP_NONE; break;
320 case MMC_RSP_R1: c |= RESP_R1; break;
321 case MMC_RSP_R1B: c |= RESP_R1B; break;
322 case MMC_RSP_R2: c |= RESP_R2; break;
323 case MMC_RSP_R3: c |= RESP_R3; break;
324 default:
325 pr_debug("Unknown response type %d\n", mmc_resp_type(cmd));
326 return -EINVAL;
327 }
328
329 host->cmd = cmd;
330
331/* FIXME - this seems to be ok commented out but the spec suggest this bit
332 * should be set when issuing app commands.
333 * if(cmd->flags & MMC_FLAG_ACMD)
334 * c |= APP_CMD;
335 */
336 if (data) {
337 c |= DATA_PRESENT;
338 if (data->blocks > 1) {
339 sd_ctrl_write16(host, CTL_STOP_INTERNAL_ACTION, 0x100);
340 c |= TRANSFER_MULTI;
341 }
342 if (data->flags & MMC_DATA_READ)
343 c |= TRANSFER_READ;
344 }
345
Guennadi Liakhovetskie23cd532012-02-22 13:16:09 +0100346 if (!host->native_hotplug)
347 irq_mask &= ~(TMIO_STAT_CARD_REMOVE | TMIO_STAT_CARD_INSERT);
348 tmio_mmc_enable_mmc_irqs(host, irq_mask);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100349
350 /* Fire off the command */
351 sd_ctrl_write32(host, CTL_ARG_REG, cmd->arg);
352 sd_ctrl_write16(host, CTL_SD_CMD, c);
353
354 return 0;
355}
356
357/*
358 * This chip always returns (at least?) as much data as you ask for.
359 * I'm unsure what happens if you ask for less than a block. This should be
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300360 * looked into to ensure that a funny length read doesn't hose the controller.
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100361 */
362static void tmio_mmc_pio_irq(struct tmio_mmc_host *host)
363{
364 struct mmc_data *data = host->data;
365 void *sg_virt;
366 unsigned short *buf;
367 unsigned int count;
368 unsigned long flags;
369
370 if ((host->chan_tx || host->chan_rx) && !host->force_pio) {
371 pr_err("PIO IRQ in DMA mode!\n");
372 return;
373 } else if (!data) {
374 pr_debug("Spurious PIO IRQ\n");
375 return;
376 }
377
378 sg_virt = tmio_mmc_kmap_atomic(host->sg_ptr, &flags);
379 buf = (unsigned short *)(sg_virt + host->sg_off);
380
381 count = host->sg_ptr->length - host->sg_off;
382 if (count > data->blksz)
383 count = data->blksz;
384
385 pr_debug("count: %08x offset: %08x flags %08x\n",
386 count, host->sg_off, data->flags);
387
388 /* Transfer the data */
389 if (data->flags & MMC_DATA_READ)
390 sd_ctrl_read16_rep(host, CTL_SD_DATA_PORT, buf, count >> 1);
391 else
392 sd_ctrl_write16_rep(host, CTL_SD_DATA_PORT, buf, count >> 1);
393
394 host->sg_off += count;
395
396 tmio_mmc_kunmap_atomic(host->sg_ptr, &flags, sg_virt);
397
398 if (host->sg_off == host->sg_ptr->length)
399 tmio_mmc_next_sg(host);
400
401 return;
402}
403
404static void tmio_mmc_check_bounce_buffer(struct tmio_mmc_host *host)
405{
406 if (host->sg_ptr == &host->bounce_sg) {
407 unsigned long flags;
408 void *sg_vaddr = tmio_mmc_kmap_atomic(host->sg_orig, &flags);
409 memcpy(sg_vaddr, host->bounce_buf, host->bounce_sg.length);
410 tmio_mmc_kunmap_atomic(host->sg_orig, &flags, sg_vaddr);
411 }
412}
413
414/* needs to be called with host->lock held */
415void tmio_mmc_do_data_irq(struct tmio_mmc_host *host)
416{
417 struct mmc_data *data = host->data;
418 struct mmc_command *stop;
419
420 host->data = NULL;
421
422 if (!data) {
423 dev_warn(&host->pdev->dev, "Spurious data end IRQ\n");
424 return;
425 }
426 stop = data->stop;
427
428 /* FIXME - return correct transfer count on errors */
429 if (!data->error)
430 data->bytes_xfered = data->blocks * data->blksz;
431 else
432 data->bytes_xfered = 0;
433
434 pr_debug("Completed data request\n");
435
436 /*
437 * FIXME: other drivers allow an optional stop command of any given type
438 * which we dont do, as the chip can auto generate them.
439 * Perhaps we can be smarter about when to use auto CMD12 and
440 * only issue the auto request when we know this is the desired
441 * stop command, allowing fallback to the stop command the
442 * upper layers expect. For now, we do what works.
443 */
444
445 if (data->flags & MMC_DATA_READ) {
446 if (host->chan_rx && !host->force_pio)
447 tmio_mmc_check_bounce_buffer(host);
448 dev_dbg(&host->pdev->dev, "Complete Rx request %p\n",
449 host->mrq);
450 } else {
451 dev_dbg(&host->pdev->dev, "Complete Tx request %p\n",
452 host->mrq);
453 }
454
455 if (stop) {
Guennadi Liakhovetski0f506a92012-06-20 19:10:35 +0200456 if (stop->opcode == MMC_STOP_TRANSMISSION && !stop->arg)
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100457 sd_ctrl_write16(host, CTL_STOP_INTERNAL_ACTION, 0x000);
458 else
459 BUG();
460 }
461
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +0200462 schedule_work(&host->done);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100463}
464
465static void tmio_mmc_data_irq(struct tmio_mmc_host *host)
466{
467 struct mmc_data *data;
468 spin_lock(&host->lock);
469 data = host->data;
470
471 if (!data)
472 goto out;
473
474 if (host->chan_tx && (data->flags & MMC_DATA_WRITE) && !host->force_pio) {
475 /*
476 * Has all data been written out yet? Testing on SuperH showed,
477 * that in most cases the first interrupt comes already with the
478 * BUSY status bit clear, but on some operations, like mount or
479 * in the beginning of a write / sync / umount, there is one
480 * DATAEND interrupt with the BUSY bit set, in this cases
481 * waiting for one more interrupt fixes the problem.
482 */
483 if (!(sd_ctrl_read32(host, CTL_STATUS) & TMIO_STAT_CMD_BUSY)) {
484 tmio_mmc_disable_mmc_irqs(host, TMIO_STAT_DATAEND);
485 tasklet_schedule(&host->dma_complete);
486 }
487 } else if (host->chan_rx && (data->flags & MMC_DATA_READ) && !host->force_pio) {
488 tmio_mmc_disable_mmc_irqs(host, TMIO_STAT_DATAEND);
489 tasklet_schedule(&host->dma_complete);
490 } else {
491 tmio_mmc_do_data_irq(host);
492 tmio_mmc_disable_mmc_irqs(host, TMIO_MASK_READOP | TMIO_MASK_WRITEOP);
493 }
494out:
495 spin_unlock(&host->lock);
496}
497
498static void tmio_mmc_cmd_irq(struct tmio_mmc_host *host,
499 unsigned int stat)
500{
501 struct mmc_command *cmd = host->cmd;
502 int i, addr;
503
504 spin_lock(&host->lock);
505
506 if (!host->cmd) {
507 pr_debug("Spurious CMD irq\n");
508 goto out;
509 }
510
511 host->cmd = NULL;
512
513 /* This controller is sicker than the PXA one. Not only do we need to
514 * drop the top 8 bits of the first response word, we also need to
515 * modify the order of the response for short response command types.
516 */
517
518 for (i = 3, addr = CTL_RESPONSE ; i >= 0 ; i--, addr += 4)
519 cmd->resp[i] = sd_ctrl_read32(host, addr);
520
521 if (cmd->flags & MMC_RSP_136) {
522 cmd->resp[0] = (cmd->resp[0] << 8) | (cmd->resp[1] >> 24);
523 cmd->resp[1] = (cmd->resp[1] << 8) | (cmd->resp[2] >> 24);
524 cmd->resp[2] = (cmd->resp[2] << 8) | (cmd->resp[3] >> 24);
525 cmd->resp[3] <<= 8;
526 } else if (cmd->flags & MMC_RSP_R3) {
527 cmd->resp[0] = cmd->resp[3];
528 }
529
530 if (stat & TMIO_STAT_CMDTIMEOUT)
531 cmd->error = -ETIMEDOUT;
532 else if (stat & TMIO_STAT_CRCFAIL && cmd->flags & MMC_RSP_CRC)
533 cmd->error = -EILSEQ;
534
535 /* If there is data to handle we enable data IRQs here, and
536 * we will ultimatley finish the request in the data_end handler.
537 * If theres no data or we encountered an error, finish now.
538 */
539 if (host->data && !cmd->error) {
540 if (host->data->flags & MMC_DATA_READ) {
541 if (host->force_pio || !host->chan_rx)
542 tmio_mmc_enable_mmc_irqs(host, TMIO_MASK_READOP);
543 else
544 tasklet_schedule(&host->dma_issue);
545 } else {
546 if (host->force_pio || !host->chan_tx)
547 tmio_mmc_enable_mmc_irqs(host, TMIO_MASK_WRITEOP);
548 else
549 tasklet_schedule(&host->dma_issue);
550 }
551 } else {
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +0200552 schedule_work(&host->done);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100553 }
554
555out:
556 spin_unlock(&host->lock);
557}
558
Simon Horman7729c7a2011-08-25 10:27:26 +0900559static void tmio_mmc_card_irq_status(struct tmio_mmc_host *host,
560 int *ireg, int *status)
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100561{
Simon Horman7729c7a2011-08-25 10:27:26 +0900562 *status = sd_ctrl_read32(host, CTL_STATUS);
563 *ireg = *status & TMIO_MASK_IRQ & ~host->sdcard_irq_mask;
564
565 pr_debug_status(*status);
566 pr_debug_status(*ireg);
567}
568
569static bool __tmio_mmc_card_detect_irq(struct tmio_mmc_host *host,
570 int ireg, int status)
571{
Guennadi Liakhovetski71d111c2011-07-14 12:16:59 +0200572 struct mmc_host *mmc = host->mmc;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100573
Paul Parsonse312eb12011-05-15 13:24:41 +0000574 /* Card insert / remove attempts */
575 if (ireg & (TMIO_STAT_CARD_INSERT | TMIO_STAT_CARD_REMOVE)) {
576 tmio_mmc_ack_mmc_irqs(host, TMIO_STAT_CARD_INSERT |
577 TMIO_STAT_CARD_REMOVE);
Guennadi Liakhovetski71d111c2011-07-14 12:16:59 +0200578 if ((((ireg & TMIO_STAT_CARD_REMOVE) && mmc->card) ||
579 ((ireg & TMIO_STAT_CARD_INSERT) && !mmc->card)) &&
580 !work_pending(&mmc->detect.work))
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +0200581 mmc_detect_change(host->mmc, msecs_to_jiffies(100));
Simon Horman7729c7a2011-08-25 10:27:26 +0900582 return true;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100583 }
584
Simon Horman7729c7a2011-08-25 10:27:26 +0900585 return false;
586}
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100587
Simon Horman7729c7a2011-08-25 10:27:26 +0900588irqreturn_t tmio_mmc_card_detect_irq(int irq, void *devid)
589{
590 unsigned int ireg, status;
591 struct tmio_mmc_host *host = devid;
592
593 tmio_mmc_card_irq_status(host, &ireg, &status);
594 __tmio_mmc_card_detect_irq(host, ireg, status);
595
596 return IRQ_HANDLED;
597}
598EXPORT_SYMBOL(tmio_mmc_card_detect_irq);
599
600static bool __tmio_mmc_sdcard_irq(struct tmio_mmc_host *host,
601 int ireg, int status)
602{
Paul Parsonse312eb12011-05-15 13:24:41 +0000603 /* Command completion */
604 if (ireg & (TMIO_STAT_CMDRESPEND | TMIO_STAT_CMDTIMEOUT)) {
605 tmio_mmc_ack_mmc_irqs(host,
606 TMIO_STAT_CMDRESPEND |
607 TMIO_STAT_CMDTIMEOUT);
608 tmio_mmc_cmd_irq(host, status);
Simon Horman7729c7a2011-08-25 10:27:26 +0900609 return true;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100610 }
Paul Parsonse312eb12011-05-15 13:24:41 +0000611
612 /* Data transfer */
613 if (ireg & (TMIO_STAT_RXRDY | TMIO_STAT_TXRQ)) {
614 tmio_mmc_ack_mmc_irqs(host, TMIO_STAT_RXRDY | TMIO_STAT_TXRQ);
615 tmio_mmc_pio_irq(host);
Simon Horman7729c7a2011-08-25 10:27:26 +0900616 return true;
Paul Parsonse312eb12011-05-15 13:24:41 +0000617 }
618
619 /* Data transfer completion */
620 if (ireg & TMIO_STAT_DATAEND) {
621 tmio_mmc_ack_mmc_irqs(host, TMIO_STAT_DATAEND);
622 tmio_mmc_data_irq(host);
Simon Horman7729c7a2011-08-25 10:27:26 +0900623 return true;
Paul Parsonse312eb12011-05-15 13:24:41 +0000624 }
625
Simon Horman7729c7a2011-08-25 10:27:26 +0900626 return false;
627}
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100628
Simon Horman7729c7a2011-08-25 10:27:26 +0900629irqreturn_t tmio_mmc_sdcard_irq(int irq, void *devid)
630{
631 unsigned int ireg, status;
632 struct tmio_mmc_host *host = devid;
633
634 tmio_mmc_card_irq_status(host, &ireg, &status);
635 __tmio_mmc_sdcard_irq(host, ireg, status);
636
637 return IRQ_HANDLED;
638}
639EXPORT_SYMBOL(tmio_mmc_sdcard_irq);
640
641irqreturn_t tmio_mmc_sdio_irq(int irq, void *devid)
642{
643 struct tmio_mmc_host *host = devid;
644 struct mmc_host *mmc = host->mmc;
645 struct tmio_mmc_data *pdata = host->pdata;
646 unsigned int ireg, status;
647
648 if (!(pdata->flags & TMIO_MMC_SDIO_IRQ))
649 return IRQ_HANDLED;
650
651 status = sd_ctrl_read16(host, CTL_SDIO_STATUS);
652 ireg = status & TMIO_SDIO_MASK_ALL & ~host->sdcard_irq_mask;
653
654 sd_ctrl_write16(host, CTL_SDIO_STATUS, status & ~TMIO_SDIO_MASK_ALL);
655
656 if (mmc->caps & MMC_CAP_SDIO_IRQ && ireg & TMIO_SDIO_STAT_IOIRQ)
657 mmc_signal_sdio_irq(mmc);
658
659 return IRQ_HANDLED;
660}
661EXPORT_SYMBOL(tmio_mmc_sdio_irq);
662
663irqreturn_t tmio_mmc_irq(int irq, void *devid)
664{
665 struct tmio_mmc_host *host = devid;
666 unsigned int ireg, status;
667
668 pr_debug("MMC IRQ begin\n");
669
670 tmio_mmc_card_irq_status(host, &ireg, &status);
671 if (__tmio_mmc_card_detect_irq(host, ireg, status))
672 return IRQ_HANDLED;
673 if (__tmio_mmc_sdcard_irq(host, ireg, status))
674 return IRQ_HANDLED;
675
676 tmio_mmc_sdio_irq(irq, devid);
677
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100678 return IRQ_HANDLED;
679}
Magnus Damm8e7bfdb2011-05-06 11:02:33 +0000680EXPORT_SYMBOL(tmio_mmc_irq);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100681
682static int tmio_mmc_start_data(struct tmio_mmc_host *host,
683 struct mmc_data *data)
684{
685 struct tmio_mmc_data *pdata = host->pdata;
686
687 pr_debug("setup data transfer: blocksize %08x nr_blocks %d\n",
688 data->blksz, data->blocks);
689
690 /* Some hardware cannot perform 2 byte requests in 4 bit mode */
691 if (host->mmc->ios.bus_width == MMC_BUS_WIDTH_4) {
692 int blksz_2bytes = pdata->flags & TMIO_MMC_BLKSZ_2BYTES;
693
694 if (data->blksz < 2 || (data->blksz < 4 && !blksz_2bytes)) {
695 pr_err("%s: %d byte block unsupported in 4 bit mode\n",
696 mmc_hostname(host->mmc), data->blksz);
697 return -EINVAL;
698 }
699 }
700
701 tmio_mmc_init_sg(host, data);
702 host->data = data;
703
704 /* Set transfer length / blocksize */
705 sd_ctrl_write16(host, CTL_SD_XFER_LEN, data->blksz);
706 sd_ctrl_write16(host, CTL_XFER_BLK_COUNT, data->blocks);
707
708 tmio_mmc_start_dma(host, data);
709
710 return 0;
711}
712
713/* Process requests from the MMC layer */
714static void tmio_mmc_request(struct mmc_host *mmc, struct mmc_request *mrq)
715{
716 struct tmio_mmc_host *host = mmc_priv(mmc);
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000717 unsigned long flags;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100718 int ret;
719
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000720 spin_lock_irqsave(&host->lock, flags);
721
722 if (host->mrq) {
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100723 pr_debug("request not null\n");
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000724 if (IS_ERR(host->mrq)) {
725 spin_unlock_irqrestore(&host->lock, flags);
726 mrq->cmd->error = -EAGAIN;
727 mmc_request_done(mmc, mrq);
728 return;
729 }
730 }
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100731
732 host->last_req_ts = jiffies;
733 wmb();
734 host->mrq = mrq;
735
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000736 spin_unlock_irqrestore(&host->lock, flags);
737
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100738 if (mrq->data) {
739 ret = tmio_mmc_start_data(host, mrq->data);
740 if (ret)
741 goto fail;
742 }
743
744 ret = tmio_mmc_start_command(host, mrq->cmd);
745 if (!ret) {
746 schedule_delayed_work(&host->delayed_reset_work,
747 msecs_to_jiffies(2000));
748 return;
749 }
750
751fail:
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100752 host->force_pio = false;
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000753 host->mrq = NULL;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100754 mrq->cmd->error = ret;
755 mmc_request_done(mmc, mrq);
756}
757
Guennadi Liakhovetski8c102a92012-06-20 19:10:31 +0200758static int tmio_mmc_clk_update(struct mmc_host *mmc)
759{
760 struct tmio_mmc_host *host = mmc_priv(mmc);
761 struct tmio_mmc_data *pdata = host->pdata;
762 int ret;
763
764 if (!pdata->clk_enable)
765 return -ENOTSUPP;
766
767 ret = pdata->clk_enable(host->pdev, &mmc->f_max);
768 if (!ret)
769 mmc->f_min = mmc->f_max / 512;
770
771 return ret;
772}
773
Guennadi Liakhovetski619b08d2013-02-15 16:14:00 +0100774static void tmio_mmc_power_on(struct tmio_mmc_host *host, unsigned short vdd)
775{
776 struct mmc_host *mmc = host->mmc;
777 int ret = 0;
778
779 /* .set_ios() is returning void, so, no chance to report an error */
780
Chris Ball9d731e72013-09-06 07:29:05 -0400781 if (host->set_pwr)
782 host->set_pwr(host->pdev, 1);
783
Guennadi Liakhovetski619b08d2013-02-15 16:14:00 +0100784 if (!IS_ERR(mmc->supply.vmmc)) {
785 ret = mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, vdd);
786 /*
787 * Attention: empiric value. With a b43 WiFi SDIO card this
788 * delay proved necessary for reliable card-insertion probing.
789 * 100us were not enough. Is this the same 140us delay, as in
790 * tmio_mmc_set_ios()?
791 */
792 udelay(200);
793 }
794 /*
795 * It seems, VccQ should be switched on after Vcc, this is also what the
796 * omap_hsmmc.c driver does.
797 */
798 if (!IS_ERR(mmc->supply.vqmmc) && !ret) {
Guennadi Liakhovetski6d1d6b42013-07-08 11:38:09 +0200799 ret = regulator_enable(mmc->supply.vqmmc);
Guennadi Liakhovetski619b08d2013-02-15 16:14:00 +0100800 udelay(200);
801 }
Guennadi Liakhovetski6d1d6b42013-07-08 11:38:09 +0200802
803 if (ret < 0)
804 dev_dbg(&host->pdev->dev, "Regulators failed to power up: %d\n",
805 ret);
Guennadi Liakhovetski619b08d2013-02-15 16:14:00 +0100806}
807
808static void tmio_mmc_power_off(struct tmio_mmc_host *host)
Guennadi Liakhovetskib958a672012-06-20 19:10:33 +0200809{
810 struct mmc_host *mmc = host->mmc;
811
Guennadi Liakhovetski619b08d2013-02-15 16:14:00 +0100812 if (!IS_ERR(mmc->supply.vqmmc))
813 regulator_disable(mmc->supply.vqmmc);
814
Guennadi Liakhovetskib958a672012-06-20 19:10:33 +0200815 if (!IS_ERR(mmc->supply.vmmc))
Guennadi Liakhovetski619b08d2013-02-15 16:14:00 +0100816 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, 0);
Chris Ball9d731e72013-09-06 07:29:05 -0400817
818 if (host->set_pwr)
819 host->set_pwr(host->pdev, 0);
Guennadi Liakhovetskib958a672012-06-20 19:10:33 +0200820}
821
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100822/* Set MMC clock / power.
823 * Note: This controller uses a simple divider scheme therefore it cannot
824 * run a MMC card at full speed (20MHz). The max clock is 24MHz on SD, but as
825 * MMC wont run that fast, it has to be clocked at 12MHz which is the next
826 * slowest setting.
827 */
828static void tmio_mmc_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
829{
830 struct tmio_mmc_host *host = mmc_priv(mmc);
Guennadi Liakhovetski4932bd62012-02-09 22:57:16 +0100831 struct device *dev = &host->pdev->dev;
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000832 unsigned long flags;
833
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +0200834 mutex_lock(&host->ios_lock);
835
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000836 spin_lock_irqsave(&host->lock, flags);
837 if (host->mrq) {
838 if (IS_ERR(host->mrq)) {
Guennadi Liakhovetski4932bd62012-02-09 22:57:16 +0100839 dev_dbg(dev,
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000840 "%s.%d: concurrent .set_ios(), clk %u, mode %u\n",
841 current->comm, task_pid_nr(current),
842 ios->clock, ios->power_mode);
843 host->mrq = ERR_PTR(-EINTR);
844 } else {
Guennadi Liakhovetski4932bd62012-02-09 22:57:16 +0100845 dev_dbg(dev,
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000846 "%s.%d: CMD%u active since %lu, now %lu!\n",
847 current->comm, task_pid_nr(current),
848 host->mrq->cmd->opcode, host->last_req_ts, jiffies);
849 }
850 spin_unlock_irqrestore(&host->lock, flags);
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +0200851
852 mutex_unlock(&host->ios_lock);
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000853 return;
854 }
855
856 host->mrq = ERR_PTR(-EBUSY);
857
858 spin_unlock_irqrestore(&host->lock, flags);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100859
Guennadi Liakhovetski71d111c2011-07-14 12:16:59 +0200860 /*
Guennadi Liakhovetskic391e1b2012-02-09 22:57:13 +0100861 * host->power toggles between false and true in both cases - either
Guennadi Liakhovetskic8be24c2012-02-09 22:57:09 +0100862 * or not the controller can be runtime-suspended during inactivity.
863 * But if the controller has to be kept on, the runtime-pm usage_count
864 * is kept positive, so no suspending actually takes place.
Guennadi Liakhovetski71d111c2011-07-14 12:16:59 +0200865 */
866 if (ios->power_mode == MMC_POWER_ON && ios->clock) {
Guennadi Liakhovetskie83b7a82013-06-06 16:35:44 +0200867 if (host->power != TMIO_MMC_ON_RUN) {
Guennadi Liakhovetski8c102a92012-06-20 19:10:31 +0200868 tmio_mmc_clk_update(mmc);
Guennadi Liakhovetski4932bd62012-02-09 22:57:16 +0100869 pm_runtime_get_sync(dev);
Guennadi Liakhovetskib22ffdc2013-04-22 10:29:26 +0200870 if (host->resuming) {
871 tmio_mmc_reset(host);
872 host->resuming = false;
873 }
Guennadi Liakhovetski7311bef2011-05-11 16:51:11 +0000874 }
Guennadi Liakhovetskib9ec2742013-06-06 16:35:48 +0200875 if (host->power == TMIO_MMC_OFF_STOP)
876 tmio_mmc_reset(host);
Guennadi Liakhovetski71d111c2011-07-14 12:16:59 +0200877 tmio_mmc_set_clock(host, ios->clock);
Guennadi Liakhovetskie83b7a82013-06-06 16:35:44 +0200878 if (host->power == TMIO_MMC_OFF_STOP)
Guennadi Liakhovetski619b08d2013-02-15 16:14:00 +0100879 /* power up SD card and the bus */
880 tmio_mmc_power_on(host, ios->vdd);
Guennadi Liakhovetskie83b7a82013-06-06 16:35:44 +0200881 host->power = TMIO_MMC_ON_RUN;
Guennadi Liakhovetski5fd01572011-03-09 14:45:44 +0100882 /* start bus clock */
883 tmio_mmc_clk_start(host);
Guennadi Liakhovetski71d111c2011-07-14 12:16:59 +0200884 } else if (ios->power_mode != MMC_POWER_UP) {
Guennadi Liakhovetskie83b7a82013-06-06 16:35:44 +0200885 struct tmio_mmc_data *pdata = host->pdata;
886 unsigned int old_power = host->power;
887
888 if (old_power != TMIO_MMC_OFF_STOP) {
889 if (ios->power_mode == MMC_POWER_OFF) {
Guennadi Liakhovetski619b08d2013-02-15 16:14:00 +0100890 tmio_mmc_power_off(host);
Guennadi Liakhovetskie83b7a82013-06-06 16:35:44 +0200891 host->power = TMIO_MMC_OFF_STOP;
892 } else {
893 host->power = TMIO_MMC_ON_STOP;
894 }
895 }
896
897 if (old_power == TMIO_MMC_ON_RUN) {
Laurent Pinchart6de707f2012-06-12 23:29:35 +0200898 tmio_mmc_clk_stop(host);
Guennadi Liakhovetski4932bd62012-02-09 22:57:16 +0100899 pm_runtime_put(dev);
Guennadi Liakhovetski8c102a92012-06-20 19:10:31 +0200900 if (pdata->clk_disable)
901 pdata->clk_disable(host->pdev);
Guennadi Liakhovetski71d111c2011-07-14 12:16:59 +0200902 }
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100903 }
904
Guennadi Liakhovetskie83b7a82013-06-06 16:35:44 +0200905 if (host->power != TMIO_MMC_OFF_STOP) {
Laurent Pinchart6de707f2012-06-12 23:29:35 +0200906 switch (ios->bus_width) {
907 case MMC_BUS_WIDTH_1:
908 sd_ctrl_write16(host, CTL_SD_MEM_CARD_OPT, 0x80e0);
909 break;
910 case MMC_BUS_WIDTH_4:
911 sd_ctrl_write16(host, CTL_SD_MEM_CARD_OPT, 0x00e0);
912 break;
913 }
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100914 }
915
916 /* Let things settle. delay taken from winCE driver */
917 udelay(140);
Guennadi Liakhovetskidf3ef2d2011-04-21 07:20:16 +0000918 if (PTR_ERR(host->mrq) == -EINTR)
919 dev_dbg(&host->pdev->dev,
920 "%s.%d: IOS interrupted: clk %u, mode %u",
921 current->comm, task_pid_nr(current),
922 ios->clock, ios->power_mode);
923 host->mrq = NULL;
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +0200924
925 mutex_unlock(&host->ios_lock);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100926}
927
928static int tmio_mmc_get_ro(struct mmc_host *mmc)
929{
930 struct tmio_mmc_host *host = mmc_priv(mmc);
931 struct tmio_mmc_data *pdata = host->pdata;
Guennadi Liakhovetski3071caf2012-05-01 17:11:56 +0200932 int ret = mmc_gpio_get_ro(mmc);
933 if (ret >= 0)
934 return ret;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100935
Guennadi Liakhovetski7d8b4c22011-06-20 16:51:10 +0200936 return !((pdata->flags & TMIO_MMC_WRPROTECT_DISABLE) ||
937 (sd_ctrl_read32(host, CTL_STATUS) & TMIO_STAT_WRPROTECT));
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100938}
939
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100940static const struct mmc_host_ops tmio_mmc_ops = {
941 .request = tmio_mmc_request,
942 .set_ios = tmio_mmc_set_ios,
943 .get_ro = tmio_mmc_get_ro,
Laurent Pinchart2b63b342013-08-08 12:38:43 +0200944 .get_cd = mmc_gpio_get_cd,
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100945 .enable_sdio_irq = tmio_mmc_enable_sdio_irq,
946};
947
Kuninori Morimoto05fae4a2013-11-20 00:30:39 -0800948static int tmio_mmc_init_ocr(struct tmio_mmc_host *host)
Guennadi Liakhovetskib958a672012-06-20 19:10:33 +0200949{
950 struct tmio_mmc_data *pdata = host->pdata;
951 struct mmc_host *mmc = host->mmc;
952
953 mmc_regulator_get_supply(mmc);
954
Kuninori Morimoto05fae4a2013-11-20 00:30:39 -0800955 /* use ocr_mask if no regulator */
Guennadi Liakhovetskib958a672012-06-20 19:10:33 +0200956 if (!mmc->ocr_avail)
Kuninori Morimoto05fae4a2013-11-20 00:30:39 -0800957 mmc->ocr_avail = pdata->ocr_mask;
958
959 /*
960 * try again.
961 * There is possibility that regulator has not been probed
962 */
963 if (!mmc->ocr_avail)
964 return -EPROBE_DEFER;
965
966 return 0;
Guennadi Liakhovetskib958a672012-06-20 19:10:33 +0200967}
968
Guennadi Liakhovetski5a00a972013-02-15 16:13:56 +0100969static void tmio_mmc_of_parse(struct platform_device *pdev,
970 struct tmio_mmc_data *pdata)
971{
972 const struct device_node *np = pdev->dev.of_node;
973 if (!np)
974 return;
975
976 if (of_get_property(np, "toshiba,mmc-wrprotect-disable", NULL))
977 pdata->flags |= TMIO_MMC_WRPROTECT_DISABLE;
978}
979
Bill Pembertonc3be1ef2012-11-19 13:23:06 -0500980int tmio_mmc_host_probe(struct tmio_mmc_host **host,
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100981 struct platform_device *pdev,
982 struct tmio_mmc_data *pdata)
983{
984 struct tmio_mmc_host *_host;
985 struct mmc_host *mmc;
986 struct resource *res_ctl;
987 int ret;
988 u32 irq_mask = TMIO_MASK_CMD;
989
Guennadi Liakhovetski5a00a972013-02-15 16:13:56 +0100990 tmio_mmc_of_parse(pdev, pdata);
991
Guennadi Liakhovetski7b952132013-02-15 16:13:50 +0100992 if (!(pdata->flags & TMIO_MMC_HAS_IDLE_WAIT))
993 pdata->write16_hook = NULL;
994
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +0100995 res_ctl = platform_get_resource(pdev, IORESOURCE_MEM, 0);
996 if (!res_ctl)
997 return -EINVAL;
998
999 mmc = mmc_alloc_host(sizeof(struct tmio_mmc_host), &pdev->dev);
1000 if (!mmc)
1001 return -ENOMEM;
1002
Simon Baatz274a7522013-06-09 22:14:13 +02001003 ret = mmc_of_parse(mmc);
1004 if (ret < 0)
1005 goto host_free;
Guennadi Liakhovetski5a00a972013-02-15 16:13:56 +01001006
Guennadi Liakhovetski7311bef2011-05-11 16:51:11 +00001007 pdata->dev = &pdev->dev;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001008 _host = mmc_priv(mmc);
1009 _host->pdata = pdata;
1010 _host->mmc = mmc;
1011 _host->pdev = pdev;
1012 platform_set_drvdata(pdev, mmc);
1013
Chris Ball9d731e72013-09-06 07:29:05 -04001014 _host->set_pwr = pdata->set_pwr;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001015 _host->set_clk_div = pdata->set_clk_div;
1016
Kuninori Morimoto05fae4a2013-11-20 00:30:39 -08001017 ret = tmio_mmc_init_ocr(_host);
1018 if (ret < 0)
1019 goto host_free;
1020
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001021 _host->ctl = ioremap(res_ctl->start, resource_size(res_ctl));
1022 if (!_host->ctl) {
1023 ret = -ENOMEM;
1024 goto host_free;
1025 }
1026
1027 mmc->ops = &tmio_mmc_ops;
Guennadi Liakhovetski5a00a972013-02-15 16:13:56 +01001028 mmc->caps |= MMC_CAP_4_BIT_DATA | pdata->capabilities;
Kuninori Morimotodd006b32013-11-20 00:16:14 -08001029 mmc->caps2 |= pdata->capabilities2;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001030 mmc->max_segs = 32;
1031 mmc->max_blk_size = 512;
1032 mmc->max_blk_count = (PAGE_CACHE_SIZE / mmc->max_blk_size) *
1033 mmc->max_segs;
1034 mmc->max_req_size = mmc->max_blk_size * mmc->max_blk_count;
1035 mmc->max_seg_size = mmc->max_req_size;
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001036
Guennadi Liakhovetskic8be24c2012-02-09 22:57:09 +01001037 _host->native_hotplug = !(pdata->flags & TMIO_MMC_USE_GPIO_CD ||
Guennadi Liakhovetski2b1ac5c2012-02-09 22:57:08 +01001038 mmc->caps & MMC_CAP_NEEDS_POLL ||
Guennadi Liakhovetski5a00a972013-02-15 16:13:56 +01001039 mmc->caps & MMC_CAP_NONREMOVABLE ||
1040 mmc->slot.cd_irq >= 0);
Guennadi Liakhovetski2b1ac5c2012-02-09 22:57:08 +01001041
Guennadi Liakhovetskie83b7a82013-06-06 16:35:44 +02001042 _host->power = TMIO_MMC_OFF_STOP;
Guennadi Liakhovetskie6ee7182011-05-05 16:13:12 +00001043 pm_runtime_enable(&pdev->dev);
1044 ret = pm_runtime_resume(&pdev->dev);
1045 if (ret < 0)
1046 goto pm_disable;
1047
Guennadi Liakhovetski8c102a92012-06-20 19:10:31 +02001048 if (tmio_mmc_clk_update(mmc) < 0) {
1049 mmc->f_max = pdata->hclk;
1050 mmc->f_min = mmc->f_max / 512;
1051 }
1052
Bastian Hechtcbb18b32011-12-23 23:03:13 +01001053 /*
1054 * There are 4 different scenarios for the card detection:
1055 * 1) an external gpio irq handles the cd (best for power savings)
1056 * 2) internal sdhi irq handles the cd
1057 * 3) a worker thread polls the sdhi - indicated by MMC_CAP_NEEDS_POLL
1058 * 4) the medium is non-removable - indicated by MMC_CAP_NONREMOVABLE
1059 *
Guennadi Liakhovetskic8be24c2012-02-09 22:57:09 +01001060 * While we increment the runtime PM counter for all scenarios when
1061 * the mmc core activates us by calling an appropriate set_ios(), we
1062 * must additionally ensure that in case 2) the tmio mmc hardware stays
Bastian Hechtcbb18b32011-12-23 23:03:13 +01001063 * powered on during runtime for the card detection to work.
1064 */
Guennadi Liakhovetski2b1ac5c2012-02-09 22:57:08 +01001065 if (_host->native_hotplug)
Bastian Hechtcbb18b32011-12-23 23:03:13 +01001066 pm_runtime_get_noresume(&pdev->dev);
1067
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001068 tmio_mmc_clk_stop(_host);
1069 tmio_mmc_reset(_host);
1070
Simon Horman54680fe2011-08-25 10:27:25 +09001071 _host->sdcard_irq_mask = sd_ctrl_read32(_host, CTL_IRQ_MASK);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001072 tmio_mmc_disable_mmc_irqs(_host, TMIO_MASK_ALL);
Guennadi Liakhovetskie0337cc2012-06-20 19:10:30 +02001073
1074 /* Unmask the IRQs we want to know about */
1075 if (!_host->chan_rx)
1076 irq_mask |= TMIO_MASK_READOP;
1077 if (!_host->chan_tx)
1078 irq_mask |= TMIO_MASK_WRITEOP;
1079 if (!_host->native_hotplug)
1080 irq_mask &= ~(TMIO_STAT_CARD_REMOVE | TMIO_STAT_CARD_INSERT);
1081
1082 _host->sdcard_irq_mask &= ~irq_mask;
1083
Ulf Hansson7501c432013-10-24 15:58:45 +02001084 _host->sdio_irq_enabled = false;
1085 if (pdata->flags & TMIO_MMC_SDIO_IRQ) {
1086 _host->sdio_irq_mask = TMIO_SDIO_MASK_ALL;
1087 sd_ctrl_write16(_host, CTL_SDIO_IRQ_MASK, _host->sdio_irq_mask);
1088 sd_ctrl_write16(_host, CTL_TRANSACTION_CTL, 0x0000);
1089 }
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001090
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001091 spin_lock_init(&_host->lock);
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +02001092 mutex_init(&_host->ios_lock);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001093
1094 /* Init delayed work for request timeouts */
1095 INIT_DELAYED_WORK(&_host->delayed_reset_work, tmio_mmc_reset_work);
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +02001096 INIT_WORK(&_host->done, tmio_mmc_done_work);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001097
1098 /* See if we also get DMA */
1099 tmio_mmc_request_dma(_host, pdata);
1100
Guennadi Liakhovetski8c102a92012-06-20 19:10:31 +02001101 ret = mmc_add_host(mmc);
1102 if (pdata->clk_disable)
1103 pdata->clk_disable(pdev);
1104 if (ret < 0) {
1105 tmio_mmc_host_remove(_host);
1106 return ret;
1107 }
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001108
Rafael J. Wysockic419e612012-03-13 01:01:51 +01001109 dev_pm_qos_expose_latency_limit(&pdev->dev, 100);
1110
Guennadi Liakhovetskic8be24c2012-02-09 22:57:09 +01001111 if (pdata->flags & TMIO_MMC_USE_GPIO_CD) {
Laurent Pinchart214fc302013-08-08 12:38:31 +02001112 ret = mmc_gpio_request_cd(mmc, pdata->cd_gpio, 0);
Guennadi Liakhovetskic8be24c2012-02-09 22:57:09 +01001113 if (ret < 0) {
1114 tmio_mmc_host_remove(_host);
1115 return ret;
1116 }
1117 }
1118
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001119 *host = _host;
1120
1121 return 0;
1122
Guennadi Liakhovetskie6ee7182011-05-05 16:13:12 +00001123pm_disable:
1124 pm_runtime_disable(&pdev->dev);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001125 iounmap(_host->ctl);
1126host_free:
1127 mmc_free_host(mmc);
1128
1129 return ret;
1130}
1131EXPORT_SYMBOL(tmio_mmc_host_probe);
1132
1133void tmio_mmc_host_remove(struct tmio_mmc_host *host)
1134{
Guennadi Liakhovetskie6ee7182011-05-05 16:13:12 +00001135 struct platform_device *pdev = host->pdev;
Guennadi Liakhovetskic8be24c2012-02-09 22:57:09 +01001136 struct mmc_host *mmc = host->mmc;
Guennadi Liakhovetskie6ee7182011-05-05 16:13:12 +00001137
Guennadi Liakhovetski2b1ac5c2012-02-09 22:57:08 +01001138 if (!host->native_hotplug)
Guennadi Liakhovetski7311bef2011-05-11 16:51:11 +00001139 pm_runtime_get_sync(&pdev->dev);
1140
Rafael J. Wysockic419e612012-03-13 01:01:51 +01001141 dev_pm_qos_hide_latency_limit(&pdev->dev);
1142
Guennadi Liakhovetskic8be24c2012-02-09 22:57:09 +01001143 mmc_remove_host(mmc);
Guennadi Liakhovetskib9269fd2011-07-14 12:12:38 +02001144 cancel_work_sync(&host->done);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001145 cancel_delayed_work_sync(&host->delayed_reset_work);
1146 tmio_mmc_release_dma(host);
Guennadi Liakhovetskie6ee7182011-05-05 16:13:12 +00001147
Guennadi Liakhovetskie6ee7182011-05-05 16:13:12 +00001148 pm_runtime_put_sync(&pdev->dev);
1149 pm_runtime_disable(&pdev->dev);
Guennadi Liakhovetski7311bef2011-05-11 16:51:11 +00001150
1151 iounmap(host->ctl);
Guennadi Liakhovetskic8be24c2012-02-09 22:57:09 +01001152 mmc_free_host(mmc);
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001153}
1154EXPORT_SYMBOL(tmio_mmc_host_remove);
1155
Ulf Hansson710dec92013-10-23 14:55:07 +02001156#ifdef CONFIG_PM_SLEEP
Guennadi Liakhovetskie6ee7182011-05-05 16:13:12 +00001157int tmio_mmc_host_suspend(struct device *dev)
1158{
1159 struct mmc_host *mmc = dev_get_drvdata(dev);
1160 struct tmio_mmc_host *host = mmc_priv(mmc);
Guennadi Liakhovetskie6ee7182011-05-05 16:13:12 +00001161
Ulf Hanssond62c9572013-09-26 10:36:06 +02001162 tmio_mmc_disable_mmc_irqs(host, TMIO_MASK_ALL);
1163 return 0;
Guennadi Liakhovetskie6ee7182011-05-05 16:13:12 +00001164}
1165EXPORT_SYMBOL(tmio_mmc_host_suspend);
1166
1167int tmio_mmc_host_resume(struct device *dev)
1168{
1169 struct mmc_host *mmc = dev_get_drvdata(dev);
1170 struct tmio_mmc_host *host = mmc_priv(mmc);
1171
Guennadi Liakhovetskic8be24c2012-02-09 22:57:09 +01001172 tmio_mmc_enable_dma(host, true);
1173
Guennadi Liakhovetski7311bef2011-05-11 16:51:11 +00001174 /* The MMC core will perform the complete set up */
Guennadi Liakhovetskib22ffdc2013-04-22 10:29:26 +02001175 host->resuming = true;
Ulf Hanssond62c9572013-09-26 10:36:06 +02001176 return 0;
Guennadi Liakhovetskie6ee7182011-05-05 16:13:12 +00001177}
1178EXPORT_SYMBOL(tmio_mmc_host_resume);
Ulf Hansson710dec92013-10-23 14:55:07 +02001179#endif
Guennadi Liakhovetskie6ee7182011-05-05 16:13:12 +00001180
Ulf Hansson710dec92013-10-23 14:55:07 +02001181#ifdef CONFIG_PM_RUNTIME
Guennadi Liakhovetski7311bef2011-05-11 16:51:11 +00001182int tmio_mmc_host_runtime_suspend(struct device *dev)
1183{
1184 return 0;
1185}
1186EXPORT_SYMBOL(tmio_mmc_host_runtime_suspend);
1187
1188int tmio_mmc_host_runtime_resume(struct device *dev)
1189{
1190 struct mmc_host *mmc = dev_get_drvdata(dev);
1191 struct tmio_mmc_host *host = mmc_priv(mmc);
Guennadi Liakhovetski7311bef2011-05-11 16:51:11 +00001192
Guennadi Liakhovetski162f43e2011-07-14 18:39:10 +02001193 tmio_mmc_enable_dma(host, true);
Guennadi Liakhovetski7311bef2011-05-11 16:51:11 +00001194
Guennadi Liakhovetski7311bef2011-05-11 16:51:11 +00001195 return 0;
1196}
1197EXPORT_SYMBOL(tmio_mmc_host_runtime_resume);
Ulf Hansson710dec92013-10-23 14:55:07 +02001198#endif
Guennadi Liakhovetski7311bef2011-05-11 16:51:11 +00001199
Guennadi Liakhovetskib6147492011-03-23 12:42:44 +01001200MODULE_LICENSE("GPL v2");