blob: 8f393e8ed42fdf097ba6fa2eae28481507ca9800 [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 */
Jarkko Lavinen7584d272008-03-26 16:09:42 -040097#define OMAP_MMC_COVER_POLL_DELAY 500
Carlos Aguiar730c9b72006-03-29 09:21:00 +010098
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
Jarkko Lavinen7584d272008-03-26 16:09:42 -0400109 struct tasklet_struct cover_tasklet;
110 struct timer_list cover_timer;
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400111 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
Jarkko Lavinen7584d272008-03-26 16:09:42 -0400743void omap_mmc_notify_cover_event(struct device *dev, int num, int is_closed)
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400744{
Jarkko Lavinen7584d272008-03-26 16:09:42 -0400745 int cover_open;
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400746 struct mmc_omap_host *host = dev_get_drvdata(dev);
Jarkko Lavinen7584d272008-03-26 16:09:42 -0400747 struct mmc_omap_slot *slot = host->slots[num];
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400748
Jarkko Lavinen7584d272008-03-26 16:09:42 -0400749 BUG_ON(num >= host->nr_slots);
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400750
751 /* Other subsystems can call in here before we're initialised. */
Jarkko Lavinen7584d272008-03-26 16:09:42 -0400752 if (host->nr_slots == 0 || !host->slots[num])
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400753 return;
754
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400755 cover_open = mmc_omap_cover_is_open(slot);
756 if (cover_open != slot->cover_open) {
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400757 slot->cover_open = cover_open;
Jarkko Lavinen7584d272008-03-26 16:09:42 -0400758 sysfs_notify(&slot->mmc->class_dev.kobj, NULL, "cover_switch");
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400759 }
Jarkko Lavinen7584d272008-03-26 16:09:42 -0400760
761 tasklet_hi_schedule(&slot->cover_tasklet);
762}
763
764static void mmc_omap_cover_timer(unsigned long arg)
765{
766 struct mmc_omap_slot *slot = (struct mmc_omap_slot *) arg;
767 tasklet_schedule(&slot->cover_tasklet);
768}
769
770static void mmc_omap_cover_handler(unsigned long param)
771{
772 struct mmc_omap_slot *slot = (struct mmc_omap_slot *)param;
773 int cover_open = mmc_omap_cover_is_open(slot);
774
775 mmc_detect_change(slot->mmc, 0);
776 if (!cover_open)
777 return;
778
779 /*
780 * If no card is inserted, we postpone polling until
781 * the cover has been closed.
782 */
783 if (slot->mmc->card == NULL || !mmc_card_present(slot->mmc->card))
784 return;
785
786 mod_timer(&slot->cover_timer,
787 jiffies + msecs_to_jiffies(OMAP_MMC_COVER_POLL_DELAY));
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400788}
789
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100790/* Prepare to transfer the next segment of a scatterlist */
791static void
792mmc_omap_prepare_dma(struct mmc_omap_host *host, struct mmc_data *data)
793{
794 int dma_ch = host->dma_ch;
795 unsigned long data_addr;
796 u16 buf, frame;
797 u32 count;
798 struct scatterlist *sg = &data->sg[host->sg_idx];
799 int src_port = 0;
800 int dst_port = 0;
801 int sync_dev = 0;
802
Juha Yrjola juha.yrjola89783b1e42006-11-11 23:36:01 +0100803 data_addr = host->phys_base + OMAP_MMC_REG_DATA;
Russell Kinga3fd4a12006-06-04 17:51:15 +0100804 frame = data->blksz;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100805 count = sg_dma_len(sg);
806
Russell Kinga3fd4a12006-06-04 17:51:15 +0100807 if ((data->blocks == 1) && (count > data->blksz))
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100808 count = frame;
809
810 host->dma_len = count;
811
812 /* FIFO is 16x2 bytes on 15xx, and 32x2 bytes on 16xx and 24xx.
813 * Use 16 or 32 word frames when the blocksize is at least that large.
814 * Blocksize is usually 512 bytes; but not for some SD reads.
815 */
816 if (cpu_is_omap15xx() && frame > 32)
817 frame = 32;
818 else if (frame > 64)
819 frame = 64;
820 count /= frame;
821 frame >>= 1;
822
823 if (!(data->flags & MMC_DATA_WRITE)) {
824 buf = 0x800f | ((frame - 1) << 8);
825
826 if (cpu_class_is_omap1()) {
827 src_port = OMAP_DMA_PORT_TIPB;
828 dst_port = OMAP_DMA_PORT_EMIFF;
829 }
830 if (cpu_is_omap24xx())
831 sync_dev = OMAP24XX_DMA_MMC1_RX;
832
833 omap_set_dma_src_params(dma_ch, src_port,
834 OMAP_DMA_AMODE_CONSTANT,
835 data_addr, 0, 0);
836 omap_set_dma_dest_params(dma_ch, dst_port,
837 OMAP_DMA_AMODE_POST_INC,
838 sg_dma_address(sg), 0, 0);
839 omap_set_dma_dest_data_pack(dma_ch, 1);
840 omap_set_dma_dest_burst_mode(dma_ch, OMAP_DMA_DATA_BURST_4);
841 } else {
842 buf = 0x0f80 | ((frame - 1) << 0);
843
844 if (cpu_class_is_omap1()) {
845 src_port = OMAP_DMA_PORT_EMIFF;
846 dst_port = OMAP_DMA_PORT_TIPB;
847 }
848 if (cpu_is_omap24xx())
849 sync_dev = OMAP24XX_DMA_MMC1_TX;
850
851 omap_set_dma_dest_params(dma_ch, dst_port,
852 OMAP_DMA_AMODE_CONSTANT,
853 data_addr, 0, 0);
854 omap_set_dma_src_params(dma_ch, src_port,
855 OMAP_DMA_AMODE_POST_INC,
856 sg_dma_address(sg), 0, 0);
857 omap_set_dma_src_data_pack(dma_ch, 1);
858 omap_set_dma_src_burst_mode(dma_ch, OMAP_DMA_DATA_BURST_4);
859 }
860
861 /* Max limit for DMA frame count is 0xffff */
Eric Sesterhennd99c5902006-11-30 05:27:38 +0100862 BUG_ON(count > 0xffff);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100863
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100864 OMAP_MMC_WRITE(host, BUF, buf);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100865 omap_set_dma_transfer_params(dma_ch, OMAP_DMA_DATA_TYPE_S16,
866 frame, count, OMAP_DMA_SYNC_FRAME,
867 sync_dev, 0);
868}
869
870/* A scatterlist segment completed */
871static void mmc_omap_dma_cb(int lch, u16 ch_status, void *data)
872{
873 struct mmc_omap_host *host = (struct mmc_omap_host *) data;
874 struct mmc_data *mmcdat = host->data;
875
876 if (unlikely(host->dma_ch < 0)) {
Tony Lindgrence9c1a82006-07-01 19:56:44 +0100877 dev_err(mmc_dev(host->mmc),
878 "DMA callback while DMA not enabled\n");
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100879 return;
880 }
881 /* FIXME: We really should do something to _handle_ the errors */
Tony Lindgren7ff879d2006-06-26 16:16:15 -0700882 if (ch_status & OMAP1_DMA_TOUT_IRQ) {
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100883 dev_err(mmc_dev(host->mmc),"DMA timeout\n");
884 return;
885 }
886 if (ch_status & OMAP_DMA_DROP_IRQ) {
887 dev_err(mmc_dev(host->mmc), "DMA sync error\n");
888 return;
889 }
890 if (!(ch_status & OMAP_DMA_BLOCK_IRQ)) {
891 return;
892 }
893 mmcdat->bytes_xfered += host->dma_len;
894 host->sg_idx++;
895 if (host->sg_idx < host->sg_len) {
896 mmc_omap_prepare_dma(host, host->data);
897 omap_start_dma(host->dma_ch);
898 } else
899 mmc_omap_dma_done(host, host->data);
900}
901
902static int mmc_omap_get_dma_channel(struct mmc_omap_host *host, struct mmc_data *data)
903{
904 const char *dev_name;
905 int sync_dev, dma_ch, is_read, r;
906
907 is_read = !(data->flags & MMC_DATA_WRITE);
908 del_timer_sync(&host->dma_timer);
909 if (host->dma_ch >= 0) {
910 if (is_read == host->dma_is_read)
911 return 0;
912 omap_free_dma(host->dma_ch);
913 host->dma_ch = -1;
914 }
915
916 if (is_read) {
917 if (host->id == 1) {
918 sync_dev = OMAP_DMA_MMC_RX;
919 dev_name = "MMC1 read";
920 } else {
921 sync_dev = OMAP_DMA_MMC2_RX;
922 dev_name = "MMC2 read";
923 }
924 } else {
925 if (host->id == 1) {
926 sync_dev = OMAP_DMA_MMC_TX;
927 dev_name = "MMC1 write";
928 } else {
929 sync_dev = OMAP_DMA_MMC2_TX;
930 dev_name = "MMC2 write";
931 }
932 }
933 r = omap_request_dma(sync_dev, dev_name, mmc_omap_dma_cb,
934 host, &dma_ch);
935 if (r != 0) {
936 dev_dbg(mmc_dev(host->mmc), "omap_request_dma() failed with %d\n", r);
937 return r;
938 }
939 host->dma_ch = dma_ch;
940 host->dma_is_read = is_read;
941
942 return 0;
943}
944
945static inline void set_cmd_timeout(struct mmc_omap_host *host, struct mmc_request *req)
946{
947 u16 reg;
948
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100949 reg = OMAP_MMC_READ(host, SDIO);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100950 reg &= ~(1 << 5);
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100951 OMAP_MMC_WRITE(host, SDIO, reg);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100952 /* Set maximum timeout */
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100953 OMAP_MMC_WRITE(host, CTO, 0xff);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100954}
955
956static inline void set_data_timeout(struct mmc_omap_host *host, struct mmc_request *req)
957{
Juha Yrjolab8f9f0e2008-03-26 16:09:16 -0400958 unsigned int timeout, cycle_ns;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100959 u16 reg;
960
Juha Yrjolab8f9f0e2008-03-26 16:09:16 -0400961 cycle_ns = 1000000000 / host->current_slot->fclk_freq;
962 timeout = req->data->timeout_ns / cycle_ns;
963 timeout += req->data->timeout_clks;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100964
965 /* Check if we need to use timeout multiplier register */
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100966 reg = OMAP_MMC_READ(host, SDIO);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100967 if (timeout > 0xffff) {
968 reg |= (1 << 5);
969 timeout /= 1024;
970 } else
971 reg &= ~(1 << 5);
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100972 OMAP_MMC_WRITE(host, SDIO, reg);
973 OMAP_MMC_WRITE(host, DTO, timeout);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100974}
975
976static void
977mmc_omap_prepare_data(struct mmc_omap_host *host, struct mmc_request *req)
978{
979 struct mmc_data *data = req->data;
980 int i, use_dma, block_size;
981 unsigned sg_len;
982
983 host->data = data;
984 if (data == NULL) {
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100985 OMAP_MMC_WRITE(host, BLEN, 0);
986 OMAP_MMC_WRITE(host, NBLK, 0);
987 OMAP_MMC_WRITE(host, BUF, 0);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100988 host->dma_in_use = 0;
989 set_cmd_timeout(host, req);
990 return;
991 }
992
Russell Kinga3fd4a12006-06-04 17:51:15 +0100993 block_size = data->blksz;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100994
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100995 OMAP_MMC_WRITE(host, NBLK, data->blocks - 1);
996 OMAP_MMC_WRITE(host, BLEN, block_size - 1);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100997 set_data_timeout(host, req);
998
999 /* cope with calling layer confusion; it issues "single
1000 * block" writes using multi-block scatterlists.
1001 */
1002 sg_len = (data->blocks == 1) ? 1 : data->sg_len;
1003
1004 /* Only do DMA for entire blocks */
1005 use_dma = host->use_dma;
1006 if (use_dma) {
1007 for (i = 0; i < sg_len; i++) {
1008 if ((data->sg[i].length % block_size) != 0) {
1009 use_dma = 0;
1010 break;
1011 }
1012 }
1013 }
1014
1015 host->sg_idx = 0;
1016 if (use_dma) {
1017 if (mmc_omap_get_dma_channel(host, data) == 0) {
1018 enum dma_data_direction dma_data_dir;
1019
1020 if (data->flags & MMC_DATA_WRITE)
1021 dma_data_dir = DMA_TO_DEVICE;
1022 else
1023 dma_data_dir = DMA_FROM_DEVICE;
1024
1025 host->sg_len = dma_map_sg(mmc_dev(host->mmc), data->sg,
1026 sg_len, dma_data_dir);
1027 host->total_bytes_left = 0;
1028 mmc_omap_prepare_dma(host, req->data);
1029 host->brs_received = 0;
1030 host->dma_done = 0;
1031 host->dma_in_use = 1;
1032 } else
1033 use_dma = 0;
1034 }
1035
1036 /* Revert to PIO? */
1037 if (!use_dma) {
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +01001038 OMAP_MMC_WRITE(host, BUF, 0x1f1f);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001039 host->total_bytes_left = data->blocks * block_size;
1040 host->sg_len = sg_len;
1041 mmc_omap_sg_to_buf(host);
1042 host->dma_in_use = 0;
1043 }
1044}
1045
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001046static void mmc_omap_start_request(struct mmc_omap_host *host,
1047 struct mmc_request *req)
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001048{
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001049 BUG_ON(host->mrq != NULL);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001050
1051 host->mrq = req;
1052
1053 /* only touch fifo AFTER the controller readies it */
1054 mmc_omap_prepare_data(host, req);
1055 mmc_omap_start_command(host, req->cmd);
1056 if (host->dma_in_use)
1057 omap_start_dma(host->dma_ch);
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001058 BUG_ON(irqs_disabled());
1059}
1060
1061static void mmc_omap_request(struct mmc_host *mmc, struct mmc_request *req)
1062{
1063 struct mmc_omap_slot *slot = mmc_priv(mmc);
1064 struct mmc_omap_host *host = slot->host;
1065 unsigned long flags;
1066
1067 spin_lock_irqsave(&host->slot_lock, flags);
1068 if (host->mmc != NULL) {
1069 BUG_ON(slot->mrq != NULL);
1070 slot->mrq = req;
1071 spin_unlock_irqrestore(&host->slot_lock, flags);
1072 return;
1073 } else
1074 host->mmc = mmc;
1075 spin_unlock_irqrestore(&host->slot_lock, flags);
1076 mmc_omap_select_slot(slot, 1);
1077 mmc_omap_start_request(host, req);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001078}
1079
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001080static void mmc_omap_set_power(struct mmc_omap_slot *slot, int power_on,
1081 int vdd)
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001082{
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001083 struct mmc_omap_host *host;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001084
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001085 host = slot->host;
1086
1087 if (slot->pdata->set_power != NULL)
1088 slot->pdata->set_power(mmc_dev(slot->mmc), slot->id, power_on,
1089 vdd);
1090
1091 if (cpu_is_omap24xx()) {
1092 u16 w;
1093
1094 if (power_on) {
1095 w = OMAP_MMC_READ(host, CON);
1096 OMAP_MMC_WRITE(host, CON, w | (1 << 11));
1097 } else {
1098 w = OMAP_MMC_READ(host, CON);
1099 OMAP_MMC_WRITE(host, CON, w & ~(1 << 11));
1100 }
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001101 }
1102}
1103
Tony Lindgrend3af5ab2007-05-01 16:36:00 +02001104static int mmc_omap_calc_divisor(struct mmc_host *mmc, struct mmc_ios *ios)
1105{
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001106 struct mmc_omap_slot *slot = mmc_priv(mmc);
1107 struct mmc_omap_host *host = slot->host;
Tony Lindgrend3af5ab2007-05-01 16:36:00 +02001108 int func_clk_rate = clk_get_rate(host->fclk);
1109 int dsor;
1110
1111 if (ios->clock == 0)
1112 return 0;
1113
1114 dsor = func_clk_rate / ios->clock;
1115 if (dsor < 1)
1116 dsor = 1;
1117
1118 if (func_clk_rate / dsor > ios->clock)
1119 dsor++;
1120
1121 if (dsor > 250)
1122 dsor = 250;
Tony Lindgrend3af5ab2007-05-01 16:36:00 +02001123
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001124 slot->fclk_freq = func_clk_rate / dsor;
1125
Tony Lindgrend3af5ab2007-05-01 16:36:00 +02001126 if (ios->bus_width == MMC_BUS_WIDTH_4)
1127 dsor |= 1 << 15;
1128
1129 return dsor;
1130}
1131
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001132static void mmc_omap_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
1133{
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001134 struct mmc_omap_slot *slot = mmc_priv(mmc);
1135 struct mmc_omap_host *host = slot->host;
1136 int i, dsor;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001137
Tony Lindgrend3af5ab2007-05-01 16:36:00 +02001138 dsor = mmc_omap_calc_divisor(mmc, ios);
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001139
1140 mmc_omap_select_slot(slot, 0);
1141
1142 if (ios->vdd != slot->vdd)
1143 slot->vdd = ios->vdd;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001144
1145 switch (ios->power_mode) {
1146 case MMC_POWER_OFF:
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001147 mmc_omap_set_power(slot, 0, ios->vdd);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001148 break;
1149 case MMC_POWER_UP:
Tony Lindgren46a67302007-05-01 16:34:16 +02001150 /* Cannot touch dsor yet, just power up MMC */
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001151 mmc_omap_set_power(slot, 1, ios->vdd);
1152 goto exit;
Tony Lindgren46a67302007-05-01 16:34:16 +02001153 case MMC_POWER_ON:
Juha Yrjola juha.yrjolac5cb4312006-11-11 23:42:39 +01001154 dsor |= 1 << 11;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001155 break;
1156 }
1157
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001158 if (slot->bus_mode != ios->bus_mode) {
1159 if (slot->pdata->set_bus_mode != NULL)
1160 slot->pdata->set_bus_mode(mmc_dev(mmc), slot->id,
1161 ios->bus_mode);
1162 slot->bus_mode = ios->bus_mode;
1163 }
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001164
1165 /* On insanely high arm_per frequencies something sometimes
1166 * goes somehow out of sync, and the POW bit is not being set,
1167 * which results in the while loop below getting stuck.
1168 * Writing to the CON register twice seems to do the trick. */
1169 for (i = 0; i < 2; i++)
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +01001170 OMAP_MMC_WRITE(host, CON, dsor);
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001171 slot->saved_con = dsor;
Tony Lindgren46a67302007-05-01 16:34:16 +02001172 if (ios->power_mode == MMC_POWER_ON) {
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001173 /* Send clock cycles, poll completion */
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +01001174 OMAP_MMC_WRITE(host, IE, 0);
1175 OMAP_MMC_WRITE(host, STAT, 0xffff);
Juha Yrjola juha.yrjolac5cb4312006-11-11 23:42:39 +01001176 OMAP_MMC_WRITE(host, CMD, 1 << 7);
1177 while ((OMAP_MMC_READ(host, STAT) & 1) == 0);
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +01001178 OMAP_MMC_WRITE(host, STAT, 1);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001179 }
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001180
1181exit:
1182 mmc_omap_release_slot(slot);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001183}
1184
David Brownellab7aefd2006-11-12 17:55:30 -08001185static const struct mmc_host_ops mmc_omap_ops = {
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001186 .request = mmc_omap_request,
1187 .set_ios = mmc_omap_set_ios,
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001188};
1189
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001190static int __init mmc_omap_new_slot(struct mmc_omap_host *host, int id)
1191{
1192 struct mmc_omap_slot *slot = NULL;
1193 struct mmc_host *mmc;
1194 int r;
1195
1196 mmc = mmc_alloc_host(sizeof(struct mmc_omap_slot), host->dev);
1197 if (mmc == NULL)
1198 return -ENOMEM;
1199
1200 slot = mmc_priv(mmc);
1201 slot->host = host;
1202 slot->mmc = mmc;
1203 slot->id = id;
1204 slot->pdata = &host->pdata->slots[id];
1205
1206 host->slots[id] = slot;
1207
1208 mmc->caps = MMC_CAP_MULTIWRITE;
1209 if (host->pdata->conf.wire4)
1210 mmc->caps |= MMC_CAP_4_BIT_DATA;
1211
1212 mmc->ops = &mmc_omap_ops;
1213 mmc->f_min = 400000;
1214
1215 if (cpu_class_is_omap2())
1216 mmc->f_max = 48000000;
1217 else
1218 mmc->f_max = 24000000;
1219 if (host->pdata->max_freq)
1220 mmc->f_max = min(host->pdata->max_freq, mmc->f_max);
1221 mmc->ocr_avail = slot->pdata->ocr_mask;
1222
1223 /* Use scatterlist DMA to reduce per-transfer costs.
1224 * NOTE max_seg_size assumption that small blocks aren't
1225 * normally used (except e.g. for reading SD registers).
1226 */
1227 mmc->max_phys_segs = 32;
1228 mmc->max_hw_segs = 32;
1229 mmc->max_blk_size = 2048; /* BLEN is 11 bits (+1) */
1230 mmc->max_blk_count = 2048; /* NBLK is 11 bits (+1) */
1231 mmc->max_req_size = mmc->max_blk_size * mmc->max_blk_count;
1232 mmc->max_seg_size = mmc->max_req_size;
1233
1234 r = mmc_add_host(mmc);
1235 if (r < 0)
1236 goto err_remove_host;
1237
1238 if (slot->pdata->name != NULL) {
1239 r = device_create_file(&mmc->class_dev,
1240 &dev_attr_slot_name);
1241 if (r < 0)
1242 goto err_remove_host;
1243 }
1244
Juha Yrjola5a0f3f12008-03-26 16:09:08 -04001245 if (slot->pdata->get_cover_state != NULL) {
1246 r = device_create_file(&mmc->class_dev,
1247 &dev_attr_cover_switch);
1248 if (r < 0)
1249 goto err_remove_slot_name;
1250
Jarkko Lavinen7584d272008-03-26 16:09:42 -04001251 setup_timer(&slot->cover_timer, mmc_omap_cover_timer,
1252 (unsigned long)slot);
1253 tasklet_init(&slot->cover_tasklet, mmc_omap_cover_handler,
1254 (unsigned long)slot);
1255 tasklet_schedule(&slot->cover_tasklet);
Juha Yrjola5a0f3f12008-03-26 16:09:08 -04001256 }
1257
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001258 return 0;
1259
Juha Yrjola5a0f3f12008-03-26 16:09:08 -04001260err_remove_slot_name:
1261 if (slot->pdata->name != NULL)
1262 device_remove_file(&mmc->class_dev, &dev_attr_slot_name);
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001263err_remove_host:
1264 mmc_remove_host(mmc);
1265 mmc_free_host(mmc);
1266 return r;
1267}
1268
1269static void mmc_omap_remove_slot(struct mmc_omap_slot *slot)
1270{
1271 struct mmc_host *mmc = slot->mmc;
1272
1273 if (slot->pdata->name != NULL)
1274 device_remove_file(&mmc->class_dev, &dev_attr_slot_name);
Juha Yrjola5a0f3f12008-03-26 16:09:08 -04001275 if (slot->pdata->get_cover_state != NULL)
1276 device_remove_file(&mmc->class_dev, &dev_attr_cover_switch);
1277
Jarkko Lavinen7584d272008-03-26 16:09:42 -04001278 tasklet_kill(&slot->cover_tasklet);
1279 del_timer_sync(&slot->cover_timer);
Juha Yrjola5a0f3f12008-03-26 16:09:08 -04001280 flush_scheduled_work();
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001281
1282 mmc_remove_host(mmc);
1283 mmc_free_host(mmc);
1284}
1285
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001286static int __init mmc_omap_probe(struct platform_device *pdev)
1287{
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001288 struct omap_mmc_platform_data *pdata = pdev->dev.platform_data;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001289 struct mmc_omap_host *host = NULL;
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001290 struct resource *res;
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001291 int i, ret = 0;
Tony Lindgrence9c1a82006-07-01 19:56:44 +01001292 int irq;
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001293
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001294 if (pdata == NULL) {
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001295 dev_err(&pdev->dev, "platform data missing\n");
1296 return -ENXIO;
1297 }
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001298 if (pdata->nr_slots == 0) {
1299 dev_err(&pdev->dev, "no slots\n");
1300 return -ENXIO;
1301 }
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001302
1303 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Tony Lindgrence9c1a82006-07-01 19:56:44 +01001304 irq = platform_get_irq(pdev, 0);
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001305 if (res == NULL || irq < 0)
Tony Lindgrence9c1a82006-07-01 19:56:44 +01001306 return -ENXIO;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001307
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001308 res = request_mem_region(res->start, res->end - res->start + 1,
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001309 pdev->name);
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001310 if (res == NULL)
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001311 return -EBUSY;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001312
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001313 host = kzalloc(sizeof(struct mmc_omap_host), GFP_KERNEL);
1314 if (host == NULL) {
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001315 ret = -ENOMEM;
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001316 goto err_free_mem_region;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001317 }
1318
Jarkko Lavineneb1860b2008-03-26 16:09:29 -04001319 INIT_WORK(&host->cmd_abort, mmc_omap_abort_command);
Carlos Eduardo Aguiar01e77e12008-03-26 16:09:34 -04001320 setup_timer(&host->cmd_timer, mmc_omap_cmd_timer, (unsigned long) host);
Jarkko Lavineneb1860b2008-03-26 16:09:29 -04001321
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001322 spin_lock_init(&host->dma_lock);
Carlos Eduardo Aguiar01e77e12008-03-26 16:09:34 -04001323 setup_timer(&host->dma_timer, mmc_omap_dma_timer, (unsigned long) host);
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001324 spin_lock_init(&host->slot_lock);
1325 init_waitqueue_head(&host->slot_wq);
1326
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001327 host->pdata = pdata;
1328 host->dev = &pdev->dev;
1329 platform_set_drvdata(pdev, host);
1330
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001331 host->id = pdev->id;
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001332 host->mem_res = res;
Tony Lindgrence9c1a82006-07-01 19:56:44 +01001333 host->irq = irq;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001334
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001335 host->use_dma = 1;
1336 host->dma_ch = -1;
1337
1338 host->irq = irq;
1339 host->phys_base = host->mem_res->start;
1340 host->virt_base = (void __iomem *) IO_ADDRESS(host->phys_base);
1341
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001342 if (cpu_is_omap24xx()) {
1343 host->iclk = clk_get(&pdev->dev, "mmc_ick");
1344 if (IS_ERR(host->iclk))
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001345 goto err_free_mmc_host;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001346 clk_enable(host->iclk);
1347 }
1348
1349 if (!cpu_is_omap24xx())
1350 host->fclk = clk_get(&pdev->dev, "mmc_ck");
1351 else
1352 host->fclk = clk_get(&pdev->dev, "mmc_fck");
1353
1354 if (IS_ERR(host->fclk)) {
1355 ret = PTR_ERR(host->fclk);
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001356 goto err_free_iclk;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001357 }
1358
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001359 ret = request_irq(host->irq, mmc_omap_irq, 0, DRIVER_NAME, host);
1360 if (ret)
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001361 goto err_free_fclk;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001362
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001363 if (pdata->init != NULL) {
1364 ret = pdata->init(&pdev->dev);
1365 if (ret < 0)
1366 goto err_free_irq;
1367 }
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001368
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001369 host->nr_slots = pdata->nr_slots;
1370 for (i = 0; i < pdata->nr_slots; i++) {
1371 ret = mmc_omap_new_slot(host, i);
1372 if (ret < 0) {
1373 while (--i >= 0)
1374 mmc_omap_remove_slot(host->slots[i]);
1375
1376 goto err_plat_cleanup;
1377 }
1378 }
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001379
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001380 return 0;
1381
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001382err_plat_cleanup:
1383 if (pdata->cleanup)
1384 pdata->cleanup(&pdev->dev);
1385err_free_irq:
1386 free_irq(host->irq, host);
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001387err_free_fclk:
1388 clk_put(host->fclk);
1389err_free_iclk:
1390 if (host->iclk != NULL) {
1391 clk_disable(host->iclk);
1392 clk_put(host->iclk);
1393 }
1394err_free_mmc_host:
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001395 kfree(host);
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001396err_free_mem_region:
1397 release_mem_region(res->start, res->end - res->start + 1);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001398 return ret;
1399}
1400
1401static int mmc_omap_remove(struct platform_device *pdev)
1402{
1403 struct mmc_omap_host *host = platform_get_drvdata(pdev);
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001404 int i;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001405
1406 platform_set_drvdata(pdev, NULL);
1407
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001408 BUG_ON(host == NULL);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001409
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001410 for (i = 0; i < host->nr_slots; i++)
1411 mmc_omap_remove_slot(host->slots[i]);
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001412
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001413 if (host->pdata->cleanup)
1414 host->pdata->cleanup(&pdev->dev);
1415
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001416 if (host->iclk && !IS_ERR(host->iclk))
1417 clk_put(host->iclk);
1418 if (host->fclk && !IS_ERR(host->fclk))
1419 clk_put(host->fclk);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001420
1421 release_mem_region(pdev->resource[0].start,
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001422 pdev->resource[0].end - pdev->resource[0].start + 1);
1423
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001424 kfree(host);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001425
1426 return 0;
1427}
1428
1429#ifdef CONFIG_PM
1430static int mmc_omap_suspend(struct platform_device *pdev, pm_message_t mesg)
1431{
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001432 int i, ret = 0;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001433 struct mmc_omap_host *host = platform_get_drvdata(pdev);
1434
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001435 if (host == NULL || host->suspended)
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001436 return 0;
1437
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001438 for (i = 0; i < host->nr_slots; i++) {
1439 struct mmc_omap_slot *slot;
1440
1441 slot = host->slots[i];
1442 ret = mmc_suspend_host(slot->mmc, mesg);
1443 if (ret < 0) {
1444 while (--i >= 0) {
1445 slot = host->slots[i];
1446 mmc_resume_host(slot->mmc);
1447 }
1448 return ret;
1449 }
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001450 }
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001451 host->suspended = 1;
1452 return 0;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001453}
1454
1455static int mmc_omap_resume(struct platform_device *pdev)
1456{
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001457 int i, ret = 0;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001458 struct mmc_omap_host *host = platform_get_drvdata(pdev);
1459
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001460 if (host == NULL || !host->suspended)
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001461 return 0;
1462
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001463 for (i = 0; i < host->nr_slots; i++) {
1464 struct mmc_omap_slot *slot;
1465 slot = host->slots[i];
1466 ret = mmc_resume_host(slot->mmc);
1467 if (ret < 0)
1468 return ret;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001469
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001470 host->suspended = 0;
1471 }
1472 return 0;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001473}
1474#else
1475#define mmc_omap_suspend NULL
1476#define mmc_omap_resume NULL
1477#endif
1478
1479static struct platform_driver mmc_omap_driver = {
1480 .probe = mmc_omap_probe,
1481 .remove = mmc_omap_remove,
1482 .suspend = mmc_omap_suspend,
1483 .resume = mmc_omap_resume,
1484 .driver = {
1485 .name = DRIVER_NAME,
Kay Sieversbc65c722008-04-15 14:34:28 -07001486 .owner = THIS_MODULE,
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001487 },
1488};
1489
1490static int __init mmc_omap_init(void)
1491{
1492 return platform_driver_register(&mmc_omap_driver);
1493}
1494
1495static void __exit mmc_omap_exit(void)
1496{
1497 platform_driver_unregister(&mmc_omap_driver);
1498}
1499
1500module_init(mmc_omap_init);
1501module_exit(mmc_omap_exit);
1502
1503MODULE_DESCRIPTION("OMAP Multimedia Card driver");
1504MODULE_LICENSE("GPL");
Kay Sieversbc65c722008-04-15 14:34:28 -07001505MODULE_ALIAS("platform:" DRIVER_NAME);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001506MODULE_AUTHOR("Juha Yrjölä");