blob: 3e8dcf8d2e051efea306e933fa701d7f92d53333 [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
Al Virod36b6912011-12-29 17:09:01 -05005 * Written by Tuukka Tikkanen and Juha Yrjölä<juha.yrjola@nokia.com>
Carlos Aguiar730c9b72006-03-29 09:21:00 +01006 * 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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090029#include <linux/slab.h>
Carlos Aguiar730c9b72006-03-29 09:21:00 +010030
31#include <asm/io.h>
32#include <asm/irq.h>
Carlos Aguiar730c9b72006-03-29 09:21:00 +010033
Tony Lindgrence491cf2009-10-20 09:40:47 -070034#include <plat/board.h>
35#include <plat/mmc.h>
Russell King1bc857f2011-07-26 10:54:55 +010036#include <asm/gpio.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070037#include <plat/dma.h>
38#include <plat/mux.h>
39#include <plat/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
Marek Belisko0e950fa62010-05-26 14:41:49 -070042#define OMAP_MMC_REG_ARGL 0x01
43#define OMAP_MMC_REG_ARGH 0x02
44#define OMAP_MMC_REG_CON 0x03
45#define OMAP_MMC_REG_STAT 0x04
46#define OMAP_MMC_REG_IE 0x05
47#define OMAP_MMC_REG_CTO 0x06
48#define OMAP_MMC_REG_DTO 0x07
49#define OMAP_MMC_REG_DATA 0x08
50#define OMAP_MMC_REG_BLEN 0x09
51#define OMAP_MMC_REG_NBLK 0x0a
52#define OMAP_MMC_REG_BUF 0x0b
53#define OMAP_MMC_REG_SDIO 0x0d
54#define OMAP_MMC_REG_REV 0x0f
55#define OMAP_MMC_REG_RSP0 0x10
56#define OMAP_MMC_REG_RSP1 0x11
57#define OMAP_MMC_REG_RSP2 0x12
58#define OMAP_MMC_REG_RSP3 0x13
59#define OMAP_MMC_REG_RSP4 0x14
60#define OMAP_MMC_REG_RSP5 0x15
61#define OMAP_MMC_REG_RSP6 0x16
62#define OMAP_MMC_REG_RSP7 0x17
63#define OMAP_MMC_REG_IOSR 0x18
64#define OMAP_MMC_REG_SYSC 0x19
65#define OMAP_MMC_REG_SYSS 0x1a
Juha Yrjola juha.yrjola0551f4d2006-11-11 23:38:36 +010066
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
Marek Belisko0e950fa62010-05-26 14:41:49 -070081#define OMAP_MMC_REG(host, reg) (OMAP_MMC_REG_##reg << (host)->reg_shift)
82#define OMAP_MMC_READ(host, reg) __raw_readw((host)->virt_base + OMAP_MMC_REG(host, reg))
83#define OMAP_MMC_WRITE(host, reg, val) __raw_writew((val), (host)->virt_base + OMAP_MMC_REG(host, reg))
Juha Yrjola juha.yrjola0551f4d2006-11-11 23:38:36 +010084
85/*
86 * Command types
87 */
88#define OMAP_MMC_CMDTYPE_BC 0
89#define OMAP_MMC_CMDTYPE_BCR 1
90#define OMAP_MMC_CMDTYPE_AC 2
91#define OMAP_MMC_CMDTYPE_ADTC 3
92
Carlos Aguiar730c9b72006-03-29 09:21:00 +010093
94#define DRIVER_NAME "mmci-omap"
Carlos Aguiar730c9b72006-03-29 09:21:00 +010095
96/* Specifies how often in millisecs to poll for card status changes
97 * when the cover switch is open */
Jarkko Lavinen7584d272008-03-26 16:09:42 -040098#define OMAP_MMC_COVER_POLL_DELAY 500
Carlos Aguiar730c9b72006-03-29 09:21:00 +010099
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400100struct mmc_omap_host;
101
102struct mmc_omap_slot {
103 int id;
104 unsigned int vdd;
105 u16 saved_con;
106 u16 bus_mode;
107 unsigned int fclk_freq;
108 unsigned powered:1;
109
Jarkko Lavinen7584d272008-03-26 16:09:42 -0400110 struct tasklet_struct cover_tasklet;
111 struct timer_list cover_timer;
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400112 unsigned cover_open;
113
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400114 struct mmc_request *mrq;
115 struct mmc_omap_host *host;
116 struct mmc_host *mmc;
117 struct omap_mmc_slot_data *pdata;
118};
119
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100120struct mmc_omap_host {
121 int initialized;
122 int suspended;
123 struct mmc_request * mrq;
124 struct mmc_command * cmd;
125 struct mmc_data * data;
126 struct mmc_host * mmc;
127 struct device * dev;
128 unsigned char id; /* 16xx chips have 2 MMC blocks */
129 struct clk * iclk;
130 struct clk * fclk;
Juha Yrjola juha.yrjola89783b1e42006-11-11 23:36:01 +0100131 struct resource *mem_res;
132 void __iomem *virt_base;
133 unsigned int phys_base;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100134 int irq;
135 unsigned char bus_mode;
136 unsigned char hw_bus_mode;
Marek Belisko0e950fa62010-05-26 14:41:49 -0700137 unsigned int reg_shift;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100138
Jarkko Lavinen0fb47232008-03-26 16:09:48 -0400139 struct work_struct cmd_abort_work;
140 unsigned abort:1;
141 struct timer_list cmd_abort_timer;
Jarkko Lavineneb1860b2008-03-26 16:09:29 -0400142
Jarkko Lavinen0f602ec2008-03-26 16:09:58 -0400143 struct work_struct slot_release_work;
144 struct mmc_omap_slot *next_slot;
145 struct work_struct send_stop_work;
146 struct mmc_data *stop_data;
147
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100148 unsigned int sg_len;
149 int sg_idx;
150 u16 * buffer;
151 u32 buffer_bytes_left;
152 u32 total_bytes_left;
153
154 unsigned use_dma:1;
155 unsigned brs_received:1, dma_done:1;
156 unsigned dma_is_read:1;
157 unsigned dma_in_use:1;
158 int dma_ch;
159 spinlock_t dma_lock;
160 struct timer_list dma_timer;
161 unsigned dma_len;
162
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400163 struct mmc_omap_slot *slots[OMAP_MMC_MAX_SLOTS];
164 struct mmc_omap_slot *current_slot;
165 spinlock_t slot_lock;
166 wait_queue_head_t slot_wq;
167 int nr_slots;
168
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -0400169 struct timer_list clk_timer;
170 spinlock_t clk_lock; /* for changing enabled state */
171 unsigned int fclk_enabled:1;
Venkatraman Sb01a4f12012-05-08 17:05:33 +0530172 struct workqueue_struct *mmc_omap_wq;
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -0400173
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400174 struct omap_mmc_platform_data *pdata;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100175};
176
Tejun Heo0d9ee5b2010-12-24 16:00:17 +0100177
Russell King7c8ad982008-09-05 15:13:24 +0100178static void mmc_omap_fclk_offdelay(struct mmc_omap_slot *slot)
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -0400179{
180 unsigned long tick_ns;
181
182 if (slot != NULL && slot->host->fclk_enabled && slot->fclk_freq > 0) {
183 tick_ns = (1000000000 + slot->fclk_freq - 1) / slot->fclk_freq;
184 ndelay(8 * tick_ns);
185 }
186}
187
Russell King7c8ad982008-09-05 15:13:24 +0100188static void mmc_omap_fclk_enable(struct mmc_omap_host *host, unsigned int enable)
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -0400189{
190 unsigned long flags;
191
192 spin_lock_irqsave(&host->clk_lock, flags);
193 if (host->fclk_enabled != enable) {
194 host->fclk_enabled = enable;
195 if (enable)
196 clk_enable(host->fclk);
197 else
198 clk_disable(host->fclk);
199 }
200 spin_unlock_irqrestore(&host->clk_lock, flags);
201}
202
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400203static void mmc_omap_select_slot(struct mmc_omap_slot *slot, int claimed)
204{
205 struct mmc_omap_host *host = slot->host;
206 unsigned long flags;
207
208 if (claimed)
209 goto no_claim;
210 spin_lock_irqsave(&host->slot_lock, flags);
211 while (host->mmc != NULL) {
212 spin_unlock_irqrestore(&host->slot_lock, flags);
213 wait_event(host->slot_wq, host->mmc == NULL);
214 spin_lock_irqsave(&host->slot_lock, flags);
215 }
216 host->mmc = slot->mmc;
217 spin_unlock_irqrestore(&host->slot_lock, flags);
218no_claim:
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -0400219 del_timer(&host->clk_timer);
220 if (host->current_slot != slot || !claimed)
221 mmc_omap_fclk_offdelay(host->current_slot);
222
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400223 if (host->current_slot != slot) {
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -0400224 OMAP_MMC_WRITE(host, CON, slot->saved_con & 0xFC00);
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400225 if (host->pdata->switch_slot != NULL)
226 host->pdata->switch_slot(mmc_dev(slot->mmc), slot->id);
227 host->current_slot = slot;
228 }
229
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -0400230 if (claimed) {
231 mmc_omap_fclk_enable(host, 1);
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400232
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -0400233 /* Doing the dummy read here seems to work around some bug
234 * at least in OMAP24xx silicon where the command would not
235 * start after writing the CMD register. Sigh. */
236 OMAP_MMC_READ(host, CON);
237
238 OMAP_MMC_WRITE(host, CON, slot->saved_con);
239 } else
240 mmc_omap_fclk_enable(host, 0);
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400241}
242
243static void mmc_omap_start_request(struct mmc_omap_host *host,
244 struct mmc_request *req);
245
Jarkko Lavinen0f602ec2008-03-26 16:09:58 -0400246static void mmc_omap_slot_release_work(struct work_struct *work)
247{
248 struct mmc_omap_host *host = container_of(work, struct mmc_omap_host,
249 slot_release_work);
250 struct mmc_omap_slot *next_slot = host->next_slot;
251 struct mmc_request *rq;
252
253 host->next_slot = NULL;
254 mmc_omap_select_slot(next_slot, 1);
255
256 rq = next_slot->mrq;
257 next_slot->mrq = NULL;
258 mmc_omap_start_request(host, rq);
259}
260
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -0400261static void mmc_omap_release_slot(struct mmc_omap_slot *slot, int clk_enabled)
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400262{
263 struct mmc_omap_host *host = slot->host;
264 unsigned long flags;
265 int i;
266
267 BUG_ON(slot == NULL || host->mmc == NULL);
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -0400268
269 if (clk_enabled)
270 /* Keeps clock running for at least 8 cycles on valid freq */
271 mod_timer(&host->clk_timer, jiffies + HZ/10);
272 else {
273 del_timer(&host->clk_timer);
274 mmc_omap_fclk_offdelay(slot);
275 mmc_omap_fclk_enable(host, 0);
276 }
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400277
278 spin_lock_irqsave(&host->slot_lock, flags);
279 /* Check for any pending requests */
280 for (i = 0; i < host->nr_slots; i++) {
281 struct mmc_omap_slot *new_slot;
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400282
283 if (host->slots[i] == NULL || host->slots[i]->mrq == NULL)
284 continue;
285
Jarkko Lavinen0f602ec2008-03-26 16:09:58 -0400286 BUG_ON(host->next_slot != NULL);
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400287 new_slot = host->slots[i];
288 /* The current slot should not have a request in queue */
289 BUG_ON(new_slot == host->current_slot);
290
Jarkko Lavinen0f602ec2008-03-26 16:09:58 -0400291 host->next_slot = new_slot;
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400292 host->mmc = new_slot->mmc;
293 spin_unlock_irqrestore(&host->slot_lock, flags);
Venkatraman Sb01a4f12012-05-08 17:05:33 +0530294 queue_work(host->mmc_omap_wq, &host->slot_release_work);
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400295 return;
296 }
297
298 host->mmc = NULL;
299 wake_up(&host->slot_wq);
300 spin_unlock_irqrestore(&host->slot_lock, flags);
301}
302
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400303static inline
304int mmc_omap_cover_is_open(struct mmc_omap_slot *slot)
305{
Kyungmin Park8348f002008-03-26 16:09:38 -0400306 if (slot->pdata->get_cover_state)
307 return slot->pdata->get_cover_state(mmc_dev(slot->mmc),
308 slot->id);
309 return 0;
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400310}
311
312static ssize_t
313mmc_omap_show_cover_switch(struct device *dev, struct device_attribute *attr,
314 char *buf)
315{
316 struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
317 struct mmc_omap_slot *slot = mmc_priv(mmc);
318
319 return sprintf(buf, "%s\n", mmc_omap_cover_is_open(slot) ? "open" :
320 "closed");
321}
322
323static DEVICE_ATTR(cover_switch, S_IRUGO, mmc_omap_show_cover_switch, NULL);
324
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400325static ssize_t
326mmc_omap_show_slot_name(struct device *dev, struct device_attribute *attr,
327 char *buf)
328{
329 struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
330 struct mmc_omap_slot *slot = mmc_priv(mmc);
331
332 return sprintf(buf, "%s\n", slot->pdata->name);
333}
334
335static DEVICE_ATTR(slot_name, S_IRUGO, mmc_omap_show_slot_name, NULL);
336
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100337static void
338mmc_omap_start_command(struct mmc_omap_host *host, struct mmc_command *cmd)
339{
340 u32 cmdreg;
341 u32 resptype;
342 u32 cmdtype;
343
344 host->cmd = cmd;
345
346 resptype = 0;
347 cmdtype = 0;
348
349 /* Our hardware needs to know exact type */
Carlos Eduardo Aguiar1b3b2632007-01-15 06:38:15 +0100350 switch (mmc_resp_type(cmd)) {
351 case MMC_RSP_NONE:
352 break;
353 case MMC_RSP_R1:
354 case MMC_RSP_R1B:
Philip Langdale6f949902007-01-04 07:04:47 -0800355 /* resp 1, 1b, 6, 7 */
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100356 resptype = 1;
357 break;
Carlos Eduardo Aguiar1b3b2632007-01-15 06:38:15 +0100358 case MMC_RSP_R2:
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100359 resptype = 2;
360 break;
Carlos Eduardo Aguiar1b3b2632007-01-15 06:38:15 +0100361 case MMC_RSP_R3:
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100362 resptype = 3;
363 break;
364 default:
Carlos Eduardo Aguiar1b3b2632007-01-15 06:38:15 +0100365 dev_err(mmc_dev(host->mmc), "Invalid response type: %04x\n", mmc_resp_type(cmd));
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100366 break;
367 }
368
369 if (mmc_cmd_type(cmd) == MMC_CMD_ADTC) {
370 cmdtype = OMAP_MMC_CMDTYPE_ADTC;
371 } else if (mmc_cmd_type(cmd) == MMC_CMD_BC) {
372 cmdtype = OMAP_MMC_CMDTYPE_BC;
373 } else if (mmc_cmd_type(cmd) == MMC_CMD_BCR) {
374 cmdtype = OMAP_MMC_CMDTYPE_BCR;
375 } else {
376 cmdtype = OMAP_MMC_CMDTYPE_AC;
377 }
378
379 cmdreg = cmd->opcode | (resptype << 8) | (cmdtype << 12);
380
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400381 if (host->current_slot->bus_mode == MMC_BUSMODE_OPENDRAIN)
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100382 cmdreg |= 1 << 6;
383
384 if (cmd->flags & MMC_RSP_BUSY)
385 cmdreg |= 1 << 11;
386
387 if (host->data && !(host->data->flags & MMC_DATA_WRITE))
388 cmdreg |= 1 << 15;
389
Jarkko Lavinen0fb47232008-03-26 16:09:48 -0400390 mod_timer(&host->cmd_abort_timer, jiffies + HZ/2);
Jarkko Lavineneb1860b2008-03-26 16:09:29 -0400391
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100392 OMAP_MMC_WRITE(host, CTO, 200);
393 OMAP_MMC_WRITE(host, ARGL, cmd->arg & 0xffff);
394 OMAP_MMC_WRITE(host, ARGH, cmd->arg >> 16);
395 OMAP_MMC_WRITE(host, IE,
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100396 OMAP_MMC_STAT_A_EMPTY | OMAP_MMC_STAT_A_FULL |
397 OMAP_MMC_STAT_CMD_CRC | OMAP_MMC_STAT_CMD_TOUT |
398 OMAP_MMC_STAT_DATA_CRC | OMAP_MMC_STAT_DATA_TOUT |
399 OMAP_MMC_STAT_END_OF_CMD | OMAP_MMC_STAT_CARD_ERR |
400 OMAP_MMC_STAT_END_OF_DATA);
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100401 OMAP_MMC_WRITE(host, CMD, cmdreg);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100402}
403
404static void
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400405mmc_omap_release_dma(struct mmc_omap_host *host, struct mmc_data *data,
406 int abort)
407{
408 enum dma_data_direction dma_data_dir;
409
410 BUG_ON(host->dma_ch < 0);
411 if (data->error)
412 omap_stop_dma(host->dma_ch);
413 /* Release DMA channel lazily */
414 mod_timer(&host->dma_timer, jiffies + HZ);
415 if (data->flags & MMC_DATA_WRITE)
416 dma_data_dir = DMA_TO_DEVICE;
417 else
418 dma_data_dir = DMA_FROM_DEVICE;
419 dma_unmap_sg(mmc_dev(host->mmc), data->sg, host->sg_len,
420 dma_data_dir);
421}
422
Jarkko Lavinen0f602ec2008-03-26 16:09:58 -0400423static void mmc_omap_send_stop_work(struct work_struct *work)
424{
425 struct mmc_omap_host *host = container_of(work, struct mmc_omap_host,
426 send_stop_work);
427 struct mmc_omap_slot *slot = host->current_slot;
428 struct mmc_data *data = host->stop_data;
429 unsigned long tick_ns;
430
431 tick_ns = (1000000000 + slot->fclk_freq - 1)/slot->fclk_freq;
432 ndelay(8*tick_ns);
433
434 mmc_omap_start_command(host, data->stop);
435}
436
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400437static void
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100438mmc_omap_xfer_done(struct mmc_omap_host *host, struct mmc_data *data)
439{
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400440 if (host->dma_in_use)
441 mmc_omap_release_dma(host, data, data->error);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100442
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100443 host->data = NULL;
444 host->sg_len = 0;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100445
446 /* NOTE: MMC layer will sometimes poll-wait CMD13 next, issuing
447 * dozens of requests until the card finishes writing data.
448 * It'd be cheaper to just wait till an EOFB interrupt arrives...
449 */
450
451 if (!data->stop) {
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400452 struct mmc_host *mmc;
453
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100454 host->mrq = NULL;
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400455 mmc = host->mmc;
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -0400456 mmc_omap_release_slot(host->current_slot, 1);
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400457 mmc_request_done(mmc, data->mrq);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100458 return;
459 }
460
Jarkko Lavinen0f602ec2008-03-26 16:09:58 -0400461 host->stop_data = data;
Venkatraman Sb01a4f12012-05-08 17:05:33 +0530462 queue_work(host->mmc_omap_wq, &host->send_stop_work);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100463}
464
465static void
Jarkko Lavinen0fb47232008-03-26 16:09:48 -0400466mmc_omap_send_abort(struct mmc_omap_host *host, int maxloops)
Jarkko Lavineneb1860b2008-03-26 16:09:29 -0400467{
468 struct mmc_omap_slot *slot = host->current_slot;
469 unsigned int restarts, passes, timeout;
470 u16 stat = 0;
471
472 /* Sending abort takes 80 clocks. Have some extra and round up */
473 timeout = (120*1000000 + slot->fclk_freq - 1)/slot->fclk_freq;
474 restarts = 0;
Jarkko Lavinen0fb47232008-03-26 16:09:48 -0400475 while (restarts < maxloops) {
Jarkko Lavineneb1860b2008-03-26 16:09:29 -0400476 OMAP_MMC_WRITE(host, STAT, 0xFFFF);
477 OMAP_MMC_WRITE(host, CMD, (3 << 12) | (1 << 7));
478
479 passes = 0;
480 while (passes < timeout) {
481 stat = OMAP_MMC_READ(host, STAT);
482 if (stat & OMAP_MMC_STAT_END_OF_CMD)
483 goto out;
484 udelay(1);
485 passes++;
486 }
487
488 restarts++;
489 }
490out:
491 OMAP_MMC_WRITE(host, STAT, stat);
492}
493
494static void
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400495mmc_omap_abort_xfer(struct mmc_omap_host *host, struct mmc_data *data)
496{
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400497 if (host->dma_in_use)
498 mmc_omap_release_dma(host, data, 1);
499
500 host->data = NULL;
501 host->sg_len = 0;
502
Jarkko Lavinen0fb47232008-03-26 16:09:48 -0400503 mmc_omap_send_abort(host, 10000);
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400504}
505
506static void
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100507mmc_omap_end_of_data(struct mmc_omap_host *host, struct mmc_data *data)
508{
509 unsigned long flags;
510 int done;
511
512 if (!host->dma_in_use) {
513 mmc_omap_xfer_done(host, data);
514 return;
515 }
516 done = 0;
517 spin_lock_irqsave(&host->dma_lock, flags);
518 if (host->dma_done)
519 done = 1;
520 else
521 host->brs_received = 1;
522 spin_unlock_irqrestore(&host->dma_lock, flags);
523 if (done)
524 mmc_omap_xfer_done(host, data);
525}
526
527static void
528mmc_omap_dma_timer(unsigned long data)
529{
530 struct mmc_omap_host *host = (struct mmc_omap_host *) data;
531
532 BUG_ON(host->dma_ch < 0);
533 omap_free_dma(host->dma_ch);
534 host->dma_ch = -1;
535}
536
537static void
538mmc_omap_dma_done(struct mmc_omap_host *host, struct mmc_data *data)
539{
540 unsigned long flags;
541 int done;
542
543 done = 0;
544 spin_lock_irqsave(&host->dma_lock, flags);
545 if (host->brs_received)
546 done = 1;
547 else
548 host->dma_done = 1;
549 spin_unlock_irqrestore(&host->dma_lock, flags);
550 if (done)
551 mmc_omap_xfer_done(host, data);
552}
553
554static void
555mmc_omap_cmd_done(struct mmc_omap_host *host, struct mmc_command *cmd)
556{
557 host->cmd = NULL;
558
Jarkko Lavinen0fb47232008-03-26 16:09:48 -0400559 del_timer(&host->cmd_abort_timer);
Jarkko Lavineneb1860b2008-03-26 16:09:29 -0400560
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100561 if (cmd->flags & MMC_RSP_PRESENT) {
562 if (cmd->flags & MMC_RSP_136) {
563 /* response type 2 */
564 cmd->resp[3] =
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100565 OMAP_MMC_READ(host, RSP0) |
566 (OMAP_MMC_READ(host, RSP1) << 16);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100567 cmd->resp[2] =
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100568 OMAP_MMC_READ(host, RSP2) |
569 (OMAP_MMC_READ(host, RSP3) << 16);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100570 cmd->resp[1] =
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100571 OMAP_MMC_READ(host, RSP4) |
572 (OMAP_MMC_READ(host, RSP5) << 16);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100573 cmd->resp[0] =
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100574 OMAP_MMC_READ(host, RSP6) |
575 (OMAP_MMC_READ(host, RSP7) << 16);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100576 } else {
577 /* response types 1, 1b, 3, 4, 5, 6 */
578 cmd->resp[0] =
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100579 OMAP_MMC_READ(host, RSP6) |
580 (OMAP_MMC_READ(host, RSP7) << 16);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100581 }
582 }
583
Pierre Ossman17b04292007-07-22 22:18:46 +0200584 if (host->data == NULL || cmd->error) {
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400585 struct mmc_host *mmc;
586
587 if (host->data != NULL)
588 mmc_omap_abort_xfer(host, host->data);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100589 host->mrq = NULL;
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400590 mmc = host->mmc;
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -0400591 mmc_omap_release_slot(host->current_slot, 1);
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400592 mmc_request_done(mmc, cmd->mrq);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100593 }
594}
595
Jarkko Lavineneb1860b2008-03-26 16:09:29 -0400596/*
597 * Abort stuck command. Can occur when card is removed while it is being
598 * read.
599 */
600static void mmc_omap_abort_command(struct work_struct *work)
601{
602 struct mmc_omap_host *host = container_of(work, struct mmc_omap_host,
Jarkko Lavinen0fb47232008-03-26 16:09:48 -0400603 cmd_abort_work);
604 BUG_ON(!host->cmd);
Jarkko Lavineneb1860b2008-03-26 16:09:29 -0400605
606 dev_dbg(mmc_dev(host->mmc), "Aborting stuck command CMD%d\n",
607 host->cmd->opcode);
608
Jarkko Lavinen0fb47232008-03-26 16:09:48 -0400609 if (host->cmd->error == 0)
610 host->cmd->error = -ETIMEDOUT;
Jarkko Lavineneb1860b2008-03-26 16:09:29 -0400611
Jarkko Lavinen0fb47232008-03-26 16:09:48 -0400612 if (host->data == NULL) {
613 struct mmc_command *cmd;
614 struct mmc_host *mmc;
Jarkko Lavineneb1860b2008-03-26 16:09:29 -0400615
Jarkko Lavinen0fb47232008-03-26 16:09:48 -0400616 cmd = host->cmd;
617 host->cmd = NULL;
618 mmc_omap_send_abort(host, 10000);
619
620 host->mrq = NULL;
621 mmc = host->mmc;
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -0400622 mmc_omap_release_slot(host->current_slot, 1);
Jarkko Lavinen0fb47232008-03-26 16:09:48 -0400623 mmc_request_done(mmc, cmd->mrq);
624 } else
625 mmc_omap_cmd_done(host, host->cmd);
626
627 host->abort = 0;
628 enable_irq(host->irq);
Jarkko Lavineneb1860b2008-03-26 16:09:29 -0400629}
630
631static void
632mmc_omap_cmd_timer(unsigned long data)
633{
634 struct mmc_omap_host *host = (struct mmc_omap_host *) data;
Jarkko Lavinen0fb47232008-03-26 16:09:48 -0400635 unsigned long flags;
Jarkko Lavineneb1860b2008-03-26 16:09:29 -0400636
Jarkko Lavinen0fb47232008-03-26 16:09:48 -0400637 spin_lock_irqsave(&host->slot_lock, flags);
638 if (host->cmd != NULL && !host->abort) {
639 OMAP_MMC_WRITE(host, IE, 0);
640 disable_irq(host->irq);
641 host->abort = 1;
Venkatraman Sb01a4f12012-05-08 17:05:33 +0530642 queue_work(host->mmc_omap_wq, &host->cmd_abort_work);
Jarkko Lavinen0fb47232008-03-26 16:09:48 -0400643 }
644 spin_unlock_irqrestore(&host->slot_lock, flags);
Jarkko Lavineneb1860b2008-03-26 16:09:29 -0400645}
646
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100647/* PIO only */
648static void
649mmc_omap_sg_to_buf(struct mmc_omap_host *host)
650{
651 struct scatterlist *sg;
652
653 sg = host->data->sg + host->sg_idx;
654 host->buffer_bytes_left = sg->length;
Jens Axboe45711f12007-10-22 21:19:53 +0200655 host->buffer = sg_virt(sg);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100656 if (host->buffer_bytes_left > host->total_bytes_left)
657 host->buffer_bytes_left = host->total_bytes_left;
658}
659
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -0400660static void
661mmc_omap_clk_timer(unsigned long data)
662{
663 struct mmc_omap_host *host = (struct mmc_omap_host *) data;
664
665 mmc_omap_fclk_enable(host, 0);
666}
667
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100668/* PIO only */
669static void
670mmc_omap_xfer_data(struct mmc_omap_host *host, int write)
671{
672 int n;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100673
674 if (host->buffer_bytes_left == 0) {
675 host->sg_idx++;
676 BUG_ON(host->sg_idx == host->sg_len);
677 mmc_omap_sg_to_buf(host);
678 }
679 n = 64;
680 if (n > host->buffer_bytes_left)
681 n = host->buffer_bytes_left;
682 host->buffer_bytes_left -= n;
683 host->total_bytes_left -= n;
684 host->data->bytes_xfered += n;
685
686 if (write) {
Marek Belisko0e950fa62010-05-26 14:41:49 -0700687 __raw_writesw(host->virt_base + OMAP_MMC_REG(host, DATA), host->buffer, n);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100688 } else {
Marek Belisko0e950fa62010-05-26 14:41:49 -0700689 __raw_readsw(host->virt_base + OMAP_MMC_REG(host, DATA), host->buffer, n);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100690 }
691}
692
693static inline void mmc_omap_report_irq(u16 status)
694{
695 static const char *mmc_omap_status_bits[] = {
696 "EOC", "CD", "CB", "BRS", "EOFB", "DTO", "DCRC", "CTO",
697 "CCRC", "CRW", "AF", "AE", "OCRB", "CIRQ", "CERR"
698 };
699 int i, c = 0;
700
701 for (i = 0; i < ARRAY_SIZE(mmc_omap_status_bits); i++)
702 if (status & (1 << i)) {
703 if (c)
704 printk(" ");
705 printk("%s", mmc_omap_status_bits[i]);
706 c++;
707 }
708}
709
David Howells7d12e782006-10-05 14:55:46 +0100710static irqreturn_t mmc_omap_irq(int irq, void *dev_id)
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100711{
712 struct mmc_omap_host * host = (struct mmc_omap_host *)dev_id;
713 u16 status;
714 int end_command;
715 int end_transfer;
Juha Yrjola2a50b882008-03-26 16:09:26 -0400716 int transfer_error, cmd_error;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100717
718 if (host->cmd == NULL && host->data == NULL) {
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100719 status = OMAP_MMC_READ(host, STAT);
Juha Yrjola2a50b882008-03-26 16:09:26 -0400720 dev_info(mmc_dev(host->slots[0]->mmc),
721 "Spurious IRQ 0x%04x\n", status);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100722 if (status != 0) {
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100723 OMAP_MMC_WRITE(host, STAT, status);
724 OMAP_MMC_WRITE(host, IE, 0);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100725 }
726 return IRQ_HANDLED;
727 }
728
729 end_command = 0;
730 end_transfer = 0;
731 transfer_error = 0;
Juha Yrjola2a50b882008-03-26 16:09:26 -0400732 cmd_error = 0;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100733
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100734 while ((status = OMAP_MMC_READ(host, STAT)) != 0) {
Juha Yrjola2a50b882008-03-26 16:09:26 -0400735 int cmd;
736
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100737 OMAP_MMC_WRITE(host, STAT, status);
Juha Yrjola2a50b882008-03-26 16:09:26 -0400738 if (host->cmd != NULL)
739 cmd = host->cmd->opcode;
740 else
741 cmd = -1;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100742#ifdef CONFIG_MMC_DEBUG
743 dev_dbg(mmc_dev(host->mmc), "MMC IRQ %04x (CMD %d): ",
Juha Yrjola2a50b882008-03-26 16:09:26 -0400744 status, cmd);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100745 mmc_omap_report_irq(status);
746 printk("\n");
747#endif
748 if (host->total_bytes_left) {
749 if ((status & OMAP_MMC_STAT_A_FULL) ||
750 (status & OMAP_MMC_STAT_END_OF_DATA))
751 mmc_omap_xfer_data(host, 0);
752 if (status & OMAP_MMC_STAT_A_EMPTY)
753 mmc_omap_xfer_data(host, 1);
754 }
755
Juha Yrjola2a50b882008-03-26 16:09:26 -0400756 if (status & OMAP_MMC_STAT_END_OF_DATA)
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100757 end_transfer = 1;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100758
759 if (status & OMAP_MMC_STAT_DATA_TOUT) {
Juha Yrjola2a50b882008-03-26 16:09:26 -0400760 dev_dbg(mmc_dev(host->mmc), "data timeout (CMD%d)\n",
761 cmd);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100762 if (host->data) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200763 host->data->error = -ETIMEDOUT;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100764 transfer_error = 1;
765 }
766 }
767
768 if (status & OMAP_MMC_STAT_DATA_CRC) {
769 if (host->data) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200770 host->data->error = -EILSEQ;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100771 dev_dbg(mmc_dev(host->mmc),
772 "data CRC error, bytes left %d\n",
773 host->total_bytes_left);
774 transfer_error = 1;
775 } else {
776 dev_dbg(mmc_dev(host->mmc), "data CRC error\n");
777 }
778 }
779
780 if (status & OMAP_MMC_STAT_CMD_TOUT) {
781 /* Timeouts are routine with some commands */
782 if (host->cmd) {
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400783 struct mmc_omap_slot *slot =
784 host->current_slot;
Juha Yrjola2a50b882008-03-26 16:09:26 -0400785 if (slot == NULL ||
786 !mmc_omap_cover_is_open(slot))
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400787 dev_err(mmc_dev(host->mmc),
Juha Yrjola2a50b882008-03-26 16:09:26 -0400788 "command timeout (CMD%d)\n",
789 cmd);
Pierre Ossman17b04292007-07-22 22:18:46 +0200790 host->cmd->error = -ETIMEDOUT;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100791 end_command = 1;
Juha Yrjola2a50b882008-03-26 16:09:26 -0400792 cmd_error = 1;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100793 }
794 }
795
796 if (status & OMAP_MMC_STAT_CMD_CRC) {
797 if (host->cmd) {
798 dev_err(mmc_dev(host->mmc),
799 "command CRC error (CMD%d, arg 0x%08x)\n",
Juha Yrjola2a50b882008-03-26 16:09:26 -0400800 cmd, host->cmd->arg);
Pierre Ossman17b04292007-07-22 22:18:46 +0200801 host->cmd->error = -EILSEQ;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100802 end_command = 1;
Juha Yrjola2a50b882008-03-26 16:09:26 -0400803 cmd_error = 1;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100804 } else
805 dev_err(mmc_dev(host->mmc),
806 "command CRC error without cmd?\n");
807 }
808
809 if (status & OMAP_MMC_STAT_CARD_ERR) {
Ragner Magalhaes0107a4b2007-06-13 19:09:28 +0200810 dev_dbg(mmc_dev(host->mmc),
811 "ignoring card status error (CMD%d)\n",
Juha Yrjola2a50b882008-03-26 16:09:26 -0400812 cmd);
Ragner Magalhaes0107a4b2007-06-13 19:09:28 +0200813 end_command = 1;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100814 }
815
816 /*
817 * NOTE: On 1610 the END_OF_CMD may come too early when
Juha Yrjola2a50b882008-03-26 16:09:26 -0400818 * starting a write
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100819 */
820 if ((status & OMAP_MMC_STAT_END_OF_CMD) &&
821 (!(status & OMAP_MMC_STAT_A_EMPTY))) {
822 end_command = 1;
823 }
824 }
825
Jarkko Lavinen0fb47232008-03-26 16:09:48 -0400826 if (cmd_error && host->data) {
827 del_timer(&host->cmd_abort_timer);
828 host->abort = 1;
829 OMAP_MMC_WRITE(host, IE, 0);
Ben Nizettee749c6f2009-04-16 15:55:21 +1000830 disable_irq_nosync(host->irq);
Venkatraman Sb01a4f12012-05-08 17:05:33 +0530831 queue_work(host->mmc_omap_wq, &host->cmd_abort_work);
Jarkko Lavinen0fb47232008-03-26 16:09:48 -0400832 return IRQ_HANDLED;
833 }
834
Michael Bueschf6947512011-04-11 17:00:44 -0400835 if (end_command && host->cmd)
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100836 mmc_omap_cmd_done(host, host->cmd);
Juha Yrjola2a50b882008-03-26 16:09:26 -0400837 if (host->data != NULL) {
838 if (transfer_error)
839 mmc_omap_xfer_done(host, host->data);
840 else if (end_transfer)
841 mmc_omap_end_of_data(host, host->data);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100842 }
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100843
844 return IRQ_HANDLED;
845}
846
Jarkko Lavinen7584d272008-03-26 16:09:42 -0400847void omap_mmc_notify_cover_event(struct device *dev, int num, int is_closed)
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400848{
Jarkko Lavinen7584d272008-03-26 16:09:42 -0400849 int cover_open;
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400850 struct mmc_omap_host *host = dev_get_drvdata(dev);
Jarkko Lavinen7584d272008-03-26 16:09:42 -0400851 struct mmc_omap_slot *slot = host->slots[num];
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400852
Jarkko Lavinen7584d272008-03-26 16:09:42 -0400853 BUG_ON(num >= host->nr_slots);
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400854
855 /* Other subsystems can call in here before we're initialised. */
Jarkko Lavinen7584d272008-03-26 16:09:42 -0400856 if (host->nr_slots == 0 || !host->slots[num])
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400857 return;
858
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400859 cover_open = mmc_omap_cover_is_open(slot);
860 if (cover_open != slot->cover_open) {
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400861 slot->cover_open = cover_open;
Jarkko Lavinen7584d272008-03-26 16:09:42 -0400862 sysfs_notify(&slot->mmc->class_dev.kobj, NULL, "cover_switch");
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400863 }
Jarkko Lavinen7584d272008-03-26 16:09:42 -0400864
865 tasklet_hi_schedule(&slot->cover_tasklet);
866}
867
868static void mmc_omap_cover_timer(unsigned long arg)
869{
870 struct mmc_omap_slot *slot = (struct mmc_omap_slot *) arg;
871 tasklet_schedule(&slot->cover_tasklet);
872}
873
874static void mmc_omap_cover_handler(unsigned long param)
875{
876 struct mmc_omap_slot *slot = (struct mmc_omap_slot *)param;
877 int cover_open = mmc_omap_cover_is_open(slot);
878
879 mmc_detect_change(slot->mmc, 0);
880 if (!cover_open)
881 return;
882
883 /*
884 * If no card is inserted, we postpone polling until
885 * the cover has been closed.
886 */
887 if (slot->mmc->card == NULL || !mmc_card_present(slot->mmc->card))
888 return;
889
890 mod_timer(&slot->cover_timer,
891 jiffies + msecs_to_jiffies(OMAP_MMC_COVER_POLL_DELAY));
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400892}
893
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100894/* Prepare to transfer the next segment of a scatterlist */
895static void
896mmc_omap_prepare_dma(struct mmc_omap_host *host, struct mmc_data *data)
897{
898 int dma_ch = host->dma_ch;
899 unsigned long data_addr;
900 u16 buf, frame;
901 u32 count;
902 struct scatterlist *sg = &data->sg[host->sg_idx];
903 int src_port = 0;
904 int dst_port = 0;
905 int sync_dev = 0;
906
Marek Belisko0e950fa62010-05-26 14:41:49 -0700907 data_addr = host->phys_base + OMAP_MMC_REG(host, DATA);
Russell Kinga3fd4a12006-06-04 17:51:15 +0100908 frame = data->blksz;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100909 count = sg_dma_len(sg);
910
Russell Kinga3fd4a12006-06-04 17:51:15 +0100911 if ((data->blocks == 1) && (count > data->blksz))
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100912 count = frame;
913
914 host->dma_len = count;
915
916 /* FIFO is 16x2 bytes on 15xx, and 32x2 bytes on 16xx and 24xx.
917 * Use 16 or 32 word frames when the blocksize is at least that large.
918 * Blocksize is usually 512 bytes; but not for some SD reads.
919 */
920 if (cpu_is_omap15xx() && frame > 32)
921 frame = 32;
922 else if (frame > 64)
923 frame = 64;
924 count /= frame;
925 frame >>= 1;
926
927 if (!(data->flags & MMC_DATA_WRITE)) {
928 buf = 0x800f | ((frame - 1) << 8);
929
930 if (cpu_class_is_omap1()) {
931 src_port = OMAP_DMA_PORT_TIPB;
932 dst_port = OMAP_DMA_PORT_EMIFF;
933 }
934 if (cpu_is_omap24xx())
935 sync_dev = OMAP24XX_DMA_MMC1_RX;
936
937 omap_set_dma_src_params(dma_ch, src_port,
938 OMAP_DMA_AMODE_CONSTANT,
939 data_addr, 0, 0);
940 omap_set_dma_dest_params(dma_ch, dst_port,
941 OMAP_DMA_AMODE_POST_INC,
942 sg_dma_address(sg), 0, 0);
943 omap_set_dma_dest_data_pack(dma_ch, 1);
944 omap_set_dma_dest_burst_mode(dma_ch, OMAP_DMA_DATA_BURST_4);
945 } else {
946 buf = 0x0f80 | ((frame - 1) << 0);
947
948 if (cpu_class_is_omap1()) {
949 src_port = OMAP_DMA_PORT_EMIFF;
950 dst_port = OMAP_DMA_PORT_TIPB;
951 }
952 if (cpu_is_omap24xx())
953 sync_dev = OMAP24XX_DMA_MMC1_TX;
954
955 omap_set_dma_dest_params(dma_ch, dst_port,
956 OMAP_DMA_AMODE_CONSTANT,
957 data_addr, 0, 0);
958 omap_set_dma_src_params(dma_ch, src_port,
959 OMAP_DMA_AMODE_POST_INC,
960 sg_dma_address(sg), 0, 0);
961 omap_set_dma_src_data_pack(dma_ch, 1);
962 omap_set_dma_src_burst_mode(dma_ch, OMAP_DMA_DATA_BURST_4);
963 }
964
965 /* Max limit for DMA frame count is 0xffff */
Eric Sesterhennd99c5902006-11-30 05:27:38 +0100966 BUG_ON(count > 0xffff);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100967
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100968 OMAP_MMC_WRITE(host, BUF, buf);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100969 omap_set_dma_transfer_params(dma_ch, OMAP_DMA_DATA_TYPE_S16,
970 frame, count, OMAP_DMA_SYNC_FRAME,
971 sync_dev, 0);
972}
973
974/* A scatterlist segment completed */
975static void mmc_omap_dma_cb(int lch, u16 ch_status, void *data)
976{
977 struct mmc_omap_host *host = (struct mmc_omap_host *) data;
978 struct mmc_data *mmcdat = host->data;
979
980 if (unlikely(host->dma_ch < 0)) {
Tony Lindgrence9c1a82006-07-01 19:56:44 +0100981 dev_err(mmc_dev(host->mmc),
982 "DMA callback while DMA not enabled\n");
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100983 return;
984 }
985 /* FIXME: We really should do something to _handle_ the errors */
Tony Lindgren7ff879d2006-06-26 16:16:15 -0700986 if (ch_status & OMAP1_DMA_TOUT_IRQ) {
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100987 dev_err(mmc_dev(host->mmc),"DMA timeout\n");
988 return;
989 }
990 if (ch_status & OMAP_DMA_DROP_IRQ) {
991 dev_err(mmc_dev(host->mmc), "DMA sync error\n");
992 return;
993 }
994 if (!(ch_status & OMAP_DMA_BLOCK_IRQ)) {
995 return;
996 }
997 mmcdat->bytes_xfered += host->dma_len;
998 host->sg_idx++;
999 if (host->sg_idx < host->sg_len) {
1000 mmc_omap_prepare_dma(host, host->data);
1001 omap_start_dma(host->dma_ch);
1002 } else
1003 mmc_omap_dma_done(host, host->data);
1004}
1005
1006static int mmc_omap_get_dma_channel(struct mmc_omap_host *host, struct mmc_data *data)
1007{
Tony Lindgrendf48dd02008-05-06 16:36:47 -07001008 const char *dma_dev_name;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001009 int sync_dev, dma_ch, is_read, r;
1010
1011 is_read = !(data->flags & MMC_DATA_WRITE);
1012 del_timer_sync(&host->dma_timer);
1013 if (host->dma_ch >= 0) {
1014 if (is_read == host->dma_is_read)
1015 return 0;
1016 omap_free_dma(host->dma_ch);
1017 host->dma_ch = -1;
1018 }
1019
1020 if (is_read) {
Tony Lindgrend8874662008-12-10 17:37:16 -08001021 if (host->id == 0) {
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001022 sync_dev = OMAP_DMA_MMC_RX;
Tony Lindgrendf48dd02008-05-06 16:36:47 -07001023 dma_dev_name = "MMC1 read";
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001024 } else {
1025 sync_dev = OMAP_DMA_MMC2_RX;
Tony Lindgrendf48dd02008-05-06 16:36:47 -07001026 dma_dev_name = "MMC2 read";
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001027 }
1028 } else {
Tony Lindgrend8874662008-12-10 17:37:16 -08001029 if (host->id == 0) {
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001030 sync_dev = OMAP_DMA_MMC_TX;
Tony Lindgrendf48dd02008-05-06 16:36:47 -07001031 dma_dev_name = "MMC1 write";
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001032 } else {
1033 sync_dev = OMAP_DMA_MMC2_TX;
Tony Lindgrendf48dd02008-05-06 16:36:47 -07001034 dma_dev_name = "MMC2 write";
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001035 }
1036 }
Tony Lindgrendf48dd02008-05-06 16:36:47 -07001037 r = omap_request_dma(sync_dev, dma_dev_name, mmc_omap_dma_cb,
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001038 host, &dma_ch);
1039 if (r != 0) {
1040 dev_dbg(mmc_dev(host->mmc), "omap_request_dma() failed with %d\n", r);
1041 return r;
1042 }
1043 host->dma_ch = dma_ch;
1044 host->dma_is_read = is_read;
1045
1046 return 0;
1047}
1048
1049static inline void set_cmd_timeout(struct mmc_omap_host *host, struct mmc_request *req)
1050{
1051 u16 reg;
1052
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +01001053 reg = OMAP_MMC_READ(host, SDIO);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001054 reg &= ~(1 << 5);
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +01001055 OMAP_MMC_WRITE(host, SDIO, reg);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001056 /* Set maximum timeout */
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +01001057 OMAP_MMC_WRITE(host, CTO, 0xff);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001058}
1059
1060static inline void set_data_timeout(struct mmc_omap_host *host, struct mmc_request *req)
1061{
Juha Yrjolab8f9f0e2008-03-26 16:09:16 -04001062 unsigned int timeout, cycle_ns;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001063 u16 reg;
1064
Juha Yrjolab8f9f0e2008-03-26 16:09:16 -04001065 cycle_ns = 1000000000 / host->current_slot->fclk_freq;
1066 timeout = req->data->timeout_ns / cycle_ns;
1067 timeout += req->data->timeout_clks;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001068
1069 /* Check if we need to use timeout multiplier register */
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +01001070 reg = OMAP_MMC_READ(host, SDIO);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001071 if (timeout > 0xffff) {
1072 reg |= (1 << 5);
1073 timeout /= 1024;
1074 } else
1075 reg &= ~(1 << 5);
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +01001076 OMAP_MMC_WRITE(host, SDIO, reg);
1077 OMAP_MMC_WRITE(host, DTO, timeout);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001078}
1079
1080static void
1081mmc_omap_prepare_data(struct mmc_omap_host *host, struct mmc_request *req)
1082{
1083 struct mmc_data *data = req->data;
1084 int i, use_dma, block_size;
1085 unsigned sg_len;
1086
1087 host->data = data;
1088 if (data == NULL) {
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +01001089 OMAP_MMC_WRITE(host, BLEN, 0);
1090 OMAP_MMC_WRITE(host, NBLK, 0);
1091 OMAP_MMC_WRITE(host, BUF, 0);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001092 host->dma_in_use = 0;
1093 set_cmd_timeout(host, req);
1094 return;
1095 }
1096
Russell Kinga3fd4a12006-06-04 17:51:15 +01001097 block_size = data->blksz;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001098
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +01001099 OMAP_MMC_WRITE(host, NBLK, data->blocks - 1);
1100 OMAP_MMC_WRITE(host, BLEN, block_size - 1);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001101 set_data_timeout(host, req);
1102
1103 /* cope with calling layer confusion; it issues "single
1104 * block" writes using multi-block scatterlists.
1105 */
1106 sg_len = (data->blocks == 1) ? 1 : data->sg_len;
1107
1108 /* Only do DMA for entire blocks */
1109 use_dma = host->use_dma;
1110 if (use_dma) {
1111 for (i = 0; i < sg_len; i++) {
1112 if ((data->sg[i].length % block_size) != 0) {
1113 use_dma = 0;
1114 break;
1115 }
1116 }
1117 }
1118
1119 host->sg_idx = 0;
1120 if (use_dma) {
1121 if (mmc_omap_get_dma_channel(host, data) == 0) {
1122 enum dma_data_direction dma_data_dir;
1123
1124 if (data->flags & MMC_DATA_WRITE)
1125 dma_data_dir = DMA_TO_DEVICE;
1126 else
1127 dma_data_dir = DMA_FROM_DEVICE;
1128
1129 host->sg_len = dma_map_sg(mmc_dev(host->mmc), data->sg,
1130 sg_len, dma_data_dir);
1131 host->total_bytes_left = 0;
1132 mmc_omap_prepare_dma(host, req->data);
1133 host->brs_received = 0;
1134 host->dma_done = 0;
1135 host->dma_in_use = 1;
1136 } else
1137 use_dma = 0;
1138 }
1139
1140 /* Revert to PIO? */
1141 if (!use_dma) {
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +01001142 OMAP_MMC_WRITE(host, BUF, 0x1f1f);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001143 host->total_bytes_left = data->blocks * block_size;
1144 host->sg_len = sg_len;
1145 mmc_omap_sg_to_buf(host);
1146 host->dma_in_use = 0;
1147 }
1148}
1149
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001150static void mmc_omap_start_request(struct mmc_omap_host *host,
1151 struct mmc_request *req)
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001152{
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001153 BUG_ON(host->mrq != NULL);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001154
1155 host->mrq = req;
1156
1157 /* only touch fifo AFTER the controller readies it */
1158 mmc_omap_prepare_data(host, req);
1159 mmc_omap_start_command(host, req->cmd);
1160 if (host->dma_in_use)
1161 omap_start_dma(host->dma_ch);
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001162}
1163
1164static void mmc_omap_request(struct mmc_host *mmc, struct mmc_request *req)
1165{
1166 struct mmc_omap_slot *slot = mmc_priv(mmc);
1167 struct mmc_omap_host *host = slot->host;
1168 unsigned long flags;
1169
1170 spin_lock_irqsave(&host->slot_lock, flags);
1171 if (host->mmc != NULL) {
1172 BUG_ON(slot->mrq != NULL);
1173 slot->mrq = req;
1174 spin_unlock_irqrestore(&host->slot_lock, flags);
1175 return;
1176 } else
1177 host->mmc = mmc;
1178 spin_unlock_irqrestore(&host->slot_lock, flags);
1179 mmc_omap_select_slot(slot, 1);
1180 mmc_omap_start_request(host, req);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001181}
1182
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001183static void mmc_omap_set_power(struct mmc_omap_slot *slot, int power_on,
1184 int vdd)
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001185{
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001186 struct mmc_omap_host *host;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001187
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001188 host = slot->host;
1189
1190 if (slot->pdata->set_power != NULL)
1191 slot->pdata->set_power(mmc_dev(slot->mmc), slot->id, power_on,
1192 vdd);
1193
1194 if (cpu_is_omap24xx()) {
1195 u16 w;
1196
1197 if (power_on) {
1198 w = OMAP_MMC_READ(host, CON);
1199 OMAP_MMC_WRITE(host, CON, w | (1 << 11));
1200 } else {
1201 w = OMAP_MMC_READ(host, CON);
1202 OMAP_MMC_WRITE(host, CON, w & ~(1 << 11));
1203 }
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001204 }
1205}
1206
Tony Lindgrend3af5ab2007-05-01 16:36:00 +02001207static int mmc_omap_calc_divisor(struct mmc_host *mmc, struct mmc_ios *ios)
1208{
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001209 struct mmc_omap_slot *slot = mmc_priv(mmc);
1210 struct mmc_omap_host *host = slot->host;
Tony Lindgrend3af5ab2007-05-01 16:36:00 +02001211 int func_clk_rate = clk_get_rate(host->fclk);
1212 int dsor;
1213
1214 if (ios->clock == 0)
1215 return 0;
1216
1217 dsor = func_clk_rate / ios->clock;
1218 if (dsor < 1)
1219 dsor = 1;
1220
1221 if (func_clk_rate / dsor > ios->clock)
1222 dsor++;
1223
1224 if (dsor > 250)
1225 dsor = 250;
Tony Lindgrend3af5ab2007-05-01 16:36:00 +02001226
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001227 slot->fclk_freq = func_clk_rate / dsor;
1228
Tony Lindgrend3af5ab2007-05-01 16:36:00 +02001229 if (ios->bus_width == MMC_BUS_WIDTH_4)
1230 dsor |= 1 << 15;
1231
1232 return dsor;
1233}
1234
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001235static void mmc_omap_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
1236{
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001237 struct mmc_omap_slot *slot = mmc_priv(mmc);
1238 struct mmc_omap_host *host = slot->host;
1239 int i, dsor;
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -04001240 int clk_enabled;
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001241
1242 mmc_omap_select_slot(slot, 0);
1243
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -04001244 dsor = mmc_omap_calc_divisor(mmc, ios);
1245
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001246 if (ios->vdd != slot->vdd)
1247 slot->vdd = ios->vdd;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001248
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -04001249 clk_enabled = 0;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001250 switch (ios->power_mode) {
1251 case MMC_POWER_OFF:
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001252 mmc_omap_set_power(slot, 0, ios->vdd);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001253 break;
1254 case MMC_POWER_UP:
Tony Lindgren46a67302007-05-01 16:34:16 +02001255 /* Cannot touch dsor yet, just power up MMC */
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001256 mmc_omap_set_power(slot, 1, ios->vdd);
1257 goto exit;
Tony Lindgren46a67302007-05-01 16:34:16 +02001258 case MMC_POWER_ON:
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -04001259 mmc_omap_fclk_enable(host, 1);
1260 clk_enabled = 1;
Juha Yrjola juha.yrjolac5cb4312006-11-11 23:42:39 +01001261 dsor |= 1 << 11;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001262 break;
1263 }
1264
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001265 if (slot->bus_mode != ios->bus_mode) {
1266 if (slot->pdata->set_bus_mode != NULL)
1267 slot->pdata->set_bus_mode(mmc_dev(mmc), slot->id,
1268 ios->bus_mode);
1269 slot->bus_mode = ios->bus_mode;
1270 }
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001271
1272 /* On insanely high arm_per frequencies something sometimes
1273 * goes somehow out of sync, and the POW bit is not being set,
1274 * which results in the while loop below getting stuck.
1275 * Writing to the CON register twice seems to do the trick. */
1276 for (i = 0; i < 2; i++)
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +01001277 OMAP_MMC_WRITE(host, CON, dsor);
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001278 slot->saved_con = dsor;
Tony Lindgren46a67302007-05-01 16:34:16 +02001279 if (ios->power_mode == MMC_POWER_ON) {
Jarkko Lavinen9d7c6ee2008-03-26 16:10:02 -04001280 /* worst case at 400kHz, 80 cycles makes 200 microsecs */
1281 int usecs = 250;
1282
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001283 /* Send clock cycles, poll completion */
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +01001284 OMAP_MMC_WRITE(host, IE, 0);
1285 OMAP_MMC_WRITE(host, STAT, 0xffff);
Juha Yrjola juha.yrjolac5cb4312006-11-11 23:42:39 +01001286 OMAP_MMC_WRITE(host, CMD, 1 << 7);
Jarkko Lavinen9d7c6ee2008-03-26 16:10:02 -04001287 while (usecs > 0 && (OMAP_MMC_READ(host, STAT) & 1) == 0) {
1288 udelay(1);
1289 usecs--;
1290 }
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +01001291 OMAP_MMC_WRITE(host, STAT, 1);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001292 }
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001293
1294exit:
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -04001295 mmc_omap_release_slot(slot, clk_enabled);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001296}
1297
David Brownellab7aefd2006-11-12 17:55:30 -08001298static const struct mmc_host_ops mmc_omap_ops = {
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001299 .request = mmc_omap_request,
1300 .set_ios = mmc_omap_set_ios,
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001301};
1302
Tony Lindgren4f837792012-06-06 09:44:09 -04001303static int __devinit mmc_omap_new_slot(struct mmc_omap_host *host, int id)
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001304{
1305 struct mmc_omap_slot *slot = NULL;
1306 struct mmc_host *mmc;
1307 int r;
1308
1309 mmc = mmc_alloc_host(sizeof(struct mmc_omap_slot), host->dev);
1310 if (mmc == NULL)
1311 return -ENOMEM;
1312
1313 slot = mmc_priv(mmc);
1314 slot->host = host;
1315 slot->mmc = mmc;
1316 slot->id = id;
1317 slot->pdata = &host->pdata->slots[id];
1318
1319 host->slots[id] = slot;
1320
Pierre Ossman23af6032008-07-06 01:10:27 +02001321 mmc->caps = 0;
Tony Lindgren90c62bf2008-12-10 17:37:17 -08001322 if (host->pdata->slots[id].wires >= 4)
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001323 mmc->caps |= MMC_CAP_4_BIT_DATA;
1324
1325 mmc->ops = &mmc_omap_ops;
1326 mmc->f_min = 400000;
1327
1328 if (cpu_class_is_omap2())
1329 mmc->f_max = 48000000;
1330 else
1331 mmc->f_max = 24000000;
1332 if (host->pdata->max_freq)
1333 mmc->f_max = min(host->pdata->max_freq, mmc->f_max);
1334 mmc->ocr_avail = slot->pdata->ocr_mask;
1335
1336 /* Use scatterlist DMA to reduce per-transfer costs.
1337 * NOTE max_seg_size assumption that small blocks aren't
1338 * normally used (except e.g. for reading SD registers).
1339 */
Martin K. Petersena36274e2010-09-10 01:33:59 -04001340 mmc->max_segs = 32;
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001341 mmc->max_blk_size = 2048; /* BLEN is 11 bits (+1) */
1342 mmc->max_blk_count = 2048; /* NBLK is 11 bits (+1) */
1343 mmc->max_req_size = mmc->max_blk_size * mmc->max_blk_count;
1344 mmc->max_seg_size = mmc->max_req_size;
1345
1346 r = mmc_add_host(mmc);
1347 if (r < 0)
1348 goto err_remove_host;
1349
1350 if (slot->pdata->name != NULL) {
1351 r = device_create_file(&mmc->class_dev,
1352 &dev_attr_slot_name);
1353 if (r < 0)
1354 goto err_remove_host;
1355 }
1356
Juha Yrjola5a0f3f12008-03-26 16:09:08 -04001357 if (slot->pdata->get_cover_state != NULL) {
1358 r = device_create_file(&mmc->class_dev,
1359 &dev_attr_cover_switch);
1360 if (r < 0)
1361 goto err_remove_slot_name;
1362
Jarkko Lavinen7584d272008-03-26 16:09:42 -04001363 setup_timer(&slot->cover_timer, mmc_omap_cover_timer,
1364 (unsigned long)slot);
1365 tasklet_init(&slot->cover_tasklet, mmc_omap_cover_handler,
1366 (unsigned long)slot);
1367 tasklet_schedule(&slot->cover_tasklet);
Juha Yrjola5a0f3f12008-03-26 16:09:08 -04001368 }
1369
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001370 return 0;
1371
Juha Yrjola5a0f3f12008-03-26 16:09:08 -04001372err_remove_slot_name:
1373 if (slot->pdata->name != NULL)
1374 device_remove_file(&mmc->class_dev, &dev_attr_slot_name);
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001375err_remove_host:
1376 mmc_remove_host(mmc);
1377 mmc_free_host(mmc);
1378 return r;
1379}
1380
1381static void mmc_omap_remove_slot(struct mmc_omap_slot *slot)
1382{
1383 struct mmc_host *mmc = slot->mmc;
1384
1385 if (slot->pdata->name != NULL)
1386 device_remove_file(&mmc->class_dev, &dev_attr_slot_name);
Juha Yrjola5a0f3f12008-03-26 16:09:08 -04001387 if (slot->pdata->get_cover_state != NULL)
1388 device_remove_file(&mmc->class_dev, &dev_attr_cover_switch);
1389
Jarkko Lavinen7584d272008-03-26 16:09:42 -04001390 tasklet_kill(&slot->cover_tasklet);
1391 del_timer_sync(&slot->cover_timer);
Venkatraman Sb01a4f12012-05-08 17:05:33 +05301392 flush_workqueue(slot->host->mmc_omap_wq);
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001393
1394 mmc_remove_host(mmc);
1395 mmc_free_host(mmc);
1396}
1397
Venkatraman Sb6e07032012-05-08 17:05:34 +05301398static int __devinit mmc_omap_probe(struct platform_device *pdev)
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001399{
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001400 struct omap_mmc_platform_data *pdata = pdev->dev.platform_data;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001401 struct mmc_omap_host *host = NULL;
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001402 struct resource *res;
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001403 int i, ret = 0;
Tony Lindgrence9c1a82006-07-01 19:56:44 +01001404 int irq;
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001405
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001406 if (pdata == NULL) {
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001407 dev_err(&pdev->dev, "platform data missing\n");
1408 return -ENXIO;
1409 }
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001410 if (pdata->nr_slots == 0) {
1411 dev_err(&pdev->dev, "no slots\n");
1412 return -ENXIO;
1413 }
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001414
1415 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Tony Lindgrence9c1a82006-07-01 19:56:44 +01001416 irq = platform_get_irq(pdev, 0);
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001417 if (res == NULL || irq < 0)
Tony Lindgrence9c1a82006-07-01 19:56:44 +01001418 return -ENXIO;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001419
Chris Ball20920142011-03-22 16:34:41 -07001420 res = request_mem_region(res->start, resource_size(res),
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001421 pdev->name);
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001422 if (res == NULL)
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001423 return -EBUSY;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001424
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001425 host = kzalloc(sizeof(struct mmc_omap_host), GFP_KERNEL);
1426 if (host == NULL) {
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001427 ret = -ENOMEM;
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001428 goto err_free_mem_region;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001429 }
1430
Jarkko Lavinen0f602ec2008-03-26 16:09:58 -04001431 INIT_WORK(&host->slot_release_work, mmc_omap_slot_release_work);
1432 INIT_WORK(&host->send_stop_work, mmc_omap_send_stop_work);
1433
Jarkko Lavinen0fb47232008-03-26 16:09:48 -04001434 INIT_WORK(&host->cmd_abort_work, mmc_omap_abort_command);
1435 setup_timer(&host->cmd_abort_timer, mmc_omap_cmd_timer,
1436 (unsigned long) host);
Jarkko Lavineneb1860b2008-03-26 16:09:29 -04001437
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -04001438 spin_lock_init(&host->clk_lock);
1439 setup_timer(&host->clk_timer, mmc_omap_clk_timer, (unsigned long) host);
1440
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001441 spin_lock_init(&host->dma_lock);
Carlos Eduardo Aguiar01e77e12008-03-26 16:09:34 -04001442 setup_timer(&host->dma_timer, mmc_omap_dma_timer, (unsigned long) host);
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001443 spin_lock_init(&host->slot_lock);
1444 init_waitqueue_head(&host->slot_wq);
1445
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001446 host->pdata = pdata;
1447 host->dev = &pdev->dev;
1448 platform_set_drvdata(pdev, host);
1449
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001450 host->id = pdev->id;
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001451 host->mem_res = res;
Tony Lindgrence9c1a82006-07-01 19:56:44 +01001452 host->irq = irq;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001453
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001454 host->use_dma = 1;
Tony Lindgrend8874662008-12-10 17:37:16 -08001455 host->dev->dma_mask = &pdata->dma_mask;
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001456 host->dma_ch = -1;
1457
1458 host->irq = irq;
1459 host->phys_base = host->mem_res->start;
Chris Ball20920142011-03-22 16:34:41 -07001460 host->virt_base = ioremap(res->start, resource_size(res));
Russell King55c381e2008-09-04 14:07:22 +01001461 if (!host->virt_base)
1462 goto err_ioremap;
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001463
Russell Kingd4a36645a2009-01-23 19:03:37 +00001464 host->iclk = clk_get(&pdev->dev, "ick");
Ladislav Michle799acb2009-12-14 18:01:24 -08001465 if (IS_ERR(host->iclk)) {
1466 ret = PTR_ERR(host->iclk);
Russell Kingd4a36645a2009-01-23 19:03:37 +00001467 goto err_free_mmc_host;
Ladislav Michle799acb2009-12-14 18:01:24 -08001468 }
Russell Kingd4a36645a2009-01-23 19:03:37 +00001469 clk_enable(host->iclk);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001470
Russell King5c9e02b2009-01-19 20:53:30 +00001471 host->fclk = clk_get(&pdev->dev, "fck");
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001472 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;
Tony Lindgrenebbe6f82012-06-06 09:47:49 -04001488 host->reg_shift = (cpu_is_omap7xx() ? 1 : 2);
Tony Lindgren3caf4142012-06-06 09:45:50 -04001489
1490 host->mmc_omap_wq = alloc_workqueue("mmc_omap", 0, 0);
1491 if (!host->mmc_omap_wq)
1492 goto err_plat_cleanup;
1493
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001494 for (i = 0; i < pdata->nr_slots; i++) {
1495 ret = mmc_omap_new_slot(host, i);
1496 if (ret < 0) {
1497 while (--i >= 0)
1498 mmc_omap_remove_slot(host->slots[i]);
1499
Tony Lindgren3caf4142012-06-06 09:45:50 -04001500 goto err_destroy_wq;
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001501 }
1502 }
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001503
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001504 return 0;
1505
Tony Lindgren3caf4142012-06-06 09:45:50 -04001506err_destroy_wq:
1507 destroy_workqueue(host->mmc_omap_wq);
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001508err_plat_cleanup:
1509 if (pdata->cleanup)
1510 pdata->cleanup(&pdev->dev);
1511err_free_irq:
1512 free_irq(host->irq, host);
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001513err_free_fclk:
1514 clk_put(host->fclk);
1515err_free_iclk:
Ladislav Michle799acb2009-12-14 18:01:24 -08001516 clk_disable(host->iclk);
1517 clk_put(host->iclk);
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001518err_free_mmc_host:
Russell King55c381e2008-09-04 14:07:22 +01001519 iounmap(host->virt_base);
1520err_ioremap:
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001521 kfree(host);
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001522err_free_mem_region:
Chris Ball20920142011-03-22 16:34:41 -07001523 release_mem_region(res->start, resource_size(res));
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001524 return ret;
1525}
1526
Venkatraman Sb6e07032012-05-08 17:05:34 +05301527static int __devexit mmc_omap_remove(struct platform_device *pdev)
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001528{
1529 struct mmc_omap_host *host = platform_get_drvdata(pdev);
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001530 int i;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001531
1532 platform_set_drvdata(pdev, NULL);
1533
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001534 BUG_ON(host == NULL);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001535
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001536 for (i = 0; i < host->nr_slots; i++)
1537 mmc_omap_remove_slot(host->slots[i]);
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001538
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001539 if (host->pdata->cleanup)
1540 host->pdata->cleanup(&pdev->dev);
1541
Russell Kingd4a36645a2009-01-23 19:03:37 +00001542 mmc_omap_fclk_enable(host, 0);
Ladislav Michl49c1d9d2009-11-11 14:26:43 -08001543 free_irq(host->irq, host);
Russell Kingd4a36645a2009-01-23 19:03:37 +00001544 clk_put(host->fclk);
1545 clk_disable(host->iclk);
1546 clk_put(host->iclk);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001547
Russell King55c381e2008-09-04 14:07:22 +01001548 iounmap(host->virt_base);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001549 release_mem_region(pdev->resource[0].start,
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001550 pdev->resource[0].end - pdev->resource[0].start + 1);
Venkatraman Sb01a4f12012-05-08 17:05:33 +05301551 destroy_workqueue(host->mmc_omap_wq);
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001552
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001553 kfree(host);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001554
1555 return 0;
1556}
1557
1558#ifdef CONFIG_PM
1559static int mmc_omap_suspend(struct platform_device *pdev, pm_message_t mesg)
1560{
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001561 int i, ret = 0;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001562 struct mmc_omap_host *host = platform_get_drvdata(pdev);
1563
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001564 if (host == NULL || host->suspended)
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001565 return 0;
1566
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001567 for (i = 0; i < host->nr_slots; i++) {
1568 struct mmc_omap_slot *slot;
1569
1570 slot = host->slots[i];
Matt Fleming1a13f8f2010-05-26 14:42:08 -07001571 ret = mmc_suspend_host(slot->mmc);
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001572 if (ret < 0) {
1573 while (--i >= 0) {
1574 slot = host->slots[i];
1575 mmc_resume_host(slot->mmc);
1576 }
1577 return ret;
1578 }
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001579 }
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001580 host->suspended = 1;
1581 return 0;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001582}
1583
1584static int mmc_omap_resume(struct platform_device *pdev)
1585{
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001586 int i, ret = 0;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001587 struct mmc_omap_host *host = platform_get_drvdata(pdev);
1588
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001589 if (host == NULL || !host->suspended)
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001590 return 0;
1591
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001592 for (i = 0; i < host->nr_slots; i++) {
1593 struct mmc_omap_slot *slot;
1594 slot = host->slots[i];
1595 ret = mmc_resume_host(slot->mmc);
1596 if (ret < 0)
1597 return ret;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001598
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001599 host->suspended = 0;
1600 }
1601 return 0;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001602}
1603#else
1604#define mmc_omap_suspend NULL
1605#define mmc_omap_resume NULL
1606#endif
1607
1608static struct platform_driver mmc_omap_driver = {
Venkatraman Sb6e07032012-05-08 17:05:34 +05301609 .probe = mmc_omap_probe,
1610 .remove = __devexit_p(mmc_omap_remove),
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001611 .suspend = mmc_omap_suspend,
1612 .resume = mmc_omap_resume,
1613 .driver = {
1614 .name = DRIVER_NAME,
Kay Sieversbc65c722008-04-15 14:34:28 -07001615 .owner = THIS_MODULE,
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001616 },
1617};
1618
Venkatraman S680f1b52012-05-08 17:05:35 +05301619module_platform_driver(mmc_omap_driver);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001620MODULE_DESCRIPTION("OMAP Multimedia Card driver");
1621MODULE_LICENSE("GPL");
Kay Sieversbc65c722008-04-15 14:34:28 -07001622MODULE_ALIAS("platform:" DRIVER_NAME);
Al Virod36b6912011-12-29 17:09:01 -05001623MODULE_AUTHOR("Juha Yrjölä");