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