mmc: return mmc_of_parse() errors to caller
[linux-2.6-block.git] / drivers / mmc / host / sh_mmcif.c
CommitLineData
fdc50a94
YG
1/*
2 * MMCIF eMMC driver.
3 *
4 * Copyright (C) 2010 Renesas Solutions Corp.
5 * Yusuke Goda <yusuke.goda.sx@renesas.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License.
10 *
11 *
12 * TODO
13 * 1. DMA
14 * 2. Power management
15 * 3. Handle MMC errors better
16 *
17 */
18
f985da17
GL
19/*
20 * The MMCIF driver is now processing MMC requests asynchronously, according
21 * to the Linux MMC API requirement.
22 *
23 * The MMCIF driver processes MMC requests in up to 3 stages: command, optional
24 * data, and optional stop. To achieve asynchronous processing each of these
25 * stages is split into two halves: a top and a bottom half. The top half
26 * initialises the hardware, installs a timeout handler to handle completion
27 * timeouts, and returns. In case of the command stage this immediately returns
28 * control to the caller, leaving all further processing to run asynchronously.
29 * All further request processing is performed by the bottom halves.
30 *
31 * The bottom half further consists of a "hard" IRQ handler, an IRQ handler
32 * thread, a DMA completion callback, if DMA is used, a timeout work, and
33 * request- and stage-specific handler methods.
34 *
35 * Each bottom half run begins with either a hardware interrupt, a DMA callback
36 * invocation, or a timeout work run. In case of an error or a successful
37 * processing completion, the MMC core is informed and the request processing is
38 * finished. In case processing has to continue, i.e., if data has to be read
39 * from or written to the card, or if a stop command has to be sent, the next
40 * top half is called, which performs the necessary hardware handling and
41 * reschedules the timeout work. This returns the driver state machine into the
42 * bottom half waiting state.
43 */
44
86df1745 45#include <linux/bitops.h>
aa0787a9
GL
46#include <linux/clk.h>
47#include <linux/completion.h>
e47bf32a 48#include <linux/delay.h>
fdc50a94 49#include <linux/dma-mapping.h>
a782d688 50#include <linux/dmaengine.h>
fdc50a94
YG
51#include <linux/mmc/card.h>
52#include <linux/mmc/core.h>
e47bf32a 53#include <linux/mmc/host.h>
fdc50a94
YG
54#include <linux/mmc/mmc.h>
55#include <linux/mmc/sdio.h>
fdc50a94 56#include <linux/mmc/sh_mmcif.h>
e480606a 57#include <linux/mmc/slot-gpio.h>
bf68a812 58#include <linux/mod_devicetable.h>
8047310e 59#include <linux/mutex.h>
a782d688 60#include <linux/pagemap.h>
e47bf32a 61#include <linux/platform_device.h>
efe6a8ad 62#include <linux/pm_qos.h>
faca6648 63#include <linux/pm_runtime.h>
3b0beafc 64#include <linux/spinlock.h>
88b47679 65#include <linux/module.h>
fdc50a94
YG
66
67#define DRIVER_NAME "sh_mmcif"
68#define DRIVER_VERSION "2010-04-28"
69
fdc50a94
YG
70/* CE_CMD_SET */
71#define CMD_MASK 0x3f000000
72#define CMD_SET_RTYP_NO ((0 << 23) | (0 << 22))
73#define CMD_SET_RTYP_6B ((0 << 23) | (1 << 22)) /* R1/R1b/R3/R4/R5 */
74#define CMD_SET_RTYP_17B ((1 << 23) | (0 << 22)) /* R2 */
75#define CMD_SET_RBSY (1 << 21) /* R1b */
76#define CMD_SET_CCSEN (1 << 20)
77#define CMD_SET_WDAT (1 << 19) /* 1: on data, 0: no data */
78#define CMD_SET_DWEN (1 << 18) /* 1: write, 0: read */
79#define CMD_SET_CMLTE (1 << 17) /* 1: multi block trans, 0: single */
80#define CMD_SET_CMD12EN (1 << 16) /* 1: CMD12 auto issue */
81#define CMD_SET_RIDXC_INDEX ((0 << 15) | (0 << 14)) /* index check */
82#define CMD_SET_RIDXC_BITS ((0 << 15) | (1 << 14)) /* check bits check */
83#define CMD_SET_RIDXC_NO ((1 << 15) | (0 << 14)) /* no check */
84#define CMD_SET_CRC7C ((0 << 13) | (0 << 12)) /* CRC7 check*/
85#define CMD_SET_CRC7C_BITS ((0 << 13) | (1 << 12)) /* check bits check*/
86#define CMD_SET_CRC7C_INTERNAL ((1 << 13) | (0 << 12)) /* internal CRC7 check*/
87#define CMD_SET_CRC16C (1 << 10) /* 0: CRC16 check*/
88#define CMD_SET_CRCSTE (1 << 8) /* 1: not receive CRC status */
89#define CMD_SET_TBIT (1 << 7) /* 1: tran mission bit "Low" */
90#define CMD_SET_OPDM (1 << 6) /* 1: open/drain */
91#define CMD_SET_CCSH (1 << 5)
555061f9 92#define CMD_SET_DARS (1 << 2) /* Dual Data Rate */
fdc50a94
YG
93#define CMD_SET_DATW_1 ((0 << 1) | (0 << 0)) /* 1bit */
94#define CMD_SET_DATW_4 ((0 << 1) | (1 << 0)) /* 4bit */
95#define CMD_SET_DATW_8 ((1 << 1) | (0 << 0)) /* 8bit */
96
97/* CE_CMD_CTRL */
98#define CMD_CTRL_BREAK (1 << 0)
99
100/* CE_BLOCK_SET */
101#define BLOCK_SIZE_MASK 0x0000ffff
102
fdc50a94
YG
103/* CE_INT */
104#define INT_CCSDE (1 << 29)
105#define INT_CMD12DRE (1 << 26)
106#define INT_CMD12RBE (1 << 25)
107#define INT_CMD12CRE (1 << 24)
108#define INT_DTRANE (1 << 23)
109#define INT_BUFRE (1 << 22)
110#define INT_BUFWEN (1 << 21)
111#define INT_BUFREN (1 << 20)
112#define INT_CCSRCV (1 << 19)
113#define INT_RBSYE (1 << 17)
114#define INT_CRSPE (1 << 16)
115#define INT_CMDVIO (1 << 15)
116#define INT_BUFVIO (1 << 14)
117#define INT_WDATERR (1 << 11)
118#define INT_RDATERR (1 << 10)
119#define INT_RIDXERR (1 << 9)
120#define INT_RSPERR (1 << 8)
121#define INT_CCSTO (1 << 5)
122#define INT_CRCSTO (1 << 4)
123#define INT_WDATTO (1 << 3)
124#define INT_RDATTO (1 << 2)
125#define INT_RBSYTO (1 << 1)
126#define INT_RSPTO (1 << 0)
127#define INT_ERR_STS (INT_CMDVIO | INT_BUFVIO | INT_WDATERR | \
128 INT_RDATERR | INT_RIDXERR | INT_RSPERR | \
129 INT_CCSTO | INT_CRCSTO | INT_WDATTO | \
130 INT_RDATTO | INT_RBSYTO | INT_RSPTO)
131
8af50750
GL
132#define INT_ALL (INT_RBSYE | INT_CRSPE | INT_BUFREN | \
133 INT_BUFWEN | INT_CMD12DRE | INT_BUFRE | \
134 INT_DTRANE | INT_CMD12RBE | INT_CMD12CRE)
135
fdc50a94
YG
136/* CE_INT_MASK */
137#define MASK_ALL 0x00000000
138#define MASK_MCCSDE (1 << 29)
139#define MASK_MCMD12DRE (1 << 26)
140#define MASK_MCMD12RBE (1 << 25)
141#define MASK_MCMD12CRE (1 << 24)
142#define MASK_MDTRANE (1 << 23)
143#define MASK_MBUFRE (1 << 22)
144#define MASK_MBUFWEN (1 << 21)
145#define MASK_MBUFREN (1 << 20)
146#define MASK_MCCSRCV (1 << 19)
147#define MASK_MRBSYE (1 << 17)
148#define MASK_MCRSPE (1 << 16)
149#define MASK_MCMDVIO (1 << 15)
150#define MASK_MBUFVIO (1 << 14)
151#define MASK_MWDATERR (1 << 11)
152#define MASK_MRDATERR (1 << 10)
153#define MASK_MRIDXERR (1 << 9)
154#define MASK_MRSPERR (1 << 8)
155#define MASK_MCCSTO (1 << 5)
156#define MASK_MCRCSTO (1 << 4)
157#define MASK_MWDATTO (1 << 3)
158#define MASK_MRDATTO (1 << 2)
159#define MASK_MRBSYTO (1 << 1)
160#define MASK_MRSPTO (1 << 0)
161
ee4b8887
GL
162#define MASK_START_CMD (MASK_MCMDVIO | MASK_MBUFVIO | MASK_MWDATERR | \
163 MASK_MRDATERR | MASK_MRIDXERR | MASK_MRSPERR | \
164 MASK_MCCSTO | MASK_MCRCSTO | MASK_MWDATTO | \
165 MASK_MRDATTO | MASK_MRBSYTO | MASK_MRSPTO)
166
8af50750
GL
167#define MASK_CLEAN (INT_ERR_STS | MASK_MRBSYE | MASK_MCRSPE | \
168 MASK_MBUFREN | MASK_MBUFWEN | \
169 MASK_MCMD12DRE | MASK_MBUFRE | MASK_MDTRANE | \
170 MASK_MCMD12RBE | MASK_MCMD12CRE)
171
fdc50a94
YG
172/* CE_HOST_STS1 */
173#define STS1_CMDSEQ (1 << 31)
174
175/* CE_HOST_STS2 */
176#define STS2_CRCSTE (1 << 31)
177#define STS2_CRC16E (1 << 30)
178#define STS2_AC12CRCE (1 << 29)
179#define STS2_RSPCRC7E (1 << 28)
180#define STS2_CRCSTEBE (1 << 27)
181#define STS2_RDATEBE (1 << 26)
182#define STS2_AC12REBE (1 << 25)
183#define STS2_RSPEBE (1 << 24)
184#define STS2_AC12IDXE (1 << 23)
185#define STS2_RSPIDXE (1 << 22)
186#define STS2_CCSTO (1 << 15)
187#define STS2_RDATTO (1 << 14)
188#define STS2_DATBSYTO (1 << 13)
189#define STS2_CRCSTTO (1 << 12)
190#define STS2_AC12BSYTO (1 << 11)
191#define STS2_RSPBSYTO (1 << 10)
192#define STS2_AC12RSPTO (1 << 9)
193#define STS2_RSPTO (1 << 8)
194#define STS2_CRC_ERR (STS2_CRCSTE | STS2_CRC16E | \
195 STS2_AC12CRCE | STS2_RSPCRC7E | STS2_CRCSTEBE)
196#define STS2_TIMEOUT_ERR (STS2_CCSTO | STS2_RDATTO | \
197 STS2_DATBSYTO | STS2_CRCSTTO | \
198 STS2_AC12BSYTO | STS2_RSPBSYTO | \
199 STS2_AC12RSPTO | STS2_RSPTO)
200
fdc50a94
YG
201#define CLKDEV_EMMC_DATA 52000000 /* 52MHz */
202#define CLKDEV_MMC_DATA 20000000 /* 20MHz */
203#define CLKDEV_INIT 400000 /* 400 KHz */
204
3b0beafc
GL
205enum mmcif_state {
206 STATE_IDLE,
207 STATE_REQUEST,
208 STATE_IOS,
8047310e 209 STATE_TIMEOUT,
3b0beafc
GL
210};
211
f985da17
GL
212enum mmcif_wait_for {
213 MMCIF_WAIT_FOR_REQUEST,
214 MMCIF_WAIT_FOR_CMD,
215 MMCIF_WAIT_FOR_MREAD,
216 MMCIF_WAIT_FOR_MWRITE,
217 MMCIF_WAIT_FOR_READ,
218 MMCIF_WAIT_FOR_WRITE,
219 MMCIF_WAIT_FOR_READ_END,
220 MMCIF_WAIT_FOR_WRITE_END,
221 MMCIF_WAIT_FOR_STOP,
222};
223
fdc50a94
YG
224struct sh_mmcif_host {
225 struct mmc_host *mmc;
f985da17 226 struct mmc_request *mrq;
fdc50a94
YG
227 struct platform_device *pd;
228 struct clk *hclk;
229 unsigned int clk;
230 int bus_width;
555061f9 231 unsigned char timing;
aa0787a9 232 bool sd_error;
f985da17 233 bool dying;
fdc50a94
YG
234 long timeout;
235 void __iomem *addr;
f985da17 236 u32 *pio_ptr;
ee4b8887 237 spinlock_t lock; /* protect sh_mmcif_host::state */
3b0beafc 238 enum mmcif_state state;
f985da17
GL
239 enum mmcif_wait_for wait_for;
240 struct delayed_work timeout_work;
241 size_t blocksize;
242 int sg_idx;
243 int sg_blkidx;
faca6648 244 bool power;
c9b0cef2 245 bool card_present;
8047310e 246 struct mutex thread_lock;
fdc50a94 247
a782d688
GL
248 /* DMA support */
249 struct dma_chan *chan_rx;
250 struct dma_chan *chan_tx;
251 struct completion dma_complete;
f38f94c6 252 bool dma_active;
a782d688 253};
fdc50a94
YG
254
255static inline void sh_mmcif_bitset(struct sh_mmcif_host *host,
256 unsigned int reg, u32 val)
257{
487d9fc5 258 writel(val | readl(host->addr + reg), host->addr + reg);
fdc50a94
YG
259}
260
261static inline void sh_mmcif_bitclr(struct sh_mmcif_host *host,
262 unsigned int reg, u32 val)
263{
487d9fc5 264 writel(~val & readl(host->addr + reg), host->addr + reg);
fdc50a94
YG
265}
266
a782d688
GL
267static void mmcif_dma_complete(void *arg)
268{
269 struct sh_mmcif_host *host = arg;
8047310e 270 struct mmc_request *mrq = host->mrq;
69983404 271
a782d688
GL
272 dev_dbg(&host->pd->dev, "Command completed\n");
273
8047310e 274 if (WARN(!mrq || !mrq->data, "%s: NULL data in DMA completion!\n",
a782d688
GL
275 dev_name(&host->pd->dev)))
276 return;
277
a782d688
GL
278 complete(&host->dma_complete);
279}
280
281static void sh_mmcif_start_dma_rx(struct sh_mmcif_host *host)
282{
69983404
GL
283 struct mmc_data *data = host->mrq->data;
284 struct scatterlist *sg = data->sg;
a782d688
GL
285 struct dma_async_tx_descriptor *desc = NULL;
286 struct dma_chan *chan = host->chan_rx;
287 dma_cookie_t cookie = -EINVAL;
288 int ret;
289
69983404 290 ret = dma_map_sg(chan->device->dev, sg, data->sg_len,
1ed828db 291 DMA_FROM_DEVICE);
a782d688 292 if (ret > 0) {
f38f94c6 293 host->dma_active = true;
16052827 294 desc = dmaengine_prep_slave_sg(chan, sg, ret,
05f5799c 295 DMA_DEV_TO_MEM, DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
a782d688
GL
296 }
297
298 if (desc) {
299 desc->callback = mmcif_dma_complete;
300 desc->callback_param = host;
a5ece7d2
LW
301 cookie = dmaengine_submit(desc);
302 sh_mmcif_bitset(host, MMCIF_CE_BUF_ACC, BUF_ACC_DMAREN);
303 dma_async_issue_pending(chan);
a782d688
GL
304 }
305 dev_dbg(&host->pd->dev, "%s(): mapped %d -> %d, cookie %d\n",
69983404 306 __func__, data->sg_len, ret, cookie);
a782d688
GL
307
308 if (!desc) {
309 /* DMA failed, fall back to PIO */
310 if (ret >= 0)
311 ret = -EIO;
312 host->chan_rx = NULL;
f38f94c6 313 host->dma_active = false;
a782d688
GL
314 dma_release_channel(chan);
315 /* Free the Tx channel too */
316 chan = host->chan_tx;
317 if (chan) {
318 host->chan_tx = NULL;
319 dma_release_channel(chan);
320 }
321 dev_warn(&host->pd->dev,
322 "DMA failed: %d, falling back to PIO\n", ret);
323 sh_mmcif_bitclr(host, MMCIF_CE_BUF_ACC, BUF_ACC_DMAREN | BUF_ACC_DMAWEN);
324 }
325
326 dev_dbg(&host->pd->dev, "%s(): desc %p, cookie %d, sg[%d]\n", __func__,
69983404 327 desc, cookie, data->sg_len);
a782d688
GL
328}
329
330static void sh_mmcif_start_dma_tx(struct sh_mmcif_host *host)
331{
69983404
GL
332 struct mmc_data *data = host->mrq->data;
333 struct scatterlist *sg = data->sg;
a782d688
GL
334 struct dma_async_tx_descriptor *desc = NULL;
335 struct dma_chan *chan = host->chan_tx;
336 dma_cookie_t cookie = -EINVAL;
337 int ret;
338
69983404 339 ret = dma_map_sg(chan->device->dev, sg, data->sg_len,
1ed828db 340 DMA_TO_DEVICE);
a782d688 341 if (ret > 0) {
f38f94c6 342 host->dma_active = true;
16052827 343 desc = dmaengine_prep_slave_sg(chan, sg, ret,
05f5799c 344 DMA_MEM_TO_DEV, DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
a782d688
GL
345 }
346
347 if (desc) {
348 desc->callback = mmcif_dma_complete;
349 desc->callback_param = host;
a5ece7d2
LW
350 cookie = dmaengine_submit(desc);
351 sh_mmcif_bitset(host, MMCIF_CE_BUF_ACC, BUF_ACC_DMAWEN);
352 dma_async_issue_pending(chan);
a782d688
GL
353 }
354 dev_dbg(&host->pd->dev, "%s(): mapped %d -> %d, cookie %d\n",
69983404 355 __func__, data->sg_len, ret, cookie);
a782d688
GL
356
357 if (!desc) {
358 /* DMA failed, fall back to PIO */
359 if (ret >= 0)
360 ret = -EIO;
361 host->chan_tx = NULL;
f38f94c6 362 host->dma_active = false;
a782d688
GL
363 dma_release_channel(chan);
364 /* Free the Rx channel too */
365 chan = host->chan_rx;
366 if (chan) {
367 host->chan_rx = NULL;
368 dma_release_channel(chan);
369 }
370 dev_warn(&host->pd->dev,
371 "DMA failed: %d, falling back to PIO\n", ret);
372 sh_mmcif_bitclr(host, MMCIF_CE_BUF_ACC, BUF_ACC_DMAREN | BUF_ACC_DMAWEN);
373 }
374
375 dev_dbg(&host->pd->dev, "%s(): desc %p, cookie %d\n", __func__,
376 desc, cookie);
377}
378
a782d688
GL
379static void sh_mmcif_request_dma(struct sh_mmcif_host *host,
380 struct sh_mmcif_plat_data *pdata)
381{
0e79f9ae
GL
382 struct resource *res = platform_get_resource(host->pd, IORESOURCE_MEM, 0);
383 struct dma_slave_config cfg;
384 dma_cap_mask_t mask;
385 int ret;
a782d688 386
f38f94c6 387 host->dma_active = false;
a782d688 388
bf68a812
GL
389 if (!pdata)
390 return;
391
0e79f9ae
GL
392 if (pdata->slave_id_tx <= 0 || pdata->slave_id_rx <= 0)
393 return;
a782d688 394
0e79f9ae
GL
395 /* We can only either use DMA for both Tx and Rx or not use it at all */
396 dma_cap_zero(mask);
397 dma_cap_set(DMA_SLAVE, mask);
a782d688 398
0e79f9ae
GL
399 host->chan_tx = dma_request_channel(mask, shdma_chan_filter,
400 (void *)pdata->slave_id_tx);
401 dev_dbg(&host->pd->dev, "%s: TX: got channel %p\n", __func__,
402 host->chan_tx);
a782d688 403
0e79f9ae
GL
404 if (!host->chan_tx)
405 return;
a782d688 406
0e79f9ae
GL
407 cfg.slave_id = pdata->slave_id_tx;
408 cfg.direction = DMA_MEM_TO_DEV;
409 cfg.dst_addr = res->start + MMCIF_CE_DATA;
410 cfg.src_addr = 0;
411 ret = dmaengine_slave_config(host->chan_tx, &cfg);
412 if (ret < 0)
413 goto ecfgtx;
414
415 host->chan_rx = dma_request_channel(mask, shdma_chan_filter,
416 (void *)pdata->slave_id_rx);
417 dev_dbg(&host->pd->dev, "%s: RX: got channel %p\n", __func__,
418 host->chan_rx);
419
420 if (!host->chan_rx)
421 goto erqrx;
422
423 cfg.slave_id = pdata->slave_id_rx;
424 cfg.direction = DMA_DEV_TO_MEM;
425 cfg.dst_addr = 0;
426 cfg.src_addr = res->start + MMCIF_CE_DATA;
427 ret = dmaengine_slave_config(host->chan_rx, &cfg);
428 if (ret < 0)
429 goto ecfgrx;
430
0e79f9ae
GL
431 return;
432
433ecfgrx:
434 dma_release_channel(host->chan_rx);
435 host->chan_rx = NULL;
436erqrx:
437ecfgtx:
438 dma_release_channel(host->chan_tx);
439 host->chan_tx = NULL;
a782d688
GL
440}
441
442static void sh_mmcif_release_dma(struct sh_mmcif_host *host)
443{
444 sh_mmcif_bitclr(host, MMCIF_CE_BUF_ACC, BUF_ACC_DMAREN | BUF_ACC_DMAWEN);
445 /* Descriptors are freed automatically */
446 if (host->chan_tx) {
447 struct dma_chan *chan = host->chan_tx;
448 host->chan_tx = NULL;
449 dma_release_channel(chan);
450 }
451 if (host->chan_rx) {
452 struct dma_chan *chan = host->chan_rx;
453 host->chan_rx = NULL;
454 dma_release_channel(chan);
455 }
456
f38f94c6 457 host->dma_active = false;
a782d688 458}
fdc50a94
YG
459
460static void sh_mmcif_clock_control(struct sh_mmcif_host *host, unsigned int clk)
461{
462 struct sh_mmcif_plat_data *p = host->pd->dev.platform_data;
bf68a812 463 bool sup_pclk = p ? p->sup_pclk : false;
fdc50a94
YG
464
465 sh_mmcif_bitclr(host, MMCIF_CE_CLK_CTRL, CLK_ENABLE);
466 sh_mmcif_bitclr(host, MMCIF_CE_CLK_CTRL, CLK_CLEAR);
467
468 if (!clk)
469 return;
bf68a812 470 if (sup_pclk && clk == host->clk)
fdc50a94
YG
471 sh_mmcif_bitset(host, MMCIF_CE_CLK_CTRL, CLK_SUP_PCLK);
472 else
473 sh_mmcif_bitset(host, MMCIF_CE_CLK_CTRL, CLK_CLEAR &
f9388257
SH
474 ((fls(DIV_ROUND_UP(host->clk,
475 clk) - 1) - 1) << 16));
fdc50a94
YG
476
477 sh_mmcif_bitset(host, MMCIF_CE_CLK_CTRL, CLK_ENABLE);
478}
479
480static void sh_mmcif_sync_reset(struct sh_mmcif_host *host)
481{
482 u32 tmp;
483
487d9fc5 484 tmp = 0x010f0000 & sh_mmcif_readl(host->addr, MMCIF_CE_CLK_CTRL);
fdc50a94 485
487d9fc5
MD
486 sh_mmcif_writel(host->addr, MMCIF_CE_VERSION, SOFT_RST_ON);
487 sh_mmcif_writel(host->addr, MMCIF_CE_VERSION, SOFT_RST_OFF);
fdc50a94
YG
488 sh_mmcif_bitset(host, MMCIF_CE_CLK_CTRL, tmp |
489 SRSPTO_256 | SRBSYTO_29 | SRWDTO_29 | SCCSTO_29);
490 /* byte swap on */
491 sh_mmcif_bitset(host, MMCIF_CE_BUF_ACC, BUF_ACC_ATYP);
492}
493
494static int sh_mmcif_error_manage(struct sh_mmcif_host *host)
495{
496 u32 state1, state2;
ee4b8887 497 int ret, timeout;
fdc50a94 498
aa0787a9 499 host->sd_error = false;
fdc50a94 500
487d9fc5
MD
501 state1 = sh_mmcif_readl(host->addr, MMCIF_CE_HOST_STS1);
502 state2 = sh_mmcif_readl(host->addr, MMCIF_CE_HOST_STS2);
e47bf32a
GL
503 dev_dbg(&host->pd->dev, "ERR HOST_STS1 = %08x\n", state1);
504 dev_dbg(&host->pd->dev, "ERR HOST_STS2 = %08x\n", state2);
fdc50a94
YG
505
506 if (state1 & STS1_CMDSEQ) {
507 sh_mmcif_bitset(host, MMCIF_CE_CMD_CTRL, CMD_CTRL_BREAK);
508 sh_mmcif_bitset(host, MMCIF_CE_CMD_CTRL, ~CMD_CTRL_BREAK);
ee4b8887 509 for (timeout = 10000000; timeout; timeout--) {
487d9fc5 510 if (!(sh_mmcif_readl(host->addr, MMCIF_CE_HOST_STS1)
ee4b8887 511 & STS1_CMDSEQ))
fdc50a94
YG
512 break;
513 mdelay(1);
514 }
ee4b8887
GL
515 if (!timeout) {
516 dev_err(&host->pd->dev,
517 "Forced end of command sequence timeout err\n");
518 return -EIO;
519 }
fdc50a94 520 sh_mmcif_sync_reset(host);
e47bf32a 521 dev_dbg(&host->pd->dev, "Forced end of command sequence\n");
fdc50a94
YG
522 return -EIO;
523 }
524
525 if (state2 & STS2_CRC_ERR) {
e475b270
TK
526 dev_err(&host->pd->dev, " CRC error: state %u, wait %u\n",
527 host->state, host->wait_for);
fdc50a94
YG
528 ret = -EIO;
529 } else if (state2 & STS2_TIMEOUT_ERR) {
e475b270
TK
530 dev_err(&host->pd->dev, " Timeout: state %u, wait %u\n",
531 host->state, host->wait_for);
fdc50a94
YG
532 ret = -ETIMEDOUT;
533 } else {
e475b270
TK
534 dev_dbg(&host->pd->dev, " End/Index error: state %u, wait %u\n",
535 host->state, host->wait_for);
fdc50a94
YG
536 ret = -EIO;
537 }
538 return ret;
539}
540
f985da17 541static bool sh_mmcif_next_block(struct sh_mmcif_host *host, u32 *p)
fdc50a94 542{
f985da17
GL
543 struct mmc_data *data = host->mrq->data;
544
545 host->sg_blkidx += host->blocksize;
546
547 /* data->sg->length must be a multiple of host->blocksize? */
548 BUG_ON(host->sg_blkidx > data->sg->length);
549
550 if (host->sg_blkidx == data->sg->length) {
551 host->sg_blkidx = 0;
552 if (++host->sg_idx < data->sg_len)
553 host->pio_ptr = sg_virt(++data->sg);
554 } else {
555 host->pio_ptr = p;
556 }
557
99eb9d8d 558 return host->sg_idx != data->sg_len;
f985da17
GL
559}
560
561static void sh_mmcif_single_read(struct sh_mmcif_host *host,
562 struct mmc_request *mrq)
563{
564 host->blocksize = (sh_mmcif_readl(host->addr, MMCIF_CE_BLOCK_SET) &
565 BLOCK_SIZE_MASK) + 3;
566
567 host->wait_for = MMCIF_WAIT_FOR_READ;
fdc50a94 568
fdc50a94
YG
569 /* buf read enable */
570 sh_mmcif_bitset(host, MMCIF_CE_INT_MASK, MASK_MBUFREN);
f985da17
GL
571}
572
573static bool sh_mmcif_read_block(struct sh_mmcif_host *host)
574{
575 struct mmc_data *data = host->mrq->data;
576 u32 *p = sg_virt(data->sg);
577 int i;
578
579 if (host->sd_error) {
580 data->error = sh_mmcif_error_manage(host);
e475b270 581 dev_dbg(&host->pd->dev, "%s(): %d\n", __func__, data->error);
f985da17
GL
582 return false;
583 }
584
585 for (i = 0; i < host->blocksize / 4; i++)
487d9fc5 586 *p++ = sh_mmcif_readl(host->addr, MMCIF_CE_DATA);
fdc50a94
YG
587
588 /* buffer read end */
589 sh_mmcif_bitset(host, MMCIF_CE_INT_MASK, MASK_MBUFRE);
f985da17 590 host->wait_for = MMCIF_WAIT_FOR_READ_END;
fdc50a94 591
f985da17 592 return true;
fdc50a94
YG
593}
594
f985da17
GL
595static void sh_mmcif_multi_read(struct sh_mmcif_host *host,
596 struct mmc_request *mrq)
fdc50a94
YG
597{
598 struct mmc_data *data = mrq->data;
f985da17
GL
599
600 if (!data->sg_len || !data->sg->length)
601 return;
602
603 host->blocksize = sh_mmcif_readl(host->addr, MMCIF_CE_BLOCK_SET) &
604 BLOCK_SIZE_MASK;
605
606 host->wait_for = MMCIF_WAIT_FOR_MREAD;
607 host->sg_idx = 0;
608 host->sg_blkidx = 0;
609 host->pio_ptr = sg_virt(data->sg);
5df460b1 610
f985da17
GL
611 sh_mmcif_bitset(host, MMCIF_CE_INT_MASK, MASK_MBUFREN);
612}
613
614static bool sh_mmcif_mread_block(struct sh_mmcif_host *host)
615{
616 struct mmc_data *data = host->mrq->data;
617 u32 *p = host->pio_ptr;
618 int i;
619
620 if (host->sd_error) {
621 data->error = sh_mmcif_error_manage(host);
e475b270 622 dev_dbg(&host->pd->dev, "%s(): %d\n", __func__, data->error);
f985da17 623 return false;
fdc50a94 624 }
f985da17
GL
625
626 BUG_ON(!data->sg->length);
627
628 for (i = 0; i < host->blocksize / 4; i++)
629 *p++ = sh_mmcif_readl(host->addr, MMCIF_CE_DATA);
630
631 if (!sh_mmcif_next_block(host, p))
632 return false;
633
f985da17
GL
634 sh_mmcif_bitset(host, MMCIF_CE_INT_MASK, MASK_MBUFREN);
635
636 return true;
fdc50a94
YG
637}
638
f985da17 639static void sh_mmcif_single_write(struct sh_mmcif_host *host,
fdc50a94
YG
640 struct mmc_request *mrq)
641{
f985da17
GL
642 host->blocksize = (sh_mmcif_readl(host->addr, MMCIF_CE_BLOCK_SET) &
643 BLOCK_SIZE_MASK) + 3;
fdc50a94 644
f985da17 645 host->wait_for = MMCIF_WAIT_FOR_WRITE;
fdc50a94
YG
646
647 /* buf write enable */
f985da17
GL
648 sh_mmcif_bitset(host, MMCIF_CE_INT_MASK, MASK_MBUFWEN);
649}
650
651static bool sh_mmcif_write_block(struct sh_mmcif_host *host)
652{
653 struct mmc_data *data = host->mrq->data;
654 u32 *p = sg_virt(data->sg);
655 int i;
656
657 if (host->sd_error) {
658 data->error = sh_mmcif_error_manage(host);
e475b270 659 dev_dbg(&host->pd->dev, "%s(): %d\n", __func__, data->error);
f985da17
GL
660 return false;
661 }
662
663 for (i = 0; i < host->blocksize / 4; i++)
487d9fc5 664 sh_mmcif_writel(host->addr, MMCIF_CE_DATA, *p++);
fdc50a94
YG
665
666 /* buffer write end */
667 sh_mmcif_bitset(host, MMCIF_CE_INT_MASK, MASK_MDTRANE);
f985da17 668 host->wait_for = MMCIF_WAIT_FOR_WRITE_END;
fdc50a94 669
f985da17 670 return true;
fdc50a94
YG
671}
672
f985da17
GL
673static void sh_mmcif_multi_write(struct sh_mmcif_host *host,
674 struct mmc_request *mrq)
fdc50a94
YG
675{
676 struct mmc_data *data = mrq->data;
fdc50a94 677
f985da17
GL
678 if (!data->sg_len || !data->sg->length)
679 return;
fdc50a94 680
f985da17
GL
681 host->blocksize = sh_mmcif_readl(host->addr, MMCIF_CE_BLOCK_SET) &
682 BLOCK_SIZE_MASK;
fdc50a94 683
f985da17
GL
684 host->wait_for = MMCIF_WAIT_FOR_MWRITE;
685 host->sg_idx = 0;
686 host->sg_blkidx = 0;
687 host->pio_ptr = sg_virt(data->sg);
5df460b1 688
f985da17
GL
689 sh_mmcif_bitset(host, MMCIF_CE_INT_MASK, MASK_MBUFWEN);
690}
fdc50a94 691
f985da17
GL
692static bool sh_mmcif_mwrite_block(struct sh_mmcif_host *host)
693{
694 struct mmc_data *data = host->mrq->data;
695 u32 *p = host->pio_ptr;
696 int i;
697
698 if (host->sd_error) {
699 data->error = sh_mmcif_error_manage(host);
e475b270 700 dev_dbg(&host->pd->dev, "%s(): %d\n", __func__, data->error);
f985da17 701 return false;
fdc50a94 702 }
f985da17
GL
703
704 BUG_ON(!data->sg->length);
705
706 for (i = 0; i < host->blocksize / 4; i++)
707 sh_mmcif_writel(host->addr, MMCIF_CE_DATA, *p++);
708
709 if (!sh_mmcif_next_block(host, p))
710 return false;
711
f985da17
GL
712 sh_mmcif_bitset(host, MMCIF_CE_INT_MASK, MASK_MBUFWEN);
713
714 return true;
fdc50a94
YG
715}
716
717static void sh_mmcif_get_response(struct sh_mmcif_host *host,
718 struct mmc_command *cmd)
719{
720 if (cmd->flags & MMC_RSP_136) {
487d9fc5
MD
721 cmd->resp[0] = sh_mmcif_readl(host->addr, MMCIF_CE_RESP3);
722 cmd->resp[1] = sh_mmcif_readl(host->addr, MMCIF_CE_RESP2);
723 cmd->resp[2] = sh_mmcif_readl(host->addr, MMCIF_CE_RESP1);
724 cmd->resp[3] = sh_mmcif_readl(host->addr, MMCIF_CE_RESP0);
fdc50a94 725 } else
487d9fc5 726 cmd->resp[0] = sh_mmcif_readl(host->addr, MMCIF_CE_RESP0);
fdc50a94
YG
727}
728
729static void sh_mmcif_get_cmd12response(struct sh_mmcif_host *host,
730 struct mmc_command *cmd)
731{
487d9fc5 732 cmd->resp[0] = sh_mmcif_readl(host->addr, MMCIF_CE_RESP_CMD12);
fdc50a94
YG
733}
734
735static u32 sh_mmcif_set_cmd(struct sh_mmcif_host *host,
69983404 736 struct mmc_request *mrq)
fdc50a94 737{
69983404
GL
738 struct mmc_data *data = mrq->data;
739 struct mmc_command *cmd = mrq->cmd;
740 u32 opc = cmd->opcode;
fdc50a94
YG
741 u32 tmp = 0;
742
743 /* Response Type check */
744 switch (mmc_resp_type(cmd)) {
745 case MMC_RSP_NONE:
746 tmp |= CMD_SET_RTYP_NO;
747 break;
748 case MMC_RSP_R1:
749 case MMC_RSP_R1B:
750 case MMC_RSP_R3:
751 tmp |= CMD_SET_RTYP_6B;
752 break;
753 case MMC_RSP_R2:
754 tmp |= CMD_SET_RTYP_17B;
755 break;
756 default:
e47bf32a 757 dev_err(&host->pd->dev, "Unsupported response type.\n");
fdc50a94
YG
758 break;
759 }
760 switch (opc) {
761 /* RBSY */
a812ba0f 762 case MMC_SLEEP_AWAKE:
fdc50a94
YG
763 case MMC_SWITCH:
764 case MMC_STOP_TRANSMISSION:
765 case MMC_SET_WRITE_PROT:
766 case MMC_CLR_WRITE_PROT:
767 case MMC_ERASE:
fdc50a94
YG
768 tmp |= CMD_SET_RBSY;
769 break;
770 }
771 /* WDAT / DATW */
69983404 772 if (data) {
fdc50a94
YG
773 tmp |= CMD_SET_WDAT;
774 switch (host->bus_width) {
775 case MMC_BUS_WIDTH_1:
776 tmp |= CMD_SET_DATW_1;
777 break;
778 case MMC_BUS_WIDTH_4:
779 tmp |= CMD_SET_DATW_4;
780 break;
781 case MMC_BUS_WIDTH_8:
782 tmp |= CMD_SET_DATW_8;
783 break;
784 default:
e47bf32a 785 dev_err(&host->pd->dev, "Unsupported bus width.\n");
fdc50a94
YG
786 break;
787 }
555061f9
TK
788 switch (host->timing) {
789 case MMC_TIMING_UHS_DDR50:
790 /*
791 * MMC core will only set this timing, if the host
792 * advertises the MMC_CAP_UHS_DDR50 capability. MMCIF
793 * implementations with this capability, e.g. sh73a0,
794 * will have to set it in their platform data.
795 */
796 tmp |= CMD_SET_DARS;
797 break;
798 }
fdc50a94
YG
799 }
800 /* DWEN */
801 if (opc == MMC_WRITE_BLOCK || opc == MMC_WRITE_MULTIPLE_BLOCK)
802 tmp |= CMD_SET_DWEN;
803 /* CMLTE/CMD12EN */
804 if (opc == MMC_READ_MULTIPLE_BLOCK || opc == MMC_WRITE_MULTIPLE_BLOCK) {
805 tmp |= CMD_SET_CMLTE | CMD_SET_CMD12EN;
806 sh_mmcif_bitset(host, MMCIF_CE_BLOCK_SET,
69983404 807 data->blocks << 16);
fdc50a94
YG
808 }
809 /* RIDXC[1:0] check bits */
810 if (opc == MMC_SEND_OP_COND || opc == MMC_ALL_SEND_CID ||
811 opc == MMC_SEND_CSD || opc == MMC_SEND_CID)
812 tmp |= CMD_SET_RIDXC_BITS;
813 /* RCRC7C[1:0] check bits */
814 if (opc == MMC_SEND_OP_COND)
815 tmp |= CMD_SET_CRC7C_BITS;
816 /* RCRC7C[1:0] internal CRC7 */
817 if (opc == MMC_ALL_SEND_CID ||
818 opc == MMC_SEND_CSD || opc == MMC_SEND_CID)
819 tmp |= CMD_SET_CRC7C_INTERNAL;
820
69983404 821 return (opc << 24) | tmp;
fdc50a94
YG
822}
823
e47bf32a 824static int sh_mmcif_data_trans(struct sh_mmcif_host *host,
f985da17 825 struct mmc_request *mrq, u32 opc)
fdc50a94 826{
fdc50a94
YG
827 switch (opc) {
828 case MMC_READ_MULTIPLE_BLOCK:
f985da17
GL
829 sh_mmcif_multi_read(host, mrq);
830 return 0;
fdc50a94 831 case MMC_WRITE_MULTIPLE_BLOCK:
f985da17
GL
832 sh_mmcif_multi_write(host, mrq);
833 return 0;
fdc50a94 834 case MMC_WRITE_BLOCK:
f985da17
GL
835 sh_mmcif_single_write(host, mrq);
836 return 0;
fdc50a94
YG
837 case MMC_READ_SINGLE_BLOCK:
838 case MMC_SEND_EXT_CSD:
f985da17
GL
839 sh_mmcif_single_read(host, mrq);
840 return 0;
fdc50a94 841 default:
e475b270 842 dev_err(&host->pd->dev, "Unsupported CMD%d\n", opc);
ee4b8887 843 return -EINVAL;
fdc50a94 844 }
fdc50a94
YG
845}
846
847static void sh_mmcif_start_cmd(struct sh_mmcif_host *host,
ee4b8887 848 struct mmc_request *mrq)
fdc50a94 849{
ee4b8887 850 struct mmc_command *cmd = mrq->cmd;
f985da17
GL
851 u32 opc = cmd->opcode;
852 u32 mask;
fdc50a94 853
fdc50a94 854 switch (opc) {
ee4b8887 855 /* response busy check */
a812ba0f 856 case MMC_SLEEP_AWAKE:
fdc50a94
YG
857 case MMC_SWITCH:
858 case MMC_STOP_TRANSMISSION:
859 case MMC_SET_WRITE_PROT:
860 case MMC_CLR_WRITE_PROT:
861 case MMC_ERASE:
ee4b8887 862 mask = MASK_START_CMD | MASK_MRBSYE;
fdc50a94
YG
863 break;
864 default:
ee4b8887 865 mask = MASK_START_CMD | MASK_MCRSPE;
fdc50a94
YG
866 break;
867 }
fdc50a94 868
69983404 869 if (mrq->data) {
487d9fc5
MD
870 sh_mmcif_writel(host->addr, MMCIF_CE_BLOCK_SET, 0);
871 sh_mmcif_writel(host->addr, MMCIF_CE_BLOCK_SET,
872 mrq->data->blksz);
fdc50a94 873 }
69983404 874 opc = sh_mmcif_set_cmd(host, mrq);
fdc50a94 875
487d9fc5
MD
876 sh_mmcif_writel(host->addr, MMCIF_CE_INT, 0xD80430C0);
877 sh_mmcif_writel(host->addr, MMCIF_CE_INT_MASK, mask);
fdc50a94 878 /* set arg */
487d9fc5 879 sh_mmcif_writel(host->addr, MMCIF_CE_ARG, cmd->arg);
fdc50a94 880 /* set cmd */
487d9fc5 881 sh_mmcif_writel(host->addr, MMCIF_CE_CMD_SET, opc);
fdc50a94 882
f985da17
GL
883 host->wait_for = MMCIF_WAIT_FOR_CMD;
884 schedule_delayed_work(&host->timeout_work, host->timeout);
fdc50a94
YG
885}
886
887static void sh_mmcif_stop_cmd(struct sh_mmcif_host *host,
ee4b8887 888 struct mmc_request *mrq)
fdc50a94 889{
69983404
GL
890 switch (mrq->cmd->opcode) {
891 case MMC_READ_MULTIPLE_BLOCK:
fdc50a94 892 sh_mmcif_bitset(host, MMCIF_CE_INT_MASK, MASK_MCMD12DRE);
69983404
GL
893 break;
894 case MMC_WRITE_MULTIPLE_BLOCK:
fdc50a94 895 sh_mmcif_bitset(host, MMCIF_CE_INT_MASK, MASK_MCMD12RBE);
69983404
GL
896 break;
897 default:
e47bf32a 898 dev_err(&host->pd->dev, "unsupported stop cmd\n");
69983404 899 mrq->stop->error = sh_mmcif_error_manage(host);
fdc50a94
YG
900 return;
901 }
902
f985da17 903 host->wait_for = MMCIF_WAIT_FOR_STOP;
fdc50a94
YG
904}
905
906static void sh_mmcif_request(struct mmc_host *mmc, struct mmc_request *mrq)
907{
908 struct sh_mmcif_host *host = mmc_priv(mmc);
3b0beafc
GL
909 unsigned long flags;
910
911 spin_lock_irqsave(&host->lock, flags);
912 if (host->state != STATE_IDLE) {
e475b270 913 dev_dbg(&host->pd->dev, "%s() rejected, state %u\n", __func__, host->state);
3b0beafc
GL
914 spin_unlock_irqrestore(&host->lock, flags);
915 mrq->cmd->error = -EAGAIN;
916 mmc_request_done(mmc, mrq);
917 return;
918 }
919
920 host->state = STATE_REQUEST;
921 spin_unlock_irqrestore(&host->lock, flags);
fdc50a94
YG
922
923 switch (mrq->cmd->opcode) {
924 /* MMCIF does not support SD/SDIO command */
7541ca98
LP
925 case MMC_SLEEP_AWAKE: /* = SD_IO_SEND_OP_COND (5) */
926 case MMC_SEND_EXT_CSD: /* = SD_SEND_IF_COND (8) */
927 if ((mrq->cmd->flags & MMC_CMD_MASK) != MMC_CMD_BCR)
928 break;
fdc50a94 929 case MMC_APP_CMD:
92ff0c5b 930 case SD_IO_RW_DIRECT:
3b0beafc 931 host->state = STATE_IDLE;
fdc50a94
YG
932 mrq->cmd->error = -ETIMEDOUT;
933 mmc_request_done(mmc, mrq);
934 return;
fdc50a94
YG
935 default:
936 break;
937 }
f985da17
GL
938
939 host->mrq = mrq;
fdc50a94 940
f985da17 941 sh_mmcif_start_cmd(host, mrq);
fdc50a94
YG
942}
943
a6609267
GL
944static int sh_mmcif_clk_update(struct sh_mmcif_host *host)
945{
946 int ret = clk_enable(host->hclk);
947
948 if (!ret) {
949 host->clk = clk_get_rate(host->hclk);
950 host->mmc->f_max = host->clk / 2;
951 host->mmc->f_min = host->clk / 512;
952 }
953
954 return ret;
955}
956
7d17baa0
GL
957static void sh_mmcif_set_power(struct sh_mmcif_host *host, struct mmc_ios *ios)
958{
959 struct sh_mmcif_plat_data *pd = host->pd->dev.platform_data;
960 struct mmc_host *mmc = host->mmc;
961
bf68a812 962 if (pd && pd->set_pwr)
7d17baa0
GL
963 pd->set_pwr(host->pd, ios->power_mode != MMC_POWER_OFF);
964 if (!IS_ERR(mmc->supply.vmmc))
965 /* Errors ignored... */
966 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc,
967 ios->power_mode ? ios->vdd : 0);
968}
969
fdc50a94
YG
970static void sh_mmcif_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
971{
972 struct sh_mmcif_host *host = mmc_priv(mmc);
3b0beafc
GL
973 unsigned long flags;
974
975 spin_lock_irqsave(&host->lock, flags);
976 if (host->state != STATE_IDLE) {
e475b270 977 dev_dbg(&host->pd->dev, "%s() rejected, state %u\n", __func__, host->state);
3b0beafc
GL
978 spin_unlock_irqrestore(&host->lock, flags);
979 return;
980 }
981
982 host->state = STATE_IOS;
983 spin_unlock_irqrestore(&host->lock, flags);
fdc50a94 984
f5e0cec4 985 if (ios->power_mode == MMC_POWER_UP) {
c9b0cef2 986 if (!host->card_present) {
faca6648
GL
987 /* See if we also get DMA */
988 sh_mmcif_request_dma(host, host->pd->dev.platform_data);
c9b0cef2 989 host->card_present = true;
faca6648 990 }
7d17baa0 991 sh_mmcif_set_power(host, ios);
f5e0cec4 992 } else if (ios->power_mode == MMC_POWER_OFF || !ios->clock) {
fdc50a94
YG
993 /* clock stop */
994 sh_mmcif_clock_control(host, 0);
faca6648 995 if (ios->power_mode == MMC_POWER_OFF) {
c9b0cef2 996 if (host->card_present) {
faca6648 997 sh_mmcif_release_dma(host);
c9b0cef2 998 host->card_present = false;
faca6648 999 }
c9b0cef2
GL
1000 }
1001 if (host->power) {
f8a8ced7 1002 pm_runtime_put_sync(&host->pd->dev);
b289174f 1003 clk_disable(host->hclk);
c9b0cef2 1004 host->power = false;
7d17baa0
GL
1005 if (ios->power_mode == MMC_POWER_OFF)
1006 sh_mmcif_set_power(host, ios);
faca6648 1007 }
3b0beafc 1008 host->state = STATE_IDLE;
fdc50a94 1009 return;
fdc50a94
YG
1010 }
1011
c9b0cef2
GL
1012 if (ios->clock) {
1013 if (!host->power) {
a6609267 1014 sh_mmcif_clk_update(host);
c9b0cef2
GL
1015 pm_runtime_get_sync(&host->pd->dev);
1016 host->power = true;
1017 sh_mmcif_sync_reset(host);
1018 }
fdc50a94 1019 sh_mmcif_clock_control(host, ios->clock);
c9b0cef2 1020 }
fdc50a94 1021
555061f9 1022 host->timing = ios->timing;
fdc50a94 1023 host->bus_width = ios->bus_width;
3b0beafc 1024 host->state = STATE_IDLE;
fdc50a94
YG
1025}
1026
777271d0
AH
1027static int sh_mmcif_get_cd(struct mmc_host *mmc)
1028{
1029 struct sh_mmcif_host *host = mmc_priv(mmc);
1030 struct sh_mmcif_plat_data *p = host->pd->dev.platform_data;
e480606a
GL
1031 int ret = mmc_gpio_get_cd(mmc);
1032
1033 if (ret >= 0)
1034 return ret;
777271d0 1035
bf68a812 1036 if (!p || !p->get_cd)
777271d0
AH
1037 return -ENOSYS;
1038 else
1039 return p->get_cd(host->pd);
1040}
1041
fdc50a94
YG
1042static struct mmc_host_ops sh_mmcif_ops = {
1043 .request = sh_mmcif_request,
1044 .set_ios = sh_mmcif_set_ios,
777271d0 1045 .get_cd = sh_mmcif_get_cd,
fdc50a94
YG
1046};
1047
f985da17
GL
1048static bool sh_mmcif_end_cmd(struct sh_mmcif_host *host)
1049{
1050 struct mmc_command *cmd = host->mrq->cmd;
69983404 1051 struct mmc_data *data = host->mrq->data;
f985da17
GL
1052 long time;
1053
1054 if (host->sd_error) {
1055 switch (cmd->opcode) {
1056 case MMC_ALL_SEND_CID:
1057 case MMC_SELECT_CARD:
1058 case MMC_APP_CMD:
1059 cmd->error = -ETIMEDOUT;
f985da17
GL
1060 break;
1061 default:
1062 cmd->error = sh_mmcif_error_manage(host);
f985da17
GL
1063 break;
1064 }
e475b270
TK
1065 dev_dbg(&host->pd->dev, "CMD%d error %d\n",
1066 cmd->opcode, cmd->error);
aba9d646 1067 host->sd_error = false;
f985da17
GL
1068 return false;
1069 }
1070 if (!(cmd->flags & MMC_RSP_PRESENT)) {
1071 cmd->error = 0;
1072 return false;
1073 }
1074
1075 sh_mmcif_get_response(host, cmd);
1076
69983404 1077 if (!data)
f985da17
GL
1078 return false;
1079
90f1cb43
GL
1080 /*
1081 * Completion can be signalled from DMA callback and error, so, have to
1082 * reset here, before setting .dma_active
1083 */
1084 init_completion(&host->dma_complete);
1085
69983404 1086 if (data->flags & MMC_DATA_READ) {
f985da17
GL
1087 if (host->chan_rx)
1088 sh_mmcif_start_dma_rx(host);
1089 } else {
1090 if (host->chan_tx)
1091 sh_mmcif_start_dma_tx(host);
1092 }
1093
1094 if (!host->dma_active) {
69983404 1095 data->error = sh_mmcif_data_trans(host, host->mrq, cmd->opcode);
99eb9d8d 1096 return !data->error;
f985da17
GL
1097 }
1098
1099 /* Running in the IRQ thread, can sleep */
1100 time = wait_for_completion_interruptible_timeout(&host->dma_complete,
1101 host->timeout);
eae30983
TK
1102
1103 if (data->flags & MMC_DATA_READ)
1104 dma_unmap_sg(host->chan_rx->device->dev,
1105 data->sg, data->sg_len,
1106 DMA_FROM_DEVICE);
1107 else
1108 dma_unmap_sg(host->chan_tx->device->dev,
1109 data->sg, data->sg_len,
1110 DMA_TO_DEVICE);
1111
f985da17
GL
1112 if (host->sd_error) {
1113 dev_err(host->mmc->parent,
1114 "Error IRQ while waiting for DMA completion!\n");
1115 /* Woken up by an error IRQ: abort DMA */
69983404 1116 data->error = sh_mmcif_error_manage(host);
f985da17 1117 } else if (!time) {
e475b270 1118 dev_err(host->mmc->parent, "DMA timeout!\n");
69983404 1119 data->error = -ETIMEDOUT;
f985da17 1120 } else if (time < 0) {
e475b270
TK
1121 dev_err(host->mmc->parent,
1122 "wait_for_completion_...() error %ld!\n", time);
69983404 1123 data->error = time;
f985da17
GL
1124 }
1125 sh_mmcif_bitclr(host, MMCIF_CE_BUF_ACC,
1126 BUF_ACC_DMAREN | BUF_ACC_DMAWEN);
1127 host->dma_active = false;
1128
eae30983 1129 if (data->error) {
69983404 1130 data->bytes_xfered = 0;
eae30983
TK
1131 /* Abort DMA */
1132 if (data->flags & MMC_DATA_READ)
1133 dmaengine_terminate_all(host->chan_rx);
1134 else
1135 dmaengine_terminate_all(host->chan_tx);
1136 }
f985da17
GL
1137
1138 return false;
1139}
1140
1141static irqreturn_t sh_mmcif_irqt(int irq, void *dev_id)
1142{
1143 struct sh_mmcif_host *host = dev_id;
8047310e 1144 struct mmc_request *mrq;
5df460b1 1145 bool wait = false;
f985da17
GL
1146
1147 cancel_delayed_work_sync(&host->timeout_work);
1148
8047310e
GL
1149 mutex_lock(&host->thread_lock);
1150
1151 mrq = host->mrq;
1152 if (!mrq) {
1153 dev_dbg(&host->pd->dev, "IRQ thread state %u, wait %u: NULL mrq!\n",
1154 host->state, host->wait_for);
1155 mutex_unlock(&host->thread_lock);
1156 return IRQ_HANDLED;
1157 }
1158
f985da17
GL
1159 /*
1160 * All handlers return true, if processing continues, and false, if the
1161 * request has to be completed - successfully or not
1162 */
1163 switch (host->wait_for) {
1164 case MMCIF_WAIT_FOR_REQUEST:
1165 /* We're too late, the timeout has already kicked in */
8047310e 1166 mutex_unlock(&host->thread_lock);
f985da17
GL
1167 return IRQ_HANDLED;
1168 case MMCIF_WAIT_FOR_CMD:
5df460b1
GL
1169 /* Wait for data? */
1170 wait = sh_mmcif_end_cmd(host);
f985da17
GL
1171 break;
1172 case MMCIF_WAIT_FOR_MREAD:
5df460b1
GL
1173 /* Wait for more data? */
1174 wait = sh_mmcif_mread_block(host);
f985da17
GL
1175 break;
1176 case MMCIF_WAIT_FOR_READ:
5df460b1
GL
1177 /* Wait for data end? */
1178 wait = sh_mmcif_read_block(host);
f985da17
GL
1179 break;
1180 case MMCIF_WAIT_FOR_MWRITE:
5df460b1
GL
1181 /* Wait data to write? */
1182 wait = sh_mmcif_mwrite_block(host);
f985da17
GL
1183 break;
1184 case MMCIF_WAIT_FOR_WRITE:
5df460b1
GL
1185 /* Wait for data end? */
1186 wait = sh_mmcif_write_block(host);
f985da17
GL
1187 break;
1188 case MMCIF_WAIT_FOR_STOP:
1189 if (host->sd_error) {
1190 mrq->stop->error = sh_mmcif_error_manage(host);
e475b270 1191 dev_dbg(&host->pd->dev, "%s(): %d\n", __func__, mrq->stop->error);
f985da17
GL
1192 break;
1193 }
1194 sh_mmcif_get_cmd12response(host, mrq->stop);
1195 mrq->stop->error = 0;
1196 break;
1197 case MMCIF_WAIT_FOR_READ_END:
1198 case MMCIF_WAIT_FOR_WRITE_END:
e475b270 1199 if (host->sd_error) {
91ab252a 1200 mrq->data->error = sh_mmcif_error_manage(host);
e475b270
TK
1201 dev_dbg(&host->pd->dev, "%s(): %d\n", __func__, mrq->data->error);
1202 }
f985da17
GL
1203 break;
1204 default:
1205 BUG();
1206 }
1207
5df460b1
GL
1208 if (wait) {
1209 schedule_delayed_work(&host->timeout_work, host->timeout);
1210 /* Wait for more data */
8047310e 1211 mutex_unlock(&host->thread_lock);
5df460b1
GL
1212 return IRQ_HANDLED;
1213 }
1214
f985da17 1215 if (host->wait_for != MMCIF_WAIT_FOR_STOP) {
91ab252a 1216 struct mmc_data *data = mrq->data;
69983404
GL
1217 if (!mrq->cmd->error && data && !data->error)
1218 data->bytes_xfered =
1219 data->blocks * data->blksz;
f985da17 1220
69983404 1221 if (mrq->stop && !mrq->cmd->error && (!data || !data->error)) {
f985da17 1222 sh_mmcif_stop_cmd(host, mrq);
5df460b1
GL
1223 if (!mrq->stop->error) {
1224 schedule_delayed_work(&host->timeout_work, host->timeout);
8047310e 1225 mutex_unlock(&host->thread_lock);
f985da17 1226 return IRQ_HANDLED;
5df460b1 1227 }
f985da17
GL
1228 }
1229 }
1230
1231 host->wait_for = MMCIF_WAIT_FOR_REQUEST;
1232 host->state = STATE_IDLE;
69983404 1233 host->mrq = NULL;
f985da17
GL
1234 mmc_request_done(host->mmc, mrq);
1235
8047310e
GL
1236 mutex_unlock(&host->thread_lock);
1237
f985da17
GL
1238 return IRQ_HANDLED;
1239}
1240
fdc50a94
YG
1241static irqreturn_t sh_mmcif_intr(int irq, void *dev_id)
1242{
1243 struct sh_mmcif_host *host = dev_id;
aa0787a9 1244 u32 state;
fdc50a94 1245
487d9fc5 1246 state = sh_mmcif_readl(host->addr, MMCIF_CE_INT);
19f1ba51
GL
1247 sh_mmcif_writel(host->addr, MMCIF_CE_INT,
1248 ~(state & sh_mmcif_readl(host->addr, MMCIF_CE_INT_MASK)));
8af50750 1249 sh_mmcif_bitclr(host, MMCIF_CE_INT_MASK, state & MASK_CLEAN);
fdc50a94 1250
8af50750
GL
1251 if (state & ~MASK_CLEAN)
1252 dev_dbg(&host->pd->dev, "IRQ state = 0x%08x incompletely cleared\n",
1253 state);
1254
1255 if (state & INT_ERR_STS || state & ~INT_ALL) {
aa0787a9 1256 host->sd_error = true;
8af50750 1257 dev_dbg(&host->pd->dev, "int err state = 0x%08x\n", state);
fdc50a94 1258 }
f985da17 1259 if (state & ~(INT_CMD12RBE | INT_CMD12CRE)) {
8af50750
GL
1260 if (!host->mrq)
1261 dev_dbg(&host->pd->dev, "NULL IRQ state = 0x%08x\n", state);
f985da17
GL
1262 if (!host->dma_active)
1263 return IRQ_WAKE_THREAD;
1264 else if (host->sd_error)
1265 mmcif_dma_complete(host);
1266 } else {
aa0787a9 1267 dev_dbg(&host->pd->dev, "Unexpected IRQ 0x%x\n", state);
f985da17 1268 }
fdc50a94
YG
1269
1270 return IRQ_HANDLED;
1271}
1272
f985da17
GL
1273static void mmcif_timeout_work(struct work_struct *work)
1274{
1275 struct delayed_work *d = container_of(work, struct delayed_work, work);
1276 struct sh_mmcif_host *host = container_of(d, struct sh_mmcif_host, timeout_work);
1277 struct mmc_request *mrq = host->mrq;
8047310e 1278 unsigned long flags;
f985da17
GL
1279
1280 if (host->dying)
1281 /* Don't run after mmc_remove_host() */
1282 return;
1283
e475b270 1284 dev_err(&host->pd->dev, "Timeout waiting for %u on CMD%u\n",
8047310e
GL
1285 host->wait_for, mrq->cmd->opcode);
1286
1287 spin_lock_irqsave(&host->lock, flags);
1288 if (host->state == STATE_IDLE) {
1289 spin_unlock_irqrestore(&host->lock, flags);
1290 return;
1291 }
1292
1293 host->state = STATE_TIMEOUT;
1294 spin_unlock_irqrestore(&host->lock, flags);
1295
f985da17
GL
1296 /*
1297 * Handle races with cancel_delayed_work(), unless
1298 * cancel_delayed_work_sync() is used
1299 */
1300 switch (host->wait_for) {
1301 case MMCIF_WAIT_FOR_CMD:
1302 mrq->cmd->error = sh_mmcif_error_manage(host);
1303 break;
1304 case MMCIF_WAIT_FOR_STOP:
1305 mrq->stop->error = sh_mmcif_error_manage(host);
1306 break;
1307 case MMCIF_WAIT_FOR_MREAD:
1308 case MMCIF_WAIT_FOR_MWRITE:
1309 case MMCIF_WAIT_FOR_READ:
1310 case MMCIF_WAIT_FOR_WRITE:
1311 case MMCIF_WAIT_FOR_READ_END:
1312 case MMCIF_WAIT_FOR_WRITE_END:
69983404 1313 mrq->data->error = sh_mmcif_error_manage(host);
f985da17
GL
1314 break;
1315 default:
1316 BUG();
1317 }
1318
1319 host->state = STATE_IDLE;
1320 host->wait_for = MMCIF_WAIT_FOR_REQUEST;
f985da17
GL
1321 host->mrq = NULL;
1322 mmc_request_done(host->mmc, mrq);
1323}
1324
7d17baa0
GL
1325static void sh_mmcif_init_ocr(struct sh_mmcif_host *host)
1326{
1327 struct sh_mmcif_plat_data *pd = host->pd->dev.platform_data;
1328 struct mmc_host *mmc = host->mmc;
1329
1330 mmc_regulator_get_supply(mmc);
1331
bf68a812
GL
1332 if (!pd)
1333 return;
1334
7d17baa0
GL
1335 if (!mmc->ocr_avail)
1336 mmc->ocr_avail = pd->ocr;
1337 else if (pd->ocr)
1338 dev_warn(mmc_dev(mmc), "Platform OCR mask is ignored\n");
1339}
1340
c3be1efd 1341static int sh_mmcif_probe(struct platform_device *pdev)
fdc50a94
YG
1342{
1343 int ret = 0, irq[2];
1344 struct mmc_host *mmc;
e47bf32a 1345 struct sh_mmcif_host *host;
e1aae2eb 1346 struct sh_mmcif_plat_data *pd = pdev->dev.platform_data;
fdc50a94
YG
1347 struct resource *res;
1348 void __iomem *reg;
2cd5b3e0 1349 const char *name;
fdc50a94
YG
1350
1351 irq[0] = platform_get_irq(pdev, 0);
1352 irq[1] = platform_get_irq(pdev, 1);
2cd5b3e0 1353 if (irq[0] < 0) {
e47bf32a 1354 dev_err(&pdev->dev, "Get irq error\n");
fdc50a94
YG
1355 return -ENXIO;
1356 }
1357 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1358 if (!res) {
1359 dev_err(&pdev->dev, "platform_get_resource error.\n");
1360 return -ENXIO;
1361 }
1362 reg = ioremap(res->start, resource_size(res));
1363 if (!reg) {
1364 dev_err(&pdev->dev, "ioremap error.\n");
1365 return -ENOMEM;
1366 }
e1aae2eb 1367
fdc50a94
YG
1368 mmc = mmc_alloc_host(sizeof(struct sh_mmcif_host), &pdev->dev);
1369 if (!mmc) {
1370 ret = -ENOMEM;
e1aae2eb 1371 goto ealloch;
fdc50a94 1372 }
eca889f6 1373 mmc_of_parse(mmc);
fdc50a94
YG
1374 host = mmc_priv(mmc);
1375 host->mmc = mmc;
1376 host->addr = reg;
f9fd54f2 1377 host->timeout = msecs_to_jiffies(1000);
fdc50a94 1378
fdc50a94
YG
1379 host->pd = pdev;
1380
3b0beafc 1381 spin_lock_init(&host->lock);
fdc50a94
YG
1382
1383 mmc->ops = &sh_mmcif_ops;
7d17baa0
GL
1384 sh_mmcif_init_ocr(host);
1385
eca889f6 1386 mmc->caps |= MMC_CAP_MMC_HIGHSPEED | MMC_CAP_WAIT_WHILE_BUSY;
bf68a812 1387 if (pd && pd->caps)
fdc50a94 1388 mmc->caps |= pd->caps;
a782d688 1389 mmc->max_segs = 32;
fdc50a94 1390 mmc->max_blk_size = 512;
a782d688
GL
1391 mmc->max_req_size = PAGE_CACHE_SIZE * mmc->max_segs;
1392 mmc->max_blk_count = mmc->max_req_size / mmc->max_blk_size;
fdc50a94
YG
1393 mmc->max_seg_size = mmc->max_req_size;
1394
fdc50a94 1395 platform_set_drvdata(pdev, host);
a782d688 1396
faca6648
GL
1397 pm_runtime_enable(&pdev->dev);
1398 host->power = false;
1399
047a9ce7 1400 host->hclk = clk_get(&pdev->dev, NULL);
b289174f
GL
1401 if (IS_ERR(host->hclk)) {
1402 ret = PTR_ERR(host->hclk);
047a9ce7 1403 dev_err(&pdev->dev, "cannot get clock: %d\n", ret);
b289174f
GL
1404 goto eclkget;
1405 }
a6609267
GL
1406 ret = sh_mmcif_clk_update(host);
1407 if (ret < 0)
1408 goto eclkupdate;
b289174f 1409
faca6648
GL
1410 ret = pm_runtime_resume(&pdev->dev);
1411 if (ret < 0)
e1aae2eb 1412 goto eresume;
a782d688 1413
5ba85d95 1414 INIT_DELAYED_WORK(&host->timeout_work, mmcif_timeout_work);
fdc50a94 1415
b289174f 1416 sh_mmcif_sync_reset(host);
3b0beafc
GL
1417 sh_mmcif_writel(host->addr, MMCIF_CE_INT_MASK, MASK_ALL);
1418
2cd5b3e0
SK
1419 name = irq[1] < 0 ? dev_name(&pdev->dev) : "sh_mmc:error";
1420 ret = request_threaded_irq(irq[0], sh_mmcif_intr, sh_mmcif_irqt, 0, name, host);
fdc50a94 1421 if (ret) {
2cd5b3e0 1422 dev_err(&pdev->dev, "request_irq error (%s)\n", name);
e1aae2eb 1423 goto ereqirq0;
fdc50a94 1424 }
2cd5b3e0
SK
1425 if (irq[1] >= 0) {
1426 ret = request_threaded_irq(irq[1], sh_mmcif_intr, sh_mmcif_irqt,
1427 0, "sh_mmc:int", host);
1428 if (ret) {
1429 dev_err(&pdev->dev, "request_irq error (sh_mmc:int)\n");
1430 goto ereqirq1;
1431 }
fdc50a94
YG
1432 }
1433
e480606a
GL
1434 if (pd && pd->use_cd_gpio) {
1435 ret = mmc_gpio_request_cd(mmc, pd->cd_gpio);
1436 if (ret < 0)
1437 goto erqcd;
1438 }
1439
8047310e
GL
1440 mutex_init(&host->thread_lock);
1441
b289174f 1442 clk_disable(host->hclk);
5ba85d95
GL
1443 ret = mmc_add_host(mmc);
1444 if (ret < 0)
e1aae2eb 1445 goto emmcaddh;
fdc50a94 1446
efe6a8ad
RW
1447 dev_pm_qos_expose_latency_limit(&pdev->dev, 100);
1448
e47bf32a
GL
1449 dev_info(&pdev->dev, "driver version %s\n", DRIVER_VERSION);
1450 dev_dbg(&pdev->dev, "chip ver H'%04x\n",
487d9fc5 1451 sh_mmcif_readl(host->addr, MMCIF_CE_VERSION) & 0x0000ffff);
fdc50a94
YG
1452 return ret;
1453
e1aae2eb 1454emmcaddh:
e480606a 1455erqcd:
2cd5b3e0
SK
1456 if (irq[1] >= 0)
1457 free_irq(irq[1], host);
e1aae2eb 1458ereqirq1:
5ba85d95 1459 free_irq(irq[0], host);
e1aae2eb 1460ereqirq0:
faca6648 1461 pm_runtime_suspend(&pdev->dev);
e1aae2eb 1462eresume:
fdc50a94 1463 clk_disable(host->hclk);
a6609267 1464eclkupdate:
b289174f 1465 clk_put(host->hclk);
e1aae2eb 1466eclkget:
b289174f 1467 pm_runtime_disable(&pdev->dev);
fdc50a94 1468 mmc_free_host(mmc);
e1aae2eb
GL
1469ealloch:
1470 iounmap(reg);
fdc50a94
YG
1471 return ret;
1472}
1473
6e0ee714 1474static int sh_mmcif_remove(struct platform_device *pdev)
fdc50a94
YG
1475{
1476 struct sh_mmcif_host *host = platform_get_drvdata(pdev);
1477 int irq[2];
1478
f985da17 1479 host->dying = true;
b289174f 1480 clk_enable(host->hclk);
faca6648 1481 pm_runtime_get_sync(&pdev->dev);
fdc50a94 1482
efe6a8ad
RW
1483 dev_pm_qos_hide_latency_limit(&pdev->dev);
1484
faca6648 1485 mmc_remove_host(host->mmc);
3b0beafc
GL
1486 sh_mmcif_writel(host->addr, MMCIF_CE_INT_MASK, MASK_ALL);
1487
f985da17
GL
1488 /*
1489 * FIXME: cancel_delayed_work(_sync)() and free_irq() race with the
1490 * mmc_remove_host() call above. But swapping order doesn't help either
1491 * (a query on the linux-mmc mailing list didn't bring any replies).
1492 */
1493 cancel_delayed_work_sync(&host->timeout_work);
1494
fdc50a94
YG
1495 if (host->addr)
1496 iounmap(host->addr);
1497
aa0787a9
GL
1498 irq[0] = platform_get_irq(pdev, 0);
1499 irq[1] = platform_get_irq(pdev, 1);
fdc50a94
YG
1500
1501 free_irq(irq[0], host);
2cd5b3e0
SK
1502 if (irq[1] >= 0)
1503 free_irq(irq[1], host);
fdc50a94 1504
a0d28ba0 1505 clk_disable(host->hclk);
fdc50a94 1506 mmc_free_host(host->mmc);
faca6648
GL
1507 pm_runtime_put_sync(&pdev->dev);
1508 pm_runtime_disable(&pdev->dev);
fdc50a94
YG
1509
1510 return 0;
1511}
1512
faca6648
GL
1513#ifdef CONFIG_PM
1514static int sh_mmcif_suspend(struct device *dev)
1515{
b289174f 1516 struct sh_mmcif_host *host = dev_get_drvdata(dev);
faca6648
GL
1517 int ret = mmc_suspend_host(host->mmc);
1518
b289174f 1519 if (!ret)
faca6648 1520 sh_mmcif_writel(host->addr, MMCIF_CE_INT_MASK, MASK_ALL);
faca6648
GL
1521
1522 return ret;
1523}
1524
1525static int sh_mmcif_resume(struct device *dev)
1526{
b289174f 1527 struct sh_mmcif_host *host = dev_get_drvdata(dev);
faca6648
GL
1528
1529 return mmc_resume_host(host->mmc);
1530}
1531#else
1532#define sh_mmcif_suspend NULL
1533#define sh_mmcif_resume NULL
1534#endif /* CONFIG_PM */
1535
bf68a812
GL
1536static const struct of_device_id mmcif_of_match[] = {
1537 { .compatible = "renesas,sh-mmcif" },
1538 { }
1539};
1540MODULE_DEVICE_TABLE(of, mmcif_of_match);
1541
faca6648
GL
1542static const struct dev_pm_ops sh_mmcif_dev_pm_ops = {
1543 .suspend = sh_mmcif_suspend,
1544 .resume = sh_mmcif_resume,
1545};
1546
fdc50a94
YG
1547static struct platform_driver sh_mmcif_driver = {
1548 .probe = sh_mmcif_probe,
1549 .remove = sh_mmcif_remove,
1550 .driver = {
1551 .name = DRIVER_NAME,
faca6648 1552 .pm = &sh_mmcif_dev_pm_ops,
bf68a812
GL
1553 .owner = THIS_MODULE,
1554 .of_match_table = mmcif_of_match,
fdc50a94
YG
1555 },
1556};
1557
d1f81a64 1558module_platform_driver(sh_mmcif_driver);
fdc50a94
YG
1559
1560MODULE_DESCRIPTION("SuperH on-chip MMC/eMMC interface driver");
1561MODULE_LICENSE("GPL");
aa0787a9 1562MODULE_ALIAS("platform:" DRIVER_NAME);
fdc50a94 1563MODULE_AUTHOR("Yusuke Goda <yusuke.goda.sx@renesas.com>");