blob: f7fb9780282792850b9422e8e44f76fb144157c0 [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{
Kyungmin Park8348f002008-03-26 16:09:38 -0400239 if (slot->pdata->get_cover_state)
240 return slot->pdata->get_cover_state(mmc_dev(slot->mmc),
241 slot->id);
242 return 0;
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400243}
244
245static ssize_t
246mmc_omap_show_cover_switch(struct device *dev, struct device_attribute *attr,
247 char *buf)
248{
249 struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
250 struct mmc_omap_slot *slot = mmc_priv(mmc);
251
252 return sprintf(buf, "%s\n", mmc_omap_cover_is_open(slot) ? "open" :
253 "closed");
254}
255
256static DEVICE_ATTR(cover_switch, S_IRUGO, mmc_omap_show_cover_switch, NULL);
257
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400258static ssize_t
259mmc_omap_show_slot_name(struct device *dev, struct device_attribute *attr,
260 char *buf)
261{
262 struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
263 struct mmc_omap_slot *slot = mmc_priv(mmc);
264
265 return sprintf(buf, "%s\n", slot->pdata->name);
266}
267
268static DEVICE_ATTR(slot_name, S_IRUGO, mmc_omap_show_slot_name, NULL);
269
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100270static void
271mmc_omap_start_command(struct mmc_omap_host *host, struct mmc_command *cmd)
272{
273 u32 cmdreg;
274 u32 resptype;
275 u32 cmdtype;
276
277 host->cmd = cmd;
278
279 resptype = 0;
280 cmdtype = 0;
281
282 /* Our hardware needs to know exact type */
Carlos Eduardo Aguiar1b3b2632007-01-15 06:38:15 +0100283 switch (mmc_resp_type(cmd)) {
284 case MMC_RSP_NONE:
285 break;
286 case MMC_RSP_R1:
287 case MMC_RSP_R1B:
Philip Langdale6f949902007-01-04 07:04:47 -0800288 /* resp 1, 1b, 6, 7 */
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100289 resptype = 1;
290 break;
Carlos Eduardo Aguiar1b3b2632007-01-15 06:38:15 +0100291 case MMC_RSP_R2:
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100292 resptype = 2;
293 break;
Carlos Eduardo Aguiar1b3b2632007-01-15 06:38:15 +0100294 case MMC_RSP_R3:
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100295 resptype = 3;
296 break;
297 default:
Carlos Eduardo Aguiar1b3b2632007-01-15 06:38:15 +0100298 dev_err(mmc_dev(host->mmc), "Invalid response type: %04x\n", mmc_resp_type(cmd));
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100299 break;
300 }
301
302 if (mmc_cmd_type(cmd) == MMC_CMD_ADTC) {
303 cmdtype = OMAP_MMC_CMDTYPE_ADTC;
304 } else if (mmc_cmd_type(cmd) == MMC_CMD_BC) {
305 cmdtype = OMAP_MMC_CMDTYPE_BC;
306 } else if (mmc_cmd_type(cmd) == MMC_CMD_BCR) {
307 cmdtype = OMAP_MMC_CMDTYPE_BCR;
308 } else {
309 cmdtype = OMAP_MMC_CMDTYPE_AC;
310 }
311
312 cmdreg = cmd->opcode | (resptype << 8) | (cmdtype << 12);
313
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400314 if (host->current_slot->bus_mode == MMC_BUSMODE_OPENDRAIN)
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100315 cmdreg |= 1 << 6;
316
317 if (cmd->flags & MMC_RSP_BUSY)
318 cmdreg |= 1 << 11;
319
320 if (host->data && !(host->data->flags & MMC_DATA_WRITE))
321 cmdreg |= 1 << 15;
322
Jarkko Lavineneb1860b2008-03-26 16:09:29 -0400323 mod_timer(&host->cmd_timer, jiffies + HZ/2);
324
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100325 OMAP_MMC_WRITE(host, CTO, 200);
326 OMAP_MMC_WRITE(host, ARGL, cmd->arg & 0xffff);
327 OMAP_MMC_WRITE(host, ARGH, cmd->arg >> 16);
328 OMAP_MMC_WRITE(host, IE,
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100329 OMAP_MMC_STAT_A_EMPTY | OMAP_MMC_STAT_A_FULL |
330 OMAP_MMC_STAT_CMD_CRC | OMAP_MMC_STAT_CMD_TOUT |
331 OMAP_MMC_STAT_DATA_CRC | OMAP_MMC_STAT_DATA_TOUT |
332 OMAP_MMC_STAT_END_OF_CMD | OMAP_MMC_STAT_CARD_ERR |
333 OMAP_MMC_STAT_END_OF_DATA);
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100334 OMAP_MMC_WRITE(host, CMD, cmdreg);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100335}
336
337static void
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400338mmc_omap_release_dma(struct mmc_omap_host *host, struct mmc_data *data,
339 int abort)
340{
341 enum dma_data_direction dma_data_dir;
342
343 BUG_ON(host->dma_ch < 0);
344 if (data->error)
345 omap_stop_dma(host->dma_ch);
346 /* Release DMA channel lazily */
347 mod_timer(&host->dma_timer, jiffies + HZ);
348 if (data->flags & MMC_DATA_WRITE)
349 dma_data_dir = DMA_TO_DEVICE;
350 else
351 dma_data_dir = DMA_FROM_DEVICE;
352 dma_unmap_sg(mmc_dev(host->mmc), data->sg, host->sg_len,
353 dma_data_dir);
354}
355
356static void
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100357mmc_omap_xfer_done(struct mmc_omap_host *host, struct mmc_data *data)
358{
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400359 if (host->dma_in_use)
360 mmc_omap_release_dma(host, data, data->error);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100361
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100362 host->data = NULL;
363 host->sg_len = 0;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100364
365 /* NOTE: MMC layer will sometimes poll-wait CMD13 next, issuing
366 * dozens of requests until the card finishes writing data.
367 * It'd be cheaper to just wait till an EOFB interrupt arrives...
368 */
369
370 if (!data->stop) {
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400371 struct mmc_host *mmc;
372
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100373 host->mrq = NULL;
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400374 mmc = host->mmc;
375 mmc_omap_release_slot(host->current_slot);
376 mmc_request_done(mmc, data->mrq);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100377 return;
378 }
379
380 mmc_omap_start_command(host, data->stop);
381}
382
383static void
Jarkko Lavineneb1860b2008-03-26 16:09:29 -0400384mmc_omap_send_abort(struct mmc_omap_host *host)
385{
386 struct mmc_omap_slot *slot = host->current_slot;
387 unsigned int restarts, passes, timeout;
388 u16 stat = 0;
389
390 /* Sending abort takes 80 clocks. Have some extra and round up */
391 timeout = (120*1000000 + slot->fclk_freq - 1)/slot->fclk_freq;
392 restarts = 0;
393 while (restarts < 10000) {
394 OMAP_MMC_WRITE(host, STAT, 0xFFFF);
395 OMAP_MMC_WRITE(host, CMD, (3 << 12) | (1 << 7));
396
397 passes = 0;
398 while (passes < timeout) {
399 stat = OMAP_MMC_READ(host, STAT);
400 if (stat & OMAP_MMC_STAT_END_OF_CMD)
401 goto out;
402 udelay(1);
403 passes++;
404 }
405
406 restarts++;
407 }
408out:
409 OMAP_MMC_WRITE(host, STAT, stat);
410}
411
412static void
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400413mmc_omap_abort_xfer(struct mmc_omap_host *host, struct mmc_data *data)
414{
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400415 u16 ie;
416
417 if (host->dma_in_use)
418 mmc_omap_release_dma(host, data, 1);
419
420 host->data = NULL;
421 host->sg_len = 0;
422
423 ie = OMAP_MMC_READ(host, IE);
424 OMAP_MMC_WRITE(host, IE, 0);
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400425 OMAP_MMC_WRITE(host, IE, ie);
Jarkko Lavineneb1860b2008-03-26 16:09:29 -0400426 mmc_omap_send_abort(host);
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400427}
428
429static void
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100430mmc_omap_end_of_data(struct mmc_omap_host *host, struct mmc_data *data)
431{
432 unsigned long flags;
433 int done;
434
435 if (!host->dma_in_use) {
436 mmc_omap_xfer_done(host, data);
437 return;
438 }
439 done = 0;
440 spin_lock_irqsave(&host->dma_lock, flags);
441 if (host->dma_done)
442 done = 1;
443 else
444 host->brs_received = 1;
445 spin_unlock_irqrestore(&host->dma_lock, flags);
446 if (done)
447 mmc_omap_xfer_done(host, data);
448}
449
450static void
451mmc_omap_dma_timer(unsigned long data)
452{
453 struct mmc_omap_host *host = (struct mmc_omap_host *) data;
454
455 BUG_ON(host->dma_ch < 0);
456 omap_free_dma(host->dma_ch);
457 host->dma_ch = -1;
458}
459
460static void
461mmc_omap_dma_done(struct mmc_omap_host *host, struct mmc_data *data)
462{
463 unsigned long flags;
464 int done;
465
466 done = 0;
467 spin_lock_irqsave(&host->dma_lock, flags);
468 if (host->brs_received)
469 done = 1;
470 else
471 host->dma_done = 1;
472 spin_unlock_irqrestore(&host->dma_lock, flags);
473 if (done)
474 mmc_omap_xfer_done(host, data);
475}
476
477static void
478mmc_omap_cmd_done(struct mmc_omap_host *host, struct mmc_command *cmd)
479{
480 host->cmd = NULL;
481
Jarkko Lavineneb1860b2008-03-26 16:09:29 -0400482 del_timer(&host->cmd_timer);
483
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100484 if (cmd->flags & MMC_RSP_PRESENT) {
485 if (cmd->flags & MMC_RSP_136) {
486 /* response type 2 */
487 cmd->resp[3] =
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100488 OMAP_MMC_READ(host, RSP0) |
489 (OMAP_MMC_READ(host, RSP1) << 16);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100490 cmd->resp[2] =
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100491 OMAP_MMC_READ(host, RSP2) |
492 (OMAP_MMC_READ(host, RSP3) << 16);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100493 cmd->resp[1] =
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100494 OMAP_MMC_READ(host, RSP4) |
495 (OMAP_MMC_READ(host, RSP5) << 16);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100496 cmd->resp[0] =
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100497 OMAP_MMC_READ(host, RSP6) |
498 (OMAP_MMC_READ(host, RSP7) << 16);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100499 } else {
500 /* response types 1, 1b, 3, 4, 5, 6 */
501 cmd->resp[0] =
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100502 OMAP_MMC_READ(host, RSP6) |
503 (OMAP_MMC_READ(host, RSP7) << 16);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100504 }
505 }
506
Pierre Ossman17b04292007-07-22 22:18:46 +0200507 if (host->data == NULL || cmd->error) {
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400508 struct mmc_host *mmc;
509
510 if (host->data != NULL)
511 mmc_omap_abort_xfer(host, host->data);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100512 host->mrq = NULL;
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400513 mmc = host->mmc;
514 mmc_omap_release_slot(host->current_slot);
515 mmc_request_done(mmc, cmd->mrq);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100516 }
517}
518
Jarkko Lavineneb1860b2008-03-26 16:09:29 -0400519/*
520 * Abort stuck command. Can occur when card is removed while it is being
521 * read.
522 */
523static void mmc_omap_abort_command(struct work_struct *work)
524{
525 struct mmc_omap_host *host = container_of(work, struct mmc_omap_host,
526 cmd_abort);
527 u16 ie;
528
529 ie = OMAP_MMC_READ(host, IE);
530 OMAP_MMC_WRITE(host, IE, 0);
531
532 if (!host->cmd) {
533 OMAP_MMC_WRITE(host, IE, ie);
534 return;
535 }
536
537 dev_dbg(mmc_dev(host->mmc), "Aborting stuck command CMD%d\n",
538 host->cmd->opcode);
539
540 if (host->data && host->dma_in_use)
541 mmc_omap_release_dma(host, host->data, 1);
542
543 host->data = NULL;
544 host->sg_len = 0;
545
546 mmc_omap_send_abort(host);
547 host->cmd->error = -ETIMEDOUT;
548 mmc_omap_cmd_done(host, host->cmd);
549 OMAP_MMC_WRITE(host, IE, ie);
550}
551
552static void
553mmc_omap_cmd_timer(unsigned long data)
554{
555 struct mmc_omap_host *host = (struct mmc_omap_host *) data;
556
557 schedule_work(&host->cmd_abort);
558}
559
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100560/* PIO only */
561static void
562mmc_omap_sg_to_buf(struct mmc_omap_host *host)
563{
564 struct scatterlist *sg;
565
566 sg = host->data->sg + host->sg_idx;
567 host->buffer_bytes_left = sg->length;
Jens Axboe45711f12007-10-22 21:19:53 +0200568 host->buffer = sg_virt(sg);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100569 if (host->buffer_bytes_left > host->total_bytes_left)
570 host->buffer_bytes_left = host->total_bytes_left;
571}
572
573/* PIO only */
574static void
575mmc_omap_xfer_data(struct mmc_omap_host *host, int write)
576{
577 int n;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100578
579 if (host->buffer_bytes_left == 0) {
580 host->sg_idx++;
581 BUG_ON(host->sg_idx == host->sg_len);
582 mmc_omap_sg_to_buf(host);
583 }
584 n = 64;
585 if (n > host->buffer_bytes_left)
586 n = host->buffer_bytes_left;
587 host->buffer_bytes_left -= n;
588 host->total_bytes_left -= n;
589 host->data->bytes_xfered += n;
590
591 if (write) {
Juha Yrjola juha.yrjola89783b1e42006-11-11 23:36:01 +0100592 __raw_writesw(host->virt_base + OMAP_MMC_REG_DATA, host->buffer, n);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100593 } else {
Juha Yrjola juha.yrjola89783b1e42006-11-11 23:36:01 +0100594 __raw_readsw(host->virt_base + OMAP_MMC_REG_DATA, host->buffer, n);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100595 }
596}
597
598static inline void mmc_omap_report_irq(u16 status)
599{
600 static const char *mmc_omap_status_bits[] = {
601 "EOC", "CD", "CB", "BRS", "EOFB", "DTO", "DCRC", "CTO",
602 "CCRC", "CRW", "AF", "AE", "OCRB", "CIRQ", "CERR"
603 };
604 int i, c = 0;
605
606 for (i = 0; i < ARRAY_SIZE(mmc_omap_status_bits); i++)
607 if (status & (1 << i)) {
608 if (c)
609 printk(" ");
610 printk("%s", mmc_omap_status_bits[i]);
611 c++;
612 }
613}
614
David Howells7d12e782006-10-05 14:55:46 +0100615static irqreturn_t mmc_omap_irq(int irq, void *dev_id)
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100616{
617 struct mmc_omap_host * host = (struct mmc_omap_host *)dev_id;
618 u16 status;
619 int end_command;
620 int end_transfer;
Juha Yrjola2a50b882008-03-26 16:09:26 -0400621 int transfer_error, cmd_error;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100622
623 if (host->cmd == NULL && host->data == NULL) {
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100624 status = OMAP_MMC_READ(host, STAT);
Juha Yrjola2a50b882008-03-26 16:09:26 -0400625 dev_info(mmc_dev(host->slots[0]->mmc),
626 "Spurious IRQ 0x%04x\n", status);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100627 if (status != 0) {
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100628 OMAP_MMC_WRITE(host, STAT, status);
629 OMAP_MMC_WRITE(host, IE, 0);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100630 }
631 return IRQ_HANDLED;
632 }
633
634 end_command = 0;
635 end_transfer = 0;
636 transfer_error = 0;
Juha Yrjola2a50b882008-03-26 16:09:26 -0400637 cmd_error = 0;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100638
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100639 while ((status = OMAP_MMC_READ(host, STAT)) != 0) {
Juha Yrjola2a50b882008-03-26 16:09:26 -0400640 int cmd;
641
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100642 OMAP_MMC_WRITE(host, STAT, status);
Juha Yrjola2a50b882008-03-26 16:09:26 -0400643 if (host->cmd != NULL)
644 cmd = host->cmd->opcode;
645 else
646 cmd = -1;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100647#ifdef CONFIG_MMC_DEBUG
648 dev_dbg(mmc_dev(host->mmc), "MMC IRQ %04x (CMD %d): ",
Juha Yrjola2a50b882008-03-26 16:09:26 -0400649 status, cmd);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100650 mmc_omap_report_irq(status);
651 printk("\n");
652#endif
653 if (host->total_bytes_left) {
654 if ((status & OMAP_MMC_STAT_A_FULL) ||
655 (status & OMAP_MMC_STAT_END_OF_DATA))
656 mmc_omap_xfer_data(host, 0);
657 if (status & OMAP_MMC_STAT_A_EMPTY)
658 mmc_omap_xfer_data(host, 1);
659 }
660
Juha Yrjola2a50b882008-03-26 16:09:26 -0400661 if (status & OMAP_MMC_STAT_END_OF_DATA)
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100662 end_transfer = 1;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100663
664 if (status & OMAP_MMC_STAT_DATA_TOUT) {
Juha Yrjola2a50b882008-03-26 16:09:26 -0400665 dev_dbg(mmc_dev(host->mmc), "data timeout (CMD%d)\n",
666 cmd);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100667 if (host->data) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200668 host->data->error = -ETIMEDOUT;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100669 transfer_error = 1;
670 }
671 }
672
673 if (status & OMAP_MMC_STAT_DATA_CRC) {
674 if (host->data) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200675 host->data->error = -EILSEQ;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100676 dev_dbg(mmc_dev(host->mmc),
677 "data CRC error, bytes left %d\n",
678 host->total_bytes_left);
679 transfer_error = 1;
680 } else {
681 dev_dbg(mmc_dev(host->mmc), "data CRC error\n");
682 }
683 }
684
685 if (status & OMAP_MMC_STAT_CMD_TOUT) {
686 /* Timeouts are routine with some commands */
687 if (host->cmd) {
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400688 struct mmc_omap_slot *slot =
689 host->current_slot;
Juha Yrjola2a50b882008-03-26 16:09:26 -0400690 if (slot == NULL ||
691 !mmc_omap_cover_is_open(slot))
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400692 dev_err(mmc_dev(host->mmc),
Juha Yrjola2a50b882008-03-26 16:09:26 -0400693 "command timeout (CMD%d)\n",
694 cmd);
Pierre Ossman17b04292007-07-22 22:18:46 +0200695 host->cmd->error = -ETIMEDOUT;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100696 end_command = 1;
Juha Yrjola2a50b882008-03-26 16:09:26 -0400697 cmd_error = 1;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100698 }
699 }
700
701 if (status & OMAP_MMC_STAT_CMD_CRC) {
702 if (host->cmd) {
703 dev_err(mmc_dev(host->mmc),
704 "command CRC error (CMD%d, arg 0x%08x)\n",
Juha Yrjola2a50b882008-03-26 16:09:26 -0400705 cmd, host->cmd->arg);
Pierre Ossman17b04292007-07-22 22:18:46 +0200706 host->cmd->error = -EILSEQ;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100707 end_command = 1;
Juha Yrjola2a50b882008-03-26 16:09:26 -0400708 cmd_error = 1;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100709 } else
710 dev_err(mmc_dev(host->mmc),
711 "command CRC error without cmd?\n");
712 }
713
714 if (status & OMAP_MMC_STAT_CARD_ERR) {
Ragner Magalhaes0107a4b2007-06-13 19:09:28 +0200715 dev_dbg(mmc_dev(host->mmc),
716 "ignoring card status error (CMD%d)\n",
Juha Yrjola2a50b882008-03-26 16:09:26 -0400717 cmd);
Ragner Magalhaes0107a4b2007-06-13 19:09:28 +0200718 end_command = 1;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100719 }
720
721 /*
722 * NOTE: On 1610 the END_OF_CMD may come too early when
Juha Yrjola2a50b882008-03-26 16:09:26 -0400723 * starting a write
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100724 */
725 if ((status & OMAP_MMC_STAT_END_OF_CMD) &&
726 (!(status & OMAP_MMC_STAT_A_EMPTY))) {
727 end_command = 1;
728 }
729 }
730
Juha Yrjola2a50b882008-03-26 16:09:26 -0400731 if (end_command)
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100732 mmc_omap_cmd_done(host, host->cmd);
Juha Yrjola2a50b882008-03-26 16:09:26 -0400733 if (host->data != NULL) {
734 if (transfer_error)
735 mmc_omap_xfer_done(host, host->data);
736 else if (end_transfer)
737 mmc_omap_end_of_data(host, host->data);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100738 }
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100739
740 return IRQ_HANDLED;
741}
742
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400743void omap_mmc_notify_cover_event(struct device *dev, int slot, int is_closed)
744{
745 struct mmc_omap_host *host = dev_get_drvdata(dev);
746
747 BUG_ON(slot >= host->nr_slots);
748
749 /* Other subsystems can call in here before we're initialised. */
750 if (host->nr_slots == 0 || !host->slots[slot])
751 return;
752
753 schedule_work(&host->slots[slot]->switch_work);
754}
755
756static void mmc_omap_switch_timer(unsigned long arg)
757{
758 struct mmc_omap_slot *slot = (struct mmc_omap_slot *) arg;
759
760 schedule_work(&slot->switch_work);
761}
762
763static void mmc_omap_cover_handler(struct work_struct *work)
764{
765 struct mmc_omap_slot *slot = container_of(work, struct mmc_omap_slot,
766 switch_work);
767 int cover_open;
768
769 cover_open = mmc_omap_cover_is_open(slot);
770 if (cover_open != slot->cover_open) {
771 sysfs_notify(&slot->mmc->class_dev.kobj, NULL, "cover_switch");
772 slot->cover_open = cover_open;
773 dev_info(mmc_dev(slot->mmc), "cover is now %s\n",
774 cover_open ? "open" : "closed");
775 }
776 mmc_detect_change(slot->mmc, slot->id);
777}
778
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100779/* Prepare to transfer the next segment of a scatterlist */
780static void
781mmc_omap_prepare_dma(struct mmc_omap_host *host, struct mmc_data *data)
782{
783 int dma_ch = host->dma_ch;
784 unsigned long data_addr;
785 u16 buf, frame;
786 u32 count;
787 struct scatterlist *sg = &data->sg[host->sg_idx];
788 int src_port = 0;
789 int dst_port = 0;
790 int sync_dev = 0;
791
Juha Yrjola juha.yrjola89783b1e42006-11-11 23:36:01 +0100792 data_addr = host->phys_base + OMAP_MMC_REG_DATA;
Russell Kinga3fd4a12006-06-04 17:51:15 +0100793 frame = data->blksz;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100794 count = sg_dma_len(sg);
795
Russell Kinga3fd4a12006-06-04 17:51:15 +0100796 if ((data->blocks == 1) && (count > data->blksz))
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100797 count = frame;
798
799 host->dma_len = count;
800
801 /* FIFO is 16x2 bytes on 15xx, and 32x2 bytes on 16xx and 24xx.
802 * Use 16 or 32 word frames when the blocksize is at least that large.
803 * Blocksize is usually 512 bytes; but not for some SD reads.
804 */
805 if (cpu_is_omap15xx() && frame > 32)
806 frame = 32;
807 else if (frame > 64)
808 frame = 64;
809 count /= frame;
810 frame >>= 1;
811
812 if (!(data->flags & MMC_DATA_WRITE)) {
813 buf = 0x800f | ((frame - 1) << 8);
814
815 if (cpu_class_is_omap1()) {
816 src_port = OMAP_DMA_PORT_TIPB;
817 dst_port = OMAP_DMA_PORT_EMIFF;
818 }
819 if (cpu_is_omap24xx())
820 sync_dev = OMAP24XX_DMA_MMC1_RX;
821
822 omap_set_dma_src_params(dma_ch, src_port,
823 OMAP_DMA_AMODE_CONSTANT,
824 data_addr, 0, 0);
825 omap_set_dma_dest_params(dma_ch, dst_port,
826 OMAP_DMA_AMODE_POST_INC,
827 sg_dma_address(sg), 0, 0);
828 omap_set_dma_dest_data_pack(dma_ch, 1);
829 omap_set_dma_dest_burst_mode(dma_ch, OMAP_DMA_DATA_BURST_4);
830 } else {
831 buf = 0x0f80 | ((frame - 1) << 0);
832
833 if (cpu_class_is_omap1()) {
834 src_port = OMAP_DMA_PORT_EMIFF;
835 dst_port = OMAP_DMA_PORT_TIPB;
836 }
837 if (cpu_is_omap24xx())
838 sync_dev = OMAP24XX_DMA_MMC1_TX;
839
840 omap_set_dma_dest_params(dma_ch, dst_port,
841 OMAP_DMA_AMODE_CONSTANT,
842 data_addr, 0, 0);
843 omap_set_dma_src_params(dma_ch, src_port,
844 OMAP_DMA_AMODE_POST_INC,
845 sg_dma_address(sg), 0, 0);
846 omap_set_dma_src_data_pack(dma_ch, 1);
847 omap_set_dma_src_burst_mode(dma_ch, OMAP_DMA_DATA_BURST_4);
848 }
849
850 /* Max limit for DMA frame count is 0xffff */
Eric Sesterhennd99c5902006-11-30 05:27:38 +0100851 BUG_ON(count > 0xffff);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100852
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100853 OMAP_MMC_WRITE(host, BUF, buf);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100854 omap_set_dma_transfer_params(dma_ch, OMAP_DMA_DATA_TYPE_S16,
855 frame, count, OMAP_DMA_SYNC_FRAME,
856 sync_dev, 0);
857}
858
859/* A scatterlist segment completed */
860static void mmc_omap_dma_cb(int lch, u16 ch_status, void *data)
861{
862 struct mmc_omap_host *host = (struct mmc_omap_host *) data;
863 struct mmc_data *mmcdat = host->data;
864
865 if (unlikely(host->dma_ch < 0)) {
Tony Lindgrence9c1a82006-07-01 19:56:44 +0100866 dev_err(mmc_dev(host->mmc),
867 "DMA callback while DMA not enabled\n");
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100868 return;
869 }
870 /* FIXME: We really should do something to _handle_ the errors */
Tony Lindgren7ff879d2006-06-26 16:16:15 -0700871 if (ch_status & OMAP1_DMA_TOUT_IRQ) {
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100872 dev_err(mmc_dev(host->mmc),"DMA timeout\n");
873 return;
874 }
875 if (ch_status & OMAP_DMA_DROP_IRQ) {
876 dev_err(mmc_dev(host->mmc), "DMA sync error\n");
877 return;
878 }
879 if (!(ch_status & OMAP_DMA_BLOCK_IRQ)) {
880 return;
881 }
882 mmcdat->bytes_xfered += host->dma_len;
883 host->sg_idx++;
884 if (host->sg_idx < host->sg_len) {
885 mmc_omap_prepare_dma(host, host->data);
886 omap_start_dma(host->dma_ch);
887 } else
888 mmc_omap_dma_done(host, host->data);
889}
890
891static int mmc_omap_get_dma_channel(struct mmc_omap_host *host, struct mmc_data *data)
892{
893 const char *dev_name;
894 int sync_dev, dma_ch, is_read, r;
895
896 is_read = !(data->flags & MMC_DATA_WRITE);
897 del_timer_sync(&host->dma_timer);
898 if (host->dma_ch >= 0) {
899 if (is_read == host->dma_is_read)
900 return 0;
901 omap_free_dma(host->dma_ch);
902 host->dma_ch = -1;
903 }
904
905 if (is_read) {
906 if (host->id == 1) {
907 sync_dev = OMAP_DMA_MMC_RX;
908 dev_name = "MMC1 read";
909 } else {
910 sync_dev = OMAP_DMA_MMC2_RX;
911 dev_name = "MMC2 read";
912 }
913 } else {
914 if (host->id == 1) {
915 sync_dev = OMAP_DMA_MMC_TX;
916 dev_name = "MMC1 write";
917 } else {
918 sync_dev = OMAP_DMA_MMC2_TX;
919 dev_name = "MMC2 write";
920 }
921 }
922 r = omap_request_dma(sync_dev, dev_name, mmc_omap_dma_cb,
923 host, &dma_ch);
924 if (r != 0) {
925 dev_dbg(mmc_dev(host->mmc), "omap_request_dma() failed with %d\n", r);
926 return r;
927 }
928 host->dma_ch = dma_ch;
929 host->dma_is_read = is_read;
930
931 return 0;
932}
933
934static inline void set_cmd_timeout(struct mmc_omap_host *host, struct mmc_request *req)
935{
936 u16 reg;
937
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100938 reg = OMAP_MMC_READ(host, SDIO);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100939 reg &= ~(1 << 5);
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100940 OMAP_MMC_WRITE(host, SDIO, reg);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100941 /* Set maximum timeout */
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100942 OMAP_MMC_WRITE(host, CTO, 0xff);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100943}
944
945static inline void set_data_timeout(struct mmc_omap_host *host, struct mmc_request *req)
946{
Juha Yrjolab8f9f0e2008-03-26 16:09:16 -0400947 unsigned int timeout, cycle_ns;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100948 u16 reg;
949
Juha Yrjolab8f9f0e2008-03-26 16:09:16 -0400950 cycle_ns = 1000000000 / host->current_slot->fclk_freq;
951 timeout = req->data->timeout_ns / cycle_ns;
952 timeout += req->data->timeout_clks;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100953
954 /* Check if we need to use timeout multiplier register */
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100955 reg = OMAP_MMC_READ(host, SDIO);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100956 if (timeout > 0xffff) {
957 reg |= (1 << 5);
958 timeout /= 1024;
959 } else
960 reg &= ~(1 << 5);
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100961 OMAP_MMC_WRITE(host, SDIO, reg);
962 OMAP_MMC_WRITE(host, DTO, timeout);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100963}
964
965static void
966mmc_omap_prepare_data(struct mmc_omap_host *host, struct mmc_request *req)
967{
968 struct mmc_data *data = req->data;
969 int i, use_dma, block_size;
970 unsigned sg_len;
971
972 host->data = data;
973 if (data == NULL) {
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100974 OMAP_MMC_WRITE(host, BLEN, 0);
975 OMAP_MMC_WRITE(host, NBLK, 0);
976 OMAP_MMC_WRITE(host, BUF, 0);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100977 host->dma_in_use = 0;
978 set_cmd_timeout(host, req);
979 return;
980 }
981
Russell Kinga3fd4a12006-06-04 17:51:15 +0100982 block_size = data->blksz;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100983
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100984 OMAP_MMC_WRITE(host, NBLK, data->blocks - 1);
985 OMAP_MMC_WRITE(host, BLEN, block_size - 1);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100986 set_data_timeout(host, req);
987
988 /* cope with calling layer confusion; it issues "single
989 * block" writes using multi-block scatterlists.
990 */
991 sg_len = (data->blocks == 1) ? 1 : data->sg_len;
992
993 /* Only do DMA for entire blocks */
994 use_dma = host->use_dma;
995 if (use_dma) {
996 for (i = 0; i < sg_len; i++) {
997 if ((data->sg[i].length % block_size) != 0) {
998 use_dma = 0;
999 break;
1000 }
1001 }
1002 }
1003
1004 host->sg_idx = 0;
1005 if (use_dma) {
1006 if (mmc_omap_get_dma_channel(host, data) == 0) {
1007 enum dma_data_direction dma_data_dir;
1008
1009 if (data->flags & MMC_DATA_WRITE)
1010 dma_data_dir = DMA_TO_DEVICE;
1011 else
1012 dma_data_dir = DMA_FROM_DEVICE;
1013
1014 host->sg_len = dma_map_sg(mmc_dev(host->mmc), data->sg,
1015 sg_len, dma_data_dir);
1016 host->total_bytes_left = 0;
1017 mmc_omap_prepare_dma(host, req->data);
1018 host->brs_received = 0;
1019 host->dma_done = 0;
1020 host->dma_in_use = 1;
1021 } else
1022 use_dma = 0;
1023 }
1024
1025 /* Revert to PIO? */
1026 if (!use_dma) {
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +01001027 OMAP_MMC_WRITE(host, BUF, 0x1f1f);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001028 host->total_bytes_left = data->blocks * block_size;
1029 host->sg_len = sg_len;
1030 mmc_omap_sg_to_buf(host);
1031 host->dma_in_use = 0;
1032 }
1033}
1034
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001035static void mmc_omap_start_request(struct mmc_omap_host *host,
1036 struct mmc_request *req)
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001037{
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001038 BUG_ON(host->mrq != NULL);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001039
1040 host->mrq = req;
1041
1042 /* only touch fifo AFTER the controller readies it */
1043 mmc_omap_prepare_data(host, req);
1044 mmc_omap_start_command(host, req->cmd);
1045 if (host->dma_in_use)
1046 omap_start_dma(host->dma_ch);
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001047 BUG_ON(irqs_disabled());
1048}
1049
1050static void mmc_omap_request(struct mmc_host *mmc, struct mmc_request *req)
1051{
1052 struct mmc_omap_slot *slot = mmc_priv(mmc);
1053 struct mmc_omap_host *host = slot->host;
1054 unsigned long flags;
1055
1056 spin_lock_irqsave(&host->slot_lock, flags);
1057 if (host->mmc != NULL) {
1058 BUG_ON(slot->mrq != NULL);
1059 slot->mrq = req;
1060 spin_unlock_irqrestore(&host->slot_lock, flags);
1061 return;
1062 } else
1063 host->mmc = mmc;
1064 spin_unlock_irqrestore(&host->slot_lock, flags);
1065 mmc_omap_select_slot(slot, 1);
1066 mmc_omap_start_request(host, req);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001067}
1068
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001069static void mmc_omap_set_power(struct mmc_omap_slot *slot, int power_on,
1070 int vdd)
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001071{
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001072 struct mmc_omap_host *host;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001073
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001074 host = slot->host;
1075
1076 if (slot->pdata->set_power != NULL)
1077 slot->pdata->set_power(mmc_dev(slot->mmc), slot->id, power_on,
1078 vdd);
1079
1080 if (cpu_is_omap24xx()) {
1081 u16 w;
1082
1083 if (power_on) {
1084 w = OMAP_MMC_READ(host, CON);
1085 OMAP_MMC_WRITE(host, CON, w | (1 << 11));
1086 } else {
1087 w = OMAP_MMC_READ(host, CON);
1088 OMAP_MMC_WRITE(host, CON, w & ~(1 << 11));
1089 }
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001090 }
1091}
1092
Tony Lindgrend3af5ab2007-05-01 16:36:00 +02001093static int mmc_omap_calc_divisor(struct mmc_host *mmc, struct mmc_ios *ios)
1094{
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001095 struct mmc_omap_slot *slot = mmc_priv(mmc);
1096 struct mmc_omap_host *host = slot->host;
Tony Lindgrend3af5ab2007-05-01 16:36:00 +02001097 int func_clk_rate = clk_get_rate(host->fclk);
1098 int dsor;
1099
1100 if (ios->clock == 0)
1101 return 0;
1102
1103 dsor = func_clk_rate / ios->clock;
1104 if (dsor < 1)
1105 dsor = 1;
1106
1107 if (func_clk_rate / dsor > ios->clock)
1108 dsor++;
1109
1110 if (dsor > 250)
1111 dsor = 250;
Tony Lindgrend3af5ab2007-05-01 16:36:00 +02001112
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001113 slot->fclk_freq = func_clk_rate / dsor;
1114
Tony Lindgrend3af5ab2007-05-01 16:36:00 +02001115 if (ios->bus_width == MMC_BUS_WIDTH_4)
1116 dsor |= 1 << 15;
1117
1118 return dsor;
1119}
1120
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001121static void mmc_omap_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
1122{
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001123 struct mmc_omap_slot *slot = mmc_priv(mmc);
1124 struct mmc_omap_host *host = slot->host;
1125 int i, dsor;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001126
Tony Lindgrend3af5ab2007-05-01 16:36:00 +02001127 dsor = mmc_omap_calc_divisor(mmc, ios);
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001128
1129 mmc_omap_select_slot(slot, 0);
1130
1131 if (ios->vdd != slot->vdd)
1132 slot->vdd = ios->vdd;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001133
1134 switch (ios->power_mode) {
1135 case MMC_POWER_OFF:
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001136 mmc_omap_set_power(slot, 0, ios->vdd);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001137 break;
1138 case MMC_POWER_UP:
Tony Lindgren46a67302007-05-01 16:34:16 +02001139 /* Cannot touch dsor yet, just power up MMC */
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001140 mmc_omap_set_power(slot, 1, ios->vdd);
1141 goto exit;
Tony Lindgren46a67302007-05-01 16:34:16 +02001142 case MMC_POWER_ON:
Juha Yrjola juha.yrjolac5cb4312006-11-11 23:42:39 +01001143 dsor |= 1 << 11;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001144 break;
1145 }
1146
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001147 if (slot->bus_mode != ios->bus_mode) {
1148 if (slot->pdata->set_bus_mode != NULL)
1149 slot->pdata->set_bus_mode(mmc_dev(mmc), slot->id,
1150 ios->bus_mode);
1151 slot->bus_mode = ios->bus_mode;
1152 }
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001153
1154 /* On insanely high arm_per frequencies something sometimes
1155 * goes somehow out of sync, and the POW bit is not being set,
1156 * which results in the while loop below getting stuck.
1157 * Writing to the CON register twice seems to do the trick. */
1158 for (i = 0; i < 2; i++)
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +01001159 OMAP_MMC_WRITE(host, CON, dsor);
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001160 slot->saved_con = dsor;
Tony Lindgren46a67302007-05-01 16:34:16 +02001161 if (ios->power_mode == MMC_POWER_ON) {
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001162 /* Send clock cycles, poll completion */
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +01001163 OMAP_MMC_WRITE(host, IE, 0);
1164 OMAP_MMC_WRITE(host, STAT, 0xffff);
Juha Yrjola juha.yrjolac5cb4312006-11-11 23:42:39 +01001165 OMAP_MMC_WRITE(host, CMD, 1 << 7);
1166 while ((OMAP_MMC_READ(host, STAT) & 1) == 0);
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +01001167 OMAP_MMC_WRITE(host, STAT, 1);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001168 }
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001169
1170exit:
1171 mmc_omap_release_slot(slot);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001172}
1173
David Brownellab7aefd2006-11-12 17:55:30 -08001174static const struct mmc_host_ops mmc_omap_ops = {
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001175 .request = mmc_omap_request,
1176 .set_ios = mmc_omap_set_ios,
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001177};
1178
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001179static int __init mmc_omap_new_slot(struct mmc_omap_host *host, int id)
1180{
1181 struct mmc_omap_slot *slot = NULL;
1182 struct mmc_host *mmc;
1183 int r;
1184
1185 mmc = mmc_alloc_host(sizeof(struct mmc_omap_slot), host->dev);
1186 if (mmc == NULL)
1187 return -ENOMEM;
1188
1189 slot = mmc_priv(mmc);
1190 slot->host = host;
1191 slot->mmc = mmc;
1192 slot->id = id;
1193 slot->pdata = &host->pdata->slots[id];
1194
1195 host->slots[id] = slot;
1196
1197 mmc->caps = MMC_CAP_MULTIWRITE;
1198 if (host->pdata->conf.wire4)
1199 mmc->caps |= MMC_CAP_4_BIT_DATA;
1200
1201 mmc->ops = &mmc_omap_ops;
1202 mmc->f_min = 400000;
1203
1204 if (cpu_class_is_omap2())
1205 mmc->f_max = 48000000;
1206 else
1207 mmc->f_max = 24000000;
1208 if (host->pdata->max_freq)
1209 mmc->f_max = min(host->pdata->max_freq, mmc->f_max);
1210 mmc->ocr_avail = slot->pdata->ocr_mask;
1211
1212 /* Use scatterlist DMA to reduce per-transfer costs.
1213 * NOTE max_seg_size assumption that small blocks aren't
1214 * normally used (except e.g. for reading SD registers).
1215 */
1216 mmc->max_phys_segs = 32;
1217 mmc->max_hw_segs = 32;
1218 mmc->max_blk_size = 2048; /* BLEN is 11 bits (+1) */
1219 mmc->max_blk_count = 2048; /* NBLK is 11 bits (+1) */
1220 mmc->max_req_size = mmc->max_blk_size * mmc->max_blk_count;
1221 mmc->max_seg_size = mmc->max_req_size;
1222
1223 r = mmc_add_host(mmc);
1224 if (r < 0)
1225 goto err_remove_host;
1226
1227 if (slot->pdata->name != NULL) {
1228 r = device_create_file(&mmc->class_dev,
1229 &dev_attr_slot_name);
1230 if (r < 0)
1231 goto err_remove_host;
1232 }
1233
Juha Yrjola5a0f3f12008-03-26 16:09:08 -04001234 if (slot->pdata->get_cover_state != NULL) {
1235 r = device_create_file(&mmc->class_dev,
1236 &dev_attr_cover_switch);
1237 if (r < 0)
1238 goto err_remove_slot_name;
1239
1240 INIT_WORK(&slot->switch_work, mmc_omap_cover_handler);
Carlos Eduardo Aguiar01e77e12008-03-26 16:09:34 -04001241 setup_timer(&slot->switch_timer, mmc_omap_switch_timer,
1242 (unsigned long) slot);
Juha Yrjola5a0f3f12008-03-26 16:09:08 -04001243 schedule_work(&slot->switch_work);
1244 }
1245
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001246 return 0;
1247
Juha Yrjola5a0f3f12008-03-26 16:09:08 -04001248err_remove_slot_name:
1249 if (slot->pdata->name != NULL)
1250 device_remove_file(&mmc->class_dev, &dev_attr_slot_name);
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001251err_remove_host:
1252 mmc_remove_host(mmc);
1253 mmc_free_host(mmc);
1254 return r;
1255}
1256
1257static void mmc_omap_remove_slot(struct mmc_omap_slot *slot)
1258{
1259 struct mmc_host *mmc = slot->mmc;
1260
1261 if (slot->pdata->name != NULL)
1262 device_remove_file(&mmc->class_dev, &dev_attr_slot_name);
Juha Yrjola5a0f3f12008-03-26 16:09:08 -04001263 if (slot->pdata->get_cover_state != NULL)
1264 device_remove_file(&mmc->class_dev, &dev_attr_cover_switch);
1265
1266 del_timer_sync(&slot->switch_timer);
1267 flush_scheduled_work();
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001268
1269 mmc_remove_host(mmc);
1270 mmc_free_host(mmc);
1271}
1272
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001273static int __init mmc_omap_probe(struct platform_device *pdev)
1274{
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001275 struct omap_mmc_platform_data *pdata = pdev->dev.platform_data;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001276 struct mmc_omap_host *host = NULL;
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001277 struct resource *res;
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001278 int i, ret = 0;
Tony Lindgrence9c1a82006-07-01 19:56:44 +01001279 int irq;
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001280
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001281 if (pdata == NULL) {
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001282 dev_err(&pdev->dev, "platform data missing\n");
1283 return -ENXIO;
1284 }
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001285 if (pdata->nr_slots == 0) {
1286 dev_err(&pdev->dev, "no slots\n");
1287 return -ENXIO;
1288 }
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001289
1290 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Tony Lindgrence9c1a82006-07-01 19:56:44 +01001291 irq = platform_get_irq(pdev, 0);
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001292 if (res == NULL || irq < 0)
Tony Lindgrence9c1a82006-07-01 19:56:44 +01001293 return -ENXIO;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001294
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001295 res = request_mem_region(res->start, res->end - res->start + 1,
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001296 pdev->name);
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001297 if (res == NULL)
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001298 return -EBUSY;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001299
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001300 host = kzalloc(sizeof(struct mmc_omap_host), GFP_KERNEL);
1301 if (host == NULL) {
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001302 ret = -ENOMEM;
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001303 goto err_free_mem_region;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001304 }
1305
Jarkko Lavineneb1860b2008-03-26 16:09:29 -04001306 INIT_WORK(&host->cmd_abort, mmc_omap_abort_command);
Carlos Eduardo Aguiar01e77e12008-03-26 16:09:34 -04001307 setup_timer(&host->cmd_timer, mmc_omap_cmd_timer, (unsigned long) host);
Jarkko Lavineneb1860b2008-03-26 16:09:29 -04001308
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001309 spin_lock_init(&host->dma_lock);
Carlos Eduardo Aguiar01e77e12008-03-26 16:09:34 -04001310 setup_timer(&host->dma_timer, mmc_omap_dma_timer, (unsigned long) host);
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001311 spin_lock_init(&host->slot_lock);
1312 init_waitqueue_head(&host->slot_wq);
1313
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001314 host->pdata = pdata;
1315 host->dev = &pdev->dev;
1316 platform_set_drvdata(pdev, host);
1317
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001318 host->id = pdev->id;
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001319 host->mem_res = res;
Tony Lindgrence9c1a82006-07-01 19:56:44 +01001320 host->irq = irq;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001321
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001322 host->use_dma = 1;
1323 host->dma_ch = -1;
1324
1325 host->irq = irq;
1326 host->phys_base = host->mem_res->start;
1327 host->virt_base = (void __iomem *) IO_ADDRESS(host->phys_base);
1328
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001329 if (cpu_is_omap24xx()) {
1330 host->iclk = clk_get(&pdev->dev, "mmc_ick");
1331 if (IS_ERR(host->iclk))
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001332 goto err_free_mmc_host;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001333 clk_enable(host->iclk);
1334 }
1335
1336 if (!cpu_is_omap24xx())
1337 host->fclk = clk_get(&pdev->dev, "mmc_ck");
1338 else
1339 host->fclk = clk_get(&pdev->dev, "mmc_fck");
1340
1341 if (IS_ERR(host->fclk)) {
1342 ret = PTR_ERR(host->fclk);
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001343 goto err_free_iclk;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001344 }
1345
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001346 ret = request_irq(host->irq, mmc_omap_irq, 0, DRIVER_NAME, host);
1347 if (ret)
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001348 goto err_free_fclk;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001349
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001350 if (pdata->init != NULL) {
1351 ret = pdata->init(&pdev->dev);
1352 if (ret < 0)
1353 goto err_free_irq;
1354 }
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001355
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001356 host->nr_slots = pdata->nr_slots;
1357 for (i = 0; i < pdata->nr_slots; i++) {
1358 ret = mmc_omap_new_slot(host, i);
1359 if (ret < 0) {
1360 while (--i >= 0)
1361 mmc_omap_remove_slot(host->slots[i]);
1362
1363 goto err_plat_cleanup;
1364 }
1365 }
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001366
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001367 return 0;
1368
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001369err_plat_cleanup:
1370 if (pdata->cleanup)
1371 pdata->cleanup(&pdev->dev);
1372err_free_irq:
1373 free_irq(host->irq, host);
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001374err_free_fclk:
1375 clk_put(host->fclk);
1376err_free_iclk:
1377 if (host->iclk != NULL) {
1378 clk_disable(host->iclk);
1379 clk_put(host->iclk);
1380 }
1381err_free_mmc_host:
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001382 kfree(host);
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001383err_free_mem_region:
1384 release_mem_region(res->start, res->end - res->start + 1);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001385 return ret;
1386}
1387
1388static int mmc_omap_remove(struct platform_device *pdev)
1389{
1390 struct mmc_omap_host *host = platform_get_drvdata(pdev);
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001391 int i;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001392
1393 platform_set_drvdata(pdev, NULL);
1394
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001395 BUG_ON(host == NULL);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001396
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001397 for (i = 0; i < host->nr_slots; i++)
1398 mmc_omap_remove_slot(host->slots[i]);
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001399
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001400 if (host->pdata->cleanup)
1401 host->pdata->cleanup(&pdev->dev);
1402
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001403 if (host->iclk && !IS_ERR(host->iclk))
1404 clk_put(host->iclk);
1405 if (host->fclk && !IS_ERR(host->fclk))
1406 clk_put(host->fclk);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001407
1408 release_mem_region(pdev->resource[0].start,
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001409 pdev->resource[0].end - pdev->resource[0].start + 1);
1410
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001411 kfree(host);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001412
1413 return 0;
1414}
1415
1416#ifdef CONFIG_PM
1417static int mmc_omap_suspend(struct platform_device *pdev, pm_message_t mesg)
1418{
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001419 int i, ret = 0;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001420 struct mmc_omap_host *host = platform_get_drvdata(pdev);
1421
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001422 if (host == NULL || host->suspended)
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001423 return 0;
1424
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001425 for (i = 0; i < host->nr_slots; i++) {
1426 struct mmc_omap_slot *slot;
1427
1428 slot = host->slots[i];
1429 ret = mmc_suspend_host(slot->mmc, mesg);
1430 if (ret < 0) {
1431 while (--i >= 0) {
1432 slot = host->slots[i];
1433 mmc_resume_host(slot->mmc);
1434 }
1435 return ret;
1436 }
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001437 }
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001438 host->suspended = 1;
1439 return 0;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001440}
1441
1442static int mmc_omap_resume(struct platform_device *pdev)
1443{
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001444 int i, ret = 0;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001445 struct mmc_omap_host *host = platform_get_drvdata(pdev);
1446
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001447 if (host == NULL || !host->suspended)
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001448 return 0;
1449
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001450 for (i = 0; i < host->nr_slots; i++) {
1451 struct mmc_omap_slot *slot;
1452 slot = host->slots[i];
1453 ret = mmc_resume_host(slot->mmc);
1454 if (ret < 0)
1455 return ret;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001456
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001457 host->suspended = 0;
1458 }
1459 return 0;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001460}
1461#else
1462#define mmc_omap_suspend NULL
1463#define mmc_omap_resume NULL
1464#endif
1465
1466static struct platform_driver mmc_omap_driver = {
1467 .probe = mmc_omap_probe,
1468 .remove = mmc_omap_remove,
1469 .suspend = mmc_omap_suspend,
1470 .resume = mmc_omap_resume,
1471 .driver = {
1472 .name = DRIVER_NAME,
Kay Sieversbc65c722008-04-15 14:34:28 -07001473 .owner = THIS_MODULE,
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001474 },
1475};
1476
1477static int __init mmc_omap_init(void)
1478{
1479 return platform_driver_register(&mmc_omap_driver);
1480}
1481
1482static void __exit mmc_omap_exit(void)
1483{
1484 platform_driver_unregister(&mmc_omap_driver);
1485}
1486
1487module_init(mmc_omap_init);
1488module_exit(mmc_omap_exit);
1489
1490MODULE_DESCRIPTION("OMAP Multimedia Card driver");
1491MODULE_LICENSE("GPL");
Kay Sieversbc65c722008-04-15 14:34:28 -07001492MODULE_ALIAS("platform:" DRIVER_NAME);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001493MODULE_AUTHOR("Juha Yrjölä");