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