Loading...
1/*
2 * linux/drivers/mmc/s3cmci.h - Samsung S3C MCI driver
3 *
4 * Copyright (C) 2004-2006 maintech GmbH, Thomas Kleffel <tk@maintech.de>
5 *
6 * Current driver maintained by Ben Dooks and Simtec Electronics
7 * Copyright (C) 2008 Simtec Electronics <ben-linux@fluff.org>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 */
13
14#include <linux/module.h>
15#include <linux/dmaengine.h>
16#include <linux/dma-mapping.h>
17#include <linux/clk.h>
18#include <linux/mmc/host.h>
19#include <linux/platform_device.h>
20#include <linux/cpufreq.h>
21#include <linux/debugfs.h>
22#include <linux/seq_file.h>
23#include <linux/gpio.h>
24#include <linux/irq.h>
25#include <linux/io.h>
26
27#include <plat/gpio-cfg.h>
28#include <mach/dma.h>
29#include <mach/gpio-samsung.h>
30
31#include <linux/platform_data/dma-s3c24xx.h>
32#include <linux/platform_data/mmc-s3cmci.h>
33
34#include "s3cmci.h"
35
36#define DRIVER_NAME "s3c-mci"
37
38#define S3C2410_SDICON (0x00)
39#define S3C2410_SDIPRE (0x04)
40#define S3C2410_SDICMDARG (0x08)
41#define S3C2410_SDICMDCON (0x0C)
42#define S3C2410_SDICMDSTAT (0x10)
43#define S3C2410_SDIRSP0 (0x14)
44#define S3C2410_SDIRSP1 (0x18)
45#define S3C2410_SDIRSP2 (0x1C)
46#define S3C2410_SDIRSP3 (0x20)
47#define S3C2410_SDITIMER (0x24)
48#define S3C2410_SDIBSIZE (0x28)
49#define S3C2410_SDIDCON (0x2C)
50#define S3C2410_SDIDCNT (0x30)
51#define S3C2410_SDIDSTA (0x34)
52#define S3C2410_SDIFSTA (0x38)
53
54#define S3C2410_SDIDATA (0x3C)
55#define S3C2410_SDIIMSK (0x40)
56
57#define S3C2440_SDIDATA (0x40)
58#define S3C2440_SDIIMSK (0x3C)
59
60#define S3C2440_SDICON_SDRESET (1 << 8)
61#define S3C2410_SDICON_SDIOIRQ (1 << 3)
62#define S3C2410_SDICON_FIFORESET (1 << 1)
63#define S3C2410_SDICON_CLOCKTYPE (1 << 0)
64
65#define S3C2410_SDICMDCON_LONGRSP (1 << 10)
66#define S3C2410_SDICMDCON_WAITRSP (1 << 9)
67#define S3C2410_SDICMDCON_CMDSTART (1 << 8)
68#define S3C2410_SDICMDCON_SENDERHOST (1 << 6)
69#define S3C2410_SDICMDCON_INDEX (0x3f)
70
71#define S3C2410_SDICMDSTAT_CRCFAIL (1 << 12)
72#define S3C2410_SDICMDSTAT_CMDSENT (1 << 11)
73#define S3C2410_SDICMDSTAT_CMDTIMEOUT (1 << 10)
74#define S3C2410_SDICMDSTAT_RSPFIN (1 << 9)
75
76#define S3C2440_SDIDCON_DS_WORD (2 << 22)
77#define S3C2410_SDIDCON_TXAFTERRESP (1 << 20)
78#define S3C2410_SDIDCON_RXAFTERCMD (1 << 19)
79#define S3C2410_SDIDCON_BLOCKMODE (1 << 17)
80#define S3C2410_SDIDCON_WIDEBUS (1 << 16)
81#define S3C2410_SDIDCON_DMAEN (1 << 15)
82#define S3C2410_SDIDCON_STOP (1 << 14)
83#define S3C2440_SDIDCON_DATSTART (1 << 14)
84
85#define S3C2410_SDIDCON_XFER_RXSTART (2 << 12)
86#define S3C2410_SDIDCON_XFER_TXSTART (3 << 12)
87
88#define S3C2410_SDIDCON_BLKNUM_MASK (0xFFF)
89
90#define S3C2410_SDIDSTA_SDIOIRQDETECT (1 << 9)
91#define S3C2410_SDIDSTA_FIFOFAIL (1 << 8)
92#define S3C2410_SDIDSTA_CRCFAIL (1 << 7)
93#define S3C2410_SDIDSTA_RXCRCFAIL (1 << 6)
94#define S3C2410_SDIDSTA_DATATIMEOUT (1 << 5)
95#define S3C2410_SDIDSTA_XFERFINISH (1 << 4)
96#define S3C2410_SDIDSTA_TXDATAON (1 << 1)
97#define S3C2410_SDIDSTA_RXDATAON (1 << 0)
98
99#define S3C2440_SDIFSTA_FIFORESET (1 << 16)
100#define S3C2440_SDIFSTA_FIFOFAIL (3 << 14)
101#define S3C2410_SDIFSTA_TFDET (1 << 13)
102#define S3C2410_SDIFSTA_RFDET (1 << 12)
103#define S3C2410_SDIFSTA_COUNTMASK (0x7f)
104
105#define S3C2410_SDIIMSK_RESPONSECRC (1 << 17)
106#define S3C2410_SDIIMSK_CMDSENT (1 << 16)
107#define S3C2410_SDIIMSK_CMDTIMEOUT (1 << 15)
108#define S3C2410_SDIIMSK_RESPONSEND (1 << 14)
109#define S3C2410_SDIIMSK_SDIOIRQ (1 << 12)
110#define S3C2410_SDIIMSK_FIFOFAIL (1 << 11)
111#define S3C2410_SDIIMSK_CRCSTATUS (1 << 10)
112#define S3C2410_SDIIMSK_DATACRC (1 << 9)
113#define S3C2410_SDIIMSK_DATATIMEOUT (1 << 8)
114#define S3C2410_SDIIMSK_DATAFINISH (1 << 7)
115#define S3C2410_SDIIMSK_TXFIFOHALF (1 << 4)
116#define S3C2410_SDIIMSK_RXFIFOLAST (1 << 2)
117#define S3C2410_SDIIMSK_RXFIFOHALF (1 << 0)
118
119enum dbg_channels {
120 dbg_err = (1 << 0),
121 dbg_debug = (1 << 1),
122 dbg_info = (1 << 2),
123 dbg_irq = (1 << 3),
124 dbg_sg = (1 << 4),
125 dbg_dma = (1 << 5),
126 dbg_pio = (1 << 6),
127 dbg_fail = (1 << 7),
128 dbg_conf = (1 << 8),
129};
130
131static const int dbgmap_err = dbg_fail;
132static const int dbgmap_info = dbg_info | dbg_conf;
133static const int dbgmap_debug = dbg_err | dbg_debug;
134
135#define dbg(host, channels, args...) \
136 do { \
137 if (dbgmap_err & channels) \
138 dev_err(&host->pdev->dev, args); \
139 else if (dbgmap_info & channels) \
140 dev_info(&host->pdev->dev, args); \
141 else if (dbgmap_debug & channels) \
142 dev_dbg(&host->pdev->dev, args); \
143 } while (0)
144
145static void finalize_request(struct s3cmci_host *host);
146static void s3cmci_send_request(struct mmc_host *mmc);
147static void s3cmci_reset(struct s3cmci_host *host);
148
149#ifdef CONFIG_MMC_DEBUG
150
151static void dbg_dumpregs(struct s3cmci_host *host, char *prefix)
152{
153 u32 con, pre, cmdarg, cmdcon, cmdsta, r0, r1, r2, r3, timer, bsize;
154 u32 datcon, datcnt, datsta, fsta, imask;
155
156 con = readl(host->base + S3C2410_SDICON);
157 pre = readl(host->base + S3C2410_SDIPRE);
158 cmdarg = readl(host->base + S3C2410_SDICMDARG);
159 cmdcon = readl(host->base + S3C2410_SDICMDCON);
160 cmdsta = readl(host->base + S3C2410_SDICMDSTAT);
161 r0 = readl(host->base + S3C2410_SDIRSP0);
162 r1 = readl(host->base + S3C2410_SDIRSP1);
163 r2 = readl(host->base + S3C2410_SDIRSP2);
164 r3 = readl(host->base + S3C2410_SDIRSP3);
165 timer = readl(host->base + S3C2410_SDITIMER);
166 bsize = readl(host->base + S3C2410_SDIBSIZE);
167 datcon = readl(host->base + S3C2410_SDIDCON);
168 datcnt = readl(host->base + S3C2410_SDIDCNT);
169 datsta = readl(host->base + S3C2410_SDIDSTA);
170 fsta = readl(host->base + S3C2410_SDIFSTA);
171 imask = readl(host->base + host->sdiimsk);
172
173 dbg(host, dbg_debug, "%s CON:[%08x] PRE:[%08x] TMR:[%08x]\n",
174 prefix, con, pre, timer);
175
176 dbg(host, dbg_debug, "%s CCON:[%08x] CARG:[%08x] CSTA:[%08x]\n",
177 prefix, cmdcon, cmdarg, cmdsta);
178
179 dbg(host, dbg_debug, "%s DCON:[%08x] FSTA:[%08x]"
180 " DSTA:[%08x] DCNT:[%08x]\n",
181 prefix, datcon, fsta, datsta, datcnt);
182
183 dbg(host, dbg_debug, "%s R0:[%08x] R1:[%08x]"
184 " R2:[%08x] R3:[%08x]\n",
185 prefix, r0, r1, r2, r3);
186}
187
188static void prepare_dbgmsg(struct s3cmci_host *host, struct mmc_command *cmd,
189 int stop)
190{
191 snprintf(host->dbgmsg_cmd, 300,
192 "#%u%s op:%i arg:0x%08x flags:0x08%x retries:%u",
193 host->ccnt, (stop ? " (STOP)" : ""),
194 cmd->opcode, cmd->arg, cmd->flags, cmd->retries);
195
196 if (cmd->data) {
197 snprintf(host->dbgmsg_dat, 300,
198 "#%u bsize:%u blocks:%u bytes:%u",
199 host->dcnt, cmd->data->blksz,
200 cmd->data->blocks,
201 cmd->data->blocks * cmd->data->blksz);
202 } else {
203 host->dbgmsg_dat[0] = '\0';
204 }
205}
206
207static void dbg_dumpcmd(struct s3cmci_host *host, struct mmc_command *cmd,
208 int fail)
209{
210 unsigned int dbglvl = fail ? dbg_fail : dbg_debug;
211
212 if (!cmd)
213 return;
214
215 if (cmd->error == 0) {
216 dbg(host, dbglvl, "CMD[OK] %s R0:0x%08x\n",
217 host->dbgmsg_cmd, cmd->resp[0]);
218 } else {
219 dbg(host, dbglvl, "CMD[ERR %i] %s Status:%s\n",
220 cmd->error, host->dbgmsg_cmd, host->status);
221 }
222
223 if (!cmd->data)
224 return;
225
226 if (cmd->data->error == 0) {
227 dbg(host, dbglvl, "DAT[OK] %s\n", host->dbgmsg_dat);
228 } else {
229 dbg(host, dbglvl, "DAT[ERR %i] %s DCNT:0x%08x\n",
230 cmd->data->error, host->dbgmsg_dat,
231 readl(host->base + S3C2410_SDIDCNT));
232 }
233}
234#else
235static void dbg_dumpcmd(struct s3cmci_host *host,
236 struct mmc_command *cmd, int fail) { }
237
238static void prepare_dbgmsg(struct s3cmci_host *host, struct mmc_command *cmd,
239 int stop) { }
240
241static void dbg_dumpregs(struct s3cmci_host *host, char *prefix) { }
242
243#endif /* CONFIG_MMC_DEBUG */
244
245/**
246 * s3cmci_host_usedma - return whether the host is using dma or pio
247 * @host: The host state
248 *
249 * Return true if the host is using DMA to transfer data, else false
250 * to use PIO mode. Will return static data depending on the driver
251 * configuration.
252 */
253static inline bool s3cmci_host_usedma(struct s3cmci_host *host)
254{
255#ifdef CONFIG_MMC_S3C_PIO
256 return false;
257#else /* CONFIG_MMC_S3C_DMA */
258 return true;
259#endif
260}
261
262static inline u32 enable_imask(struct s3cmci_host *host, u32 imask)
263{
264 u32 newmask;
265
266 newmask = readl(host->base + host->sdiimsk);
267 newmask |= imask;
268
269 writel(newmask, host->base + host->sdiimsk);
270
271 return newmask;
272}
273
274static inline u32 disable_imask(struct s3cmci_host *host, u32 imask)
275{
276 u32 newmask;
277
278 newmask = readl(host->base + host->sdiimsk);
279 newmask &= ~imask;
280
281 writel(newmask, host->base + host->sdiimsk);
282
283 return newmask;
284}
285
286static inline void clear_imask(struct s3cmci_host *host)
287{
288 u32 mask = readl(host->base + host->sdiimsk);
289
290 /* preserve the SDIO IRQ mask state */
291 mask &= S3C2410_SDIIMSK_SDIOIRQ;
292 writel(mask, host->base + host->sdiimsk);
293}
294
295/**
296 * s3cmci_check_sdio_irq - test whether the SDIO IRQ is being signalled
297 * @host: The host to check.
298 *
299 * Test to see if the SDIO interrupt is being signalled in case the
300 * controller has failed to re-detect a card interrupt. Read GPE8 and
301 * see if it is low and if so, signal a SDIO interrupt.
302 *
303 * This is currently called if a request is finished (we assume that the
304 * bus is now idle) and when the SDIO IRQ is enabled in case the IRQ is
305 * already being indicated.
306*/
307static void s3cmci_check_sdio_irq(struct s3cmci_host *host)
308{
309 if (host->sdio_irqen) {
310 if (gpio_get_value(S3C2410_GPE(8)) == 0) {
311 pr_debug("%s: signalling irq\n", __func__);
312 mmc_signal_sdio_irq(host->mmc);
313 }
314 }
315}
316
317static inline int get_data_buffer(struct s3cmci_host *host,
318 u32 *bytes, u32 **pointer)
319{
320 struct scatterlist *sg;
321
322 if (host->pio_active == XFER_NONE)
323 return -EINVAL;
324
325 if ((!host->mrq) || (!host->mrq->data))
326 return -EINVAL;
327
328 if (host->pio_sgptr >= host->mrq->data->sg_len) {
329 dbg(host, dbg_debug, "no more buffers (%i/%i)\n",
330 host->pio_sgptr, host->mrq->data->sg_len);
331 return -EBUSY;
332 }
333 sg = &host->mrq->data->sg[host->pio_sgptr];
334
335 *bytes = sg->length;
336 *pointer = sg_virt(sg);
337
338 host->pio_sgptr++;
339
340 dbg(host, dbg_sg, "new buffer (%i/%i)\n",
341 host->pio_sgptr, host->mrq->data->sg_len);
342
343 return 0;
344}
345
346static inline u32 fifo_count(struct s3cmci_host *host)
347{
348 u32 fifostat = readl(host->base + S3C2410_SDIFSTA);
349
350 fifostat &= S3C2410_SDIFSTA_COUNTMASK;
351 return fifostat;
352}
353
354static inline u32 fifo_free(struct s3cmci_host *host)
355{
356 u32 fifostat = readl(host->base + S3C2410_SDIFSTA);
357
358 fifostat &= S3C2410_SDIFSTA_COUNTMASK;
359 return 63 - fifostat;
360}
361
362/**
363 * s3cmci_enable_irq - enable IRQ, after having disabled it.
364 * @host: The device state.
365 * @more: True if more IRQs are expected from transfer.
366 *
367 * Enable the main IRQ if needed after it has been disabled.
368 *
369 * The IRQ can be one of the following states:
370 * - disabled during IDLE
371 * - disabled whilst processing data
372 * - enabled during transfer
373 * - enabled whilst awaiting SDIO interrupt detection
374 */
375static void s3cmci_enable_irq(struct s3cmci_host *host, bool more)
376{
377 unsigned long flags;
378 bool enable = false;
379
380 local_irq_save(flags);
381
382 host->irq_enabled = more;
383 host->irq_disabled = false;
384
385 enable = more | host->sdio_irqen;
386
387 if (host->irq_state != enable) {
388 host->irq_state = enable;
389
390 if (enable)
391 enable_irq(host->irq);
392 else
393 disable_irq(host->irq);
394 }
395
396 local_irq_restore(flags);
397}
398
399/**
400 *
401 */
402static void s3cmci_disable_irq(struct s3cmci_host *host, bool transfer)
403{
404 unsigned long flags;
405
406 local_irq_save(flags);
407
408 /* pr_debug("%s: transfer %d\n", __func__, transfer); */
409
410 host->irq_disabled = transfer;
411
412 if (transfer && host->irq_state) {
413 host->irq_state = false;
414 disable_irq(host->irq);
415 }
416
417 local_irq_restore(flags);
418}
419
420static void do_pio_read(struct s3cmci_host *host)
421{
422 int res;
423 u32 fifo;
424 u32 *ptr;
425 u32 fifo_words;
426 void __iomem *from_ptr;
427
428 /* write real prescaler to host, it might be set slow to fix */
429 writel(host->prescaler, host->base + S3C2410_SDIPRE);
430
431 from_ptr = host->base + host->sdidata;
432
433 while ((fifo = fifo_count(host))) {
434 if (!host->pio_bytes) {
435 res = get_data_buffer(host, &host->pio_bytes,
436 &host->pio_ptr);
437 if (res) {
438 host->pio_active = XFER_NONE;
439 host->complete_what = COMPLETION_FINALIZE;
440
441 dbg(host, dbg_pio, "pio_read(): "
442 "complete (no more data).\n");
443 return;
444 }
445
446 dbg(host, dbg_pio,
447 "pio_read(): new target: [%i]@[%p]\n",
448 host->pio_bytes, host->pio_ptr);
449 }
450
451 dbg(host, dbg_pio,
452 "pio_read(): fifo:[%02i] buffer:[%03i] dcnt:[%08X]\n",
453 fifo, host->pio_bytes,
454 readl(host->base + S3C2410_SDIDCNT));
455
456 /* If we have reached the end of the block, we can
457 * read a word and get 1 to 3 bytes. If we in the
458 * middle of the block, we have to read full words,
459 * otherwise we will write garbage, so round down to
460 * an even multiple of 4. */
461 if (fifo >= host->pio_bytes)
462 fifo = host->pio_bytes;
463 else
464 fifo -= fifo & 3;
465
466 host->pio_bytes -= fifo;
467 host->pio_count += fifo;
468
469 fifo_words = fifo >> 2;
470 ptr = host->pio_ptr;
471 while (fifo_words--)
472 *ptr++ = readl(from_ptr);
473 host->pio_ptr = ptr;
474
475 if (fifo & 3) {
476 u32 n = fifo & 3;
477 u32 data = readl(from_ptr);
478 u8 *p = (u8 *)host->pio_ptr;
479
480 while (n--) {
481 *p++ = data;
482 data >>= 8;
483 }
484 }
485 }
486
487 if (!host->pio_bytes) {
488 res = get_data_buffer(host, &host->pio_bytes, &host->pio_ptr);
489 if (res) {
490 dbg(host, dbg_pio,
491 "pio_read(): complete (no more buffers).\n");
492 host->pio_active = XFER_NONE;
493 host->complete_what = COMPLETION_FINALIZE;
494
495 return;
496 }
497 }
498
499 enable_imask(host,
500 S3C2410_SDIIMSK_RXFIFOHALF | S3C2410_SDIIMSK_RXFIFOLAST);
501}
502
503static void do_pio_write(struct s3cmci_host *host)
504{
505 void __iomem *to_ptr;
506 int res;
507 u32 fifo;
508 u32 *ptr;
509
510 to_ptr = host->base + host->sdidata;
511
512 while ((fifo = fifo_free(host)) > 3) {
513 if (!host->pio_bytes) {
514 res = get_data_buffer(host, &host->pio_bytes,
515 &host->pio_ptr);
516 if (res) {
517 dbg(host, dbg_pio,
518 "pio_write(): complete (no more data).\n");
519 host->pio_active = XFER_NONE;
520
521 return;
522 }
523
524 dbg(host, dbg_pio,
525 "pio_write(): new source: [%i]@[%p]\n",
526 host->pio_bytes, host->pio_ptr);
527
528 }
529
530 /* If we have reached the end of the block, we have to
531 * write exactly the remaining number of bytes. If we
532 * in the middle of the block, we have to write full
533 * words, so round down to an even multiple of 4. */
534 if (fifo >= host->pio_bytes)
535 fifo = host->pio_bytes;
536 else
537 fifo -= fifo & 3;
538
539 host->pio_bytes -= fifo;
540 host->pio_count += fifo;
541
542 fifo = (fifo + 3) >> 2;
543 ptr = host->pio_ptr;
544 while (fifo--)
545 writel(*ptr++, to_ptr);
546 host->pio_ptr = ptr;
547 }
548
549 enable_imask(host, S3C2410_SDIIMSK_TXFIFOHALF);
550}
551
552static void pio_tasklet(unsigned long data)
553{
554 struct s3cmci_host *host = (struct s3cmci_host *) data;
555
556 s3cmci_disable_irq(host, true);
557
558 if (host->pio_active == XFER_WRITE)
559 do_pio_write(host);
560
561 if (host->pio_active == XFER_READ)
562 do_pio_read(host);
563
564 if (host->complete_what == COMPLETION_FINALIZE) {
565 clear_imask(host);
566 if (host->pio_active != XFER_NONE) {
567 dbg(host, dbg_err, "unfinished %s "
568 "- pio_count:[%u] pio_bytes:[%u]\n",
569 (host->pio_active == XFER_READ) ? "read" : "write",
570 host->pio_count, host->pio_bytes);
571
572 if (host->mrq->data)
573 host->mrq->data->error = -EINVAL;
574 }
575
576 s3cmci_enable_irq(host, false);
577 finalize_request(host);
578 } else
579 s3cmci_enable_irq(host, true);
580}
581
582/*
583 * ISR for SDI Interface IRQ
584 * Communication between driver and ISR works as follows:
585 * host->mrq points to current request
586 * host->complete_what Indicates when the request is considered done
587 * COMPLETION_CMDSENT when the command was sent
588 * COMPLETION_RSPFIN when a response was received
589 * COMPLETION_XFERFINISH when the data transfer is finished
590 * COMPLETION_XFERFINISH_RSPFIN both of the above.
591 * host->complete_request is the completion-object the driver waits for
592 *
593 * 1) Driver sets up host->mrq and host->complete_what
594 * 2) Driver prepares the transfer
595 * 3) Driver enables interrupts
596 * 4) Driver starts transfer
597 * 5) Driver waits for host->complete_rquest
598 * 6) ISR checks for request status (errors and success)
599 * 6) ISR sets host->mrq->cmd->error and host->mrq->data->error
600 * 7) ISR completes host->complete_request
601 * 8) ISR disables interrupts
602 * 9) Driver wakes up and takes care of the request
603 *
604 * Note: "->error"-fields are expected to be set to 0 before the request
605 * was issued by mmc.c - therefore they are only set, when an error
606 * contition comes up
607 */
608
609static irqreturn_t s3cmci_irq(int irq, void *dev_id)
610{
611 struct s3cmci_host *host = dev_id;
612 struct mmc_command *cmd;
613 u32 mci_csta, mci_dsta, mci_fsta, mci_dcnt, mci_imsk;
614 u32 mci_cclear = 0, mci_dclear;
615 unsigned long iflags;
616
617 mci_dsta = readl(host->base + S3C2410_SDIDSTA);
618 mci_imsk = readl(host->base + host->sdiimsk);
619
620 if (mci_dsta & S3C2410_SDIDSTA_SDIOIRQDETECT) {
621 if (mci_imsk & S3C2410_SDIIMSK_SDIOIRQ) {
622 mci_dclear = S3C2410_SDIDSTA_SDIOIRQDETECT;
623 writel(mci_dclear, host->base + S3C2410_SDIDSTA);
624
625 mmc_signal_sdio_irq(host->mmc);
626 return IRQ_HANDLED;
627 }
628 }
629
630 spin_lock_irqsave(&host->complete_lock, iflags);
631
632 mci_csta = readl(host->base + S3C2410_SDICMDSTAT);
633 mci_dcnt = readl(host->base + S3C2410_SDIDCNT);
634 mci_fsta = readl(host->base + S3C2410_SDIFSTA);
635 mci_dclear = 0;
636
637 if ((host->complete_what == COMPLETION_NONE) ||
638 (host->complete_what == COMPLETION_FINALIZE)) {
639 host->status = "nothing to complete";
640 clear_imask(host);
641 goto irq_out;
642 }
643
644 if (!host->mrq) {
645 host->status = "no active mrq";
646 clear_imask(host);
647 goto irq_out;
648 }
649
650 cmd = host->cmd_is_stop ? host->mrq->stop : host->mrq->cmd;
651
652 if (!cmd) {
653 host->status = "no active cmd";
654 clear_imask(host);
655 goto irq_out;
656 }
657
658 if (!s3cmci_host_usedma(host)) {
659 if ((host->pio_active == XFER_WRITE) &&
660 (mci_fsta & S3C2410_SDIFSTA_TFDET)) {
661
662 disable_imask(host, S3C2410_SDIIMSK_TXFIFOHALF);
663 tasklet_schedule(&host->pio_tasklet);
664 host->status = "pio tx";
665 }
666
667 if ((host->pio_active == XFER_READ) &&
668 (mci_fsta & S3C2410_SDIFSTA_RFDET)) {
669
670 disable_imask(host,
671 S3C2410_SDIIMSK_RXFIFOHALF |
672 S3C2410_SDIIMSK_RXFIFOLAST);
673
674 tasklet_schedule(&host->pio_tasklet);
675 host->status = "pio rx";
676 }
677 }
678
679 if (mci_csta & S3C2410_SDICMDSTAT_CMDTIMEOUT) {
680 dbg(host, dbg_err, "CMDSTAT: error CMDTIMEOUT\n");
681 cmd->error = -ETIMEDOUT;
682 host->status = "error: command timeout";
683 goto fail_transfer;
684 }
685
686 if (mci_csta & S3C2410_SDICMDSTAT_CMDSENT) {
687 if (host->complete_what == COMPLETION_CMDSENT) {
688 host->status = "ok: command sent";
689 goto close_transfer;
690 }
691
692 mci_cclear |= S3C2410_SDICMDSTAT_CMDSENT;
693 }
694
695 if (mci_csta & S3C2410_SDICMDSTAT_CRCFAIL) {
696 if (cmd->flags & MMC_RSP_CRC) {
697 if (host->mrq->cmd->flags & MMC_RSP_136) {
698 dbg(host, dbg_irq,
699 "fixup: ignore CRC fail with long rsp\n");
700 } else {
701 /* note, we used to fail the transfer
702 * here, but it seems that this is just
703 * the hardware getting it wrong.
704 *
705 * cmd->error = -EILSEQ;
706 * host->status = "error: bad command crc";
707 * goto fail_transfer;
708 */
709 }
710 }
711
712 mci_cclear |= S3C2410_SDICMDSTAT_CRCFAIL;
713 }
714
715 if (mci_csta & S3C2410_SDICMDSTAT_RSPFIN) {
716 if (host->complete_what == COMPLETION_RSPFIN) {
717 host->status = "ok: command response received";
718 goto close_transfer;
719 }
720
721 if (host->complete_what == COMPLETION_XFERFINISH_RSPFIN)
722 host->complete_what = COMPLETION_XFERFINISH;
723
724 mci_cclear |= S3C2410_SDICMDSTAT_RSPFIN;
725 }
726
727 /* errors handled after this point are only relevant
728 when a data transfer is in progress */
729
730 if (!cmd->data)
731 goto clear_status_bits;
732
733 /* Check for FIFO failure */
734 if (host->is2440) {
735 if (mci_fsta & S3C2440_SDIFSTA_FIFOFAIL) {
736 dbg(host, dbg_err, "FIFO failure\n");
737 host->mrq->data->error = -EILSEQ;
738 host->status = "error: 2440 fifo failure";
739 goto fail_transfer;
740 }
741 } else {
742 if (mci_dsta & S3C2410_SDIDSTA_FIFOFAIL) {
743 dbg(host, dbg_err, "FIFO failure\n");
744 cmd->data->error = -EILSEQ;
745 host->status = "error: fifo failure";
746 goto fail_transfer;
747 }
748 }
749
750 if (mci_dsta & S3C2410_SDIDSTA_RXCRCFAIL) {
751 dbg(host, dbg_err, "bad data crc (outgoing)\n");
752 cmd->data->error = -EILSEQ;
753 host->status = "error: bad data crc (outgoing)";
754 goto fail_transfer;
755 }
756
757 if (mci_dsta & S3C2410_SDIDSTA_CRCFAIL) {
758 dbg(host, dbg_err, "bad data crc (incoming)\n");
759 cmd->data->error = -EILSEQ;
760 host->status = "error: bad data crc (incoming)";
761 goto fail_transfer;
762 }
763
764 if (mci_dsta & S3C2410_SDIDSTA_DATATIMEOUT) {
765 dbg(host, dbg_err, "data timeout\n");
766 cmd->data->error = -ETIMEDOUT;
767 host->status = "error: data timeout";
768 goto fail_transfer;
769 }
770
771 if (mci_dsta & S3C2410_SDIDSTA_XFERFINISH) {
772 if (host->complete_what == COMPLETION_XFERFINISH) {
773 host->status = "ok: data transfer completed";
774 goto close_transfer;
775 }
776
777 if (host->complete_what == COMPLETION_XFERFINISH_RSPFIN)
778 host->complete_what = COMPLETION_RSPFIN;
779
780 mci_dclear |= S3C2410_SDIDSTA_XFERFINISH;
781 }
782
783clear_status_bits:
784 writel(mci_cclear, host->base + S3C2410_SDICMDSTAT);
785 writel(mci_dclear, host->base + S3C2410_SDIDSTA);
786
787 goto irq_out;
788
789fail_transfer:
790 host->pio_active = XFER_NONE;
791
792close_transfer:
793 host->complete_what = COMPLETION_FINALIZE;
794
795 clear_imask(host);
796 tasklet_schedule(&host->pio_tasklet);
797
798 goto irq_out;
799
800irq_out:
801 dbg(host, dbg_irq,
802 "csta:0x%08x dsta:0x%08x fsta:0x%08x dcnt:0x%08x status:%s.\n",
803 mci_csta, mci_dsta, mci_fsta, mci_dcnt, host->status);
804
805 spin_unlock_irqrestore(&host->complete_lock, iflags);
806 return IRQ_HANDLED;
807
808}
809
810/*
811 * ISR for the CardDetect Pin
812*/
813
814static irqreturn_t s3cmci_irq_cd(int irq, void *dev_id)
815{
816 struct s3cmci_host *host = (struct s3cmci_host *)dev_id;
817
818 dbg(host, dbg_irq, "card detect\n");
819
820 mmc_detect_change(host->mmc, msecs_to_jiffies(500));
821
822 return IRQ_HANDLED;
823}
824
825static void s3cmci_dma_done_callback(void *arg)
826{
827 struct s3cmci_host *host = arg;
828 unsigned long iflags;
829
830 BUG_ON(!host->mrq);
831 BUG_ON(!host->mrq->data);
832
833 spin_lock_irqsave(&host->complete_lock, iflags);
834
835 dbg(host, dbg_dma, "DMA FINISHED\n");
836
837 host->dma_complete = 1;
838 host->complete_what = COMPLETION_FINALIZE;
839
840 tasklet_schedule(&host->pio_tasklet);
841 spin_unlock_irqrestore(&host->complete_lock, iflags);
842
843}
844
845static void finalize_request(struct s3cmci_host *host)
846{
847 struct mmc_request *mrq = host->mrq;
848 struct mmc_command *cmd;
849 int debug_as_failure = 0;
850
851 if (host->complete_what != COMPLETION_FINALIZE)
852 return;
853
854 if (!mrq)
855 return;
856 cmd = host->cmd_is_stop ? mrq->stop : mrq->cmd;
857
858 if (cmd->data && (cmd->error == 0) &&
859 (cmd->data->error == 0)) {
860 if (s3cmci_host_usedma(host) && (!host->dma_complete)) {
861 dbg(host, dbg_dma, "DMA Missing (%d)!\n",
862 host->dma_complete);
863 return;
864 }
865 }
866
867 /* Read response from controller. */
868 cmd->resp[0] = readl(host->base + S3C2410_SDIRSP0);
869 cmd->resp[1] = readl(host->base + S3C2410_SDIRSP1);
870 cmd->resp[2] = readl(host->base + S3C2410_SDIRSP2);
871 cmd->resp[3] = readl(host->base + S3C2410_SDIRSP3);
872
873 writel(host->prescaler, host->base + S3C2410_SDIPRE);
874
875 if (cmd->error)
876 debug_as_failure = 1;
877
878 if (cmd->data && cmd->data->error)
879 debug_as_failure = 1;
880
881 dbg_dumpcmd(host, cmd, debug_as_failure);
882
883 /* Cleanup controller */
884 writel(0, host->base + S3C2410_SDICMDARG);
885 writel(S3C2410_SDIDCON_STOP, host->base + S3C2410_SDIDCON);
886 writel(0, host->base + S3C2410_SDICMDCON);
887 clear_imask(host);
888
889 if (cmd->data && cmd->error)
890 cmd->data->error = cmd->error;
891
892 if (cmd->data && cmd->data->stop && (!host->cmd_is_stop)) {
893 host->cmd_is_stop = 1;
894 s3cmci_send_request(host->mmc);
895 return;
896 }
897
898 /* If we have no data transfer we are finished here */
899 if (!mrq->data)
900 goto request_done;
901
902 /* Calculate the amout of bytes transfer if there was no error */
903 if (mrq->data->error == 0) {
904 mrq->data->bytes_xfered =
905 (mrq->data->blocks * mrq->data->blksz);
906 } else {
907 mrq->data->bytes_xfered = 0;
908 }
909
910 /* If we had an error while transferring data we flush the
911 * DMA channel and the fifo to clear out any garbage. */
912 if (mrq->data->error != 0) {
913 if (s3cmci_host_usedma(host))
914 dmaengine_terminate_all(host->dma);
915
916 if (host->is2440) {
917 /* Clear failure register and reset fifo. */
918 writel(S3C2440_SDIFSTA_FIFORESET |
919 S3C2440_SDIFSTA_FIFOFAIL,
920 host->base + S3C2410_SDIFSTA);
921 } else {
922 u32 mci_con;
923
924 /* reset fifo */
925 mci_con = readl(host->base + S3C2410_SDICON);
926 mci_con |= S3C2410_SDICON_FIFORESET;
927
928 writel(mci_con, host->base + S3C2410_SDICON);
929 }
930 }
931
932request_done:
933 host->complete_what = COMPLETION_NONE;
934 host->mrq = NULL;
935
936 s3cmci_check_sdio_irq(host);
937 mmc_request_done(host->mmc, mrq);
938}
939
940static void s3cmci_send_command(struct s3cmci_host *host,
941 struct mmc_command *cmd)
942{
943 u32 ccon, imsk;
944
945 imsk = S3C2410_SDIIMSK_CRCSTATUS | S3C2410_SDIIMSK_CMDTIMEOUT |
946 S3C2410_SDIIMSK_RESPONSEND | S3C2410_SDIIMSK_CMDSENT |
947 S3C2410_SDIIMSK_RESPONSECRC;
948
949 enable_imask(host, imsk);
950
951 if (cmd->data)
952 host->complete_what = COMPLETION_XFERFINISH_RSPFIN;
953 else if (cmd->flags & MMC_RSP_PRESENT)
954 host->complete_what = COMPLETION_RSPFIN;
955 else
956 host->complete_what = COMPLETION_CMDSENT;
957
958 writel(cmd->arg, host->base + S3C2410_SDICMDARG);
959
960 ccon = cmd->opcode & S3C2410_SDICMDCON_INDEX;
961 ccon |= S3C2410_SDICMDCON_SENDERHOST | S3C2410_SDICMDCON_CMDSTART;
962
963 if (cmd->flags & MMC_RSP_PRESENT)
964 ccon |= S3C2410_SDICMDCON_WAITRSP;
965
966 if (cmd->flags & MMC_RSP_136)
967 ccon |= S3C2410_SDICMDCON_LONGRSP;
968
969 writel(ccon, host->base + S3C2410_SDICMDCON);
970}
971
972static int s3cmci_setup_data(struct s3cmci_host *host, struct mmc_data *data)
973{
974 u32 dcon, imsk, stoptries = 3;
975
976 /* write DCON register */
977
978 if (!data) {
979 writel(0, host->base + S3C2410_SDIDCON);
980 return 0;
981 }
982
983 if ((data->blksz & 3) != 0) {
984 /* We cannot deal with unaligned blocks with more than
985 * one block being transferred. */
986
987 if (data->blocks > 1) {
988 pr_warn("%s: can't do non-word sized block transfers (blksz %d)\n",
989 __func__, data->blksz);
990 return -EINVAL;
991 }
992 }
993
994 while (readl(host->base + S3C2410_SDIDSTA) &
995 (S3C2410_SDIDSTA_TXDATAON | S3C2410_SDIDSTA_RXDATAON)) {
996
997 dbg(host, dbg_err,
998 "mci_setup_data() transfer stillin progress.\n");
999
1000 writel(S3C2410_SDIDCON_STOP, host->base + S3C2410_SDIDCON);
1001 s3cmci_reset(host);
1002
1003 if ((stoptries--) == 0) {
1004 dbg_dumpregs(host, "DRF");
1005 return -EINVAL;
1006 }
1007 }
1008
1009 dcon = data->blocks & S3C2410_SDIDCON_BLKNUM_MASK;
1010
1011 if (s3cmci_host_usedma(host))
1012 dcon |= S3C2410_SDIDCON_DMAEN;
1013
1014 if (host->bus_width == MMC_BUS_WIDTH_4)
1015 dcon |= S3C2410_SDIDCON_WIDEBUS;
1016
1017 dcon |= S3C2410_SDIDCON_BLOCKMODE;
1018
1019 if (data->flags & MMC_DATA_WRITE) {
1020 dcon |= S3C2410_SDIDCON_TXAFTERRESP;
1021 dcon |= S3C2410_SDIDCON_XFER_TXSTART;
1022 }
1023
1024 if (data->flags & MMC_DATA_READ) {
1025 dcon |= S3C2410_SDIDCON_RXAFTERCMD;
1026 dcon |= S3C2410_SDIDCON_XFER_RXSTART;
1027 }
1028
1029 if (host->is2440) {
1030 dcon |= S3C2440_SDIDCON_DS_WORD;
1031 dcon |= S3C2440_SDIDCON_DATSTART;
1032 }
1033
1034 writel(dcon, host->base + S3C2410_SDIDCON);
1035
1036 /* write BSIZE register */
1037
1038 writel(data->blksz, host->base + S3C2410_SDIBSIZE);
1039
1040 /* add to IMASK register */
1041 imsk = S3C2410_SDIIMSK_FIFOFAIL | S3C2410_SDIIMSK_DATACRC |
1042 S3C2410_SDIIMSK_DATATIMEOUT | S3C2410_SDIIMSK_DATAFINISH;
1043
1044 enable_imask(host, imsk);
1045
1046 /* write TIMER register */
1047
1048 if (host->is2440) {
1049 writel(0x007FFFFF, host->base + S3C2410_SDITIMER);
1050 } else {
1051 writel(0x0000FFFF, host->base + S3C2410_SDITIMER);
1052
1053 /* FIX: set slow clock to prevent timeouts on read */
1054 if (data->flags & MMC_DATA_READ)
1055 writel(0xFF, host->base + S3C2410_SDIPRE);
1056 }
1057
1058 return 0;
1059}
1060
1061#define BOTH_DIR (MMC_DATA_WRITE | MMC_DATA_READ)
1062
1063static int s3cmci_prepare_pio(struct s3cmci_host *host, struct mmc_data *data)
1064{
1065 int rw = (data->flags & MMC_DATA_WRITE) ? 1 : 0;
1066
1067 BUG_ON((data->flags & BOTH_DIR) == BOTH_DIR);
1068
1069 host->pio_sgptr = 0;
1070 host->pio_bytes = 0;
1071 host->pio_count = 0;
1072 host->pio_active = rw ? XFER_WRITE : XFER_READ;
1073
1074 if (rw) {
1075 do_pio_write(host);
1076 enable_imask(host, S3C2410_SDIIMSK_TXFIFOHALF);
1077 } else {
1078 enable_imask(host, S3C2410_SDIIMSK_RXFIFOHALF
1079 | S3C2410_SDIIMSK_RXFIFOLAST);
1080 }
1081
1082 return 0;
1083}
1084
1085static int s3cmci_prepare_dma(struct s3cmci_host *host, struct mmc_data *data)
1086{
1087 int rw = data->flags & MMC_DATA_WRITE;
1088 struct dma_async_tx_descriptor *desc;
1089 struct dma_slave_config conf = {
1090 .src_addr = host->mem->start + host->sdidata,
1091 .dst_addr = host->mem->start + host->sdidata,
1092 .src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES,
1093 .dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES,
1094 };
1095
1096 BUG_ON((data->flags & BOTH_DIR) == BOTH_DIR);
1097
1098 /* Restore prescaler value */
1099 writel(host->prescaler, host->base + S3C2410_SDIPRE);
1100
1101 if (!rw)
1102 conf.direction = DMA_DEV_TO_MEM;
1103 else
1104 conf.direction = DMA_MEM_TO_DEV;
1105
1106 dma_map_sg(mmc_dev(host->mmc), data->sg, data->sg_len,
1107 rw ? DMA_TO_DEVICE : DMA_FROM_DEVICE);
1108
1109 dmaengine_slave_config(host->dma, &conf);
1110 desc = dmaengine_prep_slave_sg(host->dma, data->sg, data->sg_len,
1111 conf.direction,
1112 DMA_CTRL_ACK | DMA_PREP_INTERRUPT);
1113 if (!desc)
1114 goto unmap_exit;
1115 desc->callback = s3cmci_dma_done_callback;
1116 desc->callback_param = host;
1117 dmaengine_submit(desc);
1118 dma_async_issue_pending(host->dma);
1119
1120 return 0;
1121
1122unmap_exit:
1123 dma_unmap_sg(mmc_dev(host->mmc), data->sg, data->sg_len,
1124 rw ? DMA_TO_DEVICE : DMA_FROM_DEVICE);
1125 return -ENOMEM;
1126}
1127
1128static void s3cmci_send_request(struct mmc_host *mmc)
1129{
1130 struct s3cmci_host *host = mmc_priv(mmc);
1131 struct mmc_request *mrq = host->mrq;
1132 struct mmc_command *cmd = host->cmd_is_stop ? mrq->stop : mrq->cmd;
1133
1134 host->ccnt++;
1135 prepare_dbgmsg(host, cmd, host->cmd_is_stop);
1136
1137 /* Clear command, data and fifo status registers
1138 Fifo clear only necessary on 2440, but doesn't hurt on 2410
1139 */
1140 writel(0xFFFFFFFF, host->base + S3C2410_SDICMDSTAT);
1141 writel(0xFFFFFFFF, host->base + S3C2410_SDIDSTA);
1142 writel(0xFFFFFFFF, host->base + S3C2410_SDIFSTA);
1143
1144 if (cmd->data) {
1145 int res = s3cmci_setup_data(host, cmd->data);
1146
1147 host->dcnt++;
1148
1149 if (res) {
1150 dbg(host, dbg_err, "setup data error %d\n", res);
1151 cmd->error = res;
1152 cmd->data->error = res;
1153
1154 mmc_request_done(mmc, mrq);
1155 return;
1156 }
1157
1158 if (s3cmci_host_usedma(host))
1159 res = s3cmci_prepare_dma(host, cmd->data);
1160 else
1161 res = s3cmci_prepare_pio(host, cmd->data);
1162
1163 if (res) {
1164 dbg(host, dbg_err, "data prepare error %d\n", res);
1165 cmd->error = res;
1166 cmd->data->error = res;
1167
1168 mmc_request_done(mmc, mrq);
1169 return;
1170 }
1171 }
1172
1173 /* Send command */
1174 s3cmci_send_command(host, cmd);
1175
1176 /* Enable Interrupt */
1177 s3cmci_enable_irq(host, true);
1178}
1179
1180static int s3cmci_card_present(struct mmc_host *mmc)
1181{
1182 struct s3cmci_host *host = mmc_priv(mmc);
1183 struct s3c24xx_mci_pdata *pdata = host->pdata;
1184 int ret;
1185
1186 if (pdata->no_detect)
1187 return -ENOSYS;
1188
1189 ret = gpio_get_value(pdata->gpio_detect) ? 0 : 1;
1190 return ret ^ pdata->detect_invert;
1191}
1192
1193static void s3cmci_request(struct mmc_host *mmc, struct mmc_request *mrq)
1194{
1195 struct s3cmci_host *host = mmc_priv(mmc);
1196
1197 host->status = "mmc request";
1198 host->cmd_is_stop = 0;
1199 host->mrq = mrq;
1200
1201 if (s3cmci_card_present(mmc) == 0) {
1202 dbg(host, dbg_err, "%s: no medium present\n", __func__);
1203 host->mrq->cmd->error = -ENOMEDIUM;
1204 mmc_request_done(mmc, mrq);
1205 } else
1206 s3cmci_send_request(mmc);
1207}
1208
1209static void s3cmci_set_clk(struct s3cmci_host *host, struct mmc_ios *ios)
1210{
1211 u32 mci_psc;
1212
1213 /* Set clock */
1214 for (mci_psc = 0; mci_psc < 255; mci_psc++) {
1215 host->real_rate = host->clk_rate / (host->clk_div*(mci_psc+1));
1216
1217 if (host->real_rate <= ios->clock)
1218 break;
1219 }
1220
1221 if (mci_psc > 255)
1222 mci_psc = 255;
1223
1224 host->prescaler = mci_psc;
1225 writel(host->prescaler, host->base + S3C2410_SDIPRE);
1226
1227 /* If requested clock is 0, real_rate will be 0, too */
1228 if (ios->clock == 0)
1229 host->real_rate = 0;
1230}
1231
1232static void s3cmci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
1233{
1234 struct s3cmci_host *host = mmc_priv(mmc);
1235 u32 mci_con;
1236
1237 /* Set the power state */
1238
1239 mci_con = readl(host->base + S3C2410_SDICON);
1240
1241 switch (ios->power_mode) {
1242 case MMC_POWER_ON:
1243 case MMC_POWER_UP:
1244 /* Configure GPE5...GPE10 pins in SD mode */
1245 s3c_gpio_cfgall_range(S3C2410_GPE(5), 6, S3C_GPIO_SFN(2),
1246 S3C_GPIO_PULL_NONE);
1247
1248 if (host->pdata->set_power)
1249 host->pdata->set_power(ios->power_mode, ios->vdd);
1250
1251 if (!host->is2440)
1252 mci_con |= S3C2410_SDICON_FIFORESET;
1253
1254 break;
1255
1256 case MMC_POWER_OFF:
1257 default:
1258 gpio_direction_output(S3C2410_GPE(5), 0);
1259
1260 if (host->is2440)
1261 mci_con |= S3C2440_SDICON_SDRESET;
1262
1263 if (host->pdata->set_power)
1264 host->pdata->set_power(ios->power_mode, ios->vdd);
1265
1266 break;
1267 }
1268
1269 s3cmci_set_clk(host, ios);
1270
1271 /* Set CLOCK_ENABLE */
1272 if (ios->clock)
1273 mci_con |= S3C2410_SDICON_CLOCKTYPE;
1274 else
1275 mci_con &= ~S3C2410_SDICON_CLOCKTYPE;
1276
1277 writel(mci_con, host->base + S3C2410_SDICON);
1278
1279 if ((ios->power_mode == MMC_POWER_ON) ||
1280 (ios->power_mode == MMC_POWER_UP)) {
1281 dbg(host, dbg_conf, "running at %lukHz (requested: %ukHz).\n",
1282 host->real_rate/1000, ios->clock/1000);
1283 } else {
1284 dbg(host, dbg_conf, "powered down.\n");
1285 }
1286
1287 host->bus_width = ios->bus_width;
1288}
1289
1290static void s3cmci_reset(struct s3cmci_host *host)
1291{
1292 u32 con = readl(host->base + S3C2410_SDICON);
1293
1294 con |= S3C2440_SDICON_SDRESET;
1295 writel(con, host->base + S3C2410_SDICON);
1296}
1297
1298static int s3cmci_get_ro(struct mmc_host *mmc)
1299{
1300 struct s3cmci_host *host = mmc_priv(mmc);
1301 struct s3c24xx_mci_pdata *pdata = host->pdata;
1302 int ret;
1303
1304 if (pdata->no_wprotect)
1305 return 0;
1306
1307 ret = gpio_get_value(pdata->gpio_wprotect) ? 1 : 0;
1308 ret ^= pdata->wprotect_invert;
1309
1310 return ret;
1311}
1312
1313static void s3cmci_enable_sdio_irq(struct mmc_host *mmc, int enable)
1314{
1315 struct s3cmci_host *host = mmc_priv(mmc);
1316 unsigned long flags;
1317 u32 con;
1318
1319 local_irq_save(flags);
1320
1321 con = readl(host->base + S3C2410_SDICON);
1322 host->sdio_irqen = enable;
1323
1324 if (enable == host->sdio_irqen)
1325 goto same_state;
1326
1327 if (enable) {
1328 con |= S3C2410_SDICON_SDIOIRQ;
1329 enable_imask(host, S3C2410_SDIIMSK_SDIOIRQ);
1330
1331 if (!host->irq_state && !host->irq_disabled) {
1332 host->irq_state = true;
1333 enable_irq(host->irq);
1334 }
1335 } else {
1336 disable_imask(host, S3C2410_SDIIMSK_SDIOIRQ);
1337 con &= ~S3C2410_SDICON_SDIOIRQ;
1338
1339 if (!host->irq_enabled && host->irq_state) {
1340 disable_irq_nosync(host->irq);
1341 host->irq_state = false;
1342 }
1343 }
1344
1345 writel(con, host->base + S3C2410_SDICON);
1346
1347 same_state:
1348 local_irq_restore(flags);
1349
1350 s3cmci_check_sdio_irq(host);
1351}
1352
1353static struct mmc_host_ops s3cmci_ops = {
1354 .request = s3cmci_request,
1355 .set_ios = s3cmci_set_ios,
1356 .get_ro = s3cmci_get_ro,
1357 .get_cd = s3cmci_card_present,
1358 .enable_sdio_irq = s3cmci_enable_sdio_irq,
1359};
1360
1361static struct s3c24xx_mci_pdata s3cmci_def_pdata = {
1362 /* This is currently here to avoid a number of if (host->pdata)
1363 * checks. Any zero fields to ensure reasonable defaults are picked. */
1364 .no_wprotect = 1,
1365 .no_detect = 1,
1366};
1367
1368#ifdef CONFIG_CPU_FREQ
1369
1370static int s3cmci_cpufreq_transition(struct notifier_block *nb,
1371 unsigned long val, void *data)
1372{
1373 struct s3cmci_host *host;
1374 struct mmc_host *mmc;
1375 unsigned long newclk;
1376 unsigned long flags;
1377
1378 host = container_of(nb, struct s3cmci_host, freq_transition);
1379 newclk = clk_get_rate(host->clk);
1380 mmc = host->mmc;
1381
1382 if ((val == CPUFREQ_PRECHANGE && newclk > host->clk_rate) ||
1383 (val == CPUFREQ_POSTCHANGE && newclk < host->clk_rate)) {
1384 spin_lock_irqsave(&mmc->lock, flags);
1385
1386 host->clk_rate = newclk;
1387
1388 if (mmc->ios.power_mode != MMC_POWER_OFF &&
1389 mmc->ios.clock != 0)
1390 s3cmci_set_clk(host, &mmc->ios);
1391
1392 spin_unlock_irqrestore(&mmc->lock, flags);
1393 }
1394
1395 return 0;
1396}
1397
1398static inline int s3cmci_cpufreq_register(struct s3cmci_host *host)
1399{
1400 host->freq_transition.notifier_call = s3cmci_cpufreq_transition;
1401
1402 return cpufreq_register_notifier(&host->freq_transition,
1403 CPUFREQ_TRANSITION_NOTIFIER);
1404}
1405
1406static inline void s3cmci_cpufreq_deregister(struct s3cmci_host *host)
1407{
1408 cpufreq_unregister_notifier(&host->freq_transition,
1409 CPUFREQ_TRANSITION_NOTIFIER);
1410}
1411
1412#else
1413static inline int s3cmci_cpufreq_register(struct s3cmci_host *host)
1414{
1415 return 0;
1416}
1417
1418static inline void s3cmci_cpufreq_deregister(struct s3cmci_host *host)
1419{
1420}
1421#endif
1422
1423
1424#ifdef CONFIG_DEBUG_FS
1425
1426static int s3cmci_state_show(struct seq_file *seq, void *v)
1427{
1428 struct s3cmci_host *host = seq->private;
1429
1430 seq_printf(seq, "Register base = 0x%08x\n", (u32)host->base);
1431 seq_printf(seq, "Clock rate = %ld\n", host->clk_rate);
1432 seq_printf(seq, "Prescale = %d\n", host->prescaler);
1433 seq_printf(seq, "is2440 = %d\n", host->is2440);
1434 seq_printf(seq, "IRQ = %d\n", host->irq);
1435 seq_printf(seq, "IRQ enabled = %d\n", host->irq_enabled);
1436 seq_printf(seq, "IRQ disabled = %d\n", host->irq_disabled);
1437 seq_printf(seq, "IRQ state = %d\n", host->irq_state);
1438 seq_printf(seq, "CD IRQ = %d\n", host->irq_cd);
1439 seq_printf(seq, "Do DMA = %d\n", s3cmci_host_usedma(host));
1440 seq_printf(seq, "SDIIMSK at %d\n", host->sdiimsk);
1441 seq_printf(seq, "SDIDATA at %d\n", host->sdidata);
1442
1443 return 0;
1444}
1445
1446static int s3cmci_state_open(struct inode *inode, struct file *file)
1447{
1448 return single_open(file, s3cmci_state_show, inode->i_private);
1449}
1450
1451static const struct file_operations s3cmci_fops_state = {
1452 .owner = THIS_MODULE,
1453 .open = s3cmci_state_open,
1454 .read = seq_read,
1455 .llseek = seq_lseek,
1456 .release = single_release,
1457};
1458
1459#define DBG_REG(_r) { .addr = S3C2410_SDI##_r, .name = #_r }
1460
1461struct s3cmci_reg {
1462 unsigned short addr;
1463 unsigned char *name;
1464} debug_regs[] = {
1465 DBG_REG(CON),
1466 DBG_REG(PRE),
1467 DBG_REG(CMDARG),
1468 DBG_REG(CMDCON),
1469 DBG_REG(CMDSTAT),
1470 DBG_REG(RSP0),
1471 DBG_REG(RSP1),
1472 DBG_REG(RSP2),
1473 DBG_REG(RSP3),
1474 DBG_REG(TIMER),
1475 DBG_REG(BSIZE),
1476 DBG_REG(DCON),
1477 DBG_REG(DCNT),
1478 DBG_REG(DSTA),
1479 DBG_REG(FSTA),
1480 {}
1481};
1482
1483static int s3cmci_regs_show(struct seq_file *seq, void *v)
1484{
1485 struct s3cmci_host *host = seq->private;
1486 struct s3cmci_reg *rptr = debug_regs;
1487
1488 for (; rptr->name; rptr++)
1489 seq_printf(seq, "SDI%s\t=0x%08x\n", rptr->name,
1490 readl(host->base + rptr->addr));
1491
1492 seq_printf(seq, "SDIIMSK\t=0x%08x\n", readl(host->base + host->sdiimsk));
1493
1494 return 0;
1495}
1496
1497static int s3cmci_regs_open(struct inode *inode, struct file *file)
1498{
1499 return single_open(file, s3cmci_regs_show, inode->i_private);
1500}
1501
1502static const struct file_operations s3cmci_fops_regs = {
1503 .owner = THIS_MODULE,
1504 .open = s3cmci_regs_open,
1505 .read = seq_read,
1506 .llseek = seq_lseek,
1507 .release = single_release,
1508};
1509
1510static void s3cmci_debugfs_attach(struct s3cmci_host *host)
1511{
1512 struct device *dev = &host->pdev->dev;
1513
1514 host->debug_root = debugfs_create_dir(dev_name(dev), NULL);
1515 if (IS_ERR(host->debug_root)) {
1516 dev_err(dev, "failed to create debugfs root\n");
1517 return;
1518 }
1519
1520 host->debug_state = debugfs_create_file("state", 0444,
1521 host->debug_root, host,
1522 &s3cmci_fops_state);
1523
1524 if (IS_ERR(host->debug_state))
1525 dev_err(dev, "failed to create debug state file\n");
1526
1527 host->debug_regs = debugfs_create_file("regs", 0444,
1528 host->debug_root, host,
1529 &s3cmci_fops_regs);
1530
1531 if (IS_ERR(host->debug_regs))
1532 dev_err(dev, "failed to create debug regs file\n");
1533}
1534
1535static void s3cmci_debugfs_remove(struct s3cmci_host *host)
1536{
1537 debugfs_remove(host->debug_regs);
1538 debugfs_remove(host->debug_state);
1539 debugfs_remove(host->debug_root);
1540}
1541
1542#else
1543static inline void s3cmci_debugfs_attach(struct s3cmci_host *host) { }
1544static inline void s3cmci_debugfs_remove(struct s3cmci_host *host) { }
1545
1546#endif /* CONFIG_DEBUG_FS */
1547
1548static int s3cmci_probe(struct platform_device *pdev)
1549{
1550 struct s3cmci_host *host;
1551 struct mmc_host *mmc;
1552 int ret;
1553 int is2440;
1554 int i;
1555
1556 is2440 = platform_get_device_id(pdev)->driver_data;
1557
1558 mmc = mmc_alloc_host(sizeof(struct s3cmci_host), &pdev->dev);
1559 if (!mmc) {
1560 ret = -ENOMEM;
1561 goto probe_out;
1562 }
1563
1564 for (i = S3C2410_GPE(5); i <= S3C2410_GPE(10); i++) {
1565 ret = gpio_request(i, dev_name(&pdev->dev));
1566 if (ret) {
1567 dev_err(&pdev->dev, "failed to get gpio %d\n", i);
1568
1569 for (i--; i >= S3C2410_GPE(5); i--)
1570 gpio_free(i);
1571
1572 goto probe_free_host;
1573 }
1574 }
1575
1576 host = mmc_priv(mmc);
1577 host->mmc = mmc;
1578 host->pdev = pdev;
1579 host->is2440 = is2440;
1580
1581 host->pdata = pdev->dev.platform_data;
1582 if (!host->pdata) {
1583 pdev->dev.platform_data = &s3cmci_def_pdata;
1584 host->pdata = &s3cmci_def_pdata;
1585 }
1586
1587 spin_lock_init(&host->complete_lock);
1588 tasklet_init(&host->pio_tasklet, pio_tasklet, (unsigned long) host);
1589
1590 if (is2440) {
1591 host->sdiimsk = S3C2440_SDIIMSK;
1592 host->sdidata = S3C2440_SDIDATA;
1593 host->clk_div = 1;
1594 } else {
1595 host->sdiimsk = S3C2410_SDIIMSK;
1596 host->sdidata = S3C2410_SDIDATA;
1597 host->clk_div = 2;
1598 }
1599
1600 host->complete_what = COMPLETION_NONE;
1601 host->pio_active = XFER_NONE;
1602
1603 host->mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1604 if (!host->mem) {
1605 dev_err(&pdev->dev,
1606 "failed to get io memory region resource.\n");
1607
1608 ret = -ENOENT;
1609 goto probe_free_gpio;
1610 }
1611
1612 host->mem = request_mem_region(host->mem->start,
1613 resource_size(host->mem), pdev->name);
1614
1615 if (!host->mem) {
1616 dev_err(&pdev->dev, "failed to request io memory region.\n");
1617 ret = -ENOENT;
1618 goto probe_free_gpio;
1619 }
1620
1621 host->base = ioremap(host->mem->start, resource_size(host->mem));
1622 if (!host->base) {
1623 dev_err(&pdev->dev, "failed to ioremap() io memory region.\n");
1624 ret = -EINVAL;
1625 goto probe_free_mem_region;
1626 }
1627
1628 host->irq = platform_get_irq(pdev, 0);
1629 if (host->irq == 0) {
1630 dev_err(&pdev->dev, "failed to get interrupt resource.\n");
1631 ret = -EINVAL;
1632 goto probe_iounmap;
1633 }
1634
1635 if (request_irq(host->irq, s3cmci_irq, 0, DRIVER_NAME, host)) {
1636 dev_err(&pdev->dev, "failed to request mci interrupt.\n");
1637 ret = -ENOENT;
1638 goto probe_iounmap;
1639 }
1640
1641 /* We get spurious interrupts even when we have set the IMSK
1642 * register to ignore everything, so use disable_irq() to make
1643 * ensure we don't lock the system with un-serviceable requests. */
1644
1645 disable_irq(host->irq);
1646 host->irq_state = false;
1647
1648 if (!host->pdata->no_detect) {
1649 ret = gpio_request(host->pdata->gpio_detect, "s3cmci detect");
1650 if (ret) {
1651 dev_err(&pdev->dev, "failed to get detect gpio\n");
1652 goto probe_free_irq;
1653 }
1654
1655 host->irq_cd = gpio_to_irq(host->pdata->gpio_detect);
1656
1657 if (host->irq_cd >= 0) {
1658 if (request_irq(host->irq_cd, s3cmci_irq_cd,
1659 IRQF_TRIGGER_RISING |
1660 IRQF_TRIGGER_FALLING,
1661 DRIVER_NAME, host)) {
1662 dev_err(&pdev->dev,
1663 "can't get card detect irq.\n");
1664 ret = -ENOENT;
1665 goto probe_free_gpio_cd;
1666 }
1667 } else {
1668 dev_warn(&pdev->dev,
1669 "host detect has no irq available\n");
1670 gpio_direction_input(host->pdata->gpio_detect);
1671 }
1672 } else
1673 host->irq_cd = -1;
1674
1675 if (!host->pdata->no_wprotect) {
1676 ret = gpio_request(host->pdata->gpio_wprotect, "s3cmci wp");
1677 if (ret) {
1678 dev_err(&pdev->dev, "failed to get writeprotect\n");
1679 goto probe_free_irq_cd;
1680 }
1681
1682 gpio_direction_input(host->pdata->gpio_wprotect);
1683 }
1684
1685 /* depending on the dma state, get a dma channel to use. */
1686
1687 if (s3cmci_host_usedma(host)) {
1688 dma_cap_mask_t mask;
1689
1690 dma_cap_zero(mask);
1691 dma_cap_set(DMA_SLAVE, mask);
1692
1693 host->dma = dma_request_slave_channel_compat(mask,
1694 s3c24xx_dma_filter, (void *)DMACH_SDI, &pdev->dev, "rx-tx");
1695 if (!host->dma) {
1696 dev_err(&pdev->dev, "cannot get DMA channel.\n");
1697 ret = -EBUSY;
1698 goto probe_free_gpio_wp;
1699 }
1700 }
1701
1702 host->clk = clk_get(&pdev->dev, "sdi");
1703 if (IS_ERR(host->clk)) {
1704 dev_err(&pdev->dev, "failed to find clock source.\n");
1705 ret = PTR_ERR(host->clk);
1706 host->clk = NULL;
1707 goto probe_free_dma;
1708 }
1709
1710 ret = clk_prepare_enable(host->clk);
1711 if (ret) {
1712 dev_err(&pdev->dev, "failed to enable clock source.\n");
1713 goto clk_free;
1714 }
1715
1716 host->clk_rate = clk_get_rate(host->clk);
1717
1718 mmc->ops = &s3cmci_ops;
1719 mmc->ocr_avail = MMC_VDD_32_33 | MMC_VDD_33_34;
1720#ifdef CONFIG_MMC_S3C_HW_SDIO_IRQ
1721 mmc->caps = MMC_CAP_4_BIT_DATA | MMC_CAP_SDIO_IRQ;
1722#else
1723 mmc->caps = MMC_CAP_4_BIT_DATA;
1724#endif
1725 mmc->f_min = host->clk_rate / (host->clk_div * 256);
1726 mmc->f_max = host->clk_rate / host->clk_div;
1727
1728 if (host->pdata->ocr_avail)
1729 mmc->ocr_avail = host->pdata->ocr_avail;
1730
1731 mmc->max_blk_count = 4095;
1732 mmc->max_blk_size = 4095;
1733 mmc->max_req_size = 4095 * 512;
1734 mmc->max_seg_size = mmc->max_req_size;
1735
1736 mmc->max_segs = 128;
1737
1738 dbg(host, dbg_debug,
1739 "probe: mode:%s mapped mci_base:%p irq:%u irq_cd:%u dma:%p.\n",
1740 (host->is2440?"2440":""),
1741 host->base, host->irq, host->irq_cd, host->dma);
1742
1743 ret = s3cmci_cpufreq_register(host);
1744 if (ret) {
1745 dev_err(&pdev->dev, "failed to register cpufreq\n");
1746 goto free_dmabuf;
1747 }
1748
1749 ret = mmc_add_host(mmc);
1750 if (ret) {
1751 dev_err(&pdev->dev, "failed to add mmc host.\n");
1752 goto free_cpufreq;
1753 }
1754
1755 s3cmci_debugfs_attach(host);
1756
1757 platform_set_drvdata(pdev, mmc);
1758 dev_info(&pdev->dev, "%s - using %s, %s SDIO IRQ\n", mmc_hostname(mmc),
1759 s3cmci_host_usedma(host) ? "dma" : "pio",
1760 mmc->caps & MMC_CAP_SDIO_IRQ ? "hw" : "sw");
1761
1762 return 0;
1763
1764 free_cpufreq:
1765 s3cmci_cpufreq_deregister(host);
1766
1767 free_dmabuf:
1768 clk_disable_unprepare(host->clk);
1769
1770 clk_free:
1771 clk_put(host->clk);
1772
1773 probe_free_dma:
1774 if (s3cmci_host_usedma(host))
1775 dma_release_channel(host->dma);
1776
1777 probe_free_gpio_wp:
1778 if (!host->pdata->no_wprotect)
1779 gpio_free(host->pdata->gpio_wprotect);
1780
1781 probe_free_gpio_cd:
1782 if (!host->pdata->no_detect)
1783 gpio_free(host->pdata->gpio_detect);
1784
1785 probe_free_irq_cd:
1786 if (host->irq_cd >= 0)
1787 free_irq(host->irq_cd, host);
1788
1789 probe_free_irq:
1790 free_irq(host->irq, host);
1791
1792 probe_iounmap:
1793 iounmap(host->base);
1794
1795 probe_free_mem_region:
1796 release_mem_region(host->mem->start, resource_size(host->mem));
1797
1798 probe_free_gpio:
1799 for (i = S3C2410_GPE(5); i <= S3C2410_GPE(10); i++)
1800 gpio_free(i);
1801
1802 probe_free_host:
1803 mmc_free_host(mmc);
1804
1805 probe_out:
1806 return ret;
1807}
1808
1809static void s3cmci_shutdown(struct platform_device *pdev)
1810{
1811 struct mmc_host *mmc = platform_get_drvdata(pdev);
1812 struct s3cmci_host *host = mmc_priv(mmc);
1813
1814 if (host->irq_cd >= 0)
1815 free_irq(host->irq_cd, host);
1816
1817 s3cmci_debugfs_remove(host);
1818 s3cmci_cpufreq_deregister(host);
1819 mmc_remove_host(mmc);
1820 clk_disable_unprepare(host->clk);
1821}
1822
1823static int s3cmci_remove(struct platform_device *pdev)
1824{
1825 struct mmc_host *mmc = platform_get_drvdata(pdev);
1826 struct s3cmci_host *host = mmc_priv(mmc);
1827 struct s3c24xx_mci_pdata *pd = host->pdata;
1828 int i;
1829
1830 s3cmci_shutdown(pdev);
1831
1832 clk_put(host->clk);
1833
1834 tasklet_disable(&host->pio_tasklet);
1835
1836 if (s3cmci_host_usedma(host))
1837 dma_release_channel(host->dma);
1838
1839 free_irq(host->irq, host);
1840
1841 if (!pd->no_wprotect)
1842 gpio_free(pd->gpio_wprotect);
1843
1844 if (!pd->no_detect)
1845 gpio_free(pd->gpio_detect);
1846
1847 for (i = S3C2410_GPE(5); i <= S3C2410_GPE(10); i++)
1848 gpio_free(i);
1849
1850
1851 iounmap(host->base);
1852 release_mem_region(host->mem->start, resource_size(host->mem));
1853
1854 mmc_free_host(mmc);
1855 return 0;
1856}
1857
1858static const struct platform_device_id s3cmci_driver_ids[] = {
1859 {
1860 .name = "s3c2410-sdi",
1861 .driver_data = 0,
1862 }, {
1863 .name = "s3c2412-sdi",
1864 .driver_data = 1,
1865 }, {
1866 .name = "s3c2440-sdi",
1867 .driver_data = 1,
1868 },
1869 { }
1870};
1871
1872MODULE_DEVICE_TABLE(platform, s3cmci_driver_ids);
1873
1874static struct platform_driver s3cmci_driver = {
1875 .driver = {
1876 .name = "s3c-sdi",
1877 },
1878 .id_table = s3cmci_driver_ids,
1879 .probe = s3cmci_probe,
1880 .remove = s3cmci_remove,
1881 .shutdown = s3cmci_shutdown,
1882};
1883
1884module_platform_driver(s3cmci_driver);
1885
1886MODULE_DESCRIPTION("Samsung S3C MMC/SD Card Interface driver");
1887MODULE_LICENSE("GPL v2");
1888MODULE_AUTHOR("Thomas Kleffel <tk@maintech.de>, Ben Dooks <ben-linux@fluff.org>");
1/*
2 * linux/drivers/mmc/s3cmci.h - Samsung S3C MCI driver
3 *
4 * Copyright (C) 2004-2006 maintech GmbH, Thomas Kleffel <tk@maintech.de>
5 *
6 * Current driver maintained by Ben Dooks and Simtec Electronics
7 * Copyright (C) 2008 Simtec Electronics <ben-linux@fluff.org>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 */
13
14#include <linux/module.h>
15#include <linux/dma-mapping.h>
16#include <linux/clk.h>
17#include <linux/mmc/host.h>
18#include <linux/platform_device.h>
19#include <linux/cpufreq.h>
20#include <linux/debugfs.h>
21#include <linux/seq_file.h>
22#include <linux/gpio.h>
23#include <linux/irq.h>
24#include <linux/io.h>
25
26#include <mach/dma.h>
27
28#include <mach/regs-sdi.h>
29#include <mach/regs-gpio.h>
30
31#include <plat/mci.h>
32
33#include "s3cmci.h"
34
35#define DRIVER_NAME "s3c-mci"
36
37enum dbg_channels {
38 dbg_err = (1 << 0),
39 dbg_debug = (1 << 1),
40 dbg_info = (1 << 2),
41 dbg_irq = (1 << 3),
42 dbg_sg = (1 << 4),
43 dbg_dma = (1 << 5),
44 dbg_pio = (1 << 6),
45 dbg_fail = (1 << 7),
46 dbg_conf = (1 << 8),
47};
48
49static const int dbgmap_err = dbg_fail;
50static const int dbgmap_info = dbg_info | dbg_conf;
51static const int dbgmap_debug = dbg_err | dbg_debug;
52
53#define dbg(host, channels, args...) \
54 do { \
55 if (dbgmap_err & channels) \
56 dev_err(&host->pdev->dev, args); \
57 else if (dbgmap_info & channels) \
58 dev_info(&host->pdev->dev, args); \
59 else if (dbgmap_debug & channels) \
60 dev_dbg(&host->pdev->dev, args); \
61 } while (0)
62
63static struct s3c2410_dma_client s3cmci_dma_client = {
64 .name = "s3c-mci",
65};
66
67static void finalize_request(struct s3cmci_host *host);
68static void s3cmci_send_request(struct mmc_host *mmc);
69static void s3cmci_reset(struct s3cmci_host *host);
70
71#ifdef CONFIG_MMC_DEBUG
72
73static void dbg_dumpregs(struct s3cmci_host *host, char *prefix)
74{
75 u32 con, pre, cmdarg, cmdcon, cmdsta, r0, r1, r2, r3, timer, bsize;
76 u32 datcon, datcnt, datsta, fsta, imask;
77
78 con = readl(host->base + S3C2410_SDICON);
79 pre = readl(host->base + S3C2410_SDIPRE);
80 cmdarg = readl(host->base + S3C2410_SDICMDARG);
81 cmdcon = readl(host->base + S3C2410_SDICMDCON);
82 cmdsta = readl(host->base + S3C2410_SDICMDSTAT);
83 r0 = readl(host->base + S3C2410_SDIRSP0);
84 r1 = readl(host->base + S3C2410_SDIRSP1);
85 r2 = readl(host->base + S3C2410_SDIRSP2);
86 r3 = readl(host->base + S3C2410_SDIRSP3);
87 timer = readl(host->base + S3C2410_SDITIMER);
88 bsize = readl(host->base + S3C2410_SDIBSIZE);
89 datcon = readl(host->base + S3C2410_SDIDCON);
90 datcnt = readl(host->base + S3C2410_SDIDCNT);
91 datsta = readl(host->base + S3C2410_SDIDSTA);
92 fsta = readl(host->base + S3C2410_SDIFSTA);
93 imask = readl(host->base + host->sdiimsk);
94
95 dbg(host, dbg_debug, "%s CON:[%08x] PRE:[%08x] TMR:[%08x]\n",
96 prefix, con, pre, timer);
97
98 dbg(host, dbg_debug, "%s CCON:[%08x] CARG:[%08x] CSTA:[%08x]\n",
99 prefix, cmdcon, cmdarg, cmdsta);
100
101 dbg(host, dbg_debug, "%s DCON:[%08x] FSTA:[%08x]"
102 " DSTA:[%08x] DCNT:[%08x]\n",
103 prefix, datcon, fsta, datsta, datcnt);
104
105 dbg(host, dbg_debug, "%s R0:[%08x] R1:[%08x]"
106 " R2:[%08x] R3:[%08x]\n",
107 prefix, r0, r1, r2, r3);
108}
109
110static void prepare_dbgmsg(struct s3cmci_host *host, struct mmc_command *cmd,
111 int stop)
112{
113 snprintf(host->dbgmsg_cmd, 300,
114 "#%u%s op:%i arg:0x%08x flags:0x08%x retries:%u",
115 host->ccnt, (stop ? " (STOP)" : ""),
116 cmd->opcode, cmd->arg, cmd->flags, cmd->retries);
117
118 if (cmd->data) {
119 snprintf(host->dbgmsg_dat, 300,
120 "#%u bsize:%u blocks:%u bytes:%u",
121 host->dcnt, cmd->data->blksz,
122 cmd->data->blocks,
123 cmd->data->blocks * cmd->data->blksz);
124 } else {
125 host->dbgmsg_dat[0] = '\0';
126 }
127}
128
129static void dbg_dumpcmd(struct s3cmci_host *host, struct mmc_command *cmd,
130 int fail)
131{
132 unsigned int dbglvl = fail ? dbg_fail : dbg_debug;
133
134 if (!cmd)
135 return;
136
137 if (cmd->error == 0) {
138 dbg(host, dbglvl, "CMD[OK] %s R0:0x%08x\n",
139 host->dbgmsg_cmd, cmd->resp[0]);
140 } else {
141 dbg(host, dbglvl, "CMD[ERR %i] %s Status:%s\n",
142 cmd->error, host->dbgmsg_cmd, host->status);
143 }
144
145 if (!cmd->data)
146 return;
147
148 if (cmd->data->error == 0) {
149 dbg(host, dbglvl, "DAT[OK] %s\n", host->dbgmsg_dat);
150 } else {
151 dbg(host, dbglvl, "DAT[ERR %i] %s DCNT:0x%08x\n",
152 cmd->data->error, host->dbgmsg_dat,
153 readl(host->base + S3C2410_SDIDCNT));
154 }
155}
156#else
157static void dbg_dumpcmd(struct s3cmci_host *host,
158 struct mmc_command *cmd, int fail) { }
159
160static void prepare_dbgmsg(struct s3cmci_host *host, struct mmc_command *cmd,
161 int stop) { }
162
163static void dbg_dumpregs(struct s3cmci_host *host, char *prefix) { }
164
165#endif /* CONFIG_MMC_DEBUG */
166
167/**
168 * s3cmci_host_usedma - return whether the host is using dma or pio
169 * @host: The host state
170 *
171 * Return true if the host is using DMA to transfer data, else false
172 * to use PIO mode. Will return static data depending on the driver
173 * configuration.
174 */
175static inline bool s3cmci_host_usedma(struct s3cmci_host *host)
176{
177#ifdef CONFIG_MMC_S3C_PIO
178 return false;
179#elif defined(CONFIG_MMC_S3C_DMA)
180 return true;
181#else
182 return host->dodma;
183#endif
184}
185
186/**
187 * s3cmci_host_canpio - return true if host has pio code available
188 *
189 * Return true if the driver has been compiled with the PIO support code
190 * available.
191 */
192static inline bool s3cmci_host_canpio(void)
193{
194#ifdef CONFIG_MMC_S3C_PIO
195 return true;
196#else
197 return false;
198#endif
199}
200
201static inline u32 enable_imask(struct s3cmci_host *host, u32 imask)
202{
203 u32 newmask;
204
205 newmask = readl(host->base + host->sdiimsk);
206 newmask |= imask;
207
208 writel(newmask, host->base + host->sdiimsk);
209
210 return newmask;
211}
212
213static inline u32 disable_imask(struct s3cmci_host *host, u32 imask)
214{
215 u32 newmask;
216
217 newmask = readl(host->base + host->sdiimsk);
218 newmask &= ~imask;
219
220 writel(newmask, host->base + host->sdiimsk);
221
222 return newmask;
223}
224
225static inline void clear_imask(struct s3cmci_host *host)
226{
227 u32 mask = readl(host->base + host->sdiimsk);
228
229 /* preserve the SDIO IRQ mask state */
230 mask &= S3C2410_SDIIMSK_SDIOIRQ;
231 writel(mask, host->base + host->sdiimsk);
232}
233
234/**
235 * s3cmci_check_sdio_irq - test whether the SDIO IRQ is being signalled
236 * @host: The host to check.
237 *
238 * Test to see if the SDIO interrupt is being signalled in case the
239 * controller has failed to re-detect a card interrupt. Read GPE8 and
240 * see if it is low and if so, signal a SDIO interrupt.
241 *
242 * This is currently called if a request is finished (we assume that the
243 * bus is now idle) and when the SDIO IRQ is enabled in case the IRQ is
244 * already being indicated.
245*/
246static void s3cmci_check_sdio_irq(struct s3cmci_host *host)
247{
248 if (host->sdio_irqen) {
249 if (gpio_get_value(S3C2410_GPE(8)) == 0) {
250 printk(KERN_DEBUG "%s: signalling irq\n", __func__);
251 mmc_signal_sdio_irq(host->mmc);
252 }
253 }
254}
255
256static inline int get_data_buffer(struct s3cmci_host *host,
257 u32 *bytes, u32 **pointer)
258{
259 struct scatterlist *sg;
260
261 if (host->pio_active == XFER_NONE)
262 return -EINVAL;
263
264 if ((!host->mrq) || (!host->mrq->data))
265 return -EINVAL;
266
267 if (host->pio_sgptr >= host->mrq->data->sg_len) {
268 dbg(host, dbg_debug, "no more buffers (%i/%i)\n",
269 host->pio_sgptr, host->mrq->data->sg_len);
270 return -EBUSY;
271 }
272 sg = &host->mrq->data->sg[host->pio_sgptr];
273
274 *bytes = sg->length;
275 *pointer = sg_virt(sg);
276
277 host->pio_sgptr++;
278
279 dbg(host, dbg_sg, "new buffer (%i/%i)\n",
280 host->pio_sgptr, host->mrq->data->sg_len);
281
282 return 0;
283}
284
285static inline u32 fifo_count(struct s3cmci_host *host)
286{
287 u32 fifostat = readl(host->base + S3C2410_SDIFSTA);
288
289 fifostat &= S3C2410_SDIFSTA_COUNTMASK;
290 return fifostat;
291}
292
293static inline u32 fifo_free(struct s3cmci_host *host)
294{
295 u32 fifostat = readl(host->base + S3C2410_SDIFSTA);
296
297 fifostat &= S3C2410_SDIFSTA_COUNTMASK;
298 return 63 - fifostat;
299}
300
301/**
302 * s3cmci_enable_irq - enable IRQ, after having disabled it.
303 * @host: The device state.
304 * @more: True if more IRQs are expected from transfer.
305 *
306 * Enable the main IRQ if needed after it has been disabled.
307 *
308 * The IRQ can be one of the following states:
309 * - disabled during IDLE
310 * - disabled whilst processing data
311 * - enabled during transfer
312 * - enabled whilst awaiting SDIO interrupt detection
313 */
314static void s3cmci_enable_irq(struct s3cmci_host *host, bool more)
315{
316 unsigned long flags;
317 bool enable = false;
318
319 local_irq_save(flags);
320
321 host->irq_enabled = more;
322 host->irq_disabled = false;
323
324 enable = more | host->sdio_irqen;
325
326 if (host->irq_state != enable) {
327 host->irq_state = enable;
328
329 if (enable)
330 enable_irq(host->irq);
331 else
332 disable_irq(host->irq);
333 }
334
335 local_irq_restore(flags);
336}
337
338/**
339 *
340 */
341static void s3cmci_disable_irq(struct s3cmci_host *host, bool transfer)
342{
343 unsigned long flags;
344
345 local_irq_save(flags);
346
347 //printk(KERN_DEBUG "%s: transfer %d\n", __func__, transfer);
348
349 host->irq_disabled = transfer;
350
351 if (transfer && host->irq_state) {
352 host->irq_state = false;
353 disable_irq(host->irq);
354 }
355
356 local_irq_restore(flags);
357}
358
359static void do_pio_read(struct s3cmci_host *host)
360{
361 int res;
362 u32 fifo;
363 u32 *ptr;
364 u32 fifo_words;
365 void __iomem *from_ptr;
366
367 /* write real prescaler to host, it might be set slow to fix */
368 writel(host->prescaler, host->base + S3C2410_SDIPRE);
369
370 from_ptr = host->base + host->sdidata;
371
372 while ((fifo = fifo_count(host))) {
373 if (!host->pio_bytes) {
374 res = get_data_buffer(host, &host->pio_bytes,
375 &host->pio_ptr);
376 if (res) {
377 host->pio_active = XFER_NONE;
378 host->complete_what = COMPLETION_FINALIZE;
379
380 dbg(host, dbg_pio, "pio_read(): "
381 "complete (no more data).\n");
382 return;
383 }
384
385 dbg(host, dbg_pio,
386 "pio_read(): new target: [%i]@[%p]\n",
387 host->pio_bytes, host->pio_ptr);
388 }
389
390 dbg(host, dbg_pio,
391 "pio_read(): fifo:[%02i] buffer:[%03i] dcnt:[%08X]\n",
392 fifo, host->pio_bytes,
393 readl(host->base + S3C2410_SDIDCNT));
394
395 /* If we have reached the end of the block, we can
396 * read a word and get 1 to 3 bytes. If we in the
397 * middle of the block, we have to read full words,
398 * otherwise we will write garbage, so round down to
399 * an even multiple of 4. */
400 if (fifo >= host->pio_bytes)
401 fifo = host->pio_bytes;
402 else
403 fifo -= fifo & 3;
404
405 host->pio_bytes -= fifo;
406 host->pio_count += fifo;
407
408 fifo_words = fifo >> 2;
409 ptr = host->pio_ptr;
410 while (fifo_words--)
411 *ptr++ = readl(from_ptr);
412 host->pio_ptr = ptr;
413
414 if (fifo & 3) {
415 u32 n = fifo & 3;
416 u32 data = readl(from_ptr);
417 u8 *p = (u8 *)host->pio_ptr;
418
419 while (n--) {
420 *p++ = data;
421 data >>= 8;
422 }
423 }
424 }
425
426 if (!host->pio_bytes) {
427 res = get_data_buffer(host, &host->pio_bytes, &host->pio_ptr);
428 if (res) {
429 dbg(host, dbg_pio,
430 "pio_read(): complete (no more buffers).\n");
431 host->pio_active = XFER_NONE;
432 host->complete_what = COMPLETION_FINALIZE;
433
434 return;
435 }
436 }
437
438 enable_imask(host,
439 S3C2410_SDIIMSK_RXFIFOHALF | S3C2410_SDIIMSK_RXFIFOLAST);
440}
441
442static void do_pio_write(struct s3cmci_host *host)
443{
444 void __iomem *to_ptr;
445 int res;
446 u32 fifo;
447 u32 *ptr;
448
449 to_ptr = host->base + host->sdidata;
450
451 while ((fifo = fifo_free(host)) > 3) {
452 if (!host->pio_bytes) {
453 res = get_data_buffer(host, &host->pio_bytes,
454 &host->pio_ptr);
455 if (res) {
456 dbg(host, dbg_pio,
457 "pio_write(): complete (no more data).\n");
458 host->pio_active = XFER_NONE;
459
460 return;
461 }
462
463 dbg(host, dbg_pio,
464 "pio_write(): new source: [%i]@[%p]\n",
465 host->pio_bytes, host->pio_ptr);
466
467 }
468
469 /* If we have reached the end of the block, we have to
470 * write exactly the remaining number of bytes. If we
471 * in the middle of the block, we have to write full
472 * words, so round down to an even multiple of 4. */
473 if (fifo >= host->pio_bytes)
474 fifo = host->pio_bytes;
475 else
476 fifo -= fifo & 3;
477
478 host->pio_bytes -= fifo;
479 host->pio_count += fifo;
480
481 fifo = (fifo + 3) >> 2;
482 ptr = host->pio_ptr;
483 while (fifo--)
484 writel(*ptr++, to_ptr);
485 host->pio_ptr = ptr;
486 }
487
488 enable_imask(host, S3C2410_SDIIMSK_TXFIFOHALF);
489}
490
491static void pio_tasklet(unsigned long data)
492{
493 struct s3cmci_host *host = (struct s3cmci_host *) data;
494
495 s3cmci_disable_irq(host, true);
496
497 if (host->pio_active == XFER_WRITE)
498 do_pio_write(host);
499
500 if (host->pio_active == XFER_READ)
501 do_pio_read(host);
502
503 if (host->complete_what == COMPLETION_FINALIZE) {
504 clear_imask(host);
505 if (host->pio_active != XFER_NONE) {
506 dbg(host, dbg_err, "unfinished %s "
507 "- pio_count:[%u] pio_bytes:[%u]\n",
508 (host->pio_active == XFER_READ) ? "read" : "write",
509 host->pio_count, host->pio_bytes);
510
511 if (host->mrq->data)
512 host->mrq->data->error = -EINVAL;
513 }
514
515 s3cmci_enable_irq(host, false);
516 finalize_request(host);
517 } else
518 s3cmci_enable_irq(host, true);
519}
520
521/*
522 * ISR for SDI Interface IRQ
523 * Communication between driver and ISR works as follows:
524 * host->mrq points to current request
525 * host->complete_what Indicates when the request is considered done
526 * COMPLETION_CMDSENT when the command was sent
527 * COMPLETION_RSPFIN when a response was received
528 * COMPLETION_XFERFINISH when the data transfer is finished
529 * COMPLETION_XFERFINISH_RSPFIN both of the above.
530 * host->complete_request is the completion-object the driver waits for
531 *
532 * 1) Driver sets up host->mrq and host->complete_what
533 * 2) Driver prepares the transfer
534 * 3) Driver enables interrupts
535 * 4) Driver starts transfer
536 * 5) Driver waits for host->complete_rquest
537 * 6) ISR checks for request status (errors and success)
538 * 6) ISR sets host->mrq->cmd->error and host->mrq->data->error
539 * 7) ISR completes host->complete_request
540 * 8) ISR disables interrupts
541 * 9) Driver wakes up and takes care of the request
542 *
543 * Note: "->error"-fields are expected to be set to 0 before the request
544 * was issued by mmc.c - therefore they are only set, when an error
545 * contition comes up
546 */
547
548static irqreturn_t s3cmci_irq(int irq, void *dev_id)
549{
550 struct s3cmci_host *host = dev_id;
551 struct mmc_command *cmd;
552 u32 mci_csta, mci_dsta, mci_fsta, mci_dcnt, mci_imsk;
553 u32 mci_cclear = 0, mci_dclear;
554 unsigned long iflags;
555
556 mci_dsta = readl(host->base + S3C2410_SDIDSTA);
557 mci_imsk = readl(host->base + host->sdiimsk);
558
559 if (mci_dsta & S3C2410_SDIDSTA_SDIOIRQDETECT) {
560 if (mci_imsk & S3C2410_SDIIMSK_SDIOIRQ) {
561 mci_dclear = S3C2410_SDIDSTA_SDIOIRQDETECT;
562 writel(mci_dclear, host->base + S3C2410_SDIDSTA);
563
564 mmc_signal_sdio_irq(host->mmc);
565 return IRQ_HANDLED;
566 }
567 }
568
569 spin_lock_irqsave(&host->complete_lock, iflags);
570
571 mci_csta = readl(host->base + S3C2410_SDICMDSTAT);
572 mci_dcnt = readl(host->base + S3C2410_SDIDCNT);
573 mci_fsta = readl(host->base + S3C2410_SDIFSTA);
574 mci_dclear = 0;
575
576 if ((host->complete_what == COMPLETION_NONE) ||
577 (host->complete_what == COMPLETION_FINALIZE)) {
578 host->status = "nothing to complete";
579 clear_imask(host);
580 goto irq_out;
581 }
582
583 if (!host->mrq) {
584 host->status = "no active mrq";
585 clear_imask(host);
586 goto irq_out;
587 }
588
589 cmd = host->cmd_is_stop ? host->mrq->stop : host->mrq->cmd;
590
591 if (!cmd) {
592 host->status = "no active cmd";
593 clear_imask(host);
594 goto irq_out;
595 }
596
597 if (!s3cmci_host_usedma(host)) {
598 if ((host->pio_active == XFER_WRITE) &&
599 (mci_fsta & S3C2410_SDIFSTA_TFDET)) {
600
601 disable_imask(host, S3C2410_SDIIMSK_TXFIFOHALF);
602 tasklet_schedule(&host->pio_tasklet);
603 host->status = "pio tx";
604 }
605
606 if ((host->pio_active == XFER_READ) &&
607 (mci_fsta & S3C2410_SDIFSTA_RFDET)) {
608
609 disable_imask(host,
610 S3C2410_SDIIMSK_RXFIFOHALF |
611 S3C2410_SDIIMSK_RXFIFOLAST);
612
613 tasklet_schedule(&host->pio_tasklet);
614 host->status = "pio rx";
615 }
616 }
617
618 if (mci_csta & S3C2410_SDICMDSTAT_CMDTIMEOUT) {
619 dbg(host, dbg_err, "CMDSTAT: error CMDTIMEOUT\n");
620 cmd->error = -ETIMEDOUT;
621 host->status = "error: command timeout";
622 goto fail_transfer;
623 }
624
625 if (mci_csta & S3C2410_SDICMDSTAT_CMDSENT) {
626 if (host->complete_what == COMPLETION_CMDSENT) {
627 host->status = "ok: command sent";
628 goto close_transfer;
629 }
630
631 mci_cclear |= S3C2410_SDICMDSTAT_CMDSENT;
632 }
633
634 if (mci_csta & S3C2410_SDICMDSTAT_CRCFAIL) {
635 if (cmd->flags & MMC_RSP_CRC) {
636 if (host->mrq->cmd->flags & MMC_RSP_136) {
637 dbg(host, dbg_irq,
638 "fixup: ignore CRC fail with long rsp\n");
639 } else {
640 /* note, we used to fail the transfer
641 * here, but it seems that this is just
642 * the hardware getting it wrong.
643 *
644 * cmd->error = -EILSEQ;
645 * host->status = "error: bad command crc";
646 * goto fail_transfer;
647 */
648 }
649 }
650
651 mci_cclear |= S3C2410_SDICMDSTAT_CRCFAIL;
652 }
653
654 if (mci_csta & S3C2410_SDICMDSTAT_RSPFIN) {
655 if (host->complete_what == COMPLETION_RSPFIN) {
656 host->status = "ok: command response received";
657 goto close_transfer;
658 }
659
660 if (host->complete_what == COMPLETION_XFERFINISH_RSPFIN)
661 host->complete_what = COMPLETION_XFERFINISH;
662
663 mci_cclear |= S3C2410_SDICMDSTAT_RSPFIN;
664 }
665
666 /* errors handled after this point are only relevant
667 when a data transfer is in progress */
668
669 if (!cmd->data)
670 goto clear_status_bits;
671
672 /* Check for FIFO failure */
673 if (host->is2440) {
674 if (mci_fsta & S3C2440_SDIFSTA_FIFOFAIL) {
675 dbg(host, dbg_err, "FIFO failure\n");
676 host->mrq->data->error = -EILSEQ;
677 host->status = "error: 2440 fifo failure";
678 goto fail_transfer;
679 }
680 } else {
681 if (mci_dsta & S3C2410_SDIDSTA_FIFOFAIL) {
682 dbg(host, dbg_err, "FIFO failure\n");
683 cmd->data->error = -EILSEQ;
684 host->status = "error: fifo failure";
685 goto fail_transfer;
686 }
687 }
688
689 if (mci_dsta & S3C2410_SDIDSTA_RXCRCFAIL) {
690 dbg(host, dbg_err, "bad data crc (outgoing)\n");
691 cmd->data->error = -EILSEQ;
692 host->status = "error: bad data crc (outgoing)";
693 goto fail_transfer;
694 }
695
696 if (mci_dsta & S3C2410_SDIDSTA_CRCFAIL) {
697 dbg(host, dbg_err, "bad data crc (incoming)\n");
698 cmd->data->error = -EILSEQ;
699 host->status = "error: bad data crc (incoming)";
700 goto fail_transfer;
701 }
702
703 if (mci_dsta & S3C2410_SDIDSTA_DATATIMEOUT) {
704 dbg(host, dbg_err, "data timeout\n");
705 cmd->data->error = -ETIMEDOUT;
706 host->status = "error: data timeout";
707 goto fail_transfer;
708 }
709
710 if (mci_dsta & S3C2410_SDIDSTA_XFERFINISH) {
711 if (host->complete_what == COMPLETION_XFERFINISH) {
712 host->status = "ok: data transfer completed";
713 goto close_transfer;
714 }
715
716 if (host->complete_what == COMPLETION_XFERFINISH_RSPFIN)
717 host->complete_what = COMPLETION_RSPFIN;
718
719 mci_dclear |= S3C2410_SDIDSTA_XFERFINISH;
720 }
721
722clear_status_bits:
723 writel(mci_cclear, host->base + S3C2410_SDICMDSTAT);
724 writel(mci_dclear, host->base + S3C2410_SDIDSTA);
725
726 goto irq_out;
727
728fail_transfer:
729 host->pio_active = XFER_NONE;
730
731close_transfer:
732 host->complete_what = COMPLETION_FINALIZE;
733
734 clear_imask(host);
735 tasklet_schedule(&host->pio_tasklet);
736
737 goto irq_out;
738
739irq_out:
740 dbg(host, dbg_irq,
741 "csta:0x%08x dsta:0x%08x fsta:0x%08x dcnt:0x%08x status:%s.\n",
742 mci_csta, mci_dsta, mci_fsta, mci_dcnt, host->status);
743
744 spin_unlock_irqrestore(&host->complete_lock, iflags);
745 return IRQ_HANDLED;
746
747}
748
749/*
750 * ISR for the CardDetect Pin
751*/
752
753static irqreturn_t s3cmci_irq_cd(int irq, void *dev_id)
754{
755 struct s3cmci_host *host = (struct s3cmci_host *)dev_id;
756
757 dbg(host, dbg_irq, "card detect\n");
758
759 mmc_detect_change(host->mmc, msecs_to_jiffies(500));
760
761 return IRQ_HANDLED;
762}
763
764static void s3cmci_dma_done_callback(struct s3c2410_dma_chan *dma_ch,
765 void *buf_id, int size,
766 enum s3c2410_dma_buffresult result)
767{
768 struct s3cmci_host *host = buf_id;
769 unsigned long iflags;
770 u32 mci_csta, mci_dsta, mci_fsta, mci_dcnt;
771
772 mci_csta = readl(host->base + S3C2410_SDICMDSTAT);
773 mci_dsta = readl(host->base + S3C2410_SDIDSTA);
774 mci_fsta = readl(host->base + S3C2410_SDIFSTA);
775 mci_dcnt = readl(host->base + S3C2410_SDIDCNT);
776
777 BUG_ON(!host->mrq);
778 BUG_ON(!host->mrq->data);
779 BUG_ON(!host->dmatogo);
780
781 spin_lock_irqsave(&host->complete_lock, iflags);
782
783 if (result != S3C2410_RES_OK) {
784 dbg(host, dbg_fail, "DMA FAILED: csta=0x%08x dsta=0x%08x "
785 "fsta=0x%08x dcnt:0x%08x result:0x%08x toGo:%u\n",
786 mci_csta, mci_dsta, mci_fsta,
787 mci_dcnt, result, host->dmatogo);
788
789 goto fail_request;
790 }
791
792 host->dmatogo--;
793 if (host->dmatogo) {
794 dbg(host, dbg_dma, "DMA DONE Size:%i DSTA:[%08x] "
795 "DCNT:[%08x] toGo:%u\n",
796 size, mci_dsta, mci_dcnt, host->dmatogo);
797
798 goto out;
799 }
800
801 dbg(host, dbg_dma, "DMA FINISHED Size:%i DSTA:%08x DCNT:%08x\n",
802 size, mci_dsta, mci_dcnt);
803
804 host->dma_complete = 1;
805 host->complete_what = COMPLETION_FINALIZE;
806
807out:
808 tasklet_schedule(&host->pio_tasklet);
809 spin_unlock_irqrestore(&host->complete_lock, iflags);
810 return;
811
812fail_request:
813 host->mrq->data->error = -EINVAL;
814 host->complete_what = COMPLETION_FINALIZE;
815 clear_imask(host);
816
817 goto out;
818}
819
820static void finalize_request(struct s3cmci_host *host)
821{
822 struct mmc_request *mrq = host->mrq;
823 struct mmc_command *cmd;
824 int debug_as_failure = 0;
825
826 if (host->complete_what != COMPLETION_FINALIZE)
827 return;
828
829 if (!mrq)
830 return;
831 cmd = host->cmd_is_stop ? mrq->stop : mrq->cmd;
832
833 if (cmd->data && (cmd->error == 0) &&
834 (cmd->data->error == 0)) {
835 if (s3cmci_host_usedma(host) && (!host->dma_complete)) {
836 dbg(host, dbg_dma, "DMA Missing (%d)!\n",
837 host->dma_complete);
838 return;
839 }
840 }
841
842 /* Read response from controller. */
843 cmd->resp[0] = readl(host->base + S3C2410_SDIRSP0);
844 cmd->resp[1] = readl(host->base + S3C2410_SDIRSP1);
845 cmd->resp[2] = readl(host->base + S3C2410_SDIRSP2);
846 cmd->resp[3] = readl(host->base + S3C2410_SDIRSP3);
847
848 writel(host->prescaler, host->base + S3C2410_SDIPRE);
849
850 if (cmd->error)
851 debug_as_failure = 1;
852
853 if (cmd->data && cmd->data->error)
854 debug_as_failure = 1;
855
856 dbg_dumpcmd(host, cmd, debug_as_failure);
857
858 /* Cleanup controller */
859 writel(0, host->base + S3C2410_SDICMDARG);
860 writel(S3C2410_SDIDCON_STOP, host->base + S3C2410_SDIDCON);
861 writel(0, host->base + S3C2410_SDICMDCON);
862 clear_imask(host);
863
864 if (cmd->data && cmd->error)
865 cmd->data->error = cmd->error;
866
867 if (cmd->data && cmd->data->stop && (!host->cmd_is_stop)) {
868 host->cmd_is_stop = 1;
869 s3cmci_send_request(host->mmc);
870 return;
871 }
872
873 /* If we have no data transfer we are finished here */
874 if (!mrq->data)
875 goto request_done;
876
877 /* Calculate the amout of bytes transfer if there was no error */
878 if (mrq->data->error == 0) {
879 mrq->data->bytes_xfered =
880 (mrq->data->blocks * mrq->data->blksz);
881 } else {
882 mrq->data->bytes_xfered = 0;
883 }
884
885 /* If we had an error while transferring data we flush the
886 * DMA channel and the fifo to clear out any garbage. */
887 if (mrq->data->error != 0) {
888 if (s3cmci_host_usedma(host))
889 s3c2410_dma_ctrl(host->dma, S3C2410_DMAOP_FLUSH);
890
891 if (host->is2440) {
892 /* Clear failure register and reset fifo. */
893 writel(S3C2440_SDIFSTA_FIFORESET |
894 S3C2440_SDIFSTA_FIFOFAIL,
895 host->base + S3C2410_SDIFSTA);
896 } else {
897 u32 mci_con;
898
899 /* reset fifo */
900 mci_con = readl(host->base + S3C2410_SDICON);
901 mci_con |= S3C2410_SDICON_FIFORESET;
902
903 writel(mci_con, host->base + S3C2410_SDICON);
904 }
905 }
906
907request_done:
908 host->complete_what = COMPLETION_NONE;
909 host->mrq = NULL;
910
911 s3cmci_check_sdio_irq(host);
912 mmc_request_done(host->mmc, mrq);
913}
914
915static void s3cmci_dma_setup(struct s3cmci_host *host,
916 enum s3c2410_dmasrc source)
917{
918 static enum s3c2410_dmasrc last_source = -1;
919 static int setup_ok;
920
921 if (last_source == source)
922 return;
923
924 last_source = source;
925
926 s3c2410_dma_devconfig(host->dma, source,
927 host->mem->start + host->sdidata);
928
929 if (!setup_ok) {
930 s3c2410_dma_config(host->dma, 4);
931 s3c2410_dma_set_buffdone_fn(host->dma,
932 s3cmci_dma_done_callback);
933 s3c2410_dma_setflags(host->dma, S3C2410_DMAF_AUTOSTART);
934 setup_ok = 1;
935 }
936}
937
938static void s3cmci_send_command(struct s3cmci_host *host,
939 struct mmc_command *cmd)
940{
941 u32 ccon, imsk;
942
943 imsk = S3C2410_SDIIMSK_CRCSTATUS | S3C2410_SDIIMSK_CMDTIMEOUT |
944 S3C2410_SDIIMSK_RESPONSEND | S3C2410_SDIIMSK_CMDSENT |
945 S3C2410_SDIIMSK_RESPONSECRC;
946
947 enable_imask(host, imsk);
948
949 if (cmd->data)
950 host->complete_what = COMPLETION_XFERFINISH_RSPFIN;
951 else if (cmd->flags & MMC_RSP_PRESENT)
952 host->complete_what = COMPLETION_RSPFIN;
953 else
954 host->complete_what = COMPLETION_CMDSENT;
955
956 writel(cmd->arg, host->base + S3C2410_SDICMDARG);
957
958 ccon = cmd->opcode & S3C2410_SDICMDCON_INDEX;
959 ccon |= S3C2410_SDICMDCON_SENDERHOST | S3C2410_SDICMDCON_CMDSTART;
960
961 if (cmd->flags & MMC_RSP_PRESENT)
962 ccon |= S3C2410_SDICMDCON_WAITRSP;
963
964 if (cmd->flags & MMC_RSP_136)
965 ccon |= S3C2410_SDICMDCON_LONGRSP;
966
967 writel(ccon, host->base + S3C2410_SDICMDCON);
968}
969
970static int s3cmci_setup_data(struct s3cmci_host *host, struct mmc_data *data)
971{
972 u32 dcon, imsk, stoptries = 3;
973
974 /* write DCON register */
975
976 if (!data) {
977 writel(0, host->base + S3C2410_SDIDCON);
978 return 0;
979 }
980
981 if ((data->blksz & 3) != 0) {
982 /* We cannot deal with unaligned blocks with more than
983 * one block being transferred. */
984
985 if (data->blocks > 1) {
986 pr_warning("%s: can't do non-word sized block transfers (blksz %d)\n", __func__, data->blksz);
987 return -EINVAL;
988 }
989 }
990
991 while (readl(host->base + S3C2410_SDIDSTA) &
992 (S3C2410_SDIDSTA_TXDATAON | S3C2410_SDIDSTA_RXDATAON)) {
993
994 dbg(host, dbg_err,
995 "mci_setup_data() transfer stillin progress.\n");
996
997 writel(S3C2410_SDIDCON_STOP, host->base + S3C2410_SDIDCON);
998 s3cmci_reset(host);
999
1000 if ((stoptries--) == 0) {
1001 dbg_dumpregs(host, "DRF");
1002 return -EINVAL;
1003 }
1004 }
1005
1006 dcon = data->blocks & S3C2410_SDIDCON_BLKNUM_MASK;
1007
1008 if (s3cmci_host_usedma(host))
1009 dcon |= S3C2410_SDIDCON_DMAEN;
1010
1011 if (host->bus_width == MMC_BUS_WIDTH_4)
1012 dcon |= S3C2410_SDIDCON_WIDEBUS;
1013
1014 if (!(data->flags & MMC_DATA_STREAM))
1015 dcon |= S3C2410_SDIDCON_BLOCKMODE;
1016
1017 if (data->flags & MMC_DATA_WRITE) {
1018 dcon |= S3C2410_SDIDCON_TXAFTERRESP;
1019 dcon |= S3C2410_SDIDCON_XFER_TXSTART;
1020 }
1021
1022 if (data->flags & MMC_DATA_READ) {
1023 dcon |= S3C2410_SDIDCON_RXAFTERCMD;
1024 dcon |= S3C2410_SDIDCON_XFER_RXSTART;
1025 }
1026
1027 if (host->is2440) {
1028 dcon |= S3C2440_SDIDCON_DS_WORD;
1029 dcon |= S3C2440_SDIDCON_DATSTART;
1030 }
1031
1032 writel(dcon, host->base + S3C2410_SDIDCON);
1033
1034 /* write BSIZE register */
1035
1036 writel(data->blksz, host->base + S3C2410_SDIBSIZE);
1037
1038 /* add to IMASK register */
1039 imsk = S3C2410_SDIIMSK_FIFOFAIL | S3C2410_SDIIMSK_DATACRC |
1040 S3C2410_SDIIMSK_DATATIMEOUT | S3C2410_SDIIMSK_DATAFINISH;
1041
1042 enable_imask(host, imsk);
1043
1044 /* write TIMER register */
1045
1046 if (host->is2440) {
1047 writel(0x007FFFFF, host->base + S3C2410_SDITIMER);
1048 } else {
1049 writel(0x0000FFFF, host->base + S3C2410_SDITIMER);
1050
1051 /* FIX: set slow clock to prevent timeouts on read */
1052 if (data->flags & MMC_DATA_READ)
1053 writel(0xFF, host->base + S3C2410_SDIPRE);
1054 }
1055
1056 return 0;
1057}
1058
1059#define BOTH_DIR (MMC_DATA_WRITE | MMC_DATA_READ)
1060
1061static int s3cmci_prepare_pio(struct s3cmci_host *host, struct mmc_data *data)
1062{
1063 int rw = (data->flags & MMC_DATA_WRITE) ? 1 : 0;
1064
1065 BUG_ON((data->flags & BOTH_DIR) == BOTH_DIR);
1066
1067 host->pio_sgptr = 0;
1068 host->pio_bytes = 0;
1069 host->pio_count = 0;
1070 host->pio_active = rw ? XFER_WRITE : XFER_READ;
1071
1072 if (rw) {
1073 do_pio_write(host);
1074 enable_imask(host, S3C2410_SDIIMSK_TXFIFOHALF);
1075 } else {
1076 enable_imask(host, S3C2410_SDIIMSK_RXFIFOHALF
1077 | S3C2410_SDIIMSK_RXFIFOLAST);
1078 }
1079
1080 return 0;
1081}
1082
1083static int s3cmci_prepare_dma(struct s3cmci_host *host, struct mmc_data *data)
1084{
1085 int dma_len, i;
1086 int rw = data->flags & MMC_DATA_WRITE;
1087
1088 BUG_ON((data->flags & BOTH_DIR) == BOTH_DIR);
1089
1090 s3cmci_dma_setup(host, rw ? S3C2410_DMASRC_MEM : S3C2410_DMASRC_HW);
1091 s3c2410_dma_ctrl(host->dma, S3C2410_DMAOP_FLUSH);
1092
1093 dma_len = dma_map_sg(mmc_dev(host->mmc), data->sg, data->sg_len,
1094 rw ? DMA_TO_DEVICE : DMA_FROM_DEVICE);
1095
1096 if (dma_len == 0)
1097 return -ENOMEM;
1098
1099 host->dma_complete = 0;
1100 host->dmatogo = dma_len;
1101
1102 for (i = 0; i < dma_len; i++) {
1103 int res;
1104
1105 dbg(host, dbg_dma, "enqueue %i: %08x@%u\n", i,
1106 sg_dma_address(&data->sg[i]),
1107 sg_dma_len(&data->sg[i]));
1108
1109 res = s3c2410_dma_enqueue(host->dma, host,
1110 sg_dma_address(&data->sg[i]),
1111 sg_dma_len(&data->sg[i]));
1112
1113 if (res) {
1114 s3c2410_dma_ctrl(host->dma, S3C2410_DMAOP_FLUSH);
1115 return -EBUSY;
1116 }
1117 }
1118
1119 s3c2410_dma_ctrl(host->dma, S3C2410_DMAOP_START);
1120
1121 return 0;
1122}
1123
1124static void s3cmci_send_request(struct mmc_host *mmc)
1125{
1126 struct s3cmci_host *host = mmc_priv(mmc);
1127 struct mmc_request *mrq = host->mrq;
1128 struct mmc_command *cmd = host->cmd_is_stop ? mrq->stop : mrq->cmd;
1129
1130 host->ccnt++;
1131 prepare_dbgmsg(host, cmd, host->cmd_is_stop);
1132
1133 /* Clear command, data and fifo status registers
1134 Fifo clear only necessary on 2440, but doesn't hurt on 2410
1135 */
1136 writel(0xFFFFFFFF, host->base + S3C2410_SDICMDSTAT);
1137 writel(0xFFFFFFFF, host->base + S3C2410_SDIDSTA);
1138 writel(0xFFFFFFFF, host->base + S3C2410_SDIFSTA);
1139
1140 if (cmd->data) {
1141 int res = s3cmci_setup_data(host, cmd->data);
1142
1143 host->dcnt++;
1144
1145 if (res) {
1146 dbg(host, dbg_err, "setup data error %d\n", res);
1147 cmd->error = res;
1148 cmd->data->error = res;
1149
1150 mmc_request_done(mmc, mrq);
1151 return;
1152 }
1153
1154 if (s3cmci_host_usedma(host))
1155 res = s3cmci_prepare_dma(host, cmd->data);
1156 else
1157 res = s3cmci_prepare_pio(host, cmd->data);
1158
1159 if (res) {
1160 dbg(host, dbg_err, "data prepare error %d\n", res);
1161 cmd->error = res;
1162 cmd->data->error = res;
1163
1164 mmc_request_done(mmc, mrq);
1165 return;
1166 }
1167 }
1168
1169 /* Send command */
1170 s3cmci_send_command(host, cmd);
1171
1172 /* Enable Interrupt */
1173 s3cmci_enable_irq(host, true);
1174}
1175
1176static int s3cmci_card_present(struct mmc_host *mmc)
1177{
1178 struct s3cmci_host *host = mmc_priv(mmc);
1179 struct s3c24xx_mci_pdata *pdata = host->pdata;
1180 int ret;
1181
1182 if (pdata->no_detect)
1183 return -ENOSYS;
1184
1185 ret = gpio_get_value(pdata->gpio_detect) ? 0 : 1;
1186 return ret ^ pdata->detect_invert;
1187}
1188
1189static void s3cmci_request(struct mmc_host *mmc, struct mmc_request *mrq)
1190{
1191 struct s3cmci_host *host = mmc_priv(mmc);
1192
1193 host->status = "mmc request";
1194 host->cmd_is_stop = 0;
1195 host->mrq = mrq;
1196
1197 if (s3cmci_card_present(mmc) == 0) {
1198 dbg(host, dbg_err, "%s: no medium present\n", __func__);
1199 host->mrq->cmd->error = -ENOMEDIUM;
1200 mmc_request_done(mmc, mrq);
1201 } else
1202 s3cmci_send_request(mmc);
1203}
1204
1205static void s3cmci_set_clk(struct s3cmci_host *host, struct mmc_ios *ios)
1206{
1207 u32 mci_psc;
1208
1209 /* Set clock */
1210 for (mci_psc = 0; mci_psc < 255; mci_psc++) {
1211 host->real_rate = host->clk_rate / (host->clk_div*(mci_psc+1));
1212
1213 if (host->real_rate <= ios->clock)
1214 break;
1215 }
1216
1217 if (mci_psc > 255)
1218 mci_psc = 255;
1219
1220 host->prescaler = mci_psc;
1221 writel(host->prescaler, host->base + S3C2410_SDIPRE);
1222
1223 /* If requested clock is 0, real_rate will be 0, too */
1224 if (ios->clock == 0)
1225 host->real_rate = 0;
1226}
1227
1228static void s3cmci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
1229{
1230 struct s3cmci_host *host = mmc_priv(mmc);
1231 u32 mci_con;
1232
1233 /* Set the power state */
1234
1235 mci_con = readl(host->base + S3C2410_SDICON);
1236
1237 switch (ios->power_mode) {
1238 case MMC_POWER_ON:
1239 case MMC_POWER_UP:
1240 s3c2410_gpio_cfgpin(S3C2410_GPE(5), S3C2410_GPE5_SDCLK);
1241 s3c2410_gpio_cfgpin(S3C2410_GPE(6), S3C2410_GPE6_SDCMD);
1242 s3c2410_gpio_cfgpin(S3C2410_GPE(7), S3C2410_GPE7_SDDAT0);
1243 s3c2410_gpio_cfgpin(S3C2410_GPE(8), S3C2410_GPE8_SDDAT1);
1244 s3c2410_gpio_cfgpin(S3C2410_GPE(9), S3C2410_GPE9_SDDAT2);
1245 s3c2410_gpio_cfgpin(S3C2410_GPE(10), S3C2410_GPE10_SDDAT3);
1246
1247 if (host->pdata->set_power)
1248 host->pdata->set_power(ios->power_mode, ios->vdd);
1249
1250 if (!host->is2440)
1251 mci_con |= S3C2410_SDICON_FIFORESET;
1252
1253 break;
1254
1255 case MMC_POWER_OFF:
1256 default:
1257 gpio_direction_output(S3C2410_GPE(5), 0);
1258
1259 if (host->is2440)
1260 mci_con |= S3C2440_SDICON_SDRESET;
1261
1262 if (host->pdata->set_power)
1263 host->pdata->set_power(ios->power_mode, ios->vdd);
1264
1265 break;
1266 }
1267
1268 s3cmci_set_clk(host, ios);
1269
1270 /* Set CLOCK_ENABLE */
1271 if (ios->clock)
1272 mci_con |= S3C2410_SDICON_CLOCKTYPE;
1273 else
1274 mci_con &= ~S3C2410_SDICON_CLOCKTYPE;
1275
1276 writel(mci_con, host->base + S3C2410_SDICON);
1277
1278 if ((ios->power_mode == MMC_POWER_ON) ||
1279 (ios->power_mode == MMC_POWER_UP)) {
1280 dbg(host, dbg_conf, "running at %lukHz (requested: %ukHz).\n",
1281 host->real_rate/1000, ios->clock/1000);
1282 } else {
1283 dbg(host, dbg_conf, "powered down.\n");
1284 }
1285
1286 host->bus_width = ios->bus_width;
1287}
1288
1289static void s3cmci_reset(struct s3cmci_host *host)
1290{
1291 u32 con = readl(host->base + S3C2410_SDICON);
1292
1293 con |= S3C2440_SDICON_SDRESET;
1294 writel(con, host->base + S3C2410_SDICON);
1295}
1296
1297static int s3cmci_get_ro(struct mmc_host *mmc)
1298{
1299 struct s3cmci_host *host = mmc_priv(mmc);
1300 struct s3c24xx_mci_pdata *pdata = host->pdata;
1301 int ret;
1302
1303 if (pdata->no_wprotect)
1304 return 0;
1305
1306 ret = gpio_get_value(pdata->gpio_wprotect) ? 1 : 0;
1307 ret ^= pdata->wprotect_invert;
1308
1309 return ret;
1310}
1311
1312static void s3cmci_enable_sdio_irq(struct mmc_host *mmc, int enable)
1313{
1314 struct s3cmci_host *host = mmc_priv(mmc);
1315 unsigned long flags;
1316 u32 con;
1317
1318 local_irq_save(flags);
1319
1320 con = readl(host->base + S3C2410_SDICON);
1321 host->sdio_irqen = enable;
1322
1323 if (enable == host->sdio_irqen)
1324 goto same_state;
1325
1326 if (enable) {
1327 con |= S3C2410_SDICON_SDIOIRQ;
1328 enable_imask(host, S3C2410_SDIIMSK_SDIOIRQ);
1329
1330 if (!host->irq_state && !host->irq_disabled) {
1331 host->irq_state = true;
1332 enable_irq(host->irq);
1333 }
1334 } else {
1335 disable_imask(host, S3C2410_SDIIMSK_SDIOIRQ);
1336 con &= ~S3C2410_SDICON_SDIOIRQ;
1337
1338 if (!host->irq_enabled && host->irq_state) {
1339 disable_irq_nosync(host->irq);
1340 host->irq_state = false;
1341 }
1342 }
1343
1344 writel(con, host->base + S3C2410_SDICON);
1345
1346 same_state:
1347 local_irq_restore(flags);
1348
1349 s3cmci_check_sdio_irq(host);
1350}
1351
1352static struct mmc_host_ops s3cmci_ops = {
1353 .request = s3cmci_request,
1354 .set_ios = s3cmci_set_ios,
1355 .get_ro = s3cmci_get_ro,
1356 .get_cd = s3cmci_card_present,
1357 .enable_sdio_irq = s3cmci_enable_sdio_irq,
1358};
1359
1360static struct s3c24xx_mci_pdata s3cmci_def_pdata = {
1361 /* This is currently here to avoid a number of if (host->pdata)
1362 * checks. Any zero fields to ensure reasonable defaults are picked. */
1363 .no_wprotect = 1,
1364 .no_detect = 1,
1365};
1366
1367#ifdef CONFIG_CPU_FREQ
1368
1369static int s3cmci_cpufreq_transition(struct notifier_block *nb,
1370 unsigned long val, void *data)
1371{
1372 struct s3cmci_host *host;
1373 struct mmc_host *mmc;
1374 unsigned long newclk;
1375 unsigned long flags;
1376
1377 host = container_of(nb, struct s3cmci_host, freq_transition);
1378 newclk = clk_get_rate(host->clk);
1379 mmc = host->mmc;
1380
1381 if ((val == CPUFREQ_PRECHANGE && newclk > host->clk_rate) ||
1382 (val == CPUFREQ_POSTCHANGE && newclk < host->clk_rate)) {
1383 spin_lock_irqsave(&mmc->lock, flags);
1384
1385 host->clk_rate = newclk;
1386
1387 if (mmc->ios.power_mode != MMC_POWER_OFF &&
1388 mmc->ios.clock != 0)
1389 s3cmci_set_clk(host, &mmc->ios);
1390
1391 spin_unlock_irqrestore(&mmc->lock, flags);
1392 }
1393
1394 return 0;
1395}
1396
1397static inline int s3cmci_cpufreq_register(struct s3cmci_host *host)
1398{
1399 host->freq_transition.notifier_call = s3cmci_cpufreq_transition;
1400
1401 return cpufreq_register_notifier(&host->freq_transition,
1402 CPUFREQ_TRANSITION_NOTIFIER);
1403}
1404
1405static inline void s3cmci_cpufreq_deregister(struct s3cmci_host *host)
1406{
1407 cpufreq_unregister_notifier(&host->freq_transition,
1408 CPUFREQ_TRANSITION_NOTIFIER);
1409}
1410
1411#else
1412static inline int s3cmci_cpufreq_register(struct s3cmci_host *host)
1413{
1414 return 0;
1415}
1416
1417static inline void s3cmci_cpufreq_deregister(struct s3cmci_host *host)
1418{
1419}
1420#endif
1421
1422
1423#ifdef CONFIG_DEBUG_FS
1424
1425static int s3cmci_state_show(struct seq_file *seq, void *v)
1426{
1427 struct s3cmci_host *host = seq->private;
1428
1429 seq_printf(seq, "Register base = 0x%08x\n", (u32)host->base);
1430 seq_printf(seq, "Clock rate = %ld\n", host->clk_rate);
1431 seq_printf(seq, "Prescale = %d\n", host->prescaler);
1432 seq_printf(seq, "is2440 = %d\n", host->is2440);
1433 seq_printf(seq, "IRQ = %d\n", host->irq);
1434 seq_printf(seq, "IRQ enabled = %d\n", host->irq_enabled);
1435 seq_printf(seq, "IRQ disabled = %d\n", host->irq_disabled);
1436 seq_printf(seq, "IRQ state = %d\n", host->irq_state);
1437 seq_printf(seq, "CD IRQ = %d\n", host->irq_cd);
1438 seq_printf(seq, "Do DMA = %d\n", s3cmci_host_usedma(host));
1439 seq_printf(seq, "SDIIMSK at %d\n", host->sdiimsk);
1440 seq_printf(seq, "SDIDATA at %d\n", host->sdidata);
1441
1442 return 0;
1443}
1444
1445static int s3cmci_state_open(struct inode *inode, struct file *file)
1446{
1447 return single_open(file, s3cmci_state_show, inode->i_private);
1448}
1449
1450static const struct file_operations s3cmci_fops_state = {
1451 .owner = THIS_MODULE,
1452 .open = s3cmci_state_open,
1453 .read = seq_read,
1454 .llseek = seq_lseek,
1455 .release = single_release,
1456};
1457
1458#define DBG_REG(_r) { .addr = S3C2410_SDI##_r, .name = #_r }
1459
1460struct s3cmci_reg {
1461 unsigned short addr;
1462 unsigned char *name;
1463} debug_regs[] = {
1464 DBG_REG(CON),
1465 DBG_REG(PRE),
1466 DBG_REG(CMDARG),
1467 DBG_REG(CMDCON),
1468 DBG_REG(CMDSTAT),
1469 DBG_REG(RSP0),
1470 DBG_REG(RSP1),
1471 DBG_REG(RSP2),
1472 DBG_REG(RSP3),
1473 DBG_REG(TIMER),
1474 DBG_REG(BSIZE),
1475 DBG_REG(DCON),
1476 DBG_REG(DCNT),
1477 DBG_REG(DSTA),
1478 DBG_REG(FSTA),
1479 {}
1480};
1481
1482static int s3cmci_regs_show(struct seq_file *seq, void *v)
1483{
1484 struct s3cmci_host *host = seq->private;
1485 struct s3cmci_reg *rptr = debug_regs;
1486
1487 for (; rptr->name; rptr++)
1488 seq_printf(seq, "SDI%s\t=0x%08x\n", rptr->name,
1489 readl(host->base + rptr->addr));
1490
1491 seq_printf(seq, "SDIIMSK\t=0x%08x\n", readl(host->base + host->sdiimsk));
1492
1493 return 0;
1494}
1495
1496static int s3cmci_regs_open(struct inode *inode, struct file *file)
1497{
1498 return single_open(file, s3cmci_regs_show, inode->i_private);
1499}
1500
1501static const struct file_operations s3cmci_fops_regs = {
1502 .owner = THIS_MODULE,
1503 .open = s3cmci_regs_open,
1504 .read = seq_read,
1505 .llseek = seq_lseek,
1506 .release = single_release,
1507};
1508
1509static void s3cmci_debugfs_attach(struct s3cmci_host *host)
1510{
1511 struct device *dev = &host->pdev->dev;
1512
1513 host->debug_root = debugfs_create_dir(dev_name(dev), NULL);
1514 if (IS_ERR(host->debug_root)) {
1515 dev_err(dev, "failed to create debugfs root\n");
1516 return;
1517 }
1518
1519 host->debug_state = debugfs_create_file("state", 0444,
1520 host->debug_root, host,
1521 &s3cmci_fops_state);
1522
1523 if (IS_ERR(host->debug_state))
1524 dev_err(dev, "failed to create debug state file\n");
1525
1526 host->debug_regs = debugfs_create_file("regs", 0444,
1527 host->debug_root, host,
1528 &s3cmci_fops_regs);
1529
1530 if (IS_ERR(host->debug_regs))
1531 dev_err(dev, "failed to create debug regs file\n");
1532}
1533
1534static void s3cmci_debugfs_remove(struct s3cmci_host *host)
1535{
1536 debugfs_remove(host->debug_regs);
1537 debugfs_remove(host->debug_state);
1538 debugfs_remove(host->debug_root);
1539}
1540
1541#else
1542static inline void s3cmci_debugfs_attach(struct s3cmci_host *host) { }
1543static inline void s3cmci_debugfs_remove(struct s3cmci_host *host) { }
1544
1545#endif /* CONFIG_DEBUG_FS */
1546
1547static int __devinit s3cmci_probe(struct platform_device *pdev)
1548{
1549 struct s3cmci_host *host;
1550 struct mmc_host *mmc;
1551 int ret;
1552 int is2440;
1553 int i;
1554
1555 is2440 = platform_get_device_id(pdev)->driver_data;
1556
1557 mmc = mmc_alloc_host(sizeof(struct s3cmci_host), &pdev->dev);
1558 if (!mmc) {
1559 ret = -ENOMEM;
1560 goto probe_out;
1561 }
1562
1563 for (i = S3C2410_GPE(5); i <= S3C2410_GPE(10); i++) {
1564 ret = gpio_request(i, dev_name(&pdev->dev));
1565 if (ret) {
1566 dev_err(&pdev->dev, "failed to get gpio %d\n", i);
1567
1568 for (i--; i >= S3C2410_GPE(5); i--)
1569 gpio_free(i);
1570
1571 goto probe_free_host;
1572 }
1573 }
1574
1575 host = mmc_priv(mmc);
1576 host->mmc = mmc;
1577 host->pdev = pdev;
1578 host->is2440 = is2440;
1579
1580 host->pdata = pdev->dev.platform_data;
1581 if (!host->pdata) {
1582 pdev->dev.platform_data = &s3cmci_def_pdata;
1583 host->pdata = &s3cmci_def_pdata;
1584 }
1585
1586 spin_lock_init(&host->complete_lock);
1587 tasklet_init(&host->pio_tasklet, pio_tasklet, (unsigned long) host);
1588
1589 if (is2440) {
1590 host->sdiimsk = S3C2440_SDIIMSK;
1591 host->sdidata = S3C2440_SDIDATA;
1592 host->clk_div = 1;
1593 } else {
1594 host->sdiimsk = S3C2410_SDIIMSK;
1595 host->sdidata = S3C2410_SDIDATA;
1596 host->clk_div = 2;
1597 }
1598
1599 host->complete_what = COMPLETION_NONE;
1600 host->pio_active = XFER_NONE;
1601
1602#ifdef CONFIG_MMC_S3C_PIODMA
1603 host->dodma = host->pdata->use_dma;
1604#endif
1605
1606 host->mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1607 if (!host->mem) {
1608 dev_err(&pdev->dev,
1609 "failed to get io memory region resouce.\n");
1610
1611 ret = -ENOENT;
1612 goto probe_free_gpio;
1613 }
1614
1615 host->mem = request_mem_region(host->mem->start,
1616 resource_size(host->mem), pdev->name);
1617
1618 if (!host->mem) {
1619 dev_err(&pdev->dev, "failed to request io memory region.\n");
1620 ret = -ENOENT;
1621 goto probe_free_gpio;
1622 }
1623
1624 host->base = ioremap(host->mem->start, resource_size(host->mem));
1625 if (!host->base) {
1626 dev_err(&pdev->dev, "failed to ioremap() io memory region.\n");
1627 ret = -EINVAL;
1628 goto probe_free_mem_region;
1629 }
1630
1631 host->irq = platform_get_irq(pdev, 0);
1632 if (host->irq == 0) {
1633 dev_err(&pdev->dev, "failed to get interrupt resouce.\n");
1634 ret = -EINVAL;
1635 goto probe_iounmap;
1636 }
1637
1638 if (request_irq(host->irq, s3cmci_irq, 0, DRIVER_NAME, host)) {
1639 dev_err(&pdev->dev, "failed to request mci interrupt.\n");
1640 ret = -ENOENT;
1641 goto probe_iounmap;
1642 }
1643
1644 /* We get spurious interrupts even when we have set the IMSK
1645 * register to ignore everything, so use disable_irq() to make
1646 * ensure we don't lock the system with un-serviceable requests. */
1647
1648 disable_irq(host->irq);
1649 host->irq_state = false;
1650
1651 if (!host->pdata->no_detect) {
1652 ret = gpio_request(host->pdata->gpio_detect, "s3cmci detect");
1653 if (ret) {
1654 dev_err(&pdev->dev, "failed to get detect gpio\n");
1655 goto probe_free_irq;
1656 }
1657
1658 host->irq_cd = gpio_to_irq(host->pdata->gpio_detect);
1659
1660 if (host->irq_cd >= 0) {
1661 if (request_irq(host->irq_cd, s3cmci_irq_cd,
1662 IRQF_TRIGGER_RISING |
1663 IRQF_TRIGGER_FALLING,
1664 DRIVER_NAME, host)) {
1665 dev_err(&pdev->dev,
1666 "can't get card detect irq.\n");
1667 ret = -ENOENT;
1668 goto probe_free_gpio_cd;
1669 }
1670 } else {
1671 dev_warn(&pdev->dev,
1672 "host detect has no irq available\n");
1673 gpio_direction_input(host->pdata->gpio_detect);
1674 }
1675 } else
1676 host->irq_cd = -1;
1677
1678 if (!host->pdata->no_wprotect) {
1679 ret = gpio_request(host->pdata->gpio_wprotect, "s3cmci wp");
1680 if (ret) {
1681 dev_err(&pdev->dev, "failed to get writeprotect\n");
1682 goto probe_free_irq_cd;
1683 }
1684
1685 gpio_direction_input(host->pdata->gpio_wprotect);
1686 }
1687
1688 /* depending on the dma state, get a dma channel to use. */
1689
1690 if (s3cmci_host_usedma(host)) {
1691 host->dma = s3c2410_dma_request(DMACH_SDI, &s3cmci_dma_client,
1692 host);
1693 if (host->dma < 0) {
1694 dev_err(&pdev->dev, "cannot get DMA channel.\n");
1695 if (!s3cmci_host_canpio()) {
1696 ret = -EBUSY;
1697 goto probe_free_gpio_wp;
1698 } else {
1699 dev_warn(&pdev->dev, "falling back to PIO.\n");
1700 host->dodma = 0;
1701 }
1702 }
1703 }
1704
1705 host->clk = clk_get(&pdev->dev, "sdi");
1706 if (IS_ERR(host->clk)) {
1707 dev_err(&pdev->dev, "failed to find clock source.\n");
1708 ret = PTR_ERR(host->clk);
1709 host->clk = NULL;
1710 goto probe_free_dma;
1711 }
1712
1713 ret = clk_enable(host->clk);
1714 if (ret) {
1715 dev_err(&pdev->dev, "failed to enable clock source.\n");
1716 goto clk_free;
1717 }
1718
1719 host->clk_rate = clk_get_rate(host->clk);
1720
1721 mmc->ops = &s3cmci_ops;
1722 mmc->ocr_avail = MMC_VDD_32_33 | MMC_VDD_33_34;
1723#ifdef CONFIG_MMC_S3C_HW_SDIO_IRQ
1724 mmc->caps = MMC_CAP_4_BIT_DATA | MMC_CAP_SDIO_IRQ;
1725#else
1726 mmc->caps = MMC_CAP_4_BIT_DATA;
1727#endif
1728 mmc->f_min = host->clk_rate / (host->clk_div * 256);
1729 mmc->f_max = host->clk_rate / host->clk_div;
1730
1731 if (host->pdata->ocr_avail)
1732 mmc->ocr_avail = host->pdata->ocr_avail;
1733
1734 mmc->max_blk_count = 4095;
1735 mmc->max_blk_size = 4095;
1736 mmc->max_req_size = 4095 * 512;
1737 mmc->max_seg_size = mmc->max_req_size;
1738
1739 mmc->max_segs = 128;
1740
1741 dbg(host, dbg_debug,
1742 "probe: mode:%s mapped mci_base:%p irq:%u irq_cd:%u dma:%u.\n",
1743 (host->is2440?"2440":""),
1744 host->base, host->irq, host->irq_cd, host->dma);
1745
1746 ret = s3cmci_cpufreq_register(host);
1747 if (ret) {
1748 dev_err(&pdev->dev, "failed to register cpufreq\n");
1749 goto free_dmabuf;
1750 }
1751
1752 ret = mmc_add_host(mmc);
1753 if (ret) {
1754 dev_err(&pdev->dev, "failed to add mmc host.\n");
1755 goto free_cpufreq;
1756 }
1757
1758 s3cmci_debugfs_attach(host);
1759
1760 platform_set_drvdata(pdev, mmc);
1761 dev_info(&pdev->dev, "%s - using %s, %s SDIO IRQ\n", mmc_hostname(mmc),
1762 s3cmci_host_usedma(host) ? "dma" : "pio",
1763 mmc->caps & MMC_CAP_SDIO_IRQ ? "hw" : "sw");
1764
1765 return 0;
1766
1767 free_cpufreq:
1768 s3cmci_cpufreq_deregister(host);
1769
1770 free_dmabuf:
1771 clk_disable(host->clk);
1772
1773 clk_free:
1774 clk_put(host->clk);
1775
1776 probe_free_dma:
1777 if (s3cmci_host_usedma(host))
1778 s3c2410_dma_free(host->dma, &s3cmci_dma_client);
1779
1780 probe_free_gpio_wp:
1781 if (!host->pdata->no_wprotect)
1782 gpio_free(host->pdata->gpio_wprotect);
1783
1784 probe_free_gpio_cd:
1785 if (!host->pdata->no_detect)
1786 gpio_free(host->pdata->gpio_detect);
1787
1788 probe_free_irq_cd:
1789 if (host->irq_cd >= 0)
1790 free_irq(host->irq_cd, host);
1791
1792 probe_free_irq:
1793 free_irq(host->irq, host);
1794
1795 probe_iounmap:
1796 iounmap(host->base);
1797
1798 probe_free_mem_region:
1799 release_mem_region(host->mem->start, resource_size(host->mem));
1800
1801 probe_free_gpio:
1802 for (i = S3C2410_GPE(5); i <= S3C2410_GPE(10); i++)
1803 gpio_free(i);
1804
1805 probe_free_host:
1806 mmc_free_host(mmc);
1807
1808 probe_out:
1809 return ret;
1810}
1811
1812static void s3cmci_shutdown(struct platform_device *pdev)
1813{
1814 struct mmc_host *mmc = platform_get_drvdata(pdev);
1815 struct s3cmci_host *host = mmc_priv(mmc);
1816
1817 if (host->irq_cd >= 0)
1818 free_irq(host->irq_cd, host);
1819
1820 s3cmci_debugfs_remove(host);
1821 s3cmci_cpufreq_deregister(host);
1822 mmc_remove_host(mmc);
1823 clk_disable(host->clk);
1824}
1825
1826static int __devexit s3cmci_remove(struct platform_device *pdev)
1827{
1828 struct mmc_host *mmc = platform_get_drvdata(pdev);
1829 struct s3cmci_host *host = mmc_priv(mmc);
1830 struct s3c24xx_mci_pdata *pd = host->pdata;
1831 int i;
1832
1833 s3cmci_shutdown(pdev);
1834
1835 clk_put(host->clk);
1836
1837 tasklet_disable(&host->pio_tasklet);
1838
1839 if (s3cmci_host_usedma(host))
1840 s3c2410_dma_free(host->dma, &s3cmci_dma_client);
1841
1842 free_irq(host->irq, host);
1843
1844 if (!pd->no_wprotect)
1845 gpio_free(pd->gpio_wprotect);
1846
1847 if (!pd->no_detect)
1848 gpio_free(pd->gpio_detect);
1849
1850 for (i = S3C2410_GPE(5); i <= S3C2410_GPE(10); i++)
1851 gpio_free(i);
1852
1853
1854 iounmap(host->base);
1855 release_mem_region(host->mem->start, resource_size(host->mem));
1856
1857 mmc_free_host(mmc);
1858 return 0;
1859}
1860
1861static struct platform_device_id s3cmci_driver_ids[] = {
1862 {
1863 .name = "s3c2410-sdi",
1864 .driver_data = 0,
1865 }, {
1866 .name = "s3c2412-sdi",
1867 .driver_data = 1,
1868 }, {
1869 .name = "s3c2440-sdi",
1870 .driver_data = 1,
1871 },
1872 { }
1873};
1874
1875MODULE_DEVICE_TABLE(platform, s3cmci_driver_ids);
1876
1877
1878#ifdef CONFIG_PM
1879
1880static int s3cmci_suspend(struct device *dev)
1881{
1882 struct mmc_host *mmc = platform_get_drvdata(to_platform_device(dev));
1883
1884 return mmc_suspend_host(mmc);
1885}
1886
1887static int s3cmci_resume(struct device *dev)
1888{
1889 struct mmc_host *mmc = platform_get_drvdata(to_platform_device(dev));
1890
1891 return mmc_resume_host(mmc);
1892}
1893
1894static const struct dev_pm_ops s3cmci_pm = {
1895 .suspend = s3cmci_suspend,
1896 .resume = s3cmci_resume,
1897};
1898
1899#define s3cmci_pm_ops &s3cmci_pm
1900#else /* CONFIG_PM */
1901#define s3cmci_pm_ops NULL
1902#endif /* CONFIG_PM */
1903
1904
1905static struct platform_driver s3cmci_driver = {
1906 .driver = {
1907 .name = "s3c-sdi",
1908 .owner = THIS_MODULE,
1909 .pm = s3cmci_pm_ops,
1910 },
1911 .id_table = s3cmci_driver_ids,
1912 .probe = s3cmci_probe,
1913 .remove = __devexit_p(s3cmci_remove),
1914 .shutdown = s3cmci_shutdown,
1915};
1916
1917static int __init s3cmci_init(void)
1918{
1919 return platform_driver_register(&s3cmci_driver);
1920}
1921
1922static void __exit s3cmci_exit(void)
1923{
1924 platform_driver_unregister(&s3cmci_driver);
1925}
1926
1927module_init(s3cmci_init);
1928module_exit(s3cmci_exit);
1929
1930MODULE_DESCRIPTION("Samsung S3C MMC/SD Card Interface driver");
1931MODULE_LICENSE("GPL v2");
1932MODULE_AUTHOR("Thomas Kleffel <tk@maintech.de>, Ben Dooks <ben-linux@fluff.org>");