blob: c16028872bbbc0b19c23c8cdb895ad91a22fa3a4 [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
Russell Kinga09e64f2008-08-05 16:14:15 +010033#include <mach/board.h>
34#include <mach/mmc.h>
35#include <mach/gpio.h>
36#include <mach/dma.h>
37#include <mach/mux.h>
38#include <mach/fpga.h>
Carlos Aguiar730c9b72006-03-29 09:21:00 +010039
Juha Yrjola juha.yrjola0551f4d2006-11-11 23:38:36 +010040#define OMAP_MMC_REG_CMD 0x00
41#define OMAP_MMC_REG_ARGL 0x04
42#define OMAP_MMC_REG_ARGH 0x08
43#define OMAP_MMC_REG_CON 0x0c
44#define OMAP_MMC_REG_STAT 0x10
45#define OMAP_MMC_REG_IE 0x14
46#define OMAP_MMC_REG_CTO 0x18
47#define OMAP_MMC_REG_DTO 0x1c
48#define OMAP_MMC_REG_DATA 0x20
49#define OMAP_MMC_REG_BLEN 0x24
50#define OMAP_MMC_REG_NBLK 0x28
51#define OMAP_MMC_REG_BUF 0x2c
52#define OMAP_MMC_REG_SDIO 0x34
53#define OMAP_MMC_REG_REV 0x3c
54#define OMAP_MMC_REG_RSP0 0x40
55#define OMAP_MMC_REG_RSP1 0x44
56#define OMAP_MMC_REG_RSP2 0x48
57#define OMAP_MMC_REG_RSP3 0x4c
58#define OMAP_MMC_REG_RSP4 0x50
59#define OMAP_MMC_REG_RSP5 0x54
60#define OMAP_MMC_REG_RSP6 0x58
61#define OMAP_MMC_REG_RSP7 0x5c
62#define OMAP_MMC_REG_IOSR 0x60
63#define OMAP_MMC_REG_SYSC 0x64
64#define OMAP_MMC_REG_SYSS 0x68
65
66#define OMAP_MMC_STAT_CARD_ERR (1 << 14)
67#define OMAP_MMC_STAT_CARD_IRQ (1 << 13)
68#define OMAP_MMC_STAT_OCR_BUSY (1 << 12)
69#define OMAP_MMC_STAT_A_EMPTY (1 << 11)
70#define OMAP_MMC_STAT_A_FULL (1 << 10)
71#define OMAP_MMC_STAT_CMD_CRC (1 << 8)
72#define OMAP_MMC_STAT_CMD_TOUT (1 << 7)
73#define OMAP_MMC_STAT_DATA_CRC (1 << 6)
74#define OMAP_MMC_STAT_DATA_TOUT (1 << 5)
75#define OMAP_MMC_STAT_END_BUSY (1 << 4)
76#define OMAP_MMC_STAT_END_OF_DATA (1 << 3)
77#define OMAP_MMC_STAT_CARD_BUSY (1 << 2)
78#define OMAP_MMC_STAT_END_OF_CMD (1 << 0)
79
80#define OMAP_MMC_READ(host, reg) __raw_readw((host)->virt_base + OMAP_MMC_REG_##reg)
81#define OMAP_MMC_WRITE(host, reg, val) __raw_writew((val), (host)->virt_base + OMAP_MMC_REG_##reg)
82
83/*
84 * Command types
85 */
86#define OMAP_MMC_CMDTYPE_BC 0
87#define OMAP_MMC_CMDTYPE_BCR 1
88#define OMAP_MMC_CMDTYPE_AC 2
89#define OMAP_MMC_CMDTYPE_ADTC 3
90
Carlos Aguiar730c9b72006-03-29 09:21:00 +010091
92#define DRIVER_NAME "mmci-omap"
Carlos Aguiar730c9b72006-03-29 09:21:00 +010093
94/* Specifies how often in millisecs to poll for card status changes
95 * when the cover switch is open */
Jarkko Lavinen7584d272008-03-26 16:09:42 -040096#define OMAP_MMC_COVER_POLL_DELAY 500
Carlos Aguiar730c9b72006-03-29 09:21:00 +010097
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -040098struct mmc_omap_host;
99
100struct mmc_omap_slot {
101 int id;
102 unsigned int vdd;
103 u16 saved_con;
104 u16 bus_mode;
105 unsigned int fclk_freq;
106 unsigned powered:1;
107
Jarkko Lavinen7584d272008-03-26 16:09:42 -0400108 struct tasklet_struct cover_tasklet;
109 struct timer_list cover_timer;
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400110 unsigned cover_open;
111
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400112 struct mmc_request *mrq;
113 struct mmc_omap_host *host;
114 struct mmc_host *mmc;
115 struct omap_mmc_slot_data *pdata;
116};
117
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100118struct mmc_omap_host {
119 int initialized;
120 int suspended;
121 struct mmc_request * mrq;
122 struct mmc_command * cmd;
123 struct mmc_data * data;
124 struct mmc_host * mmc;
125 struct device * dev;
126 unsigned char id; /* 16xx chips have 2 MMC blocks */
127 struct clk * iclk;
128 struct clk * fclk;
Juha Yrjola juha.yrjola89783b1e42006-11-11 23:36:01 +0100129 struct resource *mem_res;
130 void __iomem *virt_base;
131 unsigned int phys_base;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100132 int irq;
133 unsigned char bus_mode;
134 unsigned char hw_bus_mode;
135
Jarkko Lavinen0fb47232008-03-26 16:09:48 -0400136 struct work_struct cmd_abort_work;
137 unsigned abort:1;
138 struct timer_list cmd_abort_timer;
Jarkko Lavineneb1860b2008-03-26 16:09:29 -0400139
Jarkko Lavinen0f602ec2008-03-26 16:09:58 -0400140 struct work_struct slot_release_work;
141 struct mmc_omap_slot *next_slot;
142 struct work_struct send_stop_work;
143 struct mmc_data *stop_data;
144
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100145 unsigned int sg_len;
146 int sg_idx;
147 u16 * buffer;
148 u32 buffer_bytes_left;
149 u32 total_bytes_left;
150
151 unsigned use_dma:1;
152 unsigned brs_received:1, dma_done:1;
153 unsigned dma_is_read:1;
154 unsigned dma_in_use:1;
155 int dma_ch;
156 spinlock_t dma_lock;
157 struct timer_list dma_timer;
158 unsigned dma_len;
159
160 short power_pin;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100161
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400162 struct mmc_omap_slot *slots[OMAP_MMC_MAX_SLOTS];
163 struct mmc_omap_slot *current_slot;
164 spinlock_t slot_lock;
165 wait_queue_head_t slot_wq;
166 int nr_slots;
167
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -0400168 struct timer_list clk_timer;
169 spinlock_t clk_lock; /* for changing enabled state */
170 unsigned int fclk_enabled:1;
171
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400172 struct omap_mmc_platform_data *pdata;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100173};
174
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -0400175void mmc_omap_fclk_offdelay(struct mmc_omap_slot *slot)
176{
177 unsigned long tick_ns;
178
179 if (slot != NULL && slot->host->fclk_enabled && slot->fclk_freq > 0) {
180 tick_ns = (1000000000 + slot->fclk_freq - 1) / slot->fclk_freq;
181 ndelay(8 * tick_ns);
182 }
183}
184
185void mmc_omap_fclk_enable(struct mmc_omap_host *host, unsigned int enable)
186{
187 unsigned long flags;
188
189 spin_lock_irqsave(&host->clk_lock, flags);
190 if (host->fclk_enabled != enable) {
191 host->fclk_enabled = enable;
192 if (enable)
193 clk_enable(host->fclk);
194 else
195 clk_disable(host->fclk);
196 }
197 spin_unlock_irqrestore(&host->clk_lock, flags);
198}
199
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400200static void mmc_omap_select_slot(struct mmc_omap_slot *slot, int claimed)
201{
202 struct mmc_omap_host *host = slot->host;
203 unsigned long flags;
204
205 if (claimed)
206 goto no_claim;
207 spin_lock_irqsave(&host->slot_lock, flags);
208 while (host->mmc != NULL) {
209 spin_unlock_irqrestore(&host->slot_lock, flags);
210 wait_event(host->slot_wq, host->mmc == NULL);
211 spin_lock_irqsave(&host->slot_lock, flags);
212 }
213 host->mmc = slot->mmc;
214 spin_unlock_irqrestore(&host->slot_lock, flags);
215no_claim:
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -0400216 del_timer(&host->clk_timer);
217 if (host->current_slot != slot || !claimed)
218 mmc_omap_fclk_offdelay(host->current_slot);
219
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400220 if (host->current_slot != slot) {
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -0400221 OMAP_MMC_WRITE(host, CON, slot->saved_con & 0xFC00);
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400222 if (host->pdata->switch_slot != NULL)
223 host->pdata->switch_slot(mmc_dev(slot->mmc), slot->id);
224 host->current_slot = slot;
225 }
226
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -0400227 if (claimed) {
228 mmc_omap_fclk_enable(host, 1);
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400229
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -0400230 /* Doing the dummy read here seems to work around some bug
231 * at least in OMAP24xx silicon where the command would not
232 * start after writing the CMD register. Sigh. */
233 OMAP_MMC_READ(host, CON);
234
235 OMAP_MMC_WRITE(host, CON, slot->saved_con);
236 } else
237 mmc_omap_fclk_enable(host, 0);
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400238}
239
240static void mmc_omap_start_request(struct mmc_omap_host *host,
241 struct mmc_request *req);
242
Jarkko Lavinen0f602ec2008-03-26 16:09:58 -0400243static void mmc_omap_slot_release_work(struct work_struct *work)
244{
245 struct mmc_omap_host *host = container_of(work, struct mmc_omap_host,
246 slot_release_work);
247 struct mmc_omap_slot *next_slot = host->next_slot;
248 struct mmc_request *rq;
249
250 host->next_slot = NULL;
251 mmc_omap_select_slot(next_slot, 1);
252
253 rq = next_slot->mrq;
254 next_slot->mrq = NULL;
255 mmc_omap_start_request(host, rq);
256}
257
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -0400258static void mmc_omap_release_slot(struct mmc_omap_slot *slot, int clk_enabled)
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400259{
260 struct mmc_omap_host *host = slot->host;
261 unsigned long flags;
262 int i;
263
264 BUG_ON(slot == NULL || host->mmc == NULL);
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -0400265
266 if (clk_enabled)
267 /* Keeps clock running for at least 8 cycles on valid freq */
268 mod_timer(&host->clk_timer, jiffies + HZ/10);
269 else {
270 del_timer(&host->clk_timer);
271 mmc_omap_fclk_offdelay(slot);
272 mmc_omap_fclk_enable(host, 0);
273 }
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400274
275 spin_lock_irqsave(&host->slot_lock, flags);
276 /* Check for any pending requests */
277 for (i = 0; i < host->nr_slots; i++) {
278 struct mmc_omap_slot *new_slot;
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400279
280 if (host->slots[i] == NULL || host->slots[i]->mrq == NULL)
281 continue;
282
Jarkko Lavinen0f602ec2008-03-26 16:09:58 -0400283 BUG_ON(host->next_slot != NULL);
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400284 new_slot = host->slots[i];
285 /* The current slot should not have a request in queue */
286 BUG_ON(new_slot == host->current_slot);
287
Jarkko Lavinen0f602ec2008-03-26 16:09:58 -0400288 host->next_slot = new_slot;
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400289 host->mmc = new_slot->mmc;
290 spin_unlock_irqrestore(&host->slot_lock, flags);
Jarkko Lavinen0f602ec2008-03-26 16:09:58 -0400291 schedule_work(&host->slot_release_work);
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400292 return;
293 }
294
295 host->mmc = NULL;
296 wake_up(&host->slot_wq);
297 spin_unlock_irqrestore(&host->slot_lock, flags);
298}
299
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400300static inline
301int mmc_omap_cover_is_open(struct mmc_omap_slot *slot)
302{
Kyungmin Park8348f002008-03-26 16:09:38 -0400303 if (slot->pdata->get_cover_state)
304 return slot->pdata->get_cover_state(mmc_dev(slot->mmc),
305 slot->id);
306 return 0;
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400307}
308
309static ssize_t
310mmc_omap_show_cover_switch(struct device *dev, struct device_attribute *attr,
311 char *buf)
312{
313 struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
314 struct mmc_omap_slot *slot = mmc_priv(mmc);
315
316 return sprintf(buf, "%s\n", mmc_omap_cover_is_open(slot) ? "open" :
317 "closed");
318}
319
320static DEVICE_ATTR(cover_switch, S_IRUGO, mmc_omap_show_cover_switch, NULL);
321
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400322static ssize_t
323mmc_omap_show_slot_name(struct device *dev, struct device_attribute *attr,
324 char *buf)
325{
326 struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
327 struct mmc_omap_slot *slot = mmc_priv(mmc);
328
329 return sprintf(buf, "%s\n", slot->pdata->name);
330}
331
332static DEVICE_ATTR(slot_name, S_IRUGO, mmc_omap_show_slot_name, NULL);
333
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100334static void
335mmc_omap_start_command(struct mmc_omap_host *host, struct mmc_command *cmd)
336{
337 u32 cmdreg;
338 u32 resptype;
339 u32 cmdtype;
340
341 host->cmd = cmd;
342
343 resptype = 0;
344 cmdtype = 0;
345
346 /* Our hardware needs to know exact type */
Carlos Eduardo Aguiar1b3b2632007-01-15 06:38:15 +0100347 switch (mmc_resp_type(cmd)) {
348 case MMC_RSP_NONE:
349 break;
350 case MMC_RSP_R1:
351 case MMC_RSP_R1B:
Philip Langdale6f949902007-01-04 07:04:47 -0800352 /* resp 1, 1b, 6, 7 */
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100353 resptype = 1;
354 break;
Carlos Eduardo Aguiar1b3b2632007-01-15 06:38:15 +0100355 case MMC_RSP_R2:
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100356 resptype = 2;
357 break;
Carlos Eduardo Aguiar1b3b2632007-01-15 06:38:15 +0100358 case MMC_RSP_R3:
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100359 resptype = 3;
360 break;
361 default:
Carlos Eduardo Aguiar1b3b2632007-01-15 06:38:15 +0100362 dev_err(mmc_dev(host->mmc), "Invalid response type: %04x\n", mmc_resp_type(cmd));
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100363 break;
364 }
365
366 if (mmc_cmd_type(cmd) == MMC_CMD_ADTC) {
367 cmdtype = OMAP_MMC_CMDTYPE_ADTC;
368 } else if (mmc_cmd_type(cmd) == MMC_CMD_BC) {
369 cmdtype = OMAP_MMC_CMDTYPE_BC;
370 } else if (mmc_cmd_type(cmd) == MMC_CMD_BCR) {
371 cmdtype = OMAP_MMC_CMDTYPE_BCR;
372 } else {
373 cmdtype = OMAP_MMC_CMDTYPE_AC;
374 }
375
376 cmdreg = cmd->opcode | (resptype << 8) | (cmdtype << 12);
377
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400378 if (host->current_slot->bus_mode == MMC_BUSMODE_OPENDRAIN)
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100379 cmdreg |= 1 << 6;
380
381 if (cmd->flags & MMC_RSP_BUSY)
382 cmdreg |= 1 << 11;
383
384 if (host->data && !(host->data->flags & MMC_DATA_WRITE))
385 cmdreg |= 1 << 15;
386
Jarkko Lavinen0fb47232008-03-26 16:09:48 -0400387 mod_timer(&host->cmd_abort_timer, jiffies + HZ/2);
Jarkko Lavineneb1860b2008-03-26 16:09:29 -0400388
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100389 OMAP_MMC_WRITE(host, CTO, 200);
390 OMAP_MMC_WRITE(host, ARGL, cmd->arg & 0xffff);
391 OMAP_MMC_WRITE(host, ARGH, cmd->arg >> 16);
392 OMAP_MMC_WRITE(host, IE,
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100393 OMAP_MMC_STAT_A_EMPTY | OMAP_MMC_STAT_A_FULL |
394 OMAP_MMC_STAT_CMD_CRC | OMAP_MMC_STAT_CMD_TOUT |
395 OMAP_MMC_STAT_DATA_CRC | OMAP_MMC_STAT_DATA_TOUT |
396 OMAP_MMC_STAT_END_OF_CMD | OMAP_MMC_STAT_CARD_ERR |
397 OMAP_MMC_STAT_END_OF_DATA);
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100398 OMAP_MMC_WRITE(host, CMD, cmdreg);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100399}
400
401static void
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400402mmc_omap_release_dma(struct mmc_omap_host *host, struct mmc_data *data,
403 int abort)
404{
405 enum dma_data_direction dma_data_dir;
406
407 BUG_ON(host->dma_ch < 0);
408 if (data->error)
409 omap_stop_dma(host->dma_ch);
410 /* Release DMA channel lazily */
411 mod_timer(&host->dma_timer, jiffies + HZ);
412 if (data->flags & MMC_DATA_WRITE)
413 dma_data_dir = DMA_TO_DEVICE;
414 else
415 dma_data_dir = DMA_FROM_DEVICE;
416 dma_unmap_sg(mmc_dev(host->mmc), data->sg, host->sg_len,
417 dma_data_dir);
418}
419
Jarkko Lavinen0f602ec2008-03-26 16:09:58 -0400420static void mmc_omap_send_stop_work(struct work_struct *work)
421{
422 struct mmc_omap_host *host = container_of(work, struct mmc_omap_host,
423 send_stop_work);
424 struct mmc_omap_slot *slot = host->current_slot;
425 struct mmc_data *data = host->stop_data;
426 unsigned long tick_ns;
427
428 tick_ns = (1000000000 + slot->fclk_freq - 1)/slot->fclk_freq;
429 ndelay(8*tick_ns);
430
431 mmc_omap_start_command(host, data->stop);
432}
433
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400434static void
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100435mmc_omap_xfer_done(struct mmc_omap_host *host, struct mmc_data *data)
436{
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400437 if (host->dma_in_use)
438 mmc_omap_release_dma(host, data, data->error);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100439
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100440 host->data = NULL;
441 host->sg_len = 0;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100442
443 /* NOTE: MMC layer will sometimes poll-wait CMD13 next, issuing
444 * dozens of requests until the card finishes writing data.
445 * It'd be cheaper to just wait till an EOFB interrupt arrives...
446 */
447
448 if (!data->stop) {
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400449 struct mmc_host *mmc;
450
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100451 host->mrq = NULL;
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400452 mmc = host->mmc;
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -0400453 mmc_omap_release_slot(host->current_slot, 1);
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400454 mmc_request_done(mmc, data->mrq);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100455 return;
456 }
457
Jarkko Lavinen0f602ec2008-03-26 16:09:58 -0400458 host->stop_data = data;
459 schedule_work(&host->send_stop_work);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100460}
461
462static void
Jarkko Lavinen0fb47232008-03-26 16:09:48 -0400463mmc_omap_send_abort(struct mmc_omap_host *host, int maxloops)
Jarkko Lavineneb1860b2008-03-26 16:09:29 -0400464{
465 struct mmc_omap_slot *slot = host->current_slot;
466 unsigned int restarts, passes, timeout;
467 u16 stat = 0;
468
469 /* Sending abort takes 80 clocks. Have some extra and round up */
470 timeout = (120*1000000 + slot->fclk_freq - 1)/slot->fclk_freq;
471 restarts = 0;
Jarkko Lavinen0fb47232008-03-26 16:09:48 -0400472 while (restarts < maxloops) {
Jarkko Lavineneb1860b2008-03-26 16:09:29 -0400473 OMAP_MMC_WRITE(host, STAT, 0xFFFF);
474 OMAP_MMC_WRITE(host, CMD, (3 << 12) | (1 << 7));
475
476 passes = 0;
477 while (passes < timeout) {
478 stat = OMAP_MMC_READ(host, STAT);
479 if (stat & OMAP_MMC_STAT_END_OF_CMD)
480 goto out;
481 udelay(1);
482 passes++;
483 }
484
485 restarts++;
486 }
487out:
488 OMAP_MMC_WRITE(host, STAT, stat);
489}
490
491static void
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400492mmc_omap_abort_xfer(struct mmc_omap_host *host, struct mmc_data *data)
493{
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400494 if (host->dma_in_use)
495 mmc_omap_release_dma(host, data, 1);
496
497 host->data = NULL;
498 host->sg_len = 0;
499
Jarkko Lavinen0fb47232008-03-26 16:09:48 -0400500 mmc_omap_send_abort(host, 10000);
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400501}
502
503static void
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100504mmc_omap_end_of_data(struct mmc_omap_host *host, struct mmc_data *data)
505{
506 unsigned long flags;
507 int done;
508
509 if (!host->dma_in_use) {
510 mmc_omap_xfer_done(host, data);
511 return;
512 }
513 done = 0;
514 spin_lock_irqsave(&host->dma_lock, flags);
515 if (host->dma_done)
516 done = 1;
517 else
518 host->brs_received = 1;
519 spin_unlock_irqrestore(&host->dma_lock, flags);
520 if (done)
521 mmc_omap_xfer_done(host, data);
522}
523
524static void
525mmc_omap_dma_timer(unsigned long data)
526{
527 struct mmc_omap_host *host = (struct mmc_omap_host *) data;
528
529 BUG_ON(host->dma_ch < 0);
530 omap_free_dma(host->dma_ch);
531 host->dma_ch = -1;
532}
533
534static void
535mmc_omap_dma_done(struct mmc_omap_host *host, struct mmc_data *data)
536{
537 unsigned long flags;
538 int done;
539
540 done = 0;
541 spin_lock_irqsave(&host->dma_lock, flags);
542 if (host->brs_received)
543 done = 1;
544 else
545 host->dma_done = 1;
546 spin_unlock_irqrestore(&host->dma_lock, flags);
547 if (done)
548 mmc_omap_xfer_done(host, data);
549}
550
551static void
552mmc_omap_cmd_done(struct mmc_omap_host *host, struct mmc_command *cmd)
553{
554 host->cmd = NULL;
555
Jarkko Lavinen0fb47232008-03-26 16:09:48 -0400556 del_timer(&host->cmd_abort_timer);
Jarkko Lavineneb1860b2008-03-26 16:09:29 -0400557
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100558 if (cmd->flags & MMC_RSP_PRESENT) {
559 if (cmd->flags & MMC_RSP_136) {
560 /* response type 2 */
561 cmd->resp[3] =
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100562 OMAP_MMC_READ(host, RSP0) |
563 (OMAP_MMC_READ(host, RSP1) << 16);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100564 cmd->resp[2] =
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100565 OMAP_MMC_READ(host, RSP2) |
566 (OMAP_MMC_READ(host, RSP3) << 16);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100567 cmd->resp[1] =
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100568 OMAP_MMC_READ(host, RSP4) |
569 (OMAP_MMC_READ(host, RSP5) << 16);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100570 cmd->resp[0] =
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100571 OMAP_MMC_READ(host, RSP6) |
572 (OMAP_MMC_READ(host, RSP7) << 16);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100573 } else {
574 /* response types 1, 1b, 3, 4, 5, 6 */
575 cmd->resp[0] =
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100576 OMAP_MMC_READ(host, RSP6) |
577 (OMAP_MMC_READ(host, RSP7) << 16);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100578 }
579 }
580
Pierre Ossman17b04292007-07-22 22:18:46 +0200581 if (host->data == NULL || cmd->error) {
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400582 struct mmc_host *mmc;
583
584 if (host->data != NULL)
585 mmc_omap_abort_xfer(host, host->data);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100586 host->mrq = NULL;
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400587 mmc = host->mmc;
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -0400588 mmc_omap_release_slot(host->current_slot, 1);
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400589 mmc_request_done(mmc, cmd->mrq);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100590 }
591}
592
Jarkko Lavineneb1860b2008-03-26 16:09:29 -0400593/*
594 * Abort stuck command. Can occur when card is removed while it is being
595 * read.
596 */
597static void mmc_omap_abort_command(struct work_struct *work)
598{
599 struct mmc_omap_host *host = container_of(work, struct mmc_omap_host,
Jarkko Lavinen0fb47232008-03-26 16:09:48 -0400600 cmd_abort_work);
601 BUG_ON(!host->cmd);
Jarkko Lavineneb1860b2008-03-26 16:09:29 -0400602
603 dev_dbg(mmc_dev(host->mmc), "Aborting stuck command CMD%d\n",
604 host->cmd->opcode);
605
Jarkko Lavinen0fb47232008-03-26 16:09:48 -0400606 if (host->cmd->error == 0)
607 host->cmd->error = -ETIMEDOUT;
Jarkko Lavineneb1860b2008-03-26 16:09:29 -0400608
Jarkko Lavinen0fb47232008-03-26 16:09:48 -0400609 if (host->data == NULL) {
610 struct mmc_command *cmd;
611 struct mmc_host *mmc;
Jarkko Lavineneb1860b2008-03-26 16:09:29 -0400612
Jarkko Lavinen0fb47232008-03-26 16:09:48 -0400613 cmd = host->cmd;
614 host->cmd = NULL;
615 mmc_omap_send_abort(host, 10000);
616
617 host->mrq = NULL;
618 mmc = host->mmc;
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -0400619 mmc_omap_release_slot(host->current_slot, 1);
Jarkko Lavinen0fb47232008-03-26 16:09:48 -0400620 mmc_request_done(mmc, cmd->mrq);
621 } else
622 mmc_omap_cmd_done(host, host->cmd);
623
624 host->abort = 0;
625 enable_irq(host->irq);
Jarkko Lavineneb1860b2008-03-26 16:09:29 -0400626}
627
628static void
629mmc_omap_cmd_timer(unsigned long data)
630{
631 struct mmc_omap_host *host = (struct mmc_omap_host *) data;
Jarkko Lavinen0fb47232008-03-26 16:09:48 -0400632 unsigned long flags;
Jarkko Lavineneb1860b2008-03-26 16:09:29 -0400633
Jarkko Lavinen0fb47232008-03-26 16:09:48 -0400634 spin_lock_irqsave(&host->slot_lock, flags);
635 if (host->cmd != NULL && !host->abort) {
636 OMAP_MMC_WRITE(host, IE, 0);
637 disable_irq(host->irq);
638 host->abort = 1;
639 schedule_work(&host->cmd_abort_work);
640 }
641 spin_unlock_irqrestore(&host->slot_lock, flags);
Jarkko Lavineneb1860b2008-03-26 16:09:29 -0400642}
643
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100644/* PIO only */
645static void
646mmc_omap_sg_to_buf(struct mmc_omap_host *host)
647{
648 struct scatterlist *sg;
649
650 sg = host->data->sg + host->sg_idx;
651 host->buffer_bytes_left = sg->length;
Jens Axboe45711f12007-10-22 21:19:53 +0200652 host->buffer = sg_virt(sg);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100653 if (host->buffer_bytes_left > host->total_bytes_left)
654 host->buffer_bytes_left = host->total_bytes_left;
655}
656
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -0400657static void
658mmc_omap_clk_timer(unsigned long data)
659{
660 struct mmc_omap_host *host = (struct mmc_omap_host *) data;
661
662 mmc_omap_fclk_enable(host, 0);
663}
664
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100665/* PIO only */
666static void
667mmc_omap_xfer_data(struct mmc_omap_host *host, int write)
668{
669 int n;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100670
671 if (host->buffer_bytes_left == 0) {
672 host->sg_idx++;
673 BUG_ON(host->sg_idx == host->sg_len);
674 mmc_omap_sg_to_buf(host);
675 }
676 n = 64;
677 if (n > host->buffer_bytes_left)
678 n = host->buffer_bytes_left;
679 host->buffer_bytes_left -= n;
680 host->total_bytes_left -= n;
681 host->data->bytes_xfered += n;
682
683 if (write) {
Juha Yrjola juha.yrjola89783b1e42006-11-11 23:36:01 +0100684 __raw_writesw(host->virt_base + OMAP_MMC_REG_DATA, host->buffer, n);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100685 } else {
Juha Yrjola juha.yrjola89783b1e42006-11-11 23:36:01 +0100686 __raw_readsw(host->virt_base + OMAP_MMC_REG_DATA, host->buffer, n);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100687 }
688}
689
690static inline void mmc_omap_report_irq(u16 status)
691{
692 static const char *mmc_omap_status_bits[] = {
693 "EOC", "CD", "CB", "BRS", "EOFB", "DTO", "DCRC", "CTO",
694 "CCRC", "CRW", "AF", "AE", "OCRB", "CIRQ", "CERR"
695 };
696 int i, c = 0;
697
698 for (i = 0; i < ARRAY_SIZE(mmc_omap_status_bits); i++)
699 if (status & (1 << i)) {
700 if (c)
701 printk(" ");
702 printk("%s", mmc_omap_status_bits[i]);
703 c++;
704 }
705}
706
David Howells7d12e782006-10-05 14:55:46 +0100707static irqreturn_t mmc_omap_irq(int irq, void *dev_id)
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100708{
709 struct mmc_omap_host * host = (struct mmc_omap_host *)dev_id;
710 u16 status;
711 int end_command;
712 int end_transfer;
Juha Yrjola2a50b882008-03-26 16:09:26 -0400713 int transfer_error, cmd_error;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100714
715 if (host->cmd == NULL && host->data == NULL) {
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100716 status = OMAP_MMC_READ(host, STAT);
Juha Yrjola2a50b882008-03-26 16:09:26 -0400717 dev_info(mmc_dev(host->slots[0]->mmc),
718 "Spurious IRQ 0x%04x\n", status);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100719 if (status != 0) {
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100720 OMAP_MMC_WRITE(host, STAT, status);
721 OMAP_MMC_WRITE(host, IE, 0);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100722 }
723 return IRQ_HANDLED;
724 }
725
726 end_command = 0;
727 end_transfer = 0;
728 transfer_error = 0;
Juha Yrjola2a50b882008-03-26 16:09:26 -0400729 cmd_error = 0;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100730
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100731 while ((status = OMAP_MMC_READ(host, STAT)) != 0) {
Juha Yrjola2a50b882008-03-26 16:09:26 -0400732 int cmd;
733
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100734 OMAP_MMC_WRITE(host, STAT, status);
Juha Yrjola2a50b882008-03-26 16:09:26 -0400735 if (host->cmd != NULL)
736 cmd = host->cmd->opcode;
737 else
738 cmd = -1;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100739#ifdef CONFIG_MMC_DEBUG
740 dev_dbg(mmc_dev(host->mmc), "MMC IRQ %04x (CMD %d): ",
Juha Yrjola2a50b882008-03-26 16:09:26 -0400741 status, cmd);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100742 mmc_omap_report_irq(status);
743 printk("\n");
744#endif
745 if (host->total_bytes_left) {
746 if ((status & OMAP_MMC_STAT_A_FULL) ||
747 (status & OMAP_MMC_STAT_END_OF_DATA))
748 mmc_omap_xfer_data(host, 0);
749 if (status & OMAP_MMC_STAT_A_EMPTY)
750 mmc_omap_xfer_data(host, 1);
751 }
752
Juha Yrjola2a50b882008-03-26 16:09:26 -0400753 if (status & OMAP_MMC_STAT_END_OF_DATA)
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100754 end_transfer = 1;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100755
756 if (status & OMAP_MMC_STAT_DATA_TOUT) {
Juha Yrjola2a50b882008-03-26 16:09:26 -0400757 dev_dbg(mmc_dev(host->mmc), "data timeout (CMD%d)\n",
758 cmd);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100759 if (host->data) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200760 host->data->error = -ETIMEDOUT;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100761 transfer_error = 1;
762 }
763 }
764
765 if (status & OMAP_MMC_STAT_DATA_CRC) {
766 if (host->data) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200767 host->data->error = -EILSEQ;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100768 dev_dbg(mmc_dev(host->mmc),
769 "data CRC error, bytes left %d\n",
770 host->total_bytes_left);
771 transfer_error = 1;
772 } else {
773 dev_dbg(mmc_dev(host->mmc), "data CRC error\n");
774 }
775 }
776
777 if (status & OMAP_MMC_STAT_CMD_TOUT) {
778 /* Timeouts are routine with some commands */
779 if (host->cmd) {
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400780 struct mmc_omap_slot *slot =
781 host->current_slot;
Juha Yrjola2a50b882008-03-26 16:09:26 -0400782 if (slot == NULL ||
783 !mmc_omap_cover_is_open(slot))
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400784 dev_err(mmc_dev(host->mmc),
Juha Yrjola2a50b882008-03-26 16:09:26 -0400785 "command timeout (CMD%d)\n",
786 cmd);
Pierre Ossman17b04292007-07-22 22:18:46 +0200787 host->cmd->error = -ETIMEDOUT;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100788 end_command = 1;
Juha Yrjola2a50b882008-03-26 16:09:26 -0400789 cmd_error = 1;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100790 }
791 }
792
793 if (status & OMAP_MMC_STAT_CMD_CRC) {
794 if (host->cmd) {
795 dev_err(mmc_dev(host->mmc),
796 "command CRC error (CMD%d, arg 0x%08x)\n",
Juha Yrjola2a50b882008-03-26 16:09:26 -0400797 cmd, host->cmd->arg);
Pierre Ossman17b04292007-07-22 22:18:46 +0200798 host->cmd->error = -EILSEQ;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100799 end_command = 1;
Juha Yrjola2a50b882008-03-26 16:09:26 -0400800 cmd_error = 1;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100801 } else
802 dev_err(mmc_dev(host->mmc),
803 "command CRC error without cmd?\n");
804 }
805
806 if (status & OMAP_MMC_STAT_CARD_ERR) {
Ragner Magalhaes0107a4b2007-06-13 19:09:28 +0200807 dev_dbg(mmc_dev(host->mmc),
808 "ignoring card status error (CMD%d)\n",
Juha Yrjola2a50b882008-03-26 16:09:26 -0400809 cmd);
Ragner Magalhaes0107a4b2007-06-13 19:09:28 +0200810 end_command = 1;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100811 }
812
813 /*
814 * NOTE: On 1610 the END_OF_CMD may come too early when
Juha Yrjola2a50b882008-03-26 16:09:26 -0400815 * starting a write
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100816 */
817 if ((status & OMAP_MMC_STAT_END_OF_CMD) &&
818 (!(status & OMAP_MMC_STAT_A_EMPTY))) {
819 end_command = 1;
820 }
821 }
822
Jarkko Lavinen0fb47232008-03-26 16:09:48 -0400823 if (cmd_error && host->data) {
824 del_timer(&host->cmd_abort_timer);
825 host->abort = 1;
826 OMAP_MMC_WRITE(host, IE, 0);
827 disable_irq(host->irq);
828 schedule_work(&host->cmd_abort_work);
829 return IRQ_HANDLED;
830 }
831
Juha Yrjola2a50b882008-03-26 16:09:26 -0400832 if (end_command)
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100833 mmc_omap_cmd_done(host, host->cmd);
Juha Yrjola2a50b882008-03-26 16:09:26 -0400834 if (host->data != NULL) {
835 if (transfer_error)
836 mmc_omap_xfer_done(host, host->data);
837 else if (end_transfer)
838 mmc_omap_end_of_data(host, host->data);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100839 }
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100840
841 return IRQ_HANDLED;
842}
843
Jarkko Lavinen7584d272008-03-26 16:09:42 -0400844void omap_mmc_notify_cover_event(struct device *dev, int num, int is_closed)
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400845{
Jarkko Lavinen7584d272008-03-26 16:09:42 -0400846 int cover_open;
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400847 struct mmc_omap_host *host = dev_get_drvdata(dev);
Jarkko Lavinen7584d272008-03-26 16:09:42 -0400848 struct mmc_omap_slot *slot = host->slots[num];
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400849
Jarkko Lavinen7584d272008-03-26 16:09:42 -0400850 BUG_ON(num >= host->nr_slots);
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400851
852 /* Other subsystems can call in here before we're initialised. */
Jarkko Lavinen7584d272008-03-26 16:09:42 -0400853 if (host->nr_slots == 0 || !host->slots[num])
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400854 return;
855
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400856 cover_open = mmc_omap_cover_is_open(slot);
857 if (cover_open != slot->cover_open) {
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400858 slot->cover_open = cover_open;
Jarkko Lavinen7584d272008-03-26 16:09:42 -0400859 sysfs_notify(&slot->mmc->class_dev.kobj, NULL, "cover_switch");
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400860 }
Jarkko Lavinen7584d272008-03-26 16:09:42 -0400861
862 tasklet_hi_schedule(&slot->cover_tasklet);
863}
864
865static void mmc_omap_cover_timer(unsigned long arg)
866{
867 struct mmc_omap_slot *slot = (struct mmc_omap_slot *) arg;
868 tasklet_schedule(&slot->cover_tasklet);
869}
870
871static void mmc_omap_cover_handler(unsigned long param)
872{
873 struct mmc_omap_slot *slot = (struct mmc_omap_slot *)param;
874 int cover_open = mmc_omap_cover_is_open(slot);
875
876 mmc_detect_change(slot->mmc, 0);
877 if (!cover_open)
878 return;
879
880 /*
881 * If no card is inserted, we postpone polling until
882 * the cover has been closed.
883 */
884 if (slot->mmc->card == NULL || !mmc_card_present(slot->mmc->card))
885 return;
886
887 mod_timer(&slot->cover_timer,
888 jiffies + msecs_to_jiffies(OMAP_MMC_COVER_POLL_DELAY));
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400889}
890
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100891/* Prepare to transfer the next segment of a scatterlist */
892static void
893mmc_omap_prepare_dma(struct mmc_omap_host *host, struct mmc_data *data)
894{
895 int dma_ch = host->dma_ch;
896 unsigned long data_addr;
897 u16 buf, frame;
898 u32 count;
899 struct scatterlist *sg = &data->sg[host->sg_idx];
900 int src_port = 0;
901 int dst_port = 0;
902 int sync_dev = 0;
903
Juha Yrjola juha.yrjola89783b1e42006-11-11 23:36:01 +0100904 data_addr = host->phys_base + OMAP_MMC_REG_DATA;
Russell Kinga3fd4a12006-06-04 17:51:15 +0100905 frame = data->blksz;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100906 count = sg_dma_len(sg);
907
Russell Kinga3fd4a12006-06-04 17:51:15 +0100908 if ((data->blocks == 1) && (count > data->blksz))
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100909 count = frame;
910
911 host->dma_len = count;
912
913 /* FIFO is 16x2 bytes on 15xx, and 32x2 bytes on 16xx and 24xx.
914 * Use 16 or 32 word frames when the blocksize is at least that large.
915 * Blocksize is usually 512 bytes; but not for some SD reads.
916 */
917 if (cpu_is_omap15xx() && frame > 32)
918 frame = 32;
919 else if (frame > 64)
920 frame = 64;
921 count /= frame;
922 frame >>= 1;
923
924 if (!(data->flags & MMC_DATA_WRITE)) {
925 buf = 0x800f | ((frame - 1) << 8);
926
927 if (cpu_class_is_omap1()) {
928 src_port = OMAP_DMA_PORT_TIPB;
929 dst_port = OMAP_DMA_PORT_EMIFF;
930 }
931 if (cpu_is_omap24xx())
932 sync_dev = OMAP24XX_DMA_MMC1_RX;
933
934 omap_set_dma_src_params(dma_ch, src_port,
935 OMAP_DMA_AMODE_CONSTANT,
936 data_addr, 0, 0);
937 omap_set_dma_dest_params(dma_ch, dst_port,
938 OMAP_DMA_AMODE_POST_INC,
939 sg_dma_address(sg), 0, 0);
940 omap_set_dma_dest_data_pack(dma_ch, 1);
941 omap_set_dma_dest_burst_mode(dma_ch, OMAP_DMA_DATA_BURST_4);
942 } else {
943 buf = 0x0f80 | ((frame - 1) << 0);
944
945 if (cpu_class_is_omap1()) {
946 src_port = OMAP_DMA_PORT_EMIFF;
947 dst_port = OMAP_DMA_PORT_TIPB;
948 }
949 if (cpu_is_omap24xx())
950 sync_dev = OMAP24XX_DMA_MMC1_TX;
951
952 omap_set_dma_dest_params(dma_ch, dst_port,
953 OMAP_DMA_AMODE_CONSTANT,
954 data_addr, 0, 0);
955 omap_set_dma_src_params(dma_ch, src_port,
956 OMAP_DMA_AMODE_POST_INC,
957 sg_dma_address(sg), 0, 0);
958 omap_set_dma_src_data_pack(dma_ch, 1);
959 omap_set_dma_src_burst_mode(dma_ch, OMAP_DMA_DATA_BURST_4);
960 }
961
962 /* Max limit for DMA frame count is 0xffff */
Eric Sesterhennd99c5902006-11-30 05:27:38 +0100963 BUG_ON(count > 0xffff);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100964
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100965 OMAP_MMC_WRITE(host, BUF, buf);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100966 omap_set_dma_transfer_params(dma_ch, OMAP_DMA_DATA_TYPE_S16,
967 frame, count, OMAP_DMA_SYNC_FRAME,
968 sync_dev, 0);
969}
970
971/* A scatterlist segment completed */
972static void mmc_omap_dma_cb(int lch, u16 ch_status, void *data)
973{
974 struct mmc_omap_host *host = (struct mmc_omap_host *) data;
975 struct mmc_data *mmcdat = host->data;
976
977 if (unlikely(host->dma_ch < 0)) {
Tony Lindgrence9c1a82006-07-01 19:56:44 +0100978 dev_err(mmc_dev(host->mmc),
979 "DMA callback while DMA not enabled\n");
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100980 return;
981 }
982 /* FIXME: We really should do something to _handle_ the errors */
Tony Lindgren7ff879d2006-06-26 16:16:15 -0700983 if (ch_status & OMAP1_DMA_TOUT_IRQ) {
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100984 dev_err(mmc_dev(host->mmc),"DMA timeout\n");
985 return;
986 }
987 if (ch_status & OMAP_DMA_DROP_IRQ) {
988 dev_err(mmc_dev(host->mmc), "DMA sync error\n");
989 return;
990 }
991 if (!(ch_status & OMAP_DMA_BLOCK_IRQ)) {
992 return;
993 }
994 mmcdat->bytes_xfered += host->dma_len;
995 host->sg_idx++;
996 if (host->sg_idx < host->sg_len) {
997 mmc_omap_prepare_dma(host, host->data);
998 omap_start_dma(host->dma_ch);
999 } else
1000 mmc_omap_dma_done(host, host->data);
1001}
1002
1003static int mmc_omap_get_dma_channel(struct mmc_omap_host *host, struct mmc_data *data)
1004{
Tony Lindgrendf48dd02008-05-06 16:36:47 -07001005 const char *dma_dev_name;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001006 int sync_dev, dma_ch, is_read, r;
1007
1008 is_read = !(data->flags & MMC_DATA_WRITE);
1009 del_timer_sync(&host->dma_timer);
1010 if (host->dma_ch >= 0) {
1011 if (is_read == host->dma_is_read)
1012 return 0;
1013 omap_free_dma(host->dma_ch);
1014 host->dma_ch = -1;
1015 }
1016
1017 if (is_read) {
1018 if (host->id == 1) {
1019 sync_dev = OMAP_DMA_MMC_RX;
Tony Lindgrendf48dd02008-05-06 16:36:47 -07001020 dma_dev_name = "MMC1 read";
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001021 } else {
1022 sync_dev = OMAP_DMA_MMC2_RX;
Tony Lindgrendf48dd02008-05-06 16:36:47 -07001023 dma_dev_name = "MMC2 read";
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001024 }
1025 } else {
1026 if (host->id == 1) {
1027 sync_dev = OMAP_DMA_MMC_TX;
Tony Lindgrendf48dd02008-05-06 16:36:47 -07001028 dma_dev_name = "MMC1 write";
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001029 } else {
1030 sync_dev = OMAP_DMA_MMC2_TX;
Tony Lindgrendf48dd02008-05-06 16:36:47 -07001031 dma_dev_name = "MMC2 write";
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001032 }
1033 }
Tony Lindgrendf48dd02008-05-06 16:36:47 -07001034 r = omap_request_dma(sync_dev, dma_dev_name, mmc_omap_dma_cb,
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001035 host, &dma_ch);
1036 if (r != 0) {
1037 dev_dbg(mmc_dev(host->mmc), "omap_request_dma() failed with %d\n", r);
1038 return r;
1039 }
1040 host->dma_ch = dma_ch;
1041 host->dma_is_read = is_read;
1042
1043 return 0;
1044}
1045
1046static inline void set_cmd_timeout(struct mmc_omap_host *host, struct mmc_request *req)
1047{
1048 u16 reg;
1049
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +01001050 reg = OMAP_MMC_READ(host, SDIO);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001051 reg &= ~(1 << 5);
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +01001052 OMAP_MMC_WRITE(host, SDIO, reg);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001053 /* Set maximum timeout */
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +01001054 OMAP_MMC_WRITE(host, CTO, 0xff);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001055}
1056
1057static inline void set_data_timeout(struct mmc_omap_host *host, struct mmc_request *req)
1058{
Juha Yrjolab8f9f0e2008-03-26 16:09:16 -04001059 unsigned int timeout, cycle_ns;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001060 u16 reg;
1061
Juha Yrjolab8f9f0e2008-03-26 16:09:16 -04001062 cycle_ns = 1000000000 / host->current_slot->fclk_freq;
1063 timeout = req->data->timeout_ns / cycle_ns;
1064 timeout += req->data->timeout_clks;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001065
1066 /* Check if we need to use timeout multiplier register */
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +01001067 reg = OMAP_MMC_READ(host, SDIO);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001068 if (timeout > 0xffff) {
1069 reg |= (1 << 5);
1070 timeout /= 1024;
1071 } else
1072 reg &= ~(1 << 5);
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +01001073 OMAP_MMC_WRITE(host, SDIO, reg);
1074 OMAP_MMC_WRITE(host, DTO, timeout);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001075}
1076
1077static void
1078mmc_omap_prepare_data(struct mmc_omap_host *host, struct mmc_request *req)
1079{
1080 struct mmc_data *data = req->data;
1081 int i, use_dma, block_size;
1082 unsigned sg_len;
1083
1084 host->data = data;
1085 if (data == NULL) {
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +01001086 OMAP_MMC_WRITE(host, BLEN, 0);
1087 OMAP_MMC_WRITE(host, NBLK, 0);
1088 OMAP_MMC_WRITE(host, BUF, 0);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001089 host->dma_in_use = 0;
1090 set_cmd_timeout(host, req);
1091 return;
1092 }
1093
Russell Kinga3fd4a12006-06-04 17:51:15 +01001094 block_size = data->blksz;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001095
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +01001096 OMAP_MMC_WRITE(host, NBLK, data->blocks - 1);
1097 OMAP_MMC_WRITE(host, BLEN, block_size - 1);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001098 set_data_timeout(host, req);
1099
1100 /* cope with calling layer confusion; it issues "single
1101 * block" writes using multi-block scatterlists.
1102 */
1103 sg_len = (data->blocks == 1) ? 1 : data->sg_len;
1104
1105 /* Only do DMA for entire blocks */
1106 use_dma = host->use_dma;
1107 if (use_dma) {
1108 for (i = 0; i < sg_len; i++) {
1109 if ((data->sg[i].length % block_size) != 0) {
1110 use_dma = 0;
1111 break;
1112 }
1113 }
1114 }
1115
1116 host->sg_idx = 0;
1117 if (use_dma) {
1118 if (mmc_omap_get_dma_channel(host, data) == 0) {
1119 enum dma_data_direction dma_data_dir;
1120
1121 if (data->flags & MMC_DATA_WRITE)
1122 dma_data_dir = DMA_TO_DEVICE;
1123 else
1124 dma_data_dir = DMA_FROM_DEVICE;
1125
1126 host->sg_len = dma_map_sg(mmc_dev(host->mmc), data->sg,
1127 sg_len, dma_data_dir);
1128 host->total_bytes_left = 0;
1129 mmc_omap_prepare_dma(host, req->data);
1130 host->brs_received = 0;
1131 host->dma_done = 0;
1132 host->dma_in_use = 1;
1133 } else
1134 use_dma = 0;
1135 }
1136
1137 /* Revert to PIO? */
1138 if (!use_dma) {
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +01001139 OMAP_MMC_WRITE(host, BUF, 0x1f1f);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001140 host->total_bytes_left = data->blocks * block_size;
1141 host->sg_len = sg_len;
1142 mmc_omap_sg_to_buf(host);
1143 host->dma_in_use = 0;
1144 }
1145}
1146
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001147static void mmc_omap_start_request(struct mmc_omap_host *host,
1148 struct mmc_request *req)
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001149{
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001150 BUG_ON(host->mrq != NULL);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001151
1152 host->mrq = req;
1153
1154 /* only touch fifo AFTER the controller readies it */
1155 mmc_omap_prepare_data(host, req);
1156 mmc_omap_start_command(host, req->cmd);
1157 if (host->dma_in_use)
1158 omap_start_dma(host->dma_ch);
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001159 BUG_ON(irqs_disabled());
1160}
1161
1162static void mmc_omap_request(struct mmc_host *mmc, struct mmc_request *req)
1163{
1164 struct mmc_omap_slot *slot = mmc_priv(mmc);
1165 struct mmc_omap_host *host = slot->host;
1166 unsigned long flags;
1167
1168 spin_lock_irqsave(&host->slot_lock, flags);
1169 if (host->mmc != NULL) {
1170 BUG_ON(slot->mrq != NULL);
1171 slot->mrq = req;
1172 spin_unlock_irqrestore(&host->slot_lock, flags);
1173 return;
1174 } else
1175 host->mmc = mmc;
1176 spin_unlock_irqrestore(&host->slot_lock, flags);
1177 mmc_omap_select_slot(slot, 1);
1178 mmc_omap_start_request(host, req);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001179}
1180
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001181static void mmc_omap_set_power(struct mmc_omap_slot *slot, int power_on,
1182 int vdd)
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001183{
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001184 struct mmc_omap_host *host;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001185
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001186 host = slot->host;
1187
1188 if (slot->pdata->set_power != NULL)
1189 slot->pdata->set_power(mmc_dev(slot->mmc), slot->id, power_on,
1190 vdd);
1191
1192 if (cpu_is_omap24xx()) {
1193 u16 w;
1194
1195 if (power_on) {
1196 w = OMAP_MMC_READ(host, CON);
1197 OMAP_MMC_WRITE(host, CON, w | (1 << 11));
1198 } else {
1199 w = OMAP_MMC_READ(host, CON);
1200 OMAP_MMC_WRITE(host, CON, w & ~(1 << 11));
1201 }
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001202 }
1203}
1204
Tony Lindgrend3af5ab2007-05-01 16:36:00 +02001205static int mmc_omap_calc_divisor(struct mmc_host *mmc, struct mmc_ios *ios)
1206{
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001207 struct mmc_omap_slot *slot = mmc_priv(mmc);
1208 struct mmc_omap_host *host = slot->host;
Tony Lindgrend3af5ab2007-05-01 16:36:00 +02001209 int func_clk_rate = clk_get_rate(host->fclk);
1210 int dsor;
1211
1212 if (ios->clock == 0)
1213 return 0;
1214
1215 dsor = func_clk_rate / ios->clock;
1216 if (dsor < 1)
1217 dsor = 1;
1218
1219 if (func_clk_rate / dsor > ios->clock)
1220 dsor++;
1221
1222 if (dsor > 250)
1223 dsor = 250;
Tony Lindgrend3af5ab2007-05-01 16:36:00 +02001224
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001225 slot->fclk_freq = func_clk_rate / dsor;
1226
Tony Lindgrend3af5ab2007-05-01 16:36:00 +02001227 if (ios->bus_width == MMC_BUS_WIDTH_4)
1228 dsor |= 1 << 15;
1229
1230 return dsor;
1231}
1232
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001233static void mmc_omap_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
1234{
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001235 struct mmc_omap_slot *slot = mmc_priv(mmc);
1236 struct mmc_omap_host *host = slot->host;
1237 int i, dsor;
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -04001238 int clk_enabled;
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001239
1240 mmc_omap_select_slot(slot, 0);
1241
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -04001242 dsor = mmc_omap_calc_divisor(mmc, ios);
1243
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001244 if (ios->vdd != slot->vdd)
1245 slot->vdd = ios->vdd;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001246
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -04001247 clk_enabled = 0;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001248 switch (ios->power_mode) {
1249 case MMC_POWER_OFF:
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001250 mmc_omap_set_power(slot, 0, ios->vdd);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001251 break;
1252 case MMC_POWER_UP:
Tony Lindgren46a67302007-05-01 16:34:16 +02001253 /* Cannot touch dsor yet, just power up MMC */
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001254 mmc_omap_set_power(slot, 1, ios->vdd);
1255 goto exit;
Tony Lindgren46a67302007-05-01 16:34:16 +02001256 case MMC_POWER_ON:
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -04001257 mmc_omap_fclk_enable(host, 1);
1258 clk_enabled = 1;
Juha Yrjola juha.yrjolac5cb4312006-11-11 23:42:39 +01001259 dsor |= 1 << 11;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001260 break;
1261 }
1262
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001263 if (slot->bus_mode != ios->bus_mode) {
1264 if (slot->pdata->set_bus_mode != NULL)
1265 slot->pdata->set_bus_mode(mmc_dev(mmc), slot->id,
1266 ios->bus_mode);
1267 slot->bus_mode = ios->bus_mode;
1268 }
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001269
1270 /* On insanely high arm_per frequencies something sometimes
1271 * goes somehow out of sync, and the POW bit is not being set,
1272 * which results in the while loop below getting stuck.
1273 * Writing to the CON register twice seems to do the trick. */
1274 for (i = 0; i < 2; i++)
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +01001275 OMAP_MMC_WRITE(host, CON, dsor);
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001276 slot->saved_con = dsor;
Tony Lindgren46a67302007-05-01 16:34:16 +02001277 if (ios->power_mode == MMC_POWER_ON) {
Jarkko Lavinen9d7c6ee2008-03-26 16:10:02 -04001278 /* worst case at 400kHz, 80 cycles makes 200 microsecs */
1279 int usecs = 250;
1280
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001281 /* Send clock cycles, poll completion */
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +01001282 OMAP_MMC_WRITE(host, IE, 0);
1283 OMAP_MMC_WRITE(host, STAT, 0xffff);
Juha Yrjola juha.yrjolac5cb4312006-11-11 23:42:39 +01001284 OMAP_MMC_WRITE(host, CMD, 1 << 7);
Jarkko Lavinen9d7c6ee2008-03-26 16:10:02 -04001285 while (usecs > 0 && (OMAP_MMC_READ(host, STAT) & 1) == 0) {
1286 udelay(1);
1287 usecs--;
1288 }
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +01001289 OMAP_MMC_WRITE(host, STAT, 1);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001290 }
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001291
1292exit:
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -04001293 mmc_omap_release_slot(slot, clk_enabled);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001294}
1295
David Brownellab7aefd2006-11-12 17:55:30 -08001296static const struct mmc_host_ops mmc_omap_ops = {
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001297 .request = mmc_omap_request,
1298 .set_ios = mmc_omap_set_ios,
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001299};
1300
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001301static int __init mmc_omap_new_slot(struct mmc_omap_host *host, int id)
1302{
1303 struct mmc_omap_slot *slot = NULL;
1304 struct mmc_host *mmc;
1305 int r;
1306
1307 mmc = mmc_alloc_host(sizeof(struct mmc_omap_slot), host->dev);
1308 if (mmc == NULL)
1309 return -ENOMEM;
1310
1311 slot = mmc_priv(mmc);
1312 slot->host = host;
1313 slot->mmc = mmc;
1314 slot->id = id;
1315 slot->pdata = &host->pdata->slots[id];
1316
1317 host->slots[id] = slot;
1318
Pierre Ossman23af6032008-07-06 01:10:27 +02001319 mmc->caps = 0;
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001320 if (host->pdata->conf.wire4)
1321 mmc->caps |= MMC_CAP_4_BIT_DATA;
1322
1323 mmc->ops = &mmc_omap_ops;
1324 mmc->f_min = 400000;
1325
1326 if (cpu_class_is_omap2())
1327 mmc->f_max = 48000000;
1328 else
1329 mmc->f_max = 24000000;
1330 if (host->pdata->max_freq)
1331 mmc->f_max = min(host->pdata->max_freq, mmc->f_max);
1332 mmc->ocr_avail = slot->pdata->ocr_mask;
1333
1334 /* Use scatterlist DMA to reduce per-transfer costs.
1335 * NOTE max_seg_size assumption that small blocks aren't
1336 * normally used (except e.g. for reading SD registers).
1337 */
1338 mmc->max_phys_segs = 32;
1339 mmc->max_hw_segs = 32;
1340 mmc->max_blk_size = 2048; /* BLEN is 11 bits (+1) */
1341 mmc->max_blk_count = 2048; /* NBLK is 11 bits (+1) */
1342 mmc->max_req_size = mmc->max_blk_size * mmc->max_blk_count;
1343 mmc->max_seg_size = mmc->max_req_size;
1344
1345 r = mmc_add_host(mmc);
1346 if (r < 0)
1347 goto err_remove_host;
1348
1349 if (slot->pdata->name != NULL) {
1350 r = device_create_file(&mmc->class_dev,
1351 &dev_attr_slot_name);
1352 if (r < 0)
1353 goto err_remove_host;
1354 }
1355
Juha Yrjola5a0f3f12008-03-26 16:09:08 -04001356 if (slot->pdata->get_cover_state != NULL) {
1357 r = device_create_file(&mmc->class_dev,
1358 &dev_attr_cover_switch);
1359 if (r < 0)
1360 goto err_remove_slot_name;
1361
Jarkko Lavinen7584d272008-03-26 16:09:42 -04001362 setup_timer(&slot->cover_timer, mmc_omap_cover_timer,
1363 (unsigned long)slot);
1364 tasklet_init(&slot->cover_tasklet, mmc_omap_cover_handler,
1365 (unsigned long)slot);
1366 tasklet_schedule(&slot->cover_tasklet);
Juha Yrjola5a0f3f12008-03-26 16:09:08 -04001367 }
1368
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001369 return 0;
1370
Juha Yrjola5a0f3f12008-03-26 16:09:08 -04001371err_remove_slot_name:
1372 if (slot->pdata->name != NULL)
1373 device_remove_file(&mmc->class_dev, &dev_attr_slot_name);
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001374err_remove_host:
1375 mmc_remove_host(mmc);
1376 mmc_free_host(mmc);
1377 return r;
1378}
1379
1380static void mmc_omap_remove_slot(struct mmc_omap_slot *slot)
1381{
1382 struct mmc_host *mmc = slot->mmc;
1383
1384 if (slot->pdata->name != NULL)
1385 device_remove_file(&mmc->class_dev, &dev_attr_slot_name);
Juha Yrjola5a0f3f12008-03-26 16:09:08 -04001386 if (slot->pdata->get_cover_state != NULL)
1387 device_remove_file(&mmc->class_dev, &dev_attr_cover_switch);
1388
Jarkko Lavinen7584d272008-03-26 16:09:42 -04001389 tasklet_kill(&slot->cover_tasklet);
1390 del_timer_sync(&slot->cover_timer);
Juha Yrjola5a0f3f12008-03-26 16:09:08 -04001391 flush_scheduled_work();
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001392
1393 mmc_remove_host(mmc);
1394 mmc_free_host(mmc);
1395}
1396
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001397static int __init mmc_omap_probe(struct platform_device *pdev)
1398{
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001399 struct omap_mmc_platform_data *pdata = pdev->dev.platform_data;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001400 struct mmc_omap_host *host = NULL;
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001401 struct resource *res;
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001402 int i, ret = 0;
Tony Lindgrence9c1a82006-07-01 19:56:44 +01001403 int irq;
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001404
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001405 if (pdata == NULL) {
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001406 dev_err(&pdev->dev, "platform data missing\n");
1407 return -ENXIO;
1408 }
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001409 if (pdata->nr_slots == 0) {
1410 dev_err(&pdev->dev, "no slots\n");
1411 return -ENXIO;
1412 }
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001413
1414 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Tony Lindgrence9c1a82006-07-01 19:56:44 +01001415 irq = platform_get_irq(pdev, 0);
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001416 if (res == NULL || irq < 0)
Tony Lindgrence9c1a82006-07-01 19:56:44 +01001417 return -ENXIO;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001418
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001419 res = request_mem_region(res->start, res->end - res->start + 1,
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001420 pdev->name);
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001421 if (res == NULL)
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001422 return -EBUSY;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001423
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001424 host = kzalloc(sizeof(struct mmc_omap_host), GFP_KERNEL);
1425 if (host == NULL) {
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001426 ret = -ENOMEM;
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001427 goto err_free_mem_region;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001428 }
1429
Jarkko Lavinen0f602ec2008-03-26 16:09:58 -04001430 INIT_WORK(&host->slot_release_work, mmc_omap_slot_release_work);
1431 INIT_WORK(&host->send_stop_work, mmc_omap_send_stop_work);
1432
Jarkko Lavinen0fb47232008-03-26 16:09:48 -04001433 INIT_WORK(&host->cmd_abort_work, mmc_omap_abort_command);
1434 setup_timer(&host->cmd_abort_timer, mmc_omap_cmd_timer,
1435 (unsigned long) host);
Jarkko Lavineneb1860b2008-03-26 16:09:29 -04001436
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -04001437 spin_lock_init(&host->clk_lock);
1438 setup_timer(&host->clk_timer, mmc_omap_clk_timer, (unsigned long) host);
1439
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001440 spin_lock_init(&host->dma_lock);
Carlos Eduardo Aguiar01e77e12008-03-26 16:09:34 -04001441 setup_timer(&host->dma_timer, mmc_omap_dma_timer, (unsigned long) host);
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001442 spin_lock_init(&host->slot_lock);
1443 init_waitqueue_head(&host->slot_wq);
1444
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001445 host->pdata = pdata;
1446 host->dev = &pdev->dev;
1447 platform_set_drvdata(pdev, host);
1448
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001449 host->id = pdev->id;
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001450 host->mem_res = res;
Tony Lindgrence9c1a82006-07-01 19:56:44 +01001451 host->irq = irq;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001452
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001453 host->use_dma = 1;
1454 host->dma_ch = -1;
1455
1456 host->irq = irq;
1457 host->phys_base = host->mem_res->start;
1458 host->virt_base = (void __iomem *) IO_ADDRESS(host->phys_base);
1459
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001460 if (cpu_is_omap24xx()) {
1461 host->iclk = clk_get(&pdev->dev, "mmc_ick");
1462 if (IS_ERR(host->iclk))
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001463 goto err_free_mmc_host;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001464 clk_enable(host->iclk);
1465 }
1466
1467 if (!cpu_is_omap24xx())
1468 host->fclk = clk_get(&pdev->dev, "mmc_ck");
1469 else
1470 host->fclk = clk_get(&pdev->dev, "mmc_fck");
1471
1472 if (IS_ERR(host->fclk)) {
1473 ret = PTR_ERR(host->fclk);
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001474 goto err_free_iclk;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001475 }
1476
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001477 ret = request_irq(host->irq, mmc_omap_irq, 0, DRIVER_NAME, host);
1478 if (ret)
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001479 goto err_free_fclk;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001480
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001481 if (pdata->init != NULL) {
1482 ret = pdata->init(&pdev->dev);
1483 if (ret < 0)
1484 goto err_free_irq;
1485 }
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001486
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001487 host->nr_slots = pdata->nr_slots;
1488 for (i = 0; i < pdata->nr_slots; i++) {
1489 ret = mmc_omap_new_slot(host, i);
1490 if (ret < 0) {
1491 while (--i >= 0)
1492 mmc_omap_remove_slot(host->slots[i]);
1493
1494 goto err_plat_cleanup;
1495 }
1496 }
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001497
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001498 return 0;
1499
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001500err_plat_cleanup:
1501 if (pdata->cleanup)
1502 pdata->cleanup(&pdev->dev);
1503err_free_irq:
1504 free_irq(host->irq, host);
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001505err_free_fclk:
1506 clk_put(host->fclk);
1507err_free_iclk:
1508 if (host->iclk != NULL) {
1509 clk_disable(host->iclk);
1510 clk_put(host->iclk);
1511 }
1512err_free_mmc_host:
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001513 kfree(host);
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001514err_free_mem_region:
1515 release_mem_region(res->start, res->end - res->start + 1);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001516 return ret;
1517}
1518
1519static int mmc_omap_remove(struct platform_device *pdev)
1520{
1521 struct mmc_omap_host *host = platform_get_drvdata(pdev);
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001522 int i;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001523
1524 platform_set_drvdata(pdev, NULL);
1525
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001526 BUG_ON(host == NULL);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001527
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001528 for (i = 0; i < host->nr_slots; i++)
1529 mmc_omap_remove_slot(host->slots[i]);
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001530
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001531 if (host->pdata->cleanup)
1532 host->pdata->cleanup(&pdev->dev);
1533
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001534 if (host->iclk && !IS_ERR(host->iclk))
1535 clk_put(host->iclk);
1536 if (host->fclk && !IS_ERR(host->fclk))
1537 clk_put(host->fclk);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001538
1539 release_mem_region(pdev->resource[0].start,
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001540 pdev->resource[0].end - pdev->resource[0].start + 1);
1541
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001542 kfree(host);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001543
1544 return 0;
1545}
1546
1547#ifdef CONFIG_PM
1548static int mmc_omap_suspend(struct platform_device *pdev, pm_message_t mesg)
1549{
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001550 int i, ret = 0;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001551 struct mmc_omap_host *host = platform_get_drvdata(pdev);
1552
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001553 if (host == NULL || host->suspended)
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001554 return 0;
1555
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001556 for (i = 0; i < host->nr_slots; i++) {
1557 struct mmc_omap_slot *slot;
1558
1559 slot = host->slots[i];
1560 ret = mmc_suspend_host(slot->mmc, mesg);
1561 if (ret < 0) {
1562 while (--i >= 0) {
1563 slot = host->slots[i];
1564 mmc_resume_host(slot->mmc);
1565 }
1566 return ret;
1567 }
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001568 }
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001569 host->suspended = 1;
1570 return 0;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001571}
1572
1573static int mmc_omap_resume(struct platform_device *pdev)
1574{
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001575 int i, ret = 0;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001576 struct mmc_omap_host *host = platform_get_drvdata(pdev);
1577
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001578 if (host == NULL || !host->suspended)
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001579 return 0;
1580
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001581 for (i = 0; i < host->nr_slots; i++) {
1582 struct mmc_omap_slot *slot;
1583 slot = host->slots[i];
1584 ret = mmc_resume_host(slot->mmc);
1585 if (ret < 0)
1586 return ret;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001587
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001588 host->suspended = 0;
1589 }
1590 return 0;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001591}
1592#else
1593#define mmc_omap_suspend NULL
1594#define mmc_omap_resume NULL
1595#endif
1596
1597static struct platform_driver mmc_omap_driver = {
1598 .probe = mmc_omap_probe,
1599 .remove = mmc_omap_remove,
1600 .suspend = mmc_omap_suspend,
1601 .resume = mmc_omap_resume,
1602 .driver = {
1603 .name = DRIVER_NAME,
Kay Sieversbc65c722008-04-15 14:34:28 -07001604 .owner = THIS_MODULE,
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001605 },
1606};
1607
1608static int __init mmc_omap_init(void)
1609{
1610 return platform_driver_register(&mmc_omap_driver);
1611}
1612
1613static void __exit mmc_omap_exit(void)
1614{
1615 platform_driver_unregister(&mmc_omap_driver);
1616}
1617
1618module_init(mmc_omap_init);
1619module_exit(mmc_omap_exit);
1620
1621MODULE_DESCRIPTION("OMAP Multimedia Card driver");
1622MODULE_LICENSE("GPL");
Kay Sieversbc65c722008-04-15 14:34:28 -07001623MODULE_ALIAS("platform:" DRIVER_NAME);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001624MODULE_AUTHOR("Juha Yrjölä");