blob: 542407363dd2012992831208cadfc8df592e3163 [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>
32#include <linux/mmc/dw_mmc.h>
33#include <linux/bitops.h>
Jaehoon Chungc07946a2011-02-25 11:08:14 +090034#include <linux/regulator/consumer.h>
James Hogan1791b13e2011-06-24 13:55:55 +010035#include <linux/workqueue.h>
Thomas Abrahamc91eab42012-09-17 18:16:40 +000036#include <linux/of.h>
Doug Anderson55a6ceb2013-01-11 17:03:53 +000037#include <linux/of_gpio.h>
Will Newtonf95f3852011-01-02 01:11:59 -050038
39#include "dw_mmc.h"
40
41/* Common flag combinations */
Jaehoon Chung3f7eec62013-05-27 13:47:57 +090042#define DW_MCI_DATA_ERROR_FLAGS (SDMMC_INT_DRTO | SDMMC_INT_DCRC | \
Will Newtonf95f3852011-01-02 01:11:59 -050043 SDMMC_INT_HTO | SDMMC_INT_SBE | \
44 SDMMC_INT_EBE)
45#define DW_MCI_CMD_ERROR_FLAGS (SDMMC_INT_RTO | SDMMC_INT_RCRC | \
46 SDMMC_INT_RESP_ERR)
47#define DW_MCI_ERROR_FLAGS (DW_MCI_DATA_ERROR_FLAGS | \
48 DW_MCI_CMD_ERROR_FLAGS | SDMMC_INT_HLE)
49#define DW_MCI_SEND_STATUS 1
50#define DW_MCI_RECV_STATUS 2
51#define DW_MCI_DMA_THRESHOLD 16
52
53#ifdef CONFIG_MMC_DW_IDMAC
Joonyoung Shimfc79a4d2013-04-26 15:35:22 +090054#define IDMAC_INT_CLR (SDMMC_IDMAC_INT_AI | SDMMC_IDMAC_INT_NI | \
55 SDMMC_IDMAC_INT_CES | SDMMC_IDMAC_INT_DU | \
56 SDMMC_IDMAC_INT_FBE | SDMMC_IDMAC_INT_RI | \
57 SDMMC_IDMAC_INT_TI)
58
Will Newtonf95f3852011-01-02 01:11:59 -050059struct idmac_desc {
60 u32 des0; /* Control Descriptor */
61#define IDMAC_DES0_DIC BIT(1)
62#define IDMAC_DES0_LD BIT(2)
63#define IDMAC_DES0_FD BIT(3)
64#define IDMAC_DES0_CH BIT(4)
65#define IDMAC_DES0_ER BIT(5)
66#define IDMAC_DES0_CES BIT(30)
67#define IDMAC_DES0_OWN BIT(31)
68
69 u32 des1; /* Buffer sizes */
70#define IDMAC_SET_BUFFER1_SIZE(d, s) \
Shashidhar Hiremath9b7bbe12011-07-29 08:49:50 -040071 ((d)->des1 = ((d)->des1 & 0x03ffe000) | ((s) & 0x1fff))
Will Newtonf95f3852011-01-02 01:11:59 -050072
73 u32 des2; /* buffer 1 physical address */
74
75 u32 des3; /* buffer 2 physical address */
76};
77#endif /* CONFIG_MMC_DW_IDMAC */
78
79/**
80 * struct dw_mci_slot - MMC slot state
81 * @mmc: The mmc_host representing this slot.
82 * @host: The MMC controller this slot is using.
Doug Andersona70aaa62013-01-11 17:03:50 +000083 * @quirks: Slot-level quirks (DW_MCI_SLOT_QUIRK_XXX)
Doug Anderson55a6ceb2013-01-11 17:03:53 +000084 * @wp_gpio: If gpio_is_valid() we'll use this to read write protect.
Will Newtonf95f3852011-01-02 01:11:59 -050085 * @ctype: Card type for this slot.
86 * @mrq: mmc_request currently being processed or waiting to be
87 * processed, or NULL when the slot is idle.
88 * @queue_node: List node for placing this node in the @queue list of
89 * &struct dw_mci.
90 * @clock: Clock rate configured by set_ios(). Protected by host->lock.
91 * @flags: Random state bits associated with the slot.
92 * @id: Number of this slot.
93 * @last_detect_state: Most recently observed card detect state.
94 */
95struct dw_mci_slot {
96 struct mmc_host *mmc;
97 struct dw_mci *host;
98
Doug Andersona70aaa62013-01-11 17:03:50 +000099 int quirks;
Doug Anderson55a6ceb2013-01-11 17:03:53 +0000100 int wp_gpio;
Doug Andersona70aaa62013-01-11 17:03:50 +0000101
Will Newtonf95f3852011-01-02 01:11:59 -0500102 u32 ctype;
103
104 struct mmc_request *mrq;
105 struct list_head queue_node;
106
107 unsigned int clock;
108 unsigned long flags;
109#define DW_MMC_CARD_PRESENT 0
110#define DW_MMC_CARD_NEED_INIT 1
111 int id;
112 int last_detect_state;
113};
114
115#if defined(CONFIG_DEBUG_FS)
116static int dw_mci_req_show(struct seq_file *s, void *v)
117{
118 struct dw_mci_slot *slot = s->private;
119 struct mmc_request *mrq;
120 struct mmc_command *cmd;
121 struct mmc_command *stop;
122 struct mmc_data *data;
123
124 /* Make sure we get a consistent snapshot */
125 spin_lock_bh(&slot->host->lock);
126 mrq = slot->mrq;
127
128 if (mrq) {
129 cmd = mrq->cmd;
130 data = mrq->data;
131 stop = mrq->stop;
132
133 if (cmd)
134 seq_printf(s,
135 "CMD%u(0x%x) flg %x rsp %x %x %x %x err %d\n",
136 cmd->opcode, cmd->arg, cmd->flags,
137 cmd->resp[0], cmd->resp[1], cmd->resp[2],
138 cmd->resp[2], cmd->error);
139 if (data)
140 seq_printf(s, "DATA %u / %u * %u flg %x err %d\n",
141 data->bytes_xfered, data->blocks,
142 data->blksz, data->flags, data->error);
143 if (stop)
144 seq_printf(s,
145 "CMD%u(0x%x) flg %x rsp %x %x %x %x err %d\n",
146 stop->opcode, stop->arg, stop->flags,
147 stop->resp[0], stop->resp[1], stop->resp[2],
148 stop->resp[2], stop->error);
149 }
150
151 spin_unlock_bh(&slot->host->lock);
152
153 return 0;
154}
155
156static int dw_mci_req_open(struct inode *inode, struct file *file)
157{
158 return single_open(file, dw_mci_req_show, inode->i_private);
159}
160
161static const struct file_operations dw_mci_req_fops = {
162 .owner = THIS_MODULE,
163 .open = dw_mci_req_open,
164 .read = seq_read,
165 .llseek = seq_lseek,
166 .release = single_release,
167};
168
169static int dw_mci_regs_show(struct seq_file *s, void *v)
170{
171 seq_printf(s, "STATUS:\t0x%08x\n", SDMMC_STATUS);
172 seq_printf(s, "RINTSTS:\t0x%08x\n", SDMMC_RINTSTS);
173 seq_printf(s, "CMD:\t0x%08x\n", SDMMC_CMD);
174 seq_printf(s, "CTRL:\t0x%08x\n", SDMMC_CTRL);
175 seq_printf(s, "INTMASK:\t0x%08x\n", SDMMC_INTMASK);
176 seq_printf(s, "CLKENA:\t0x%08x\n", SDMMC_CLKENA);
177
178 return 0;
179}
180
181static int dw_mci_regs_open(struct inode *inode, struct file *file)
182{
183 return single_open(file, dw_mci_regs_show, inode->i_private);
184}
185
186static const struct file_operations dw_mci_regs_fops = {
187 .owner = THIS_MODULE,
188 .open = dw_mci_regs_open,
189 .read = seq_read,
190 .llseek = seq_lseek,
191 .release = single_release,
192};
193
194static void dw_mci_init_debugfs(struct dw_mci_slot *slot)
195{
196 struct mmc_host *mmc = slot->mmc;
197 struct dw_mci *host = slot->host;
198 struct dentry *root;
199 struct dentry *node;
200
201 root = mmc->debugfs_root;
202 if (!root)
203 return;
204
205 node = debugfs_create_file("regs", S_IRUSR, root, host,
206 &dw_mci_regs_fops);
207 if (!node)
208 goto err;
209
210 node = debugfs_create_file("req", S_IRUSR, root, slot,
211 &dw_mci_req_fops);
212 if (!node)
213 goto err;
214
215 node = debugfs_create_u32("state", S_IRUSR, root, (u32 *)&host->state);
216 if (!node)
217 goto err;
218
219 node = debugfs_create_x32("pending_events", S_IRUSR, root,
220 (u32 *)&host->pending_events);
221 if (!node)
222 goto err;
223
224 node = debugfs_create_x32("completed_events", S_IRUSR, root,
225 (u32 *)&host->completed_events);
226 if (!node)
227 goto err;
228
229 return;
230
231err:
232 dev_err(&mmc->class_dev, "failed to initialize debugfs for slot\n");
233}
234#endif /* defined(CONFIG_DEBUG_FS) */
235
236static void dw_mci_set_timeout(struct dw_mci *host)
237{
238 /* timeout (maximum) */
239 mci_writel(host, TMOUT, 0xffffffff);
240}
241
242static u32 dw_mci_prepare_command(struct mmc_host *mmc, struct mmc_command *cmd)
243{
244 struct mmc_data *data;
Thomas Abraham800d78b2012-09-17 18:16:42 +0000245 struct dw_mci_slot *slot = mmc_priv(mmc);
Arnd Bergmanne95baf12012-11-08 14:26:11 +0000246 const struct dw_mci_drv_data *drv_data = slot->host->drv_data;
Will Newtonf95f3852011-01-02 01:11:59 -0500247 u32 cmdr;
248 cmd->error = -EINPROGRESS;
249
250 cmdr = cmd->opcode;
251
252 if (cmdr == MMC_STOP_TRANSMISSION)
253 cmdr |= SDMMC_CMD_STOP;
254 else
255 cmdr |= SDMMC_CMD_PRV_DAT_WAIT;
256
257 if (cmd->flags & MMC_RSP_PRESENT) {
258 /* We expect a response, so set this bit */
259 cmdr |= SDMMC_CMD_RESP_EXP;
260 if (cmd->flags & MMC_RSP_136)
261 cmdr |= SDMMC_CMD_RESP_LONG;
262 }
263
264 if (cmd->flags & MMC_RSP_CRC)
265 cmdr |= SDMMC_CMD_RESP_CRC;
266
267 data = cmd->data;
268 if (data) {
269 cmdr |= SDMMC_CMD_DAT_EXP;
270 if (data->flags & MMC_DATA_STREAM)
271 cmdr |= SDMMC_CMD_STRM_MODE;
272 if (data->flags & MMC_DATA_WRITE)
273 cmdr |= SDMMC_CMD_DAT_WR;
274 }
275
James Hogancb27a842012-10-16 09:43:08 +0100276 if (drv_data && drv_data->prepare_command)
277 drv_data->prepare_command(slot->host, &cmdr);
Thomas Abraham800d78b2012-09-17 18:16:42 +0000278
Will Newtonf95f3852011-01-02 01:11:59 -0500279 return cmdr;
280}
281
282static void dw_mci_start_command(struct dw_mci *host,
283 struct mmc_command *cmd, u32 cmd_flags)
284{
285 host->cmd = cmd;
Thomas Abraham4a909202012-09-17 18:16:35 +0000286 dev_vdbg(host->dev,
Will Newtonf95f3852011-01-02 01:11:59 -0500287 "start command: ARGR=0x%08x CMDR=0x%08x\n",
288 cmd->arg, cmd_flags);
289
290 mci_writel(host, CMDARG, cmd->arg);
291 wmb();
292
293 mci_writel(host, CMD, cmd_flags | SDMMC_CMD_START);
294}
295
296static void send_stop_cmd(struct dw_mci *host, struct mmc_data *data)
297{
298 dw_mci_start_command(host, data->stop, host->stop_cmdr);
299}
300
301/* DMA interface functions */
302static void dw_mci_stop_dma(struct dw_mci *host)
303{
James Hogan03e8cb52011-06-29 09:28:43 +0100304 if (host->using_dma) {
Will Newtonf95f3852011-01-02 01:11:59 -0500305 host->dma_ops->stop(host);
306 host->dma_ops->cleanup(host);
307 } else {
308 /* Data transfer was stopped by the interrupt handler */
309 set_bit(EVENT_XFER_COMPLETE, &host->pending_events);
310 }
311}
312
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900313static int dw_mci_get_dma_dir(struct mmc_data *data)
314{
315 if (data->flags & MMC_DATA_WRITE)
316 return DMA_TO_DEVICE;
317 else
318 return DMA_FROM_DEVICE;
319}
320
Jaehoon Chung9beee912012-02-16 11:19:38 +0900321#ifdef CONFIG_MMC_DW_IDMAC
Will Newtonf95f3852011-01-02 01:11:59 -0500322static void dw_mci_dma_cleanup(struct dw_mci *host)
323{
324 struct mmc_data *data = host->data;
325
326 if (data)
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900327 if (!data->host_cookie)
Thomas Abraham4a909202012-09-17 18:16:35 +0000328 dma_unmap_sg(host->dev,
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900329 data->sg,
330 data->sg_len,
331 dw_mci_get_dma_dir(data));
Will Newtonf95f3852011-01-02 01:11:59 -0500332}
333
334static void dw_mci_idmac_stop_dma(struct dw_mci *host)
335{
336 u32 temp;
337
338 /* Disable and reset the IDMAC interface */
339 temp = mci_readl(host, CTRL);
340 temp &= ~SDMMC_CTRL_USE_IDMAC;
341 temp |= SDMMC_CTRL_DMA_RESET;
342 mci_writel(host, CTRL, temp);
343
344 /* Stop the IDMAC running */
345 temp = mci_readl(host, BMOD);
Jaehoon Chunga5289a42011-02-25 11:08:13 +0900346 temp &= ~(SDMMC_IDMAC_ENABLE | SDMMC_IDMAC_FB);
Will Newtonf95f3852011-01-02 01:11:59 -0500347 mci_writel(host, BMOD, temp);
348}
349
350static void dw_mci_idmac_complete_dma(struct dw_mci *host)
351{
352 struct mmc_data *data = host->data;
353
Thomas Abraham4a909202012-09-17 18:16:35 +0000354 dev_vdbg(host->dev, "DMA complete\n");
Will Newtonf95f3852011-01-02 01:11:59 -0500355
356 host->dma_ops->cleanup(host);
357
358 /*
359 * If the card was removed, data will be NULL. No point in trying to
360 * send the stop command or waiting for NBUSY in this case.
361 */
362 if (data) {
363 set_bit(EVENT_XFER_COMPLETE, &host->pending_events);
364 tasklet_schedule(&host->tasklet);
365 }
366}
367
368static void dw_mci_translate_sglist(struct dw_mci *host, struct mmc_data *data,
369 unsigned int sg_len)
370{
371 int i;
372 struct idmac_desc *desc = host->sg_cpu;
373
374 for (i = 0; i < sg_len; i++, desc++) {
375 unsigned int length = sg_dma_len(&data->sg[i]);
376 u32 mem_addr = sg_dma_address(&data->sg[i]);
377
378 /* Set the OWN bit and disable interrupts for this descriptor */
379 desc->des0 = IDMAC_DES0_OWN | IDMAC_DES0_DIC | IDMAC_DES0_CH;
380
381 /* Buffer length */
382 IDMAC_SET_BUFFER1_SIZE(desc, length);
383
384 /* Physical address to DMA to/from */
385 desc->des2 = mem_addr;
386 }
387
388 /* Set first descriptor */
389 desc = host->sg_cpu;
390 desc->des0 |= IDMAC_DES0_FD;
391
392 /* Set last descriptor */
393 desc = host->sg_cpu + (i - 1) * sizeof(struct idmac_desc);
394 desc->des0 &= ~(IDMAC_DES0_CH | IDMAC_DES0_DIC);
395 desc->des0 |= IDMAC_DES0_LD;
396
397 wmb();
398}
399
400static void dw_mci_idmac_start_dma(struct dw_mci *host, unsigned int sg_len)
401{
402 u32 temp;
403
404 dw_mci_translate_sglist(host, host->data, sg_len);
405
406 /* Select IDMAC interface */
407 temp = mci_readl(host, CTRL);
408 temp |= SDMMC_CTRL_USE_IDMAC;
409 mci_writel(host, CTRL, temp);
410
411 wmb();
412
413 /* Enable the IDMAC */
414 temp = mci_readl(host, BMOD);
Jaehoon Chunga5289a42011-02-25 11:08:13 +0900415 temp |= SDMMC_IDMAC_ENABLE | SDMMC_IDMAC_FB;
Will Newtonf95f3852011-01-02 01:11:59 -0500416 mci_writel(host, BMOD, temp);
417
418 /* Start it running */
419 mci_writel(host, PLDMND, 1);
420}
421
422static int dw_mci_idmac_init(struct dw_mci *host)
423{
424 struct idmac_desc *p;
Seungwon Jeon897b69e2012-09-19 13:58:31 +0800425 int i;
Will Newtonf95f3852011-01-02 01:11:59 -0500426
427 /* Number of descriptors in the ring buffer */
428 host->ring_size = PAGE_SIZE / sizeof(struct idmac_desc);
429
430 /* Forward link the descriptor list */
431 for (i = 0, p = host->sg_cpu; i < host->ring_size - 1; i++, p++)
432 p->des3 = host->sg_dma + (sizeof(struct idmac_desc) * (i + 1));
433
434 /* Set the last descriptor as the end-of-ring descriptor */
435 p->des3 = host->sg_dma;
436 p->des0 = IDMAC_DES0_ER;
437
Seungwon Jeon141a7122012-05-22 13:01:03 +0900438 mci_writel(host, BMOD, SDMMC_IDMAC_SWRESET);
439
Will Newtonf95f3852011-01-02 01:11:59 -0500440 /* Mask out interrupts - get Tx & Rx complete only */
Joonyoung Shimfc79a4d2013-04-26 15:35:22 +0900441 mci_writel(host, IDSTS, IDMAC_INT_CLR);
Will Newtonf95f3852011-01-02 01:11:59 -0500442 mci_writel(host, IDINTEN, SDMMC_IDMAC_INT_NI | SDMMC_IDMAC_INT_RI |
443 SDMMC_IDMAC_INT_TI);
444
445 /* Set the descriptor base address */
446 mci_writel(host, DBADDR, host->sg_dma);
447 return 0;
448}
449
Arnd Bergmann8e2b36e2012-11-06 22:55:31 +0100450static const struct dw_mci_dma_ops dw_mci_idmac_ops = {
Seungwon Jeon885c3e82012-02-20 11:01:43 +0900451 .init = dw_mci_idmac_init,
452 .start = dw_mci_idmac_start_dma,
453 .stop = dw_mci_idmac_stop_dma,
454 .complete = dw_mci_idmac_complete_dma,
455 .cleanup = dw_mci_dma_cleanup,
456};
457#endif /* CONFIG_MMC_DW_IDMAC */
458
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900459static int dw_mci_pre_dma_transfer(struct dw_mci *host,
460 struct mmc_data *data,
461 bool next)
Will Newtonf95f3852011-01-02 01:11:59 -0500462{
463 struct scatterlist *sg;
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900464 unsigned int i, sg_len;
Will Newtonf95f3852011-01-02 01:11:59 -0500465
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900466 if (!next && data->host_cookie)
467 return data->host_cookie;
Will Newtonf95f3852011-01-02 01:11:59 -0500468
469 /*
470 * We don't do DMA on "complex" transfers, i.e. with
471 * non-word-aligned buffers or lengths. Also, we don't bother
472 * with all the DMA setup overhead for short transfers.
473 */
474 if (data->blocks * data->blksz < DW_MCI_DMA_THRESHOLD)
475 return -EINVAL;
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900476
Will Newtonf95f3852011-01-02 01:11:59 -0500477 if (data->blksz & 3)
478 return -EINVAL;
479
480 for_each_sg(data->sg, sg, data->sg_len, i) {
481 if (sg->offset & 3 || sg->length & 3)
482 return -EINVAL;
483 }
484
Thomas Abraham4a909202012-09-17 18:16:35 +0000485 sg_len = dma_map_sg(host->dev,
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900486 data->sg,
487 data->sg_len,
488 dw_mci_get_dma_dir(data));
489 if (sg_len == 0)
490 return -EINVAL;
491
492 if (next)
493 data->host_cookie = sg_len;
494
495 return sg_len;
496}
497
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900498static void dw_mci_pre_req(struct mmc_host *mmc,
499 struct mmc_request *mrq,
500 bool is_first_req)
501{
502 struct dw_mci_slot *slot = mmc_priv(mmc);
503 struct mmc_data *data = mrq->data;
504
505 if (!slot->host->use_dma || !data)
506 return;
507
508 if (data->host_cookie) {
509 data->host_cookie = 0;
510 return;
511 }
512
513 if (dw_mci_pre_dma_transfer(slot->host, mrq->data, 1) < 0)
514 data->host_cookie = 0;
515}
516
517static void dw_mci_post_req(struct mmc_host *mmc,
518 struct mmc_request *mrq,
519 int err)
520{
521 struct dw_mci_slot *slot = mmc_priv(mmc);
522 struct mmc_data *data = mrq->data;
523
524 if (!slot->host->use_dma || !data)
525 return;
526
527 if (data->host_cookie)
Thomas Abraham4a909202012-09-17 18:16:35 +0000528 dma_unmap_sg(slot->host->dev,
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900529 data->sg,
530 data->sg_len,
531 dw_mci_get_dma_dir(data));
532 data->host_cookie = 0;
533}
534
535static int dw_mci_submit_data_dma(struct dw_mci *host, struct mmc_data *data)
536{
537 int sg_len;
538 u32 temp;
539
540 host->using_dma = 0;
541
542 /* If we don't have a channel, we can't do DMA */
543 if (!host->use_dma)
544 return -ENODEV;
545
546 sg_len = dw_mci_pre_dma_transfer(host, data, 0);
Seungwon Jeona99aa9b2012-04-10 09:53:32 +0900547 if (sg_len < 0) {
548 host->dma_ops->stop(host);
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900549 return sg_len;
Seungwon Jeona99aa9b2012-04-10 09:53:32 +0900550 }
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900551
James Hogan03e8cb52011-06-29 09:28:43 +0100552 host->using_dma = 1;
553
Thomas Abraham4a909202012-09-17 18:16:35 +0000554 dev_vdbg(host->dev,
Will Newtonf95f3852011-01-02 01:11:59 -0500555 "sd sg_cpu: %#lx sg_dma: %#lx sg_len: %d\n",
556 (unsigned long)host->sg_cpu, (unsigned long)host->sg_dma,
557 sg_len);
558
559 /* Enable the DMA interface */
560 temp = mci_readl(host, CTRL);
561 temp |= SDMMC_CTRL_DMA_ENABLE;
562 mci_writel(host, CTRL, temp);
563
564 /* Disable RX/TX IRQs, let DMA handle it */
565 temp = mci_readl(host, INTMASK);
566 temp &= ~(SDMMC_INT_RXDR | SDMMC_INT_TXDR);
567 mci_writel(host, INTMASK, temp);
568
569 host->dma_ops->start(host, sg_len);
570
571 return 0;
572}
573
574static void dw_mci_submit_data(struct dw_mci *host, struct mmc_data *data)
575{
576 u32 temp;
577
578 data->error = -EINPROGRESS;
579
580 WARN_ON(host->data);
581 host->sg = NULL;
582 host->data = data;
583
James Hogan55c5efbc2011-06-29 09:29:58 +0100584 if (data->flags & MMC_DATA_READ)
585 host->dir_status = DW_MCI_RECV_STATUS;
586 else
587 host->dir_status = DW_MCI_SEND_STATUS;
588
Will Newtonf95f3852011-01-02 01:11:59 -0500589 if (dw_mci_submit_data_dma(host, data)) {
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +0900590 int flags = SG_MITER_ATOMIC;
591 if (host->data->flags & MMC_DATA_READ)
592 flags |= SG_MITER_TO_SG;
593 else
594 flags |= SG_MITER_FROM_SG;
595
596 sg_miter_start(&host->sg_miter, data->sg, data->sg_len, flags);
Will Newtonf95f3852011-01-02 01:11:59 -0500597 host->sg = data->sg;
James Hogan34b664a2011-06-24 13:57:56 +0100598 host->part_buf_start = 0;
599 host->part_buf_count = 0;
Will Newtonf95f3852011-01-02 01:11:59 -0500600
James Hoganb40af3a2011-06-24 13:54:06 +0100601 mci_writel(host, RINTSTS, SDMMC_INT_TXDR | SDMMC_INT_RXDR);
Will Newtonf95f3852011-01-02 01:11:59 -0500602 temp = mci_readl(host, INTMASK);
603 temp |= SDMMC_INT_TXDR | SDMMC_INT_RXDR;
604 mci_writel(host, INTMASK, temp);
605
606 temp = mci_readl(host, CTRL);
607 temp &= ~SDMMC_CTRL_DMA_ENABLE;
608 mci_writel(host, CTRL, temp);
609 }
610}
611
612static void mci_send_cmd(struct dw_mci_slot *slot, u32 cmd, u32 arg)
613{
614 struct dw_mci *host = slot->host;
615 unsigned long timeout = jiffies + msecs_to_jiffies(500);
616 unsigned int cmd_status = 0;
617
618 mci_writel(host, CMDARG, arg);
619 wmb();
620 mci_writel(host, CMD, SDMMC_CMD_START | cmd);
621
622 while (time_before(jiffies, timeout)) {
623 cmd_status = mci_readl(host, CMD);
624 if (!(cmd_status & SDMMC_CMD_START))
625 return;
626 }
627 dev_err(&slot->mmc->class_dev,
628 "Timeout sending command (cmd %#x arg %#x status %#x)\n",
629 cmd, arg, cmd_status);
630}
631
Abhilash Kesavanab269122012-11-19 10:26:21 +0530632static void dw_mci_setup_bus(struct dw_mci_slot *slot, bool force_clkinit)
Will Newtonf95f3852011-01-02 01:11:59 -0500633{
634 struct dw_mci *host = slot->host;
635 u32 div;
Doug Anderson9623b5b2012-07-25 08:33:17 -0700636 u32 clk_en_a;
Will Newtonf95f3852011-01-02 01:11:59 -0500637
Abhilash Kesavanab269122012-11-19 10:26:21 +0530638 if (slot->clock != host->current_speed || force_clkinit) {
Seungwon Jeone4199902012-05-22 13:01:21 +0900639 div = host->bus_hz / slot->clock;
640 if (host->bus_hz % slot->clock && host->bus_hz > slot->clock)
Will Newtonf95f3852011-01-02 01:11:59 -0500641 /*
642 * move the + 1 after the divide to prevent
643 * over-clocking the card.
644 */
Seungwon Jeone4199902012-05-22 13:01:21 +0900645 div += 1;
646
647 div = (host->bus_hz != slot->clock) ? DIV_ROUND_UP(div, 2) : 0;
Will Newtonf95f3852011-01-02 01:11:59 -0500648
649 dev_info(&slot->mmc->class_dev,
650 "Bus speed (slot %d) = %dHz (slot req %dHz, actual %dHZ"
651 " div = %d)\n", slot->id, host->bus_hz, slot->clock,
652 div ? ((host->bus_hz / div) >> 1) : host->bus_hz, div);
653
654 /* disable clock */
655 mci_writel(host, CLKENA, 0);
656 mci_writel(host, CLKSRC, 0);
657
658 /* inform CIU */
659 mci_send_cmd(slot,
660 SDMMC_CMD_UPD_CLK | SDMMC_CMD_PRV_DAT_WAIT, 0);
661
662 /* set clock to desired speed */
663 mci_writel(host, CLKDIV, div);
664
665 /* inform CIU */
666 mci_send_cmd(slot,
667 SDMMC_CMD_UPD_CLK | SDMMC_CMD_PRV_DAT_WAIT, 0);
668
Doug Anderson9623b5b2012-07-25 08:33:17 -0700669 /* enable clock; only low power if no SDIO */
670 clk_en_a = SDMMC_CLKEN_ENABLE << slot->id;
671 if (!(mci_readl(host, INTMASK) & SDMMC_INT_SDIO(slot->id)))
672 clk_en_a |= SDMMC_CLKEN_LOW_PWR << slot->id;
673 mci_writel(host, CLKENA, clk_en_a);
Will Newtonf95f3852011-01-02 01:11:59 -0500674
675 /* inform CIU */
676 mci_send_cmd(slot,
677 SDMMC_CMD_UPD_CLK | SDMMC_CMD_PRV_DAT_WAIT, 0);
678
679 host->current_speed = slot->clock;
680 }
681
682 /* Set the current slot bus width */
Seungwon Jeon1d56c452011-06-20 17:23:53 +0900683 mci_writel(host, CTYPE, (slot->ctype << slot->id));
Will Newtonf95f3852011-01-02 01:11:59 -0500684}
685
Seungwon Jeon053b3ce2011-12-22 18:01:29 +0900686static void __dw_mci_start_request(struct dw_mci *host,
687 struct dw_mci_slot *slot,
688 struct mmc_command *cmd)
Will Newtonf95f3852011-01-02 01:11:59 -0500689{
690 struct mmc_request *mrq;
Will Newtonf95f3852011-01-02 01:11:59 -0500691 struct mmc_data *data;
692 u32 cmdflags;
693
694 mrq = slot->mrq;
695 if (host->pdata->select_slot)
696 host->pdata->select_slot(slot->id);
697
Will Newtonf95f3852011-01-02 01:11:59 -0500698 host->cur_slot = slot;
699 host->mrq = mrq;
700
701 host->pending_events = 0;
702 host->completed_events = 0;
703 host->data_status = 0;
704
Seungwon Jeon053b3ce2011-12-22 18:01:29 +0900705 data = cmd->data;
Will Newtonf95f3852011-01-02 01:11:59 -0500706 if (data) {
707 dw_mci_set_timeout(host);
708 mci_writel(host, BYTCNT, data->blksz*data->blocks);
709 mci_writel(host, BLKSIZ, data->blksz);
710 }
711
Will Newtonf95f3852011-01-02 01:11:59 -0500712 cmdflags = dw_mci_prepare_command(slot->mmc, cmd);
713
714 /* this is the first command, send the initialization clock */
715 if (test_and_clear_bit(DW_MMC_CARD_NEED_INIT, &slot->flags))
716 cmdflags |= SDMMC_CMD_INIT;
717
718 if (data) {
719 dw_mci_submit_data(host, data);
720 wmb();
721 }
722
723 dw_mci_start_command(host, cmd, cmdflags);
724
725 if (mrq->stop)
726 host->stop_cmdr = dw_mci_prepare_command(slot->mmc, mrq->stop);
727}
728
Seungwon Jeon053b3ce2011-12-22 18:01:29 +0900729static void dw_mci_start_request(struct dw_mci *host,
730 struct dw_mci_slot *slot)
731{
732 struct mmc_request *mrq = slot->mrq;
733 struct mmc_command *cmd;
734
735 cmd = mrq->sbc ? mrq->sbc : mrq->cmd;
736 __dw_mci_start_request(host, slot, cmd);
737}
738
James Hogan7456caa2011-06-24 13:55:10 +0100739/* must be called with host->lock held */
Will Newtonf95f3852011-01-02 01:11:59 -0500740static void dw_mci_queue_request(struct dw_mci *host, struct dw_mci_slot *slot,
741 struct mmc_request *mrq)
742{
743 dev_vdbg(&slot->mmc->class_dev, "queue request: state=%d\n",
744 host->state);
745
Will Newtonf95f3852011-01-02 01:11:59 -0500746 slot->mrq = mrq;
747
748 if (host->state == STATE_IDLE) {
749 host->state = STATE_SENDING_CMD;
750 dw_mci_start_request(host, slot);
751 } else {
752 list_add_tail(&slot->queue_node, &host->queue);
753 }
Will Newtonf95f3852011-01-02 01:11:59 -0500754}
755
756static void dw_mci_request(struct mmc_host *mmc, struct mmc_request *mrq)
757{
758 struct dw_mci_slot *slot = mmc_priv(mmc);
759 struct dw_mci *host = slot->host;
760
761 WARN_ON(slot->mrq);
762
James Hogan7456caa2011-06-24 13:55:10 +0100763 /*
764 * The check for card presence and queueing of the request must be
765 * atomic, otherwise the card could be removed in between and the
766 * request wouldn't fail until another card was inserted.
767 */
768 spin_lock_bh(&host->lock);
769
Will Newtonf95f3852011-01-02 01:11:59 -0500770 if (!test_bit(DW_MMC_CARD_PRESENT, &slot->flags)) {
James Hogan7456caa2011-06-24 13:55:10 +0100771 spin_unlock_bh(&host->lock);
Will Newtonf95f3852011-01-02 01:11:59 -0500772 mrq->cmd->error = -ENOMEDIUM;
773 mmc_request_done(mmc, mrq);
774 return;
775 }
776
Will Newtonf95f3852011-01-02 01:11:59 -0500777 dw_mci_queue_request(host, slot, mrq);
James Hogan7456caa2011-06-24 13:55:10 +0100778
779 spin_unlock_bh(&host->lock);
Will Newtonf95f3852011-01-02 01:11:59 -0500780}
781
782static void dw_mci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
783{
784 struct dw_mci_slot *slot = mmc_priv(mmc);
Arnd Bergmanne95baf12012-11-08 14:26:11 +0000785 const struct dw_mci_drv_data *drv_data = slot->host->drv_data;
Jaehoon Chung41babf72011-02-24 13:46:11 +0900786 u32 regs;
Will Newtonf95f3852011-01-02 01:11:59 -0500787
Will Newtonf95f3852011-01-02 01:11:59 -0500788 switch (ios->bus_width) {
Will Newtonf95f3852011-01-02 01:11:59 -0500789 case MMC_BUS_WIDTH_4:
790 slot->ctype = SDMMC_CTYPE_4BIT;
791 break;
Jaehoon Chungc9b2a062011-02-17 16:12:38 +0900792 case MMC_BUS_WIDTH_8:
793 slot->ctype = SDMMC_CTYPE_8BIT;
794 break;
Jaehoon Chungb2f7cb42012-11-08 17:35:31 +0900795 default:
796 /* set default 1 bit mode */
797 slot->ctype = SDMMC_CTYPE_1BIT;
Will Newtonf95f3852011-01-02 01:11:59 -0500798 }
799
Seungwon Jeon3f514292012-01-02 16:00:02 +0900800 regs = mci_readl(slot->host, UHS_REG);
801
Jaehoon Chung41babf72011-02-24 13:46:11 +0900802 /* DDR mode set */
Seungwon Jeon3f514292012-01-02 16:00:02 +0900803 if (ios->timing == MMC_TIMING_UHS_DDR50)
Hyeonsu Kimc69042a2013-02-22 09:32:46 +0900804 regs |= ((0x1 << slot->id) << 16);
Seungwon Jeon3f514292012-01-02 16:00:02 +0900805 else
Hyeonsu Kimc69042a2013-02-22 09:32:46 +0900806 regs &= ~((0x1 << slot->id) << 16);
Seungwon Jeon3f514292012-01-02 16:00:02 +0900807
808 mci_writel(slot->host, UHS_REG, regs);
Jaehoon Chung41babf72011-02-24 13:46:11 +0900809
Will Newtonf95f3852011-01-02 01:11:59 -0500810 if (ios->clock) {
811 /*
812 * Use mirror of ios->clock to prevent race with mmc
813 * core ios update when finding the minimum.
814 */
815 slot->clock = ios->clock;
816 }
817
James Hogancb27a842012-10-16 09:43:08 +0100818 if (drv_data && drv_data->set_ios)
819 drv_data->set_ios(slot->host, ios);
Thomas Abraham800d78b2012-09-17 18:16:42 +0000820
Jaehoon Chungbf7cb222012-11-08 17:35:29 +0900821 /* Slot specific timing and width adjustment */
822 dw_mci_setup_bus(slot, false);
823
Will Newtonf95f3852011-01-02 01:11:59 -0500824 switch (ios->power_mode) {
825 case MMC_POWER_UP:
826 set_bit(DW_MMC_CARD_NEED_INIT, &slot->flags);
James Hogane6f34e22013-03-12 10:43:32 +0000827 /* Power up slot */
828 if (slot->host->pdata->setpower)
829 slot->host->pdata->setpower(slot->id, mmc->ocr_avail);
Jaehoon Chung4366dcc2013-03-26 21:36:14 +0900830 regs = mci_readl(slot->host, PWREN);
831 regs |= (1 << slot->id);
832 mci_writel(slot->host, PWREN, regs);
James Hogane6f34e22013-03-12 10:43:32 +0000833 break;
834 case MMC_POWER_OFF:
835 /* Power down slot */
836 if (slot->host->pdata->setpower)
837 slot->host->pdata->setpower(slot->id, 0);
Jaehoon Chung4366dcc2013-03-26 21:36:14 +0900838 regs = mci_readl(slot->host, PWREN);
839 regs &= ~(1 << slot->id);
840 mci_writel(slot->host, PWREN, regs);
Will Newtonf95f3852011-01-02 01:11:59 -0500841 break;
842 default:
843 break;
844 }
845}
846
847static int dw_mci_get_ro(struct mmc_host *mmc)
848{
849 int read_only;
850 struct dw_mci_slot *slot = mmc_priv(mmc);
851 struct dw_mci_board *brd = slot->host->pdata;
852
853 /* Use platform get_ro function, else try on board write protect */
Doug Anderson96406392013-01-11 17:03:54 +0000854 if (slot->quirks & DW_MCI_SLOT_QUIRK_NO_WRITE_PROTECT)
Thomas Abrahamb4967aa2012-09-17 18:16:39 +0000855 read_only = 0;
856 else if (brd->get_ro)
Will Newtonf95f3852011-01-02 01:11:59 -0500857 read_only = brd->get_ro(slot->id);
Doug Anderson55a6ceb2013-01-11 17:03:53 +0000858 else if (gpio_is_valid(slot->wp_gpio))
859 read_only = gpio_get_value(slot->wp_gpio);
Will Newtonf95f3852011-01-02 01:11:59 -0500860 else
861 read_only =
862 mci_readl(slot->host, WRTPRT) & (1 << slot->id) ? 1 : 0;
863
864 dev_dbg(&mmc->class_dev, "card is %s\n",
865 read_only ? "read-only" : "read-write");
866
867 return read_only;
868}
869
870static int dw_mci_get_cd(struct mmc_host *mmc)
871{
872 int present;
873 struct dw_mci_slot *slot = mmc_priv(mmc);
874 struct dw_mci_board *brd = slot->host->pdata;
875
876 /* Use platform get_cd function, else try onboard card detect */
Jaehoon Chungfc3d7722011-02-25 11:08:15 +0900877 if (brd->quirks & DW_MCI_QUIRK_BROKEN_CARD_DETECTION)
878 present = 1;
879 else if (brd->get_cd)
Will Newtonf95f3852011-01-02 01:11:59 -0500880 present = !brd->get_cd(slot->id);
881 else
882 present = (mci_readl(slot->host, CDETECT) & (1 << slot->id))
883 == 0 ? 1 : 0;
884
885 if (present)
886 dev_dbg(&mmc->class_dev, "card is present\n");
887 else
888 dev_dbg(&mmc->class_dev, "card is not present\n");
889
890 return present;
891}
892
Doug Anderson9623b5b2012-07-25 08:33:17 -0700893/*
894 * Disable lower power mode.
895 *
896 * Low power mode will stop the card clock when idle. According to the
897 * description of the CLKENA register we should disable low power mode
898 * for SDIO cards if we need SDIO interrupts to work.
899 *
900 * This function is fast if low power mode is already disabled.
901 */
902static void dw_mci_disable_low_power(struct dw_mci_slot *slot)
903{
904 struct dw_mci *host = slot->host;
905 u32 clk_en_a;
906 const u32 clken_low_pwr = SDMMC_CLKEN_LOW_PWR << slot->id;
907
908 clk_en_a = mci_readl(host, CLKENA);
909
910 if (clk_en_a & clken_low_pwr) {
911 mci_writel(host, CLKENA, clk_en_a & ~clken_low_pwr);
912 mci_send_cmd(slot, SDMMC_CMD_UPD_CLK |
913 SDMMC_CMD_PRV_DAT_WAIT, 0);
914 }
915}
916
Shashidhar Hiremath1a5c8e12011-08-29 13:11:46 +0530917static void dw_mci_enable_sdio_irq(struct mmc_host *mmc, int enb)
918{
919 struct dw_mci_slot *slot = mmc_priv(mmc);
920 struct dw_mci *host = slot->host;
921 u32 int_mask;
922
923 /* Enable/disable Slot Specific SDIO interrupt */
924 int_mask = mci_readl(host, INTMASK);
925 if (enb) {
Doug Anderson9623b5b2012-07-25 08:33:17 -0700926 /*
927 * Turn off low power mode if it was enabled. This is a bit of
928 * a heavy operation and we disable / enable IRQs a lot, so
929 * we'll leave low power mode disabled and it will get
930 * re-enabled again in dw_mci_setup_bus().
931 */
932 dw_mci_disable_low_power(slot);
933
Shashidhar Hiremath1a5c8e12011-08-29 13:11:46 +0530934 mci_writel(host, INTMASK,
Kyoungil Kim705ad042012-05-14 17:38:48 +0900935 (int_mask | SDMMC_INT_SDIO(slot->id)));
Shashidhar Hiremath1a5c8e12011-08-29 13:11:46 +0530936 } else {
937 mci_writel(host, INTMASK,
Kyoungil Kim705ad042012-05-14 17:38:48 +0900938 (int_mask & ~SDMMC_INT_SDIO(slot->id)));
Shashidhar Hiremath1a5c8e12011-08-29 13:11:46 +0530939 }
940}
941
Will Newtonf95f3852011-01-02 01:11:59 -0500942static const struct mmc_host_ops dw_mci_ops = {
Shashidhar Hiremath1a5c8e12011-08-29 13:11:46 +0530943 .request = dw_mci_request,
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900944 .pre_req = dw_mci_pre_req,
945 .post_req = dw_mci_post_req,
Shashidhar Hiremath1a5c8e12011-08-29 13:11:46 +0530946 .set_ios = dw_mci_set_ios,
947 .get_ro = dw_mci_get_ro,
948 .get_cd = dw_mci_get_cd,
949 .enable_sdio_irq = dw_mci_enable_sdio_irq,
Will Newtonf95f3852011-01-02 01:11:59 -0500950};
951
952static void dw_mci_request_end(struct dw_mci *host, struct mmc_request *mrq)
953 __releases(&host->lock)
954 __acquires(&host->lock)
955{
956 struct dw_mci_slot *slot;
957 struct mmc_host *prev_mmc = host->cur_slot->mmc;
958
959 WARN_ON(host->cmd || host->data);
960
961 host->cur_slot->mrq = NULL;
962 host->mrq = NULL;
963 if (!list_empty(&host->queue)) {
964 slot = list_entry(host->queue.next,
965 struct dw_mci_slot, queue_node);
966 list_del(&slot->queue_node);
Thomas Abraham4a909202012-09-17 18:16:35 +0000967 dev_vdbg(host->dev, "list not empty: %s is next\n",
Will Newtonf95f3852011-01-02 01:11:59 -0500968 mmc_hostname(slot->mmc));
969 host->state = STATE_SENDING_CMD;
970 dw_mci_start_request(host, slot);
971 } else {
Thomas Abraham4a909202012-09-17 18:16:35 +0000972 dev_vdbg(host->dev, "list empty\n");
Will Newtonf95f3852011-01-02 01:11:59 -0500973 host->state = STATE_IDLE;
974 }
975
976 spin_unlock(&host->lock);
977 mmc_request_done(prev_mmc, mrq);
978 spin_lock(&host->lock);
979}
980
981static void dw_mci_command_complete(struct dw_mci *host, struct mmc_command *cmd)
982{
983 u32 status = host->cmd_status;
984
985 host->cmd_status = 0;
986
987 /* Read the response from the card (up to 16 bytes) */
988 if (cmd->flags & MMC_RSP_PRESENT) {
989 if (cmd->flags & MMC_RSP_136) {
990 cmd->resp[3] = mci_readl(host, RESP0);
991 cmd->resp[2] = mci_readl(host, RESP1);
992 cmd->resp[1] = mci_readl(host, RESP2);
993 cmd->resp[0] = mci_readl(host, RESP3);
994 } else {
995 cmd->resp[0] = mci_readl(host, RESP0);
996 cmd->resp[1] = 0;
997 cmd->resp[2] = 0;
998 cmd->resp[3] = 0;
999 }
1000 }
1001
1002 if (status & SDMMC_INT_RTO)
1003 cmd->error = -ETIMEDOUT;
1004 else if ((cmd->flags & MMC_RSP_CRC) && (status & SDMMC_INT_RCRC))
1005 cmd->error = -EILSEQ;
1006 else if (status & SDMMC_INT_RESP_ERR)
1007 cmd->error = -EIO;
1008 else
1009 cmd->error = 0;
1010
1011 if (cmd->error) {
1012 /* newer ip versions need a delay between retries */
1013 if (host->quirks & DW_MCI_QUIRK_RETRY_DELAY)
1014 mdelay(20);
1015
1016 if (cmd->data) {
Will Newtonf95f3852011-01-02 01:11:59 -05001017 dw_mci_stop_dma(host);
Seungwon Jeonfda5f732012-05-22 13:01:13 +09001018 host->data = NULL;
Will Newtonf95f3852011-01-02 01:11:59 -05001019 }
1020 }
1021}
1022
1023static void dw_mci_tasklet_func(unsigned long priv)
1024{
1025 struct dw_mci *host = (struct dw_mci *)priv;
1026 struct mmc_data *data;
1027 struct mmc_command *cmd;
1028 enum dw_mci_state state;
1029 enum dw_mci_state prev_state;
James Hogan94dd5b32011-06-29 09:30:47 +01001030 u32 status, ctrl;
Will Newtonf95f3852011-01-02 01:11:59 -05001031
1032 spin_lock(&host->lock);
1033
1034 state = host->state;
1035 data = host->data;
1036
1037 do {
1038 prev_state = state;
1039
1040 switch (state) {
1041 case STATE_IDLE:
1042 break;
1043
1044 case STATE_SENDING_CMD:
1045 if (!test_and_clear_bit(EVENT_CMD_COMPLETE,
1046 &host->pending_events))
1047 break;
1048
1049 cmd = host->cmd;
1050 host->cmd = NULL;
1051 set_bit(EVENT_CMD_COMPLETE, &host->completed_events);
Seungwon Jeon053b3ce2011-12-22 18:01:29 +09001052 dw_mci_command_complete(host, cmd);
1053 if (cmd == host->mrq->sbc && !cmd->error) {
1054 prev_state = state = STATE_SENDING_CMD;
1055 __dw_mci_start_request(host, host->cur_slot,
1056 host->mrq->cmd);
1057 goto unlock;
1058 }
1059
Will Newtonf95f3852011-01-02 01:11:59 -05001060 if (!host->mrq->data || cmd->error) {
1061 dw_mci_request_end(host, host->mrq);
1062 goto unlock;
1063 }
1064
1065 prev_state = state = STATE_SENDING_DATA;
1066 /* fall through */
1067
1068 case STATE_SENDING_DATA:
1069 if (test_and_clear_bit(EVENT_DATA_ERROR,
1070 &host->pending_events)) {
1071 dw_mci_stop_dma(host);
1072 if (data->stop)
1073 send_stop_cmd(host, data);
1074 state = STATE_DATA_ERROR;
1075 break;
1076 }
1077
1078 if (!test_and_clear_bit(EVENT_XFER_COMPLETE,
1079 &host->pending_events))
1080 break;
1081
1082 set_bit(EVENT_XFER_COMPLETE, &host->completed_events);
1083 prev_state = state = STATE_DATA_BUSY;
1084 /* fall through */
1085
1086 case STATE_DATA_BUSY:
1087 if (!test_and_clear_bit(EVENT_DATA_COMPLETE,
1088 &host->pending_events))
1089 break;
1090
1091 host->data = NULL;
1092 set_bit(EVENT_DATA_COMPLETE, &host->completed_events);
1093 status = host->data_status;
1094
1095 if (status & DW_MCI_DATA_ERROR_FLAGS) {
Jaehoon Chung3f7eec62013-05-27 13:47:57 +09001096 if (status & SDMMC_INT_DRTO) {
Will Newtonf95f3852011-01-02 01:11:59 -05001097 data->error = -ETIMEDOUT;
1098 } else if (status & SDMMC_INT_DCRC) {
Will Newtonf95f3852011-01-02 01:11:59 -05001099 data->error = -EILSEQ;
James Hogan55c5efbc2011-06-29 09:29:58 +01001100 } else if (status & SDMMC_INT_EBE &&
1101 host->dir_status ==
1102 DW_MCI_SEND_STATUS) {
1103 /*
1104 * No data CRC status was returned.
1105 * The number of bytes transferred will
1106 * be exaggerated in PIO mode.
1107 */
1108 data->bytes_xfered = 0;
1109 data->error = -ETIMEDOUT;
Will Newtonf95f3852011-01-02 01:11:59 -05001110 } else {
Thomas Abraham4a909202012-09-17 18:16:35 +00001111 dev_err(host->dev,
Will Newtonf95f3852011-01-02 01:11:59 -05001112 "data FIFO error "
1113 "(status=%08x)\n",
1114 status);
1115 data->error = -EIO;
1116 }
James Hogan94dd5b32011-06-29 09:30:47 +01001117 /*
1118 * After an error, there may be data lingering
1119 * in the FIFO, so reset it - doing so
1120 * generates a block interrupt, hence setting
1121 * the scatter-gather pointer to NULL.
1122 */
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09001123 sg_miter_stop(&host->sg_miter);
James Hogan94dd5b32011-06-29 09:30:47 +01001124 host->sg = NULL;
1125 ctrl = mci_readl(host, CTRL);
1126 ctrl |= SDMMC_CTRL_FIFO_RESET;
1127 mci_writel(host, CTRL, ctrl);
Will Newtonf95f3852011-01-02 01:11:59 -05001128 } else {
1129 data->bytes_xfered = data->blocks * data->blksz;
1130 data->error = 0;
1131 }
1132
1133 if (!data->stop) {
1134 dw_mci_request_end(host, host->mrq);
1135 goto unlock;
1136 }
1137
Seungwon Jeon053b3ce2011-12-22 18:01:29 +09001138 if (host->mrq->sbc && !data->error) {
1139 data->stop->error = 0;
1140 dw_mci_request_end(host, host->mrq);
1141 goto unlock;
1142 }
1143
Will Newtonf95f3852011-01-02 01:11:59 -05001144 prev_state = state = STATE_SENDING_STOP;
1145 if (!data->error)
1146 send_stop_cmd(host, data);
1147 /* fall through */
1148
1149 case STATE_SENDING_STOP:
1150 if (!test_and_clear_bit(EVENT_CMD_COMPLETE,
1151 &host->pending_events))
1152 break;
1153
1154 host->cmd = NULL;
1155 dw_mci_command_complete(host, host->mrq->stop);
1156 dw_mci_request_end(host, host->mrq);
1157 goto unlock;
1158
1159 case STATE_DATA_ERROR:
1160 if (!test_and_clear_bit(EVENT_XFER_COMPLETE,
1161 &host->pending_events))
1162 break;
1163
1164 state = STATE_DATA_BUSY;
1165 break;
1166 }
1167 } while (state != prev_state);
1168
1169 host->state = state;
1170unlock:
1171 spin_unlock(&host->lock);
1172
1173}
1174
James Hogan34b664a2011-06-24 13:57:56 +01001175/* push final bytes to part_buf, only use during push */
1176static void dw_mci_set_part_bytes(struct dw_mci *host, void *buf, int cnt)
1177{
1178 memcpy((void *)&host->part_buf, buf, cnt);
1179 host->part_buf_count = cnt;
1180}
1181
1182/* append bytes to part_buf, only use during push */
1183static int dw_mci_push_part_bytes(struct dw_mci *host, void *buf, int cnt)
1184{
1185 cnt = min(cnt, (1 << host->data_shift) - host->part_buf_count);
1186 memcpy((void *)&host->part_buf + host->part_buf_count, buf, cnt);
1187 host->part_buf_count += cnt;
1188 return cnt;
1189}
1190
1191/* pull first bytes from part_buf, only use during pull */
1192static int dw_mci_pull_part_bytes(struct dw_mci *host, void *buf, int cnt)
1193{
1194 cnt = min(cnt, (int)host->part_buf_count);
1195 if (cnt) {
1196 memcpy(buf, (void *)&host->part_buf + host->part_buf_start,
1197 cnt);
1198 host->part_buf_count -= cnt;
1199 host->part_buf_start += cnt;
1200 }
1201 return cnt;
1202}
1203
1204/* pull final bytes from the part_buf, assuming it's just been filled */
1205static void dw_mci_pull_final_bytes(struct dw_mci *host, void *buf, int cnt)
1206{
1207 memcpy(buf, &host->part_buf, cnt);
1208 host->part_buf_start = cnt;
1209 host->part_buf_count = (1 << host->data_shift) - cnt;
1210}
1211
Will Newtonf95f3852011-01-02 01:11:59 -05001212static void dw_mci_push_data16(struct dw_mci *host, void *buf, int cnt)
1213{
Markos Chandrascfbeb59c2013-03-12 10:53:13 +00001214 struct mmc_data *data = host->data;
1215 int init_cnt = cnt;
1216
James Hogan34b664a2011-06-24 13:57:56 +01001217 /* try and push anything in the part_buf */
1218 if (unlikely(host->part_buf_count)) {
1219 int len = dw_mci_push_part_bytes(host, buf, cnt);
1220 buf += len;
1221 cnt -= len;
Markos Chandrascfbeb59c2013-03-12 10:53:13 +00001222 if (host->part_buf_count == 2) {
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001223 mci_writew(host, DATA(host->data_offset),
1224 host->part_buf16);
James Hogan34b664a2011-06-24 13:57:56 +01001225 host->part_buf_count = 0;
1226 }
1227 }
1228#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
1229 if (unlikely((unsigned long)buf & 0x1)) {
1230 while (cnt >= 2) {
1231 u16 aligned_buf[64];
1232 int len = min(cnt & -2, (int)sizeof(aligned_buf));
1233 int items = len >> 1;
1234 int i;
1235 /* memcpy from input buffer into aligned buffer */
1236 memcpy(aligned_buf, buf, len);
1237 buf += len;
1238 cnt -= len;
1239 /* push data from aligned buffer into fifo */
1240 for (i = 0; i < items; ++i)
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001241 mci_writew(host, DATA(host->data_offset),
1242 aligned_buf[i]);
James Hogan34b664a2011-06-24 13:57:56 +01001243 }
1244 } else
1245#endif
1246 {
1247 u16 *pdata = buf;
1248 for (; cnt >= 2; cnt -= 2)
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001249 mci_writew(host, DATA(host->data_offset), *pdata++);
James Hogan34b664a2011-06-24 13:57:56 +01001250 buf = pdata;
1251 }
1252 /* put anything remaining in the part_buf */
1253 if (cnt) {
1254 dw_mci_set_part_bytes(host, buf, cnt);
Markos Chandrascfbeb59c2013-03-12 10:53:13 +00001255 /* Push data if we have reached the expected data length */
1256 if ((data->bytes_xfered + init_cnt) ==
1257 (data->blksz * data->blocks))
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001258 mci_writew(host, DATA(host->data_offset),
Markos Chandrascfbeb59c2013-03-12 10:53:13 +00001259 host->part_buf16);
Will Newtonf95f3852011-01-02 01:11:59 -05001260 }
1261}
1262
1263static void dw_mci_pull_data16(struct dw_mci *host, void *buf, int cnt)
1264{
James Hogan34b664a2011-06-24 13:57:56 +01001265#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
1266 if (unlikely((unsigned long)buf & 0x1)) {
1267 while (cnt >= 2) {
1268 /* pull data from fifo into aligned buffer */
1269 u16 aligned_buf[64];
1270 int len = min(cnt & -2, (int)sizeof(aligned_buf));
1271 int items = len >> 1;
1272 int i;
1273 for (i = 0; i < items; ++i)
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001274 aligned_buf[i] = mci_readw(host,
1275 DATA(host->data_offset));
James Hogan34b664a2011-06-24 13:57:56 +01001276 /* memcpy from aligned buffer into output buffer */
1277 memcpy(buf, aligned_buf, len);
1278 buf += len;
1279 cnt -= len;
1280 }
1281 } else
1282#endif
1283 {
1284 u16 *pdata = buf;
1285 for (; cnt >= 2; cnt -= 2)
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001286 *pdata++ = mci_readw(host, DATA(host->data_offset));
James Hogan34b664a2011-06-24 13:57:56 +01001287 buf = pdata;
1288 }
1289 if (cnt) {
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001290 host->part_buf16 = mci_readw(host, DATA(host->data_offset));
James Hogan34b664a2011-06-24 13:57:56 +01001291 dw_mci_pull_final_bytes(host, buf, cnt);
Will Newtonf95f3852011-01-02 01:11:59 -05001292 }
1293}
1294
1295static void dw_mci_push_data32(struct dw_mci *host, void *buf, int cnt)
1296{
Markos Chandrascfbeb59c2013-03-12 10:53:13 +00001297 struct mmc_data *data = host->data;
1298 int init_cnt = cnt;
1299
James Hogan34b664a2011-06-24 13:57:56 +01001300 /* try and push anything in the part_buf */
1301 if (unlikely(host->part_buf_count)) {
1302 int len = dw_mci_push_part_bytes(host, buf, cnt);
1303 buf += len;
1304 cnt -= len;
Markos Chandrascfbeb59c2013-03-12 10:53:13 +00001305 if (host->part_buf_count == 4) {
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001306 mci_writel(host, DATA(host->data_offset),
1307 host->part_buf32);
James Hogan34b664a2011-06-24 13:57:56 +01001308 host->part_buf_count = 0;
1309 }
1310 }
1311#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
1312 if (unlikely((unsigned long)buf & 0x3)) {
1313 while (cnt >= 4) {
1314 u32 aligned_buf[32];
1315 int len = min(cnt & -4, (int)sizeof(aligned_buf));
1316 int items = len >> 2;
1317 int i;
1318 /* memcpy from input buffer into aligned buffer */
1319 memcpy(aligned_buf, buf, len);
1320 buf += len;
1321 cnt -= len;
1322 /* push data from aligned buffer into fifo */
1323 for (i = 0; i < items; ++i)
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001324 mci_writel(host, DATA(host->data_offset),
1325 aligned_buf[i]);
James Hogan34b664a2011-06-24 13:57:56 +01001326 }
1327 } else
1328#endif
1329 {
1330 u32 *pdata = buf;
1331 for (; cnt >= 4; cnt -= 4)
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001332 mci_writel(host, DATA(host->data_offset), *pdata++);
James Hogan34b664a2011-06-24 13:57:56 +01001333 buf = pdata;
1334 }
1335 /* put anything remaining in the part_buf */
1336 if (cnt) {
1337 dw_mci_set_part_bytes(host, buf, cnt);
Markos Chandrascfbeb59c2013-03-12 10:53:13 +00001338 /* Push data if we have reached the expected data length */
1339 if ((data->bytes_xfered + init_cnt) ==
1340 (data->blksz * data->blocks))
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001341 mci_writel(host, DATA(host->data_offset),
Markos Chandrascfbeb59c2013-03-12 10:53:13 +00001342 host->part_buf32);
Will Newtonf95f3852011-01-02 01:11:59 -05001343 }
1344}
1345
1346static void dw_mci_pull_data32(struct dw_mci *host, void *buf, int cnt)
1347{
James Hogan34b664a2011-06-24 13:57:56 +01001348#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
1349 if (unlikely((unsigned long)buf & 0x3)) {
1350 while (cnt >= 4) {
1351 /* pull data from fifo into aligned buffer */
1352 u32 aligned_buf[32];
1353 int len = min(cnt & -4, (int)sizeof(aligned_buf));
1354 int items = len >> 2;
1355 int i;
1356 for (i = 0; i < items; ++i)
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001357 aligned_buf[i] = mci_readl(host,
1358 DATA(host->data_offset));
James Hogan34b664a2011-06-24 13:57:56 +01001359 /* memcpy from aligned buffer into output buffer */
1360 memcpy(buf, aligned_buf, len);
1361 buf += len;
1362 cnt -= len;
1363 }
1364 } else
1365#endif
1366 {
1367 u32 *pdata = buf;
1368 for (; cnt >= 4; cnt -= 4)
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001369 *pdata++ = mci_readl(host, DATA(host->data_offset));
James Hogan34b664a2011-06-24 13:57:56 +01001370 buf = pdata;
1371 }
1372 if (cnt) {
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001373 host->part_buf32 = mci_readl(host, DATA(host->data_offset));
James Hogan34b664a2011-06-24 13:57:56 +01001374 dw_mci_pull_final_bytes(host, buf, cnt);
Will Newtonf95f3852011-01-02 01:11:59 -05001375 }
1376}
1377
1378static void dw_mci_push_data64(struct dw_mci *host, void *buf, int cnt)
1379{
Markos Chandrascfbeb59c2013-03-12 10:53:13 +00001380 struct mmc_data *data = host->data;
1381 int init_cnt = cnt;
1382
James Hogan34b664a2011-06-24 13:57:56 +01001383 /* try and push anything in the part_buf */
1384 if (unlikely(host->part_buf_count)) {
1385 int len = dw_mci_push_part_bytes(host, buf, cnt);
1386 buf += len;
1387 cnt -= len;
Seungwon Jeonc09fbd72013-03-25 16:28:22 +09001388
Markos Chandrascfbeb59c2013-03-12 10:53:13 +00001389 if (host->part_buf_count == 8) {
Seungwon Jeonc09fbd72013-03-25 16:28:22 +09001390 mci_writeq(host, DATA(host->data_offset),
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001391 host->part_buf);
James Hogan34b664a2011-06-24 13:57:56 +01001392 host->part_buf_count = 0;
1393 }
1394 }
1395#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
1396 if (unlikely((unsigned long)buf & 0x7)) {
1397 while (cnt >= 8) {
1398 u64 aligned_buf[16];
1399 int len = min(cnt & -8, (int)sizeof(aligned_buf));
1400 int items = len >> 3;
1401 int i;
1402 /* memcpy from input buffer into aligned buffer */
1403 memcpy(aligned_buf, buf, len);
1404 buf += len;
1405 cnt -= len;
1406 /* push data from aligned buffer into fifo */
1407 for (i = 0; i < items; ++i)
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001408 mci_writeq(host, DATA(host->data_offset),
1409 aligned_buf[i]);
James Hogan34b664a2011-06-24 13:57:56 +01001410 }
1411 } else
1412#endif
1413 {
1414 u64 *pdata = buf;
1415 for (; cnt >= 8; cnt -= 8)
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001416 mci_writeq(host, DATA(host->data_offset), *pdata++);
James Hogan34b664a2011-06-24 13:57:56 +01001417 buf = pdata;
1418 }
1419 /* put anything remaining in the part_buf */
1420 if (cnt) {
1421 dw_mci_set_part_bytes(host, buf, cnt);
Markos Chandrascfbeb59c2013-03-12 10:53:13 +00001422 /* Push data if we have reached the expected data length */
1423 if ((data->bytes_xfered + init_cnt) ==
1424 (data->blksz * data->blocks))
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001425 mci_writeq(host, DATA(host->data_offset),
Markos Chandrascfbeb59c2013-03-12 10:53:13 +00001426 host->part_buf);
Will Newtonf95f3852011-01-02 01:11:59 -05001427 }
1428}
1429
1430static void dw_mci_pull_data64(struct dw_mci *host, void *buf, int cnt)
1431{
James Hogan34b664a2011-06-24 13:57:56 +01001432#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
1433 if (unlikely((unsigned long)buf & 0x7)) {
1434 while (cnt >= 8) {
1435 /* pull data from fifo into aligned buffer */
1436 u64 aligned_buf[16];
1437 int len = min(cnt & -8, (int)sizeof(aligned_buf));
1438 int items = len >> 3;
1439 int i;
1440 for (i = 0; i < items; ++i)
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001441 aligned_buf[i] = mci_readq(host,
1442 DATA(host->data_offset));
James Hogan34b664a2011-06-24 13:57:56 +01001443 /* memcpy from aligned buffer into output buffer */
1444 memcpy(buf, aligned_buf, len);
1445 buf += len;
1446 cnt -= len;
1447 }
1448 } else
1449#endif
1450 {
1451 u64 *pdata = buf;
1452 for (; cnt >= 8; cnt -= 8)
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001453 *pdata++ = mci_readq(host, DATA(host->data_offset));
James Hogan34b664a2011-06-24 13:57:56 +01001454 buf = pdata;
Will Newtonf95f3852011-01-02 01:11:59 -05001455 }
James Hogan34b664a2011-06-24 13:57:56 +01001456 if (cnt) {
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001457 host->part_buf = mci_readq(host, DATA(host->data_offset));
James Hogan34b664a2011-06-24 13:57:56 +01001458 dw_mci_pull_final_bytes(host, buf, cnt);
1459 }
1460}
1461
1462static void dw_mci_pull_data(struct dw_mci *host, void *buf, int cnt)
1463{
1464 int len;
1465
1466 /* get remaining partial bytes */
1467 len = dw_mci_pull_part_bytes(host, buf, cnt);
1468 if (unlikely(len == cnt))
1469 return;
1470 buf += len;
1471 cnt -= len;
1472
1473 /* get the rest of the data */
1474 host->pull_data(host, buf, cnt);
Will Newtonf95f3852011-01-02 01:11:59 -05001475}
1476
Kyoungil Kim87a74d32013-01-22 16:46:30 +09001477static void dw_mci_read_data_pio(struct dw_mci *host, bool dto)
Will Newtonf95f3852011-01-02 01:11:59 -05001478{
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09001479 struct sg_mapping_iter *sg_miter = &host->sg_miter;
1480 void *buf;
1481 unsigned int offset;
Will Newtonf95f3852011-01-02 01:11:59 -05001482 struct mmc_data *data = host->data;
1483 int shift = host->data_shift;
1484 u32 status;
Markos Chandras3e4b0d82013-03-22 12:50:05 -04001485 unsigned int len;
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09001486 unsigned int remain, fcnt;
Will Newtonf95f3852011-01-02 01:11:59 -05001487
1488 do {
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09001489 if (!sg_miter_next(sg_miter))
1490 goto done;
Will Newtonf95f3852011-01-02 01:11:59 -05001491
Imre Deak4225fc82013-02-27 17:02:57 -08001492 host->sg = sg_miter->piter.sg;
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09001493 buf = sg_miter->addr;
1494 remain = sg_miter->length;
1495 offset = 0;
1496
1497 do {
1498 fcnt = (SDMMC_GET_FCNT(mci_readl(host, STATUS))
1499 << shift) + host->part_buf_count;
1500 len = min(remain, fcnt);
1501 if (!len)
1502 break;
1503 dw_mci_pull_data(host, (void *)(buf + offset), len);
Markos Chandras3e4b0d82013-03-22 12:50:05 -04001504 data->bytes_xfered += len;
Will Newtonf95f3852011-01-02 01:11:59 -05001505 offset += len;
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09001506 remain -= len;
1507 } while (remain);
Will Newtonf95f3852011-01-02 01:11:59 -05001508
Seungwon Jeone74f3a92012-08-01 09:30:46 +09001509 sg_miter->consumed = offset;
Will Newtonf95f3852011-01-02 01:11:59 -05001510 status = mci_readl(host, MINTSTS);
1511 mci_writel(host, RINTSTS, SDMMC_INT_RXDR);
Kyoungil Kim87a74d32013-01-22 16:46:30 +09001512 /* if the RXDR is ready read again */
1513 } while ((status & SDMMC_INT_RXDR) ||
1514 (dto && SDMMC_GET_FCNT(mci_readl(host, STATUS))));
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09001515
1516 if (!remain) {
1517 if (!sg_miter_next(sg_miter))
1518 goto done;
1519 sg_miter->consumed = 0;
1520 }
1521 sg_miter_stop(sg_miter);
Will Newtonf95f3852011-01-02 01:11:59 -05001522 return;
1523
1524done:
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09001525 sg_miter_stop(sg_miter);
1526 host->sg = NULL;
Will Newtonf95f3852011-01-02 01:11:59 -05001527 smp_wmb();
1528 set_bit(EVENT_XFER_COMPLETE, &host->pending_events);
1529}
1530
1531static void dw_mci_write_data_pio(struct dw_mci *host)
1532{
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09001533 struct sg_mapping_iter *sg_miter = &host->sg_miter;
1534 void *buf;
1535 unsigned int offset;
Will Newtonf95f3852011-01-02 01:11:59 -05001536 struct mmc_data *data = host->data;
1537 int shift = host->data_shift;
1538 u32 status;
Markos Chandras3e4b0d82013-03-22 12:50:05 -04001539 unsigned int len;
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09001540 unsigned int fifo_depth = host->fifo_depth;
1541 unsigned int remain, fcnt;
Will Newtonf95f3852011-01-02 01:11:59 -05001542
1543 do {
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09001544 if (!sg_miter_next(sg_miter))
1545 goto done;
Will Newtonf95f3852011-01-02 01:11:59 -05001546
Imre Deak4225fc82013-02-27 17:02:57 -08001547 host->sg = sg_miter->piter.sg;
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09001548 buf = sg_miter->addr;
1549 remain = sg_miter->length;
1550 offset = 0;
1551
1552 do {
1553 fcnt = ((fifo_depth -
1554 SDMMC_GET_FCNT(mci_readl(host, STATUS)))
1555 << shift) - host->part_buf_count;
1556 len = min(remain, fcnt);
1557 if (!len)
1558 break;
1559 host->push_data(host, (void *)(buf + offset), len);
Markos Chandras3e4b0d82013-03-22 12:50:05 -04001560 data->bytes_xfered += len;
Will Newtonf95f3852011-01-02 01:11:59 -05001561 offset += len;
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09001562 remain -= len;
1563 } while (remain);
Will Newtonf95f3852011-01-02 01:11:59 -05001564
Seungwon Jeone74f3a92012-08-01 09:30:46 +09001565 sg_miter->consumed = offset;
Will Newtonf95f3852011-01-02 01:11:59 -05001566 status = mci_readl(host, MINTSTS);
1567 mci_writel(host, RINTSTS, SDMMC_INT_TXDR);
Will Newtonf95f3852011-01-02 01:11:59 -05001568 } while (status & SDMMC_INT_TXDR); /* if TXDR write again */
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09001569
1570 if (!remain) {
1571 if (!sg_miter_next(sg_miter))
1572 goto done;
1573 sg_miter->consumed = 0;
1574 }
1575 sg_miter_stop(sg_miter);
Will Newtonf95f3852011-01-02 01:11:59 -05001576 return;
1577
1578done:
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09001579 sg_miter_stop(sg_miter);
1580 host->sg = NULL;
Will Newtonf95f3852011-01-02 01:11:59 -05001581 smp_wmb();
1582 set_bit(EVENT_XFER_COMPLETE, &host->pending_events);
1583}
1584
1585static void dw_mci_cmd_interrupt(struct dw_mci *host, u32 status)
1586{
1587 if (!host->cmd_status)
1588 host->cmd_status = status;
1589
1590 smp_wmb();
1591
1592 set_bit(EVENT_CMD_COMPLETE, &host->pending_events);
1593 tasklet_schedule(&host->tasklet);
1594}
1595
1596static irqreturn_t dw_mci_interrupt(int irq, void *dev_id)
1597{
1598 struct dw_mci *host = dev_id;
Seungwon Jeon182c9082012-08-01 09:30:30 +09001599 u32 pending;
Shashidhar Hiremath1a5c8e12011-08-29 13:11:46 +05301600 int i;
Will Newtonf95f3852011-01-02 01:11:59 -05001601
Markos Chandras1fb5f682013-03-12 10:53:11 +00001602 pending = mci_readl(host, MINTSTS); /* read-only mask reg */
1603
1604 if (pending) {
Will Newtonf95f3852011-01-02 01:11:59 -05001605
1606 /*
1607 * DTO fix - version 2.10a and below, and only if internal DMA
1608 * is configured.
1609 */
1610 if (host->quirks & DW_MCI_QUIRK_IDMAC_DTO) {
1611 if (!pending &&
1612 ((mci_readl(host, STATUS) >> 17) & 0x1fff))
1613 pending |= SDMMC_INT_DATA_OVER;
1614 }
1615
Will Newtonf95f3852011-01-02 01:11:59 -05001616 if (pending & DW_MCI_CMD_ERROR_FLAGS) {
1617 mci_writel(host, RINTSTS, DW_MCI_CMD_ERROR_FLAGS);
Seungwon Jeon182c9082012-08-01 09:30:30 +09001618 host->cmd_status = pending;
Will Newtonf95f3852011-01-02 01:11:59 -05001619 smp_wmb();
1620 set_bit(EVENT_CMD_COMPLETE, &host->pending_events);
Will Newtonf95f3852011-01-02 01:11:59 -05001621 }
1622
1623 if (pending & DW_MCI_DATA_ERROR_FLAGS) {
1624 /* if there is an error report DATA_ERROR */
1625 mci_writel(host, RINTSTS, DW_MCI_DATA_ERROR_FLAGS);
Seungwon Jeon182c9082012-08-01 09:30:30 +09001626 host->data_status = pending;
Will Newtonf95f3852011-01-02 01:11:59 -05001627 smp_wmb();
1628 set_bit(EVENT_DATA_ERROR, &host->pending_events);
Seungwon Jeon9b2026a2012-08-01 09:30:40 +09001629 tasklet_schedule(&host->tasklet);
Will Newtonf95f3852011-01-02 01:11:59 -05001630 }
1631
1632 if (pending & SDMMC_INT_DATA_OVER) {
1633 mci_writel(host, RINTSTS, SDMMC_INT_DATA_OVER);
1634 if (!host->data_status)
Seungwon Jeon182c9082012-08-01 09:30:30 +09001635 host->data_status = pending;
Will Newtonf95f3852011-01-02 01:11:59 -05001636 smp_wmb();
1637 if (host->dir_status == DW_MCI_RECV_STATUS) {
1638 if (host->sg != NULL)
Kyoungil Kim87a74d32013-01-22 16:46:30 +09001639 dw_mci_read_data_pio(host, true);
Will Newtonf95f3852011-01-02 01:11:59 -05001640 }
1641 set_bit(EVENT_DATA_COMPLETE, &host->pending_events);
1642 tasklet_schedule(&host->tasklet);
1643 }
1644
1645 if (pending & SDMMC_INT_RXDR) {
1646 mci_writel(host, RINTSTS, SDMMC_INT_RXDR);
James Hoganb40af3a2011-06-24 13:54:06 +01001647 if (host->dir_status == DW_MCI_RECV_STATUS && host->sg)
Kyoungil Kim87a74d32013-01-22 16:46:30 +09001648 dw_mci_read_data_pio(host, false);
Will Newtonf95f3852011-01-02 01:11:59 -05001649 }
1650
1651 if (pending & SDMMC_INT_TXDR) {
1652 mci_writel(host, RINTSTS, SDMMC_INT_TXDR);
James Hoganb40af3a2011-06-24 13:54:06 +01001653 if (host->dir_status == DW_MCI_SEND_STATUS && host->sg)
Will Newtonf95f3852011-01-02 01:11:59 -05001654 dw_mci_write_data_pio(host);
1655 }
1656
1657 if (pending & SDMMC_INT_CMD_DONE) {
1658 mci_writel(host, RINTSTS, SDMMC_INT_CMD_DONE);
Seungwon Jeon182c9082012-08-01 09:30:30 +09001659 dw_mci_cmd_interrupt(host, pending);
Will Newtonf95f3852011-01-02 01:11:59 -05001660 }
1661
1662 if (pending & SDMMC_INT_CD) {
1663 mci_writel(host, RINTSTS, SDMMC_INT_CD);
Thomas Abraham95dcc2c2012-05-01 14:57:36 -07001664 queue_work(host->card_workqueue, &host->card_work);
Will Newtonf95f3852011-01-02 01:11:59 -05001665 }
1666
Shashidhar Hiremath1a5c8e12011-08-29 13:11:46 +05301667 /* Handle SDIO Interrupts */
1668 for (i = 0; i < host->num_slots; i++) {
1669 struct dw_mci_slot *slot = host->slot[i];
1670 if (pending & SDMMC_INT_SDIO(i)) {
1671 mci_writel(host, RINTSTS, SDMMC_INT_SDIO(i));
1672 mmc_signal_sdio_irq(slot->mmc);
1673 }
1674 }
1675
Markos Chandras1fb5f682013-03-12 10:53:11 +00001676 }
Will Newtonf95f3852011-01-02 01:11:59 -05001677
1678#ifdef CONFIG_MMC_DW_IDMAC
1679 /* Handle DMA interrupts */
1680 pending = mci_readl(host, IDSTS);
1681 if (pending & (SDMMC_IDMAC_INT_TI | SDMMC_IDMAC_INT_RI)) {
1682 mci_writel(host, IDSTS, SDMMC_IDMAC_INT_TI | SDMMC_IDMAC_INT_RI);
1683 mci_writel(host, IDSTS, SDMMC_IDMAC_INT_NI);
Will Newtonf95f3852011-01-02 01:11:59 -05001684 host->dma_ops->complete(host);
1685 }
1686#endif
1687
1688 return IRQ_HANDLED;
1689}
1690
James Hogan1791b13e2011-06-24 13:55:55 +01001691static void dw_mci_work_routine_card(struct work_struct *work)
Will Newtonf95f3852011-01-02 01:11:59 -05001692{
James Hogan1791b13e2011-06-24 13:55:55 +01001693 struct dw_mci *host = container_of(work, struct dw_mci, card_work);
Will Newtonf95f3852011-01-02 01:11:59 -05001694 int i;
1695
1696 for (i = 0; i < host->num_slots; i++) {
1697 struct dw_mci_slot *slot = host->slot[i];
1698 struct mmc_host *mmc = slot->mmc;
1699 struct mmc_request *mrq;
1700 int present;
1701 u32 ctrl;
1702
1703 present = dw_mci_get_cd(mmc);
1704 while (present != slot->last_detect_state) {
Will Newtonf95f3852011-01-02 01:11:59 -05001705 dev_dbg(&slot->mmc->class_dev, "card %s\n",
1706 present ? "inserted" : "removed");
1707
James Hogan1791b13e2011-06-24 13:55:55 +01001708 spin_lock_bh(&host->lock);
1709
Will Newtonf95f3852011-01-02 01:11:59 -05001710 /* Card change detected */
1711 slot->last_detect_state = present;
1712
James Hogan1791b13e2011-06-24 13:55:55 +01001713 /* Mark card as present if applicable */
1714 if (present != 0)
Will Newtonf95f3852011-01-02 01:11:59 -05001715 set_bit(DW_MMC_CARD_PRESENT, &slot->flags);
Will Newtonf95f3852011-01-02 01:11:59 -05001716
1717 /* Clean up queue if present */
1718 mrq = slot->mrq;
1719 if (mrq) {
1720 if (mrq == host->mrq) {
1721 host->data = NULL;
1722 host->cmd = NULL;
1723
1724 switch (host->state) {
1725 case STATE_IDLE:
1726 break;
1727 case STATE_SENDING_CMD:
1728 mrq->cmd->error = -ENOMEDIUM;
1729 if (!mrq->data)
1730 break;
1731 /* fall through */
1732 case STATE_SENDING_DATA:
1733 mrq->data->error = -ENOMEDIUM;
1734 dw_mci_stop_dma(host);
1735 break;
1736 case STATE_DATA_BUSY:
1737 case STATE_DATA_ERROR:
1738 if (mrq->data->error == -EINPROGRESS)
1739 mrq->data->error = -ENOMEDIUM;
1740 if (!mrq->stop)
1741 break;
1742 /* fall through */
1743 case STATE_SENDING_STOP:
1744 mrq->stop->error = -ENOMEDIUM;
1745 break;
1746 }
1747
1748 dw_mci_request_end(host, mrq);
1749 } else {
1750 list_del(&slot->queue_node);
1751 mrq->cmd->error = -ENOMEDIUM;
1752 if (mrq->data)
1753 mrq->data->error = -ENOMEDIUM;
1754 if (mrq->stop)
1755 mrq->stop->error = -ENOMEDIUM;
1756
1757 spin_unlock(&host->lock);
1758 mmc_request_done(slot->mmc, mrq);
1759 spin_lock(&host->lock);
1760 }
1761 }
1762
1763 /* Power down slot */
1764 if (present == 0) {
Will Newtonf95f3852011-01-02 01:11:59 -05001765 clear_bit(DW_MMC_CARD_PRESENT, &slot->flags);
1766
1767 /*
1768 * Clear down the FIFO - doing so generates a
1769 * block interrupt, hence setting the
1770 * scatter-gather pointer to NULL.
1771 */
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09001772 sg_miter_stop(&host->sg_miter);
Will Newtonf95f3852011-01-02 01:11:59 -05001773 host->sg = NULL;
1774
1775 ctrl = mci_readl(host, CTRL);
1776 ctrl |= SDMMC_CTRL_FIFO_RESET;
1777 mci_writel(host, CTRL, ctrl);
1778
1779#ifdef CONFIG_MMC_DW_IDMAC
1780 ctrl = mci_readl(host, BMOD);
Seungwon Jeon141a7122012-05-22 13:01:03 +09001781 /* Software reset of DMA */
1782 ctrl |= SDMMC_IDMAC_SWRESET;
Will Newtonf95f3852011-01-02 01:11:59 -05001783 mci_writel(host, BMOD, ctrl);
1784#endif
1785
1786 }
1787
James Hogan1791b13e2011-06-24 13:55:55 +01001788 spin_unlock_bh(&host->lock);
1789
Will Newtonf95f3852011-01-02 01:11:59 -05001790 present = dw_mci_get_cd(mmc);
1791 }
1792
1793 mmc_detect_change(slot->mmc,
1794 msecs_to_jiffies(host->pdata->detect_delay_ms));
1795 }
1796}
1797
Thomas Abrahamc91eab42012-09-17 18:16:40 +00001798#ifdef CONFIG_OF
1799/* given a slot id, find out the device node representing that slot */
1800static struct device_node *dw_mci_of_find_slot_node(struct device *dev, u8 slot)
1801{
1802 struct device_node *np;
1803 const __be32 *addr;
1804 int len;
1805
1806 if (!dev || !dev->of_node)
1807 return NULL;
1808
1809 for_each_child_of_node(dev->of_node, np) {
1810 addr = of_get_property(np, "reg", &len);
1811 if (!addr || (len < sizeof(int)))
1812 continue;
1813 if (be32_to_cpup(addr) == slot)
1814 return np;
1815 }
1816 return NULL;
1817}
1818
Doug Andersona70aaa62013-01-11 17:03:50 +00001819static struct dw_mci_of_slot_quirks {
1820 char *quirk;
1821 int id;
1822} of_slot_quirks[] = {
1823 {
1824 .quirk = "disable-wp",
1825 .id = DW_MCI_SLOT_QUIRK_NO_WRITE_PROTECT,
1826 },
1827};
1828
1829static int dw_mci_of_get_slot_quirks(struct device *dev, u8 slot)
1830{
1831 struct device_node *np = dw_mci_of_find_slot_node(dev, slot);
1832 int quirks = 0;
1833 int idx;
1834
1835 /* get quirks */
1836 for (idx = 0; idx < ARRAY_SIZE(of_slot_quirks); idx++)
1837 if (of_get_property(np, of_slot_quirks[idx].quirk, NULL))
1838 quirks |= of_slot_quirks[idx].id;
1839
1840 return quirks;
1841}
1842
Thomas Abrahamc91eab42012-09-17 18:16:40 +00001843/* find out bus-width for a given slot */
1844static u32 dw_mci_of_get_bus_wd(struct device *dev, u8 slot)
1845{
1846 struct device_node *np = dw_mci_of_find_slot_node(dev, slot);
1847 u32 bus_wd = 1;
1848
1849 if (!np)
1850 return 1;
1851
1852 if (of_property_read_u32(np, "bus-width", &bus_wd))
1853 dev_err(dev, "bus-width property not found, assuming width"
1854 " as 1\n");
1855 return bus_wd;
1856}
Doug Anderson55a6ceb2013-01-11 17:03:53 +00001857
1858/* find the write protect gpio for a given slot; or -1 if none specified */
1859static int dw_mci_of_get_wp_gpio(struct device *dev, u8 slot)
1860{
1861 struct device_node *np = dw_mci_of_find_slot_node(dev, slot);
1862 int gpio;
1863
1864 if (!np)
1865 return -EINVAL;
1866
1867 gpio = of_get_named_gpio(np, "wp-gpios", 0);
1868
1869 /* Having a missing entry is valid; return silently */
1870 if (!gpio_is_valid(gpio))
1871 return -EINVAL;
1872
1873 if (devm_gpio_request(dev, gpio, "dw-mci-wp")) {
1874 dev_warn(dev, "gpio [%d] request failed\n", gpio);
1875 return -EINVAL;
1876 }
1877
1878 return gpio;
1879}
Thomas Abrahamc91eab42012-09-17 18:16:40 +00001880#else /* CONFIG_OF */
Doug Andersona70aaa62013-01-11 17:03:50 +00001881static int dw_mci_of_get_slot_quirks(struct device *dev, u8 slot)
1882{
1883 return 0;
1884}
Thomas Abrahamc91eab42012-09-17 18:16:40 +00001885static u32 dw_mci_of_get_bus_wd(struct device *dev, u8 slot)
1886{
1887 return 1;
1888}
1889static struct device_node *dw_mci_of_find_slot_node(struct device *dev, u8 slot)
1890{
1891 return NULL;
1892}
Doug Anderson55a6ceb2013-01-11 17:03:53 +00001893static int dw_mci_of_get_wp_gpio(struct device *dev, u8 slot)
1894{
1895 return -EINVAL;
1896}
Thomas Abrahamc91eab42012-09-17 18:16:40 +00001897#endif /* CONFIG_OF */
1898
Jaehoon Chung36c179a2012-08-23 20:31:48 +09001899static int dw_mci_init_slot(struct dw_mci *host, unsigned int id)
Will Newtonf95f3852011-01-02 01:11:59 -05001900{
1901 struct mmc_host *mmc;
1902 struct dw_mci_slot *slot;
Arnd Bergmanne95baf12012-11-08 14:26:11 +00001903 const struct dw_mci_drv_data *drv_data = host->drv_data;
Thomas Abraham800d78b2012-09-17 18:16:42 +00001904 int ctrl_id, ret;
Thomas Abrahamc91eab42012-09-17 18:16:40 +00001905 u8 bus_width;
Will Newtonf95f3852011-01-02 01:11:59 -05001906
Thomas Abraham4a909202012-09-17 18:16:35 +00001907 mmc = mmc_alloc_host(sizeof(struct dw_mci_slot), host->dev);
Will Newtonf95f3852011-01-02 01:11:59 -05001908 if (!mmc)
1909 return -ENOMEM;
1910
1911 slot = mmc_priv(mmc);
1912 slot->id = id;
1913 slot->mmc = mmc;
1914 slot->host = host;
Thomas Abrahamc91eab42012-09-17 18:16:40 +00001915 host->slot[id] = slot;
Will Newtonf95f3852011-01-02 01:11:59 -05001916
Doug Andersona70aaa62013-01-11 17:03:50 +00001917 slot->quirks = dw_mci_of_get_slot_quirks(host->dev, slot->id);
1918
Will Newtonf95f3852011-01-02 01:11:59 -05001919 mmc->ops = &dw_mci_ops;
1920 mmc->f_min = DIV_ROUND_UP(host->bus_hz, 510);
1921 mmc->f_max = host->bus_hz;
1922
1923 if (host->pdata->get_ocr)
1924 mmc->ocr_avail = host->pdata->get_ocr(id);
1925 else
1926 mmc->ocr_avail = MMC_VDD_32_33 | MMC_VDD_33_34;
1927
1928 /*
1929 * Start with slot power disabled, it will be enabled when a card
1930 * is detected.
1931 */
1932 if (host->pdata->setpower)
1933 host->pdata->setpower(id, 0);
1934
Jaehoon Chungfc3d7722011-02-25 11:08:15 +09001935 if (host->pdata->caps)
1936 mmc->caps = host->pdata->caps;
Jaehoon Chungfc3d7722011-02-25 11:08:15 +09001937
Abhilash Kesavanab269122012-11-19 10:26:21 +05301938 if (host->pdata->pm_caps)
1939 mmc->pm_caps = host->pdata->pm_caps;
1940
Thomas Abraham800d78b2012-09-17 18:16:42 +00001941 if (host->dev->of_node) {
1942 ctrl_id = of_alias_get_id(host->dev->of_node, "mshc");
1943 if (ctrl_id < 0)
1944 ctrl_id = 0;
1945 } else {
1946 ctrl_id = to_platform_device(host->dev)->id;
1947 }
James Hogancb27a842012-10-16 09:43:08 +01001948 if (drv_data && drv_data->caps)
1949 mmc->caps |= drv_data->caps[ctrl_id];
Thomas Abraham800d78b2012-09-17 18:16:42 +00001950
Seungwon Jeon4f408cc2011-12-09 14:55:52 +09001951 if (host->pdata->caps2)
1952 mmc->caps2 = host->pdata->caps2;
Seungwon Jeon4f408cc2011-12-09 14:55:52 +09001953
Will Newtonf95f3852011-01-02 01:11:59 -05001954 if (host->pdata->get_bus_wd)
Thomas Abrahamc91eab42012-09-17 18:16:40 +00001955 bus_width = host->pdata->get_bus_wd(slot->id);
1956 else if (host->dev->of_node)
1957 bus_width = dw_mci_of_get_bus_wd(host->dev, slot->id);
1958 else
1959 bus_width = 1;
1960
1961 switch (bus_width) {
1962 case 8:
1963 mmc->caps |= MMC_CAP_8_BIT_DATA;
1964 case 4:
1965 mmc->caps |= MMC_CAP_4_BIT_DATA;
1966 }
Will Newtonf95f3852011-01-02 01:11:59 -05001967
1968 if (host->pdata->quirks & DW_MCI_QUIRK_HIGHSPEED)
Seungwon Jeon6daa7772011-08-05 12:35:03 +09001969 mmc->caps |= MMC_CAP_SD_HIGHSPEED | MMC_CAP_MMC_HIGHSPEED;
Will Newtonf95f3852011-01-02 01:11:59 -05001970
Will Newtonf95f3852011-01-02 01:11:59 -05001971 if (host->pdata->blk_settings) {
1972 mmc->max_segs = host->pdata->blk_settings->max_segs;
1973 mmc->max_blk_size = host->pdata->blk_settings->max_blk_size;
1974 mmc->max_blk_count = host->pdata->blk_settings->max_blk_count;
1975 mmc->max_req_size = host->pdata->blk_settings->max_req_size;
1976 mmc->max_seg_size = host->pdata->blk_settings->max_seg_size;
1977 } else {
1978 /* Useful defaults if platform data is unset. */
Jaehoon Chunga39e5742012-02-04 17:00:27 -05001979#ifdef CONFIG_MMC_DW_IDMAC
1980 mmc->max_segs = host->ring_size;
1981 mmc->max_blk_size = 65536;
1982 mmc->max_blk_count = host->ring_size;
1983 mmc->max_seg_size = 0x1000;
1984 mmc->max_req_size = mmc->max_seg_size * mmc->max_blk_count;
1985#else
Will Newtonf95f3852011-01-02 01:11:59 -05001986 mmc->max_segs = 64;
1987 mmc->max_blk_size = 65536; /* BLKSIZ is 16 bits */
1988 mmc->max_blk_count = 512;
1989 mmc->max_req_size = mmc->max_blk_size * mmc->max_blk_count;
1990 mmc->max_seg_size = mmc->max_req_size;
Will Newtonf95f3852011-01-02 01:11:59 -05001991#endif /* CONFIG_MMC_DW_IDMAC */
Jaehoon Chunga39e5742012-02-04 17:00:27 -05001992 }
Will Newtonf95f3852011-01-02 01:11:59 -05001993
1994 if (dw_mci_get_cd(mmc))
1995 set_bit(DW_MMC_CARD_PRESENT, &slot->flags);
1996 else
1997 clear_bit(DW_MMC_CARD_PRESENT, &slot->flags);
1998
Doug Anderson55a6ceb2013-01-11 17:03:53 +00001999 slot->wp_gpio = dw_mci_of_get_wp_gpio(host->dev, slot->id);
2000
Jaehoon Chung0cea5292013-02-15 23:45:45 +09002001 ret = mmc_add_host(mmc);
2002 if (ret)
2003 goto err_setup_bus;
Will Newtonf95f3852011-01-02 01:11:59 -05002004
2005#if defined(CONFIG_DEBUG_FS)
2006 dw_mci_init_debugfs(slot);
2007#endif
2008
2009 /* Card initially undetected */
2010 slot->last_detect_state = 0;
2011
Will Newtondd6c4b92011-02-10 14:37:03 -05002012 /*
2013 * Card may have been plugged in prior to boot so we
2014 * need to run the detect tasklet
2015 */
Thomas Abraham95dcc2c2012-05-01 14:57:36 -07002016 queue_work(host->card_workqueue, &host->card_work);
Will Newtondd6c4b92011-02-10 14:37:03 -05002017
Will Newtonf95f3852011-01-02 01:11:59 -05002018 return 0;
Thomas Abraham800d78b2012-09-17 18:16:42 +00002019
2020err_setup_bus:
2021 mmc_free_host(mmc);
2022 return -EINVAL;
Will Newtonf95f3852011-01-02 01:11:59 -05002023}
2024
2025static void dw_mci_cleanup_slot(struct dw_mci_slot *slot, unsigned int id)
2026{
2027 /* Shutdown detect IRQ */
2028 if (slot->host->pdata->exit)
2029 slot->host->pdata->exit(id);
2030
2031 /* Debugfs stuff is cleaned up by mmc core */
2032 mmc_remove_host(slot->mmc);
2033 slot->host->slot[id] = NULL;
2034 mmc_free_host(slot->mmc);
2035}
2036
2037static void dw_mci_init_dma(struct dw_mci *host)
2038{
2039 /* Alloc memory for sg translation */
Seungwon Jeon780f22a2012-11-28 19:26:03 +09002040 host->sg_cpu = dmam_alloc_coherent(host->dev, PAGE_SIZE,
Will Newtonf95f3852011-01-02 01:11:59 -05002041 &host->sg_dma, GFP_KERNEL);
2042 if (!host->sg_cpu) {
Thomas Abraham4a909202012-09-17 18:16:35 +00002043 dev_err(host->dev, "%s: could not alloc DMA memory\n",
Will Newtonf95f3852011-01-02 01:11:59 -05002044 __func__);
2045 goto no_dma;
2046 }
2047
2048 /* Determine which DMA interface to use */
2049#ifdef CONFIG_MMC_DW_IDMAC
2050 host->dma_ops = &dw_mci_idmac_ops;
Seungwon Jeon00956ea2012-09-28 19:13:11 +09002051 dev_info(host->dev, "Using internal DMA controller.\n");
Will Newtonf95f3852011-01-02 01:11:59 -05002052#endif
2053
2054 if (!host->dma_ops)
2055 goto no_dma;
2056
Jaehoon Chunge1631f92012-04-18 15:42:31 +09002057 if (host->dma_ops->init && host->dma_ops->start &&
2058 host->dma_ops->stop && host->dma_ops->cleanup) {
Will Newtonf95f3852011-01-02 01:11:59 -05002059 if (host->dma_ops->init(host)) {
Thomas Abraham4a909202012-09-17 18:16:35 +00002060 dev_err(host->dev, "%s: Unable to initialize "
Will Newtonf95f3852011-01-02 01:11:59 -05002061 "DMA Controller.\n", __func__);
2062 goto no_dma;
2063 }
2064 } else {
Thomas Abraham4a909202012-09-17 18:16:35 +00002065 dev_err(host->dev, "DMA initialization not found.\n");
Will Newtonf95f3852011-01-02 01:11:59 -05002066 goto no_dma;
2067 }
2068
2069 host->use_dma = 1;
2070 return;
2071
2072no_dma:
Thomas Abraham4a909202012-09-17 18:16:35 +00002073 dev_info(host->dev, "Using PIO mode.\n");
Will Newtonf95f3852011-01-02 01:11:59 -05002074 host->use_dma = 0;
2075 return;
2076}
2077
2078static bool mci_wait_reset(struct device *dev, struct dw_mci *host)
2079{
2080 unsigned long timeout = jiffies + msecs_to_jiffies(500);
2081 unsigned int ctrl;
2082
2083 mci_writel(host, CTRL, (SDMMC_CTRL_RESET | SDMMC_CTRL_FIFO_RESET |
2084 SDMMC_CTRL_DMA_RESET));
2085
2086 /* wait till resets clear */
2087 do {
2088 ctrl = mci_readl(host, CTRL);
2089 if (!(ctrl & (SDMMC_CTRL_RESET | SDMMC_CTRL_FIFO_RESET |
2090 SDMMC_CTRL_DMA_RESET)))
2091 return true;
2092 } while (time_before(jiffies, timeout));
2093
2094 dev_err(dev, "Timeout resetting block (ctrl %#x)\n", ctrl);
2095
2096 return false;
2097}
2098
Thomas Abrahamc91eab42012-09-17 18:16:40 +00002099#ifdef CONFIG_OF
2100static struct dw_mci_of_quirks {
2101 char *quirk;
2102 int id;
2103} of_quirks[] = {
2104 {
2105 .quirk = "supports-highspeed",
2106 .id = DW_MCI_QUIRK_HIGHSPEED,
2107 }, {
2108 .quirk = "broken-cd",
2109 .id = DW_MCI_QUIRK_BROKEN_CARD_DETECTION,
2110 },
2111};
2112
2113static struct dw_mci_board *dw_mci_parse_dt(struct dw_mci *host)
2114{
2115 struct dw_mci_board *pdata;
2116 struct device *dev = host->dev;
2117 struct device_node *np = dev->of_node;
Arnd Bergmanne95baf12012-11-08 14:26:11 +00002118 const struct dw_mci_drv_data *drv_data = host->drv_data;
Thomas Abraham800d78b2012-09-17 18:16:42 +00002119 int idx, ret;
Doug Anderson3c6d89e2013-06-07 10:28:30 -07002120 u32 clock_frequency;
Thomas Abrahamc91eab42012-09-17 18:16:40 +00002121
2122 pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL);
2123 if (!pdata) {
2124 dev_err(dev, "could not allocate memory for pdata\n");
2125 return ERR_PTR(-ENOMEM);
2126 }
2127
2128 /* find out number of slots supported */
2129 if (of_property_read_u32(dev->of_node, "num-slots",
2130 &pdata->num_slots)) {
2131 dev_info(dev, "num-slots property not found, "
2132 "assuming 1 slot is available\n");
2133 pdata->num_slots = 1;
2134 }
2135
2136 /* get quirks */
2137 for (idx = 0; idx < ARRAY_SIZE(of_quirks); idx++)
2138 if (of_get_property(np, of_quirks[idx].quirk, NULL))
2139 pdata->quirks |= of_quirks[idx].id;
2140
2141 if (of_property_read_u32(np, "fifo-depth", &pdata->fifo_depth))
2142 dev_info(dev, "fifo-depth property not found, using "
2143 "value of FIFOTH register as default\n");
2144
2145 of_property_read_u32(np, "card-detect-delay", &pdata->detect_delay_ms);
2146
Doug Anderson3c6d89e2013-06-07 10:28:30 -07002147 if (!of_property_read_u32(np, "clock-frequency", &clock_frequency))
2148 pdata->bus_hz = clock_frequency;
2149
James Hogancb27a842012-10-16 09:43:08 +01002150 if (drv_data && drv_data->parse_dt) {
2151 ret = drv_data->parse_dt(host);
Thomas Abraham800d78b2012-09-17 18:16:42 +00002152 if (ret)
2153 return ERR_PTR(ret);
2154 }
2155
Abhilash Kesavanab269122012-11-19 10:26:21 +05302156 if (of_find_property(np, "keep-power-in-suspend", NULL))
2157 pdata->pm_caps |= MMC_PM_KEEP_POWER;
2158
2159 if (of_find_property(np, "enable-sdio-wakeup", NULL))
2160 pdata->pm_caps |= MMC_PM_WAKE_SDIO_IRQ;
2161
Thomas Abrahamc91eab42012-09-17 18:16:40 +00002162 return pdata;
2163}
2164
2165#else /* CONFIG_OF */
2166static struct dw_mci_board *dw_mci_parse_dt(struct dw_mci *host)
2167{
2168 return ERR_PTR(-EINVAL);
2169}
2170#endif /* CONFIG_OF */
2171
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05302172int dw_mci_probe(struct dw_mci *host)
Will Newtonf95f3852011-01-02 01:11:59 -05002173{
Arnd Bergmanne95baf12012-11-08 14:26:11 +00002174 const struct dw_mci_drv_data *drv_data = host->drv_data;
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05302175 int width, i, ret = 0;
Will Newtonf95f3852011-01-02 01:11:59 -05002176 u32 fifo_size;
Thomas Abraham1c2215b2012-09-17 18:16:37 +00002177 int init_slots = 0;
Will Newtonf95f3852011-01-02 01:11:59 -05002178
Thomas Abrahamc91eab42012-09-17 18:16:40 +00002179 if (!host->pdata) {
2180 host->pdata = dw_mci_parse_dt(host);
2181 if (IS_ERR(host->pdata)) {
2182 dev_err(host->dev, "platform data not available\n");
2183 return -EINVAL;
2184 }
Will Newtonf95f3852011-01-02 01:11:59 -05002185 }
2186
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05302187 if (!host->pdata->select_slot && host->pdata->num_slots > 1) {
Thomas Abraham4a909202012-09-17 18:16:35 +00002188 dev_err(host->dev,
Will Newtonf95f3852011-01-02 01:11:59 -05002189 "Platform data must supply select_slot function\n");
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05302190 return -ENODEV;
Will Newtonf95f3852011-01-02 01:11:59 -05002191 }
2192
Seungwon Jeon780f22a2012-11-28 19:26:03 +09002193 host->biu_clk = devm_clk_get(host->dev, "biu");
Thomas Abrahamf90a0612012-09-17 18:16:38 +00002194 if (IS_ERR(host->biu_clk)) {
2195 dev_dbg(host->dev, "biu clock not available\n");
2196 } else {
2197 ret = clk_prepare_enable(host->biu_clk);
2198 if (ret) {
2199 dev_err(host->dev, "failed to enable biu clock\n");
Thomas Abrahamf90a0612012-09-17 18:16:38 +00002200 return ret;
2201 }
Will Newtonf95f3852011-01-02 01:11:59 -05002202 }
2203
Seungwon Jeon780f22a2012-11-28 19:26:03 +09002204 host->ciu_clk = devm_clk_get(host->dev, "ciu");
Thomas Abrahamf90a0612012-09-17 18:16:38 +00002205 if (IS_ERR(host->ciu_clk)) {
2206 dev_dbg(host->dev, "ciu clock not available\n");
Doug Anderson3c6d89e2013-06-07 10:28:30 -07002207 host->bus_hz = host->pdata->bus_hz;
Thomas Abrahamf90a0612012-09-17 18:16:38 +00002208 } else {
2209 ret = clk_prepare_enable(host->ciu_clk);
2210 if (ret) {
2211 dev_err(host->dev, "failed to enable ciu clock\n");
Thomas Abrahamf90a0612012-09-17 18:16:38 +00002212 goto err_clk_biu;
2213 }
Thomas Abrahamf90a0612012-09-17 18:16:38 +00002214
Doug Anderson3c6d89e2013-06-07 10:28:30 -07002215 if (host->pdata->bus_hz) {
2216 ret = clk_set_rate(host->ciu_clk, host->pdata->bus_hz);
2217 if (ret)
2218 dev_warn(host->dev,
2219 "Unable to set bus rate to %ul\n",
2220 host->pdata->bus_hz);
2221 }
Thomas Abrahamf90a0612012-09-17 18:16:38 +00002222 host->bus_hz = clk_get_rate(host->ciu_clk);
Doug Anderson3c6d89e2013-06-07 10:28:30 -07002223 }
Thomas Abrahamf90a0612012-09-17 18:16:38 +00002224
James Hogancb27a842012-10-16 09:43:08 +01002225 if (drv_data && drv_data->setup_clock) {
2226 ret = drv_data->setup_clock(host);
Thomas Abraham800d78b2012-09-17 18:16:42 +00002227 if (ret) {
2228 dev_err(host->dev,
2229 "implementation specific clock setup failed\n");
2230 goto err_clk_ciu;
2231 }
2232 }
2233
Mark Browna55d6ff2013-07-29 21:55:27 +01002234 host->vmmc = devm_regulator_get_optional(host->dev, "vmmc");
Doug Anderson870556a2013-06-07 10:28:29 -07002235 if (IS_ERR(host->vmmc)) {
2236 ret = PTR_ERR(host->vmmc);
2237 if (ret == -EPROBE_DEFER)
2238 goto err_clk_ciu;
2239
2240 dev_info(host->dev, "no vmmc regulator found: %d\n", ret);
2241 host->vmmc = NULL;
2242 } else {
2243 ret = regulator_enable(host->vmmc);
2244 if (ret) {
2245 if (ret != -EPROBE_DEFER)
2246 dev_err(host->dev,
2247 "regulator_enable fail: %d\n", ret);
2248 goto err_clk_ciu;
2249 }
2250 }
2251
Thomas Abrahamf90a0612012-09-17 18:16:38 +00002252 if (!host->bus_hz) {
2253 dev_err(host->dev,
2254 "Platform data must supply bus speed\n");
2255 ret = -ENODEV;
Doug Anderson870556a2013-06-07 10:28:29 -07002256 goto err_regulator;
Thomas Abrahamf90a0612012-09-17 18:16:38 +00002257 }
2258
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05302259 host->quirks = host->pdata->quirks;
Will Newtonf95f3852011-01-02 01:11:59 -05002260
2261 spin_lock_init(&host->lock);
2262 INIT_LIST_HEAD(&host->queue);
2263
Will Newtonf95f3852011-01-02 01:11:59 -05002264 /*
2265 * Get the host data width - this assumes that HCON has been set with
2266 * the correct values.
2267 */
2268 i = (mci_readl(host, HCON) >> 7) & 0x7;
2269 if (!i) {
2270 host->push_data = dw_mci_push_data16;
2271 host->pull_data = dw_mci_pull_data16;
2272 width = 16;
2273 host->data_shift = 1;
2274 } else if (i == 2) {
2275 host->push_data = dw_mci_push_data64;
2276 host->pull_data = dw_mci_pull_data64;
2277 width = 64;
2278 host->data_shift = 3;
2279 } else {
2280 /* Check for a reserved value, and warn if it is */
2281 WARN((i != 1),
2282 "HCON reports a reserved host data width!\n"
2283 "Defaulting to 32-bit access.\n");
2284 host->push_data = dw_mci_push_data32;
2285 host->pull_data = dw_mci_pull_data32;
2286 width = 32;
2287 host->data_shift = 2;
2288 }
2289
2290 /* Reset all blocks */
Thomas Abraham4a909202012-09-17 18:16:35 +00002291 if (!mci_wait_reset(host->dev, host))
Seungwon Jeon141a7122012-05-22 13:01:03 +09002292 return -ENODEV;
2293
2294 host->dma_ops = host->pdata->dma_ops;
2295 dw_mci_init_dma(host);
Will Newtonf95f3852011-01-02 01:11:59 -05002296
2297 /* Clear the interrupts for the host controller */
2298 mci_writel(host, RINTSTS, 0xFFFFFFFF);
2299 mci_writel(host, INTMASK, 0); /* disable all mmc interrupt first */
2300
2301 /* Put in max timeout */
2302 mci_writel(host, TMOUT, 0xFFFFFFFF);
2303
2304 /*
2305 * FIFO threshold settings RxMark = fifo_size / 2 - 1,
2306 * Tx Mark = fifo_size / 2 DMA Size = 8
2307 */
James Hoganb86d8252011-06-24 13:57:18 +01002308 if (!host->pdata->fifo_depth) {
2309 /*
2310 * Power-on value of RX_WMark is FIFO_DEPTH-1, but this may
2311 * have been overwritten by the bootloader, just like we're
2312 * about to do, so if you know the value for your hardware, you
2313 * should put it in the platform data.
2314 */
2315 fifo_size = mci_readl(host, FIFOTH);
Jaehoon Chung8234e862012-01-11 09:28:21 +00002316 fifo_size = 1 + ((fifo_size >> 16) & 0xfff);
James Hoganb86d8252011-06-24 13:57:18 +01002317 } else {
2318 fifo_size = host->pdata->fifo_depth;
2319 }
2320 host->fifo_depth = fifo_size;
Jaehoon Chunge61cf112011-03-17 20:32:33 +09002321 host->fifoth_val = ((0x2 << 28) | ((fifo_size/2 - 1) << 16) |
2322 ((fifo_size/2) << 0));
2323 mci_writel(host, FIFOTH, host->fifoth_val);
Will Newtonf95f3852011-01-02 01:11:59 -05002324
2325 /* disable clock to CIU */
2326 mci_writel(host, CLKENA, 0);
2327 mci_writel(host, CLKSRC, 0);
2328
James Hogan63008762013-03-12 10:43:54 +00002329 /*
2330 * In 2.40a spec, Data offset is changed.
2331 * Need to check the version-id and set data-offset for DATA register.
2332 */
2333 host->verid = SDMMC_GET_VERID(mci_readl(host, VERID));
2334 dev_info(host->dev, "Version ID is %04x\n", host->verid);
2335
2336 if (host->verid < DW_MMC_240A)
2337 host->data_offset = DATA_OFFSET;
2338 else
2339 host->data_offset = DATA_240A_OFFSET;
2340
Will Newtonf95f3852011-01-02 01:11:59 -05002341 tasklet_init(&host->tasklet, dw_mci_tasklet_func, (unsigned long)host);
Thomas Abraham95dcc2c2012-05-01 14:57:36 -07002342 host->card_workqueue = alloc_workqueue("dw-mci-card",
James Hogan1791b13e2011-06-24 13:55:55 +01002343 WQ_MEM_RECLAIM | WQ_NON_REENTRANT, 1);
Wei Yongjunef7aef92013-04-19 09:25:45 +08002344 if (!host->card_workqueue) {
2345 ret = -ENOMEM;
James Hogan1791b13e2011-06-24 13:55:55 +01002346 goto err_dmaunmap;
Wei Yongjunef7aef92013-04-19 09:25:45 +08002347 }
James Hogan1791b13e2011-06-24 13:55:55 +01002348 INIT_WORK(&host->card_work, dw_mci_work_routine_card);
Seungwon Jeon780f22a2012-11-28 19:26:03 +09002349 ret = devm_request_irq(host->dev, host->irq, dw_mci_interrupt,
2350 host->irq_flags, "dw-mci", host);
Will Newtonf95f3852011-01-02 01:11:59 -05002351 if (ret)
James Hogan1791b13e2011-06-24 13:55:55 +01002352 goto err_workqueue;
Will Newtonf95f3852011-01-02 01:11:59 -05002353
Will Newtonf95f3852011-01-02 01:11:59 -05002354 if (host->pdata->num_slots)
2355 host->num_slots = host->pdata->num_slots;
2356 else
2357 host->num_slots = ((mci_readl(host, HCON) >> 1) & 0x1F) + 1;
2358
Yuvaraj CD2da1d7f2012-10-08 14:29:51 +05302359 /*
2360 * Enable interrupts for command done, data over, data empty, card det,
2361 * receive ready and error such as transmit, receive timeout, crc error
2362 */
2363 mci_writel(host, RINTSTS, 0xFFFFFFFF);
2364 mci_writel(host, INTMASK, SDMMC_INT_CMD_DONE | SDMMC_INT_DATA_OVER |
2365 SDMMC_INT_TXDR | SDMMC_INT_RXDR |
2366 DW_MCI_ERROR_FLAGS | SDMMC_INT_CD);
2367 mci_writel(host, CTRL, SDMMC_CTRL_INT_ENABLE); /* Enable mci interrupt */
2368
2369 dev_info(host->dev, "DW MMC controller at irq %d, "
2370 "%d bit host data width, "
2371 "%u deep fifo\n",
2372 host->irq, width, fifo_size);
2373
Will Newtonf95f3852011-01-02 01:11:59 -05002374 /* We need at least one slot to succeed */
2375 for (i = 0; i < host->num_slots; i++) {
2376 ret = dw_mci_init_slot(host, i);
Thomas Abraham1c2215b2012-09-17 18:16:37 +00002377 if (ret)
2378 dev_dbg(host->dev, "slot %d init failed\n", i);
2379 else
2380 init_slots++;
2381 }
2382
2383 if (init_slots) {
2384 dev_info(host->dev, "%d slots initialized\n", init_slots);
2385 } else {
2386 dev_dbg(host->dev, "attempted to initialize %d slots, "
2387 "but failed on all\n", host->num_slots);
Seungwon Jeon780f22a2012-11-28 19:26:03 +09002388 goto err_workqueue;
Will Newtonf95f3852011-01-02 01:11:59 -05002389 }
2390
Will Newtonf95f3852011-01-02 01:11:59 -05002391 if (host->quirks & DW_MCI_QUIRK_IDMAC_DTO)
Thomas Abraham4a909202012-09-17 18:16:35 +00002392 dev_info(host->dev, "Internal DMAC interrupt fix enabled.\n");
Will Newtonf95f3852011-01-02 01:11:59 -05002393
2394 return 0;
2395
James Hogan1791b13e2011-06-24 13:55:55 +01002396err_workqueue:
Thomas Abraham95dcc2c2012-05-01 14:57:36 -07002397 destroy_workqueue(host->card_workqueue);
James Hogan1791b13e2011-06-24 13:55:55 +01002398
Will Newtonf95f3852011-01-02 01:11:59 -05002399err_dmaunmap:
2400 if (host->use_dma && host->dma_ops->exit)
2401 host->dma_ops->exit(host);
Will Newtonf95f3852011-01-02 01:11:59 -05002402
Doug Anderson870556a2013-06-07 10:28:29 -07002403err_regulator:
Seungwon Jeon780f22a2012-11-28 19:26:03 +09002404 if (host->vmmc)
Jaehoon Chungc07946a2011-02-25 11:08:14 +09002405 regulator_disable(host->vmmc);
Thomas Abrahamf90a0612012-09-17 18:16:38 +00002406
2407err_clk_ciu:
Seungwon Jeon780f22a2012-11-28 19:26:03 +09002408 if (!IS_ERR(host->ciu_clk))
Thomas Abrahamf90a0612012-09-17 18:16:38 +00002409 clk_disable_unprepare(host->ciu_clk);
Seungwon Jeon780f22a2012-11-28 19:26:03 +09002410
Thomas Abrahamf90a0612012-09-17 18:16:38 +00002411err_clk_biu:
Seungwon Jeon780f22a2012-11-28 19:26:03 +09002412 if (!IS_ERR(host->biu_clk))
Thomas Abrahamf90a0612012-09-17 18:16:38 +00002413 clk_disable_unprepare(host->biu_clk);
Seungwon Jeon780f22a2012-11-28 19:26:03 +09002414
Will Newtonf95f3852011-01-02 01:11:59 -05002415 return ret;
2416}
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05302417EXPORT_SYMBOL(dw_mci_probe);
Will Newtonf95f3852011-01-02 01:11:59 -05002418
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05302419void dw_mci_remove(struct dw_mci *host)
Will Newtonf95f3852011-01-02 01:11:59 -05002420{
Will Newtonf95f3852011-01-02 01:11:59 -05002421 int i;
2422
2423 mci_writel(host, RINTSTS, 0xFFFFFFFF);
2424 mci_writel(host, INTMASK, 0); /* disable all mmc interrupt first */
2425
Will Newtonf95f3852011-01-02 01:11:59 -05002426 for (i = 0; i < host->num_slots; i++) {
Thomas Abraham4a909202012-09-17 18:16:35 +00002427 dev_dbg(host->dev, "remove slot %d\n", i);
Will Newtonf95f3852011-01-02 01:11:59 -05002428 if (host->slot[i])
2429 dw_mci_cleanup_slot(host->slot[i], i);
2430 }
2431
2432 /* disable clock to CIU */
2433 mci_writel(host, CLKENA, 0);
2434 mci_writel(host, CLKSRC, 0);
2435
Thomas Abraham95dcc2c2012-05-01 14:57:36 -07002436 destroy_workqueue(host->card_workqueue);
Will Newtonf95f3852011-01-02 01:11:59 -05002437
2438 if (host->use_dma && host->dma_ops->exit)
2439 host->dma_ops->exit(host);
2440
Seungwon Jeon780f22a2012-11-28 19:26:03 +09002441 if (host->vmmc)
Jaehoon Chungc07946a2011-02-25 11:08:14 +09002442 regulator_disable(host->vmmc);
Jaehoon Chungc07946a2011-02-25 11:08:14 +09002443
Thomas Abrahamf90a0612012-09-17 18:16:38 +00002444 if (!IS_ERR(host->ciu_clk))
2445 clk_disable_unprepare(host->ciu_clk);
Seungwon Jeon780f22a2012-11-28 19:26:03 +09002446
Thomas Abrahamf90a0612012-09-17 18:16:38 +00002447 if (!IS_ERR(host->biu_clk))
2448 clk_disable_unprepare(host->biu_clk);
Will Newtonf95f3852011-01-02 01:11:59 -05002449}
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05302450EXPORT_SYMBOL(dw_mci_remove);
2451
2452
Will Newtonf95f3852011-01-02 01:11:59 -05002453
Jaehoon Chung6fe88902011-12-08 19:23:03 +09002454#ifdef CONFIG_PM_SLEEP
Will Newtonf95f3852011-01-02 01:11:59 -05002455/*
2456 * TODO: we should probably disable the clock to the card in the suspend path.
2457 */
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05302458int dw_mci_suspend(struct dw_mci *host)
Will Newtonf95f3852011-01-02 01:11:59 -05002459{
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05302460 int i, ret = 0;
Will Newtonf95f3852011-01-02 01:11:59 -05002461
2462 for (i = 0; i < host->num_slots; i++) {
2463 struct dw_mci_slot *slot = host->slot[i];
2464 if (!slot)
2465 continue;
2466 ret = mmc_suspend_host(slot->mmc);
2467 if (ret < 0) {
2468 while (--i >= 0) {
2469 slot = host->slot[i];
2470 if (slot)
2471 mmc_resume_host(host->slot[i]->mmc);
2472 }
2473 return ret;
2474 }
2475 }
2476
Jaehoon Chungc07946a2011-02-25 11:08:14 +09002477 if (host->vmmc)
2478 regulator_disable(host->vmmc);
2479
Will Newtonf95f3852011-01-02 01:11:59 -05002480 return 0;
2481}
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05302482EXPORT_SYMBOL(dw_mci_suspend);
Will Newtonf95f3852011-01-02 01:11:59 -05002483
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05302484int dw_mci_resume(struct dw_mci *host)
Will Newtonf95f3852011-01-02 01:11:59 -05002485{
2486 int i, ret;
Will Newtonf95f3852011-01-02 01:11:59 -05002487
Sachin Kamatf2f942c2013-04-04 11:25:10 +05302488 if (host->vmmc) {
2489 ret = regulator_enable(host->vmmc);
2490 if (ret) {
2491 dev_err(host->dev,
2492 "failed to enable regulator: %d\n", ret);
2493 return ret;
2494 }
2495 }
Jaehoon Chung1d6c4e02011-05-11 15:52:39 +09002496
Thomas Abraham4a909202012-09-17 18:16:35 +00002497 if (!mci_wait_reset(host->dev, host)) {
Jaehoon Chunge61cf112011-03-17 20:32:33 +09002498 ret = -ENODEV;
2499 return ret;
2500 }
2501
Jonathan Kliegman3bfe6192012-06-14 13:31:55 -04002502 if (host->use_dma && host->dma_ops->init)
Seungwon Jeon141a7122012-05-22 13:01:03 +09002503 host->dma_ops->init(host);
2504
Jaehoon Chunge61cf112011-03-17 20:32:33 +09002505 /* Restore the old value at FIFOTH register */
2506 mci_writel(host, FIFOTH, host->fifoth_val);
2507
2508 mci_writel(host, RINTSTS, 0xFFFFFFFF);
2509 mci_writel(host, INTMASK, SDMMC_INT_CMD_DONE | SDMMC_INT_DATA_OVER |
2510 SDMMC_INT_TXDR | SDMMC_INT_RXDR |
2511 DW_MCI_ERROR_FLAGS | SDMMC_INT_CD);
2512 mci_writel(host, CTRL, SDMMC_CTRL_INT_ENABLE);
2513
Will Newtonf95f3852011-01-02 01:11:59 -05002514 for (i = 0; i < host->num_slots; i++) {
2515 struct dw_mci_slot *slot = host->slot[i];
2516 if (!slot)
2517 continue;
Abhilash Kesavanab269122012-11-19 10:26:21 +05302518 if (slot->mmc->pm_flags & MMC_PM_KEEP_POWER) {
2519 dw_mci_set_ios(slot->mmc, &slot->mmc->ios);
2520 dw_mci_setup_bus(slot, true);
2521 }
2522
Will Newtonf95f3852011-01-02 01:11:59 -05002523 ret = mmc_resume_host(host->slot[i]->mmc);
2524 if (ret < 0)
2525 return ret;
2526 }
Will Newtonf95f3852011-01-02 01:11:59 -05002527 return 0;
2528}
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05302529EXPORT_SYMBOL(dw_mci_resume);
Jaehoon Chung6fe88902011-12-08 19:23:03 +09002530#endif /* CONFIG_PM_SLEEP */
2531
Will Newtonf95f3852011-01-02 01:11:59 -05002532static int __init dw_mci_init(void)
2533{
Sachin Kamat8e1c4e42013-04-04 11:25:11 +05302534 pr_info("Synopsys Designware Multimedia Card Interface Driver\n");
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05302535 return 0;
Will Newtonf95f3852011-01-02 01:11:59 -05002536}
2537
2538static void __exit dw_mci_exit(void)
2539{
Will Newtonf95f3852011-01-02 01:11:59 -05002540}
2541
2542module_init(dw_mci_init);
2543module_exit(dw_mci_exit);
2544
2545MODULE_DESCRIPTION("DW Multimedia Card Interface driver");
2546MODULE_AUTHOR("NXP Semiconductor VietNam");
2547MODULE_AUTHOR("Imagination Technologies Ltd");
2548MODULE_LICENSE("GPL v2");