blob: 9f0e26fffaea7021761530529aaa0be2844fb9a7 [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>
Russell King3451c062012-04-21 22:35:42 +010020#include <linux/dmaengine.h>
Carlos Aguiar730c9b72006-03-29 09:21:00 +010021#include <linux/dma-mapping.h>
22#include <linux/delay.h>
23#include <linux/spinlock.h>
24#include <linux/timer.h>
Russell King3451c062012-04-21 22:35:42 +010025#include <linux/omap-dma.h>
Carlos Aguiar730c9b72006-03-29 09:21:00 +010026#include <linux/mmc/host.h>
Carlos Aguiar730c9b72006-03-29 09:21:00 +010027#include <linux/mmc/card.h>
28#include <linux/clk.h>
Jens Axboe45711f12007-10-22 21:19:53 +020029#include <linux/scatterlist.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090030#include <linux/slab.h>
Tony Lindgren68f39e72012-10-15 12:09:43 -070031#include <linux/platform_data/mmc-omap.h>
Carlos Aguiar730c9b72006-03-29 09:21:00 +010032
Tony Lindgrence491cf2009-10-20 09:40:47 -070033#include <plat/dma.h>
Carlos Aguiar730c9b72006-03-29 09:21:00 +010034
Juha Yrjola juha.yrjola0551f4d2006-11-11 23:38:36 +010035#define OMAP_MMC_REG_CMD 0x00
Marek Belisko0e950fa2010-05-26 14:41:49 -070036#define OMAP_MMC_REG_ARGL 0x01
37#define OMAP_MMC_REG_ARGH 0x02
38#define OMAP_MMC_REG_CON 0x03
39#define OMAP_MMC_REG_STAT 0x04
40#define OMAP_MMC_REG_IE 0x05
41#define OMAP_MMC_REG_CTO 0x06
42#define OMAP_MMC_REG_DTO 0x07
43#define OMAP_MMC_REG_DATA 0x08
44#define OMAP_MMC_REG_BLEN 0x09
45#define OMAP_MMC_REG_NBLK 0x0a
46#define OMAP_MMC_REG_BUF 0x0b
47#define OMAP_MMC_REG_SDIO 0x0d
48#define OMAP_MMC_REG_REV 0x0f
49#define OMAP_MMC_REG_RSP0 0x10
50#define OMAP_MMC_REG_RSP1 0x11
51#define OMAP_MMC_REG_RSP2 0x12
52#define OMAP_MMC_REG_RSP3 0x13
53#define OMAP_MMC_REG_RSP4 0x14
54#define OMAP_MMC_REG_RSP5 0x15
55#define OMAP_MMC_REG_RSP6 0x16
56#define OMAP_MMC_REG_RSP7 0x17
57#define OMAP_MMC_REG_IOSR 0x18
58#define OMAP_MMC_REG_SYSC 0x19
59#define OMAP_MMC_REG_SYSS 0x1a
Juha Yrjola juha.yrjola0551f4d2006-11-11 23:38:36 +010060
61#define OMAP_MMC_STAT_CARD_ERR (1 << 14)
62#define OMAP_MMC_STAT_CARD_IRQ (1 << 13)
63#define OMAP_MMC_STAT_OCR_BUSY (1 << 12)
64#define OMAP_MMC_STAT_A_EMPTY (1 << 11)
65#define OMAP_MMC_STAT_A_FULL (1 << 10)
66#define OMAP_MMC_STAT_CMD_CRC (1 << 8)
67#define OMAP_MMC_STAT_CMD_TOUT (1 << 7)
68#define OMAP_MMC_STAT_DATA_CRC (1 << 6)
69#define OMAP_MMC_STAT_DATA_TOUT (1 << 5)
70#define OMAP_MMC_STAT_END_BUSY (1 << 4)
71#define OMAP_MMC_STAT_END_OF_DATA (1 << 3)
72#define OMAP_MMC_STAT_CARD_BUSY (1 << 2)
73#define OMAP_MMC_STAT_END_OF_CMD (1 << 0)
74
Tony Lindgren53db20d2012-10-15 12:10:33 -070075#define mmc_omap7xx() (host->features & MMC_OMAP7XX)
76#define mmc_omap15xx() (host->features & MMC_OMAP15XX)
77#define mmc_omap16xx() (host->features & MMC_OMAP16XX)
78#define MMC_OMAP1_MASK (MMC_OMAP7XX | MMC_OMAP15XX | MMC_OMAP16XX)
79#define mmc_omap1() (host->features & MMC_OMAP1_MASK)
80#define mmc_omap2() (!mmc_omap1())
81
Marek Belisko0e950fa2010-05-26 14:41:49 -070082#define OMAP_MMC_REG(host, reg) (OMAP_MMC_REG_##reg << (host)->reg_shift)
83#define OMAP_MMC_READ(host, reg) __raw_readw((host)->virt_base + OMAP_MMC_REG(host, reg))
84#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 +010085
86/*
87 * Command types
88 */
89#define OMAP_MMC_CMDTYPE_BC 0
90#define OMAP_MMC_CMDTYPE_BCR 1
91#define OMAP_MMC_CMDTYPE_AC 2
92#define OMAP_MMC_CMDTYPE_ADTC 3
93
Carlos Aguiar730c9b72006-03-29 09:21:00 +010094
95#define DRIVER_NAME "mmci-omap"
Carlos Aguiar730c9b72006-03-29 09:21:00 +010096
97/* Specifies how often in millisecs to poll for card status changes
98 * when the cover switch is open */
Jarkko Lavinen7584d272008-03-26 16:09:42 -040099#define OMAP_MMC_COVER_POLL_DELAY 500
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100100
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400101struct mmc_omap_host;
102
103struct mmc_omap_slot {
104 int id;
105 unsigned int vdd;
106 u16 saved_con;
107 u16 bus_mode;
108 unsigned int fclk_freq;
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400109
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;
Russell King3451c062012-04-21 22:35:42 +0100131 struct dma_chan *dma_rx;
132 u32 dma_rx_burst;
133 struct dma_chan *dma_tx;
134 u32 dma_tx_burst;
Juha Yrjola juha.yrjola89783b1e42006-11-11 23:36:01 +0100135 struct resource *mem_res;
136 void __iomem *virt_base;
137 unsigned int phys_base;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100138 int irq;
139 unsigned char bus_mode;
Marek Belisko0e950fa2010-05-26 14:41:49 -0700140 unsigned int reg_shift;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100141
Jarkko Lavinen0fb47232008-03-26 16:09:48 -0400142 struct work_struct cmd_abort_work;
143 unsigned abort:1;
144 struct timer_list cmd_abort_timer;
Jarkko Lavineneb1860b2008-03-26 16:09:29 -0400145
Jarkko Lavinen0f602ec2008-03-26 16:09:58 -0400146 struct work_struct slot_release_work;
147 struct mmc_omap_slot *next_slot;
148 struct work_struct send_stop_work;
149 struct mmc_data *stop_data;
150
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100151 unsigned int sg_len;
152 int sg_idx;
153 u16 * buffer;
154 u32 buffer_bytes_left;
155 u32 total_bytes_left;
156
Tony Lindgren53db20d2012-10-15 12:10:33 -0700157 unsigned features;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100158 unsigned use_dma:1;
159 unsigned brs_received:1, dma_done:1;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100160 unsigned dma_in_use:1;
Russell King3451c062012-04-21 22:35:42 +0100161 spinlock_t dma_lock;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100162
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;
Russell King3451c062012-04-21 22:35:42 +0100409 struct device *dev = mmc_dev(host->mmc);
410 struct dma_chan *c;
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400411
Russell King3451c062012-04-21 22:35:42 +0100412 if (data->flags & MMC_DATA_WRITE) {
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400413 dma_data_dir = DMA_TO_DEVICE;
Russell King3451c062012-04-21 22:35:42 +0100414 c = host->dma_tx;
415 } else {
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400416 dma_data_dir = DMA_FROM_DEVICE;
Russell King3451c062012-04-21 22:35:42 +0100417 c = host->dma_rx;
418 }
419 if (c) {
420 if (data->error) {
421 dmaengine_terminate_all(c);
422 /* Claim nothing transferred on error... */
423 data->bytes_xfered = 0;
424 }
425 dev = c->device->dev;
426 }
427 dma_unmap_sg(dev, data->sg, host->sg_len, dma_data_dir);
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400428}
429
Jarkko Lavinen0f602ec2008-03-26 16:09:58 -0400430static void mmc_omap_send_stop_work(struct work_struct *work)
431{
432 struct mmc_omap_host *host = container_of(work, struct mmc_omap_host,
433 send_stop_work);
434 struct mmc_omap_slot *slot = host->current_slot;
435 struct mmc_data *data = host->stop_data;
436 unsigned long tick_ns;
437
438 tick_ns = (1000000000 + slot->fclk_freq - 1)/slot->fclk_freq;
439 ndelay(8*tick_ns);
440
441 mmc_omap_start_command(host, data->stop);
442}
443
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400444static void
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100445mmc_omap_xfer_done(struct mmc_omap_host *host, struct mmc_data *data)
446{
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400447 if (host->dma_in_use)
448 mmc_omap_release_dma(host, data, data->error);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100449
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100450 host->data = NULL;
451 host->sg_len = 0;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100452
453 /* NOTE: MMC layer will sometimes poll-wait CMD13 next, issuing
454 * dozens of requests until the card finishes writing data.
455 * It'd be cheaper to just wait till an EOFB interrupt arrives...
456 */
457
458 if (!data->stop) {
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400459 struct mmc_host *mmc;
460
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100461 host->mrq = NULL;
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400462 mmc = host->mmc;
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -0400463 mmc_omap_release_slot(host->current_slot, 1);
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400464 mmc_request_done(mmc, data->mrq);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100465 return;
466 }
467
Jarkko Lavinen0f602ec2008-03-26 16:09:58 -0400468 host->stop_data = data;
Venkatraman Sb01a4f12012-05-08 17:05:33 +0530469 queue_work(host->mmc_omap_wq, &host->send_stop_work);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100470}
471
472static void
Jarkko Lavinen0fb47232008-03-26 16:09:48 -0400473mmc_omap_send_abort(struct mmc_omap_host *host, int maxloops)
Jarkko Lavineneb1860b2008-03-26 16:09:29 -0400474{
475 struct mmc_omap_slot *slot = host->current_slot;
476 unsigned int restarts, passes, timeout;
477 u16 stat = 0;
478
479 /* Sending abort takes 80 clocks. Have some extra and round up */
480 timeout = (120*1000000 + slot->fclk_freq - 1)/slot->fclk_freq;
481 restarts = 0;
Jarkko Lavinen0fb47232008-03-26 16:09:48 -0400482 while (restarts < maxloops) {
Jarkko Lavineneb1860b2008-03-26 16:09:29 -0400483 OMAP_MMC_WRITE(host, STAT, 0xFFFF);
484 OMAP_MMC_WRITE(host, CMD, (3 << 12) | (1 << 7));
485
486 passes = 0;
487 while (passes < timeout) {
488 stat = OMAP_MMC_READ(host, STAT);
489 if (stat & OMAP_MMC_STAT_END_OF_CMD)
490 goto out;
491 udelay(1);
492 passes++;
493 }
494
495 restarts++;
496 }
497out:
498 OMAP_MMC_WRITE(host, STAT, stat);
499}
500
501static void
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400502mmc_omap_abort_xfer(struct mmc_omap_host *host, struct mmc_data *data)
503{
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400504 if (host->dma_in_use)
505 mmc_omap_release_dma(host, data, 1);
506
507 host->data = NULL;
508 host->sg_len = 0;
509
Jarkko Lavinen0fb47232008-03-26 16:09:48 -0400510 mmc_omap_send_abort(host, 10000);
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400511}
512
513static void
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100514mmc_omap_end_of_data(struct mmc_omap_host *host, struct mmc_data *data)
515{
516 unsigned long flags;
517 int done;
518
519 if (!host->dma_in_use) {
520 mmc_omap_xfer_done(host, data);
521 return;
522 }
523 done = 0;
524 spin_lock_irqsave(&host->dma_lock, flags);
525 if (host->dma_done)
526 done = 1;
527 else
528 host->brs_received = 1;
529 spin_unlock_irqrestore(&host->dma_lock, flags);
530 if (done)
531 mmc_omap_xfer_done(host, data);
532}
533
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100534static 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;
Venkatraman Sb01a4f12012-05-08 17:05:33 +0530639 queue_work(host->mmc_omap_wq, &host->cmd_abort_work);
Jarkko Lavinen0fb47232008-03-26 16:09:48 -0400640 }
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{
Paul Walmsley75b53ae2012-08-24 06:00:18 +0000669 int n, nwords;
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;
Paul Walmsley75b53ae2012-08-24 06:00:18 +0000679
680 nwords = n / 2;
681 nwords += n & 1; /* handle odd number of bytes to transfer */
682
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100683 host->buffer_bytes_left -= n;
684 host->total_bytes_left -= n;
685 host->data->bytes_xfered += n;
686
687 if (write) {
Paul Walmsley75b53ae2012-08-24 06:00:18 +0000688 __raw_writesw(host->virt_base + OMAP_MMC_REG(host, DATA),
689 host->buffer, nwords);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100690 } else {
Paul Walmsley75b53ae2012-08-24 06:00:18 +0000691 __raw_readsw(host->virt_base + OMAP_MMC_REG(host, DATA),
692 host->buffer, nwords);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100693 }
Paul Walmsley75b53ae2012-08-24 06:00:18 +0000694
695 host->buffer += nwords;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100696}
697
Venkatraman S75d569d2012-08-07 19:03:01 +0530698#ifdef CONFIG_MMC_DEBUG
699static void mmc_omap_report_irq(struct mmc_omap_host *host, u16 status)
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100700{
701 static const char *mmc_omap_status_bits[] = {
702 "EOC", "CD", "CB", "BRS", "EOFB", "DTO", "DCRC", "CTO",
703 "CCRC", "CRW", "AF", "AE", "OCRB", "CIRQ", "CERR"
704 };
Venkatraman S75d569d2012-08-07 19:03:01 +0530705 int i;
706 char res[64], *buf = res;
707
708 buf += sprintf(buf, "MMC IRQ 0x%x:", status);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100709
710 for (i = 0; i < ARRAY_SIZE(mmc_omap_status_bits); i++)
Venkatraman S75d569d2012-08-07 19:03:01 +0530711 if (status & (1 << i))
712 buf += sprintf(buf, " %s", mmc_omap_status_bits[i]);
713 dev_vdbg(mmc_dev(host->mmc), "%s\n", res);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100714}
Venkatraman S75d569d2012-08-07 19:03:01 +0530715#else
716static void mmc_omap_report_irq(struct mmc_omap_host *host, u16 status)
717{
718}
719#endif
720
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100721
David Howells7d12e782006-10-05 14:55:46 +0100722static irqreturn_t mmc_omap_irq(int irq, void *dev_id)
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100723{
724 struct mmc_omap_host * host = (struct mmc_omap_host *)dev_id;
725 u16 status;
726 int end_command;
727 int end_transfer;
Juha Yrjola2a50b882008-03-26 16:09:26 -0400728 int transfer_error, cmd_error;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100729
730 if (host->cmd == NULL && host->data == NULL) {
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100731 status = OMAP_MMC_READ(host, STAT);
Juha Yrjola2a50b882008-03-26 16:09:26 -0400732 dev_info(mmc_dev(host->slots[0]->mmc),
733 "Spurious IRQ 0x%04x\n", status);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100734 if (status != 0) {
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100735 OMAP_MMC_WRITE(host, STAT, status);
736 OMAP_MMC_WRITE(host, IE, 0);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100737 }
738 return IRQ_HANDLED;
739 }
740
741 end_command = 0;
742 end_transfer = 0;
743 transfer_error = 0;
Juha Yrjola2a50b882008-03-26 16:09:26 -0400744 cmd_error = 0;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100745
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100746 while ((status = OMAP_MMC_READ(host, STAT)) != 0) {
Juha Yrjola2a50b882008-03-26 16:09:26 -0400747 int cmd;
748
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100749 OMAP_MMC_WRITE(host, STAT, status);
Juha Yrjola2a50b882008-03-26 16:09:26 -0400750 if (host->cmd != NULL)
751 cmd = host->cmd->opcode;
752 else
753 cmd = -1;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100754 dev_dbg(mmc_dev(host->mmc), "MMC IRQ %04x (CMD %d): ",
Juha Yrjola2a50b882008-03-26 16:09:26 -0400755 status, cmd);
Venkatraman S75d569d2012-08-07 19:03:01 +0530756 mmc_omap_report_irq(host, status);
757
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100758 if (host->total_bytes_left) {
759 if ((status & OMAP_MMC_STAT_A_FULL) ||
760 (status & OMAP_MMC_STAT_END_OF_DATA))
761 mmc_omap_xfer_data(host, 0);
762 if (status & OMAP_MMC_STAT_A_EMPTY)
763 mmc_omap_xfer_data(host, 1);
764 }
765
Juha Yrjola2a50b882008-03-26 16:09:26 -0400766 if (status & OMAP_MMC_STAT_END_OF_DATA)
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100767 end_transfer = 1;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100768
769 if (status & OMAP_MMC_STAT_DATA_TOUT) {
Juha Yrjola2a50b882008-03-26 16:09:26 -0400770 dev_dbg(mmc_dev(host->mmc), "data timeout (CMD%d)\n",
771 cmd);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100772 if (host->data) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200773 host->data->error = -ETIMEDOUT;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100774 transfer_error = 1;
775 }
776 }
777
778 if (status & OMAP_MMC_STAT_DATA_CRC) {
779 if (host->data) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200780 host->data->error = -EILSEQ;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100781 dev_dbg(mmc_dev(host->mmc),
782 "data CRC error, bytes left %d\n",
783 host->total_bytes_left);
784 transfer_error = 1;
785 } else {
786 dev_dbg(mmc_dev(host->mmc), "data CRC error\n");
787 }
788 }
789
790 if (status & OMAP_MMC_STAT_CMD_TOUT) {
791 /* Timeouts are routine with some commands */
792 if (host->cmd) {
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400793 struct mmc_omap_slot *slot =
794 host->current_slot;
Juha Yrjola2a50b882008-03-26 16:09:26 -0400795 if (slot == NULL ||
796 !mmc_omap_cover_is_open(slot))
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400797 dev_err(mmc_dev(host->mmc),
Juha Yrjola2a50b882008-03-26 16:09:26 -0400798 "command timeout (CMD%d)\n",
799 cmd);
Pierre Ossman17b04292007-07-22 22:18:46 +0200800 host->cmd->error = -ETIMEDOUT;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100801 end_command = 1;
Juha Yrjola2a50b882008-03-26 16:09:26 -0400802 cmd_error = 1;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100803 }
804 }
805
806 if (status & OMAP_MMC_STAT_CMD_CRC) {
807 if (host->cmd) {
808 dev_err(mmc_dev(host->mmc),
809 "command CRC error (CMD%d, arg 0x%08x)\n",
Juha Yrjola2a50b882008-03-26 16:09:26 -0400810 cmd, host->cmd->arg);
Pierre Ossman17b04292007-07-22 22:18:46 +0200811 host->cmd->error = -EILSEQ;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100812 end_command = 1;
Juha Yrjola2a50b882008-03-26 16:09:26 -0400813 cmd_error = 1;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100814 } else
815 dev_err(mmc_dev(host->mmc),
816 "command CRC error without cmd?\n");
817 }
818
819 if (status & OMAP_MMC_STAT_CARD_ERR) {
Ragner Magalhaes0107a4b2007-06-13 19:09:28 +0200820 dev_dbg(mmc_dev(host->mmc),
821 "ignoring card status error (CMD%d)\n",
Juha Yrjola2a50b882008-03-26 16:09:26 -0400822 cmd);
Ragner Magalhaes0107a4b2007-06-13 19:09:28 +0200823 end_command = 1;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100824 }
825
826 /*
827 * NOTE: On 1610 the END_OF_CMD may come too early when
Juha Yrjola2a50b882008-03-26 16:09:26 -0400828 * starting a write
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100829 */
830 if ((status & OMAP_MMC_STAT_END_OF_CMD) &&
831 (!(status & OMAP_MMC_STAT_A_EMPTY))) {
832 end_command = 1;
833 }
834 }
835
Jarkko Lavinen0fb47232008-03-26 16:09:48 -0400836 if (cmd_error && host->data) {
837 del_timer(&host->cmd_abort_timer);
838 host->abort = 1;
839 OMAP_MMC_WRITE(host, IE, 0);
Ben Nizettee749c6f2009-04-16 15:55:21 +1000840 disable_irq_nosync(host->irq);
Venkatraman Sb01a4f12012-05-08 17:05:33 +0530841 queue_work(host->mmc_omap_wq, &host->cmd_abort_work);
Jarkko Lavinen0fb47232008-03-26 16:09:48 -0400842 return IRQ_HANDLED;
843 }
844
Michael Bueschf6947512011-04-11 17:00:44 -0400845 if (end_command && host->cmd)
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100846 mmc_omap_cmd_done(host, host->cmd);
Juha Yrjola2a50b882008-03-26 16:09:26 -0400847 if (host->data != NULL) {
848 if (transfer_error)
849 mmc_omap_xfer_done(host, host->data);
850 else if (end_transfer)
851 mmc_omap_end_of_data(host, host->data);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100852 }
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100853
854 return IRQ_HANDLED;
855}
856
Jarkko Lavinen7584d272008-03-26 16:09:42 -0400857void omap_mmc_notify_cover_event(struct device *dev, int num, int is_closed)
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400858{
Jarkko Lavinen7584d272008-03-26 16:09:42 -0400859 int cover_open;
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400860 struct mmc_omap_host *host = dev_get_drvdata(dev);
Jarkko Lavinen7584d272008-03-26 16:09:42 -0400861 struct mmc_omap_slot *slot = host->slots[num];
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400862
Jarkko Lavinen7584d272008-03-26 16:09:42 -0400863 BUG_ON(num >= host->nr_slots);
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400864
865 /* Other subsystems can call in here before we're initialised. */
Jarkko Lavinen7584d272008-03-26 16:09:42 -0400866 if (host->nr_slots == 0 || !host->slots[num])
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400867 return;
868
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400869 cover_open = mmc_omap_cover_is_open(slot);
870 if (cover_open != slot->cover_open) {
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400871 slot->cover_open = cover_open;
Jarkko Lavinen7584d272008-03-26 16:09:42 -0400872 sysfs_notify(&slot->mmc->class_dev.kobj, NULL, "cover_switch");
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400873 }
Jarkko Lavinen7584d272008-03-26 16:09:42 -0400874
875 tasklet_hi_schedule(&slot->cover_tasklet);
876}
877
878static void mmc_omap_cover_timer(unsigned long arg)
879{
880 struct mmc_omap_slot *slot = (struct mmc_omap_slot *) arg;
881 tasklet_schedule(&slot->cover_tasklet);
882}
883
884static void mmc_omap_cover_handler(unsigned long param)
885{
886 struct mmc_omap_slot *slot = (struct mmc_omap_slot *)param;
887 int cover_open = mmc_omap_cover_is_open(slot);
888
889 mmc_detect_change(slot->mmc, 0);
890 if (!cover_open)
891 return;
892
893 /*
894 * If no card is inserted, we postpone polling until
895 * the cover has been closed.
896 */
897 if (slot->mmc->card == NULL || !mmc_card_present(slot->mmc->card))
898 return;
899
900 mod_timer(&slot->cover_timer,
901 jiffies + msecs_to_jiffies(OMAP_MMC_COVER_POLL_DELAY));
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400902}
903
Russell King3451c062012-04-21 22:35:42 +0100904static void mmc_omap_dma_callback(void *priv)
905{
906 struct mmc_omap_host *host = priv;
907 struct mmc_data *data = host->data;
908
909 /* If we got to the end of DMA, assume everything went well */
910 data->bytes_xfered += data->blocks * data->blksz;
911
912 mmc_omap_dma_done(host, data);
913}
914
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100915static inline void set_cmd_timeout(struct mmc_omap_host *host, struct mmc_request *req)
916{
917 u16 reg;
918
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100919 reg = OMAP_MMC_READ(host, SDIO);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100920 reg &= ~(1 << 5);
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100921 OMAP_MMC_WRITE(host, SDIO, reg);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100922 /* Set maximum timeout */
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100923 OMAP_MMC_WRITE(host, CTO, 0xff);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100924}
925
926static inline void set_data_timeout(struct mmc_omap_host *host, struct mmc_request *req)
927{
Juha Yrjolab8f9f0e2008-03-26 16:09:16 -0400928 unsigned int timeout, cycle_ns;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100929 u16 reg;
930
Juha Yrjolab8f9f0e2008-03-26 16:09:16 -0400931 cycle_ns = 1000000000 / host->current_slot->fclk_freq;
932 timeout = req->data->timeout_ns / cycle_ns;
933 timeout += req->data->timeout_clks;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100934
935 /* Check if we need to use timeout multiplier register */
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100936 reg = OMAP_MMC_READ(host, SDIO);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100937 if (timeout > 0xffff) {
938 reg |= (1 << 5);
939 timeout /= 1024;
940 } else
941 reg &= ~(1 << 5);
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100942 OMAP_MMC_WRITE(host, SDIO, reg);
943 OMAP_MMC_WRITE(host, DTO, timeout);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100944}
945
946static void
947mmc_omap_prepare_data(struct mmc_omap_host *host, struct mmc_request *req)
948{
949 struct mmc_data *data = req->data;
950 int i, use_dma, block_size;
951 unsigned sg_len;
952
953 host->data = data;
954 if (data == NULL) {
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100955 OMAP_MMC_WRITE(host, BLEN, 0);
956 OMAP_MMC_WRITE(host, NBLK, 0);
957 OMAP_MMC_WRITE(host, BUF, 0);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100958 host->dma_in_use = 0;
959 set_cmd_timeout(host, req);
960 return;
961 }
962
Russell Kinga3fd4a12006-06-04 17:51:15 +0100963 block_size = data->blksz;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100964
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100965 OMAP_MMC_WRITE(host, NBLK, data->blocks - 1);
966 OMAP_MMC_WRITE(host, BLEN, block_size - 1);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100967 set_data_timeout(host, req);
968
969 /* cope with calling layer confusion; it issues "single
970 * block" writes using multi-block scatterlists.
971 */
972 sg_len = (data->blocks == 1) ? 1 : data->sg_len;
973
974 /* Only do DMA for entire blocks */
975 use_dma = host->use_dma;
976 if (use_dma) {
977 for (i = 0; i < sg_len; i++) {
978 if ((data->sg[i].length % block_size) != 0) {
979 use_dma = 0;
980 break;
981 }
982 }
983 }
984
985 host->sg_idx = 0;
986 if (use_dma) {
Russell King3451c062012-04-21 22:35:42 +0100987 enum dma_data_direction dma_data_dir;
988 struct dma_async_tx_descriptor *tx;
989 struct dma_chan *c;
990 u32 burst, *bp;
991 u16 buf;
992
993 /*
994 * FIFO is 16x2 bytes on 15xx, and 32x2 bytes on 16xx
995 * and 24xx. Use 16 or 32 word frames when the
996 * blocksize is at least that large. Blocksize is
997 * usually 512 bytes; but not for some SD reads.
998 */
Tony Lindgren53db20d2012-10-15 12:10:33 -0700999 burst = mmc_omap15xx() ? 32 : 64;
Russell King3451c062012-04-21 22:35:42 +01001000 if (burst > data->blksz)
1001 burst = data->blksz;
1002
1003 burst >>= 1;
1004
1005 if (data->flags & MMC_DATA_WRITE) {
1006 c = host->dma_tx;
1007 bp = &host->dma_tx_burst;
1008 buf = 0x0f80 | (burst - 1) << 0;
1009 dma_data_dir = DMA_TO_DEVICE;
1010 } else {
1011 c = host->dma_rx;
1012 bp = &host->dma_rx_burst;
1013 buf = 0x800f | (burst - 1) << 8;
1014 dma_data_dir = DMA_FROM_DEVICE;
1015 }
1016
1017 if (!c)
1018 goto use_pio;
1019
1020 /* Only reconfigure if we have a different burst size */
1021 if (*bp != burst) {
1022 struct dma_slave_config cfg;
1023
1024 cfg.src_addr = host->phys_base + OMAP_MMC_REG(host, DATA);
1025 cfg.dst_addr = host->phys_base + OMAP_MMC_REG(host, DATA);
1026 cfg.src_addr_width = DMA_SLAVE_BUSWIDTH_2_BYTES;
1027 cfg.dst_addr_width = DMA_SLAVE_BUSWIDTH_2_BYTES;
1028 cfg.src_maxburst = burst;
1029 cfg.dst_maxburst = burst;
1030
1031 if (dmaengine_slave_config(c, &cfg))
1032 goto use_pio;
1033
1034 *bp = burst;
1035 }
1036
1037 host->sg_len = dma_map_sg(c->device->dev, data->sg, sg_len,
1038 dma_data_dir);
1039 if (host->sg_len == 0)
1040 goto use_pio;
1041
1042 tx = dmaengine_prep_slave_sg(c, data->sg, host->sg_len,
1043 data->flags & MMC_DATA_WRITE ? DMA_MEM_TO_DEV : DMA_DEV_TO_MEM,
1044 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
1045 if (!tx)
1046 goto use_pio;
1047
1048 OMAP_MMC_WRITE(host, BUF, buf);
1049
1050 tx->callback = mmc_omap_dma_callback;
1051 tx->callback_param = host;
1052 dmaengine_submit(tx);
1053 host->brs_received = 0;
1054 host->dma_done = 0;
1055 host->dma_in_use = 1;
1056 return;
1057 }
1058 use_pio:
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001059
1060 /* Revert to PIO? */
Russell King4e078fb2012-04-21 22:41:10 +01001061 OMAP_MMC_WRITE(host, BUF, 0x1f1f);
1062 host->total_bytes_left = data->blocks * block_size;
1063 host->sg_len = sg_len;
1064 mmc_omap_sg_to_buf(host);
1065 host->dma_in_use = 0;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001066}
1067
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001068static void mmc_omap_start_request(struct mmc_omap_host *host,
1069 struct mmc_request *req)
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001070{
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001071 BUG_ON(host->mrq != NULL);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001072
1073 host->mrq = req;
1074
1075 /* only touch fifo AFTER the controller readies it */
1076 mmc_omap_prepare_data(host, req);
1077 mmc_omap_start_command(host, req->cmd);
Russell King3451c062012-04-21 22:35:42 +01001078 if (host->dma_in_use) {
1079 struct dma_chan *c = host->data->flags & MMC_DATA_WRITE ?
1080 host->dma_tx : host->dma_rx;
1081
Russell King4e078fb2012-04-21 22:41:10 +01001082 dma_async_issue_pending(c);
Russell King3451c062012-04-21 22:35:42 +01001083 }
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001084}
1085
1086static void mmc_omap_request(struct mmc_host *mmc, struct mmc_request *req)
1087{
1088 struct mmc_omap_slot *slot = mmc_priv(mmc);
1089 struct mmc_omap_host *host = slot->host;
1090 unsigned long flags;
1091
1092 spin_lock_irqsave(&host->slot_lock, flags);
1093 if (host->mmc != NULL) {
1094 BUG_ON(slot->mrq != NULL);
1095 slot->mrq = req;
1096 spin_unlock_irqrestore(&host->slot_lock, flags);
1097 return;
1098 } else
1099 host->mmc = mmc;
1100 spin_unlock_irqrestore(&host->slot_lock, flags);
1101 mmc_omap_select_slot(slot, 1);
1102 mmc_omap_start_request(host, req);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001103}
1104
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001105static void mmc_omap_set_power(struct mmc_omap_slot *slot, int power_on,
1106 int vdd)
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001107{
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001108 struct mmc_omap_host *host;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001109
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001110 host = slot->host;
1111
1112 if (slot->pdata->set_power != NULL)
1113 slot->pdata->set_power(mmc_dev(slot->mmc), slot->id, power_on,
1114 vdd);
Tony Lindgren53db20d2012-10-15 12:10:33 -07001115 if (mmc_omap2()) {
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001116 u16 w;
1117
1118 if (power_on) {
1119 w = OMAP_MMC_READ(host, CON);
1120 OMAP_MMC_WRITE(host, CON, w | (1 << 11));
1121 } else {
1122 w = OMAP_MMC_READ(host, CON);
1123 OMAP_MMC_WRITE(host, CON, w & ~(1 << 11));
1124 }
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001125 }
1126}
1127
Tony Lindgrend3af5ab2007-05-01 16:36:00 +02001128static int mmc_omap_calc_divisor(struct mmc_host *mmc, struct mmc_ios *ios)
1129{
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001130 struct mmc_omap_slot *slot = mmc_priv(mmc);
1131 struct mmc_omap_host *host = slot->host;
Tony Lindgrend3af5ab2007-05-01 16:36:00 +02001132 int func_clk_rate = clk_get_rate(host->fclk);
1133 int dsor;
1134
1135 if (ios->clock == 0)
1136 return 0;
1137
1138 dsor = func_clk_rate / ios->clock;
1139 if (dsor < 1)
1140 dsor = 1;
1141
1142 if (func_clk_rate / dsor > ios->clock)
1143 dsor++;
1144
1145 if (dsor > 250)
1146 dsor = 250;
Tony Lindgrend3af5ab2007-05-01 16:36:00 +02001147
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001148 slot->fclk_freq = func_clk_rate / dsor;
1149
Tony Lindgrend3af5ab2007-05-01 16:36:00 +02001150 if (ios->bus_width == MMC_BUS_WIDTH_4)
1151 dsor |= 1 << 15;
1152
1153 return dsor;
1154}
1155
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001156static void mmc_omap_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
1157{
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001158 struct mmc_omap_slot *slot = mmc_priv(mmc);
1159 struct mmc_omap_host *host = slot->host;
1160 int i, dsor;
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -04001161 int clk_enabled;
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001162
1163 mmc_omap_select_slot(slot, 0);
1164
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -04001165 dsor = mmc_omap_calc_divisor(mmc, ios);
1166
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001167 if (ios->vdd != slot->vdd)
1168 slot->vdd = ios->vdd;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001169
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -04001170 clk_enabled = 0;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001171 switch (ios->power_mode) {
1172 case MMC_POWER_OFF:
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001173 mmc_omap_set_power(slot, 0, ios->vdd);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001174 break;
1175 case MMC_POWER_UP:
Tony Lindgren46a67302007-05-01 16:34:16 +02001176 /* Cannot touch dsor yet, just power up MMC */
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001177 mmc_omap_set_power(slot, 1, ios->vdd);
1178 goto exit;
Tony Lindgren46a67302007-05-01 16:34:16 +02001179 case MMC_POWER_ON:
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -04001180 mmc_omap_fclk_enable(host, 1);
1181 clk_enabled = 1;
Juha Yrjola juha.yrjolac5cb4312006-11-11 23:42:39 +01001182 dsor |= 1 << 11;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001183 break;
1184 }
1185
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001186 if (slot->bus_mode != ios->bus_mode) {
1187 if (slot->pdata->set_bus_mode != NULL)
1188 slot->pdata->set_bus_mode(mmc_dev(mmc), slot->id,
1189 ios->bus_mode);
1190 slot->bus_mode = ios->bus_mode;
1191 }
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001192
1193 /* On insanely high arm_per frequencies something sometimes
1194 * goes somehow out of sync, and the POW bit is not being set,
1195 * which results in the while loop below getting stuck.
1196 * Writing to the CON register twice seems to do the trick. */
1197 for (i = 0; i < 2; i++)
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +01001198 OMAP_MMC_WRITE(host, CON, dsor);
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001199 slot->saved_con = dsor;
Tony Lindgren46a67302007-05-01 16:34:16 +02001200 if (ios->power_mode == MMC_POWER_ON) {
Jarkko Lavinen9d7c6ee2008-03-26 16:10:02 -04001201 /* worst case at 400kHz, 80 cycles makes 200 microsecs */
1202 int usecs = 250;
1203
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001204 /* Send clock cycles, poll completion */
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +01001205 OMAP_MMC_WRITE(host, IE, 0);
1206 OMAP_MMC_WRITE(host, STAT, 0xffff);
Juha Yrjola juha.yrjolac5cb4312006-11-11 23:42:39 +01001207 OMAP_MMC_WRITE(host, CMD, 1 << 7);
Jarkko Lavinen9d7c6ee2008-03-26 16:10:02 -04001208 while (usecs > 0 && (OMAP_MMC_READ(host, STAT) & 1) == 0) {
1209 udelay(1);
1210 usecs--;
1211 }
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +01001212 OMAP_MMC_WRITE(host, STAT, 1);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001213 }
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001214
1215exit:
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -04001216 mmc_omap_release_slot(slot, clk_enabled);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001217}
1218
David Brownellab7aefd2006-11-12 17:55:30 -08001219static const struct mmc_host_ops mmc_omap_ops = {
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001220 .request = mmc_omap_request,
1221 .set_ios = mmc_omap_set_ios,
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001222};
1223
Tony Lindgren4f837792012-06-06 09:44:09 -04001224static int __devinit mmc_omap_new_slot(struct mmc_omap_host *host, int id)
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001225{
1226 struct mmc_omap_slot *slot = NULL;
1227 struct mmc_host *mmc;
1228 int r;
1229
1230 mmc = mmc_alloc_host(sizeof(struct mmc_omap_slot), host->dev);
1231 if (mmc == NULL)
1232 return -ENOMEM;
1233
1234 slot = mmc_priv(mmc);
1235 slot->host = host;
1236 slot->mmc = mmc;
1237 slot->id = id;
1238 slot->pdata = &host->pdata->slots[id];
1239
1240 host->slots[id] = slot;
1241
Pierre Ossman23af6032008-07-06 01:10:27 +02001242 mmc->caps = 0;
Tony Lindgren90c62bf2008-12-10 17:37:17 -08001243 if (host->pdata->slots[id].wires >= 4)
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001244 mmc->caps |= MMC_CAP_4_BIT_DATA;
1245
1246 mmc->ops = &mmc_omap_ops;
1247 mmc->f_min = 400000;
1248
Tony Lindgren53db20d2012-10-15 12:10:33 -07001249 if (mmc_omap2())
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001250 mmc->f_max = 48000000;
1251 else
1252 mmc->f_max = 24000000;
1253 if (host->pdata->max_freq)
1254 mmc->f_max = min(host->pdata->max_freq, mmc->f_max);
1255 mmc->ocr_avail = slot->pdata->ocr_mask;
1256
1257 /* Use scatterlist DMA to reduce per-transfer costs.
1258 * NOTE max_seg_size assumption that small blocks aren't
1259 * normally used (except e.g. for reading SD registers).
1260 */
Martin K. Petersena36274e2010-09-10 01:33:59 -04001261 mmc->max_segs = 32;
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001262 mmc->max_blk_size = 2048; /* BLEN is 11 bits (+1) */
1263 mmc->max_blk_count = 2048; /* NBLK is 11 bits (+1) */
1264 mmc->max_req_size = mmc->max_blk_size * mmc->max_blk_count;
1265 mmc->max_seg_size = mmc->max_req_size;
1266
1267 r = mmc_add_host(mmc);
1268 if (r < 0)
1269 goto err_remove_host;
1270
1271 if (slot->pdata->name != NULL) {
1272 r = device_create_file(&mmc->class_dev,
1273 &dev_attr_slot_name);
1274 if (r < 0)
1275 goto err_remove_host;
1276 }
1277
Juha Yrjola5a0f3f12008-03-26 16:09:08 -04001278 if (slot->pdata->get_cover_state != NULL) {
1279 r = device_create_file(&mmc->class_dev,
1280 &dev_attr_cover_switch);
1281 if (r < 0)
1282 goto err_remove_slot_name;
1283
Jarkko Lavinen7584d272008-03-26 16:09:42 -04001284 setup_timer(&slot->cover_timer, mmc_omap_cover_timer,
1285 (unsigned long)slot);
1286 tasklet_init(&slot->cover_tasklet, mmc_omap_cover_handler,
1287 (unsigned long)slot);
1288 tasklet_schedule(&slot->cover_tasklet);
Juha Yrjola5a0f3f12008-03-26 16:09:08 -04001289 }
1290
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001291 return 0;
1292
Juha Yrjola5a0f3f12008-03-26 16:09:08 -04001293err_remove_slot_name:
1294 if (slot->pdata->name != NULL)
1295 device_remove_file(&mmc->class_dev, &dev_attr_slot_name);
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001296err_remove_host:
1297 mmc_remove_host(mmc);
1298 mmc_free_host(mmc);
1299 return r;
1300}
1301
1302static void mmc_omap_remove_slot(struct mmc_omap_slot *slot)
1303{
1304 struct mmc_host *mmc = slot->mmc;
1305
1306 if (slot->pdata->name != NULL)
1307 device_remove_file(&mmc->class_dev, &dev_attr_slot_name);
Juha Yrjola5a0f3f12008-03-26 16:09:08 -04001308 if (slot->pdata->get_cover_state != NULL)
1309 device_remove_file(&mmc->class_dev, &dev_attr_cover_switch);
1310
Jarkko Lavinen7584d272008-03-26 16:09:42 -04001311 tasklet_kill(&slot->cover_tasklet);
1312 del_timer_sync(&slot->cover_timer);
Venkatraman Sb01a4f12012-05-08 17:05:33 +05301313 flush_workqueue(slot->host->mmc_omap_wq);
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001314
1315 mmc_remove_host(mmc);
1316 mmc_free_host(mmc);
1317}
1318
Venkatraman Sb6e07032012-05-08 17:05:34 +05301319static int __devinit mmc_omap_probe(struct platform_device *pdev)
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001320{
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001321 struct omap_mmc_platform_data *pdata = pdev->dev.platform_data;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001322 struct mmc_omap_host *host = NULL;
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001323 struct resource *res;
Russell King3451c062012-04-21 22:35:42 +01001324 dma_cap_mask_t mask;
1325 unsigned sig;
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001326 int i, ret = 0;
Tony Lindgrence9c1a82006-07-01 19:56:44 +01001327 int irq;
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001328
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001329 if (pdata == NULL) {
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001330 dev_err(&pdev->dev, "platform data missing\n");
1331 return -ENXIO;
1332 }
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001333 if (pdata->nr_slots == 0) {
1334 dev_err(&pdev->dev, "no slots\n");
1335 return -ENXIO;
1336 }
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001337
1338 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Tony Lindgrence9c1a82006-07-01 19:56:44 +01001339 irq = platform_get_irq(pdev, 0);
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001340 if (res == NULL || irq < 0)
Tony Lindgrence9c1a82006-07-01 19:56:44 +01001341 return -ENXIO;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001342
Chris Ball20920142011-03-22 16:34:41 -07001343 res = request_mem_region(res->start, resource_size(res),
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001344 pdev->name);
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001345 if (res == NULL)
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001346 return -EBUSY;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001347
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001348 host = kzalloc(sizeof(struct mmc_omap_host), GFP_KERNEL);
1349 if (host == NULL) {
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001350 ret = -ENOMEM;
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001351 goto err_free_mem_region;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001352 }
1353
Jarkko Lavinen0f602ec2008-03-26 16:09:58 -04001354 INIT_WORK(&host->slot_release_work, mmc_omap_slot_release_work);
1355 INIT_WORK(&host->send_stop_work, mmc_omap_send_stop_work);
1356
Jarkko Lavinen0fb47232008-03-26 16:09:48 -04001357 INIT_WORK(&host->cmd_abort_work, mmc_omap_abort_command);
1358 setup_timer(&host->cmd_abort_timer, mmc_omap_cmd_timer,
1359 (unsigned long) host);
Jarkko Lavineneb1860b2008-03-26 16:09:29 -04001360
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -04001361 spin_lock_init(&host->clk_lock);
1362 setup_timer(&host->clk_timer, mmc_omap_clk_timer, (unsigned long) host);
1363
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001364 spin_lock_init(&host->dma_lock);
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001365 spin_lock_init(&host->slot_lock);
1366 init_waitqueue_head(&host->slot_wq);
1367
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001368 host->pdata = pdata;
Tony Lindgren53db20d2012-10-15 12:10:33 -07001369 host->features = host->pdata->slots[0].features;
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001370 host->dev = &pdev->dev;
1371 platform_set_drvdata(pdev, host);
1372
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001373 host->id = pdev->id;
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001374 host->mem_res = res;
Tony Lindgrence9c1a82006-07-01 19:56:44 +01001375 host->irq = irq;
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001376 host->use_dma = 1;
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001377 host->irq = irq;
1378 host->phys_base = host->mem_res->start;
Chris Ball20920142011-03-22 16:34:41 -07001379 host->virt_base = ioremap(res->start, resource_size(res));
Russell King55c381e2008-09-04 14:07:22 +01001380 if (!host->virt_base)
1381 goto err_ioremap;
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001382
Russell Kingd4a36645a2009-01-23 19:03:37 +00001383 host->iclk = clk_get(&pdev->dev, "ick");
Ladislav Michle799acb2009-12-14 18:01:24 -08001384 if (IS_ERR(host->iclk)) {
1385 ret = PTR_ERR(host->iclk);
Russell Kingd4a36645a2009-01-23 19:03:37 +00001386 goto err_free_mmc_host;
Ladislav Michle799acb2009-12-14 18:01:24 -08001387 }
Russell Kingd4a36645a2009-01-23 19:03:37 +00001388 clk_enable(host->iclk);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001389
Russell King5c9e02b2009-01-19 20:53:30 +00001390 host->fclk = clk_get(&pdev->dev, "fck");
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001391 if (IS_ERR(host->fclk)) {
1392 ret = PTR_ERR(host->fclk);
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001393 goto err_free_iclk;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001394 }
1395
Russell King3451c062012-04-21 22:35:42 +01001396 dma_cap_zero(mask);
1397 dma_cap_set(DMA_SLAVE, mask);
1398
1399 host->dma_tx_burst = -1;
1400 host->dma_rx_burst = -1;
1401
Tony Lindgren53db20d2012-10-15 12:10:33 -07001402 if (mmc_omap2())
Russell King3451c062012-04-21 22:35:42 +01001403 sig = host->id == 0 ? OMAP24XX_DMA_MMC1_TX : OMAP24XX_DMA_MMC2_TX;
1404 else
1405 sig = host->id == 0 ? OMAP_DMA_MMC_TX : OMAP_DMA_MMC2_TX;
1406 host->dma_tx = dma_request_channel(mask, omap_dma_filter_fn, &sig);
1407#if 0
1408 if (!host->dma_tx) {
1409 dev_err(host->dev, "unable to obtain TX DMA engine channel %u\n",
1410 sig);
1411 goto err_dma;
1412 }
1413#else
1414 if (!host->dma_tx)
1415 dev_warn(host->dev, "unable to obtain TX DMA engine channel %u\n",
1416 sig);
1417#endif
Tony Lindgren53db20d2012-10-15 12:10:33 -07001418 if (mmc_omap2())
Russell King3451c062012-04-21 22:35:42 +01001419 sig = host->id == 0 ? OMAP24XX_DMA_MMC1_RX : OMAP24XX_DMA_MMC2_RX;
1420 else
1421 sig = host->id == 0 ? OMAP_DMA_MMC_RX : OMAP_DMA_MMC2_RX;
1422 host->dma_rx = dma_request_channel(mask, omap_dma_filter_fn, &sig);
1423#if 0
1424 if (!host->dma_rx) {
1425 dev_err(host->dev, "unable to obtain RX DMA engine channel %u\n",
1426 sig);
1427 goto err_dma;
1428 }
1429#else
1430 if (!host->dma_rx)
1431 dev_warn(host->dev, "unable to obtain RX DMA engine channel %u\n",
1432 sig);
1433#endif
1434
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001435 ret = request_irq(host->irq, mmc_omap_irq, 0, DRIVER_NAME, host);
1436 if (ret)
Russell King3451c062012-04-21 22:35:42 +01001437 goto err_free_dma;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001438
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001439 if (pdata->init != NULL) {
1440 ret = pdata->init(&pdev->dev);
1441 if (ret < 0)
1442 goto err_free_irq;
1443 }
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001444
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001445 host->nr_slots = pdata->nr_slots;
Tony Lindgren53db20d2012-10-15 12:10:33 -07001446 host->reg_shift = (mmc_omap7xx() ? 1 : 2);
Tony Lindgren3caf4142012-06-06 09:45:50 -04001447
1448 host->mmc_omap_wq = alloc_workqueue("mmc_omap", 0, 0);
1449 if (!host->mmc_omap_wq)
1450 goto err_plat_cleanup;
1451
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001452 for (i = 0; i < pdata->nr_slots; i++) {
1453 ret = mmc_omap_new_slot(host, i);
1454 if (ret < 0) {
1455 while (--i >= 0)
1456 mmc_omap_remove_slot(host->slots[i]);
1457
Tony Lindgren3caf4142012-06-06 09:45:50 -04001458 goto err_destroy_wq;
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001459 }
1460 }
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001461
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001462 return 0;
1463
Tony Lindgren3caf4142012-06-06 09:45:50 -04001464err_destroy_wq:
1465 destroy_workqueue(host->mmc_omap_wq);
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001466err_plat_cleanup:
1467 if (pdata->cleanup)
1468 pdata->cleanup(&pdev->dev);
1469err_free_irq:
1470 free_irq(host->irq, host);
Russell King3451c062012-04-21 22:35:42 +01001471err_free_dma:
1472 if (host->dma_tx)
1473 dma_release_channel(host->dma_tx);
1474 if (host->dma_rx)
1475 dma_release_channel(host->dma_rx);
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001476 clk_put(host->fclk);
1477err_free_iclk:
Ladislav Michle799acb2009-12-14 18:01:24 -08001478 clk_disable(host->iclk);
1479 clk_put(host->iclk);
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001480err_free_mmc_host:
Russell King55c381e2008-09-04 14:07:22 +01001481 iounmap(host->virt_base);
1482err_ioremap:
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001483 kfree(host);
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001484err_free_mem_region:
Chris Ball20920142011-03-22 16:34:41 -07001485 release_mem_region(res->start, resource_size(res));
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001486 return ret;
1487}
1488
Venkatraman Sb6e07032012-05-08 17:05:34 +05301489static int __devexit mmc_omap_remove(struct platform_device *pdev)
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001490{
1491 struct mmc_omap_host *host = platform_get_drvdata(pdev);
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001492 int i;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001493
1494 platform_set_drvdata(pdev, NULL);
1495
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001496 BUG_ON(host == NULL);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001497
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001498 for (i = 0; i < host->nr_slots; i++)
1499 mmc_omap_remove_slot(host->slots[i]);
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001500
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001501 if (host->pdata->cleanup)
1502 host->pdata->cleanup(&pdev->dev);
1503
Russell Kingd4a36645a2009-01-23 19:03:37 +00001504 mmc_omap_fclk_enable(host, 0);
Ladislav Michl49c1d9d2009-11-11 14:26:43 -08001505 free_irq(host->irq, host);
Russell Kingd4a36645a2009-01-23 19:03:37 +00001506 clk_put(host->fclk);
1507 clk_disable(host->iclk);
1508 clk_put(host->iclk);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001509
Russell King3451c062012-04-21 22:35:42 +01001510 if (host->dma_tx)
1511 dma_release_channel(host->dma_tx);
1512 if (host->dma_rx)
1513 dma_release_channel(host->dma_rx);
1514
Russell King55c381e2008-09-04 14:07:22 +01001515 iounmap(host->virt_base);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001516 release_mem_region(pdev->resource[0].start,
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001517 pdev->resource[0].end - pdev->resource[0].start + 1);
Venkatraman Sb01a4f12012-05-08 17:05:33 +05301518 destroy_workqueue(host->mmc_omap_wq);
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001519
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001520 kfree(host);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001521
1522 return 0;
1523}
1524
1525#ifdef CONFIG_PM
1526static int mmc_omap_suspend(struct platform_device *pdev, pm_message_t mesg)
1527{
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001528 int i, ret = 0;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001529 struct mmc_omap_host *host = platform_get_drvdata(pdev);
1530
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001531 if (host == NULL || host->suspended)
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001532 return 0;
1533
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001534 for (i = 0; i < host->nr_slots; i++) {
1535 struct mmc_omap_slot *slot;
1536
1537 slot = host->slots[i];
Matt Fleming1a13f8f2010-05-26 14:42:08 -07001538 ret = mmc_suspend_host(slot->mmc);
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001539 if (ret < 0) {
1540 while (--i >= 0) {
1541 slot = host->slots[i];
1542 mmc_resume_host(slot->mmc);
1543 }
1544 return ret;
1545 }
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001546 }
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001547 host->suspended = 1;
1548 return 0;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001549}
1550
1551static int mmc_omap_resume(struct platform_device *pdev)
1552{
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001553 int i, ret = 0;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001554 struct mmc_omap_host *host = platform_get_drvdata(pdev);
1555
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001556 if (host == NULL || !host->suspended)
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001557 return 0;
1558
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001559 for (i = 0; i < host->nr_slots; i++) {
1560 struct mmc_omap_slot *slot;
1561 slot = host->slots[i];
1562 ret = mmc_resume_host(slot->mmc);
1563 if (ret < 0)
1564 return ret;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001565
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001566 host->suspended = 0;
1567 }
1568 return 0;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001569}
1570#else
1571#define mmc_omap_suspend NULL
1572#define mmc_omap_resume NULL
1573#endif
1574
1575static struct platform_driver mmc_omap_driver = {
Venkatraman Sb6e07032012-05-08 17:05:34 +05301576 .probe = mmc_omap_probe,
1577 .remove = __devexit_p(mmc_omap_remove),
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001578 .suspend = mmc_omap_suspend,
1579 .resume = mmc_omap_resume,
1580 .driver = {
1581 .name = DRIVER_NAME,
Kay Sieversbc65c722008-04-15 14:34:28 -07001582 .owner = THIS_MODULE,
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001583 },
1584};
1585
Venkatraman S680f1b52012-05-08 17:05:35 +05301586module_platform_driver(mmc_omap_driver);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001587MODULE_DESCRIPTION("OMAP Multimedia Card driver");
1588MODULE_LICENSE("GPL");
Kay Sieversbc65c722008-04-15 14:34:28 -07001589MODULE_ALIAS("platform:" DRIVER_NAME);
Al Virod36b6912011-12-29 17:09:01 -05001590MODULE_AUTHOR("Juha Yrjölä");