blob: 4b2bedc887ba9076a93284eb8d612c8cdbc1b9be [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>
Will Newtonf95f3852011-01-02 01:11:59 -050037
38#include "dw_mmc.h"
39
40/* Common flag combinations */
41#define DW_MCI_DATA_ERROR_FLAGS (SDMMC_INT_DTO | SDMMC_INT_DCRC | \
42 SDMMC_INT_HTO | SDMMC_INT_SBE | \
43 SDMMC_INT_EBE)
44#define DW_MCI_CMD_ERROR_FLAGS (SDMMC_INT_RTO | SDMMC_INT_RCRC | \
45 SDMMC_INT_RESP_ERR)
46#define DW_MCI_ERROR_FLAGS (DW_MCI_DATA_ERROR_FLAGS | \
47 DW_MCI_CMD_ERROR_FLAGS | SDMMC_INT_HLE)
48#define DW_MCI_SEND_STATUS 1
49#define DW_MCI_RECV_STATUS 2
50#define DW_MCI_DMA_THRESHOLD 16
51
52#ifdef CONFIG_MMC_DW_IDMAC
53struct idmac_desc {
54 u32 des0; /* Control Descriptor */
55#define IDMAC_DES0_DIC BIT(1)
56#define IDMAC_DES0_LD BIT(2)
57#define IDMAC_DES0_FD BIT(3)
58#define IDMAC_DES0_CH BIT(4)
59#define IDMAC_DES0_ER BIT(5)
60#define IDMAC_DES0_CES BIT(30)
61#define IDMAC_DES0_OWN BIT(31)
62
63 u32 des1; /* Buffer sizes */
64#define IDMAC_SET_BUFFER1_SIZE(d, s) \
Shashidhar Hiremath9b7bbe12011-07-29 08:49:50 -040065 ((d)->des1 = ((d)->des1 & 0x03ffe000) | ((s) & 0x1fff))
Will Newtonf95f3852011-01-02 01:11:59 -050066
67 u32 des2; /* buffer 1 physical address */
68
69 u32 des3; /* buffer 2 physical address */
70};
71#endif /* CONFIG_MMC_DW_IDMAC */
72
73/**
74 * struct dw_mci_slot - MMC slot state
75 * @mmc: The mmc_host representing this slot.
76 * @host: The MMC controller this slot is using.
77 * @ctype: Card type for this slot.
78 * @mrq: mmc_request currently being processed or waiting to be
79 * processed, or NULL when the slot is idle.
80 * @queue_node: List node for placing this node in the @queue list of
81 * &struct dw_mci.
82 * @clock: Clock rate configured by set_ios(). Protected by host->lock.
83 * @flags: Random state bits associated with the slot.
84 * @id: Number of this slot.
85 * @last_detect_state: Most recently observed card detect state.
86 */
87struct dw_mci_slot {
88 struct mmc_host *mmc;
89 struct dw_mci *host;
90
91 u32 ctype;
92
93 struct mmc_request *mrq;
94 struct list_head queue_node;
95
96 unsigned int clock;
97 unsigned long flags;
98#define DW_MMC_CARD_PRESENT 0
99#define DW_MMC_CARD_NEED_INIT 1
100 int id;
101 int last_detect_state;
102};
103
104#if defined(CONFIG_DEBUG_FS)
105static int dw_mci_req_show(struct seq_file *s, void *v)
106{
107 struct dw_mci_slot *slot = s->private;
108 struct mmc_request *mrq;
109 struct mmc_command *cmd;
110 struct mmc_command *stop;
111 struct mmc_data *data;
112
113 /* Make sure we get a consistent snapshot */
114 spin_lock_bh(&slot->host->lock);
115 mrq = slot->mrq;
116
117 if (mrq) {
118 cmd = mrq->cmd;
119 data = mrq->data;
120 stop = mrq->stop;
121
122 if (cmd)
123 seq_printf(s,
124 "CMD%u(0x%x) flg %x rsp %x %x %x %x err %d\n",
125 cmd->opcode, cmd->arg, cmd->flags,
126 cmd->resp[0], cmd->resp[1], cmd->resp[2],
127 cmd->resp[2], cmd->error);
128 if (data)
129 seq_printf(s, "DATA %u / %u * %u flg %x err %d\n",
130 data->bytes_xfered, data->blocks,
131 data->blksz, data->flags, data->error);
132 if (stop)
133 seq_printf(s,
134 "CMD%u(0x%x) flg %x rsp %x %x %x %x err %d\n",
135 stop->opcode, stop->arg, stop->flags,
136 stop->resp[0], stop->resp[1], stop->resp[2],
137 stop->resp[2], stop->error);
138 }
139
140 spin_unlock_bh(&slot->host->lock);
141
142 return 0;
143}
144
145static int dw_mci_req_open(struct inode *inode, struct file *file)
146{
147 return single_open(file, dw_mci_req_show, inode->i_private);
148}
149
150static const struct file_operations dw_mci_req_fops = {
151 .owner = THIS_MODULE,
152 .open = dw_mci_req_open,
153 .read = seq_read,
154 .llseek = seq_lseek,
155 .release = single_release,
156};
157
158static int dw_mci_regs_show(struct seq_file *s, void *v)
159{
160 seq_printf(s, "STATUS:\t0x%08x\n", SDMMC_STATUS);
161 seq_printf(s, "RINTSTS:\t0x%08x\n", SDMMC_RINTSTS);
162 seq_printf(s, "CMD:\t0x%08x\n", SDMMC_CMD);
163 seq_printf(s, "CTRL:\t0x%08x\n", SDMMC_CTRL);
164 seq_printf(s, "INTMASK:\t0x%08x\n", SDMMC_INTMASK);
165 seq_printf(s, "CLKENA:\t0x%08x\n", SDMMC_CLKENA);
166
167 return 0;
168}
169
170static int dw_mci_regs_open(struct inode *inode, struct file *file)
171{
172 return single_open(file, dw_mci_regs_show, inode->i_private);
173}
174
175static const struct file_operations dw_mci_regs_fops = {
176 .owner = THIS_MODULE,
177 .open = dw_mci_regs_open,
178 .read = seq_read,
179 .llseek = seq_lseek,
180 .release = single_release,
181};
182
183static void dw_mci_init_debugfs(struct dw_mci_slot *slot)
184{
185 struct mmc_host *mmc = slot->mmc;
186 struct dw_mci *host = slot->host;
187 struct dentry *root;
188 struct dentry *node;
189
190 root = mmc->debugfs_root;
191 if (!root)
192 return;
193
194 node = debugfs_create_file("regs", S_IRUSR, root, host,
195 &dw_mci_regs_fops);
196 if (!node)
197 goto err;
198
199 node = debugfs_create_file("req", S_IRUSR, root, slot,
200 &dw_mci_req_fops);
201 if (!node)
202 goto err;
203
204 node = debugfs_create_u32("state", S_IRUSR, root, (u32 *)&host->state);
205 if (!node)
206 goto err;
207
208 node = debugfs_create_x32("pending_events", S_IRUSR, root,
209 (u32 *)&host->pending_events);
210 if (!node)
211 goto err;
212
213 node = debugfs_create_x32("completed_events", S_IRUSR, root,
214 (u32 *)&host->completed_events);
215 if (!node)
216 goto err;
217
218 return;
219
220err:
221 dev_err(&mmc->class_dev, "failed to initialize debugfs for slot\n");
222}
223#endif /* defined(CONFIG_DEBUG_FS) */
224
225static void dw_mci_set_timeout(struct dw_mci *host)
226{
227 /* timeout (maximum) */
228 mci_writel(host, TMOUT, 0xffffffff);
229}
230
231static u32 dw_mci_prepare_command(struct mmc_host *mmc, struct mmc_command *cmd)
232{
233 struct mmc_data *data;
Thomas Abraham800d78b2012-09-17 18:16:42 +0000234 struct dw_mci_slot *slot = mmc_priv(mmc);
Will Newtonf95f3852011-01-02 01:11:59 -0500235 u32 cmdr;
236 cmd->error = -EINPROGRESS;
237
238 cmdr = cmd->opcode;
239
240 if (cmdr == MMC_STOP_TRANSMISSION)
241 cmdr |= SDMMC_CMD_STOP;
242 else
243 cmdr |= SDMMC_CMD_PRV_DAT_WAIT;
244
245 if (cmd->flags & MMC_RSP_PRESENT) {
246 /* We expect a response, so set this bit */
247 cmdr |= SDMMC_CMD_RESP_EXP;
248 if (cmd->flags & MMC_RSP_136)
249 cmdr |= SDMMC_CMD_RESP_LONG;
250 }
251
252 if (cmd->flags & MMC_RSP_CRC)
253 cmdr |= SDMMC_CMD_RESP_CRC;
254
255 data = cmd->data;
256 if (data) {
257 cmdr |= SDMMC_CMD_DAT_EXP;
258 if (data->flags & MMC_DATA_STREAM)
259 cmdr |= SDMMC_CMD_STRM_MODE;
260 if (data->flags & MMC_DATA_WRITE)
261 cmdr |= SDMMC_CMD_DAT_WR;
262 }
263
Thomas Abraham800d78b2012-09-17 18:16:42 +0000264 if (slot->host->drv_data->prepare_command)
265 slot->host->drv_data->prepare_command(slot->host, &cmdr);
266
Will Newtonf95f3852011-01-02 01:11:59 -0500267 return cmdr;
268}
269
270static void dw_mci_start_command(struct dw_mci *host,
271 struct mmc_command *cmd, u32 cmd_flags)
272{
273 host->cmd = cmd;
Thomas Abraham4a909202012-09-17 18:16:35 +0000274 dev_vdbg(host->dev,
Will Newtonf95f3852011-01-02 01:11:59 -0500275 "start command: ARGR=0x%08x CMDR=0x%08x\n",
276 cmd->arg, cmd_flags);
277
278 mci_writel(host, CMDARG, cmd->arg);
279 wmb();
280
281 mci_writel(host, CMD, cmd_flags | SDMMC_CMD_START);
282}
283
284static void send_stop_cmd(struct dw_mci *host, struct mmc_data *data)
285{
286 dw_mci_start_command(host, data->stop, host->stop_cmdr);
287}
288
289/* DMA interface functions */
290static void dw_mci_stop_dma(struct dw_mci *host)
291{
James Hogan03e8cb52011-06-29 09:28:43 +0100292 if (host->using_dma) {
Will Newtonf95f3852011-01-02 01:11:59 -0500293 host->dma_ops->stop(host);
294 host->dma_ops->cleanup(host);
295 } else {
296 /* Data transfer was stopped by the interrupt handler */
297 set_bit(EVENT_XFER_COMPLETE, &host->pending_events);
298 }
299}
300
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900301static int dw_mci_get_dma_dir(struct mmc_data *data)
302{
303 if (data->flags & MMC_DATA_WRITE)
304 return DMA_TO_DEVICE;
305 else
306 return DMA_FROM_DEVICE;
307}
308
Jaehoon Chung9beee912012-02-16 11:19:38 +0900309#ifdef CONFIG_MMC_DW_IDMAC
Will Newtonf95f3852011-01-02 01:11:59 -0500310static void dw_mci_dma_cleanup(struct dw_mci *host)
311{
312 struct mmc_data *data = host->data;
313
314 if (data)
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900315 if (!data->host_cookie)
Thomas Abraham4a909202012-09-17 18:16:35 +0000316 dma_unmap_sg(host->dev,
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900317 data->sg,
318 data->sg_len,
319 dw_mci_get_dma_dir(data));
Will Newtonf95f3852011-01-02 01:11:59 -0500320}
321
322static void dw_mci_idmac_stop_dma(struct dw_mci *host)
323{
324 u32 temp;
325
326 /* Disable and reset the IDMAC interface */
327 temp = mci_readl(host, CTRL);
328 temp &= ~SDMMC_CTRL_USE_IDMAC;
329 temp |= SDMMC_CTRL_DMA_RESET;
330 mci_writel(host, CTRL, temp);
331
332 /* Stop the IDMAC running */
333 temp = mci_readl(host, BMOD);
Jaehoon Chunga5289a42011-02-25 11:08:13 +0900334 temp &= ~(SDMMC_IDMAC_ENABLE | SDMMC_IDMAC_FB);
Will Newtonf95f3852011-01-02 01:11:59 -0500335 mci_writel(host, BMOD, temp);
336}
337
338static void dw_mci_idmac_complete_dma(struct dw_mci *host)
339{
340 struct mmc_data *data = host->data;
341
Thomas Abraham4a909202012-09-17 18:16:35 +0000342 dev_vdbg(host->dev, "DMA complete\n");
Will Newtonf95f3852011-01-02 01:11:59 -0500343
344 host->dma_ops->cleanup(host);
345
346 /*
347 * If the card was removed, data will be NULL. No point in trying to
348 * send the stop command or waiting for NBUSY in this case.
349 */
350 if (data) {
351 set_bit(EVENT_XFER_COMPLETE, &host->pending_events);
352 tasklet_schedule(&host->tasklet);
353 }
354}
355
356static void dw_mci_translate_sglist(struct dw_mci *host, struct mmc_data *data,
357 unsigned int sg_len)
358{
359 int i;
360 struct idmac_desc *desc = host->sg_cpu;
361
362 for (i = 0; i < sg_len; i++, desc++) {
363 unsigned int length = sg_dma_len(&data->sg[i]);
364 u32 mem_addr = sg_dma_address(&data->sg[i]);
365
366 /* Set the OWN bit and disable interrupts for this descriptor */
367 desc->des0 = IDMAC_DES0_OWN | IDMAC_DES0_DIC | IDMAC_DES0_CH;
368
369 /* Buffer length */
370 IDMAC_SET_BUFFER1_SIZE(desc, length);
371
372 /* Physical address to DMA to/from */
373 desc->des2 = mem_addr;
374 }
375
376 /* Set first descriptor */
377 desc = host->sg_cpu;
378 desc->des0 |= IDMAC_DES0_FD;
379
380 /* Set last descriptor */
381 desc = host->sg_cpu + (i - 1) * sizeof(struct idmac_desc);
382 desc->des0 &= ~(IDMAC_DES0_CH | IDMAC_DES0_DIC);
383 desc->des0 |= IDMAC_DES0_LD;
384
385 wmb();
386}
387
388static void dw_mci_idmac_start_dma(struct dw_mci *host, unsigned int sg_len)
389{
390 u32 temp;
391
392 dw_mci_translate_sglist(host, host->data, sg_len);
393
394 /* Select IDMAC interface */
395 temp = mci_readl(host, CTRL);
396 temp |= SDMMC_CTRL_USE_IDMAC;
397 mci_writel(host, CTRL, temp);
398
399 wmb();
400
401 /* Enable the IDMAC */
402 temp = mci_readl(host, BMOD);
Jaehoon Chunga5289a42011-02-25 11:08:13 +0900403 temp |= SDMMC_IDMAC_ENABLE | SDMMC_IDMAC_FB;
Will Newtonf95f3852011-01-02 01:11:59 -0500404 mci_writel(host, BMOD, temp);
405
406 /* Start it running */
407 mci_writel(host, PLDMND, 1);
408}
409
410static int dw_mci_idmac_init(struct dw_mci *host)
411{
412 struct idmac_desc *p;
Seungwon Jeon897b69e2012-09-19 13:58:31 +0800413 int i;
Will Newtonf95f3852011-01-02 01:11:59 -0500414
415 /* Number of descriptors in the ring buffer */
416 host->ring_size = PAGE_SIZE / sizeof(struct idmac_desc);
417
418 /* Forward link the descriptor list */
419 for (i = 0, p = host->sg_cpu; i < host->ring_size - 1; i++, p++)
420 p->des3 = host->sg_dma + (sizeof(struct idmac_desc) * (i + 1));
421
422 /* Set the last descriptor as the end-of-ring descriptor */
423 p->des3 = host->sg_dma;
424 p->des0 = IDMAC_DES0_ER;
425
Seungwon Jeon141a7122012-05-22 13:01:03 +0900426 mci_writel(host, BMOD, SDMMC_IDMAC_SWRESET);
427
Will Newtonf95f3852011-01-02 01:11:59 -0500428 /* Mask out interrupts - get Tx & Rx complete only */
429 mci_writel(host, IDINTEN, SDMMC_IDMAC_INT_NI | SDMMC_IDMAC_INT_RI |
430 SDMMC_IDMAC_INT_TI);
431
432 /* Set the descriptor base address */
433 mci_writel(host, DBADDR, host->sg_dma);
434 return 0;
435}
436
Seungwon Jeon885c3e82012-02-20 11:01:43 +0900437static struct dw_mci_dma_ops dw_mci_idmac_ops = {
438 .init = dw_mci_idmac_init,
439 .start = dw_mci_idmac_start_dma,
440 .stop = dw_mci_idmac_stop_dma,
441 .complete = dw_mci_idmac_complete_dma,
442 .cleanup = dw_mci_dma_cleanup,
443};
444#endif /* CONFIG_MMC_DW_IDMAC */
445
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900446static int dw_mci_pre_dma_transfer(struct dw_mci *host,
447 struct mmc_data *data,
448 bool next)
Will Newtonf95f3852011-01-02 01:11:59 -0500449{
450 struct scatterlist *sg;
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900451 unsigned int i, sg_len;
Will Newtonf95f3852011-01-02 01:11:59 -0500452
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900453 if (!next && data->host_cookie)
454 return data->host_cookie;
Will Newtonf95f3852011-01-02 01:11:59 -0500455
456 /*
457 * We don't do DMA on "complex" transfers, i.e. with
458 * non-word-aligned buffers or lengths. Also, we don't bother
459 * with all the DMA setup overhead for short transfers.
460 */
461 if (data->blocks * data->blksz < DW_MCI_DMA_THRESHOLD)
462 return -EINVAL;
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900463
Will Newtonf95f3852011-01-02 01:11:59 -0500464 if (data->blksz & 3)
465 return -EINVAL;
466
467 for_each_sg(data->sg, sg, data->sg_len, i) {
468 if (sg->offset & 3 || sg->length & 3)
469 return -EINVAL;
470 }
471
Thomas Abraham4a909202012-09-17 18:16:35 +0000472 sg_len = dma_map_sg(host->dev,
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900473 data->sg,
474 data->sg_len,
475 dw_mci_get_dma_dir(data));
476 if (sg_len == 0)
477 return -EINVAL;
478
479 if (next)
480 data->host_cookie = sg_len;
481
482 return sg_len;
483}
484
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900485static void dw_mci_pre_req(struct mmc_host *mmc,
486 struct mmc_request *mrq,
487 bool is_first_req)
488{
489 struct dw_mci_slot *slot = mmc_priv(mmc);
490 struct mmc_data *data = mrq->data;
491
492 if (!slot->host->use_dma || !data)
493 return;
494
495 if (data->host_cookie) {
496 data->host_cookie = 0;
497 return;
498 }
499
500 if (dw_mci_pre_dma_transfer(slot->host, mrq->data, 1) < 0)
501 data->host_cookie = 0;
502}
503
504static void dw_mci_post_req(struct mmc_host *mmc,
505 struct mmc_request *mrq,
506 int err)
507{
508 struct dw_mci_slot *slot = mmc_priv(mmc);
509 struct mmc_data *data = mrq->data;
510
511 if (!slot->host->use_dma || !data)
512 return;
513
514 if (data->host_cookie)
Thomas Abraham4a909202012-09-17 18:16:35 +0000515 dma_unmap_sg(slot->host->dev,
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900516 data->sg,
517 data->sg_len,
518 dw_mci_get_dma_dir(data));
519 data->host_cookie = 0;
520}
521
522static int dw_mci_submit_data_dma(struct dw_mci *host, struct mmc_data *data)
523{
524 int sg_len;
525 u32 temp;
526
527 host->using_dma = 0;
528
529 /* If we don't have a channel, we can't do DMA */
530 if (!host->use_dma)
531 return -ENODEV;
532
533 sg_len = dw_mci_pre_dma_transfer(host, data, 0);
Seungwon Jeona99aa9b2012-04-10 09:53:32 +0900534 if (sg_len < 0) {
535 host->dma_ops->stop(host);
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900536 return sg_len;
Seungwon Jeona99aa9b2012-04-10 09:53:32 +0900537 }
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900538
James Hogan03e8cb52011-06-29 09:28:43 +0100539 host->using_dma = 1;
540
Thomas Abraham4a909202012-09-17 18:16:35 +0000541 dev_vdbg(host->dev,
Will Newtonf95f3852011-01-02 01:11:59 -0500542 "sd sg_cpu: %#lx sg_dma: %#lx sg_len: %d\n",
543 (unsigned long)host->sg_cpu, (unsigned long)host->sg_dma,
544 sg_len);
545
546 /* Enable the DMA interface */
547 temp = mci_readl(host, CTRL);
548 temp |= SDMMC_CTRL_DMA_ENABLE;
549 mci_writel(host, CTRL, temp);
550
551 /* Disable RX/TX IRQs, let DMA handle it */
552 temp = mci_readl(host, INTMASK);
553 temp &= ~(SDMMC_INT_RXDR | SDMMC_INT_TXDR);
554 mci_writel(host, INTMASK, temp);
555
556 host->dma_ops->start(host, sg_len);
557
558 return 0;
559}
560
561static void dw_mci_submit_data(struct dw_mci *host, struct mmc_data *data)
562{
563 u32 temp;
564
565 data->error = -EINPROGRESS;
566
567 WARN_ON(host->data);
568 host->sg = NULL;
569 host->data = data;
570
James Hogan55c5efbc2011-06-29 09:29:58 +0100571 if (data->flags & MMC_DATA_READ)
572 host->dir_status = DW_MCI_RECV_STATUS;
573 else
574 host->dir_status = DW_MCI_SEND_STATUS;
575
Will Newtonf95f3852011-01-02 01:11:59 -0500576 if (dw_mci_submit_data_dma(host, data)) {
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +0900577 int flags = SG_MITER_ATOMIC;
578 if (host->data->flags & MMC_DATA_READ)
579 flags |= SG_MITER_TO_SG;
580 else
581 flags |= SG_MITER_FROM_SG;
582
583 sg_miter_start(&host->sg_miter, data->sg, data->sg_len, flags);
Will Newtonf95f3852011-01-02 01:11:59 -0500584 host->sg = data->sg;
James Hogan34b664a2011-06-24 13:57:56 +0100585 host->part_buf_start = 0;
586 host->part_buf_count = 0;
Will Newtonf95f3852011-01-02 01:11:59 -0500587
James Hoganb40af3a2011-06-24 13:54:06 +0100588 mci_writel(host, RINTSTS, SDMMC_INT_TXDR | SDMMC_INT_RXDR);
Will Newtonf95f3852011-01-02 01:11:59 -0500589 temp = mci_readl(host, INTMASK);
590 temp |= SDMMC_INT_TXDR | SDMMC_INT_RXDR;
591 mci_writel(host, INTMASK, temp);
592
593 temp = mci_readl(host, CTRL);
594 temp &= ~SDMMC_CTRL_DMA_ENABLE;
595 mci_writel(host, CTRL, temp);
596 }
597}
598
599static void mci_send_cmd(struct dw_mci_slot *slot, u32 cmd, u32 arg)
600{
601 struct dw_mci *host = slot->host;
602 unsigned long timeout = jiffies + msecs_to_jiffies(500);
603 unsigned int cmd_status = 0;
604
605 mci_writel(host, CMDARG, arg);
606 wmb();
607 mci_writel(host, CMD, SDMMC_CMD_START | cmd);
608
609 while (time_before(jiffies, timeout)) {
610 cmd_status = mci_readl(host, CMD);
611 if (!(cmd_status & SDMMC_CMD_START))
612 return;
613 }
614 dev_err(&slot->mmc->class_dev,
615 "Timeout sending command (cmd %#x arg %#x status %#x)\n",
616 cmd, arg, cmd_status);
617}
618
619static void dw_mci_setup_bus(struct dw_mci_slot *slot)
620{
621 struct dw_mci *host = slot->host;
622 u32 div;
Doug Anderson9623b5b2012-07-25 08:33:17 -0700623 u32 clk_en_a;
Will Newtonf95f3852011-01-02 01:11:59 -0500624
625 if (slot->clock != host->current_speed) {
Seungwon Jeone4199902012-05-22 13:01:21 +0900626 div = host->bus_hz / slot->clock;
627 if (host->bus_hz % slot->clock && host->bus_hz > slot->clock)
Will Newtonf95f3852011-01-02 01:11:59 -0500628 /*
629 * move the + 1 after the divide to prevent
630 * over-clocking the card.
631 */
Seungwon Jeone4199902012-05-22 13:01:21 +0900632 div += 1;
633
634 div = (host->bus_hz != slot->clock) ? DIV_ROUND_UP(div, 2) : 0;
Will Newtonf95f3852011-01-02 01:11:59 -0500635
636 dev_info(&slot->mmc->class_dev,
637 "Bus speed (slot %d) = %dHz (slot req %dHz, actual %dHZ"
638 " div = %d)\n", slot->id, host->bus_hz, slot->clock,
639 div ? ((host->bus_hz / div) >> 1) : host->bus_hz, div);
640
641 /* disable clock */
642 mci_writel(host, CLKENA, 0);
643 mci_writel(host, CLKSRC, 0);
644
645 /* inform CIU */
646 mci_send_cmd(slot,
647 SDMMC_CMD_UPD_CLK | SDMMC_CMD_PRV_DAT_WAIT, 0);
648
649 /* set clock to desired speed */
650 mci_writel(host, CLKDIV, div);
651
652 /* inform CIU */
653 mci_send_cmd(slot,
654 SDMMC_CMD_UPD_CLK | SDMMC_CMD_PRV_DAT_WAIT, 0);
655
Doug Anderson9623b5b2012-07-25 08:33:17 -0700656 /* enable clock; only low power if no SDIO */
657 clk_en_a = SDMMC_CLKEN_ENABLE << slot->id;
658 if (!(mci_readl(host, INTMASK) & SDMMC_INT_SDIO(slot->id)))
659 clk_en_a |= SDMMC_CLKEN_LOW_PWR << slot->id;
660 mci_writel(host, CLKENA, clk_en_a);
Will Newtonf95f3852011-01-02 01:11:59 -0500661
662 /* inform CIU */
663 mci_send_cmd(slot,
664 SDMMC_CMD_UPD_CLK | SDMMC_CMD_PRV_DAT_WAIT, 0);
665
666 host->current_speed = slot->clock;
667 }
668
669 /* Set the current slot bus width */
Seungwon Jeon1d56c452011-06-20 17:23:53 +0900670 mci_writel(host, CTYPE, (slot->ctype << slot->id));
Will Newtonf95f3852011-01-02 01:11:59 -0500671}
672
Seungwon Jeon053b3ce2011-12-22 18:01:29 +0900673static void __dw_mci_start_request(struct dw_mci *host,
674 struct dw_mci_slot *slot,
675 struct mmc_command *cmd)
Will Newtonf95f3852011-01-02 01:11:59 -0500676{
677 struct mmc_request *mrq;
Will Newtonf95f3852011-01-02 01:11:59 -0500678 struct mmc_data *data;
679 u32 cmdflags;
680
681 mrq = slot->mrq;
682 if (host->pdata->select_slot)
683 host->pdata->select_slot(slot->id);
684
685 /* Slot specific timing and width adjustment */
686 dw_mci_setup_bus(slot);
687
688 host->cur_slot = slot;
689 host->mrq = mrq;
690
691 host->pending_events = 0;
692 host->completed_events = 0;
693 host->data_status = 0;
694
Seungwon Jeon053b3ce2011-12-22 18:01:29 +0900695 data = cmd->data;
Will Newtonf95f3852011-01-02 01:11:59 -0500696 if (data) {
697 dw_mci_set_timeout(host);
698 mci_writel(host, BYTCNT, data->blksz*data->blocks);
699 mci_writel(host, BLKSIZ, data->blksz);
700 }
701
Will Newtonf95f3852011-01-02 01:11:59 -0500702 cmdflags = dw_mci_prepare_command(slot->mmc, cmd);
703
704 /* this is the first command, send the initialization clock */
705 if (test_and_clear_bit(DW_MMC_CARD_NEED_INIT, &slot->flags))
706 cmdflags |= SDMMC_CMD_INIT;
707
708 if (data) {
709 dw_mci_submit_data(host, data);
710 wmb();
711 }
712
713 dw_mci_start_command(host, cmd, cmdflags);
714
715 if (mrq->stop)
716 host->stop_cmdr = dw_mci_prepare_command(slot->mmc, mrq->stop);
717}
718
Seungwon Jeon053b3ce2011-12-22 18:01:29 +0900719static void dw_mci_start_request(struct dw_mci *host,
720 struct dw_mci_slot *slot)
721{
722 struct mmc_request *mrq = slot->mrq;
723 struct mmc_command *cmd;
724
725 cmd = mrq->sbc ? mrq->sbc : mrq->cmd;
726 __dw_mci_start_request(host, slot, cmd);
727}
728
James Hogan7456caa2011-06-24 13:55:10 +0100729/* must be called with host->lock held */
Will Newtonf95f3852011-01-02 01:11:59 -0500730static void dw_mci_queue_request(struct dw_mci *host, struct dw_mci_slot *slot,
731 struct mmc_request *mrq)
732{
733 dev_vdbg(&slot->mmc->class_dev, "queue request: state=%d\n",
734 host->state);
735
Will Newtonf95f3852011-01-02 01:11:59 -0500736 slot->mrq = mrq;
737
738 if (host->state == STATE_IDLE) {
739 host->state = STATE_SENDING_CMD;
740 dw_mci_start_request(host, slot);
741 } else {
742 list_add_tail(&slot->queue_node, &host->queue);
743 }
Will Newtonf95f3852011-01-02 01:11:59 -0500744}
745
746static void dw_mci_request(struct mmc_host *mmc, struct mmc_request *mrq)
747{
748 struct dw_mci_slot *slot = mmc_priv(mmc);
749 struct dw_mci *host = slot->host;
750
751 WARN_ON(slot->mrq);
752
James Hogan7456caa2011-06-24 13:55:10 +0100753 /*
754 * The check for card presence and queueing of the request must be
755 * atomic, otherwise the card could be removed in between and the
756 * request wouldn't fail until another card was inserted.
757 */
758 spin_lock_bh(&host->lock);
759
Will Newtonf95f3852011-01-02 01:11:59 -0500760 if (!test_bit(DW_MMC_CARD_PRESENT, &slot->flags)) {
James Hogan7456caa2011-06-24 13:55:10 +0100761 spin_unlock_bh(&host->lock);
Will Newtonf95f3852011-01-02 01:11:59 -0500762 mrq->cmd->error = -ENOMEDIUM;
763 mmc_request_done(mmc, mrq);
764 return;
765 }
766
Will Newtonf95f3852011-01-02 01:11:59 -0500767 dw_mci_queue_request(host, slot, mrq);
James Hogan7456caa2011-06-24 13:55:10 +0100768
769 spin_unlock_bh(&host->lock);
Will Newtonf95f3852011-01-02 01:11:59 -0500770}
771
772static void dw_mci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
773{
774 struct dw_mci_slot *slot = mmc_priv(mmc);
Jaehoon Chung41babf72011-02-24 13:46:11 +0900775 u32 regs;
Will Newtonf95f3852011-01-02 01:11:59 -0500776
777 /* set default 1 bit mode */
778 slot->ctype = SDMMC_CTYPE_1BIT;
779
780 switch (ios->bus_width) {
781 case MMC_BUS_WIDTH_1:
782 slot->ctype = SDMMC_CTYPE_1BIT;
783 break;
784 case MMC_BUS_WIDTH_4:
785 slot->ctype = SDMMC_CTYPE_4BIT;
786 break;
Jaehoon Chungc9b2a062011-02-17 16:12:38 +0900787 case MMC_BUS_WIDTH_8:
788 slot->ctype = SDMMC_CTYPE_8BIT;
789 break;
Will Newtonf95f3852011-01-02 01:11:59 -0500790 }
791
Seungwon Jeon3f514292012-01-02 16:00:02 +0900792 regs = mci_readl(slot->host, UHS_REG);
793
Jaehoon Chung41babf72011-02-24 13:46:11 +0900794 /* DDR mode set */
Seungwon Jeon3f514292012-01-02 16:00:02 +0900795 if (ios->timing == MMC_TIMING_UHS_DDR50)
Jaehoon Chung41babf72011-02-24 13:46:11 +0900796 regs |= (0x1 << slot->id) << 16;
Seungwon Jeon3f514292012-01-02 16:00:02 +0900797 else
798 regs &= ~(0x1 << slot->id) << 16;
799
800 mci_writel(slot->host, UHS_REG, regs);
Jaehoon Chung41babf72011-02-24 13:46:11 +0900801
Will Newtonf95f3852011-01-02 01:11:59 -0500802 if (ios->clock) {
803 /*
804 * Use mirror of ios->clock to prevent race with mmc
805 * core ios update when finding the minimum.
806 */
807 slot->clock = ios->clock;
808 }
809
Thomas Abraham800d78b2012-09-17 18:16:42 +0000810 if (slot->host->drv_data->set_ios)
811 slot->host->drv_data->set_ios(slot->host, ios);
812
Will Newtonf95f3852011-01-02 01:11:59 -0500813 switch (ios->power_mode) {
814 case MMC_POWER_UP:
815 set_bit(DW_MMC_CARD_NEED_INIT, &slot->flags);
816 break;
817 default:
818 break;
819 }
820}
821
822static int dw_mci_get_ro(struct mmc_host *mmc)
823{
824 int read_only;
825 struct dw_mci_slot *slot = mmc_priv(mmc);
826 struct dw_mci_board *brd = slot->host->pdata;
827
828 /* Use platform get_ro function, else try on board write protect */
Thomas Abrahamb4967aa2012-09-17 18:16:39 +0000829 if (brd->quirks & DW_MCI_QUIRK_NO_WRITE_PROTECT)
830 read_only = 0;
831 else if (brd->get_ro)
Will Newtonf95f3852011-01-02 01:11:59 -0500832 read_only = brd->get_ro(slot->id);
833 else
834 read_only =
835 mci_readl(slot->host, WRTPRT) & (1 << slot->id) ? 1 : 0;
836
837 dev_dbg(&mmc->class_dev, "card is %s\n",
838 read_only ? "read-only" : "read-write");
839
840 return read_only;
841}
842
843static int dw_mci_get_cd(struct mmc_host *mmc)
844{
845 int present;
846 struct dw_mci_slot *slot = mmc_priv(mmc);
847 struct dw_mci_board *brd = slot->host->pdata;
848
849 /* Use platform get_cd function, else try onboard card detect */
Jaehoon Chungfc3d7722011-02-25 11:08:15 +0900850 if (brd->quirks & DW_MCI_QUIRK_BROKEN_CARD_DETECTION)
851 present = 1;
852 else if (brd->get_cd)
Will Newtonf95f3852011-01-02 01:11:59 -0500853 present = !brd->get_cd(slot->id);
854 else
855 present = (mci_readl(slot->host, CDETECT) & (1 << slot->id))
856 == 0 ? 1 : 0;
857
858 if (present)
859 dev_dbg(&mmc->class_dev, "card is present\n");
860 else
861 dev_dbg(&mmc->class_dev, "card is not present\n");
862
863 return present;
864}
865
Doug Anderson9623b5b2012-07-25 08:33:17 -0700866/*
867 * Disable lower power mode.
868 *
869 * Low power mode will stop the card clock when idle. According to the
870 * description of the CLKENA register we should disable low power mode
871 * for SDIO cards if we need SDIO interrupts to work.
872 *
873 * This function is fast if low power mode is already disabled.
874 */
875static void dw_mci_disable_low_power(struct dw_mci_slot *slot)
876{
877 struct dw_mci *host = slot->host;
878 u32 clk_en_a;
879 const u32 clken_low_pwr = SDMMC_CLKEN_LOW_PWR << slot->id;
880
881 clk_en_a = mci_readl(host, CLKENA);
882
883 if (clk_en_a & clken_low_pwr) {
884 mci_writel(host, CLKENA, clk_en_a & ~clken_low_pwr);
885 mci_send_cmd(slot, SDMMC_CMD_UPD_CLK |
886 SDMMC_CMD_PRV_DAT_WAIT, 0);
887 }
888}
889
Shashidhar Hiremath1a5c8e12011-08-29 13:11:46 +0530890static void dw_mci_enable_sdio_irq(struct mmc_host *mmc, int enb)
891{
892 struct dw_mci_slot *slot = mmc_priv(mmc);
893 struct dw_mci *host = slot->host;
894 u32 int_mask;
895
896 /* Enable/disable Slot Specific SDIO interrupt */
897 int_mask = mci_readl(host, INTMASK);
898 if (enb) {
Doug Anderson9623b5b2012-07-25 08:33:17 -0700899 /*
900 * Turn off low power mode if it was enabled. This is a bit of
901 * a heavy operation and we disable / enable IRQs a lot, so
902 * we'll leave low power mode disabled and it will get
903 * re-enabled again in dw_mci_setup_bus().
904 */
905 dw_mci_disable_low_power(slot);
906
Shashidhar Hiremath1a5c8e12011-08-29 13:11:46 +0530907 mci_writel(host, INTMASK,
Kyoungil Kim705ad042012-05-14 17:38:48 +0900908 (int_mask | SDMMC_INT_SDIO(slot->id)));
Shashidhar Hiremath1a5c8e12011-08-29 13:11:46 +0530909 } else {
910 mci_writel(host, INTMASK,
Kyoungil Kim705ad042012-05-14 17:38:48 +0900911 (int_mask & ~SDMMC_INT_SDIO(slot->id)));
Shashidhar Hiremath1a5c8e12011-08-29 13:11:46 +0530912 }
913}
914
Will Newtonf95f3852011-01-02 01:11:59 -0500915static const struct mmc_host_ops dw_mci_ops = {
Shashidhar Hiremath1a5c8e12011-08-29 13:11:46 +0530916 .request = dw_mci_request,
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900917 .pre_req = dw_mci_pre_req,
918 .post_req = dw_mci_post_req,
Shashidhar Hiremath1a5c8e12011-08-29 13:11:46 +0530919 .set_ios = dw_mci_set_ios,
920 .get_ro = dw_mci_get_ro,
921 .get_cd = dw_mci_get_cd,
922 .enable_sdio_irq = dw_mci_enable_sdio_irq,
Will Newtonf95f3852011-01-02 01:11:59 -0500923};
924
925static void dw_mci_request_end(struct dw_mci *host, struct mmc_request *mrq)
926 __releases(&host->lock)
927 __acquires(&host->lock)
928{
929 struct dw_mci_slot *slot;
930 struct mmc_host *prev_mmc = host->cur_slot->mmc;
931
932 WARN_ON(host->cmd || host->data);
933
934 host->cur_slot->mrq = NULL;
935 host->mrq = NULL;
936 if (!list_empty(&host->queue)) {
937 slot = list_entry(host->queue.next,
938 struct dw_mci_slot, queue_node);
939 list_del(&slot->queue_node);
Thomas Abraham4a909202012-09-17 18:16:35 +0000940 dev_vdbg(host->dev, "list not empty: %s is next\n",
Will Newtonf95f3852011-01-02 01:11:59 -0500941 mmc_hostname(slot->mmc));
942 host->state = STATE_SENDING_CMD;
943 dw_mci_start_request(host, slot);
944 } else {
Thomas Abraham4a909202012-09-17 18:16:35 +0000945 dev_vdbg(host->dev, "list empty\n");
Will Newtonf95f3852011-01-02 01:11:59 -0500946 host->state = STATE_IDLE;
947 }
948
949 spin_unlock(&host->lock);
950 mmc_request_done(prev_mmc, mrq);
951 spin_lock(&host->lock);
952}
953
954static void dw_mci_command_complete(struct dw_mci *host, struct mmc_command *cmd)
955{
956 u32 status = host->cmd_status;
957
958 host->cmd_status = 0;
959
960 /* Read the response from the card (up to 16 bytes) */
961 if (cmd->flags & MMC_RSP_PRESENT) {
962 if (cmd->flags & MMC_RSP_136) {
963 cmd->resp[3] = mci_readl(host, RESP0);
964 cmd->resp[2] = mci_readl(host, RESP1);
965 cmd->resp[1] = mci_readl(host, RESP2);
966 cmd->resp[0] = mci_readl(host, RESP3);
967 } else {
968 cmd->resp[0] = mci_readl(host, RESP0);
969 cmd->resp[1] = 0;
970 cmd->resp[2] = 0;
971 cmd->resp[3] = 0;
972 }
973 }
974
975 if (status & SDMMC_INT_RTO)
976 cmd->error = -ETIMEDOUT;
977 else if ((cmd->flags & MMC_RSP_CRC) && (status & SDMMC_INT_RCRC))
978 cmd->error = -EILSEQ;
979 else if (status & SDMMC_INT_RESP_ERR)
980 cmd->error = -EIO;
981 else
982 cmd->error = 0;
983
984 if (cmd->error) {
985 /* newer ip versions need a delay between retries */
986 if (host->quirks & DW_MCI_QUIRK_RETRY_DELAY)
987 mdelay(20);
988
989 if (cmd->data) {
Will Newtonf95f3852011-01-02 01:11:59 -0500990 dw_mci_stop_dma(host);
Seungwon Jeonfda5f732012-05-22 13:01:13 +0900991 host->data = NULL;
Will Newtonf95f3852011-01-02 01:11:59 -0500992 }
993 }
994}
995
996static void dw_mci_tasklet_func(unsigned long priv)
997{
998 struct dw_mci *host = (struct dw_mci *)priv;
999 struct mmc_data *data;
1000 struct mmc_command *cmd;
1001 enum dw_mci_state state;
1002 enum dw_mci_state prev_state;
James Hogan94dd5b32011-06-29 09:30:47 +01001003 u32 status, ctrl;
Will Newtonf95f3852011-01-02 01:11:59 -05001004
1005 spin_lock(&host->lock);
1006
1007 state = host->state;
1008 data = host->data;
1009
1010 do {
1011 prev_state = state;
1012
1013 switch (state) {
1014 case STATE_IDLE:
1015 break;
1016
1017 case STATE_SENDING_CMD:
1018 if (!test_and_clear_bit(EVENT_CMD_COMPLETE,
1019 &host->pending_events))
1020 break;
1021
1022 cmd = host->cmd;
1023 host->cmd = NULL;
1024 set_bit(EVENT_CMD_COMPLETE, &host->completed_events);
Seungwon Jeon053b3ce2011-12-22 18:01:29 +09001025 dw_mci_command_complete(host, cmd);
1026 if (cmd == host->mrq->sbc && !cmd->error) {
1027 prev_state = state = STATE_SENDING_CMD;
1028 __dw_mci_start_request(host, host->cur_slot,
1029 host->mrq->cmd);
1030 goto unlock;
1031 }
1032
Will Newtonf95f3852011-01-02 01:11:59 -05001033 if (!host->mrq->data || cmd->error) {
1034 dw_mci_request_end(host, host->mrq);
1035 goto unlock;
1036 }
1037
1038 prev_state = state = STATE_SENDING_DATA;
1039 /* fall through */
1040
1041 case STATE_SENDING_DATA:
1042 if (test_and_clear_bit(EVENT_DATA_ERROR,
1043 &host->pending_events)) {
1044 dw_mci_stop_dma(host);
1045 if (data->stop)
1046 send_stop_cmd(host, data);
1047 state = STATE_DATA_ERROR;
1048 break;
1049 }
1050
1051 if (!test_and_clear_bit(EVENT_XFER_COMPLETE,
1052 &host->pending_events))
1053 break;
1054
1055 set_bit(EVENT_XFER_COMPLETE, &host->completed_events);
1056 prev_state = state = STATE_DATA_BUSY;
1057 /* fall through */
1058
1059 case STATE_DATA_BUSY:
1060 if (!test_and_clear_bit(EVENT_DATA_COMPLETE,
1061 &host->pending_events))
1062 break;
1063
1064 host->data = NULL;
1065 set_bit(EVENT_DATA_COMPLETE, &host->completed_events);
1066 status = host->data_status;
1067
1068 if (status & DW_MCI_DATA_ERROR_FLAGS) {
1069 if (status & SDMMC_INT_DTO) {
Will Newtonf95f3852011-01-02 01:11:59 -05001070 data->error = -ETIMEDOUT;
1071 } else if (status & SDMMC_INT_DCRC) {
Will Newtonf95f3852011-01-02 01:11:59 -05001072 data->error = -EILSEQ;
James Hogan55c5efbc2011-06-29 09:29:58 +01001073 } else if (status & SDMMC_INT_EBE &&
1074 host->dir_status ==
1075 DW_MCI_SEND_STATUS) {
1076 /*
1077 * No data CRC status was returned.
1078 * The number of bytes transferred will
1079 * be exaggerated in PIO mode.
1080 */
1081 data->bytes_xfered = 0;
1082 data->error = -ETIMEDOUT;
Will Newtonf95f3852011-01-02 01:11:59 -05001083 } else {
Thomas Abraham4a909202012-09-17 18:16:35 +00001084 dev_err(host->dev,
Will Newtonf95f3852011-01-02 01:11:59 -05001085 "data FIFO error "
1086 "(status=%08x)\n",
1087 status);
1088 data->error = -EIO;
1089 }
James Hogan94dd5b32011-06-29 09:30:47 +01001090 /*
1091 * After an error, there may be data lingering
1092 * in the FIFO, so reset it - doing so
1093 * generates a block interrupt, hence setting
1094 * the scatter-gather pointer to NULL.
1095 */
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09001096 sg_miter_stop(&host->sg_miter);
James Hogan94dd5b32011-06-29 09:30:47 +01001097 host->sg = NULL;
1098 ctrl = mci_readl(host, CTRL);
1099 ctrl |= SDMMC_CTRL_FIFO_RESET;
1100 mci_writel(host, CTRL, ctrl);
Will Newtonf95f3852011-01-02 01:11:59 -05001101 } else {
1102 data->bytes_xfered = data->blocks * data->blksz;
1103 data->error = 0;
1104 }
1105
1106 if (!data->stop) {
1107 dw_mci_request_end(host, host->mrq);
1108 goto unlock;
1109 }
1110
Seungwon Jeon053b3ce2011-12-22 18:01:29 +09001111 if (host->mrq->sbc && !data->error) {
1112 data->stop->error = 0;
1113 dw_mci_request_end(host, host->mrq);
1114 goto unlock;
1115 }
1116
Will Newtonf95f3852011-01-02 01:11:59 -05001117 prev_state = state = STATE_SENDING_STOP;
1118 if (!data->error)
1119 send_stop_cmd(host, data);
1120 /* fall through */
1121
1122 case STATE_SENDING_STOP:
1123 if (!test_and_clear_bit(EVENT_CMD_COMPLETE,
1124 &host->pending_events))
1125 break;
1126
1127 host->cmd = NULL;
1128 dw_mci_command_complete(host, host->mrq->stop);
1129 dw_mci_request_end(host, host->mrq);
1130 goto unlock;
1131
1132 case STATE_DATA_ERROR:
1133 if (!test_and_clear_bit(EVENT_XFER_COMPLETE,
1134 &host->pending_events))
1135 break;
1136
1137 state = STATE_DATA_BUSY;
1138 break;
1139 }
1140 } while (state != prev_state);
1141
1142 host->state = state;
1143unlock:
1144 spin_unlock(&host->lock);
1145
1146}
1147
James Hogan34b664a2011-06-24 13:57:56 +01001148/* push final bytes to part_buf, only use during push */
1149static void dw_mci_set_part_bytes(struct dw_mci *host, void *buf, int cnt)
1150{
1151 memcpy((void *)&host->part_buf, buf, cnt);
1152 host->part_buf_count = cnt;
1153}
1154
1155/* append bytes to part_buf, only use during push */
1156static int dw_mci_push_part_bytes(struct dw_mci *host, void *buf, int cnt)
1157{
1158 cnt = min(cnt, (1 << host->data_shift) - host->part_buf_count);
1159 memcpy((void *)&host->part_buf + host->part_buf_count, buf, cnt);
1160 host->part_buf_count += cnt;
1161 return cnt;
1162}
1163
1164/* pull first bytes from part_buf, only use during pull */
1165static int dw_mci_pull_part_bytes(struct dw_mci *host, void *buf, int cnt)
1166{
1167 cnt = min(cnt, (int)host->part_buf_count);
1168 if (cnt) {
1169 memcpy(buf, (void *)&host->part_buf + host->part_buf_start,
1170 cnt);
1171 host->part_buf_count -= cnt;
1172 host->part_buf_start += cnt;
1173 }
1174 return cnt;
1175}
1176
1177/* pull final bytes from the part_buf, assuming it's just been filled */
1178static void dw_mci_pull_final_bytes(struct dw_mci *host, void *buf, int cnt)
1179{
1180 memcpy(buf, &host->part_buf, cnt);
1181 host->part_buf_start = cnt;
1182 host->part_buf_count = (1 << host->data_shift) - cnt;
1183}
1184
Will Newtonf95f3852011-01-02 01:11:59 -05001185static void dw_mci_push_data16(struct dw_mci *host, void *buf, int cnt)
1186{
James Hogan34b664a2011-06-24 13:57:56 +01001187 /* try and push anything in the part_buf */
1188 if (unlikely(host->part_buf_count)) {
1189 int len = dw_mci_push_part_bytes(host, buf, cnt);
1190 buf += len;
1191 cnt -= len;
1192 if (!sg_next(host->sg) || host->part_buf_count == 2) {
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001193 mci_writew(host, DATA(host->data_offset),
1194 host->part_buf16);
James Hogan34b664a2011-06-24 13:57:56 +01001195 host->part_buf_count = 0;
1196 }
1197 }
1198#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
1199 if (unlikely((unsigned long)buf & 0x1)) {
1200 while (cnt >= 2) {
1201 u16 aligned_buf[64];
1202 int len = min(cnt & -2, (int)sizeof(aligned_buf));
1203 int items = len >> 1;
1204 int i;
1205 /* memcpy from input buffer into aligned buffer */
1206 memcpy(aligned_buf, buf, len);
1207 buf += len;
1208 cnt -= len;
1209 /* push data from aligned buffer into fifo */
1210 for (i = 0; i < items; ++i)
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001211 mci_writew(host, DATA(host->data_offset),
1212 aligned_buf[i]);
James Hogan34b664a2011-06-24 13:57:56 +01001213 }
1214 } else
1215#endif
1216 {
1217 u16 *pdata = buf;
1218 for (; cnt >= 2; cnt -= 2)
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001219 mci_writew(host, DATA(host->data_offset), *pdata++);
James Hogan34b664a2011-06-24 13:57:56 +01001220 buf = pdata;
1221 }
1222 /* put anything remaining in the part_buf */
1223 if (cnt) {
1224 dw_mci_set_part_bytes(host, buf, cnt);
1225 if (!sg_next(host->sg))
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001226 mci_writew(host, DATA(host->data_offset),
1227 host->part_buf16);
Will Newtonf95f3852011-01-02 01:11:59 -05001228 }
1229}
1230
1231static void dw_mci_pull_data16(struct dw_mci *host, void *buf, int cnt)
1232{
James Hogan34b664a2011-06-24 13:57:56 +01001233#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
1234 if (unlikely((unsigned long)buf & 0x1)) {
1235 while (cnt >= 2) {
1236 /* pull data from fifo into aligned buffer */
1237 u16 aligned_buf[64];
1238 int len = min(cnt & -2, (int)sizeof(aligned_buf));
1239 int items = len >> 1;
1240 int i;
1241 for (i = 0; i < items; ++i)
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001242 aligned_buf[i] = mci_readw(host,
1243 DATA(host->data_offset));
James Hogan34b664a2011-06-24 13:57:56 +01001244 /* memcpy from aligned buffer into output buffer */
1245 memcpy(buf, aligned_buf, len);
1246 buf += len;
1247 cnt -= len;
1248 }
1249 } else
1250#endif
1251 {
1252 u16 *pdata = buf;
1253 for (; cnt >= 2; cnt -= 2)
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001254 *pdata++ = mci_readw(host, DATA(host->data_offset));
James Hogan34b664a2011-06-24 13:57:56 +01001255 buf = pdata;
1256 }
1257 if (cnt) {
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001258 host->part_buf16 = mci_readw(host, DATA(host->data_offset));
James Hogan34b664a2011-06-24 13:57:56 +01001259 dw_mci_pull_final_bytes(host, buf, cnt);
Will Newtonf95f3852011-01-02 01:11:59 -05001260 }
1261}
1262
1263static void dw_mci_push_data32(struct dw_mci *host, void *buf, int cnt)
1264{
James Hogan34b664a2011-06-24 13:57:56 +01001265 /* try and push anything in the part_buf */
1266 if (unlikely(host->part_buf_count)) {
1267 int len = dw_mci_push_part_bytes(host, buf, cnt);
1268 buf += len;
1269 cnt -= len;
1270 if (!sg_next(host->sg) || host->part_buf_count == 4) {
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001271 mci_writel(host, DATA(host->data_offset),
1272 host->part_buf32);
James Hogan34b664a2011-06-24 13:57:56 +01001273 host->part_buf_count = 0;
1274 }
1275 }
1276#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
1277 if (unlikely((unsigned long)buf & 0x3)) {
1278 while (cnt >= 4) {
1279 u32 aligned_buf[32];
1280 int len = min(cnt & -4, (int)sizeof(aligned_buf));
1281 int items = len >> 2;
1282 int i;
1283 /* memcpy from input buffer into aligned buffer */
1284 memcpy(aligned_buf, buf, len);
1285 buf += len;
1286 cnt -= len;
1287 /* push data from aligned buffer into fifo */
1288 for (i = 0; i < items; ++i)
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001289 mci_writel(host, DATA(host->data_offset),
1290 aligned_buf[i]);
James Hogan34b664a2011-06-24 13:57:56 +01001291 }
1292 } else
1293#endif
1294 {
1295 u32 *pdata = buf;
1296 for (; cnt >= 4; cnt -= 4)
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001297 mci_writel(host, DATA(host->data_offset), *pdata++);
James Hogan34b664a2011-06-24 13:57:56 +01001298 buf = pdata;
1299 }
1300 /* put anything remaining in the part_buf */
1301 if (cnt) {
1302 dw_mci_set_part_bytes(host, buf, cnt);
1303 if (!sg_next(host->sg))
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001304 mci_writel(host, DATA(host->data_offset),
1305 host->part_buf32);
Will Newtonf95f3852011-01-02 01:11:59 -05001306 }
1307}
1308
1309static void dw_mci_pull_data32(struct dw_mci *host, void *buf, int cnt)
1310{
James Hogan34b664a2011-06-24 13:57:56 +01001311#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
1312 if (unlikely((unsigned long)buf & 0x3)) {
1313 while (cnt >= 4) {
1314 /* pull data from fifo into aligned buffer */
1315 u32 aligned_buf[32];
1316 int len = min(cnt & -4, (int)sizeof(aligned_buf));
1317 int items = len >> 2;
1318 int i;
1319 for (i = 0; i < items; ++i)
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001320 aligned_buf[i] = mci_readl(host,
1321 DATA(host->data_offset));
James Hogan34b664a2011-06-24 13:57:56 +01001322 /* memcpy from aligned buffer into output buffer */
1323 memcpy(buf, aligned_buf, len);
1324 buf += len;
1325 cnt -= len;
1326 }
1327 } else
1328#endif
1329 {
1330 u32 *pdata = buf;
1331 for (; cnt >= 4; cnt -= 4)
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001332 *pdata++ = mci_readl(host, DATA(host->data_offset));
James Hogan34b664a2011-06-24 13:57:56 +01001333 buf = pdata;
1334 }
1335 if (cnt) {
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001336 host->part_buf32 = mci_readl(host, DATA(host->data_offset));
James Hogan34b664a2011-06-24 13:57:56 +01001337 dw_mci_pull_final_bytes(host, buf, cnt);
Will Newtonf95f3852011-01-02 01:11:59 -05001338 }
1339}
1340
1341static void dw_mci_push_data64(struct dw_mci *host, void *buf, int cnt)
1342{
James Hogan34b664a2011-06-24 13:57:56 +01001343 /* try and push anything in the part_buf */
1344 if (unlikely(host->part_buf_count)) {
1345 int len = dw_mci_push_part_bytes(host, buf, cnt);
1346 buf += len;
1347 cnt -= len;
1348 if (!sg_next(host->sg) || host->part_buf_count == 8) {
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001349 mci_writew(host, DATA(host->data_offset),
1350 host->part_buf);
James Hogan34b664a2011-06-24 13:57:56 +01001351 host->part_buf_count = 0;
1352 }
1353 }
1354#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
1355 if (unlikely((unsigned long)buf & 0x7)) {
1356 while (cnt >= 8) {
1357 u64 aligned_buf[16];
1358 int len = min(cnt & -8, (int)sizeof(aligned_buf));
1359 int items = len >> 3;
1360 int i;
1361 /* memcpy from input buffer into aligned buffer */
1362 memcpy(aligned_buf, buf, len);
1363 buf += len;
1364 cnt -= len;
1365 /* push data from aligned buffer into fifo */
1366 for (i = 0; i < items; ++i)
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001367 mci_writeq(host, DATA(host->data_offset),
1368 aligned_buf[i]);
James Hogan34b664a2011-06-24 13:57:56 +01001369 }
1370 } else
1371#endif
1372 {
1373 u64 *pdata = buf;
1374 for (; cnt >= 8; cnt -= 8)
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001375 mci_writeq(host, DATA(host->data_offset), *pdata++);
James Hogan34b664a2011-06-24 13:57:56 +01001376 buf = pdata;
1377 }
1378 /* put anything remaining in the part_buf */
1379 if (cnt) {
1380 dw_mci_set_part_bytes(host, buf, cnt);
1381 if (!sg_next(host->sg))
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001382 mci_writeq(host, DATA(host->data_offset),
1383 host->part_buf);
Will Newtonf95f3852011-01-02 01:11:59 -05001384 }
1385}
1386
1387static void dw_mci_pull_data64(struct dw_mci *host, void *buf, int cnt)
1388{
James Hogan34b664a2011-06-24 13:57:56 +01001389#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
1390 if (unlikely((unsigned long)buf & 0x7)) {
1391 while (cnt >= 8) {
1392 /* pull data from fifo into aligned buffer */
1393 u64 aligned_buf[16];
1394 int len = min(cnt & -8, (int)sizeof(aligned_buf));
1395 int items = len >> 3;
1396 int i;
1397 for (i = 0; i < items; ++i)
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001398 aligned_buf[i] = mci_readq(host,
1399 DATA(host->data_offset));
James Hogan34b664a2011-06-24 13:57:56 +01001400 /* memcpy from aligned buffer into output buffer */
1401 memcpy(buf, aligned_buf, len);
1402 buf += len;
1403 cnt -= len;
1404 }
1405 } else
1406#endif
1407 {
1408 u64 *pdata = buf;
1409 for (; cnt >= 8; cnt -= 8)
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001410 *pdata++ = mci_readq(host, DATA(host->data_offset));
James Hogan34b664a2011-06-24 13:57:56 +01001411 buf = pdata;
Will Newtonf95f3852011-01-02 01:11:59 -05001412 }
James Hogan34b664a2011-06-24 13:57:56 +01001413 if (cnt) {
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001414 host->part_buf = mci_readq(host, DATA(host->data_offset));
James Hogan34b664a2011-06-24 13:57:56 +01001415 dw_mci_pull_final_bytes(host, buf, cnt);
1416 }
1417}
1418
1419static void dw_mci_pull_data(struct dw_mci *host, void *buf, int cnt)
1420{
1421 int len;
1422
1423 /* get remaining partial bytes */
1424 len = dw_mci_pull_part_bytes(host, buf, cnt);
1425 if (unlikely(len == cnt))
1426 return;
1427 buf += len;
1428 cnt -= len;
1429
1430 /* get the rest of the data */
1431 host->pull_data(host, buf, cnt);
Will Newtonf95f3852011-01-02 01:11:59 -05001432}
1433
1434static void dw_mci_read_data_pio(struct dw_mci *host)
1435{
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09001436 struct sg_mapping_iter *sg_miter = &host->sg_miter;
1437 void *buf;
1438 unsigned int offset;
Will Newtonf95f3852011-01-02 01:11:59 -05001439 struct mmc_data *data = host->data;
1440 int shift = host->data_shift;
1441 u32 status;
Chris Ballba6a9022011-02-28 16:45:10 -05001442 unsigned int nbytes = 0, len;
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09001443 unsigned int remain, fcnt;
Will Newtonf95f3852011-01-02 01:11:59 -05001444
1445 do {
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09001446 if (!sg_miter_next(sg_miter))
1447 goto done;
Will Newtonf95f3852011-01-02 01:11:59 -05001448
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09001449 host->sg = sg_miter->__sg;
1450 buf = sg_miter->addr;
1451 remain = sg_miter->length;
1452 offset = 0;
1453
1454 do {
1455 fcnt = (SDMMC_GET_FCNT(mci_readl(host, STATUS))
1456 << shift) + host->part_buf_count;
1457 len = min(remain, fcnt);
1458 if (!len)
1459 break;
1460 dw_mci_pull_data(host, (void *)(buf + offset), len);
Will Newtonf95f3852011-01-02 01:11:59 -05001461 offset += len;
1462 nbytes += len;
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09001463 remain -= len;
1464 } while (remain);
Will Newtonf95f3852011-01-02 01:11:59 -05001465
Seungwon Jeone74f3a92012-08-01 09:30:46 +09001466 sg_miter->consumed = offset;
Will Newtonf95f3852011-01-02 01:11:59 -05001467 status = mci_readl(host, MINTSTS);
1468 mci_writel(host, RINTSTS, SDMMC_INT_RXDR);
Will Newtonf95f3852011-01-02 01:11:59 -05001469 } while (status & SDMMC_INT_RXDR); /*if the RXDR is ready read again*/
Will Newtonf95f3852011-01-02 01:11:59 -05001470 data->bytes_xfered += nbytes;
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09001471
1472 if (!remain) {
1473 if (!sg_miter_next(sg_miter))
1474 goto done;
1475 sg_miter->consumed = 0;
1476 }
1477 sg_miter_stop(sg_miter);
Will Newtonf95f3852011-01-02 01:11:59 -05001478 return;
1479
1480done:
1481 data->bytes_xfered += nbytes;
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09001482 sg_miter_stop(sg_miter);
1483 host->sg = NULL;
Will Newtonf95f3852011-01-02 01:11:59 -05001484 smp_wmb();
1485 set_bit(EVENT_XFER_COMPLETE, &host->pending_events);
1486}
1487
1488static void dw_mci_write_data_pio(struct dw_mci *host)
1489{
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09001490 struct sg_mapping_iter *sg_miter = &host->sg_miter;
1491 void *buf;
1492 unsigned int offset;
Will Newtonf95f3852011-01-02 01:11:59 -05001493 struct mmc_data *data = host->data;
1494 int shift = host->data_shift;
1495 u32 status;
1496 unsigned int nbytes = 0, len;
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09001497 unsigned int fifo_depth = host->fifo_depth;
1498 unsigned int remain, fcnt;
Will Newtonf95f3852011-01-02 01:11:59 -05001499
1500 do {
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09001501 if (!sg_miter_next(sg_miter))
1502 goto done;
Will Newtonf95f3852011-01-02 01:11:59 -05001503
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09001504 host->sg = sg_miter->__sg;
1505 buf = sg_miter->addr;
1506 remain = sg_miter->length;
1507 offset = 0;
1508
1509 do {
1510 fcnt = ((fifo_depth -
1511 SDMMC_GET_FCNT(mci_readl(host, STATUS)))
1512 << shift) - host->part_buf_count;
1513 len = min(remain, fcnt);
1514 if (!len)
1515 break;
1516 host->push_data(host, (void *)(buf + offset), len);
Will Newtonf95f3852011-01-02 01:11:59 -05001517 offset += len;
1518 nbytes += len;
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09001519 remain -= len;
1520 } while (remain);
Will Newtonf95f3852011-01-02 01:11:59 -05001521
Seungwon Jeone74f3a92012-08-01 09:30:46 +09001522 sg_miter->consumed = offset;
Will Newtonf95f3852011-01-02 01:11:59 -05001523 status = mci_readl(host, MINTSTS);
1524 mci_writel(host, RINTSTS, SDMMC_INT_TXDR);
Will Newtonf95f3852011-01-02 01:11:59 -05001525 } while (status & SDMMC_INT_TXDR); /* if TXDR write again */
Will Newtonf95f3852011-01-02 01:11:59 -05001526 data->bytes_xfered += nbytes;
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09001527
1528 if (!remain) {
1529 if (!sg_miter_next(sg_miter))
1530 goto done;
1531 sg_miter->consumed = 0;
1532 }
1533 sg_miter_stop(sg_miter);
Will Newtonf95f3852011-01-02 01:11:59 -05001534 return;
1535
1536done:
1537 data->bytes_xfered += nbytes;
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09001538 sg_miter_stop(sg_miter);
1539 host->sg = NULL;
Will Newtonf95f3852011-01-02 01:11:59 -05001540 smp_wmb();
1541 set_bit(EVENT_XFER_COMPLETE, &host->pending_events);
1542}
1543
1544static void dw_mci_cmd_interrupt(struct dw_mci *host, u32 status)
1545{
1546 if (!host->cmd_status)
1547 host->cmd_status = status;
1548
1549 smp_wmb();
1550
1551 set_bit(EVENT_CMD_COMPLETE, &host->pending_events);
1552 tasklet_schedule(&host->tasklet);
1553}
1554
1555static irqreturn_t dw_mci_interrupt(int irq, void *dev_id)
1556{
1557 struct dw_mci *host = dev_id;
Seungwon Jeon182c9082012-08-01 09:30:30 +09001558 u32 pending;
Will Newtonf95f3852011-01-02 01:11:59 -05001559 unsigned int pass_count = 0;
Shashidhar Hiremath1a5c8e12011-08-29 13:11:46 +05301560 int i;
Will Newtonf95f3852011-01-02 01:11:59 -05001561
1562 do {
Will Newtonf95f3852011-01-02 01:11:59 -05001563 pending = mci_readl(host, MINTSTS); /* read-only mask reg */
1564
1565 /*
1566 * DTO fix - version 2.10a and below, and only if internal DMA
1567 * is configured.
1568 */
1569 if (host->quirks & DW_MCI_QUIRK_IDMAC_DTO) {
1570 if (!pending &&
1571 ((mci_readl(host, STATUS) >> 17) & 0x1fff))
1572 pending |= SDMMC_INT_DATA_OVER;
1573 }
1574
1575 if (!pending)
1576 break;
1577
1578 if (pending & DW_MCI_CMD_ERROR_FLAGS) {
1579 mci_writel(host, RINTSTS, DW_MCI_CMD_ERROR_FLAGS);
Seungwon Jeon182c9082012-08-01 09:30:30 +09001580 host->cmd_status = pending;
Will Newtonf95f3852011-01-02 01:11:59 -05001581 smp_wmb();
1582 set_bit(EVENT_CMD_COMPLETE, &host->pending_events);
Will Newtonf95f3852011-01-02 01:11:59 -05001583 }
1584
1585 if (pending & DW_MCI_DATA_ERROR_FLAGS) {
1586 /* if there is an error report DATA_ERROR */
1587 mci_writel(host, RINTSTS, DW_MCI_DATA_ERROR_FLAGS);
Seungwon Jeon182c9082012-08-01 09:30:30 +09001588 host->data_status = pending;
Will Newtonf95f3852011-01-02 01:11:59 -05001589 smp_wmb();
1590 set_bit(EVENT_DATA_ERROR, &host->pending_events);
Seungwon Jeon9b2026a2012-08-01 09:30:40 +09001591 tasklet_schedule(&host->tasklet);
Will Newtonf95f3852011-01-02 01:11:59 -05001592 }
1593
1594 if (pending & SDMMC_INT_DATA_OVER) {
1595 mci_writel(host, RINTSTS, SDMMC_INT_DATA_OVER);
1596 if (!host->data_status)
Seungwon Jeon182c9082012-08-01 09:30:30 +09001597 host->data_status = pending;
Will Newtonf95f3852011-01-02 01:11:59 -05001598 smp_wmb();
1599 if (host->dir_status == DW_MCI_RECV_STATUS) {
1600 if (host->sg != NULL)
1601 dw_mci_read_data_pio(host);
1602 }
1603 set_bit(EVENT_DATA_COMPLETE, &host->pending_events);
1604 tasklet_schedule(&host->tasklet);
1605 }
1606
1607 if (pending & SDMMC_INT_RXDR) {
1608 mci_writel(host, RINTSTS, SDMMC_INT_RXDR);
James Hoganb40af3a2011-06-24 13:54:06 +01001609 if (host->dir_status == DW_MCI_RECV_STATUS && host->sg)
Will Newtonf95f3852011-01-02 01:11:59 -05001610 dw_mci_read_data_pio(host);
1611 }
1612
1613 if (pending & SDMMC_INT_TXDR) {
1614 mci_writel(host, RINTSTS, SDMMC_INT_TXDR);
James Hoganb40af3a2011-06-24 13:54:06 +01001615 if (host->dir_status == DW_MCI_SEND_STATUS && host->sg)
Will Newtonf95f3852011-01-02 01:11:59 -05001616 dw_mci_write_data_pio(host);
1617 }
1618
1619 if (pending & SDMMC_INT_CMD_DONE) {
1620 mci_writel(host, RINTSTS, SDMMC_INT_CMD_DONE);
Seungwon Jeon182c9082012-08-01 09:30:30 +09001621 dw_mci_cmd_interrupt(host, pending);
Will Newtonf95f3852011-01-02 01:11:59 -05001622 }
1623
1624 if (pending & SDMMC_INT_CD) {
1625 mci_writel(host, RINTSTS, SDMMC_INT_CD);
Thomas Abraham95dcc2c2012-05-01 14:57:36 -07001626 queue_work(host->card_workqueue, &host->card_work);
Will Newtonf95f3852011-01-02 01:11:59 -05001627 }
1628
Shashidhar Hiremath1a5c8e12011-08-29 13:11:46 +05301629 /* Handle SDIO Interrupts */
1630 for (i = 0; i < host->num_slots; i++) {
1631 struct dw_mci_slot *slot = host->slot[i];
1632 if (pending & SDMMC_INT_SDIO(i)) {
1633 mci_writel(host, RINTSTS, SDMMC_INT_SDIO(i));
1634 mmc_signal_sdio_irq(slot->mmc);
1635 }
1636 }
1637
Will Newtonf95f3852011-01-02 01:11:59 -05001638 } while (pass_count++ < 5);
1639
1640#ifdef CONFIG_MMC_DW_IDMAC
1641 /* Handle DMA interrupts */
1642 pending = mci_readl(host, IDSTS);
1643 if (pending & (SDMMC_IDMAC_INT_TI | SDMMC_IDMAC_INT_RI)) {
1644 mci_writel(host, IDSTS, SDMMC_IDMAC_INT_TI | SDMMC_IDMAC_INT_RI);
1645 mci_writel(host, IDSTS, SDMMC_IDMAC_INT_NI);
Will Newtonf95f3852011-01-02 01:11:59 -05001646 host->dma_ops->complete(host);
1647 }
1648#endif
1649
1650 return IRQ_HANDLED;
1651}
1652
James Hogan1791b13e2011-06-24 13:55:55 +01001653static void dw_mci_work_routine_card(struct work_struct *work)
Will Newtonf95f3852011-01-02 01:11:59 -05001654{
James Hogan1791b13e2011-06-24 13:55:55 +01001655 struct dw_mci *host = container_of(work, struct dw_mci, card_work);
Will Newtonf95f3852011-01-02 01:11:59 -05001656 int i;
1657
1658 for (i = 0; i < host->num_slots; i++) {
1659 struct dw_mci_slot *slot = host->slot[i];
1660 struct mmc_host *mmc = slot->mmc;
1661 struct mmc_request *mrq;
1662 int present;
1663 u32 ctrl;
1664
1665 present = dw_mci_get_cd(mmc);
1666 while (present != slot->last_detect_state) {
Will Newtonf95f3852011-01-02 01:11:59 -05001667 dev_dbg(&slot->mmc->class_dev, "card %s\n",
1668 present ? "inserted" : "removed");
1669
James Hogan1791b13e2011-06-24 13:55:55 +01001670 /* Power up slot (before spin_lock, may sleep) */
1671 if (present != 0 && host->pdata->setpower)
1672 host->pdata->setpower(slot->id, mmc->ocr_avail);
1673
1674 spin_lock_bh(&host->lock);
1675
Will Newtonf95f3852011-01-02 01:11:59 -05001676 /* Card change detected */
1677 slot->last_detect_state = present;
1678
James Hogan1791b13e2011-06-24 13:55:55 +01001679 /* Mark card as present if applicable */
1680 if (present != 0)
Will Newtonf95f3852011-01-02 01:11:59 -05001681 set_bit(DW_MMC_CARD_PRESENT, &slot->flags);
Will Newtonf95f3852011-01-02 01:11:59 -05001682
1683 /* Clean up queue if present */
1684 mrq = slot->mrq;
1685 if (mrq) {
1686 if (mrq == host->mrq) {
1687 host->data = NULL;
1688 host->cmd = NULL;
1689
1690 switch (host->state) {
1691 case STATE_IDLE:
1692 break;
1693 case STATE_SENDING_CMD:
1694 mrq->cmd->error = -ENOMEDIUM;
1695 if (!mrq->data)
1696 break;
1697 /* fall through */
1698 case STATE_SENDING_DATA:
1699 mrq->data->error = -ENOMEDIUM;
1700 dw_mci_stop_dma(host);
1701 break;
1702 case STATE_DATA_BUSY:
1703 case STATE_DATA_ERROR:
1704 if (mrq->data->error == -EINPROGRESS)
1705 mrq->data->error = -ENOMEDIUM;
1706 if (!mrq->stop)
1707 break;
1708 /* fall through */
1709 case STATE_SENDING_STOP:
1710 mrq->stop->error = -ENOMEDIUM;
1711 break;
1712 }
1713
1714 dw_mci_request_end(host, mrq);
1715 } else {
1716 list_del(&slot->queue_node);
1717 mrq->cmd->error = -ENOMEDIUM;
1718 if (mrq->data)
1719 mrq->data->error = -ENOMEDIUM;
1720 if (mrq->stop)
1721 mrq->stop->error = -ENOMEDIUM;
1722
1723 spin_unlock(&host->lock);
1724 mmc_request_done(slot->mmc, mrq);
1725 spin_lock(&host->lock);
1726 }
1727 }
1728
1729 /* Power down slot */
1730 if (present == 0) {
Will Newtonf95f3852011-01-02 01:11:59 -05001731 clear_bit(DW_MMC_CARD_PRESENT, &slot->flags);
1732
1733 /*
1734 * Clear down the FIFO - doing so generates a
1735 * block interrupt, hence setting the
1736 * scatter-gather pointer to NULL.
1737 */
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09001738 sg_miter_stop(&host->sg_miter);
Will Newtonf95f3852011-01-02 01:11:59 -05001739 host->sg = NULL;
1740
1741 ctrl = mci_readl(host, CTRL);
1742 ctrl |= SDMMC_CTRL_FIFO_RESET;
1743 mci_writel(host, CTRL, ctrl);
1744
1745#ifdef CONFIG_MMC_DW_IDMAC
1746 ctrl = mci_readl(host, BMOD);
Seungwon Jeon141a7122012-05-22 13:01:03 +09001747 /* Software reset of DMA */
1748 ctrl |= SDMMC_IDMAC_SWRESET;
Will Newtonf95f3852011-01-02 01:11:59 -05001749 mci_writel(host, BMOD, ctrl);
1750#endif
1751
1752 }
1753
James Hogan1791b13e2011-06-24 13:55:55 +01001754 spin_unlock_bh(&host->lock);
1755
1756 /* Power down slot (after spin_unlock, may sleep) */
1757 if (present == 0 && host->pdata->setpower)
1758 host->pdata->setpower(slot->id, 0);
1759
Will Newtonf95f3852011-01-02 01:11:59 -05001760 present = dw_mci_get_cd(mmc);
1761 }
1762
1763 mmc_detect_change(slot->mmc,
1764 msecs_to_jiffies(host->pdata->detect_delay_ms));
1765 }
1766}
1767
Thomas Abrahamc91eab42012-09-17 18:16:40 +00001768#ifdef CONFIG_OF
1769/* given a slot id, find out the device node representing that slot */
1770static struct device_node *dw_mci_of_find_slot_node(struct device *dev, u8 slot)
1771{
1772 struct device_node *np;
1773 const __be32 *addr;
1774 int len;
1775
1776 if (!dev || !dev->of_node)
1777 return NULL;
1778
1779 for_each_child_of_node(dev->of_node, np) {
1780 addr = of_get_property(np, "reg", &len);
1781 if (!addr || (len < sizeof(int)))
1782 continue;
1783 if (be32_to_cpup(addr) == slot)
1784 return np;
1785 }
1786 return NULL;
1787}
1788
1789/* find out bus-width for a given slot */
1790static u32 dw_mci_of_get_bus_wd(struct device *dev, u8 slot)
1791{
1792 struct device_node *np = dw_mci_of_find_slot_node(dev, slot);
1793 u32 bus_wd = 1;
1794
1795 if (!np)
1796 return 1;
1797
1798 if (of_property_read_u32(np, "bus-width", &bus_wd))
1799 dev_err(dev, "bus-width property not found, assuming width"
1800 " as 1\n");
1801 return bus_wd;
1802}
1803#else /* CONFIG_OF */
1804static u32 dw_mci_of_get_bus_wd(struct device *dev, u8 slot)
1805{
1806 return 1;
1807}
1808static struct device_node *dw_mci_of_find_slot_node(struct device *dev, u8 slot)
1809{
1810 return NULL;
1811}
1812#endif /* CONFIG_OF */
1813
Jaehoon Chung36c179a2012-08-23 20:31:48 +09001814static int dw_mci_init_slot(struct dw_mci *host, unsigned int id)
Will Newtonf95f3852011-01-02 01:11:59 -05001815{
1816 struct mmc_host *mmc;
1817 struct dw_mci_slot *slot;
Thomas Abraham800d78b2012-09-17 18:16:42 +00001818 int ctrl_id, ret;
Thomas Abrahamc91eab42012-09-17 18:16:40 +00001819 u8 bus_width;
Will Newtonf95f3852011-01-02 01:11:59 -05001820
Thomas Abraham4a909202012-09-17 18:16:35 +00001821 mmc = mmc_alloc_host(sizeof(struct dw_mci_slot), host->dev);
Will Newtonf95f3852011-01-02 01:11:59 -05001822 if (!mmc)
1823 return -ENOMEM;
1824
1825 slot = mmc_priv(mmc);
1826 slot->id = id;
1827 slot->mmc = mmc;
1828 slot->host = host;
Thomas Abrahamc91eab42012-09-17 18:16:40 +00001829 host->slot[id] = slot;
Will Newtonf95f3852011-01-02 01:11:59 -05001830
1831 mmc->ops = &dw_mci_ops;
1832 mmc->f_min = DIV_ROUND_UP(host->bus_hz, 510);
1833 mmc->f_max = host->bus_hz;
1834
1835 if (host->pdata->get_ocr)
1836 mmc->ocr_avail = host->pdata->get_ocr(id);
1837 else
1838 mmc->ocr_avail = MMC_VDD_32_33 | MMC_VDD_33_34;
1839
1840 /*
1841 * Start with slot power disabled, it will be enabled when a card
1842 * is detected.
1843 */
1844 if (host->pdata->setpower)
1845 host->pdata->setpower(id, 0);
1846
Jaehoon Chungfc3d7722011-02-25 11:08:15 +09001847 if (host->pdata->caps)
1848 mmc->caps = host->pdata->caps;
Jaehoon Chungfc3d7722011-02-25 11:08:15 +09001849
Thomas Abraham800d78b2012-09-17 18:16:42 +00001850 if (host->dev->of_node) {
1851 ctrl_id = of_alias_get_id(host->dev->of_node, "mshc");
1852 if (ctrl_id < 0)
1853 ctrl_id = 0;
1854 } else {
1855 ctrl_id = to_platform_device(host->dev)->id;
1856 }
1857 if (host->drv_data && host->drv_data->caps)
1858 mmc->caps |= host->drv_data->caps[ctrl_id];
1859
Seungwon Jeon4f408cc2011-12-09 14:55:52 +09001860 if (host->pdata->caps2)
1861 mmc->caps2 = host->pdata->caps2;
Seungwon Jeon4f408cc2011-12-09 14:55:52 +09001862
Will Newtonf95f3852011-01-02 01:11:59 -05001863 if (host->pdata->get_bus_wd)
Thomas Abrahamc91eab42012-09-17 18:16:40 +00001864 bus_width = host->pdata->get_bus_wd(slot->id);
1865 else if (host->dev->of_node)
1866 bus_width = dw_mci_of_get_bus_wd(host->dev, slot->id);
1867 else
1868 bus_width = 1;
1869
Thomas Abraham800d78b2012-09-17 18:16:42 +00001870 if (host->drv_data->setup_bus) {
1871 struct device_node *slot_np;
1872 slot_np = dw_mci_of_find_slot_node(host->dev, slot->id);
1873 ret = host->drv_data->setup_bus(host, slot_np, bus_width);
1874 if (ret)
1875 goto err_setup_bus;
1876 }
1877
Thomas Abrahamc91eab42012-09-17 18:16:40 +00001878 switch (bus_width) {
1879 case 8:
1880 mmc->caps |= MMC_CAP_8_BIT_DATA;
1881 case 4:
1882 mmc->caps |= MMC_CAP_4_BIT_DATA;
1883 }
Will Newtonf95f3852011-01-02 01:11:59 -05001884
1885 if (host->pdata->quirks & DW_MCI_QUIRK_HIGHSPEED)
Seungwon Jeon6daa7772011-08-05 12:35:03 +09001886 mmc->caps |= MMC_CAP_SD_HIGHSPEED | MMC_CAP_MMC_HIGHSPEED;
Will Newtonf95f3852011-01-02 01:11:59 -05001887
Will Newtonf95f3852011-01-02 01:11:59 -05001888 if (host->pdata->blk_settings) {
1889 mmc->max_segs = host->pdata->blk_settings->max_segs;
1890 mmc->max_blk_size = host->pdata->blk_settings->max_blk_size;
1891 mmc->max_blk_count = host->pdata->blk_settings->max_blk_count;
1892 mmc->max_req_size = host->pdata->blk_settings->max_req_size;
1893 mmc->max_seg_size = host->pdata->blk_settings->max_seg_size;
1894 } else {
1895 /* Useful defaults if platform data is unset. */
Jaehoon Chunga39e5742012-02-04 17:00:27 -05001896#ifdef CONFIG_MMC_DW_IDMAC
1897 mmc->max_segs = host->ring_size;
1898 mmc->max_blk_size = 65536;
1899 mmc->max_blk_count = host->ring_size;
1900 mmc->max_seg_size = 0x1000;
1901 mmc->max_req_size = mmc->max_seg_size * mmc->max_blk_count;
1902#else
Will Newtonf95f3852011-01-02 01:11:59 -05001903 mmc->max_segs = 64;
1904 mmc->max_blk_size = 65536; /* BLKSIZ is 16 bits */
1905 mmc->max_blk_count = 512;
1906 mmc->max_req_size = mmc->max_blk_size * mmc->max_blk_count;
1907 mmc->max_seg_size = mmc->max_req_size;
Will Newtonf95f3852011-01-02 01:11:59 -05001908#endif /* CONFIG_MMC_DW_IDMAC */
Jaehoon Chunga39e5742012-02-04 17:00:27 -05001909 }
Will Newtonf95f3852011-01-02 01:11:59 -05001910
Jaehoon Chungc07946a2011-02-25 11:08:14 +09001911 host->vmmc = regulator_get(mmc_dev(mmc), "vmmc");
1912 if (IS_ERR(host->vmmc)) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05301913 pr_info("%s: no vmmc regulator found\n", mmc_hostname(mmc));
Jaehoon Chungc07946a2011-02-25 11:08:14 +09001914 host->vmmc = NULL;
1915 } else
1916 regulator_enable(host->vmmc);
1917
Will Newtonf95f3852011-01-02 01:11:59 -05001918 if (dw_mci_get_cd(mmc))
1919 set_bit(DW_MMC_CARD_PRESENT, &slot->flags);
1920 else
1921 clear_bit(DW_MMC_CARD_PRESENT, &slot->flags);
1922
Will Newtonf95f3852011-01-02 01:11:59 -05001923 mmc_add_host(mmc);
1924
1925#if defined(CONFIG_DEBUG_FS)
1926 dw_mci_init_debugfs(slot);
1927#endif
1928
1929 /* Card initially undetected */
1930 slot->last_detect_state = 0;
1931
Will Newtondd6c4b92011-02-10 14:37:03 -05001932 /*
1933 * Card may have been plugged in prior to boot so we
1934 * need to run the detect tasklet
1935 */
Thomas Abraham95dcc2c2012-05-01 14:57:36 -07001936 queue_work(host->card_workqueue, &host->card_work);
Will Newtondd6c4b92011-02-10 14:37:03 -05001937
Will Newtonf95f3852011-01-02 01:11:59 -05001938 return 0;
Thomas Abraham800d78b2012-09-17 18:16:42 +00001939
1940err_setup_bus:
1941 mmc_free_host(mmc);
1942 return -EINVAL;
Will Newtonf95f3852011-01-02 01:11:59 -05001943}
1944
1945static void dw_mci_cleanup_slot(struct dw_mci_slot *slot, unsigned int id)
1946{
1947 /* Shutdown detect IRQ */
1948 if (slot->host->pdata->exit)
1949 slot->host->pdata->exit(id);
1950
1951 /* Debugfs stuff is cleaned up by mmc core */
1952 mmc_remove_host(slot->mmc);
1953 slot->host->slot[id] = NULL;
1954 mmc_free_host(slot->mmc);
1955}
1956
1957static void dw_mci_init_dma(struct dw_mci *host)
1958{
1959 /* Alloc memory for sg translation */
Thomas Abraham4a909202012-09-17 18:16:35 +00001960 host->sg_cpu = dma_alloc_coherent(host->dev, PAGE_SIZE,
Will Newtonf95f3852011-01-02 01:11:59 -05001961 &host->sg_dma, GFP_KERNEL);
1962 if (!host->sg_cpu) {
Thomas Abraham4a909202012-09-17 18:16:35 +00001963 dev_err(host->dev, "%s: could not alloc DMA memory\n",
Will Newtonf95f3852011-01-02 01:11:59 -05001964 __func__);
1965 goto no_dma;
1966 }
1967
1968 /* Determine which DMA interface to use */
1969#ifdef CONFIG_MMC_DW_IDMAC
1970 host->dma_ops = &dw_mci_idmac_ops;
Seungwon Jeon00956ea2012-09-28 19:13:11 +09001971 dev_info(host->dev, "Using internal DMA controller.\n");
Will Newtonf95f3852011-01-02 01:11:59 -05001972#endif
1973
1974 if (!host->dma_ops)
1975 goto no_dma;
1976
Jaehoon Chunge1631f92012-04-18 15:42:31 +09001977 if (host->dma_ops->init && host->dma_ops->start &&
1978 host->dma_ops->stop && host->dma_ops->cleanup) {
Will Newtonf95f3852011-01-02 01:11:59 -05001979 if (host->dma_ops->init(host)) {
Thomas Abraham4a909202012-09-17 18:16:35 +00001980 dev_err(host->dev, "%s: Unable to initialize "
Will Newtonf95f3852011-01-02 01:11:59 -05001981 "DMA Controller.\n", __func__);
1982 goto no_dma;
1983 }
1984 } else {
Thomas Abraham4a909202012-09-17 18:16:35 +00001985 dev_err(host->dev, "DMA initialization not found.\n");
Will Newtonf95f3852011-01-02 01:11:59 -05001986 goto no_dma;
1987 }
1988
1989 host->use_dma = 1;
1990 return;
1991
1992no_dma:
Thomas Abraham4a909202012-09-17 18:16:35 +00001993 dev_info(host->dev, "Using PIO mode.\n");
Will Newtonf95f3852011-01-02 01:11:59 -05001994 host->use_dma = 0;
1995 return;
1996}
1997
1998static bool mci_wait_reset(struct device *dev, struct dw_mci *host)
1999{
2000 unsigned long timeout = jiffies + msecs_to_jiffies(500);
2001 unsigned int ctrl;
2002
2003 mci_writel(host, CTRL, (SDMMC_CTRL_RESET | SDMMC_CTRL_FIFO_RESET |
2004 SDMMC_CTRL_DMA_RESET));
2005
2006 /* wait till resets clear */
2007 do {
2008 ctrl = mci_readl(host, CTRL);
2009 if (!(ctrl & (SDMMC_CTRL_RESET | SDMMC_CTRL_FIFO_RESET |
2010 SDMMC_CTRL_DMA_RESET)))
2011 return true;
2012 } while (time_before(jiffies, timeout));
2013
2014 dev_err(dev, "Timeout resetting block (ctrl %#x)\n", ctrl);
2015
2016 return false;
2017}
2018
Thomas Abrahamc91eab42012-09-17 18:16:40 +00002019#ifdef CONFIG_OF
2020static struct dw_mci_of_quirks {
2021 char *quirk;
2022 int id;
2023} of_quirks[] = {
2024 {
2025 .quirk = "supports-highspeed",
2026 .id = DW_MCI_QUIRK_HIGHSPEED,
2027 }, {
2028 .quirk = "broken-cd",
2029 .id = DW_MCI_QUIRK_BROKEN_CARD_DETECTION,
2030 },
2031};
2032
2033static struct dw_mci_board *dw_mci_parse_dt(struct dw_mci *host)
2034{
2035 struct dw_mci_board *pdata;
2036 struct device *dev = host->dev;
2037 struct device_node *np = dev->of_node;
Thomas Abraham800d78b2012-09-17 18:16:42 +00002038 int idx, ret;
Thomas Abrahamc91eab42012-09-17 18:16:40 +00002039
2040 pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL);
2041 if (!pdata) {
2042 dev_err(dev, "could not allocate memory for pdata\n");
2043 return ERR_PTR(-ENOMEM);
2044 }
2045
2046 /* find out number of slots supported */
2047 if (of_property_read_u32(dev->of_node, "num-slots",
2048 &pdata->num_slots)) {
2049 dev_info(dev, "num-slots property not found, "
2050 "assuming 1 slot is available\n");
2051 pdata->num_slots = 1;
2052 }
2053
2054 /* get quirks */
2055 for (idx = 0; idx < ARRAY_SIZE(of_quirks); idx++)
2056 if (of_get_property(np, of_quirks[idx].quirk, NULL))
2057 pdata->quirks |= of_quirks[idx].id;
2058
2059 if (of_property_read_u32(np, "fifo-depth", &pdata->fifo_depth))
2060 dev_info(dev, "fifo-depth property not found, using "
2061 "value of FIFOTH register as default\n");
2062
2063 of_property_read_u32(np, "card-detect-delay", &pdata->detect_delay_ms);
2064
Thomas Abraham800d78b2012-09-17 18:16:42 +00002065 if (host->drv_data->parse_dt) {
2066 ret = host->drv_data->parse_dt(host);
2067 if (ret)
2068 return ERR_PTR(ret);
2069 }
2070
Thomas Abrahamc91eab42012-09-17 18:16:40 +00002071 return pdata;
2072}
2073
2074#else /* CONFIG_OF */
2075static struct dw_mci_board *dw_mci_parse_dt(struct dw_mci *host)
2076{
2077 return ERR_PTR(-EINVAL);
2078}
2079#endif /* CONFIG_OF */
2080
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05302081int dw_mci_probe(struct dw_mci *host)
Will Newtonf95f3852011-01-02 01:11:59 -05002082{
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05302083 int width, i, ret = 0;
Will Newtonf95f3852011-01-02 01:11:59 -05002084 u32 fifo_size;
Thomas Abraham1c2215b2012-09-17 18:16:37 +00002085 int init_slots = 0;
Will Newtonf95f3852011-01-02 01:11:59 -05002086
Thomas Abrahamc91eab42012-09-17 18:16:40 +00002087 if (!host->pdata) {
2088 host->pdata = dw_mci_parse_dt(host);
2089 if (IS_ERR(host->pdata)) {
2090 dev_err(host->dev, "platform data not available\n");
2091 return -EINVAL;
2092 }
Will Newtonf95f3852011-01-02 01:11:59 -05002093 }
2094
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05302095 if (!host->pdata->select_slot && host->pdata->num_slots > 1) {
Thomas Abraham4a909202012-09-17 18:16:35 +00002096 dev_err(host->dev,
Will Newtonf95f3852011-01-02 01:11:59 -05002097 "Platform data must supply select_slot function\n");
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05302098 return -ENODEV;
Will Newtonf95f3852011-01-02 01:11:59 -05002099 }
2100
Thomas Abrahamf90a0612012-09-17 18:16:38 +00002101 host->biu_clk = clk_get(host->dev, "biu");
2102 if (IS_ERR(host->biu_clk)) {
2103 dev_dbg(host->dev, "biu clock not available\n");
2104 } else {
2105 ret = clk_prepare_enable(host->biu_clk);
2106 if (ret) {
2107 dev_err(host->dev, "failed to enable biu clock\n");
2108 clk_put(host->biu_clk);
2109 return ret;
2110 }
Will Newtonf95f3852011-01-02 01:11:59 -05002111 }
2112
Thomas Abrahamf90a0612012-09-17 18:16:38 +00002113 host->ciu_clk = clk_get(host->dev, "ciu");
2114 if (IS_ERR(host->ciu_clk)) {
2115 dev_dbg(host->dev, "ciu clock not available\n");
2116 } else {
2117 ret = clk_prepare_enable(host->ciu_clk);
2118 if (ret) {
2119 dev_err(host->dev, "failed to enable ciu clock\n");
2120 clk_put(host->ciu_clk);
2121 goto err_clk_biu;
2122 }
2123 }
2124
2125 if (IS_ERR(host->ciu_clk))
2126 host->bus_hz = host->pdata->bus_hz;
2127 else
2128 host->bus_hz = clk_get_rate(host->ciu_clk);
2129
Thomas Abraham800d78b2012-09-17 18:16:42 +00002130 if (host->drv_data->setup_clock) {
2131 ret = host->drv_data->setup_clock(host);
2132 if (ret) {
2133 dev_err(host->dev,
2134 "implementation specific clock setup failed\n");
2135 goto err_clk_ciu;
2136 }
2137 }
2138
Thomas Abrahamf90a0612012-09-17 18:16:38 +00002139 if (!host->bus_hz) {
2140 dev_err(host->dev,
2141 "Platform data must supply bus speed\n");
2142 ret = -ENODEV;
2143 goto err_clk_ciu;
2144 }
2145
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05302146 host->quirks = host->pdata->quirks;
Will Newtonf95f3852011-01-02 01:11:59 -05002147
2148 spin_lock_init(&host->lock);
2149 INIT_LIST_HEAD(&host->queue);
2150
Will Newtonf95f3852011-01-02 01:11:59 -05002151 /*
2152 * Get the host data width - this assumes that HCON has been set with
2153 * the correct values.
2154 */
2155 i = (mci_readl(host, HCON) >> 7) & 0x7;
2156 if (!i) {
2157 host->push_data = dw_mci_push_data16;
2158 host->pull_data = dw_mci_pull_data16;
2159 width = 16;
2160 host->data_shift = 1;
2161 } else if (i == 2) {
2162 host->push_data = dw_mci_push_data64;
2163 host->pull_data = dw_mci_pull_data64;
2164 width = 64;
2165 host->data_shift = 3;
2166 } else {
2167 /* Check for a reserved value, and warn if it is */
2168 WARN((i != 1),
2169 "HCON reports a reserved host data width!\n"
2170 "Defaulting to 32-bit access.\n");
2171 host->push_data = dw_mci_push_data32;
2172 host->pull_data = dw_mci_pull_data32;
2173 width = 32;
2174 host->data_shift = 2;
2175 }
2176
2177 /* Reset all blocks */
Thomas Abraham4a909202012-09-17 18:16:35 +00002178 if (!mci_wait_reset(host->dev, host))
Seungwon Jeon141a7122012-05-22 13:01:03 +09002179 return -ENODEV;
2180
2181 host->dma_ops = host->pdata->dma_ops;
2182 dw_mci_init_dma(host);
Will Newtonf95f3852011-01-02 01:11:59 -05002183
2184 /* Clear the interrupts for the host controller */
2185 mci_writel(host, RINTSTS, 0xFFFFFFFF);
2186 mci_writel(host, INTMASK, 0); /* disable all mmc interrupt first */
2187
2188 /* Put in max timeout */
2189 mci_writel(host, TMOUT, 0xFFFFFFFF);
2190
2191 /*
2192 * FIFO threshold settings RxMark = fifo_size / 2 - 1,
2193 * Tx Mark = fifo_size / 2 DMA Size = 8
2194 */
James Hoganb86d8252011-06-24 13:57:18 +01002195 if (!host->pdata->fifo_depth) {
2196 /*
2197 * Power-on value of RX_WMark is FIFO_DEPTH-1, but this may
2198 * have been overwritten by the bootloader, just like we're
2199 * about to do, so if you know the value for your hardware, you
2200 * should put it in the platform data.
2201 */
2202 fifo_size = mci_readl(host, FIFOTH);
Jaehoon Chung8234e862012-01-11 09:28:21 +00002203 fifo_size = 1 + ((fifo_size >> 16) & 0xfff);
James Hoganb86d8252011-06-24 13:57:18 +01002204 } else {
2205 fifo_size = host->pdata->fifo_depth;
2206 }
2207 host->fifo_depth = fifo_size;
Jaehoon Chunge61cf112011-03-17 20:32:33 +09002208 host->fifoth_val = ((0x2 << 28) | ((fifo_size/2 - 1) << 16) |
2209 ((fifo_size/2) << 0));
2210 mci_writel(host, FIFOTH, host->fifoth_val);
Will Newtonf95f3852011-01-02 01:11:59 -05002211
2212 /* disable clock to CIU */
2213 mci_writel(host, CLKENA, 0);
2214 mci_writel(host, CLKSRC, 0);
2215
2216 tasklet_init(&host->tasklet, dw_mci_tasklet_func, (unsigned long)host);
Thomas Abraham95dcc2c2012-05-01 14:57:36 -07002217 host->card_workqueue = alloc_workqueue("dw-mci-card",
James Hogan1791b13e2011-06-24 13:55:55 +01002218 WQ_MEM_RECLAIM | WQ_NON_REENTRANT, 1);
Thomas Abraham95dcc2c2012-05-01 14:57:36 -07002219 if (!host->card_workqueue)
James Hogan1791b13e2011-06-24 13:55:55 +01002220 goto err_dmaunmap;
2221 INIT_WORK(&host->card_work, dw_mci_work_routine_card);
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05302222 ret = request_irq(host->irq, dw_mci_interrupt, host->irq_flags, "dw-mci", host);
Will Newtonf95f3852011-01-02 01:11:59 -05002223 if (ret)
James Hogan1791b13e2011-06-24 13:55:55 +01002224 goto err_workqueue;
Will Newtonf95f3852011-01-02 01:11:59 -05002225
Will Newtonf95f3852011-01-02 01:11:59 -05002226 if (host->pdata->num_slots)
2227 host->num_slots = host->pdata->num_slots;
2228 else
2229 host->num_slots = ((mci_readl(host, HCON) >> 1) & 0x1F) + 1;
2230
Yuvaraj CD2da1d7f2012-10-08 14:29:51 +05302231 /*
2232 * Enable interrupts for command done, data over, data empty, card det,
2233 * receive ready and error such as transmit, receive timeout, crc error
2234 */
2235 mci_writel(host, RINTSTS, 0xFFFFFFFF);
2236 mci_writel(host, INTMASK, SDMMC_INT_CMD_DONE | SDMMC_INT_DATA_OVER |
2237 SDMMC_INT_TXDR | SDMMC_INT_RXDR |
2238 DW_MCI_ERROR_FLAGS | SDMMC_INT_CD);
2239 mci_writel(host, CTRL, SDMMC_CTRL_INT_ENABLE); /* Enable mci interrupt */
2240
2241 dev_info(host->dev, "DW MMC controller at irq %d, "
2242 "%d bit host data width, "
2243 "%u deep fifo\n",
2244 host->irq, width, fifo_size);
2245
Will Newtonf95f3852011-01-02 01:11:59 -05002246 /* We need at least one slot to succeed */
2247 for (i = 0; i < host->num_slots; i++) {
2248 ret = dw_mci_init_slot(host, i);
Thomas Abraham1c2215b2012-09-17 18:16:37 +00002249 if (ret)
2250 dev_dbg(host->dev, "slot %d init failed\n", i);
2251 else
2252 init_slots++;
2253 }
2254
2255 if (init_slots) {
2256 dev_info(host->dev, "%d slots initialized\n", init_slots);
2257 } else {
2258 dev_dbg(host->dev, "attempted to initialize %d slots, "
2259 "but failed on all\n", host->num_slots);
2260 goto err_init_slot;
Will Newtonf95f3852011-01-02 01:11:59 -05002261 }
2262
2263 /*
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09002264 * In 2.40a spec, Data offset is changed.
2265 * Need to check the version-id and set data-offset for DATA register.
2266 */
2267 host->verid = SDMMC_GET_VERID(mci_readl(host, VERID));
Thomas Abraham4a909202012-09-17 18:16:35 +00002268 dev_info(host->dev, "Version ID is %04x\n", host->verid);
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09002269
2270 if (host->verid < DW_MMC_240A)
2271 host->data_offset = DATA_OFFSET;
2272 else
2273 host->data_offset = DATA_240A_OFFSET;
2274
Will Newtonf95f3852011-01-02 01:11:59 -05002275 if (host->quirks & DW_MCI_QUIRK_IDMAC_DTO)
Thomas Abraham4a909202012-09-17 18:16:35 +00002276 dev_info(host->dev, "Internal DMAC interrupt fix enabled.\n");
Will Newtonf95f3852011-01-02 01:11:59 -05002277
2278 return 0;
2279
2280err_init_slot:
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05302281 free_irq(host->irq, host);
Will Newtonf95f3852011-01-02 01:11:59 -05002282
James Hogan1791b13e2011-06-24 13:55:55 +01002283err_workqueue:
Thomas Abraham95dcc2c2012-05-01 14:57:36 -07002284 destroy_workqueue(host->card_workqueue);
James Hogan1791b13e2011-06-24 13:55:55 +01002285
Will Newtonf95f3852011-01-02 01:11:59 -05002286err_dmaunmap:
2287 if (host->use_dma && host->dma_ops->exit)
2288 host->dma_ops->exit(host);
Thomas Abraham4a909202012-09-17 18:16:35 +00002289 dma_free_coherent(host->dev, PAGE_SIZE,
Will Newtonf95f3852011-01-02 01:11:59 -05002290 host->sg_cpu, host->sg_dma);
Will Newtonf95f3852011-01-02 01:11:59 -05002291
Jaehoon Chungc07946a2011-02-25 11:08:14 +09002292 if (host->vmmc) {
2293 regulator_disable(host->vmmc);
2294 regulator_put(host->vmmc);
2295 }
Thomas Abrahamf90a0612012-09-17 18:16:38 +00002296
2297err_clk_ciu:
2298 if (!IS_ERR(host->ciu_clk)) {
2299 clk_disable_unprepare(host->ciu_clk);
2300 clk_put(host->ciu_clk);
2301 }
2302err_clk_biu:
2303 if (!IS_ERR(host->biu_clk)) {
2304 clk_disable_unprepare(host->biu_clk);
2305 clk_put(host->biu_clk);
2306 }
Will Newtonf95f3852011-01-02 01:11:59 -05002307 return ret;
2308}
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05302309EXPORT_SYMBOL(dw_mci_probe);
Will Newtonf95f3852011-01-02 01:11:59 -05002310
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05302311void dw_mci_remove(struct dw_mci *host)
Will Newtonf95f3852011-01-02 01:11:59 -05002312{
Will Newtonf95f3852011-01-02 01:11:59 -05002313 int i;
2314
2315 mci_writel(host, RINTSTS, 0xFFFFFFFF);
2316 mci_writel(host, INTMASK, 0); /* disable all mmc interrupt first */
2317
Will Newtonf95f3852011-01-02 01:11:59 -05002318 for (i = 0; i < host->num_slots; i++) {
Thomas Abraham4a909202012-09-17 18:16:35 +00002319 dev_dbg(host->dev, "remove slot %d\n", i);
Will Newtonf95f3852011-01-02 01:11:59 -05002320 if (host->slot[i])
2321 dw_mci_cleanup_slot(host->slot[i], i);
2322 }
2323
2324 /* disable clock to CIU */
2325 mci_writel(host, CLKENA, 0);
2326 mci_writel(host, CLKSRC, 0);
2327
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05302328 free_irq(host->irq, host);
Thomas Abraham95dcc2c2012-05-01 14:57:36 -07002329 destroy_workqueue(host->card_workqueue);
Thomas Abraham4a909202012-09-17 18:16:35 +00002330 dma_free_coherent(host->dev, PAGE_SIZE, host->sg_cpu, host->sg_dma);
Will Newtonf95f3852011-01-02 01:11:59 -05002331
2332 if (host->use_dma && host->dma_ops->exit)
2333 host->dma_ops->exit(host);
2334
Jaehoon Chungc07946a2011-02-25 11:08:14 +09002335 if (host->vmmc) {
2336 regulator_disable(host->vmmc);
2337 regulator_put(host->vmmc);
2338 }
2339
Thomas Abrahamf90a0612012-09-17 18:16:38 +00002340 if (!IS_ERR(host->ciu_clk))
2341 clk_disable_unprepare(host->ciu_clk);
2342 if (!IS_ERR(host->biu_clk))
2343 clk_disable_unprepare(host->biu_clk);
2344 clk_put(host->ciu_clk);
2345 clk_put(host->biu_clk);
Will Newtonf95f3852011-01-02 01:11:59 -05002346}
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05302347EXPORT_SYMBOL(dw_mci_remove);
2348
2349
Will Newtonf95f3852011-01-02 01:11:59 -05002350
Jaehoon Chung6fe88902011-12-08 19:23:03 +09002351#ifdef CONFIG_PM_SLEEP
Will Newtonf95f3852011-01-02 01:11:59 -05002352/*
2353 * TODO: we should probably disable the clock to the card in the suspend path.
2354 */
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05302355int dw_mci_suspend(struct dw_mci *host)
Will Newtonf95f3852011-01-02 01:11:59 -05002356{
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05302357 int i, ret = 0;
Will Newtonf95f3852011-01-02 01:11:59 -05002358
2359 for (i = 0; i < host->num_slots; i++) {
2360 struct dw_mci_slot *slot = host->slot[i];
2361 if (!slot)
2362 continue;
2363 ret = mmc_suspend_host(slot->mmc);
2364 if (ret < 0) {
2365 while (--i >= 0) {
2366 slot = host->slot[i];
2367 if (slot)
2368 mmc_resume_host(host->slot[i]->mmc);
2369 }
2370 return ret;
2371 }
2372 }
2373
Jaehoon Chungc07946a2011-02-25 11:08:14 +09002374 if (host->vmmc)
2375 regulator_disable(host->vmmc);
2376
Will Newtonf95f3852011-01-02 01:11:59 -05002377 return 0;
2378}
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05302379EXPORT_SYMBOL(dw_mci_suspend);
Will Newtonf95f3852011-01-02 01:11:59 -05002380
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05302381int dw_mci_resume(struct dw_mci *host)
Will Newtonf95f3852011-01-02 01:11:59 -05002382{
2383 int i, ret;
Will Newtonf95f3852011-01-02 01:11:59 -05002384
Jaehoon Chung1d6c4e02011-05-11 15:52:39 +09002385 if (host->vmmc)
2386 regulator_enable(host->vmmc);
2387
Thomas Abraham4a909202012-09-17 18:16:35 +00002388 if (!mci_wait_reset(host->dev, host)) {
Jaehoon Chunge61cf112011-03-17 20:32:33 +09002389 ret = -ENODEV;
2390 return ret;
2391 }
2392
Jonathan Kliegman3bfe6192012-06-14 13:31:55 -04002393 if (host->use_dma && host->dma_ops->init)
Seungwon Jeon141a7122012-05-22 13:01:03 +09002394 host->dma_ops->init(host);
2395
Jaehoon Chunge61cf112011-03-17 20:32:33 +09002396 /* Restore the old value at FIFOTH register */
2397 mci_writel(host, FIFOTH, host->fifoth_val);
2398
2399 mci_writel(host, RINTSTS, 0xFFFFFFFF);
2400 mci_writel(host, INTMASK, SDMMC_INT_CMD_DONE | SDMMC_INT_DATA_OVER |
2401 SDMMC_INT_TXDR | SDMMC_INT_RXDR |
2402 DW_MCI_ERROR_FLAGS | SDMMC_INT_CD);
2403 mci_writel(host, CTRL, SDMMC_CTRL_INT_ENABLE);
2404
Will Newtonf95f3852011-01-02 01:11:59 -05002405 for (i = 0; i < host->num_slots; i++) {
2406 struct dw_mci_slot *slot = host->slot[i];
2407 if (!slot)
2408 continue;
2409 ret = mmc_resume_host(host->slot[i]->mmc);
2410 if (ret < 0)
2411 return ret;
2412 }
Will Newtonf95f3852011-01-02 01:11:59 -05002413 return 0;
2414}
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05302415EXPORT_SYMBOL(dw_mci_resume);
Jaehoon Chung6fe88902011-12-08 19:23:03 +09002416#endif /* CONFIG_PM_SLEEP */
2417
Will Newtonf95f3852011-01-02 01:11:59 -05002418static int __init dw_mci_init(void)
2419{
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05302420 printk(KERN_INFO "Synopsys Designware Multimedia Card Interface Driver");
2421 return 0;
Will Newtonf95f3852011-01-02 01:11:59 -05002422}
2423
2424static void __exit dw_mci_exit(void)
2425{
Will Newtonf95f3852011-01-02 01:11:59 -05002426}
2427
2428module_init(dw_mci_init);
2429module_exit(dw_mci_exit);
2430
2431MODULE_DESCRIPTION("DW Multimedia Card Interface driver");
2432MODULE_AUTHOR("NXP Semiconductor VietNam");
2433MODULE_AUTHOR("Imagination Technologies Ltd");
2434MODULE_LICENSE("GPL v2");