blob: a1dfa74c50ab6ab68770ff199fffc5421cde6ced [file] [log] [blame]
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001/*
Pierre Ossman70f10482007-07-11 20:04:50 +02002 * linux/drivers/mmc/host/omap.c
Carlos Aguiar730c9b72006-03-29 09:21:00 +01003 *
4 * Copyright (C) 2004 Nokia Corporation
5 * Written by Tuukka Tikkanen and Juha Yrjölä<juha.yrjola@nokia.com>
6 * Misc hacks here and there by Tony Lindgren <tony@atomide.com>
7 * Other hacks (DMA, SD, etc) by David Brownell
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 */
13
Carlos Aguiar730c9b72006-03-29 09:21:00 +010014#include <linux/module.h>
15#include <linux/moduleparam.h>
16#include <linux/init.h>
17#include <linux/ioport.h>
18#include <linux/platform_device.h>
19#include <linux/interrupt.h>
20#include <linux/dma-mapping.h>
21#include <linux/delay.h>
22#include <linux/spinlock.h>
23#include <linux/timer.h>
24#include <linux/mmc/host.h>
Carlos Aguiar730c9b72006-03-29 09:21:00 +010025#include <linux/mmc/card.h>
26#include <linux/clk.h>
Jens Axboe45711f12007-10-22 21:19:53 +020027#include <linux/scatterlist.h>
David Brownell6d16bfb2008-01-27 18:14:49 +010028#include <linux/i2c/tps65010.h>
Carlos Aguiar730c9b72006-03-29 09:21:00 +010029
30#include <asm/io.h>
31#include <asm/irq.h>
Carlos Aguiar730c9b72006-03-29 09:21:00 +010032#include <asm/mach-types.h>
33
34#include <asm/arch/board.h>
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -040035#include <asm/arch/mmc.h>
Carlos Aguiar730c9b72006-03-29 09:21:00 +010036#include <asm/arch/gpio.h>
37#include <asm/arch/dma.h>
38#include <asm/arch/mux.h>
39#include <asm/arch/fpga.h>
Carlos Aguiar730c9b72006-03-29 09:21:00 +010040
Juha Yrjola juha.yrjola0551f4d2006-11-11 23:38:36 +010041#define OMAP_MMC_REG_CMD 0x00
42#define OMAP_MMC_REG_ARGL 0x04
43#define OMAP_MMC_REG_ARGH 0x08
44#define OMAP_MMC_REG_CON 0x0c
45#define OMAP_MMC_REG_STAT 0x10
46#define OMAP_MMC_REG_IE 0x14
47#define OMAP_MMC_REG_CTO 0x18
48#define OMAP_MMC_REG_DTO 0x1c
49#define OMAP_MMC_REG_DATA 0x20
50#define OMAP_MMC_REG_BLEN 0x24
51#define OMAP_MMC_REG_NBLK 0x28
52#define OMAP_MMC_REG_BUF 0x2c
53#define OMAP_MMC_REG_SDIO 0x34
54#define OMAP_MMC_REG_REV 0x3c
55#define OMAP_MMC_REG_RSP0 0x40
56#define OMAP_MMC_REG_RSP1 0x44
57#define OMAP_MMC_REG_RSP2 0x48
58#define OMAP_MMC_REG_RSP3 0x4c
59#define OMAP_MMC_REG_RSP4 0x50
60#define OMAP_MMC_REG_RSP5 0x54
61#define OMAP_MMC_REG_RSP6 0x58
62#define OMAP_MMC_REG_RSP7 0x5c
63#define OMAP_MMC_REG_IOSR 0x60
64#define OMAP_MMC_REG_SYSC 0x64
65#define OMAP_MMC_REG_SYSS 0x68
66
67#define OMAP_MMC_STAT_CARD_ERR (1 << 14)
68#define OMAP_MMC_STAT_CARD_IRQ (1 << 13)
69#define OMAP_MMC_STAT_OCR_BUSY (1 << 12)
70#define OMAP_MMC_STAT_A_EMPTY (1 << 11)
71#define OMAP_MMC_STAT_A_FULL (1 << 10)
72#define OMAP_MMC_STAT_CMD_CRC (1 << 8)
73#define OMAP_MMC_STAT_CMD_TOUT (1 << 7)
74#define OMAP_MMC_STAT_DATA_CRC (1 << 6)
75#define OMAP_MMC_STAT_DATA_TOUT (1 << 5)
76#define OMAP_MMC_STAT_END_BUSY (1 << 4)
77#define OMAP_MMC_STAT_END_OF_DATA (1 << 3)
78#define OMAP_MMC_STAT_CARD_BUSY (1 << 2)
79#define OMAP_MMC_STAT_END_OF_CMD (1 << 0)
80
81#define OMAP_MMC_READ(host, reg) __raw_readw((host)->virt_base + OMAP_MMC_REG_##reg)
82#define OMAP_MMC_WRITE(host, reg, val) __raw_writew((val), (host)->virt_base + OMAP_MMC_REG_##reg)
83
84/*
85 * Command types
86 */
87#define OMAP_MMC_CMDTYPE_BC 0
88#define OMAP_MMC_CMDTYPE_BCR 1
89#define OMAP_MMC_CMDTYPE_AC 2
90#define OMAP_MMC_CMDTYPE_ADTC 3
91
Carlos Aguiar730c9b72006-03-29 09:21:00 +010092
93#define DRIVER_NAME "mmci-omap"
Carlos Aguiar730c9b72006-03-29 09:21:00 +010094
95/* Specifies how often in millisecs to poll for card status changes
96 * when the cover switch is open */
97#define OMAP_MMC_SWITCH_POLL_DELAY 500
98
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -040099struct mmc_omap_host;
100
101struct mmc_omap_slot {
102 int id;
103 unsigned int vdd;
104 u16 saved_con;
105 u16 bus_mode;
106 unsigned int fclk_freq;
107 unsigned powered:1;
108
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400109 struct work_struct switch_work;
110 struct timer_list switch_timer;
111 unsigned cover_open;
112
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400113 struct mmc_request *mrq;
114 struct mmc_omap_host *host;
115 struct mmc_host *mmc;
116 struct omap_mmc_slot_data *pdata;
117};
118
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100119struct mmc_omap_host {
120 int initialized;
121 int suspended;
122 struct mmc_request * mrq;
123 struct mmc_command * cmd;
124 struct mmc_data * data;
125 struct mmc_host * mmc;
126 struct device * dev;
127 unsigned char id; /* 16xx chips have 2 MMC blocks */
128 struct clk * iclk;
129 struct clk * fclk;
Juha Yrjola juha.yrjola89783b1e42006-11-11 23:36:01 +0100130 struct resource *mem_res;
131 void __iomem *virt_base;
132 unsigned int phys_base;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100133 int irq;
134 unsigned char bus_mode;
135 unsigned char hw_bus_mode;
136
Jarkko Lavineneb1860b2008-03-26 16:09:29 -0400137 struct work_struct cmd_abort;
138 struct timer_list cmd_timer;
139
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100140 unsigned int sg_len;
141 int sg_idx;
142 u16 * buffer;
143 u32 buffer_bytes_left;
144 u32 total_bytes_left;
145
146 unsigned use_dma:1;
147 unsigned brs_received:1, dma_done:1;
148 unsigned dma_is_read:1;
149 unsigned dma_in_use:1;
150 int dma_ch;
151 spinlock_t dma_lock;
152 struct timer_list dma_timer;
153 unsigned dma_len;
154
155 short power_pin;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100156
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400157 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 omap_mmc_platform_data *pdata;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100164};
165
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400166static void mmc_omap_select_slot(struct mmc_omap_slot *slot, int claimed)
167{
168 struct mmc_omap_host *host = slot->host;
169 unsigned long flags;
170
171 if (claimed)
172 goto no_claim;
173 spin_lock_irqsave(&host->slot_lock, flags);
174 while (host->mmc != NULL) {
175 spin_unlock_irqrestore(&host->slot_lock, flags);
176 wait_event(host->slot_wq, host->mmc == NULL);
177 spin_lock_irqsave(&host->slot_lock, flags);
178 }
179 host->mmc = slot->mmc;
180 spin_unlock_irqrestore(&host->slot_lock, flags);
181no_claim:
182 clk_enable(host->fclk);
183 if (host->current_slot != slot) {
184 if (host->pdata->switch_slot != NULL)
185 host->pdata->switch_slot(mmc_dev(slot->mmc), slot->id);
186 host->current_slot = slot;
187 }
188
189 /* Doing the dummy read here seems to work around some bug
190 * at least in OMAP24xx silicon where the command would not
191 * start after writing the CMD register. Sigh. */
192 OMAP_MMC_READ(host, CON);
193
194 OMAP_MMC_WRITE(host, CON, slot->saved_con);
195}
196
197static void mmc_omap_start_request(struct mmc_omap_host *host,
198 struct mmc_request *req);
199
200static void mmc_omap_release_slot(struct mmc_omap_slot *slot)
201{
202 struct mmc_omap_host *host = slot->host;
203 unsigned long flags;
204 int i;
205
206 BUG_ON(slot == NULL || host->mmc == NULL);
207 clk_disable(host->fclk);
208
209 spin_lock_irqsave(&host->slot_lock, flags);
210 /* Check for any pending requests */
211 for (i = 0; i < host->nr_slots; i++) {
212 struct mmc_omap_slot *new_slot;
213 struct mmc_request *rq;
214
215 if (host->slots[i] == NULL || host->slots[i]->mrq == NULL)
216 continue;
217
218 new_slot = host->slots[i];
219 /* The current slot should not have a request in queue */
220 BUG_ON(new_slot == host->current_slot);
221
222 host->mmc = new_slot->mmc;
223 spin_unlock_irqrestore(&host->slot_lock, flags);
224 mmc_omap_select_slot(new_slot, 1);
225 rq = new_slot->mrq;
226 new_slot->mrq = NULL;
227 mmc_omap_start_request(host, rq);
228 return;
229 }
230
231 host->mmc = NULL;
232 wake_up(&host->slot_wq);
233 spin_unlock_irqrestore(&host->slot_lock, flags);
234}
235
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400236static inline
237int mmc_omap_cover_is_open(struct mmc_omap_slot *slot)
238{
239 return slot->pdata->get_cover_state(mmc_dev(slot->mmc), slot->id);
240}
241
242static ssize_t
243mmc_omap_show_cover_switch(struct device *dev, struct device_attribute *attr,
244 char *buf)
245{
246 struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
247 struct mmc_omap_slot *slot = mmc_priv(mmc);
248
249 return sprintf(buf, "%s\n", mmc_omap_cover_is_open(slot) ? "open" :
250 "closed");
251}
252
253static DEVICE_ATTR(cover_switch, S_IRUGO, mmc_omap_show_cover_switch, NULL);
254
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400255static ssize_t
256mmc_omap_show_slot_name(struct device *dev, struct device_attribute *attr,
257 char *buf)
258{
259 struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
260 struct mmc_omap_slot *slot = mmc_priv(mmc);
261
262 return sprintf(buf, "%s\n", slot->pdata->name);
263}
264
265static DEVICE_ATTR(slot_name, S_IRUGO, mmc_omap_show_slot_name, NULL);
266
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100267static void
268mmc_omap_start_command(struct mmc_omap_host *host, struct mmc_command *cmd)
269{
270 u32 cmdreg;
271 u32 resptype;
272 u32 cmdtype;
273
274 host->cmd = cmd;
275
276 resptype = 0;
277 cmdtype = 0;
278
279 /* Our hardware needs to know exact type */
Carlos Eduardo Aguiar1b3b2632007-01-15 06:38:15 +0100280 switch (mmc_resp_type(cmd)) {
281 case MMC_RSP_NONE:
282 break;
283 case MMC_RSP_R1:
284 case MMC_RSP_R1B:
Philip Langdale6f949902007-01-04 07:04:47 -0800285 /* resp 1, 1b, 6, 7 */
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100286 resptype = 1;
287 break;
Carlos Eduardo Aguiar1b3b2632007-01-15 06:38:15 +0100288 case MMC_RSP_R2:
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100289 resptype = 2;
290 break;
Carlos Eduardo Aguiar1b3b2632007-01-15 06:38:15 +0100291 case MMC_RSP_R3:
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100292 resptype = 3;
293 break;
294 default:
Carlos Eduardo Aguiar1b3b2632007-01-15 06:38:15 +0100295 dev_err(mmc_dev(host->mmc), "Invalid response type: %04x\n", mmc_resp_type(cmd));
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100296 break;
297 }
298
299 if (mmc_cmd_type(cmd) == MMC_CMD_ADTC) {
300 cmdtype = OMAP_MMC_CMDTYPE_ADTC;
301 } else if (mmc_cmd_type(cmd) == MMC_CMD_BC) {
302 cmdtype = OMAP_MMC_CMDTYPE_BC;
303 } else if (mmc_cmd_type(cmd) == MMC_CMD_BCR) {
304 cmdtype = OMAP_MMC_CMDTYPE_BCR;
305 } else {
306 cmdtype = OMAP_MMC_CMDTYPE_AC;
307 }
308
309 cmdreg = cmd->opcode | (resptype << 8) | (cmdtype << 12);
310
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400311 if (host->current_slot->bus_mode == MMC_BUSMODE_OPENDRAIN)
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100312 cmdreg |= 1 << 6;
313
314 if (cmd->flags & MMC_RSP_BUSY)
315 cmdreg |= 1 << 11;
316
317 if (host->data && !(host->data->flags & MMC_DATA_WRITE))
318 cmdreg |= 1 << 15;
319
Jarkko Lavineneb1860b2008-03-26 16:09:29 -0400320 mod_timer(&host->cmd_timer, jiffies + HZ/2);
321
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100322 OMAP_MMC_WRITE(host, CTO, 200);
323 OMAP_MMC_WRITE(host, ARGL, cmd->arg & 0xffff);
324 OMAP_MMC_WRITE(host, ARGH, cmd->arg >> 16);
325 OMAP_MMC_WRITE(host, IE,
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100326 OMAP_MMC_STAT_A_EMPTY | OMAP_MMC_STAT_A_FULL |
327 OMAP_MMC_STAT_CMD_CRC | OMAP_MMC_STAT_CMD_TOUT |
328 OMAP_MMC_STAT_DATA_CRC | OMAP_MMC_STAT_DATA_TOUT |
329 OMAP_MMC_STAT_END_OF_CMD | OMAP_MMC_STAT_CARD_ERR |
330 OMAP_MMC_STAT_END_OF_DATA);
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100331 OMAP_MMC_WRITE(host, CMD, cmdreg);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100332}
333
334static void
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400335mmc_omap_release_dma(struct mmc_omap_host *host, struct mmc_data *data,
336 int abort)
337{
338 enum dma_data_direction dma_data_dir;
339
340 BUG_ON(host->dma_ch < 0);
341 if (data->error)
342 omap_stop_dma(host->dma_ch);
343 /* Release DMA channel lazily */
344 mod_timer(&host->dma_timer, jiffies + HZ);
345 if (data->flags & MMC_DATA_WRITE)
346 dma_data_dir = DMA_TO_DEVICE;
347 else
348 dma_data_dir = DMA_FROM_DEVICE;
349 dma_unmap_sg(mmc_dev(host->mmc), data->sg, host->sg_len,
350 dma_data_dir);
351}
352
353static void
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100354mmc_omap_xfer_done(struct mmc_omap_host *host, struct mmc_data *data)
355{
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400356 if (host->dma_in_use)
357 mmc_omap_release_dma(host, data, data->error);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100358
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100359 host->data = NULL;
360 host->sg_len = 0;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100361
362 /* NOTE: MMC layer will sometimes poll-wait CMD13 next, issuing
363 * dozens of requests until the card finishes writing data.
364 * It'd be cheaper to just wait till an EOFB interrupt arrives...
365 */
366
367 if (!data->stop) {
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400368 struct mmc_host *mmc;
369
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100370 host->mrq = NULL;
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400371 mmc = host->mmc;
372 mmc_omap_release_slot(host->current_slot);
373 mmc_request_done(mmc, data->mrq);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100374 return;
375 }
376
377 mmc_omap_start_command(host, data->stop);
378}
379
380static void
Jarkko Lavineneb1860b2008-03-26 16:09:29 -0400381mmc_omap_send_abort(struct mmc_omap_host *host)
382{
383 struct mmc_omap_slot *slot = host->current_slot;
384 unsigned int restarts, passes, timeout;
385 u16 stat = 0;
386
387 /* Sending abort takes 80 clocks. Have some extra and round up */
388 timeout = (120*1000000 + slot->fclk_freq - 1)/slot->fclk_freq;
389 restarts = 0;
390 while (restarts < 10000) {
391 OMAP_MMC_WRITE(host, STAT, 0xFFFF);
392 OMAP_MMC_WRITE(host, CMD, (3 << 12) | (1 << 7));
393
394 passes = 0;
395 while (passes < timeout) {
396 stat = OMAP_MMC_READ(host, STAT);
397 if (stat & OMAP_MMC_STAT_END_OF_CMD)
398 goto out;
399 udelay(1);
400 passes++;
401 }
402
403 restarts++;
404 }
405out:
406 OMAP_MMC_WRITE(host, STAT, stat);
407}
408
409static void
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400410mmc_omap_abort_xfer(struct mmc_omap_host *host, struct mmc_data *data)
411{
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400412 u16 ie;
413
414 if (host->dma_in_use)
415 mmc_omap_release_dma(host, data, 1);
416
417 host->data = NULL;
418 host->sg_len = 0;
419
420 ie = OMAP_MMC_READ(host, IE);
421 OMAP_MMC_WRITE(host, IE, 0);
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400422 OMAP_MMC_WRITE(host, IE, ie);
Jarkko Lavineneb1860b2008-03-26 16:09:29 -0400423 mmc_omap_send_abort(host);
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400424}
425
426static void
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100427mmc_omap_end_of_data(struct mmc_omap_host *host, struct mmc_data *data)
428{
429 unsigned long flags;
430 int done;
431
432 if (!host->dma_in_use) {
433 mmc_omap_xfer_done(host, data);
434 return;
435 }
436 done = 0;
437 spin_lock_irqsave(&host->dma_lock, flags);
438 if (host->dma_done)
439 done = 1;
440 else
441 host->brs_received = 1;
442 spin_unlock_irqrestore(&host->dma_lock, flags);
443 if (done)
444 mmc_omap_xfer_done(host, data);
445}
446
447static void
448mmc_omap_dma_timer(unsigned long data)
449{
450 struct mmc_omap_host *host = (struct mmc_omap_host *) data;
451
452 BUG_ON(host->dma_ch < 0);
453 omap_free_dma(host->dma_ch);
454 host->dma_ch = -1;
455}
456
457static void
458mmc_omap_dma_done(struct mmc_omap_host *host, struct mmc_data *data)
459{
460 unsigned long flags;
461 int done;
462
463 done = 0;
464 spin_lock_irqsave(&host->dma_lock, flags);
465 if (host->brs_received)
466 done = 1;
467 else
468 host->dma_done = 1;
469 spin_unlock_irqrestore(&host->dma_lock, flags);
470 if (done)
471 mmc_omap_xfer_done(host, data);
472}
473
474static void
475mmc_omap_cmd_done(struct mmc_omap_host *host, struct mmc_command *cmd)
476{
477 host->cmd = NULL;
478
Jarkko Lavineneb1860b2008-03-26 16:09:29 -0400479 del_timer(&host->cmd_timer);
480
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100481 if (cmd->flags & MMC_RSP_PRESENT) {
482 if (cmd->flags & MMC_RSP_136) {
483 /* response type 2 */
484 cmd->resp[3] =
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100485 OMAP_MMC_READ(host, RSP0) |
486 (OMAP_MMC_READ(host, RSP1) << 16);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100487 cmd->resp[2] =
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100488 OMAP_MMC_READ(host, RSP2) |
489 (OMAP_MMC_READ(host, RSP3) << 16);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100490 cmd->resp[1] =
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100491 OMAP_MMC_READ(host, RSP4) |
492 (OMAP_MMC_READ(host, RSP5) << 16);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100493 cmd->resp[0] =
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100494 OMAP_MMC_READ(host, RSP6) |
495 (OMAP_MMC_READ(host, RSP7) << 16);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100496 } else {
497 /* response types 1, 1b, 3, 4, 5, 6 */
498 cmd->resp[0] =
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100499 OMAP_MMC_READ(host, RSP6) |
500 (OMAP_MMC_READ(host, RSP7) << 16);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100501 }
502 }
503
Pierre Ossman17b04292007-07-22 22:18:46 +0200504 if (host->data == NULL || cmd->error) {
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400505 struct mmc_host *mmc;
506
507 if (host->data != NULL)
508 mmc_omap_abort_xfer(host, host->data);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100509 host->mrq = NULL;
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400510 mmc = host->mmc;
511 mmc_omap_release_slot(host->current_slot);
512 mmc_request_done(mmc, cmd->mrq);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100513 }
514}
515
Jarkko Lavineneb1860b2008-03-26 16:09:29 -0400516/*
517 * Abort stuck command. Can occur when card is removed while it is being
518 * read.
519 */
520static void mmc_omap_abort_command(struct work_struct *work)
521{
522 struct mmc_omap_host *host = container_of(work, struct mmc_omap_host,
523 cmd_abort);
524 u16 ie;
525
526 ie = OMAP_MMC_READ(host, IE);
527 OMAP_MMC_WRITE(host, IE, 0);
528
529 if (!host->cmd) {
530 OMAP_MMC_WRITE(host, IE, ie);
531 return;
532 }
533
534 dev_dbg(mmc_dev(host->mmc), "Aborting stuck command CMD%d\n",
535 host->cmd->opcode);
536
537 if (host->data && host->dma_in_use)
538 mmc_omap_release_dma(host, host->data, 1);
539
540 host->data = NULL;
541 host->sg_len = 0;
542
543 mmc_omap_send_abort(host);
544 host->cmd->error = -ETIMEDOUT;
545 mmc_omap_cmd_done(host, host->cmd);
546 OMAP_MMC_WRITE(host, IE, ie);
547}
548
549static void
550mmc_omap_cmd_timer(unsigned long data)
551{
552 struct mmc_omap_host *host = (struct mmc_omap_host *) data;
553
554 schedule_work(&host->cmd_abort);
555}
556
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100557/* PIO only */
558static void
559mmc_omap_sg_to_buf(struct mmc_omap_host *host)
560{
561 struct scatterlist *sg;
562
563 sg = host->data->sg + host->sg_idx;
564 host->buffer_bytes_left = sg->length;
Jens Axboe45711f12007-10-22 21:19:53 +0200565 host->buffer = sg_virt(sg);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100566 if (host->buffer_bytes_left > host->total_bytes_left)
567 host->buffer_bytes_left = host->total_bytes_left;
568}
569
570/* PIO only */
571static void
572mmc_omap_xfer_data(struct mmc_omap_host *host, int write)
573{
574 int n;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100575
576 if (host->buffer_bytes_left == 0) {
577 host->sg_idx++;
578 BUG_ON(host->sg_idx == host->sg_len);
579 mmc_omap_sg_to_buf(host);
580 }
581 n = 64;
582 if (n > host->buffer_bytes_left)
583 n = host->buffer_bytes_left;
584 host->buffer_bytes_left -= n;
585 host->total_bytes_left -= n;
586 host->data->bytes_xfered += n;
587
588 if (write) {
Juha Yrjola juha.yrjola89783b1e42006-11-11 23:36:01 +0100589 __raw_writesw(host->virt_base + OMAP_MMC_REG_DATA, host->buffer, n);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100590 } else {
Juha Yrjola juha.yrjola89783b1e42006-11-11 23:36:01 +0100591 __raw_readsw(host->virt_base + OMAP_MMC_REG_DATA, host->buffer, n);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100592 }
593}
594
595static inline void mmc_omap_report_irq(u16 status)
596{
597 static const char *mmc_omap_status_bits[] = {
598 "EOC", "CD", "CB", "BRS", "EOFB", "DTO", "DCRC", "CTO",
599 "CCRC", "CRW", "AF", "AE", "OCRB", "CIRQ", "CERR"
600 };
601 int i, c = 0;
602
603 for (i = 0; i < ARRAY_SIZE(mmc_omap_status_bits); i++)
604 if (status & (1 << i)) {
605 if (c)
606 printk(" ");
607 printk("%s", mmc_omap_status_bits[i]);
608 c++;
609 }
610}
611
David Howells7d12e782006-10-05 14:55:46 +0100612static irqreturn_t mmc_omap_irq(int irq, void *dev_id)
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100613{
614 struct mmc_omap_host * host = (struct mmc_omap_host *)dev_id;
615 u16 status;
616 int end_command;
617 int end_transfer;
Juha Yrjola2a50b882008-03-26 16:09:26 -0400618 int transfer_error, cmd_error;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100619
620 if (host->cmd == NULL && host->data == NULL) {
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100621 status = OMAP_MMC_READ(host, STAT);
Juha Yrjola2a50b882008-03-26 16:09:26 -0400622 dev_info(mmc_dev(host->slots[0]->mmc),
623 "Spurious IRQ 0x%04x\n", status);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100624 if (status != 0) {
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100625 OMAP_MMC_WRITE(host, STAT, status);
626 OMAP_MMC_WRITE(host, IE, 0);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100627 }
628 return IRQ_HANDLED;
629 }
630
631 end_command = 0;
632 end_transfer = 0;
633 transfer_error = 0;
Juha Yrjola2a50b882008-03-26 16:09:26 -0400634 cmd_error = 0;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100635
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100636 while ((status = OMAP_MMC_READ(host, STAT)) != 0) {
Juha Yrjola2a50b882008-03-26 16:09:26 -0400637 int cmd;
638
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100639 OMAP_MMC_WRITE(host, STAT, status);
Juha Yrjola2a50b882008-03-26 16:09:26 -0400640 if (host->cmd != NULL)
641 cmd = host->cmd->opcode;
642 else
643 cmd = -1;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100644#ifdef CONFIG_MMC_DEBUG
645 dev_dbg(mmc_dev(host->mmc), "MMC IRQ %04x (CMD %d): ",
Juha Yrjola2a50b882008-03-26 16:09:26 -0400646 status, cmd);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100647 mmc_omap_report_irq(status);
648 printk("\n");
649#endif
650 if (host->total_bytes_left) {
651 if ((status & OMAP_MMC_STAT_A_FULL) ||
652 (status & OMAP_MMC_STAT_END_OF_DATA))
653 mmc_omap_xfer_data(host, 0);
654 if (status & OMAP_MMC_STAT_A_EMPTY)
655 mmc_omap_xfer_data(host, 1);
656 }
657
Juha Yrjola2a50b882008-03-26 16:09:26 -0400658 if (status & OMAP_MMC_STAT_END_OF_DATA)
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100659 end_transfer = 1;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100660
661 if (status & OMAP_MMC_STAT_DATA_TOUT) {
Juha Yrjola2a50b882008-03-26 16:09:26 -0400662 dev_dbg(mmc_dev(host->mmc), "data timeout (CMD%d)\n",
663 cmd);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100664 if (host->data) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200665 host->data->error = -ETIMEDOUT;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100666 transfer_error = 1;
667 }
668 }
669
670 if (status & OMAP_MMC_STAT_DATA_CRC) {
671 if (host->data) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200672 host->data->error = -EILSEQ;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100673 dev_dbg(mmc_dev(host->mmc),
674 "data CRC error, bytes left %d\n",
675 host->total_bytes_left);
676 transfer_error = 1;
677 } else {
678 dev_dbg(mmc_dev(host->mmc), "data CRC error\n");
679 }
680 }
681
682 if (status & OMAP_MMC_STAT_CMD_TOUT) {
683 /* Timeouts are routine with some commands */
684 if (host->cmd) {
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400685 struct mmc_omap_slot *slot =
686 host->current_slot;
Juha Yrjola2a50b882008-03-26 16:09:26 -0400687 if (slot == NULL ||
688 !mmc_omap_cover_is_open(slot))
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400689 dev_err(mmc_dev(host->mmc),
Juha Yrjola2a50b882008-03-26 16:09:26 -0400690 "command timeout (CMD%d)\n",
691 cmd);
Pierre Ossman17b04292007-07-22 22:18:46 +0200692 host->cmd->error = -ETIMEDOUT;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100693 end_command = 1;
Juha Yrjola2a50b882008-03-26 16:09:26 -0400694 cmd_error = 1;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100695 }
696 }
697
698 if (status & OMAP_MMC_STAT_CMD_CRC) {
699 if (host->cmd) {
700 dev_err(mmc_dev(host->mmc),
701 "command CRC error (CMD%d, arg 0x%08x)\n",
Juha Yrjola2a50b882008-03-26 16:09:26 -0400702 cmd, host->cmd->arg);
Pierre Ossman17b04292007-07-22 22:18:46 +0200703 host->cmd->error = -EILSEQ;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100704 end_command = 1;
Juha Yrjola2a50b882008-03-26 16:09:26 -0400705 cmd_error = 1;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100706 } else
707 dev_err(mmc_dev(host->mmc),
708 "command CRC error without cmd?\n");
709 }
710
711 if (status & OMAP_MMC_STAT_CARD_ERR) {
Ragner Magalhaes0107a4b2007-06-13 19:09:28 +0200712 dev_dbg(mmc_dev(host->mmc),
713 "ignoring card status error (CMD%d)\n",
Juha Yrjola2a50b882008-03-26 16:09:26 -0400714 cmd);
Ragner Magalhaes0107a4b2007-06-13 19:09:28 +0200715 end_command = 1;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100716 }
717
718 /*
719 * NOTE: On 1610 the END_OF_CMD may come too early when
Juha Yrjola2a50b882008-03-26 16:09:26 -0400720 * starting a write
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100721 */
722 if ((status & OMAP_MMC_STAT_END_OF_CMD) &&
723 (!(status & OMAP_MMC_STAT_A_EMPTY))) {
724 end_command = 1;
725 }
726 }
727
Juha Yrjola2a50b882008-03-26 16:09:26 -0400728 if (end_command)
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100729 mmc_omap_cmd_done(host, host->cmd);
Juha Yrjola2a50b882008-03-26 16:09:26 -0400730 if (host->data != NULL) {
731 if (transfer_error)
732 mmc_omap_xfer_done(host, host->data);
733 else if (end_transfer)
734 mmc_omap_end_of_data(host, host->data);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100735 }
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100736
737 return IRQ_HANDLED;
738}
739
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400740void omap_mmc_notify_cover_event(struct device *dev, int slot, int is_closed)
741{
742 struct mmc_omap_host *host = dev_get_drvdata(dev);
743
744 BUG_ON(slot >= host->nr_slots);
745
746 /* Other subsystems can call in here before we're initialised. */
747 if (host->nr_slots == 0 || !host->slots[slot])
748 return;
749
750 schedule_work(&host->slots[slot]->switch_work);
751}
752
753static void mmc_omap_switch_timer(unsigned long arg)
754{
755 struct mmc_omap_slot *slot = (struct mmc_omap_slot *) arg;
756
757 schedule_work(&slot->switch_work);
758}
759
760static void mmc_omap_cover_handler(struct work_struct *work)
761{
762 struct mmc_omap_slot *slot = container_of(work, struct mmc_omap_slot,
763 switch_work);
764 int cover_open;
765
766 cover_open = mmc_omap_cover_is_open(slot);
767 if (cover_open != slot->cover_open) {
768 sysfs_notify(&slot->mmc->class_dev.kobj, NULL, "cover_switch");
769 slot->cover_open = cover_open;
770 dev_info(mmc_dev(slot->mmc), "cover is now %s\n",
771 cover_open ? "open" : "closed");
772 }
773 mmc_detect_change(slot->mmc, slot->id);
774}
775
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100776/* Prepare to transfer the next segment of a scatterlist */
777static void
778mmc_omap_prepare_dma(struct mmc_omap_host *host, struct mmc_data *data)
779{
780 int dma_ch = host->dma_ch;
781 unsigned long data_addr;
782 u16 buf, frame;
783 u32 count;
784 struct scatterlist *sg = &data->sg[host->sg_idx];
785 int src_port = 0;
786 int dst_port = 0;
787 int sync_dev = 0;
788
Juha Yrjola juha.yrjola89783b1e42006-11-11 23:36:01 +0100789 data_addr = host->phys_base + OMAP_MMC_REG_DATA;
Russell Kinga3fd4a12006-06-04 17:51:15 +0100790 frame = data->blksz;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100791 count = sg_dma_len(sg);
792
Russell Kinga3fd4a12006-06-04 17:51:15 +0100793 if ((data->blocks == 1) && (count > data->blksz))
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100794 count = frame;
795
796 host->dma_len = count;
797
798 /* FIFO is 16x2 bytes on 15xx, and 32x2 bytes on 16xx and 24xx.
799 * Use 16 or 32 word frames when the blocksize is at least that large.
800 * Blocksize is usually 512 bytes; but not for some SD reads.
801 */
802 if (cpu_is_omap15xx() && frame > 32)
803 frame = 32;
804 else if (frame > 64)
805 frame = 64;
806 count /= frame;
807 frame >>= 1;
808
809 if (!(data->flags & MMC_DATA_WRITE)) {
810 buf = 0x800f | ((frame - 1) << 8);
811
812 if (cpu_class_is_omap1()) {
813 src_port = OMAP_DMA_PORT_TIPB;
814 dst_port = OMAP_DMA_PORT_EMIFF;
815 }
816 if (cpu_is_omap24xx())
817 sync_dev = OMAP24XX_DMA_MMC1_RX;
818
819 omap_set_dma_src_params(dma_ch, src_port,
820 OMAP_DMA_AMODE_CONSTANT,
821 data_addr, 0, 0);
822 omap_set_dma_dest_params(dma_ch, dst_port,
823 OMAP_DMA_AMODE_POST_INC,
824 sg_dma_address(sg), 0, 0);
825 omap_set_dma_dest_data_pack(dma_ch, 1);
826 omap_set_dma_dest_burst_mode(dma_ch, OMAP_DMA_DATA_BURST_4);
827 } else {
828 buf = 0x0f80 | ((frame - 1) << 0);
829
830 if (cpu_class_is_omap1()) {
831 src_port = OMAP_DMA_PORT_EMIFF;
832 dst_port = OMAP_DMA_PORT_TIPB;
833 }
834 if (cpu_is_omap24xx())
835 sync_dev = OMAP24XX_DMA_MMC1_TX;
836
837 omap_set_dma_dest_params(dma_ch, dst_port,
838 OMAP_DMA_AMODE_CONSTANT,
839 data_addr, 0, 0);
840 omap_set_dma_src_params(dma_ch, src_port,
841 OMAP_DMA_AMODE_POST_INC,
842 sg_dma_address(sg), 0, 0);
843 omap_set_dma_src_data_pack(dma_ch, 1);
844 omap_set_dma_src_burst_mode(dma_ch, OMAP_DMA_DATA_BURST_4);
845 }
846
847 /* Max limit for DMA frame count is 0xffff */
Eric Sesterhennd99c5902006-11-30 05:27:38 +0100848 BUG_ON(count > 0xffff);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100849
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100850 OMAP_MMC_WRITE(host, BUF, buf);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100851 omap_set_dma_transfer_params(dma_ch, OMAP_DMA_DATA_TYPE_S16,
852 frame, count, OMAP_DMA_SYNC_FRAME,
853 sync_dev, 0);
854}
855
856/* A scatterlist segment completed */
857static void mmc_omap_dma_cb(int lch, u16 ch_status, void *data)
858{
859 struct mmc_omap_host *host = (struct mmc_omap_host *) data;
860 struct mmc_data *mmcdat = host->data;
861
862 if (unlikely(host->dma_ch < 0)) {
Tony Lindgrence9c1a82006-07-01 19:56:44 +0100863 dev_err(mmc_dev(host->mmc),
864 "DMA callback while DMA not enabled\n");
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100865 return;
866 }
867 /* FIXME: We really should do something to _handle_ the errors */
Tony Lindgren7ff879d2006-06-26 16:16:15 -0700868 if (ch_status & OMAP1_DMA_TOUT_IRQ) {
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100869 dev_err(mmc_dev(host->mmc),"DMA timeout\n");
870 return;
871 }
872 if (ch_status & OMAP_DMA_DROP_IRQ) {
873 dev_err(mmc_dev(host->mmc), "DMA sync error\n");
874 return;
875 }
876 if (!(ch_status & OMAP_DMA_BLOCK_IRQ)) {
877 return;
878 }
879 mmcdat->bytes_xfered += host->dma_len;
880 host->sg_idx++;
881 if (host->sg_idx < host->sg_len) {
882 mmc_omap_prepare_dma(host, host->data);
883 omap_start_dma(host->dma_ch);
884 } else
885 mmc_omap_dma_done(host, host->data);
886}
887
888static int mmc_omap_get_dma_channel(struct mmc_omap_host *host, struct mmc_data *data)
889{
890 const char *dev_name;
891 int sync_dev, dma_ch, is_read, r;
892
893 is_read = !(data->flags & MMC_DATA_WRITE);
894 del_timer_sync(&host->dma_timer);
895 if (host->dma_ch >= 0) {
896 if (is_read == host->dma_is_read)
897 return 0;
898 omap_free_dma(host->dma_ch);
899 host->dma_ch = -1;
900 }
901
902 if (is_read) {
903 if (host->id == 1) {
904 sync_dev = OMAP_DMA_MMC_RX;
905 dev_name = "MMC1 read";
906 } else {
907 sync_dev = OMAP_DMA_MMC2_RX;
908 dev_name = "MMC2 read";
909 }
910 } else {
911 if (host->id == 1) {
912 sync_dev = OMAP_DMA_MMC_TX;
913 dev_name = "MMC1 write";
914 } else {
915 sync_dev = OMAP_DMA_MMC2_TX;
916 dev_name = "MMC2 write";
917 }
918 }
919 r = omap_request_dma(sync_dev, dev_name, mmc_omap_dma_cb,
920 host, &dma_ch);
921 if (r != 0) {
922 dev_dbg(mmc_dev(host->mmc), "omap_request_dma() failed with %d\n", r);
923 return r;
924 }
925 host->dma_ch = dma_ch;
926 host->dma_is_read = is_read;
927
928 return 0;
929}
930
931static inline void set_cmd_timeout(struct mmc_omap_host *host, struct mmc_request *req)
932{
933 u16 reg;
934
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100935 reg = OMAP_MMC_READ(host, SDIO);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100936 reg &= ~(1 << 5);
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100937 OMAP_MMC_WRITE(host, SDIO, reg);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100938 /* Set maximum timeout */
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100939 OMAP_MMC_WRITE(host, CTO, 0xff);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100940}
941
942static inline void set_data_timeout(struct mmc_omap_host *host, struct mmc_request *req)
943{
Juha Yrjolab8f9f0e2008-03-26 16:09:16 -0400944 unsigned int timeout, cycle_ns;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100945 u16 reg;
946
Juha Yrjolab8f9f0e2008-03-26 16:09:16 -0400947 cycle_ns = 1000000000 / host->current_slot->fclk_freq;
948 timeout = req->data->timeout_ns / cycle_ns;
949 timeout += req->data->timeout_clks;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100950
951 /* Check if we need to use timeout multiplier register */
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100952 reg = OMAP_MMC_READ(host, SDIO);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100953 if (timeout > 0xffff) {
954 reg |= (1 << 5);
955 timeout /= 1024;
956 } else
957 reg &= ~(1 << 5);
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100958 OMAP_MMC_WRITE(host, SDIO, reg);
959 OMAP_MMC_WRITE(host, DTO, timeout);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100960}
961
962static void
963mmc_omap_prepare_data(struct mmc_omap_host *host, struct mmc_request *req)
964{
965 struct mmc_data *data = req->data;
966 int i, use_dma, block_size;
967 unsigned sg_len;
968
969 host->data = data;
970 if (data == NULL) {
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100971 OMAP_MMC_WRITE(host, BLEN, 0);
972 OMAP_MMC_WRITE(host, NBLK, 0);
973 OMAP_MMC_WRITE(host, BUF, 0);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100974 host->dma_in_use = 0;
975 set_cmd_timeout(host, req);
976 return;
977 }
978
Russell Kinga3fd4a12006-06-04 17:51:15 +0100979 block_size = data->blksz;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100980
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100981 OMAP_MMC_WRITE(host, NBLK, data->blocks - 1);
982 OMAP_MMC_WRITE(host, BLEN, block_size - 1);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100983 set_data_timeout(host, req);
984
985 /* cope with calling layer confusion; it issues "single
986 * block" writes using multi-block scatterlists.
987 */
988 sg_len = (data->blocks == 1) ? 1 : data->sg_len;
989
990 /* Only do DMA for entire blocks */
991 use_dma = host->use_dma;
992 if (use_dma) {
993 for (i = 0; i < sg_len; i++) {
994 if ((data->sg[i].length % block_size) != 0) {
995 use_dma = 0;
996 break;
997 }
998 }
999 }
1000
1001 host->sg_idx = 0;
1002 if (use_dma) {
1003 if (mmc_omap_get_dma_channel(host, data) == 0) {
1004 enum dma_data_direction dma_data_dir;
1005
1006 if (data->flags & MMC_DATA_WRITE)
1007 dma_data_dir = DMA_TO_DEVICE;
1008 else
1009 dma_data_dir = DMA_FROM_DEVICE;
1010
1011 host->sg_len = dma_map_sg(mmc_dev(host->mmc), data->sg,
1012 sg_len, dma_data_dir);
1013 host->total_bytes_left = 0;
1014 mmc_omap_prepare_dma(host, req->data);
1015 host->brs_received = 0;
1016 host->dma_done = 0;
1017 host->dma_in_use = 1;
1018 } else
1019 use_dma = 0;
1020 }
1021
1022 /* Revert to PIO? */
1023 if (!use_dma) {
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +01001024 OMAP_MMC_WRITE(host, BUF, 0x1f1f);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001025 host->total_bytes_left = data->blocks * block_size;
1026 host->sg_len = sg_len;
1027 mmc_omap_sg_to_buf(host);
1028 host->dma_in_use = 0;
1029 }
1030}
1031
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001032static void mmc_omap_start_request(struct mmc_omap_host *host,
1033 struct mmc_request *req)
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001034{
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001035 BUG_ON(host->mrq != NULL);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001036
1037 host->mrq = req;
1038
1039 /* only touch fifo AFTER the controller readies it */
1040 mmc_omap_prepare_data(host, req);
1041 mmc_omap_start_command(host, req->cmd);
1042 if (host->dma_in_use)
1043 omap_start_dma(host->dma_ch);
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001044 BUG_ON(irqs_disabled());
1045}
1046
1047static void mmc_omap_request(struct mmc_host *mmc, struct mmc_request *req)
1048{
1049 struct mmc_omap_slot *slot = mmc_priv(mmc);
1050 struct mmc_omap_host *host = slot->host;
1051 unsigned long flags;
1052
1053 spin_lock_irqsave(&host->slot_lock, flags);
1054 if (host->mmc != NULL) {
1055 BUG_ON(slot->mrq != NULL);
1056 slot->mrq = req;
1057 spin_unlock_irqrestore(&host->slot_lock, flags);
1058 return;
1059 } else
1060 host->mmc = mmc;
1061 spin_unlock_irqrestore(&host->slot_lock, flags);
1062 mmc_omap_select_slot(slot, 1);
1063 mmc_omap_start_request(host, req);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001064}
1065
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001066static void mmc_omap_set_power(struct mmc_omap_slot *slot, int power_on,
1067 int vdd)
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001068{
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001069 struct mmc_omap_host *host;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001070
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001071 host = slot->host;
1072
1073 if (slot->pdata->set_power != NULL)
1074 slot->pdata->set_power(mmc_dev(slot->mmc), slot->id, power_on,
1075 vdd);
1076
1077 if (cpu_is_omap24xx()) {
1078 u16 w;
1079
1080 if (power_on) {
1081 w = OMAP_MMC_READ(host, CON);
1082 OMAP_MMC_WRITE(host, CON, w | (1 << 11));
1083 } else {
1084 w = OMAP_MMC_READ(host, CON);
1085 OMAP_MMC_WRITE(host, CON, w & ~(1 << 11));
1086 }
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001087 }
1088}
1089
Tony Lindgrend3af5ab2007-05-01 16:36:00 +02001090static int mmc_omap_calc_divisor(struct mmc_host *mmc, struct mmc_ios *ios)
1091{
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001092 struct mmc_omap_slot *slot = mmc_priv(mmc);
1093 struct mmc_omap_host *host = slot->host;
Tony Lindgrend3af5ab2007-05-01 16:36:00 +02001094 int func_clk_rate = clk_get_rate(host->fclk);
1095 int dsor;
1096
1097 if (ios->clock == 0)
1098 return 0;
1099
1100 dsor = func_clk_rate / ios->clock;
1101 if (dsor < 1)
1102 dsor = 1;
1103
1104 if (func_clk_rate / dsor > ios->clock)
1105 dsor++;
1106
1107 if (dsor > 250)
1108 dsor = 250;
Tony Lindgrend3af5ab2007-05-01 16:36:00 +02001109
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001110 slot->fclk_freq = func_clk_rate / dsor;
1111
Tony Lindgrend3af5ab2007-05-01 16:36:00 +02001112 if (ios->bus_width == MMC_BUS_WIDTH_4)
1113 dsor |= 1 << 15;
1114
1115 return dsor;
1116}
1117
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001118static void mmc_omap_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
1119{
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001120 struct mmc_omap_slot *slot = mmc_priv(mmc);
1121 struct mmc_omap_host *host = slot->host;
1122 int i, dsor;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001123
Tony Lindgrend3af5ab2007-05-01 16:36:00 +02001124 dsor = mmc_omap_calc_divisor(mmc, ios);
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001125
1126 mmc_omap_select_slot(slot, 0);
1127
1128 if (ios->vdd != slot->vdd)
1129 slot->vdd = ios->vdd;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001130
1131 switch (ios->power_mode) {
1132 case MMC_POWER_OFF:
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001133 mmc_omap_set_power(slot, 0, ios->vdd);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001134 break;
1135 case MMC_POWER_UP:
Tony Lindgren46a67302007-05-01 16:34:16 +02001136 /* Cannot touch dsor yet, just power up MMC */
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001137 mmc_omap_set_power(slot, 1, ios->vdd);
1138 goto exit;
Tony Lindgren46a67302007-05-01 16:34:16 +02001139 case MMC_POWER_ON:
Juha Yrjola juha.yrjolac5cb4312006-11-11 23:42:39 +01001140 dsor |= 1 << 11;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001141 break;
1142 }
1143
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001144 if (slot->bus_mode != ios->bus_mode) {
1145 if (slot->pdata->set_bus_mode != NULL)
1146 slot->pdata->set_bus_mode(mmc_dev(mmc), slot->id,
1147 ios->bus_mode);
1148 slot->bus_mode = ios->bus_mode;
1149 }
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001150
1151 /* On insanely high arm_per frequencies something sometimes
1152 * goes somehow out of sync, and the POW bit is not being set,
1153 * which results in the while loop below getting stuck.
1154 * Writing to the CON register twice seems to do the trick. */
1155 for (i = 0; i < 2; i++)
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +01001156 OMAP_MMC_WRITE(host, CON, dsor);
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001157 slot->saved_con = dsor;
Tony Lindgren46a67302007-05-01 16:34:16 +02001158 if (ios->power_mode == MMC_POWER_ON) {
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001159 /* Send clock cycles, poll completion */
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +01001160 OMAP_MMC_WRITE(host, IE, 0);
1161 OMAP_MMC_WRITE(host, STAT, 0xffff);
Juha Yrjola juha.yrjolac5cb4312006-11-11 23:42:39 +01001162 OMAP_MMC_WRITE(host, CMD, 1 << 7);
1163 while ((OMAP_MMC_READ(host, STAT) & 1) == 0);
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +01001164 OMAP_MMC_WRITE(host, STAT, 1);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001165 }
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001166
1167exit:
1168 mmc_omap_release_slot(slot);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001169}
1170
David Brownellab7aefd2006-11-12 17:55:30 -08001171static const struct mmc_host_ops mmc_omap_ops = {
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001172 .request = mmc_omap_request,
1173 .set_ios = mmc_omap_set_ios,
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001174};
1175
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001176static int __init mmc_omap_new_slot(struct mmc_omap_host *host, int id)
1177{
1178 struct mmc_omap_slot *slot = NULL;
1179 struct mmc_host *mmc;
1180 int r;
1181
1182 mmc = mmc_alloc_host(sizeof(struct mmc_omap_slot), host->dev);
1183 if (mmc == NULL)
1184 return -ENOMEM;
1185
1186 slot = mmc_priv(mmc);
1187 slot->host = host;
1188 slot->mmc = mmc;
1189 slot->id = id;
1190 slot->pdata = &host->pdata->slots[id];
1191
1192 host->slots[id] = slot;
1193
1194 mmc->caps = MMC_CAP_MULTIWRITE;
1195 if (host->pdata->conf.wire4)
1196 mmc->caps |= MMC_CAP_4_BIT_DATA;
1197
1198 mmc->ops = &mmc_omap_ops;
1199 mmc->f_min = 400000;
1200
1201 if (cpu_class_is_omap2())
1202 mmc->f_max = 48000000;
1203 else
1204 mmc->f_max = 24000000;
1205 if (host->pdata->max_freq)
1206 mmc->f_max = min(host->pdata->max_freq, mmc->f_max);
1207 mmc->ocr_avail = slot->pdata->ocr_mask;
1208
1209 /* Use scatterlist DMA to reduce per-transfer costs.
1210 * NOTE max_seg_size assumption that small blocks aren't
1211 * normally used (except e.g. for reading SD registers).
1212 */
1213 mmc->max_phys_segs = 32;
1214 mmc->max_hw_segs = 32;
1215 mmc->max_blk_size = 2048; /* BLEN is 11 bits (+1) */
1216 mmc->max_blk_count = 2048; /* NBLK is 11 bits (+1) */
1217 mmc->max_req_size = mmc->max_blk_size * mmc->max_blk_count;
1218 mmc->max_seg_size = mmc->max_req_size;
1219
1220 r = mmc_add_host(mmc);
1221 if (r < 0)
1222 goto err_remove_host;
1223
1224 if (slot->pdata->name != NULL) {
1225 r = device_create_file(&mmc->class_dev,
1226 &dev_attr_slot_name);
1227 if (r < 0)
1228 goto err_remove_host;
1229 }
1230
Juha Yrjola5a0f3f12008-03-26 16:09:08 -04001231 if (slot->pdata->get_cover_state != NULL) {
1232 r = device_create_file(&mmc->class_dev,
1233 &dev_attr_cover_switch);
1234 if (r < 0)
1235 goto err_remove_slot_name;
1236
1237 INIT_WORK(&slot->switch_work, mmc_omap_cover_handler);
1238 init_timer(&slot->switch_timer);
1239 slot->switch_timer.function = mmc_omap_switch_timer;
1240 slot->switch_timer.data = (unsigned long) slot;
1241 schedule_work(&slot->switch_work);
1242 }
1243
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001244 return 0;
1245
Juha Yrjola5a0f3f12008-03-26 16:09:08 -04001246err_remove_slot_name:
1247 if (slot->pdata->name != NULL)
1248 device_remove_file(&mmc->class_dev, &dev_attr_slot_name);
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001249err_remove_host:
1250 mmc_remove_host(mmc);
1251 mmc_free_host(mmc);
1252 return r;
1253}
1254
1255static void mmc_omap_remove_slot(struct mmc_omap_slot *slot)
1256{
1257 struct mmc_host *mmc = slot->mmc;
1258
1259 if (slot->pdata->name != NULL)
1260 device_remove_file(&mmc->class_dev, &dev_attr_slot_name);
Juha Yrjola5a0f3f12008-03-26 16:09:08 -04001261 if (slot->pdata->get_cover_state != NULL)
1262 device_remove_file(&mmc->class_dev, &dev_attr_cover_switch);
1263
1264 del_timer_sync(&slot->switch_timer);
1265 flush_scheduled_work();
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001266
1267 mmc_remove_host(mmc);
1268 mmc_free_host(mmc);
1269}
1270
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001271static int __init mmc_omap_probe(struct platform_device *pdev)
1272{
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001273 struct omap_mmc_platform_data *pdata = pdev->dev.platform_data;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001274 struct mmc_omap_host *host = NULL;
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001275 struct resource *res;
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001276 int i, ret = 0;
Tony Lindgrence9c1a82006-07-01 19:56:44 +01001277 int irq;
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001278
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001279 if (pdata == NULL) {
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001280 dev_err(&pdev->dev, "platform data missing\n");
1281 return -ENXIO;
1282 }
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001283 if (pdata->nr_slots == 0) {
1284 dev_err(&pdev->dev, "no slots\n");
1285 return -ENXIO;
1286 }
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001287
1288 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Tony Lindgrence9c1a82006-07-01 19:56:44 +01001289 irq = platform_get_irq(pdev, 0);
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001290 if (res == NULL || irq < 0)
Tony Lindgrence9c1a82006-07-01 19:56:44 +01001291 return -ENXIO;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001292
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001293 res = request_mem_region(res->start, res->end - res->start + 1,
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001294 pdev->name);
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001295 if (res == NULL)
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001296 return -EBUSY;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001297
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001298 host = kzalloc(sizeof(struct mmc_omap_host), GFP_KERNEL);
1299 if (host == NULL) {
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001300 ret = -ENOMEM;
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001301 goto err_free_mem_region;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001302 }
1303
Jarkko Lavineneb1860b2008-03-26 16:09:29 -04001304 INIT_WORK(&host->cmd_abort, mmc_omap_abort_command);
1305 init_timer(&host->cmd_timer);
1306 host->cmd_timer.function = mmc_omap_cmd_timer;
1307 host->cmd_timer.data = (unsigned long) host;
1308
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001309 spin_lock_init(&host->dma_lock);
1310 init_timer(&host->dma_timer);
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001311 spin_lock_init(&host->slot_lock);
1312 init_waitqueue_head(&host->slot_wq);
1313
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001314 host->dma_timer.function = mmc_omap_dma_timer;
1315 host->dma_timer.data = (unsigned long) host;
1316
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001317 host->pdata = pdata;
1318 host->dev = &pdev->dev;
1319 platform_set_drvdata(pdev, host);
1320
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001321 host->id = pdev->id;
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001322 host->mem_res = res;
Tony Lindgrence9c1a82006-07-01 19:56:44 +01001323 host->irq = irq;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001324
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001325 host->use_dma = 1;
1326 host->dma_ch = -1;
1327
1328 host->irq = irq;
1329 host->phys_base = host->mem_res->start;
1330 host->virt_base = (void __iomem *) IO_ADDRESS(host->phys_base);
1331
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001332 if (cpu_is_omap24xx()) {
1333 host->iclk = clk_get(&pdev->dev, "mmc_ick");
1334 if (IS_ERR(host->iclk))
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001335 goto err_free_mmc_host;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001336 clk_enable(host->iclk);
1337 }
1338
1339 if (!cpu_is_omap24xx())
1340 host->fclk = clk_get(&pdev->dev, "mmc_ck");
1341 else
1342 host->fclk = clk_get(&pdev->dev, "mmc_fck");
1343
1344 if (IS_ERR(host->fclk)) {
1345 ret = PTR_ERR(host->fclk);
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001346 goto err_free_iclk;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001347 }
1348
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001349 ret = request_irq(host->irq, mmc_omap_irq, 0, DRIVER_NAME, host);
1350 if (ret)
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001351 goto err_free_fclk;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001352
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001353 if (pdata->init != NULL) {
1354 ret = pdata->init(&pdev->dev);
1355 if (ret < 0)
1356 goto err_free_irq;
1357 }
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001358
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001359 host->nr_slots = pdata->nr_slots;
1360 for (i = 0; i < pdata->nr_slots; i++) {
1361 ret = mmc_omap_new_slot(host, i);
1362 if (ret < 0) {
1363 while (--i >= 0)
1364 mmc_omap_remove_slot(host->slots[i]);
1365
1366 goto err_plat_cleanup;
1367 }
1368 }
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001369
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001370 return 0;
1371
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001372err_plat_cleanup:
1373 if (pdata->cleanup)
1374 pdata->cleanup(&pdev->dev);
1375err_free_irq:
1376 free_irq(host->irq, host);
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001377err_free_fclk:
1378 clk_put(host->fclk);
1379err_free_iclk:
1380 if (host->iclk != NULL) {
1381 clk_disable(host->iclk);
1382 clk_put(host->iclk);
1383 }
1384err_free_mmc_host:
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001385 kfree(host);
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001386err_free_mem_region:
1387 release_mem_region(res->start, res->end - res->start + 1);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001388 return ret;
1389}
1390
1391static int mmc_omap_remove(struct platform_device *pdev)
1392{
1393 struct mmc_omap_host *host = platform_get_drvdata(pdev);
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001394 int i;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001395
1396 platform_set_drvdata(pdev, NULL);
1397
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001398 BUG_ON(host == NULL);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001399
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001400 for (i = 0; i < host->nr_slots; i++)
1401 mmc_omap_remove_slot(host->slots[i]);
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001402
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001403 if (host->pdata->cleanup)
1404 host->pdata->cleanup(&pdev->dev);
1405
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001406 if (host->iclk && !IS_ERR(host->iclk))
1407 clk_put(host->iclk);
1408 if (host->fclk && !IS_ERR(host->fclk))
1409 clk_put(host->fclk);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001410
1411 release_mem_region(pdev->resource[0].start,
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001412 pdev->resource[0].end - pdev->resource[0].start + 1);
1413
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001414 kfree(host);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001415
1416 return 0;
1417}
1418
1419#ifdef CONFIG_PM
1420static int mmc_omap_suspend(struct platform_device *pdev, pm_message_t mesg)
1421{
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001422 int i, ret = 0;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001423 struct mmc_omap_host *host = platform_get_drvdata(pdev);
1424
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001425 if (host == NULL || host->suspended)
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001426 return 0;
1427
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001428 for (i = 0; i < host->nr_slots; i++) {
1429 struct mmc_omap_slot *slot;
1430
1431 slot = host->slots[i];
1432 ret = mmc_suspend_host(slot->mmc, mesg);
1433 if (ret < 0) {
1434 while (--i >= 0) {
1435 slot = host->slots[i];
1436 mmc_resume_host(slot->mmc);
1437 }
1438 return ret;
1439 }
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001440 }
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001441 host->suspended = 1;
1442 return 0;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001443}
1444
1445static int mmc_omap_resume(struct platform_device *pdev)
1446{
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001447 int i, ret = 0;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001448 struct mmc_omap_host *host = platform_get_drvdata(pdev);
1449
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001450 if (host == NULL || !host->suspended)
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001451 return 0;
1452
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001453 for (i = 0; i < host->nr_slots; i++) {
1454 struct mmc_omap_slot *slot;
1455 slot = host->slots[i];
1456 ret = mmc_resume_host(slot->mmc);
1457 if (ret < 0)
1458 return ret;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001459
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001460 host->suspended = 0;
1461 }
1462 return 0;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001463}
1464#else
1465#define mmc_omap_suspend NULL
1466#define mmc_omap_resume NULL
1467#endif
1468
1469static struct platform_driver mmc_omap_driver = {
1470 .probe = mmc_omap_probe,
1471 .remove = mmc_omap_remove,
1472 .suspend = mmc_omap_suspend,
1473 .resume = mmc_omap_resume,
1474 .driver = {
1475 .name = DRIVER_NAME,
Kay Sieversbc65c722008-04-15 14:34:28 -07001476 .owner = THIS_MODULE,
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001477 },
1478};
1479
1480static int __init mmc_omap_init(void)
1481{
1482 return platform_driver_register(&mmc_omap_driver);
1483}
1484
1485static void __exit mmc_omap_exit(void)
1486{
1487 platform_driver_unregister(&mmc_omap_driver);
1488}
1489
1490module_init(mmc_omap_init);
1491module_exit(mmc_omap_exit);
1492
1493MODULE_DESCRIPTION("OMAP Multimedia Card driver");
1494MODULE_LICENSE("GPL");
Kay Sieversbc65c722008-04-15 14:34:28 -07001495MODULE_ALIAS("platform:" DRIVER_NAME);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001496MODULE_AUTHOR("Juha Yrjölä");