blob: 545f62191afdbfc4cc25cb24993b20dff5c994d9 [file] [log] [blame]
Will Newtonf95f3852011-01-02 01:11:59 -05001/*
2 * Synopsys DesignWare Multimedia Card Interface driver
3 * (Based on NXP driver for lpc 31xx)
4 *
5 * Copyright (C) 2009 NXP Semiconductors
6 * Copyright (C) 2009, 2010 Imagination Technologies Ltd.
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 as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 */
13
14#include <linux/blkdev.h>
15#include <linux/clk.h>
16#include <linux/debugfs.h>
17#include <linux/device.h>
18#include <linux/dma-mapping.h>
19#include <linux/err.h>
20#include <linux/init.h>
21#include <linux/interrupt.h>
22#include <linux/ioport.h>
23#include <linux/module.h>
24#include <linux/platform_device.h>
Will Newtonf95f3852011-01-02 01:11:59 -050025#include <linux/seq_file.h>
26#include <linux/slab.h>
27#include <linux/stat.h>
28#include <linux/delay.h>
29#include <linux/irq.h>
30#include <linux/mmc/host.h>
31#include <linux/mmc/mmc.h>
Doug Anderson01730552014-08-22 19:17:51 +053032#include <linux/mmc/sd.h>
Seungwon Jeon90c21432013-08-31 00:14:05 +090033#include <linux/mmc/sdio.h>
Will Newtonf95f3852011-01-02 01:11:59 -050034#include <linux/mmc/dw_mmc.h>
35#include <linux/bitops.h>
Jaehoon Chungc07946a2011-02-25 11:08:14 +090036#include <linux/regulator/consumer.h>
James Hogan1791b13e2011-06-24 13:55:55 +010037#include <linux/workqueue.h>
Thomas Abrahamc91eab42012-09-17 18:16:40 +000038#include <linux/of.h>
Doug Anderson55a6ceb2013-01-11 17:03:53 +000039#include <linux/of_gpio.h>
Zhangfei Gaobf626e52014-01-09 22:35:10 +080040#include <linux/mmc/slot-gpio.h>
Will Newtonf95f3852011-01-02 01:11:59 -050041
42#include "dw_mmc.h"
43
44/* Common flag combinations */
Jaehoon Chung3f7eec62013-05-27 13:47:57 +090045#define DW_MCI_DATA_ERROR_FLAGS (SDMMC_INT_DRTO | SDMMC_INT_DCRC | \
Will Newtonf95f3852011-01-02 01:11:59 -050046 SDMMC_INT_HTO | SDMMC_INT_SBE | \
47 SDMMC_INT_EBE)
48#define DW_MCI_CMD_ERROR_FLAGS (SDMMC_INT_RTO | SDMMC_INT_RCRC | \
49 SDMMC_INT_RESP_ERR)
50#define DW_MCI_ERROR_FLAGS (DW_MCI_DATA_ERROR_FLAGS | \
51 DW_MCI_CMD_ERROR_FLAGS | SDMMC_INT_HLE)
52#define DW_MCI_SEND_STATUS 1
53#define DW_MCI_RECV_STATUS 2
54#define DW_MCI_DMA_THRESHOLD 16
55
Seungwon Jeon1f44a2a2013-08-31 00:13:31 +090056#define DW_MCI_FREQ_MAX 200000000 /* unit: HZ */
57#define DW_MCI_FREQ_MIN 400000 /* unit: HZ */
58
Will Newtonf95f3852011-01-02 01:11:59 -050059#ifdef CONFIG_MMC_DW_IDMAC
Joonyoung Shimfc79a4d2013-04-26 15:35:22 +090060#define IDMAC_INT_CLR (SDMMC_IDMAC_INT_AI | SDMMC_IDMAC_INT_NI | \
61 SDMMC_IDMAC_INT_CES | SDMMC_IDMAC_INT_DU | \
62 SDMMC_IDMAC_INT_FBE | SDMMC_IDMAC_INT_RI | \
63 SDMMC_IDMAC_INT_TI)
64
Will Newtonf95f3852011-01-02 01:11:59 -050065struct idmac_desc {
66 u32 des0; /* Control Descriptor */
67#define IDMAC_DES0_DIC BIT(1)
68#define IDMAC_DES0_LD BIT(2)
69#define IDMAC_DES0_FD BIT(3)
70#define IDMAC_DES0_CH BIT(4)
71#define IDMAC_DES0_ER BIT(5)
72#define IDMAC_DES0_CES BIT(30)
73#define IDMAC_DES0_OWN BIT(31)
74
75 u32 des1; /* Buffer sizes */
76#define IDMAC_SET_BUFFER1_SIZE(d, s) \
Shashidhar Hiremath9b7bbe12011-07-29 08:49:50 -040077 ((d)->des1 = ((d)->des1 & 0x03ffe000) | ((s) & 0x1fff))
Will Newtonf95f3852011-01-02 01:11:59 -050078
79 u32 des2; /* buffer 1 physical address */
80
81 u32 des3; /* buffer 2 physical address */
82};
83#endif /* CONFIG_MMC_DW_IDMAC */
84
Sonny Rao3a33a942014-08-04 18:19:50 -070085static bool dw_mci_reset(struct dw_mci *host);
Sonny Rao536f6b92014-10-16 09:58:05 -070086static bool dw_mci_ctrl_reset(struct dw_mci *host, u32 reset);
Seungwon Jeon31bff452013-08-31 00:14:23 +090087
Will Newtonf95f3852011-01-02 01:11:59 -050088#if defined(CONFIG_DEBUG_FS)
89static int dw_mci_req_show(struct seq_file *s, void *v)
90{
91 struct dw_mci_slot *slot = s->private;
92 struct mmc_request *mrq;
93 struct mmc_command *cmd;
94 struct mmc_command *stop;
95 struct mmc_data *data;
96
97 /* Make sure we get a consistent snapshot */
98 spin_lock_bh(&slot->host->lock);
99 mrq = slot->mrq;
100
101 if (mrq) {
102 cmd = mrq->cmd;
103 data = mrq->data;
104 stop = mrq->stop;
105
106 if (cmd)
107 seq_printf(s,
108 "CMD%u(0x%x) flg %x rsp %x %x %x %x err %d\n",
109 cmd->opcode, cmd->arg, cmd->flags,
110 cmd->resp[0], cmd->resp[1], cmd->resp[2],
111 cmd->resp[2], cmd->error);
112 if (data)
113 seq_printf(s, "DATA %u / %u * %u flg %x err %d\n",
114 data->bytes_xfered, data->blocks,
115 data->blksz, data->flags, data->error);
116 if (stop)
117 seq_printf(s,
118 "CMD%u(0x%x) flg %x rsp %x %x %x %x err %d\n",
119 stop->opcode, stop->arg, stop->flags,
120 stop->resp[0], stop->resp[1], stop->resp[2],
121 stop->resp[2], stop->error);
122 }
123
124 spin_unlock_bh(&slot->host->lock);
125
126 return 0;
127}
128
129static int dw_mci_req_open(struct inode *inode, struct file *file)
130{
131 return single_open(file, dw_mci_req_show, inode->i_private);
132}
133
134static const struct file_operations dw_mci_req_fops = {
135 .owner = THIS_MODULE,
136 .open = dw_mci_req_open,
137 .read = seq_read,
138 .llseek = seq_lseek,
139 .release = single_release,
140};
141
142static int dw_mci_regs_show(struct seq_file *s, void *v)
143{
144 seq_printf(s, "STATUS:\t0x%08x\n", SDMMC_STATUS);
145 seq_printf(s, "RINTSTS:\t0x%08x\n", SDMMC_RINTSTS);
146 seq_printf(s, "CMD:\t0x%08x\n", SDMMC_CMD);
147 seq_printf(s, "CTRL:\t0x%08x\n", SDMMC_CTRL);
148 seq_printf(s, "INTMASK:\t0x%08x\n", SDMMC_INTMASK);
149 seq_printf(s, "CLKENA:\t0x%08x\n", SDMMC_CLKENA);
150
151 return 0;
152}
153
154static int dw_mci_regs_open(struct inode *inode, struct file *file)
155{
156 return single_open(file, dw_mci_regs_show, inode->i_private);
157}
158
159static const struct file_operations dw_mci_regs_fops = {
160 .owner = THIS_MODULE,
161 .open = dw_mci_regs_open,
162 .read = seq_read,
163 .llseek = seq_lseek,
164 .release = single_release,
165};
166
167static void dw_mci_init_debugfs(struct dw_mci_slot *slot)
168{
169 struct mmc_host *mmc = slot->mmc;
170 struct dw_mci *host = slot->host;
171 struct dentry *root;
172 struct dentry *node;
173
174 root = mmc->debugfs_root;
175 if (!root)
176 return;
177
178 node = debugfs_create_file("regs", S_IRUSR, root, host,
179 &dw_mci_regs_fops);
180 if (!node)
181 goto err;
182
183 node = debugfs_create_file("req", S_IRUSR, root, slot,
184 &dw_mci_req_fops);
185 if (!node)
186 goto err;
187
188 node = debugfs_create_u32("state", S_IRUSR, root, (u32 *)&host->state);
189 if (!node)
190 goto err;
191
192 node = debugfs_create_x32("pending_events", S_IRUSR, root,
193 (u32 *)&host->pending_events);
194 if (!node)
195 goto err;
196
197 node = debugfs_create_x32("completed_events", S_IRUSR, root,
198 (u32 *)&host->completed_events);
199 if (!node)
200 goto err;
201
202 return;
203
204err:
205 dev_err(&mmc->class_dev, "failed to initialize debugfs for slot\n");
206}
207#endif /* defined(CONFIG_DEBUG_FS) */
208
Doug Anderson01730552014-08-22 19:17:51 +0530209static void mci_send_cmd(struct dw_mci_slot *slot, u32 cmd, u32 arg);
210
Will Newtonf95f3852011-01-02 01:11:59 -0500211static u32 dw_mci_prepare_command(struct mmc_host *mmc, struct mmc_command *cmd)
212{
213 struct mmc_data *data;
Thomas Abraham800d78b2012-09-17 18:16:42 +0000214 struct dw_mci_slot *slot = mmc_priv(mmc);
Doug Anderson01730552014-08-22 19:17:51 +0530215 struct dw_mci *host = slot->host;
Arnd Bergmanne95baf12012-11-08 14:26:11 +0000216 const struct dw_mci_drv_data *drv_data = slot->host->drv_data;
Will Newtonf95f3852011-01-02 01:11:59 -0500217 u32 cmdr;
218 cmd->error = -EINPROGRESS;
219
220 cmdr = cmd->opcode;
221
Seungwon Jeon90c21432013-08-31 00:14:05 +0900222 if (cmd->opcode == MMC_STOP_TRANSMISSION ||
223 cmd->opcode == MMC_GO_IDLE_STATE ||
224 cmd->opcode == MMC_GO_INACTIVE_STATE ||
225 (cmd->opcode == SD_IO_RW_DIRECT &&
226 ((cmd->arg >> 9) & 0x1FFFF) == SDIO_CCCR_ABORT))
Will Newtonf95f3852011-01-02 01:11:59 -0500227 cmdr |= SDMMC_CMD_STOP;
Jaehoon Chung4a1b27a2014-03-03 11:36:44 +0900228 else if (cmd->opcode != MMC_SEND_STATUS && cmd->data)
229 cmdr |= SDMMC_CMD_PRV_DAT_WAIT;
Will Newtonf95f3852011-01-02 01:11:59 -0500230
Doug Anderson01730552014-08-22 19:17:51 +0530231 if (cmd->opcode == SD_SWITCH_VOLTAGE) {
232 u32 clk_en_a;
233
234 /* Special bit makes CMD11 not die */
235 cmdr |= SDMMC_CMD_VOLT_SWITCH;
236
237 /* Change state to continue to handle CMD11 weirdness */
238 WARN_ON(slot->host->state != STATE_SENDING_CMD);
239 slot->host->state = STATE_SENDING_CMD11;
240
241 /*
242 * We need to disable low power mode (automatic clock stop)
243 * while doing voltage switch so we don't confuse the card,
244 * since stopping the clock is a specific part of the UHS
245 * voltage change dance.
246 *
247 * Note that low power mode (SDMMC_CLKEN_LOW_PWR) will be
248 * unconditionally turned back on in dw_mci_setup_bus() if it's
249 * ever called with a non-zero clock. That shouldn't happen
250 * until the voltage change is all done.
251 */
252 clk_en_a = mci_readl(host, CLKENA);
253 clk_en_a &= ~(SDMMC_CLKEN_LOW_PWR << slot->id);
254 mci_writel(host, CLKENA, clk_en_a);
255 mci_send_cmd(slot, SDMMC_CMD_UPD_CLK |
256 SDMMC_CMD_PRV_DAT_WAIT, 0);
257 }
258
Will Newtonf95f3852011-01-02 01:11:59 -0500259 if (cmd->flags & MMC_RSP_PRESENT) {
260 /* We expect a response, so set this bit */
261 cmdr |= SDMMC_CMD_RESP_EXP;
262 if (cmd->flags & MMC_RSP_136)
263 cmdr |= SDMMC_CMD_RESP_LONG;
264 }
265
266 if (cmd->flags & MMC_RSP_CRC)
267 cmdr |= SDMMC_CMD_RESP_CRC;
268
269 data = cmd->data;
270 if (data) {
271 cmdr |= SDMMC_CMD_DAT_EXP;
272 if (data->flags & MMC_DATA_STREAM)
273 cmdr |= SDMMC_CMD_STRM_MODE;
274 if (data->flags & MMC_DATA_WRITE)
275 cmdr |= SDMMC_CMD_DAT_WR;
276 }
277
James Hogancb27a842012-10-16 09:43:08 +0100278 if (drv_data && drv_data->prepare_command)
279 drv_data->prepare_command(slot->host, &cmdr);
Thomas Abraham800d78b2012-09-17 18:16:42 +0000280
Will Newtonf95f3852011-01-02 01:11:59 -0500281 return cmdr;
282}
283
Seungwon Jeon90c21432013-08-31 00:14:05 +0900284static u32 dw_mci_prep_stop_abort(struct dw_mci *host, struct mmc_command *cmd)
285{
286 struct mmc_command *stop;
287 u32 cmdr;
288
289 if (!cmd->data)
290 return 0;
291
292 stop = &host->stop_abort;
293 cmdr = cmd->opcode;
294 memset(stop, 0, sizeof(struct mmc_command));
295
296 if (cmdr == MMC_READ_SINGLE_BLOCK ||
297 cmdr == MMC_READ_MULTIPLE_BLOCK ||
298 cmdr == MMC_WRITE_BLOCK ||
299 cmdr == MMC_WRITE_MULTIPLE_BLOCK) {
300 stop->opcode = MMC_STOP_TRANSMISSION;
301 stop->arg = 0;
302 stop->flags = MMC_RSP_R1B | MMC_CMD_AC;
303 } else if (cmdr == SD_IO_RW_EXTENDED) {
304 stop->opcode = SD_IO_RW_DIRECT;
305 stop->arg |= (1 << 31) | (0 << 28) | (SDIO_CCCR_ABORT << 9) |
306 ((cmd->arg >> 28) & 0x7);
307 stop->flags = MMC_RSP_SPI_R5 | MMC_RSP_R5 | MMC_CMD_AC;
308 } else {
309 return 0;
310 }
311
312 cmdr = stop->opcode | SDMMC_CMD_STOP |
313 SDMMC_CMD_RESP_CRC | SDMMC_CMD_RESP_EXP;
314
315 return cmdr;
316}
317
Will Newtonf95f3852011-01-02 01:11:59 -0500318static void dw_mci_start_command(struct dw_mci *host,
319 struct mmc_command *cmd, u32 cmd_flags)
320{
321 host->cmd = cmd;
Thomas Abraham4a909202012-09-17 18:16:35 +0000322 dev_vdbg(host->dev,
Will Newtonf95f3852011-01-02 01:11:59 -0500323 "start command: ARGR=0x%08x CMDR=0x%08x\n",
324 cmd->arg, cmd_flags);
325
326 mci_writel(host, CMDARG, cmd->arg);
327 wmb();
328
329 mci_writel(host, CMD, cmd_flags | SDMMC_CMD_START);
330}
331
Seungwon Jeon90c21432013-08-31 00:14:05 +0900332static inline void send_stop_abort(struct dw_mci *host, struct mmc_data *data)
Will Newtonf95f3852011-01-02 01:11:59 -0500333{
Seungwon Jeon90c21432013-08-31 00:14:05 +0900334 struct mmc_command *stop = data->stop ? data->stop : &host->stop_abort;
335 dw_mci_start_command(host, stop, host->stop_cmdr);
Will Newtonf95f3852011-01-02 01:11:59 -0500336}
337
338/* DMA interface functions */
339static void dw_mci_stop_dma(struct dw_mci *host)
340{
James Hogan03e8cb52011-06-29 09:28:43 +0100341 if (host->using_dma) {
Will Newtonf95f3852011-01-02 01:11:59 -0500342 host->dma_ops->stop(host);
343 host->dma_ops->cleanup(host);
Will Newtonf95f3852011-01-02 01:11:59 -0500344 }
Seungwon Jeonaa50f252013-08-31 00:14:38 +0900345
346 /* Data transfer was stopped by the interrupt handler */
347 set_bit(EVENT_XFER_COMPLETE, &host->pending_events);
Will Newtonf95f3852011-01-02 01:11:59 -0500348}
349
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900350static int dw_mci_get_dma_dir(struct mmc_data *data)
351{
352 if (data->flags & MMC_DATA_WRITE)
353 return DMA_TO_DEVICE;
354 else
355 return DMA_FROM_DEVICE;
356}
357
Jaehoon Chung9beee912012-02-16 11:19:38 +0900358#ifdef CONFIG_MMC_DW_IDMAC
Will Newtonf95f3852011-01-02 01:11:59 -0500359static void dw_mci_dma_cleanup(struct dw_mci *host)
360{
361 struct mmc_data *data = host->data;
362
363 if (data)
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900364 if (!data->host_cookie)
Thomas Abraham4a909202012-09-17 18:16:35 +0000365 dma_unmap_sg(host->dev,
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900366 data->sg,
367 data->sg_len,
368 dw_mci_get_dma_dir(data));
Will Newtonf95f3852011-01-02 01:11:59 -0500369}
370
Seungwon Jeon5ce9d962013-08-31 00:14:33 +0900371static void dw_mci_idmac_reset(struct dw_mci *host)
372{
373 u32 bmod = mci_readl(host, BMOD);
374 /* Software reset of DMA */
375 bmod |= SDMMC_IDMAC_SWRESET;
376 mci_writel(host, BMOD, bmod);
377}
378
Will Newtonf95f3852011-01-02 01:11:59 -0500379static void dw_mci_idmac_stop_dma(struct dw_mci *host)
380{
381 u32 temp;
382
383 /* Disable and reset the IDMAC interface */
384 temp = mci_readl(host, CTRL);
385 temp &= ~SDMMC_CTRL_USE_IDMAC;
386 temp |= SDMMC_CTRL_DMA_RESET;
387 mci_writel(host, CTRL, temp);
388
389 /* Stop the IDMAC running */
390 temp = mci_readl(host, BMOD);
Jaehoon Chunga5289a42011-02-25 11:08:13 +0900391 temp &= ~(SDMMC_IDMAC_ENABLE | SDMMC_IDMAC_FB);
Seungwon Jeon5ce9d962013-08-31 00:14:33 +0900392 temp |= SDMMC_IDMAC_SWRESET;
Will Newtonf95f3852011-01-02 01:11:59 -0500393 mci_writel(host, BMOD, temp);
394}
395
396static void dw_mci_idmac_complete_dma(struct dw_mci *host)
397{
398 struct mmc_data *data = host->data;
399
Thomas Abraham4a909202012-09-17 18:16:35 +0000400 dev_vdbg(host->dev, "DMA complete\n");
Will Newtonf95f3852011-01-02 01:11:59 -0500401
402 host->dma_ops->cleanup(host);
403
404 /*
405 * If the card was removed, data will be NULL. No point in trying to
406 * send the stop command or waiting for NBUSY in this case.
407 */
408 if (data) {
409 set_bit(EVENT_XFER_COMPLETE, &host->pending_events);
410 tasklet_schedule(&host->tasklet);
411 }
412}
413
414static void dw_mci_translate_sglist(struct dw_mci *host, struct mmc_data *data,
415 unsigned int sg_len)
416{
417 int i;
418 struct idmac_desc *desc = host->sg_cpu;
419
420 for (i = 0; i < sg_len; i++, desc++) {
421 unsigned int length = sg_dma_len(&data->sg[i]);
422 u32 mem_addr = sg_dma_address(&data->sg[i]);
423
424 /* Set the OWN bit and disable interrupts for this descriptor */
425 desc->des0 = IDMAC_DES0_OWN | IDMAC_DES0_DIC | IDMAC_DES0_CH;
426
427 /* Buffer length */
428 IDMAC_SET_BUFFER1_SIZE(desc, length);
429
430 /* Physical address to DMA to/from */
431 desc->des2 = mem_addr;
432 }
433
434 /* Set first descriptor */
435 desc = host->sg_cpu;
436 desc->des0 |= IDMAC_DES0_FD;
437
438 /* Set last descriptor */
439 desc = host->sg_cpu + (i - 1) * sizeof(struct idmac_desc);
440 desc->des0 &= ~(IDMAC_DES0_CH | IDMAC_DES0_DIC);
441 desc->des0 |= IDMAC_DES0_LD;
442
443 wmb();
444}
445
446static void dw_mci_idmac_start_dma(struct dw_mci *host, unsigned int sg_len)
447{
448 u32 temp;
449
450 dw_mci_translate_sglist(host, host->data, sg_len);
451
Sonny Rao536f6b92014-10-16 09:58:05 -0700452 /* Make sure to reset DMA in case we did PIO before this */
453 dw_mci_ctrl_reset(host, SDMMC_CTRL_DMA_RESET);
454 dw_mci_idmac_reset(host);
455
Will Newtonf95f3852011-01-02 01:11:59 -0500456 /* Select IDMAC interface */
457 temp = mci_readl(host, CTRL);
458 temp |= SDMMC_CTRL_USE_IDMAC;
459 mci_writel(host, CTRL, temp);
460
461 wmb();
462
463 /* Enable the IDMAC */
464 temp = mci_readl(host, BMOD);
Jaehoon Chunga5289a42011-02-25 11:08:13 +0900465 temp |= SDMMC_IDMAC_ENABLE | SDMMC_IDMAC_FB;
Will Newtonf95f3852011-01-02 01:11:59 -0500466 mci_writel(host, BMOD, temp);
467
468 /* Start it running */
469 mci_writel(host, PLDMND, 1);
470}
471
472static int dw_mci_idmac_init(struct dw_mci *host)
473{
474 struct idmac_desc *p;
Seungwon Jeon897b69e2012-09-19 13:58:31 +0800475 int i;
Will Newtonf95f3852011-01-02 01:11:59 -0500476
477 /* Number of descriptors in the ring buffer */
478 host->ring_size = PAGE_SIZE / sizeof(struct idmac_desc);
479
480 /* Forward link the descriptor list */
481 for (i = 0, p = host->sg_cpu; i < host->ring_size - 1; i++, p++)
482 p->des3 = host->sg_dma + (sizeof(struct idmac_desc) * (i + 1));
483
484 /* Set the last descriptor as the end-of-ring descriptor */
485 p->des3 = host->sg_dma;
486 p->des0 = IDMAC_DES0_ER;
487
Seungwon Jeon5ce9d962013-08-31 00:14:33 +0900488 dw_mci_idmac_reset(host);
Seungwon Jeon141a7122012-05-22 13:01:03 +0900489
Will Newtonf95f3852011-01-02 01:11:59 -0500490 /* Mask out interrupts - get Tx & Rx complete only */
Joonyoung Shimfc79a4d2013-04-26 15:35:22 +0900491 mci_writel(host, IDSTS, IDMAC_INT_CLR);
Will Newtonf95f3852011-01-02 01:11:59 -0500492 mci_writel(host, IDINTEN, SDMMC_IDMAC_INT_NI | SDMMC_IDMAC_INT_RI |
493 SDMMC_IDMAC_INT_TI);
494
495 /* Set the descriptor base address */
496 mci_writel(host, DBADDR, host->sg_dma);
497 return 0;
498}
499
Arnd Bergmann8e2b36e2012-11-06 22:55:31 +0100500static const struct dw_mci_dma_ops dw_mci_idmac_ops = {
Seungwon Jeon885c3e82012-02-20 11:01:43 +0900501 .init = dw_mci_idmac_init,
502 .start = dw_mci_idmac_start_dma,
503 .stop = dw_mci_idmac_stop_dma,
504 .complete = dw_mci_idmac_complete_dma,
505 .cleanup = dw_mci_dma_cleanup,
506};
507#endif /* CONFIG_MMC_DW_IDMAC */
508
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900509static int dw_mci_pre_dma_transfer(struct dw_mci *host,
510 struct mmc_data *data,
511 bool next)
Will Newtonf95f3852011-01-02 01:11:59 -0500512{
513 struct scatterlist *sg;
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900514 unsigned int i, sg_len;
Will Newtonf95f3852011-01-02 01:11:59 -0500515
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900516 if (!next && data->host_cookie)
517 return data->host_cookie;
Will Newtonf95f3852011-01-02 01:11:59 -0500518
519 /*
520 * We don't do DMA on "complex" transfers, i.e. with
521 * non-word-aligned buffers or lengths. Also, we don't bother
522 * with all the DMA setup overhead for short transfers.
523 */
524 if (data->blocks * data->blksz < DW_MCI_DMA_THRESHOLD)
525 return -EINVAL;
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900526
Will Newtonf95f3852011-01-02 01:11:59 -0500527 if (data->blksz & 3)
528 return -EINVAL;
529
530 for_each_sg(data->sg, sg, data->sg_len, i) {
531 if (sg->offset & 3 || sg->length & 3)
532 return -EINVAL;
533 }
534
Thomas Abraham4a909202012-09-17 18:16:35 +0000535 sg_len = dma_map_sg(host->dev,
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900536 data->sg,
537 data->sg_len,
538 dw_mci_get_dma_dir(data));
539 if (sg_len == 0)
540 return -EINVAL;
541
542 if (next)
543 data->host_cookie = sg_len;
544
545 return sg_len;
546}
547
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900548static void dw_mci_pre_req(struct mmc_host *mmc,
549 struct mmc_request *mrq,
550 bool is_first_req)
551{
552 struct dw_mci_slot *slot = mmc_priv(mmc);
553 struct mmc_data *data = mrq->data;
554
555 if (!slot->host->use_dma || !data)
556 return;
557
558 if (data->host_cookie) {
559 data->host_cookie = 0;
560 return;
561 }
562
563 if (dw_mci_pre_dma_transfer(slot->host, mrq->data, 1) < 0)
564 data->host_cookie = 0;
565}
566
567static void dw_mci_post_req(struct mmc_host *mmc,
568 struct mmc_request *mrq,
569 int err)
570{
571 struct dw_mci_slot *slot = mmc_priv(mmc);
572 struct mmc_data *data = mrq->data;
573
574 if (!slot->host->use_dma || !data)
575 return;
576
577 if (data->host_cookie)
Thomas Abraham4a909202012-09-17 18:16:35 +0000578 dma_unmap_sg(slot->host->dev,
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900579 data->sg,
580 data->sg_len,
581 dw_mci_get_dma_dir(data));
582 data->host_cookie = 0;
583}
584
Seungwon Jeon52426892013-08-31 00:13:42 +0900585static void dw_mci_adjust_fifoth(struct dw_mci *host, struct mmc_data *data)
586{
587#ifdef CONFIG_MMC_DW_IDMAC
588 unsigned int blksz = data->blksz;
589 const u32 mszs[] = {1, 4, 8, 16, 32, 64, 128, 256};
590 u32 fifo_width = 1 << host->data_shift;
591 u32 blksz_depth = blksz / fifo_width, fifoth_val;
592 u32 msize = 0, rx_wmark = 1, tx_wmark, tx_wmark_invers;
593 int idx = (sizeof(mszs) / sizeof(mszs[0])) - 1;
594
595 tx_wmark = (host->fifo_depth) / 2;
596 tx_wmark_invers = host->fifo_depth - tx_wmark;
597
598 /*
599 * MSIZE is '1',
600 * if blksz is not a multiple of the FIFO width
601 */
602 if (blksz % fifo_width) {
603 msize = 0;
604 rx_wmark = 1;
605 goto done;
606 }
607
608 do {
609 if (!((blksz_depth % mszs[idx]) ||
610 (tx_wmark_invers % mszs[idx]))) {
611 msize = idx;
612 rx_wmark = mszs[idx] - 1;
613 break;
614 }
615 } while (--idx > 0);
616 /*
617 * If idx is '0', it won't be tried
618 * Thus, initial values are uesed
619 */
620done:
621 fifoth_val = SDMMC_SET_FIFOTH(msize, rx_wmark, tx_wmark);
622 mci_writel(host, FIFOTH, fifoth_val);
623#endif
624}
625
Seungwon Jeonf1d27362013-08-31 00:13:55 +0900626static void dw_mci_ctrl_rd_thld(struct dw_mci *host, struct mmc_data *data)
627{
628 unsigned int blksz = data->blksz;
629 u32 blksz_depth, fifo_depth;
630 u16 thld_size;
631
632 WARN_ON(!(data->flags & MMC_DATA_READ));
633
634 if (host->timing != MMC_TIMING_MMC_HS200 &&
635 host->timing != MMC_TIMING_UHS_SDR104)
636 goto disable;
637
638 blksz_depth = blksz / (1 << host->data_shift);
639 fifo_depth = host->fifo_depth;
640
641 if (blksz_depth > fifo_depth)
642 goto disable;
643
644 /*
645 * If (blksz_depth) >= (fifo_depth >> 1), should be 'thld_size <= blksz'
646 * If (blksz_depth) < (fifo_depth >> 1), should be thld_size = blksz
647 * Currently just choose blksz.
648 */
649 thld_size = blksz;
650 mci_writel(host, CDTHRCTL, SDMMC_SET_RD_THLD(thld_size, 1));
651 return;
652
653disable:
654 mci_writel(host, CDTHRCTL, SDMMC_SET_RD_THLD(0, 0));
655}
656
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900657static int dw_mci_submit_data_dma(struct dw_mci *host, struct mmc_data *data)
658{
659 int sg_len;
660 u32 temp;
661
662 host->using_dma = 0;
663
664 /* If we don't have a channel, we can't do DMA */
665 if (!host->use_dma)
666 return -ENODEV;
667
668 sg_len = dw_mci_pre_dma_transfer(host, data, 0);
Seungwon Jeona99aa9b2012-04-10 09:53:32 +0900669 if (sg_len < 0) {
670 host->dma_ops->stop(host);
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900671 return sg_len;
Seungwon Jeona99aa9b2012-04-10 09:53:32 +0900672 }
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900673
James Hogan03e8cb52011-06-29 09:28:43 +0100674 host->using_dma = 1;
675
Thomas Abraham4a909202012-09-17 18:16:35 +0000676 dev_vdbg(host->dev,
Will Newtonf95f3852011-01-02 01:11:59 -0500677 "sd sg_cpu: %#lx sg_dma: %#lx sg_len: %d\n",
678 (unsigned long)host->sg_cpu, (unsigned long)host->sg_dma,
679 sg_len);
680
Seungwon Jeon52426892013-08-31 00:13:42 +0900681 /*
682 * Decide the MSIZE and RX/TX Watermark.
683 * If current block size is same with previous size,
684 * no need to update fifoth.
685 */
686 if (host->prev_blksz != data->blksz)
687 dw_mci_adjust_fifoth(host, data);
688
Will Newtonf95f3852011-01-02 01:11:59 -0500689 /* Enable the DMA interface */
690 temp = mci_readl(host, CTRL);
691 temp |= SDMMC_CTRL_DMA_ENABLE;
692 mci_writel(host, CTRL, temp);
693
694 /* Disable RX/TX IRQs, let DMA handle it */
695 temp = mci_readl(host, INTMASK);
696 temp &= ~(SDMMC_INT_RXDR | SDMMC_INT_TXDR);
697 mci_writel(host, INTMASK, temp);
698
699 host->dma_ops->start(host, sg_len);
700
701 return 0;
702}
703
704static void dw_mci_submit_data(struct dw_mci *host, struct mmc_data *data)
705{
706 u32 temp;
707
708 data->error = -EINPROGRESS;
709
710 WARN_ON(host->data);
711 host->sg = NULL;
712 host->data = data;
713
Seungwon Jeonf1d27362013-08-31 00:13:55 +0900714 if (data->flags & MMC_DATA_READ) {
James Hogan55c5efbc2011-06-29 09:29:58 +0100715 host->dir_status = DW_MCI_RECV_STATUS;
Seungwon Jeonf1d27362013-08-31 00:13:55 +0900716 dw_mci_ctrl_rd_thld(host, data);
717 } else {
James Hogan55c5efbc2011-06-29 09:29:58 +0100718 host->dir_status = DW_MCI_SEND_STATUS;
Seungwon Jeonf1d27362013-08-31 00:13:55 +0900719 }
James Hogan55c5efbc2011-06-29 09:29:58 +0100720
Will Newtonf95f3852011-01-02 01:11:59 -0500721 if (dw_mci_submit_data_dma(host, data)) {
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +0900722 int flags = SG_MITER_ATOMIC;
723 if (host->data->flags & MMC_DATA_READ)
724 flags |= SG_MITER_TO_SG;
725 else
726 flags |= SG_MITER_FROM_SG;
727
728 sg_miter_start(&host->sg_miter, data->sg, data->sg_len, flags);
Will Newtonf95f3852011-01-02 01:11:59 -0500729 host->sg = data->sg;
James Hogan34b664a2011-06-24 13:57:56 +0100730 host->part_buf_start = 0;
731 host->part_buf_count = 0;
Will Newtonf95f3852011-01-02 01:11:59 -0500732
James Hoganb40af3a2011-06-24 13:54:06 +0100733 mci_writel(host, RINTSTS, SDMMC_INT_TXDR | SDMMC_INT_RXDR);
Will Newtonf95f3852011-01-02 01:11:59 -0500734 temp = mci_readl(host, INTMASK);
735 temp |= SDMMC_INT_TXDR | SDMMC_INT_RXDR;
736 mci_writel(host, INTMASK, temp);
737
738 temp = mci_readl(host, CTRL);
739 temp &= ~SDMMC_CTRL_DMA_ENABLE;
740 mci_writel(host, CTRL, temp);
Seungwon Jeon52426892013-08-31 00:13:42 +0900741
742 /*
743 * Use the initial fifoth_val for PIO mode.
744 * If next issued data may be transfered by DMA mode,
745 * prev_blksz should be invalidated.
746 */
747 mci_writel(host, FIFOTH, host->fifoth_val);
748 host->prev_blksz = 0;
749 } else {
750 /*
751 * Keep the current block size.
752 * It will be used to decide whether to update
753 * fifoth register next time.
754 */
755 host->prev_blksz = data->blksz;
Will Newtonf95f3852011-01-02 01:11:59 -0500756 }
757}
758
759static void mci_send_cmd(struct dw_mci_slot *slot, u32 cmd, u32 arg)
760{
761 struct dw_mci *host = slot->host;
762 unsigned long timeout = jiffies + msecs_to_jiffies(500);
763 unsigned int cmd_status = 0;
764
765 mci_writel(host, CMDARG, arg);
766 wmb();
767 mci_writel(host, CMD, SDMMC_CMD_START | cmd);
768
769 while (time_before(jiffies, timeout)) {
770 cmd_status = mci_readl(host, CMD);
771 if (!(cmd_status & SDMMC_CMD_START))
772 return;
773 }
774 dev_err(&slot->mmc->class_dev,
775 "Timeout sending command (cmd %#x arg %#x status %#x)\n",
776 cmd, arg, cmd_status);
777}
778
Abhilash Kesavanab269122012-11-19 10:26:21 +0530779static void dw_mci_setup_bus(struct dw_mci_slot *slot, bool force_clkinit)
Will Newtonf95f3852011-01-02 01:11:59 -0500780{
781 struct dw_mci *host = slot->host;
Doug Andersonfdf492a2013-08-31 00:11:43 +0900782 unsigned int clock = slot->clock;
Will Newtonf95f3852011-01-02 01:11:59 -0500783 u32 div;
Doug Anderson9623b5b2012-07-25 08:33:17 -0700784 u32 clk_en_a;
Doug Anderson01730552014-08-22 19:17:51 +0530785 u32 sdmmc_cmd_bits = SDMMC_CMD_UPD_CLK | SDMMC_CMD_PRV_DAT_WAIT;
786
787 /* We must continue to set bit 28 in CMD until the change is complete */
788 if (host->state == STATE_WAITING_CMD11_DONE)
789 sdmmc_cmd_bits |= SDMMC_CMD_VOLT_SWITCH;
Will Newtonf95f3852011-01-02 01:11:59 -0500790
Doug Andersonfdf492a2013-08-31 00:11:43 +0900791 if (!clock) {
792 mci_writel(host, CLKENA, 0);
Doug Anderson01730552014-08-22 19:17:51 +0530793 mci_send_cmd(slot, sdmmc_cmd_bits, 0);
Doug Andersonfdf492a2013-08-31 00:11:43 +0900794 } else if (clock != host->current_speed || force_clkinit) {
795 div = host->bus_hz / clock;
796 if (host->bus_hz % clock && host->bus_hz > clock)
Will Newtonf95f3852011-01-02 01:11:59 -0500797 /*
798 * move the + 1 after the divide to prevent
799 * over-clocking the card.
800 */
Seungwon Jeone4199902012-05-22 13:01:21 +0900801 div += 1;
802
Doug Andersonfdf492a2013-08-31 00:11:43 +0900803 div = (host->bus_hz != clock) ? DIV_ROUND_UP(div, 2) : 0;
Will Newtonf95f3852011-01-02 01:11:59 -0500804
Doug Andersonfdf492a2013-08-31 00:11:43 +0900805 if ((clock << div) != slot->__clk_old || force_clkinit)
806 dev_info(&slot->mmc->class_dev,
807 "Bus speed (slot %d) = %dHz (slot req %dHz, actual %dHZ div = %d)\n",
808 slot->id, host->bus_hz, clock,
809 div ? ((host->bus_hz / div) >> 1) :
810 host->bus_hz, div);
Will Newtonf95f3852011-01-02 01:11:59 -0500811
812 /* disable clock */
813 mci_writel(host, CLKENA, 0);
814 mci_writel(host, CLKSRC, 0);
815
816 /* inform CIU */
Doug Anderson01730552014-08-22 19:17:51 +0530817 mci_send_cmd(slot, sdmmc_cmd_bits, 0);
Will Newtonf95f3852011-01-02 01:11:59 -0500818
819 /* set clock to desired speed */
820 mci_writel(host, CLKDIV, div);
821
822 /* inform CIU */
Doug Anderson01730552014-08-22 19:17:51 +0530823 mci_send_cmd(slot, sdmmc_cmd_bits, 0);
Will Newtonf95f3852011-01-02 01:11:59 -0500824
Doug Anderson9623b5b2012-07-25 08:33:17 -0700825 /* enable clock; only low power if no SDIO */
826 clk_en_a = SDMMC_CLKEN_ENABLE << slot->id;
827 if (!(mci_readl(host, INTMASK) & SDMMC_INT_SDIO(slot->id)))
828 clk_en_a |= SDMMC_CLKEN_LOW_PWR << slot->id;
829 mci_writel(host, CLKENA, clk_en_a);
Will Newtonf95f3852011-01-02 01:11:59 -0500830
831 /* inform CIU */
Doug Anderson01730552014-08-22 19:17:51 +0530832 mci_send_cmd(slot, sdmmc_cmd_bits, 0);
Will Newtonf95f3852011-01-02 01:11:59 -0500833
Doug Andersonfdf492a2013-08-31 00:11:43 +0900834 /* keep the clock with reflecting clock dividor */
835 slot->__clk_old = clock << div;
Will Newtonf95f3852011-01-02 01:11:59 -0500836 }
837
Doug Andersonfdf492a2013-08-31 00:11:43 +0900838 host->current_speed = clock;
839
Will Newtonf95f3852011-01-02 01:11:59 -0500840 /* Set the current slot bus width */
Seungwon Jeon1d56c452011-06-20 17:23:53 +0900841 mci_writel(host, CTYPE, (slot->ctype << slot->id));
Will Newtonf95f3852011-01-02 01:11:59 -0500842}
843
Seungwon Jeon053b3ce2011-12-22 18:01:29 +0900844static void __dw_mci_start_request(struct dw_mci *host,
845 struct dw_mci_slot *slot,
846 struct mmc_command *cmd)
Will Newtonf95f3852011-01-02 01:11:59 -0500847{
848 struct mmc_request *mrq;
Will Newtonf95f3852011-01-02 01:11:59 -0500849 struct mmc_data *data;
850 u32 cmdflags;
851
852 mrq = slot->mrq;
Will Newtonf95f3852011-01-02 01:11:59 -0500853
Will Newtonf95f3852011-01-02 01:11:59 -0500854 host->cur_slot = slot;
855 host->mrq = mrq;
856
857 host->pending_events = 0;
858 host->completed_events = 0;
Seungwon Jeone352c812013-08-31 00:14:17 +0900859 host->cmd_status = 0;
Will Newtonf95f3852011-01-02 01:11:59 -0500860 host->data_status = 0;
Seungwon Jeone352c812013-08-31 00:14:17 +0900861 host->dir_status = 0;
Will Newtonf95f3852011-01-02 01:11:59 -0500862
Seungwon Jeon053b3ce2011-12-22 18:01:29 +0900863 data = cmd->data;
Will Newtonf95f3852011-01-02 01:11:59 -0500864 if (data) {
Jaehoon Chungf16afa82014-03-03 11:36:45 +0900865 mci_writel(host, TMOUT, 0xFFFFFFFF);
Will Newtonf95f3852011-01-02 01:11:59 -0500866 mci_writel(host, BYTCNT, data->blksz*data->blocks);
867 mci_writel(host, BLKSIZ, data->blksz);
868 }
869
Will Newtonf95f3852011-01-02 01:11:59 -0500870 cmdflags = dw_mci_prepare_command(slot->mmc, cmd);
871
872 /* this is the first command, send the initialization clock */
873 if (test_and_clear_bit(DW_MMC_CARD_NEED_INIT, &slot->flags))
874 cmdflags |= SDMMC_CMD_INIT;
875
876 if (data) {
877 dw_mci_submit_data(host, data);
878 wmb();
879 }
880
881 dw_mci_start_command(host, cmd, cmdflags);
882
883 if (mrq->stop)
884 host->stop_cmdr = dw_mci_prepare_command(slot->mmc, mrq->stop);
Seungwon Jeon90c21432013-08-31 00:14:05 +0900885 else
886 host->stop_cmdr = dw_mci_prep_stop_abort(host, cmd);
Will Newtonf95f3852011-01-02 01:11:59 -0500887}
888
Seungwon Jeon053b3ce2011-12-22 18:01:29 +0900889static void dw_mci_start_request(struct dw_mci *host,
890 struct dw_mci_slot *slot)
891{
892 struct mmc_request *mrq = slot->mrq;
893 struct mmc_command *cmd;
894
895 cmd = mrq->sbc ? mrq->sbc : mrq->cmd;
896 __dw_mci_start_request(host, slot, cmd);
897}
898
James Hogan7456caa2011-06-24 13:55:10 +0100899/* must be called with host->lock held */
Will Newtonf95f3852011-01-02 01:11:59 -0500900static void dw_mci_queue_request(struct dw_mci *host, struct dw_mci_slot *slot,
901 struct mmc_request *mrq)
902{
903 dev_vdbg(&slot->mmc->class_dev, "queue request: state=%d\n",
904 host->state);
905
Will Newtonf95f3852011-01-02 01:11:59 -0500906 slot->mrq = mrq;
907
Doug Anderson01730552014-08-22 19:17:51 +0530908 if (host->state == STATE_WAITING_CMD11_DONE) {
909 dev_warn(&slot->mmc->class_dev,
910 "Voltage change didn't complete\n");
911 /*
912 * this case isn't expected to happen, so we can
913 * either crash here or just try to continue on
914 * in the closest possible state
915 */
916 host->state = STATE_IDLE;
917 }
918
Will Newtonf95f3852011-01-02 01:11:59 -0500919 if (host->state == STATE_IDLE) {
920 host->state = STATE_SENDING_CMD;
921 dw_mci_start_request(host, slot);
922 } else {
923 list_add_tail(&slot->queue_node, &host->queue);
924 }
Will Newtonf95f3852011-01-02 01:11:59 -0500925}
926
927static void dw_mci_request(struct mmc_host *mmc, struct mmc_request *mrq)
928{
929 struct dw_mci_slot *slot = mmc_priv(mmc);
930 struct dw_mci *host = slot->host;
931
932 WARN_ON(slot->mrq);
933
James Hogan7456caa2011-06-24 13:55:10 +0100934 /*
935 * The check for card presence and queueing of the request must be
936 * atomic, otherwise the card could be removed in between and the
937 * request wouldn't fail until another card was inserted.
938 */
939 spin_lock_bh(&host->lock);
940
Will Newtonf95f3852011-01-02 01:11:59 -0500941 if (!test_bit(DW_MMC_CARD_PRESENT, &slot->flags)) {
James Hogan7456caa2011-06-24 13:55:10 +0100942 spin_unlock_bh(&host->lock);
Will Newtonf95f3852011-01-02 01:11:59 -0500943 mrq->cmd->error = -ENOMEDIUM;
944 mmc_request_done(mmc, mrq);
945 return;
946 }
947
Will Newtonf95f3852011-01-02 01:11:59 -0500948 dw_mci_queue_request(host, slot, mrq);
James Hogan7456caa2011-06-24 13:55:10 +0100949
950 spin_unlock_bh(&host->lock);
Will Newtonf95f3852011-01-02 01:11:59 -0500951}
952
953static void dw_mci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
954{
955 struct dw_mci_slot *slot = mmc_priv(mmc);
Arnd Bergmanne95baf12012-11-08 14:26:11 +0000956 const struct dw_mci_drv_data *drv_data = slot->host->drv_data;
Jaehoon Chung41babf72011-02-24 13:46:11 +0900957 u32 regs;
Yuvaraj CD51da2242014-08-22 19:17:50 +0530958 int ret;
Will Newtonf95f3852011-01-02 01:11:59 -0500959
Will Newtonf95f3852011-01-02 01:11:59 -0500960 switch (ios->bus_width) {
Will Newtonf95f3852011-01-02 01:11:59 -0500961 case MMC_BUS_WIDTH_4:
962 slot->ctype = SDMMC_CTYPE_4BIT;
963 break;
Jaehoon Chungc9b2a062011-02-17 16:12:38 +0900964 case MMC_BUS_WIDTH_8:
965 slot->ctype = SDMMC_CTYPE_8BIT;
966 break;
Jaehoon Chungb2f7cb42012-11-08 17:35:31 +0900967 default:
968 /* set default 1 bit mode */
969 slot->ctype = SDMMC_CTYPE_1BIT;
Will Newtonf95f3852011-01-02 01:11:59 -0500970 }
971
Seungwon Jeon3f514292012-01-02 16:00:02 +0900972 regs = mci_readl(slot->host, UHS_REG);
973
Jaehoon Chung41babf72011-02-24 13:46:11 +0900974 /* DDR mode set */
Seungwon Jeoncab3a802014-03-14 21:12:43 +0900975 if (ios->timing == MMC_TIMING_MMC_DDR52)
Hyeonsu Kimc69042a2013-02-22 09:32:46 +0900976 regs |= ((0x1 << slot->id) << 16);
Seungwon Jeon3f514292012-01-02 16:00:02 +0900977 else
Hyeonsu Kimc69042a2013-02-22 09:32:46 +0900978 regs &= ~((0x1 << slot->id) << 16);
Seungwon Jeon3f514292012-01-02 16:00:02 +0900979
980 mci_writel(slot->host, UHS_REG, regs);
Seungwon Jeonf1d27362013-08-31 00:13:55 +0900981 slot->host->timing = ios->timing;
Jaehoon Chung41babf72011-02-24 13:46:11 +0900982
Doug Andersonfdf492a2013-08-31 00:11:43 +0900983 /*
984 * Use mirror of ios->clock to prevent race with mmc
985 * core ios update when finding the minimum.
986 */
987 slot->clock = ios->clock;
Will Newtonf95f3852011-01-02 01:11:59 -0500988
James Hogancb27a842012-10-16 09:43:08 +0100989 if (drv_data && drv_data->set_ios)
990 drv_data->set_ios(slot->host, ios);
Thomas Abraham800d78b2012-09-17 18:16:42 +0000991
Jaehoon Chungbf7cb222012-11-08 17:35:29 +0900992 /* Slot specific timing and width adjustment */
993 dw_mci_setup_bus(slot, false);
994
Doug Anderson01730552014-08-22 19:17:51 +0530995 if (slot->host->state == STATE_WAITING_CMD11_DONE && ios->clock != 0)
996 slot->host->state = STATE_IDLE;
997
Will Newtonf95f3852011-01-02 01:11:59 -0500998 switch (ios->power_mode) {
999 case MMC_POWER_UP:
Yuvaraj CD51da2242014-08-22 19:17:50 +05301000 if (!IS_ERR(mmc->supply.vmmc)) {
1001 ret = mmc_regulator_set_ocr(mmc, mmc->supply.vmmc,
1002 ios->vdd);
1003 if (ret) {
1004 dev_err(slot->host->dev,
1005 "failed to enable vmmc regulator\n");
1006 /*return, if failed turn on vmmc*/
1007 return;
1008 }
1009 }
1010 if (!IS_ERR(mmc->supply.vqmmc) && !slot->host->vqmmc_enabled) {
1011 ret = regulator_enable(mmc->supply.vqmmc);
1012 if (ret < 0)
1013 dev_err(slot->host->dev,
1014 "failed to enable vqmmc regulator\n");
1015 else
1016 slot->host->vqmmc_enabled = true;
1017 }
Will Newtonf95f3852011-01-02 01:11:59 -05001018 set_bit(DW_MMC_CARD_NEED_INIT, &slot->flags);
Jaehoon Chung4366dcc2013-03-26 21:36:14 +09001019 regs = mci_readl(slot->host, PWREN);
1020 regs |= (1 << slot->id);
1021 mci_writel(slot->host, PWREN, regs);
James Hogane6f34e22013-03-12 10:43:32 +00001022 break;
1023 case MMC_POWER_OFF:
Yuvaraj CD51da2242014-08-22 19:17:50 +05301024 if (!IS_ERR(mmc->supply.vmmc))
1025 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, 0);
1026
1027 if (!IS_ERR(mmc->supply.vqmmc) && slot->host->vqmmc_enabled) {
1028 regulator_disable(mmc->supply.vqmmc);
1029 slot->host->vqmmc_enabled = false;
1030 }
1031
Jaehoon Chung4366dcc2013-03-26 21:36:14 +09001032 regs = mci_readl(slot->host, PWREN);
1033 regs &= ~(1 << slot->id);
1034 mci_writel(slot->host, PWREN, regs);
Will Newtonf95f3852011-01-02 01:11:59 -05001035 break;
1036 default:
1037 break;
1038 }
1039}
1040
Doug Anderson01730552014-08-22 19:17:51 +05301041static int dw_mci_card_busy(struct mmc_host *mmc)
1042{
1043 struct dw_mci_slot *slot = mmc_priv(mmc);
1044 u32 status;
1045
1046 /*
1047 * Check the busy bit which is low when DAT[3:0]
1048 * (the data lines) are 0000
1049 */
1050 status = mci_readl(slot->host, STATUS);
1051
1052 return !!(status & SDMMC_STATUS_BUSY);
1053}
1054
1055static int dw_mci_switch_voltage(struct mmc_host *mmc, struct mmc_ios *ios)
1056{
1057 struct dw_mci_slot *slot = mmc_priv(mmc);
1058 struct dw_mci *host = slot->host;
1059 u32 uhs;
1060 u32 v18 = SDMMC_UHS_18V << slot->id;
1061 int min_uv, max_uv;
1062 int ret;
1063
1064 /*
1065 * Program the voltage. Note that some instances of dw_mmc may use
1066 * the UHS_REG for this. For other instances (like exynos) the UHS_REG
1067 * does no harm but you need to set the regulator directly. Try both.
1068 */
1069 uhs = mci_readl(host, UHS_REG);
1070 if (ios->signal_voltage == MMC_SIGNAL_VOLTAGE_330) {
1071 min_uv = 2700000;
1072 max_uv = 3600000;
1073 uhs &= ~v18;
1074 } else {
1075 min_uv = 1700000;
1076 max_uv = 1950000;
1077 uhs |= v18;
1078 }
1079 if (!IS_ERR(mmc->supply.vqmmc)) {
1080 ret = regulator_set_voltage(mmc->supply.vqmmc, min_uv, max_uv);
1081
1082 if (ret) {
Doug Andersonb19caf32014-10-10 21:16:16 -07001083 dev_dbg(&mmc->class_dev,
Doug Anderson01730552014-08-22 19:17:51 +05301084 "Regulator set error %d: %d - %d\n",
1085 ret, min_uv, max_uv);
1086 return ret;
1087 }
1088 }
1089 mci_writel(host, UHS_REG, uhs);
1090
1091 return 0;
1092}
1093
Will Newtonf95f3852011-01-02 01:11:59 -05001094static int dw_mci_get_ro(struct mmc_host *mmc)
1095{
1096 int read_only;
1097 struct dw_mci_slot *slot = mmc_priv(mmc);
Jaehoon Chung9795a842014-03-03 11:36:46 +09001098 int gpio_ro = mmc_gpio_get_ro(mmc);
Will Newtonf95f3852011-01-02 01:11:59 -05001099
1100 /* Use platform get_ro function, else try on board write protect */
Jaehoon Chung26375b52014-08-07 16:37:58 +09001101 if ((slot->quirks & DW_MCI_SLOT_QUIRK_NO_WRITE_PROTECT) ||
1102 (slot->host->quirks & DW_MCI_QUIRK_NO_WRITE_PROTECT))
Thomas Abrahamb4967aa2012-09-17 18:16:39 +00001103 read_only = 0;
Jaehoon Chung9795a842014-03-03 11:36:46 +09001104 else if (!IS_ERR_VALUE(gpio_ro))
1105 read_only = gpio_ro;
Will Newtonf95f3852011-01-02 01:11:59 -05001106 else
1107 read_only =
1108 mci_readl(slot->host, WRTPRT) & (1 << slot->id) ? 1 : 0;
1109
1110 dev_dbg(&mmc->class_dev, "card is %s\n",
1111 read_only ? "read-only" : "read-write");
1112
1113 return read_only;
1114}
1115
1116static int dw_mci_get_cd(struct mmc_host *mmc)
1117{
1118 int present;
1119 struct dw_mci_slot *slot = mmc_priv(mmc);
1120 struct dw_mci_board *brd = slot->host->pdata;
Zhangfei Gao7cf347b2014-01-16 20:48:47 +08001121 struct dw_mci *host = slot->host;
1122 int gpio_cd = mmc_gpio_get_cd(mmc);
Will Newtonf95f3852011-01-02 01:11:59 -05001123
1124 /* Use platform get_cd function, else try onboard card detect */
Jaehoon Chungfc3d7722011-02-25 11:08:15 +09001125 if (brd->quirks & DW_MCI_QUIRK_BROKEN_CARD_DETECTION)
1126 present = 1;
Zhangfei Gaobf626e52014-01-09 22:35:10 +08001127 else if (!IS_ERR_VALUE(gpio_cd))
Zhangfei Gao7cf347b2014-01-16 20:48:47 +08001128 present = gpio_cd;
Will Newtonf95f3852011-01-02 01:11:59 -05001129 else
1130 present = (mci_readl(slot->host, CDETECT) & (1 << slot->id))
1131 == 0 ? 1 : 0;
1132
Zhangfei Gao7cf347b2014-01-16 20:48:47 +08001133 spin_lock_bh(&host->lock);
Zhangfei Gaobf626e52014-01-09 22:35:10 +08001134 if (present) {
1135 set_bit(DW_MMC_CARD_PRESENT, &slot->flags);
Will Newtonf95f3852011-01-02 01:11:59 -05001136 dev_dbg(&mmc->class_dev, "card is present\n");
Zhangfei Gaobf626e52014-01-09 22:35:10 +08001137 } else {
1138 clear_bit(DW_MMC_CARD_PRESENT, &slot->flags);
Will Newtonf95f3852011-01-02 01:11:59 -05001139 dev_dbg(&mmc->class_dev, "card is not present\n");
Zhangfei Gaobf626e52014-01-09 22:35:10 +08001140 }
Zhangfei Gao7cf347b2014-01-16 20:48:47 +08001141 spin_unlock_bh(&host->lock);
Will Newtonf95f3852011-01-02 01:11:59 -05001142
1143 return present;
1144}
1145
Doug Anderson9623b5b2012-07-25 08:33:17 -07001146/*
1147 * Disable lower power mode.
1148 *
1149 * Low power mode will stop the card clock when idle. According to the
1150 * description of the CLKENA register we should disable low power mode
1151 * for SDIO cards if we need SDIO interrupts to work.
1152 *
1153 * This function is fast if low power mode is already disabled.
1154 */
1155static void dw_mci_disable_low_power(struct dw_mci_slot *slot)
1156{
1157 struct dw_mci *host = slot->host;
1158 u32 clk_en_a;
1159 const u32 clken_low_pwr = SDMMC_CLKEN_LOW_PWR << slot->id;
1160
1161 clk_en_a = mci_readl(host, CLKENA);
1162
1163 if (clk_en_a & clken_low_pwr) {
1164 mci_writel(host, CLKENA, clk_en_a & ~clken_low_pwr);
1165 mci_send_cmd(slot, SDMMC_CMD_UPD_CLK |
1166 SDMMC_CMD_PRV_DAT_WAIT, 0);
1167 }
1168}
1169
Shashidhar Hiremath1a5c8e12011-08-29 13:11:46 +05301170static void dw_mci_enable_sdio_irq(struct mmc_host *mmc, int enb)
1171{
1172 struct dw_mci_slot *slot = mmc_priv(mmc);
1173 struct dw_mci *host = slot->host;
1174 u32 int_mask;
1175
1176 /* Enable/disable Slot Specific SDIO interrupt */
1177 int_mask = mci_readl(host, INTMASK);
1178 if (enb) {
Doug Anderson9623b5b2012-07-25 08:33:17 -07001179 /*
1180 * Turn off low power mode if it was enabled. This is a bit of
1181 * a heavy operation and we disable / enable IRQs a lot, so
1182 * we'll leave low power mode disabled and it will get
1183 * re-enabled again in dw_mci_setup_bus().
1184 */
1185 dw_mci_disable_low_power(slot);
1186
Shashidhar Hiremath1a5c8e12011-08-29 13:11:46 +05301187 mci_writel(host, INTMASK,
Kyoungil Kim705ad042012-05-14 17:38:48 +09001188 (int_mask | SDMMC_INT_SDIO(slot->id)));
Shashidhar Hiremath1a5c8e12011-08-29 13:11:46 +05301189 } else {
1190 mci_writel(host, INTMASK,
Kyoungil Kim705ad042012-05-14 17:38:48 +09001191 (int_mask & ~SDMMC_INT_SDIO(slot->id)));
Shashidhar Hiremath1a5c8e12011-08-29 13:11:46 +05301192 }
1193}
1194
Seungwon Jeon0976f162013-08-31 00:12:42 +09001195static int dw_mci_execute_tuning(struct mmc_host *mmc, u32 opcode)
1196{
1197 struct dw_mci_slot *slot = mmc_priv(mmc);
1198 struct dw_mci *host = slot->host;
1199 const struct dw_mci_drv_data *drv_data = host->drv_data;
1200 struct dw_mci_tuning_data tuning_data;
1201 int err = -ENOSYS;
1202
1203 if (opcode == MMC_SEND_TUNING_BLOCK_HS200) {
1204 if (mmc->ios.bus_width == MMC_BUS_WIDTH_8) {
1205 tuning_data.blk_pattern = tuning_blk_pattern_8bit;
1206 tuning_data.blksz = sizeof(tuning_blk_pattern_8bit);
1207 } else if (mmc->ios.bus_width == MMC_BUS_WIDTH_4) {
1208 tuning_data.blk_pattern = tuning_blk_pattern_4bit;
1209 tuning_data.blksz = sizeof(tuning_blk_pattern_4bit);
1210 } else {
1211 return -EINVAL;
1212 }
1213 } else if (opcode == MMC_SEND_TUNING_BLOCK) {
1214 tuning_data.blk_pattern = tuning_blk_pattern_4bit;
1215 tuning_data.blksz = sizeof(tuning_blk_pattern_4bit);
1216 } else {
1217 dev_err(host->dev,
1218 "Undefined command(%d) for tuning\n", opcode);
1219 return -EINVAL;
1220 }
1221
1222 if (drv_data && drv_data->execute_tuning)
1223 err = drv_data->execute_tuning(slot, opcode, &tuning_data);
1224 return err;
1225}
1226
Will Newtonf95f3852011-01-02 01:11:59 -05001227static const struct mmc_host_ops dw_mci_ops = {
Shashidhar Hiremath1a5c8e12011-08-29 13:11:46 +05301228 .request = dw_mci_request,
Seungwon Jeon9aa51402012-02-06 16:55:07 +09001229 .pre_req = dw_mci_pre_req,
1230 .post_req = dw_mci_post_req,
Shashidhar Hiremath1a5c8e12011-08-29 13:11:46 +05301231 .set_ios = dw_mci_set_ios,
1232 .get_ro = dw_mci_get_ro,
1233 .get_cd = dw_mci_get_cd,
1234 .enable_sdio_irq = dw_mci_enable_sdio_irq,
Seungwon Jeon0976f162013-08-31 00:12:42 +09001235 .execute_tuning = dw_mci_execute_tuning,
Doug Anderson01730552014-08-22 19:17:51 +05301236 .card_busy = dw_mci_card_busy,
1237 .start_signal_voltage_switch = dw_mci_switch_voltage,
1238
Will Newtonf95f3852011-01-02 01:11:59 -05001239};
1240
1241static void dw_mci_request_end(struct dw_mci *host, struct mmc_request *mrq)
1242 __releases(&host->lock)
1243 __acquires(&host->lock)
1244{
1245 struct dw_mci_slot *slot;
1246 struct mmc_host *prev_mmc = host->cur_slot->mmc;
1247
1248 WARN_ON(host->cmd || host->data);
1249
1250 host->cur_slot->mrq = NULL;
1251 host->mrq = NULL;
1252 if (!list_empty(&host->queue)) {
1253 slot = list_entry(host->queue.next,
1254 struct dw_mci_slot, queue_node);
1255 list_del(&slot->queue_node);
Thomas Abraham4a909202012-09-17 18:16:35 +00001256 dev_vdbg(host->dev, "list not empty: %s is next\n",
Will Newtonf95f3852011-01-02 01:11:59 -05001257 mmc_hostname(slot->mmc));
1258 host->state = STATE_SENDING_CMD;
1259 dw_mci_start_request(host, slot);
1260 } else {
Thomas Abraham4a909202012-09-17 18:16:35 +00001261 dev_vdbg(host->dev, "list empty\n");
Doug Anderson01730552014-08-22 19:17:51 +05301262
1263 if (host->state == STATE_SENDING_CMD11)
1264 host->state = STATE_WAITING_CMD11_DONE;
1265 else
1266 host->state = STATE_IDLE;
Will Newtonf95f3852011-01-02 01:11:59 -05001267 }
1268
1269 spin_unlock(&host->lock);
1270 mmc_request_done(prev_mmc, mrq);
1271 spin_lock(&host->lock);
1272}
1273
Seungwon Jeone352c812013-08-31 00:14:17 +09001274static int dw_mci_command_complete(struct dw_mci *host, struct mmc_command *cmd)
Will Newtonf95f3852011-01-02 01:11:59 -05001275{
1276 u32 status = host->cmd_status;
1277
1278 host->cmd_status = 0;
1279
1280 /* Read the response from the card (up to 16 bytes) */
1281 if (cmd->flags & MMC_RSP_PRESENT) {
1282 if (cmd->flags & MMC_RSP_136) {
1283 cmd->resp[3] = mci_readl(host, RESP0);
1284 cmd->resp[2] = mci_readl(host, RESP1);
1285 cmd->resp[1] = mci_readl(host, RESP2);
1286 cmd->resp[0] = mci_readl(host, RESP3);
1287 } else {
1288 cmd->resp[0] = mci_readl(host, RESP0);
1289 cmd->resp[1] = 0;
1290 cmd->resp[2] = 0;
1291 cmd->resp[3] = 0;
1292 }
1293 }
1294
1295 if (status & SDMMC_INT_RTO)
1296 cmd->error = -ETIMEDOUT;
1297 else if ((cmd->flags & MMC_RSP_CRC) && (status & SDMMC_INT_RCRC))
1298 cmd->error = -EILSEQ;
1299 else if (status & SDMMC_INT_RESP_ERR)
1300 cmd->error = -EIO;
1301 else
1302 cmd->error = 0;
1303
1304 if (cmd->error) {
1305 /* newer ip versions need a delay between retries */
1306 if (host->quirks & DW_MCI_QUIRK_RETRY_DELAY)
1307 mdelay(20);
Will Newtonf95f3852011-01-02 01:11:59 -05001308 }
Seungwon Jeone352c812013-08-31 00:14:17 +09001309
1310 return cmd->error;
1311}
1312
1313static int dw_mci_data_complete(struct dw_mci *host, struct mmc_data *data)
1314{
Seungwon Jeon31bff452013-08-31 00:14:23 +09001315 u32 status = host->data_status;
Seungwon Jeone352c812013-08-31 00:14:17 +09001316
1317 if (status & DW_MCI_DATA_ERROR_FLAGS) {
1318 if (status & SDMMC_INT_DRTO) {
1319 data->error = -ETIMEDOUT;
1320 } else if (status & SDMMC_INT_DCRC) {
1321 data->error = -EILSEQ;
1322 } else if (status & SDMMC_INT_EBE) {
1323 if (host->dir_status ==
1324 DW_MCI_SEND_STATUS) {
1325 /*
1326 * No data CRC status was returned.
1327 * The number of bytes transferred
1328 * will be exaggerated in PIO mode.
1329 */
1330 data->bytes_xfered = 0;
1331 data->error = -ETIMEDOUT;
1332 } else if (host->dir_status ==
1333 DW_MCI_RECV_STATUS) {
1334 data->error = -EIO;
1335 }
1336 } else {
1337 /* SDMMC_INT_SBE is included */
1338 data->error = -EIO;
1339 }
1340
Doug Andersone6cc0122014-04-22 16:51:21 -07001341 dev_dbg(host->dev, "data error, status 0x%08x\n", status);
Seungwon Jeone352c812013-08-31 00:14:17 +09001342
1343 /*
1344 * After an error, there may be data lingering
Seungwon Jeon31bff452013-08-31 00:14:23 +09001345 * in the FIFO
Seungwon Jeone352c812013-08-31 00:14:17 +09001346 */
Sonny Rao3a33a942014-08-04 18:19:50 -07001347 dw_mci_reset(host);
Seungwon Jeone352c812013-08-31 00:14:17 +09001348 } else {
1349 data->bytes_xfered = data->blocks * data->blksz;
1350 data->error = 0;
1351 }
1352
1353 return data->error;
Will Newtonf95f3852011-01-02 01:11:59 -05001354}
1355
1356static void dw_mci_tasklet_func(unsigned long priv)
1357{
1358 struct dw_mci *host = (struct dw_mci *)priv;
1359 struct mmc_data *data;
1360 struct mmc_command *cmd;
Seungwon Jeone352c812013-08-31 00:14:17 +09001361 struct mmc_request *mrq;
Will Newtonf95f3852011-01-02 01:11:59 -05001362 enum dw_mci_state state;
1363 enum dw_mci_state prev_state;
Seungwon Jeone352c812013-08-31 00:14:17 +09001364 unsigned int err;
Will Newtonf95f3852011-01-02 01:11:59 -05001365
1366 spin_lock(&host->lock);
1367
1368 state = host->state;
1369 data = host->data;
Seungwon Jeone352c812013-08-31 00:14:17 +09001370 mrq = host->mrq;
Will Newtonf95f3852011-01-02 01:11:59 -05001371
1372 do {
1373 prev_state = state;
1374
1375 switch (state) {
1376 case STATE_IDLE:
Doug Anderson01730552014-08-22 19:17:51 +05301377 case STATE_WAITING_CMD11_DONE:
Will Newtonf95f3852011-01-02 01:11:59 -05001378 break;
1379
Doug Anderson01730552014-08-22 19:17:51 +05301380 case STATE_SENDING_CMD11:
Will Newtonf95f3852011-01-02 01:11:59 -05001381 case STATE_SENDING_CMD:
1382 if (!test_and_clear_bit(EVENT_CMD_COMPLETE,
1383 &host->pending_events))
1384 break;
1385
1386 cmd = host->cmd;
1387 host->cmd = NULL;
1388 set_bit(EVENT_CMD_COMPLETE, &host->completed_events);
Seungwon Jeone352c812013-08-31 00:14:17 +09001389 err = dw_mci_command_complete(host, cmd);
1390 if (cmd == mrq->sbc && !err) {
Seungwon Jeon053b3ce2011-12-22 18:01:29 +09001391 prev_state = state = STATE_SENDING_CMD;
1392 __dw_mci_start_request(host, host->cur_slot,
Seungwon Jeone352c812013-08-31 00:14:17 +09001393 mrq->cmd);
Seungwon Jeon053b3ce2011-12-22 18:01:29 +09001394 goto unlock;
1395 }
1396
Seungwon Jeone352c812013-08-31 00:14:17 +09001397 if (cmd->data && err) {
Seungwon Jeon71abb132013-08-31 00:13:59 +09001398 dw_mci_stop_dma(host);
Seungwon Jeon90c21432013-08-31 00:14:05 +09001399 send_stop_abort(host, data);
1400 state = STATE_SENDING_STOP;
1401 break;
Seungwon Jeon71abb132013-08-31 00:13:59 +09001402 }
1403
Seungwon Jeone352c812013-08-31 00:14:17 +09001404 if (!cmd->data || err) {
1405 dw_mci_request_end(host, mrq);
Will Newtonf95f3852011-01-02 01:11:59 -05001406 goto unlock;
1407 }
1408
1409 prev_state = state = STATE_SENDING_DATA;
1410 /* fall through */
1411
1412 case STATE_SENDING_DATA:
Doug Anderson2aa35462014-08-13 08:13:43 -07001413 /*
1414 * We could get a data error and never a transfer
1415 * complete so we'd better check for it here.
1416 *
1417 * Note that we don't really care if we also got a
1418 * transfer complete; stopping the DMA and sending an
1419 * abort won't hurt.
1420 */
Will Newtonf95f3852011-01-02 01:11:59 -05001421 if (test_and_clear_bit(EVENT_DATA_ERROR,
1422 &host->pending_events)) {
1423 dw_mci_stop_dma(host);
Seungwon Jeon90c21432013-08-31 00:14:05 +09001424 send_stop_abort(host, data);
Will Newtonf95f3852011-01-02 01:11:59 -05001425 state = STATE_DATA_ERROR;
1426 break;
1427 }
1428
1429 if (!test_and_clear_bit(EVENT_XFER_COMPLETE,
1430 &host->pending_events))
1431 break;
1432
1433 set_bit(EVENT_XFER_COMPLETE, &host->completed_events);
Doug Anderson2aa35462014-08-13 08:13:43 -07001434
1435 /*
1436 * Handle an EVENT_DATA_ERROR that might have shown up
1437 * before the transfer completed. This might not have
1438 * been caught by the check above because the interrupt
1439 * could have gone off between the previous check and
1440 * the check for transfer complete.
1441 *
1442 * Technically this ought not be needed assuming we
1443 * get a DATA_COMPLETE eventually (we'll notice the
1444 * error and end the request), but it shouldn't hurt.
1445 *
1446 * This has the advantage of sending the stop command.
1447 */
1448 if (test_and_clear_bit(EVENT_DATA_ERROR,
1449 &host->pending_events)) {
1450 dw_mci_stop_dma(host);
1451 send_stop_abort(host, data);
1452 state = STATE_DATA_ERROR;
1453 break;
1454 }
Will Newtonf95f3852011-01-02 01:11:59 -05001455 prev_state = state = STATE_DATA_BUSY;
Doug Anderson2aa35462014-08-13 08:13:43 -07001456
Will Newtonf95f3852011-01-02 01:11:59 -05001457 /* fall through */
1458
1459 case STATE_DATA_BUSY:
1460 if (!test_and_clear_bit(EVENT_DATA_COMPLETE,
1461 &host->pending_events))
1462 break;
1463
1464 host->data = NULL;
1465 set_bit(EVENT_DATA_COMPLETE, &host->completed_events);
Seungwon Jeone352c812013-08-31 00:14:17 +09001466 err = dw_mci_data_complete(host, data);
Will Newtonf95f3852011-01-02 01:11:59 -05001467
Seungwon Jeone352c812013-08-31 00:14:17 +09001468 if (!err) {
1469 if (!data->stop || mrq->sbc) {
Sachin Kamat17c8bc82014-02-25 15:18:28 +05301470 if (mrq->sbc && data->stop)
Seungwon Jeone352c812013-08-31 00:14:17 +09001471 data->stop->error = 0;
1472 dw_mci_request_end(host, mrq);
1473 goto unlock;
Will Newtonf95f3852011-01-02 01:11:59 -05001474 }
Will Newtonf95f3852011-01-02 01:11:59 -05001475
Seungwon Jeon90c21432013-08-31 00:14:05 +09001476 /* stop command for open-ended transfer*/
Seungwon Jeone352c812013-08-31 00:14:17 +09001477 if (data->stop)
1478 send_stop_abort(host, data);
Doug Anderson2aa35462014-08-13 08:13:43 -07001479 } else {
1480 /*
1481 * If we don't have a command complete now we'll
1482 * never get one since we just reset everything;
1483 * better end the request.
1484 *
1485 * If we do have a command complete we'll fall
1486 * through to the SENDING_STOP command and
1487 * everything will be peachy keen.
1488 */
1489 if (!test_bit(EVENT_CMD_COMPLETE,
1490 &host->pending_events)) {
1491 host->cmd = NULL;
1492 dw_mci_request_end(host, mrq);
1493 goto unlock;
1494 }
Seungwon Jeon90c21432013-08-31 00:14:05 +09001495 }
Seungwon Jeone352c812013-08-31 00:14:17 +09001496
1497 /*
1498 * If err has non-zero,
1499 * stop-abort command has been already issued.
1500 */
1501 prev_state = state = STATE_SENDING_STOP;
1502
Will Newtonf95f3852011-01-02 01:11:59 -05001503 /* fall through */
1504
1505 case STATE_SENDING_STOP:
1506 if (!test_and_clear_bit(EVENT_CMD_COMPLETE,
1507 &host->pending_events))
1508 break;
1509
Seungwon Jeon71abb132013-08-31 00:13:59 +09001510 /* CMD error in data command */
Seungwon Jeon31bff452013-08-31 00:14:23 +09001511 if (mrq->cmd->error && mrq->data)
Sonny Rao3a33a942014-08-04 18:19:50 -07001512 dw_mci_reset(host);
Seungwon Jeon71abb132013-08-31 00:13:59 +09001513
Will Newtonf95f3852011-01-02 01:11:59 -05001514 host->cmd = NULL;
Seungwon Jeon71abb132013-08-31 00:13:59 +09001515 host->data = NULL;
Seungwon Jeon90c21432013-08-31 00:14:05 +09001516
Seungwon Jeone352c812013-08-31 00:14:17 +09001517 if (mrq->stop)
1518 dw_mci_command_complete(host, mrq->stop);
Seungwon Jeon90c21432013-08-31 00:14:05 +09001519 else
1520 host->cmd_status = 0;
1521
Seungwon Jeone352c812013-08-31 00:14:17 +09001522 dw_mci_request_end(host, mrq);
Will Newtonf95f3852011-01-02 01:11:59 -05001523 goto unlock;
1524
1525 case STATE_DATA_ERROR:
1526 if (!test_and_clear_bit(EVENT_XFER_COMPLETE,
1527 &host->pending_events))
1528 break;
1529
1530 state = STATE_DATA_BUSY;
1531 break;
1532 }
1533 } while (state != prev_state);
1534
1535 host->state = state;
1536unlock:
1537 spin_unlock(&host->lock);
1538
1539}
1540
James Hogan34b664a2011-06-24 13:57:56 +01001541/* push final bytes to part_buf, only use during push */
1542static void dw_mci_set_part_bytes(struct dw_mci *host, void *buf, int cnt)
1543{
1544 memcpy((void *)&host->part_buf, buf, cnt);
1545 host->part_buf_count = cnt;
1546}
1547
1548/* append bytes to part_buf, only use during push */
1549static int dw_mci_push_part_bytes(struct dw_mci *host, void *buf, int cnt)
1550{
1551 cnt = min(cnt, (1 << host->data_shift) - host->part_buf_count);
1552 memcpy((void *)&host->part_buf + host->part_buf_count, buf, cnt);
1553 host->part_buf_count += cnt;
1554 return cnt;
1555}
1556
1557/* pull first bytes from part_buf, only use during pull */
1558static int dw_mci_pull_part_bytes(struct dw_mci *host, void *buf, int cnt)
1559{
1560 cnt = min(cnt, (int)host->part_buf_count);
1561 if (cnt) {
1562 memcpy(buf, (void *)&host->part_buf + host->part_buf_start,
1563 cnt);
1564 host->part_buf_count -= cnt;
1565 host->part_buf_start += cnt;
1566 }
1567 return cnt;
1568}
1569
1570/* pull final bytes from the part_buf, assuming it's just been filled */
1571static void dw_mci_pull_final_bytes(struct dw_mci *host, void *buf, int cnt)
1572{
1573 memcpy(buf, &host->part_buf, cnt);
1574 host->part_buf_start = cnt;
1575 host->part_buf_count = (1 << host->data_shift) - cnt;
1576}
1577
Will Newtonf95f3852011-01-02 01:11:59 -05001578static void dw_mci_push_data16(struct dw_mci *host, void *buf, int cnt)
1579{
Markos Chandrascfbeb59c2013-03-12 10:53:13 +00001580 struct mmc_data *data = host->data;
1581 int init_cnt = cnt;
1582
James Hogan34b664a2011-06-24 13:57:56 +01001583 /* try and push anything in the part_buf */
1584 if (unlikely(host->part_buf_count)) {
1585 int len = dw_mci_push_part_bytes(host, buf, cnt);
1586 buf += len;
1587 cnt -= len;
Markos Chandrascfbeb59c2013-03-12 10:53:13 +00001588 if (host->part_buf_count == 2) {
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001589 mci_writew(host, DATA(host->data_offset),
1590 host->part_buf16);
James Hogan34b664a2011-06-24 13:57:56 +01001591 host->part_buf_count = 0;
1592 }
1593 }
1594#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
1595 if (unlikely((unsigned long)buf & 0x1)) {
1596 while (cnt >= 2) {
1597 u16 aligned_buf[64];
1598 int len = min(cnt & -2, (int)sizeof(aligned_buf));
1599 int items = len >> 1;
1600 int i;
1601 /* memcpy from input buffer into aligned buffer */
1602 memcpy(aligned_buf, buf, len);
1603 buf += len;
1604 cnt -= len;
1605 /* push data from aligned buffer into fifo */
1606 for (i = 0; i < items; ++i)
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001607 mci_writew(host, DATA(host->data_offset),
1608 aligned_buf[i]);
James Hogan34b664a2011-06-24 13:57:56 +01001609 }
1610 } else
1611#endif
1612 {
1613 u16 *pdata = buf;
1614 for (; cnt >= 2; cnt -= 2)
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001615 mci_writew(host, DATA(host->data_offset), *pdata++);
James Hogan34b664a2011-06-24 13:57:56 +01001616 buf = pdata;
1617 }
1618 /* put anything remaining in the part_buf */
1619 if (cnt) {
1620 dw_mci_set_part_bytes(host, buf, cnt);
Markos Chandrascfbeb59c2013-03-12 10:53:13 +00001621 /* Push data if we have reached the expected data length */
1622 if ((data->bytes_xfered + init_cnt) ==
1623 (data->blksz * data->blocks))
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001624 mci_writew(host, DATA(host->data_offset),
Markos Chandrascfbeb59c2013-03-12 10:53:13 +00001625 host->part_buf16);
Will Newtonf95f3852011-01-02 01:11:59 -05001626 }
1627}
1628
1629static void dw_mci_pull_data16(struct dw_mci *host, void *buf, int cnt)
1630{
James Hogan34b664a2011-06-24 13:57:56 +01001631#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
1632 if (unlikely((unsigned long)buf & 0x1)) {
1633 while (cnt >= 2) {
1634 /* pull data from fifo into aligned buffer */
1635 u16 aligned_buf[64];
1636 int len = min(cnt & -2, (int)sizeof(aligned_buf));
1637 int items = len >> 1;
1638 int i;
1639 for (i = 0; i < items; ++i)
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001640 aligned_buf[i] = mci_readw(host,
1641 DATA(host->data_offset));
James Hogan34b664a2011-06-24 13:57:56 +01001642 /* memcpy from aligned buffer into output buffer */
1643 memcpy(buf, aligned_buf, len);
1644 buf += len;
1645 cnt -= len;
1646 }
1647 } else
1648#endif
1649 {
1650 u16 *pdata = buf;
1651 for (; cnt >= 2; cnt -= 2)
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001652 *pdata++ = mci_readw(host, DATA(host->data_offset));
James Hogan34b664a2011-06-24 13:57:56 +01001653 buf = pdata;
1654 }
1655 if (cnt) {
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001656 host->part_buf16 = mci_readw(host, DATA(host->data_offset));
James Hogan34b664a2011-06-24 13:57:56 +01001657 dw_mci_pull_final_bytes(host, buf, cnt);
Will Newtonf95f3852011-01-02 01:11:59 -05001658 }
1659}
1660
1661static void dw_mci_push_data32(struct dw_mci *host, void *buf, int cnt)
1662{
Markos Chandrascfbeb59c2013-03-12 10:53:13 +00001663 struct mmc_data *data = host->data;
1664 int init_cnt = cnt;
1665
James Hogan34b664a2011-06-24 13:57:56 +01001666 /* try and push anything in the part_buf */
1667 if (unlikely(host->part_buf_count)) {
1668 int len = dw_mci_push_part_bytes(host, buf, cnt);
1669 buf += len;
1670 cnt -= len;
Markos Chandrascfbeb59c2013-03-12 10:53:13 +00001671 if (host->part_buf_count == 4) {
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001672 mci_writel(host, DATA(host->data_offset),
1673 host->part_buf32);
James Hogan34b664a2011-06-24 13:57:56 +01001674 host->part_buf_count = 0;
1675 }
1676 }
1677#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
1678 if (unlikely((unsigned long)buf & 0x3)) {
1679 while (cnt >= 4) {
1680 u32 aligned_buf[32];
1681 int len = min(cnt & -4, (int)sizeof(aligned_buf));
1682 int items = len >> 2;
1683 int i;
1684 /* memcpy from input buffer into aligned buffer */
1685 memcpy(aligned_buf, buf, len);
1686 buf += len;
1687 cnt -= len;
1688 /* push data from aligned buffer into fifo */
1689 for (i = 0; i < items; ++i)
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001690 mci_writel(host, DATA(host->data_offset),
1691 aligned_buf[i]);
James Hogan34b664a2011-06-24 13:57:56 +01001692 }
1693 } else
1694#endif
1695 {
1696 u32 *pdata = buf;
1697 for (; cnt >= 4; cnt -= 4)
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001698 mci_writel(host, DATA(host->data_offset), *pdata++);
James Hogan34b664a2011-06-24 13:57:56 +01001699 buf = pdata;
1700 }
1701 /* put anything remaining in the part_buf */
1702 if (cnt) {
1703 dw_mci_set_part_bytes(host, buf, cnt);
Markos Chandrascfbeb59c2013-03-12 10:53:13 +00001704 /* Push data if we have reached the expected data length */
1705 if ((data->bytes_xfered + init_cnt) ==
1706 (data->blksz * data->blocks))
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001707 mci_writel(host, DATA(host->data_offset),
Markos Chandrascfbeb59c2013-03-12 10:53:13 +00001708 host->part_buf32);
Will Newtonf95f3852011-01-02 01:11:59 -05001709 }
1710}
1711
1712static void dw_mci_pull_data32(struct dw_mci *host, void *buf, int cnt)
1713{
James Hogan34b664a2011-06-24 13:57:56 +01001714#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
1715 if (unlikely((unsigned long)buf & 0x3)) {
1716 while (cnt >= 4) {
1717 /* pull data from fifo into aligned buffer */
1718 u32 aligned_buf[32];
1719 int len = min(cnt & -4, (int)sizeof(aligned_buf));
1720 int items = len >> 2;
1721 int i;
1722 for (i = 0; i < items; ++i)
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001723 aligned_buf[i] = mci_readl(host,
1724 DATA(host->data_offset));
James Hogan34b664a2011-06-24 13:57:56 +01001725 /* memcpy from aligned buffer into output buffer */
1726 memcpy(buf, aligned_buf, len);
1727 buf += len;
1728 cnt -= len;
1729 }
1730 } else
1731#endif
1732 {
1733 u32 *pdata = buf;
1734 for (; cnt >= 4; cnt -= 4)
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001735 *pdata++ = mci_readl(host, DATA(host->data_offset));
James Hogan34b664a2011-06-24 13:57:56 +01001736 buf = pdata;
1737 }
1738 if (cnt) {
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001739 host->part_buf32 = mci_readl(host, DATA(host->data_offset));
James Hogan34b664a2011-06-24 13:57:56 +01001740 dw_mci_pull_final_bytes(host, buf, cnt);
Will Newtonf95f3852011-01-02 01:11:59 -05001741 }
1742}
1743
1744static void dw_mci_push_data64(struct dw_mci *host, void *buf, int cnt)
1745{
Markos Chandrascfbeb59c2013-03-12 10:53:13 +00001746 struct mmc_data *data = host->data;
1747 int init_cnt = cnt;
1748
James Hogan34b664a2011-06-24 13:57:56 +01001749 /* try and push anything in the part_buf */
1750 if (unlikely(host->part_buf_count)) {
1751 int len = dw_mci_push_part_bytes(host, buf, cnt);
1752 buf += len;
1753 cnt -= len;
Seungwon Jeonc09fbd72013-03-25 16:28:22 +09001754
Markos Chandrascfbeb59c2013-03-12 10:53:13 +00001755 if (host->part_buf_count == 8) {
Seungwon Jeonc09fbd72013-03-25 16:28:22 +09001756 mci_writeq(host, DATA(host->data_offset),
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001757 host->part_buf);
James Hogan34b664a2011-06-24 13:57:56 +01001758 host->part_buf_count = 0;
1759 }
1760 }
1761#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
1762 if (unlikely((unsigned long)buf & 0x7)) {
1763 while (cnt >= 8) {
1764 u64 aligned_buf[16];
1765 int len = min(cnt & -8, (int)sizeof(aligned_buf));
1766 int items = len >> 3;
1767 int i;
1768 /* memcpy from input buffer into aligned buffer */
1769 memcpy(aligned_buf, buf, len);
1770 buf += len;
1771 cnt -= len;
1772 /* push data from aligned buffer into fifo */
1773 for (i = 0; i < items; ++i)
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001774 mci_writeq(host, DATA(host->data_offset),
1775 aligned_buf[i]);
James Hogan34b664a2011-06-24 13:57:56 +01001776 }
1777 } else
1778#endif
1779 {
1780 u64 *pdata = buf;
1781 for (; cnt >= 8; cnt -= 8)
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001782 mci_writeq(host, DATA(host->data_offset), *pdata++);
James Hogan34b664a2011-06-24 13:57:56 +01001783 buf = pdata;
1784 }
1785 /* put anything remaining in the part_buf */
1786 if (cnt) {
1787 dw_mci_set_part_bytes(host, buf, cnt);
Markos Chandrascfbeb59c2013-03-12 10:53:13 +00001788 /* Push data if we have reached the expected data length */
1789 if ((data->bytes_xfered + init_cnt) ==
1790 (data->blksz * data->blocks))
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001791 mci_writeq(host, DATA(host->data_offset),
Markos Chandrascfbeb59c2013-03-12 10:53:13 +00001792 host->part_buf);
Will Newtonf95f3852011-01-02 01:11:59 -05001793 }
1794}
1795
1796static void dw_mci_pull_data64(struct dw_mci *host, void *buf, int cnt)
1797{
James Hogan34b664a2011-06-24 13:57:56 +01001798#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
1799 if (unlikely((unsigned long)buf & 0x7)) {
1800 while (cnt >= 8) {
1801 /* pull data from fifo into aligned buffer */
1802 u64 aligned_buf[16];
1803 int len = min(cnt & -8, (int)sizeof(aligned_buf));
1804 int items = len >> 3;
1805 int i;
1806 for (i = 0; i < items; ++i)
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001807 aligned_buf[i] = mci_readq(host,
1808 DATA(host->data_offset));
James Hogan34b664a2011-06-24 13:57:56 +01001809 /* memcpy from aligned buffer into output buffer */
1810 memcpy(buf, aligned_buf, len);
1811 buf += len;
1812 cnt -= len;
1813 }
1814 } else
1815#endif
1816 {
1817 u64 *pdata = buf;
1818 for (; cnt >= 8; cnt -= 8)
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001819 *pdata++ = mci_readq(host, DATA(host->data_offset));
James Hogan34b664a2011-06-24 13:57:56 +01001820 buf = pdata;
Will Newtonf95f3852011-01-02 01:11:59 -05001821 }
James Hogan34b664a2011-06-24 13:57:56 +01001822 if (cnt) {
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001823 host->part_buf = mci_readq(host, DATA(host->data_offset));
James Hogan34b664a2011-06-24 13:57:56 +01001824 dw_mci_pull_final_bytes(host, buf, cnt);
1825 }
1826}
1827
1828static void dw_mci_pull_data(struct dw_mci *host, void *buf, int cnt)
1829{
1830 int len;
1831
1832 /* get remaining partial bytes */
1833 len = dw_mci_pull_part_bytes(host, buf, cnt);
1834 if (unlikely(len == cnt))
1835 return;
1836 buf += len;
1837 cnt -= len;
1838
1839 /* get the rest of the data */
1840 host->pull_data(host, buf, cnt);
Will Newtonf95f3852011-01-02 01:11:59 -05001841}
1842
Kyoungil Kim87a74d32013-01-22 16:46:30 +09001843static void dw_mci_read_data_pio(struct dw_mci *host, bool dto)
Will Newtonf95f3852011-01-02 01:11:59 -05001844{
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09001845 struct sg_mapping_iter *sg_miter = &host->sg_miter;
1846 void *buf;
1847 unsigned int offset;
Will Newtonf95f3852011-01-02 01:11:59 -05001848 struct mmc_data *data = host->data;
1849 int shift = host->data_shift;
1850 u32 status;
Markos Chandras3e4b0d82013-03-22 12:50:05 -04001851 unsigned int len;
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09001852 unsigned int remain, fcnt;
Will Newtonf95f3852011-01-02 01:11:59 -05001853
1854 do {
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09001855 if (!sg_miter_next(sg_miter))
1856 goto done;
Will Newtonf95f3852011-01-02 01:11:59 -05001857
Imre Deak4225fc82013-02-27 17:02:57 -08001858 host->sg = sg_miter->piter.sg;
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09001859 buf = sg_miter->addr;
1860 remain = sg_miter->length;
1861 offset = 0;
1862
1863 do {
1864 fcnt = (SDMMC_GET_FCNT(mci_readl(host, STATUS))
1865 << shift) + host->part_buf_count;
1866 len = min(remain, fcnt);
1867 if (!len)
1868 break;
1869 dw_mci_pull_data(host, (void *)(buf + offset), len);
Markos Chandras3e4b0d82013-03-22 12:50:05 -04001870 data->bytes_xfered += len;
Will Newtonf95f3852011-01-02 01:11:59 -05001871 offset += len;
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09001872 remain -= len;
1873 } while (remain);
Will Newtonf95f3852011-01-02 01:11:59 -05001874
Seungwon Jeone74f3a92012-08-01 09:30:46 +09001875 sg_miter->consumed = offset;
Will Newtonf95f3852011-01-02 01:11:59 -05001876 status = mci_readl(host, MINTSTS);
1877 mci_writel(host, RINTSTS, SDMMC_INT_RXDR);
Kyoungil Kim87a74d32013-01-22 16:46:30 +09001878 /* if the RXDR is ready read again */
1879 } while ((status & SDMMC_INT_RXDR) ||
1880 (dto && SDMMC_GET_FCNT(mci_readl(host, STATUS))));
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09001881
1882 if (!remain) {
1883 if (!sg_miter_next(sg_miter))
1884 goto done;
1885 sg_miter->consumed = 0;
1886 }
1887 sg_miter_stop(sg_miter);
Will Newtonf95f3852011-01-02 01:11:59 -05001888 return;
1889
1890done:
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09001891 sg_miter_stop(sg_miter);
1892 host->sg = NULL;
Will Newtonf95f3852011-01-02 01:11:59 -05001893 smp_wmb();
1894 set_bit(EVENT_XFER_COMPLETE, &host->pending_events);
1895}
1896
1897static void dw_mci_write_data_pio(struct dw_mci *host)
1898{
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09001899 struct sg_mapping_iter *sg_miter = &host->sg_miter;
1900 void *buf;
1901 unsigned int offset;
Will Newtonf95f3852011-01-02 01:11:59 -05001902 struct mmc_data *data = host->data;
1903 int shift = host->data_shift;
1904 u32 status;
Markos Chandras3e4b0d82013-03-22 12:50:05 -04001905 unsigned int len;
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09001906 unsigned int fifo_depth = host->fifo_depth;
1907 unsigned int remain, fcnt;
Will Newtonf95f3852011-01-02 01:11:59 -05001908
1909 do {
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09001910 if (!sg_miter_next(sg_miter))
1911 goto done;
Will Newtonf95f3852011-01-02 01:11:59 -05001912
Imre Deak4225fc82013-02-27 17:02:57 -08001913 host->sg = sg_miter->piter.sg;
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09001914 buf = sg_miter->addr;
1915 remain = sg_miter->length;
1916 offset = 0;
1917
1918 do {
1919 fcnt = ((fifo_depth -
1920 SDMMC_GET_FCNT(mci_readl(host, STATUS)))
1921 << shift) - host->part_buf_count;
1922 len = min(remain, fcnt);
1923 if (!len)
1924 break;
1925 host->push_data(host, (void *)(buf + offset), len);
Markos Chandras3e4b0d82013-03-22 12:50:05 -04001926 data->bytes_xfered += len;
Will Newtonf95f3852011-01-02 01:11:59 -05001927 offset += len;
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09001928 remain -= len;
1929 } while (remain);
Will Newtonf95f3852011-01-02 01:11:59 -05001930
Seungwon Jeone74f3a92012-08-01 09:30:46 +09001931 sg_miter->consumed = offset;
Will Newtonf95f3852011-01-02 01:11:59 -05001932 status = mci_readl(host, MINTSTS);
1933 mci_writel(host, RINTSTS, SDMMC_INT_TXDR);
Will Newtonf95f3852011-01-02 01:11:59 -05001934 } while (status & SDMMC_INT_TXDR); /* if TXDR write again */
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09001935
1936 if (!remain) {
1937 if (!sg_miter_next(sg_miter))
1938 goto done;
1939 sg_miter->consumed = 0;
1940 }
1941 sg_miter_stop(sg_miter);
Will Newtonf95f3852011-01-02 01:11:59 -05001942 return;
1943
1944done:
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09001945 sg_miter_stop(sg_miter);
1946 host->sg = NULL;
Will Newtonf95f3852011-01-02 01:11:59 -05001947 smp_wmb();
1948 set_bit(EVENT_XFER_COMPLETE, &host->pending_events);
1949}
1950
1951static void dw_mci_cmd_interrupt(struct dw_mci *host, u32 status)
1952{
1953 if (!host->cmd_status)
1954 host->cmd_status = status;
1955
1956 smp_wmb();
1957
1958 set_bit(EVENT_CMD_COMPLETE, &host->pending_events);
1959 tasklet_schedule(&host->tasklet);
1960}
1961
1962static irqreturn_t dw_mci_interrupt(int irq, void *dev_id)
1963{
1964 struct dw_mci *host = dev_id;
Seungwon Jeon182c9082012-08-01 09:30:30 +09001965 u32 pending;
Shashidhar Hiremath1a5c8e12011-08-29 13:11:46 +05301966 int i;
Will Newtonf95f3852011-01-02 01:11:59 -05001967
Markos Chandras1fb5f682013-03-12 10:53:11 +00001968 pending = mci_readl(host, MINTSTS); /* read-only mask reg */
1969
Doug Anderson476d79f2013-07-09 13:04:40 -07001970 /*
1971 * DTO fix - version 2.10a and below, and only if internal DMA
1972 * is configured.
1973 */
1974 if (host->quirks & DW_MCI_QUIRK_IDMAC_DTO) {
1975 if (!pending &&
1976 ((mci_readl(host, STATUS) >> 17) & 0x1fff))
1977 pending |= SDMMC_INT_DATA_OVER;
1978 }
1979
Markos Chandras1fb5f682013-03-12 10:53:11 +00001980 if (pending) {
Doug Anderson01730552014-08-22 19:17:51 +05301981 /* Check volt switch first, since it can look like an error */
1982 if ((host->state == STATE_SENDING_CMD11) &&
1983 (pending & SDMMC_INT_VOLT_SWITCH)) {
1984 mci_writel(host, RINTSTS, SDMMC_INT_VOLT_SWITCH);
1985 pending &= ~SDMMC_INT_VOLT_SWITCH;
1986 dw_mci_cmd_interrupt(host, pending);
1987 }
1988
Will Newtonf95f3852011-01-02 01:11:59 -05001989 if (pending & DW_MCI_CMD_ERROR_FLAGS) {
1990 mci_writel(host, RINTSTS, DW_MCI_CMD_ERROR_FLAGS);
Seungwon Jeon182c9082012-08-01 09:30:30 +09001991 host->cmd_status = pending;
Will Newtonf95f3852011-01-02 01:11:59 -05001992 smp_wmb();
1993 set_bit(EVENT_CMD_COMPLETE, &host->pending_events);
Will Newtonf95f3852011-01-02 01:11:59 -05001994 }
1995
1996 if (pending & DW_MCI_DATA_ERROR_FLAGS) {
1997 /* if there is an error report DATA_ERROR */
1998 mci_writel(host, RINTSTS, DW_MCI_DATA_ERROR_FLAGS);
Seungwon Jeon182c9082012-08-01 09:30:30 +09001999 host->data_status = pending;
Will Newtonf95f3852011-01-02 01:11:59 -05002000 smp_wmb();
2001 set_bit(EVENT_DATA_ERROR, &host->pending_events);
Seungwon Jeon9b2026a2012-08-01 09:30:40 +09002002 tasklet_schedule(&host->tasklet);
Will Newtonf95f3852011-01-02 01:11:59 -05002003 }
2004
2005 if (pending & SDMMC_INT_DATA_OVER) {
2006 mci_writel(host, RINTSTS, SDMMC_INT_DATA_OVER);
2007 if (!host->data_status)
Seungwon Jeon182c9082012-08-01 09:30:30 +09002008 host->data_status = pending;
Will Newtonf95f3852011-01-02 01:11:59 -05002009 smp_wmb();
2010 if (host->dir_status == DW_MCI_RECV_STATUS) {
2011 if (host->sg != NULL)
Kyoungil Kim87a74d32013-01-22 16:46:30 +09002012 dw_mci_read_data_pio(host, true);
Will Newtonf95f3852011-01-02 01:11:59 -05002013 }
2014 set_bit(EVENT_DATA_COMPLETE, &host->pending_events);
2015 tasklet_schedule(&host->tasklet);
2016 }
2017
2018 if (pending & SDMMC_INT_RXDR) {
2019 mci_writel(host, RINTSTS, SDMMC_INT_RXDR);
James Hoganb40af3a2011-06-24 13:54:06 +01002020 if (host->dir_status == DW_MCI_RECV_STATUS && host->sg)
Kyoungil Kim87a74d32013-01-22 16:46:30 +09002021 dw_mci_read_data_pio(host, false);
Will Newtonf95f3852011-01-02 01:11:59 -05002022 }
2023
2024 if (pending & SDMMC_INT_TXDR) {
2025 mci_writel(host, RINTSTS, SDMMC_INT_TXDR);
James Hoganb40af3a2011-06-24 13:54:06 +01002026 if (host->dir_status == DW_MCI_SEND_STATUS && host->sg)
Will Newtonf95f3852011-01-02 01:11:59 -05002027 dw_mci_write_data_pio(host);
2028 }
2029
2030 if (pending & SDMMC_INT_CMD_DONE) {
2031 mci_writel(host, RINTSTS, SDMMC_INT_CMD_DONE);
Seungwon Jeon182c9082012-08-01 09:30:30 +09002032 dw_mci_cmd_interrupt(host, pending);
Will Newtonf95f3852011-01-02 01:11:59 -05002033 }
2034
2035 if (pending & SDMMC_INT_CD) {
2036 mci_writel(host, RINTSTS, SDMMC_INT_CD);
Thomas Abraham95dcc2c2012-05-01 14:57:36 -07002037 queue_work(host->card_workqueue, &host->card_work);
Will Newtonf95f3852011-01-02 01:11:59 -05002038 }
2039
Shashidhar Hiremath1a5c8e12011-08-29 13:11:46 +05302040 /* Handle SDIO Interrupts */
2041 for (i = 0; i < host->num_slots; i++) {
2042 struct dw_mci_slot *slot = host->slot[i];
2043 if (pending & SDMMC_INT_SDIO(i)) {
2044 mci_writel(host, RINTSTS, SDMMC_INT_SDIO(i));
2045 mmc_signal_sdio_irq(slot->mmc);
2046 }
2047 }
2048
Markos Chandras1fb5f682013-03-12 10:53:11 +00002049 }
Will Newtonf95f3852011-01-02 01:11:59 -05002050
2051#ifdef CONFIG_MMC_DW_IDMAC
2052 /* Handle DMA interrupts */
2053 pending = mci_readl(host, IDSTS);
2054 if (pending & (SDMMC_IDMAC_INT_TI | SDMMC_IDMAC_INT_RI)) {
2055 mci_writel(host, IDSTS, SDMMC_IDMAC_INT_TI | SDMMC_IDMAC_INT_RI);
2056 mci_writel(host, IDSTS, SDMMC_IDMAC_INT_NI);
Will Newtonf95f3852011-01-02 01:11:59 -05002057 host->dma_ops->complete(host);
2058 }
2059#endif
2060
2061 return IRQ_HANDLED;
2062}
2063
James Hogan1791b13e2011-06-24 13:55:55 +01002064static void dw_mci_work_routine_card(struct work_struct *work)
Will Newtonf95f3852011-01-02 01:11:59 -05002065{
James Hogan1791b13e2011-06-24 13:55:55 +01002066 struct dw_mci *host = container_of(work, struct dw_mci, card_work);
Will Newtonf95f3852011-01-02 01:11:59 -05002067 int i;
2068
2069 for (i = 0; i < host->num_slots; i++) {
2070 struct dw_mci_slot *slot = host->slot[i];
2071 struct mmc_host *mmc = slot->mmc;
2072 struct mmc_request *mrq;
2073 int present;
Will Newtonf95f3852011-01-02 01:11:59 -05002074
2075 present = dw_mci_get_cd(mmc);
2076 while (present != slot->last_detect_state) {
Will Newtonf95f3852011-01-02 01:11:59 -05002077 dev_dbg(&slot->mmc->class_dev, "card %s\n",
2078 present ? "inserted" : "removed");
2079
James Hogan1791b13e2011-06-24 13:55:55 +01002080 spin_lock_bh(&host->lock);
2081
Will Newtonf95f3852011-01-02 01:11:59 -05002082 /* Card change detected */
2083 slot->last_detect_state = present;
2084
Will Newtonf95f3852011-01-02 01:11:59 -05002085 /* Clean up queue if present */
2086 mrq = slot->mrq;
2087 if (mrq) {
2088 if (mrq == host->mrq) {
2089 host->data = NULL;
2090 host->cmd = NULL;
2091
2092 switch (host->state) {
2093 case STATE_IDLE:
Doug Anderson01730552014-08-22 19:17:51 +05302094 case STATE_WAITING_CMD11_DONE:
Will Newtonf95f3852011-01-02 01:11:59 -05002095 break;
Doug Anderson01730552014-08-22 19:17:51 +05302096 case STATE_SENDING_CMD11:
Will Newtonf95f3852011-01-02 01:11:59 -05002097 case STATE_SENDING_CMD:
2098 mrq->cmd->error = -ENOMEDIUM;
2099 if (!mrq->data)
2100 break;
2101 /* fall through */
2102 case STATE_SENDING_DATA:
2103 mrq->data->error = -ENOMEDIUM;
2104 dw_mci_stop_dma(host);
2105 break;
2106 case STATE_DATA_BUSY:
2107 case STATE_DATA_ERROR:
2108 if (mrq->data->error == -EINPROGRESS)
2109 mrq->data->error = -ENOMEDIUM;
Will Newtonf95f3852011-01-02 01:11:59 -05002110 /* fall through */
2111 case STATE_SENDING_STOP:
Seungwon Jeon90c21432013-08-31 00:14:05 +09002112 if (mrq->stop)
2113 mrq->stop->error = -ENOMEDIUM;
Will Newtonf95f3852011-01-02 01:11:59 -05002114 break;
2115 }
2116
2117 dw_mci_request_end(host, mrq);
2118 } else {
2119 list_del(&slot->queue_node);
2120 mrq->cmd->error = -ENOMEDIUM;
2121 if (mrq->data)
2122 mrq->data->error = -ENOMEDIUM;
2123 if (mrq->stop)
2124 mrq->stop->error = -ENOMEDIUM;
2125
2126 spin_unlock(&host->lock);
2127 mmc_request_done(slot->mmc, mrq);
2128 spin_lock(&host->lock);
2129 }
2130 }
2131
2132 /* Power down slot */
Sonny Rao3a33a942014-08-04 18:19:50 -07002133 if (present == 0)
2134 dw_mci_reset(host);
Will Newtonf95f3852011-01-02 01:11:59 -05002135
James Hogan1791b13e2011-06-24 13:55:55 +01002136 spin_unlock_bh(&host->lock);
2137
Will Newtonf95f3852011-01-02 01:11:59 -05002138 present = dw_mci_get_cd(mmc);
2139 }
2140
2141 mmc_detect_change(slot->mmc,
2142 msecs_to_jiffies(host->pdata->detect_delay_ms));
2143 }
2144}
2145
Thomas Abrahamc91eab42012-09-17 18:16:40 +00002146#ifdef CONFIG_OF
2147/* given a slot id, find out the device node representing that slot */
2148static struct device_node *dw_mci_of_find_slot_node(struct device *dev, u8 slot)
2149{
2150 struct device_node *np;
2151 const __be32 *addr;
2152 int len;
2153
2154 if (!dev || !dev->of_node)
2155 return NULL;
2156
2157 for_each_child_of_node(dev->of_node, np) {
2158 addr = of_get_property(np, "reg", &len);
2159 if (!addr || (len < sizeof(int)))
2160 continue;
2161 if (be32_to_cpup(addr) == slot)
2162 return np;
2163 }
2164 return NULL;
2165}
2166
Doug Andersona70aaa62013-01-11 17:03:50 +00002167static struct dw_mci_of_slot_quirks {
2168 char *quirk;
2169 int id;
2170} of_slot_quirks[] = {
2171 {
2172 .quirk = "disable-wp",
2173 .id = DW_MCI_SLOT_QUIRK_NO_WRITE_PROTECT,
2174 },
2175};
2176
2177static int dw_mci_of_get_slot_quirks(struct device *dev, u8 slot)
2178{
2179 struct device_node *np = dw_mci_of_find_slot_node(dev, slot);
2180 int quirks = 0;
2181 int idx;
2182
2183 /* get quirks */
2184 for (idx = 0; idx < ARRAY_SIZE(of_slot_quirks); idx++)
Jaehoon Chung26375b52014-08-07 16:37:58 +09002185 if (of_get_property(np, of_slot_quirks[idx].quirk, NULL)) {
2186 dev_warn(dev, "Slot quirk %s is deprecated\n",
2187 of_slot_quirks[idx].quirk);
Doug Andersona70aaa62013-01-11 17:03:50 +00002188 quirks |= of_slot_quirks[idx].id;
Jaehoon Chung26375b52014-08-07 16:37:58 +09002189 }
Doug Andersona70aaa62013-01-11 17:03:50 +00002190
2191 return quirks;
2192}
Thomas Abrahamc91eab42012-09-17 18:16:40 +00002193#else /* CONFIG_OF */
Doug Andersona70aaa62013-01-11 17:03:50 +00002194static int dw_mci_of_get_slot_quirks(struct device *dev, u8 slot)
2195{
2196 return 0;
2197}
Thomas Abrahamc91eab42012-09-17 18:16:40 +00002198#endif /* CONFIG_OF */
2199
Jaehoon Chung36c179a2012-08-23 20:31:48 +09002200static int dw_mci_init_slot(struct dw_mci *host, unsigned int id)
Will Newtonf95f3852011-01-02 01:11:59 -05002201{
2202 struct mmc_host *mmc;
2203 struct dw_mci_slot *slot;
Arnd Bergmanne95baf12012-11-08 14:26:11 +00002204 const struct dw_mci_drv_data *drv_data = host->drv_data;
Thomas Abraham800d78b2012-09-17 18:16:42 +00002205 int ctrl_id, ret;
Seungwon Jeon1f44a2a2013-08-31 00:13:31 +09002206 u32 freq[2];
Will Newtonf95f3852011-01-02 01:11:59 -05002207
Thomas Abraham4a909202012-09-17 18:16:35 +00002208 mmc = mmc_alloc_host(sizeof(struct dw_mci_slot), host->dev);
Will Newtonf95f3852011-01-02 01:11:59 -05002209 if (!mmc)
2210 return -ENOMEM;
2211
2212 slot = mmc_priv(mmc);
2213 slot->id = id;
2214 slot->mmc = mmc;
2215 slot->host = host;
Thomas Abrahamc91eab42012-09-17 18:16:40 +00002216 host->slot[id] = slot;
Will Newtonf95f3852011-01-02 01:11:59 -05002217
Doug Andersona70aaa62013-01-11 17:03:50 +00002218 slot->quirks = dw_mci_of_get_slot_quirks(host->dev, slot->id);
2219
Will Newtonf95f3852011-01-02 01:11:59 -05002220 mmc->ops = &dw_mci_ops;
Seungwon Jeon1f44a2a2013-08-31 00:13:31 +09002221 if (of_property_read_u32_array(host->dev->of_node,
2222 "clock-freq-min-max", freq, 2)) {
2223 mmc->f_min = DW_MCI_FREQ_MIN;
2224 mmc->f_max = DW_MCI_FREQ_MAX;
2225 } else {
2226 mmc->f_min = freq[0];
2227 mmc->f_max = freq[1];
2228 }
Will Newtonf95f3852011-01-02 01:11:59 -05002229
Yuvaraj CD51da2242014-08-22 19:17:50 +05302230 /*if there are external regulators, get them*/
2231 ret = mmc_regulator_get_supply(mmc);
2232 if (ret == -EPROBE_DEFER)
Doug Anderson3cf890f2014-08-25 11:19:04 -07002233 goto err_host_allocated;
Yuvaraj CD51da2242014-08-22 19:17:50 +05302234
2235 if (!mmc->ocr_avail)
2236 mmc->ocr_avail = MMC_VDD_32_33 | MMC_VDD_33_34;
Will Newtonf95f3852011-01-02 01:11:59 -05002237
Jaehoon Chungfc3d7722011-02-25 11:08:15 +09002238 if (host->pdata->caps)
2239 mmc->caps = host->pdata->caps;
Jaehoon Chungfc3d7722011-02-25 11:08:15 +09002240
Abhilash Kesavanab269122012-11-19 10:26:21 +05302241 if (host->pdata->pm_caps)
2242 mmc->pm_caps = host->pdata->pm_caps;
2243
Thomas Abraham800d78b2012-09-17 18:16:42 +00002244 if (host->dev->of_node) {
2245 ctrl_id = of_alias_get_id(host->dev->of_node, "mshc");
2246 if (ctrl_id < 0)
2247 ctrl_id = 0;
2248 } else {
2249 ctrl_id = to_platform_device(host->dev)->id;
2250 }
James Hogancb27a842012-10-16 09:43:08 +01002251 if (drv_data && drv_data->caps)
2252 mmc->caps |= drv_data->caps[ctrl_id];
Thomas Abraham800d78b2012-09-17 18:16:42 +00002253
Seungwon Jeon4f408cc2011-12-09 14:55:52 +09002254 if (host->pdata->caps2)
2255 mmc->caps2 = host->pdata->caps2;
Seungwon Jeon4f408cc2011-12-09 14:55:52 +09002256
Doug Anderson3cf890f2014-08-25 11:19:04 -07002257 ret = mmc_of_parse(mmc);
2258 if (ret)
2259 goto err_host_allocated;
Will Newtonf95f3852011-01-02 01:11:59 -05002260
Will Newtonf95f3852011-01-02 01:11:59 -05002261 if (host->pdata->blk_settings) {
2262 mmc->max_segs = host->pdata->blk_settings->max_segs;
2263 mmc->max_blk_size = host->pdata->blk_settings->max_blk_size;
2264 mmc->max_blk_count = host->pdata->blk_settings->max_blk_count;
2265 mmc->max_req_size = host->pdata->blk_settings->max_req_size;
2266 mmc->max_seg_size = host->pdata->blk_settings->max_seg_size;
2267 } else {
2268 /* Useful defaults if platform data is unset. */
Jaehoon Chunga39e5742012-02-04 17:00:27 -05002269#ifdef CONFIG_MMC_DW_IDMAC
2270 mmc->max_segs = host->ring_size;
2271 mmc->max_blk_size = 65536;
2272 mmc->max_blk_count = host->ring_size;
2273 mmc->max_seg_size = 0x1000;
2274 mmc->max_req_size = mmc->max_seg_size * mmc->max_blk_count;
2275#else
Will Newtonf95f3852011-01-02 01:11:59 -05002276 mmc->max_segs = 64;
2277 mmc->max_blk_size = 65536; /* BLKSIZ is 16 bits */
2278 mmc->max_blk_count = 512;
2279 mmc->max_req_size = mmc->max_blk_size * mmc->max_blk_count;
2280 mmc->max_seg_size = mmc->max_req_size;
Will Newtonf95f3852011-01-02 01:11:59 -05002281#endif /* CONFIG_MMC_DW_IDMAC */
Jaehoon Chunga39e5742012-02-04 17:00:27 -05002282 }
Will Newtonf95f3852011-01-02 01:11:59 -05002283
Jaehoon Chungae0eb342014-03-03 11:36:48 +09002284 if (dw_mci_get_cd(mmc))
2285 set_bit(DW_MMC_CARD_PRESENT, &slot->flags);
2286 else
2287 clear_bit(DW_MMC_CARD_PRESENT, &slot->flags);
2288
Jaehoon Chung0cea5292013-02-15 23:45:45 +09002289 ret = mmc_add_host(mmc);
2290 if (ret)
Doug Anderson3cf890f2014-08-25 11:19:04 -07002291 goto err_host_allocated;
Will Newtonf95f3852011-01-02 01:11:59 -05002292
2293#if defined(CONFIG_DEBUG_FS)
2294 dw_mci_init_debugfs(slot);
2295#endif
2296
2297 /* Card initially undetected */
2298 slot->last_detect_state = 0;
2299
Will Newtonf95f3852011-01-02 01:11:59 -05002300 return 0;
Thomas Abraham800d78b2012-09-17 18:16:42 +00002301
Doug Anderson3cf890f2014-08-25 11:19:04 -07002302err_host_allocated:
Thomas Abraham800d78b2012-09-17 18:16:42 +00002303 mmc_free_host(mmc);
Yuvaraj CD51da2242014-08-22 19:17:50 +05302304 return ret;
Will Newtonf95f3852011-01-02 01:11:59 -05002305}
2306
2307static void dw_mci_cleanup_slot(struct dw_mci_slot *slot, unsigned int id)
2308{
Will Newtonf95f3852011-01-02 01:11:59 -05002309 /* Debugfs stuff is cleaned up by mmc core */
2310 mmc_remove_host(slot->mmc);
2311 slot->host->slot[id] = NULL;
2312 mmc_free_host(slot->mmc);
2313}
2314
2315static void dw_mci_init_dma(struct dw_mci *host)
2316{
2317 /* Alloc memory for sg translation */
Seungwon Jeon780f22a2012-11-28 19:26:03 +09002318 host->sg_cpu = dmam_alloc_coherent(host->dev, PAGE_SIZE,
Will Newtonf95f3852011-01-02 01:11:59 -05002319 &host->sg_dma, GFP_KERNEL);
2320 if (!host->sg_cpu) {
Thomas Abraham4a909202012-09-17 18:16:35 +00002321 dev_err(host->dev, "%s: could not alloc DMA memory\n",
Will Newtonf95f3852011-01-02 01:11:59 -05002322 __func__);
2323 goto no_dma;
2324 }
2325
2326 /* Determine which DMA interface to use */
2327#ifdef CONFIG_MMC_DW_IDMAC
2328 host->dma_ops = &dw_mci_idmac_ops;
Seungwon Jeon00956ea2012-09-28 19:13:11 +09002329 dev_info(host->dev, "Using internal DMA controller.\n");
Will Newtonf95f3852011-01-02 01:11:59 -05002330#endif
2331
2332 if (!host->dma_ops)
2333 goto no_dma;
2334
Jaehoon Chunge1631f92012-04-18 15:42:31 +09002335 if (host->dma_ops->init && host->dma_ops->start &&
2336 host->dma_ops->stop && host->dma_ops->cleanup) {
Will Newtonf95f3852011-01-02 01:11:59 -05002337 if (host->dma_ops->init(host)) {
Thomas Abraham4a909202012-09-17 18:16:35 +00002338 dev_err(host->dev, "%s: Unable to initialize "
Will Newtonf95f3852011-01-02 01:11:59 -05002339 "DMA Controller.\n", __func__);
2340 goto no_dma;
2341 }
2342 } else {
Thomas Abraham4a909202012-09-17 18:16:35 +00002343 dev_err(host->dev, "DMA initialization not found.\n");
Will Newtonf95f3852011-01-02 01:11:59 -05002344 goto no_dma;
2345 }
2346
2347 host->use_dma = 1;
2348 return;
2349
2350no_dma:
Thomas Abraham4a909202012-09-17 18:16:35 +00002351 dev_info(host->dev, "Using PIO mode.\n");
Will Newtonf95f3852011-01-02 01:11:59 -05002352 host->use_dma = 0;
2353 return;
2354}
2355
Seungwon Jeon31bff452013-08-31 00:14:23 +09002356static bool dw_mci_ctrl_reset(struct dw_mci *host, u32 reset)
Will Newtonf95f3852011-01-02 01:11:59 -05002357{
2358 unsigned long timeout = jiffies + msecs_to_jiffies(500);
Seungwon Jeon31bff452013-08-31 00:14:23 +09002359 u32 ctrl;
Will Newtonf95f3852011-01-02 01:11:59 -05002360
Seungwon Jeon31bff452013-08-31 00:14:23 +09002361 ctrl = mci_readl(host, CTRL);
2362 ctrl |= reset;
2363 mci_writel(host, CTRL, ctrl);
Will Newtonf95f3852011-01-02 01:11:59 -05002364
2365 /* wait till resets clear */
2366 do {
2367 ctrl = mci_readl(host, CTRL);
Seungwon Jeon31bff452013-08-31 00:14:23 +09002368 if (!(ctrl & reset))
Will Newtonf95f3852011-01-02 01:11:59 -05002369 return true;
2370 } while (time_before(jiffies, timeout));
2371
Seungwon Jeon31bff452013-08-31 00:14:23 +09002372 dev_err(host->dev,
2373 "Timeout resetting block (ctrl reset %#x)\n",
2374 ctrl & reset);
Will Newtonf95f3852011-01-02 01:11:59 -05002375
2376 return false;
2377}
2378
Sonny Rao3a33a942014-08-04 18:19:50 -07002379static bool dw_mci_reset(struct dw_mci *host)
Seungwon Jeon31bff452013-08-31 00:14:23 +09002380{
Sonny Rao3a33a942014-08-04 18:19:50 -07002381 u32 flags = SDMMC_CTRL_RESET | SDMMC_CTRL_FIFO_RESET;
2382 bool ret = false;
2383
Seungwon Jeon31bff452013-08-31 00:14:23 +09002384 /*
2385 * Reseting generates a block interrupt, hence setting
2386 * the scatter-gather pointer to NULL.
2387 */
2388 if (host->sg) {
2389 sg_miter_stop(&host->sg_miter);
2390 host->sg = NULL;
2391 }
2392
Sonny Rao3a33a942014-08-04 18:19:50 -07002393 if (host->use_dma)
2394 flags |= SDMMC_CTRL_DMA_RESET;
Seungwon Jeon31bff452013-08-31 00:14:23 +09002395
Sonny Rao3a33a942014-08-04 18:19:50 -07002396 if (dw_mci_ctrl_reset(host, flags)) {
2397 /*
2398 * In all cases we clear the RAWINTS register to clear any
2399 * interrupts.
2400 */
2401 mci_writel(host, RINTSTS, 0xFFFFFFFF);
2402
2403 /* if using dma we wait for dma_req to clear */
2404 if (host->use_dma) {
2405 unsigned long timeout = jiffies + msecs_to_jiffies(500);
2406 u32 status;
2407 do {
2408 status = mci_readl(host, STATUS);
2409 if (!(status & SDMMC_STATUS_DMA_REQ))
2410 break;
2411 cpu_relax();
2412 } while (time_before(jiffies, timeout));
2413
2414 if (status & SDMMC_STATUS_DMA_REQ) {
2415 dev_err(host->dev,
2416 "%s: Timeout waiting for dma_req to "
2417 "clear during reset\n", __func__);
2418 goto ciu_out;
2419 }
2420
2421 /* when using DMA next we reset the fifo again */
2422 if (!dw_mci_ctrl_reset(host, SDMMC_CTRL_FIFO_RESET))
2423 goto ciu_out;
2424 }
2425 } else {
2426 /* if the controller reset bit did clear, then set clock regs */
2427 if (!(mci_readl(host, CTRL) & SDMMC_CTRL_RESET)) {
2428 dev_err(host->dev, "%s: fifo/dma reset bits didn't "
2429 "clear but ciu was reset, doing clock update\n",
2430 __func__);
2431 goto ciu_out;
2432 }
2433 }
2434
2435#if IS_ENABLED(CONFIG_MMC_DW_IDMAC)
2436 /* It is also recommended that we reset and reprogram idmac */
2437 dw_mci_idmac_reset(host);
2438#endif
2439
2440 ret = true;
2441
2442ciu_out:
2443 /* After a CTRL reset we need to have CIU set clock registers */
2444 mci_send_cmd(host->cur_slot, SDMMC_CMD_UPD_CLK, 0);
2445
2446 return ret;
Seungwon Jeon31bff452013-08-31 00:14:23 +09002447}
2448
Thomas Abrahamc91eab42012-09-17 18:16:40 +00002449#ifdef CONFIG_OF
2450static struct dw_mci_of_quirks {
2451 char *quirk;
2452 int id;
2453} of_quirks[] = {
2454 {
Thomas Abrahamc91eab42012-09-17 18:16:40 +00002455 .quirk = "broken-cd",
2456 .id = DW_MCI_QUIRK_BROKEN_CARD_DETECTION,
Jaehoon Chung26375b52014-08-07 16:37:58 +09002457 }, {
2458 .quirk = "disable-wp",
2459 .id = DW_MCI_QUIRK_NO_WRITE_PROTECT,
Thomas Abrahamc91eab42012-09-17 18:16:40 +00002460 },
2461};
2462
2463static struct dw_mci_board *dw_mci_parse_dt(struct dw_mci *host)
2464{
2465 struct dw_mci_board *pdata;
2466 struct device *dev = host->dev;
2467 struct device_node *np = dev->of_node;
Arnd Bergmanne95baf12012-11-08 14:26:11 +00002468 const struct dw_mci_drv_data *drv_data = host->drv_data;
Thomas Abraham800d78b2012-09-17 18:16:42 +00002469 int idx, ret;
Doug Anderson3c6d89e2013-06-07 10:28:30 -07002470 u32 clock_frequency;
Thomas Abrahamc91eab42012-09-17 18:16:40 +00002471
2472 pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL);
2473 if (!pdata) {
2474 dev_err(dev, "could not allocate memory for pdata\n");
2475 return ERR_PTR(-ENOMEM);
2476 }
2477
2478 /* find out number of slots supported */
2479 if (of_property_read_u32(dev->of_node, "num-slots",
2480 &pdata->num_slots)) {
2481 dev_info(dev, "num-slots property not found, "
2482 "assuming 1 slot is available\n");
2483 pdata->num_slots = 1;
2484 }
2485
2486 /* get quirks */
2487 for (idx = 0; idx < ARRAY_SIZE(of_quirks); idx++)
2488 if (of_get_property(np, of_quirks[idx].quirk, NULL))
2489 pdata->quirks |= of_quirks[idx].id;
2490
2491 if (of_property_read_u32(np, "fifo-depth", &pdata->fifo_depth))
2492 dev_info(dev, "fifo-depth property not found, using "
2493 "value of FIFOTH register as default\n");
2494
2495 of_property_read_u32(np, "card-detect-delay", &pdata->detect_delay_ms);
2496
Doug Anderson3c6d89e2013-06-07 10:28:30 -07002497 if (!of_property_read_u32(np, "clock-frequency", &clock_frequency))
2498 pdata->bus_hz = clock_frequency;
2499
James Hogancb27a842012-10-16 09:43:08 +01002500 if (drv_data && drv_data->parse_dt) {
2501 ret = drv_data->parse_dt(host);
Thomas Abraham800d78b2012-09-17 18:16:42 +00002502 if (ret)
2503 return ERR_PTR(ret);
2504 }
2505
Seungwon Jeon10b49842013-08-31 00:13:22 +09002506 if (of_find_property(np, "supports-highspeed", NULL))
2507 pdata->caps |= MMC_CAP_SD_HIGHSPEED | MMC_CAP_MMC_HIGHSPEED;
2508
Thomas Abrahamc91eab42012-09-17 18:16:40 +00002509 return pdata;
2510}
2511
2512#else /* CONFIG_OF */
2513static struct dw_mci_board *dw_mci_parse_dt(struct dw_mci *host)
2514{
2515 return ERR_PTR(-EINVAL);
2516}
2517#endif /* CONFIG_OF */
2518
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05302519int dw_mci_probe(struct dw_mci *host)
Will Newtonf95f3852011-01-02 01:11:59 -05002520{
Arnd Bergmanne95baf12012-11-08 14:26:11 +00002521 const struct dw_mci_drv_data *drv_data = host->drv_data;
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05302522 int width, i, ret = 0;
Will Newtonf95f3852011-01-02 01:11:59 -05002523 u32 fifo_size;
Thomas Abraham1c2215b2012-09-17 18:16:37 +00002524 int init_slots = 0;
Will Newtonf95f3852011-01-02 01:11:59 -05002525
Thomas Abrahamc91eab42012-09-17 18:16:40 +00002526 if (!host->pdata) {
2527 host->pdata = dw_mci_parse_dt(host);
2528 if (IS_ERR(host->pdata)) {
2529 dev_err(host->dev, "platform data not available\n");
2530 return -EINVAL;
2531 }
Will Newtonf95f3852011-01-02 01:11:59 -05002532 }
2533
Jaehoon Chung907abd52014-03-03 11:36:43 +09002534 if (host->pdata->num_slots > 1) {
Thomas Abraham4a909202012-09-17 18:16:35 +00002535 dev_err(host->dev,
Jaehoon Chung907abd52014-03-03 11:36:43 +09002536 "Platform data must supply num_slots.\n");
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05302537 return -ENODEV;
Will Newtonf95f3852011-01-02 01:11:59 -05002538 }
2539
Seungwon Jeon780f22a2012-11-28 19:26:03 +09002540 host->biu_clk = devm_clk_get(host->dev, "biu");
Thomas Abrahamf90a0612012-09-17 18:16:38 +00002541 if (IS_ERR(host->biu_clk)) {
2542 dev_dbg(host->dev, "biu clock not available\n");
2543 } else {
2544 ret = clk_prepare_enable(host->biu_clk);
2545 if (ret) {
2546 dev_err(host->dev, "failed to enable biu clock\n");
Thomas Abrahamf90a0612012-09-17 18:16:38 +00002547 return ret;
2548 }
Will Newtonf95f3852011-01-02 01:11:59 -05002549 }
2550
Seungwon Jeon780f22a2012-11-28 19:26:03 +09002551 host->ciu_clk = devm_clk_get(host->dev, "ciu");
Thomas Abrahamf90a0612012-09-17 18:16:38 +00002552 if (IS_ERR(host->ciu_clk)) {
2553 dev_dbg(host->dev, "ciu clock not available\n");
Doug Anderson3c6d89e2013-06-07 10:28:30 -07002554 host->bus_hz = host->pdata->bus_hz;
Thomas Abrahamf90a0612012-09-17 18:16:38 +00002555 } else {
2556 ret = clk_prepare_enable(host->ciu_clk);
2557 if (ret) {
2558 dev_err(host->dev, "failed to enable ciu clock\n");
Thomas Abrahamf90a0612012-09-17 18:16:38 +00002559 goto err_clk_biu;
2560 }
Thomas Abrahamf90a0612012-09-17 18:16:38 +00002561
Doug Anderson3c6d89e2013-06-07 10:28:30 -07002562 if (host->pdata->bus_hz) {
2563 ret = clk_set_rate(host->ciu_clk, host->pdata->bus_hz);
2564 if (ret)
2565 dev_warn(host->dev,
Jaehoon Chung612de4c2014-03-03 11:36:42 +09002566 "Unable to set bus rate to %uHz\n",
Doug Anderson3c6d89e2013-06-07 10:28:30 -07002567 host->pdata->bus_hz);
2568 }
Thomas Abrahamf90a0612012-09-17 18:16:38 +00002569 host->bus_hz = clk_get_rate(host->ciu_clk);
Doug Anderson3c6d89e2013-06-07 10:28:30 -07002570 }
Thomas Abrahamf90a0612012-09-17 18:16:38 +00002571
Jaehoon Chung612de4c2014-03-03 11:36:42 +09002572 if (!host->bus_hz) {
2573 dev_err(host->dev,
2574 "Platform data must supply bus speed\n");
2575 ret = -ENODEV;
2576 goto err_clk_ciu;
2577 }
2578
Yuvaraj Kumar C D002f0d52013-08-31 00:12:19 +09002579 if (drv_data && drv_data->init) {
2580 ret = drv_data->init(host);
2581 if (ret) {
2582 dev_err(host->dev,
2583 "implementation specific init failed\n");
2584 goto err_clk_ciu;
2585 }
2586 }
2587
James Hogancb27a842012-10-16 09:43:08 +01002588 if (drv_data && drv_data->setup_clock) {
2589 ret = drv_data->setup_clock(host);
Thomas Abraham800d78b2012-09-17 18:16:42 +00002590 if (ret) {
2591 dev_err(host->dev,
2592 "implementation specific clock setup failed\n");
2593 goto err_clk_ciu;
2594 }
2595 }
2596
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05302597 host->quirks = host->pdata->quirks;
Will Newtonf95f3852011-01-02 01:11:59 -05002598
2599 spin_lock_init(&host->lock);
2600 INIT_LIST_HEAD(&host->queue);
2601
Will Newtonf95f3852011-01-02 01:11:59 -05002602 /*
2603 * Get the host data width - this assumes that HCON has been set with
2604 * the correct values.
2605 */
2606 i = (mci_readl(host, HCON) >> 7) & 0x7;
2607 if (!i) {
2608 host->push_data = dw_mci_push_data16;
2609 host->pull_data = dw_mci_pull_data16;
2610 width = 16;
2611 host->data_shift = 1;
2612 } else if (i == 2) {
2613 host->push_data = dw_mci_push_data64;
2614 host->pull_data = dw_mci_pull_data64;
2615 width = 64;
2616 host->data_shift = 3;
2617 } else {
2618 /* Check for a reserved value, and warn if it is */
2619 WARN((i != 1),
2620 "HCON reports a reserved host data width!\n"
2621 "Defaulting to 32-bit access.\n");
2622 host->push_data = dw_mci_push_data32;
2623 host->pull_data = dw_mci_pull_data32;
2624 width = 32;
2625 host->data_shift = 2;
2626 }
2627
2628 /* Reset all blocks */
Sonny Rao3a33a942014-08-04 18:19:50 -07002629 if (!dw_mci_ctrl_reset(host, SDMMC_CTRL_ALL_RESET_FLAGS))
Seungwon Jeon141a7122012-05-22 13:01:03 +09002630 return -ENODEV;
2631
2632 host->dma_ops = host->pdata->dma_ops;
2633 dw_mci_init_dma(host);
Will Newtonf95f3852011-01-02 01:11:59 -05002634
2635 /* Clear the interrupts for the host controller */
2636 mci_writel(host, RINTSTS, 0xFFFFFFFF);
2637 mci_writel(host, INTMASK, 0); /* disable all mmc interrupt first */
2638
2639 /* Put in max timeout */
2640 mci_writel(host, TMOUT, 0xFFFFFFFF);
2641
2642 /*
2643 * FIFO threshold settings RxMark = fifo_size / 2 - 1,
2644 * Tx Mark = fifo_size / 2 DMA Size = 8
2645 */
James Hoganb86d8252011-06-24 13:57:18 +01002646 if (!host->pdata->fifo_depth) {
2647 /*
2648 * Power-on value of RX_WMark is FIFO_DEPTH-1, but this may
2649 * have been overwritten by the bootloader, just like we're
2650 * about to do, so if you know the value for your hardware, you
2651 * should put it in the platform data.
2652 */
2653 fifo_size = mci_readl(host, FIFOTH);
Jaehoon Chung8234e862012-01-11 09:28:21 +00002654 fifo_size = 1 + ((fifo_size >> 16) & 0xfff);
James Hoganb86d8252011-06-24 13:57:18 +01002655 } else {
2656 fifo_size = host->pdata->fifo_depth;
2657 }
2658 host->fifo_depth = fifo_size;
Seungwon Jeon52426892013-08-31 00:13:42 +09002659 host->fifoth_val =
2660 SDMMC_SET_FIFOTH(0x2, fifo_size / 2 - 1, fifo_size / 2);
Jaehoon Chunge61cf112011-03-17 20:32:33 +09002661 mci_writel(host, FIFOTH, host->fifoth_val);
Will Newtonf95f3852011-01-02 01:11:59 -05002662
2663 /* disable clock to CIU */
2664 mci_writel(host, CLKENA, 0);
2665 mci_writel(host, CLKSRC, 0);
2666
James Hogan63008762013-03-12 10:43:54 +00002667 /*
2668 * In 2.40a spec, Data offset is changed.
2669 * Need to check the version-id and set data-offset for DATA register.
2670 */
2671 host->verid = SDMMC_GET_VERID(mci_readl(host, VERID));
2672 dev_info(host->dev, "Version ID is %04x\n", host->verid);
2673
2674 if (host->verid < DW_MMC_240A)
2675 host->data_offset = DATA_OFFSET;
2676 else
2677 host->data_offset = DATA_240A_OFFSET;
2678
Will Newtonf95f3852011-01-02 01:11:59 -05002679 tasklet_init(&host->tasklet, dw_mci_tasklet_func, (unsigned long)host);
Thomas Abraham95dcc2c2012-05-01 14:57:36 -07002680 host->card_workqueue = alloc_workqueue("dw-mci-card",
ZhangZhen59ff3eb2014-03-27 09:41:47 +08002681 WQ_MEM_RECLAIM, 1);
Wei Yongjunef7aef92013-04-19 09:25:45 +08002682 if (!host->card_workqueue) {
2683 ret = -ENOMEM;
James Hogan1791b13e2011-06-24 13:55:55 +01002684 goto err_dmaunmap;
Wei Yongjunef7aef92013-04-19 09:25:45 +08002685 }
James Hogan1791b13e2011-06-24 13:55:55 +01002686 INIT_WORK(&host->card_work, dw_mci_work_routine_card);
Seungwon Jeon780f22a2012-11-28 19:26:03 +09002687 ret = devm_request_irq(host->dev, host->irq, dw_mci_interrupt,
2688 host->irq_flags, "dw-mci", host);
Will Newtonf95f3852011-01-02 01:11:59 -05002689 if (ret)
James Hogan1791b13e2011-06-24 13:55:55 +01002690 goto err_workqueue;
Will Newtonf95f3852011-01-02 01:11:59 -05002691
Will Newtonf95f3852011-01-02 01:11:59 -05002692 if (host->pdata->num_slots)
2693 host->num_slots = host->pdata->num_slots;
2694 else
2695 host->num_slots = ((mci_readl(host, HCON) >> 1) & 0x1F) + 1;
2696
Yuvaraj CD2da1d7f2012-10-08 14:29:51 +05302697 /*
2698 * Enable interrupts for command done, data over, data empty, card det,
2699 * receive ready and error such as transmit, receive timeout, crc error
2700 */
2701 mci_writel(host, RINTSTS, 0xFFFFFFFF);
2702 mci_writel(host, INTMASK, SDMMC_INT_CMD_DONE | SDMMC_INT_DATA_OVER |
2703 SDMMC_INT_TXDR | SDMMC_INT_RXDR |
2704 DW_MCI_ERROR_FLAGS | SDMMC_INT_CD);
2705 mci_writel(host, CTRL, SDMMC_CTRL_INT_ENABLE); /* Enable mci interrupt */
2706
2707 dev_info(host->dev, "DW MMC controller at irq %d, "
2708 "%d bit host data width, "
2709 "%u deep fifo\n",
2710 host->irq, width, fifo_size);
2711
Will Newtonf95f3852011-01-02 01:11:59 -05002712 /* We need at least one slot to succeed */
2713 for (i = 0; i < host->num_slots; i++) {
2714 ret = dw_mci_init_slot(host, i);
Thomas Abraham1c2215b2012-09-17 18:16:37 +00002715 if (ret)
2716 dev_dbg(host->dev, "slot %d init failed\n", i);
2717 else
2718 init_slots++;
2719 }
2720
2721 if (init_slots) {
2722 dev_info(host->dev, "%d slots initialized\n", init_slots);
2723 } else {
2724 dev_dbg(host->dev, "attempted to initialize %d slots, "
2725 "but failed on all\n", host->num_slots);
Seungwon Jeon780f22a2012-11-28 19:26:03 +09002726 goto err_workqueue;
Will Newtonf95f3852011-01-02 01:11:59 -05002727 }
2728
Will Newtonf95f3852011-01-02 01:11:59 -05002729 if (host->quirks & DW_MCI_QUIRK_IDMAC_DTO)
Thomas Abraham4a909202012-09-17 18:16:35 +00002730 dev_info(host->dev, "Internal DMAC interrupt fix enabled.\n");
Will Newtonf95f3852011-01-02 01:11:59 -05002731
2732 return 0;
2733
James Hogan1791b13e2011-06-24 13:55:55 +01002734err_workqueue:
Thomas Abraham95dcc2c2012-05-01 14:57:36 -07002735 destroy_workqueue(host->card_workqueue);
James Hogan1791b13e2011-06-24 13:55:55 +01002736
Will Newtonf95f3852011-01-02 01:11:59 -05002737err_dmaunmap:
2738 if (host->use_dma && host->dma_ops->exit)
2739 host->dma_ops->exit(host);
Thomas Abrahamf90a0612012-09-17 18:16:38 +00002740
2741err_clk_ciu:
Seungwon Jeon780f22a2012-11-28 19:26:03 +09002742 if (!IS_ERR(host->ciu_clk))
Thomas Abrahamf90a0612012-09-17 18:16:38 +00002743 clk_disable_unprepare(host->ciu_clk);
Seungwon Jeon780f22a2012-11-28 19:26:03 +09002744
Thomas Abrahamf90a0612012-09-17 18:16:38 +00002745err_clk_biu:
Seungwon Jeon780f22a2012-11-28 19:26:03 +09002746 if (!IS_ERR(host->biu_clk))
Thomas Abrahamf90a0612012-09-17 18:16:38 +00002747 clk_disable_unprepare(host->biu_clk);
Seungwon Jeon780f22a2012-11-28 19:26:03 +09002748
Will Newtonf95f3852011-01-02 01:11:59 -05002749 return ret;
2750}
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05302751EXPORT_SYMBOL(dw_mci_probe);
Will Newtonf95f3852011-01-02 01:11:59 -05002752
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05302753void dw_mci_remove(struct dw_mci *host)
Will Newtonf95f3852011-01-02 01:11:59 -05002754{
Will Newtonf95f3852011-01-02 01:11:59 -05002755 int i;
2756
2757 mci_writel(host, RINTSTS, 0xFFFFFFFF);
2758 mci_writel(host, INTMASK, 0); /* disable all mmc interrupt first */
2759
Will Newtonf95f3852011-01-02 01:11:59 -05002760 for (i = 0; i < host->num_slots; i++) {
Thomas Abraham4a909202012-09-17 18:16:35 +00002761 dev_dbg(host->dev, "remove slot %d\n", i);
Will Newtonf95f3852011-01-02 01:11:59 -05002762 if (host->slot[i])
2763 dw_mci_cleanup_slot(host->slot[i], i);
2764 }
2765
2766 /* disable clock to CIU */
2767 mci_writel(host, CLKENA, 0);
2768 mci_writel(host, CLKSRC, 0);
2769
Thomas Abraham95dcc2c2012-05-01 14:57:36 -07002770 destroy_workqueue(host->card_workqueue);
Will Newtonf95f3852011-01-02 01:11:59 -05002771
2772 if (host->use_dma && host->dma_ops->exit)
2773 host->dma_ops->exit(host);
2774
Thomas Abrahamf90a0612012-09-17 18:16:38 +00002775 if (!IS_ERR(host->ciu_clk))
2776 clk_disable_unprepare(host->ciu_clk);
Seungwon Jeon780f22a2012-11-28 19:26:03 +09002777
Thomas Abrahamf90a0612012-09-17 18:16:38 +00002778 if (!IS_ERR(host->biu_clk))
2779 clk_disable_unprepare(host->biu_clk);
Will Newtonf95f3852011-01-02 01:11:59 -05002780}
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05302781EXPORT_SYMBOL(dw_mci_remove);
2782
2783
Will Newtonf95f3852011-01-02 01:11:59 -05002784
Jaehoon Chung6fe88902011-12-08 19:23:03 +09002785#ifdef CONFIG_PM_SLEEP
Will Newtonf95f3852011-01-02 01:11:59 -05002786/*
2787 * TODO: we should probably disable the clock to the card in the suspend path.
2788 */
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05302789int dw_mci_suspend(struct dw_mci *host)
Will Newtonf95f3852011-01-02 01:11:59 -05002790{
Will Newtonf95f3852011-01-02 01:11:59 -05002791 return 0;
2792}
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05302793EXPORT_SYMBOL(dw_mci_suspend);
Will Newtonf95f3852011-01-02 01:11:59 -05002794
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05302795int dw_mci_resume(struct dw_mci *host)
Will Newtonf95f3852011-01-02 01:11:59 -05002796{
2797 int i, ret;
Will Newtonf95f3852011-01-02 01:11:59 -05002798
Sonny Rao3a33a942014-08-04 18:19:50 -07002799 if (!dw_mci_ctrl_reset(host, SDMMC_CTRL_ALL_RESET_FLAGS)) {
Jaehoon Chunge61cf112011-03-17 20:32:33 +09002800 ret = -ENODEV;
2801 return ret;
2802 }
2803
Jonathan Kliegman3bfe6192012-06-14 13:31:55 -04002804 if (host->use_dma && host->dma_ops->init)
Seungwon Jeon141a7122012-05-22 13:01:03 +09002805 host->dma_ops->init(host);
2806
Seungwon Jeon52426892013-08-31 00:13:42 +09002807 /*
2808 * Restore the initial value at FIFOTH register
2809 * And Invalidate the prev_blksz with zero
2810 */
Jaehoon Chunge61cf112011-03-17 20:32:33 +09002811 mci_writel(host, FIFOTH, host->fifoth_val);
Seungwon Jeon52426892013-08-31 00:13:42 +09002812 host->prev_blksz = 0;
Jaehoon Chunge61cf112011-03-17 20:32:33 +09002813
Doug Anderson2eb29442013-08-31 00:11:49 +09002814 /* Put in max timeout */
2815 mci_writel(host, TMOUT, 0xFFFFFFFF);
2816
Jaehoon Chunge61cf112011-03-17 20:32:33 +09002817 mci_writel(host, RINTSTS, 0xFFFFFFFF);
2818 mci_writel(host, INTMASK, SDMMC_INT_CMD_DONE | SDMMC_INT_DATA_OVER |
2819 SDMMC_INT_TXDR | SDMMC_INT_RXDR |
2820 DW_MCI_ERROR_FLAGS | SDMMC_INT_CD);
2821 mci_writel(host, CTRL, SDMMC_CTRL_INT_ENABLE);
2822
Will Newtonf95f3852011-01-02 01:11:59 -05002823 for (i = 0; i < host->num_slots; i++) {
2824 struct dw_mci_slot *slot = host->slot[i];
2825 if (!slot)
2826 continue;
Abhilash Kesavanab269122012-11-19 10:26:21 +05302827 if (slot->mmc->pm_flags & MMC_PM_KEEP_POWER) {
2828 dw_mci_set_ios(slot->mmc, &slot->mmc->ios);
2829 dw_mci_setup_bus(slot, true);
2830 }
Will Newtonf95f3852011-01-02 01:11:59 -05002831 }
Will Newtonf95f3852011-01-02 01:11:59 -05002832 return 0;
2833}
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05302834EXPORT_SYMBOL(dw_mci_resume);
Jaehoon Chung6fe88902011-12-08 19:23:03 +09002835#endif /* CONFIG_PM_SLEEP */
2836
Will Newtonf95f3852011-01-02 01:11:59 -05002837static int __init dw_mci_init(void)
2838{
Sachin Kamat8e1c4e42013-04-04 11:25:11 +05302839 pr_info("Synopsys Designware Multimedia Card Interface Driver\n");
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05302840 return 0;
Will Newtonf95f3852011-01-02 01:11:59 -05002841}
2842
2843static void __exit dw_mci_exit(void)
2844{
Will Newtonf95f3852011-01-02 01:11:59 -05002845}
2846
2847module_init(dw_mci_init);
2848module_exit(dw_mci_exit);
2849
2850MODULE_DESCRIPTION("DW Multimedia Card Interface driver");
2851MODULE_AUTHOR("NXP Semiconductor VietNam");
2852MODULE_AUTHOR("Imagination Technologies Ltd");
2853MODULE_LICENSE("GPL v2");