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