Loading...
1/*
2 * linux/drivers/mmc/host/omap.c
3 *
4 * Copyright (C) 2004 Nokia Corporation
5 * Written by Tuukka Tikkanen and Juha Yrjölä<juha.yrjola@nokia.com>
6 * Misc hacks here and there by Tony Lindgren <tony@atomide.com>
7 * Other hacks (DMA, SD, etc) by David Brownell
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/moduleparam.h>
16#include <linux/init.h>
17#include <linux/ioport.h>
18#include <linux/platform_device.h>
19#include <linux/interrupt.h>
20#include <linux/dma-mapping.h>
21#include <linux/delay.h>
22#include <linux/spinlock.h>
23#include <linux/timer.h>
24#include <linux/mmc/host.h>
25#include <linux/mmc/card.h>
26#include <linux/clk.h>
27#include <linux/scatterlist.h>
28#include <linux/i2c/tps65010.h>
29#include <linux/slab.h>
30
31#include <asm/io.h>
32#include <asm/irq.h>
33
34#include <plat/board.h>
35#include <plat/mmc.h>
36#include <mach/gpio.h>
37#include <plat/dma.h>
38#include <plat/mux.h>
39#include <plat/fpga.h>
40
41#define OMAP_MMC_REG_CMD 0x00
42#define OMAP_MMC_REG_ARGL 0x01
43#define OMAP_MMC_REG_ARGH 0x02
44#define OMAP_MMC_REG_CON 0x03
45#define OMAP_MMC_REG_STAT 0x04
46#define OMAP_MMC_REG_IE 0x05
47#define OMAP_MMC_REG_CTO 0x06
48#define OMAP_MMC_REG_DTO 0x07
49#define OMAP_MMC_REG_DATA 0x08
50#define OMAP_MMC_REG_BLEN 0x09
51#define OMAP_MMC_REG_NBLK 0x0a
52#define OMAP_MMC_REG_BUF 0x0b
53#define OMAP_MMC_REG_SDIO 0x0d
54#define OMAP_MMC_REG_REV 0x0f
55#define OMAP_MMC_REG_RSP0 0x10
56#define OMAP_MMC_REG_RSP1 0x11
57#define OMAP_MMC_REG_RSP2 0x12
58#define OMAP_MMC_REG_RSP3 0x13
59#define OMAP_MMC_REG_RSP4 0x14
60#define OMAP_MMC_REG_RSP5 0x15
61#define OMAP_MMC_REG_RSP6 0x16
62#define OMAP_MMC_REG_RSP7 0x17
63#define OMAP_MMC_REG_IOSR 0x18
64#define OMAP_MMC_REG_SYSC 0x19
65#define OMAP_MMC_REG_SYSS 0x1a
66
67#define OMAP_MMC_STAT_CARD_ERR (1 << 14)
68#define OMAP_MMC_STAT_CARD_IRQ (1 << 13)
69#define OMAP_MMC_STAT_OCR_BUSY (1 << 12)
70#define OMAP_MMC_STAT_A_EMPTY (1 << 11)
71#define OMAP_MMC_STAT_A_FULL (1 << 10)
72#define OMAP_MMC_STAT_CMD_CRC (1 << 8)
73#define OMAP_MMC_STAT_CMD_TOUT (1 << 7)
74#define OMAP_MMC_STAT_DATA_CRC (1 << 6)
75#define OMAP_MMC_STAT_DATA_TOUT (1 << 5)
76#define OMAP_MMC_STAT_END_BUSY (1 << 4)
77#define OMAP_MMC_STAT_END_OF_DATA (1 << 3)
78#define OMAP_MMC_STAT_CARD_BUSY (1 << 2)
79#define OMAP_MMC_STAT_END_OF_CMD (1 << 0)
80
81#define OMAP_MMC_REG(host, reg) (OMAP_MMC_REG_##reg << (host)->reg_shift)
82#define OMAP_MMC_READ(host, reg) __raw_readw((host)->virt_base + OMAP_MMC_REG(host, reg))
83#define OMAP_MMC_WRITE(host, reg, val) __raw_writew((val), (host)->virt_base + OMAP_MMC_REG(host, reg))
84
85/*
86 * Command types
87 */
88#define OMAP_MMC_CMDTYPE_BC 0
89#define OMAP_MMC_CMDTYPE_BCR 1
90#define OMAP_MMC_CMDTYPE_AC 2
91#define OMAP_MMC_CMDTYPE_ADTC 3
92
93
94#define DRIVER_NAME "mmci-omap"
95
96/* Specifies how often in millisecs to poll for card status changes
97 * when the cover switch is open */
98#define OMAP_MMC_COVER_POLL_DELAY 500
99
100struct mmc_omap_host;
101
102struct mmc_omap_slot {
103 int id;
104 unsigned int vdd;
105 u16 saved_con;
106 u16 bus_mode;
107 unsigned int fclk_freq;
108 unsigned powered:1;
109
110 struct tasklet_struct cover_tasklet;
111 struct timer_list cover_timer;
112 unsigned cover_open;
113
114 struct mmc_request *mrq;
115 struct mmc_omap_host *host;
116 struct mmc_host *mmc;
117 struct omap_mmc_slot_data *pdata;
118};
119
120struct mmc_omap_host {
121 int initialized;
122 int suspended;
123 struct mmc_request * mrq;
124 struct mmc_command * cmd;
125 struct mmc_data * data;
126 struct mmc_host * mmc;
127 struct device * dev;
128 unsigned char id; /* 16xx chips have 2 MMC blocks */
129 struct clk * iclk;
130 struct clk * fclk;
131 struct resource *mem_res;
132 void __iomem *virt_base;
133 unsigned int phys_base;
134 int irq;
135 unsigned char bus_mode;
136 unsigned char hw_bus_mode;
137 unsigned int reg_shift;
138
139 struct work_struct cmd_abort_work;
140 unsigned abort:1;
141 struct timer_list cmd_abort_timer;
142
143 struct work_struct slot_release_work;
144 struct mmc_omap_slot *next_slot;
145 struct work_struct send_stop_work;
146 struct mmc_data *stop_data;
147
148 unsigned int sg_len;
149 int sg_idx;
150 u16 * buffer;
151 u32 buffer_bytes_left;
152 u32 total_bytes_left;
153
154 unsigned use_dma:1;
155 unsigned brs_received:1, dma_done:1;
156 unsigned dma_is_read:1;
157 unsigned dma_in_use:1;
158 int dma_ch;
159 spinlock_t dma_lock;
160 struct timer_list dma_timer;
161 unsigned dma_len;
162
163 struct mmc_omap_slot *slots[OMAP_MMC_MAX_SLOTS];
164 struct mmc_omap_slot *current_slot;
165 spinlock_t slot_lock;
166 wait_queue_head_t slot_wq;
167 int nr_slots;
168
169 struct timer_list clk_timer;
170 spinlock_t clk_lock; /* for changing enabled state */
171 unsigned int fclk_enabled:1;
172
173 struct omap_mmc_platform_data *pdata;
174};
175
176static struct workqueue_struct *mmc_omap_wq;
177
178static void mmc_omap_fclk_offdelay(struct mmc_omap_slot *slot)
179{
180 unsigned long tick_ns;
181
182 if (slot != NULL && slot->host->fclk_enabled && slot->fclk_freq > 0) {
183 tick_ns = (1000000000 + slot->fclk_freq - 1) / slot->fclk_freq;
184 ndelay(8 * tick_ns);
185 }
186}
187
188static void mmc_omap_fclk_enable(struct mmc_omap_host *host, unsigned int enable)
189{
190 unsigned long flags;
191
192 spin_lock_irqsave(&host->clk_lock, flags);
193 if (host->fclk_enabled != enable) {
194 host->fclk_enabled = enable;
195 if (enable)
196 clk_enable(host->fclk);
197 else
198 clk_disable(host->fclk);
199 }
200 spin_unlock_irqrestore(&host->clk_lock, flags);
201}
202
203static void mmc_omap_select_slot(struct mmc_omap_slot *slot, int claimed)
204{
205 struct mmc_omap_host *host = slot->host;
206 unsigned long flags;
207
208 if (claimed)
209 goto no_claim;
210 spin_lock_irqsave(&host->slot_lock, flags);
211 while (host->mmc != NULL) {
212 spin_unlock_irqrestore(&host->slot_lock, flags);
213 wait_event(host->slot_wq, host->mmc == NULL);
214 spin_lock_irqsave(&host->slot_lock, flags);
215 }
216 host->mmc = slot->mmc;
217 spin_unlock_irqrestore(&host->slot_lock, flags);
218no_claim:
219 del_timer(&host->clk_timer);
220 if (host->current_slot != slot || !claimed)
221 mmc_omap_fclk_offdelay(host->current_slot);
222
223 if (host->current_slot != slot) {
224 OMAP_MMC_WRITE(host, CON, slot->saved_con & 0xFC00);
225 if (host->pdata->switch_slot != NULL)
226 host->pdata->switch_slot(mmc_dev(slot->mmc), slot->id);
227 host->current_slot = slot;
228 }
229
230 if (claimed) {
231 mmc_omap_fclk_enable(host, 1);
232
233 /* Doing the dummy read here seems to work around some bug
234 * at least in OMAP24xx silicon where the command would not
235 * start after writing the CMD register. Sigh. */
236 OMAP_MMC_READ(host, CON);
237
238 OMAP_MMC_WRITE(host, CON, slot->saved_con);
239 } else
240 mmc_omap_fclk_enable(host, 0);
241}
242
243static void mmc_omap_start_request(struct mmc_omap_host *host,
244 struct mmc_request *req);
245
246static void mmc_omap_slot_release_work(struct work_struct *work)
247{
248 struct mmc_omap_host *host = container_of(work, struct mmc_omap_host,
249 slot_release_work);
250 struct mmc_omap_slot *next_slot = host->next_slot;
251 struct mmc_request *rq;
252
253 host->next_slot = NULL;
254 mmc_omap_select_slot(next_slot, 1);
255
256 rq = next_slot->mrq;
257 next_slot->mrq = NULL;
258 mmc_omap_start_request(host, rq);
259}
260
261static void mmc_omap_release_slot(struct mmc_omap_slot *slot, int clk_enabled)
262{
263 struct mmc_omap_host *host = slot->host;
264 unsigned long flags;
265 int i;
266
267 BUG_ON(slot == NULL || host->mmc == NULL);
268
269 if (clk_enabled)
270 /* Keeps clock running for at least 8 cycles on valid freq */
271 mod_timer(&host->clk_timer, jiffies + HZ/10);
272 else {
273 del_timer(&host->clk_timer);
274 mmc_omap_fclk_offdelay(slot);
275 mmc_omap_fclk_enable(host, 0);
276 }
277
278 spin_lock_irqsave(&host->slot_lock, flags);
279 /* Check for any pending requests */
280 for (i = 0; i < host->nr_slots; i++) {
281 struct mmc_omap_slot *new_slot;
282
283 if (host->slots[i] == NULL || host->slots[i]->mrq == NULL)
284 continue;
285
286 BUG_ON(host->next_slot != NULL);
287 new_slot = host->slots[i];
288 /* The current slot should not have a request in queue */
289 BUG_ON(new_slot == host->current_slot);
290
291 host->next_slot = new_slot;
292 host->mmc = new_slot->mmc;
293 spin_unlock_irqrestore(&host->slot_lock, flags);
294 queue_work(mmc_omap_wq, &host->slot_release_work);
295 return;
296 }
297
298 host->mmc = NULL;
299 wake_up(&host->slot_wq);
300 spin_unlock_irqrestore(&host->slot_lock, flags);
301}
302
303static inline
304int mmc_omap_cover_is_open(struct mmc_omap_slot *slot)
305{
306 if (slot->pdata->get_cover_state)
307 return slot->pdata->get_cover_state(mmc_dev(slot->mmc),
308 slot->id);
309 return 0;
310}
311
312static ssize_t
313mmc_omap_show_cover_switch(struct device *dev, struct device_attribute *attr,
314 char *buf)
315{
316 struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
317 struct mmc_omap_slot *slot = mmc_priv(mmc);
318
319 return sprintf(buf, "%s\n", mmc_omap_cover_is_open(slot) ? "open" :
320 "closed");
321}
322
323static DEVICE_ATTR(cover_switch, S_IRUGO, mmc_omap_show_cover_switch, NULL);
324
325static ssize_t
326mmc_omap_show_slot_name(struct device *dev, struct device_attribute *attr,
327 char *buf)
328{
329 struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
330 struct mmc_omap_slot *slot = mmc_priv(mmc);
331
332 return sprintf(buf, "%s\n", slot->pdata->name);
333}
334
335static DEVICE_ATTR(slot_name, S_IRUGO, mmc_omap_show_slot_name, NULL);
336
337static void
338mmc_omap_start_command(struct mmc_omap_host *host, struct mmc_command *cmd)
339{
340 u32 cmdreg;
341 u32 resptype;
342 u32 cmdtype;
343
344 host->cmd = cmd;
345
346 resptype = 0;
347 cmdtype = 0;
348
349 /* Our hardware needs to know exact type */
350 switch (mmc_resp_type(cmd)) {
351 case MMC_RSP_NONE:
352 break;
353 case MMC_RSP_R1:
354 case MMC_RSP_R1B:
355 /* resp 1, 1b, 6, 7 */
356 resptype = 1;
357 break;
358 case MMC_RSP_R2:
359 resptype = 2;
360 break;
361 case MMC_RSP_R3:
362 resptype = 3;
363 break;
364 default:
365 dev_err(mmc_dev(host->mmc), "Invalid response type: %04x\n", mmc_resp_type(cmd));
366 break;
367 }
368
369 if (mmc_cmd_type(cmd) == MMC_CMD_ADTC) {
370 cmdtype = OMAP_MMC_CMDTYPE_ADTC;
371 } else if (mmc_cmd_type(cmd) == MMC_CMD_BC) {
372 cmdtype = OMAP_MMC_CMDTYPE_BC;
373 } else if (mmc_cmd_type(cmd) == MMC_CMD_BCR) {
374 cmdtype = OMAP_MMC_CMDTYPE_BCR;
375 } else {
376 cmdtype = OMAP_MMC_CMDTYPE_AC;
377 }
378
379 cmdreg = cmd->opcode | (resptype << 8) | (cmdtype << 12);
380
381 if (host->current_slot->bus_mode == MMC_BUSMODE_OPENDRAIN)
382 cmdreg |= 1 << 6;
383
384 if (cmd->flags & MMC_RSP_BUSY)
385 cmdreg |= 1 << 11;
386
387 if (host->data && !(host->data->flags & MMC_DATA_WRITE))
388 cmdreg |= 1 << 15;
389
390 mod_timer(&host->cmd_abort_timer, jiffies + HZ/2);
391
392 OMAP_MMC_WRITE(host, CTO, 200);
393 OMAP_MMC_WRITE(host, ARGL, cmd->arg & 0xffff);
394 OMAP_MMC_WRITE(host, ARGH, cmd->arg >> 16);
395 OMAP_MMC_WRITE(host, IE,
396 OMAP_MMC_STAT_A_EMPTY | OMAP_MMC_STAT_A_FULL |
397 OMAP_MMC_STAT_CMD_CRC | OMAP_MMC_STAT_CMD_TOUT |
398 OMAP_MMC_STAT_DATA_CRC | OMAP_MMC_STAT_DATA_TOUT |
399 OMAP_MMC_STAT_END_OF_CMD | OMAP_MMC_STAT_CARD_ERR |
400 OMAP_MMC_STAT_END_OF_DATA);
401 OMAP_MMC_WRITE(host, CMD, cmdreg);
402}
403
404static void
405mmc_omap_release_dma(struct mmc_omap_host *host, struct mmc_data *data,
406 int abort)
407{
408 enum dma_data_direction dma_data_dir;
409
410 BUG_ON(host->dma_ch < 0);
411 if (data->error)
412 omap_stop_dma(host->dma_ch);
413 /* Release DMA channel lazily */
414 mod_timer(&host->dma_timer, jiffies + HZ);
415 if (data->flags & MMC_DATA_WRITE)
416 dma_data_dir = DMA_TO_DEVICE;
417 else
418 dma_data_dir = DMA_FROM_DEVICE;
419 dma_unmap_sg(mmc_dev(host->mmc), data->sg, host->sg_len,
420 dma_data_dir);
421}
422
423static void mmc_omap_send_stop_work(struct work_struct *work)
424{
425 struct mmc_omap_host *host = container_of(work, struct mmc_omap_host,
426 send_stop_work);
427 struct mmc_omap_slot *slot = host->current_slot;
428 struct mmc_data *data = host->stop_data;
429 unsigned long tick_ns;
430
431 tick_ns = (1000000000 + slot->fclk_freq - 1)/slot->fclk_freq;
432 ndelay(8*tick_ns);
433
434 mmc_omap_start_command(host, data->stop);
435}
436
437static void
438mmc_omap_xfer_done(struct mmc_omap_host *host, struct mmc_data *data)
439{
440 if (host->dma_in_use)
441 mmc_omap_release_dma(host, data, data->error);
442
443 host->data = NULL;
444 host->sg_len = 0;
445
446 /* NOTE: MMC layer will sometimes poll-wait CMD13 next, issuing
447 * dozens of requests until the card finishes writing data.
448 * It'd be cheaper to just wait till an EOFB interrupt arrives...
449 */
450
451 if (!data->stop) {
452 struct mmc_host *mmc;
453
454 host->mrq = NULL;
455 mmc = host->mmc;
456 mmc_omap_release_slot(host->current_slot, 1);
457 mmc_request_done(mmc, data->mrq);
458 return;
459 }
460
461 host->stop_data = data;
462 queue_work(mmc_omap_wq, &host->send_stop_work);
463}
464
465static void
466mmc_omap_send_abort(struct mmc_omap_host *host, int maxloops)
467{
468 struct mmc_omap_slot *slot = host->current_slot;
469 unsigned int restarts, passes, timeout;
470 u16 stat = 0;
471
472 /* Sending abort takes 80 clocks. Have some extra and round up */
473 timeout = (120*1000000 + slot->fclk_freq - 1)/slot->fclk_freq;
474 restarts = 0;
475 while (restarts < maxloops) {
476 OMAP_MMC_WRITE(host, STAT, 0xFFFF);
477 OMAP_MMC_WRITE(host, CMD, (3 << 12) | (1 << 7));
478
479 passes = 0;
480 while (passes < timeout) {
481 stat = OMAP_MMC_READ(host, STAT);
482 if (stat & OMAP_MMC_STAT_END_OF_CMD)
483 goto out;
484 udelay(1);
485 passes++;
486 }
487
488 restarts++;
489 }
490out:
491 OMAP_MMC_WRITE(host, STAT, stat);
492}
493
494static void
495mmc_omap_abort_xfer(struct mmc_omap_host *host, struct mmc_data *data)
496{
497 if (host->dma_in_use)
498 mmc_omap_release_dma(host, data, 1);
499
500 host->data = NULL;
501 host->sg_len = 0;
502
503 mmc_omap_send_abort(host, 10000);
504}
505
506static void
507mmc_omap_end_of_data(struct mmc_omap_host *host, struct mmc_data *data)
508{
509 unsigned long flags;
510 int done;
511
512 if (!host->dma_in_use) {
513 mmc_omap_xfer_done(host, data);
514 return;
515 }
516 done = 0;
517 spin_lock_irqsave(&host->dma_lock, flags);
518 if (host->dma_done)
519 done = 1;
520 else
521 host->brs_received = 1;
522 spin_unlock_irqrestore(&host->dma_lock, flags);
523 if (done)
524 mmc_omap_xfer_done(host, data);
525}
526
527static void
528mmc_omap_dma_timer(unsigned long data)
529{
530 struct mmc_omap_host *host = (struct mmc_omap_host *) data;
531
532 BUG_ON(host->dma_ch < 0);
533 omap_free_dma(host->dma_ch);
534 host->dma_ch = -1;
535}
536
537static void
538mmc_omap_dma_done(struct mmc_omap_host *host, struct mmc_data *data)
539{
540 unsigned long flags;
541 int done;
542
543 done = 0;
544 spin_lock_irqsave(&host->dma_lock, flags);
545 if (host->brs_received)
546 done = 1;
547 else
548 host->dma_done = 1;
549 spin_unlock_irqrestore(&host->dma_lock, flags);
550 if (done)
551 mmc_omap_xfer_done(host, data);
552}
553
554static void
555mmc_omap_cmd_done(struct mmc_omap_host *host, struct mmc_command *cmd)
556{
557 host->cmd = NULL;
558
559 del_timer(&host->cmd_abort_timer);
560
561 if (cmd->flags & MMC_RSP_PRESENT) {
562 if (cmd->flags & MMC_RSP_136) {
563 /* response type 2 */
564 cmd->resp[3] =
565 OMAP_MMC_READ(host, RSP0) |
566 (OMAP_MMC_READ(host, RSP1) << 16);
567 cmd->resp[2] =
568 OMAP_MMC_READ(host, RSP2) |
569 (OMAP_MMC_READ(host, RSP3) << 16);
570 cmd->resp[1] =
571 OMAP_MMC_READ(host, RSP4) |
572 (OMAP_MMC_READ(host, RSP5) << 16);
573 cmd->resp[0] =
574 OMAP_MMC_READ(host, RSP6) |
575 (OMAP_MMC_READ(host, RSP7) << 16);
576 } else {
577 /* response types 1, 1b, 3, 4, 5, 6 */
578 cmd->resp[0] =
579 OMAP_MMC_READ(host, RSP6) |
580 (OMAP_MMC_READ(host, RSP7) << 16);
581 }
582 }
583
584 if (host->data == NULL || cmd->error) {
585 struct mmc_host *mmc;
586
587 if (host->data != NULL)
588 mmc_omap_abort_xfer(host, host->data);
589 host->mrq = NULL;
590 mmc = host->mmc;
591 mmc_omap_release_slot(host->current_slot, 1);
592 mmc_request_done(mmc, cmd->mrq);
593 }
594}
595
596/*
597 * Abort stuck command. Can occur when card is removed while it is being
598 * read.
599 */
600static void mmc_omap_abort_command(struct work_struct *work)
601{
602 struct mmc_omap_host *host = container_of(work, struct mmc_omap_host,
603 cmd_abort_work);
604 BUG_ON(!host->cmd);
605
606 dev_dbg(mmc_dev(host->mmc), "Aborting stuck command CMD%d\n",
607 host->cmd->opcode);
608
609 if (host->cmd->error == 0)
610 host->cmd->error = -ETIMEDOUT;
611
612 if (host->data == NULL) {
613 struct mmc_command *cmd;
614 struct mmc_host *mmc;
615
616 cmd = host->cmd;
617 host->cmd = NULL;
618 mmc_omap_send_abort(host, 10000);
619
620 host->mrq = NULL;
621 mmc = host->mmc;
622 mmc_omap_release_slot(host->current_slot, 1);
623 mmc_request_done(mmc, cmd->mrq);
624 } else
625 mmc_omap_cmd_done(host, host->cmd);
626
627 host->abort = 0;
628 enable_irq(host->irq);
629}
630
631static void
632mmc_omap_cmd_timer(unsigned long data)
633{
634 struct mmc_omap_host *host = (struct mmc_omap_host *) data;
635 unsigned long flags;
636
637 spin_lock_irqsave(&host->slot_lock, flags);
638 if (host->cmd != NULL && !host->abort) {
639 OMAP_MMC_WRITE(host, IE, 0);
640 disable_irq(host->irq);
641 host->abort = 1;
642 queue_work(mmc_omap_wq, &host->cmd_abort_work);
643 }
644 spin_unlock_irqrestore(&host->slot_lock, flags);
645}
646
647/* PIO only */
648static void
649mmc_omap_sg_to_buf(struct mmc_omap_host *host)
650{
651 struct scatterlist *sg;
652
653 sg = host->data->sg + host->sg_idx;
654 host->buffer_bytes_left = sg->length;
655 host->buffer = sg_virt(sg);
656 if (host->buffer_bytes_left > host->total_bytes_left)
657 host->buffer_bytes_left = host->total_bytes_left;
658}
659
660static void
661mmc_omap_clk_timer(unsigned long data)
662{
663 struct mmc_omap_host *host = (struct mmc_omap_host *) data;
664
665 mmc_omap_fclk_enable(host, 0);
666}
667
668/* PIO only */
669static void
670mmc_omap_xfer_data(struct mmc_omap_host *host, int write)
671{
672 int n;
673
674 if (host->buffer_bytes_left == 0) {
675 host->sg_idx++;
676 BUG_ON(host->sg_idx == host->sg_len);
677 mmc_omap_sg_to_buf(host);
678 }
679 n = 64;
680 if (n > host->buffer_bytes_left)
681 n = host->buffer_bytes_left;
682 host->buffer_bytes_left -= n;
683 host->total_bytes_left -= n;
684 host->data->bytes_xfered += n;
685
686 if (write) {
687 __raw_writesw(host->virt_base + OMAP_MMC_REG(host, DATA), host->buffer, n);
688 } else {
689 __raw_readsw(host->virt_base + OMAP_MMC_REG(host, DATA), host->buffer, n);
690 }
691}
692
693static inline void mmc_omap_report_irq(u16 status)
694{
695 static const char *mmc_omap_status_bits[] = {
696 "EOC", "CD", "CB", "BRS", "EOFB", "DTO", "DCRC", "CTO",
697 "CCRC", "CRW", "AF", "AE", "OCRB", "CIRQ", "CERR"
698 };
699 int i, c = 0;
700
701 for (i = 0; i < ARRAY_SIZE(mmc_omap_status_bits); i++)
702 if (status & (1 << i)) {
703 if (c)
704 printk(" ");
705 printk("%s", mmc_omap_status_bits[i]);
706 c++;
707 }
708}
709
710static irqreturn_t mmc_omap_irq(int irq, void *dev_id)
711{
712 struct mmc_omap_host * host = (struct mmc_omap_host *)dev_id;
713 u16 status;
714 int end_command;
715 int end_transfer;
716 int transfer_error, cmd_error;
717
718 if (host->cmd == NULL && host->data == NULL) {
719 status = OMAP_MMC_READ(host, STAT);
720 dev_info(mmc_dev(host->slots[0]->mmc),
721 "Spurious IRQ 0x%04x\n", status);
722 if (status != 0) {
723 OMAP_MMC_WRITE(host, STAT, status);
724 OMAP_MMC_WRITE(host, IE, 0);
725 }
726 return IRQ_HANDLED;
727 }
728
729 end_command = 0;
730 end_transfer = 0;
731 transfer_error = 0;
732 cmd_error = 0;
733
734 while ((status = OMAP_MMC_READ(host, STAT)) != 0) {
735 int cmd;
736
737 OMAP_MMC_WRITE(host, STAT, status);
738 if (host->cmd != NULL)
739 cmd = host->cmd->opcode;
740 else
741 cmd = -1;
742#ifdef CONFIG_MMC_DEBUG
743 dev_dbg(mmc_dev(host->mmc), "MMC IRQ %04x (CMD %d): ",
744 status, cmd);
745 mmc_omap_report_irq(status);
746 printk("\n");
747#endif
748 if (host->total_bytes_left) {
749 if ((status & OMAP_MMC_STAT_A_FULL) ||
750 (status & OMAP_MMC_STAT_END_OF_DATA))
751 mmc_omap_xfer_data(host, 0);
752 if (status & OMAP_MMC_STAT_A_EMPTY)
753 mmc_omap_xfer_data(host, 1);
754 }
755
756 if (status & OMAP_MMC_STAT_END_OF_DATA)
757 end_transfer = 1;
758
759 if (status & OMAP_MMC_STAT_DATA_TOUT) {
760 dev_dbg(mmc_dev(host->mmc), "data timeout (CMD%d)\n",
761 cmd);
762 if (host->data) {
763 host->data->error = -ETIMEDOUT;
764 transfer_error = 1;
765 }
766 }
767
768 if (status & OMAP_MMC_STAT_DATA_CRC) {
769 if (host->data) {
770 host->data->error = -EILSEQ;
771 dev_dbg(mmc_dev(host->mmc),
772 "data CRC error, bytes left %d\n",
773 host->total_bytes_left);
774 transfer_error = 1;
775 } else {
776 dev_dbg(mmc_dev(host->mmc), "data CRC error\n");
777 }
778 }
779
780 if (status & OMAP_MMC_STAT_CMD_TOUT) {
781 /* Timeouts are routine with some commands */
782 if (host->cmd) {
783 struct mmc_omap_slot *slot =
784 host->current_slot;
785 if (slot == NULL ||
786 !mmc_omap_cover_is_open(slot))
787 dev_err(mmc_dev(host->mmc),
788 "command timeout (CMD%d)\n",
789 cmd);
790 host->cmd->error = -ETIMEDOUT;
791 end_command = 1;
792 cmd_error = 1;
793 }
794 }
795
796 if (status & OMAP_MMC_STAT_CMD_CRC) {
797 if (host->cmd) {
798 dev_err(mmc_dev(host->mmc),
799 "command CRC error (CMD%d, arg 0x%08x)\n",
800 cmd, host->cmd->arg);
801 host->cmd->error = -EILSEQ;
802 end_command = 1;
803 cmd_error = 1;
804 } else
805 dev_err(mmc_dev(host->mmc),
806 "command CRC error without cmd?\n");
807 }
808
809 if (status & OMAP_MMC_STAT_CARD_ERR) {
810 dev_dbg(mmc_dev(host->mmc),
811 "ignoring card status error (CMD%d)\n",
812 cmd);
813 end_command = 1;
814 }
815
816 /*
817 * NOTE: On 1610 the END_OF_CMD may come too early when
818 * starting a write
819 */
820 if ((status & OMAP_MMC_STAT_END_OF_CMD) &&
821 (!(status & OMAP_MMC_STAT_A_EMPTY))) {
822 end_command = 1;
823 }
824 }
825
826 if (cmd_error && host->data) {
827 del_timer(&host->cmd_abort_timer);
828 host->abort = 1;
829 OMAP_MMC_WRITE(host, IE, 0);
830 disable_irq_nosync(host->irq);
831 queue_work(mmc_omap_wq, &host->cmd_abort_work);
832 return IRQ_HANDLED;
833 }
834
835 if (end_command && host->cmd)
836 mmc_omap_cmd_done(host, host->cmd);
837 if (host->data != NULL) {
838 if (transfer_error)
839 mmc_omap_xfer_done(host, host->data);
840 else if (end_transfer)
841 mmc_omap_end_of_data(host, host->data);
842 }
843
844 return IRQ_HANDLED;
845}
846
847void omap_mmc_notify_cover_event(struct device *dev, int num, int is_closed)
848{
849 int cover_open;
850 struct mmc_omap_host *host = dev_get_drvdata(dev);
851 struct mmc_omap_slot *slot = host->slots[num];
852
853 BUG_ON(num >= host->nr_slots);
854
855 /* Other subsystems can call in here before we're initialised. */
856 if (host->nr_slots == 0 || !host->slots[num])
857 return;
858
859 cover_open = mmc_omap_cover_is_open(slot);
860 if (cover_open != slot->cover_open) {
861 slot->cover_open = cover_open;
862 sysfs_notify(&slot->mmc->class_dev.kobj, NULL, "cover_switch");
863 }
864
865 tasklet_hi_schedule(&slot->cover_tasklet);
866}
867
868static void mmc_omap_cover_timer(unsigned long arg)
869{
870 struct mmc_omap_slot *slot = (struct mmc_omap_slot *) arg;
871 tasklet_schedule(&slot->cover_tasklet);
872}
873
874static void mmc_omap_cover_handler(unsigned long param)
875{
876 struct mmc_omap_slot *slot = (struct mmc_omap_slot *)param;
877 int cover_open = mmc_omap_cover_is_open(slot);
878
879 mmc_detect_change(slot->mmc, 0);
880 if (!cover_open)
881 return;
882
883 /*
884 * If no card is inserted, we postpone polling until
885 * the cover has been closed.
886 */
887 if (slot->mmc->card == NULL || !mmc_card_present(slot->mmc->card))
888 return;
889
890 mod_timer(&slot->cover_timer,
891 jiffies + msecs_to_jiffies(OMAP_MMC_COVER_POLL_DELAY));
892}
893
894/* Prepare to transfer the next segment of a scatterlist */
895static void
896mmc_omap_prepare_dma(struct mmc_omap_host *host, struct mmc_data *data)
897{
898 int dma_ch = host->dma_ch;
899 unsigned long data_addr;
900 u16 buf, frame;
901 u32 count;
902 struct scatterlist *sg = &data->sg[host->sg_idx];
903 int src_port = 0;
904 int dst_port = 0;
905 int sync_dev = 0;
906
907 data_addr = host->phys_base + OMAP_MMC_REG(host, DATA);
908 frame = data->blksz;
909 count = sg_dma_len(sg);
910
911 if ((data->blocks == 1) && (count > data->blksz))
912 count = frame;
913
914 host->dma_len = count;
915
916 /* FIFO is 16x2 bytes on 15xx, and 32x2 bytes on 16xx and 24xx.
917 * Use 16 or 32 word frames when the blocksize is at least that large.
918 * Blocksize is usually 512 bytes; but not for some SD reads.
919 */
920 if (cpu_is_omap15xx() && frame > 32)
921 frame = 32;
922 else if (frame > 64)
923 frame = 64;
924 count /= frame;
925 frame >>= 1;
926
927 if (!(data->flags & MMC_DATA_WRITE)) {
928 buf = 0x800f | ((frame - 1) << 8);
929
930 if (cpu_class_is_omap1()) {
931 src_port = OMAP_DMA_PORT_TIPB;
932 dst_port = OMAP_DMA_PORT_EMIFF;
933 }
934 if (cpu_is_omap24xx())
935 sync_dev = OMAP24XX_DMA_MMC1_RX;
936
937 omap_set_dma_src_params(dma_ch, src_port,
938 OMAP_DMA_AMODE_CONSTANT,
939 data_addr, 0, 0);
940 omap_set_dma_dest_params(dma_ch, dst_port,
941 OMAP_DMA_AMODE_POST_INC,
942 sg_dma_address(sg), 0, 0);
943 omap_set_dma_dest_data_pack(dma_ch, 1);
944 omap_set_dma_dest_burst_mode(dma_ch, OMAP_DMA_DATA_BURST_4);
945 } else {
946 buf = 0x0f80 | ((frame - 1) << 0);
947
948 if (cpu_class_is_omap1()) {
949 src_port = OMAP_DMA_PORT_EMIFF;
950 dst_port = OMAP_DMA_PORT_TIPB;
951 }
952 if (cpu_is_omap24xx())
953 sync_dev = OMAP24XX_DMA_MMC1_TX;
954
955 omap_set_dma_dest_params(dma_ch, dst_port,
956 OMAP_DMA_AMODE_CONSTANT,
957 data_addr, 0, 0);
958 omap_set_dma_src_params(dma_ch, src_port,
959 OMAP_DMA_AMODE_POST_INC,
960 sg_dma_address(sg), 0, 0);
961 omap_set_dma_src_data_pack(dma_ch, 1);
962 omap_set_dma_src_burst_mode(dma_ch, OMAP_DMA_DATA_BURST_4);
963 }
964
965 /* Max limit for DMA frame count is 0xffff */
966 BUG_ON(count > 0xffff);
967
968 OMAP_MMC_WRITE(host, BUF, buf);
969 omap_set_dma_transfer_params(dma_ch, OMAP_DMA_DATA_TYPE_S16,
970 frame, count, OMAP_DMA_SYNC_FRAME,
971 sync_dev, 0);
972}
973
974/* A scatterlist segment completed */
975static void mmc_omap_dma_cb(int lch, u16 ch_status, void *data)
976{
977 struct mmc_omap_host *host = (struct mmc_omap_host *) data;
978 struct mmc_data *mmcdat = host->data;
979
980 if (unlikely(host->dma_ch < 0)) {
981 dev_err(mmc_dev(host->mmc),
982 "DMA callback while DMA not enabled\n");
983 return;
984 }
985 /* FIXME: We really should do something to _handle_ the errors */
986 if (ch_status & OMAP1_DMA_TOUT_IRQ) {
987 dev_err(mmc_dev(host->mmc),"DMA timeout\n");
988 return;
989 }
990 if (ch_status & OMAP_DMA_DROP_IRQ) {
991 dev_err(mmc_dev(host->mmc), "DMA sync error\n");
992 return;
993 }
994 if (!(ch_status & OMAP_DMA_BLOCK_IRQ)) {
995 return;
996 }
997 mmcdat->bytes_xfered += host->dma_len;
998 host->sg_idx++;
999 if (host->sg_idx < host->sg_len) {
1000 mmc_omap_prepare_dma(host, host->data);
1001 omap_start_dma(host->dma_ch);
1002 } else
1003 mmc_omap_dma_done(host, host->data);
1004}
1005
1006static int mmc_omap_get_dma_channel(struct mmc_omap_host *host, struct mmc_data *data)
1007{
1008 const char *dma_dev_name;
1009 int sync_dev, dma_ch, is_read, r;
1010
1011 is_read = !(data->flags & MMC_DATA_WRITE);
1012 del_timer_sync(&host->dma_timer);
1013 if (host->dma_ch >= 0) {
1014 if (is_read == host->dma_is_read)
1015 return 0;
1016 omap_free_dma(host->dma_ch);
1017 host->dma_ch = -1;
1018 }
1019
1020 if (is_read) {
1021 if (host->id == 0) {
1022 sync_dev = OMAP_DMA_MMC_RX;
1023 dma_dev_name = "MMC1 read";
1024 } else {
1025 sync_dev = OMAP_DMA_MMC2_RX;
1026 dma_dev_name = "MMC2 read";
1027 }
1028 } else {
1029 if (host->id == 0) {
1030 sync_dev = OMAP_DMA_MMC_TX;
1031 dma_dev_name = "MMC1 write";
1032 } else {
1033 sync_dev = OMAP_DMA_MMC2_TX;
1034 dma_dev_name = "MMC2 write";
1035 }
1036 }
1037 r = omap_request_dma(sync_dev, dma_dev_name, mmc_omap_dma_cb,
1038 host, &dma_ch);
1039 if (r != 0) {
1040 dev_dbg(mmc_dev(host->mmc), "omap_request_dma() failed with %d\n", r);
1041 return r;
1042 }
1043 host->dma_ch = dma_ch;
1044 host->dma_is_read = is_read;
1045
1046 return 0;
1047}
1048
1049static inline void set_cmd_timeout(struct mmc_omap_host *host, struct mmc_request *req)
1050{
1051 u16 reg;
1052
1053 reg = OMAP_MMC_READ(host, SDIO);
1054 reg &= ~(1 << 5);
1055 OMAP_MMC_WRITE(host, SDIO, reg);
1056 /* Set maximum timeout */
1057 OMAP_MMC_WRITE(host, CTO, 0xff);
1058}
1059
1060static inline void set_data_timeout(struct mmc_omap_host *host, struct mmc_request *req)
1061{
1062 unsigned int timeout, cycle_ns;
1063 u16 reg;
1064
1065 cycle_ns = 1000000000 / host->current_slot->fclk_freq;
1066 timeout = req->data->timeout_ns / cycle_ns;
1067 timeout += req->data->timeout_clks;
1068
1069 /* Check if we need to use timeout multiplier register */
1070 reg = OMAP_MMC_READ(host, SDIO);
1071 if (timeout > 0xffff) {
1072 reg |= (1 << 5);
1073 timeout /= 1024;
1074 } else
1075 reg &= ~(1 << 5);
1076 OMAP_MMC_WRITE(host, SDIO, reg);
1077 OMAP_MMC_WRITE(host, DTO, timeout);
1078}
1079
1080static void
1081mmc_omap_prepare_data(struct mmc_omap_host *host, struct mmc_request *req)
1082{
1083 struct mmc_data *data = req->data;
1084 int i, use_dma, block_size;
1085 unsigned sg_len;
1086
1087 host->data = data;
1088 if (data == NULL) {
1089 OMAP_MMC_WRITE(host, BLEN, 0);
1090 OMAP_MMC_WRITE(host, NBLK, 0);
1091 OMAP_MMC_WRITE(host, BUF, 0);
1092 host->dma_in_use = 0;
1093 set_cmd_timeout(host, req);
1094 return;
1095 }
1096
1097 block_size = data->blksz;
1098
1099 OMAP_MMC_WRITE(host, NBLK, data->blocks - 1);
1100 OMAP_MMC_WRITE(host, BLEN, block_size - 1);
1101 set_data_timeout(host, req);
1102
1103 /* cope with calling layer confusion; it issues "single
1104 * block" writes using multi-block scatterlists.
1105 */
1106 sg_len = (data->blocks == 1) ? 1 : data->sg_len;
1107
1108 /* Only do DMA for entire blocks */
1109 use_dma = host->use_dma;
1110 if (use_dma) {
1111 for (i = 0; i < sg_len; i++) {
1112 if ((data->sg[i].length % block_size) != 0) {
1113 use_dma = 0;
1114 break;
1115 }
1116 }
1117 }
1118
1119 host->sg_idx = 0;
1120 if (use_dma) {
1121 if (mmc_omap_get_dma_channel(host, data) == 0) {
1122 enum dma_data_direction dma_data_dir;
1123
1124 if (data->flags & MMC_DATA_WRITE)
1125 dma_data_dir = DMA_TO_DEVICE;
1126 else
1127 dma_data_dir = DMA_FROM_DEVICE;
1128
1129 host->sg_len = dma_map_sg(mmc_dev(host->mmc), data->sg,
1130 sg_len, dma_data_dir);
1131 host->total_bytes_left = 0;
1132 mmc_omap_prepare_dma(host, req->data);
1133 host->brs_received = 0;
1134 host->dma_done = 0;
1135 host->dma_in_use = 1;
1136 } else
1137 use_dma = 0;
1138 }
1139
1140 /* Revert to PIO? */
1141 if (!use_dma) {
1142 OMAP_MMC_WRITE(host, BUF, 0x1f1f);
1143 host->total_bytes_left = data->blocks * block_size;
1144 host->sg_len = sg_len;
1145 mmc_omap_sg_to_buf(host);
1146 host->dma_in_use = 0;
1147 }
1148}
1149
1150static void mmc_omap_start_request(struct mmc_omap_host *host,
1151 struct mmc_request *req)
1152{
1153 BUG_ON(host->mrq != NULL);
1154
1155 host->mrq = req;
1156
1157 /* only touch fifo AFTER the controller readies it */
1158 mmc_omap_prepare_data(host, req);
1159 mmc_omap_start_command(host, req->cmd);
1160 if (host->dma_in_use)
1161 omap_start_dma(host->dma_ch);
1162}
1163
1164static void mmc_omap_request(struct mmc_host *mmc, struct mmc_request *req)
1165{
1166 struct mmc_omap_slot *slot = mmc_priv(mmc);
1167 struct mmc_omap_host *host = slot->host;
1168 unsigned long flags;
1169
1170 spin_lock_irqsave(&host->slot_lock, flags);
1171 if (host->mmc != NULL) {
1172 BUG_ON(slot->mrq != NULL);
1173 slot->mrq = req;
1174 spin_unlock_irqrestore(&host->slot_lock, flags);
1175 return;
1176 } else
1177 host->mmc = mmc;
1178 spin_unlock_irqrestore(&host->slot_lock, flags);
1179 mmc_omap_select_slot(slot, 1);
1180 mmc_omap_start_request(host, req);
1181}
1182
1183static void mmc_omap_set_power(struct mmc_omap_slot *slot, int power_on,
1184 int vdd)
1185{
1186 struct mmc_omap_host *host;
1187
1188 host = slot->host;
1189
1190 if (slot->pdata->set_power != NULL)
1191 slot->pdata->set_power(mmc_dev(slot->mmc), slot->id, power_on,
1192 vdd);
1193
1194 if (cpu_is_omap24xx()) {
1195 u16 w;
1196
1197 if (power_on) {
1198 w = OMAP_MMC_READ(host, CON);
1199 OMAP_MMC_WRITE(host, CON, w | (1 << 11));
1200 } else {
1201 w = OMAP_MMC_READ(host, CON);
1202 OMAP_MMC_WRITE(host, CON, w & ~(1 << 11));
1203 }
1204 }
1205}
1206
1207static int mmc_omap_calc_divisor(struct mmc_host *mmc, struct mmc_ios *ios)
1208{
1209 struct mmc_omap_slot *slot = mmc_priv(mmc);
1210 struct mmc_omap_host *host = slot->host;
1211 int func_clk_rate = clk_get_rate(host->fclk);
1212 int dsor;
1213
1214 if (ios->clock == 0)
1215 return 0;
1216
1217 dsor = func_clk_rate / ios->clock;
1218 if (dsor < 1)
1219 dsor = 1;
1220
1221 if (func_clk_rate / dsor > ios->clock)
1222 dsor++;
1223
1224 if (dsor > 250)
1225 dsor = 250;
1226
1227 slot->fclk_freq = func_clk_rate / dsor;
1228
1229 if (ios->bus_width == MMC_BUS_WIDTH_4)
1230 dsor |= 1 << 15;
1231
1232 return dsor;
1233}
1234
1235static void mmc_omap_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
1236{
1237 struct mmc_omap_slot *slot = mmc_priv(mmc);
1238 struct mmc_omap_host *host = slot->host;
1239 int i, dsor;
1240 int clk_enabled;
1241
1242 mmc_omap_select_slot(slot, 0);
1243
1244 dsor = mmc_omap_calc_divisor(mmc, ios);
1245
1246 if (ios->vdd != slot->vdd)
1247 slot->vdd = ios->vdd;
1248
1249 clk_enabled = 0;
1250 switch (ios->power_mode) {
1251 case MMC_POWER_OFF:
1252 mmc_omap_set_power(slot, 0, ios->vdd);
1253 break;
1254 case MMC_POWER_UP:
1255 /* Cannot touch dsor yet, just power up MMC */
1256 mmc_omap_set_power(slot, 1, ios->vdd);
1257 goto exit;
1258 case MMC_POWER_ON:
1259 mmc_omap_fclk_enable(host, 1);
1260 clk_enabled = 1;
1261 dsor |= 1 << 11;
1262 break;
1263 }
1264
1265 if (slot->bus_mode != ios->bus_mode) {
1266 if (slot->pdata->set_bus_mode != NULL)
1267 slot->pdata->set_bus_mode(mmc_dev(mmc), slot->id,
1268 ios->bus_mode);
1269 slot->bus_mode = ios->bus_mode;
1270 }
1271
1272 /* On insanely high arm_per frequencies something sometimes
1273 * goes somehow out of sync, and the POW bit is not being set,
1274 * which results in the while loop below getting stuck.
1275 * Writing to the CON register twice seems to do the trick. */
1276 for (i = 0; i < 2; i++)
1277 OMAP_MMC_WRITE(host, CON, dsor);
1278 slot->saved_con = dsor;
1279 if (ios->power_mode == MMC_POWER_ON) {
1280 /* worst case at 400kHz, 80 cycles makes 200 microsecs */
1281 int usecs = 250;
1282
1283 /* Send clock cycles, poll completion */
1284 OMAP_MMC_WRITE(host, IE, 0);
1285 OMAP_MMC_WRITE(host, STAT, 0xffff);
1286 OMAP_MMC_WRITE(host, CMD, 1 << 7);
1287 while (usecs > 0 && (OMAP_MMC_READ(host, STAT) & 1) == 0) {
1288 udelay(1);
1289 usecs--;
1290 }
1291 OMAP_MMC_WRITE(host, STAT, 1);
1292 }
1293
1294exit:
1295 mmc_omap_release_slot(slot, clk_enabled);
1296}
1297
1298static const struct mmc_host_ops mmc_omap_ops = {
1299 .request = mmc_omap_request,
1300 .set_ios = mmc_omap_set_ios,
1301};
1302
1303static int __init mmc_omap_new_slot(struct mmc_omap_host *host, int id)
1304{
1305 struct mmc_omap_slot *slot = NULL;
1306 struct mmc_host *mmc;
1307 int r;
1308
1309 mmc = mmc_alloc_host(sizeof(struct mmc_omap_slot), host->dev);
1310 if (mmc == NULL)
1311 return -ENOMEM;
1312
1313 slot = mmc_priv(mmc);
1314 slot->host = host;
1315 slot->mmc = mmc;
1316 slot->id = id;
1317 slot->pdata = &host->pdata->slots[id];
1318
1319 host->slots[id] = slot;
1320
1321 mmc->caps = 0;
1322 if (host->pdata->slots[id].wires >= 4)
1323 mmc->caps |= MMC_CAP_4_BIT_DATA;
1324
1325 mmc->ops = &mmc_omap_ops;
1326 mmc->f_min = 400000;
1327
1328 if (cpu_class_is_omap2())
1329 mmc->f_max = 48000000;
1330 else
1331 mmc->f_max = 24000000;
1332 if (host->pdata->max_freq)
1333 mmc->f_max = min(host->pdata->max_freq, mmc->f_max);
1334 mmc->ocr_avail = slot->pdata->ocr_mask;
1335
1336 /* Use scatterlist DMA to reduce per-transfer costs.
1337 * NOTE max_seg_size assumption that small blocks aren't
1338 * normally used (except e.g. for reading SD registers).
1339 */
1340 mmc->max_segs = 32;
1341 mmc->max_blk_size = 2048; /* BLEN is 11 bits (+1) */
1342 mmc->max_blk_count = 2048; /* NBLK is 11 bits (+1) */
1343 mmc->max_req_size = mmc->max_blk_size * mmc->max_blk_count;
1344 mmc->max_seg_size = mmc->max_req_size;
1345
1346 r = mmc_add_host(mmc);
1347 if (r < 0)
1348 goto err_remove_host;
1349
1350 if (slot->pdata->name != NULL) {
1351 r = device_create_file(&mmc->class_dev,
1352 &dev_attr_slot_name);
1353 if (r < 0)
1354 goto err_remove_host;
1355 }
1356
1357 if (slot->pdata->get_cover_state != NULL) {
1358 r = device_create_file(&mmc->class_dev,
1359 &dev_attr_cover_switch);
1360 if (r < 0)
1361 goto err_remove_slot_name;
1362
1363 setup_timer(&slot->cover_timer, mmc_omap_cover_timer,
1364 (unsigned long)slot);
1365 tasklet_init(&slot->cover_tasklet, mmc_omap_cover_handler,
1366 (unsigned long)slot);
1367 tasklet_schedule(&slot->cover_tasklet);
1368 }
1369
1370 return 0;
1371
1372err_remove_slot_name:
1373 if (slot->pdata->name != NULL)
1374 device_remove_file(&mmc->class_dev, &dev_attr_slot_name);
1375err_remove_host:
1376 mmc_remove_host(mmc);
1377 mmc_free_host(mmc);
1378 return r;
1379}
1380
1381static void mmc_omap_remove_slot(struct mmc_omap_slot *slot)
1382{
1383 struct mmc_host *mmc = slot->mmc;
1384
1385 if (slot->pdata->name != NULL)
1386 device_remove_file(&mmc->class_dev, &dev_attr_slot_name);
1387 if (slot->pdata->get_cover_state != NULL)
1388 device_remove_file(&mmc->class_dev, &dev_attr_cover_switch);
1389
1390 tasklet_kill(&slot->cover_tasklet);
1391 del_timer_sync(&slot->cover_timer);
1392 flush_workqueue(mmc_omap_wq);
1393
1394 mmc_remove_host(mmc);
1395 mmc_free_host(mmc);
1396}
1397
1398static int __init mmc_omap_probe(struct platform_device *pdev)
1399{
1400 struct omap_mmc_platform_data *pdata = pdev->dev.platform_data;
1401 struct mmc_omap_host *host = NULL;
1402 struct resource *res;
1403 int i, ret = 0;
1404 int irq;
1405
1406 if (pdata == NULL) {
1407 dev_err(&pdev->dev, "platform data missing\n");
1408 return -ENXIO;
1409 }
1410 if (pdata->nr_slots == 0) {
1411 dev_err(&pdev->dev, "no slots\n");
1412 return -ENXIO;
1413 }
1414
1415 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1416 irq = platform_get_irq(pdev, 0);
1417 if (res == NULL || irq < 0)
1418 return -ENXIO;
1419
1420 res = request_mem_region(res->start, resource_size(res),
1421 pdev->name);
1422 if (res == NULL)
1423 return -EBUSY;
1424
1425 host = kzalloc(sizeof(struct mmc_omap_host), GFP_KERNEL);
1426 if (host == NULL) {
1427 ret = -ENOMEM;
1428 goto err_free_mem_region;
1429 }
1430
1431 INIT_WORK(&host->slot_release_work, mmc_omap_slot_release_work);
1432 INIT_WORK(&host->send_stop_work, mmc_omap_send_stop_work);
1433
1434 INIT_WORK(&host->cmd_abort_work, mmc_omap_abort_command);
1435 setup_timer(&host->cmd_abort_timer, mmc_omap_cmd_timer,
1436 (unsigned long) host);
1437
1438 spin_lock_init(&host->clk_lock);
1439 setup_timer(&host->clk_timer, mmc_omap_clk_timer, (unsigned long) host);
1440
1441 spin_lock_init(&host->dma_lock);
1442 setup_timer(&host->dma_timer, mmc_omap_dma_timer, (unsigned long) host);
1443 spin_lock_init(&host->slot_lock);
1444 init_waitqueue_head(&host->slot_wq);
1445
1446 host->pdata = pdata;
1447 host->dev = &pdev->dev;
1448 platform_set_drvdata(pdev, host);
1449
1450 host->id = pdev->id;
1451 host->mem_res = res;
1452 host->irq = irq;
1453
1454 host->use_dma = 1;
1455 host->dev->dma_mask = &pdata->dma_mask;
1456 host->dma_ch = -1;
1457
1458 host->irq = irq;
1459 host->phys_base = host->mem_res->start;
1460 host->virt_base = ioremap(res->start, resource_size(res));
1461 if (!host->virt_base)
1462 goto err_ioremap;
1463
1464 host->iclk = clk_get(&pdev->dev, "ick");
1465 if (IS_ERR(host->iclk)) {
1466 ret = PTR_ERR(host->iclk);
1467 goto err_free_mmc_host;
1468 }
1469 clk_enable(host->iclk);
1470
1471 host->fclk = clk_get(&pdev->dev, "fck");
1472 if (IS_ERR(host->fclk)) {
1473 ret = PTR_ERR(host->fclk);
1474 goto err_free_iclk;
1475 }
1476
1477 ret = request_irq(host->irq, mmc_omap_irq, 0, DRIVER_NAME, host);
1478 if (ret)
1479 goto err_free_fclk;
1480
1481 if (pdata->init != NULL) {
1482 ret = pdata->init(&pdev->dev);
1483 if (ret < 0)
1484 goto err_free_irq;
1485 }
1486
1487 host->nr_slots = pdata->nr_slots;
1488 for (i = 0; i < pdata->nr_slots; i++) {
1489 ret = mmc_omap_new_slot(host, i);
1490 if (ret < 0) {
1491 while (--i >= 0)
1492 mmc_omap_remove_slot(host->slots[i]);
1493
1494 goto err_plat_cleanup;
1495 }
1496 }
1497
1498 host->reg_shift = (cpu_is_omap7xx() ? 1 : 2);
1499
1500 return 0;
1501
1502err_plat_cleanup:
1503 if (pdata->cleanup)
1504 pdata->cleanup(&pdev->dev);
1505err_free_irq:
1506 free_irq(host->irq, host);
1507err_free_fclk:
1508 clk_put(host->fclk);
1509err_free_iclk:
1510 clk_disable(host->iclk);
1511 clk_put(host->iclk);
1512err_free_mmc_host:
1513 iounmap(host->virt_base);
1514err_ioremap:
1515 kfree(host);
1516err_free_mem_region:
1517 release_mem_region(res->start, resource_size(res));
1518 return ret;
1519}
1520
1521static int mmc_omap_remove(struct platform_device *pdev)
1522{
1523 struct mmc_omap_host *host = platform_get_drvdata(pdev);
1524 int i;
1525
1526 platform_set_drvdata(pdev, NULL);
1527
1528 BUG_ON(host == NULL);
1529
1530 for (i = 0; i < host->nr_slots; i++)
1531 mmc_omap_remove_slot(host->slots[i]);
1532
1533 if (host->pdata->cleanup)
1534 host->pdata->cleanup(&pdev->dev);
1535
1536 mmc_omap_fclk_enable(host, 0);
1537 free_irq(host->irq, host);
1538 clk_put(host->fclk);
1539 clk_disable(host->iclk);
1540 clk_put(host->iclk);
1541
1542 iounmap(host->virt_base);
1543 release_mem_region(pdev->resource[0].start,
1544 pdev->resource[0].end - pdev->resource[0].start + 1);
1545
1546 kfree(host);
1547
1548 return 0;
1549}
1550
1551#ifdef CONFIG_PM
1552static int mmc_omap_suspend(struct platform_device *pdev, pm_message_t mesg)
1553{
1554 int i, ret = 0;
1555 struct mmc_omap_host *host = platform_get_drvdata(pdev);
1556
1557 if (host == NULL || host->suspended)
1558 return 0;
1559
1560 for (i = 0; i < host->nr_slots; i++) {
1561 struct mmc_omap_slot *slot;
1562
1563 slot = host->slots[i];
1564 ret = mmc_suspend_host(slot->mmc);
1565 if (ret < 0) {
1566 while (--i >= 0) {
1567 slot = host->slots[i];
1568 mmc_resume_host(slot->mmc);
1569 }
1570 return ret;
1571 }
1572 }
1573 host->suspended = 1;
1574 return 0;
1575}
1576
1577static int mmc_omap_resume(struct platform_device *pdev)
1578{
1579 int i, ret = 0;
1580 struct mmc_omap_host *host = platform_get_drvdata(pdev);
1581
1582 if (host == NULL || !host->suspended)
1583 return 0;
1584
1585 for (i = 0; i < host->nr_slots; i++) {
1586 struct mmc_omap_slot *slot;
1587 slot = host->slots[i];
1588 ret = mmc_resume_host(slot->mmc);
1589 if (ret < 0)
1590 return ret;
1591
1592 host->suspended = 0;
1593 }
1594 return 0;
1595}
1596#else
1597#define mmc_omap_suspend NULL
1598#define mmc_omap_resume NULL
1599#endif
1600
1601static struct platform_driver mmc_omap_driver = {
1602 .remove = mmc_omap_remove,
1603 .suspend = mmc_omap_suspend,
1604 .resume = mmc_omap_resume,
1605 .driver = {
1606 .name = DRIVER_NAME,
1607 .owner = THIS_MODULE,
1608 },
1609};
1610
1611static int __init mmc_omap_init(void)
1612{
1613 int ret;
1614
1615 mmc_omap_wq = alloc_workqueue("mmc_omap", 0, 0);
1616 if (!mmc_omap_wq)
1617 return -ENOMEM;
1618
1619 ret = platform_driver_probe(&mmc_omap_driver, mmc_omap_probe);
1620 if (ret)
1621 destroy_workqueue(mmc_omap_wq);
1622 return ret;
1623}
1624
1625static void __exit mmc_omap_exit(void)
1626{
1627 platform_driver_unregister(&mmc_omap_driver);
1628 destroy_workqueue(mmc_omap_wq);
1629}
1630
1631module_init(mmc_omap_init);
1632module_exit(mmc_omap_exit);
1633
1634MODULE_DESCRIPTION("OMAP Multimedia Card driver");
1635MODULE_LICENSE("GPL");
1636MODULE_ALIAS("platform:" DRIVER_NAME);
1637MODULE_AUTHOR("Juha Yrjölä");
1/*
2 * linux/drivers/mmc/host/omap.c
3 *
4 * Copyright (C) 2004 Nokia Corporation
5 * Written by Tuukka Tikkanen and Juha Yrjölä<juha.yrjola@nokia.com>
6 * Misc hacks here and there by Tony Lindgren <tony@atomide.com>
7 * Other hacks (DMA, SD, etc) by David Brownell
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/moduleparam.h>
16#include <linux/init.h>
17#include <linux/ioport.h>
18#include <linux/platform_device.h>
19#include <linux/interrupt.h>
20#include <linux/dmaengine.h>
21#include <linux/dma-mapping.h>
22#include <linux/delay.h>
23#include <linux/spinlock.h>
24#include <linux/timer.h>
25#include <linux/of.h>
26#include <linux/mmc/host.h>
27#include <linux/mmc/card.h>
28#include <linux/mmc/mmc.h>
29#include <linux/clk.h>
30#include <linux/scatterlist.h>
31#include <linux/slab.h>
32#include <linux/platform_data/mmc-omap.h>
33
34
35#define OMAP_MMC_REG_CMD 0x00
36#define OMAP_MMC_REG_ARGL 0x01
37#define OMAP_MMC_REG_ARGH 0x02
38#define OMAP_MMC_REG_CON 0x03
39#define OMAP_MMC_REG_STAT 0x04
40#define OMAP_MMC_REG_IE 0x05
41#define OMAP_MMC_REG_CTO 0x06
42#define OMAP_MMC_REG_DTO 0x07
43#define OMAP_MMC_REG_DATA 0x08
44#define OMAP_MMC_REG_BLEN 0x09
45#define OMAP_MMC_REG_NBLK 0x0a
46#define OMAP_MMC_REG_BUF 0x0b
47#define OMAP_MMC_REG_SDIO 0x0d
48#define OMAP_MMC_REG_REV 0x0f
49#define OMAP_MMC_REG_RSP0 0x10
50#define OMAP_MMC_REG_RSP1 0x11
51#define OMAP_MMC_REG_RSP2 0x12
52#define OMAP_MMC_REG_RSP3 0x13
53#define OMAP_MMC_REG_RSP4 0x14
54#define OMAP_MMC_REG_RSP5 0x15
55#define OMAP_MMC_REG_RSP6 0x16
56#define OMAP_MMC_REG_RSP7 0x17
57#define OMAP_MMC_REG_IOSR 0x18
58#define OMAP_MMC_REG_SYSC 0x19
59#define OMAP_MMC_REG_SYSS 0x1a
60
61#define OMAP_MMC_STAT_CARD_ERR (1 << 14)
62#define OMAP_MMC_STAT_CARD_IRQ (1 << 13)
63#define OMAP_MMC_STAT_OCR_BUSY (1 << 12)
64#define OMAP_MMC_STAT_A_EMPTY (1 << 11)
65#define OMAP_MMC_STAT_A_FULL (1 << 10)
66#define OMAP_MMC_STAT_CMD_CRC (1 << 8)
67#define OMAP_MMC_STAT_CMD_TOUT (1 << 7)
68#define OMAP_MMC_STAT_DATA_CRC (1 << 6)
69#define OMAP_MMC_STAT_DATA_TOUT (1 << 5)
70#define OMAP_MMC_STAT_END_BUSY (1 << 4)
71#define OMAP_MMC_STAT_END_OF_DATA (1 << 3)
72#define OMAP_MMC_STAT_CARD_BUSY (1 << 2)
73#define OMAP_MMC_STAT_END_OF_CMD (1 << 0)
74
75#define mmc_omap7xx() (host->features & MMC_OMAP7XX)
76#define mmc_omap15xx() (host->features & MMC_OMAP15XX)
77#define mmc_omap16xx() (host->features & MMC_OMAP16XX)
78#define MMC_OMAP1_MASK (MMC_OMAP7XX | MMC_OMAP15XX | MMC_OMAP16XX)
79#define mmc_omap1() (host->features & MMC_OMAP1_MASK)
80#define mmc_omap2() (!mmc_omap1())
81
82#define OMAP_MMC_REG(host, reg) (OMAP_MMC_REG_##reg << (host)->reg_shift)
83#define OMAP_MMC_READ(host, reg) __raw_readw((host)->virt_base + OMAP_MMC_REG(host, reg))
84#define OMAP_MMC_WRITE(host, reg, val) __raw_writew((val), (host)->virt_base + OMAP_MMC_REG(host, reg))
85
86/*
87 * Command types
88 */
89#define OMAP_MMC_CMDTYPE_BC 0
90#define OMAP_MMC_CMDTYPE_BCR 1
91#define OMAP_MMC_CMDTYPE_AC 2
92#define OMAP_MMC_CMDTYPE_ADTC 3
93
94#define DRIVER_NAME "mmci-omap"
95
96/* Specifies how often in millisecs to poll for card status changes
97 * when the cover switch is open */
98#define OMAP_MMC_COVER_POLL_DELAY 500
99
100struct mmc_omap_host;
101
102struct mmc_omap_slot {
103 int id;
104 unsigned int vdd;
105 u16 saved_con;
106 u16 bus_mode;
107 unsigned int fclk_freq;
108
109 struct tasklet_struct cover_tasklet;
110 struct timer_list cover_timer;
111 unsigned cover_open;
112
113 struct mmc_request *mrq;
114 struct mmc_omap_host *host;
115 struct mmc_host *mmc;
116 struct omap_mmc_slot_data *pdata;
117};
118
119struct mmc_omap_host {
120 int initialized;
121 struct mmc_request * mrq;
122 struct mmc_command * cmd;
123 struct mmc_data * data;
124 struct mmc_host * mmc;
125 struct device * dev;
126 unsigned char id; /* 16xx chips have 2 MMC blocks */
127 struct clk * iclk;
128 struct clk * fclk;
129 struct dma_chan *dma_rx;
130 u32 dma_rx_burst;
131 struct dma_chan *dma_tx;
132 u32 dma_tx_burst;
133 void __iomem *virt_base;
134 unsigned int phys_base;
135 int irq;
136 unsigned char bus_mode;
137 unsigned int reg_shift;
138
139 struct work_struct cmd_abort_work;
140 unsigned abort:1;
141 struct timer_list cmd_abort_timer;
142
143 struct work_struct slot_release_work;
144 struct mmc_omap_slot *next_slot;
145 struct work_struct send_stop_work;
146 struct mmc_data *stop_data;
147
148 unsigned int sg_len;
149 int sg_idx;
150 u16 * buffer;
151 u32 buffer_bytes_left;
152 u32 total_bytes_left;
153
154 unsigned features;
155 unsigned brs_received:1, dma_done:1;
156 unsigned dma_in_use:1;
157 spinlock_t dma_lock;
158
159 struct mmc_omap_slot *slots[OMAP_MMC_MAX_SLOTS];
160 struct mmc_omap_slot *current_slot;
161 spinlock_t slot_lock;
162 wait_queue_head_t slot_wq;
163 int nr_slots;
164
165 struct timer_list clk_timer;
166 spinlock_t clk_lock; /* for changing enabled state */
167 unsigned int fclk_enabled:1;
168 struct workqueue_struct *mmc_omap_wq;
169
170 struct omap_mmc_platform_data *pdata;
171};
172
173
174static void mmc_omap_fclk_offdelay(struct mmc_omap_slot *slot)
175{
176 unsigned long tick_ns;
177
178 if (slot != NULL && slot->host->fclk_enabled && slot->fclk_freq > 0) {
179 tick_ns = DIV_ROUND_UP(NSEC_PER_SEC, slot->fclk_freq);
180 ndelay(8 * tick_ns);
181 }
182}
183
184static void mmc_omap_fclk_enable(struct mmc_omap_host *host, unsigned int enable)
185{
186 unsigned long flags;
187
188 spin_lock_irqsave(&host->clk_lock, flags);
189 if (host->fclk_enabled != enable) {
190 host->fclk_enabled = enable;
191 if (enable)
192 clk_enable(host->fclk);
193 else
194 clk_disable(host->fclk);
195 }
196 spin_unlock_irqrestore(&host->clk_lock, flags);
197}
198
199static void mmc_omap_select_slot(struct mmc_omap_slot *slot, int claimed)
200{
201 struct mmc_omap_host *host = slot->host;
202 unsigned long flags;
203
204 if (claimed)
205 goto no_claim;
206 spin_lock_irqsave(&host->slot_lock, flags);
207 while (host->mmc != NULL) {
208 spin_unlock_irqrestore(&host->slot_lock, flags);
209 wait_event(host->slot_wq, host->mmc == NULL);
210 spin_lock_irqsave(&host->slot_lock, flags);
211 }
212 host->mmc = slot->mmc;
213 spin_unlock_irqrestore(&host->slot_lock, flags);
214no_claim:
215 del_timer(&host->clk_timer);
216 if (host->current_slot != slot || !claimed)
217 mmc_omap_fclk_offdelay(host->current_slot);
218
219 if (host->current_slot != slot) {
220 OMAP_MMC_WRITE(host, CON, slot->saved_con & 0xFC00);
221 if (host->pdata->switch_slot != NULL)
222 host->pdata->switch_slot(mmc_dev(slot->mmc), slot->id);
223 host->current_slot = slot;
224 }
225
226 if (claimed) {
227 mmc_omap_fclk_enable(host, 1);
228
229 /* Doing the dummy read here seems to work around some bug
230 * at least in OMAP24xx silicon where the command would not
231 * start after writing the CMD register. Sigh. */
232 OMAP_MMC_READ(host, CON);
233
234 OMAP_MMC_WRITE(host, CON, slot->saved_con);
235 } else
236 mmc_omap_fclk_enable(host, 0);
237}
238
239static void mmc_omap_start_request(struct mmc_omap_host *host,
240 struct mmc_request *req);
241
242static void mmc_omap_slot_release_work(struct work_struct *work)
243{
244 struct mmc_omap_host *host = container_of(work, struct mmc_omap_host,
245 slot_release_work);
246 struct mmc_omap_slot *next_slot = host->next_slot;
247 struct mmc_request *rq;
248
249 host->next_slot = NULL;
250 mmc_omap_select_slot(next_slot, 1);
251
252 rq = next_slot->mrq;
253 next_slot->mrq = NULL;
254 mmc_omap_start_request(host, rq);
255}
256
257static void mmc_omap_release_slot(struct mmc_omap_slot *slot, int clk_enabled)
258{
259 struct mmc_omap_host *host = slot->host;
260 unsigned long flags;
261 int i;
262
263 BUG_ON(slot == NULL || host->mmc == NULL);
264
265 if (clk_enabled)
266 /* Keeps clock running for at least 8 cycles on valid freq */
267 mod_timer(&host->clk_timer, jiffies + HZ/10);
268 else {
269 del_timer(&host->clk_timer);
270 mmc_omap_fclk_offdelay(slot);
271 mmc_omap_fclk_enable(host, 0);
272 }
273
274 spin_lock_irqsave(&host->slot_lock, flags);
275 /* Check for any pending requests */
276 for (i = 0; i < host->nr_slots; i++) {
277 struct mmc_omap_slot *new_slot;
278
279 if (host->slots[i] == NULL || host->slots[i]->mrq == NULL)
280 continue;
281
282 BUG_ON(host->next_slot != NULL);
283 new_slot = host->slots[i];
284 /* The current slot should not have a request in queue */
285 BUG_ON(new_slot == host->current_slot);
286
287 host->next_slot = new_slot;
288 host->mmc = new_slot->mmc;
289 spin_unlock_irqrestore(&host->slot_lock, flags);
290 queue_work(host->mmc_omap_wq, &host->slot_release_work);
291 return;
292 }
293
294 host->mmc = NULL;
295 wake_up(&host->slot_wq);
296 spin_unlock_irqrestore(&host->slot_lock, flags);
297}
298
299static inline
300int mmc_omap_cover_is_open(struct mmc_omap_slot *slot)
301{
302 if (slot->pdata->get_cover_state)
303 return slot->pdata->get_cover_state(mmc_dev(slot->mmc),
304 slot->id);
305 return 0;
306}
307
308static ssize_t
309mmc_omap_show_cover_switch(struct device *dev, struct device_attribute *attr,
310 char *buf)
311{
312 struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
313 struct mmc_omap_slot *slot = mmc_priv(mmc);
314
315 return sprintf(buf, "%s\n", mmc_omap_cover_is_open(slot) ? "open" :
316 "closed");
317}
318
319static DEVICE_ATTR(cover_switch, S_IRUGO, mmc_omap_show_cover_switch, NULL);
320
321static ssize_t
322mmc_omap_show_slot_name(struct device *dev, struct device_attribute *attr,
323 char *buf)
324{
325 struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
326 struct mmc_omap_slot *slot = mmc_priv(mmc);
327
328 return sprintf(buf, "%s\n", slot->pdata->name);
329}
330
331static DEVICE_ATTR(slot_name, S_IRUGO, mmc_omap_show_slot_name, NULL);
332
333static void
334mmc_omap_start_command(struct mmc_omap_host *host, struct mmc_command *cmd)
335{
336 u32 cmdreg;
337 u32 resptype;
338 u32 cmdtype;
339 u16 irq_mask;
340
341 host->cmd = cmd;
342
343 resptype = 0;
344 cmdtype = 0;
345
346 /* Our hardware needs to know exact type */
347 switch (mmc_resp_type(cmd)) {
348 case MMC_RSP_NONE:
349 break;
350 case MMC_RSP_R1:
351 case MMC_RSP_R1B:
352 /* resp 1, 1b, 6, 7 */
353 resptype = 1;
354 break;
355 case MMC_RSP_R2:
356 resptype = 2;
357 break;
358 case MMC_RSP_R3:
359 resptype = 3;
360 break;
361 default:
362 dev_err(mmc_dev(host->mmc), "Invalid response type: %04x\n", mmc_resp_type(cmd));
363 break;
364 }
365
366 if (mmc_cmd_type(cmd) == MMC_CMD_ADTC) {
367 cmdtype = OMAP_MMC_CMDTYPE_ADTC;
368 } else if (mmc_cmd_type(cmd) == MMC_CMD_BC) {
369 cmdtype = OMAP_MMC_CMDTYPE_BC;
370 } else if (mmc_cmd_type(cmd) == MMC_CMD_BCR) {
371 cmdtype = OMAP_MMC_CMDTYPE_BCR;
372 } else {
373 cmdtype = OMAP_MMC_CMDTYPE_AC;
374 }
375
376 cmdreg = cmd->opcode | (resptype << 8) | (cmdtype << 12);
377
378 if (host->current_slot->bus_mode == MMC_BUSMODE_OPENDRAIN)
379 cmdreg |= 1 << 6;
380
381 if (cmd->flags & MMC_RSP_BUSY)
382 cmdreg |= 1 << 11;
383
384 if (host->data && !(host->data->flags & MMC_DATA_WRITE))
385 cmdreg |= 1 << 15;
386
387 mod_timer(&host->cmd_abort_timer, jiffies + HZ/2);
388
389 OMAP_MMC_WRITE(host, CTO, 200);
390 OMAP_MMC_WRITE(host, ARGL, cmd->arg & 0xffff);
391 OMAP_MMC_WRITE(host, ARGH, cmd->arg >> 16);
392 irq_mask = OMAP_MMC_STAT_A_EMPTY | OMAP_MMC_STAT_A_FULL |
393 OMAP_MMC_STAT_CMD_CRC | OMAP_MMC_STAT_CMD_TOUT |
394 OMAP_MMC_STAT_DATA_CRC | OMAP_MMC_STAT_DATA_TOUT |
395 OMAP_MMC_STAT_END_OF_CMD | OMAP_MMC_STAT_CARD_ERR |
396 OMAP_MMC_STAT_END_OF_DATA;
397 if (cmd->opcode == MMC_ERASE)
398 irq_mask &= ~OMAP_MMC_STAT_DATA_TOUT;
399 OMAP_MMC_WRITE(host, IE, irq_mask);
400 OMAP_MMC_WRITE(host, CMD, cmdreg);
401}
402
403static void
404mmc_omap_release_dma(struct mmc_omap_host *host, struct mmc_data *data,
405 int abort)
406{
407 enum dma_data_direction dma_data_dir;
408 struct device *dev = mmc_dev(host->mmc);
409 struct dma_chan *c;
410
411 if (data->flags & MMC_DATA_WRITE) {
412 dma_data_dir = DMA_TO_DEVICE;
413 c = host->dma_tx;
414 } else {
415 dma_data_dir = DMA_FROM_DEVICE;
416 c = host->dma_rx;
417 }
418 if (c) {
419 if (data->error) {
420 dmaengine_terminate_all(c);
421 /* Claim nothing transferred on error... */
422 data->bytes_xfered = 0;
423 }
424 dev = c->device->dev;
425 }
426 dma_unmap_sg(dev, data->sg, host->sg_len, dma_data_dir);
427}
428
429static void mmc_omap_send_stop_work(struct work_struct *work)
430{
431 struct mmc_omap_host *host = container_of(work, struct mmc_omap_host,
432 send_stop_work);
433 struct mmc_omap_slot *slot = host->current_slot;
434 struct mmc_data *data = host->stop_data;
435 unsigned long tick_ns;
436
437 tick_ns = DIV_ROUND_UP(NSEC_PER_SEC, slot->fclk_freq);
438 ndelay(8*tick_ns);
439
440 mmc_omap_start_command(host, data->stop);
441}
442
443static void
444mmc_omap_xfer_done(struct mmc_omap_host *host, struct mmc_data *data)
445{
446 if (host->dma_in_use)
447 mmc_omap_release_dma(host, data, data->error);
448
449 host->data = NULL;
450 host->sg_len = 0;
451
452 /* NOTE: MMC layer will sometimes poll-wait CMD13 next, issuing
453 * dozens of requests until the card finishes writing data.
454 * It'd be cheaper to just wait till an EOFB interrupt arrives...
455 */
456
457 if (!data->stop) {
458 struct mmc_host *mmc;
459
460 host->mrq = NULL;
461 mmc = host->mmc;
462 mmc_omap_release_slot(host->current_slot, 1);
463 mmc_request_done(mmc, data->mrq);
464 return;
465 }
466
467 host->stop_data = data;
468 queue_work(host->mmc_omap_wq, &host->send_stop_work);
469}
470
471static void
472mmc_omap_send_abort(struct mmc_omap_host *host, int maxloops)
473{
474 struct mmc_omap_slot *slot = host->current_slot;
475 unsigned int restarts, passes, timeout;
476 u16 stat = 0;
477
478 /* Sending abort takes 80 clocks. Have some extra and round up */
479 timeout = DIV_ROUND_UP(120 * USEC_PER_SEC, slot->fclk_freq);
480 restarts = 0;
481 while (restarts < maxloops) {
482 OMAP_MMC_WRITE(host, STAT, 0xFFFF);
483 OMAP_MMC_WRITE(host, CMD, (3 << 12) | (1 << 7));
484
485 passes = 0;
486 while (passes < timeout) {
487 stat = OMAP_MMC_READ(host, STAT);
488 if (stat & OMAP_MMC_STAT_END_OF_CMD)
489 goto out;
490 udelay(1);
491 passes++;
492 }
493
494 restarts++;
495 }
496out:
497 OMAP_MMC_WRITE(host, STAT, stat);
498}
499
500static void
501mmc_omap_abort_xfer(struct mmc_omap_host *host, struct mmc_data *data)
502{
503 if (host->dma_in_use)
504 mmc_omap_release_dma(host, data, 1);
505
506 host->data = NULL;
507 host->sg_len = 0;
508
509 mmc_omap_send_abort(host, 10000);
510}
511
512static void
513mmc_omap_end_of_data(struct mmc_omap_host *host, struct mmc_data *data)
514{
515 unsigned long flags;
516 int done;
517
518 if (!host->dma_in_use) {
519 mmc_omap_xfer_done(host, data);
520 return;
521 }
522 done = 0;
523 spin_lock_irqsave(&host->dma_lock, flags);
524 if (host->dma_done)
525 done = 1;
526 else
527 host->brs_received = 1;
528 spin_unlock_irqrestore(&host->dma_lock, flags);
529 if (done)
530 mmc_omap_xfer_done(host, data);
531}
532
533static void
534mmc_omap_dma_done(struct mmc_omap_host *host, struct mmc_data *data)
535{
536 unsigned long flags;
537 int done;
538
539 done = 0;
540 spin_lock_irqsave(&host->dma_lock, flags);
541 if (host->brs_received)
542 done = 1;
543 else
544 host->dma_done = 1;
545 spin_unlock_irqrestore(&host->dma_lock, flags);
546 if (done)
547 mmc_omap_xfer_done(host, data);
548}
549
550static void
551mmc_omap_cmd_done(struct mmc_omap_host *host, struct mmc_command *cmd)
552{
553 host->cmd = NULL;
554
555 del_timer(&host->cmd_abort_timer);
556
557 if (cmd->flags & MMC_RSP_PRESENT) {
558 if (cmd->flags & MMC_RSP_136) {
559 /* response type 2 */
560 cmd->resp[3] =
561 OMAP_MMC_READ(host, RSP0) |
562 (OMAP_MMC_READ(host, RSP1) << 16);
563 cmd->resp[2] =
564 OMAP_MMC_READ(host, RSP2) |
565 (OMAP_MMC_READ(host, RSP3) << 16);
566 cmd->resp[1] =
567 OMAP_MMC_READ(host, RSP4) |
568 (OMAP_MMC_READ(host, RSP5) << 16);
569 cmd->resp[0] =
570 OMAP_MMC_READ(host, RSP6) |
571 (OMAP_MMC_READ(host, RSP7) << 16);
572 } else {
573 /* response types 1, 1b, 3, 4, 5, 6 */
574 cmd->resp[0] =
575 OMAP_MMC_READ(host, RSP6) |
576 (OMAP_MMC_READ(host, RSP7) << 16);
577 }
578 }
579
580 if (host->data == NULL || cmd->error) {
581 struct mmc_host *mmc;
582
583 if (host->data != NULL)
584 mmc_omap_abort_xfer(host, host->data);
585 host->mrq = NULL;
586 mmc = host->mmc;
587 mmc_omap_release_slot(host->current_slot, 1);
588 mmc_request_done(mmc, cmd->mrq);
589 }
590}
591
592/*
593 * Abort stuck command. Can occur when card is removed while it is being
594 * read.
595 */
596static void mmc_omap_abort_command(struct work_struct *work)
597{
598 struct mmc_omap_host *host = container_of(work, struct mmc_omap_host,
599 cmd_abort_work);
600 BUG_ON(!host->cmd);
601
602 dev_dbg(mmc_dev(host->mmc), "Aborting stuck command CMD%d\n",
603 host->cmd->opcode);
604
605 if (host->cmd->error == 0)
606 host->cmd->error = -ETIMEDOUT;
607
608 if (host->data == NULL) {
609 struct mmc_command *cmd;
610 struct mmc_host *mmc;
611
612 cmd = host->cmd;
613 host->cmd = NULL;
614 mmc_omap_send_abort(host, 10000);
615
616 host->mrq = NULL;
617 mmc = host->mmc;
618 mmc_omap_release_slot(host->current_slot, 1);
619 mmc_request_done(mmc, cmd->mrq);
620 } else
621 mmc_omap_cmd_done(host, host->cmd);
622
623 host->abort = 0;
624 enable_irq(host->irq);
625}
626
627static void
628mmc_omap_cmd_timer(struct timer_list *t)
629{
630 struct mmc_omap_host *host = from_timer(host, t, cmd_abort_timer);
631 unsigned long flags;
632
633 spin_lock_irqsave(&host->slot_lock, flags);
634 if (host->cmd != NULL && !host->abort) {
635 OMAP_MMC_WRITE(host, IE, 0);
636 disable_irq(host->irq);
637 host->abort = 1;
638 queue_work(host->mmc_omap_wq, &host->cmd_abort_work);
639 }
640 spin_unlock_irqrestore(&host->slot_lock, flags);
641}
642
643/* PIO only */
644static void
645mmc_omap_sg_to_buf(struct mmc_omap_host *host)
646{
647 struct scatterlist *sg;
648
649 sg = host->data->sg + host->sg_idx;
650 host->buffer_bytes_left = sg->length;
651 host->buffer = sg_virt(sg);
652 if (host->buffer_bytes_left > host->total_bytes_left)
653 host->buffer_bytes_left = host->total_bytes_left;
654}
655
656static void
657mmc_omap_clk_timer(struct timer_list *t)
658{
659 struct mmc_omap_host *host = from_timer(host, t, clk_timer);
660
661 mmc_omap_fclk_enable(host, 0);
662}
663
664/* PIO only */
665static void
666mmc_omap_xfer_data(struct mmc_omap_host *host, int write)
667{
668 int n, nwords;
669
670 if (host->buffer_bytes_left == 0) {
671 host->sg_idx++;
672 BUG_ON(host->sg_idx == host->sg_len);
673 mmc_omap_sg_to_buf(host);
674 }
675 n = 64;
676 if (n > host->buffer_bytes_left)
677 n = host->buffer_bytes_left;
678
679 /* Round up to handle odd number of bytes to transfer */
680 nwords = DIV_ROUND_UP(n, 2);
681
682 host->buffer_bytes_left -= n;
683 host->total_bytes_left -= n;
684 host->data->bytes_xfered += n;
685
686 if (write) {
687 __raw_writesw(host->virt_base + OMAP_MMC_REG(host, DATA),
688 host->buffer, nwords);
689 } else {
690 __raw_readsw(host->virt_base + OMAP_MMC_REG(host, DATA),
691 host->buffer, nwords);
692 }
693
694 host->buffer += nwords;
695}
696
697#ifdef CONFIG_MMC_DEBUG
698static void mmc_omap_report_irq(struct mmc_omap_host *host, u16 status)
699{
700 static const char *mmc_omap_status_bits[] = {
701 "EOC", "CD", "CB", "BRS", "EOFB", "DTO", "DCRC", "CTO",
702 "CCRC", "CRW", "AF", "AE", "OCRB", "CIRQ", "CERR"
703 };
704 int i;
705 char res[64], *buf = res;
706
707 buf += sprintf(buf, "MMC IRQ 0x%x:", status);
708
709 for (i = 0; i < ARRAY_SIZE(mmc_omap_status_bits); i++)
710 if (status & (1 << i))
711 buf += sprintf(buf, " %s", mmc_omap_status_bits[i]);
712 dev_vdbg(mmc_dev(host->mmc), "%s\n", res);
713}
714#else
715static void mmc_omap_report_irq(struct mmc_omap_host *host, u16 status)
716{
717}
718#endif
719
720
721static irqreturn_t mmc_omap_irq(int irq, void *dev_id)
722{
723 struct mmc_omap_host * host = (struct mmc_omap_host *)dev_id;
724 u16 status;
725 int end_command;
726 int end_transfer;
727 int transfer_error, cmd_error;
728
729 if (host->cmd == NULL && host->data == NULL) {
730 status = OMAP_MMC_READ(host, STAT);
731 dev_info(mmc_dev(host->slots[0]->mmc),
732 "Spurious IRQ 0x%04x\n", status);
733 if (status != 0) {
734 OMAP_MMC_WRITE(host, STAT, status);
735 OMAP_MMC_WRITE(host, IE, 0);
736 }
737 return IRQ_HANDLED;
738 }
739
740 end_command = 0;
741 end_transfer = 0;
742 transfer_error = 0;
743 cmd_error = 0;
744
745 while ((status = OMAP_MMC_READ(host, STAT)) != 0) {
746 int cmd;
747
748 OMAP_MMC_WRITE(host, STAT, status);
749 if (host->cmd != NULL)
750 cmd = host->cmd->opcode;
751 else
752 cmd = -1;
753 dev_dbg(mmc_dev(host->mmc), "MMC IRQ %04x (CMD %d): ",
754 status, cmd);
755 mmc_omap_report_irq(host, status);
756
757 if (host->total_bytes_left) {
758 if ((status & OMAP_MMC_STAT_A_FULL) ||
759 (status & OMAP_MMC_STAT_END_OF_DATA))
760 mmc_omap_xfer_data(host, 0);
761 if (status & OMAP_MMC_STAT_A_EMPTY)
762 mmc_omap_xfer_data(host, 1);
763 }
764
765 if (status & OMAP_MMC_STAT_END_OF_DATA)
766 end_transfer = 1;
767
768 if (status & OMAP_MMC_STAT_DATA_TOUT) {
769 dev_dbg(mmc_dev(host->mmc), "data timeout (CMD%d)\n",
770 cmd);
771 if (host->data) {
772 host->data->error = -ETIMEDOUT;
773 transfer_error = 1;
774 }
775 }
776
777 if (status & OMAP_MMC_STAT_DATA_CRC) {
778 if (host->data) {
779 host->data->error = -EILSEQ;
780 dev_dbg(mmc_dev(host->mmc),
781 "data CRC error, bytes left %d\n",
782 host->total_bytes_left);
783 transfer_error = 1;
784 } else {
785 dev_dbg(mmc_dev(host->mmc), "data CRC error\n");
786 }
787 }
788
789 if (status & OMAP_MMC_STAT_CMD_TOUT) {
790 /* Timeouts are routine with some commands */
791 if (host->cmd) {
792 struct mmc_omap_slot *slot =
793 host->current_slot;
794 if (slot == NULL ||
795 !mmc_omap_cover_is_open(slot))
796 dev_err(mmc_dev(host->mmc),
797 "command timeout (CMD%d)\n",
798 cmd);
799 host->cmd->error = -ETIMEDOUT;
800 end_command = 1;
801 cmd_error = 1;
802 }
803 }
804
805 if (status & OMAP_MMC_STAT_CMD_CRC) {
806 if (host->cmd) {
807 dev_err(mmc_dev(host->mmc),
808 "command CRC error (CMD%d, arg 0x%08x)\n",
809 cmd, host->cmd->arg);
810 host->cmd->error = -EILSEQ;
811 end_command = 1;
812 cmd_error = 1;
813 } else
814 dev_err(mmc_dev(host->mmc),
815 "command CRC error without cmd?\n");
816 }
817
818 if (status & OMAP_MMC_STAT_CARD_ERR) {
819 dev_dbg(mmc_dev(host->mmc),
820 "ignoring card status error (CMD%d)\n",
821 cmd);
822 end_command = 1;
823 }
824
825 /*
826 * NOTE: On 1610 the END_OF_CMD may come too early when
827 * starting a write
828 */
829 if ((status & OMAP_MMC_STAT_END_OF_CMD) &&
830 (!(status & OMAP_MMC_STAT_A_EMPTY))) {
831 end_command = 1;
832 }
833 }
834
835 if (cmd_error && host->data) {
836 del_timer(&host->cmd_abort_timer);
837 host->abort = 1;
838 OMAP_MMC_WRITE(host, IE, 0);
839 disable_irq_nosync(host->irq);
840 queue_work(host->mmc_omap_wq, &host->cmd_abort_work);
841 return IRQ_HANDLED;
842 }
843
844 if (end_command && host->cmd)
845 mmc_omap_cmd_done(host, host->cmd);
846 if (host->data != NULL) {
847 if (transfer_error)
848 mmc_omap_xfer_done(host, host->data);
849 else if (end_transfer)
850 mmc_omap_end_of_data(host, host->data);
851 }
852
853 return IRQ_HANDLED;
854}
855
856void omap_mmc_notify_cover_event(struct device *dev, int num, int is_closed)
857{
858 int cover_open;
859 struct mmc_omap_host *host = dev_get_drvdata(dev);
860 struct mmc_omap_slot *slot = host->slots[num];
861
862 BUG_ON(num >= host->nr_slots);
863
864 /* Other subsystems can call in here before we're initialised. */
865 if (host->nr_slots == 0 || !host->slots[num])
866 return;
867
868 cover_open = mmc_omap_cover_is_open(slot);
869 if (cover_open != slot->cover_open) {
870 slot->cover_open = cover_open;
871 sysfs_notify(&slot->mmc->class_dev.kobj, NULL, "cover_switch");
872 }
873
874 tasklet_hi_schedule(&slot->cover_tasklet);
875}
876
877static void mmc_omap_cover_timer(struct timer_list *t)
878{
879 struct mmc_omap_slot *slot = from_timer(slot, t, cover_timer);
880 tasklet_schedule(&slot->cover_tasklet);
881}
882
883static void mmc_omap_cover_handler(unsigned long param)
884{
885 struct mmc_omap_slot *slot = (struct mmc_omap_slot *)param;
886 int cover_open = mmc_omap_cover_is_open(slot);
887
888 mmc_detect_change(slot->mmc, 0);
889 if (!cover_open)
890 return;
891
892 /*
893 * If no card is inserted, we postpone polling until
894 * the cover has been closed.
895 */
896 if (slot->mmc->card == NULL)
897 return;
898
899 mod_timer(&slot->cover_timer,
900 jiffies + msecs_to_jiffies(OMAP_MMC_COVER_POLL_DELAY));
901}
902
903static void mmc_omap_dma_callback(void *priv)
904{
905 struct mmc_omap_host *host = priv;
906 struct mmc_data *data = host->data;
907
908 /* If we got to the end of DMA, assume everything went well */
909 data->bytes_xfered += data->blocks * data->blksz;
910
911 mmc_omap_dma_done(host, data);
912}
913
914static inline void set_cmd_timeout(struct mmc_omap_host *host, struct mmc_request *req)
915{
916 u16 reg;
917
918 reg = OMAP_MMC_READ(host, SDIO);
919 reg &= ~(1 << 5);
920 OMAP_MMC_WRITE(host, SDIO, reg);
921 /* Set maximum timeout */
922 OMAP_MMC_WRITE(host, CTO, 0xff);
923}
924
925static inline void set_data_timeout(struct mmc_omap_host *host, struct mmc_request *req)
926{
927 unsigned int timeout, cycle_ns;
928 u16 reg;
929
930 cycle_ns = 1000000000 / host->current_slot->fclk_freq;
931 timeout = req->data->timeout_ns / cycle_ns;
932 timeout += req->data->timeout_clks;
933
934 /* Check if we need to use timeout multiplier register */
935 reg = OMAP_MMC_READ(host, SDIO);
936 if (timeout > 0xffff) {
937 reg |= (1 << 5);
938 timeout /= 1024;
939 } else
940 reg &= ~(1 << 5);
941 OMAP_MMC_WRITE(host, SDIO, reg);
942 OMAP_MMC_WRITE(host, DTO, timeout);
943}
944
945static void
946mmc_omap_prepare_data(struct mmc_omap_host *host, struct mmc_request *req)
947{
948 struct mmc_data *data = req->data;
949 int i, use_dma = 1, block_size;
950 struct scatterlist *sg;
951 unsigned sg_len;
952
953 host->data = data;
954 if (data == NULL) {
955 OMAP_MMC_WRITE(host, BLEN, 0);
956 OMAP_MMC_WRITE(host, NBLK, 0);
957 OMAP_MMC_WRITE(host, BUF, 0);
958 host->dma_in_use = 0;
959 set_cmd_timeout(host, req);
960 return;
961 }
962
963 block_size = data->blksz;
964
965 OMAP_MMC_WRITE(host, NBLK, data->blocks - 1);
966 OMAP_MMC_WRITE(host, BLEN, block_size - 1);
967 set_data_timeout(host, req);
968
969 /* cope with calling layer confusion; it issues "single
970 * block" writes using multi-block scatterlists.
971 */
972 sg_len = (data->blocks == 1) ? 1 : data->sg_len;
973
974 /* Only do DMA for entire blocks */
975 for_each_sg(data->sg, sg, sg_len, i) {
976 if ((sg->length % block_size) != 0) {
977 use_dma = 0;
978 break;
979 }
980 }
981
982 host->sg_idx = 0;
983 if (use_dma) {
984 enum dma_data_direction dma_data_dir;
985 struct dma_async_tx_descriptor *tx;
986 struct dma_chan *c;
987 u32 burst, *bp;
988 u16 buf;
989
990 /*
991 * FIFO is 16x2 bytes on 15xx, and 32x2 bytes on 16xx
992 * and 24xx. Use 16 or 32 word frames when the
993 * blocksize is at least that large. Blocksize is
994 * usually 512 bytes; but not for some SD reads.
995 */
996 burst = mmc_omap15xx() ? 32 : 64;
997 if (burst > data->blksz)
998 burst = data->blksz;
999
1000 burst >>= 1;
1001
1002 if (data->flags & MMC_DATA_WRITE) {
1003 c = host->dma_tx;
1004 bp = &host->dma_tx_burst;
1005 buf = 0x0f80 | (burst - 1) << 0;
1006 dma_data_dir = DMA_TO_DEVICE;
1007 } else {
1008 c = host->dma_rx;
1009 bp = &host->dma_rx_burst;
1010 buf = 0x800f | (burst - 1) << 8;
1011 dma_data_dir = DMA_FROM_DEVICE;
1012 }
1013
1014 if (!c)
1015 goto use_pio;
1016
1017 /* Only reconfigure if we have a different burst size */
1018 if (*bp != burst) {
1019 struct dma_slave_config cfg = {
1020 .src_addr = host->phys_base +
1021 OMAP_MMC_REG(host, DATA),
1022 .dst_addr = host->phys_base +
1023 OMAP_MMC_REG(host, DATA),
1024 .src_addr_width = DMA_SLAVE_BUSWIDTH_2_BYTES,
1025 .dst_addr_width = DMA_SLAVE_BUSWIDTH_2_BYTES,
1026 .src_maxburst = burst,
1027 .dst_maxburst = burst,
1028 };
1029
1030 if (dmaengine_slave_config(c, &cfg))
1031 goto use_pio;
1032
1033 *bp = burst;
1034 }
1035
1036 host->sg_len = dma_map_sg(c->device->dev, data->sg, sg_len,
1037 dma_data_dir);
1038 if (host->sg_len == 0)
1039 goto use_pio;
1040
1041 tx = dmaengine_prep_slave_sg(c, data->sg, host->sg_len,
1042 data->flags & MMC_DATA_WRITE ? DMA_MEM_TO_DEV : DMA_DEV_TO_MEM,
1043 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
1044 if (!tx)
1045 goto use_pio;
1046
1047 OMAP_MMC_WRITE(host, BUF, buf);
1048
1049 tx->callback = mmc_omap_dma_callback;
1050 tx->callback_param = host;
1051 dmaengine_submit(tx);
1052 host->brs_received = 0;
1053 host->dma_done = 0;
1054 host->dma_in_use = 1;
1055 return;
1056 }
1057 use_pio:
1058
1059 /* Revert to PIO? */
1060 OMAP_MMC_WRITE(host, BUF, 0x1f1f);
1061 host->total_bytes_left = data->blocks * block_size;
1062 host->sg_len = sg_len;
1063 mmc_omap_sg_to_buf(host);
1064 host->dma_in_use = 0;
1065}
1066
1067static void mmc_omap_start_request(struct mmc_omap_host *host,
1068 struct mmc_request *req)
1069{
1070 BUG_ON(host->mrq != NULL);
1071
1072 host->mrq = req;
1073
1074 /* only touch fifo AFTER the controller readies it */
1075 mmc_omap_prepare_data(host, req);
1076 mmc_omap_start_command(host, req->cmd);
1077 if (host->dma_in_use) {
1078 struct dma_chan *c = host->data->flags & MMC_DATA_WRITE ?
1079 host->dma_tx : host->dma_rx;
1080
1081 dma_async_issue_pending(c);
1082 }
1083}
1084
1085static void mmc_omap_request(struct mmc_host *mmc, struct mmc_request *req)
1086{
1087 struct mmc_omap_slot *slot = mmc_priv(mmc);
1088 struct mmc_omap_host *host = slot->host;
1089 unsigned long flags;
1090
1091 spin_lock_irqsave(&host->slot_lock, flags);
1092 if (host->mmc != NULL) {
1093 BUG_ON(slot->mrq != NULL);
1094 slot->mrq = req;
1095 spin_unlock_irqrestore(&host->slot_lock, flags);
1096 return;
1097 } else
1098 host->mmc = mmc;
1099 spin_unlock_irqrestore(&host->slot_lock, flags);
1100 mmc_omap_select_slot(slot, 1);
1101 mmc_omap_start_request(host, req);
1102}
1103
1104static void mmc_omap_set_power(struct mmc_omap_slot *slot, int power_on,
1105 int vdd)
1106{
1107 struct mmc_omap_host *host;
1108
1109 host = slot->host;
1110
1111 if (slot->pdata->set_power != NULL)
1112 slot->pdata->set_power(mmc_dev(slot->mmc), slot->id, power_on,
1113 vdd);
1114 if (mmc_omap2()) {
1115 u16 w;
1116
1117 if (power_on) {
1118 w = OMAP_MMC_READ(host, CON);
1119 OMAP_MMC_WRITE(host, CON, w | (1 << 11));
1120 } else {
1121 w = OMAP_MMC_READ(host, CON);
1122 OMAP_MMC_WRITE(host, CON, w & ~(1 << 11));
1123 }
1124 }
1125}
1126
1127static int mmc_omap_calc_divisor(struct mmc_host *mmc, struct mmc_ios *ios)
1128{
1129 struct mmc_omap_slot *slot = mmc_priv(mmc);
1130 struct mmc_omap_host *host = slot->host;
1131 int func_clk_rate = clk_get_rate(host->fclk);
1132 int dsor;
1133
1134 if (ios->clock == 0)
1135 return 0;
1136
1137 dsor = func_clk_rate / ios->clock;
1138 if (dsor < 1)
1139 dsor = 1;
1140
1141 if (func_clk_rate / dsor > ios->clock)
1142 dsor++;
1143
1144 if (dsor > 250)
1145 dsor = 250;
1146
1147 slot->fclk_freq = func_clk_rate / dsor;
1148
1149 if (ios->bus_width == MMC_BUS_WIDTH_4)
1150 dsor |= 1 << 15;
1151
1152 return dsor;
1153}
1154
1155static void mmc_omap_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
1156{
1157 struct mmc_omap_slot *slot = mmc_priv(mmc);
1158 struct mmc_omap_host *host = slot->host;
1159 int i, dsor;
1160 int clk_enabled;
1161
1162 mmc_omap_select_slot(slot, 0);
1163
1164 dsor = mmc_omap_calc_divisor(mmc, ios);
1165
1166 if (ios->vdd != slot->vdd)
1167 slot->vdd = ios->vdd;
1168
1169 clk_enabled = 0;
1170 switch (ios->power_mode) {
1171 case MMC_POWER_OFF:
1172 mmc_omap_set_power(slot, 0, ios->vdd);
1173 break;
1174 case MMC_POWER_UP:
1175 /* Cannot touch dsor yet, just power up MMC */
1176 mmc_omap_set_power(slot, 1, ios->vdd);
1177 goto exit;
1178 case MMC_POWER_ON:
1179 mmc_omap_fclk_enable(host, 1);
1180 clk_enabled = 1;
1181 dsor |= 1 << 11;
1182 break;
1183 }
1184
1185 if (slot->bus_mode != ios->bus_mode) {
1186 if (slot->pdata->set_bus_mode != NULL)
1187 slot->pdata->set_bus_mode(mmc_dev(mmc), slot->id,
1188 ios->bus_mode);
1189 slot->bus_mode = ios->bus_mode;
1190 }
1191
1192 /* On insanely high arm_per frequencies something sometimes
1193 * goes somehow out of sync, and the POW bit is not being set,
1194 * which results in the while loop below getting stuck.
1195 * Writing to the CON register twice seems to do the trick. */
1196 for (i = 0; i < 2; i++)
1197 OMAP_MMC_WRITE(host, CON, dsor);
1198 slot->saved_con = dsor;
1199 if (ios->power_mode == MMC_POWER_ON) {
1200 /* worst case at 400kHz, 80 cycles makes 200 microsecs */
1201 int usecs = 250;
1202
1203 /* Send clock cycles, poll completion */
1204 OMAP_MMC_WRITE(host, IE, 0);
1205 OMAP_MMC_WRITE(host, STAT, 0xffff);
1206 OMAP_MMC_WRITE(host, CMD, 1 << 7);
1207 while (usecs > 0 && (OMAP_MMC_READ(host, STAT) & 1) == 0) {
1208 udelay(1);
1209 usecs--;
1210 }
1211 OMAP_MMC_WRITE(host, STAT, 1);
1212 }
1213
1214exit:
1215 mmc_omap_release_slot(slot, clk_enabled);
1216}
1217
1218static const struct mmc_host_ops mmc_omap_ops = {
1219 .request = mmc_omap_request,
1220 .set_ios = mmc_omap_set_ios,
1221};
1222
1223static int mmc_omap_new_slot(struct mmc_omap_host *host, int id)
1224{
1225 struct mmc_omap_slot *slot = NULL;
1226 struct mmc_host *mmc;
1227 int r;
1228
1229 mmc = mmc_alloc_host(sizeof(struct mmc_omap_slot), host->dev);
1230 if (mmc == NULL)
1231 return -ENOMEM;
1232
1233 slot = mmc_priv(mmc);
1234 slot->host = host;
1235 slot->mmc = mmc;
1236 slot->id = id;
1237 slot->pdata = &host->pdata->slots[id];
1238
1239 host->slots[id] = slot;
1240
1241 mmc->caps = 0;
1242 if (host->pdata->slots[id].wires >= 4)
1243 mmc->caps |= MMC_CAP_4_BIT_DATA | MMC_CAP_ERASE;
1244
1245 mmc->ops = &mmc_omap_ops;
1246 mmc->f_min = 400000;
1247
1248 if (mmc_omap2())
1249 mmc->f_max = 48000000;
1250 else
1251 mmc->f_max = 24000000;
1252 if (host->pdata->max_freq)
1253 mmc->f_max = min(host->pdata->max_freq, mmc->f_max);
1254 mmc->ocr_avail = slot->pdata->ocr_mask;
1255
1256 /* Use scatterlist DMA to reduce per-transfer costs.
1257 * NOTE max_seg_size assumption that small blocks aren't
1258 * normally used (except e.g. for reading SD registers).
1259 */
1260 mmc->max_segs = 32;
1261 mmc->max_blk_size = 2048; /* BLEN is 11 bits (+1) */
1262 mmc->max_blk_count = 2048; /* NBLK is 11 bits (+1) */
1263 mmc->max_req_size = mmc->max_blk_size * mmc->max_blk_count;
1264 mmc->max_seg_size = mmc->max_req_size;
1265
1266 if (slot->pdata->get_cover_state != NULL) {
1267 timer_setup(&slot->cover_timer, mmc_omap_cover_timer, 0);
1268 tasklet_init(&slot->cover_tasklet, mmc_omap_cover_handler,
1269 (unsigned long)slot);
1270 }
1271
1272 r = mmc_add_host(mmc);
1273 if (r < 0)
1274 goto err_remove_host;
1275
1276 if (slot->pdata->name != NULL) {
1277 r = device_create_file(&mmc->class_dev,
1278 &dev_attr_slot_name);
1279 if (r < 0)
1280 goto err_remove_host;
1281 }
1282
1283 if (slot->pdata->get_cover_state != NULL) {
1284 r = device_create_file(&mmc->class_dev,
1285 &dev_attr_cover_switch);
1286 if (r < 0)
1287 goto err_remove_slot_name;
1288 tasklet_schedule(&slot->cover_tasklet);
1289 }
1290
1291 return 0;
1292
1293err_remove_slot_name:
1294 if (slot->pdata->name != NULL)
1295 device_remove_file(&mmc->class_dev, &dev_attr_slot_name);
1296err_remove_host:
1297 mmc_remove_host(mmc);
1298 mmc_free_host(mmc);
1299 return r;
1300}
1301
1302static void mmc_omap_remove_slot(struct mmc_omap_slot *slot)
1303{
1304 struct mmc_host *mmc = slot->mmc;
1305
1306 if (slot->pdata->name != NULL)
1307 device_remove_file(&mmc->class_dev, &dev_attr_slot_name);
1308 if (slot->pdata->get_cover_state != NULL)
1309 device_remove_file(&mmc->class_dev, &dev_attr_cover_switch);
1310
1311 tasklet_kill(&slot->cover_tasklet);
1312 del_timer_sync(&slot->cover_timer);
1313 flush_workqueue(slot->host->mmc_omap_wq);
1314
1315 mmc_remove_host(mmc);
1316 mmc_free_host(mmc);
1317}
1318
1319static int mmc_omap_probe(struct platform_device *pdev)
1320{
1321 struct omap_mmc_platform_data *pdata = pdev->dev.platform_data;
1322 struct mmc_omap_host *host = NULL;
1323 struct resource *res;
1324 int i, ret = 0;
1325 int irq;
1326
1327 if (pdata == NULL) {
1328 dev_err(&pdev->dev, "platform data missing\n");
1329 return -ENXIO;
1330 }
1331 if (pdata->nr_slots == 0) {
1332 dev_err(&pdev->dev, "no slots\n");
1333 return -EPROBE_DEFER;
1334 }
1335
1336 host = devm_kzalloc(&pdev->dev, sizeof(struct mmc_omap_host),
1337 GFP_KERNEL);
1338 if (host == NULL)
1339 return -ENOMEM;
1340
1341 irq = platform_get_irq(pdev, 0);
1342 if (irq < 0)
1343 return -ENXIO;
1344
1345 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1346 host->virt_base = devm_ioremap_resource(&pdev->dev, res);
1347 if (IS_ERR(host->virt_base))
1348 return PTR_ERR(host->virt_base);
1349
1350 INIT_WORK(&host->slot_release_work, mmc_omap_slot_release_work);
1351 INIT_WORK(&host->send_stop_work, mmc_omap_send_stop_work);
1352
1353 INIT_WORK(&host->cmd_abort_work, mmc_omap_abort_command);
1354 timer_setup(&host->cmd_abort_timer, mmc_omap_cmd_timer, 0);
1355
1356 spin_lock_init(&host->clk_lock);
1357 timer_setup(&host->clk_timer, mmc_omap_clk_timer, 0);
1358
1359 spin_lock_init(&host->dma_lock);
1360 spin_lock_init(&host->slot_lock);
1361 init_waitqueue_head(&host->slot_wq);
1362
1363 host->pdata = pdata;
1364 host->features = host->pdata->slots[0].features;
1365 host->dev = &pdev->dev;
1366 platform_set_drvdata(pdev, host);
1367
1368 host->id = pdev->id;
1369 host->irq = irq;
1370 host->phys_base = res->start;
1371 host->iclk = clk_get(&pdev->dev, "ick");
1372 if (IS_ERR(host->iclk))
1373 return PTR_ERR(host->iclk);
1374 clk_enable(host->iclk);
1375
1376 host->fclk = clk_get(&pdev->dev, "fck");
1377 if (IS_ERR(host->fclk)) {
1378 ret = PTR_ERR(host->fclk);
1379 goto err_free_iclk;
1380 }
1381
1382 host->dma_tx_burst = -1;
1383 host->dma_rx_burst = -1;
1384
1385 host->dma_tx = dma_request_chan(&pdev->dev, "tx");
1386 if (IS_ERR(host->dma_tx)) {
1387 ret = PTR_ERR(host->dma_tx);
1388 if (ret == -EPROBE_DEFER) {
1389 clk_put(host->fclk);
1390 goto err_free_iclk;
1391 }
1392
1393 host->dma_tx = NULL;
1394 dev_warn(host->dev, "TX DMA channel request failed\n");
1395 }
1396
1397 host->dma_rx = dma_request_chan(&pdev->dev, "rx");
1398 if (IS_ERR(host->dma_rx)) {
1399 ret = PTR_ERR(host->dma_rx);
1400 if (ret == -EPROBE_DEFER) {
1401 if (host->dma_tx)
1402 dma_release_channel(host->dma_tx);
1403 clk_put(host->fclk);
1404 goto err_free_iclk;
1405 }
1406
1407 host->dma_rx = NULL;
1408 dev_warn(host->dev, "RX DMA channel request failed\n");
1409 }
1410
1411 ret = request_irq(host->irq, mmc_omap_irq, 0, DRIVER_NAME, host);
1412 if (ret)
1413 goto err_free_dma;
1414
1415 if (pdata->init != NULL) {
1416 ret = pdata->init(&pdev->dev);
1417 if (ret < 0)
1418 goto err_free_irq;
1419 }
1420
1421 host->nr_slots = pdata->nr_slots;
1422 host->reg_shift = (mmc_omap7xx() ? 1 : 2);
1423
1424 host->mmc_omap_wq = alloc_workqueue("mmc_omap", 0, 0);
1425 if (!host->mmc_omap_wq) {
1426 ret = -ENOMEM;
1427 goto err_plat_cleanup;
1428 }
1429
1430 for (i = 0; i < pdata->nr_slots; i++) {
1431 ret = mmc_omap_new_slot(host, i);
1432 if (ret < 0) {
1433 while (--i >= 0)
1434 mmc_omap_remove_slot(host->slots[i]);
1435
1436 goto err_destroy_wq;
1437 }
1438 }
1439
1440 return 0;
1441
1442err_destroy_wq:
1443 destroy_workqueue(host->mmc_omap_wq);
1444err_plat_cleanup:
1445 if (pdata->cleanup)
1446 pdata->cleanup(&pdev->dev);
1447err_free_irq:
1448 free_irq(host->irq, host);
1449err_free_dma:
1450 if (host->dma_tx)
1451 dma_release_channel(host->dma_tx);
1452 if (host->dma_rx)
1453 dma_release_channel(host->dma_rx);
1454 clk_put(host->fclk);
1455err_free_iclk:
1456 clk_disable(host->iclk);
1457 clk_put(host->iclk);
1458 return ret;
1459}
1460
1461static int mmc_omap_remove(struct platform_device *pdev)
1462{
1463 struct mmc_omap_host *host = platform_get_drvdata(pdev);
1464 int i;
1465
1466 BUG_ON(host == NULL);
1467
1468 for (i = 0; i < host->nr_slots; i++)
1469 mmc_omap_remove_slot(host->slots[i]);
1470
1471 if (host->pdata->cleanup)
1472 host->pdata->cleanup(&pdev->dev);
1473
1474 mmc_omap_fclk_enable(host, 0);
1475 free_irq(host->irq, host);
1476 clk_put(host->fclk);
1477 clk_disable(host->iclk);
1478 clk_put(host->iclk);
1479
1480 if (host->dma_tx)
1481 dma_release_channel(host->dma_tx);
1482 if (host->dma_rx)
1483 dma_release_channel(host->dma_rx);
1484
1485 destroy_workqueue(host->mmc_omap_wq);
1486
1487 return 0;
1488}
1489
1490#if IS_BUILTIN(CONFIG_OF)
1491static const struct of_device_id mmc_omap_match[] = {
1492 { .compatible = "ti,omap2420-mmc", },
1493 { },
1494};
1495MODULE_DEVICE_TABLE(of, mmc_omap_match);
1496#endif
1497
1498static struct platform_driver mmc_omap_driver = {
1499 .probe = mmc_omap_probe,
1500 .remove = mmc_omap_remove,
1501 .driver = {
1502 .name = DRIVER_NAME,
1503 .of_match_table = of_match_ptr(mmc_omap_match),
1504 },
1505};
1506
1507module_platform_driver(mmc_omap_driver);
1508MODULE_DESCRIPTION("OMAP Multimedia Card driver");
1509MODULE_LICENSE("GPL");
1510MODULE_ALIAS("platform:" DRIVER_NAME);
1511MODULE_AUTHOR("Juha Yrjölä");