Loading...
1/*
2 * davinci_mmc.c - TI DaVinci MMC/SD/SDIO driver
3 *
4 * Copyright (C) 2006 Texas Instruments.
5 * Original author: Purushotam Kumar
6 * Copyright (C) 2009 David Brownell
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
23#include <linux/module.h>
24#include <linux/ioport.h>
25#include <linux/platform_device.h>
26#include <linux/clk.h>
27#include <linux/err.h>
28#include <linux/cpufreq.h>
29#include <linux/mmc/host.h>
30#include <linux/io.h>
31#include <linux/irq.h>
32#include <linux/delay.h>
33#include <linux/dma-mapping.h>
34#include <linux/mmc/mmc.h>
35
36#include <mach/mmc.h>
37#include <mach/edma.h>
38
39/*
40 * Register Definitions
41 */
42#define DAVINCI_MMCCTL 0x00 /* Control Register */
43#define DAVINCI_MMCCLK 0x04 /* Memory Clock Control Register */
44#define DAVINCI_MMCST0 0x08 /* Status Register 0 */
45#define DAVINCI_MMCST1 0x0C /* Status Register 1 */
46#define DAVINCI_MMCIM 0x10 /* Interrupt Mask Register */
47#define DAVINCI_MMCTOR 0x14 /* Response Time-Out Register */
48#define DAVINCI_MMCTOD 0x18 /* Data Read Time-Out Register */
49#define DAVINCI_MMCBLEN 0x1C /* Block Length Register */
50#define DAVINCI_MMCNBLK 0x20 /* Number of Blocks Register */
51#define DAVINCI_MMCNBLC 0x24 /* Number of Blocks Counter Register */
52#define DAVINCI_MMCDRR 0x28 /* Data Receive Register */
53#define DAVINCI_MMCDXR 0x2C /* Data Transmit Register */
54#define DAVINCI_MMCCMD 0x30 /* Command Register */
55#define DAVINCI_MMCARGHL 0x34 /* Argument Register */
56#define DAVINCI_MMCRSP01 0x38 /* Response Register 0 and 1 */
57#define DAVINCI_MMCRSP23 0x3C /* Response Register 0 and 1 */
58#define DAVINCI_MMCRSP45 0x40 /* Response Register 0 and 1 */
59#define DAVINCI_MMCRSP67 0x44 /* Response Register 0 and 1 */
60#define DAVINCI_MMCDRSP 0x48 /* Data Response Register */
61#define DAVINCI_MMCETOK 0x4C
62#define DAVINCI_MMCCIDX 0x50 /* Command Index Register */
63#define DAVINCI_MMCCKC 0x54
64#define DAVINCI_MMCTORC 0x58
65#define DAVINCI_MMCTODC 0x5C
66#define DAVINCI_MMCBLNC 0x60
67#define DAVINCI_SDIOCTL 0x64
68#define DAVINCI_SDIOST0 0x68
69#define DAVINCI_SDIOIEN 0x6C
70#define DAVINCI_SDIOIST 0x70
71#define DAVINCI_MMCFIFOCTL 0x74 /* FIFO Control Register */
72
73/* DAVINCI_MMCCTL definitions */
74#define MMCCTL_DATRST (1 << 0)
75#define MMCCTL_CMDRST (1 << 1)
76#define MMCCTL_WIDTH_8_BIT (1 << 8)
77#define MMCCTL_WIDTH_4_BIT (1 << 2)
78#define MMCCTL_DATEG_DISABLED (0 << 6)
79#define MMCCTL_DATEG_RISING (1 << 6)
80#define MMCCTL_DATEG_FALLING (2 << 6)
81#define MMCCTL_DATEG_BOTH (3 << 6)
82#define MMCCTL_PERMDR_LE (0 << 9)
83#define MMCCTL_PERMDR_BE (1 << 9)
84#define MMCCTL_PERMDX_LE (0 << 10)
85#define MMCCTL_PERMDX_BE (1 << 10)
86
87/* DAVINCI_MMCCLK definitions */
88#define MMCCLK_CLKEN (1 << 8)
89#define MMCCLK_CLKRT_MASK (0xFF << 0)
90
91/* IRQ bit definitions, for DAVINCI_MMCST0 and DAVINCI_MMCIM */
92#define MMCST0_DATDNE BIT(0) /* data done */
93#define MMCST0_BSYDNE BIT(1) /* busy done */
94#define MMCST0_RSPDNE BIT(2) /* command done */
95#define MMCST0_TOUTRD BIT(3) /* data read timeout */
96#define MMCST0_TOUTRS BIT(4) /* command response timeout */
97#define MMCST0_CRCWR BIT(5) /* data write CRC error */
98#define MMCST0_CRCRD BIT(6) /* data read CRC error */
99#define MMCST0_CRCRS BIT(7) /* command response CRC error */
100#define MMCST0_DXRDY BIT(9) /* data transmit ready (fifo empty) */
101#define MMCST0_DRRDY BIT(10) /* data receive ready (data in fifo)*/
102#define MMCST0_DATED BIT(11) /* DAT3 edge detect */
103#define MMCST0_TRNDNE BIT(12) /* transfer done */
104
105/* DAVINCI_MMCST1 definitions */
106#define MMCST1_BUSY (1 << 0)
107
108/* DAVINCI_MMCCMD definitions */
109#define MMCCMD_CMD_MASK (0x3F << 0)
110#define MMCCMD_PPLEN (1 << 7)
111#define MMCCMD_BSYEXP (1 << 8)
112#define MMCCMD_RSPFMT_MASK (3 << 9)
113#define MMCCMD_RSPFMT_NONE (0 << 9)
114#define MMCCMD_RSPFMT_R1456 (1 << 9)
115#define MMCCMD_RSPFMT_R2 (2 << 9)
116#define MMCCMD_RSPFMT_R3 (3 << 9)
117#define MMCCMD_DTRW (1 << 11)
118#define MMCCMD_STRMTP (1 << 12)
119#define MMCCMD_WDATX (1 << 13)
120#define MMCCMD_INITCK (1 << 14)
121#define MMCCMD_DCLR (1 << 15)
122#define MMCCMD_DMATRIG (1 << 16)
123
124/* DAVINCI_MMCFIFOCTL definitions */
125#define MMCFIFOCTL_FIFORST (1 << 0)
126#define MMCFIFOCTL_FIFODIR_WR (1 << 1)
127#define MMCFIFOCTL_FIFODIR_RD (0 << 1)
128#define MMCFIFOCTL_FIFOLEV (1 << 2) /* 0 = 128 bits, 1 = 256 bits */
129#define MMCFIFOCTL_ACCWD_4 (0 << 3) /* access width of 4 bytes */
130#define MMCFIFOCTL_ACCWD_3 (1 << 3) /* access width of 3 bytes */
131#define MMCFIFOCTL_ACCWD_2 (2 << 3) /* access width of 2 bytes */
132#define MMCFIFOCTL_ACCWD_1 (3 << 3) /* access width of 1 byte */
133
134/* DAVINCI_SDIOST0 definitions */
135#define SDIOST0_DAT1_HI BIT(0)
136
137/* DAVINCI_SDIOIEN definitions */
138#define SDIOIEN_IOINTEN BIT(0)
139
140/* DAVINCI_SDIOIST definitions */
141#define SDIOIST_IOINT BIT(0)
142
143/* MMCSD Init clock in Hz in opendrain mode */
144#define MMCSD_INIT_CLOCK 200000
145
146/*
147 * One scatterlist dma "segment" is at most MAX_CCNT rw_threshold units,
148 * and we handle up to MAX_NR_SG segments. MMC_BLOCK_BOUNCE kicks in only
149 * for drivers with max_segs == 1, making the segments bigger (64KB)
150 * than the page or two that's otherwise typical. nr_sg (passed from
151 * platform data) == 16 gives at least the same throughput boost, using
152 * EDMA transfer linkage instead of spending CPU time copying pages.
153 */
154#define MAX_CCNT ((1 << 16) - 1)
155
156#define MAX_NR_SG 16
157
158static unsigned rw_threshold = 32;
159module_param(rw_threshold, uint, S_IRUGO);
160MODULE_PARM_DESC(rw_threshold,
161 "Read/Write threshold. Default = 32");
162
163static unsigned __initdata use_dma = 1;
164module_param(use_dma, uint, 0);
165MODULE_PARM_DESC(use_dma, "Whether to use DMA or not. Default = 1");
166
167struct mmc_davinci_host {
168 struct mmc_command *cmd;
169 struct mmc_data *data;
170 struct mmc_host *mmc;
171 struct clk *clk;
172 unsigned int mmc_input_clk;
173 void __iomem *base;
174 struct resource *mem_res;
175 int mmc_irq, sdio_irq;
176 unsigned char bus_mode;
177
178#define DAVINCI_MMC_DATADIR_NONE 0
179#define DAVINCI_MMC_DATADIR_READ 1
180#define DAVINCI_MMC_DATADIR_WRITE 2
181 unsigned char data_dir;
182 unsigned char suspended;
183
184 /* buffer is used during PIO of one scatterlist segment, and
185 * is updated along with buffer_bytes_left. bytes_left applies
186 * to all N blocks of the PIO transfer.
187 */
188 u8 *buffer;
189 u32 buffer_bytes_left;
190 u32 bytes_left;
191
192 u32 rxdma, txdma;
193 bool use_dma;
194 bool do_dma;
195 bool sdio_int;
196
197 /* Scatterlist DMA uses one or more parameter RAM entries:
198 * the main one (associated with rxdma or txdma) plus zero or
199 * more links. The entries for a given transfer differ only
200 * by memory buffer (address, length) and link field.
201 */
202 struct edmacc_param tx_template;
203 struct edmacc_param rx_template;
204 unsigned n_link;
205 u32 links[MAX_NR_SG - 1];
206
207 /* For PIO we walk scatterlists one segment at a time. */
208 unsigned int sg_len;
209 struct scatterlist *sg;
210
211 /* Version of the MMC/SD controller */
212 u8 version;
213 /* for ns in one cycle calculation */
214 unsigned ns_in_one_cycle;
215 /* Number of sg segments */
216 u8 nr_sg;
217#ifdef CONFIG_CPU_FREQ
218 struct notifier_block freq_transition;
219#endif
220};
221
222
223/* PIO only */
224static void mmc_davinci_sg_to_buf(struct mmc_davinci_host *host)
225{
226 host->buffer_bytes_left = sg_dma_len(host->sg);
227 host->buffer = sg_virt(host->sg);
228 if (host->buffer_bytes_left > host->bytes_left)
229 host->buffer_bytes_left = host->bytes_left;
230}
231
232static void davinci_fifo_data_trans(struct mmc_davinci_host *host,
233 unsigned int n)
234{
235 u8 *p;
236 unsigned int i;
237
238 if (host->buffer_bytes_left == 0) {
239 host->sg = sg_next(host->data->sg);
240 mmc_davinci_sg_to_buf(host);
241 }
242
243 p = host->buffer;
244 if (n > host->buffer_bytes_left)
245 n = host->buffer_bytes_left;
246 host->buffer_bytes_left -= n;
247 host->bytes_left -= n;
248
249 /* NOTE: we never transfer more than rw_threshold bytes
250 * to/from the fifo here; there's no I/O overlap.
251 * This also assumes that access width( i.e. ACCWD) is 4 bytes
252 */
253 if (host->data_dir == DAVINCI_MMC_DATADIR_WRITE) {
254 for (i = 0; i < (n >> 2); i++) {
255 writel(*((u32 *)p), host->base + DAVINCI_MMCDXR);
256 p = p + 4;
257 }
258 if (n & 3) {
259 iowrite8_rep(host->base + DAVINCI_MMCDXR, p, (n & 3));
260 p = p + (n & 3);
261 }
262 } else {
263 for (i = 0; i < (n >> 2); i++) {
264 *((u32 *)p) = readl(host->base + DAVINCI_MMCDRR);
265 p = p + 4;
266 }
267 if (n & 3) {
268 ioread8_rep(host->base + DAVINCI_MMCDRR, p, (n & 3));
269 p = p + (n & 3);
270 }
271 }
272 host->buffer = p;
273}
274
275static void mmc_davinci_start_command(struct mmc_davinci_host *host,
276 struct mmc_command *cmd)
277{
278 u32 cmd_reg = 0;
279 u32 im_val;
280
281 dev_dbg(mmc_dev(host->mmc), "CMD%d, arg 0x%08x%s\n",
282 cmd->opcode, cmd->arg,
283 ({ char *s;
284 switch (mmc_resp_type(cmd)) {
285 case MMC_RSP_R1:
286 s = ", R1/R5/R6/R7 response";
287 break;
288 case MMC_RSP_R1B:
289 s = ", R1b response";
290 break;
291 case MMC_RSP_R2:
292 s = ", R2 response";
293 break;
294 case MMC_RSP_R3:
295 s = ", R3/R4 response";
296 break;
297 default:
298 s = ", (R? response)";
299 break;
300 }; s; }));
301 host->cmd = cmd;
302
303 switch (mmc_resp_type(cmd)) {
304 case MMC_RSP_R1B:
305 /* There's some spec confusion about when R1B is
306 * allowed, but if the card doesn't issue a BUSY
307 * then it's harmless for us to allow it.
308 */
309 cmd_reg |= MMCCMD_BSYEXP;
310 /* FALLTHROUGH */
311 case MMC_RSP_R1: /* 48 bits, CRC */
312 cmd_reg |= MMCCMD_RSPFMT_R1456;
313 break;
314 case MMC_RSP_R2: /* 136 bits, CRC */
315 cmd_reg |= MMCCMD_RSPFMT_R2;
316 break;
317 case MMC_RSP_R3: /* 48 bits, no CRC */
318 cmd_reg |= MMCCMD_RSPFMT_R3;
319 break;
320 default:
321 cmd_reg |= MMCCMD_RSPFMT_NONE;
322 dev_dbg(mmc_dev(host->mmc), "unknown resp_type %04x\n",
323 mmc_resp_type(cmd));
324 break;
325 }
326
327 /* Set command index */
328 cmd_reg |= cmd->opcode;
329
330 /* Enable EDMA transfer triggers */
331 if (host->do_dma)
332 cmd_reg |= MMCCMD_DMATRIG;
333
334 if (host->version == MMC_CTLR_VERSION_2 && host->data != NULL &&
335 host->data_dir == DAVINCI_MMC_DATADIR_READ)
336 cmd_reg |= MMCCMD_DMATRIG;
337
338 /* Setting whether command involves data transfer or not */
339 if (cmd->data)
340 cmd_reg |= MMCCMD_WDATX;
341
342 /* Setting whether stream or block transfer */
343 if (cmd->flags & MMC_DATA_STREAM)
344 cmd_reg |= MMCCMD_STRMTP;
345
346 /* Setting whether data read or write */
347 if (host->data_dir == DAVINCI_MMC_DATADIR_WRITE)
348 cmd_reg |= MMCCMD_DTRW;
349
350 if (host->bus_mode == MMC_BUSMODE_PUSHPULL)
351 cmd_reg |= MMCCMD_PPLEN;
352
353 /* set Command timeout */
354 writel(0x1FFF, host->base + DAVINCI_MMCTOR);
355
356 /* Enable interrupt (calculate here, defer until FIFO is stuffed). */
357 im_val = MMCST0_RSPDNE | MMCST0_CRCRS | MMCST0_TOUTRS;
358 if (host->data_dir == DAVINCI_MMC_DATADIR_WRITE) {
359 im_val |= MMCST0_DATDNE | MMCST0_CRCWR;
360
361 if (!host->do_dma)
362 im_val |= MMCST0_DXRDY;
363 } else if (host->data_dir == DAVINCI_MMC_DATADIR_READ) {
364 im_val |= MMCST0_DATDNE | MMCST0_CRCRD | MMCST0_TOUTRD;
365
366 if (!host->do_dma)
367 im_val |= MMCST0_DRRDY;
368 }
369
370 /*
371 * Before non-DMA WRITE commands the controller needs priming:
372 * FIFO should be populated with 32 bytes i.e. whatever is the FIFO size
373 */
374 if (!host->do_dma && (host->data_dir == DAVINCI_MMC_DATADIR_WRITE))
375 davinci_fifo_data_trans(host, rw_threshold);
376
377 writel(cmd->arg, host->base + DAVINCI_MMCARGHL);
378 writel(cmd_reg, host->base + DAVINCI_MMCCMD);
379 writel(im_val, host->base + DAVINCI_MMCIM);
380}
381
382/*----------------------------------------------------------------------*/
383
384/* DMA infrastructure */
385
386static void davinci_abort_dma(struct mmc_davinci_host *host)
387{
388 int sync_dev;
389
390 if (host->data_dir == DAVINCI_MMC_DATADIR_READ)
391 sync_dev = host->rxdma;
392 else
393 sync_dev = host->txdma;
394
395 edma_stop(sync_dev);
396 edma_clean_channel(sync_dev);
397}
398
399static void
400mmc_davinci_xfer_done(struct mmc_davinci_host *host, struct mmc_data *data);
401
402static void mmc_davinci_dma_cb(unsigned channel, u16 ch_status, void *data)
403{
404 if (DMA_COMPLETE != ch_status) {
405 struct mmc_davinci_host *host = data;
406
407 /* Currently means: DMA Event Missed, or "null" transfer
408 * request was seen. In the future, TC errors (like bad
409 * addresses) might be presented too.
410 */
411 dev_warn(mmc_dev(host->mmc), "DMA %s error\n",
412 (host->data->flags & MMC_DATA_WRITE)
413 ? "write" : "read");
414 host->data->error = -EIO;
415 mmc_davinci_xfer_done(host, host->data);
416 }
417}
418
419/* Set up tx or rx template, to be modified and updated later */
420static void __init mmc_davinci_dma_setup(struct mmc_davinci_host *host,
421 bool tx, struct edmacc_param *template)
422{
423 unsigned sync_dev;
424 const u16 acnt = 4;
425 const u16 bcnt = rw_threshold >> 2;
426 const u16 ccnt = 0;
427 u32 src_port = 0;
428 u32 dst_port = 0;
429 s16 src_bidx, dst_bidx;
430 s16 src_cidx, dst_cidx;
431
432 /*
433 * A-B Sync transfer: each DMA request is for one "frame" of
434 * rw_threshold bytes, broken into "acnt"-size chunks repeated
435 * "bcnt" times. Each segment needs "ccnt" such frames; since
436 * we tell the block layer our mmc->max_seg_size limit, we can
437 * trust (later) that it's within bounds.
438 *
439 * The FIFOs are read/written in 4-byte chunks (acnt == 4) and
440 * EDMA will optimize memory operations to use larger bursts.
441 */
442 if (tx) {
443 sync_dev = host->txdma;
444
445 /* src_prt, ccnt, and link to be set up later */
446 src_bidx = acnt;
447 src_cidx = acnt * bcnt;
448
449 dst_port = host->mem_res->start + DAVINCI_MMCDXR;
450 dst_bidx = 0;
451 dst_cidx = 0;
452 } else {
453 sync_dev = host->rxdma;
454
455 src_port = host->mem_res->start + DAVINCI_MMCDRR;
456 src_bidx = 0;
457 src_cidx = 0;
458
459 /* dst_prt, ccnt, and link to be set up later */
460 dst_bidx = acnt;
461 dst_cidx = acnt * bcnt;
462 }
463
464 /*
465 * We can't use FIFO mode for the FIFOs because MMC FIFO addresses
466 * are not 256-bit (32-byte) aligned. So we use INCR, and the W8BIT
467 * parameter is ignored.
468 */
469 edma_set_src(sync_dev, src_port, INCR, W8BIT);
470 edma_set_dest(sync_dev, dst_port, INCR, W8BIT);
471
472 edma_set_src_index(sync_dev, src_bidx, src_cidx);
473 edma_set_dest_index(sync_dev, dst_bidx, dst_cidx);
474
475 edma_set_transfer_params(sync_dev, acnt, bcnt, ccnt, 8, ABSYNC);
476
477 edma_read_slot(sync_dev, template);
478
479 /* don't bother with irqs or chaining */
480 template->opt |= EDMA_CHAN_SLOT(sync_dev) << 12;
481}
482
483static void mmc_davinci_send_dma_request(struct mmc_davinci_host *host,
484 struct mmc_data *data)
485{
486 struct edmacc_param *template;
487 int channel, slot;
488 unsigned link;
489 struct scatterlist *sg;
490 unsigned sg_len;
491 unsigned bytes_left = host->bytes_left;
492 const unsigned shift = ffs(rw_threshold) - 1;
493
494 if (host->data_dir == DAVINCI_MMC_DATADIR_WRITE) {
495 template = &host->tx_template;
496 channel = host->txdma;
497 } else {
498 template = &host->rx_template;
499 channel = host->rxdma;
500 }
501
502 /* We know sg_len and ccnt will never be out of range because
503 * we told the mmc layer which in turn tells the block layer
504 * to ensure that it only hands us one scatterlist segment
505 * per EDMA PARAM entry. Update the PARAM
506 * entries needed for each segment of this scatterlist.
507 */
508 for (slot = channel, link = 0, sg = data->sg, sg_len = host->sg_len;
509 sg_len-- != 0 && bytes_left;
510 sg = sg_next(sg), slot = host->links[link++]) {
511 u32 buf = sg_dma_address(sg);
512 unsigned count = sg_dma_len(sg);
513
514 template->link_bcntrld = sg_len
515 ? (EDMA_CHAN_SLOT(host->links[link]) << 5)
516 : 0xffff;
517
518 if (count > bytes_left)
519 count = bytes_left;
520 bytes_left -= count;
521
522 if (host->data_dir == DAVINCI_MMC_DATADIR_WRITE)
523 template->src = buf;
524 else
525 template->dst = buf;
526 template->ccnt = count >> shift;
527
528 edma_write_slot(slot, template);
529 }
530
531 if (host->version == MMC_CTLR_VERSION_2)
532 edma_clear_event(channel);
533
534 edma_start(channel);
535}
536
537static int mmc_davinci_start_dma_transfer(struct mmc_davinci_host *host,
538 struct mmc_data *data)
539{
540 int i;
541 int mask = rw_threshold - 1;
542
543 host->sg_len = dma_map_sg(mmc_dev(host->mmc), data->sg, data->sg_len,
544 ((data->flags & MMC_DATA_WRITE)
545 ? DMA_TO_DEVICE
546 : DMA_FROM_DEVICE));
547
548 /* no individual DMA segment should need a partial FIFO */
549 for (i = 0; i < host->sg_len; i++) {
550 if (sg_dma_len(data->sg + i) & mask) {
551 dma_unmap_sg(mmc_dev(host->mmc),
552 data->sg, data->sg_len,
553 (data->flags & MMC_DATA_WRITE)
554 ? DMA_TO_DEVICE
555 : DMA_FROM_DEVICE);
556 return -1;
557 }
558 }
559
560 host->do_dma = 1;
561 mmc_davinci_send_dma_request(host, data);
562
563 return 0;
564}
565
566static void __init_or_module
567davinci_release_dma_channels(struct mmc_davinci_host *host)
568{
569 unsigned i;
570
571 if (!host->use_dma)
572 return;
573
574 for (i = 0; i < host->n_link; i++)
575 edma_free_slot(host->links[i]);
576
577 edma_free_channel(host->txdma);
578 edma_free_channel(host->rxdma);
579}
580
581static int __init davinci_acquire_dma_channels(struct mmc_davinci_host *host)
582{
583 u32 link_size;
584 int r, i;
585
586 /* Acquire master DMA write channel */
587 r = edma_alloc_channel(host->txdma, mmc_davinci_dma_cb, host,
588 EVENTQ_DEFAULT);
589 if (r < 0) {
590 dev_warn(mmc_dev(host->mmc), "alloc %s channel err %d\n",
591 "tx", r);
592 return r;
593 }
594 mmc_davinci_dma_setup(host, true, &host->tx_template);
595
596 /* Acquire master DMA read channel */
597 r = edma_alloc_channel(host->rxdma, mmc_davinci_dma_cb, host,
598 EVENTQ_DEFAULT);
599 if (r < 0) {
600 dev_warn(mmc_dev(host->mmc), "alloc %s channel err %d\n",
601 "rx", r);
602 goto free_master_write;
603 }
604 mmc_davinci_dma_setup(host, false, &host->rx_template);
605
606 /* Allocate parameter RAM slots, which will later be bound to a
607 * channel as needed to handle a scatterlist.
608 */
609 link_size = min_t(unsigned, host->nr_sg, ARRAY_SIZE(host->links));
610 for (i = 0; i < link_size; i++) {
611 r = edma_alloc_slot(EDMA_CTLR(host->txdma), EDMA_SLOT_ANY);
612 if (r < 0) {
613 dev_dbg(mmc_dev(host->mmc), "dma PaRAM alloc --> %d\n",
614 r);
615 break;
616 }
617 host->links[i] = r;
618 }
619 host->n_link = i;
620
621 return 0;
622
623free_master_write:
624 edma_free_channel(host->txdma);
625
626 return r;
627}
628
629/*----------------------------------------------------------------------*/
630
631static void
632mmc_davinci_prepare_data(struct mmc_davinci_host *host, struct mmc_request *req)
633{
634 int fifo_lev = (rw_threshold == 32) ? MMCFIFOCTL_FIFOLEV : 0;
635 int timeout;
636 struct mmc_data *data = req->data;
637
638 if (host->version == MMC_CTLR_VERSION_2)
639 fifo_lev = (rw_threshold == 64) ? MMCFIFOCTL_FIFOLEV : 0;
640
641 host->data = data;
642 if (data == NULL) {
643 host->data_dir = DAVINCI_MMC_DATADIR_NONE;
644 writel(0, host->base + DAVINCI_MMCBLEN);
645 writel(0, host->base + DAVINCI_MMCNBLK);
646 return;
647 }
648
649 dev_dbg(mmc_dev(host->mmc), "%s %s, %d blocks of %d bytes\n",
650 (data->flags & MMC_DATA_STREAM) ? "stream" : "block",
651 (data->flags & MMC_DATA_WRITE) ? "write" : "read",
652 data->blocks, data->blksz);
653 dev_dbg(mmc_dev(host->mmc), " DTO %d cycles + %d ns\n",
654 data->timeout_clks, data->timeout_ns);
655 timeout = data->timeout_clks +
656 (data->timeout_ns / host->ns_in_one_cycle);
657 if (timeout > 0xffff)
658 timeout = 0xffff;
659
660 writel(timeout, host->base + DAVINCI_MMCTOD);
661 writel(data->blocks, host->base + DAVINCI_MMCNBLK);
662 writel(data->blksz, host->base + DAVINCI_MMCBLEN);
663
664 /* Configure the FIFO */
665 switch (data->flags & MMC_DATA_WRITE) {
666 case MMC_DATA_WRITE:
667 host->data_dir = DAVINCI_MMC_DATADIR_WRITE;
668 writel(fifo_lev | MMCFIFOCTL_FIFODIR_WR | MMCFIFOCTL_FIFORST,
669 host->base + DAVINCI_MMCFIFOCTL);
670 writel(fifo_lev | MMCFIFOCTL_FIFODIR_WR,
671 host->base + DAVINCI_MMCFIFOCTL);
672 break;
673
674 default:
675 host->data_dir = DAVINCI_MMC_DATADIR_READ;
676 writel(fifo_lev | MMCFIFOCTL_FIFODIR_RD | MMCFIFOCTL_FIFORST,
677 host->base + DAVINCI_MMCFIFOCTL);
678 writel(fifo_lev | MMCFIFOCTL_FIFODIR_RD,
679 host->base + DAVINCI_MMCFIFOCTL);
680 break;
681 }
682
683 host->buffer = NULL;
684 host->bytes_left = data->blocks * data->blksz;
685
686 /* For now we try to use DMA whenever we won't need partial FIFO
687 * reads or writes, either for the whole transfer (as tested here)
688 * or for any individual scatterlist segment (tested when we call
689 * start_dma_transfer).
690 *
691 * While we *could* change that, unusual block sizes are rarely
692 * used. The occasional fallback to PIO should't hurt.
693 */
694 if (host->use_dma && (host->bytes_left & (rw_threshold - 1)) == 0
695 && mmc_davinci_start_dma_transfer(host, data) == 0) {
696 /* zero this to ensure we take no PIO paths */
697 host->bytes_left = 0;
698 } else {
699 /* Revert to CPU Copy */
700 host->sg_len = data->sg_len;
701 host->sg = host->data->sg;
702 mmc_davinci_sg_to_buf(host);
703 }
704}
705
706static void mmc_davinci_request(struct mmc_host *mmc, struct mmc_request *req)
707{
708 struct mmc_davinci_host *host = mmc_priv(mmc);
709 unsigned long timeout = jiffies + msecs_to_jiffies(900);
710 u32 mmcst1 = 0;
711
712 /* Card may still be sending BUSY after a previous operation,
713 * typically some kind of write. If so, we can't proceed yet.
714 */
715 while (time_before(jiffies, timeout)) {
716 mmcst1 = readl(host->base + DAVINCI_MMCST1);
717 if (!(mmcst1 & MMCST1_BUSY))
718 break;
719 cpu_relax();
720 }
721 if (mmcst1 & MMCST1_BUSY) {
722 dev_err(mmc_dev(host->mmc), "still BUSY? bad ... \n");
723 req->cmd->error = -ETIMEDOUT;
724 mmc_request_done(mmc, req);
725 return;
726 }
727
728 host->do_dma = 0;
729 mmc_davinci_prepare_data(host, req);
730 mmc_davinci_start_command(host, req->cmd);
731}
732
733static unsigned int calculate_freq_for_card(struct mmc_davinci_host *host,
734 unsigned int mmc_req_freq)
735{
736 unsigned int mmc_freq = 0, mmc_pclk = 0, mmc_push_pull_divisor = 0;
737
738 mmc_pclk = host->mmc_input_clk;
739 if (mmc_req_freq && mmc_pclk > (2 * mmc_req_freq))
740 mmc_push_pull_divisor = ((unsigned int)mmc_pclk
741 / (2 * mmc_req_freq)) - 1;
742 else
743 mmc_push_pull_divisor = 0;
744
745 mmc_freq = (unsigned int)mmc_pclk
746 / (2 * (mmc_push_pull_divisor + 1));
747
748 if (mmc_freq > mmc_req_freq)
749 mmc_push_pull_divisor = mmc_push_pull_divisor + 1;
750 /* Convert ns to clock cycles */
751 if (mmc_req_freq <= 400000)
752 host->ns_in_one_cycle = (1000000) / (((mmc_pclk
753 / (2 * (mmc_push_pull_divisor + 1)))/1000));
754 else
755 host->ns_in_one_cycle = (1000000) / (((mmc_pclk
756 / (2 * (mmc_push_pull_divisor + 1)))/1000000));
757
758 return mmc_push_pull_divisor;
759}
760
761static void calculate_clk_divider(struct mmc_host *mmc, struct mmc_ios *ios)
762{
763 unsigned int open_drain_freq = 0, mmc_pclk = 0;
764 unsigned int mmc_push_pull_freq = 0;
765 struct mmc_davinci_host *host = mmc_priv(mmc);
766
767 if (ios->bus_mode == MMC_BUSMODE_OPENDRAIN) {
768 u32 temp;
769
770 /* Ignoring the init clock value passed for fixing the inter
771 * operability with different cards.
772 */
773 open_drain_freq = ((unsigned int)mmc_pclk
774 / (2 * MMCSD_INIT_CLOCK)) - 1;
775
776 if (open_drain_freq > 0xFF)
777 open_drain_freq = 0xFF;
778
779 temp = readl(host->base + DAVINCI_MMCCLK) & ~MMCCLK_CLKRT_MASK;
780 temp |= open_drain_freq;
781 writel(temp, host->base + DAVINCI_MMCCLK);
782
783 /* Convert ns to clock cycles */
784 host->ns_in_one_cycle = (1000000) / (MMCSD_INIT_CLOCK/1000);
785 } else {
786 u32 temp;
787 mmc_push_pull_freq = calculate_freq_for_card(host, ios->clock);
788
789 if (mmc_push_pull_freq > 0xFF)
790 mmc_push_pull_freq = 0xFF;
791
792 temp = readl(host->base + DAVINCI_MMCCLK) & ~MMCCLK_CLKEN;
793 writel(temp, host->base + DAVINCI_MMCCLK);
794
795 udelay(10);
796
797 temp = readl(host->base + DAVINCI_MMCCLK) & ~MMCCLK_CLKRT_MASK;
798 temp |= mmc_push_pull_freq;
799 writel(temp, host->base + DAVINCI_MMCCLK);
800
801 writel(temp | MMCCLK_CLKEN, host->base + DAVINCI_MMCCLK);
802
803 udelay(10);
804 }
805}
806
807static void mmc_davinci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
808{
809 struct mmc_davinci_host *host = mmc_priv(mmc);
810
811 dev_dbg(mmc_dev(host->mmc),
812 "clock %dHz busmode %d powermode %d Vdd %04x\n",
813 ios->clock, ios->bus_mode, ios->power_mode,
814 ios->vdd);
815
816 switch (ios->bus_width) {
817 case MMC_BUS_WIDTH_8:
818 dev_dbg(mmc_dev(host->mmc), "Enabling 8 bit mode\n");
819 writel((readl(host->base + DAVINCI_MMCCTL) &
820 ~MMCCTL_WIDTH_4_BIT) | MMCCTL_WIDTH_8_BIT,
821 host->base + DAVINCI_MMCCTL);
822 break;
823 case MMC_BUS_WIDTH_4:
824 dev_dbg(mmc_dev(host->mmc), "Enabling 4 bit mode\n");
825 if (host->version == MMC_CTLR_VERSION_2)
826 writel((readl(host->base + DAVINCI_MMCCTL) &
827 ~MMCCTL_WIDTH_8_BIT) | MMCCTL_WIDTH_4_BIT,
828 host->base + DAVINCI_MMCCTL);
829 else
830 writel(readl(host->base + DAVINCI_MMCCTL) |
831 MMCCTL_WIDTH_4_BIT,
832 host->base + DAVINCI_MMCCTL);
833 break;
834 case MMC_BUS_WIDTH_1:
835 dev_dbg(mmc_dev(host->mmc), "Enabling 1 bit mode\n");
836 if (host->version == MMC_CTLR_VERSION_2)
837 writel(readl(host->base + DAVINCI_MMCCTL) &
838 ~(MMCCTL_WIDTH_8_BIT | MMCCTL_WIDTH_4_BIT),
839 host->base + DAVINCI_MMCCTL);
840 else
841 writel(readl(host->base + DAVINCI_MMCCTL) &
842 ~MMCCTL_WIDTH_4_BIT,
843 host->base + DAVINCI_MMCCTL);
844 break;
845 }
846
847 calculate_clk_divider(mmc, ios);
848
849 host->bus_mode = ios->bus_mode;
850 if (ios->power_mode == MMC_POWER_UP) {
851 unsigned long timeout = jiffies + msecs_to_jiffies(50);
852 bool lose = true;
853
854 /* Send clock cycles, poll completion */
855 writel(0, host->base + DAVINCI_MMCARGHL);
856 writel(MMCCMD_INITCK, host->base + DAVINCI_MMCCMD);
857 while (time_before(jiffies, timeout)) {
858 u32 tmp = readl(host->base + DAVINCI_MMCST0);
859
860 if (tmp & MMCST0_RSPDNE) {
861 lose = false;
862 break;
863 }
864 cpu_relax();
865 }
866 if (lose)
867 dev_warn(mmc_dev(host->mmc), "powerup timeout\n");
868 }
869
870 /* FIXME on power OFF, reset things ... */
871}
872
873static void
874mmc_davinci_xfer_done(struct mmc_davinci_host *host, struct mmc_data *data)
875{
876 host->data = NULL;
877
878 if (host->mmc->caps & MMC_CAP_SDIO_IRQ) {
879 /*
880 * SDIO Interrupt Detection work-around as suggested by
881 * Davinci Errata (TMS320DM355 Silicon Revision 1.1 Errata
882 * 2.1.6): Signal SDIO interrupt only if it is enabled by core
883 */
884 if (host->sdio_int && !(readl(host->base + DAVINCI_SDIOST0) &
885 SDIOST0_DAT1_HI)) {
886 writel(SDIOIST_IOINT, host->base + DAVINCI_SDIOIST);
887 mmc_signal_sdio_irq(host->mmc);
888 }
889 }
890
891 if (host->do_dma) {
892 davinci_abort_dma(host);
893
894 dma_unmap_sg(mmc_dev(host->mmc), data->sg, data->sg_len,
895 (data->flags & MMC_DATA_WRITE)
896 ? DMA_TO_DEVICE
897 : DMA_FROM_DEVICE);
898 host->do_dma = false;
899 }
900 host->data_dir = DAVINCI_MMC_DATADIR_NONE;
901
902 if (!data->stop || (host->cmd && host->cmd->error)) {
903 mmc_request_done(host->mmc, data->mrq);
904 writel(0, host->base + DAVINCI_MMCIM);
905 } else
906 mmc_davinci_start_command(host, data->stop);
907}
908
909static void mmc_davinci_cmd_done(struct mmc_davinci_host *host,
910 struct mmc_command *cmd)
911{
912 host->cmd = NULL;
913
914 if (cmd->flags & MMC_RSP_PRESENT) {
915 if (cmd->flags & MMC_RSP_136) {
916 /* response type 2 */
917 cmd->resp[3] = readl(host->base + DAVINCI_MMCRSP01);
918 cmd->resp[2] = readl(host->base + DAVINCI_MMCRSP23);
919 cmd->resp[1] = readl(host->base + DAVINCI_MMCRSP45);
920 cmd->resp[0] = readl(host->base + DAVINCI_MMCRSP67);
921 } else {
922 /* response types 1, 1b, 3, 4, 5, 6 */
923 cmd->resp[0] = readl(host->base + DAVINCI_MMCRSP67);
924 }
925 }
926
927 if (host->data == NULL || cmd->error) {
928 if (cmd->error == -ETIMEDOUT)
929 cmd->mrq->cmd->retries = 0;
930 mmc_request_done(host->mmc, cmd->mrq);
931 writel(0, host->base + DAVINCI_MMCIM);
932 }
933}
934
935static inline void mmc_davinci_reset_ctrl(struct mmc_davinci_host *host,
936 int val)
937{
938 u32 temp;
939
940 temp = readl(host->base + DAVINCI_MMCCTL);
941 if (val) /* reset */
942 temp |= MMCCTL_CMDRST | MMCCTL_DATRST;
943 else /* enable */
944 temp &= ~(MMCCTL_CMDRST | MMCCTL_DATRST);
945
946 writel(temp, host->base + DAVINCI_MMCCTL);
947 udelay(10);
948}
949
950static void
951davinci_abort_data(struct mmc_davinci_host *host, struct mmc_data *data)
952{
953 mmc_davinci_reset_ctrl(host, 1);
954 mmc_davinci_reset_ctrl(host, 0);
955}
956
957static irqreturn_t mmc_davinci_sdio_irq(int irq, void *dev_id)
958{
959 struct mmc_davinci_host *host = dev_id;
960 unsigned int status;
961
962 status = readl(host->base + DAVINCI_SDIOIST);
963 if (status & SDIOIST_IOINT) {
964 dev_dbg(mmc_dev(host->mmc),
965 "SDIO interrupt status %x\n", status);
966 writel(status | SDIOIST_IOINT, host->base + DAVINCI_SDIOIST);
967 mmc_signal_sdio_irq(host->mmc);
968 }
969 return IRQ_HANDLED;
970}
971
972static irqreturn_t mmc_davinci_irq(int irq, void *dev_id)
973{
974 struct mmc_davinci_host *host = (struct mmc_davinci_host *)dev_id;
975 unsigned int status, qstatus;
976 int end_command = 0;
977 int end_transfer = 0;
978 struct mmc_data *data = host->data;
979
980 if (host->cmd == NULL && host->data == NULL) {
981 status = readl(host->base + DAVINCI_MMCST0);
982 dev_dbg(mmc_dev(host->mmc),
983 "Spurious interrupt 0x%04x\n", status);
984 /* Disable the interrupt from mmcsd */
985 writel(0, host->base + DAVINCI_MMCIM);
986 return IRQ_NONE;
987 }
988
989 status = readl(host->base + DAVINCI_MMCST0);
990 qstatus = status;
991
992 /* handle FIFO first when using PIO for data.
993 * bytes_left will decrease to zero as I/O progress and status will
994 * read zero over iteration because this controller status
995 * register(MMCST0) reports any status only once and it is cleared
996 * by read. So, it is not unbouned loop even in the case of
997 * non-dma.
998 */
999 while (host->bytes_left && (status & (MMCST0_DXRDY | MMCST0_DRRDY))) {
1000 davinci_fifo_data_trans(host, rw_threshold);
1001 status = readl(host->base + DAVINCI_MMCST0);
1002 if (!status)
1003 break;
1004 qstatus |= status;
1005 }
1006
1007 if (qstatus & MMCST0_DATDNE) {
1008 /* All blocks sent/received, and CRC checks passed */
1009 if (data != NULL) {
1010 if ((host->do_dma == 0) && (host->bytes_left > 0)) {
1011 /* if datasize < rw_threshold
1012 * no RX ints are generated
1013 */
1014 davinci_fifo_data_trans(host, host->bytes_left);
1015 }
1016 end_transfer = 1;
1017 data->bytes_xfered = data->blocks * data->blksz;
1018 } else {
1019 dev_err(mmc_dev(host->mmc),
1020 "DATDNE with no host->data\n");
1021 }
1022 }
1023
1024 if (qstatus & MMCST0_TOUTRD) {
1025 /* Read data timeout */
1026 data->error = -ETIMEDOUT;
1027 end_transfer = 1;
1028
1029 dev_dbg(mmc_dev(host->mmc),
1030 "read data timeout, status %x\n",
1031 qstatus);
1032
1033 davinci_abort_data(host, data);
1034 }
1035
1036 if (qstatus & (MMCST0_CRCWR | MMCST0_CRCRD)) {
1037 /* Data CRC error */
1038 data->error = -EILSEQ;
1039 end_transfer = 1;
1040
1041 /* NOTE: this controller uses CRCWR to report both CRC
1042 * errors and timeouts (on writes). MMCDRSP values are
1043 * only weakly documented, but 0x9f was clearly a timeout
1044 * case and the two three-bit patterns in various SD specs
1045 * (101, 010) aren't part of it ...
1046 */
1047 if (qstatus & MMCST0_CRCWR) {
1048 u32 temp = readb(host->base + DAVINCI_MMCDRSP);
1049
1050 if (temp == 0x9f)
1051 data->error = -ETIMEDOUT;
1052 }
1053 dev_dbg(mmc_dev(host->mmc), "data %s %s error\n",
1054 (qstatus & MMCST0_CRCWR) ? "write" : "read",
1055 (data->error == -ETIMEDOUT) ? "timeout" : "CRC");
1056
1057 davinci_abort_data(host, data);
1058 }
1059
1060 if (qstatus & MMCST0_TOUTRS) {
1061 /* Command timeout */
1062 if (host->cmd) {
1063 dev_dbg(mmc_dev(host->mmc),
1064 "CMD%d timeout, status %x\n",
1065 host->cmd->opcode, qstatus);
1066 host->cmd->error = -ETIMEDOUT;
1067 if (data) {
1068 end_transfer = 1;
1069 davinci_abort_data(host, data);
1070 } else
1071 end_command = 1;
1072 }
1073 }
1074
1075 if (qstatus & MMCST0_CRCRS) {
1076 /* Command CRC error */
1077 dev_dbg(mmc_dev(host->mmc), "Command CRC error\n");
1078 if (host->cmd) {
1079 host->cmd->error = -EILSEQ;
1080 end_command = 1;
1081 }
1082 }
1083
1084 if (qstatus & MMCST0_RSPDNE) {
1085 /* End of command phase */
1086 end_command = (int) host->cmd;
1087 }
1088
1089 if (end_command)
1090 mmc_davinci_cmd_done(host, host->cmd);
1091 if (end_transfer)
1092 mmc_davinci_xfer_done(host, data);
1093 return IRQ_HANDLED;
1094}
1095
1096static int mmc_davinci_get_cd(struct mmc_host *mmc)
1097{
1098 struct platform_device *pdev = to_platform_device(mmc->parent);
1099 struct davinci_mmc_config *config = pdev->dev.platform_data;
1100
1101 if (!config || !config->get_cd)
1102 return -ENOSYS;
1103 return config->get_cd(pdev->id);
1104}
1105
1106static int mmc_davinci_get_ro(struct mmc_host *mmc)
1107{
1108 struct platform_device *pdev = to_platform_device(mmc->parent);
1109 struct davinci_mmc_config *config = pdev->dev.platform_data;
1110
1111 if (!config || !config->get_ro)
1112 return -ENOSYS;
1113 return config->get_ro(pdev->id);
1114}
1115
1116static void mmc_davinci_enable_sdio_irq(struct mmc_host *mmc, int enable)
1117{
1118 struct mmc_davinci_host *host = mmc_priv(mmc);
1119
1120 if (enable) {
1121 if (!(readl(host->base + DAVINCI_SDIOST0) & SDIOST0_DAT1_HI)) {
1122 writel(SDIOIST_IOINT, host->base + DAVINCI_SDIOIST);
1123 mmc_signal_sdio_irq(host->mmc);
1124 } else {
1125 host->sdio_int = true;
1126 writel(readl(host->base + DAVINCI_SDIOIEN) |
1127 SDIOIEN_IOINTEN, host->base + DAVINCI_SDIOIEN);
1128 }
1129 } else {
1130 host->sdio_int = false;
1131 writel(readl(host->base + DAVINCI_SDIOIEN) & ~SDIOIEN_IOINTEN,
1132 host->base + DAVINCI_SDIOIEN);
1133 }
1134}
1135
1136static struct mmc_host_ops mmc_davinci_ops = {
1137 .request = mmc_davinci_request,
1138 .set_ios = mmc_davinci_set_ios,
1139 .get_cd = mmc_davinci_get_cd,
1140 .get_ro = mmc_davinci_get_ro,
1141 .enable_sdio_irq = mmc_davinci_enable_sdio_irq,
1142};
1143
1144/*----------------------------------------------------------------------*/
1145
1146#ifdef CONFIG_CPU_FREQ
1147static int mmc_davinci_cpufreq_transition(struct notifier_block *nb,
1148 unsigned long val, void *data)
1149{
1150 struct mmc_davinci_host *host;
1151 unsigned int mmc_pclk;
1152 struct mmc_host *mmc;
1153 unsigned long flags;
1154
1155 host = container_of(nb, struct mmc_davinci_host, freq_transition);
1156 mmc = host->mmc;
1157 mmc_pclk = clk_get_rate(host->clk);
1158
1159 if (val == CPUFREQ_POSTCHANGE) {
1160 spin_lock_irqsave(&mmc->lock, flags);
1161 host->mmc_input_clk = mmc_pclk;
1162 calculate_clk_divider(mmc, &mmc->ios);
1163 spin_unlock_irqrestore(&mmc->lock, flags);
1164 }
1165
1166 return 0;
1167}
1168
1169static inline int mmc_davinci_cpufreq_register(struct mmc_davinci_host *host)
1170{
1171 host->freq_transition.notifier_call = mmc_davinci_cpufreq_transition;
1172
1173 return cpufreq_register_notifier(&host->freq_transition,
1174 CPUFREQ_TRANSITION_NOTIFIER);
1175}
1176
1177static inline void mmc_davinci_cpufreq_deregister(struct mmc_davinci_host *host)
1178{
1179 cpufreq_unregister_notifier(&host->freq_transition,
1180 CPUFREQ_TRANSITION_NOTIFIER);
1181}
1182#else
1183static inline int mmc_davinci_cpufreq_register(struct mmc_davinci_host *host)
1184{
1185 return 0;
1186}
1187
1188static inline void mmc_davinci_cpufreq_deregister(struct mmc_davinci_host *host)
1189{
1190}
1191#endif
1192static void __init init_mmcsd_host(struct mmc_davinci_host *host)
1193{
1194
1195 mmc_davinci_reset_ctrl(host, 1);
1196
1197 writel(0, host->base + DAVINCI_MMCCLK);
1198 writel(MMCCLK_CLKEN, host->base + DAVINCI_MMCCLK);
1199
1200 writel(0x1FFF, host->base + DAVINCI_MMCTOR);
1201 writel(0xFFFF, host->base + DAVINCI_MMCTOD);
1202
1203 mmc_davinci_reset_ctrl(host, 0);
1204}
1205
1206static int __init davinci_mmcsd_probe(struct platform_device *pdev)
1207{
1208 struct davinci_mmc_config *pdata = pdev->dev.platform_data;
1209 struct mmc_davinci_host *host = NULL;
1210 struct mmc_host *mmc = NULL;
1211 struct resource *r, *mem = NULL;
1212 int ret = 0, irq = 0;
1213 size_t mem_size;
1214
1215 /* REVISIT: when we're fully converted, fail if pdata is NULL */
1216
1217 ret = -ENODEV;
1218 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1219 irq = platform_get_irq(pdev, 0);
1220 if (!r || irq == NO_IRQ)
1221 goto out;
1222
1223 ret = -EBUSY;
1224 mem_size = resource_size(r);
1225 mem = request_mem_region(r->start, mem_size, pdev->name);
1226 if (!mem)
1227 goto out;
1228
1229 ret = -ENOMEM;
1230 mmc = mmc_alloc_host(sizeof(struct mmc_davinci_host), &pdev->dev);
1231 if (!mmc)
1232 goto out;
1233
1234 host = mmc_priv(mmc);
1235 host->mmc = mmc; /* Important */
1236
1237 r = platform_get_resource(pdev, IORESOURCE_DMA, 0);
1238 if (!r)
1239 goto out;
1240 host->rxdma = r->start;
1241
1242 r = platform_get_resource(pdev, IORESOURCE_DMA, 1);
1243 if (!r)
1244 goto out;
1245 host->txdma = r->start;
1246
1247 host->mem_res = mem;
1248 host->base = ioremap(mem->start, mem_size);
1249 if (!host->base)
1250 goto out;
1251
1252 ret = -ENXIO;
1253 host->clk = clk_get(&pdev->dev, "MMCSDCLK");
1254 if (IS_ERR(host->clk)) {
1255 ret = PTR_ERR(host->clk);
1256 goto out;
1257 }
1258 clk_enable(host->clk);
1259 host->mmc_input_clk = clk_get_rate(host->clk);
1260
1261 init_mmcsd_host(host);
1262
1263 if (pdata->nr_sg)
1264 host->nr_sg = pdata->nr_sg - 1;
1265
1266 if (host->nr_sg > MAX_NR_SG || !host->nr_sg)
1267 host->nr_sg = MAX_NR_SG;
1268
1269 host->use_dma = use_dma;
1270 host->mmc_irq = irq;
1271 host->sdio_irq = platform_get_irq(pdev, 1);
1272
1273 if (host->use_dma && davinci_acquire_dma_channels(host) != 0)
1274 host->use_dma = 0;
1275
1276 /* REVISIT: someday, support IRQ-driven card detection. */
1277 mmc->caps |= MMC_CAP_NEEDS_POLL;
1278 mmc->caps |= MMC_CAP_WAIT_WHILE_BUSY;
1279
1280 if (pdata && (pdata->wires == 4 || pdata->wires == 0))
1281 mmc->caps |= MMC_CAP_4_BIT_DATA;
1282
1283 if (pdata && (pdata->wires == 8))
1284 mmc->caps |= (MMC_CAP_4_BIT_DATA | MMC_CAP_8_BIT_DATA);
1285
1286 host->version = pdata->version;
1287
1288 mmc->ops = &mmc_davinci_ops;
1289 mmc->f_min = 312500;
1290 mmc->f_max = 25000000;
1291 if (pdata && pdata->max_freq)
1292 mmc->f_max = pdata->max_freq;
1293 if (pdata && pdata->caps)
1294 mmc->caps |= pdata->caps;
1295 mmc->ocr_avail = MMC_VDD_32_33 | MMC_VDD_33_34;
1296
1297 /* With no iommu coalescing pages, each phys_seg is a hw_seg.
1298 * Each hw_seg uses one EDMA parameter RAM slot, always one
1299 * channel and then usually some linked slots.
1300 */
1301 mmc->max_segs = 1 + host->n_link;
1302
1303 /* EDMA limit per hw segment (one or two MBytes) */
1304 mmc->max_seg_size = MAX_CCNT * rw_threshold;
1305
1306 /* MMC/SD controller limits for multiblock requests */
1307 mmc->max_blk_size = 4095; /* BLEN is 12 bits */
1308 mmc->max_blk_count = 65535; /* NBLK is 16 bits */
1309 mmc->max_req_size = mmc->max_blk_size * mmc->max_blk_count;
1310
1311 dev_dbg(mmc_dev(host->mmc), "max_segs=%d\n", mmc->max_segs);
1312 dev_dbg(mmc_dev(host->mmc), "max_blk_size=%d\n", mmc->max_blk_size);
1313 dev_dbg(mmc_dev(host->mmc), "max_req_size=%d\n", mmc->max_req_size);
1314 dev_dbg(mmc_dev(host->mmc), "max_seg_size=%d\n", mmc->max_seg_size);
1315
1316 platform_set_drvdata(pdev, host);
1317
1318 ret = mmc_davinci_cpufreq_register(host);
1319 if (ret) {
1320 dev_err(&pdev->dev, "failed to register cpufreq\n");
1321 goto cpu_freq_fail;
1322 }
1323
1324 ret = mmc_add_host(mmc);
1325 if (ret < 0)
1326 goto out;
1327
1328 ret = request_irq(irq, mmc_davinci_irq, 0, mmc_hostname(mmc), host);
1329 if (ret)
1330 goto out;
1331
1332 if (host->sdio_irq >= 0) {
1333 ret = request_irq(host->sdio_irq, mmc_davinci_sdio_irq, 0,
1334 mmc_hostname(mmc), host);
1335 if (!ret)
1336 mmc->caps |= MMC_CAP_SDIO_IRQ;
1337 }
1338
1339 rename_region(mem, mmc_hostname(mmc));
1340
1341 dev_info(mmc_dev(host->mmc), "Using %s, %d-bit mode\n",
1342 host->use_dma ? "DMA" : "PIO",
1343 (mmc->caps & MMC_CAP_4_BIT_DATA) ? 4 : 1);
1344
1345 return 0;
1346
1347out:
1348 mmc_davinci_cpufreq_deregister(host);
1349cpu_freq_fail:
1350 if (host) {
1351 davinci_release_dma_channels(host);
1352
1353 if (host->clk) {
1354 clk_disable(host->clk);
1355 clk_put(host->clk);
1356 }
1357
1358 if (host->base)
1359 iounmap(host->base);
1360 }
1361
1362 if (mmc)
1363 mmc_free_host(mmc);
1364
1365 if (mem)
1366 release_resource(mem);
1367
1368 dev_dbg(&pdev->dev, "probe err %d\n", ret);
1369
1370 return ret;
1371}
1372
1373static int __exit davinci_mmcsd_remove(struct platform_device *pdev)
1374{
1375 struct mmc_davinci_host *host = platform_get_drvdata(pdev);
1376
1377 platform_set_drvdata(pdev, NULL);
1378 if (host) {
1379 mmc_davinci_cpufreq_deregister(host);
1380
1381 mmc_remove_host(host->mmc);
1382 free_irq(host->mmc_irq, host);
1383 if (host->mmc->caps & MMC_CAP_SDIO_IRQ)
1384 free_irq(host->sdio_irq, host);
1385
1386 davinci_release_dma_channels(host);
1387
1388 clk_disable(host->clk);
1389 clk_put(host->clk);
1390
1391 iounmap(host->base);
1392
1393 release_resource(host->mem_res);
1394
1395 mmc_free_host(host->mmc);
1396 }
1397
1398 return 0;
1399}
1400
1401#ifdef CONFIG_PM
1402static int davinci_mmcsd_suspend(struct device *dev)
1403{
1404 struct platform_device *pdev = to_platform_device(dev);
1405 struct mmc_davinci_host *host = platform_get_drvdata(pdev);
1406 int ret;
1407
1408 mmc_host_enable(host->mmc);
1409 ret = mmc_suspend_host(host->mmc);
1410 if (!ret) {
1411 writel(0, host->base + DAVINCI_MMCIM);
1412 mmc_davinci_reset_ctrl(host, 1);
1413 mmc_host_disable(host->mmc);
1414 clk_disable(host->clk);
1415 host->suspended = 1;
1416 } else {
1417 host->suspended = 0;
1418 mmc_host_disable(host->mmc);
1419 }
1420
1421 return ret;
1422}
1423
1424static int davinci_mmcsd_resume(struct device *dev)
1425{
1426 struct platform_device *pdev = to_platform_device(dev);
1427 struct mmc_davinci_host *host = platform_get_drvdata(pdev);
1428 int ret;
1429
1430 if (!host->suspended)
1431 return 0;
1432
1433 clk_enable(host->clk);
1434 mmc_host_enable(host->mmc);
1435
1436 mmc_davinci_reset_ctrl(host, 0);
1437 ret = mmc_resume_host(host->mmc);
1438 if (!ret)
1439 host->suspended = 0;
1440
1441 return ret;
1442}
1443
1444static const struct dev_pm_ops davinci_mmcsd_pm = {
1445 .suspend = davinci_mmcsd_suspend,
1446 .resume = davinci_mmcsd_resume,
1447};
1448
1449#define davinci_mmcsd_pm_ops (&davinci_mmcsd_pm)
1450#else
1451#define davinci_mmcsd_pm_ops NULL
1452#endif
1453
1454static struct platform_driver davinci_mmcsd_driver = {
1455 .driver = {
1456 .name = "davinci_mmc",
1457 .owner = THIS_MODULE,
1458 .pm = davinci_mmcsd_pm_ops,
1459 },
1460 .remove = __exit_p(davinci_mmcsd_remove),
1461};
1462
1463static int __init davinci_mmcsd_init(void)
1464{
1465 return platform_driver_probe(&davinci_mmcsd_driver,
1466 davinci_mmcsd_probe);
1467}
1468module_init(davinci_mmcsd_init);
1469
1470static void __exit davinci_mmcsd_exit(void)
1471{
1472 platform_driver_unregister(&davinci_mmcsd_driver);
1473}
1474module_exit(davinci_mmcsd_exit);
1475
1476MODULE_AUTHOR("Texas Instruments India");
1477MODULE_LICENSE("GPL");
1478MODULE_DESCRIPTION("MMC/SD driver for Davinci MMC controller");
1479
1// SPDX-License-Identifier: GPL-2.0-or-later
2/*
3 * davinci_mmc.c - TI DaVinci MMC/SD/SDIO driver
4 *
5 * Copyright (C) 2006 Texas Instruments.
6 * Original author: Purushotam Kumar
7 * Copyright (C) 2009 David Brownell
8 */
9
10#include <linux/module.h>
11#include <linux/ioport.h>
12#include <linux/platform_device.h>
13#include <linux/clk.h>
14#include <linux/err.h>
15#include <linux/cpufreq.h>
16#include <linux/mmc/host.h>
17#include <linux/io.h>
18#include <linux/irq.h>
19#include <linux/delay.h>
20#include <linux/dmaengine.h>
21#include <linux/dma-mapping.h>
22#include <linux/mmc/mmc.h>
23#include <linux/of.h>
24#include <linux/mmc/slot-gpio.h>
25#include <linux/interrupt.h>
26
27#include <linux/platform_data/mmc-davinci.h>
28
29/*
30 * Register Definitions
31 */
32#define DAVINCI_MMCCTL 0x00 /* Control Register */
33#define DAVINCI_MMCCLK 0x04 /* Memory Clock Control Register */
34#define DAVINCI_MMCST0 0x08 /* Status Register 0 */
35#define DAVINCI_MMCST1 0x0C /* Status Register 1 */
36#define DAVINCI_MMCIM 0x10 /* Interrupt Mask Register */
37#define DAVINCI_MMCTOR 0x14 /* Response Time-Out Register */
38#define DAVINCI_MMCTOD 0x18 /* Data Read Time-Out Register */
39#define DAVINCI_MMCBLEN 0x1C /* Block Length Register */
40#define DAVINCI_MMCNBLK 0x20 /* Number of Blocks Register */
41#define DAVINCI_MMCNBLC 0x24 /* Number of Blocks Counter Register */
42#define DAVINCI_MMCDRR 0x28 /* Data Receive Register */
43#define DAVINCI_MMCDXR 0x2C /* Data Transmit Register */
44#define DAVINCI_MMCCMD 0x30 /* Command Register */
45#define DAVINCI_MMCARGHL 0x34 /* Argument Register */
46#define DAVINCI_MMCRSP01 0x38 /* Response Register 0 and 1 */
47#define DAVINCI_MMCRSP23 0x3C /* Response Register 0 and 1 */
48#define DAVINCI_MMCRSP45 0x40 /* Response Register 0 and 1 */
49#define DAVINCI_MMCRSP67 0x44 /* Response Register 0 and 1 */
50#define DAVINCI_MMCDRSP 0x48 /* Data Response Register */
51#define DAVINCI_MMCETOK 0x4C
52#define DAVINCI_MMCCIDX 0x50 /* Command Index Register */
53#define DAVINCI_MMCCKC 0x54
54#define DAVINCI_MMCTORC 0x58
55#define DAVINCI_MMCTODC 0x5C
56#define DAVINCI_MMCBLNC 0x60
57#define DAVINCI_SDIOCTL 0x64
58#define DAVINCI_SDIOST0 0x68
59#define DAVINCI_SDIOIEN 0x6C
60#define DAVINCI_SDIOIST 0x70
61#define DAVINCI_MMCFIFOCTL 0x74 /* FIFO Control Register */
62
63/* DAVINCI_MMCCTL definitions */
64#define MMCCTL_DATRST (1 << 0)
65#define MMCCTL_CMDRST (1 << 1)
66#define MMCCTL_WIDTH_8_BIT (1 << 8)
67#define MMCCTL_WIDTH_4_BIT (1 << 2)
68#define MMCCTL_DATEG_DISABLED (0 << 6)
69#define MMCCTL_DATEG_RISING (1 << 6)
70#define MMCCTL_DATEG_FALLING (2 << 6)
71#define MMCCTL_DATEG_BOTH (3 << 6)
72#define MMCCTL_PERMDR_LE (0 << 9)
73#define MMCCTL_PERMDR_BE (1 << 9)
74#define MMCCTL_PERMDX_LE (0 << 10)
75#define MMCCTL_PERMDX_BE (1 << 10)
76
77/* DAVINCI_MMCCLK definitions */
78#define MMCCLK_CLKEN (1 << 8)
79#define MMCCLK_CLKRT_MASK (0xFF << 0)
80
81/* IRQ bit definitions, for DAVINCI_MMCST0 and DAVINCI_MMCIM */
82#define MMCST0_DATDNE BIT(0) /* data done */
83#define MMCST0_BSYDNE BIT(1) /* busy done */
84#define MMCST0_RSPDNE BIT(2) /* command done */
85#define MMCST0_TOUTRD BIT(3) /* data read timeout */
86#define MMCST0_TOUTRS BIT(4) /* command response timeout */
87#define MMCST0_CRCWR BIT(5) /* data write CRC error */
88#define MMCST0_CRCRD BIT(6) /* data read CRC error */
89#define MMCST0_CRCRS BIT(7) /* command response CRC error */
90#define MMCST0_DXRDY BIT(9) /* data transmit ready (fifo empty) */
91#define MMCST0_DRRDY BIT(10) /* data receive ready (data in fifo)*/
92#define MMCST0_DATED BIT(11) /* DAT3 edge detect */
93#define MMCST0_TRNDNE BIT(12) /* transfer done */
94
95/* DAVINCI_MMCST1 definitions */
96#define MMCST1_BUSY (1 << 0)
97
98/* DAVINCI_MMCCMD definitions */
99#define MMCCMD_CMD_MASK (0x3F << 0)
100#define MMCCMD_PPLEN (1 << 7)
101#define MMCCMD_BSYEXP (1 << 8)
102#define MMCCMD_RSPFMT_MASK (3 << 9)
103#define MMCCMD_RSPFMT_NONE (0 << 9)
104#define MMCCMD_RSPFMT_R1456 (1 << 9)
105#define MMCCMD_RSPFMT_R2 (2 << 9)
106#define MMCCMD_RSPFMT_R3 (3 << 9)
107#define MMCCMD_DTRW (1 << 11)
108#define MMCCMD_STRMTP (1 << 12)
109#define MMCCMD_WDATX (1 << 13)
110#define MMCCMD_INITCK (1 << 14)
111#define MMCCMD_DCLR (1 << 15)
112#define MMCCMD_DMATRIG (1 << 16)
113
114/* DAVINCI_MMCFIFOCTL definitions */
115#define MMCFIFOCTL_FIFORST (1 << 0)
116#define MMCFIFOCTL_FIFODIR_WR (1 << 1)
117#define MMCFIFOCTL_FIFODIR_RD (0 << 1)
118#define MMCFIFOCTL_FIFOLEV (1 << 2) /* 0 = 128 bits, 1 = 256 bits */
119#define MMCFIFOCTL_ACCWD_4 (0 << 3) /* access width of 4 bytes */
120#define MMCFIFOCTL_ACCWD_3 (1 << 3) /* access width of 3 bytes */
121#define MMCFIFOCTL_ACCWD_2 (2 << 3) /* access width of 2 bytes */
122#define MMCFIFOCTL_ACCWD_1 (3 << 3) /* access width of 1 byte */
123
124/* DAVINCI_SDIOST0 definitions */
125#define SDIOST0_DAT1_HI BIT(0)
126
127/* DAVINCI_SDIOIEN definitions */
128#define SDIOIEN_IOINTEN BIT(0)
129
130/* DAVINCI_SDIOIST definitions */
131#define SDIOIST_IOINT BIT(0)
132
133/* MMCSD Init clock in Hz in opendrain mode */
134#define MMCSD_INIT_CLOCK 200000
135
136/*
137 * One scatterlist dma "segment" is at most MAX_CCNT rw_threshold units,
138 * and we handle up to MAX_NR_SG segments. MMC_BLOCK_BOUNCE kicks in only
139 * for drivers with max_segs == 1, making the segments bigger (64KB)
140 * than the page or two that's otherwise typical. nr_sg (passed from
141 * platform data) == 16 gives at least the same throughput boost, using
142 * EDMA transfer linkage instead of spending CPU time copying pages.
143 */
144#define MAX_CCNT ((1 << 16) - 1)
145
146#define MAX_NR_SG 16
147
148static unsigned rw_threshold = 32;
149module_param(rw_threshold, uint, S_IRUGO);
150MODULE_PARM_DESC(rw_threshold,
151 "Read/Write threshold. Default = 32");
152
153static unsigned poll_threshold = 128;
154module_param(poll_threshold, uint, S_IRUGO);
155MODULE_PARM_DESC(poll_threshold,
156 "Polling transaction size threshold. Default = 128");
157
158static unsigned poll_loopcount = 32;
159module_param(poll_loopcount, uint, S_IRUGO);
160MODULE_PARM_DESC(poll_loopcount,
161 "Maximum polling loop count. Default = 32");
162
163static unsigned use_dma = 1;
164module_param(use_dma, uint, 0);
165MODULE_PARM_DESC(use_dma, "Whether to use DMA or not. Default = 1");
166
167struct mmc_davinci_host {
168 struct mmc_command *cmd;
169 struct mmc_data *data;
170 struct mmc_host *mmc;
171 struct clk *clk;
172 unsigned int mmc_input_clk;
173 void __iomem *base;
174 struct resource *mem_res;
175 int mmc_irq, sdio_irq;
176 unsigned char bus_mode;
177
178#define DAVINCI_MMC_DATADIR_NONE 0
179#define DAVINCI_MMC_DATADIR_READ 1
180#define DAVINCI_MMC_DATADIR_WRITE 2
181 unsigned char data_dir;
182
183 /* buffer is used during PIO of one scatterlist segment, and
184 * is updated along with buffer_bytes_left. bytes_left applies
185 * to all N blocks of the PIO transfer.
186 */
187 u8 *buffer;
188 u32 buffer_bytes_left;
189 u32 bytes_left;
190
191 struct dma_chan *dma_tx;
192 struct dma_chan *dma_rx;
193 bool use_dma;
194 bool do_dma;
195 bool sdio_int;
196 bool active_request;
197
198 /* For PIO we walk scatterlists one segment at a time. */
199 unsigned int sg_len;
200 struct scatterlist *sg;
201
202 /* Version of the MMC/SD controller */
203 u8 version;
204 /* for ns in one cycle calculation */
205 unsigned ns_in_one_cycle;
206 /* Number of sg segments */
207 u8 nr_sg;
208#ifdef CONFIG_CPU_FREQ
209 struct notifier_block freq_transition;
210#endif
211};
212
213static irqreturn_t mmc_davinci_irq(int irq, void *dev_id);
214
215/* PIO only */
216static void mmc_davinci_sg_to_buf(struct mmc_davinci_host *host)
217{
218 host->buffer_bytes_left = sg_dma_len(host->sg);
219 host->buffer = sg_virt(host->sg);
220 if (host->buffer_bytes_left > host->bytes_left)
221 host->buffer_bytes_left = host->bytes_left;
222}
223
224static void davinci_fifo_data_trans(struct mmc_davinci_host *host,
225 unsigned int n)
226{
227 u8 *p;
228 unsigned int i;
229
230 if (host->buffer_bytes_left == 0) {
231 host->sg = sg_next(host->data->sg);
232 mmc_davinci_sg_to_buf(host);
233 }
234
235 p = host->buffer;
236 if (n > host->buffer_bytes_left)
237 n = host->buffer_bytes_left;
238 host->buffer_bytes_left -= n;
239 host->bytes_left -= n;
240
241 /* NOTE: we never transfer more than rw_threshold bytes
242 * to/from the fifo here; there's no I/O overlap.
243 * This also assumes that access width( i.e. ACCWD) is 4 bytes
244 */
245 if (host->data_dir == DAVINCI_MMC_DATADIR_WRITE) {
246 for (i = 0; i < (n >> 2); i++) {
247 writel(*((u32 *)p), host->base + DAVINCI_MMCDXR);
248 p = p + 4;
249 }
250 if (n & 3) {
251 iowrite8_rep(host->base + DAVINCI_MMCDXR, p, (n & 3));
252 p = p + (n & 3);
253 }
254 } else {
255 for (i = 0; i < (n >> 2); i++) {
256 *((u32 *)p) = readl(host->base + DAVINCI_MMCDRR);
257 p = p + 4;
258 }
259 if (n & 3) {
260 ioread8_rep(host->base + DAVINCI_MMCDRR, p, (n & 3));
261 p = p + (n & 3);
262 }
263 }
264 host->buffer = p;
265}
266
267static void mmc_davinci_start_command(struct mmc_davinci_host *host,
268 struct mmc_command *cmd)
269{
270 u32 cmd_reg = 0;
271 u32 im_val;
272
273 dev_dbg(mmc_dev(host->mmc), "CMD%d, arg 0x%08x%s\n",
274 cmd->opcode, cmd->arg,
275 ({ char *s;
276 switch (mmc_resp_type(cmd)) {
277 case MMC_RSP_R1:
278 s = ", R1/R5/R6/R7 response";
279 break;
280 case MMC_RSP_R1B:
281 s = ", R1b response";
282 break;
283 case MMC_RSP_R2:
284 s = ", R2 response";
285 break;
286 case MMC_RSP_R3:
287 s = ", R3/R4 response";
288 break;
289 default:
290 s = ", (R? response)";
291 break;
292 } s; }));
293 host->cmd = cmd;
294
295 switch (mmc_resp_type(cmd)) {
296 case MMC_RSP_R1B:
297 /* There's some spec confusion about when R1B is
298 * allowed, but if the card doesn't issue a BUSY
299 * then it's harmless for us to allow it.
300 */
301 cmd_reg |= MMCCMD_BSYEXP;
302 fallthrough;
303 case MMC_RSP_R1: /* 48 bits, CRC */
304 cmd_reg |= MMCCMD_RSPFMT_R1456;
305 break;
306 case MMC_RSP_R2: /* 136 bits, CRC */
307 cmd_reg |= MMCCMD_RSPFMT_R2;
308 break;
309 case MMC_RSP_R3: /* 48 bits, no CRC */
310 cmd_reg |= MMCCMD_RSPFMT_R3;
311 break;
312 default:
313 cmd_reg |= MMCCMD_RSPFMT_NONE;
314 dev_dbg(mmc_dev(host->mmc), "unknown resp_type %04x\n",
315 mmc_resp_type(cmd));
316 break;
317 }
318
319 /* Set command index */
320 cmd_reg |= cmd->opcode;
321
322 /* Enable EDMA transfer triggers */
323 if (host->do_dma)
324 cmd_reg |= MMCCMD_DMATRIG;
325
326 if (host->version == MMC_CTLR_VERSION_2 && host->data != NULL &&
327 host->data_dir == DAVINCI_MMC_DATADIR_READ)
328 cmd_reg |= MMCCMD_DMATRIG;
329
330 /* Setting whether command involves data transfer or not */
331 if (cmd->data)
332 cmd_reg |= MMCCMD_WDATX;
333
334 /* Setting whether data read or write */
335 if (host->data_dir == DAVINCI_MMC_DATADIR_WRITE)
336 cmd_reg |= MMCCMD_DTRW;
337
338 if (host->bus_mode == MMC_BUSMODE_PUSHPULL)
339 cmd_reg |= MMCCMD_PPLEN;
340
341 /* set Command timeout */
342 writel(0x1FFF, host->base + DAVINCI_MMCTOR);
343
344 /* Enable interrupt (calculate here, defer until FIFO is stuffed). */
345 im_val = MMCST0_RSPDNE | MMCST0_CRCRS | MMCST0_TOUTRS;
346 if (host->data_dir == DAVINCI_MMC_DATADIR_WRITE) {
347 im_val |= MMCST0_DATDNE | MMCST0_CRCWR;
348
349 if (!host->do_dma)
350 im_val |= MMCST0_DXRDY;
351 } else if (host->data_dir == DAVINCI_MMC_DATADIR_READ) {
352 im_val |= MMCST0_DATDNE | MMCST0_CRCRD | MMCST0_TOUTRD;
353
354 if (!host->do_dma)
355 im_val |= MMCST0_DRRDY;
356 }
357
358 /*
359 * Before non-DMA WRITE commands the controller needs priming:
360 * FIFO should be populated with 32 bytes i.e. whatever is the FIFO size
361 */
362 if (!host->do_dma && (host->data_dir == DAVINCI_MMC_DATADIR_WRITE))
363 davinci_fifo_data_trans(host, rw_threshold);
364
365 writel(cmd->arg, host->base + DAVINCI_MMCARGHL);
366 writel(cmd_reg, host->base + DAVINCI_MMCCMD);
367
368 host->active_request = true;
369
370 if (!host->do_dma && host->bytes_left <= poll_threshold) {
371 u32 count = poll_loopcount;
372
373 while (host->active_request && count--) {
374 mmc_davinci_irq(0, host);
375 cpu_relax();
376 }
377 }
378
379 if (host->active_request)
380 writel(im_val, host->base + DAVINCI_MMCIM);
381}
382
383/*----------------------------------------------------------------------*/
384
385/* DMA infrastructure */
386
387static void davinci_abort_dma(struct mmc_davinci_host *host)
388{
389 struct dma_chan *sync_dev;
390
391 if (host->data_dir == DAVINCI_MMC_DATADIR_READ)
392 sync_dev = host->dma_rx;
393 else
394 sync_dev = host->dma_tx;
395
396 dmaengine_terminate_all(sync_dev);
397}
398
399static int mmc_davinci_send_dma_request(struct mmc_davinci_host *host,
400 struct mmc_data *data)
401{
402 struct dma_chan *chan;
403 struct dma_async_tx_descriptor *desc;
404 int ret = 0;
405
406 if (host->data_dir == DAVINCI_MMC_DATADIR_WRITE) {
407 struct dma_slave_config dma_tx_conf = {
408 .direction = DMA_MEM_TO_DEV,
409 .dst_addr = host->mem_res->start + DAVINCI_MMCDXR,
410 .dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES,
411 .dst_maxburst =
412 rw_threshold / DMA_SLAVE_BUSWIDTH_4_BYTES,
413 };
414 chan = host->dma_tx;
415 dmaengine_slave_config(host->dma_tx, &dma_tx_conf);
416
417 desc = dmaengine_prep_slave_sg(host->dma_tx,
418 data->sg,
419 host->sg_len,
420 DMA_MEM_TO_DEV,
421 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
422 if (!desc) {
423 dev_dbg(mmc_dev(host->mmc),
424 "failed to allocate DMA TX descriptor");
425 ret = -1;
426 goto out;
427 }
428 } else {
429 struct dma_slave_config dma_rx_conf = {
430 .direction = DMA_DEV_TO_MEM,
431 .src_addr = host->mem_res->start + DAVINCI_MMCDRR,
432 .src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES,
433 .src_maxburst =
434 rw_threshold / DMA_SLAVE_BUSWIDTH_4_BYTES,
435 };
436 chan = host->dma_rx;
437 dmaengine_slave_config(host->dma_rx, &dma_rx_conf);
438
439 desc = dmaengine_prep_slave_sg(host->dma_rx,
440 data->sg,
441 host->sg_len,
442 DMA_DEV_TO_MEM,
443 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
444 if (!desc) {
445 dev_dbg(mmc_dev(host->mmc),
446 "failed to allocate DMA RX descriptor");
447 ret = -1;
448 goto out;
449 }
450 }
451
452 dmaengine_submit(desc);
453 dma_async_issue_pending(chan);
454
455out:
456 return ret;
457}
458
459static int mmc_davinci_start_dma_transfer(struct mmc_davinci_host *host,
460 struct mmc_data *data)
461{
462 int i;
463 int mask = rw_threshold - 1;
464 int ret = 0;
465
466 host->sg_len = dma_map_sg(mmc_dev(host->mmc), data->sg, data->sg_len,
467 mmc_get_dma_dir(data));
468
469 /* no individual DMA segment should need a partial FIFO */
470 for (i = 0; i < host->sg_len; i++) {
471 if (sg_dma_len(data->sg + i) & mask) {
472 dma_unmap_sg(mmc_dev(host->mmc),
473 data->sg, data->sg_len,
474 mmc_get_dma_dir(data));
475 return -1;
476 }
477 }
478
479 host->do_dma = 1;
480 ret = mmc_davinci_send_dma_request(host, data);
481
482 return ret;
483}
484
485static void davinci_release_dma_channels(struct mmc_davinci_host *host)
486{
487 if (!host->use_dma)
488 return;
489
490 dma_release_channel(host->dma_tx);
491 dma_release_channel(host->dma_rx);
492}
493
494static int davinci_acquire_dma_channels(struct mmc_davinci_host *host)
495{
496 host->dma_tx = dma_request_chan(mmc_dev(host->mmc), "tx");
497 if (IS_ERR(host->dma_tx)) {
498 dev_err(mmc_dev(host->mmc), "Can't get dma_tx channel\n");
499 return PTR_ERR(host->dma_tx);
500 }
501
502 host->dma_rx = dma_request_chan(mmc_dev(host->mmc), "rx");
503 if (IS_ERR(host->dma_rx)) {
504 dev_err(mmc_dev(host->mmc), "Can't get dma_rx channel\n");
505 dma_release_channel(host->dma_tx);
506 return PTR_ERR(host->dma_rx);
507 }
508
509 return 0;
510}
511
512/*----------------------------------------------------------------------*/
513
514static void
515mmc_davinci_prepare_data(struct mmc_davinci_host *host, struct mmc_request *req)
516{
517 int fifo_lev = (rw_threshold == 32) ? MMCFIFOCTL_FIFOLEV : 0;
518 int timeout;
519 struct mmc_data *data = req->data;
520
521 if (host->version == MMC_CTLR_VERSION_2)
522 fifo_lev = (rw_threshold == 64) ? MMCFIFOCTL_FIFOLEV : 0;
523
524 host->data = data;
525 if (data == NULL) {
526 host->data_dir = DAVINCI_MMC_DATADIR_NONE;
527 writel(0, host->base + DAVINCI_MMCBLEN);
528 writel(0, host->base + DAVINCI_MMCNBLK);
529 return;
530 }
531
532 dev_dbg(mmc_dev(host->mmc), "%s, %d blocks of %d bytes\n",
533 (data->flags & MMC_DATA_WRITE) ? "write" : "read",
534 data->blocks, data->blksz);
535 dev_dbg(mmc_dev(host->mmc), " DTO %d cycles + %d ns\n",
536 data->timeout_clks, data->timeout_ns);
537 timeout = data->timeout_clks +
538 (data->timeout_ns / host->ns_in_one_cycle);
539 if (timeout > 0xffff)
540 timeout = 0xffff;
541
542 writel(timeout, host->base + DAVINCI_MMCTOD);
543 writel(data->blocks, host->base + DAVINCI_MMCNBLK);
544 writel(data->blksz, host->base + DAVINCI_MMCBLEN);
545
546 /* Configure the FIFO */
547 if (data->flags & MMC_DATA_WRITE) {
548 host->data_dir = DAVINCI_MMC_DATADIR_WRITE;
549 writel(fifo_lev | MMCFIFOCTL_FIFODIR_WR | MMCFIFOCTL_FIFORST,
550 host->base + DAVINCI_MMCFIFOCTL);
551 writel(fifo_lev | MMCFIFOCTL_FIFODIR_WR,
552 host->base + DAVINCI_MMCFIFOCTL);
553 } else {
554 host->data_dir = DAVINCI_MMC_DATADIR_READ;
555 writel(fifo_lev | MMCFIFOCTL_FIFODIR_RD | MMCFIFOCTL_FIFORST,
556 host->base + DAVINCI_MMCFIFOCTL);
557 writel(fifo_lev | MMCFIFOCTL_FIFODIR_RD,
558 host->base + DAVINCI_MMCFIFOCTL);
559 }
560
561 host->buffer = NULL;
562 host->bytes_left = data->blocks * data->blksz;
563
564 /* For now we try to use DMA whenever we won't need partial FIFO
565 * reads or writes, either for the whole transfer (as tested here)
566 * or for any individual scatterlist segment (tested when we call
567 * start_dma_transfer).
568 *
569 * While we *could* change that, unusual block sizes are rarely
570 * used. The occasional fallback to PIO should't hurt.
571 */
572 if (host->use_dma && (host->bytes_left & (rw_threshold - 1)) == 0
573 && mmc_davinci_start_dma_transfer(host, data) == 0) {
574 /* zero this to ensure we take no PIO paths */
575 host->bytes_left = 0;
576 } else {
577 /* Revert to CPU Copy */
578 host->sg_len = data->sg_len;
579 host->sg = host->data->sg;
580 mmc_davinci_sg_to_buf(host);
581 }
582}
583
584static void mmc_davinci_request(struct mmc_host *mmc, struct mmc_request *req)
585{
586 struct mmc_davinci_host *host = mmc_priv(mmc);
587 unsigned long timeout = jiffies + msecs_to_jiffies(900);
588 u32 mmcst1 = 0;
589
590 /* Card may still be sending BUSY after a previous operation,
591 * typically some kind of write. If so, we can't proceed yet.
592 */
593 while (time_before(jiffies, timeout)) {
594 mmcst1 = readl(host->base + DAVINCI_MMCST1);
595 if (!(mmcst1 & MMCST1_BUSY))
596 break;
597 cpu_relax();
598 }
599 if (mmcst1 & MMCST1_BUSY) {
600 dev_err(mmc_dev(host->mmc), "still BUSY? bad ... \n");
601 req->cmd->error = -ETIMEDOUT;
602 mmc_request_done(mmc, req);
603 return;
604 }
605
606 host->do_dma = 0;
607 mmc_davinci_prepare_data(host, req);
608 mmc_davinci_start_command(host, req->cmd);
609}
610
611static unsigned int calculate_freq_for_card(struct mmc_davinci_host *host,
612 unsigned int mmc_req_freq)
613{
614 unsigned int mmc_freq = 0, mmc_pclk = 0, mmc_push_pull_divisor = 0;
615
616 mmc_pclk = host->mmc_input_clk;
617 if (mmc_req_freq && mmc_pclk > (2 * mmc_req_freq))
618 mmc_push_pull_divisor = ((unsigned int)mmc_pclk
619 / (2 * mmc_req_freq)) - 1;
620 else
621 mmc_push_pull_divisor = 0;
622
623 mmc_freq = (unsigned int)mmc_pclk
624 / (2 * (mmc_push_pull_divisor + 1));
625
626 if (mmc_freq > mmc_req_freq)
627 mmc_push_pull_divisor = mmc_push_pull_divisor + 1;
628 /* Convert ns to clock cycles */
629 if (mmc_req_freq <= 400000)
630 host->ns_in_one_cycle = (1000000) / (((mmc_pclk
631 / (2 * (mmc_push_pull_divisor + 1)))/1000));
632 else
633 host->ns_in_one_cycle = (1000000) / (((mmc_pclk
634 / (2 * (mmc_push_pull_divisor + 1)))/1000000));
635
636 return mmc_push_pull_divisor;
637}
638
639static void calculate_clk_divider(struct mmc_host *mmc, struct mmc_ios *ios)
640{
641 unsigned int open_drain_freq = 0, mmc_pclk = 0;
642 unsigned int mmc_push_pull_freq = 0;
643 struct mmc_davinci_host *host = mmc_priv(mmc);
644
645 if (ios->bus_mode == MMC_BUSMODE_OPENDRAIN) {
646 u32 temp;
647
648 /* Ignoring the init clock value passed for fixing the inter
649 * operability with different cards.
650 */
651 open_drain_freq = ((unsigned int)mmc_pclk
652 / (2 * MMCSD_INIT_CLOCK)) - 1;
653
654 if (open_drain_freq > 0xFF)
655 open_drain_freq = 0xFF;
656
657 temp = readl(host->base + DAVINCI_MMCCLK) & ~MMCCLK_CLKRT_MASK;
658 temp |= open_drain_freq;
659 writel(temp, host->base + DAVINCI_MMCCLK);
660
661 /* Convert ns to clock cycles */
662 host->ns_in_one_cycle = (1000000) / (MMCSD_INIT_CLOCK/1000);
663 } else {
664 u32 temp;
665 mmc_push_pull_freq = calculate_freq_for_card(host, ios->clock);
666
667 if (mmc_push_pull_freq > 0xFF)
668 mmc_push_pull_freq = 0xFF;
669
670 temp = readl(host->base + DAVINCI_MMCCLK) & ~MMCCLK_CLKEN;
671 writel(temp, host->base + DAVINCI_MMCCLK);
672
673 udelay(10);
674
675 temp = readl(host->base + DAVINCI_MMCCLK) & ~MMCCLK_CLKRT_MASK;
676 temp |= mmc_push_pull_freq;
677 writel(temp, host->base + DAVINCI_MMCCLK);
678
679 writel(temp | MMCCLK_CLKEN, host->base + DAVINCI_MMCCLK);
680
681 udelay(10);
682 }
683}
684
685static void mmc_davinci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
686{
687 struct mmc_davinci_host *host = mmc_priv(mmc);
688 struct platform_device *pdev = to_platform_device(mmc->parent);
689 struct davinci_mmc_config *config = pdev->dev.platform_data;
690
691 dev_dbg(mmc_dev(host->mmc),
692 "clock %dHz busmode %d powermode %d Vdd %04x\n",
693 ios->clock, ios->bus_mode, ios->power_mode,
694 ios->vdd);
695
696 switch (ios->power_mode) {
697 case MMC_POWER_OFF:
698 if (config && config->set_power)
699 config->set_power(pdev->id, false);
700 break;
701 case MMC_POWER_UP:
702 if (config && config->set_power)
703 config->set_power(pdev->id, true);
704 break;
705 }
706
707 switch (ios->bus_width) {
708 case MMC_BUS_WIDTH_8:
709 dev_dbg(mmc_dev(host->mmc), "Enabling 8 bit mode\n");
710 writel((readl(host->base + DAVINCI_MMCCTL) &
711 ~MMCCTL_WIDTH_4_BIT) | MMCCTL_WIDTH_8_BIT,
712 host->base + DAVINCI_MMCCTL);
713 break;
714 case MMC_BUS_WIDTH_4:
715 dev_dbg(mmc_dev(host->mmc), "Enabling 4 bit mode\n");
716 if (host->version == MMC_CTLR_VERSION_2)
717 writel((readl(host->base + DAVINCI_MMCCTL) &
718 ~MMCCTL_WIDTH_8_BIT) | MMCCTL_WIDTH_4_BIT,
719 host->base + DAVINCI_MMCCTL);
720 else
721 writel(readl(host->base + DAVINCI_MMCCTL) |
722 MMCCTL_WIDTH_4_BIT,
723 host->base + DAVINCI_MMCCTL);
724 break;
725 case MMC_BUS_WIDTH_1:
726 dev_dbg(mmc_dev(host->mmc), "Enabling 1 bit mode\n");
727 if (host->version == MMC_CTLR_VERSION_2)
728 writel(readl(host->base + DAVINCI_MMCCTL) &
729 ~(MMCCTL_WIDTH_8_BIT | MMCCTL_WIDTH_4_BIT),
730 host->base + DAVINCI_MMCCTL);
731 else
732 writel(readl(host->base + DAVINCI_MMCCTL) &
733 ~MMCCTL_WIDTH_4_BIT,
734 host->base + DAVINCI_MMCCTL);
735 break;
736 }
737
738 calculate_clk_divider(mmc, ios);
739
740 host->bus_mode = ios->bus_mode;
741 if (ios->power_mode == MMC_POWER_UP) {
742 unsigned long timeout = jiffies + msecs_to_jiffies(50);
743 bool lose = true;
744
745 /* Send clock cycles, poll completion */
746 writel(0, host->base + DAVINCI_MMCARGHL);
747 writel(MMCCMD_INITCK, host->base + DAVINCI_MMCCMD);
748 while (time_before(jiffies, timeout)) {
749 u32 tmp = readl(host->base + DAVINCI_MMCST0);
750
751 if (tmp & MMCST0_RSPDNE) {
752 lose = false;
753 break;
754 }
755 cpu_relax();
756 }
757 if (lose)
758 dev_warn(mmc_dev(host->mmc), "powerup timeout\n");
759 }
760
761 /* FIXME on power OFF, reset things ... */
762}
763
764static void
765mmc_davinci_xfer_done(struct mmc_davinci_host *host, struct mmc_data *data)
766{
767 host->data = NULL;
768
769 if (host->mmc->caps & MMC_CAP_SDIO_IRQ) {
770 /*
771 * SDIO Interrupt Detection work-around as suggested by
772 * Davinci Errata (TMS320DM355 Silicon Revision 1.1 Errata
773 * 2.1.6): Signal SDIO interrupt only if it is enabled by core
774 */
775 if (host->sdio_int && !(readl(host->base + DAVINCI_SDIOST0) &
776 SDIOST0_DAT1_HI)) {
777 writel(SDIOIST_IOINT, host->base + DAVINCI_SDIOIST);
778 mmc_signal_sdio_irq(host->mmc);
779 }
780 }
781
782 if (host->do_dma) {
783 davinci_abort_dma(host);
784
785 dma_unmap_sg(mmc_dev(host->mmc), data->sg, data->sg_len,
786 mmc_get_dma_dir(data));
787 host->do_dma = false;
788 }
789 host->data_dir = DAVINCI_MMC_DATADIR_NONE;
790
791 if (!data->stop || (host->cmd && host->cmd->error)) {
792 mmc_request_done(host->mmc, data->mrq);
793 writel(0, host->base + DAVINCI_MMCIM);
794 host->active_request = false;
795 } else
796 mmc_davinci_start_command(host, data->stop);
797}
798
799static void mmc_davinci_cmd_done(struct mmc_davinci_host *host,
800 struct mmc_command *cmd)
801{
802 host->cmd = NULL;
803
804 if (cmd->flags & MMC_RSP_PRESENT) {
805 if (cmd->flags & MMC_RSP_136) {
806 /* response type 2 */
807 cmd->resp[3] = readl(host->base + DAVINCI_MMCRSP01);
808 cmd->resp[2] = readl(host->base + DAVINCI_MMCRSP23);
809 cmd->resp[1] = readl(host->base + DAVINCI_MMCRSP45);
810 cmd->resp[0] = readl(host->base + DAVINCI_MMCRSP67);
811 } else {
812 /* response types 1, 1b, 3, 4, 5, 6 */
813 cmd->resp[0] = readl(host->base + DAVINCI_MMCRSP67);
814 }
815 }
816
817 if (host->data == NULL || cmd->error) {
818 if (cmd->error == -ETIMEDOUT)
819 cmd->mrq->cmd->retries = 0;
820 mmc_request_done(host->mmc, cmd->mrq);
821 writel(0, host->base + DAVINCI_MMCIM);
822 host->active_request = false;
823 }
824}
825
826static inline void mmc_davinci_reset_ctrl(struct mmc_davinci_host *host,
827 int val)
828{
829 u32 temp;
830
831 temp = readl(host->base + DAVINCI_MMCCTL);
832 if (val) /* reset */
833 temp |= MMCCTL_CMDRST | MMCCTL_DATRST;
834 else /* enable */
835 temp &= ~(MMCCTL_CMDRST | MMCCTL_DATRST);
836
837 writel(temp, host->base + DAVINCI_MMCCTL);
838 udelay(10);
839}
840
841static void
842davinci_abort_data(struct mmc_davinci_host *host, struct mmc_data *data)
843{
844 mmc_davinci_reset_ctrl(host, 1);
845 mmc_davinci_reset_ctrl(host, 0);
846}
847
848static irqreturn_t mmc_davinci_sdio_irq(int irq, void *dev_id)
849{
850 struct mmc_davinci_host *host = dev_id;
851 unsigned int status;
852
853 status = readl(host->base + DAVINCI_SDIOIST);
854 if (status & SDIOIST_IOINT) {
855 dev_dbg(mmc_dev(host->mmc),
856 "SDIO interrupt status %x\n", status);
857 writel(status | SDIOIST_IOINT, host->base + DAVINCI_SDIOIST);
858 mmc_signal_sdio_irq(host->mmc);
859 }
860 return IRQ_HANDLED;
861}
862
863static irqreturn_t mmc_davinci_irq(int irq, void *dev_id)
864{
865 struct mmc_davinci_host *host = (struct mmc_davinci_host *)dev_id;
866 unsigned int status, qstatus;
867 int end_command = 0;
868 int end_transfer = 0;
869 struct mmc_data *data = host->data;
870
871 if (host->cmd == NULL && host->data == NULL) {
872 status = readl(host->base + DAVINCI_MMCST0);
873 dev_dbg(mmc_dev(host->mmc),
874 "Spurious interrupt 0x%04x\n", status);
875 /* Disable the interrupt from mmcsd */
876 writel(0, host->base + DAVINCI_MMCIM);
877 return IRQ_NONE;
878 }
879
880 status = readl(host->base + DAVINCI_MMCST0);
881 qstatus = status;
882
883 /* handle FIFO first when using PIO for data.
884 * bytes_left will decrease to zero as I/O progress and status will
885 * read zero over iteration because this controller status
886 * register(MMCST0) reports any status only once and it is cleared
887 * by read. So, it is not unbouned loop even in the case of
888 * non-dma.
889 */
890 if (host->bytes_left && (status & (MMCST0_DXRDY | MMCST0_DRRDY))) {
891 unsigned long im_val;
892
893 /*
894 * If interrupts fire during the following loop, they will be
895 * handled by the handler, but the PIC will still buffer these.
896 * As a result, the handler will be called again to serve these
897 * needlessly. In order to avoid these spurious interrupts,
898 * keep interrupts masked during the loop.
899 */
900 im_val = readl(host->base + DAVINCI_MMCIM);
901 writel(0, host->base + DAVINCI_MMCIM);
902
903 do {
904 davinci_fifo_data_trans(host, rw_threshold);
905 status = readl(host->base + DAVINCI_MMCST0);
906 qstatus |= status;
907 } while (host->bytes_left &&
908 (status & (MMCST0_DXRDY | MMCST0_DRRDY)));
909
910 /*
911 * If an interrupt is pending, it is assumed it will fire when
912 * it is unmasked. This assumption is also taken when the MMCIM
913 * is first set. Otherwise, writing to MMCIM after reading the
914 * status is race-prone.
915 */
916 writel(im_val, host->base + DAVINCI_MMCIM);
917 }
918
919 if (qstatus & MMCST0_DATDNE) {
920 /* All blocks sent/received, and CRC checks passed */
921 if (data != NULL) {
922 if ((host->do_dma == 0) && (host->bytes_left > 0)) {
923 /* if datasize < rw_threshold
924 * no RX ints are generated
925 */
926 davinci_fifo_data_trans(host, host->bytes_left);
927 }
928 end_transfer = 1;
929 data->bytes_xfered = data->blocks * data->blksz;
930 } else {
931 dev_err(mmc_dev(host->mmc),
932 "DATDNE with no host->data\n");
933 }
934 }
935
936 if (qstatus & MMCST0_TOUTRD) {
937 /* Read data timeout */
938 data->error = -ETIMEDOUT;
939 end_transfer = 1;
940
941 dev_dbg(mmc_dev(host->mmc),
942 "read data timeout, status %x\n",
943 qstatus);
944
945 davinci_abort_data(host, data);
946 }
947
948 if (qstatus & (MMCST0_CRCWR | MMCST0_CRCRD)) {
949 /* Data CRC error */
950 data->error = -EILSEQ;
951 end_transfer = 1;
952
953 /* NOTE: this controller uses CRCWR to report both CRC
954 * errors and timeouts (on writes). MMCDRSP values are
955 * only weakly documented, but 0x9f was clearly a timeout
956 * case and the two three-bit patterns in various SD specs
957 * (101, 010) aren't part of it ...
958 */
959 if (qstatus & MMCST0_CRCWR) {
960 u32 temp = readb(host->base + DAVINCI_MMCDRSP);
961
962 if (temp == 0x9f)
963 data->error = -ETIMEDOUT;
964 }
965 dev_dbg(mmc_dev(host->mmc), "data %s %s error\n",
966 (qstatus & MMCST0_CRCWR) ? "write" : "read",
967 (data->error == -ETIMEDOUT) ? "timeout" : "CRC");
968
969 davinci_abort_data(host, data);
970 }
971
972 if (qstatus & MMCST0_TOUTRS) {
973 /* Command timeout */
974 if (host->cmd) {
975 dev_dbg(mmc_dev(host->mmc),
976 "CMD%d timeout, status %x\n",
977 host->cmd->opcode, qstatus);
978 host->cmd->error = -ETIMEDOUT;
979 if (data) {
980 end_transfer = 1;
981 davinci_abort_data(host, data);
982 } else
983 end_command = 1;
984 }
985 }
986
987 if (qstatus & MMCST0_CRCRS) {
988 /* Command CRC error */
989 dev_dbg(mmc_dev(host->mmc), "Command CRC error\n");
990 if (host->cmd) {
991 host->cmd->error = -EILSEQ;
992 end_command = 1;
993 }
994 }
995
996 if (qstatus & MMCST0_RSPDNE) {
997 /* End of command phase */
998 end_command = host->cmd ? 1 : 0;
999 }
1000
1001 if (end_command)
1002 mmc_davinci_cmd_done(host, host->cmd);
1003 if (end_transfer)
1004 mmc_davinci_xfer_done(host, data);
1005 return IRQ_HANDLED;
1006}
1007
1008static int mmc_davinci_get_cd(struct mmc_host *mmc)
1009{
1010 struct platform_device *pdev = to_platform_device(mmc->parent);
1011 struct davinci_mmc_config *config = pdev->dev.platform_data;
1012
1013 if (config && config->get_cd)
1014 return config->get_cd(pdev->id);
1015
1016 return mmc_gpio_get_cd(mmc);
1017}
1018
1019static int mmc_davinci_get_ro(struct mmc_host *mmc)
1020{
1021 struct platform_device *pdev = to_platform_device(mmc->parent);
1022 struct davinci_mmc_config *config = pdev->dev.platform_data;
1023
1024 if (config && config->get_ro)
1025 return config->get_ro(pdev->id);
1026
1027 return mmc_gpio_get_ro(mmc);
1028}
1029
1030static void mmc_davinci_enable_sdio_irq(struct mmc_host *mmc, int enable)
1031{
1032 struct mmc_davinci_host *host = mmc_priv(mmc);
1033
1034 if (enable) {
1035 if (!(readl(host->base + DAVINCI_SDIOST0) & SDIOST0_DAT1_HI)) {
1036 writel(SDIOIST_IOINT, host->base + DAVINCI_SDIOIST);
1037 mmc_signal_sdio_irq(host->mmc);
1038 } else {
1039 host->sdio_int = true;
1040 writel(readl(host->base + DAVINCI_SDIOIEN) |
1041 SDIOIEN_IOINTEN, host->base + DAVINCI_SDIOIEN);
1042 }
1043 } else {
1044 host->sdio_int = false;
1045 writel(readl(host->base + DAVINCI_SDIOIEN) & ~SDIOIEN_IOINTEN,
1046 host->base + DAVINCI_SDIOIEN);
1047 }
1048}
1049
1050static const struct mmc_host_ops mmc_davinci_ops = {
1051 .request = mmc_davinci_request,
1052 .set_ios = mmc_davinci_set_ios,
1053 .get_cd = mmc_davinci_get_cd,
1054 .get_ro = mmc_davinci_get_ro,
1055 .enable_sdio_irq = mmc_davinci_enable_sdio_irq,
1056};
1057
1058/*----------------------------------------------------------------------*/
1059
1060#ifdef CONFIG_CPU_FREQ
1061static int mmc_davinci_cpufreq_transition(struct notifier_block *nb,
1062 unsigned long val, void *data)
1063{
1064 struct mmc_davinci_host *host;
1065 unsigned int mmc_pclk;
1066 struct mmc_host *mmc;
1067 unsigned long flags;
1068
1069 host = container_of(nb, struct mmc_davinci_host, freq_transition);
1070 mmc = host->mmc;
1071 mmc_pclk = clk_get_rate(host->clk);
1072
1073 if (val == CPUFREQ_POSTCHANGE) {
1074 spin_lock_irqsave(&mmc->lock, flags);
1075 host->mmc_input_clk = mmc_pclk;
1076 calculate_clk_divider(mmc, &mmc->ios);
1077 spin_unlock_irqrestore(&mmc->lock, flags);
1078 }
1079
1080 return 0;
1081}
1082
1083static inline int mmc_davinci_cpufreq_register(struct mmc_davinci_host *host)
1084{
1085 host->freq_transition.notifier_call = mmc_davinci_cpufreq_transition;
1086
1087 return cpufreq_register_notifier(&host->freq_transition,
1088 CPUFREQ_TRANSITION_NOTIFIER);
1089}
1090
1091static inline void mmc_davinci_cpufreq_deregister(struct mmc_davinci_host *host)
1092{
1093 cpufreq_unregister_notifier(&host->freq_transition,
1094 CPUFREQ_TRANSITION_NOTIFIER);
1095}
1096#else
1097static inline int mmc_davinci_cpufreq_register(struct mmc_davinci_host *host)
1098{
1099 return 0;
1100}
1101
1102static inline void mmc_davinci_cpufreq_deregister(struct mmc_davinci_host *host)
1103{
1104}
1105#endif
1106static void init_mmcsd_host(struct mmc_davinci_host *host)
1107{
1108
1109 mmc_davinci_reset_ctrl(host, 1);
1110
1111 writel(0, host->base + DAVINCI_MMCCLK);
1112 writel(MMCCLK_CLKEN, host->base + DAVINCI_MMCCLK);
1113
1114 writel(0x1FFF, host->base + DAVINCI_MMCTOR);
1115 writel(0xFFFF, host->base + DAVINCI_MMCTOD);
1116
1117 mmc_davinci_reset_ctrl(host, 0);
1118}
1119
1120static const struct platform_device_id davinci_mmc_devtype[] = {
1121 {
1122 .name = "dm6441-mmc",
1123 .driver_data = MMC_CTLR_VERSION_1,
1124 }, {
1125 .name = "da830-mmc",
1126 .driver_data = MMC_CTLR_VERSION_2,
1127 },
1128 {},
1129};
1130MODULE_DEVICE_TABLE(platform, davinci_mmc_devtype);
1131
1132static const struct of_device_id davinci_mmc_dt_ids[] = {
1133 {
1134 .compatible = "ti,dm6441-mmc",
1135 .data = &davinci_mmc_devtype[MMC_CTLR_VERSION_1],
1136 },
1137 {
1138 .compatible = "ti,da830-mmc",
1139 .data = &davinci_mmc_devtype[MMC_CTLR_VERSION_2],
1140 },
1141 {},
1142};
1143MODULE_DEVICE_TABLE(of, davinci_mmc_dt_ids);
1144
1145static int mmc_davinci_parse_pdata(struct mmc_host *mmc)
1146{
1147 struct platform_device *pdev = to_platform_device(mmc->parent);
1148 struct davinci_mmc_config *pdata = pdev->dev.platform_data;
1149 struct mmc_davinci_host *host;
1150 int ret;
1151
1152 if (!pdata)
1153 return -EINVAL;
1154
1155 host = mmc_priv(mmc);
1156 if (!host)
1157 return -EINVAL;
1158
1159 if (pdata && pdata->nr_sg)
1160 host->nr_sg = pdata->nr_sg - 1;
1161
1162 if (pdata && (pdata->wires == 4 || pdata->wires == 0))
1163 mmc->caps |= MMC_CAP_4_BIT_DATA;
1164
1165 if (pdata && (pdata->wires == 8))
1166 mmc->caps |= (MMC_CAP_4_BIT_DATA | MMC_CAP_8_BIT_DATA);
1167
1168 mmc->f_min = 312500;
1169 mmc->f_max = 25000000;
1170 if (pdata && pdata->max_freq)
1171 mmc->f_max = pdata->max_freq;
1172 if (pdata && pdata->caps)
1173 mmc->caps |= pdata->caps;
1174
1175 /* Register a cd gpio, if there is not one, enable polling */
1176 ret = mmc_gpiod_request_cd(mmc, "cd", 0, false, 0);
1177 if (ret == -EPROBE_DEFER)
1178 return ret;
1179 else if (ret)
1180 mmc->caps |= MMC_CAP_NEEDS_POLL;
1181
1182 ret = mmc_gpiod_request_ro(mmc, "wp", 0, 0);
1183 if (ret == -EPROBE_DEFER)
1184 return ret;
1185
1186 return 0;
1187}
1188
1189static int davinci_mmcsd_probe(struct platform_device *pdev)
1190{
1191 struct mmc_davinci_host *host = NULL;
1192 struct mmc_host *mmc = NULL;
1193 struct resource *r, *mem = NULL;
1194 int ret, irq;
1195 size_t mem_size;
1196 const struct platform_device_id *id_entry;
1197
1198 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1199 if (!r)
1200 return -ENODEV;
1201 irq = platform_get_irq(pdev, 0);
1202 if (irq < 0)
1203 return irq;
1204
1205 mem_size = resource_size(r);
1206 mem = devm_request_mem_region(&pdev->dev, r->start, mem_size,
1207 pdev->name);
1208 if (!mem)
1209 return -EBUSY;
1210
1211 mmc = mmc_alloc_host(sizeof(struct mmc_davinci_host), &pdev->dev);
1212 if (!mmc)
1213 return -ENOMEM;
1214
1215 host = mmc_priv(mmc);
1216 host->mmc = mmc; /* Important */
1217
1218 host->mem_res = mem;
1219 host->base = devm_ioremap(&pdev->dev, mem->start, mem_size);
1220 if (!host->base) {
1221 ret = -ENOMEM;
1222 goto ioremap_fail;
1223 }
1224
1225 host->clk = devm_clk_get(&pdev->dev, NULL);
1226 if (IS_ERR(host->clk)) {
1227 ret = PTR_ERR(host->clk);
1228 goto clk_get_fail;
1229 }
1230 ret = clk_prepare_enable(host->clk);
1231 if (ret)
1232 goto clk_prepare_enable_fail;
1233
1234 host->mmc_input_clk = clk_get_rate(host->clk);
1235
1236 pdev->id_entry = of_device_get_match_data(&pdev->dev);
1237 if (pdev->id_entry) {
1238 ret = mmc_of_parse(mmc);
1239 if (ret) {
1240 dev_err_probe(&pdev->dev, ret,
1241 "could not parse of data\n");
1242 goto parse_fail;
1243 }
1244 } else {
1245 ret = mmc_davinci_parse_pdata(mmc);
1246 if (ret) {
1247 dev_err(&pdev->dev,
1248 "could not parse platform data: %d\n", ret);
1249 goto parse_fail;
1250 } }
1251
1252 if (host->nr_sg > MAX_NR_SG || !host->nr_sg)
1253 host->nr_sg = MAX_NR_SG;
1254
1255 init_mmcsd_host(host);
1256
1257 host->use_dma = use_dma;
1258 host->mmc_irq = irq;
1259 host->sdio_irq = platform_get_irq_optional(pdev, 1);
1260
1261 if (host->use_dma) {
1262 ret = davinci_acquire_dma_channels(host);
1263 if (ret == -EPROBE_DEFER)
1264 goto dma_probe_defer;
1265 else if (ret)
1266 host->use_dma = 0;
1267 }
1268
1269 mmc->caps |= MMC_CAP_WAIT_WHILE_BUSY;
1270
1271 id_entry = platform_get_device_id(pdev);
1272 if (id_entry)
1273 host->version = id_entry->driver_data;
1274
1275 mmc->ops = &mmc_davinci_ops;
1276 mmc->ocr_avail = MMC_VDD_32_33 | MMC_VDD_33_34;
1277
1278 /* With no iommu coalescing pages, each phys_seg is a hw_seg.
1279 * Each hw_seg uses one EDMA parameter RAM slot, always one
1280 * channel and then usually some linked slots.
1281 */
1282 mmc->max_segs = MAX_NR_SG;
1283
1284 /* EDMA limit per hw segment (one or two MBytes) */
1285 mmc->max_seg_size = MAX_CCNT * rw_threshold;
1286
1287 /* MMC/SD controller limits for multiblock requests */
1288 mmc->max_blk_size = 4095; /* BLEN is 12 bits */
1289 mmc->max_blk_count = 65535; /* NBLK is 16 bits */
1290 mmc->max_req_size = mmc->max_blk_size * mmc->max_blk_count;
1291
1292 dev_dbg(mmc_dev(host->mmc), "max_segs=%d\n", mmc->max_segs);
1293 dev_dbg(mmc_dev(host->mmc), "max_blk_size=%d\n", mmc->max_blk_size);
1294 dev_dbg(mmc_dev(host->mmc), "max_req_size=%d\n", mmc->max_req_size);
1295 dev_dbg(mmc_dev(host->mmc), "max_seg_size=%d\n", mmc->max_seg_size);
1296
1297 platform_set_drvdata(pdev, host);
1298
1299 ret = mmc_davinci_cpufreq_register(host);
1300 if (ret) {
1301 dev_err(&pdev->dev, "failed to register cpufreq\n");
1302 goto cpu_freq_fail;
1303 }
1304
1305 ret = mmc_add_host(mmc);
1306 if (ret < 0)
1307 goto mmc_add_host_fail;
1308
1309 ret = devm_request_irq(&pdev->dev, irq, mmc_davinci_irq, 0,
1310 mmc_hostname(mmc), host);
1311 if (ret)
1312 goto request_irq_fail;
1313
1314 if (host->sdio_irq >= 0) {
1315 ret = devm_request_irq(&pdev->dev, host->sdio_irq,
1316 mmc_davinci_sdio_irq, 0,
1317 mmc_hostname(mmc), host);
1318 if (!ret)
1319 mmc->caps |= MMC_CAP_SDIO_IRQ;
1320 }
1321
1322 rename_region(mem, mmc_hostname(mmc));
1323
1324 dev_info(mmc_dev(host->mmc), "Using %s, %d-bit mode\n",
1325 host->use_dma ? "DMA" : "PIO",
1326 (mmc->caps & MMC_CAP_4_BIT_DATA) ? 4 : 1);
1327
1328 return 0;
1329
1330request_irq_fail:
1331 mmc_remove_host(mmc);
1332mmc_add_host_fail:
1333 mmc_davinci_cpufreq_deregister(host);
1334cpu_freq_fail:
1335 davinci_release_dma_channels(host);
1336parse_fail:
1337dma_probe_defer:
1338 clk_disable_unprepare(host->clk);
1339clk_prepare_enable_fail:
1340clk_get_fail:
1341ioremap_fail:
1342 mmc_free_host(mmc);
1343
1344 return ret;
1345}
1346
1347static void __exit davinci_mmcsd_remove(struct platform_device *pdev)
1348{
1349 struct mmc_davinci_host *host = platform_get_drvdata(pdev);
1350
1351 mmc_remove_host(host->mmc);
1352 mmc_davinci_cpufreq_deregister(host);
1353 davinci_release_dma_channels(host);
1354 clk_disable_unprepare(host->clk);
1355 mmc_free_host(host->mmc);
1356}
1357
1358#ifdef CONFIG_PM
1359static int davinci_mmcsd_suspend(struct device *dev)
1360{
1361 struct mmc_davinci_host *host = dev_get_drvdata(dev);
1362
1363 writel(0, host->base + DAVINCI_MMCIM);
1364 mmc_davinci_reset_ctrl(host, 1);
1365 clk_disable(host->clk);
1366
1367 return 0;
1368}
1369
1370static int davinci_mmcsd_resume(struct device *dev)
1371{
1372 struct mmc_davinci_host *host = dev_get_drvdata(dev);
1373 int ret;
1374
1375 ret = clk_enable(host->clk);
1376 if (ret)
1377 return ret;
1378
1379 mmc_davinci_reset_ctrl(host, 0);
1380
1381 return 0;
1382}
1383
1384static const struct dev_pm_ops davinci_mmcsd_pm = {
1385 .suspend = davinci_mmcsd_suspend,
1386 .resume = davinci_mmcsd_resume,
1387};
1388
1389#define davinci_mmcsd_pm_ops (&davinci_mmcsd_pm)
1390#else
1391#define davinci_mmcsd_pm_ops NULL
1392#endif
1393
1394static struct platform_driver davinci_mmcsd_driver = {
1395 .driver = {
1396 .name = "davinci_mmc",
1397 .probe_type = PROBE_PREFER_ASYNCHRONOUS,
1398 .pm = davinci_mmcsd_pm_ops,
1399 .of_match_table = davinci_mmc_dt_ids,
1400 },
1401 .probe = davinci_mmcsd_probe,
1402 .remove_new = __exit_p(davinci_mmcsd_remove),
1403 .id_table = davinci_mmc_devtype,
1404};
1405
1406module_platform_driver(davinci_mmcsd_driver);
1407
1408MODULE_AUTHOR("Texas Instruments India");
1409MODULE_LICENSE("GPL");
1410MODULE_DESCRIPTION("MMC/SD driver for Davinci MMC controller");
1411MODULE_ALIAS("platform:davinci_mmc");
1412