blob: 8e0836d39081b3ca1964b27ebed921a10b8ee24d [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>
Doug Andersonb24c8b22014-12-02 15:42:46 -080030#include <linux/mmc/card.h>
Will Newtonf95f3852011-01-02 01:11:59 -050031#include <linux/mmc/host.h>
32#include <linux/mmc/mmc.h>
Doug Anderson01730552014-08-22 19:17:51 +053033#include <linux/mmc/sd.h>
Seungwon Jeon90c21432013-08-31 00:14:05 +090034#include <linux/mmc/sdio.h>
Will Newtonf95f3852011-01-02 01:11:59 -050035#include <linux/mmc/dw_mmc.h>
36#include <linux/bitops.h>
Jaehoon Chungc07946a2011-02-25 11:08:14 +090037#include <linux/regulator/consumer.h>
Thomas Abrahamc91eab42012-09-17 18:16:40 +000038#include <linux/of.h>
Doug Anderson55a6ceb2013-01-11 17:03:53 +000039#include <linux/of_gpio.h>
Zhangfei Gaobf626e52014-01-09 22:35:10 +080040#include <linux/mmc/slot-gpio.h>
Will Newtonf95f3852011-01-02 01:11:59 -050041
42#include "dw_mmc.h"
43
44/* Common flag combinations */
Jaehoon Chung3f7eec62013-05-27 13:47:57 +090045#define DW_MCI_DATA_ERROR_FLAGS (SDMMC_INT_DRTO | SDMMC_INT_DCRC | \
Will Newtonf95f3852011-01-02 01:11:59 -050046 SDMMC_INT_HTO | SDMMC_INT_SBE | \
47 SDMMC_INT_EBE)
48#define DW_MCI_CMD_ERROR_FLAGS (SDMMC_INT_RTO | SDMMC_INT_RCRC | \
49 SDMMC_INT_RESP_ERR)
50#define DW_MCI_ERROR_FLAGS (DW_MCI_DATA_ERROR_FLAGS | \
51 DW_MCI_CMD_ERROR_FLAGS | SDMMC_INT_HLE)
52#define DW_MCI_SEND_STATUS 1
53#define DW_MCI_RECV_STATUS 2
54#define DW_MCI_DMA_THRESHOLD 16
55
Seungwon Jeon1f44a2a2013-08-31 00:13:31 +090056#define DW_MCI_FREQ_MAX 200000000 /* unit: HZ */
57#define DW_MCI_FREQ_MIN 400000 /* unit: HZ */
58
Will Newtonf95f3852011-01-02 01:11:59 -050059#ifdef CONFIG_MMC_DW_IDMAC
Joonyoung Shimfc79a4d2013-04-26 15:35:22 +090060#define IDMAC_INT_CLR (SDMMC_IDMAC_INT_AI | SDMMC_IDMAC_INT_NI | \
61 SDMMC_IDMAC_INT_CES | SDMMC_IDMAC_INT_DU | \
62 SDMMC_IDMAC_INT_FBE | SDMMC_IDMAC_INT_RI | \
63 SDMMC_IDMAC_INT_TI)
64
Prabu Thangamuthu69d99fd2014-10-20 07:12:33 +000065struct idmac_desc_64addr {
66 u32 des0; /* Control Descriptor */
67
68 u32 des1; /* Reserved */
69
70 u32 des2; /*Buffer sizes */
71#define IDMAC_64ADDR_SET_BUFFER1_SIZE(d, s) \
72 ((d)->des2 = ((d)->des2 & 0x03ffe000) | ((s) & 0x1fff))
73
74 u32 des3; /* Reserved */
75
76 u32 des4; /* Lower 32-bits of Buffer Address Pointer 1*/
77 u32 des5; /* Upper 32-bits of Buffer Address Pointer 1*/
78
79 u32 des6; /* Lower 32-bits of Next Descriptor Address */
80 u32 des7; /* Upper 32-bits of Next Descriptor Address */
81};
82
Will Newtonf95f3852011-01-02 01:11:59 -050083struct idmac_desc {
84 u32 des0; /* Control Descriptor */
85#define IDMAC_DES0_DIC BIT(1)
86#define IDMAC_DES0_LD BIT(2)
87#define IDMAC_DES0_FD BIT(3)
88#define IDMAC_DES0_CH BIT(4)
89#define IDMAC_DES0_ER BIT(5)
90#define IDMAC_DES0_CES BIT(30)
91#define IDMAC_DES0_OWN BIT(31)
92
93 u32 des1; /* Buffer sizes */
94#define IDMAC_SET_BUFFER1_SIZE(d, s) \
Shashidhar Hiremath9b7bbe12011-07-29 08:49:50 -040095 ((d)->des1 = ((d)->des1 & 0x03ffe000) | ((s) & 0x1fff))
Will Newtonf95f3852011-01-02 01:11:59 -050096
97 u32 des2; /* buffer 1 physical address */
98
99 u32 des3; /* buffer 2 physical address */
100};
101#endif /* CONFIG_MMC_DW_IDMAC */
102
Sonny Rao3a33a942014-08-04 18:19:50 -0700103static bool dw_mci_reset(struct dw_mci *host);
Sonny Rao536f6b92014-10-16 09:58:05 -0700104static bool dw_mci_ctrl_reset(struct dw_mci *host, u32 reset);
Doug Anderson0bdbd0e2015-02-20 12:31:56 -0800105static int dw_mci_card_busy(struct mmc_host *mmc);
Seungwon Jeon31bff452013-08-31 00:14:23 +0900106
Will Newtonf95f3852011-01-02 01:11:59 -0500107#if defined(CONFIG_DEBUG_FS)
108static int dw_mci_req_show(struct seq_file *s, void *v)
109{
110 struct dw_mci_slot *slot = s->private;
111 struct mmc_request *mrq;
112 struct mmc_command *cmd;
113 struct mmc_command *stop;
114 struct mmc_data *data;
115
116 /* Make sure we get a consistent snapshot */
117 spin_lock_bh(&slot->host->lock);
118 mrq = slot->mrq;
119
120 if (mrq) {
121 cmd = mrq->cmd;
122 data = mrq->data;
123 stop = mrq->stop;
124
125 if (cmd)
126 seq_printf(s,
127 "CMD%u(0x%x) flg %x rsp %x %x %x %x err %d\n",
128 cmd->opcode, cmd->arg, cmd->flags,
129 cmd->resp[0], cmd->resp[1], cmd->resp[2],
130 cmd->resp[2], cmd->error);
131 if (data)
132 seq_printf(s, "DATA %u / %u * %u flg %x err %d\n",
133 data->bytes_xfered, data->blocks,
134 data->blksz, data->flags, data->error);
135 if (stop)
136 seq_printf(s,
137 "CMD%u(0x%x) flg %x rsp %x %x %x %x err %d\n",
138 stop->opcode, stop->arg, stop->flags,
139 stop->resp[0], stop->resp[1], stop->resp[2],
140 stop->resp[2], stop->error);
141 }
142
143 spin_unlock_bh(&slot->host->lock);
144
145 return 0;
146}
147
148static int dw_mci_req_open(struct inode *inode, struct file *file)
149{
150 return single_open(file, dw_mci_req_show, inode->i_private);
151}
152
153static const struct file_operations dw_mci_req_fops = {
154 .owner = THIS_MODULE,
155 .open = dw_mci_req_open,
156 .read = seq_read,
157 .llseek = seq_lseek,
158 .release = single_release,
159};
160
161static int dw_mci_regs_show(struct seq_file *s, void *v)
162{
163 seq_printf(s, "STATUS:\t0x%08x\n", SDMMC_STATUS);
164 seq_printf(s, "RINTSTS:\t0x%08x\n", SDMMC_RINTSTS);
165 seq_printf(s, "CMD:\t0x%08x\n", SDMMC_CMD);
166 seq_printf(s, "CTRL:\t0x%08x\n", SDMMC_CTRL);
167 seq_printf(s, "INTMASK:\t0x%08x\n", SDMMC_INTMASK);
168 seq_printf(s, "CLKENA:\t0x%08x\n", SDMMC_CLKENA);
169
170 return 0;
171}
172
173static int dw_mci_regs_open(struct inode *inode, struct file *file)
174{
175 return single_open(file, dw_mci_regs_show, inode->i_private);
176}
177
178static const struct file_operations dw_mci_regs_fops = {
179 .owner = THIS_MODULE,
180 .open = dw_mci_regs_open,
181 .read = seq_read,
182 .llseek = seq_lseek,
183 .release = single_release,
184};
185
186static void dw_mci_init_debugfs(struct dw_mci_slot *slot)
187{
188 struct mmc_host *mmc = slot->mmc;
189 struct dw_mci *host = slot->host;
190 struct dentry *root;
191 struct dentry *node;
192
193 root = mmc->debugfs_root;
194 if (!root)
195 return;
196
197 node = debugfs_create_file("regs", S_IRUSR, root, host,
198 &dw_mci_regs_fops);
199 if (!node)
200 goto err;
201
202 node = debugfs_create_file("req", S_IRUSR, root, slot,
203 &dw_mci_req_fops);
204 if (!node)
205 goto err;
206
207 node = debugfs_create_u32("state", S_IRUSR, root, (u32 *)&host->state);
208 if (!node)
209 goto err;
210
211 node = debugfs_create_x32("pending_events", S_IRUSR, root,
212 (u32 *)&host->pending_events);
213 if (!node)
214 goto err;
215
216 node = debugfs_create_x32("completed_events", S_IRUSR, root,
217 (u32 *)&host->completed_events);
218 if (!node)
219 goto err;
220
221 return;
222
223err:
224 dev_err(&mmc->class_dev, "failed to initialize debugfs for slot\n");
225}
226#endif /* defined(CONFIG_DEBUG_FS) */
227
Doug Anderson01730552014-08-22 19:17:51 +0530228static void mci_send_cmd(struct dw_mci_slot *slot, u32 cmd, u32 arg);
229
Will Newtonf95f3852011-01-02 01:11:59 -0500230static u32 dw_mci_prepare_command(struct mmc_host *mmc, struct mmc_command *cmd)
231{
232 struct mmc_data *data;
Thomas Abraham800d78b2012-09-17 18:16:42 +0000233 struct dw_mci_slot *slot = mmc_priv(mmc);
Doug Anderson01730552014-08-22 19:17:51 +0530234 struct dw_mci *host = slot->host;
Arnd Bergmanne95baf12012-11-08 14:26:11 +0000235 const struct dw_mci_drv_data *drv_data = slot->host->drv_data;
Will Newtonf95f3852011-01-02 01:11:59 -0500236 u32 cmdr;
237 cmd->error = -EINPROGRESS;
238
239 cmdr = cmd->opcode;
240
Seungwon Jeon90c21432013-08-31 00:14:05 +0900241 if (cmd->opcode == MMC_STOP_TRANSMISSION ||
242 cmd->opcode == MMC_GO_IDLE_STATE ||
243 cmd->opcode == MMC_GO_INACTIVE_STATE ||
244 (cmd->opcode == SD_IO_RW_DIRECT &&
245 ((cmd->arg >> 9) & 0x1FFFF) == SDIO_CCCR_ABORT))
Will Newtonf95f3852011-01-02 01:11:59 -0500246 cmdr |= SDMMC_CMD_STOP;
Jaehoon Chung4a1b27a2014-03-03 11:36:44 +0900247 else if (cmd->opcode != MMC_SEND_STATUS && cmd->data)
248 cmdr |= SDMMC_CMD_PRV_DAT_WAIT;
Will Newtonf95f3852011-01-02 01:11:59 -0500249
Doug Anderson01730552014-08-22 19:17:51 +0530250 if (cmd->opcode == SD_SWITCH_VOLTAGE) {
251 u32 clk_en_a;
252
253 /* Special bit makes CMD11 not die */
254 cmdr |= SDMMC_CMD_VOLT_SWITCH;
255
256 /* Change state to continue to handle CMD11 weirdness */
257 WARN_ON(slot->host->state != STATE_SENDING_CMD);
258 slot->host->state = STATE_SENDING_CMD11;
259
260 /*
261 * We need to disable low power mode (automatic clock stop)
262 * while doing voltage switch so we don't confuse the card,
263 * since stopping the clock is a specific part of the UHS
264 * voltage change dance.
265 *
266 * Note that low power mode (SDMMC_CLKEN_LOW_PWR) will be
267 * unconditionally turned back on in dw_mci_setup_bus() if it's
268 * ever called with a non-zero clock. That shouldn't happen
269 * until the voltage change is all done.
270 */
271 clk_en_a = mci_readl(host, CLKENA);
272 clk_en_a &= ~(SDMMC_CLKEN_LOW_PWR << slot->id);
273 mci_writel(host, CLKENA, clk_en_a);
274 mci_send_cmd(slot, SDMMC_CMD_UPD_CLK |
275 SDMMC_CMD_PRV_DAT_WAIT, 0);
276 }
277
Will Newtonf95f3852011-01-02 01:11:59 -0500278 if (cmd->flags & MMC_RSP_PRESENT) {
279 /* We expect a response, so set this bit */
280 cmdr |= SDMMC_CMD_RESP_EXP;
281 if (cmd->flags & MMC_RSP_136)
282 cmdr |= SDMMC_CMD_RESP_LONG;
283 }
284
285 if (cmd->flags & MMC_RSP_CRC)
286 cmdr |= SDMMC_CMD_RESP_CRC;
287
288 data = cmd->data;
289 if (data) {
290 cmdr |= SDMMC_CMD_DAT_EXP;
291 if (data->flags & MMC_DATA_STREAM)
292 cmdr |= SDMMC_CMD_STRM_MODE;
293 if (data->flags & MMC_DATA_WRITE)
294 cmdr |= SDMMC_CMD_DAT_WR;
295 }
296
James Hogancb27a842012-10-16 09:43:08 +0100297 if (drv_data && drv_data->prepare_command)
298 drv_data->prepare_command(slot->host, &cmdr);
Thomas Abraham800d78b2012-09-17 18:16:42 +0000299
Will Newtonf95f3852011-01-02 01:11:59 -0500300 return cmdr;
301}
302
Seungwon Jeon90c21432013-08-31 00:14:05 +0900303static u32 dw_mci_prep_stop_abort(struct dw_mci *host, struct mmc_command *cmd)
304{
305 struct mmc_command *stop;
306 u32 cmdr;
307
308 if (!cmd->data)
309 return 0;
310
311 stop = &host->stop_abort;
312 cmdr = cmd->opcode;
313 memset(stop, 0, sizeof(struct mmc_command));
314
315 if (cmdr == MMC_READ_SINGLE_BLOCK ||
316 cmdr == MMC_READ_MULTIPLE_BLOCK ||
317 cmdr == MMC_WRITE_BLOCK ||
Ulf Hansson6c2c6502014-12-01 16:13:39 +0100318 cmdr == MMC_WRITE_MULTIPLE_BLOCK ||
319 cmdr == MMC_SEND_TUNING_BLOCK ||
320 cmdr == MMC_SEND_TUNING_BLOCK_HS200) {
Seungwon Jeon90c21432013-08-31 00:14:05 +0900321 stop->opcode = MMC_STOP_TRANSMISSION;
322 stop->arg = 0;
323 stop->flags = MMC_RSP_R1B | MMC_CMD_AC;
324 } else if (cmdr == SD_IO_RW_EXTENDED) {
325 stop->opcode = SD_IO_RW_DIRECT;
326 stop->arg |= (1 << 31) | (0 << 28) | (SDIO_CCCR_ABORT << 9) |
327 ((cmd->arg >> 28) & 0x7);
328 stop->flags = MMC_RSP_SPI_R5 | MMC_RSP_R5 | MMC_CMD_AC;
329 } else {
330 return 0;
331 }
332
333 cmdr = stop->opcode | SDMMC_CMD_STOP |
334 SDMMC_CMD_RESP_CRC | SDMMC_CMD_RESP_EXP;
335
336 return cmdr;
337}
338
Doug Anderson0bdbd0e2015-02-20 12:31:56 -0800339static void dw_mci_wait_while_busy(struct dw_mci *host, u32 cmd_flags)
340{
341 unsigned long timeout = jiffies + msecs_to_jiffies(500);
342
343 /*
344 * Databook says that before issuing a new data transfer command
345 * we need to check to see if the card is busy. Data transfer commands
346 * all have SDMMC_CMD_PRV_DAT_WAIT set, so we'll key off that.
347 *
348 * ...also allow sending for SDMMC_CMD_VOLT_SWITCH where busy is
349 * expected.
350 */
351 if ((cmd_flags & SDMMC_CMD_PRV_DAT_WAIT) &&
352 !(cmd_flags & SDMMC_CMD_VOLT_SWITCH)) {
353 while (mci_readl(host, STATUS) & SDMMC_STATUS_BUSY) {
354 if (time_after(jiffies, timeout)) {
355 /* Command will fail; we'll pass error then */
356 dev_err(host->dev, "Busy; trying anyway\n");
357 break;
358 }
359 udelay(10);
360 }
361 }
362}
363
Will Newtonf95f3852011-01-02 01:11:59 -0500364static void dw_mci_start_command(struct dw_mci *host,
365 struct mmc_command *cmd, u32 cmd_flags)
366{
367 host->cmd = cmd;
Thomas Abraham4a909202012-09-17 18:16:35 +0000368 dev_vdbg(host->dev,
Will Newtonf95f3852011-01-02 01:11:59 -0500369 "start command: ARGR=0x%08x CMDR=0x%08x\n",
370 cmd->arg, cmd_flags);
371
372 mci_writel(host, CMDARG, cmd->arg);
373 wmb();
Doug Anderson0bdbd0e2015-02-20 12:31:56 -0800374 dw_mci_wait_while_busy(host, cmd_flags);
Will Newtonf95f3852011-01-02 01:11:59 -0500375
376 mci_writel(host, CMD, cmd_flags | SDMMC_CMD_START);
377}
378
Seungwon Jeon90c21432013-08-31 00:14:05 +0900379static inline void send_stop_abort(struct dw_mci *host, struct mmc_data *data)
Will Newtonf95f3852011-01-02 01:11:59 -0500380{
Seungwon Jeon90c21432013-08-31 00:14:05 +0900381 struct mmc_command *stop = data->stop ? data->stop : &host->stop_abort;
382 dw_mci_start_command(host, stop, host->stop_cmdr);
Will Newtonf95f3852011-01-02 01:11:59 -0500383}
384
385/* DMA interface functions */
386static void dw_mci_stop_dma(struct dw_mci *host)
387{
James Hogan03e8cb52011-06-29 09:28:43 +0100388 if (host->using_dma) {
Will Newtonf95f3852011-01-02 01:11:59 -0500389 host->dma_ops->stop(host);
390 host->dma_ops->cleanup(host);
Will Newtonf95f3852011-01-02 01:11:59 -0500391 }
Seungwon Jeonaa50f252013-08-31 00:14:38 +0900392
393 /* Data transfer was stopped by the interrupt handler */
394 set_bit(EVENT_XFER_COMPLETE, &host->pending_events);
Will Newtonf95f3852011-01-02 01:11:59 -0500395}
396
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900397static int dw_mci_get_dma_dir(struct mmc_data *data)
398{
399 if (data->flags & MMC_DATA_WRITE)
400 return DMA_TO_DEVICE;
401 else
402 return DMA_FROM_DEVICE;
403}
404
Jaehoon Chung9beee912012-02-16 11:19:38 +0900405#ifdef CONFIG_MMC_DW_IDMAC
Will Newtonf95f3852011-01-02 01:11:59 -0500406static void dw_mci_dma_cleanup(struct dw_mci *host)
407{
408 struct mmc_data *data = host->data;
409
410 if (data)
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900411 if (!data->host_cookie)
Thomas Abraham4a909202012-09-17 18:16:35 +0000412 dma_unmap_sg(host->dev,
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900413 data->sg,
414 data->sg_len,
415 dw_mci_get_dma_dir(data));
Will Newtonf95f3852011-01-02 01:11:59 -0500416}
417
Seungwon Jeon5ce9d962013-08-31 00:14:33 +0900418static void dw_mci_idmac_reset(struct dw_mci *host)
419{
420 u32 bmod = mci_readl(host, BMOD);
421 /* Software reset of DMA */
422 bmod |= SDMMC_IDMAC_SWRESET;
423 mci_writel(host, BMOD, bmod);
424}
425
Will Newtonf95f3852011-01-02 01:11:59 -0500426static void dw_mci_idmac_stop_dma(struct dw_mci *host)
427{
428 u32 temp;
429
430 /* Disable and reset the IDMAC interface */
431 temp = mci_readl(host, CTRL);
432 temp &= ~SDMMC_CTRL_USE_IDMAC;
433 temp |= SDMMC_CTRL_DMA_RESET;
434 mci_writel(host, CTRL, temp);
435
436 /* Stop the IDMAC running */
437 temp = mci_readl(host, BMOD);
Jaehoon Chunga5289a42011-02-25 11:08:13 +0900438 temp &= ~(SDMMC_IDMAC_ENABLE | SDMMC_IDMAC_FB);
Seungwon Jeon5ce9d962013-08-31 00:14:33 +0900439 temp |= SDMMC_IDMAC_SWRESET;
Will Newtonf95f3852011-01-02 01:11:59 -0500440 mci_writel(host, BMOD, temp);
441}
442
443static void dw_mci_idmac_complete_dma(struct dw_mci *host)
444{
445 struct mmc_data *data = host->data;
446
Thomas Abraham4a909202012-09-17 18:16:35 +0000447 dev_vdbg(host->dev, "DMA complete\n");
Will Newtonf95f3852011-01-02 01:11:59 -0500448
449 host->dma_ops->cleanup(host);
450
451 /*
452 * If the card was removed, data will be NULL. No point in trying to
453 * send the stop command or waiting for NBUSY in this case.
454 */
455 if (data) {
456 set_bit(EVENT_XFER_COMPLETE, &host->pending_events);
457 tasklet_schedule(&host->tasklet);
458 }
459}
460
461static void dw_mci_translate_sglist(struct dw_mci *host, struct mmc_data *data,
462 unsigned int sg_len)
463{
464 int i;
Prabu Thangamuthu69d99fd2014-10-20 07:12:33 +0000465 if (host->dma_64bit_address == 1) {
466 struct idmac_desc_64addr *desc = host->sg_cpu;
Will Newtonf95f3852011-01-02 01:11:59 -0500467
Prabu Thangamuthu69d99fd2014-10-20 07:12:33 +0000468 for (i = 0; i < sg_len; i++, desc++) {
469 unsigned int length = sg_dma_len(&data->sg[i]);
470 u64 mem_addr = sg_dma_address(&data->sg[i]);
Will Newtonf95f3852011-01-02 01:11:59 -0500471
Prabu Thangamuthu69d99fd2014-10-20 07:12:33 +0000472 /*
473 * Set the OWN bit and disable interrupts for this
474 * descriptor
475 */
476 desc->des0 = IDMAC_DES0_OWN | IDMAC_DES0_DIC |
477 IDMAC_DES0_CH;
478 /* Buffer length */
479 IDMAC_64ADDR_SET_BUFFER1_SIZE(desc, length);
Will Newtonf95f3852011-01-02 01:11:59 -0500480
Prabu Thangamuthu69d99fd2014-10-20 07:12:33 +0000481 /* Physical address to DMA to/from */
482 desc->des4 = mem_addr & 0xffffffff;
483 desc->des5 = mem_addr >> 32;
484 }
Will Newtonf95f3852011-01-02 01:11:59 -0500485
Prabu Thangamuthu69d99fd2014-10-20 07:12:33 +0000486 /* Set first descriptor */
487 desc = host->sg_cpu;
488 desc->des0 |= IDMAC_DES0_FD;
489
490 /* Set last descriptor */
491 desc = host->sg_cpu + (i - 1) *
492 sizeof(struct idmac_desc_64addr);
493 desc->des0 &= ~(IDMAC_DES0_CH | IDMAC_DES0_DIC);
494 desc->des0 |= IDMAC_DES0_LD;
495
496 } else {
497 struct idmac_desc *desc = host->sg_cpu;
498
499 for (i = 0; i < sg_len; i++, desc++) {
500 unsigned int length = sg_dma_len(&data->sg[i]);
501 u32 mem_addr = sg_dma_address(&data->sg[i]);
502
503 /*
504 * Set the OWN bit and disable interrupts for this
505 * descriptor
506 */
507 desc->des0 = IDMAC_DES0_OWN | IDMAC_DES0_DIC |
508 IDMAC_DES0_CH;
509 /* Buffer length */
510 IDMAC_SET_BUFFER1_SIZE(desc, length);
511
512 /* Physical address to DMA to/from */
513 desc->des2 = mem_addr;
514 }
515
516 /* Set first descriptor */
517 desc = host->sg_cpu;
518 desc->des0 |= IDMAC_DES0_FD;
519
520 /* Set last descriptor */
521 desc = host->sg_cpu + (i - 1) * sizeof(struct idmac_desc);
522 desc->des0 &= ~(IDMAC_DES0_CH | IDMAC_DES0_DIC);
523 desc->des0 |= IDMAC_DES0_LD;
Will Newtonf95f3852011-01-02 01:11:59 -0500524 }
525
Will Newtonf95f3852011-01-02 01:11:59 -0500526 wmb();
527}
528
529static void dw_mci_idmac_start_dma(struct dw_mci *host, unsigned int sg_len)
530{
531 u32 temp;
532
533 dw_mci_translate_sglist(host, host->data, sg_len);
534
Sonny Rao536f6b92014-10-16 09:58:05 -0700535 /* Make sure to reset DMA in case we did PIO before this */
536 dw_mci_ctrl_reset(host, SDMMC_CTRL_DMA_RESET);
537 dw_mci_idmac_reset(host);
538
Will Newtonf95f3852011-01-02 01:11:59 -0500539 /* Select IDMAC interface */
540 temp = mci_readl(host, CTRL);
541 temp |= SDMMC_CTRL_USE_IDMAC;
542 mci_writel(host, CTRL, temp);
543
544 wmb();
545
546 /* Enable the IDMAC */
547 temp = mci_readl(host, BMOD);
Jaehoon Chunga5289a42011-02-25 11:08:13 +0900548 temp |= SDMMC_IDMAC_ENABLE | SDMMC_IDMAC_FB;
Will Newtonf95f3852011-01-02 01:11:59 -0500549 mci_writel(host, BMOD, temp);
550
551 /* Start it running */
552 mci_writel(host, PLDMND, 1);
553}
554
555static int dw_mci_idmac_init(struct dw_mci *host)
556{
Seungwon Jeon897b69e2012-09-19 13:58:31 +0800557 int i;
Will Newtonf95f3852011-01-02 01:11:59 -0500558
Prabu Thangamuthu69d99fd2014-10-20 07:12:33 +0000559 if (host->dma_64bit_address == 1) {
560 struct idmac_desc_64addr *p;
561 /* Number of descriptors in the ring buffer */
562 host->ring_size = PAGE_SIZE / sizeof(struct idmac_desc_64addr);
Will Newtonf95f3852011-01-02 01:11:59 -0500563
Prabu Thangamuthu69d99fd2014-10-20 07:12:33 +0000564 /* Forward link the descriptor list */
565 for (i = 0, p = host->sg_cpu; i < host->ring_size - 1;
566 i++, p++) {
567 p->des6 = (host->sg_dma +
568 (sizeof(struct idmac_desc_64addr) *
569 (i + 1))) & 0xffffffff;
Will Newtonf95f3852011-01-02 01:11:59 -0500570
Prabu Thangamuthu69d99fd2014-10-20 07:12:33 +0000571 p->des7 = (u64)(host->sg_dma +
572 (sizeof(struct idmac_desc_64addr) *
573 (i + 1))) >> 32;
574 /* Initialize reserved and buffer size fields to "0" */
575 p->des1 = 0;
576 p->des2 = 0;
577 p->des3 = 0;
578 }
579
580 /* Set the last descriptor as the end-of-ring descriptor */
581 p->des6 = host->sg_dma & 0xffffffff;
582 p->des7 = (u64)host->sg_dma >> 32;
583 p->des0 = IDMAC_DES0_ER;
584
585 } else {
586 struct idmac_desc *p;
587 /* Number of descriptors in the ring buffer */
588 host->ring_size = PAGE_SIZE / sizeof(struct idmac_desc);
589
590 /* Forward link the descriptor list */
591 for (i = 0, p = host->sg_cpu; i < host->ring_size - 1; i++, p++)
592 p->des3 = host->sg_dma + (sizeof(struct idmac_desc) *
593 (i + 1));
594
595 /* Set the last descriptor as the end-of-ring descriptor */
596 p->des3 = host->sg_dma;
597 p->des0 = IDMAC_DES0_ER;
598 }
Will Newtonf95f3852011-01-02 01:11:59 -0500599
Seungwon Jeon5ce9d962013-08-31 00:14:33 +0900600 dw_mci_idmac_reset(host);
Seungwon Jeon141a7122012-05-22 13:01:03 +0900601
Prabu Thangamuthu69d99fd2014-10-20 07:12:33 +0000602 if (host->dma_64bit_address == 1) {
603 /* Mask out interrupts - get Tx & Rx complete only */
604 mci_writel(host, IDSTS64, IDMAC_INT_CLR);
605 mci_writel(host, IDINTEN64, SDMMC_IDMAC_INT_NI |
606 SDMMC_IDMAC_INT_RI | SDMMC_IDMAC_INT_TI);
Will Newtonf95f3852011-01-02 01:11:59 -0500607
Prabu Thangamuthu69d99fd2014-10-20 07:12:33 +0000608 /* Set the descriptor base address */
609 mci_writel(host, DBADDRL, host->sg_dma & 0xffffffff);
610 mci_writel(host, DBADDRU, (u64)host->sg_dma >> 32);
611
612 } else {
613 /* Mask out interrupts - get Tx & Rx complete only */
614 mci_writel(host, IDSTS, IDMAC_INT_CLR);
615 mci_writel(host, IDINTEN, SDMMC_IDMAC_INT_NI |
616 SDMMC_IDMAC_INT_RI | SDMMC_IDMAC_INT_TI);
617
618 /* Set the descriptor base address */
619 mci_writel(host, DBADDR, host->sg_dma);
620 }
621
Will Newtonf95f3852011-01-02 01:11:59 -0500622 return 0;
623}
624
Arnd Bergmann8e2b36e2012-11-06 22:55:31 +0100625static const struct dw_mci_dma_ops dw_mci_idmac_ops = {
Seungwon Jeon885c3e82012-02-20 11:01:43 +0900626 .init = dw_mci_idmac_init,
627 .start = dw_mci_idmac_start_dma,
628 .stop = dw_mci_idmac_stop_dma,
629 .complete = dw_mci_idmac_complete_dma,
630 .cleanup = dw_mci_dma_cleanup,
631};
632#endif /* CONFIG_MMC_DW_IDMAC */
633
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900634static int dw_mci_pre_dma_transfer(struct dw_mci *host,
635 struct mmc_data *data,
636 bool next)
Will Newtonf95f3852011-01-02 01:11:59 -0500637{
638 struct scatterlist *sg;
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900639 unsigned int i, sg_len;
Will Newtonf95f3852011-01-02 01:11:59 -0500640
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900641 if (!next && data->host_cookie)
642 return data->host_cookie;
Will Newtonf95f3852011-01-02 01:11:59 -0500643
644 /*
645 * We don't do DMA on "complex" transfers, i.e. with
646 * non-word-aligned buffers or lengths. Also, we don't bother
647 * with all the DMA setup overhead for short transfers.
648 */
649 if (data->blocks * data->blksz < DW_MCI_DMA_THRESHOLD)
650 return -EINVAL;
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900651
Will Newtonf95f3852011-01-02 01:11:59 -0500652 if (data->blksz & 3)
653 return -EINVAL;
654
655 for_each_sg(data->sg, sg, data->sg_len, i) {
656 if (sg->offset & 3 || sg->length & 3)
657 return -EINVAL;
658 }
659
Thomas Abraham4a909202012-09-17 18:16:35 +0000660 sg_len = dma_map_sg(host->dev,
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900661 data->sg,
662 data->sg_len,
663 dw_mci_get_dma_dir(data));
664 if (sg_len == 0)
665 return -EINVAL;
666
667 if (next)
668 data->host_cookie = sg_len;
669
670 return sg_len;
671}
672
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900673static void dw_mci_pre_req(struct mmc_host *mmc,
674 struct mmc_request *mrq,
675 bool is_first_req)
676{
677 struct dw_mci_slot *slot = mmc_priv(mmc);
678 struct mmc_data *data = mrq->data;
679
680 if (!slot->host->use_dma || !data)
681 return;
682
683 if (data->host_cookie) {
684 data->host_cookie = 0;
685 return;
686 }
687
688 if (dw_mci_pre_dma_transfer(slot->host, mrq->data, 1) < 0)
689 data->host_cookie = 0;
690}
691
692static void dw_mci_post_req(struct mmc_host *mmc,
693 struct mmc_request *mrq,
694 int err)
695{
696 struct dw_mci_slot *slot = mmc_priv(mmc);
697 struct mmc_data *data = mrq->data;
698
699 if (!slot->host->use_dma || !data)
700 return;
701
702 if (data->host_cookie)
Thomas Abraham4a909202012-09-17 18:16:35 +0000703 dma_unmap_sg(slot->host->dev,
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900704 data->sg,
705 data->sg_len,
706 dw_mci_get_dma_dir(data));
707 data->host_cookie = 0;
708}
709
Seungwon Jeon52426892013-08-31 00:13:42 +0900710static void dw_mci_adjust_fifoth(struct dw_mci *host, struct mmc_data *data)
711{
712#ifdef CONFIG_MMC_DW_IDMAC
713 unsigned int blksz = data->blksz;
714 const u32 mszs[] = {1, 4, 8, 16, 32, 64, 128, 256};
715 u32 fifo_width = 1 << host->data_shift;
716 u32 blksz_depth = blksz / fifo_width, fifoth_val;
717 u32 msize = 0, rx_wmark = 1, tx_wmark, tx_wmark_invers;
718 int idx = (sizeof(mszs) / sizeof(mszs[0])) - 1;
719
720 tx_wmark = (host->fifo_depth) / 2;
721 tx_wmark_invers = host->fifo_depth - tx_wmark;
722
723 /*
724 * MSIZE is '1',
725 * if blksz is not a multiple of the FIFO width
726 */
727 if (blksz % fifo_width) {
728 msize = 0;
729 rx_wmark = 1;
730 goto done;
731 }
732
733 do {
734 if (!((blksz_depth % mszs[idx]) ||
735 (tx_wmark_invers % mszs[idx]))) {
736 msize = idx;
737 rx_wmark = mszs[idx] - 1;
738 break;
739 }
740 } while (--idx > 0);
741 /*
742 * If idx is '0', it won't be tried
743 * Thus, initial values are uesed
744 */
745done:
746 fifoth_val = SDMMC_SET_FIFOTH(msize, rx_wmark, tx_wmark);
747 mci_writel(host, FIFOTH, fifoth_val);
748#endif
749}
750
Seungwon Jeonf1d27362013-08-31 00:13:55 +0900751static void dw_mci_ctrl_rd_thld(struct dw_mci *host, struct mmc_data *data)
752{
753 unsigned int blksz = data->blksz;
754 u32 blksz_depth, fifo_depth;
755 u16 thld_size;
756
757 WARN_ON(!(data->flags & MMC_DATA_READ));
758
James Hogan66dfd102014-11-17 17:49:05 +0000759 /*
760 * CDTHRCTL doesn't exist prior to 240A (in fact that register offset is
761 * in the FIFO region, so we really shouldn't access it).
762 */
763 if (host->verid < DW_MMC_240A)
764 return;
765
Seungwon Jeonf1d27362013-08-31 00:13:55 +0900766 if (host->timing != MMC_TIMING_MMC_HS200 &&
Jaehoon Chung488b8d62015-03-05 19:45:21 +0900767 host->timing != MMC_TIMING_MMC_HS400 &&
Seungwon Jeonf1d27362013-08-31 00:13:55 +0900768 host->timing != MMC_TIMING_UHS_SDR104)
769 goto disable;
770
771 blksz_depth = blksz / (1 << host->data_shift);
772 fifo_depth = host->fifo_depth;
773
774 if (blksz_depth > fifo_depth)
775 goto disable;
776
777 /*
778 * If (blksz_depth) >= (fifo_depth >> 1), should be 'thld_size <= blksz'
779 * If (blksz_depth) < (fifo_depth >> 1), should be thld_size = blksz
780 * Currently just choose blksz.
781 */
782 thld_size = blksz;
783 mci_writel(host, CDTHRCTL, SDMMC_SET_RD_THLD(thld_size, 1));
784 return;
785
786disable:
787 mci_writel(host, CDTHRCTL, SDMMC_SET_RD_THLD(0, 0));
788}
789
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900790static int dw_mci_submit_data_dma(struct dw_mci *host, struct mmc_data *data)
791{
Doug Andersonf8c58c12014-12-02 15:42:47 -0800792 unsigned long irqflags;
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900793 int sg_len;
794 u32 temp;
795
796 host->using_dma = 0;
797
798 /* If we don't have a channel, we can't do DMA */
799 if (!host->use_dma)
800 return -ENODEV;
801
802 sg_len = dw_mci_pre_dma_transfer(host, data, 0);
Seungwon Jeona99aa9b2012-04-10 09:53:32 +0900803 if (sg_len < 0) {
804 host->dma_ops->stop(host);
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900805 return sg_len;
Seungwon Jeona99aa9b2012-04-10 09:53:32 +0900806 }
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900807
James Hogan03e8cb52011-06-29 09:28:43 +0100808 host->using_dma = 1;
809
Thomas Abraham4a909202012-09-17 18:16:35 +0000810 dev_vdbg(host->dev,
Will Newtonf95f3852011-01-02 01:11:59 -0500811 "sd sg_cpu: %#lx sg_dma: %#lx sg_len: %d\n",
812 (unsigned long)host->sg_cpu, (unsigned long)host->sg_dma,
813 sg_len);
814
Seungwon Jeon52426892013-08-31 00:13:42 +0900815 /*
816 * Decide the MSIZE and RX/TX Watermark.
817 * If current block size is same with previous size,
818 * no need to update fifoth.
819 */
820 if (host->prev_blksz != data->blksz)
821 dw_mci_adjust_fifoth(host, data);
822
Will Newtonf95f3852011-01-02 01:11:59 -0500823 /* Enable the DMA interface */
824 temp = mci_readl(host, CTRL);
825 temp |= SDMMC_CTRL_DMA_ENABLE;
826 mci_writel(host, CTRL, temp);
827
828 /* Disable RX/TX IRQs, let DMA handle it */
Doug Andersonf8c58c12014-12-02 15:42:47 -0800829 spin_lock_irqsave(&host->irq_lock, irqflags);
Will Newtonf95f3852011-01-02 01:11:59 -0500830 temp = mci_readl(host, INTMASK);
831 temp &= ~(SDMMC_INT_RXDR | SDMMC_INT_TXDR);
832 mci_writel(host, INTMASK, temp);
Doug Andersonf8c58c12014-12-02 15:42:47 -0800833 spin_unlock_irqrestore(&host->irq_lock, irqflags);
Will Newtonf95f3852011-01-02 01:11:59 -0500834
835 host->dma_ops->start(host, sg_len);
836
837 return 0;
838}
839
840static void dw_mci_submit_data(struct dw_mci *host, struct mmc_data *data)
841{
Doug Andersonf8c58c12014-12-02 15:42:47 -0800842 unsigned long irqflags;
Will Newtonf95f3852011-01-02 01:11:59 -0500843 u32 temp;
844
845 data->error = -EINPROGRESS;
846
847 WARN_ON(host->data);
848 host->sg = NULL;
849 host->data = data;
850
Seungwon Jeonf1d27362013-08-31 00:13:55 +0900851 if (data->flags & MMC_DATA_READ) {
James Hogan55c5efbc2011-06-29 09:29:58 +0100852 host->dir_status = DW_MCI_RECV_STATUS;
Seungwon Jeonf1d27362013-08-31 00:13:55 +0900853 dw_mci_ctrl_rd_thld(host, data);
854 } else {
James Hogan55c5efbc2011-06-29 09:29:58 +0100855 host->dir_status = DW_MCI_SEND_STATUS;
Seungwon Jeonf1d27362013-08-31 00:13:55 +0900856 }
James Hogan55c5efbc2011-06-29 09:29:58 +0100857
Will Newtonf95f3852011-01-02 01:11:59 -0500858 if (dw_mci_submit_data_dma(host, data)) {
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +0900859 int flags = SG_MITER_ATOMIC;
860 if (host->data->flags & MMC_DATA_READ)
861 flags |= SG_MITER_TO_SG;
862 else
863 flags |= SG_MITER_FROM_SG;
864
865 sg_miter_start(&host->sg_miter, data->sg, data->sg_len, flags);
Will Newtonf95f3852011-01-02 01:11:59 -0500866 host->sg = data->sg;
James Hogan34b664a2011-06-24 13:57:56 +0100867 host->part_buf_start = 0;
868 host->part_buf_count = 0;
Will Newtonf95f3852011-01-02 01:11:59 -0500869
James Hoganb40af3a2011-06-24 13:54:06 +0100870 mci_writel(host, RINTSTS, SDMMC_INT_TXDR | SDMMC_INT_RXDR);
Doug Andersonf8c58c12014-12-02 15:42:47 -0800871
872 spin_lock_irqsave(&host->irq_lock, irqflags);
Will Newtonf95f3852011-01-02 01:11:59 -0500873 temp = mci_readl(host, INTMASK);
874 temp |= SDMMC_INT_TXDR | SDMMC_INT_RXDR;
875 mci_writel(host, INTMASK, temp);
Doug Andersonf8c58c12014-12-02 15:42:47 -0800876 spin_unlock_irqrestore(&host->irq_lock, irqflags);
Will Newtonf95f3852011-01-02 01:11:59 -0500877
878 temp = mci_readl(host, CTRL);
879 temp &= ~SDMMC_CTRL_DMA_ENABLE;
880 mci_writel(host, CTRL, temp);
Seungwon Jeon52426892013-08-31 00:13:42 +0900881
882 /*
883 * Use the initial fifoth_val for PIO mode.
884 * If next issued data may be transfered by DMA mode,
885 * prev_blksz should be invalidated.
886 */
887 mci_writel(host, FIFOTH, host->fifoth_val);
888 host->prev_blksz = 0;
889 } else {
890 /*
891 * Keep the current block size.
892 * It will be used to decide whether to update
893 * fifoth register next time.
894 */
895 host->prev_blksz = data->blksz;
Will Newtonf95f3852011-01-02 01:11:59 -0500896 }
897}
898
899static void mci_send_cmd(struct dw_mci_slot *slot, u32 cmd, u32 arg)
900{
901 struct dw_mci *host = slot->host;
902 unsigned long timeout = jiffies + msecs_to_jiffies(500);
903 unsigned int cmd_status = 0;
904
905 mci_writel(host, CMDARG, arg);
906 wmb();
Doug Anderson0bdbd0e2015-02-20 12:31:56 -0800907 dw_mci_wait_while_busy(host, cmd);
Will Newtonf95f3852011-01-02 01:11:59 -0500908 mci_writel(host, CMD, SDMMC_CMD_START | cmd);
909
910 while (time_before(jiffies, timeout)) {
911 cmd_status = mci_readl(host, CMD);
912 if (!(cmd_status & SDMMC_CMD_START))
913 return;
914 }
915 dev_err(&slot->mmc->class_dev,
916 "Timeout sending command (cmd %#x arg %#x status %#x)\n",
917 cmd, arg, cmd_status);
918}
919
Abhilash Kesavanab269122012-11-19 10:26:21 +0530920static void dw_mci_setup_bus(struct dw_mci_slot *slot, bool force_clkinit)
Will Newtonf95f3852011-01-02 01:11:59 -0500921{
922 struct dw_mci *host = slot->host;
Doug Andersonfdf492a2013-08-31 00:11:43 +0900923 unsigned int clock = slot->clock;
Will Newtonf95f3852011-01-02 01:11:59 -0500924 u32 div;
Doug Anderson9623b5b2012-07-25 08:33:17 -0700925 u32 clk_en_a;
Doug Anderson01730552014-08-22 19:17:51 +0530926 u32 sdmmc_cmd_bits = SDMMC_CMD_UPD_CLK | SDMMC_CMD_PRV_DAT_WAIT;
927
928 /* We must continue to set bit 28 in CMD until the change is complete */
929 if (host->state == STATE_WAITING_CMD11_DONE)
930 sdmmc_cmd_bits |= SDMMC_CMD_VOLT_SWITCH;
Will Newtonf95f3852011-01-02 01:11:59 -0500931
Doug Andersonfdf492a2013-08-31 00:11:43 +0900932 if (!clock) {
933 mci_writel(host, CLKENA, 0);
Doug Anderson01730552014-08-22 19:17:51 +0530934 mci_send_cmd(slot, sdmmc_cmd_bits, 0);
Doug Andersonfdf492a2013-08-31 00:11:43 +0900935 } else if (clock != host->current_speed || force_clkinit) {
936 div = host->bus_hz / clock;
937 if (host->bus_hz % clock && host->bus_hz > clock)
Will Newtonf95f3852011-01-02 01:11:59 -0500938 /*
939 * move the + 1 after the divide to prevent
940 * over-clocking the card.
941 */
Seungwon Jeone4199902012-05-22 13:01:21 +0900942 div += 1;
943
Doug Andersonfdf492a2013-08-31 00:11:43 +0900944 div = (host->bus_hz != clock) ? DIV_ROUND_UP(div, 2) : 0;
Will Newtonf95f3852011-01-02 01:11:59 -0500945
Doug Andersonfdf492a2013-08-31 00:11:43 +0900946 if ((clock << div) != slot->__clk_old || force_clkinit)
947 dev_info(&slot->mmc->class_dev,
948 "Bus speed (slot %d) = %dHz (slot req %dHz, actual %dHZ div = %d)\n",
949 slot->id, host->bus_hz, clock,
950 div ? ((host->bus_hz / div) >> 1) :
951 host->bus_hz, div);
Will Newtonf95f3852011-01-02 01:11:59 -0500952
953 /* disable clock */
954 mci_writel(host, CLKENA, 0);
955 mci_writel(host, CLKSRC, 0);
956
957 /* inform CIU */
Doug Anderson01730552014-08-22 19:17:51 +0530958 mci_send_cmd(slot, sdmmc_cmd_bits, 0);
Will Newtonf95f3852011-01-02 01:11:59 -0500959
960 /* set clock to desired speed */
961 mci_writel(host, CLKDIV, div);
962
963 /* inform CIU */
Doug Anderson01730552014-08-22 19:17:51 +0530964 mci_send_cmd(slot, sdmmc_cmd_bits, 0);
Will Newtonf95f3852011-01-02 01:11:59 -0500965
Doug Anderson9623b5b2012-07-25 08:33:17 -0700966 /* enable clock; only low power if no SDIO */
967 clk_en_a = SDMMC_CLKEN_ENABLE << slot->id;
Doug Andersonb24c8b22014-12-02 15:42:46 -0800968 if (!test_bit(DW_MMC_CARD_NO_LOW_PWR, &slot->flags))
Doug Anderson9623b5b2012-07-25 08:33:17 -0700969 clk_en_a |= SDMMC_CLKEN_LOW_PWR << slot->id;
970 mci_writel(host, CLKENA, clk_en_a);
Will Newtonf95f3852011-01-02 01:11:59 -0500971
972 /* inform CIU */
Doug Anderson01730552014-08-22 19:17:51 +0530973 mci_send_cmd(slot, sdmmc_cmd_bits, 0);
Will Newtonf95f3852011-01-02 01:11:59 -0500974
Doug Andersonfdf492a2013-08-31 00:11:43 +0900975 /* keep the clock with reflecting clock dividor */
976 slot->__clk_old = clock << div;
Will Newtonf95f3852011-01-02 01:11:59 -0500977 }
978
Doug Andersonfdf492a2013-08-31 00:11:43 +0900979 host->current_speed = clock;
980
Will Newtonf95f3852011-01-02 01:11:59 -0500981 /* Set the current slot bus width */
Seungwon Jeon1d56c452011-06-20 17:23:53 +0900982 mci_writel(host, CTYPE, (slot->ctype << slot->id));
Will Newtonf95f3852011-01-02 01:11:59 -0500983}
984
Seungwon Jeon053b3ce2011-12-22 18:01:29 +0900985static void __dw_mci_start_request(struct dw_mci *host,
986 struct dw_mci_slot *slot,
987 struct mmc_command *cmd)
Will Newtonf95f3852011-01-02 01:11:59 -0500988{
989 struct mmc_request *mrq;
Will Newtonf95f3852011-01-02 01:11:59 -0500990 struct mmc_data *data;
991 u32 cmdflags;
992
993 mrq = slot->mrq;
Will Newtonf95f3852011-01-02 01:11:59 -0500994
Will Newtonf95f3852011-01-02 01:11:59 -0500995 host->cur_slot = slot;
996 host->mrq = mrq;
997
998 host->pending_events = 0;
999 host->completed_events = 0;
Seungwon Jeone352c812013-08-31 00:14:17 +09001000 host->cmd_status = 0;
Will Newtonf95f3852011-01-02 01:11:59 -05001001 host->data_status = 0;
Seungwon Jeone352c812013-08-31 00:14:17 +09001002 host->dir_status = 0;
Will Newtonf95f3852011-01-02 01:11:59 -05001003
Seungwon Jeon053b3ce2011-12-22 18:01:29 +09001004 data = cmd->data;
Will Newtonf95f3852011-01-02 01:11:59 -05001005 if (data) {
Jaehoon Chungf16afa82014-03-03 11:36:45 +09001006 mci_writel(host, TMOUT, 0xFFFFFFFF);
Will Newtonf95f3852011-01-02 01:11:59 -05001007 mci_writel(host, BYTCNT, data->blksz*data->blocks);
1008 mci_writel(host, BLKSIZ, data->blksz);
1009 }
1010
Will Newtonf95f3852011-01-02 01:11:59 -05001011 cmdflags = dw_mci_prepare_command(slot->mmc, cmd);
1012
1013 /* this is the first command, send the initialization clock */
1014 if (test_and_clear_bit(DW_MMC_CARD_NEED_INIT, &slot->flags))
1015 cmdflags |= SDMMC_CMD_INIT;
1016
1017 if (data) {
1018 dw_mci_submit_data(host, data);
1019 wmb();
1020 }
1021
1022 dw_mci_start_command(host, cmd, cmdflags);
1023
Doug Anderson5c935162015-03-09 16:18:21 -07001024 if (cmd->opcode == SD_SWITCH_VOLTAGE) {
1025 /*
1026 * Databook says to fail after 2ms w/ no response; give an
1027 * extra jiffy just in case we're about to roll over.
1028 */
1029 mod_timer(&host->cmd11_timer,
1030 jiffies + msecs_to_jiffies(2) + 1);
1031 }
1032
Will Newtonf95f3852011-01-02 01:11:59 -05001033 if (mrq->stop)
1034 host->stop_cmdr = dw_mci_prepare_command(slot->mmc, mrq->stop);
Seungwon Jeon90c21432013-08-31 00:14:05 +09001035 else
1036 host->stop_cmdr = dw_mci_prep_stop_abort(host, cmd);
Will Newtonf95f3852011-01-02 01:11:59 -05001037}
1038
Seungwon Jeon053b3ce2011-12-22 18:01:29 +09001039static void dw_mci_start_request(struct dw_mci *host,
1040 struct dw_mci_slot *slot)
1041{
1042 struct mmc_request *mrq = slot->mrq;
1043 struct mmc_command *cmd;
1044
1045 cmd = mrq->sbc ? mrq->sbc : mrq->cmd;
1046 __dw_mci_start_request(host, slot, cmd);
1047}
1048
James Hogan7456caa2011-06-24 13:55:10 +01001049/* must be called with host->lock held */
Will Newtonf95f3852011-01-02 01:11:59 -05001050static void dw_mci_queue_request(struct dw_mci *host, struct dw_mci_slot *slot,
1051 struct mmc_request *mrq)
1052{
1053 dev_vdbg(&slot->mmc->class_dev, "queue request: state=%d\n",
1054 host->state);
1055
Will Newtonf95f3852011-01-02 01:11:59 -05001056 slot->mrq = mrq;
1057
Doug Anderson01730552014-08-22 19:17:51 +05301058 if (host->state == STATE_WAITING_CMD11_DONE) {
1059 dev_warn(&slot->mmc->class_dev,
1060 "Voltage change didn't complete\n");
1061 /*
1062 * this case isn't expected to happen, so we can
1063 * either crash here or just try to continue on
1064 * in the closest possible state
1065 */
1066 host->state = STATE_IDLE;
1067 }
1068
Will Newtonf95f3852011-01-02 01:11:59 -05001069 if (host->state == STATE_IDLE) {
1070 host->state = STATE_SENDING_CMD;
1071 dw_mci_start_request(host, slot);
1072 } else {
1073 list_add_tail(&slot->queue_node, &host->queue);
1074 }
Will Newtonf95f3852011-01-02 01:11:59 -05001075}
1076
1077static void dw_mci_request(struct mmc_host *mmc, struct mmc_request *mrq)
1078{
1079 struct dw_mci_slot *slot = mmc_priv(mmc);
1080 struct dw_mci *host = slot->host;
1081
1082 WARN_ON(slot->mrq);
1083
James Hogan7456caa2011-06-24 13:55:10 +01001084 /*
1085 * The check for card presence and queueing of the request must be
1086 * atomic, otherwise the card could be removed in between and the
1087 * request wouldn't fail until another card was inserted.
1088 */
1089 spin_lock_bh(&host->lock);
1090
Will Newtonf95f3852011-01-02 01:11:59 -05001091 if (!test_bit(DW_MMC_CARD_PRESENT, &slot->flags)) {
James Hogan7456caa2011-06-24 13:55:10 +01001092 spin_unlock_bh(&host->lock);
Will Newtonf95f3852011-01-02 01:11:59 -05001093 mrq->cmd->error = -ENOMEDIUM;
1094 mmc_request_done(mmc, mrq);
1095 return;
1096 }
1097
Will Newtonf95f3852011-01-02 01:11:59 -05001098 dw_mci_queue_request(host, slot, mrq);
James Hogan7456caa2011-06-24 13:55:10 +01001099
1100 spin_unlock_bh(&host->lock);
Will Newtonf95f3852011-01-02 01:11:59 -05001101}
1102
1103static void dw_mci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
1104{
1105 struct dw_mci_slot *slot = mmc_priv(mmc);
Arnd Bergmanne95baf12012-11-08 14:26:11 +00001106 const struct dw_mci_drv_data *drv_data = slot->host->drv_data;
Jaehoon Chung41babf72011-02-24 13:46:11 +09001107 u32 regs;
Yuvaraj CD51da2242014-08-22 19:17:50 +05301108 int ret;
Will Newtonf95f3852011-01-02 01:11:59 -05001109
Will Newtonf95f3852011-01-02 01:11:59 -05001110 switch (ios->bus_width) {
Will Newtonf95f3852011-01-02 01:11:59 -05001111 case MMC_BUS_WIDTH_4:
1112 slot->ctype = SDMMC_CTYPE_4BIT;
1113 break;
Jaehoon Chungc9b2a062011-02-17 16:12:38 +09001114 case MMC_BUS_WIDTH_8:
1115 slot->ctype = SDMMC_CTYPE_8BIT;
1116 break;
Jaehoon Chungb2f7cb42012-11-08 17:35:31 +09001117 default:
1118 /* set default 1 bit mode */
1119 slot->ctype = SDMMC_CTYPE_1BIT;
Will Newtonf95f3852011-01-02 01:11:59 -05001120 }
1121
Seungwon Jeon3f514292012-01-02 16:00:02 +09001122 regs = mci_readl(slot->host, UHS_REG);
1123
Jaehoon Chung41babf72011-02-24 13:46:11 +09001124 /* DDR mode set */
Seungwon Jeon80113132015-01-29 08:11:57 +05301125 if (ios->timing == MMC_TIMING_MMC_DDR52 ||
1126 ios->timing == MMC_TIMING_MMC_HS400)
Hyeonsu Kimc69042a2013-02-22 09:32:46 +09001127 regs |= ((0x1 << slot->id) << 16);
Seungwon Jeon3f514292012-01-02 16:00:02 +09001128 else
Hyeonsu Kimc69042a2013-02-22 09:32:46 +09001129 regs &= ~((0x1 << slot->id) << 16);
Seungwon Jeon3f514292012-01-02 16:00:02 +09001130
1131 mci_writel(slot->host, UHS_REG, regs);
Seungwon Jeonf1d27362013-08-31 00:13:55 +09001132 slot->host->timing = ios->timing;
Jaehoon Chung41babf72011-02-24 13:46:11 +09001133
Doug Andersonfdf492a2013-08-31 00:11:43 +09001134 /*
1135 * Use mirror of ios->clock to prevent race with mmc
1136 * core ios update when finding the minimum.
1137 */
1138 slot->clock = ios->clock;
Will Newtonf95f3852011-01-02 01:11:59 -05001139
James Hogancb27a842012-10-16 09:43:08 +01001140 if (drv_data && drv_data->set_ios)
1141 drv_data->set_ios(slot->host, ios);
Thomas Abraham800d78b2012-09-17 18:16:42 +00001142
Will Newtonf95f3852011-01-02 01:11:59 -05001143 switch (ios->power_mode) {
1144 case MMC_POWER_UP:
Yuvaraj CD51da2242014-08-22 19:17:50 +05301145 if (!IS_ERR(mmc->supply.vmmc)) {
1146 ret = mmc_regulator_set_ocr(mmc, mmc->supply.vmmc,
1147 ios->vdd);
1148 if (ret) {
1149 dev_err(slot->host->dev,
1150 "failed to enable vmmc regulator\n");
1151 /*return, if failed turn on vmmc*/
1152 return;
1153 }
1154 }
Doug Anderson29d0d162015-01-13 15:58:44 -08001155 set_bit(DW_MMC_CARD_NEED_INIT, &slot->flags);
1156 regs = mci_readl(slot->host, PWREN);
1157 regs |= (1 << slot->id);
1158 mci_writel(slot->host, PWREN, regs);
1159 break;
1160 case MMC_POWER_ON:
Doug Andersond1f1dd82015-02-20 10:57:19 -08001161 if (!slot->host->vqmmc_enabled) {
1162 if (!IS_ERR(mmc->supply.vqmmc)) {
1163 ret = regulator_enable(mmc->supply.vqmmc);
1164 if (ret < 0)
1165 dev_err(slot->host->dev,
1166 "failed to enable vqmmc\n");
1167 else
1168 slot->host->vqmmc_enabled = true;
1169
1170 } else {
1171 /* Keep track so we don't reset again */
Yuvaraj CD51da2242014-08-22 19:17:50 +05301172 slot->host->vqmmc_enabled = true;
Doug Andersond1f1dd82015-02-20 10:57:19 -08001173 }
1174
1175 /* Reset our state machine after powering on */
1176 dw_mci_ctrl_reset(slot->host,
1177 SDMMC_CTRL_ALL_RESET_FLAGS);
Yuvaraj CD51da2242014-08-22 19:17:50 +05301178 }
Doug Anderson655babb2015-02-20 10:57:18 -08001179
1180 /* Adjust clock / bus width after power is up */
1181 dw_mci_setup_bus(slot, false);
1182
James Hogane6f34e22013-03-12 10:43:32 +00001183 break;
1184 case MMC_POWER_OFF:
Doug Anderson655babb2015-02-20 10:57:18 -08001185 /* Turn clock off before power goes down */
1186 dw_mci_setup_bus(slot, false);
1187
Yuvaraj CD51da2242014-08-22 19:17:50 +05301188 if (!IS_ERR(mmc->supply.vmmc))
1189 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, 0);
1190
Doug Andersond1f1dd82015-02-20 10:57:19 -08001191 if (!IS_ERR(mmc->supply.vqmmc) && slot->host->vqmmc_enabled)
Yuvaraj CD51da2242014-08-22 19:17:50 +05301192 regulator_disable(mmc->supply.vqmmc);
Doug Andersond1f1dd82015-02-20 10:57:19 -08001193 slot->host->vqmmc_enabled = false;
Yuvaraj CD51da2242014-08-22 19:17:50 +05301194
Jaehoon Chung4366dcc2013-03-26 21:36:14 +09001195 regs = mci_readl(slot->host, PWREN);
1196 regs &= ~(1 << slot->id);
1197 mci_writel(slot->host, PWREN, regs);
Will Newtonf95f3852011-01-02 01:11:59 -05001198 break;
1199 default:
1200 break;
1201 }
Doug Anderson655babb2015-02-20 10:57:18 -08001202
1203 if (slot->host->state == STATE_WAITING_CMD11_DONE && ios->clock != 0)
1204 slot->host->state = STATE_IDLE;
Will Newtonf95f3852011-01-02 01:11:59 -05001205}
1206
Doug Anderson01730552014-08-22 19:17:51 +05301207static int dw_mci_card_busy(struct mmc_host *mmc)
1208{
1209 struct dw_mci_slot *slot = mmc_priv(mmc);
1210 u32 status;
1211
1212 /*
1213 * Check the busy bit which is low when DAT[3:0]
1214 * (the data lines) are 0000
1215 */
1216 status = mci_readl(slot->host, STATUS);
1217
1218 return !!(status & SDMMC_STATUS_BUSY);
1219}
1220
1221static int dw_mci_switch_voltage(struct mmc_host *mmc, struct mmc_ios *ios)
1222{
1223 struct dw_mci_slot *slot = mmc_priv(mmc);
1224 struct dw_mci *host = slot->host;
1225 u32 uhs;
1226 u32 v18 = SDMMC_UHS_18V << slot->id;
1227 int min_uv, max_uv;
1228 int ret;
1229
1230 /*
1231 * Program the voltage. Note that some instances of dw_mmc may use
1232 * the UHS_REG for this. For other instances (like exynos) the UHS_REG
1233 * does no harm but you need to set the regulator directly. Try both.
1234 */
1235 uhs = mci_readl(host, UHS_REG);
1236 if (ios->signal_voltage == MMC_SIGNAL_VOLTAGE_330) {
1237 min_uv = 2700000;
1238 max_uv = 3600000;
1239 uhs &= ~v18;
1240 } else {
1241 min_uv = 1700000;
1242 max_uv = 1950000;
1243 uhs |= v18;
1244 }
1245 if (!IS_ERR(mmc->supply.vqmmc)) {
1246 ret = regulator_set_voltage(mmc->supply.vqmmc, min_uv, max_uv);
1247
1248 if (ret) {
Doug Andersonb19caf32014-10-10 21:16:16 -07001249 dev_dbg(&mmc->class_dev,
Doug Anderson01730552014-08-22 19:17:51 +05301250 "Regulator set error %d: %d - %d\n",
1251 ret, min_uv, max_uv);
1252 return ret;
1253 }
1254 }
1255 mci_writel(host, UHS_REG, uhs);
1256
1257 return 0;
1258}
1259
Will Newtonf95f3852011-01-02 01:11:59 -05001260static int dw_mci_get_ro(struct mmc_host *mmc)
1261{
1262 int read_only;
1263 struct dw_mci_slot *slot = mmc_priv(mmc);
Jaehoon Chung9795a842014-03-03 11:36:46 +09001264 int gpio_ro = mmc_gpio_get_ro(mmc);
Will Newtonf95f3852011-01-02 01:11:59 -05001265
1266 /* Use platform get_ro function, else try on board write protect */
Jaehoon Chung26375b52014-08-07 16:37:58 +09001267 if ((slot->quirks & DW_MCI_SLOT_QUIRK_NO_WRITE_PROTECT) ||
1268 (slot->host->quirks & DW_MCI_QUIRK_NO_WRITE_PROTECT))
Thomas Abrahamb4967aa2012-09-17 18:16:39 +00001269 read_only = 0;
Jaehoon Chung9795a842014-03-03 11:36:46 +09001270 else if (!IS_ERR_VALUE(gpio_ro))
1271 read_only = gpio_ro;
Will Newtonf95f3852011-01-02 01:11:59 -05001272 else
1273 read_only =
1274 mci_readl(slot->host, WRTPRT) & (1 << slot->id) ? 1 : 0;
1275
1276 dev_dbg(&mmc->class_dev, "card is %s\n",
1277 read_only ? "read-only" : "read-write");
1278
1279 return read_only;
1280}
1281
1282static int dw_mci_get_cd(struct mmc_host *mmc)
1283{
1284 int present;
1285 struct dw_mci_slot *slot = mmc_priv(mmc);
1286 struct dw_mci_board *brd = slot->host->pdata;
Zhangfei Gao7cf347b2014-01-16 20:48:47 +08001287 struct dw_mci *host = slot->host;
1288 int gpio_cd = mmc_gpio_get_cd(mmc);
Will Newtonf95f3852011-01-02 01:11:59 -05001289
1290 /* Use platform get_cd function, else try onboard card detect */
Jaehoon Chungfc3d7722011-02-25 11:08:15 +09001291 if (brd->quirks & DW_MCI_QUIRK_BROKEN_CARD_DETECTION)
1292 present = 1;
Zhangfei Gaobf626e52014-01-09 22:35:10 +08001293 else if (!IS_ERR_VALUE(gpio_cd))
Zhangfei Gao7cf347b2014-01-16 20:48:47 +08001294 present = gpio_cd;
Will Newtonf95f3852011-01-02 01:11:59 -05001295 else
1296 present = (mci_readl(slot->host, CDETECT) & (1 << slot->id))
1297 == 0 ? 1 : 0;
1298
Zhangfei Gao7cf347b2014-01-16 20:48:47 +08001299 spin_lock_bh(&host->lock);
Zhangfei Gaobf626e52014-01-09 22:35:10 +08001300 if (present) {
1301 set_bit(DW_MMC_CARD_PRESENT, &slot->flags);
Will Newtonf95f3852011-01-02 01:11:59 -05001302 dev_dbg(&mmc->class_dev, "card is present\n");
Zhangfei Gaobf626e52014-01-09 22:35:10 +08001303 } else {
1304 clear_bit(DW_MMC_CARD_PRESENT, &slot->flags);
Will Newtonf95f3852011-01-02 01:11:59 -05001305 dev_dbg(&mmc->class_dev, "card is not present\n");
Zhangfei Gaobf626e52014-01-09 22:35:10 +08001306 }
Zhangfei Gao7cf347b2014-01-16 20:48:47 +08001307 spin_unlock_bh(&host->lock);
Will Newtonf95f3852011-01-02 01:11:59 -05001308
1309 return present;
1310}
1311
Doug Andersonb24c8b22014-12-02 15:42:46 -08001312static void dw_mci_init_card(struct mmc_host *mmc, struct mmc_card *card)
Doug Anderson9623b5b2012-07-25 08:33:17 -07001313{
Doug Andersonb24c8b22014-12-02 15:42:46 -08001314 struct dw_mci_slot *slot = mmc_priv(mmc);
Doug Anderson9623b5b2012-07-25 08:33:17 -07001315 struct dw_mci *host = slot->host;
Doug Anderson9623b5b2012-07-25 08:33:17 -07001316
Doug Andersonb24c8b22014-12-02 15:42:46 -08001317 /*
1318 * Low power mode will stop the card clock when idle. According to the
1319 * description of the CLKENA register we should disable low power mode
1320 * for SDIO cards if we need SDIO interrupts to work.
1321 */
1322 if (mmc->caps & MMC_CAP_SDIO_IRQ) {
1323 const u32 clken_low_pwr = SDMMC_CLKEN_LOW_PWR << slot->id;
1324 u32 clk_en_a_old;
1325 u32 clk_en_a;
Doug Anderson9623b5b2012-07-25 08:33:17 -07001326
Doug Andersonb24c8b22014-12-02 15:42:46 -08001327 clk_en_a_old = mci_readl(host, CLKENA);
1328
1329 if (card->type == MMC_TYPE_SDIO ||
1330 card->type == MMC_TYPE_SD_COMBO) {
1331 set_bit(DW_MMC_CARD_NO_LOW_PWR, &slot->flags);
1332 clk_en_a = clk_en_a_old & ~clken_low_pwr;
1333 } else {
1334 clear_bit(DW_MMC_CARD_NO_LOW_PWR, &slot->flags);
1335 clk_en_a = clk_en_a_old | clken_low_pwr;
1336 }
1337
1338 if (clk_en_a != clk_en_a_old) {
1339 mci_writel(host, CLKENA, clk_en_a);
1340 mci_send_cmd(slot, SDMMC_CMD_UPD_CLK |
1341 SDMMC_CMD_PRV_DAT_WAIT, 0);
1342 }
Doug Anderson9623b5b2012-07-25 08:33:17 -07001343 }
1344}
1345
Shashidhar Hiremath1a5c8e12011-08-29 13:11:46 +05301346static void dw_mci_enable_sdio_irq(struct mmc_host *mmc, int enb)
1347{
1348 struct dw_mci_slot *slot = mmc_priv(mmc);
1349 struct dw_mci *host = slot->host;
Doug Andersonf8c58c12014-12-02 15:42:47 -08001350 unsigned long irqflags;
Shashidhar Hiremath1a5c8e12011-08-29 13:11:46 +05301351 u32 int_mask;
1352
Doug Andersonf8c58c12014-12-02 15:42:47 -08001353 spin_lock_irqsave(&host->irq_lock, irqflags);
1354
Shashidhar Hiremath1a5c8e12011-08-29 13:11:46 +05301355 /* Enable/disable Slot Specific SDIO interrupt */
1356 int_mask = mci_readl(host, INTMASK);
Doug Andersonb24c8b22014-12-02 15:42:46 -08001357 if (enb)
1358 int_mask |= SDMMC_INT_SDIO(slot->sdio_id);
1359 else
1360 int_mask &= ~SDMMC_INT_SDIO(slot->sdio_id);
1361 mci_writel(host, INTMASK, int_mask);
Doug Andersonf8c58c12014-12-02 15:42:47 -08001362
1363 spin_unlock_irqrestore(&host->irq_lock, irqflags);
Shashidhar Hiremath1a5c8e12011-08-29 13:11:46 +05301364}
1365
Seungwon Jeon0976f162013-08-31 00:12:42 +09001366static int dw_mci_execute_tuning(struct mmc_host *mmc, u32 opcode)
1367{
1368 struct dw_mci_slot *slot = mmc_priv(mmc);
1369 struct dw_mci *host = slot->host;
1370 const struct dw_mci_drv_data *drv_data = host->drv_data;
Seungwon Jeon0976f162013-08-31 00:12:42 +09001371 int err = -ENOSYS;
1372
Seungwon Jeon0976f162013-08-31 00:12:42 +09001373 if (drv_data && drv_data->execute_tuning)
Ulf Hansson6c2c6502014-12-01 16:13:39 +01001374 err = drv_data->execute_tuning(slot);
Seungwon Jeon0976f162013-08-31 00:12:42 +09001375 return err;
1376}
1377
Wu Fengguangc22f5e12015-03-05 18:02:54 +08001378static int dw_mci_prepare_hs400_tuning(struct mmc_host *mmc, struct mmc_ios *ios)
Seungwon Jeon80113132015-01-29 08:11:57 +05301379{
1380 struct dw_mci_slot *slot = mmc_priv(mmc);
1381 struct dw_mci *host = slot->host;
1382 const struct dw_mci_drv_data *drv_data = host->drv_data;
1383
1384 if (drv_data && drv_data->prepare_hs400_tuning)
1385 return drv_data->prepare_hs400_tuning(host, ios);
1386
1387 return 0;
1388}
1389
Will Newtonf95f3852011-01-02 01:11:59 -05001390static const struct mmc_host_ops dw_mci_ops = {
Shashidhar Hiremath1a5c8e12011-08-29 13:11:46 +05301391 .request = dw_mci_request,
Seungwon Jeon9aa51402012-02-06 16:55:07 +09001392 .pre_req = dw_mci_pre_req,
1393 .post_req = dw_mci_post_req,
Shashidhar Hiremath1a5c8e12011-08-29 13:11:46 +05301394 .set_ios = dw_mci_set_ios,
1395 .get_ro = dw_mci_get_ro,
1396 .get_cd = dw_mci_get_cd,
1397 .enable_sdio_irq = dw_mci_enable_sdio_irq,
Seungwon Jeon0976f162013-08-31 00:12:42 +09001398 .execute_tuning = dw_mci_execute_tuning,
Doug Anderson01730552014-08-22 19:17:51 +05301399 .card_busy = dw_mci_card_busy,
1400 .start_signal_voltage_switch = dw_mci_switch_voltage,
Doug Andersonb24c8b22014-12-02 15:42:46 -08001401 .init_card = dw_mci_init_card,
Seungwon Jeon80113132015-01-29 08:11:57 +05301402 .prepare_hs400_tuning = dw_mci_prepare_hs400_tuning,
Will Newtonf95f3852011-01-02 01:11:59 -05001403};
1404
1405static void dw_mci_request_end(struct dw_mci *host, struct mmc_request *mrq)
1406 __releases(&host->lock)
1407 __acquires(&host->lock)
1408{
1409 struct dw_mci_slot *slot;
1410 struct mmc_host *prev_mmc = host->cur_slot->mmc;
1411
1412 WARN_ON(host->cmd || host->data);
1413
1414 host->cur_slot->mrq = NULL;
1415 host->mrq = NULL;
1416 if (!list_empty(&host->queue)) {
1417 slot = list_entry(host->queue.next,
1418 struct dw_mci_slot, queue_node);
1419 list_del(&slot->queue_node);
Thomas Abraham4a909202012-09-17 18:16:35 +00001420 dev_vdbg(host->dev, "list not empty: %s is next\n",
Will Newtonf95f3852011-01-02 01:11:59 -05001421 mmc_hostname(slot->mmc));
1422 host->state = STATE_SENDING_CMD;
1423 dw_mci_start_request(host, slot);
1424 } else {
Thomas Abraham4a909202012-09-17 18:16:35 +00001425 dev_vdbg(host->dev, "list empty\n");
Doug Anderson01730552014-08-22 19:17:51 +05301426
1427 if (host->state == STATE_SENDING_CMD11)
1428 host->state = STATE_WAITING_CMD11_DONE;
1429 else
1430 host->state = STATE_IDLE;
Will Newtonf95f3852011-01-02 01:11:59 -05001431 }
1432
1433 spin_unlock(&host->lock);
1434 mmc_request_done(prev_mmc, mrq);
1435 spin_lock(&host->lock);
1436}
1437
Seungwon Jeone352c812013-08-31 00:14:17 +09001438static int dw_mci_command_complete(struct dw_mci *host, struct mmc_command *cmd)
Will Newtonf95f3852011-01-02 01:11:59 -05001439{
1440 u32 status = host->cmd_status;
1441
1442 host->cmd_status = 0;
1443
1444 /* Read the response from the card (up to 16 bytes) */
1445 if (cmd->flags & MMC_RSP_PRESENT) {
1446 if (cmd->flags & MMC_RSP_136) {
1447 cmd->resp[3] = mci_readl(host, RESP0);
1448 cmd->resp[2] = mci_readl(host, RESP1);
1449 cmd->resp[1] = mci_readl(host, RESP2);
1450 cmd->resp[0] = mci_readl(host, RESP3);
1451 } else {
1452 cmd->resp[0] = mci_readl(host, RESP0);
1453 cmd->resp[1] = 0;
1454 cmd->resp[2] = 0;
1455 cmd->resp[3] = 0;
1456 }
1457 }
1458
1459 if (status & SDMMC_INT_RTO)
1460 cmd->error = -ETIMEDOUT;
1461 else if ((cmd->flags & MMC_RSP_CRC) && (status & SDMMC_INT_RCRC))
1462 cmd->error = -EILSEQ;
1463 else if (status & SDMMC_INT_RESP_ERR)
1464 cmd->error = -EIO;
1465 else
1466 cmd->error = 0;
1467
1468 if (cmd->error) {
1469 /* newer ip versions need a delay between retries */
1470 if (host->quirks & DW_MCI_QUIRK_RETRY_DELAY)
1471 mdelay(20);
Will Newtonf95f3852011-01-02 01:11:59 -05001472 }
Seungwon Jeone352c812013-08-31 00:14:17 +09001473
1474 return cmd->error;
1475}
1476
1477static int dw_mci_data_complete(struct dw_mci *host, struct mmc_data *data)
1478{
Seungwon Jeon31bff452013-08-31 00:14:23 +09001479 u32 status = host->data_status;
Seungwon Jeone352c812013-08-31 00:14:17 +09001480
1481 if (status & DW_MCI_DATA_ERROR_FLAGS) {
1482 if (status & SDMMC_INT_DRTO) {
1483 data->error = -ETIMEDOUT;
1484 } else if (status & SDMMC_INT_DCRC) {
1485 data->error = -EILSEQ;
1486 } else if (status & SDMMC_INT_EBE) {
1487 if (host->dir_status ==
1488 DW_MCI_SEND_STATUS) {
1489 /*
1490 * No data CRC status was returned.
1491 * The number of bytes transferred
1492 * will be exaggerated in PIO mode.
1493 */
1494 data->bytes_xfered = 0;
1495 data->error = -ETIMEDOUT;
1496 } else if (host->dir_status ==
1497 DW_MCI_RECV_STATUS) {
1498 data->error = -EIO;
1499 }
1500 } else {
1501 /* SDMMC_INT_SBE is included */
1502 data->error = -EIO;
1503 }
1504
Doug Andersone6cc0122014-04-22 16:51:21 -07001505 dev_dbg(host->dev, "data error, status 0x%08x\n", status);
Seungwon Jeone352c812013-08-31 00:14:17 +09001506
1507 /*
1508 * After an error, there may be data lingering
Seungwon Jeon31bff452013-08-31 00:14:23 +09001509 * in the FIFO
Seungwon Jeone352c812013-08-31 00:14:17 +09001510 */
Sonny Rao3a33a942014-08-04 18:19:50 -07001511 dw_mci_reset(host);
Seungwon Jeone352c812013-08-31 00:14:17 +09001512 } else {
1513 data->bytes_xfered = data->blocks * data->blksz;
1514 data->error = 0;
1515 }
1516
1517 return data->error;
Will Newtonf95f3852011-01-02 01:11:59 -05001518}
1519
1520static void dw_mci_tasklet_func(unsigned long priv)
1521{
1522 struct dw_mci *host = (struct dw_mci *)priv;
1523 struct mmc_data *data;
1524 struct mmc_command *cmd;
Seungwon Jeone352c812013-08-31 00:14:17 +09001525 struct mmc_request *mrq;
Will Newtonf95f3852011-01-02 01:11:59 -05001526 enum dw_mci_state state;
1527 enum dw_mci_state prev_state;
Seungwon Jeone352c812013-08-31 00:14:17 +09001528 unsigned int err;
Will Newtonf95f3852011-01-02 01:11:59 -05001529
1530 spin_lock(&host->lock);
1531
1532 state = host->state;
1533 data = host->data;
Seungwon Jeone352c812013-08-31 00:14:17 +09001534 mrq = host->mrq;
Will Newtonf95f3852011-01-02 01:11:59 -05001535
1536 do {
1537 prev_state = state;
1538
1539 switch (state) {
1540 case STATE_IDLE:
Doug Anderson01730552014-08-22 19:17:51 +05301541 case STATE_WAITING_CMD11_DONE:
Will Newtonf95f3852011-01-02 01:11:59 -05001542 break;
1543
Doug Anderson01730552014-08-22 19:17:51 +05301544 case STATE_SENDING_CMD11:
Will Newtonf95f3852011-01-02 01:11:59 -05001545 case STATE_SENDING_CMD:
1546 if (!test_and_clear_bit(EVENT_CMD_COMPLETE,
1547 &host->pending_events))
1548 break;
1549
1550 cmd = host->cmd;
1551 host->cmd = NULL;
1552 set_bit(EVENT_CMD_COMPLETE, &host->completed_events);
Seungwon Jeone352c812013-08-31 00:14:17 +09001553 err = dw_mci_command_complete(host, cmd);
1554 if (cmd == mrq->sbc && !err) {
Seungwon Jeon053b3ce2011-12-22 18:01:29 +09001555 prev_state = state = STATE_SENDING_CMD;
1556 __dw_mci_start_request(host, host->cur_slot,
Seungwon Jeone352c812013-08-31 00:14:17 +09001557 mrq->cmd);
Seungwon Jeon053b3ce2011-12-22 18:01:29 +09001558 goto unlock;
1559 }
1560
Seungwon Jeone352c812013-08-31 00:14:17 +09001561 if (cmd->data && err) {
Seungwon Jeon71abb132013-08-31 00:13:59 +09001562 dw_mci_stop_dma(host);
Seungwon Jeon90c21432013-08-31 00:14:05 +09001563 send_stop_abort(host, data);
1564 state = STATE_SENDING_STOP;
1565 break;
Seungwon Jeon71abb132013-08-31 00:13:59 +09001566 }
1567
Seungwon Jeone352c812013-08-31 00:14:17 +09001568 if (!cmd->data || err) {
1569 dw_mci_request_end(host, mrq);
Will Newtonf95f3852011-01-02 01:11:59 -05001570 goto unlock;
1571 }
1572
1573 prev_state = state = STATE_SENDING_DATA;
1574 /* fall through */
1575
1576 case STATE_SENDING_DATA:
Doug Anderson2aa35462014-08-13 08:13:43 -07001577 /*
1578 * We could get a data error and never a transfer
1579 * complete so we'd better check for it here.
1580 *
1581 * Note that we don't really care if we also got a
1582 * transfer complete; stopping the DMA and sending an
1583 * abort won't hurt.
1584 */
Will Newtonf95f3852011-01-02 01:11:59 -05001585 if (test_and_clear_bit(EVENT_DATA_ERROR,
1586 &host->pending_events)) {
1587 dw_mci_stop_dma(host);
addy kebdb9a902015-02-20 10:55:25 +08001588 if (data->stop ||
1589 !(host->data_status & (SDMMC_INT_DRTO |
1590 SDMMC_INT_EBE)))
1591 send_stop_abort(host, data);
Will Newtonf95f3852011-01-02 01:11:59 -05001592 state = STATE_DATA_ERROR;
1593 break;
1594 }
1595
1596 if (!test_and_clear_bit(EVENT_XFER_COMPLETE,
1597 &host->pending_events))
1598 break;
1599
1600 set_bit(EVENT_XFER_COMPLETE, &host->completed_events);
Doug Anderson2aa35462014-08-13 08:13:43 -07001601
1602 /*
1603 * Handle an EVENT_DATA_ERROR that might have shown up
1604 * before the transfer completed. This might not have
1605 * been caught by the check above because the interrupt
1606 * could have gone off between the previous check and
1607 * the check for transfer complete.
1608 *
1609 * Technically this ought not be needed assuming we
1610 * get a DATA_COMPLETE eventually (we'll notice the
1611 * error and end the request), but it shouldn't hurt.
1612 *
1613 * This has the advantage of sending the stop command.
1614 */
1615 if (test_and_clear_bit(EVENT_DATA_ERROR,
1616 &host->pending_events)) {
1617 dw_mci_stop_dma(host);
addy kebdb9a902015-02-20 10:55:25 +08001618 if (data->stop ||
1619 !(host->data_status & (SDMMC_INT_DRTO |
1620 SDMMC_INT_EBE)))
1621 send_stop_abort(host, data);
Doug Anderson2aa35462014-08-13 08:13:43 -07001622 state = STATE_DATA_ERROR;
1623 break;
1624 }
Will Newtonf95f3852011-01-02 01:11:59 -05001625 prev_state = state = STATE_DATA_BUSY;
Doug Anderson2aa35462014-08-13 08:13:43 -07001626
Will Newtonf95f3852011-01-02 01:11:59 -05001627 /* fall through */
1628
1629 case STATE_DATA_BUSY:
1630 if (!test_and_clear_bit(EVENT_DATA_COMPLETE,
1631 &host->pending_events))
1632 break;
1633
1634 host->data = NULL;
1635 set_bit(EVENT_DATA_COMPLETE, &host->completed_events);
Seungwon Jeone352c812013-08-31 00:14:17 +09001636 err = dw_mci_data_complete(host, data);
Will Newtonf95f3852011-01-02 01:11:59 -05001637
Seungwon Jeone352c812013-08-31 00:14:17 +09001638 if (!err) {
1639 if (!data->stop || mrq->sbc) {
Sachin Kamat17c8bc82014-02-25 15:18:28 +05301640 if (mrq->sbc && data->stop)
Seungwon Jeone352c812013-08-31 00:14:17 +09001641 data->stop->error = 0;
1642 dw_mci_request_end(host, mrq);
1643 goto unlock;
Will Newtonf95f3852011-01-02 01:11:59 -05001644 }
Will Newtonf95f3852011-01-02 01:11:59 -05001645
Seungwon Jeon90c21432013-08-31 00:14:05 +09001646 /* stop command for open-ended transfer*/
Seungwon Jeone352c812013-08-31 00:14:17 +09001647 if (data->stop)
1648 send_stop_abort(host, data);
Doug Anderson2aa35462014-08-13 08:13:43 -07001649 } else {
1650 /*
1651 * If we don't have a command complete now we'll
1652 * never get one since we just reset everything;
1653 * better end the request.
1654 *
1655 * If we do have a command complete we'll fall
1656 * through to the SENDING_STOP command and
1657 * everything will be peachy keen.
1658 */
1659 if (!test_bit(EVENT_CMD_COMPLETE,
1660 &host->pending_events)) {
1661 host->cmd = NULL;
1662 dw_mci_request_end(host, mrq);
1663 goto unlock;
1664 }
Seungwon Jeon90c21432013-08-31 00:14:05 +09001665 }
Seungwon Jeone352c812013-08-31 00:14:17 +09001666
1667 /*
1668 * If err has non-zero,
1669 * stop-abort command has been already issued.
1670 */
1671 prev_state = state = STATE_SENDING_STOP;
1672
Will Newtonf95f3852011-01-02 01:11:59 -05001673 /* fall through */
1674
1675 case STATE_SENDING_STOP:
1676 if (!test_and_clear_bit(EVENT_CMD_COMPLETE,
1677 &host->pending_events))
1678 break;
1679
Seungwon Jeon71abb132013-08-31 00:13:59 +09001680 /* CMD error in data command */
Seungwon Jeon31bff452013-08-31 00:14:23 +09001681 if (mrq->cmd->error && mrq->data)
Sonny Rao3a33a942014-08-04 18:19:50 -07001682 dw_mci_reset(host);
Seungwon Jeon71abb132013-08-31 00:13:59 +09001683
Will Newtonf95f3852011-01-02 01:11:59 -05001684 host->cmd = NULL;
Seungwon Jeon71abb132013-08-31 00:13:59 +09001685 host->data = NULL;
Seungwon Jeon90c21432013-08-31 00:14:05 +09001686
Seungwon Jeone352c812013-08-31 00:14:17 +09001687 if (mrq->stop)
1688 dw_mci_command_complete(host, mrq->stop);
Seungwon Jeon90c21432013-08-31 00:14:05 +09001689 else
1690 host->cmd_status = 0;
1691
Seungwon Jeone352c812013-08-31 00:14:17 +09001692 dw_mci_request_end(host, mrq);
Will Newtonf95f3852011-01-02 01:11:59 -05001693 goto unlock;
1694
1695 case STATE_DATA_ERROR:
1696 if (!test_and_clear_bit(EVENT_XFER_COMPLETE,
1697 &host->pending_events))
1698 break;
1699
1700 state = STATE_DATA_BUSY;
1701 break;
1702 }
1703 } while (state != prev_state);
1704
1705 host->state = state;
1706unlock:
1707 spin_unlock(&host->lock);
1708
1709}
1710
James Hogan34b664a2011-06-24 13:57:56 +01001711/* push final bytes to part_buf, only use during push */
1712static void dw_mci_set_part_bytes(struct dw_mci *host, void *buf, int cnt)
1713{
1714 memcpy((void *)&host->part_buf, buf, cnt);
1715 host->part_buf_count = cnt;
1716}
1717
1718/* append bytes to part_buf, only use during push */
1719static int dw_mci_push_part_bytes(struct dw_mci *host, void *buf, int cnt)
1720{
1721 cnt = min(cnt, (1 << host->data_shift) - host->part_buf_count);
1722 memcpy((void *)&host->part_buf + host->part_buf_count, buf, cnt);
1723 host->part_buf_count += cnt;
1724 return cnt;
1725}
1726
1727/* pull first bytes from part_buf, only use during pull */
1728static int dw_mci_pull_part_bytes(struct dw_mci *host, void *buf, int cnt)
1729{
1730 cnt = min(cnt, (int)host->part_buf_count);
1731 if (cnt) {
1732 memcpy(buf, (void *)&host->part_buf + host->part_buf_start,
1733 cnt);
1734 host->part_buf_count -= cnt;
1735 host->part_buf_start += cnt;
1736 }
1737 return cnt;
1738}
1739
1740/* pull final bytes from the part_buf, assuming it's just been filled */
1741static void dw_mci_pull_final_bytes(struct dw_mci *host, void *buf, int cnt)
1742{
1743 memcpy(buf, &host->part_buf, cnt);
1744 host->part_buf_start = cnt;
1745 host->part_buf_count = (1 << host->data_shift) - cnt;
1746}
1747
Will Newtonf95f3852011-01-02 01:11:59 -05001748static void dw_mci_push_data16(struct dw_mci *host, void *buf, int cnt)
1749{
Markos Chandrascfbeb59c2013-03-12 10:53:13 +00001750 struct mmc_data *data = host->data;
1751 int init_cnt = cnt;
1752
James Hogan34b664a2011-06-24 13:57:56 +01001753 /* try and push anything in the part_buf */
1754 if (unlikely(host->part_buf_count)) {
1755 int len = dw_mci_push_part_bytes(host, buf, cnt);
1756 buf += len;
1757 cnt -= len;
Markos Chandrascfbeb59c2013-03-12 10:53:13 +00001758 if (host->part_buf_count == 2) {
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001759 mci_writew(host, DATA(host->data_offset),
1760 host->part_buf16);
James Hogan34b664a2011-06-24 13:57:56 +01001761 host->part_buf_count = 0;
1762 }
1763 }
1764#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
1765 if (unlikely((unsigned long)buf & 0x1)) {
1766 while (cnt >= 2) {
1767 u16 aligned_buf[64];
1768 int len = min(cnt & -2, (int)sizeof(aligned_buf));
1769 int items = len >> 1;
1770 int i;
1771 /* memcpy from input buffer into aligned buffer */
1772 memcpy(aligned_buf, buf, len);
1773 buf += len;
1774 cnt -= len;
1775 /* push data from aligned buffer into fifo */
1776 for (i = 0; i < items; ++i)
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001777 mci_writew(host, DATA(host->data_offset),
1778 aligned_buf[i]);
James Hogan34b664a2011-06-24 13:57:56 +01001779 }
1780 } else
1781#endif
1782 {
1783 u16 *pdata = buf;
1784 for (; cnt >= 2; cnt -= 2)
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001785 mci_writew(host, DATA(host->data_offset), *pdata++);
James Hogan34b664a2011-06-24 13:57:56 +01001786 buf = pdata;
1787 }
1788 /* put anything remaining in the part_buf */
1789 if (cnt) {
1790 dw_mci_set_part_bytes(host, buf, cnt);
Markos Chandrascfbeb59c2013-03-12 10:53:13 +00001791 /* Push data if we have reached the expected data length */
1792 if ((data->bytes_xfered + init_cnt) ==
1793 (data->blksz * data->blocks))
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001794 mci_writew(host, DATA(host->data_offset),
Markos Chandrascfbeb59c2013-03-12 10:53:13 +00001795 host->part_buf16);
Will Newtonf95f3852011-01-02 01:11:59 -05001796 }
1797}
1798
1799static void dw_mci_pull_data16(struct dw_mci *host, void *buf, int cnt)
1800{
James Hogan34b664a2011-06-24 13:57:56 +01001801#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
1802 if (unlikely((unsigned long)buf & 0x1)) {
1803 while (cnt >= 2) {
1804 /* pull data from fifo into aligned buffer */
1805 u16 aligned_buf[64];
1806 int len = min(cnt & -2, (int)sizeof(aligned_buf));
1807 int items = len >> 1;
1808 int i;
1809 for (i = 0; i < items; ++i)
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001810 aligned_buf[i] = mci_readw(host,
1811 DATA(host->data_offset));
James Hogan34b664a2011-06-24 13:57:56 +01001812 /* memcpy from aligned buffer into output buffer */
1813 memcpy(buf, aligned_buf, len);
1814 buf += len;
1815 cnt -= len;
1816 }
1817 } else
1818#endif
1819 {
1820 u16 *pdata = buf;
1821 for (; cnt >= 2; cnt -= 2)
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001822 *pdata++ = mci_readw(host, DATA(host->data_offset));
James Hogan34b664a2011-06-24 13:57:56 +01001823 buf = pdata;
1824 }
1825 if (cnt) {
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001826 host->part_buf16 = mci_readw(host, DATA(host->data_offset));
James Hogan34b664a2011-06-24 13:57:56 +01001827 dw_mci_pull_final_bytes(host, buf, cnt);
Will Newtonf95f3852011-01-02 01:11:59 -05001828 }
1829}
1830
1831static void dw_mci_push_data32(struct dw_mci *host, void *buf, int cnt)
1832{
Markos Chandrascfbeb59c2013-03-12 10:53:13 +00001833 struct mmc_data *data = host->data;
1834 int init_cnt = cnt;
1835
James Hogan34b664a2011-06-24 13:57:56 +01001836 /* try and push anything in the part_buf */
1837 if (unlikely(host->part_buf_count)) {
1838 int len = dw_mci_push_part_bytes(host, buf, cnt);
1839 buf += len;
1840 cnt -= len;
Markos Chandrascfbeb59c2013-03-12 10:53:13 +00001841 if (host->part_buf_count == 4) {
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001842 mci_writel(host, DATA(host->data_offset),
1843 host->part_buf32);
James Hogan34b664a2011-06-24 13:57:56 +01001844 host->part_buf_count = 0;
1845 }
1846 }
1847#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
1848 if (unlikely((unsigned long)buf & 0x3)) {
1849 while (cnt >= 4) {
1850 u32 aligned_buf[32];
1851 int len = min(cnt & -4, (int)sizeof(aligned_buf));
1852 int items = len >> 2;
1853 int i;
1854 /* memcpy from input buffer into aligned buffer */
1855 memcpy(aligned_buf, buf, len);
1856 buf += len;
1857 cnt -= len;
1858 /* push data from aligned buffer into fifo */
1859 for (i = 0; i < items; ++i)
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001860 mci_writel(host, DATA(host->data_offset),
1861 aligned_buf[i]);
James Hogan34b664a2011-06-24 13:57:56 +01001862 }
1863 } else
1864#endif
1865 {
1866 u32 *pdata = buf;
1867 for (; cnt >= 4; cnt -= 4)
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001868 mci_writel(host, DATA(host->data_offset), *pdata++);
James Hogan34b664a2011-06-24 13:57:56 +01001869 buf = pdata;
1870 }
1871 /* put anything remaining in the part_buf */
1872 if (cnt) {
1873 dw_mci_set_part_bytes(host, buf, cnt);
Markos Chandrascfbeb59c2013-03-12 10:53:13 +00001874 /* Push data if we have reached the expected data length */
1875 if ((data->bytes_xfered + init_cnt) ==
1876 (data->blksz * data->blocks))
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001877 mci_writel(host, DATA(host->data_offset),
Markos Chandrascfbeb59c2013-03-12 10:53:13 +00001878 host->part_buf32);
Will Newtonf95f3852011-01-02 01:11:59 -05001879 }
1880}
1881
1882static void dw_mci_pull_data32(struct dw_mci *host, void *buf, int cnt)
1883{
James Hogan34b664a2011-06-24 13:57:56 +01001884#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
1885 if (unlikely((unsigned long)buf & 0x3)) {
1886 while (cnt >= 4) {
1887 /* pull data from fifo into aligned buffer */
1888 u32 aligned_buf[32];
1889 int len = min(cnt & -4, (int)sizeof(aligned_buf));
1890 int items = len >> 2;
1891 int i;
1892 for (i = 0; i < items; ++i)
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001893 aligned_buf[i] = mci_readl(host,
1894 DATA(host->data_offset));
James Hogan34b664a2011-06-24 13:57:56 +01001895 /* memcpy from aligned buffer into output buffer */
1896 memcpy(buf, aligned_buf, len);
1897 buf += len;
1898 cnt -= len;
1899 }
1900 } else
1901#endif
1902 {
1903 u32 *pdata = buf;
1904 for (; cnt >= 4; cnt -= 4)
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001905 *pdata++ = mci_readl(host, DATA(host->data_offset));
James Hogan34b664a2011-06-24 13:57:56 +01001906 buf = pdata;
1907 }
1908 if (cnt) {
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001909 host->part_buf32 = mci_readl(host, DATA(host->data_offset));
James Hogan34b664a2011-06-24 13:57:56 +01001910 dw_mci_pull_final_bytes(host, buf, cnt);
Will Newtonf95f3852011-01-02 01:11:59 -05001911 }
1912}
1913
1914static void dw_mci_push_data64(struct dw_mci *host, void *buf, int cnt)
1915{
Markos Chandrascfbeb59c2013-03-12 10:53:13 +00001916 struct mmc_data *data = host->data;
1917 int init_cnt = cnt;
1918
James Hogan34b664a2011-06-24 13:57:56 +01001919 /* try and push anything in the part_buf */
1920 if (unlikely(host->part_buf_count)) {
1921 int len = dw_mci_push_part_bytes(host, buf, cnt);
1922 buf += len;
1923 cnt -= len;
Seungwon Jeonc09fbd72013-03-25 16:28:22 +09001924
Markos Chandrascfbeb59c2013-03-12 10:53:13 +00001925 if (host->part_buf_count == 8) {
Seungwon Jeonc09fbd72013-03-25 16:28:22 +09001926 mci_writeq(host, DATA(host->data_offset),
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001927 host->part_buf);
James Hogan34b664a2011-06-24 13:57:56 +01001928 host->part_buf_count = 0;
1929 }
1930 }
1931#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
1932 if (unlikely((unsigned long)buf & 0x7)) {
1933 while (cnt >= 8) {
1934 u64 aligned_buf[16];
1935 int len = min(cnt & -8, (int)sizeof(aligned_buf));
1936 int items = len >> 3;
1937 int i;
1938 /* memcpy from input buffer into aligned buffer */
1939 memcpy(aligned_buf, buf, len);
1940 buf += len;
1941 cnt -= len;
1942 /* push data from aligned buffer into fifo */
1943 for (i = 0; i < items; ++i)
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001944 mci_writeq(host, DATA(host->data_offset),
1945 aligned_buf[i]);
James Hogan34b664a2011-06-24 13:57:56 +01001946 }
1947 } else
1948#endif
1949 {
1950 u64 *pdata = buf;
1951 for (; cnt >= 8; cnt -= 8)
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001952 mci_writeq(host, DATA(host->data_offset), *pdata++);
James Hogan34b664a2011-06-24 13:57:56 +01001953 buf = pdata;
1954 }
1955 /* put anything remaining in the part_buf */
1956 if (cnt) {
1957 dw_mci_set_part_bytes(host, buf, cnt);
Markos Chandrascfbeb59c2013-03-12 10:53:13 +00001958 /* Push data if we have reached the expected data length */
1959 if ((data->bytes_xfered + init_cnt) ==
1960 (data->blksz * data->blocks))
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001961 mci_writeq(host, DATA(host->data_offset),
Markos Chandrascfbeb59c2013-03-12 10:53:13 +00001962 host->part_buf);
Will Newtonf95f3852011-01-02 01:11:59 -05001963 }
1964}
1965
1966static void dw_mci_pull_data64(struct dw_mci *host, void *buf, int cnt)
1967{
James Hogan34b664a2011-06-24 13:57:56 +01001968#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
1969 if (unlikely((unsigned long)buf & 0x7)) {
1970 while (cnt >= 8) {
1971 /* pull data from fifo into aligned buffer */
1972 u64 aligned_buf[16];
1973 int len = min(cnt & -8, (int)sizeof(aligned_buf));
1974 int items = len >> 3;
1975 int i;
1976 for (i = 0; i < items; ++i)
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001977 aligned_buf[i] = mci_readq(host,
1978 DATA(host->data_offset));
James Hogan34b664a2011-06-24 13:57:56 +01001979 /* memcpy from aligned buffer into output buffer */
1980 memcpy(buf, aligned_buf, len);
1981 buf += len;
1982 cnt -= len;
1983 }
1984 } else
1985#endif
1986 {
1987 u64 *pdata = buf;
1988 for (; cnt >= 8; cnt -= 8)
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001989 *pdata++ = mci_readq(host, DATA(host->data_offset));
James Hogan34b664a2011-06-24 13:57:56 +01001990 buf = pdata;
Will Newtonf95f3852011-01-02 01:11:59 -05001991 }
James Hogan34b664a2011-06-24 13:57:56 +01001992 if (cnt) {
Jaehoon Chung4e0a5ad2011-10-17 19:36:23 +09001993 host->part_buf = mci_readq(host, DATA(host->data_offset));
James Hogan34b664a2011-06-24 13:57:56 +01001994 dw_mci_pull_final_bytes(host, buf, cnt);
1995 }
1996}
1997
1998static void dw_mci_pull_data(struct dw_mci *host, void *buf, int cnt)
1999{
2000 int len;
2001
2002 /* get remaining partial bytes */
2003 len = dw_mci_pull_part_bytes(host, buf, cnt);
2004 if (unlikely(len == cnt))
2005 return;
2006 buf += len;
2007 cnt -= len;
2008
2009 /* get the rest of the data */
2010 host->pull_data(host, buf, cnt);
Will Newtonf95f3852011-01-02 01:11:59 -05002011}
2012
Kyoungil Kim87a74d32013-01-22 16:46:30 +09002013static void dw_mci_read_data_pio(struct dw_mci *host, bool dto)
Will Newtonf95f3852011-01-02 01:11:59 -05002014{
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09002015 struct sg_mapping_iter *sg_miter = &host->sg_miter;
2016 void *buf;
2017 unsigned int offset;
Will Newtonf95f3852011-01-02 01:11:59 -05002018 struct mmc_data *data = host->data;
2019 int shift = host->data_shift;
2020 u32 status;
Markos Chandras3e4b0d82013-03-22 12:50:05 -04002021 unsigned int len;
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09002022 unsigned int remain, fcnt;
Will Newtonf95f3852011-01-02 01:11:59 -05002023
2024 do {
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09002025 if (!sg_miter_next(sg_miter))
2026 goto done;
Will Newtonf95f3852011-01-02 01:11:59 -05002027
Imre Deak4225fc82013-02-27 17:02:57 -08002028 host->sg = sg_miter->piter.sg;
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09002029 buf = sg_miter->addr;
2030 remain = sg_miter->length;
2031 offset = 0;
2032
2033 do {
2034 fcnt = (SDMMC_GET_FCNT(mci_readl(host, STATUS))
2035 << shift) + host->part_buf_count;
2036 len = min(remain, fcnt);
2037 if (!len)
2038 break;
2039 dw_mci_pull_data(host, (void *)(buf + offset), len);
Markos Chandras3e4b0d82013-03-22 12:50:05 -04002040 data->bytes_xfered += len;
Will Newtonf95f3852011-01-02 01:11:59 -05002041 offset += len;
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09002042 remain -= len;
2043 } while (remain);
Will Newtonf95f3852011-01-02 01:11:59 -05002044
Seungwon Jeone74f3a92012-08-01 09:30:46 +09002045 sg_miter->consumed = offset;
Will Newtonf95f3852011-01-02 01:11:59 -05002046 status = mci_readl(host, MINTSTS);
2047 mci_writel(host, RINTSTS, SDMMC_INT_RXDR);
Kyoungil Kim87a74d32013-01-22 16:46:30 +09002048 /* if the RXDR is ready read again */
2049 } while ((status & SDMMC_INT_RXDR) ||
2050 (dto && SDMMC_GET_FCNT(mci_readl(host, STATUS))));
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09002051
2052 if (!remain) {
2053 if (!sg_miter_next(sg_miter))
2054 goto done;
2055 sg_miter->consumed = 0;
2056 }
2057 sg_miter_stop(sg_miter);
Will Newtonf95f3852011-01-02 01:11:59 -05002058 return;
2059
2060done:
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09002061 sg_miter_stop(sg_miter);
2062 host->sg = NULL;
Will Newtonf95f3852011-01-02 01:11:59 -05002063 smp_wmb();
2064 set_bit(EVENT_XFER_COMPLETE, &host->pending_events);
2065}
2066
2067static void dw_mci_write_data_pio(struct dw_mci *host)
2068{
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09002069 struct sg_mapping_iter *sg_miter = &host->sg_miter;
2070 void *buf;
2071 unsigned int offset;
Will Newtonf95f3852011-01-02 01:11:59 -05002072 struct mmc_data *data = host->data;
2073 int shift = host->data_shift;
2074 u32 status;
Markos Chandras3e4b0d82013-03-22 12:50:05 -04002075 unsigned int len;
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09002076 unsigned int fifo_depth = host->fifo_depth;
2077 unsigned int remain, fcnt;
Will Newtonf95f3852011-01-02 01:11:59 -05002078
2079 do {
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09002080 if (!sg_miter_next(sg_miter))
2081 goto done;
Will Newtonf95f3852011-01-02 01:11:59 -05002082
Imre Deak4225fc82013-02-27 17:02:57 -08002083 host->sg = sg_miter->piter.sg;
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09002084 buf = sg_miter->addr;
2085 remain = sg_miter->length;
2086 offset = 0;
2087
2088 do {
2089 fcnt = ((fifo_depth -
2090 SDMMC_GET_FCNT(mci_readl(host, STATUS)))
2091 << shift) - host->part_buf_count;
2092 len = min(remain, fcnt);
2093 if (!len)
2094 break;
2095 host->push_data(host, (void *)(buf + offset), len);
Markos Chandras3e4b0d82013-03-22 12:50:05 -04002096 data->bytes_xfered += len;
Will Newtonf95f3852011-01-02 01:11:59 -05002097 offset += len;
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09002098 remain -= len;
2099 } while (remain);
Will Newtonf95f3852011-01-02 01:11:59 -05002100
Seungwon Jeone74f3a92012-08-01 09:30:46 +09002101 sg_miter->consumed = offset;
Will Newtonf95f3852011-01-02 01:11:59 -05002102 status = mci_readl(host, MINTSTS);
2103 mci_writel(host, RINTSTS, SDMMC_INT_TXDR);
Will Newtonf95f3852011-01-02 01:11:59 -05002104 } while (status & SDMMC_INT_TXDR); /* if TXDR write again */
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09002105
2106 if (!remain) {
2107 if (!sg_miter_next(sg_miter))
2108 goto done;
2109 sg_miter->consumed = 0;
2110 }
2111 sg_miter_stop(sg_miter);
Will Newtonf95f3852011-01-02 01:11:59 -05002112 return;
2113
2114done:
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09002115 sg_miter_stop(sg_miter);
2116 host->sg = NULL;
Will Newtonf95f3852011-01-02 01:11:59 -05002117 smp_wmb();
2118 set_bit(EVENT_XFER_COMPLETE, &host->pending_events);
2119}
2120
2121static void dw_mci_cmd_interrupt(struct dw_mci *host, u32 status)
2122{
2123 if (!host->cmd_status)
2124 host->cmd_status = status;
2125
2126 smp_wmb();
2127
2128 set_bit(EVENT_CMD_COMPLETE, &host->pending_events);
2129 tasklet_schedule(&host->tasklet);
2130}
2131
Doug Anderson6130e7a2014-10-14 09:33:09 -07002132static void dw_mci_handle_cd(struct dw_mci *host)
2133{
2134 int i;
2135
2136 for (i = 0; i < host->num_slots; i++) {
2137 struct dw_mci_slot *slot = host->slot[i];
2138
2139 if (!slot)
2140 continue;
2141
2142 if (slot->mmc->ops->card_event)
2143 slot->mmc->ops->card_event(slot->mmc);
2144 mmc_detect_change(slot->mmc,
2145 msecs_to_jiffies(host->pdata->detect_delay_ms));
2146 }
2147}
2148
Will Newtonf95f3852011-01-02 01:11:59 -05002149static irqreturn_t dw_mci_interrupt(int irq, void *dev_id)
2150{
2151 struct dw_mci *host = dev_id;
Seungwon Jeon182c9082012-08-01 09:30:30 +09002152 u32 pending;
Shashidhar Hiremath1a5c8e12011-08-29 13:11:46 +05302153 int i;
Will Newtonf95f3852011-01-02 01:11:59 -05002154
Markos Chandras1fb5f682013-03-12 10:53:11 +00002155 pending = mci_readl(host, MINTSTS); /* read-only mask reg */
2156
Doug Anderson476d79f2013-07-09 13:04:40 -07002157 /*
2158 * DTO fix - version 2.10a and below, and only if internal DMA
2159 * is configured.
2160 */
2161 if (host->quirks & DW_MCI_QUIRK_IDMAC_DTO) {
2162 if (!pending &&
2163 ((mci_readl(host, STATUS) >> 17) & 0x1fff))
2164 pending |= SDMMC_INT_DATA_OVER;
2165 }
2166
Markos Chandras1fb5f682013-03-12 10:53:11 +00002167 if (pending) {
Doug Anderson01730552014-08-22 19:17:51 +05302168 /* Check volt switch first, since it can look like an error */
2169 if ((host->state == STATE_SENDING_CMD11) &&
2170 (pending & SDMMC_INT_VOLT_SWITCH)) {
Doug Anderson5c935162015-03-09 16:18:21 -07002171 del_timer(&host->cmd11_timer);
2172
Doug Anderson01730552014-08-22 19:17:51 +05302173 mci_writel(host, RINTSTS, SDMMC_INT_VOLT_SWITCH);
2174 pending &= ~SDMMC_INT_VOLT_SWITCH;
2175 dw_mci_cmd_interrupt(host, pending);
2176 }
2177
Will Newtonf95f3852011-01-02 01:11:59 -05002178 if (pending & DW_MCI_CMD_ERROR_FLAGS) {
2179 mci_writel(host, RINTSTS, DW_MCI_CMD_ERROR_FLAGS);
Seungwon Jeon182c9082012-08-01 09:30:30 +09002180 host->cmd_status = pending;
Will Newtonf95f3852011-01-02 01:11:59 -05002181 smp_wmb();
2182 set_bit(EVENT_CMD_COMPLETE, &host->pending_events);
Will Newtonf95f3852011-01-02 01:11:59 -05002183 }
2184
2185 if (pending & DW_MCI_DATA_ERROR_FLAGS) {
2186 /* if there is an error report DATA_ERROR */
2187 mci_writel(host, RINTSTS, DW_MCI_DATA_ERROR_FLAGS);
Seungwon Jeon182c9082012-08-01 09:30:30 +09002188 host->data_status = pending;
Will Newtonf95f3852011-01-02 01:11:59 -05002189 smp_wmb();
2190 set_bit(EVENT_DATA_ERROR, &host->pending_events);
Seungwon Jeon9b2026a2012-08-01 09:30:40 +09002191 tasklet_schedule(&host->tasklet);
Will Newtonf95f3852011-01-02 01:11:59 -05002192 }
2193
2194 if (pending & SDMMC_INT_DATA_OVER) {
2195 mci_writel(host, RINTSTS, SDMMC_INT_DATA_OVER);
2196 if (!host->data_status)
Seungwon Jeon182c9082012-08-01 09:30:30 +09002197 host->data_status = pending;
Will Newtonf95f3852011-01-02 01:11:59 -05002198 smp_wmb();
2199 if (host->dir_status == DW_MCI_RECV_STATUS) {
2200 if (host->sg != NULL)
Kyoungil Kim87a74d32013-01-22 16:46:30 +09002201 dw_mci_read_data_pio(host, true);
Will Newtonf95f3852011-01-02 01:11:59 -05002202 }
2203 set_bit(EVENT_DATA_COMPLETE, &host->pending_events);
2204 tasklet_schedule(&host->tasklet);
2205 }
2206
2207 if (pending & SDMMC_INT_RXDR) {
2208 mci_writel(host, RINTSTS, SDMMC_INT_RXDR);
James Hoganb40af3a2011-06-24 13:54:06 +01002209 if (host->dir_status == DW_MCI_RECV_STATUS && host->sg)
Kyoungil Kim87a74d32013-01-22 16:46:30 +09002210 dw_mci_read_data_pio(host, false);
Will Newtonf95f3852011-01-02 01:11:59 -05002211 }
2212
2213 if (pending & SDMMC_INT_TXDR) {
2214 mci_writel(host, RINTSTS, SDMMC_INT_TXDR);
James Hoganb40af3a2011-06-24 13:54:06 +01002215 if (host->dir_status == DW_MCI_SEND_STATUS && host->sg)
Will Newtonf95f3852011-01-02 01:11:59 -05002216 dw_mci_write_data_pio(host);
2217 }
2218
2219 if (pending & SDMMC_INT_CMD_DONE) {
2220 mci_writel(host, RINTSTS, SDMMC_INT_CMD_DONE);
Seungwon Jeon182c9082012-08-01 09:30:30 +09002221 dw_mci_cmd_interrupt(host, pending);
Will Newtonf95f3852011-01-02 01:11:59 -05002222 }
2223
2224 if (pending & SDMMC_INT_CD) {
2225 mci_writel(host, RINTSTS, SDMMC_INT_CD);
Doug Anderson6130e7a2014-10-14 09:33:09 -07002226 dw_mci_handle_cd(host);
Will Newtonf95f3852011-01-02 01:11:59 -05002227 }
2228
Shashidhar Hiremath1a5c8e12011-08-29 13:11:46 +05302229 /* Handle SDIO Interrupts */
2230 for (i = 0; i < host->num_slots; i++) {
2231 struct dw_mci_slot *slot = host->slot[i];
Doug Andersoned2540e2015-02-25 10:11:52 -08002232
2233 if (!slot)
2234 continue;
2235
Addy Ke76756232014-11-04 22:03:09 +08002236 if (pending & SDMMC_INT_SDIO(slot->sdio_id)) {
2237 mci_writel(host, RINTSTS,
2238 SDMMC_INT_SDIO(slot->sdio_id));
Shashidhar Hiremath1a5c8e12011-08-29 13:11:46 +05302239 mmc_signal_sdio_irq(slot->mmc);
2240 }
2241 }
2242
Markos Chandras1fb5f682013-03-12 10:53:11 +00002243 }
Will Newtonf95f3852011-01-02 01:11:59 -05002244
2245#ifdef CONFIG_MMC_DW_IDMAC
2246 /* Handle DMA interrupts */
Prabu Thangamuthu69d99fd2014-10-20 07:12:33 +00002247 if (host->dma_64bit_address == 1) {
2248 pending = mci_readl(host, IDSTS64);
2249 if (pending & (SDMMC_IDMAC_INT_TI | SDMMC_IDMAC_INT_RI)) {
2250 mci_writel(host, IDSTS64, SDMMC_IDMAC_INT_TI |
2251 SDMMC_IDMAC_INT_RI);
2252 mci_writel(host, IDSTS64, SDMMC_IDMAC_INT_NI);
2253 host->dma_ops->complete(host);
2254 }
2255 } else {
2256 pending = mci_readl(host, IDSTS);
2257 if (pending & (SDMMC_IDMAC_INT_TI | SDMMC_IDMAC_INT_RI)) {
2258 mci_writel(host, IDSTS, SDMMC_IDMAC_INT_TI |
2259 SDMMC_IDMAC_INT_RI);
2260 mci_writel(host, IDSTS, SDMMC_IDMAC_INT_NI);
2261 host->dma_ops->complete(host);
2262 }
Will Newtonf95f3852011-01-02 01:11:59 -05002263 }
2264#endif
2265
2266 return IRQ_HANDLED;
2267}
2268
Thomas Abrahamc91eab42012-09-17 18:16:40 +00002269#ifdef CONFIG_OF
2270/* given a slot id, find out the device node representing that slot */
2271static struct device_node *dw_mci_of_find_slot_node(struct device *dev, u8 slot)
2272{
2273 struct device_node *np;
2274 const __be32 *addr;
2275 int len;
2276
2277 if (!dev || !dev->of_node)
2278 return NULL;
2279
2280 for_each_child_of_node(dev->of_node, np) {
2281 addr = of_get_property(np, "reg", &len);
2282 if (!addr || (len < sizeof(int)))
2283 continue;
2284 if (be32_to_cpup(addr) == slot)
2285 return np;
2286 }
2287 return NULL;
2288}
2289
Doug Andersona70aaa62013-01-11 17:03:50 +00002290static struct dw_mci_of_slot_quirks {
2291 char *quirk;
2292 int id;
2293} of_slot_quirks[] = {
2294 {
2295 .quirk = "disable-wp",
2296 .id = DW_MCI_SLOT_QUIRK_NO_WRITE_PROTECT,
2297 },
2298};
2299
2300static int dw_mci_of_get_slot_quirks(struct device *dev, u8 slot)
2301{
2302 struct device_node *np = dw_mci_of_find_slot_node(dev, slot);
2303 int quirks = 0;
2304 int idx;
2305
2306 /* get quirks */
2307 for (idx = 0; idx < ARRAY_SIZE(of_slot_quirks); idx++)
Jaehoon Chung26375b52014-08-07 16:37:58 +09002308 if (of_get_property(np, of_slot_quirks[idx].quirk, NULL)) {
2309 dev_warn(dev, "Slot quirk %s is deprecated\n",
2310 of_slot_quirks[idx].quirk);
Doug Andersona70aaa62013-01-11 17:03:50 +00002311 quirks |= of_slot_quirks[idx].id;
Jaehoon Chung26375b52014-08-07 16:37:58 +09002312 }
Doug Andersona70aaa62013-01-11 17:03:50 +00002313
2314 return quirks;
2315}
Thomas Abrahamc91eab42012-09-17 18:16:40 +00002316#else /* CONFIG_OF */
Doug Andersona70aaa62013-01-11 17:03:50 +00002317static int dw_mci_of_get_slot_quirks(struct device *dev, u8 slot)
2318{
2319 return 0;
2320}
Thomas Abrahamc91eab42012-09-17 18:16:40 +00002321#endif /* CONFIG_OF */
2322
Jaehoon Chung36c179a2012-08-23 20:31:48 +09002323static int dw_mci_init_slot(struct dw_mci *host, unsigned int id)
Will Newtonf95f3852011-01-02 01:11:59 -05002324{
2325 struct mmc_host *mmc;
2326 struct dw_mci_slot *slot;
Arnd Bergmanne95baf12012-11-08 14:26:11 +00002327 const struct dw_mci_drv_data *drv_data = host->drv_data;
Thomas Abraham800d78b2012-09-17 18:16:42 +00002328 int ctrl_id, ret;
Seungwon Jeon1f44a2a2013-08-31 00:13:31 +09002329 u32 freq[2];
Will Newtonf95f3852011-01-02 01:11:59 -05002330
Thomas Abraham4a909202012-09-17 18:16:35 +00002331 mmc = mmc_alloc_host(sizeof(struct dw_mci_slot), host->dev);
Will Newtonf95f3852011-01-02 01:11:59 -05002332 if (!mmc)
2333 return -ENOMEM;
2334
2335 slot = mmc_priv(mmc);
2336 slot->id = id;
Addy Ke76756232014-11-04 22:03:09 +08002337 slot->sdio_id = host->sdio_id0 + id;
Will Newtonf95f3852011-01-02 01:11:59 -05002338 slot->mmc = mmc;
2339 slot->host = host;
Thomas Abrahamc91eab42012-09-17 18:16:40 +00002340 host->slot[id] = slot;
Will Newtonf95f3852011-01-02 01:11:59 -05002341
Doug Andersona70aaa62013-01-11 17:03:50 +00002342 slot->quirks = dw_mci_of_get_slot_quirks(host->dev, slot->id);
2343
Will Newtonf95f3852011-01-02 01:11:59 -05002344 mmc->ops = &dw_mci_ops;
Seungwon Jeon1f44a2a2013-08-31 00:13:31 +09002345 if (of_property_read_u32_array(host->dev->of_node,
2346 "clock-freq-min-max", freq, 2)) {
2347 mmc->f_min = DW_MCI_FREQ_MIN;
2348 mmc->f_max = DW_MCI_FREQ_MAX;
2349 } else {
2350 mmc->f_min = freq[0];
2351 mmc->f_max = freq[1];
2352 }
Will Newtonf95f3852011-01-02 01:11:59 -05002353
Yuvaraj CD51da2242014-08-22 19:17:50 +05302354 /*if there are external regulators, get them*/
2355 ret = mmc_regulator_get_supply(mmc);
2356 if (ret == -EPROBE_DEFER)
Doug Anderson3cf890f2014-08-25 11:19:04 -07002357 goto err_host_allocated;
Yuvaraj CD51da2242014-08-22 19:17:50 +05302358
2359 if (!mmc->ocr_avail)
2360 mmc->ocr_avail = MMC_VDD_32_33 | MMC_VDD_33_34;
Will Newtonf95f3852011-01-02 01:11:59 -05002361
Jaehoon Chungfc3d7722011-02-25 11:08:15 +09002362 if (host->pdata->caps)
2363 mmc->caps = host->pdata->caps;
Jaehoon Chungfc3d7722011-02-25 11:08:15 +09002364
Abhilash Kesavanab269122012-11-19 10:26:21 +05302365 if (host->pdata->pm_caps)
2366 mmc->pm_caps = host->pdata->pm_caps;
2367
Thomas Abraham800d78b2012-09-17 18:16:42 +00002368 if (host->dev->of_node) {
2369 ctrl_id = of_alias_get_id(host->dev->of_node, "mshc");
2370 if (ctrl_id < 0)
2371 ctrl_id = 0;
2372 } else {
2373 ctrl_id = to_platform_device(host->dev)->id;
2374 }
James Hogancb27a842012-10-16 09:43:08 +01002375 if (drv_data && drv_data->caps)
2376 mmc->caps |= drv_data->caps[ctrl_id];
Thomas Abraham800d78b2012-09-17 18:16:42 +00002377
Seungwon Jeon4f408cc2011-12-09 14:55:52 +09002378 if (host->pdata->caps2)
2379 mmc->caps2 = host->pdata->caps2;
Seungwon Jeon4f408cc2011-12-09 14:55:52 +09002380
Doug Anderson3cf890f2014-08-25 11:19:04 -07002381 ret = mmc_of_parse(mmc);
2382 if (ret)
2383 goto err_host_allocated;
Will Newtonf95f3852011-01-02 01:11:59 -05002384
Will Newtonf95f3852011-01-02 01:11:59 -05002385 if (host->pdata->blk_settings) {
2386 mmc->max_segs = host->pdata->blk_settings->max_segs;
2387 mmc->max_blk_size = host->pdata->blk_settings->max_blk_size;
2388 mmc->max_blk_count = host->pdata->blk_settings->max_blk_count;
2389 mmc->max_req_size = host->pdata->blk_settings->max_req_size;
2390 mmc->max_seg_size = host->pdata->blk_settings->max_seg_size;
2391 } else {
2392 /* Useful defaults if platform data is unset. */
Jaehoon Chunga39e5742012-02-04 17:00:27 -05002393#ifdef CONFIG_MMC_DW_IDMAC
2394 mmc->max_segs = host->ring_size;
2395 mmc->max_blk_size = 65536;
Jaehoon Chunga39e5742012-02-04 17:00:27 -05002396 mmc->max_seg_size = 0x1000;
Seungwon Jeon1a25b1b2014-12-22 17:42:02 +05302397 mmc->max_req_size = mmc->max_seg_size * host->ring_size;
2398 mmc->max_blk_count = mmc->max_req_size / 512;
Jaehoon Chunga39e5742012-02-04 17:00:27 -05002399#else
Will Newtonf95f3852011-01-02 01:11:59 -05002400 mmc->max_segs = 64;
2401 mmc->max_blk_size = 65536; /* BLKSIZ is 16 bits */
2402 mmc->max_blk_count = 512;
2403 mmc->max_req_size = mmc->max_blk_size * mmc->max_blk_count;
2404 mmc->max_seg_size = mmc->max_req_size;
Will Newtonf95f3852011-01-02 01:11:59 -05002405#endif /* CONFIG_MMC_DW_IDMAC */
Jaehoon Chunga39e5742012-02-04 17:00:27 -05002406 }
Will Newtonf95f3852011-01-02 01:11:59 -05002407
Jaehoon Chungae0eb342014-03-03 11:36:48 +09002408 if (dw_mci_get_cd(mmc))
2409 set_bit(DW_MMC_CARD_PRESENT, &slot->flags);
2410 else
2411 clear_bit(DW_MMC_CARD_PRESENT, &slot->flags);
2412
Jaehoon Chung0cea5292013-02-15 23:45:45 +09002413 ret = mmc_add_host(mmc);
2414 if (ret)
Doug Anderson3cf890f2014-08-25 11:19:04 -07002415 goto err_host_allocated;
Will Newtonf95f3852011-01-02 01:11:59 -05002416
2417#if defined(CONFIG_DEBUG_FS)
2418 dw_mci_init_debugfs(slot);
2419#endif
2420
Will Newtonf95f3852011-01-02 01:11:59 -05002421 return 0;
Thomas Abraham800d78b2012-09-17 18:16:42 +00002422
Doug Anderson3cf890f2014-08-25 11:19:04 -07002423err_host_allocated:
Thomas Abraham800d78b2012-09-17 18:16:42 +00002424 mmc_free_host(mmc);
Yuvaraj CD51da2242014-08-22 19:17:50 +05302425 return ret;
Will Newtonf95f3852011-01-02 01:11:59 -05002426}
2427
2428static void dw_mci_cleanup_slot(struct dw_mci_slot *slot, unsigned int id)
2429{
Will Newtonf95f3852011-01-02 01:11:59 -05002430 /* Debugfs stuff is cleaned up by mmc core */
2431 mmc_remove_host(slot->mmc);
2432 slot->host->slot[id] = NULL;
2433 mmc_free_host(slot->mmc);
2434}
2435
2436static void dw_mci_init_dma(struct dw_mci *host)
2437{
Prabu Thangamuthu69d99fd2014-10-20 07:12:33 +00002438 int addr_config;
2439 /* Check ADDR_CONFIG bit in HCON to find IDMAC address bus width */
2440 addr_config = (mci_readl(host, HCON) >> 27) & 0x01;
2441
2442 if (addr_config == 1) {
2443 /* host supports IDMAC in 64-bit address mode */
2444 host->dma_64bit_address = 1;
2445 dev_info(host->dev, "IDMAC supports 64-bit address mode.\n");
2446 if (!dma_set_mask(host->dev, DMA_BIT_MASK(64)))
2447 dma_set_coherent_mask(host->dev, DMA_BIT_MASK(64));
2448 } else {
2449 /* host supports IDMAC in 32-bit address mode */
2450 host->dma_64bit_address = 0;
2451 dev_info(host->dev, "IDMAC supports 32-bit address mode.\n");
2452 }
2453
Will Newtonf95f3852011-01-02 01:11:59 -05002454 /* Alloc memory for sg translation */
Seungwon Jeon780f22a2012-11-28 19:26:03 +09002455 host->sg_cpu = dmam_alloc_coherent(host->dev, PAGE_SIZE,
Will Newtonf95f3852011-01-02 01:11:59 -05002456 &host->sg_dma, GFP_KERNEL);
2457 if (!host->sg_cpu) {
Thomas Abraham4a909202012-09-17 18:16:35 +00002458 dev_err(host->dev, "%s: could not alloc DMA memory\n",
Will Newtonf95f3852011-01-02 01:11:59 -05002459 __func__);
2460 goto no_dma;
2461 }
2462
2463 /* Determine which DMA interface to use */
2464#ifdef CONFIG_MMC_DW_IDMAC
2465 host->dma_ops = &dw_mci_idmac_ops;
Seungwon Jeon00956ea2012-09-28 19:13:11 +09002466 dev_info(host->dev, "Using internal DMA controller.\n");
Will Newtonf95f3852011-01-02 01:11:59 -05002467#endif
2468
2469 if (!host->dma_ops)
2470 goto no_dma;
2471
Jaehoon Chunge1631f92012-04-18 15:42:31 +09002472 if (host->dma_ops->init && host->dma_ops->start &&
2473 host->dma_ops->stop && host->dma_ops->cleanup) {
Will Newtonf95f3852011-01-02 01:11:59 -05002474 if (host->dma_ops->init(host)) {
Thomas Abraham4a909202012-09-17 18:16:35 +00002475 dev_err(host->dev, "%s: Unable to initialize "
Will Newtonf95f3852011-01-02 01:11:59 -05002476 "DMA Controller.\n", __func__);
2477 goto no_dma;
2478 }
2479 } else {
Thomas Abraham4a909202012-09-17 18:16:35 +00002480 dev_err(host->dev, "DMA initialization not found.\n");
Will Newtonf95f3852011-01-02 01:11:59 -05002481 goto no_dma;
2482 }
2483
2484 host->use_dma = 1;
2485 return;
2486
2487no_dma:
Thomas Abraham4a909202012-09-17 18:16:35 +00002488 dev_info(host->dev, "Using PIO mode.\n");
Will Newtonf95f3852011-01-02 01:11:59 -05002489 host->use_dma = 0;
2490 return;
2491}
2492
Seungwon Jeon31bff452013-08-31 00:14:23 +09002493static bool dw_mci_ctrl_reset(struct dw_mci *host, u32 reset)
Will Newtonf95f3852011-01-02 01:11:59 -05002494{
2495 unsigned long timeout = jiffies + msecs_to_jiffies(500);
Seungwon Jeon31bff452013-08-31 00:14:23 +09002496 u32 ctrl;
Will Newtonf95f3852011-01-02 01:11:59 -05002497
Seungwon Jeon31bff452013-08-31 00:14:23 +09002498 ctrl = mci_readl(host, CTRL);
2499 ctrl |= reset;
2500 mci_writel(host, CTRL, ctrl);
Will Newtonf95f3852011-01-02 01:11:59 -05002501
2502 /* wait till resets clear */
2503 do {
2504 ctrl = mci_readl(host, CTRL);
Seungwon Jeon31bff452013-08-31 00:14:23 +09002505 if (!(ctrl & reset))
Will Newtonf95f3852011-01-02 01:11:59 -05002506 return true;
2507 } while (time_before(jiffies, timeout));
2508
Seungwon Jeon31bff452013-08-31 00:14:23 +09002509 dev_err(host->dev,
2510 "Timeout resetting block (ctrl reset %#x)\n",
2511 ctrl & reset);
Will Newtonf95f3852011-01-02 01:11:59 -05002512
2513 return false;
2514}
2515
Sonny Rao3a33a942014-08-04 18:19:50 -07002516static bool dw_mci_reset(struct dw_mci *host)
Seungwon Jeon31bff452013-08-31 00:14:23 +09002517{
Sonny Rao3a33a942014-08-04 18:19:50 -07002518 u32 flags = SDMMC_CTRL_RESET | SDMMC_CTRL_FIFO_RESET;
2519 bool ret = false;
2520
Seungwon Jeon31bff452013-08-31 00:14:23 +09002521 /*
2522 * Reseting generates a block interrupt, hence setting
2523 * the scatter-gather pointer to NULL.
2524 */
2525 if (host->sg) {
2526 sg_miter_stop(&host->sg_miter);
2527 host->sg = NULL;
2528 }
2529
Sonny Rao3a33a942014-08-04 18:19:50 -07002530 if (host->use_dma)
2531 flags |= SDMMC_CTRL_DMA_RESET;
Seungwon Jeon31bff452013-08-31 00:14:23 +09002532
Sonny Rao3a33a942014-08-04 18:19:50 -07002533 if (dw_mci_ctrl_reset(host, flags)) {
2534 /*
2535 * In all cases we clear the RAWINTS register to clear any
2536 * interrupts.
2537 */
2538 mci_writel(host, RINTSTS, 0xFFFFFFFF);
2539
2540 /* if using dma we wait for dma_req to clear */
2541 if (host->use_dma) {
2542 unsigned long timeout = jiffies + msecs_to_jiffies(500);
2543 u32 status;
2544 do {
2545 status = mci_readl(host, STATUS);
2546 if (!(status & SDMMC_STATUS_DMA_REQ))
2547 break;
2548 cpu_relax();
2549 } while (time_before(jiffies, timeout));
2550
2551 if (status & SDMMC_STATUS_DMA_REQ) {
2552 dev_err(host->dev,
2553 "%s: Timeout waiting for dma_req to "
2554 "clear during reset\n", __func__);
2555 goto ciu_out;
2556 }
2557
2558 /* when using DMA next we reset the fifo again */
2559 if (!dw_mci_ctrl_reset(host, SDMMC_CTRL_FIFO_RESET))
2560 goto ciu_out;
2561 }
2562 } else {
2563 /* if the controller reset bit did clear, then set clock regs */
2564 if (!(mci_readl(host, CTRL) & SDMMC_CTRL_RESET)) {
2565 dev_err(host->dev, "%s: fifo/dma reset bits didn't "
2566 "clear but ciu was reset, doing clock update\n",
2567 __func__);
2568 goto ciu_out;
2569 }
2570 }
2571
2572#if IS_ENABLED(CONFIG_MMC_DW_IDMAC)
2573 /* It is also recommended that we reset and reprogram idmac */
2574 dw_mci_idmac_reset(host);
2575#endif
2576
2577 ret = true;
2578
2579ciu_out:
2580 /* After a CTRL reset we need to have CIU set clock registers */
2581 mci_send_cmd(host->cur_slot, SDMMC_CMD_UPD_CLK, 0);
2582
2583 return ret;
Seungwon Jeon31bff452013-08-31 00:14:23 +09002584}
2585
Doug Anderson5c935162015-03-09 16:18:21 -07002586static void dw_mci_cmd11_timer(unsigned long arg)
2587{
2588 struct dw_mci *host = (struct dw_mci *)arg;
2589
2590 if (host->state != STATE_SENDING_CMD11)
2591 dev_info(host->dev, "Unexpected CMD11 timeout\n");
2592
2593 host->cmd_status = SDMMC_INT_RTO;
2594 set_bit(EVENT_CMD_COMPLETE, &host->pending_events);
2595 tasklet_schedule(&host->tasklet);
2596}
2597
Thomas Abrahamc91eab42012-09-17 18:16:40 +00002598#ifdef CONFIG_OF
2599static struct dw_mci_of_quirks {
2600 char *quirk;
2601 int id;
2602} of_quirks[] = {
2603 {
Thomas Abrahamc91eab42012-09-17 18:16:40 +00002604 .quirk = "broken-cd",
2605 .id = DW_MCI_QUIRK_BROKEN_CARD_DETECTION,
Jaehoon Chung26375b52014-08-07 16:37:58 +09002606 }, {
2607 .quirk = "disable-wp",
2608 .id = DW_MCI_QUIRK_NO_WRITE_PROTECT,
Thomas Abrahamc91eab42012-09-17 18:16:40 +00002609 },
2610};
2611
2612static struct dw_mci_board *dw_mci_parse_dt(struct dw_mci *host)
2613{
2614 struct dw_mci_board *pdata;
2615 struct device *dev = host->dev;
2616 struct device_node *np = dev->of_node;
Arnd Bergmanne95baf12012-11-08 14:26:11 +00002617 const struct dw_mci_drv_data *drv_data = host->drv_data;
Thomas Abraham800d78b2012-09-17 18:16:42 +00002618 int idx, ret;
Doug Anderson3c6d89e2013-06-07 10:28:30 -07002619 u32 clock_frequency;
Thomas Abrahamc91eab42012-09-17 18:16:40 +00002620
2621 pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL);
Beomho Seobf3707e2014-12-23 21:07:33 +09002622 if (!pdata)
Thomas Abrahamc91eab42012-09-17 18:16:40 +00002623 return ERR_PTR(-ENOMEM);
Thomas Abrahamc91eab42012-09-17 18:16:40 +00002624
2625 /* find out number of slots supported */
2626 if (of_property_read_u32(dev->of_node, "num-slots",
2627 &pdata->num_slots)) {
2628 dev_info(dev, "num-slots property not found, "
2629 "assuming 1 slot is available\n");
2630 pdata->num_slots = 1;
2631 }
2632
2633 /* get quirks */
2634 for (idx = 0; idx < ARRAY_SIZE(of_quirks); idx++)
2635 if (of_get_property(np, of_quirks[idx].quirk, NULL))
2636 pdata->quirks |= of_quirks[idx].id;
2637
2638 if (of_property_read_u32(np, "fifo-depth", &pdata->fifo_depth))
2639 dev_info(dev, "fifo-depth property not found, using "
2640 "value of FIFOTH register as default\n");
2641
2642 of_property_read_u32(np, "card-detect-delay", &pdata->detect_delay_ms);
2643
Doug Anderson3c6d89e2013-06-07 10:28:30 -07002644 if (!of_property_read_u32(np, "clock-frequency", &clock_frequency))
2645 pdata->bus_hz = clock_frequency;
2646
James Hogancb27a842012-10-16 09:43:08 +01002647 if (drv_data && drv_data->parse_dt) {
2648 ret = drv_data->parse_dt(host);
Thomas Abraham800d78b2012-09-17 18:16:42 +00002649 if (ret)
2650 return ERR_PTR(ret);
2651 }
2652
Seungwon Jeon10b49842013-08-31 00:13:22 +09002653 if (of_find_property(np, "supports-highspeed", NULL))
2654 pdata->caps |= MMC_CAP_SD_HIGHSPEED | MMC_CAP_MMC_HIGHSPEED;
2655
Thomas Abrahamc91eab42012-09-17 18:16:40 +00002656 return pdata;
2657}
2658
2659#else /* CONFIG_OF */
2660static struct dw_mci_board *dw_mci_parse_dt(struct dw_mci *host)
2661{
2662 return ERR_PTR(-EINVAL);
2663}
2664#endif /* CONFIG_OF */
2665
Doug Andersonfa0c3282015-02-25 10:11:51 -08002666static void dw_mci_enable_cd(struct dw_mci *host)
2667{
2668 struct dw_mci_board *brd = host->pdata;
2669 unsigned long irqflags;
2670 u32 temp;
2671 int i;
2672
2673 /* No need for CD if broken card detection */
2674 if (brd->quirks & DW_MCI_QUIRK_BROKEN_CARD_DETECTION)
2675 return;
2676
2677 /* No need for CD if all slots have a non-error GPIO */
2678 for (i = 0; i < host->num_slots; i++) {
2679 struct dw_mci_slot *slot = host->slot[i];
2680
2681 if (IS_ERR_VALUE(mmc_gpio_get_cd(slot->mmc)))
2682 break;
2683 }
2684 if (i == host->num_slots)
2685 return;
2686
2687 spin_lock_irqsave(&host->irq_lock, irqflags);
2688 temp = mci_readl(host, INTMASK);
2689 temp |= SDMMC_INT_CD;
2690 mci_writel(host, INTMASK, temp);
2691 spin_unlock_irqrestore(&host->irq_lock, irqflags);
2692}
2693
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05302694int dw_mci_probe(struct dw_mci *host)
Will Newtonf95f3852011-01-02 01:11:59 -05002695{
Arnd Bergmanne95baf12012-11-08 14:26:11 +00002696 const struct dw_mci_drv_data *drv_data = host->drv_data;
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05302697 int width, i, ret = 0;
Will Newtonf95f3852011-01-02 01:11:59 -05002698 u32 fifo_size;
Thomas Abraham1c2215b2012-09-17 18:16:37 +00002699 int init_slots = 0;
Will Newtonf95f3852011-01-02 01:11:59 -05002700
Thomas Abrahamc91eab42012-09-17 18:16:40 +00002701 if (!host->pdata) {
2702 host->pdata = dw_mci_parse_dt(host);
2703 if (IS_ERR(host->pdata)) {
2704 dev_err(host->dev, "platform data not available\n");
2705 return -EINVAL;
2706 }
Will Newtonf95f3852011-01-02 01:11:59 -05002707 }
2708
Jaehoon Chung907abd52014-03-03 11:36:43 +09002709 if (host->pdata->num_slots > 1) {
Thomas Abraham4a909202012-09-17 18:16:35 +00002710 dev_err(host->dev,
Jaehoon Chung907abd52014-03-03 11:36:43 +09002711 "Platform data must supply num_slots.\n");
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05302712 return -ENODEV;
Will Newtonf95f3852011-01-02 01:11:59 -05002713 }
2714
Seungwon Jeon780f22a2012-11-28 19:26:03 +09002715 host->biu_clk = devm_clk_get(host->dev, "biu");
Thomas Abrahamf90a0612012-09-17 18:16:38 +00002716 if (IS_ERR(host->biu_clk)) {
2717 dev_dbg(host->dev, "biu clock not available\n");
2718 } else {
2719 ret = clk_prepare_enable(host->biu_clk);
2720 if (ret) {
2721 dev_err(host->dev, "failed to enable biu clock\n");
Thomas Abrahamf90a0612012-09-17 18:16:38 +00002722 return ret;
2723 }
Will Newtonf95f3852011-01-02 01:11:59 -05002724 }
2725
Seungwon Jeon780f22a2012-11-28 19:26:03 +09002726 host->ciu_clk = devm_clk_get(host->dev, "ciu");
Thomas Abrahamf90a0612012-09-17 18:16:38 +00002727 if (IS_ERR(host->ciu_clk)) {
2728 dev_dbg(host->dev, "ciu clock not available\n");
Doug Anderson3c6d89e2013-06-07 10:28:30 -07002729 host->bus_hz = host->pdata->bus_hz;
Thomas Abrahamf90a0612012-09-17 18:16:38 +00002730 } else {
2731 ret = clk_prepare_enable(host->ciu_clk);
2732 if (ret) {
2733 dev_err(host->dev, "failed to enable ciu clock\n");
Thomas Abrahamf90a0612012-09-17 18:16:38 +00002734 goto err_clk_biu;
2735 }
Thomas Abrahamf90a0612012-09-17 18:16:38 +00002736
Doug Anderson3c6d89e2013-06-07 10:28:30 -07002737 if (host->pdata->bus_hz) {
2738 ret = clk_set_rate(host->ciu_clk, host->pdata->bus_hz);
2739 if (ret)
2740 dev_warn(host->dev,
Jaehoon Chung612de4c2014-03-03 11:36:42 +09002741 "Unable to set bus rate to %uHz\n",
Doug Anderson3c6d89e2013-06-07 10:28:30 -07002742 host->pdata->bus_hz);
2743 }
Thomas Abrahamf90a0612012-09-17 18:16:38 +00002744 host->bus_hz = clk_get_rate(host->ciu_clk);
Doug Anderson3c6d89e2013-06-07 10:28:30 -07002745 }
Thomas Abrahamf90a0612012-09-17 18:16:38 +00002746
Jaehoon Chung612de4c2014-03-03 11:36:42 +09002747 if (!host->bus_hz) {
2748 dev_err(host->dev,
2749 "Platform data must supply bus speed\n");
2750 ret = -ENODEV;
2751 goto err_clk_ciu;
2752 }
2753
Yuvaraj Kumar C D002f0d52013-08-31 00:12:19 +09002754 if (drv_data && drv_data->init) {
2755 ret = drv_data->init(host);
2756 if (ret) {
2757 dev_err(host->dev,
2758 "implementation specific init failed\n");
2759 goto err_clk_ciu;
2760 }
2761 }
2762
James Hogancb27a842012-10-16 09:43:08 +01002763 if (drv_data && drv_data->setup_clock) {
2764 ret = drv_data->setup_clock(host);
Thomas Abraham800d78b2012-09-17 18:16:42 +00002765 if (ret) {
2766 dev_err(host->dev,
2767 "implementation specific clock setup failed\n");
2768 goto err_clk_ciu;
2769 }
2770 }
2771
Doug Anderson5c935162015-03-09 16:18:21 -07002772 setup_timer(&host->cmd11_timer,
2773 dw_mci_cmd11_timer, (unsigned long)host);
2774
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05302775 host->quirks = host->pdata->quirks;
Will Newtonf95f3852011-01-02 01:11:59 -05002776
2777 spin_lock_init(&host->lock);
Doug Andersonf8c58c12014-12-02 15:42:47 -08002778 spin_lock_init(&host->irq_lock);
Will Newtonf95f3852011-01-02 01:11:59 -05002779 INIT_LIST_HEAD(&host->queue);
2780
Will Newtonf95f3852011-01-02 01:11:59 -05002781 /*
2782 * Get the host data width - this assumes that HCON has been set with
2783 * the correct values.
2784 */
2785 i = (mci_readl(host, HCON) >> 7) & 0x7;
2786 if (!i) {
2787 host->push_data = dw_mci_push_data16;
2788 host->pull_data = dw_mci_pull_data16;
2789 width = 16;
2790 host->data_shift = 1;
2791 } else if (i == 2) {
2792 host->push_data = dw_mci_push_data64;
2793 host->pull_data = dw_mci_pull_data64;
2794 width = 64;
2795 host->data_shift = 3;
2796 } else {
2797 /* Check for a reserved value, and warn if it is */
2798 WARN((i != 1),
2799 "HCON reports a reserved host data width!\n"
2800 "Defaulting to 32-bit access.\n");
2801 host->push_data = dw_mci_push_data32;
2802 host->pull_data = dw_mci_pull_data32;
2803 width = 32;
2804 host->data_shift = 2;
2805 }
2806
2807 /* Reset all blocks */
Sonny Rao3a33a942014-08-04 18:19:50 -07002808 if (!dw_mci_ctrl_reset(host, SDMMC_CTRL_ALL_RESET_FLAGS))
Seungwon Jeon141a7122012-05-22 13:01:03 +09002809 return -ENODEV;
2810
2811 host->dma_ops = host->pdata->dma_ops;
2812 dw_mci_init_dma(host);
Will Newtonf95f3852011-01-02 01:11:59 -05002813
2814 /* Clear the interrupts for the host controller */
2815 mci_writel(host, RINTSTS, 0xFFFFFFFF);
2816 mci_writel(host, INTMASK, 0); /* disable all mmc interrupt first */
2817
2818 /* Put in max timeout */
2819 mci_writel(host, TMOUT, 0xFFFFFFFF);
2820
2821 /*
2822 * FIFO threshold settings RxMark = fifo_size / 2 - 1,
2823 * Tx Mark = fifo_size / 2 DMA Size = 8
2824 */
James Hoganb86d8252011-06-24 13:57:18 +01002825 if (!host->pdata->fifo_depth) {
2826 /*
2827 * Power-on value of RX_WMark is FIFO_DEPTH-1, but this may
2828 * have been overwritten by the bootloader, just like we're
2829 * about to do, so if you know the value for your hardware, you
2830 * should put it in the platform data.
2831 */
2832 fifo_size = mci_readl(host, FIFOTH);
Jaehoon Chung8234e862012-01-11 09:28:21 +00002833 fifo_size = 1 + ((fifo_size >> 16) & 0xfff);
James Hoganb86d8252011-06-24 13:57:18 +01002834 } else {
2835 fifo_size = host->pdata->fifo_depth;
2836 }
2837 host->fifo_depth = fifo_size;
Seungwon Jeon52426892013-08-31 00:13:42 +09002838 host->fifoth_val =
2839 SDMMC_SET_FIFOTH(0x2, fifo_size / 2 - 1, fifo_size / 2);
Jaehoon Chunge61cf112011-03-17 20:32:33 +09002840 mci_writel(host, FIFOTH, host->fifoth_val);
Will Newtonf95f3852011-01-02 01:11:59 -05002841
2842 /* disable clock to CIU */
2843 mci_writel(host, CLKENA, 0);
2844 mci_writel(host, CLKSRC, 0);
2845
James Hogan63008762013-03-12 10:43:54 +00002846 /*
2847 * In 2.40a spec, Data offset is changed.
2848 * Need to check the version-id and set data-offset for DATA register.
2849 */
2850 host->verid = SDMMC_GET_VERID(mci_readl(host, VERID));
2851 dev_info(host->dev, "Version ID is %04x\n", host->verid);
2852
2853 if (host->verid < DW_MMC_240A)
2854 host->data_offset = DATA_OFFSET;
2855 else
2856 host->data_offset = DATA_240A_OFFSET;
2857
Will Newtonf95f3852011-01-02 01:11:59 -05002858 tasklet_init(&host->tasklet, dw_mci_tasklet_func, (unsigned long)host);
Seungwon Jeon780f22a2012-11-28 19:26:03 +09002859 ret = devm_request_irq(host->dev, host->irq, dw_mci_interrupt,
2860 host->irq_flags, "dw-mci", host);
Will Newtonf95f3852011-01-02 01:11:59 -05002861 if (ret)
Doug Anderson6130e7a2014-10-14 09:33:09 -07002862 goto err_dmaunmap;
Will Newtonf95f3852011-01-02 01:11:59 -05002863
Will Newtonf95f3852011-01-02 01:11:59 -05002864 if (host->pdata->num_slots)
2865 host->num_slots = host->pdata->num_slots;
2866 else
2867 host->num_slots = ((mci_readl(host, HCON) >> 1) & 0x1F) + 1;
2868
Yuvaraj CD2da1d7f2012-10-08 14:29:51 +05302869 /*
Doug Andersonfa0c3282015-02-25 10:11:51 -08002870 * Enable interrupts for command done, data over, data empty,
Yuvaraj CD2da1d7f2012-10-08 14:29:51 +05302871 * receive ready and error such as transmit, receive timeout, crc error
2872 */
2873 mci_writel(host, RINTSTS, 0xFFFFFFFF);
2874 mci_writel(host, INTMASK, SDMMC_INT_CMD_DONE | SDMMC_INT_DATA_OVER |
2875 SDMMC_INT_TXDR | SDMMC_INT_RXDR |
Doug Andersonfa0c3282015-02-25 10:11:51 -08002876 DW_MCI_ERROR_FLAGS);
Yuvaraj CD2da1d7f2012-10-08 14:29:51 +05302877 mci_writel(host, CTRL, SDMMC_CTRL_INT_ENABLE); /* Enable mci interrupt */
2878
2879 dev_info(host->dev, "DW MMC controller at irq %d, "
2880 "%d bit host data width, "
2881 "%u deep fifo\n",
2882 host->irq, width, fifo_size);
2883
Will Newtonf95f3852011-01-02 01:11:59 -05002884 /* We need at least one slot to succeed */
2885 for (i = 0; i < host->num_slots; i++) {
2886 ret = dw_mci_init_slot(host, i);
Thomas Abraham1c2215b2012-09-17 18:16:37 +00002887 if (ret)
2888 dev_dbg(host->dev, "slot %d init failed\n", i);
2889 else
2890 init_slots++;
2891 }
2892
Doug Andersonfa0c3282015-02-25 10:11:51 -08002893 /* Now that slots are all setup, we can enable card detect */
2894 dw_mci_enable_cd(host);
2895
Thomas Abraham1c2215b2012-09-17 18:16:37 +00002896 if (init_slots) {
2897 dev_info(host->dev, "%d slots initialized\n", init_slots);
2898 } else {
2899 dev_dbg(host->dev, "attempted to initialize %d slots, "
2900 "but failed on all\n", host->num_slots);
Doug Anderson6130e7a2014-10-14 09:33:09 -07002901 goto err_dmaunmap;
Will Newtonf95f3852011-01-02 01:11:59 -05002902 }
2903
Will Newtonf95f3852011-01-02 01:11:59 -05002904 if (host->quirks & DW_MCI_QUIRK_IDMAC_DTO)
Thomas Abraham4a909202012-09-17 18:16:35 +00002905 dev_info(host->dev, "Internal DMAC interrupt fix enabled.\n");
Will Newtonf95f3852011-01-02 01:11:59 -05002906
2907 return 0;
2908
Will Newtonf95f3852011-01-02 01:11:59 -05002909err_dmaunmap:
2910 if (host->use_dma && host->dma_ops->exit)
2911 host->dma_ops->exit(host);
Thomas Abrahamf90a0612012-09-17 18:16:38 +00002912
2913err_clk_ciu:
Seungwon Jeon780f22a2012-11-28 19:26:03 +09002914 if (!IS_ERR(host->ciu_clk))
Thomas Abrahamf90a0612012-09-17 18:16:38 +00002915 clk_disable_unprepare(host->ciu_clk);
Seungwon Jeon780f22a2012-11-28 19:26:03 +09002916
Thomas Abrahamf90a0612012-09-17 18:16:38 +00002917err_clk_biu:
Seungwon Jeon780f22a2012-11-28 19:26:03 +09002918 if (!IS_ERR(host->biu_clk))
Thomas Abrahamf90a0612012-09-17 18:16:38 +00002919 clk_disable_unprepare(host->biu_clk);
Seungwon Jeon780f22a2012-11-28 19:26:03 +09002920
Will Newtonf95f3852011-01-02 01:11:59 -05002921 return ret;
2922}
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05302923EXPORT_SYMBOL(dw_mci_probe);
Will Newtonf95f3852011-01-02 01:11:59 -05002924
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05302925void dw_mci_remove(struct dw_mci *host)
Will Newtonf95f3852011-01-02 01:11:59 -05002926{
Will Newtonf95f3852011-01-02 01:11:59 -05002927 int i;
2928
2929 mci_writel(host, RINTSTS, 0xFFFFFFFF);
2930 mci_writel(host, INTMASK, 0); /* disable all mmc interrupt first */
2931
Will Newtonf95f3852011-01-02 01:11:59 -05002932 for (i = 0; i < host->num_slots; i++) {
Thomas Abraham4a909202012-09-17 18:16:35 +00002933 dev_dbg(host->dev, "remove slot %d\n", i);
Will Newtonf95f3852011-01-02 01:11:59 -05002934 if (host->slot[i])
2935 dw_mci_cleanup_slot(host->slot[i], i);
2936 }
2937
2938 /* disable clock to CIU */
2939 mci_writel(host, CLKENA, 0);
2940 mci_writel(host, CLKSRC, 0);
2941
Will Newtonf95f3852011-01-02 01:11:59 -05002942 if (host->use_dma && host->dma_ops->exit)
2943 host->dma_ops->exit(host);
2944
Thomas Abrahamf90a0612012-09-17 18:16:38 +00002945 if (!IS_ERR(host->ciu_clk))
2946 clk_disable_unprepare(host->ciu_clk);
Seungwon Jeon780f22a2012-11-28 19:26:03 +09002947
Thomas Abrahamf90a0612012-09-17 18:16:38 +00002948 if (!IS_ERR(host->biu_clk))
2949 clk_disable_unprepare(host->biu_clk);
Will Newtonf95f3852011-01-02 01:11:59 -05002950}
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05302951EXPORT_SYMBOL(dw_mci_remove);
2952
2953
Will Newtonf95f3852011-01-02 01:11:59 -05002954
Jaehoon Chung6fe88902011-12-08 19:23:03 +09002955#ifdef CONFIG_PM_SLEEP
Will Newtonf95f3852011-01-02 01:11:59 -05002956/*
2957 * TODO: we should probably disable the clock to the card in the suspend path.
2958 */
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05302959int dw_mci_suspend(struct dw_mci *host)
Will Newtonf95f3852011-01-02 01:11:59 -05002960{
Will Newtonf95f3852011-01-02 01:11:59 -05002961 return 0;
2962}
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05302963EXPORT_SYMBOL(dw_mci_suspend);
Will Newtonf95f3852011-01-02 01:11:59 -05002964
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05302965int dw_mci_resume(struct dw_mci *host)
Will Newtonf95f3852011-01-02 01:11:59 -05002966{
2967 int i, ret;
Will Newtonf95f3852011-01-02 01:11:59 -05002968
Sonny Rao3a33a942014-08-04 18:19:50 -07002969 if (!dw_mci_ctrl_reset(host, SDMMC_CTRL_ALL_RESET_FLAGS)) {
Jaehoon Chunge61cf112011-03-17 20:32:33 +09002970 ret = -ENODEV;
2971 return ret;
2972 }
2973
Jonathan Kliegman3bfe6192012-06-14 13:31:55 -04002974 if (host->use_dma && host->dma_ops->init)
Seungwon Jeon141a7122012-05-22 13:01:03 +09002975 host->dma_ops->init(host);
2976
Seungwon Jeon52426892013-08-31 00:13:42 +09002977 /*
2978 * Restore the initial value at FIFOTH register
2979 * And Invalidate the prev_blksz with zero
2980 */
Jaehoon Chunge61cf112011-03-17 20:32:33 +09002981 mci_writel(host, FIFOTH, host->fifoth_val);
Seungwon Jeon52426892013-08-31 00:13:42 +09002982 host->prev_blksz = 0;
Jaehoon Chunge61cf112011-03-17 20:32:33 +09002983
Doug Anderson2eb29442013-08-31 00:11:49 +09002984 /* Put in max timeout */
2985 mci_writel(host, TMOUT, 0xFFFFFFFF);
2986
Jaehoon Chunge61cf112011-03-17 20:32:33 +09002987 mci_writel(host, RINTSTS, 0xFFFFFFFF);
2988 mci_writel(host, INTMASK, SDMMC_INT_CMD_DONE | SDMMC_INT_DATA_OVER |
2989 SDMMC_INT_TXDR | SDMMC_INT_RXDR |
Doug Andersonfa0c3282015-02-25 10:11:51 -08002990 DW_MCI_ERROR_FLAGS);
Jaehoon Chunge61cf112011-03-17 20:32:33 +09002991 mci_writel(host, CTRL, SDMMC_CTRL_INT_ENABLE);
2992
Will Newtonf95f3852011-01-02 01:11:59 -05002993 for (i = 0; i < host->num_slots; i++) {
2994 struct dw_mci_slot *slot = host->slot[i];
2995 if (!slot)
2996 continue;
Abhilash Kesavanab269122012-11-19 10:26:21 +05302997 if (slot->mmc->pm_flags & MMC_PM_KEEP_POWER) {
2998 dw_mci_set_ios(slot->mmc, &slot->mmc->ios);
2999 dw_mci_setup_bus(slot, true);
3000 }
Will Newtonf95f3852011-01-02 01:11:59 -05003001 }
Doug Andersonfa0c3282015-02-25 10:11:51 -08003002
3003 /* Now that slots are all setup, we can enable card detect */
3004 dw_mci_enable_cd(host);
3005
Will Newtonf95f3852011-01-02 01:11:59 -05003006 return 0;
3007}
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05303008EXPORT_SYMBOL(dw_mci_resume);
Jaehoon Chung6fe88902011-12-08 19:23:03 +09003009#endif /* CONFIG_PM_SLEEP */
3010
Will Newtonf95f3852011-01-02 01:11:59 -05003011static int __init dw_mci_init(void)
3012{
Sachin Kamat8e1c4e42013-04-04 11:25:11 +05303013 pr_info("Synopsys Designware Multimedia Card Interface Driver\n");
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05303014 return 0;
Will Newtonf95f3852011-01-02 01:11:59 -05003015}
3016
3017static void __exit dw_mci_exit(void)
3018{
Will Newtonf95f3852011-01-02 01:11:59 -05003019}
3020
3021module_init(dw_mci_init);
3022module_exit(dw_mci_exit);
3023
3024MODULE_DESCRIPTION("DW Multimedia Card Interface driver");
3025MODULE_AUTHOR("NXP Semiconductor VietNam");
3026MODULE_AUTHOR("Imagination Technologies Ltd");
3027MODULE_LICENSE("GPL v2");