blob: 3c553dc225792577e557a4623784473b98cd2790 [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 | \
Doug Anderson7a3c5672015-03-10 08:48:10 -070047 SDMMC_INT_EBE | SDMMC_INT_HLE)
Will Newtonf95f3852011-01-02 01:11:59 -050048#define DW_MCI_CMD_ERROR_FLAGS (SDMMC_INT_RTO | SDMMC_INT_RCRC | \
Doug Anderson7a3c5672015-03-10 08:48:10 -070049 SDMMC_INT_RESP_ERR | SDMMC_INT_HLE)
Will Newtonf95f3852011-01-02 01:11:59 -050050#define DW_MCI_ERROR_FLAGS (DW_MCI_DATA_ERROR_FLAGS | \
Doug Anderson7a3c5672015-03-10 08:48:10 -070051 DW_MCI_CMD_ERROR_FLAGS)
Will Newtonf95f3852011-01-02 01:11:59 -050052#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 */
Jaehoon Chung72e83572016-11-17 16:40:35 +090057#define DW_MCI_FREQ_MIN 100000 /* unit: HZ */
Seungwon Jeon1f44a2a2013-08-31 00:13:31 +090058
Joonyoung Shimfc79a4d2013-04-26 15:35:22 +090059#define IDMAC_INT_CLR (SDMMC_IDMAC_INT_AI | SDMMC_IDMAC_INT_NI | \
60 SDMMC_IDMAC_INT_CES | SDMMC_IDMAC_INT_DU | \
61 SDMMC_IDMAC_INT_FBE | SDMMC_IDMAC_INT_RI | \
62 SDMMC_IDMAC_INT_TI)
63
Shawn Lincc190d42016-09-02 12:14:39 +080064#define DESC_RING_BUF_SZ PAGE_SIZE
65
Prabu Thangamuthu69d99fd2014-10-20 07:12:33 +000066struct idmac_desc_64addr {
67 u32 des0; /* Control Descriptor */
68
69 u32 des1; /* Reserved */
70
71 u32 des2; /*Buffer sizes */
72#define IDMAC_64ADDR_SET_BUFFER1_SIZE(d, s) \
Ben Dooks6687c422015-03-25 11:27:51 +000073 ((d)->des2 = ((d)->des2 & cpu_to_le32(0x03ffe000)) | \
74 ((cpu_to_le32(s)) & cpu_to_le32(0x1fff)))
Prabu Thangamuthu69d99fd2014-10-20 07:12:33 +000075
76 u32 des3; /* Reserved */
77
78 u32 des4; /* Lower 32-bits of Buffer Address Pointer 1*/
79 u32 des5; /* Upper 32-bits of Buffer Address Pointer 1*/
80
81 u32 des6; /* Lower 32-bits of Next Descriptor Address */
82 u32 des7; /* Upper 32-bits of Next Descriptor Address */
83};
84
Will Newtonf95f3852011-01-02 01:11:59 -050085struct idmac_desc {
Ben Dooks6687c422015-03-25 11:27:51 +000086 __le32 des0; /* Control Descriptor */
Will Newtonf95f3852011-01-02 01:11:59 -050087#define IDMAC_DES0_DIC BIT(1)
88#define IDMAC_DES0_LD BIT(2)
89#define IDMAC_DES0_FD BIT(3)
90#define IDMAC_DES0_CH BIT(4)
91#define IDMAC_DES0_ER BIT(5)
92#define IDMAC_DES0_CES BIT(30)
93#define IDMAC_DES0_OWN BIT(31)
94
Ben Dooks6687c422015-03-25 11:27:51 +000095 __le32 des1; /* Buffer sizes */
Will Newtonf95f3852011-01-02 01:11:59 -050096#define IDMAC_SET_BUFFER1_SIZE(d, s) \
Ben Dookse5306c32016-06-07 14:37:19 +010097 ((d)->des1 = ((d)->des1 & cpu_to_le32(0x03ffe000)) | (cpu_to_le32((s) & 0x1fff)))
Will Newtonf95f3852011-01-02 01:11:59 -050098
Ben Dooks6687c422015-03-25 11:27:51 +000099 __le32 des2; /* buffer 1 physical address */
Will Newtonf95f3852011-01-02 01:11:59 -0500100
Ben Dooks6687c422015-03-25 11:27:51 +0000101 __le32 des3; /* buffer 2 physical address */
Will Newtonf95f3852011-01-02 01:11:59 -0500102};
Alexey Brodkin5959b322015-06-25 11:25:07 +0300103
104/* Each descriptor can transfer up to 4KB of data in chained mode */
105#define DW_MCI_DESC_DATA_LENGTH 0x1000
Will Newtonf95f3852011-01-02 01:11:59 -0500106
Sonny Rao3a33a942014-08-04 18:19:50 -0700107static bool dw_mci_reset(struct dw_mci *host);
Sonny Rao536f6b92014-10-16 09:58:05 -0700108static bool dw_mci_ctrl_reset(struct dw_mci *host, u32 reset);
Doug Anderson0bdbd0e2015-02-20 12:31:56 -0800109static int dw_mci_card_busy(struct mmc_host *mmc);
Shawn Lin56f69112016-05-27 14:37:05 +0800110static int dw_mci_get_cd(struct mmc_host *mmc);
Seungwon Jeon31bff452013-08-31 00:14:23 +0900111
Will Newtonf95f3852011-01-02 01:11:59 -0500112#if defined(CONFIG_DEBUG_FS)
113static int dw_mci_req_show(struct seq_file *s, void *v)
114{
115 struct dw_mci_slot *slot = s->private;
116 struct mmc_request *mrq;
117 struct mmc_command *cmd;
118 struct mmc_command *stop;
119 struct mmc_data *data;
120
121 /* Make sure we get a consistent snapshot */
122 spin_lock_bh(&slot->host->lock);
123 mrq = slot->mrq;
124
125 if (mrq) {
126 cmd = mrq->cmd;
127 data = mrq->data;
128 stop = mrq->stop;
129
130 if (cmd)
131 seq_printf(s,
132 "CMD%u(0x%x) flg %x rsp %x %x %x %x err %d\n",
133 cmd->opcode, cmd->arg, cmd->flags,
134 cmd->resp[0], cmd->resp[1], cmd->resp[2],
135 cmd->resp[2], cmd->error);
136 if (data)
137 seq_printf(s, "DATA %u / %u * %u flg %x err %d\n",
138 data->bytes_xfered, data->blocks,
139 data->blksz, data->flags, data->error);
140 if (stop)
141 seq_printf(s,
142 "CMD%u(0x%x) flg %x rsp %x %x %x %x err %d\n",
143 stop->opcode, stop->arg, stop->flags,
144 stop->resp[0], stop->resp[1], stop->resp[2],
145 stop->resp[2], stop->error);
146 }
147
148 spin_unlock_bh(&slot->host->lock);
149
150 return 0;
151}
152
153static int dw_mci_req_open(struct inode *inode, struct file *file)
154{
155 return single_open(file, dw_mci_req_show, inode->i_private);
156}
157
158static const struct file_operations dw_mci_req_fops = {
159 .owner = THIS_MODULE,
160 .open = dw_mci_req_open,
161 .read = seq_read,
162 .llseek = seq_lseek,
163 .release = single_release,
164};
165
166static int dw_mci_regs_show(struct seq_file *s, void *v)
167{
Jaehoon Chung21657ebd2016-11-17 16:40:33 +0900168 struct dw_mci *host = s->private;
169
170 seq_printf(s, "STATUS:\t0x%08x\n", mci_readl(host, STATUS));
171 seq_printf(s, "RINTSTS:\t0x%08x\n", mci_readl(host, RINTSTS));
172 seq_printf(s, "CMD:\t0x%08x\n", mci_readl(host, CMD));
173 seq_printf(s, "CTRL:\t0x%08x\n", mci_readl(host, CTRL));
174 seq_printf(s, "INTMASK:\t0x%08x\n", mci_readl(host, INTMASK));
175 seq_printf(s, "CLKENA:\t0x%08x\n", mci_readl(host, CLKENA));
Will Newtonf95f3852011-01-02 01:11:59 -0500176
177 return 0;
178}
179
180static int dw_mci_regs_open(struct inode *inode, struct file *file)
181{
182 return single_open(file, dw_mci_regs_show, inode->i_private);
183}
184
185static const struct file_operations dw_mci_regs_fops = {
186 .owner = THIS_MODULE,
187 .open = dw_mci_regs_open,
188 .read = seq_read,
189 .llseek = seq_lseek,
190 .release = single_release,
191};
192
193static void dw_mci_init_debugfs(struct dw_mci_slot *slot)
194{
195 struct mmc_host *mmc = slot->mmc;
196 struct dw_mci *host = slot->host;
197 struct dentry *root;
198 struct dentry *node;
199
200 root = mmc->debugfs_root;
201 if (!root)
202 return;
203
204 node = debugfs_create_file("regs", S_IRUSR, root, host,
205 &dw_mci_regs_fops);
206 if (!node)
207 goto err;
208
209 node = debugfs_create_file("req", S_IRUSR, root, slot,
210 &dw_mci_req_fops);
211 if (!node)
212 goto err;
213
214 node = debugfs_create_u32("state", S_IRUSR, root, (u32 *)&host->state);
215 if (!node)
216 goto err;
217
218 node = debugfs_create_x32("pending_events", S_IRUSR, root,
219 (u32 *)&host->pending_events);
220 if (!node)
221 goto err;
222
223 node = debugfs_create_x32("completed_events", S_IRUSR, root,
224 (u32 *)&host->completed_events);
225 if (!node)
226 goto err;
227
228 return;
229
230err:
231 dev_err(&mmc->class_dev, "failed to initialize debugfs for slot\n");
232}
233#endif /* defined(CONFIG_DEBUG_FS) */
234
Doug Anderson01730552014-08-22 19:17:51 +0530235static void mci_send_cmd(struct dw_mci_slot *slot, u32 cmd, u32 arg);
236
Will Newtonf95f3852011-01-02 01:11:59 -0500237static u32 dw_mci_prepare_command(struct mmc_host *mmc, struct mmc_command *cmd)
238{
Thomas Abraham800d78b2012-09-17 18:16:42 +0000239 struct dw_mci_slot *slot = mmc_priv(mmc);
Doug Anderson01730552014-08-22 19:17:51 +0530240 struct dw_mci *host = slot->host;
Will Newtonf95f3852011-01-02 01:11:59 -0500241 u32 cmdr;
Will Newtonf95f3852011-01-02 01:11:59 -0500242
Shawn Lin0e3a22c2015-08-03 15:07:21 +0800243 cmd->error = -EINPROGRESS;
Will Newtonf95f3852011-01-02 01:11:59 -0500244 cmdr = cmd->opcode;
245
Seungwon Jeon90c21432013-08-31 00:14:05 +0900246 if (cmd->opcode == MMC_STOP_TRANSMISSION ||
247 cmd->opcode == MMC_GO_IDLE_STATE ||
248 cmd->opcode == MMC_GO_INACTIVE_STATE ||
249 (cmd->opcode == SD_IO_RW_DIRECT &&
250 ((cmd->arg >> 9) & 0x1FFFF) == SDIO_CCCR_ABORT))
Will Newtonf95f3852011-01-02 01:11:59 -0500251 cmdr |= SDMMC_CMD_STOP;
Jaehoon Chung4a1b27a2014-03-03 11:36:44 +0900252 else if (cmd->opcode != MMC_SEND_STATUS && cmd->data)
253 cmdr |= SDMMC_CMD_PRV_DAT_WAIT;
Will Newtonf95f3852011-01-02 01:11:59 -0500254
Doug Anderson01730552014-08-22 19:17:51 +0530255 if (cmd->opcode == SD_SWITCH_VOLTAGE) {
256 u32 clk_en_a;
257
258 /* Special bit makes CMD11 not die */
259 cmdr |= SDMMC_CMD_VOLT_SWITCH;
260
261 /* Change state to continue to handle CMD11 weirdness */
262 WARN_ON(slot->host->state != STATE_SENDING_CMD);
263 slot->host->state = STATE_SENDING_CMD11;
264
265 /*
266 * We need to disable low power mode (automatic clock stop)
267 * while doing voltage switch so we don't confuse the card,
268 * since stopping the clock is a specific part of the UHS
269 * voltage change dance.
270 *
271 * Note that low power mode (SDMMC_CLKEN_LOW_PWR) will be
272 * unconditionally turned back on in dw_mci_setup_bus() if it's
273 * ever called with a non-zero clock. That shouldn't happen
274 * until the voltage change is all done.
275 */
276 clk_en_a = mci_readl(host, CLKENA);
277 clk_en_a &= ~(SDMMC_CLKEN_LOW_PWR << slot->id);
278 mci_writel(host, CLKENA, clk_en_a);
279 mci_send_cmd(slot, SDMMC_CMD_UPD_CLK |
280 SDMMC_CMD_PRV_DAT_WAIT, 0);
281 }
282
Will Newtonf95f3852011-01-02 01:11:59 -0500283 if (cmd->flags & MMC_RSP_PRESENT) {
284 /* We expect a response, so set this bit */
285 cmdr |= SDMMC_CMD_RESP_EXP;
286 if (cmd->flags & MMC_RSP_136)
287 cmdr |= SDMMC_CMD_RESP_LONG;
288 }
289
290 if (cmd->flags & MMC_RSP_CRC)
291 cmdr |= SDMMC_CMD_RESP_CRC;
292
Jaehoon Chung0349c082016-11-17 16:40:39 +0900293 if (cmd->data) {
Will Newtonf95f3852011-01-02 01:11:59 -0500294 cmdr |= SDMMC_CMD_DAT_EXP;
Jaehoon Chung0349c082016-11-17 16:40:39 +0900295 if (cmd->data->flags & MMC_DATA_WRITE)
Will Newtonf95f3852011-01-02 01:11:59 -0500296 cmdr |= SDMMC_CMD_DAT_WR;
297 }
298
Jaehoon Chungaaaaeb72016-01-21 11:01:06 +0900299 if (!test_bit(DW_MMC_CARD_NO_USE_HOLD, &slot->flags))
300 cmdr |= SDMMC_CMD_USE_HOLD_REG;
Thomas Abraham800d78b2012-09-17 18:16:42 +0000301
Will Newtonf95f3852011-01-02 01:11:59 -0500302 return cmdr;
303}
304
Seungwon Jeon90c21432013-08-31 00:14:05 +0900305static u32 dw_mci_prep_stop_abort(struct dw_mci *host, struct mmc_command *cmd)
306{
307 struct mmc_command *stop;
308 u32 cmdr;
309
310 if (!cmd->data)
311 return 0;
312
313 stop = &host->stop_abort;
314 cmdr = cmd->opcode;
315 memset(stop, 0, sizeof(struct mmc_command));
316
317 if (cmdr == MMC_READ_SINGLE_BLOCK ||
318 cmdr == MMC_READ_MULTIPLE_BLOCK ||
319 cmdr == MMC_WRITE_BLOCK ||
Ulf Hansson6c2c6502014-12-01 16:13:39 +0100320 cmdr == MMC_WRITE_MULTIPLE_BLOCK ||
321 cmdr == MMC_SEND_TUNING_BLOCK ||
322 cmdr == MMC_SEND_TUNING_BLOCK_HS200) {
Seungwon Jeon90c21432013-08-31 00:14:05 +0900323 stop->opcode = MMC_STOP_TRANSMISSION;
324 stop->arg = 0;
325 stop->flags = MMC_RSP_R1B | MMC_CMD_AC;
326 } else if (cmdr == SD_IO_RW_EXTENDED) {
327 stop->opcode = SD_IO_RW_DIRECT;
328 stop->arg |= (1 << 31) | (0 << 28) | (SDIO_CCCR_ABORT << 9) |
329 ((cmd->arg >> 28) & 0x7);
330 stop->flags = MMC_RSP_SPI_R5 | MMC_RSP_R5 | MMC_CMD_AC;
331 } else {
332 return 0;
333 }
334
335 cmdr = stop->opcode | SDMMC_CMD_STOP |
336 SDMMC_CMD_RESP_CRC | SDMMC_CMD_RESP_EXP;
337
Jaehoon Chung8c005b42016-11-17 16:40:36 +0900338 if (!test_bit(DW_MMC_CARD_NO_USE_HOLD, &host->cur_slot->flags))
339 cmdr |= SDMMC_CMD_USE_HOLD_REG;
340
Seungwon Jeon90c21432013-08-31 00:14:05 +0900341 return cmdr;
342}
343
Doug Anderson0bdbd0e2015-02-20 12:31:56 -0800344static void dw_mci_wait_while_busy(struct dw_mci *host, u32 cmd_flags)
345{
346 unsigned long timeout = jiffies + msecs_to_jiffies(500);
347
348 /*
349 * Databook says that before issuing a new data transfer command
350 * we need to check to see if the card is busy. Data transfer commands
351 * all have SDMMC_CMD_PRV_DAT_WAIT set, so we'll key off that.
352 *
353 * ...also allow sending for SDMMC_CMD_VOLT_SWITCH where busy is
354 * expected.
355 */
356 if ((cmd_flags & SDMMC_CMD_PRV_DAT_WAIT) &&
357 !(cmd_flags & SDMMC_CMD_VOLT_SWITCH)) {
358 while (mci_readl(host, STATUS) & SDMMC_STATUS_BUSY) {
359 if (time_after(jiffies, timeout)) {
360 /* Command will fail; we'll pass error then */
361 dev_err(host->dev, "Busy; trying anyway\n");
362 break;
363 }
364 udelay(10);
365 }
366 }
367}
368
Will Newtonf95f3852011-01-02 01:11:59 -0500369static void dw_mci_start_command(struct dw_mci *host,
370 struct mmc_command *cmd, u32 cmd_flags)
371{
372 host->cmd = cmd;
Thomas Abraham4a909202012-09-17 18:16:35 +0000373 dev_vdbg(host->dev,
Will Newtonf95f3852011-01-02 01:11:59 -0500374 "start command: ARGR=0x%08x CMDR=0x%08x\n",
375 cmd->arg, cmd_flags);
376
377 mci_writel(host, CMDARG, cmd->arg);
Shawn Lin0e3a22c2015-08-03 15:07:21 +0800378 wmb(); /* drain writebuffer */
Doug Anderson0bdbd0e2015-02-20 12:31:56 -0800379 dw_mci_wait_while_busy(host, cmd_flags);
Will Newtonf95f3852011-01-02 01:11:59 -0500380
381 mci_writel(host, CMD, cmd_flags | SDMMC_CMD_START);
382}
383
Seungwon Jeon90c21432013-08-31 00:14:05 +0900384static inline void send_stop_abort(struct dw_mci *host, struct mmc_data *data)
Will Newtonf95f3852011-01-02 01:11:59 -0500385{
Jaehoon Chunge13c3c02016-11-17 16:40:37 +0900386 struct mmc_command *stop = &host->stop_abort;
Shawn Lin0e3a22c2015-08-03 15:07:21 +0800387
Seungwon Jeon90c21432013-08-31 00:14:05 +0900388 dw_mci_start_command(host, stop, host->stop_cmdr);
Will Newtonf95f3852011-01-02 01:11:59 -0500389}
390
391/* DMA interface functions */
392static void dw_mci_stop_dma(struct dw_mci *host)
393{
James Hogan03e8cb52011-06-29 09:28:43 +0100394 if (host->using_dma) {
Will Newtonf95f3852011-01-02 01:11:59 -0500395 host->dma_ops->stop(host);
396 host->dma_ops->cleanup(host);
Will Newtonf95f3852011-01-02 01:11:59 -0500397 }
Seungwon Jeonaa50f252013-08-31 00:14:38 +0900398
399 /* Data transfer was stopped by the interrupt handler */
400 set_bit(EVENT_XFER_COMPLETE, &host->pending_events);
Will Newtonf95f3852011-01-02 01:11:59 -0500401}
402
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900403static int dw_mci_get_dma_dir(struct mmc_data *data)
404{
405 if (data->flags & MMC_DATA_WRITE)
406 return DMA_TO_DEVICE;
407 else
408 return DMA_FROM_DEVICE;
409}
410
Will Newtonf95f3852011-01-02 01:11:59 -0500411static void dw_mci_dma_cleanup(struct dw_mci *host)
412{
413 struct mmc_data *data = host->data;
414
Jaehoon Chunga4cc7eb2016-11-17 16:40:38 +0900415 if (data && data->host_cookie == COOKIE_MAPPED) {
416 dma_unmap_sg(host->dev,
417 data->sg,
418 data->sg_len,
419 dw_mci_get_dma_dir(data));
420 data->host_cookie = COOKIE_UNMAPPED;
421 }
Will Newtonf95f3852011-01-02 01:11:59 -0500422}
423
Seungwon Jeon5ce9d962013-08-31 00:14:33 +0900424static void dw_mci_idmac_reset(struct dw_mci *host)
425{
426 u32 bmod = mci_readl(host, BMOD);
427 /* Software reset of DMA */
428 bmod |= SDMMC_IDMAC_SWRESET;
429 mci_writel(host, BMOD, bmod);
430}
431
Will Newtonf95f3852011-01-02 01:11:59 -0500432static void dw_mci_idmac_stop_dma(struct dw_mci *host)
433{
434 u32 temp;
435
436 /* Disable and reset the IDMAC interface */
437 temp = mci_readl(host, CTRL);
438 temp &= ~SDMMC_CTRL_USE_IDMAC;
439 temp |= SDMMC_CTRL_DMA_RESET;
440 mci_writel(host, CTRL, temp);
441
442 /* Stop the IDMAC running */
443 temp = mci_readl(host, BMOD);
Jaehoon Chunga5289a42011-02-25 11:08:13 +0900444 temp &= ~(SDMMC_IDMAC_ENABLE | SDMMC_IDMAC_FB);
Seungwon Jeon5ce9d962013-08-31 00:14:33 +0900445 temp |= SDMMC_IDMAC_SWRESET;
Will Newtonf95f3852011-01-02 01:11:59 -0500446 mci_writel(host, BMOD, temp);
447}
448
Shawn Lin3fc7eae2015-09-16 14:41:23 +0800449static void dw_mci_dmac_complete_dma(void *arg)
Will Newtonf95f3852011-01-02 01:11:59 -0500450{
Shawn Lin3fc7eae2015-09-16 14:41:23 +0800451 struct dw_mci *host = arg;
Will Newtonf95f3852011-01-02 01:11:59 -0500452 struct mmc_data *data = host->data;
453
Thomas Abraham4a909202012-09-17 18:16:35 +0000454 dev_vdbg(host->dev, "DMA complete\n");
Will Newtonf95f3852011-01-02 01:11:59 -0500455
Shawn Lin3fc7eae2015-09-16 14:41:23 +0800456 if ((host->use_dma == TRANS_MODE_EDMAC) &&
457 data && (data->flags & MMC_DATA_READ))
458 /* Invalidate cache after read */
459 dma_sync_sg_for_cpu(mmc_dev(host->cur_slot->mmc),
460 data->sg,
461 data->sg_len,
462 DMA_FROM_DEVICE);
463
Will Newtonf95f3852011-01-02 01:11:59 -0500464 host->dma_ops->cleanup(host);
465
466 /*
467 * If the card was removed, data will be NULL. No point in trying to
468 * send the stop command or waiting for NBUSY in this case.
469 */
470 if (data) {
471 set_bit(EVENT_XFER_COMPLETE, &host->pending_events);
472 tasklet_schedule(&host->tasklet);
473 }
474}
475
Will Newtonf95f3852011-01-02 01:11:59 -0500476static int dw_mci_idmac_init(struct dw_mci *host)
477{
Seungwon Jeon897b69e2012-09-19 13:58:31 +0800478 int i;
Will Newtonf95f3852011-01-02 01:11:59 -0500479
Prabu Thangamuthu69d99fd2014-10-20 07:12:33 +0000480 if (host->dma_64bit_address == 1) {
481 struct idmac_desc_64addr *p;
482 /* Number of descriptors in the ring buffer */
Shawn Lincc190d42016-09-02 12:14:39 +0800483 host->ring_size =
484 DESC_RING_BUF_SZ / sizeof(struct idmac_desc_64addr);
Will Newtonf95f3852011-01-02 01:11:59 -0500485
Prabu Thangamuthu69d99fd2014-10-20 07:12:33 +0000486 /* Forward link the descriptor list */
487 for (i = 0, p = host->sg_cpu; i < host->ring_size - 1;
488 i++, p++) {
489 p->des6 = (host->sg_dma +
490 (sizeof(struct idmac_desc_64addr) *
491 (i + 1))) & 0xffffffff;
Will Newtonf95f3852011-01-02 01:11:59 -0500492
Prabu Thangamuthu69d99fd2014-10-20 07:12:33 +0000493 p->des7 = (u64)(host->sg_dma +
494 (sizeof(struct idmac_desc_64addr) *
495 (i + 1))) >> 32;
496 /* Initialize reserved and buffer size fields to "0" */
497 p->des1 = 0;
498 p->des2 = 0;
499 p->des3 = 0;
500 }
501
502 /* Set the last descriptor as the end-of-ring descriptor */
503 p->des6 = host->sg_dma & 0xffffffff;
504 p->des7 = (u64)host->sg_dma >> 32;
505 p->des0 = IDMAC_DES0_ER;
506
507 } else {
508 struct idmac_desc *p;
509 /* Number of descriptors in the ring buffer */
Shawn Lincc190d42016-09-02 12:14:39 +0800510 host->ring_size =
511 DESC_RING_BUF_SZ / sizeof(struct idmac_desc);
Prabu Thangamuthu69d99fd2014-10-20 07:12:33 +0000512
513 /* Forward link the descriptor list */
Shawn Lin0e3a22c2015-08-03 15:07:21 +0800514 for (i = 0, p = host->sg_cpu;
515 i < host->ring_size - 1;
516 i++, p++) {
Ben Dooks6687c422015-03-25 11:27:51 +0000517 p->des3 = cpu_to_le32(host->sg_dma +
518 (sizeof(struct idmac_desc) * (i + 1)));
Zhangfei Gao4b244722015-04-30 22:16:28 +0800519 p->des1 = 0;
520 }
Prabu Thangamuthu69d99fd2014-10-20 07:12:33 +0000521
522 /* Set the last descriptor as the end-of-ring descriptor */
Ben Dooks6687c422015-03-25 11:27:51 +0000523 p->des3 = cpu_to_le32(host->sg_dma);
524 p->des0 = cpu_to_le32(IDMAC_DES0_ER);
Prabu Thangamuthu69d99fd2014-10-20 07:12:33 +0000525 }
Will Newtonf95f3852011-01-02 01:11:59 -0500526
Seungwon Jeon5ce9d962013-08-31 00:14:33 +0900527 dw_mci_idmac_reset(host);
Seungwon Jeon141a7122012-05-22 13:01:03 +0900528
Prabu Thangamuthu69d99fd2014-10-20 07:12:33 +0000529 if (host->dma_64bit_address == 1) {
530 /* Mask out interrupts - get Tx & Rx complete only */
531 mci_writel(host, IDSTS64, IDMAC_INT_CLR);
532 mci_writel(host, IDINTEN64, SDMMC_IDMAC_INT_NI |
533 SDMMC_IDMAC_INT_RI | SDMMC_IDMAC_INT_TI);
Will Newtonf95f3852011-01-02 01:11:59 -0500534
Prabu Thangamuthu69d99fd2014-10-20 07:12:33 +0000535 /* Set the descriptor base address */
536 mci_writel(host, DBADDRL, host->sg_dma & 0xffffffff);
537 mci_writel(host, DBADDRU, (u64)host->sg_dma >> 32);
538
539 } else {
540 /* Mask out interrupts - get Tx & Rx complete only */
541 mci_writel(host, IDSTS, IDMAC_INT_CLR);
542 mci_writel(host, IDINTEN, SDMMC_IDMAC_INT_NI |
543 SDMMC_IDMAC_INT_RI | SDMMC_IDMAC_INT_TI);
544
545 /* Set the descriptor base address */
546 mci_writel(host, DBADDR, host->sg_dma);
547 }
548
Will Newtonf95f3852011-01-02 01:11:59 -0500549 return 0;
550}
551
Shawn Lin3b2a0672016-09-02 12:14:37 +0800552static inline int dw_mci_prepare_desc64(struct dw_mci *host,
553 struct mmc_data *data,
554 unsigned int sg_len)
555{
556 unsigned int desc_len;
557 struct idmac_desc_64addr *desc_first, *desc_last, *desc;
558 unsigned long timeout;
559 int i;
560
561 desc_first = desc_last = desc = host->sg_cpu;
562
563 for (i = 0; i < sg_len; i++) {
564 unsigned int length = sg_dma_len(&data->sg[i]);
565
566 u64 mem_addr = sg_dma_address(&data->sg[i]);
567
568 for ( ; length ; desc++) {
569 desc_len = (length <= DW_MCI_DESC_DATA_LENGTH) ?
570 length : DW_MCI_DESC_DATA_LENGTH;
571
572 length -= desc_len;
573
574 /*
575 * Wait for the former clear OWN bit operation
576 * of IDMAC to make sure that this descriptor
577 * isn't still owned by IDMAC as IDMAC's write
578 * ops and CPU's read ops are asynchronous.
579 */
580 timeout = jiffies + msecs_to_jiffies(100);
581 while (readl(&desc->des0) & IDMAC_DES0_OWN) {
582 if (time_after(jiffies, timeout))
583 goto err_own_bit;
584 udelay(10);
585 }
586
587 /*
588 * Set the OWN bit and disable interrupts
589 * for this descriptor
590 */
591 desc->des0 = IDMAC_DES0_OWN | IDMAC_DES0_DIC |
592 IDMAC_DES0_CH;
593
594 /* Buffer length */
595 IDMAC_64ADDR_SET_BUFFER1_SIZE(desc, desc_len);
596
597 /* Physical address to DMA to/from */
598 desc->des4 = mem_addr & 0xffffffff;
599 desc->des5 = mem_addr >> 32;
600
601 /* Update physical address for the next desc */
602 mem_addr += desc_len;
603
604 /* Save pointer to the last descriptor */
605 desc_last = desc;
606 }
607 }
608
609 /* Set first descriptor */
610 desc_first->des0 |= IDMAC_DES0_FD;
611
612 /* Set last descriptor */
613 desc_last->des0 &= ~(IDMAC_DES0_CH | IDMAC_DES0_DIC);
614 desc_last->des0 |= IDMAC_DES0_LD;
615
616 return 0;
617err_own_bit:
618 /* restore the descriptor chain as it's polluted */
Colin Ian King26be9d72016-11-16 18:55:01 +0000619 dev_dbg(host->dev, "descriptor is still owned by IDMAC.\n");
Shawn Lincc190d42016-09-02 12:14:39 +0800620 memset(host->sg_cpu, 0, DESC_RING_BUF_SZ);
Shawn Lin3b2a0672016-09-02 12:14:37 +0800621 dw_mci_idmac_init(host);
622 return -EINVAL;
623}
624
625
626static inline int dw_mci_prepare_desc32(struct dw_mci *host,
627 struct mmc_data *data,
628 unsigned int sg_len)
629{
630 unsigned int desc_len;
631 struct idmac_desc *desc_first, *desc_last, *desc;
632 unsigned long timeout;
633 int i;
634
635 desc_first = desc_last = desc = host->sg_cpu;
636
637 for (i = 0; i < sg_len; i++) {
638 unsigned int length = sg_dma_len(&data->sg[i]);
639
640 u32 mem_addr = sg_dma_address(&data->sg[i]);
641
642 for ( ; length ; desc++) {
643 desc_len = (length <= DW_MCI_DESC_DATA_LENGTH) ?
644 length : DW_MCI_DESC_DATA_LENGTH;
645
646 length -= desc_len;
647
648 /*
649 * Wait for the former clear OWN bit operation
650 * of IDMAC to make sure that this descriptor
651 * isn't still owned by IDMAC as IDMAC's write
652 * ops and CPU's read ops are asynchronous.
653 */
654 timeout = jiffies + msecs_to_jiffies(100);
655 while (readl(&desc->des0) &
656 cpu_to_le32(IDMAC_DES0_OWN)) {
657 if (time_after(jiffies, timeout))
658 goto err_own_bit;
659 udelay(10);
660 }
661
662 /*
663 * Set the OWN bit and disable interrupts
664 * for this descriptor
665 */
666 desc->des0 = cpu_to_le32(IDMAC_DES0_OWN |
667 IDMAC_DES0_DIC |
668 IDMAC_DES0_CH);
669
670 /* Buffer length */
671 IDMAC_SET_BUFFER1_SIZE(desc, desc_len);
672
673 /* Physical address to DMA to/from */
674 desc->des2 = cpu_to_le32(mem_addr);
675
676 /* Update physical address for the next desc */
677 mem_addr += desc_len;
678
679 /* Save pointer to the last descriptor */
680 desc_last = desc;
681 }
682 }
683
684 /* Set first descriptor */
685 desc_first->des0 |= cpu_to_le32(IDMAC_DES0_FD);
686
687 /* Set last descriptor */
688 desc_last->des0 &= cpu_to_le32(~(IDMAC_DES0_CH |
689 IDMAC_DES0_DIC));
690 desc_last->des0 |= cpu_to_le32(IDMAC_DES0_LD);
691
692 return 0;
693err_own_bit:
694 /* restore the descriptor chain as it's polluted */
Colin Ian King26be9d72016-11-16 18:55:01 +0000695 dev_dbg(host->dev, "descriptor is still owned by IDMAC.\n");
Shawn Lincc190d42016-09-02 12:14:39 +0800696 memset(host->sg_cpu, 0, DESC_RING_BUF_SZ);
Shawn Lin3b2a0672016-09-02 12:14:37 +0800697 dw_mci_idmac_init(host);
698 return -EINVAL;
699}
700
701static int dw_mci_idmac_start_dma(struct dw_mci *host, unsigned int sg_len)
702{
703 u32 temp;
704 int ret;
705
706 if (host->dma_64bit_address == 1)
707 ret = dw_mci_prepare_desc64(host, host->data, sg_len);
708 else
709 ret = dw_mci_prepare_desc32(host, host->data, sg_len);
710
711 if (ret)
712 goto out;
713
714 /* drain writebuffer */
715 wmb();
716
717 /* Make sure to reset DMA in case we did PIO before this */
718 dw_mci_ctrl_reset(host, SDMMC_CTRL_DMA_RESET);
719 dw_mci_idmac_reset(host);
720
721 /* Select IDMAC interface */
722 temp = mci_readl(host, CTRL);
723 temp |= SDMMC_CTRL_USE_IDMAC;
724 mci_writel(host, CTRL, temp);
725
726 /* drain writebuffer */
727 wmb();
728
729 /* Enable the IDMAC */
730 temp = mci_readl(host, BMOD);
731 temp |= SDMMC_IDMAC_ENABLE | SDMMC_IDMAC_FB;
732 mci_writel(host, BMOD, temp);
733
734 /* Start it running */
735 mci_writel(host, PLDMND, 1);
736
737out:
738 return ret;
739}
740
Arnd Bergmann8e2b36e2012-11-06 22:55:31 +0100741static const struct dw_mci_dma_ops dw_mci_idmac_ops = {
Seungwon Jeon885c3e82012-02-20 11:01:43 +0900742 .init = dw_mci_idmac_init,
743 .start = dw_mci_idmac_start_dma,
744 .stop = dw_mci_idmac_stop_dma,
Shawn Lin3fc7eae2015-09-16 14:41:23 +0800745 .complete = dw_mci_dmac_complete_dma,
Seungwon Jeon885c3e82012-02-20 11:01:43 +0900746 .cleanup = dw_mci_dma_cleanup,
747};
Shawn Lin3fc7eae2015-09-16 14:41:23 +0800748
749static void dw_mci_edmac_stop_dma(struct dw_mci *host)
750{
Shawn Linab925a32016-03-09 10:34:46 +0800751 dmaengine_terminate_async(host->dms->ch);
Shawn Lin3fc7eae2015-09-16 14:41:23 +0800752}
753
754static int dw_mci_edmac_start_dma(struct dw_mci *host,
755 unsigned int sg_len)
756{
757 struct dma_slave_config cfg;
758 struct dma_async_tx_descriptor *desc = NULL;
759 struct scatterlist *sgl = host->data->sg;
760 const u32 mszs[] = {1, 4, 8, 16, 32, 64, 128, 256};
761 u32 sg_elems = host->data->sg_len;
762 u32 fifoth_val;
763 u32 fifo_offset = host->fifo_reg - host->regs;
764 int ret = 0;
765
766 /* Set external dma config: burst size, burst width */
Arnd Bergmann260b3162015-11-12 15:14:23 +0100767 cfg.dst_addr = host->phy_regs + fifo_offset;
Shawn Lin3fc7eae2015-09-16 14:41:23 +0800768 cfg.src_addr = cfg.dst_addr;
769 cfg.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
770 cfg.src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
771
772 /* Match burst msize with external dma config */
773 fifoth_val = mci_readl(host, FIFOTH);
774 cfg.dst_maxburst = mszs[(fifoth_val >> 28) & 0x7];
775 cfg.src_maxburst = cfg.dst_maxburst;
776
777 if (host->data->flags & MMC_DATA_WRITE)
778 cfg.direction = DMA_MEM_TO_DEV;
779 else
780 cfg.direction = DMA_DEV_TO_MEM;
781
782 ret = dmaengine_slave_config(host->dms->ch, &cfg);
783 if (ret) {
784 dev_err(host->dev, "Failed to config edmac.\n");
785 return -EBUSY;
786 }
787
788 desc = dmaengine_prep_slave_sg(host->dms->ch, sgl,
789 sg_len, cfg.direction,
790 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
791 if (!desc) {
792 dev_err(host->dev, "Can't prepare slave sg.\n");
793 return -EBUSY;
794 }
795
796 /* Set dw_mci_dmac_complete_dma as callback */
797 desc->callback = dw_mci_dmac_complete_dma;
798 desc->callback_param = (void *)host;
799 dmaengine_submit(desc);
800
801 /* Flush cache before write */
802 if (host->data->flags & MMC_DATA_WRITE)
803 dma_sync_sg_for_device(mmc_dev(host->cur_slot->mmc), sgl,
804 sg_elems, DMA_TO_DEVICE);
805
806 dma_async_issue_pending(host->dms->ch);
807
808 return 0;
809}
810
811static int dw_mci_edmac_init(struct dw_mci *host)
812{
813 /* Request external dma channel */
814 host->dms = kzalloc(sizeof(struct dw_mci_dma_slave), GFP_KERNEL);
815 if (!host->dms)
816 return -ENOMEM;
817
818 host->dms->ch = dma_request_slave_channel(host->dev, "rx-tx");
819 if (!host->dms->ch) {
Dan Carpenter4539d362015-10-22 22:53:46 +0300820 dev_err(host->dev, "Failed to get external DMA channel.\n");
Shawn Lin3fc7eae2015-09-16 14:41:23 +0800821 kfree(host->dms);
822 host->dms = NULL;
823 return -ENXIO;
824 }
825
826 return 0;
827}
828
829static void dw_mci_edmac_exit(struct dw_mci *host)
830{
831 if (host->dms) {
832 if (host->dms->ch) {
833 dma_release_channel(host->dms->ch);
834 host->dms->ch = NULL;
835 }
836 kfree(host->dms);
837 host->dms = NULL;
838 }
839}
840
841static const struct dw_mci_dma_ops dw_mci_edmac_ops = {
842 .init = dw_mci_edmac_init,
843 .exit = dw_mci_edmac_exit,
844 .start = dw_mci_edmac_start_dma,
845 .stop = dw_mci_edmac_stop_dma,
846 .complete = dw_mci_dmac_complete_dma,
847 .cleanup = dw_mci_dma_cleanup,
848};
Seungwon Jeon885c3e82012-02-20 11:01:43 +0900849
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900850static int dw_mci_pre_dma_transfer(struct dw_mci *host,
851 struct mmc_data *data,
Jaehoon Chunga4cc7eb2016-11-17 16:40:38 +0900852 int cookie)
Will Newtonf95f3852011-01-02 01:11:59 -0500853{
854 struct scatterlist *sg;
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900855 unsigned int i, sg_len;
Will Newtonf95f3852011-01-02 01:11:59 -0500856
Jaehoon Chunga4cc7eb2016-11-17 16:40:38 +0900857 if (data->host_cookie == COOKIE_PRE_MAPPED)
858 return data->sg_len;
Will Newtonf95f3852011-01-02 01:11:59 -0500859
860 /*
861 * We don't do DMA on "complex" transfers, i.e. with
862 * non-word-aligned buffers or lengths. Also, we don't bother
863 * with all the DMA setup overhead for short transfers.
864 */
865 if (data->blocks * data->blksz < DW_MCI_DMA_THRESHOLD)
866 return -EINVAL;
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900867
Will Newtonf95f3852011-01-02 01:11:59 -0500868 if (data->blksz & 3)
869 return -EINVAL;
870
871 for_each_sg(data->sg, sg, data->sg_len, i) {
872 if (sg->offset & 3 || sg->length & 3)
873 return -EINVAL;
874 }
875
Thomas Abraham4a909202012-09-17 18:16:35 +0000876 sg_len = dma_map_sg(host->dev,
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900877 data->sg,
878 data->sg_len,
879 dw_mci_get_dma_dir(data));
880 if (sg_len == 0)
881 return -EINVAL;
882
Jaehoon Chunga4cc7eb2016-11-17 16:40:38 +0900883 data->host_cookie = cookie;
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900884
885 return sg_len;
886}
887
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900888static void dw_mci_pre_req(struct mmc_host *mmc,
889 struct mmc_request *mrq,
890 bool is_first_req)
891{
892 struct dw_mci_slot *slot = mmc_priv(mmc);
893 struct mmc_data *data = mrq->data;
894
895 if (!slot->host->use_dma || !data)
896 return;
897
Jaehoon Chunga4cc7eb2016-11-17 16:40:38 +0900898 /* This data might be unmapped at this time */
899 data->host_cookie = COOKIE_UNMAPPED;
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900900
Jaehoon Chunga4cc7eb2016-11-17 16:40:38 +0900901 if (dw_mci_pre_dma_transfer(slot->host, mrq->data,
902 COOKIE_PRE_MAPPED) < 0)
903 data->host_cookie = COOKIE_UNMAPPED;
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900904}
905
906static void dw_mci_post_req(struct mmc_host *mmc,
907 struct mmc_request *mrq,
908 int err)
909{
910 struct dw_mci_slot *slot = mmc_priv(mmc);
911 struct mmc_data *data = mrq->data;
912
913 if (!slot->host->use_dma || !data)
914 return;
915
Jaehoon Chunga4cc7eb2016-11-17 16:40:38 +0900916 if (data->host_cookie != COOKIE_UNMAPPED)
Thomas Abraham4a909202012-09-17 18:16:35 +0000917 dma_unmap_sg(slot->host->dev,
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900918 data->sg,
919 data->sg_len,
920 dw_mci_get_dma_dir(data));
Jaehoon Chunga4cc7eb2016-11-17 16:40:38 +0900921 data->host_cookie = COOKIE_UNMAPPED;
Seungwon Jeon9aa51402012-02-06 16:55:07 +0900922}
923
Seungwon Jeon52426892013-08-31 00:13:42 +0900924static void dw_mci_adjust_fifoth(struct dw_mci *host, struct mmc_data *data)
925{
Seungwon Jeon52426892013-08-31 00:13:42 +0900926 unsigned int blksz = data->blksz;
927 const u32 mszs[] = {1, 4, 8, 16, 32, 64, 128, 256};
928 u32 fifo_width = 1 << host->data_shift;
929 u32 blksz_depth = blksz / fifo_width, fifoth_val;
930 u32 msize = 0, rx_wmark = 1, tx_wmark, tx_wmark_invers;
Shawn Lin0e3a22c2015-08-03 15:07:21 +0800931 int idx = ARRAY_SIZE(mszs) - 1;
Seungwon Jeon52426892013-08-31 00:13:42 +0900932
Shawn Lin3fc7eae2015-09-16 14:41:23 +0800933 /* pio should ship this scenario */
934 if (!host->use_dma)
935 return;
936
Seungwon Jeon52426892013-08-31 00:13:42 +0900937 tx_wmark = (host->fifo_depth) / 2;
938 tx_wmark_invers = host->fifo_depth - tx_wmark;
939
940 /*
941 * MSIZE is '1',
942 * if blksz is not a multiple of the FIFO width
943 */
Shawn Lin20753562016-09-21 10:40:25 +0800944 if (blksz % fifo_width)
Seungwon Jeon52426892013-08-31 00:13:42 +0900945 goto done;
Seungwon Jeon52426892013-08-31 00:13:42 +0900946
947 do {
948 if (!((blksz_depth % mszs[idx]) ||
949 (tx_wmark_invers % mszs[idx]))) {
950 msize = idx;
951 rx_wmark = mszs[idx] - 1;
952 break;
953 }
954 } while (--idx > 0);
955 /*
956 * If idx is '0', it won't be tried
957 * Thus, initial values are uesed
958 */
959done:
960 fifoth_val = SDMMC_SET_FIFOTH(msize, rx_wmark, tx_wmark);
961 mci_writel(host, FIFOTH, fifoth_val);
Seungwon Jeon52426892013-08-31 00:13:42 +0900962}
963
Jaehoon Chung7e4bf1b2016-06-21 14:35:38 +0900964static void dw_mci_ctrl_thld(struct dw_mci *host, struct mmc_data *data)
Seungwon Jeonf1d27362013-08-31 00:13:55 +0900965{
966 unsigned int blksz = data->blksz;
967 u32 blksz_depth, fifo_depth;
968 u16 thld_size;
Jaehoon Chung7e4bf1b2016-06-21 14:35:38 +0900969 u8 enable;
Seungwon Jeonf1d27362013-08-31 00:13:55 +0900970
James Hogan66dfd102014-11-17 17:49:05 +0000971 /*
972 * CDTHRCTL doesn't exist prior to 240A (in fact that register offset is
973 * in the FIFO region, so we really shouldn't access it).
974 */
Jaehoon Chung7e4bf1b2016-06-21 14:35:38 +0900975 if (host->verid < DW_MMC_240A ||
976 (host->verid < DW_MMC_280A && data->flags & MMC_DATA_WRITE))
James Hogan66dfd102014-11-17 17:49:05 +0000977 return;
978
Jaehoon Chung7e4bf1b2016-06-21 14:35:38 +0900979 /*
980 * Card write Threshold is introduced since 2.80a
981 * It's used when HS400 mode is enabled.
982 */
983 if (data->flags & MMC_DATA_WRITE &&
984 !(host->timing != MMC_TIMING_MMC_HS400))
985 return;
986
987 if (data->flags & MMC_DATA_WRITE)
988 enable = SDMMC_CARD_WR_THR_EN;
989 else
990 enable = SDMMC_CARD_RD_THR_EN;
991
Seungwon Jeonf1d27362013-08-31 00:13:55 +0900992 if (host->timing != MMC_TIMING_MMC_HS200 &&
993 host->timing != MMC_TIMING_UHS_SDR104)
994 goto disable;
995
996 blksz_depth = blksz / (1 << host->data_shift);
997 fifo_depth = host->fifo_depth;
998
999 if (blksz_depth > fifo_depth)
1000 goto disable;
1001
1002 /*
1003 * If (blksz_depth) >= (fifo_depth >> 1), should be 'thld_size <= blksz'
1004 * If (blksz_depth) < (fifo_depth >> 1), should be thld_size = blksz
1005 * Currently just choose blksz.
1006 */
1007 thld_size = blksz;
Jaehoon Chung7e4bf1b2016-06-21 14:35:38 +09001008 mci_writel(host, CDTHRCTL, SDMMC_SET_THLD(thld_size, enable));
Seungwon Jeonf1d27362013-08-31 00:13:55 +09001009 return;
1010
1011disable:
Jaehoon Chung7e4bf1b2016-06-21 14:35:38 +09001012 mci_writel(host, CDTHRCTL, 0);
Seungwon Jeonf1d27362013-08-31 00:13:55 +09001013}
1014
Seungwon Jeon9aa51402012-02-06 16:55:07 +09001015static int dw_mci_submit_data_dma(struct dw_mci *host, struct mmc_data *data)
1016{
Doug Andersonf8c58c12014-12-02 15:42:47 -08001017 unsigned long irqflags;
Seungwon Jeon9aa51402012-02-06 16:55:07 +09001018 int sg_len;
1019 u32 temp;
1020
1021 host->using_dma = 0;
1022
1023 /* If we don't have a channel, we can't do DMA */
1024 if (!host->use_dma)
1025 return -ENODEV;
1026
Jaehoon Chunga4cc7eb2016-11-17 16:40:38 +09001027 sg_len = dw_mci_pre_dma_transfer(host, data, COOKIE_MAPPED);
Seungwon Jeona99aa9b2012-04-10 09:53:32 +09001028 if (sg_len < 0) {
1029 host->dma_ops->stop(host);
Seungwon Jeon9aa51402012-02-06 16:55:07 +09001030 return sg_len;
Seungwon Jeona99aa9b2012-04-10 09:53:32 +09001031 }
Seungwon Jeon9aa51402012-02-06 16:55:07 +09001032
James Hogan03e8cb52011-06-29 09:28:43 +01001033 host->using_dma = 1;
1034
Shawn Lin3fc7eae2015-09-16 14:41:23 +08001035 if (host->use_dma == TRANS_MODE_IDMAC)
1036 dev_vdbg(host->dev,
1037 "sd sg_cpu: %#lx sg_dma: %#lx sg_len: %d\n",
1038 (unsigned long)host->sg_cpu,
1039 (unsigned long)host->sg_dma,
1040 sg_len);
Will Newtonf95f3852011-01-02 01:11:59 -05001041
Seungwon Jeon52426892013-08-31 00:13:42 +09001042 /*
1043 * Decide the MSIZE and RX/TX Watermark.
1044 * If current block size is same with previous size,
1045 * no need to update fifoth.
1046 */
1047 if (host->prev_blksz != data->blksz)
1048 dw_mci_adjust_fifoth(host, data);
1049
Will Newtonf95f3852011-01-02 01:11:59 -05001050 /* Enable the DMA interface */
1051 temp = mci_readl(host, CTRL);
1052 temp |= SDMMC_CTRL_DMA_ENABLE;
1053 mci_writel(host, CTRL, temp);
1054
1055 /* Disable RX/TX IRQs, let DMA handle it */
Doug Andersonf8c58c12014-12-02 15:42:47 -08001056 spin_lock_irqsave(&host->irq_lock, irqflags);
Will Newtonf95f3852011-01-02 01:11:59 -05001057 temp = mci_readl(host, INTMASK);
1058 temp &= ~(SDMMC_INT_RXDR | SDMMC_INT_TXDR);
1059 mci_writel(host, INTMASK, temp);
Doug Andersonf8c58c12014-12-02 15:42:47 -08001060 spin_unlock_irqrestore(&host->irq_lock, irqflags);
Will Newtonf95f3852011-01-02 01:11:59 -05001061
Shawn Lin3fc7eae2015-09-16 14:41:23 +08001062 if (host->dma_ops->start(host, sg_len)) {
Jaehoon Chung647f80a2016-11-21 10:51:48 +09001063 host->dma_ops->stop(host);
Shawn Lind12d0cb2016-09-02 12:14:38 +08001064 /* We can't do DMA, try PIO for this one */
1065 dev_dbg(host->dev,
1066 "%s: fall back to PIO mode for current transfer\n",
1067 __func__);
Shawn Lin3fc7eae2015-09-16 14:41:23 +08001068 return -ENODEV;
1069 }
Will Newtonf95f3852011-01-02 01:11:59 -05001070
1071 return 0;
1072}
1073
1074static void dw_mci_submit_data(struct dw_mci *host, struct mmc_data *data)
1075{
Doug Andersonf8c58c12014-12-02 15:42:47 -08001076 unsigned long irqflags;
Shawn Lin0e3a22c2015-08-03 15:07:21 +08001077 int flags = SG_MITER_ATOMIC;
Will Newtonf95f3852011-01-02 01:11:59 -05001078 u32 temp;
1079
1080 data->error = -EINPROGRESS;
1081
1082 WARN_ON(host->data);
1083 host->sg = NULL;
1084 host->data = data;
1085
Jaehoon Chung7e4bf1b2016-06-21 14:35:38 +09001086 if (data->flags & MMC_DATA_READ)
James Hogan55c5efbc2011-06-29 09:29:58 +01001087 host->dir_status = DW_MCI_RECV_STATUS;
Jaehoon Chung7e4bf1b2016-06-21 14:35:38 +09001088 else
James Hogan55c5efbc2011-06-29 09:29:58 +01001089 host->dir_status = DW_MCI_SEND_STATUS;
Jaehoon Chung7e4bf1b2016-06-21 14:35:38 +09001090
1091 dw_mci_ctrl_thld(host, data);
James Hogan55c5efbc2011-06-29 09:29:58 +01001092
Will Newtonf95f3852011-01-02 01:11:59 -05001093 if (dw_mci_submit_data_dma(host, data)) {
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09001094 if (host->data->flags & MMC_DATA_READ)
1095 flags |= SG_MITER_TO_SG;
1096 else
1097 flags |= SG_MITER_FROM_SG;
1098
1099 sg_miter_start(&host->sg_miter, data->sg, data->sg_len, flags);
Will Newtonf95f3852011-01-02 01:11:59 -05001100 host->sg = data->sg;
James Hogan34b664a2011-06-24 13:57:56 +01001101 host->part_buf_start = 0;
1102 host->part_buf_count = 0;
Will Newtonf95f3852011-01-02 01:11:59 -05001103
James Hoganb40af3a2011-06-24 13:54:06 +01001104 mci_writel(host, RINTSTS, SDMMC_INT_TXDR | SDMMC_INT_RXDR);
Doug Andersonf8c58c12014-12-02 15:42:47 -08001105
1106 spin_lock_irqsave(&host->irq_lock, irqflags);
Will Newtonf95f3852011-01-02 01:11:59 -05001107 temp = mci_readl(host, INTMASK);
1108 temp |= SDMMC_INT_TXDR | SDMMC_INT_RXDR;
1109 mci_writel(host, INTMASK, temp);
Doug Andersonf8c58c12014-12-02 15:42:47 -08001110 spin_unlock_irqrestore(&host->irq_lock, irqflags);
Will Newtonf95f3852011-01-02 01:11:59 -05001111
1112 temp = mci_readl(host, CTRL);
1113 temp &= ~SDMMC_CTRL_DMA_ENABLE;
1114 mci_writel(host, CTRL, temp);
Seungwon Jeon52426892013-08-31 00:13:42 +09001115
1116 /*
1117 * Use the initial fifoth_val for PIO mode.
1118 * If next issued data may be transfered by DMA mode,
1119 * prev_blksz should be invalidated.
1120 */
1121 mci_writel(host, FIFOTH, host->fifoth_val);
1122 host->prev_blksz = 0;
1123 } else {
1124 /*
1125 * Keep the current block size.
1126 * It will be used to decide whether to update
1127 * fifoth register next time.
1128 */
1129 host->prev_blksz = data->blksz;
Will Newtonf95f3852011-01-02 01:11:59 -05001130 }
1131}
1132
1133static void mci_send_cmd(struct dw_mci_slot *slot, u32 cmd, u32 arg)
1134{
1135 struct dw_mci *host = slot->host;
1136 unsigned long timeout = jiffies + msecs_to_jiffies(500);
1137 unsigned int cmd_status = 0;
1138
1139 mci_writel(host, CMDARG, arg);
Shawn Lin0e3a22c2015-08-03 15:07:21 +08001140 wmb(); /* drain writebuffer */
Doug Anderson0bdbd0e2015-02-20 12:31:56 -08001141 dw_mci_wait_while_busy(host, cmd);
Will Newtonf95f3852011-01-02 01:11:59 -05001142 mci_writel(host, CMD, SDMMC_CMD_START | cmd);
1143
1144 while (time_before(jiffies, timeout)) {
1145 cmd_status = mci_readl(host, CMD);
1146 if (!(cmd_status & SDMMC_CMD_START))
1147 return;
1148 }
1149 dev_err(&slot->mmc->class_dev,
1150 "Timeout sending command (cmd %#x arg %#x status %#x)\n",
1151 cmd, arg, cmd_status);
1152}
1153
Abhilash Kesavanab269122012-11-19 10:26:21 +05301154static void dw_mci_setup_bus(struct dw_mci_slot *slot, bool force_clkinit)
Will Newtonf95f3852011-01-02 01:11:59 -05001155{
1156 struct dw_mci *host = slot->host;
Doug Andersonfdf492a2013-08-31 00:11:43 +09001157 unsigned int clock = slot->clock;
Will Newtonf95f3852011-01-02 01:11:59 -05001158 u32 div;
Doug Anderson9623b5b2012-07-25 08:33:17 -07001159 u32 clk_en_a;
Doug Anderson01730552014-08-22 19:17:51 +05301160 u32 sdmmc_cmd_bits = SDMMC_CMD_UPD_CLK | SDMMC_CMD_PRV_DAT_WAIT;
1161
1162 /* We must continue to set bit 28 in CMD until the change is complete */
1163 if (host->state == STATE_WAITING_CMD11_DONE)
1164 sdmmc_cmd_bits |= SDMMC_CMD_VOLT_SWITCH;
Will Newtonf95f3852011-01-02 01:11:59 -05001165
Doug Andersonfdf492a2013-08-31 00:11:43 +09001166 if (!clock) {
1167 mci_writel(host, CLKENA, 0);
Doug Anderson01730552014-08-22 19:17:51 +05301168 mci_send_cmd(slot, sdmmc_cmd_bits, 0);
Doug Andersonfdf492a2013-08-31 00:11:43 +09001169 } else if (clock != host->current_speed || force_clkinit) {
1170 div = host->bus_hz / clock;
1171 if (host->bus_hz % clock && host->bus_hz > clock)
Will Newtonf95f3852011-01-02 01:11:59 -05001172 /*
1173 * move the + 1 after the divide to prevent
1174 * over-clocking the card.
1175 */
Seungwon Jeone4199902012-05-22 13:01:21 +09001176 div += 1;
1177
Doug Andersonfdf492a2013-08-31 00:11:43 +09001178 div = (host->bus_hz != clock) ? DIV_ROUND_UP(div, 2) : 0;
Will Newtonf95f3852011-01-02 01:11:59 -05001179
Jaehoon Chung005d6752016-09-22 14:12:00 +09001180 if (clock != slot->__clk_old || force_clkinit)
1181 dev_info(&slot->mmc->class_dev,
1182 "Bus speed (slot %d) = %dHz (slot req %dHz, actual %dHZ div = %d)\n",
1183 slot->id, host->bus_hz, clock,
1184 div ? ((host->bus_hz / div) >> 1) :
1185 host->bus_hz, div);
Will Newtonf95f3852011-01-02 01:11:59 -05001186
1187 /* disable clock */
1188 mci_writel(host, CLKENA, 0);
1189 mci_writel(host, CLKSRC, 0);
1190
1191 /* inform CIU */
Doug Anderson01730552014-08-22 19:17:51 +05301192 mci_send_cmd(slot, sdmmc_cmd_bits, 0);
Will Newtonf95f3852011-01-02 01:11:59 -05001193
1194 /* set clock to desired speed */
1195 mci_writel(host, CLKDIV, div);
1196
1197 /* inform CIU */
Doug Anderson01730552014-08-22 19:17:51 +05301198 mci_send_cmd(slot, sdmmc_cmd_bits, 0);
Will Newtonf95f3852011-01-02 01:11:59 -05001199
Doug Anderson9623b5b2012-07-25 08:33:17 -07001200 /* enable clock; only low power if no SDIO */
1201 clk_en_a = SDMMC_CLKEN_ENABLE << slot->id;
Doug Andersonb24c8b22014-12-02 15:42:46 -08001202 if (!test_bit(DW_MMC_CARD_NO_LOW_PWR, &slot->flags))
Doug Anderson9623b5b2012-07-25 08:33:17 -07001203 clk_en_a |= SDMMC_CLKEN_LOW_PWR << slot->id;
1204 mci_writel(host, CLKENA, clk_en_a);
Will Newtonf95f3852011-01-02 01:11:59 -05001205
1206 /* inform CIU */
Doug Anderson01730552014-08-22 19:17:51 +05301207 mci_send_cmd(slot, sdmmc_cmd_bits, 0);
Jaehoon Chung005d6752016-09-22 14:12:00 +09001208
1209 /* keep the last clock value that was requested from core */
1210 slot->__clk_old = clock;
Will Newtonf95f3852011-01-02 01:11:59 -05001211 }
1212
Doug Andersonfdf492a2013-08-31 00:11:43 +09001213 host->current_speed = clock;
1214
Will Newtonf95f3852011-01-02 01:11:59 -05001215 /* Set the current slot bus width */
Seungwon Jeon1d56c452011-06-20 17:23:53 +09001216 mci_writel(host, CTYPE, (slot->ctype << slot->id));
Will Newtonf95f3852011-01-02 01:11:59 -05001217}
1218
Seungwon Jeon053b3ce2011-12-22 18:01:29 +09001219static void __dw_mci_start_request(struct dw_mci *host,
1220 struct dw_mci_slot *slot,
1221 struct mmc_command *cmd)
Will Newtonf95f3852011-01-02 01:11:59 -05001222{
1223 struct mmc_request *mrq;
Will Newtonf95f3852011-01-02 01:11:59 -05001224 struct mmc_data *data;
1225 u32 cmdflags;
1226
1227 mrq = slot->mrq;
Will Newtonf95f3852011-01-02 01:11:59 -05001228
Will Newtonf95f3852011-01-02 01:11:59 -05001229 host->cur_slot = slot;
1230 host->mrq = mrq;
1231
1232 host->pending_events = 0;
1233 host->completed_events = 0;
Seungwon Jeone352c812013-08-31 00:14:17 +09001234 host->cmd_status = 0;
Will Newtonf95f3852011-01-02 01:11:59 -05001235 host->data_status = 0;
Seungwon Jeone352c812013-08-31 00:14:17 +09001236 host->dir_status = 0;
Will Newtonf95f3852011-01-02 01:11:59 -05001237
Seungwon Jeon053b3ce2011-12-22 18:01:29 +09001238 data = cmd->data;
Will Newtonf95f3852011-01-02 01:11:59 -05001239 if (data) {
Jaehoon Chungf16afa82014-03-03 11:36:45 +09001240 mci_writel(host, TMOUT, 0xFFFFFFFF);
Will Newtonf95f3852011-01-02 01:11:59 -05001241 mci_writel(host, BYTCNT, data->blksz*data->blocks);
1242 mci_writel(host, BLKSIZ, data->blksz);
1243 }
1244
Will Newtonf95f3852011-01-02 01:11:59 -05001245 cmdflags = dw_mci_prepare_command(slot->mmc, cmd);
1246
1247 /* this is the first command, send the initialization clock */
1248 if (test_and_clear_bit(DW_MMC_CARD_NEED_INIT, &slot->flags))
1249 cmdflags |= SDMMC_CMD_INIT;
1250
1251 if (data) {
1252 dw_mci_submit_data(host, data);
Shawn Lin0e3a22c2015-08-03 15:07:21 +08001253 wmb(); /* drain writebuffer */
Will Newtonf95f3852011-01-02 01:11:59 -05001254 }
1255
1256 dw_mci_start_command(host, cmd, cmdflags);
1257
Doug Anderson5c935162015-03-09 16:18:21 -07001258 if (cmd->opcode == SD_SWITCH_VOLTAGE) {
Doug Anderson49ba0302015-04-03 11:13:07 -07001259 unsigned long irqflags;
1260
Doug Anderson5c935162015-03-09 16:18:21 -07001261 /*
Doug Anderson8886a6f2015-04-03 11:13:05 -07001262 * Databook says to fail after 2ms w/ no response, but evidence
1263 * shows that sometimes the cmd11 interrupt takes over 130ms.
1264 * We'll set to 500ms, plus an extra jiffy just in case jiffies
1265 * is just about to roll over.
Doug Anderson49ba0302015-04-03 11:13:07 -07001266 *
1267 * We do this whole thing under spinlock and only if the
1268 * command hasn't already completed (indicating the the irq
1269 * already ran so we don't want the timeout).
Doug Anderson5c935162015-03-09 16:18:21 -07001270 */
Doug Anderson49ba0302015-04-03 11:13:07 -07001271 spin_lock_irqsave(&host->irq_lock, irqflags);
1272 if (!test_bit(EVENT_CMD_COMPLETE, &host->pending_events))
1273 mod_timer(&host->cmd11_timer,
1274 jiffies + msecs_to_jiffies(500) + 1);
1275 spin_unlock_irqrestore(&host->irq_lock, irqflags);
Doug Anderson5c935162015-03-09 16:18:21 -07001276 }
1277
Jaehoon Chunge13c3c02016-11-17 16:40:37 +09001278 host->stop_cmdr = dw_mci_prep_stop_abort(host, cmd);
Will Newtonf95f3852011-01-02 01:11:59 -05001279}
1280
Seungwon Jeon053b3ce2011-12-22 18:01:29 +09001281static void dw_mci_start_request(struct dw_mci *host,
1282 struct dw_mci_slot *slot)
1283{
1284 struct mmc_request *mrq = slot->mrq;
1285 struct mmc_command *cmd;
1286
1287 cmd = mrq->sbc ? mrq->sbc : mrq->cmd;
1288 __dw_mci_start_request(host, slot, cmd);
1289}
1290
James Hogan7456caa2011-06-24 13:55:10 +01001291/* must be called with host->lock held */
Will Newtonf95f3852011-01-02 01:11:59 -05001292static void dw_mci_queue_request(struct dw_mci *host, struct dw_mci_slot *slot,
1293 struct mmc_request *mrq)
1294{
1295 dev_vdbg(&slot->mmc->class_dev, "queue request: state=%d\n",
1296 host->state);
1297
Will Newtonf95f3852011-01-02 01:11:59 -05001298 slot->mrq = mrq;
1299
Doug Anderson01730552014-08-22 19:17:51 +05301300 if (host->state == STATE_WAITING_CMD11_DONE) {
1301 dev_warn(&slot->mmc->class_dev,
1302 "Voltage change didn't complete\n");
1303 /*
1304 * this case isn't expected to happen, so we can
1305 * either crash here or just try to continue on
1306 * in the closest possible state
1307 */
1308 host->state = STATE_IDLE;
1309 }
1310
Will Newtonf95f3852011-01-02 01:11:59 -05001311 if (host->state == STATE_IDLE) {
1312 host->state = STATE_SENDING_CMD;
1313 dw_mci_start_request(host, slot);
1314 } else {
1315 list_add_tail(&slot->queue_node, &host->queue);
1316 }
Will Newtonf95f3852011-01-02 01:11:59 -05001317}
1318
1319static void dw_mci_request(struct mmc_host *mmc, struct mmc_request *mrq)
1320{
1321 struct dw_mci_slot *slot = mmc_priv(mmc);
1322 struct dw_mci *host = slot->host;
1323
1324 WARN_ON(slot->mrq);
1325
James Hogan7456caa2011-06-24 13:55:10 +01001326 /*
1327 * The check for card presence and queueing of the request must be
1328 * atomic, otherwise the card could be removed in between and the
1329 * request wouldn't fail until another card was inserted.
1330 */
James Hogan7456caa2011-06-24 13:55:10 +01001331
Shawn Lin56f69112016-05-27 14:37:05 +08001332 if (!dw_mci_get_cd(mmc)) {
Will Newtonf95f3852011-01-02 01:11:59 -05001333 mrq->cmd->error = -ENOMEDIUM;
1334 mmc_request_done(mmc, mrq);
1335 return;
1336 }
1337
Shawn Lin56f69112016-05-27 14:37:05 +08001338 spin_lock_bh(&host->lock);
1339
Will Newtonf95f3852011-01-02 01:11:59 -05001340 dw_mci_queue_request(host, slot, mrq);
James Hogan7456caa2011-06-24 13:55:10 +01001341
1342 spin_unlock_bh(&host->lock);
Will Newtonf95f3852011-01-02 01:11:59 -05001343}
1344
1345static void dw_mci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
1346{
1347 struct dw_mci_slot *slot = mmc_priv(mmc);
Arnd Bergmanne95baf12012-11-08 14:26:11 +00001348 const struct dw_mci_drv_data *drv_data = slot->host->drv_data;
Jaehoon Chung41babf72011-02-24 13:46:11 +09001349 u32 regs;
Yuvaraj CD51da2242014-08-22 19:17:50 +05301350 int ret;
Will Newtonf95f3852011-01-02 01:11:59 -05001351
Will Newtonf95f3852011-01-02 01:11:59 -05001352 switch (ios->bus_width) {
Will Newtonf95f3852011-01-02 01:11:59 -05001353 case MMC_BUS_WIDTH_4:
1354 slot->ctype = SDMMC_CTYPE_4BIT;
1355 break;
Jaehoon Chungc9b2a062011-02-17 16:12:38 +09001356 case MMC_BUS_WIDTH_8:
1357 slot->ctype = SDMMC_CTYPE_8BIT;
1358 break;
Jaehoon Chungb2f7cb42012-11-08 17:35:31 +09001359 default:
1360 /* set default 1 bit mode */
1361 slot->ctype = SDMMC_CTYPE_1BIT;
Will Newtonf95f3852011-01-02 01:11:59 -05001362 }
1363
Seungwon Jeon3f514292012-01-02 16:00:02 +09001364 regs = mci_readl(slot->host, UHS_REG);
1365
Jaehoon Chung41babf72011-02-24 13:46:11 +09001366 /* DDR mode set */
Seungwon Jeon80113132015-01-29 08:11:57 +05301367 if (ios->timing == MMC_TIMING_MMC_DDR52 ||
Jaehoon Chung7cc8d582015-10-21 19:49:42 +09001368 ios->timing == MMC_TIMING_UHS_DDR50 ||
Seungwon Jeon80113132015-01-29 08:11:57 +05301369 ios->timing == MMC_TIMING_MMC_HS400)
Hyeonsu Kimc69042a2013-02-22 09:32:46 +09001370 regs |= ((0x1 << slot->id) << 16);
Seungwon Jeon3f514292012-01-02 16:00:02 +09001371 else
Hyeonsu Kimc69042a2013-02-22 09:32:46 +09001372 regs &= ~((0x1 << slot->id) << 16);
Seungwon Jeon3f514292012-01-02 16:00:02 +09001373
1374 mci_writel(slot->host, UHS_REG, regs);
Seungwon Jeonf1d27362013-08-31 00:13:55 +09001375 slot->host->timing = ios->timing;
Jaehoon Chung41babf72011-02-24 13:46:11 +09001376
Doug Andersonfdf492a2013-08-31 00:11:43 +09001377 /*
1378 * Use mirror of ios->clock to prevent race with mmc
1379 * core ios update when finding the minimum.
1380 */
1381 slot->clock = ios->clock;
Will Newtonf95f3852011-01-02 01:11:59 -05001382
James Hogancb27a842012-10-16 09:43:08 +01001383 if (drv_data && drv_data->set_ios)
1384 drv_data->set_ios(slot->host, ios);
Thomas Abraham800d78b2012-09-17 18:16:42 +00001385
Will Newtonf95f3852011-01-02 01:11:59 -05001386 switch (ios->power_mode) {
1387 case MMC_POWER_UP:
Yuvaraj CD51da2242014-08-22 19:17:50 +05301388 if (!IS_ERR(mmc->supply.vmmc)) {
1389 ret = mmc_regulator_set_ocr(mmc, mmc->supply.vmmc,
1390 ios->vdd);
1391 if (ret) {
1392 dev_err(slot->host->dev,
1393 "failed to enable vmmc regulator\n");
1394 /*return, if failed turn on vmmc*/
1395 return;
1396 }
1397 }
Doug Anderson29d0d162015-01-13 15:58:44 -08001398 set_bit(DW_MMC_CARD_NEED_INIT, &slot->flags);
1399 regs = mci_readl(slot->host, PWREN);
1400 regs |= (1 << slot->id);
1401 mci_writel(slot->host, PWREN, regs);
1402 break;
1403 case MMC_POWER_ON:
Doug Andersond1f1dd82015-02-20 10:57:19 -08001404 if (!slot->host->vqmmc_enabled) {
1405 if (!IS_ERR(mmc->supply.vqmmc)) {
1406 ret = regulator_enable(mmc->supply.vqmmc);
1407 if (ret < 0)
1408 dev_err(slot->host->dev,
1409 "failed to enable vqmmc\n");
1410 else
1411 slot->host->vqmmc_enabled = true;
1412
1413 } else {
1414 /* Keep track so we don't reset again */
Yuvaraj CD51da2242014-08-22 19:17:50 +05301415 slot->host->vqmmc_enabled = true;
Doug Andersond1f1dd82015-02-20 10:57:19 -08001416 }
1417
1418 /* Reset our state machine after powering on */
1419 dw_mci_ctrl_reset(slot->host,
1420 SDMMC_CTRL_ALL_RESET_FLAGS);
Yuvaraj CD51da2242014-08-22 19:17:50 +05301421 }
Doug Anderson655babb2015-02-20 10:57:18 -08001422
1423 /* Adjust clock / bus width after power is up */
1424 dw_mci_setup_bus(slot, false);
1425
James Hogane6f34e22013-03-12 10:43:32 +00001426 break;
1427 case MMC_POWER_OFF:
Doug Anderson655babb2015-02-20 10:57:18 -08001428 /* Turn clock off before power goes down */
1429 dw_mci_setup_bus(slot, false);
1430
Yuvaraj CD51da2242014-08-22 19:17:50 +05301431 if (!IS_ERR(mmc->supply.vmmc))
1432 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, 0);
1433
Doug Andersond1f1dd82015-02-20 10:57:19 -08001434 if (!IS_ERR(mmc->supply.vqmmc) && slot->host->vqmmc_enabled)
Yuvaraj CD51da2242014-08-22 19:17:50 +05301435 regulator_disable(mmc->supply.vqmmc);
Doug Andersond1f1dd82015-02-20 10:57:19 -08001436 slot->host->vqmmc_enabled = false;
Yuvaraj CD51da2242014-08-22 19:17:50 +05301437
Jaehoon Chung4366dcc2013-03-26 21:36:14 +09001438 regs = mci_readl(slot->host, PWREN);
1439 regs &= ~(1 << slot->id);
1440 mci_writel(slot->host, PWREN, regs);
Will Newtonf95f3852011-01-02 01:11:59 -05001441 break;
1442 default:
1443 break;
1444 }
Doug Anderson655babb2015-02-20 10:57:18 -08001445
1446 if (slot->host->state == STATE_WAITING_CMD11_DONE && ios->clock != 0)
1447 slot->host->state = STATE_IDLE;
Will Newtonf95f3852011-01-02 01:11:59 -05001448}
1449
Doug Anderson01730552014-08-22 19:17:51 +05301450static int dw_mci_card_busy(struct mmc_host *mmc)
1451{
1452 struct dw_mci_slot *slot = mmc_priv(mmc);
1453 u32 status;
1454
1455 /*
1456 * Check the busy bit which is low when DAT[3:0]
1457 * (the data lines) are 0000
1458 */
1459 status = mci_readl(slot->host, STATUS);
1460
1461 return !!(status & SDMMC_STATUS_BUSY);
1462}
1463
1464static int dw_mci_switch_voltage(struct mmc_host *mmc, struct mmc_ios *ios)
1465{
1466 struct dw_mci_slot *slot = mmc_priv(mmc);
1467 struct dw_mci *host = slot->host;
Zhangfei Gao8f7849c2015-05-14 16:45:18 +08001468 const struct dw_mci_drv_data *drv_data = host->drv_data;
Doug Anderson01730552014-08-22 19:17:51 +05301469 u32 uhs;
1470 u32 v18 = SDMMC_UHS_18V << slot->id;
Doug Anderson01730552014-08-22 19:17:51 +05301471 int ret;
1472
Zhangfei Gao8f7849c2015-05-14 16:45:18 +08001473 if (drv_data && drv_data->switch_voltage)
1474 return drv_data->switch_voltage(mmc, ios);
1475
Doug Anderson01730552014-08-22 19:17:51 +05301476 /*
1477 * Program the voltage. Note that some instances of dw_mmc may use
1478 * the UHS_REG for this. For other instances (like exynos) the UHS_REG
1479 * does no harm but you need to set the regulator directly. Try both.
1480 */
1481 uhs = mci_readl(host, UHS_REG);
Douglas Andersone0848f52015-10-12 14:48:26 +02001482 if (ios->signal_voltage == MMC_SIGNAL_VOLTAGE_330)
Doug Anderson01730552014-08-22 19:17:51 +05301483 uhs &= ~v18;
Douglas Andersone0848f52015-10-12 14:48:26 +02001484 else
Doug Anderson01730552014-08-22 19:17:51 +05301485 uhs |= v18;
Douglas Andersone0848f52015-10-12 14:48:26 +02001486
Doug Anderson01730552014-08-22 19:17:51 +05301487 if (!IS_ERR(mmc->supply.vqmmc)) {
Douglas Andersone0848f52015-10-12 14:48:26 +02001488 ret = mmc_regulator_set_vqmmc(mmc, ios);
Doug Anderson01730552014-08-22 19:17:51 +05301489
1490 if (ret) {
Doug Andersonb19caf32014-10-10 21:16:16 -07001491 dev_dbg(&mmc->class_dev,
Douglas Andersone0848f52015-10-12 14:48:26 +02001492 "Regulator set error %d - %s V\n",
1493 ret, uhs & v18 ? "1.8" : "3.3");
Doug Anderson01730552014-08-22 19:17:51 +05301494 return ret;
1495 }
1496 }
1497 mci_writel(host, UHS_REG, uhs);
1498
1499 return 0;
1500}
1501
Will Newtonf95f3852011-01-02 01:11:59 -05001502static int dw_mci_get_ro(struct mmc_host *mmc)
1503{
1504 int read_only;
1505 struct dw_mci_slot *slot = mmc_priv(mmc);
Jaehoon Chung9795a842014-03-03 11:36:46 +09001506 int gpio_ro = mmc_gpio_get_ro(mmc);
Will Newtonf95f3852011-01-02 01:11:59 -05001507
1508 /* Use platform get_ro function, else try on board write protect */
Arnd Bergmann287980e2016-05-27 23:23:25 +02001509 if (gpio_ro >= 0)
Jaehoon Chung9795a842014-03-03 11:36:46 +09001510 read_only = gpio_ro;
Will Newtonf95f3852011-01-02 01:11:59 -05001511 else
1512 read_only =
1513 mci_readl(slot->host, WRTPRT) & (1 << slot->id) ? 1 : 0;
1514
1515 dev_dbg(&mmc->class_dev, "card is %s\n",
1516 read_only ? "read-only" : "read-write");
1517
1518 return read_only;
1519}
1520
1521static int dw_mci_get_cd(struct mmc_host *mmc)
1522{
1523 int present;
1524 struct dw_mci_slot *slot = mmc_priv(mmc);
Zhangfei Gao7cf347b2014-01-16 20:48:47 +08001525 struct dw_mci *host = slot->host;
1526 int gpio_cd = mmc_gpio_get_cd(mmc);
Will Newtonf95f3852011-01-02 01:11:59 -05001527
1528 /* Use platform get_cd function, else try onboard card detect */
Jaehoon Chung860951c2016-06-21 10:13:26 +09001529 if ((mmc->caps & MMC_CAP_NEEDS_POLL) || !mmc_card_is_removable(mmc))
Jaehoon Chungfc3d7722011-02-25 11:08:15 +09001530 present = 1;
Arnd Bergmann287980e2016-05-27 23:23:25 +02001531 else if (gpio_cd >= 0)
Zhangfei Gao7cf347b2014-01-16 20:48:47 +08001532 present = gpio_cd;
Will Newtonf95f3852011-01-02 01:11:59 -05001533 else
1534 present = (mci_readl(slot->host, CDETECT) & (1 << slot->id))
1535 == 0 ? 1 : 0;
1536
Zhangfei Gao7cf347b2014-01-16 20:48:47 +08001537 spin_lock_bh(&host->lock);
Jaehoon Chung1f4d5072016-11-17 16:40:34 +09001538 if (present && !test_and_set_bit(DW_MMC_CARD_PRESENT, &slot->flags))
Will Newtonf95f3852011-01-02 01:11:59 -05001539 dev_dbg(&mmc->class_dev, "card is present\n");
Jaehoon Chung1f4d5072016-11-17 16:40:34 +09001540 else if (!test_and_clear_bit(DW_MMC_CARD_PRESENT, &slot->flags))
Will Newtonf95f3852011-01-02 01:11:59 -05001541 dev_dbg(&mmc->class_dev, "card is not present\n");
Zhangfei Gao7cf347b2014-01-16 20:48:47 +08001542 spin_unlock_bh(&host->lock);
Will Newtonf95f3852011-01-02 01:11:59 -05001543
1544 return present;
1545}
1546
Shawn Lin935a6652016-01-14 09:08:02 +08001547static void dw_mci_hw_reset(struct mmc_host *mmc)
1548{
1549 struct dw_mci_slot *slot = mmc_priv(mmc);
1550 struct dw_mci *host = slot->host;
1551 int reset;
1552
1553 if (host->use_dma == TRANS_MODE_IDMAC)
1554 dw_mci_idmac_reset(host);
1555
1556 if (!dw_mci_ctrl_reset(host, SDMMC_CTRL_DMA_RESET |
1557 SDMMC_CTRL_FIFO_RESET))
1558 return;
1559
1560 /*
1561 * According to eMMC spec, card reset procedure:
1562 * tRstW >= 1us: RST_n pulse width
1563 * tRSCA >= 200us: RST_n to Command time
1564 * tRSTH >= 1us: RST_n high period
1565 */
1566 reset = mci_readl(host, RST_N);
1567 reset &= ~(SDMMC_RST_HWACTIVE << slot->id);
1568 mci_writel(host, RST_N, reset);
1569 usleep_range(1, 2);
1570 reset |= SDMMC_RST_HWACTIVE << slot->id;
1571 mci_writel(host, RST_N, reset);
1572 usleep_range(200, 300);
1573}
1574
Doug Andersonb24c8b22014-12-02 15:42:46 -08001575static void dw_mci_init_card(struct mmc_host *mmc, struct mmc_card *card)
Doug Anderson9623b5b2012-07-25 08:33:17 -07001576{
Doug Andersonb24c8b22014-12-02 15:42:46 -08001577 struct dw_mci_slot *slot = mmc_priv(mmc);
Doug Anderson9623b5b2012-07-25 08:33:17 -07001578 struct dw_mci *host = slot->host;
Doug Anderson9623b5b2012-07-25 08:33:17 -07001579
Doug Andersonb24c8b22014-12-02 15:42:46 -08001580 /*
1581 * Low power mode will stop the card clock when idle. According to the
1582 * description of the CLKENA register we should disable low power mode
1583 * for SDIO cards if we need SDIO interrupts to work.
1584 */
1585 if (mmc->caps & MMC_CAP_SDIO_IRQ) {
1586 const u32 clken_low_pwr = SDMMC_CLKEN_LOW_PWR << slot->id;
1587 u32 clk_en_a_old;
1588 u32 clk_en_a;
Doug Anderson9623b5b2012-07-25 08:33:17 -07001589
Doug Andersonb24c8b22014-12-02 15:42:46 -08001590 clk_en_a_old = mci_readl(host, CLKENA);
1591
1592 if (card->type == MMC_TYPE_SDIO ||
1593 card->type == MMC_TYPE_SD_COMBO) {
1594 set_bit(DW_MMC_CARD_NO_LOW_PWR, &slot->flags);
1595 clk_en_a = clk_en_a_old & ~clken_low_pwr;
1596 } else {
1597 clear_bit(DW_MMC_CARD_NO_LOW_PWR, &slot->flags);
1598 clk_en_a = clk_en_a_old | clken_low_pwr;
1599 }
1600
1601 if (clk_en_a != clk_en_a_old) {
1602 mci_writel(host, CLKENA, clk_en_a);
1603 mci_send_cmd(slot, SDMMC_CMD_UPD_CLK |
1604 SDMMC_CMD_PRV_DAT_WAIT, 0);
1605 }
Doug Anderson9623b5b2012-07-25 08:33:17 -07001606 }
1607}
1608
Shashidhar Hiremath1a5c8e12011-08-29 13:11:46 +05301609static void dw_mci_enable_sdio_irq(struct mmc_host *mmc, int enb)
1610{
1611 struct dw_mci_slot *slot = mmc_priv(mmc);
1612 struct dw_mci *host = slot->host;
Doug Andersonf8c58c12014-12-02 15:42:47 -08001613 unsigned long irqflags;
Shashidhar Hiremath1a5c8e12011-08-29 13:11:46 +05301614 u32 int_mask;
1615
Doug Andersonf8c58c12014-12-02 15:42:47 -08001616 spin_lock_irqsave(&host->irq_lock, irqflags);
1617
Shashidhar Hiremath1a5c8e12011-08-29 13:11:46 +05301618 /* Enable/disable Slot Specific SDIO interrupt */
1619 int_mask = mci_readl(host, INTMASK);
Doug Andersonb24c8b22014-12-02 15:42:46 -08001620 if (enb)
1621 int_mask |= SDMMC_INT_SDIO(slot->sdio_id);
1622 else
1623 int_mask &= ~SDMMC_INT_SDIO(slot->sdio_id);
1624 mci_writel(host, INTMASK, int_mask);
Doug Andersonf8c58c12014-12-02 15:42:47 -08001625
1626 spin_unlock_irqrestore(&host->irq_lock, irqflags);
Shashidhar Hiremath1a5c8e12011-08-29 13:11:46 +05301627}
1628
Seungwon Jeon0976f162013-08-31 00:12:42 +09001629static int dw_mci_execute_tuning(struct mmc_host *mmc, u32 opcode)
1630{
1631 struct dw_mci_slot *slot = mmc_priv(mmc);
1632 struct dw_mci *host = slot->host;
1633 const struct dw_mci_drv_data *drv_data = host->drv_data;
Shawn Lin0e3a22c2015-08-03 15:07:21 +08001634 int err = -EINVAL;
Seungwon Jeon0976f162013-08-31 00:12:42 +09001635
Seungwon Jeon0976f162013-08-31 00:12:42 +09001636 if (drv_data && drv_data->execute_tuning)
Chaotian Jing9979dbe2015-10-27 14:24:28 +08001637 err = drv_data->execute_tuning(slot, opcode);
Seungwon Jeon0976f162013-08-31 00:12:42 +09001638 return err;
1639}
1640
Shawn Lin0e3a22c2015-08-03 15:07:21 +08001641static int dw_mci_prepare_hs400_tuning(struct mmc_host *mmc,
1642 struct mmc_ios *ios)
Seungwon Jeon80113132015-01-29 08:11:57 +05301643{
1644 struct dw_mci_slot *slot = mmc_priv(mmc);
1645 struct dw_mci *host = slot->host;
1646 const struct dw_mci_drv_data *drv_data = host->drv_data;
1647
1648 if (drv_data && drv_data->prepare_hs400_tuning)
1649 return drv_data->prepare_hs400_tuning(host, ios);
1650
1651 return 0;
1652}
1653
Will Newtonf95f3852011-01-02 01:11:59 -05001654static const struct mmc_host_ops dw_mci_ops = {
Shashidhar Hiremath1a5c8e12011-08-29 13:11:46 +05301655 .request = dw_mci_request,
Seungwon Jeon9aa51402012-02-06 16:55:07 +09001656 .pre_req = dw_mci_pre_req,
1657 .post_req = dw_mci_post_req,
Shashidhar Hiremath1a5c8e12011-08-29 13:11:46 +05301658 .set_ios = dw_mci_set_ios,
1659 .get_ro = dw_mci_get_ro,
1660 .get_cd = dw_mci_get_cd,
Shawn Lin935a6652016-01-14 09:08:02 +08001661 .hw_reset = dw_mci_hw_reset,
Shashidhar Hiremath1a5c8e12011-08-29 13:11:46 +05301662 .enable_sdio_irq = dw_mci_enable_sdio_irq,
Seungwon Jeon0976f162013-08-31 00:12:42 +09001663 .execute_tuning = dw_mci_execute_tuning,
Doug Anderson01730552014-08-22 19:17:51 +05301664 .card_busy = dw_mci_card_busy,
1665 .start_signal_voltage_switch = dw_mci_switch_voltage,
Doug Andersonb24c8b22014-12-02 15:42:46 -08001666 .init_card = dw_mci_init_card,
Seungwon Jeon80113132015-01-29 08:11:57 +05301667 .prepare_hs400_tuning = dw_mci_prepare_hs400_tuning,
Will Newtonf95f3852011-01-02 01:11:59 -05001668};
1669
1670static void dw_mci_request_end(struct dw_mci *host, struct mmc_request *mrq)
1671 __releases(&host->lock)
1672 __acquires(&host->lock)
1673{
1674 struct dw_mci_slot *slot;
1675 struct mmc_host *prev_mmc = host->cur_slot->mmc;
1676
1677 WARN_ON(host->cmd || host->data);
1678
1679 host->cur_slot->mrq = NULL;
1680 host->mrq = NULL;
1681 if (!list_empty(&host->queue)) {
1682 slot = list_entry(host->queue.next,
1683 struct dw_mci_slot, queue_node);
1684 list_del(&slot->queue_node);
Thomas Abraham4a909202012-09-17 18:16:35 +00001685 dev_vdbg(host->dev, "list not empty: %s is next\n",
Will Newtonf95f3852011-01-02 01:11:59 -05001686 mmc_hostname(slot->mmc));
1687 host->state = STATE_SENDING_CMD;
1688 dw_mci_start_request(host, slot);
1689 } else {
Thomas Abraham4a909202012-09-17 18:16:35 +00001690 dev_vdbg(host->dev, "list empty\n");
Doug Anderson01730552014-08-22 19:17:51 +05301691
1692 if (host->state == STATE_SENDING_CMD11)
1693 host->state = STATE_WAITING_CMD11_DONE;
1694 else
1695 host->state = STATE_IDLE;
Will Newtonf95f3852011-01-02 01:11:59 -05001696 }
1697
1698 spin_unlock(&host->lock);
1699 mmc_request_done(prev_mmc, mrq);
1700 spin_lock(&host->lock);
1701}
1702
Seungwon Jeone352c812013-08-31 00:14:17 +09001703static int dw_mci_command_complete(struct dw_mci *host, struct mmc_command *cmd)
Will Newtonf95f3852011-01-02 01:11:59 -05001704{
1705 u32 status = host->cmd_status;
1706
1707 host->cmd_status = 0;
1708
1709 /* Read the response from the card (up to 16 bytes) */
1710 if (cmd->flags & MMC_RSP_PRESENT) {
1711 if (cmd->flags & MMC_RSP_136) {
1712 cmd->resp[3] = mci_readl(host, RESP0);
1713 cmd->resp[2] = mci_readl(host, RESP1);
1714 cmd->resp[1] = mci_readl(host, RESP2);
1715 cmd->resp[0] = mci_readl(host, RESP3);
1716 } else {
1717 cmd->resp[0] = mci_readl(host, RESP0);
1718 cmd->resp[1] = 0;
1719 cmd->resp[2] = 0;
1720 cmd->resp[3] = 0;
1721 }
1722 }
1723
1724 if (status & SDMMC_INT_RTO)
1725 cmd->error = -ETIMEDOUT;
1726 else if ((cmd->flags & MMC_RSP_CRC) && (status & SDMMC_INT_RCRC))
1727 cmd->error = -EILSEQ;
1728 else if (status & SDMMC_INT_RESP_ERR)
1729 cmd->error = -EIO;
1730 else
1731 cmd->error = 0;
1732
Seungwon Jeone352c812013-08-31 00:14:17 +09001733 return cmd->error;
1734}
1735
1736static int dw_mci_data_complete(struct dw_mci *host, struct mmc_data *data)
1737{
Seungwon Jeon31bff452013-08-31 00:14:23 +09001738 u32 status = host->data_status;
Seungwon Jeone352c812013-08-31 00:14:17 +09001739
1740 if (status & DW_MCI_DATA_ERROR_FLAGS) {
1741 if (status & SDMMC_INT_DRTO) {
1742 data->error = -ETIMEDOUT;
1743 } else if (status & SDMMC_INT_DCRC) {
1744 data->error = -EILSEQ;
1745 } else if (status & SDMMC_INT_EBE) {
1746 if (host->dir_status ==
1747 DW_MCI_SEND_STATUS) {
1748 /*
1749 * No data CRC status was returned.
1750 * The number of bytes transferred
1751 * will be exaggerated in PIO mode.
1752 */
1753 data->bytes_xfered = 0;
1754 data->error = -ETIMEDOUT;
1755 } else if (host->dir_status ==
1756 DW_MCI_RECV_STATUS) {
Shawn Line7a1dec2016-08-22 10:57:16 +08001757 data->error = -EILSEQ;
Seungwon Jeone352c812013-08-31 00:14:17 +09001758 }
1759 } else {
1760 /* SDMMC_INT_SBE is included */
Shawn Line7a1dec2016-08-22 10:57:16 +08001761 data->error = -EILSEQ;
Seungwon Jeone352c812013-08-31 00:14:17 +09001762 }
1763
Doug Andersone6cc0122014-04-22 16:51:21 -07001764 dev_dbg(host->dev, "data error, status 0x%08x\n", status);
Seungwon Jeone352c812013-08-31 00:14:17 +09001765
1766 /*
1767 * After an error, there may be data lingering
Seungwon Jeon31bff452013-08-31 00:14:23 +09001768 * in the FIFO
Seungwon Jeone352c812013-08-31 00:14:17 +09001769 */
Sonny Rao3a33a942014-08-04 18:19:50 -07001770 dw_mci_reset(host);
Seungwon Jeone352c812013-08-31 00:14:17 +09001771 } else {
1772 data->bytes_xfered = data->blocks * data->blksz;
1773 data->error = 0;
1774 }
1775
1776 return data->error;
Will Newtonf95f3852011-01-02 01:11:59 -05001777}
1778
Addy Ke57e10482015-08-11 01:27:18 +09001779static void dw_mci_set_drto(struct dw_mci *host)
1780{
1781 unsigned int drto_clks;
1782 unsigned int drto_ms;
1783
1784 drto_clks = mci_readl(host, TMOUT) >> 8;
1785 drto_ms = DIV_ROUND_UP(drto_clks, host->bus_hz / 1000);
1786
1787 /* add a bit spare time */
1788 drto_ms += 10;
1789
1790 mod_timer(&host->dto_timer, jiffies + msecs_to_jiffies(drto_ms));
1791}
1792
Will Newtonf95f3852011-01-02 01:11:59 -05001793static void dw_mci_tasklet_func(unsigned long priv)
1794{
1795 struct dw_mci *host = (struct dw_mci *)priv;
1796 struct mmc_data *data;
1797 struct mmc_command *cmd;
Seungwon Jeone352c812013-08-31 00:14:17 +09001798 struct mmc_request *mrq;
Will Newtonf95f3852011-01-02 01:11:59 -05001799 enum dw_mci_state state;
1800 enum dw_mci_state prev_state;
Seungwon Jeone352c812013-08-31 00:14:17 +09001801 unsigned int err;
Will Newtonf95f3852011-01-02 01:11:59 -05001802
1803 spin_lock(&host->lock);
1804
1805 state = host->state;
1806 data = host->data;
Seungwon Jeone352c812013-08-31 00:14:17 +09001807 mrq = host->mrq;
Will Newtonf95f3852011-01-02 01:11:59 -05001808
1809 do {
1810 prev_state = state;
1811
1812 switch (state) {
1813 case STATE_IDLE:
Doug Anderson01730552014-08-22 19:17:51 +05301814 case STATE_WAITING_CMD11_DONE:
Will Newtonf95f3852011-01-02 01:11:59 -05001815 break;
1816
Doug Anderson01730552014-08-22 19:17:51 +05301817 case STATE_SENDING_CMD11:
Will Newtonf95f3852011-01-02 01:11:59 -05001818 case STATE_SENDING_CMD:
1819 if (!test_and_clear_bit(EVENT_CMD_COMPLETE,
1820 &host->pending_events))
1821 break;
1822
1823 cmd = host->cmd;
1824 host->cmd = NULL;
1825 set_bit(EVENT_CMD_COMPLETE, &host->completed_events);
Seungwon Jeone352c812013-08-31 00:14:17 +09001826 err = dw_mci_command_complete(host, cmd);
1827 if (cmd == mrq->sbc && !err) {
Seungwon Jeon053b3ce2011-12-22 18:01:29 +09001828 prev_state = state = STATE_SENDING_CMD;
1829 __dw_mci_start_request(host, host->cur_slot,
Seungwon Jeone352c812013-08-31 00:14:17 +09001830 mrq->cmd);
Seungwon Jeon053b3ce2011-12-22 18:01:29 +09001831 goto unlock;
1832 }
1833
Seungwon Jeone352c812013-08-31 00:14:17 +09001834 if (cmd->data && err) {
Doug Anderson46d17952016-04-26 10:03:58 +02001835 /*
1836 * During UHS tuning sequence, sending the stop
1837 * command after the response CRC error would
1838 * throw the system into a confused state
1839 * causing all future tuning phases to report
1840 * failure.
1841 *
1842 * In such case controller will move into a data
1843 * transfer state after a response error or
1844 * response CRC error. Let's let that finish
1845 * before trying to send a stop, so we'll go to
1846 * STATE_SENDING_DATA.
1847 *
1848 * Although letting the data transfer take place
1849 * will waste a bit of time (we already know
1850 * the command was bad), it can't cause any
1851 * errors since it's possible it would have
1852 * taken place anyway if this tasklet got
1853 * delayed. Allowing the transfer to take place
1854 * avoids races and keeps things simple.
1855 */
1856 if ((err != -ETIMEDOUT) &&
1857 (cmd->opcode == MMC_SEND_TUNING_BLOCK)) {
1858 state = STATE_SENDING_DATA;
1859 continue;
1860 }
1861
Seungwon Jeon71abb132013-08-31 00:13:59 +09001862 dw_mci_stop_dma(host);
Seungwon Jeon90c21432013-08-31 00:14:05 +09001863 send_stop_abort(host, data);
1864 state = STATE_SENDING_STOP;
1865 break;
Seungwon Jeon71abb132013-08-31 00:13:59 +09001866 }
1867
Seungwon Jeone352c812013-08-31 00:14:17 +09001868 if (!cmd->data || err) {
1869 dw_mci_request_end(host, mrq);
Will Newtonf95f3852011-01-02 01:11:59 -05001870 goto unlock;
1871 }
1872
1873 prev_state = state = STATE_SENDING_DATA;
1874 /* fall through */
1875
1876 case STATE_SENDING_DATA:
Doug Anderson2aa35462014-08-13 08:13:43 -07001877 /*
1878 * We could get a data error and never a transfer
1879 * complete so we'd better check for it here.
1880 *
1881 * Note that we don't really care if we also got a
1882 * transfer complete; stopping the DMA and sending an
1883 * abort won't hurt.
1884 */
Will Newtonf95f3852011-01-02 01:11:59 -05001885 if (test_and_clear_bit(EVENT_DATA_ERROR,
1886 &host->pending_events)) {
1887 dw_mci_stop_dma(host);
Jaehoon Chunge13c3c02016-11-17 16:40:37 +09001888 if (!(host->data_status & (SDMMC_INT_DRTO |
addy kebdb9a902015-02-20 10:55:25 +08001889 SDMMC_INT_EBE)))
1890 send_stop_abort(host, data);
Will Newtonf95f3852011-01-02 01:11:59 -05001891 state = STATE_DATA_ERROR;
1892 break;
1893 }
1894
1895 if (!test_and_clear_bit(EVENT_XFER_COMPLETE,
Addy Ke57e10482015-08-11 01:27:18 +09001896 &host->pending_events)) {
1897 /*
1898 * If all data-related interrupts don't come
1899 * within the given time in reading data state.
1900 */
Jaehoon Chung16a34572016-06-21 14:35:37 +09001901 if (host->dir_status == DW_MCI_RECV_STATUS)
Addy Ke57e10482015-08-11 01:27:18 +09001902 dw_mci_set_drto(host);
Will Newtonf95f3852011-01-02 01:11:59 -05001903 break;
Addy Ke57e10482015-08-11 01:27:18 +09001904 }
Will Newtonf95f3852011-01-02 01:11:59 -05001905
1906 set_bit(EVENT_XFER_COMPLETE, &host->completed_events);
Doug Anderson2aa35462014-08-13 08:13:43 -07001907
1908 /*
1909 * Handle an EVENT_DATA_ERROR that might have shown up
1910 * before the transfer completed. This might not have
1911 * been caught by the check above because the interrupt
1912 * could have gone off between the previous check and
1913 * the check for transfer complete.
1914 *
1915 * Technically this ought not be needed assuming we
1916 * get a DATA_COMPLETE eventually (we'll notice the
1917 * error and end the request), but it shouldn't hurt.
1918 *
1919 * This has the advantage of sending the stop command.
1920 */
1921 if (test_and_clear_bit(EVENT_DATA_ERROR,
1922 &host->pending_events)) {
1923 dw_mci_stop_dma(host);
Jaehoon Chunge13c3c02016-11-17 16:40:37 +09001924 if (!(host->data_status & (SDMMC_INT_DRTO |
addy kebdb9a902015-02-20 10:55:25 +08001925 SDMMC_INT_EBE)))
1926 send_stop_abort(host, data);
Doug Anderson2aa35462014-08-13 08:13:43 -07001927 state = STATE_DATA_ERROR;
1928 break;
1929 }
Will Newtonf95f3852011-01-02 01:11:59 -05001930 prev_state = state = STATE_DATA_BUSY;
Doug Anderson2aa35462014-08-13 08:13:43 -07001931
Will Newtonf95f3852011-01-02 01:11:59 -05001932 /* fall through */
1933
1934 case STATE_DATA_BUSY:
1935 if (!test_and_clear_bit(EVENT_DATA_COMPLETE,
Addy Ke57e10482015-08-11 01:27:18 +09001936 &host->pending_events)) {
1937 /*
1938 * If data error interrupt comes but data over
1939 * interrupt doesn't come within the given time.
1940 * in reading data state.
1941 */
Jaehoon Chung16a34572016-06-21 14:35:37 +09001942 if (host->dir_status == DW_MCI_RECV_STATUS)
Addy Ke57e10482015-08-11 01:27:18 +09001943 dw_mci_set_drto(host);
Will Newtonf95f3852011-01-02 01:11:59 -05001944 break;
Addy Ke57e10482015-08-11 01:27:18 +09001945 }
Will Newtonf95f3852011-01-02 01:11:59 -05001946
1947 host->data = NULL;
1948 set_bit(EVENT_DATA_COMPLETE, &host->completed_events);
Seungwon Jeone352c812013-08-31 00:14:17 +09001949 err = dw_mci_data_complete(host, data);
Will Newtonf95f3852011-01-02 01:11:59 -05001950
Seungwon Jeone352c812013-08-31 00:14:17 +09001951 if (!err) {
1952 if (!data->stop || mrq->sbc) {
Sachin Kamat17c8bc82014-02-25 15:18:28 +05301953 if (mrq->sbc && data->stop)
Seungwon Jeone352c812013-08-31 00:14:17 +09001954 data->stop->error = 0;
1955 dw_mci_request_end(host, mrq);
1956 goto unlock;
Will Newtonf95f3852011-01-02 01:11:59 -05001957 }
Will Newtonf95f3852011-01-02 01:11:59 -05001958
Seungwon Jeon90c21432013-08-31 00:14:05 +09001959 /* stop command for open-ended transfer*/
Seungwon Jeone352c812013-08-31 00:14:17 +09001960 if (data->stop)
1961 send_stop_abort(host, data);
Doug Anderson2aa35462014-08-13 08:13:43 -07001962 } else {
1963 /*
1964 * If we don't have a command complete now we'll
1965 * never get one since we just reset everything;
1966 * better end the request.
1967 *
1968 * If we do have a command complete we'll fall
1969 * through to the SENDING_STOP command and
1970 * everything will be peachy keen.
1971 */
1972 if (!test_bit(EVENT_CMD_COMPLETE,
1973 &host->pending_events)) {
1974 host->cmd = NULL;
1975 dw_mci_request_end(host, mrq);
1976 goto unlock;
1977 }
Seungwon Jeon90c21432013-08-31 00:14:05 +09001978 }
Seungwon Jeone352c812013-08-31 00:14:17 +09001979
1980 /*
1981 * If err has non-zero,
1982 * stop-abort command has been already issued.
1983 */
1984 prev_state = state = STATE_SENDING_STOP;
1985
Will Newtonf95f3852011-01-02 01:11:59 -05001986 /* fall through */
1987
1988 case STATE_SENDING_STOP:
1989 if (!test_and_clear_bit(EVENT_CMD_COMPLETE,
1990 &host->pending_events))
1991 break;
1992
Seungwon Jeon71abb132013-08-31 00:13:59 +09001993 /* CMD error in data command */
Seungwon Jeon31bff452013-08-31 00:14:23 +09001994 if (mrq->cmd->error && mrq->data)
Sonny Rao3a33a942014-08-04 18:19:50 -07001995 dw_mci_reset(host);
Seungwon Jeon71abb132013-08-31 00:13:59 +09001996
Will Newtonf95f3852011-01-02 01:11:59 -05001997 host->cmd = NULL;
Seungwon Jeon71abb132013-08-31 00:13:59 +09001998 host->data = NULL;
Seungwon Jeon90c21432013-08-31 00:14:05 +09001999
Jaehoon Chunge13c3c02016-11-17 16:40:37 +09002000 if (!mrq->sbc && mrq->stop)
Seungwon Jeone352c812013-08-31 00:14:17 +09002001 dw_mci_command_complete(host, mrq->stop);
Seungwon Jeon90c21432013-08-31 00:14:05 +09002002 else
2003 host->cmd_status = 0;
2004
Seungwon Jeone352c812013-08-31 00:14:17 +09002005 dw_mci_request_end(host, mrq);
Will Newtonf95f3852011-01-02 01:11:59 -05002006 goto unlock;
2007
2008 case STATE_DATA_ERROR:
2009 if (!test_and_clear_bit(EVENT_XFER_COMPLETE,
2010 &host->pending_events))
2011 break;
2012
2013 state = STATE_DATA_BUSY;
2014 break;
2015 }
2016 } while (state != prev_state);
2017
2018 host->state = state;
2019unlock:
2020 spin_unlock(&host->lock);
2021
2022}
2023
James Hogan34b664a2011-06-24 13:57:56 +01002024/* push final bytes to part_buf, only use during push */
2025static void dw_mci_set_part_bytes(struct dw_mci *host, void *buf, int cnt)
2026{
2027 memcpy((void *)&host->part_buf, buf, cnt);
2028 host->part_buf_count = cnt;
2029}
2030
2031/* append bytes to part_buf, only use during push */
2032static int dw_mci_push_part_bytes(struct dw_mci *host, void *buf, int cnt)
2033{
2034 cnt = min(cnt, (1 << host->data_shift) - host->part_buf_count);
2035 memcpy((void *)&host->part_buf + host->part_buf_count, buf, cnt);
2036 host->part_buf_count += cnt;
2037 return cnt;
2038}
2039
2040/* pull first bytes from part_buf, only use during pull */
2041static int dw_mci_pull_part_bytes(struct dw_mci *host, void *buf, int cnt)
2042{
Shawn Lin0e3a22c2015-08-03 15:07:21 +08002043 cnt = min_t(int, cnt, host->part_buf_count);
James Hogan34b664a2011-06-24 13:57:56 +01002044 if (cnt) {
2045 memcpy(buf, (void *)&host->part_buf + host->part_buf_start,
2046 cnt);
2047 host->part_buf_count -= cnt;
2048 host->part_buf_start += cnt;
2049 }
2050 return cnt;
2051}
2052
2053/* pull final bytes from the part_buf, assuming it's just been filled */
2054static void dw_mci_pull_final_bytes(struct dw_mci *host, void *buf, int cnt)
2055{
2056 memcpy(buf, &host->part_buf, cnt);
2057 host->part_buf_start = cnt;
2058 host->part_buf_count = (1 << host->data_shift) - cnt;
2059}
2060
Will Newtonf95f3852011-01-02 01:11:59 -05002061static void dw_mci_push_data16(struct dw_mci *host, void *buf, int cnt)
2062{
Markos Chandrascfbeb59c2013-03-12 10:53:13 +00002063 struct mmc_data *data = host->data;
2064 int init_cnt = cnt;
2065
James Hogan34b664a2011-06-24 13:57:56 +01002066 /* try and push anything in the part_buf */
2067 if (unlikely(host->part_buf_count)) {
2068 int len = dw_mci_push_part_bytes(host, buf, cnt);
Shawn Lin0e3a22c2015-08-03 15:07:21 +08002069
James Hogan34b664a2011-06-24 13:57:56 +01002070 buf += len;
2071 cnt -= len;
Markos Chandrascfbeb59c2013-03-12 10:53:13 +00002072 if (host->part_buf_count == 2) {
Ben Dooks76184ac2015-03-25 11:27:52 +00002073 mci_fifo_writew(host->fifo_reg, host->part_buf16);
James Hogan34b664a2011-06-24 13:57:56 +01002074 host->part_buf_count = 0;
2075 }
2076 }
2077#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
2078 if (unlikely((unsigned long)buf & 0x1)) {
2079 while (cnt >= 2) {
2080 u16 aligned_buf[64];
2081 int len = min(cnt & -2, (int)sizeof(aligned_buf));
2082 int items = len >> 1;
2083 int i;
2084 /* memcpy from input buffer into aligned buffer */
2085 memcpy(aligned_buf, buf, len);
2086 buf += len;
2087 cnt -= len;
2088 /* push data from aligned buffer into fifo */
2089 for (i = 0; i < items; ++i)
Ben Dooks76184ac2015-03-25 11:27:52 +00002090 mci_fifo_writew(host->fifo_reg, aligned_buf[i]);
James Hogan34b664a2011-06-24 13:57:56 +01002091 }
2092 } else
2093#endif
2094 {
2095 u16 *pdata = buf;
Shawn Lin0e3a22c2015-08-03 15:07:21 +08002096
James Hogan34b664a2011-06-24 13:57:56 +01002097 for (; cnt >= 2; cnt -= 2)
Ben Dooks76184ac2015-03-25 11:27:52 +00002098 mci_fifo_writew(host->fifo_reg, *pdata++);
James Hogan34b664a2011-06-24 13:57:56 +01002099 buf = pdata;
2100 }
2101 /* put anything remaining in the part_buf */
2102 if (cnt) {
2103 dw_mci_set_part_bytes(host, buf, cnt);
Markos Chandrascfbeb59c2013-03-12 10:53:13 +00002104 /* Push data if we have reached the expected data length */
2105 if ((data->bytes_xfered + init_cnt) ==
2106 (data->blksz * data->blocks))
Ben Dooks76184ac2015-03-25 11:27:52 +00002107 mci_fifo_writew(host->fifo_reg, host->part_buf16);
Will Newtonf95f3852011-01-02 01:11:59 -05002108 }
2109}
2110
2111static void dw_mci_pull_data16(struct dw_mci *host, void *buf, int cnt)
2112{
James Hogan34b664a2011-06-24 13:57:56 +01002113#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
2114 if (unlikely((unsigned long)buf & 0x1)) {
2115 while (cnt >= 2) {
2116 /* pull data from fifo into aligned buffer */
2117 u16 aligned_buf[64];
2118 int len = min(cnt & -2, (int)sizeof(aligned_buf));
2119 int items = len >> 1;
2120 int i;
Shawn Lin0e3a22c2015-08-03 15:07:21 +08002121
James Hogan34b664a2011-06-24 13:57:56 +01002122 for (i = 0; i < items; ++i)
Ben Dooks76184ac2015-03-25 11:27:52 +00002123 aligned_buf[i] = mci_fifo_readw(host->fifo_reg);
James Hogan34b664a2011-06-24 13:57:56 +01002124 /* memcpy from aligned buffer into output buffer */
2125 memcpy(buf, aligned_buf, len);
2126 buf += len;
2127 cnt -= len;
2128 }
2129 } else
2130#endif
2131 {
2132 u16 *pdata = buf;
Shawn Lin0e3a22c2015-08-03 15:07:21 +08002133
James Hogan34b664a2011-06-24 13:57:56 +01002134 for (; cnt >= 2; cnt -= 2)
Ben Dooks76184ac2015-03-25 11:27:52 +00002135 *pdata++ = mci_fifo_readw(host->fifo_reg);
James Hogan34b664a2011-06-24 13:57:56 +01002136 buf = pdata;
2137 }
2138 if (cnt) {
Ben Dooks76184ac2015-03-25 11:27:52 +00002139 host->part_buf16 = mci_fifo_readw(host->fifo_reg);
James Hogan34b664a2011-06-24 13:57:56 +01002140 dw_mci_pull_final_bytes(host, buf, cnt);
Will Newtonf95f3852011-01-02 01:11:59 -05002141 }
2142}
2143
2144static void dw_mci_push_data32(struct dw_mci *host, void *buf, int cnt)
2145{
Markos Chandrascfbeb59c2013-03-12 10:53:13 +00002146 struct mmc_data *data = host->data;
2147 int init_cnt = cnt;
2148
James Hogan34b664a2011-06-24 13:57:56 +01002149 /* try and push anything in the part_buf */
2150 if (unlikely(host->part_buf_count)) {
2151 int len = dw_mci_push_part_bytes(host, buf, cnt);
Shawn Lin0e3a22c2015-08-03 15:07:21 +08002152
James Hogan34b664a2011-06-24 13:57:56 +01002153 buf += len;
2154 cnt -= len;
Markos Chandrascfbeb59c2013-03-12 10:53:13 +00002155 if (host->part_buf_count == 4) {
Ben Dooks76184ac2015-03-25 11:27:52 +00002156 mci_fifo_writel(host->fifo_reg, host->part_buf32);
James Hogan34b664a2011-06-24 13:57:56 +01002157 host->part_buf_count = 0;
2158 }
2159 }
2160#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
2161 if (unlikely((unsigned long)buf & 0x3)) {
2162 while (cnt >= 4) {
2163 u32 aligned_buf[32];
2164 int len = min(cnt & -4, (int)sizeof(aligned_buf));
2165 int items = len >> 2;
2166 int i;
2167 /* memcpy from input buffer into aligned buffer */
2168 memcpy(aligned_buf, buf, len);
2169 buf += len;
2170 cnt -= len;
2171 /* push data from aligned buffer into fifo */
2172 for (i = 0; i < items; ++i)
Ben Dooks76184ac2015-03-25 11:27:52 +00002173 mci_fifo_writel(host->fifo_reg, aligned_buf[i]);
James Hogan34b664a2011-06-24 13:57:56 +01002174 }
2175 } else
2176#endif
2177 {
2178 u32 *pdata = buf;
Shawn Lin0e3a22c2015-08-03 15:07:21 +08002179
James Hogan34b664a2011-06-24 13:57:56 +01002180 for (; cnt >= 4; cnt -= 4)
Ben Dooks76184ac2015-03-25 11:27:52 +00002181 mci_fifo_writel(host->fifo_reg, *pdata++);
James Hogan34b664a2011-06-24 13:57:56 +01002182 buf = pdata;
2183 }
2184 /* put anything remaining in the part_buf */
2185 if (cnt) {
2186 dw_mci_set_part_bytes(host, buf, cnt);
Markos Chandrascfbeb59c2013-03-12 10:53:13 +00002187 /* Push data if we have reached the expected data length */
2188 if ((data->bytes_xfered + init_cnt) ==
2189 (data->blksz * data->blocks))
Ben Dooks76184ac2015-03-25 11:27:52 +00002190 mci_fifo_writel(host->fifo_reg, host->part_buf32);
Will Newtonf95f3852011-01-02 01:11:59 -05002191 }
2192}
2193
2194static void dw_mci_pull_data32(struct dw_mci *host, void *buf, int cnt)
2195{
James Hogan34b664a2011-06-24 13:57:56 +01002196#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
2197 if (unlikely((unsigned long)buf & 0x3)) {
2198 while (cnt >= 4) {
2199 /* pull data from fifo into aligned buffer */
2200 u32 aligned_buf[32];
2201 int len = min(cnt & -4, (int)sizeof(aligned_buf));
2202 int items = len >> 2;
2203 int i;
Shawn Lin0e3a22c2015-08-03 15:07:21 +08002204
James Hogan34b664a2011-06-24 13:57:56 +01002205 for (i = 0; i < items; ++i)
Ben Dooks76184ac2015-03-25 11:27:52 +00002206 aligned_buf[i] = mci_fifo_readl(host->fifo_reg);
James Hogan34b664a2011-06-24 13:57:56 +01002207 /* memcpy from aligned buffer into output buffer */
2208 memcpy(buf, aligned_buf, len);
2209 buf += len;
2210 cnt -= len;
2211 }
2212 } else
2213#endif
2214 {
2215 u32 *pdata = buf;
Shawn Lin0e3a22c2015-08-03 15:07:21 +08002216
James Hogan34b664a2011-06-24 13:57:56 +01002217 for (; cnt >= 4; cnt -= 4)
Ben Dooks76184ac2015-03-25 11:27:52 +00002218 *pdata++ = mci_fifo_readl(host->fifo_reg);
James Hogan34b664a2011-06-24 13:57:56 +01002219 buf = pdata;
2220 }
2221 if (cnt) {
Ben Dooks76184ac2015-03-25 11:27:52 +00002222 host->part_buf32 = mci_fifo_readl(host->fifo_reg);
James Hogan34b664a2011-06-24 13:57:56 +01002223 dw_mci_pull_final_bytes(host, buf, cnt);
Will Newtonf95f3852011-01-02 01:11:59 -05002224 }
2225}
2226
2227static void dw_mci_push_data64(struct dw_mci *host, void *buf, int cnt)
2228{
Markos Chandrascfbeb59c2013-03-12 10:53:13 +00002229 struct mmc_data *data = host->data;
2230 int init_cnt = cnt;
2231
James Hogan34b664a2011-06-24 13:57:56 +01002232 /* try and push anything in the part_buf */
2233 if (unlikely(host->part_buf_count)) {
2234 int len = dw_mci_push_part_bytes(host, buf, cnt);
Shawn Lin0e3a22c2015-08-03 15:07:21 +08002235
James Hogan34b664a2011-06-24 13:57:56 +01002236 buf += len;
2237 cnt -= len;
Seungwon Jeonc09fbd72013-03-25 16:28:22 +09002238
Markos Chandrascfbeb59c2013-03-12 10:53:13 +00002239 if (host->part_buf_count == 8) {
Ben Dooks76184ac2015-03-25 11:27:52 +00002240 mci_fifo_writeq(host->fifo_reg, host->part_buf);
James Hogan34b664a2011-06-24 13:57:56 +01002241 host->part_buf_count = 0;
2242 }
2243 }
2244#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
2245 if (unlikely((unsigned long)buf & 0x7)) {
2246 while (cnt >= 8) {
2247 u64 aligned_buf[16];
2248 int len = min(cnt & -8, (int)sizeof(aligned_buf));
2249 int items = len >> 3;
2250 int i;
2251 /* memcpy from input buffer into aligned buffer */
2252 memcpy(aligned_buf, buf, len);
2253 buf += len;
2254 cnt -= len;
2255 /* push data from aligned buffer into fifo */
2256 for (i = 0; i < items; ++i)
Ben Dooks76184ac2015-03-25 11:27:52 +00002257 mci_fifo_writeq(host->fifo_reg, aligned_buf[i]);
James Hogan34b664a2011-06-24 13:57:56 +01002258 }
2259 } else
2260#endif
2261 {
2262 u64 *pdata = buf;
Shawn Lin0e3a22c2015-08-03 15:07:21 +08002263
James Hogan34b664a2011-06-24 13:57:56 +01002264 for (; cnt >= 8; cnt -= 8)
Ben Dooks76184ac2015-03-25 11:27:52 +00002265 mci_fifo_writeq(host->fifo_reg, *pdata++);
James Hogan34b664a2011-06-24 13:57:56 +01002266 buf = pdata;
2267 }
2268 /* put anything remaining in the part_buf */
2269 if (cnt) {
2270 dw_mci_set_part_bytes(host, buf, cnt);
Markos Chandrascfbeb59c2013-03-12 10:53:13 +00002271 /* Push data if we have reached the expected data length */
2272 if ((data->bytes_xfered + init_cnt) ==
2273 (data->blksz * data->blocks))
Ben Dooks76184ac2015-03-25 11:27:52 +00002274 mci_fifo_writeq(host->fifo_reg, host->part_buf);
Will Newtonf95f3852011-01-02 01:11:59 -05002275 }
2276}
2277
2278static void dw_mci_pull_data64(struct dw_mci *host, void *buf, int cnt)
2279{
James Hogan34b664a2011-06-24 13:57:56 +01002280#ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS
2281 if (unlikely((unsigned long)buf & 0x7)) {
2282 while (cnt >= 8) {
2283 /* pull data from fifo into aligned buffer */
2284 u64 aligned_buf[16];
2285 int len = min(cnt & -8, (int)sizeof(aligned_buf));
2286 int items = len >> 3;
2287 int i;
Shawn Lin0e3a22c2015-08-03 15:07:21 +08002288
James Hogan34b664a2011-06-24 13:57:56 +01002289 for (i = 0; i < items; ++i)
Ben Dooks76184ac2015-03-25 11:27:52 +00002290 aligned_buf[i] = mci_fifo_readq(host->fifo_reg);
2291
James Hogan34b664a2011-06-24 13:57:56 +01002292 /* memcpy from aligned buffer into output buffer */
2293 memcpy(buf, aligned_buf, len);
2294 buf += len;
2295 cnt -= len;
2296 }
2297 } else
2298#endif
2299 {
2300 u64 *pdata = buf;
Shawn Lin0e3a22c2015-08-03 15:07:21 +08002301
James Hogan34b664a2011-06-24 13:57:56 +01002302 for (; cnt >= 8; cnt -= 8)
Ben Dooks76184ac2015-03-25 11:27:52 +00002303 *pdata++ = mci_fifo_readq(host->fifo_reg);
James Hogan34b664a2011-06-24 13:57:56 +01002304 buf = pdata;
Will Newtonf95f3852011-01-02 01:11:59 -05002305 }
James Hogan34b664a2011-06-24 13:57:56 +01002306 if (cnt) {
Ben Dooks76184ac2015-03-25 11:27:52 +00002307 host->part_buf = mci_fifo_readq(host->fifo_reg);
James Hogan34b664a2011-06-24 13:57:56 +01002308 dw_mci_pull_final_bytes(host, buf, cnt);
2309 }
2310}
2311
2312static void dw_mci_pull_data(struct dw_mci *host, void *buf, int cnt)
2313{
2314 int len;
2315
2316 /* get remaining partial bytes */
2317 len = dw_mci_pull_part_bytes(host, buf, cnt);
2318 if (unlikely(len == cnt))
2319 return;
2320 buf += len;
2321 cnt -= len;
2322
2323 /* get the rest of the data */
2324 host->pull_data(host, buf, cnt);
Will Newtonf95f3852011-01-02 01:11:59 -05002325}
2326
Kyoungil Kim87a74d32013-01-22 16:46:30 +09002327static void dw_mci_read_data_pio(struct dw_mci *host, bool dto)
Will Newtonf95f3852011-01-02 01:11:59 -05002328{
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09002329 struct sg_mapping_iter *sg_miter = &host->sg_miter;
2330 void *buf;
2331 unsigned int offset;
Will Newtonf95f3852011-01-02 01:11:59 -05002332 struct mmc_data *data = host->data;
2333 int shift = host->data_shift;
2334 u32 status;
Markos Chandras3e4b0d82013-03-22 12:50:05 -04002335 unsigned int len;
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09002336 unsigned int remain, fcnt;
Will Newtonf95f3852011-01-02 01:11:59 -05002337
2338 do {
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09002339 if (!sg_miter_next(sg_miter))
2340 goto done;
Will Newtonf95f3852011-01-02 01:11:59 -05002341
Imre Deak4225fc82013-02-27 17:02:57 -08002342 host->sg = sg_miter->piter.sg;
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09002343 buf = sg_miter->addr;
2344 remain = sg_miter->length;
2345 offset = 0;
2346
2347 do {
2348 fcnt = (SDMMC_GET_FCNT(mci_readl(host, STATUS))
2349 << shift) + host->part_buf_count;
2350 len = min(remain, fcnt);
2351 if (!len)
2352 break;
2353 dw_mci_pull_data(host, (void *)(buf + offset), len);
Markos Chandras3e4b0d82013-03-22 12:50:05 -04002354 data->bytes_xfered += len;
Will Newtonf95f3852011-01-02 01:11:59 -05002355 offset += len;
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09002356 remain -= len;
2357 } while (remain);
Will Newtonf95f3852011-01-02 01:11:59 -05002358
Seungwon Jeone74f3a92012-08-01 09:30:46 +09002359 sg_miter->consumed = offset;
Will Newtonf95f3852011-01-02 01:11:59 -05002360 status = mci_readl(host, MINTSTS);
2361 mci_writel(host, RINTSTS, SDMMC_INT_RXDR);
Kyoungil Kim87a74d32013-01-22 16:46:30 +09002362 /* if the RXDR is ready read again */
2363 } while ((status & SDMMC_INT_RXDR) ||
2364 (dto && SDMMC_GET_FCNT(mci_readl(host, STATUS))));
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09002365
2366 if (!remain) {
2367 if (!sg_miter_next(sg_miter))
2368 goto done;
2369 sg_miter->consumed = 0;
2370 }
2371 sg_miter_stop(sg_miter);
Will Newtonf95f3852011-01-02 01:11:59 -05002372 return;
2373
2374done:
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09002375 sg_miter_stop(sg_miter);
2376 host->sg = NULL;
Shawn Lin0e3a22c2015-08-03 15:07:21 +08002377 smp_wmb(); /* drain writebuffer */
Will Newtonf95f3852011-01-02 01:11:59 -05002378 set_bit(EVENT_XFER_COMPLETE, &host->pending_events);
2379}
2380
2381static void dw_mci_write_data_pio(struct dw_mci *host)
2382{
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09002383 struct sg_mapping_iter *sg_miter = &host->sg_miter;
2384 void *buf;
2385 unsigned int offset;
Will Newtonf95f3852011-01-02 01:11:59 -05002386 struct mmc_data *data = host->data;
2387 int shift = host->data_shift;
2388 u32 status;
Markos Chandras3e4b0d82013-03-22 12:50:05 -04002389 unsigned int len;
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09002390 unsigned int fifo_depth = host->fifo_depth;
2391 unsigned int remain, fcnt;
Will Newtonf95f3852011-01-02 01:11:59 -05002392
2393 do {
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09002394 if (!sg_miter_next(sg_miter))
2395 goto done;
Will Newtonf95f3852011-01-02 01:11:59 -05002396
Imre Deak4225fc82013-02-27 17:02:57 -08002397 host->sg = sg_miter->piter.sg;
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09002398 buf = sg_miter->addr;
2399 remain = sg_miter->length;
2400 offset = 0;
2401
2402 do {
2403 fcnt = ((fifo_depth -
2404 SDMMC_GET_FCNT(mci_readl(host, STATUS)))
2405 << shift) - host->part_buf_count;
2406 len = min(remain, fcnt);
2407 if (!len)
2408 break;
2409 host->push_data(host, (void *)(buf + offset), len);
Markos Chandras3e4b0d82013-03-22 12:50:05 -04002410 data->bytes_xfered += len;
Will Newtonf95f3852011-01-02 01:11:59 -05002411 offset += len;
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09002412 remain -= len;
2413 } while (remain);
Will Newtonf95f3852011-01-02 01:11:59 -05002414
Seungwon Jeone74f3a92012-08-01 09:30:46 +09002415 sg_miter->consumed = offset;
Will Newtonf95f3852011-01-02 01:11:59 -05002416 status = mci_readl(host, MINTSTS);
2417 mci_writel(host, RINTSTS, SDMMC_INT_TXDR);
Will Newtonf95f3852011-01-02 01:11:59 -05002418 } while (status & SDMMC_INT_TXDR); /* if TXDR write again */
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09002419
2420 if (!remain) {
2421 if (!sg_miter_next(sg_miter))
2422 goto done;
2423 sg_miter->consumed = 0;
2424 }
2425 sg_miter_stop(sg_miter);
Will Newtonf95f3852011-01-02 01:11:59 -05002426 return;
2427
2428done:
Seungwon Jeonf9c2a0d2012-02-09 14:32:43 +09002429 sg_miter_stop(sg_miter);
2430 host->sg = NULL;
Shawn Lin0e3a22c2015-08-03 15:07:21 +08002431 smp_wmb(); /* drain writebuffer */
Will Newtonf95f3852011-01-02 01:11:59 -05002432 set_bit(EVENT_XFER_COMPLETE, &host->pending_events);
2433}
2434
2435static void dw_mci_cmd_interrupt(struct dw_mci *host, u32 status)
2436{
2437 if (!host->cmd_status)
2438 host->cmd_status = status;
2439
Shawn Lin0e3a22c2015-08-03 15:07:21 +08002440 smp_wmb(); /* drain writebuffer */
Will Newtonf95f3852011-01-02 01:11:59 -05002441
2442 set_bit(EVENT_CMD_COMPLETE, &host->pending_events);
2443 tasklet_schedule(&host->tasklet);
2444}
2445
Doug Anderson6130e7a2014-10-14 09:33:09 -07002446static void dw_mci_handle_cd(struct dw_mci *host)
2447{
2448 int i;
2449
2450 for (i = 0; i < host->num_slots; i++) {
2451 struct dw_mci_slot *slot = host->slot[i];
2452
2453 if (!slot)
2454 continue;
2455
2456 if (slot->mmc->ops->card_event)
2457 slot->mmc->ops->card_event(slot->mmc);
2458 mmc_detect_change(slot->mmc,
2459 msecs_to_jiffies(host->pdata->detect_delay_ms));
2460 }
2461}
2462
Will Newtonf95f3852011-01-02 01:11:59 -05002463static irqreturn_t dw_mci_interrupt(int irq, void *dev_id)
2464{
2465 struct dw_mci *host = dev_id;
Seungwon Jeon182c9082012-08-01 09:30:30 +09002466 u32 pending;
Shashidhar Hiremath1a5c8e12011-08-29 13:11:46 +05302467 int i;
Will Newtonf95f3852011-01-02 01:11:59 -05002468
Markos Chandras1fb5f682013-03-12 10:53:11 +00002469 pending = mci_readl(host, MINTSTS); /* read-only mask reg */
2470
2471 if (pending) {
Doug Anderson01730552014-08-22 19:17:51 +05302472 /* Check volt switch first, since it can look like an error */
2473 if ((host->state == STATE_SENDING_CMD11) &&
2474 (pending & SDMMC_INT_VOLT_SWITCH)) {
Doug Anderson49ba0302015-04-03 11:13:07 -07002475 unsigned long irqflags;
Doug Anderson5c935162015-03-09 16:18:21 -07002476
Doug Anderson01730552014-08-22 19:17:51 +05302477 mci_writel(host, RINTSTS, SDMMC_INT_VOLT_SWITCH);
2478 pending &= ~SDMMC_INT_VOLT_SWITCH;
Doug Anderson49ba0302015-04-03 11:13:07 -07002479
2480 /*
2481 * Hold the lock; we know cmd11_timer can't be kicked
2482 * off after the lock is released, so safe to delete.
2483 */
2484 spin_lock_irqsave(&host->irq_lock, irqflags);
Doug Anderson01730552014-08-22 19:17:51 +05302485 dw_mci_cmd_interrupt(host, pending);
Doug Anderson49ba0302015-04-03 11:13:07 -07002486 spin_unlock_irqrestore(&host->irq_lock, irqflags);
2487
2488 del_timer(&host->cmd11_timer);
Doug Anderson01730552014-08-22 19:17:51 +05302489 }
2490
Will Newtonf95f3852011-01-02 01:11:59 -05002491 if (pending & DW_MCI_CMD_ERROR_FLAGS) {
2492 mci_writel(host, RINTSTS, DW_MCI_CMD_ERROR_FLAGS);
Seungwon Jeon182c9082012-08-01 09:30:30 +09002493 host->cmd_status = pending;
Shawn Lin0e3a22c2015-08-03 15:07:21 +08002494 smp_wmb(); /* drain writebuffer */
Will Newtonf95f3852011-01-02 01:11:59 -05002495 set_bit(EVENT_CMD_COMPLETE, &host->pending_events);
Will Newtonf95f3852011-01-02 01:11:59 -05002496 }
2497
2498 if (pending & DW_MCI_DATA_ERROR_FLAGS) {
2499 /* if there is an error report DATA_ERROR */
2500 mci_writel(host, RINTSTS, DW_MCI_DATA_ERROR_FLAGS);
Seungwon Jeon182c9082012-08-01 09:30:30 +09002501 host->data_status = pending;
Shawn Lin0e3a22c2015-08-03 15:07:21 +08002502 smp_wmb(); /* drain writebuffer */
Will Newtonf95f3852011-01-02 01:11:59 -05002503 set_bit(EVENT_DATA_ERROR, &host->pending_events);
Seungwon Jeon9b2026a2012-08-01 09:30:40 +09002504 tasklet_schedule(&host->tasklet);
Will Newtonf95f3852011-01-02 01:11:59 -05002505 }
2506
2507 if (pending & SDMMC_INT_DATA_OVER) {
Jaehoon Chung16a34572016-06-21 14:35:37 +09002508 del_timer(&host->dto_timer);
Addy Ke57e10482015-08-11 01:27:18 +09002509
Will Newtonf95f3852011-01-02 01:11:59 -05002510 mci_writel(host, RINTSTS, SDMMC_INT_DATA_OVER);
2511 if (!host->data_status)
Seungwon Jeon182c9082012-08-01 09:30:30 +09002512 host->data_status = pending;
Shawn Lin0e3a22c2015-08-03 15:07:21 +08002513 smp_wmb(); /* drain writebuffer */
Will Newtonf95f3852011-01-02 01:11:59 -05002514 if (host->dir_status == DW_MCI_RECV_STATUS) {
2515 if (host->sg != NULL)
Kyoungil Kim87a74d32013-01-22 16:46:30 +09002516 dw_mci_read_data_pio(host, true);
Will Newtonf95f3852011-01-02 01:11:59 -05002517 }
2518 set_bit(EVENT_DATA_COMPLETE, &host->pending_events);
2519 tasklet_schedule(&host->tasklet);
2520 }
2521
2522 if (pending & SDMMC_INT_RXDR) {
2523 mci_writel(host, RINTSTS, SDMMC_INT_RXDR);
James Hoganb40af3a2011-06-24 13:54:06 +01002524 if (host->dir_status == DW_MCI_RECV_STATUS && host->sg)
Kyoungil Kim87a74d32013-01-22 16:46:30 +09002525 dw_mci_read_data_pio(host, false);
Will Newtonf95f3852011-01-02 01:11:59 -05002526 }
2527
2528 if (pending & SDMMC_INT_TXDR) {
2529 mci_writel(host, RINTSTS, SDMMC_INT_TXDR);
James Hoganb40af3a2011-06-24 13:54:06 +01002530 if (host->dir_status == DW_MCI_SEND_STATUS && host->sg)
Will Newtonf95f3852011-01-02 01:11:59 -05002531 dw_mci_write_data_pio(host);
2532 }
2533
2534 if (pending & SDMMC_INT_CMD_DONE) {
2535 mci_writel(host, RINTSTS, SDMMC_INT_CMD_DONE);
Seungwon Jeon182c9082012-08-01 09:30:30 +09002536 dw_mci_cmd_interrupt(host, pending);
Will Newtonf95f3852011-01-02 01:11:59 -05002537 }
2538
2539 if (pending & SDMMC_INT_CD) {
2540 mci_writel(host, RINTSTS, SDMMC_INT_CD);
Doug Anderson6130e7a2014-10-14 09:33:09 -07002541 dw_mci_handle_cd(host);
Will Newtonf95f3852011-01-02 01:11:59 -05002542 }
2543
Shashidhar Hiremath1a5c8e12011-08-29 13:11:46 +05302544 /* Handle SDIO Interrupts */
2545 for (i = 0; i < host->num_slots; i++) {
2546 struct dw_mci_slot *slot = host->slot[i];
Doug Andersoned2540e2015-02-25 10:11:52 -08002547
2548 if (!slot)
2549 continue;
2550
Addy Ke76756232014-11-04 22:03:09 +08002551 if (pending & SDMMC_INT_SDIO(slot->sdio_id)) {
2552 mci_writel(host, RINTSTS,
2553 SDMMC_INT_SDIO(slot->sdio_id));
Shashidhar Hiremath1a5c8e12011-08-29 13:11:46 +05302554 mmc_signal_sdio_irq(slot->mmc);
2555 }
2556 }
2557
Markos Chandras1fb5f682013-03-12 10:53:11 +00002558 }
Will Newtonf95f3852011-01-02 01:11:59 -05002559
Shawn Lin3fc7eae2015-09-16 14:41:23 +08002560 if (host->use_dma != TRANS_MODE_IDMAC)
2561 return IRQ_HANDLED;
2562
2563 /* Handle IDMA interrupts */
Prabu Thangamuthu69d99fd2014-10-20 07:12:33 +00002564 if (host->dma_64bit_address == 1) {
2565 pending = mci_readl(host, IDSTS64);
2566 if (pending & (SDMMC_IDMAC_INT_TI | SDMMC_IDMAC_INT_RI)) {
2567 mci_writel(host, IDSTS64, SDMMC_IDMAC_INT_TI |
2568 SDMMC_IDMAC_INT_RI);
2569 mci_writel(host, IDSTS64, SDMMC_IDMAC_INT_NI);
Shawn Linfaecf412016-06-24 15:39:52 +08002570 if (!test_bit(EVENT_DATA_ERROR, &host->pending_events))
2571 host->dma_ops->complete((void *)host);
Prabu Thangamuthu69d99fd2014-10-20 07:12:33 +00002572 }
2573 } else {
2574 pending = mci_readl(host, IDSTS);
2575 if (pending & (SDMMC_IDMAC_INT_TI | SDMMC_IDMAC_INT_RI)) {
2576 mci_writel(host, IDSTS, SDMMC_IDMAC_INT_TI |
2577 SDMMC_IDMAC_INT_RI);
2578 mci_writel(host, IDSTS, SDMMC_IDMAC_INT_NI);
Shawn Linfaecf412016-06-24 15:39:52 +08002579 if (!test_bit(EVENT_DATA_ERROR, &host->pending_events))
2580 host->dma_ops->complete((void *)host);
Prabu Thangamuthu69d99fd2014-10-20 07:12:33 +00002581 }
Will Newtonf95f3852011-01-02 01:11:59 -05002582 }
Will Newtonf95f3852011-01-02 01:11:59 -05002583
2584 return IRQ_HANDLED;
2585}
2586
Jaehoon Chung36c179a2012-08-23 20:31:48 +09002587static int dw_mci_init_slot(struct dw_mci *host, unsigned int id)
Will Newtonf95f3852011-01-02 01:11:59 -05002588{
2589 struct mmc_host *mmc;
2590 struct dw_mci_slot *slot;
Arnd Bergmanne95baf12012-11-08 14:26:11 +00002591 const struct dw_mci_drv_data *drv_data = host->drv_data;
Thomas Abraham800d78b2012-09-17 18:16:42 +00002592 int ctrl_id, ret;
Seungwon Jeon1f44a2a2013-08-31 00:13:31 +09002593 u32 freq[2];
Will Newtonf95f3852011-01-02 01:11:59 -05002594
Thomas Abraham4a909202012-09-17 18:16:35 +00002595 mmc = mmc_alloc_host(sizeof(struct dw_mci_slot), host->dev);
Will Newtonf95f3852011-01-02 01:11:59 -05002596 if (!mmc)
2597 return -ENOMEM;
2598
2599 slot = mmc_priv(mmc);
2600 slot->id = id;
Addy Ke76756232014-11-04 22:03:09 +08002601 slot->sdio_id = host->sdio_id0 + id;
Will Newtonf95f3852011-01-02 01:11:59 -05002602 slot->mmc = mmc;
2603 slot->host = host;
Thomas Abrahamc91eab42012-09-17 18:16:40 +00002604 host->slot[id] = slot;
Will Newtonf95f3852011-01-02 01:11:59 -05002605
2606 mmc->ops = &dw_mci_ops;
Seungwon Jeon1f44a2a2013-08-31 00:13:31 +09002607 if (of_property_read_u32_array(host->dev->of_node,
2608 "clock-freq-min-max", freq, 2)) {
2609 mmc->f_min = DW_MCI_FREQ_MIN;
2610 mmc->f_max = DW_MCI_FREQ_MAX;
2611 } else {
2612 mmc->f_min = freq[0];
2613 mmc->f_max = freq[1];
2614 }
Will Newtonf95f3852011-01-02 01:11:59 -05002615
Yuvaraj CD51da2242014-08-22 19:17:50 +05302616 /*if there are external regulators, get them*/
2617 ret = mmc_regulator_get_supply(mmc);
2618 if (ret == -EPROBE_DEFER)
Doug Anderson3cf890f2014-08-25 11:19:04 -07002619 goto err_host_allocated;
Yuvaraj CD51da2242014-08-22 19:17:50 +05302620
2621 if (!mmc->ocr_avail)
2622 mmc->ocr_avail = MMC_VDD_32_33 | MMC_VDD_33_34;
Will Newtonf95f3852011-01-02 01:11:59 -05002623
Jaehoon Chungfc3d7722011-02-25 11:08:15 +09002624 if (host->pdata->caps)
2625 mmc->caps = host->pdata->caps;
Jaehoon Chungfc3d7722011-02-25 11:08:15 +09002626
Jaehoon Chung6024e162016-07-15 10:54:50 +09002627 /*
2628 * Support MMC_CAP_ERASE by default.
2629 * It needs to use trim/discard/erase commands.
2630 */
2631 mmc->caps |= MMC_CAP_ERASE;
2632
Abhilash Kesavanab269122012-11-19 10:26:21 +05302633 if (host->pdata->pm_caps)
2634 mmc->pm_caps = host->pdata->pm_caps;
2635
Thomas Abraham800d78b2012-09-17 18:16:42 +00002636 if (host->dev->of_node) {
2637 ctrl_id = of_alias_get_id(host->dev->of_node, "mshc");
2638 if (ctrl_id < 0)
2639 ctrl_id = 0;
2640 } else {
2641 ctrl_id = to_platform_device(host->dev)->id;
2642 }
James Hogancb27a842012-10-16 09:43:08 +01002643 if (drv_data && drv_data->caps)
2644 mmc->caps |= drv_data->caps[ctrl_id];
Thomas Abraham800d78b2012-09-17 18:16:42 +00002645
Seungwon Jeon4f408cc2011-12-09 14:55:52 +09002646 if (host->pdata->caps2)
2647 mmc->caps2 = host->pdata->caps2;
Seungwon Jeon4f408cc2011-12-09 14:55:52 +09002648
Doug Anderson3cf890f2014-08-25 11:19:04 -07002649 ret = mmc_of_parse(mmc);
2650 if (ret)
2651 goto err_host_allocated;
Will Newtonf95f3852011-01-02 01:11:59 -05002652
Jaehoon Chung2b708df2015-08-06 16:23:25 +09002653 /* Useful defaults if platform data is unset. */
Shawn Lin3fc7eae2015-09-16 14:41:23 +08002654 if (host->use_dma == TRANS_MODE_IDMAC) {
Jaehoon Chung2b708df2015-08-06 16:23:25 +09002655 mmc->max_segs = host->ring_size;
Jaehoon Chung225faf82016-05-04 11:24:14 +09002656 mmc->max_blk_size = 65535;
Jaehoon Chung2b708df2015-08-06 16:23:25 +09002657 mmc->max_seg_size = 0x1000;
2658 mmc->max_req_size = mmc->max_seg_size * host->ring_size;
2659 mmc->max_blk_count = mmc->max_req_size / 512;
Shawn Lin3fc7eae2015-09-16 14:41:23 +08002660 } else if (host->use_dma == TRANS_MODE_EDMAC) {
2661 mmc->max_segs = 64;
Jaehoon Chung225faf82016-05-04 11:24:14 +09002662 mmc->max_blk_size = 65535;
Shawn Lin3fc7eae2015-09-16 14:41:23 +08002663 mmc->max_blk_count = 65535;
2664 mmc->max_req_size =
2665 mmc->max_blk_size * mmc->max_blk_count;
2666 mmc->max_seg_size = mmc->max_req_size;
Will Newtonf95f3852011-01-02 01:11:59 -05002667 } else {
Shawn Lin3fc7eae2015-09-16 14:41:23 +08002668 /* TRANS_MODE_PIO */
Jaehoon Chung2b708df2015-08-06 16:23:25 +09002669 mmc->max_segs = 64;
Jaehoon Chung225faf82016-05-04 11:24:14 +09002670 mmc->max_blk_size = 65535; /* BLKSIZ is 16 bits */
Jaehoon Chung2b708df2015-08-06 16:23:25 +09002671 mmc->max_blk_count = 512;
2672 mmc->max_req_size = mmc->max_blk_size *
2673 mmc->max_blk_count;
2674 mmc->max_seg_size = mmc->max_req_size;
Jaehoon Chunga39e5742012-02-04 17:00:27 -05002675 }
Will Newtonf95f3852011-01-02 01:11:59 -05002676
Shawn Linc0834a52016-05-27 14:36:40 +08002677 dw_mci_get_cd(mmc);
Jaehoon Chungae0eb342014-03-03 11:36:48 +09002678
Jaehoon Chung0cea5292013-02-15 23:45:45 +09002679 ret = mmc_add_host(mmc);
2680 if (ret)
Doug Anderson3cf890f2014-08-25 11:19:04 -07002681 goto err_host_allocated;
Will Newtonf95f3852011-01-02 01:11:59 -05002682
2683#if defined(CONFIG_DEBUG_FS)
2684 dw_mci_init_debugfs(slot);
2685#endif
2686
Will Newtonf95f3852011-01-02 01:11:59 -05002687 return 0;
Thomas Abraham800d78b2012-09-17 18:16:42 +00002688
Doug Anderson3cf890f2014-08-25 11:19:04 -07002689err_host_allocated:
Thomas Abraham800d78b2012-09-17 18:16:42 +00002690 mmc_free_host(mmc);
Yuvaraj CD51da2242014-08-22 19:17:50 +05302691 return ret;
Will Newtonf95f3852011-01-02 01:11:59 -05002692}
2693
2694static void dw_mci_cleanup_slot(struct dw_mci_slot *slot, unsigned int id)
2695{
Will Newtonf95f3852011-01-02 01:11:59 -05002696 /* Debugfs stuff is cleaned up by mmc core */
2697 mmc_remove_host(slot->mmc);
2698 slot->host->slot[id] = NULL;
2699 mmc_free_host(slot->mmc);
2700}
2701
2702static void dw_mci_init_dma(struct dw_mci *host)
2703{
Prabu Thangamuthu69d99fd2014-10-20 07:12:33 +00002704 int addr_config;
Shawn Lin3fc7eae2015-09-16 14:41:23 +08002705 struct device *dev = host->dev;
2706 struct device_node *np = dev->of_node;
Prabu Thangamuthu69d99fd2014-10-20 07:12:33 +00002707
Shawn Lin3fc7eae2015-09-16 14:41:23 +08002708 /*
2709 * Check tansfer mode from HCON[17:16]
2710 * Clear the ambiguous description of dw_mmc databook:
2711 * 2b'00: No DMA Interface -> Actually means using Internal DMA block
2712 * 2b'01: DesignWare DMA Interface -> Synopsys DW-DMA block
2713 * 2b'10: Generic DMA Interface -> non-Synopsys generic DMA block
2714 * 2b'11: Non DW DMA Interface -> pio only
2715 * Compared to DesignWare DMA Interface, Generic DMA Interface has a
2716 * simpler request/acknowledge handshake mechanism and both of them
2717 * are regarded as external dma master for dw_mmc.
2718 */
2719 host->use_dma = SDMMC_GET_TRANS_MODE(mci_readl(host, HCON));
2720 if (host->use_dma == DMA_INTERFACE_IDMA) {
2721 host->use_dma = TRANS_MODE_IDMAC;
2722 } else if (host->use_dma == DMA_INTERFACE_DWDMA ||
2723 host->use_dma == DMA_INTERFACE_GDMA) {
2724 host->use_dma = TRANS_MODE_EDMAC;
Prabu Thangamuthu69d99fd2014-10-20 07:12:33 +00002725 } else {
Will Newtonf95f3852011-01-02 01:11:59 -05002726 goto no_dma;
2727 }
2728
2729 /* Determine which DMA interface to use */
Shawn Lin3fc7eae2015-09-16 14:41:23 +08002730 if (host->use_dma == TRANS_MODE_IDMAC) {
2731 /*
2732 * Check ADDR_CONFIG bit in HCON to find
2733 * IDMAC address bus width
2734 */
Shawn Lin70692752015-09-16 14:41:37 +08002735 addr_config = SDMMC_GET_ADDR_CONFIG(mci_readl(host, HCON));
Will Newtonf95f3852011-01-02 01:11:59 -05002736
Shawn Lin3fc7eae2015-09-16 14:41:23 +08002737 if (addr_config == 1) {
2738 /* host supports IDMAC in 64-bit address mode */
2739 host->dma_64bit_address = 1;
2740 dev_info(host->dev,
2741 "IDMAC supports 64-bit address mode.\n");
2742 if (!dma_set_mask(host->dev, DMA_BIT_MASK(64)))
2743 dma_set_coherent_mask(host->dev,
2744 DMA_BIT_MASK(64));
2745 } else {
2746 /* host supports IDMAC in 32-bit address mode */
2747 host->dma_64bit_address = 0;
2748 dev_info(host->dev,
2749 "IDMAC supports 32-bit address mode.\n");
2750 }
2751
2752 /* Alloc memory for sg translation */
Shawn Lincc190d42016-09-02 12:14:39 +08002753 host->sg_cpu = dmam_alloc_coherent(host->dev,
2754 DESC_RING_BUF_SZ,
Shawn Lin3fc7eae2015-09-16 14:41:23 +08002755 &host->sg_dma, GFP_KERNEL);
2756 if (!host->sg_cpu) {
2757 dev_err(host->dev,
2758 "%s: could not alloc DMA memory\n",
2759 __func__);
2760 goto no_dma;
2761 }
2762
2763 host->dma_ops = &dw_mci_idmac_ops;
2764 dev_info(host->dev, "Using internal DMA controller.\n");
2765 } else {
2766 /* TRANS_MODE_EDMAC: check dma bindings again */
2767 if ((of_property_count_strings(np, "dma-names") < 0) ||
2768 (!of_find_property(np, "dmas", NULL))) {
2769 goto no_dma;
2770 }
2771 host->dma_ops = &dw_mci_edmac_ops;
2772 dev_info(host->dev, "Using external DMA controller.\n");
2773 }
Will Newtonf95f3852011-01-02 01:11:59 -05002774
Jaehoon Chunge1631f92012-04-18 15:42:31 +09002775 if (host->dma_ops->init && host->dma_ops->start &&
2776 host->dma_ops->stop && host->dma_ops->cleanup) {
Will Newtonf95f3852011-01-02 01:11:59 -05002777 if (host->dma_ops->init(host)) {
Shawn Lin0e3a22c2015-08-03 15:07:21 +08002778 dev_err(host->dev, "%s: Unable to initialize DMA Controller.\n",
2779 __func__);
Will Newtonf95f3852011-01-02 01:11:59 -05002780 goto no_dma;
2781 }
2782 } else {
Thomas Abraham4a909202012-09-17 18:16:35 +00002783 dev_err(host->dev, "DMA initialization not found.\n");
Will Newtonf95f3852011-01-02 01:11:59 -05002784 goto no_dma;
2785 }
2786
Will Newtonf95f3852011-01-02 01:11:59 -05002787 return;
2788
2789no_dma:
Thomas Abraham4a909202012-09-17 18:16:35 +00002790 dev_info(host->dev, "Using PIO mode.\n");
Shawn Lin3fc7eae2015-09-16 14:41:23 +08002791 host->use_dma = TRANS_MODE_PIO;
Will Newtonf95f3852011-01-02 01:11:59 -05002792}
2793
Seungwon Jeon31bff452013-08-31 00:14:23 +09002794static bool dw_mci_ctrl_reset(struct dw_mci *host, u32 reset)
Will Newtonf95f3852011-01-02 01:11:59 -05002795{
2796 unsigned long timeout = jiffies + msecs_to_jiffies(500);
Seungwon Jeon31bff452013-08-31 00:14:23 +09002797 u32 ctrl;
Will Newtonf95f3852011-01-02 01:11:59 -05002798
Seungwon Jeon31bff452013-08-31 00:14:23 +09002799 ctrl = mci_readl(host, CTRL);
2800 ctrl |= reset;
2801 mci_writel(host, CTRL, ctrl);
Will Newtonf95f3852011-01-02 01:11:59 -05002802
2803 /* wait till resets clear */
2804 do {
2805 ctrl = mci_readl(host, CTRL);
Seungwon Jeon31bff452013-08-31 00:14:23 +09002806 if (!(ctrl & reset))
Will Newtonf95f3852011-01-02 01:11:59 -05002807 return true;
2808 } while (time_before(jiffies, timeout));
2809
Seungwon Jeon31bff452013-08-31 00:14:23 +09002810 dev_err(host->dev,
2811 "Timeout resetting block (ctrl reset %#x)\n",
2812 ctrl & reset);
Will Newtonf95f3852011-01-02 01:11:59 -05002813
2814 return false;
2815}
2816
Sonny Rao3a33a942014-08-04 18:19:50 -07002817static bool dw_mci_reset(struct dw_mci *host)
Seungwon Jeon31bff452013-08-31 00:14:23 +09002818{
Sonny Rao3a33a942014-08-04 18:19:50 -07002819 u32 flags = SDMMC_CTRL_RESET | SDMMC_CTRL_FIFO_RESET;
2820 bool ret = false;
2821
Seungwon Jeon31bff452013-08-31 00:14:23 +09002822 /*
2823 * Reseting generates a block interrupt, hence setting
2824 * the scatter-gather pointer to NULL.
2825 */
2826 if (host->sg) {
2827 sg_miter_stop(&host->sg_miter);
2828 host->sg = NULL;
2829 }
2830
Sonny Rao3a33a942014-08-04 18:19:50 -07002831 if (host->use_dma)
2832 flags |= SDMMC_CTRL_DMA_RESET;
Seungwon Jeon31bff452013-08-31 00:14:23 +09002833
Sonny Rao3a33a942014-08-04 18:19:50 -07002834 if (dw_mci_ctrl_reset(host, flags)) {
2835 /*
2836 * In all cases we clear the RAWINTS register to clear any
2837 * interrupts.
2838 */
2839 mci_writel(host, RINTSTS, 0xFFFFFFFF);
2840
2841 /* if using dma we wait for dma_req to clear */
2842 if (host->use_dma) {
2843 unsigned long timeout = jiffies + msecs_to_jiffies(500);
2844 u32 status;
Shawn Lin0e3a22c2015-08-03 15:07:21 +08002845
Sonny Rao3a33a942014-08-04 18:19:50 -07002846 do {
2847 status = mci_readl(host, STATUS);
2848 if (!(status & SDMMC_STATUS_DMA_REQ))
2849 break;
2850 cpu_relax();
2851 } while (time_before(jiffies, timeout));
2852
2853 if (status & SDMMC_STATUS_DMA_REQ) {
2854 dev_err(host->dev,
Shawn Lin0e3a22c2015-08-03 15:07:21 +08002855 "%s: Timeout waiting for dma_req to clear during reset\n",
2856 __func__);
Sonny Rao3a33a942014-08-04 18:19:50 -07002857 goto ciu_out;
2858 }
2859
2860 /* when using DMA next we reset the fifo again */
2861 if (!dw_mci_ctrl_reset(host, SDMMC_CTRL_FIFO_RESET))
2862 goto ciu_out;
2863 }
2864 } else {
2865 /* if the controller reset bit did clear, then set clock regs */
2866 if (!(mci_readl(host, CTRL) & SDMMC_CTRL_RESET)) {
Shawn Lin0e3a22c2015-08-03 15:07:21 +08002867 dev_err(host->dev,
2868 "%s: fifo/dma reset bits didn't clear but ciu was reset, doing clock update\n",
Sonny Rao3a33a942014-08-04 18:19:50 -07002869 __func__);
2870 goto ciu_out;
2871 }
2872 }
2873
Shawn Lin3fc7eae2015-09-16 14:41:23 +08002874 if (host->use_dma == TRANS_MODE_IDMAC)
2875 /* It is also recommended that we reset and reprogram idmac */
2876 dw_mci_idmac_reset(host);
Sonny Rao3a33a942014-08-04 18:19:50 -07002877
2878 ret = true;
2879
2880ciu_out:
2881 /* After a CTRL reset we need to have CIU set clock registers */
2882 mci_send_cmd(host->cur_slot, SDMMC_CMD_UPD_CLK, 0);
2883
2884 return ret;
Seungwon Jeon31bff452013-08-31 00:14:23 +09002885}
2886
Doug Anderson5c935162015-03-09 16:18:21 -07002887static void dw_mci_cmd11_timer(unsigned long arg)
2888{
2889 struct dw_mci *host = (struct dw_mci *)arg;
2890
Doug Andersonfd674192015-04-03 11:13:06 -07002891 if (host->state != STATE_SENDING_CMD11) {
2892 dev_warn(host->dev, "Unexpected CMD11 timeout\n");
2893 return;
2894 }
Doug Anderson5c935162015-03-09 16:18:21 -07002895
2896 host->cmd_status = SDMMC_INT_RTO;
2897 set_bit(EVENT_CMD_COMPLETE, &host->pending_events);
2898 tasklet_schedule(&host->tasklet);
2899}
2900
Addy Ke57e10482015-08-11 01:27:18 +09002901static void dw_mci_dto_timer(unsigned long arg)
2902{
2903 struct dw_mci *host = (struct dw_mci *)arg;
2904
2905 switch (host->state) {
2906 case STATE_SENDING_DATA:
2907 case STATE_DATA_BUSY:
2908 /*
2909 * If DTO interrupt does NOT come in sending data state,
2910 * we should notify the driver to terminate current transfer
2911 * and report a data timeout to the core.
2912 */
2913 host->data_status = SDMMC_INT_DRTO;
2914 set_bit(EVENT_DATA_ERROR, &host->pending_events);
2915 set_bit(EVENT_DATA_COMPLETE, &host->pending_events);
2916 tasklet_schedule(&host->tasklet);
2917 break;
2918 default:
2919 break;
2920 }
2921}
2922
Thomas Abrahamc91eab42012-09-17 18:16:40 +00002923#ifdef CONFIG_OF
Thomas Abrahamc91eab42012-09-17 18:16:40 +00002924static struct dw_mci_board *dw_mci_parse_dt(struct dw_mci *host)
2925{
2926 struct dw_mci_board *pdata;
2927 struct device *dev = host->dev;
2928 struct device_node *np = dev->of_node;
Arnd Bergmanne95baf12012-11-08 14:26:11 +00002929 const struct dw_mci_drv_data *drv_data = host->drv_data;
Shawn Line8cc37b2016-01-21 14:52:52 +08002930 int ret;
Doug Anderson3c6d89e2013-06-07 10:28:30 -07002931 u32 clock_frequency;
Thomas Abrahamc91eab42012-09-17 18:16:40 +00002932
2933 pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL);
Beomho Seobf3707e2014-12-23 21:07:33 +09002934 if (!pdata)
Thomas Abrahamc91eab42012-09-17 18:16:40 +00002935 return ERR_PTR(-ENOMEM);
Thomas Abrahamc91eab42012-09-17 18:16:40 +00002936
Guodong Xud6786fe2016-08-12 16:51:26 +08002937 /* find reset controller when exist */
Jaehoon Chung3a667e32016-10-31 11:49:42 +09002938 pdata->rstc = devm_reset_control_get_optional(dev, "reset");
Guodong Xud6786fe2016-08-12 16:51:26 +08002939 if (IS_ERR(pdata->rstc)) {
2940 if (PTR_ERR(pdata->rstc) == -EPROBE_DEFER)
2941 return ERR_PTR(-EPROBE_DEFER);
2942 }
2943
Thomas Abrahamc91eab42012-09-17 18:16:40 +00002944 /* find out number of slots supported */
Shawn Lin8a629d22016-02-02 14:11:25 +08002945 of_property_read_u32(np, "num-slots", &pdata->num_slots);
Thomas Abrahamc91eab42012-09-17 18:16:40 +00002946
Thomas Abrahamc91eab42012-09-17 18:16:40 +00002947 if (of_property_read_u32(np, "fifo-depth", &pdata->fifo_depth))
Shawn Lin0e3a22c2015-08-03 15:07:21 +08002948 dev_info(dev,
2949 "fifo-depth property not found, using value of FIFOTH register as default\n");
Thomas Abrahamc91eab42012-09-17 18:16:40 +00002950
2951 of_property_read_u32(np, "card-detect-delay", &pdata->detect_delay_ms);
2952
Doug Anderson3c6d89e2013-06-07 10:28:30 -07002953 if (!of_property_read_u32(np, "clock-frequency", &clock_frequency))
2954 pdata->bus_hz = clock_frequency;
2955
James Hogancb27a842012-10-16 09:43:08 +01002956 if (drv_data && drv_data->parse_dt) {
2957 ret = drv_data->parse_dt(host);
Thomas Abraham800d78b2012-09-17 18:16:42 +00002958 if (ret)
2959 return ERR_PTR(ret);
2960 }
2961
Thomas Abrahamc91eab42012-09-17 18:16:40 +00002962 return pdata;
2963}
2964
2965#else /* CONFIG_OF */
2966static struct dw_mci_board *dw_mci_parse_dt(struct dw_mci *host)
2967{
2968 return ERR_PTR(-EINVAL);
2969}
2970#endif /* CONFIG_OF */
2971
Doug Andersonfa0c3282015-02-25 10:11:51 -08002972static void dw_mci_enable_cd(struct dw_mci *host)
2973{
Doug Andersonfa0c3282015-02-25 10:11:51 -08002974 unsigned long irqflags;
2975 u32 temp;
2976 int i;
Shawn Line8cc37b2016-01-21 14:52:52 +08002977 struct dw_mci_slot *slot;
Doug Andersonfa0c3282015-02-25 10:11:51 -08002978
Shawn Line8cc37b2016-01-21 14:52:52 +08002979 /*
2980 * No need for CD if all slots have a non-error GPIO
2981 * as well as broken card detection is found.
2982 */
Doug Andersonfa0c3282015-02-25 10:11:51 -08002983 for (i = 0; i < host->num_slots; i++) {
Shawn Line8cc37b2016-01-21 14:52:52 +08002984 slot = host->slot[i];
2985 if (slot->mmc->caps & MMC_CAP_NEEDS_POLL)
2986 return;
Doug Andersonfa0c3282015-02-25 10:11:51 -08002987
Arnd Bergmann287980e2016-05-27 23:23:25 +02002988 if (mmc_gpio_get_cd(slot->mmc) < 0)
Doug Andersonfa0c3282015-02-25 10:11:51 -08002989 break;
2990 }
2991 if (i == host->num_slots)
2992 return;
2993
2994 spin_lock_irqsave(&host->irq_lock, irqflags);
2995 temp = mci_readl(host, INTMASK);
2996 temp |= SDMMC_INT_CD;
2997 mci_writel(host, INTMASK, temp);
2998 spin_unlock_irqrestore(&host->irq_lock, irqflags);
2999}
3000
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05303001int dw_mci_probe(struct dw_mci *host)
Will Newtonf95f3852011-01-02 01:11:59 -05003002{
Arnd Bergmanne95baf12012-11-08 14:26:11 +00003003 const struct dw_mci_drv_data *drv_data = host->drv_data;
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05303004 int width, i, ret = 0;
Will Newtonf95f3852011-01-02 01:11:59 -05003005 u32 fifo_size;
Thomas Abraham1c2215b2012-09-17 18:16:37 +00003006 int init_slots = 0;
Will Newtonf95f3852011-01-02 01:11:59 -05003007
Thomas Abrahamc91eab42012-09-17 18:16:40 +00003008 if (!host->pdata) {
3009 host->pdata = dw_mci_parse_dt(host);
Guodong Xud6786fe2016-08-12 16:51:26 +08003010 if (PTR_ERR(host->pdata) == -EPROBE_DEFER) {
3011 return -EPROBE_DEFER;
3012 } else if (IS_ERR(host->pdata)) {
Thomas Abrahamc91eab42012-09-17 18:16:40 +00003013 dev_err(host->dev, "platform data not available\n");
3014 return -EINVAL;
3015 }
Will Newtonf95f3852011-01-02 01:11:59 -05003016 }
3017
Seungwon Jeon780f22a2012-11-28 19:26:03 +09003018 host->biu_clk = devm_clk_get(host->dev, "biu");
Thomas Abrahamf90a0612012-09-17 18:16:38 +00003019 if (IS_ERR(host->biu_clk)) {
3020 dev_dbg(host->dev, "biu clock not available\n");
3021 } else {
3022 ret = clk_prepare_enable(host->biu_clk);
3023 if (ret) {
3024 dev_err(host->dev, "failed to enable biu clock\n");
Thomas Abrahamf90a0612012-09-17 18:16:38 +00003025 return ret;
3026 }
Will Newtonf95f3852011-01-02 01:11:59 -05003027 }
3028
Seungwon Jeon780f22a2012-11-28 19:26:03 +09003029 host->ciu_clk = devm_clk_get(host->dev, "ciu");
Thomas Abrahamf90a0612012-09-17 18:16:38 +00003030 if (IS_ERR(host->ciu_clk)) {
3031 dev_dbg(host->dev, "ciu clock not available\n");
Doug Anderson3c6d89e2013-06-07 10:28:30 -07003032 host->bus_hz = host->pdata->bus_hz;
Thomas Abrahamf90a0612012-09-17 18:16:38 +00003033 } else {
3034 ret = clk_prepare_enable(host->ciu_clk);
3035 if (ret) {
3036 dev_err(host->dev, "failed to enable ciu clock\n");
Thomas Abrahamf90a0612012-09-17 18:16:38 +00003037 goto err_clk_biu;
3038 }
Thomas Abrahamf90a0612012-09-17 18:16:38 +00003039
Doug Anderson3c6d89e2013-06-07 10:28:30 -07003040 if (host->pdata->bus_hz) {
3041 ret = clk_set_rate(host->ciu_clk, host->pdata->bus_hz);
3042 if (ret)
3043 dev_warn(host->dev,
Jaehoon Chung612de4c2014-03-03 11:36:42 +09003044 "Unable to set bus rate to %uHz\n",
Doug Anderson3c6d89e2013-06-07 10:28:30 -07003045 host->pdata->bus_hz);
3046 }
Thomas Abrahamf90a0612012-09-17 18:16:38 +00003047 host->bus_hz = clk_get_rate(host->ciu_clk);
Doug Anderson3c6d89e2013-06-07 10:28:30 -07003048 }
Thomas Abrahamf90a0612012-09-17 18:16:38 +00003049
Jaehoon Chung612de4c2014-03-03 11:36:42 +09003050 if (!host->bus_hz) {
3051 dev_err(host->dev,
3052 "Platform data must supply bus speed\n");
3053 ret = -ENODEV;
3054 goto err_clk_ciu;
3055 }
3056
Yuvaraj Kumar C D002f0d52013-08-31 00:12:19 +09003057 if (drv_data && drv_data->init) {
3058 ret = drv_data->init(host);
3059 if (ret) {
3060 dev_err(host->dev,
3061 "implementation specific init failed\n");
3062 goto err_clk_ciu;
3063 }
3064 }
3065
Guodong Xud6786fe2016-08-12 16:51:26 +08003066 if (!IS_ERR(host->pdata->rstc)) {
3067 reset_control_assert(host->pdata->rstc);
3068 usleep_range(10, 50);
3069 reset_control_deassert(host->pdata->rstc);
3070 }
3071
Doug Anderson5c935162015-03-09 16:18:21 -07003072 setup_timer(&host->cmd11_timer,
3073 dw_mci_cmd11_timer, (unsigned long)host);
3074
Jaehoon Chung16a34572016-06-21 14:35:37 +09003075 setup_timer(&host->dto_timer,
3076 dw_mci_dto_timer, (unsigned long)host);
Addy Ke57e10482015-08-11 01:27:18 +09003077
Will Newtonf95f3852011-01-02 01:11:59 -05003078 spin_lock_init(&host->lock);
Doug Andersonf8c58c12014-12-02 15:42:47 -08003079 spin_lock_init(&host->irq_lock);
Will Newtonf95f3852011-01-02 01:11:59 -05003080 INIT_LIST_HEAD(&host->queue);
3081
Will Newtonf95f3852011-01-02 01:11:59 -05003082 /*
3083 * Get the host data width - this assumes that HCON has been set with
3084 * the correct values.
3085 */
Shawn Lin70692752015-09-16 14:41:37 +08003086 i = SDMMC_GET_HDATA_WIDTH(mci_readl(host, HCON));
Will Newtonf95f3852011-01-02 01:11:59 -05003087 if (!i) {
3088 host->push_data = dw_mci_push_data16;
3089 host->pull_data = dw_mci_pull_data16;
3090 width = 16;
3091 host->data_shift = 1;
3092 } else if (i == 2) {
3093 host->push_data = dw_mci_push_data64;
3094 host->pull_data = dw_mci_pull_data64;
3095 width = 64;
3096 host->data_shift = 3;
3097 } else {
3098 /* Check for a reserved value, and warn if it is */
3099 WARN((i != 1),
3100 "HCON reports a reserved host data width!\n"
3101 "Defaulting to 32-bit access.\n");
3102 host->push_data = dw_mci_push_data32;
3103 host->pull_data = dw_mci_pull_data32;
3104 width = 32;
3105 host->data_shift = 2;
3106 }
3107
3108 /* Reset all blocks */
Shawn Lin37444152016-01-22 15:43:12 +08003109 if (!dw_mci_ctrl_reset(host, SDMMC_CTRL_ALL_RESET_FLAGS)) {
3110 ret = -ENODEV;
3111 goto err_clk_ciu;
3112 }
Seungwon Jeon141a7122012-05-22 13:01:03 +09003113
3114 host->dma_ops = host->pdata->dma_ops;
3115 dw_mci_init_dma(host);
Will Newtonf95f3852011-01-02 01:11:59 -05003116
3117 /* Clear the interrupts for the host controller */
3118 mci_writel(host, RINTSTS, 0xFFFFFFFF);
3119 mci_writel(host, INTMASK, 0); /* disable all mmc interrupt first */
3120
3121 /* Put in max timeout */
3122 mci_writel(host, TMOUT, 0xFFFFFFFF);
3123
3124 /*
3125 * FIFO threshold settings RxMark = fifo_size / 2 - 1,
3126 * Tx Mark = fifo_size / 2 DMA Size = 8
3127 */
James Hoganb86d8252011-06-24 13:57:18 +01003128 if (!host->pdata->fifo_depth) {
3129 /*
3130 * Power-on value of RX_WMark is FIFO_DEPTH-1, but this may
3131 * have been overwritten by the bootloader, just like we're
3132 * about to do, so if you know the value for your hardware, you
3133 * should put it in the platform data.
3134 */
3135 fifo_size = mci_readl(host, FIFOTH);
Jaehoon Chung8234e862012-01-11 09:28:21 +00003136 fifo_size = 1 + ((fifo_size >> 16) & 0xfff);
James Hoganb86d8252011-06-24 13:57:18 +01003137 } else {
3138 fifo_size = host->pdata->fifo_depth;
3139 }
3140 host->fifo_depth = fifo_size;
Seungwon Jeon52426892013-08-31 00:13:42 +09003141 host->fifoth_val =
3142 SDMMC_SET_FIFOTH(0x2, fifo_size / 2 - 1, fifo_size / 2);
Jaehoon Chunge61cf112011-03-17 20:32:33 +09003143 mci_writel(host, FIFOTH, host->fifoth_val);
Will Newtonf95f3852011-01-02 01:11:59 -05003144
3145 /* disable clock to CIU */
3146 mci_writel(host, CLKENA, 0);
3147 mci_writel(host, CLKSRC, 0);
3148
James Hogan63008762013-03-12 10:43:54 +00003149 /*
3150 * In 2.40a spec, Data offset is changed.
3151 * Need to check the version-id and set data-offset for DATA register.
3152 */
3153 host->verid = SDMMC_GET_VERID(mci_readl(host, VERID));
3154 dev_info(host->dev, "Version ID is %04x\n", host->verid);
3155
3156 if (host->verid < DW_MMC_240A)
Ben Dooks76184ac2015-03-25 11:27:52 +00003157 host->fifo_reg = host->regs + DATA_OFFSET;
James Hogan63008762013-03-12 10:43:54 +00003158 else
Ben Dooks76184ac2015-03-25 11:27:52 +00003159 host->fifo_reg = host->regs + DATA_240A_OFFSET;
James Hogan63008762013-03-12 10:43:54 +00003160
Will Newtonf95f3852011-01-02 01:11:59 -05003161 tasklet_init(&host->tasklet, dw_mci_tasklet_func, (unsigned long)host);
Seungwon Jeon780f22a2012-11-28 19:26:03 +09003162 ret = devm_request_irq(host->dev, host->irq, dw_mci_interrupt,
3163 host->irq_flags, "dw-mci", host);
Will Newtonf95f3852011-01-02 01:11:59 -05003164 if (ret)
Doug Anderson6130e7a2014-10-14 09:33:09 -07003165 goto err_dmaunmap;
Will Newtonf95f3852011-01-02 01:11:59 -05003166
Will Newtonf95f3852011-01-02 01:11:59 -05003167 if (host->pdata->num_slots)
3168 host->num_slots = host->pdata->num_slots;
3169 else
Shawn Lin8a629d22016-02-02 14:11:25 +08003170 host->num_slots = 1;
3171
3172 if (host->num_slots < 1 ||
3173 host->num_slots > SDMMC_GET_SLOT_NUM(mci_readl(host, HCON))) {
3174 dev_err(host->dev,
3175 "Platform data must supply correct num_slots.\n");
3176 ret = -ENODEV;
3177 goto err_clk_ciu;
3178 }
Will Newtonf95f3852011-01-02 01:11:59 -05003179
Yuvaraj CD2da1d7f2012-10-08 14:29:51 +05303180 /*
Doug Andersonfa0c3282015-02-25 10:11:51 -08003181 * Enable interrupts for command done, data over, data empty,
Yuvaraj CD2da1d7f2012-10-08 14:29:51 +05303182 * receive ready and error such as transmit, receive timeout, crc error
3183 */
Yuvaraj CD2da1d7f2012-10-08 14:29:51 +05303184 mci_writel(host, INTMASK, SDMMC_INT_CMD_DONE | SDMMC_INT_DATA_OVER |
3185 SDMMC_INT_TXDR | SDMMC_INT_RXDR |
Doug Andersonfa0c3282015-02-25 10:11:51 -08003186 DW_MCI_ERROR_FLAGS);
Shawn Lin0e3a22c2015-08-03 15:07:21 +08003187 /* Enable mci interrupt */
3188 mci_writel(host, CTRL, SDMMC_CTRL_INT_ENABLE);
Yuvaraj CD2da1d7f2012-10-08 14:29:51 +05303189
Shawn Lin0e3a22c2015-08-03 15:07:21 +08003190 dev_info(host->dev,
3191 "DW MMC controller at irq %d,%d bit host data width,%u deep fifo\n",
Yuvaraj CD2da1d7f2012-10-08 14:29:51 +05303192 host->irq, width, fifo_size);
3193
Will Newtonf95f3852011-01-02 01:11:59 -05003194 /* We need at least one slot to succeed */
3195 for (i = 0; i < host->num_slots; i++) {
3196 ret = dw_mci_init_slot(host, i);
Thomas Abraham1c2215b2012-09-17 18:16:37 +00003197 if (ret)
3198 dev_dbg(host->dev, "slot %d init failed\n", i);
3199 else
3200 init_slots++;
3201 }
3202
3203 if (init_slots) {
3204 dev_info(host->dev, "%d slots initialized\n", init_slots);
3205 } else {
Shawn Lin0e3a22c2015-08-03 15:07:21 +08003206 dev_dbg(host->dev,
3207 "attempted to initialize %d slots, but failed on all\n",
3208 host->num_slots);
Doug Anderson6130e7a2014-10-14 09:33:09 -07003209 goto err_dmaunmap;
Will Newtonf95f3852011-01-02 01:11:59 -05003210 }
3211
Doug Andersonb793f652015-03-11 15:15:14 -07003212 /* Now that slots are all setup, we can enable card detect */
3213 dw_mci_enable_cd(host);
3214
Will Newtonf95f3852011-01-02 01:11:59 -05003215 return 0;
3216
Will Newtonf95f3852011-01-02 01:11:59 -05003217err_dmaunmap:
3218 if (host->use_dma && host->dma_ops->exit)
3219 host->dma_ops->exit(host);
Thomas Abrahamf90a0612012-09-17 18:16:38 +00003220
Guodong Xud6786fe2016-08-12 16:51:26 +08003221 if (!IS_ERR(host->pdata->rstc))
3222 reset_control_assert(host->pdata->rstc);
3223
Thomas Abrahamf90a0612012-09-17 18:16:38 +00003224err_clk_ciu:
Jaehoon Chung7037f3b2016-07-15 10:54:08 +09003225 clk_disable_unprepare(host->ciu_clk);
Seungwon Jeon780f22a2012-11-28 19:26:03 +09003226
Thomas Abrahamf90a0612012-09-17 18:16:38 +00003227err_clk_biu:
Jaehoon Chung7037f3b2016-07-15 10:54:08 +09003228 clk_disable_unprepare(host->biu_clk);
Seungwon Jeon780f22a2012-11-28 19:26:03 +09003229
Will Newtonf95f3852011-01-02 01:11:59 -05003230 return ret;
3231}
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05303232EXPORT_SYMBOL(dw_mci_probe);
Will Newtonf95f3852011-01-02 01:11:59 -05003233
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05303234void dw_mci_remove(struct dw_mci *host)
Will Newtonf95f3852011-01-02 01:11:59 -05003235{
Will Newtonf95f3852011-01-02 01:11:59 -05003236 int i;
3237
Will Newtonf95f3852011-01-02 01:11:59 -05003238 for (i = 0; i < host->num_slots; i++) {
Thomas Abraham4a909202012-09-17 18:16:35 +00003239 dev_dbg(host->dev, "remove slot %d\n", i);
Will Newtonf95f3852011-01-02 01:11:59 -05003240 if (host->slot[i])
3241 dw_mci_cleanup_slot(host->slot[i], i);
3242 }
3243
Prabu Thangamuthu048fd7e2015-05-28 12:21:06 +00003244 mci_writel(host, RINTSTS, 0xFFFFFFFF);
3245 mci_writel(host, INTMASK, 0); /* disable all mmc interrupt first */
3246
Will Newtonf95f3852011-01-02 01:11:59 -05003247 /* disable clock to CIU */
3248 mci_writel(host, CLKENA, 0);
3249 mci_writel(host, CLKSRC, 0);
3250
Will Newtonf95f3852011-01-02 01:11:59 -05003251 if (host->use_dma && host->dma_ops->exit)
3252 host->dma_ops->exit(host);
3253
Guodong Xud6786fe2016-08-12 16:51:26 +08003254 if (!IS_ERR(host->pdata->rstc))
3255 reset_control_assert(host->pdata->rstc);
3256
Jaehoon Chung7037f3b2016-07-15 10:54:08 +09003257 clk_disable_unprepare(host->ciu_clk);
3258 clk_disable_unprepare(host->biu_clk);
Will Newtonf95f3852011-01-02 01:11:59 -05003259}
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05303260EXPORT_SYMBOL(dw_mci_remove);
3261
3262
Will Newtonf95f3852011-01-02 01:11:59 -05003263
Shawn Line9ed8832016-10-12 10:50:35 +08003264#ifdef CONFIG_PM
Shawn Lined24e1f2016-10-12 10:56:55 +08003265int dw_mci_runtime_suspend(struct device *dev)
Will Newtonf95f3852011-01-02 01:11:59 -05003266{
Shawn Lined24e1f2016-10-12 10:56:55 +08003267 struct dw_mci *host = dev_get_drvdata(dev);
3268
Shawn Lin3fc7eae2015-09-16 14:41:23 +08003269 if (host->use_dma && host->dma_ops->exit)
3270 host->dma_ops->exit(host);
3271
Shawn Lined24e1f2016-10-12 10:56:55 +08003272 clk_disable_unprepare(host->ciu_clk);
3273
3274 if (host->cur_slot &&
3275 (mmc_can_gpio_cd(host->cur_slot->mmc) ||
3276 !mmc_card_is_removable(host->cur_slot->mmc)))
3277 clk_disable_unprepare(host->biu_clk);
3278
Will Newtonf95f3852011-01-02 01:11:59 -05003279 return 0;
3280}
Shawn Lined24e1f2016-10-12 10:56:55 +08003281EXPORT_SYMBOL(dw_mci_runtime_suspend);
Will Newtonf95f3852011-01-02 01:11:59 -05003282
Shawn Lined24e1f2016-10-12 10:56:55 +08003283int dw_mci_runtime_resume(struct device *dev)
Will Newtonf95f3852011-01-02 01:11:59 -05003284{
Shawn Lined24e1f2016-10-12 10:56:55 +08003285 int i, ret = 0;
3286 struct dw_mci *host = dev_get_drvdata(dev);
Will Newtonf95f3852011-01-02 01:11:59 -05003287
Shawn Lined24e1f2016-10-12 10:56:55 +08003288 if (host->cur_slot &&
3289 (mmc_can_gpio_cd(host->cur_slot->mmc) ||
3290 !mmc_card_is_removable(host->cur_slot->mmc))) {
3291 ret = clk_prepare_enable(host->biu_clk);
3292 if (ret)
3293 return ret;
Jaehoon Chunge61cf112011-03-17 20:32:33 +09003294 }
3295
Shawn Lined24e1f2016-10-12 10:56:55 +08003296 ret = clk_prepare_enable(host->ciu_clk);
3297 if (ret)
3298 return ret;
3299
Jonathan Kliegman3bfe6192012-06-14 13:31:55 -04003300 if (host->use_dma && host->dma_ops->init)
Seungwon Jeon141a7122012-05-22 13:01:03 +09003301 host->dma_ops->init(host);
3302
Seungwon Jeon52426892013-08-31 00:13:42 +09003303 /*
3304 * Restore the initial value at FIFOTH register
3305 * And Invalidate the prev_blksz with zero
3306 */
Shawn Lined24e1f2016-10-12 10:56:55 +08003307 mci_writel(host, FIFOTH, host->fifoth_val);
3308 host->prev_blksz = 0;
Jaehoon Chunge61cf112011-03-17 20:32:33 +09003309
Doug Anderson2eb29442013-08-31 00:11:49 +09003310 /* Put in max timeout */
3311 mci_writel(host, TMOUT, 0xFFFFFFFF);
3312
Jaehoon Chunge61cf112011-03-17 20:32:33 +09003313 mci_writel(host, RINTSTS, 0xFFFFFFFF);
3314 mci_writel(host, INTMASK, SDMMC_INT_CMD_DONE | SDMMC_INT_DATA_OVER |
3315 SDMMC_INT_TXDR | SDMMC_INT_RXDR |
Doug Andersonfa0c3282015-02-25 10:11:51 -08003316 DW_MCI_ERROR_FLAGS);
Jaehoon Chunge61cf112011-03-17 20:32:33 +09003317 mci_writel(host, CTRL, SDMMC_CTRL_INT_ENABLE);
3318
Will Newtonf95f3852011-01-02 01:11:59 -05003319 for (i = 0; i < host->num_slots; i++) {
3320 struct dw_mci_slot *slot = host->slot[i];
Shawn Lin0e3a22c2015-08-03 15:07:21 +08003321
Will Newtonf95f3852011-01-02 01:11:59 -05003322 if (!slot)
3323 continue;
Abhilash Kesavanab269122012-11-19 10:26:21 +05303324 if (slot->mmc->pm_flags & MMC_PM_KEEP_POWER) {
3325 dw_mci_set_ios(slot->mmc, &slot->mmc->ios);
3326 dw_mci_setup_bus(slot, true);
3327 }
Will Newtonf95f3852011-01-02 01:11:59 -05003328 }
Doug Andersonfa0c3282015-02-25 10:11:51 -08003329
3330 /* Now that slots are all setup, we can enable card detect */
3331 dw_mci_enable_cd(host);
3332
Shawn Lined24e1f2016-10-12 10:56:55 +08003333 return ret;
Shawn Line9ed8832016-10-12 10:50:35 +08003334}
3335EXPORT_SYMBOL(dw_mci_runtime_resume);
3336#endif /* CONFIG_PM */
Jaehoon Chung6fe88902011-12-08 19:23:03 +09003337
Will Newtonf95f3852011-01-02 01:11:59 -05003338static int __init dw_mci_init(void)
3339{
Sachin Kamat8e1c4e42013-04-04 11:25:11 +05303340 pr_info("Synopsys Designware Multimedia Card Interface Driver\n");
Shashidhar Hiremath62ca8032012-01-13 16:04:57 +05303341 return 0;
Will Newtonf95f3852011-01-02 01:11:59 -05003342}
3343
3344static void __exit dw_mci_exit(void)
3345{
Will Newtonf95f3852011-01-02 01:11:59 -05003346}
3347
3348module_init(dw_mci_init);
3349module_exit(dw_mci_exit);
3350
3351MODULE_DESCRIPTION("DW Multimedia Card Interface driver");
3352MODULE_AUTHOR("NXP Semiconductor VietNam");
3353MODULE_AUTHOR("Imagination Technologies Ltd");
3354MODULE_LICENSE("GPL v2");