blob: f23d65eb070d85eaaef5929c6ee4c14a5d0c5a36 [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>
Tony Lindgren9cb238c2013-11-26 15:50:33 -080025#include <linux/of.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>
Jarkko Nikulab13d1f02014-02-22 18:01:43 +020028#include <linux/mmc/mmc.h>
Carlos Aguiar730c9b72006-03-29 09:21:00 +010029#include <linux/clk.h>
Jens Axboe45711f12007-10-22 21:19:53 +020030#include <linux/scatterlist.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090031#include <linux/slab.h>
Tony Lindgren68f39e72012-10-15 12:09:43 -070032#include <linux/platform_data/mmc-omap.h>
Carlos Aguiar730c9b72006-03-29 09:21:00 +010033
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 Belisko0e950fa62010-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 Belisko0e950fa62010-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#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;
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400108
Jarkko Lavinen7584d272008-03-26 16:09:42 -0400109 struct tasklet_struct cover_tasklet;
110 struct timer_list cover_timer;
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400111 unsigned cover_open;
112
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400113 struct mmc_request *mrq;
114 struct mmc_omap_host *host;
115 struct mmc_host *mmc;
116 struct omap_mmc_slot_data *pdata;
117};
118
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100119struct mmc_omap_host {
120 int initialized;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100121 struct mmc_request * mrq;
122 struct mmc_command * cmd;
123 struct mmc_data * data;
124 struct mmc_host * mmc;
125 struct device * dev;
126 unsigned char id; /* 16xx chips have 2 MMC blocks */
127 struct clk * iclk;
128 struct clk * fclk;
Russell King3451c062012-04-21 22:35:42 +0100129 struct dma_chan *dma_rx;
130 u32 dma_rx_burst;
131 struct dma_chan *dma_tx;
132 u32 dma_tx_burst;
Juha Yrjola juha.yrjola89783b1e42006-11-11 23:36:01 +0100133 void __iomem *virt_base;
134 unsigned int phys_base;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100135 int irq;
136 unsigned char 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
Tony Lindgren53db20d2012-10-15 12:10:33 -0700154 unsigned features;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100155 unsigned brs_received:1, dma_done:1;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100156 unsigned dma_in_use:1;
Russell King3451c062012-04-21 22:35:42 +0100157 spinlock_t dma_lock;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100158
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400159 struct mmc_omap_slot *slots[OMAP_MMC_MAX_SLOTS];
160 struct mmc_omap_slot *current_slot;
161 spinlock_t slot_lock;
162 wait_queue_head_t slot_wq;
163 int nr_slots;
164
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -0400165 struct timer_list clk_timer;
166 spinlock_t clk_lock; /* for changing enabled state */
167 unsigned int fclk_enabled:1;
Venkatraman Sb01a4f12012-05-08 17:05:33 +0530168 struct workqueue_struct *mmc_omap_wq;
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -0400169
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400170 struct omap_mmc_platform_data *pdata;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100171};
172
Tejun Heo0d9ee5b2010-12-24 16:00:17 +0100173
Russell King7c8ad982008-09-05 15:13:24 +0100174static void mmc_omap_fclk_offdelay(struct mmc_omap_slot *slot)
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -0400175{
176 unsigned long tick_ns;
177
178 if (slot != NULL && slot->host->fclk_enabled && slot->fclk_freq > 0) {
Axel Lin03a16852014-05-03 09:07:42 +0800179 tick_ns = DIV_ROUND_UP(NSEC_PER_SEC, slot->fclk_freq);
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -0400180 ndelay(8 * tick_ns);
181 }
182}
183
Russell King7c8ad982008-09-05 15:13:24 +0100184static void mmc_omap_fclk_enable(struct mmc_omap_host *host, unsigned int enable)
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -0400185{
186 unsigned long flags;
187
188 spin_lock_irqsave(&host->clk_lock, flags);
189 if (host->fclk_enabled != enable) {
190 host->fclk_enabled = enable;
191 if (enable)
192 clk_enable(host->fclk);
193 else
194 clk_disable(host->fclk);
195 }
196 spin_unlock_irqrestore(&host->clk_lock, flags);
197}
198
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400199static void mmc_omap_select_slot(struct mmc_omap_slot *slot, int claimed)
200{
201 struct mmc_omap_host *host = slot->host;
202 unsigned long flags;
203
204 if (claimed)
205 goto no_claim;
206 spin_lock_irqsave(&host->slot_lock, flags);
207 while (host->mmc != NULL) {
208 spin_unlock_irqrestore(&host->slot_lock, flags);
209 wait_event(host->slot_wq, host->mmc == NULL);
210 spin_lock_irqsave(&host->slot_lock, flags);
211 }
212 host->mmc = slot->mmc;
213 spin_unlock_irqrestore(&host->slot_lock, flags);
214no_claim:
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -0400215 del_timer(&host->clk_timer);
216 if (host->current_slot != slot || !claimed)
217 mmc_omap_fclk_offdelay(host->current_slot);
218
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400219 if (host->current_slot != slot) {
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -0400220 OMAP_MMC_WRITE(host, CON, slot->saved_con & 0xFC00);
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400221 if (host->pdata->switch_slot != NULL)
222 host->pdata->switch_slot(mmc_dev(slot->mmc), slot->id);
223 host->current_slot = slot;
224 }
225
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -0400226 if (claimed) {
227 mmc_omap_fclk_enable(host, 1);
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400228
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -0400229 /* Doing the dummy read here seems to work around some bug
230 * at least in OMAP24xx silicon where the command would not
231 * start after writing the CMD register. Sigh. */
232 OMAP_MMC_READ(host, CON);
233
234 OMAP_MMC_WRITE(host, CON, slot->saved_con);
235 } else
236 mmc_omap_fclk_enable(host, 0);
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400237}
238
239static void mmc_omap_start_request(struct mmc_omap_host *host,
240 struct mmc_request *req);
241
Jarkko Lavinen0f602ec2008-03-26 16:09:58 -0400242static void mmc_omap_slot_release_work(struct work_struct *work)
243{
244 struct mmc_omap_host *host = container_of(work, struct mmc_omap_host,
245 slot_release_work);
246 struct mmc_omap_slot *next_slot = host->next_slot;
247 struct mmc_request *rq;
248
249 host->next_slot = NULL;
250 mmc_omap_select_slot(next_slot, 1);
251
252 rq = next_slot->mrq;
253 next_slot->mrq = NULL;
254 mmc_omap_start_request(host, rq);
255}
256
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -0400257static void mmc_omap_release_slot(struct mmc_omap_slot *slot, int clk_enabled)
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400258{
259 struct mmc_omap_host *host = slot->host;
260 unsigned long flags;
261 int i;
262
263 BUG_ON(slot == NULL || host->mmc == NULL);
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -0400264
265 if (clk_enabled)
266 /* Keeps clock running for at least 8 cycles on valid freq */
267 mod_timer(&host->clk_timer, jiffies + HZ/10);
268 else {
269 del_timer(&host->clk_timer);
270 mmc_omap_fclk_offdelay(slot);
271 mmc_omap_fclk_enable(host, 0);
272 }
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400273
274 spin_lock_irqsave(&host->slot_lock, flags);
275 /* Check for any pending requests */
276 for (i = 0; i < host->nr_slots; i++) {
277 struct mmc_omap_slot *new_slot;
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400278
279 if (host->slots[i] == NULL || host->slots[i]->mrq == NULL)
280 continue;
281
Jarkko Lavinen0f602ec2008-03-26 16:09:58 -0400282 BUG_ON(host->next_slot != NULL);
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400283 new_slot = host->slots[i];
284 /* The current slot should not have a request in queue */
285 BUG_ON(new_slot == host->current_slot);
286
Jarkko Lavinen0f602ec2008-03-26 16:09:58 -0400287 host->next_slot = new_slot;
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400288 host->mmc = new_slot->mmc;
289 spin_unlock_irqrestore(&host->slot_lock, flags);
Venkatraman Sb01a4f12012-05-08 17:05:33 +0530290 queue_work(host->mmc_omap_wq, &host->slot_release_work);
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400291 return;
292 }
293
294 host->mmc = NULL;
295 wake_up(&host->slot_wq);
296 spin_unlock_irqrestore(&host->slot_lock, flags);
297}
298
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400299static inline
300int mmc_omap_cover_is_open(struct mmc_omap_slot *slot)
301{
Kyungmin Park8348f002008-03-26 16:09:38 -0400302 if (slot->pdata->get_cover_state)
303 return slot->pdata->get_cover_state(mmc_dev(slot->mmc),
304 slot->id);
305 return 0;
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400306}
307
308static ssize_t
309mmc_omap_show_cover_switch(struct device *dev, struct device_attribute *attr,
310 char *buf)
311{
312 struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
313 struct mmc_omap_slot *slot = mmc_priv(mmc);
314
315 return sprintf(buf, "%s\n", mmc_omap_cover_is_open(slot) ? "open" :
316 "closed");
317}
318
319static DEVICE_ATTR(cover_switch, S_IRUGO, mmc_omap_show_cover_switch, NULL);
320
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400321static ssize_t
322mmc_omap_show_slot_name(struct device *dev, struct device_attribute *attr,
323 char *buf)
324{
325 struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
326 struct mmc_omap_slot *slot = mmc_priv(mmc);
327
328 return sprintf(buf, "%s\n", slot->pdata->name);
329}
330
331static DEVICE_ATTR(slot_name, S_IRUGO, mmc_omap_show_slot_name, NULL);
332
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100333static void
334mmc_omap_start_command(struct mmc_omap_host *host, struct mmc_command *cmd)
335{
336 u32 cmdreg;
337 u32 resptype;
338 u32 cmdtype;
Jarkko Nikulab13d1f02014-02-22 18:01:43 +0200339 u16 irq_mask;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100340
341 host->cmd = cmd;
342
343 resptype = 0;
344 cmdtype = 0;
345
346 /* Our hardware needs to know exact type */
Carlos Eduardo Aguiar1b3b2632007-01-15 06:38:15 +0100347 switch (mmc_resp_type(cmd)) {
348 case MMC_RSP_NONE:
349 break;
350 case MMC_RSP_R1:
351 case MMC_RSP_R1B:
Philip Langdale6f949902007-01-04 07:04:47 -0800352 /* resp 1, 1b, 6, 7 */
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100353 resptype = 1;
354 break;
Carlos Eduardo Aguiar1b3b2632007-01-15 06:38:15 +0100355 case MMC_RSP_R2:
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100356 resptype = 2;
357 break;
Carlos Eduardo Aguiar1b3b2632007-01-15 06:38:15 +0100358 case MMC_RSP_R3:
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100359 resptype = 3;
360 break;
361 default:
Carlos Eduardo Aguiar1b3b2632007-01-15 06:38:15 +0100362 dev_err(mmc_dev(host->mmc), "Invalid response type: %04x\n", mmc_resp_type(cmd));
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100363 break;
364 }
365
366 if (mmc_cmd_type(cmd) == MMC_CMD_ADTC) {
367 cmdtype = OMAP_MMC_CMDTYPE_ADTC;
368 } else if (mmc_cmd_type(cmd) == MMC_CMD_BC) {
369 cmdtype = OMAP_MMC_CMDTYPE_BC;
370 } else if (mmc_cmd_type(cmd) == MMC_CMD_BCR) {
371 cmdtype = OMAP_MMC_CMDTYPE_BCR;
372 } else {
373 cmdtype = OMAP_MMC_CMDTYPE_AC;
374 }
375
376 cmdreg = cmd->opcode | (resptype << 8) | (cmdtype << 12);
377
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400378 if (host->current_slot->bus_mode == MMC_BUSMODE_OPENDRAIN)
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100379 cmdreg |= 1 << 6;
380
381 if (cmd->flags & MMC_RSP_BUSY)
382 cmdreg |= 1 << 11;
383
384 if (host->data && !(host->data->flags & MMC_DATA_WRITE))
385 cmdreg |= 1 << 15;
386
Jarkko Lavinen0fb47232008-03-26 16:09:48 -0400387 mod_timer(&host->cmd_abort_timer, jiffies + HZ/2);
Jarkko Lavineneb1860b2008-03-26 16:09:29 -0400388
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100389 OMAP_MMC_WRITE(host, CTO, 200);
390 OMAP_MMC_WRITE(host, ARGL, cmd->arg & 0xffff);
391 OMAP_MMC_WRITE(host, ARGH, cmd->arg >> 16);
Jarkko Nikulab13d1f02014-02-22 18:01:43 +0200392 irq_mask = OMAP_MMC_STAT_A_EMPTY | OMAP_MMC_STAT_A_FULL |
393 OMAP_MMC_STAT_CMD_CRC | OMAP_MMC_STAT_CMD_TOUT |
394 OMAP_MMC_STAT_DATA_CRC | OMAP_MMC_STAT_DATA_TOUT |
395 OMAP_MMC_STAT_END_OF_CMD | OMAP_MMC_STAT_CARD_ERR |
396 OMAP_MMC_STAT_END_OF_DATA;
397 if (cmd->opcode == MMC_ERASE)
398 irq_mask &= ~OMAP_MMC_STAT_DATA_TOUT;
399 OMAP_MMC_WRITE(host, IE, irq_mask);
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100400 OMAP_MMC_WRITE(host, CMD, cmdreg);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100401}
402
403static void
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400404mmc_omap_release_dma(struct mmc_omap_host *host, struct mmc_data *data,
405 int abort)
406{
407 enum dma_data_direction dma_data_dir;
Russell King3451c062012-04-21 22:35:42 +0100408 struct device *dev = mmc_dev(host->mmc);
409 struct dma_chan *c;
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400410
Russell King3451c062012-04-21 22:35:42 +0100411 if (data->flags & MMC_DATA_WRITE) {
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400412 dma_data_dir = DMA_TO_DEVICE;
Russell King3451c062012-04-21 22:35:42 +0100413 c = host->dma_tx;
414 } else {
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400415 dma_data_dir = DMA_FROM_DEVICE;
Russell King3451c062012-04-21 22:35:42 +0100416 c = host->dma_rx;
417 }
418 if (c) {
419 if (data->error) {
420 dmaengine_terminate_all(c);
421 /* Claim nothing transferred on error... */
422 data->bytes_xfered = 0;
423 }
424 dev = c->device->dev;
425 }
426 dma_unmap_sg(dev, data->sg, host->sg_len, dma_data_dir);
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400427}
428
Jarkko Lavinen0f602ec2008-03-26 16:09:58 -0400429static void mmc_omap_send_stop_work(struct work_struct *work)
430{
431 struct mmc_omap_host *host = container_of(work, struct mmc_omap_host,
432 send_stop_work);
433 struct mmc_omap_slot *slot = host->current_slot;
434 struct mmc_data *data = host->stop_data;
435 unsigned long tick_ns;
436
Axel Lin03a16852014-05-03 09:07:42 +0800437 tick_ns = DIV_ROUND_UP(NSEC_PER_SEC, slot->fclk_freq);
Jarkko Lavinen0f602ec2008-03-26 16:09:58 -0400438 ndelay(8*tick_ns);
439
440 mmc_omap_start_command(host, data->stop);
441}
442
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400443static void
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100444mmc_omap_xfer_done(struct mmc_omap_host *host, struct mmc_data *data)
445{
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400446 if (host->dma_in_use)
447 mmc_omap_release_dma(host, data, data->error);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100448
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100449 host->data = NULL;
450 host->sg_len = 0;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100451
452 /* NOTE: MMC layer will sometimes poll-wait CMD13 next, issuing
453 * dozens of requests until the card finishes writing data.
454 * It'd be cheaper to just wait till an EOFB interrupt arrives...
455 */
456
457 if (!data->stop) {
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400458 struct mmc_host *mmc;
459
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100460 host->mrq = NULL;
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400461 mmc = host->mmc;
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -0400462 mmc_omap_release_slot(host->current_slot, 1);
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400463 mmc_request_done(mmc, data->mrq);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100464 return;
465 }
466
Jarkko Lavinen0f602ec2008-03-26 16:09:58 -0400467 host->stop_data = data;
Venkatraman Sb01a4f12012-05-08 17:05:33 +0530468 queue_work(host->mmc_omap_wq, &host->send_stop_work);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100469}
470
471static void
Jarkko Lavinen0fb47232008-03-26 16:09:48 -0400472mmc_omap_send_abort(struct mmc_omap_host *host, int maxloops)
Jarkko Lavineneb1860b2008-03-26 16:09:29 -0400473{
474 struct mmc_omap_slot *slot = host->current_slot;
475 unsigned int restarts, passes, timeout;
476 u16 stat = 0;
477
478 /* Sending abort takes 80 clocks. Have some extra and round up */
Axel Lin03a16852014-05-03 09:07:42 +0800479 timeout = DIV_ROUND_UP(120 * USEC_PER_SEC, slot->fclk_freq);
Jarkko Lavineneb1860b2008-03-26 16:09:29 -0400480 restarts = 0;
Jarkko Lavinen0fb47232008-03-26 16:09:48 -0400481 while (restarts < maxloops) {
Jarkko Lavineneb1860b2008-03-26 16:09:29 -0400482 OMAP_MMC_WRITE(host, STAT, 0xFFFF);
483 OMAP_MMC_WRITE(host, CMD, (3 << 12) | (1 << 7));
484
485 passes = 0;
486 while (passes < timeout) {
487 stat = OMAP_MMC_READ(host, STAT);
488 if (stat & OMAP_MMC_STAT_END_OF_CMD)
489 goto out;
490 udelay(1);
491 passes++;
492 }
493
494 restarts++;
495 }
496out:
497 OMAP_MMC_WRITE(host, STAT, stat);
498}
499
500static void
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400501mmc_omap_abort_xfer(struct mmc_omap_host *host, struct mmc_data *data)
502{
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400503 if (host->dma_in_use)
504 mmc_omap_release_dma(host, data, 1);
505
506 host->data = NULL;
507 host->sg_len = 0;
508
Jarkko Lavinen0fb47232008-03-26 16:09:48 -0400509 mmc_omap_send_abort(host, 10000);
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400510}
511
512static void
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100513mmc_omap_end_of_data(struct mmc_omap_host *host, struct mmc_data *data)
514{
515 unsigned long flags;
516 int done;
517
518 if (!host->dma_in_use) {
519 mmc_omap_xfer_done(host, data);
520 return;
521 }
522 done = 0;
523 spin_lock_irqsave(&host->dma_lock, flags);
524 if (host->dma_done)
525 done = 1;
526 else
527 host->brs_received = 1;
528 spin_unlock_irqrestore(&host->dma_lock, flags);
529 if (done)
530 mmc_omap_xfer_done(host, data);
531}
532
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100533static void
534mmc_omap_dma_done(struct mmc_omap_host *host, struct mmc_data *data)
535{
536 unsigned long flags;
537 int done;
538
539 done = 0;
540 spin_lock_irqsave(&host->dma_lock, flags);
541 if (host->brs_received)
542 done = 1;
543 else
544 host->dma_done = 1;
545 spin_unlock_irqrestore(&host->dma_lock, flags);
546 if (done)
547 mmc_omap_xfer_done(host, data);
548}
549
550static void
551mmc_omap_cmd_done(struct mmc_omap_host *host, struct mmc_command *cmd)
552{
553 host->cmd = NULL;
554
Jarkko Lavinen0fb47232008-03-26 16:09:48 -0400555 del_timer(&host->cmd_abort_timer);
Jarkko Lavineneb1860b2008-03-26 16:09:29 -0400556
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100557 if (cmd->flags & MMC_RSP_PRESENT) {
558 if (cmd->flags & MMC_RSP_136) {
559 /* response type 2 */
560 cmd->resp[3] =
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100561 OMAP_MMC_READ(host, RSP0) |
562 (OMAP_MMC_READ(host, RSP1) << 16);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100563 cmd->resp[2] =
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100564 OMAP_MMC_READ(host, RSP2) |
565 (OMAP_MMC_READ(host, RSP3) << 16);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100566 cmd->resp[1] =
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100567 OMAP_MMC_READ(host, RSP4) |
568 (OMAP_MMC_READ(host, RSP5) << 16);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100569 cmd->resp[0] =
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100570 OMAP_MMC_READ(host, RSP6) |
571 (OMAP_MMC_READ(host, RSP7) << 16);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100572 } else {
573 /* response types 1, 1b, 3, 4, 5, 6 */
574 cmd->resp[0] =
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100575 OMAP_MMC_READ(host, RSP6) |
576 (OMAP_MMC_READ(host, RSP7) << 16);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100577 }
578 }
579
Pierre Ossman17b04292007-07-22 22:18:46 +0200580 if (host->data == NULL || cmd->error) {
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400581 struct mmc_host *mmc;
582
583 if (host->data != NULL)
584 mmc_omap_abort_xfer(host, host->data);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100585 host->mrq = NULL;
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400586 mmc = host->mmc;
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -0400587 mmc_omap_release_slot(host->current_slot, 1);
Juha Yrjolaa914ded2008-03-26 16:09:12 -0400588 mmc_request_done(mmc, cmd->mrq);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100589 }
590}
591
Jarkko Lavineneb1860b2008-03-26 16:09:29 -0400592/*
593 * Abort stuck command. Can occur when card is removed while it is being
594 * read.
595 */
596static void mmc_omap_abort_command(struct work_struct *work)
597{
598 struct mmc_omap_host *host = container_of(work, struct mmc_omap_host,
Jarkko Lavinen0fb47232008-03-26 16:09:48 -0400599 cmd_abort_work);
600 BUG_ON(!host->cmd);
Jarkko Lavineneb1860b2008-03-26 16:09:29 -0400601
602 dev_dbg(mmc_dev(host->mmc), "Aborting stuck command CMD%d\n",
603 host->cmd->opcode);
604
Jarkko Lavinen0fb47232008-03-26 16:09:48 -0400605 if (host->cmd->error == 0)
606 host->cmd->error = -ETIMEDOUT;
Jarkko Lavineneb1860b2008-03-26 16:09:29 -0400607
Jarkko Lavinen0fb47232008-03-26 16:09:48 -0400608 if (host->data == NULL) {
609 struct mmc_command *cmd;
610 struct mmc_host *mmc;
Jarkko Lavineneb1860b2008-03-26 16:09:29 -0400611
Jarkko Lavinen0fb47232008-03-26 16:09:48 -0400612 cmd = host->cmd;
613 host->cmd = NULL;
614 mmc_omap_send_abort(host, 10000);
615
616 host->mrq = NULL;
617 mmc = host->mmc;
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -0400618 mmc_omap_release_slot(host->current_slot, 1);
Jarkko Lavinen0fb47232008-03-26 16:09:48 -0400619 mmc_request_done(mmc, cmd->mrq);
620 } else
621 mmc_omap_cmd_done(host, host->cmd);
622
623 host->abort = 0;
624 enable_irq(host->irq);
Jarkko Lavineneb1860b2008-03-26 16:09:29 -0400625}
626
627static void
628mmc_omap_cmd_timer(unsigned long data)
629{
630 struct mmc_omap_host *host = (struct mmc_omap_host *) data;
Jarkko Lavinen0fb47232008-03-26 16:09:48 -0400631 unsigned long flags;
Jarkko Lavineneb1860b2008-03-26 16:09:29 -0400632
Jarkko Lavinen0fb47232008-03-26 16:09:48 -0400633 spin_lock_irqsave(&host->slot_lock, flags);
634 if (host->cmd != NULL && !host->abort) {
635 OMAP_MMC_WRITE(host, IE, 0);
636 disable_irq(host->irq);
637 host->abort = 1;
Venkatraman Sb01a4f12012-05-08 17:05:33 +0530638 queue_work(host->mmc_omap_wq, &host->cmd_abort_work);
Jarkko Lavinen0fb47232008-03-26 16:09:48 -0400639 }
640 spin_unlock_irqrestore(&host->slot_lock, flags);
Jarkko Lavineneb1860b2008-03-26 16:09:29 -0400641}
642
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100643/* PIO only */
644static void
645mmc_omap_sg_to_buf(struct mmc_omap_host *host)
646{
647 struct scatterlist *sg;
648
649 sg = host->data->sg + host->sg_idx;
650 host->buffer_bytes_left = sg->length;
Jens Axboe45711f12007-10-22 21:19:53 +0200651 host->buffer = sg_virt(sg);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100652 if (host->buffer_bytes_left > host->total_bytes_left)
653 host->buffer_bytes_left = host->total_bytes_left;
654}
655
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -0400656static void
657mmc_omap_clk_timer(unsigned long data)
658{
659 struct mmc_omap_host *host = (struct mmc_omap_host *) data;
660
661 mmc_omap_fclk_enable(host, 0);
662}
663
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100664/* PIO only */
665static void
666mmc_omap_xfer_data(struct mmc_omap_host *host, int write)
667{
Paul Walmsley75b53ae2012-08-24 06:00:18 +0000668 int n, nwords;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100669
670 if (host->buffer_bytes_left == 0) {
671 host->sg_idx++;
672 BUG_ON(host->sg_idx == host->sg_len);
673 mmc_omap_sg_to_buf(host);
674 }
675 n = 64;
676 if (n > host->buffer_bytes_left)
677 n = host->buffer_bytes_left;
Paul Walmsley75b53ae2012-08-24 06:00:18 +0000678
Axel Lin03a16852014-05-03 09:07:42 +0800679 /* Round up to handle odd number of bytes to transfer */
680 nwords = DIV_ROUND_UP(n, 2);
Paul Walmsley75b53ae2012-08-24 06:00:18 +0000681
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100682 host->buffer_bytes_left -= n;
683 host->total_bytes_left -= n;
684 host->data->bytes_xfered += n;
685
686 if (write) {
Paul Walmsley75b53ae2012-08-24 06:00:18 +0000687 __raw_writesw(host->virt_base + OMAP_MMC_REG(host, DATA),
688 host->buffer, nwords);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100689 } else {
Paul Walmsley75b53ae2012-08-24 06:00:18 +0000690 __raw_readsw(host->virt_base + OMAP_MMC_REG(host, DATA),
691 host->buffer, nwords);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100692 }
Paul Walmsley75b53ae2012-08-24 06:00:18 +0000693
694 host->buffer += nwords;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100695}
696
Venkatraman S75d569d2012-08-07 19:03:01 +0530697#ifdef CONFIG_MMC_DEBUG
698static void mmc_omap_report_irq(struct mmc_omap_host *host, u16 status)
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100699{
700 static const char *mmc_omap_status_bits[] = {
701 "EOC", "CD", "CB", "BRS", "EOFB", "DTO", "DCRC", "CTO",
702 "CCRC", "CRW", "AF", "AE", "OCRB", "CIRQ", "CERR"
703 };
Venkatraman S75d569d2012-08-07 19:03:01 +0530704 int i;
705 char res[64], *buf = res;
706
707 buf += sprintf(buf, "MMC IRQ 0x%x:", status);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100708
709 for (i = 0; i < ARRAY_SIZE(mmc_omap_status_bits); i++)
Venkatraman S75d569d2012-08-07 19:03:01 +0530710 if (status & (1 << i))
711 buf += sprintf(buf, " %s", mmc_omap_status_bits[i]);
712 dev_vdbg(mmc_dev(host->mmc), "%s\n", res);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100713}
Venkatraman S75d569d2012-08-07 19:03:01 +0530714#else
715static void mmc_omap_report_irq(struct mmc_omap_host *host, u16 status)
716{
717}
718#endif
719
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100720
David Howells7d12e782006-10-05 14:55:46 +0100721static irqreturn_t mmc_omap_irq(int irq, void *dev_id)
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100722{
723 struct mmc_omap_host * host = (struct mmc_omap_host *)dev_id;
724 u16 status;
725 int end_command;
726 int end_transfer;
Juha Yrjola2a50b882008-03-26 16:09:26 -0400727 int transfer_error, cmd_error;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100728
729 if (host->cmd == NULL && host->data == NULL) {
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100730 status = OMAP_MMC_READ(host, STAT);
Juha Yrjola2a50b882008-03-26 16:09:26 -0400731 dev_info(mmc_dev(host->slots[0]->mmc),
732 "Spurious IRQ 0x%04x\n", status);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100733 if (status != 0) {
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100734 OMAP_MMC_WRITE(host, STAT, status);
735 OMAP_MMC_WRITE(host, IE, 0);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100736 }
737 return IRQ_HANDLED;
738 }
739
740 end_command = 0;
741 end_transfer = 0;
742 transfer_error = 0;
Juha Yrjola2a50b882008-03-26 16:09:26 -0400743 cmd_error = 0;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100744
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100745 while ((status = OMAP_MMC_READ(host, STAT)) != 0) {
Juha Yrjola2a50b882008-03-26 16:09:26 -0400746 int cmd;
747
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100748 OMAP_MMC_WRITE(host, STAT, status);
Juha Yrjola2a50b882008-03-26 16:09:26 -0400749 if (host->cmd != NULL)
750 cmd = host->cmd->opcode;
751 else
752 cmd = -1;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100753 dev_dbg(mmc_dev(host->mmc), "MMC IRQ %04x (CMD %d): ",
Juha Yrjola2a50b882008-03-26 16:09:26 -0400754 status, cmd);
Venkatraman S75d569d2012-08-07 19:03:01 +0530755 mmc_omap_report_irq(host, status);
756
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100757 if (host->total_bytes_left) {
758 if ((status & OMAP_MMC_STAT_A_FULL) ||
759 (status & OMAP_MMC_STAT_END_OF_DATA))
760 mmc_omap_xfer_data(host, 0);
761 if (status & OMAP_MMC_STAT_A_EMPTY)
762 mmc_omap_xfer_data(host, 1);
763 }
764
Juha Yrjola2a50b882008-03-26 16:09:26 -0400765 if (status & OMAP_MMC_STAT_END_OF_DATA)
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100766 end_transfer = 1;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100767
768 if (status & OMAP_MMC_STAT_DATA_TOUT) {
Juha Yrjola2a50b882008-03-26 16:09:26 -0400769 dev_dbg(mmc_dev(host->mmc), "data timeout (CMD%d)\n",
770 cmd);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100771 if (host->data) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200772 host->data->error = -ETIMEDOUT;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100773 transfer_error = 1;
774 }
775 }
776
777 if (status & OMAP_MMC_STAT_DATA_CRC) {
778 if (host->data) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200779 host->data->error = -EILSEQ;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100780 dev_dbg(mmc_dev(host->mmc),
781 "data CRC error, bytes left %d\n",
782 host->total_bytes_left);
783 transfer_error = 1;
784 } else {
785 dev_dbg(mmc_dev(host->mmc), "data CRC error\n");
786 }
787 }
788
789 if (status & OMAP_MMC_STAT_CMD_TOUT) {
790 /* Timeouts are routine with some commands */
791 if (host->cmd) {
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -0400792 struct mmc_omap_slot *slot =
793 host->current_slot;
Juha Yrjola2a50b882008-03-26 16:09:26 -0400794 if (slot == NULL ||
795 !mmc_omap_cover_is_open(slot))
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400796 dev_err(mmc_dev(host->mmc),
Juha Yrjola2a50b882008-03-26 16:09:26 -0400797 "command timeout (CMD%d)\n",
798 cmd);
Pierre Ossman17b04292007-07-22 22:18:46 +0200799 host->cmd->error = -ETIMEDOUT;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100800 end_command = 1;
Juha Yrjola2a50b882008-03-26 16:09:26 -0400801 cmd_error = 1;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100802 }
803 }
804
805 if (status & OMAP_MMC_STAT_CMD_CRC) {
806 if (host->cmd) {
807 dev_err(mmc_dev(host->mmc),
808 "command CRC error (CMD%d, arg 0x%08x)\n",
Juha Yrjola2a50b882008-03-26 16:09:26 -0400809 cmd, host->cmd->arg);
Pierre Ossman17b04292007-07-22 22:18:46 +0200810 host->cmd->error = -EILSEQ;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100811 end_command = 1;
Juha Yrjola2a50b882008-03-26 16:09:26 -0400812 cmd_error = 1;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100813 } else
814 dev_err(mmc_dev(host->mmc),
815 "command CRC error without cmd?\n");
816 }
817
818 if (status & OMAP_MMC_STAT_CARD_ERR) {
Ragner Magalhaes0107a4b2007-06-13 19:09:28 +0200819 dev_dbg(mmc_dev(host->mmc),
820 "ignoring card status error (CMD%d)\n",
Juha Yrjola2a50b882008-03-26 16:09:26 -0400821 cmd);
Ragner Magalhaes0107a4b2007-06-13 19:09:28 +0200822 end_command = 1;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100823 }
824
825 /*
826 * NOTE: On 1610 the END_OF_CMD may come too early when
Juha Yrjola2a50b882008-03-26 16:09:26 -0400827 * starting a write
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100828 */
829 if ((status & OMAP_MMC_STAT_END_OF_CMD) &&
830 (!(status & OMAP_MMC_STAT_A_EMPTY))) {
831 end_command = 1;
832 }
833 }
834
Jarkko Lavinen0fb47232008-03-26 16:09:48 -0400835 if (cmd_error && host->data) {
836 del_timer(&host->cmd_abort_timer);
837 host->abort = 1;
838 OMAP_MMC_WRITE(host, IE, 0);
Ben Nizettee749c6f2009-04-16 15:55:21 +1000839 disable_irq_nosync(host->irq);
Venkatraman Sb01a4f12012-05-08 17:05:33 +0530840 queue_work(host->mmc_omap_wq, &host->cmd_abort_work);
Jarkko Lavinen0fb47232008-03-26 16:09:48 -0400841 return IRQ_HANDLED;
842 }
843
Michael Bueschf6947512011-04-11 17:00:44 -0400844 if (end_command && host->cmd)
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100845 mmc_omap_cmd_done(host, host->cmd);
Juha Yrjola2a50b882008-03-26 16:09:26 -0400846 if (host->data != NULL) {
847 if (transfer_error)
848 mmc_omap_xfer_done(host, host->data);
849 else if (end_transfer)
850 mmc_omap_end_of_data(host, host->data);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100851 }
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100852
853 return IRQ_HANDLED;
854}
855
Jarkko Lavinen7584d272008-03-26 16:09:42 -0400856void omap_mmc_notify_cover_event(struct device *dev, int num, int is_closed)
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400857{
Jarkko Lavinen7584d272008-03-26 16:09:42 -0400858 int cover_open;
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400859 struct mmc_omap_host *host = dev_get_drvdata(dev);
Jarkko Lavinen7584d272008-03-26 16:09:42 -0400860 struct mmc_omap_slot *slot = host->slots[num];
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400861
Jarkko Lavinen7584d272008-03-26 16:09:42 -0400862 BUG_ON(num >= host->nr_slots);
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400863
864 /* Other subsystems can call in here before we're initialised. */
Jarkko Lavinen7584d272008-03-26 16:09:42 -0400865 if (host->nr_slots == 0 || !host->slots[num])
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400866 return;
867
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400868 cover_open = mmc_omap_cover_is_open(slot);
869 if (cover_open != slot->cover_open) {
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400870 slot->cover_open = cover_open;
Jarkko Lavinen7584d272008-03-26 16:09:42 -0400871 sysfs_notify(&slot->mmc->class_dev.kobj, NULL, "cover_switch");
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400872 }
Jarkko Lavinen7584d272008-03-26 16:09:42 -0400873
874 tasklet_hi_schedule(&slot->cover_tasklet);
875}
876
877static void mmc_omap_cover_timer(unsigned long arg)
878{
879 struct mmc_omap_slot *slot = (struct mmc_omap_slot *) arg;
880 tasklet_schedule(&slot->cover_tasklet);
881}
882
883static void mmc_omap_cover_handler(unsigned long param)
884{
885 struct mmc_omap_slot *slot = (struct mmc_omap_slot *)param;
886 int cover_open = mmc_omap_cover_is_open(slot);
887
888 mmc_detect_change(slot->mmc, 0);
889 if (!cover_open)
890 return;
891
892 /*
893 * If no card is inserted, we postpone polling until
894 * the cover has been closed.
895 */
896 if (slot->mmc->card == NULL || !mmc_card_present(slot->mmc->card))
897 return;
898
899 mod_timer(&slot->cover_timer,
900 jiffies + msecs_to_jiffies(OMAP_MMC_COVER_POLL_DELAY));
Juha Yrjola5a0f3f12008-03-26 16:09:08 -0400901}
902
Russell King3451c062012-04-21 22:35:42 +0100903static void mmc_omap_dma_callback(void *priv)
904{
905 struct mmc_omap_host *host = priv;
906 struct mmc_data *data = host->data;
907
908 /* If we got to the end of DMA, assume everything went well */
909 data->bytes_xfered += data->blocks * data->blksz;
910
911 mmc_omap_dma_done(host, data);
912}
913
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100914static inline void set_cmd_timeout(struct mmc_omap_host *host, struct mmc_request *req)
915{
916 u16 reg;
917
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100918 reg = OMAP_MMC_READ(host, SDIO);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100919 reg &= ~(1 << 5);
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100920 OMAP_MMC_WRITE(host, SDIO, reg);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100921 /* Set maximum timeout */
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100922 OMAP_MMC_WRITE(host, CTO, 0xff);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100923}
924
925static inline void set_data_timeout(struct mmc_omap_host *host, struct mmc_request *req)
926{
Juha Yrjolab8f9f0e2008-03-26 16:09:16 -0400927 unsigned int timeout, cycle_ns;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100928 u16 reg;
929
Juha Yrjolab8f9f0e2008-03-26 16:09:16 -0400930 cycle_ns = 1000000000 / host->current_slot->fclk_freq;
931 timeout = req->data->timeout_ns / cycle_ns;
932 timeout += req->data->timeout_clks;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100933
934 /* Check if we need to use timeout multiplier register */
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100935 reg = OMAP_MMC_READ(host, SDIO);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100936 if (timeout > 0xffff) {
937 reg |= (1 << 5);
938 timeout /= 1024;
939 } else
940 reg &= ~(1 << 5);
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +0100941 OMAP_MMC_WRITE(host, SDIO, reg);
942 OMAP_MMC_WRITE(host, DTO, timeout);
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100943}
944
945static void
946mmc_omap_prepare_data(struct mmc_omap_host *host, struct mmc_request *req)
947{
948 struct mmc_data *data = req->data;
Jarkko Nikulaa6c668f2014-02-22 18:01:42 +0200949 int i, use_dma = 1, block_size;
Fabian Frederick8292adc2015-06-16 21:15:15 +0200950 struct scatterlist *sg;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100951 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 */
Fabian Frederick8292adc2015-06-16 21:15:15 +0200975 for_each_sg(data->sg, sg, sg_len, i) {
976 if ((sg->length % block_size) != 0) {
Jarkko Nikulaa6c668f2014-02-22 18:01:42 +0200977 use_dma = 0;
978 break;
Carlos Aguiar730c9b72006-03-29 09:21:00 +0100979 }
980 }
981
982 host->sg_idx = 0;
983 if (use_dma) {
Russell King3451c062012-04-21 22:35:42 +0100984 enum dma_data_direction dma_data_dir;
985 struct dma_async_tx_descriptor *tx;
986 struct dma_chan *c;
987 u32 burst, *bp;
988 u16 buf;
989
990 /*
991 * FIFO is 16x2 bytes on 15xx, and 32x2 bytes on 16xx
992 * and 24xx. Use 16 or 32 word frames when the
993 * blocksize is at least that large. Blocksize is
994 * usually 512 bytes; but not for some SD reads.
995 */
Tony Lindgren53db20d2012-10-15 12:10:33 -0700996 burst = mmc_omap15xx() ? 32 : 64;
Russell King3451c062012-04-21 22:35:42 +0100997 if (burst > data->blksz)
998 burst = data->blksz;
999
1000 burst >>= 1;
1001
1002 if (data->flags & MMC_DATA_WRITE) {
1003 c = host->dma_tx;
1004 bp = &host->dma_tx_burst;
1005 buf = 0x0f80 | (burst - 1) << 0;
1006 dma_data_dir = DMA_TO_DEVICE;
1007 } else {
1008 c = host->dma_rx;
1009 bp = &host->dma_rx_burst;
1010 buf = 0x800f | (burst - 1) << 8;
1011 dma_data_dir = DMA_FROM_DEVICE;
1012 }
1013
1014 if (!c)
1015 goto use_pio;
1016
1017 /* Only reconfigure if we have a different burst size */
1018 if (*bp != burst) {
1019 struct dma_slave_config cfg;
1020
1021 cfg.src_addr = host->phys_base + OMAP_MMC_REG(host, DATA);
1022 cfg.dst_addr = host->phys_base + OMAP_MMC_REG(host, DATA);
1023 cfg.src_addr_width = DMA_SLAVE_BUSWIDTH_2_BYTES;
1024 cfg.dst_addr_width = DMA_SLAVE_BUSWIDTH_2_BYTES;
1025 cfg.src_maxburst = burst;
1026 cfg.dst_maxburst = burst;
1027
1028 if (dmaengine_slave_config(c, &cfg))
1029 goto use_pio;
1030
1031 *bp = burst;
1032 }
1033
1034 host->sg_len = dma_map_sg(c->device->dev, data->sg, sg_len,
1035 dma_data_dir);
1036 if (host->sg_len == 0)
1037 goto use_pio;
1038
1039 tx = dmaengine_prep_slave_sg(c, data->sg, host->sg_len,
1040 data->flags & MMC_DATA_WRITE ? DMA_MEM_TO_DEV : DMA_DEV_TO_MEM,
1041 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
1042 if (!tx)
1043 goto use_pio;
1044
1045 OMAP_MMC_WRITE(host, BUF, buf);
1046
1047 tx->callback = mmc_omap_dma_callback;
1048 tx->callback_param = host;
1049 dmaengine_submit(tx);
1050 host->brs_received = 0;
1051 host->dma_done = 0;
1052 host->dma_in_use = 1;
1053 return;
1054 }
1055 use_pio:
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001056
1057 /* Revert to PIO? */
Russell King4e078fb2012-04-21 22:41:10 +01001058 OMAP_MMC_WRITE(host, BUF, 0x1f1f);
1059 host->total_bytes_left = data->blocks * block_size;
1060 host->sg_len = sg_len;
1061 mmc_omap_sg_to_buf(host);
1062 host->dma_in_use = 0;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001063}
1064
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001065static void mmc_omap_start_request(struct mmc_omap_host *host,
1066 struct mmc_request *req)
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001067{
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001068 BUG_ON(host->mrq != NULL);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001069
1070 host->mrq = req;
1071
1072 /* only touch fifo AFTER the controller readies it */
1073 mmc_omap_prepare_data(host, req);
1074 mmc_omap_start_command(host, req->cmd);
Russell King3451c062012-04-21 22:35:42 +01001075 if (host->dma_in_use) {
1076 struct dma_chan *c = host->data->flags & MMC_DATA_WRITE ?
1077 host->dma_tx : host->dma_rx;
1078
Russell King4e078fb2012-04-21 22:41:10 +01001079 dma_async_issue_pending(c);
Russell King3451c062012-04-21 22:35:42 +01001080 }
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001081}
1082
1083static void mmc_omap_request(struct mmc_host *mmc, struct mmc_request *req)
1084{
1085 struct mmc_omap_slot *slot = mmc_priv(mmc);
1086 struct mmc_omap_host *host = slot->host;
1087 unsigned long flags;
1088
1089 spin_lock_irqsave(&host->slot_lock, flags);
1090 if (host->mmc != NULL) {
1091 BUG_ON(slot->mrq != NULL);
1092 slot->mrq = req;
1093 spin_unlock_irqrestore(&host->slot_lock, flags);
1094 return;
1095 } else
1096 host->mmc = mmc;
1097 spin_unlock_irqrestore(&host->slot_lock, flags);
1098 mmc_omap_select_slot(slot, 1);
1099 mmc_omap_start_request(host, req);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001100}
1101
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001102static void mmc_omap_set_power(struct mmc_omap_slot *slot, int power_on,
1103 int vdd)
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001104{
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001105 struct mmc_omap_host *host;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001106
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001107 host = slot->host;
1108
1109 if (slot->pdata->set_power != NULL)
1110 slot->pdata->set_power(mmc_dev(slot->mmc), slot->id, power_on,
1111 vdd);
Tony Lindgren53db20d2012-10-15 12:10:33 -07001112 if (mmc_omap2()) {
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001113 u16 w;
1114
1115 if (power_on) {
1116 w = OMAP_MMC_READ(host, CON);
1117 OMAP_MMC_WRITE(host, CON, w | (1 << 11));
1118 } else {
1119 w = OMAP_MMC_READ(host, CON);
1120 OMAP_MMC_WRITE(host, CON, w & ~(1 << 11));
1121 }
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001122 }
1123}
1124
Tony Lindgrend3af5ab2007-05-01 16:36:00 +02001125static int mmc_omap_calc_divisor(struct mmc_host *mmc, struct mmc_ios *ios)
1126{
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001127 struct mmc_omap_slot *slot = mmc_priv(mmc);
1128 struct mmc_omap_host *host = slot->host;
Tony Lindgrend3af5ab2007-05-01 16:36:00 +02001129 int func_clk_rate = clk_get_rate(host->fclk);
1130 int dsor;
1131
1132 if (ios->clock == 0)
1133 return 0;
1134
1135 dsor = func_clk_rate / ios->clock;
1136 if (dsor < 1)
1137 dsor = 1;
1138
1139 if (func_clk_rate / dsor > ios->clock)
1140 dsor++;
1141
1142 if (dsor > 250)
1143 dsor = 250;
Tony Lindgrend3af5ab2007-05-01 16:36:00 +02001144
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001145 slot->fclk_freq = func_clk_rate / dsor;
1146
Tony Lindgrend3af5ab2007-05-01 16:36:00 +02001147 if (ios->bus_width == MMC_BUS_WIDTH_4)
1148 dsor |= 1 << 15;
1149
1150 return dsor;
1151}
1152
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001153static void mmc_omap_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
1154{
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001155 struct mmc_omap_slot *slot = mmc_priv(mmc);
1156 struct mmc_omap_host *host = slot->host;
1157 int i, dsor;
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -04001158 int clk_enabled;
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001159
1160 mmc_omap_select_slot(slot, 0);
1161
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -04001162 dsor = mmc_omap_calc_divisor(mmc, ios);
1163
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001164 if (ios->vdd != slot->vdd)
1165 slot->vdd = ios->vdd;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001166
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -04001167 clk_enabled = 0;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001168 switch (ios->power_mode) {
1169 case MMC_POWER_OFF:
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001170 mmc_omap_set_power(slot, 0, ios->vdd);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001171 break;
1172 case MMC_POWER_UP:
Tony Lindgren46a67302007-05-01 16:34:16 +02001173 /* Cannot touch dsor yet, just power up MMC */
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001174 mmc_omap_set_power(slot, 1, ios->vdd);
1175 goto exit;
Tony Lindgren46a67302007-05-01 16:34:16 +02001176 case MMC_POWER_ON:
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -04001177 mmc_omap_fclk_enable(host, 1);
1178 clk_enabled = 1;
Juha Yrjola juha.yrjolac5cb4312006-11-11 23:42:39 +01001179 dsor |= 1 << 11;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001180 break;
1181 }
1182
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001183 if (slot->bus_mode != ios->bus_mode) {
1184 if (slot->pdata->set_bus_mode != NULL)
1185 slot->pdata->set_bus_mode(mmc_dev(mmc), slot->id,
1186 ios->bus_mode);
1187 slot->bus_mode = ios->bus_mode;
1188 }
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001189
1190 /* On insanely high arm_per frequencies something sometimes
1191 * goes somehow out of sync, and the POW bit is not being set,
1192 * which results in the while loop below getting stuck.
1193 * Writing to the CON register twice seems to do the trick. */
1194 for (i = 0; i < 2; i++)
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +01001195 OMAP_MMC_WRITE(host, CON, dsor);
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001196 slot->saved_con = dsor;
Tony Lindgren46a67302007-05-01 16:34:16 +02001197 if (ios->power_mode == MMC_POWER_ON) {
Jarkko Lavinen9d7c6ee2008-03-26 16:10:02 -04001198 /* worst case at 400kHz, 80 cycles makes 200 microsecs */
1199 int usecs = 250;
1200
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001201 /* Send clock cycles, poll completion */
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +01001202 OMAP_MMC_WRITE(host, IE, 0);
1203 OMAP_MMC_WRITE(host, STAT, 0xffff);
Juha Yrjola juha.yrjolac5cb4312006-11-11 23:42:39 +01001204 OMAP_MMC_WRITE(host, CMD, 1 << 7);
Jarkko Lavinen9d7c6ee2008-03-26 16:10:02 -04001205 while (usecs > 0 && (OMAP_MMC_READ(host, STAT) & 1) == 0) {
1206 udelay(1);
1207 usecs--;
1208 }
Juha Yrjola juha.yrjola3342ee82006-11-11 23:36:52 +01001209 OMAP_MMC_WRITE(host, STAT, 1);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001210 }
Juha Yrjola65b5b6e2008-03-26 16:09:22 -04001211
1212exit:
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -04001213 mmc_omap_release_slot(slot, clk_enabled);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001214}
1215
David Brownellab7aefd2006-11-12 17:55:30 -08001216static const struct mmc_host_ops mmc_omap_ops = {
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001217 .request = mmc_omap_request,
1218 .set_ios = mmc_omap_set_ios,
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001219};
1220
Bill Pembertonc3be1ef2012-11-19 13:23:06 -05001221static int mmc_omap_new_slot(struct mmc_omap_host *host, int id)
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001222{
1223 struct mmc_omap_slot *slot = NULL;
1224 struct mmc_host *mmc;
1225 int r;
1226
1227 mmc = mmc_alloc_host(sizeof(struct mmc_omap_slot), host->dev);
1228 if (mmc == NULL)
1229 return -ENOMEM;
1230
1231 slot = mmc_priv(mmc);
1232 slot->host = host;
1233 slot->mmc = mmc;
1234 slot->id = id;
1235 slot->pdata = &host->pdata->slots[id];
1236
1237 host->slots[id] = slot;
1238
Pierre Ossman23af6032008-07-06 01:10:27 +02001239 mmc->caps = 0;
Tony Lindgren90c62bf2008-12-10 17:37:17 -08001240 if (host->pdata->slots[id].wires >= 4)
Jarkko Nikulab13d1f02014-02-22 18:01:43 +02001241 mmc->caps |= MMC_CAP_4_BIT_DATA | MMC_CAP_ERASE;
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001242
1243 mmc->ops = &mmc_omap_ops;
1244 mmc->f_min = 400000;
1245
Tony Lindgren53db20d2012-10-15 12:10:33 -07001246 if (mmc_omap2())
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001247 mmc->f_max = 48000000;
1248 else
1249 mmc->f_max = 24000000;
1250 if (host->pdata->max_freq)
1251 mmc->f_max = min(host->pdata->max_freq, mmc->f_max);
1252 mmc->ocr_avail = slot->pdata->ocr_mask;
1253
1254 /* Use scatterlist DMA to reduce per-transfer costs.
1255 * NOTE max_seg_size assumption that small blocks aren't
1256 * normally used (except e.g. for reading SD registers).
1257 */
Martin K. Petersena36274e2010-09-10 01:33:59 -04001258 mmc->max_segs = 32;
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001259 mmc->max_blk_size = 2048; /* BLEN is 11 bits (+1) */
1260 mmc->max_blk_count = 2048; /* NBLK is 11 bits (+1) */
1261 mmc->max_req_size = mmc->max_blk_size * mmc->max_blk_count;
1262 mmc->max_seg_size = mmc->max_req_size;
1263
Jarkko Nikula0e5c93e2014-02-22 18:01:37 +02001264 if (slot->pdata->get_cover_state != NULL) {
1265 setup_timer(&slot->cover_timer, mmc_omap_cover_timer,
1266 (unsigned long)slot);
1267 tasklet_init(&slot->cover_tasklet, mmc_omap_cover_handler,
1268 (unsigned long)slot);
1269 }
1270
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001271 r = mmc_add_host(mmc);
1272 if (r < 0)
1273 goto err_remove_host;
1274
1275 if (slot->pdata->name != NULL) {
1276 r = device_create_file(&mmc->class_dev,
1277 &dev_attr_slot_name);
1278 if (r < 0)
1279 goto err_remove_host;
1280 }
1281
Juha Yrjola5a0f3f12008-03-26 16:09:08 -04001282 if (slot->pdata->get_cover_state != NULL) {
1283 r = device_create_file(&mmc->class_dev,
1284 &dev_attr_cover_switch);
1285 if (r < 0)
1286 goto err_remove_slot_name;
Jarkko Lavinen7584d272008-03-26 16:09:42 -04001287 tasklet_schedule(&slot->cover_tasklet);
Juha Yrjola5a0f3f12008-03-26 16:09:08 -04001288 }
1289
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001290 return 0;
1291
Juha Yrjola5a0f3f12008-03-26 16:09:08 -04001292err_remove_slot_name:
1293 if (slot->pdata->name != NULL)
1294 device_remove_file(&mmc->class_dev, &dev_attr_slot_name);
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001295err_remove_host:
1296 mmc_remove_host(mmc);
1297 mmc_free_host(mmc);
1298 return r;
1299}
1300
1301static void mmc_omap_remove_slot(struct mmc_omap_slot *slot)
1302{
1303 struct mmc_host *mmc = slot->mmc;
1304
1305 if (slot->pdata->name != NULL)
1306 device_remove_file(&mmc->class_dev, &dev_attr_slot_name);
Juha Yrjola5a0f3f12008-03-26 16:09:08 -04001307 if (slot->pdata->get_cover_state != NULL)
1308 device_remove_file(&mmc->class_dev, &dev_attr_cover_switch);
1309
Jarkko Lavinen7584d272008-03-26 16:09:42 -04001310 tasklet_kill(&slot->cover_tasklet);
1311 del_timer_sync(&slot->cover_timer);
Venkatraman Sb01a4f12012-05-08 17:05:33 +05301312 flush_workqueue(slot->host->mmc_omap_wq);
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001313
1314 mmc_remove_host(mmc);
1315 mmc_free_host(mmc);
1316}
1317
Bill Pembertonc3be1ef2012-11-19 13:23:06 -05001318static int mmc_omap_probe(struct platform_device *pdev)
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001319{
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001320 struct omap_mmc_platform_data *pdata = pdev->dev.platform_data;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001321 struct mmc_omap_host *host = NULL;
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001322 struct resource *res;
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001323 int i, ret = 0;
Tony Lindgrence9c1a82006-07-01 19:56:44 +01001324 int irq;
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001325
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001326 if (pdata == NULL) {
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001327 dev_err(&pdev->dev, "platform data missing\n");
1328 return -ENXIO;
1329 }
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001330 if (pdata->nr_slots == 0) {
1331 dev_err(&pdev->dev, "no slots\n");
Tony Lindgren9cb238c2013-11-26 15:50:33 -08001332 return -EPROBE_DEFER;
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001333 }
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001334
Jarkko Nikulaae9b79c2014-02-22 18:01:38 +02001335 host = devm_kzalloc(&pdev->dev, sizeof(struct mmc_omap_host),
1336 GFP_KERNEL);
Jarkko Nikula64ac16e2014-02-22 18:01:41 +02001337 if (host == NULL)
1338 return -ENOMEM;
1339
1340 irq = platform_get_irq(pdev, 0);
1341 if (irq < 0)
1342 return -ENXIO;
1343
1344 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1345 host->virt_base = devm_ioremap_resource(&pdev->dev, res);
1346 if (IS_ERR(host->virt_base))
1347 return PTR_ERR(host->virt_base);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001348
Jarkko Lavinen0f602ec2008-03-26 16:09:58 -04001349 INIT_WORK(&host->slot_release_work, mmc_omap_slot_release_work);
1350 INIT_WORK(&host->send_stop_work, mmc_omap_send_stop_work);
1351
Jarkko Lavinen0fb47232008-03-26 16:09:48 -04001352 INIT_WORK(&host->cmd_abort_work, mmc_omap_abort_command);
1353 setup_timer(&host->cmd_abort_timer, mmc_omap_cmd_timer,
1354 (unsigned long) host);
Jarkko Lavineneb1860b2008-03-26 16:09:29 -04001355
Jarkko Lavinen0807a9b2008-03-26 16:09:52 -04001356 spin_lock_init(&host->clk_lock);
1357 setup_timer(&host->clk_timer, mmc_omap_clk_timer, (unsigned long) host);
1358
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001359 spin_lock_init(&host->dma_lock);
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001360 spin_lock_init(&host->slot_lock);
1361 init_waitqueue_head(&host->slot_wq);
1362
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001363 host->pdata = pdata;
Tony Lindgren53db20d2012-10-15 12:10:33 -07001364 host->features = host->pdata->slots[0].features;
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001365 host->dev = &pdev->dev;
1366 platform_set_drvdata(pdev, host);
1367
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001368 host->id = pdev->id;
Tony Lindgrence9c1a82006-07-01 19:56:44 +01001369 host->irq = irq;
Jarkko Nikula2ca5dc62014-02-22 18:01:40 +02001370 host->phys_base = res->start;
Russell Kingd4a36645a2009-01-23 19:03:37 +00001371 host->iclk = clk_get(&pdev->dev, "ick");
Jarkko Nikula64ac16e2014-02-22 18:01:41 +02001372 if (IS_ERR(host->iclk))
1373 return PTR_ERR(host->iclk);
Russell Kingd4a36645a2009-01-23 19:03:37 +00001374 clk_enable(host->iclk);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001375
Russell King5c9e02b2009-01-19 20:53:30 +00001376 host->fclk = clk_get(&pdev->dev, "fck");
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001377 if (IS_ERR(host->fclk)) {
1378 ret = PTR_ERR(host->fclk);
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001379 goto err_free_iclk;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001380 }
1381
Russell King3451c062012-04-21 22:35:42 +01001382 host->dma_tx_burst = -1;
1383 host->dma_rx_burst = -1;
1384
Peter Ujfalusid15b08f2016-05-04 11:23:08 +03001385 host->dma_tx = dma_request_chan(&pdev->dev, "tx");
1386 if (IS_ERR(host->dma_tx)) {
1387 ret = PTR_ERR(host->dma_tx);
1388 if (ret == -EPROBE_DEFER) {
1389 clk_put(host->fclk);
1390 goto err_free_iclk;
1391 }
Tony Lindgren31ee9182013-11-26 15:50:33 -08001392
Peter Ujfalusid15b08f2016-05-04 11:23:08 +03001393 host->dma_tx = NULL;
1394 dev_warn(host->dev, "TX DMA channel request failed\n");
1395 }
1396
1397 host->dma_rx = dma_request_chan(&pdev->dev, "rx");
1398 if (IS_ERR(host->dma_rx)) {
1399 ret = PTR_ERR(host->dma_rx);
1400 if (ret == -EPROBE_DEFER) {
1401 if (host->dma_tx)
1402 dma_release_channel(host->dma_tx);
1403 clk_put(host->fclk);
1404 goto err_free_iclk;
1405 }
1406
1407 host->dma_rx = NULL;
1408 dev_warn(host->dev, "RX DMA channel request failed\n");
1409 }
Russell King3451c062012-04-21 22:35:42 +01001410
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001411 ret = request_irq(host->irq, mmc_omap_irq, 0, DRIVER_NAME, host);
1412 if (ret)
Russell King3451c062012-04-21 22:35:42 +01001413 goto err_free_dma;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001414
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001415 if (pdata->init != NULL) {
1416 ret = pdata->init(&pdev->dev);
1417 if (ret < 0)
1418 goto err_free_irq;
1419 }
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001420
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001421 host->nr_slots = pdata->nr_slots;
Tony Lindgren53db20d2012-10-15 12:10:33 -07001422 host->reg_shift = (mmc_omap7xx() ? 1 : 2);
Tony Lindgren3caf4142012-06-06 09:45:50 -04001423
1424 host->mmc_omap_wq = alloc_workqueue("mmc_omap", 0, 0);
Julia Lawall38276a92015-08-23 02:11:12 +02001425 if (!host->mmc_omap_wq) {
1426 ret = -ENOMEM;
Tony Lindgren3caf4142012-06-06 09:45:50 -04001427 goto err_plat_cleanup;
Julia Lawall38276a92015-08-23 02:11:12 +02001428 }
Tony Lindgren3caf4142012-06-06 09:45:50 -04001429
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001430 for (i = 0; i < pdata->nr_slots; i++) {
1431 ret = mmc_omap_new_slot(host, i);
1432 if (ret < 0) {
1433 while (--i >= 0)
1434 mmc_omap_remove_slot(host->slots[i]);
1435
Tony Lindgren3caf4142012-06-06 09:45:50 -04001436 goto err_destroy_wq;
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001437 }
1438 }
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001439
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001440 return 0;
1441
Tony Lindgren3caf4142012-06-06 09:45:50 -04001442err_destroy_wq:
1443 destroy_workqueue(host->mmc_omap_wq);
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001444err_plat_cleanup:
1445 if (pdata->cleanup)
1446 pdata->cleanup(&pdev->dev);
1447err_free_irq:
1448 free_irq(host->irq, host);
Russell King3451c062012-04-21 22:35:42 +01001449err_free_dma:
1450 if (host->dma_tx)
1451 dma_release_channel(host->dma_tx);
1452 if (host->dma_rx)
1453 dma_release_channel(host->dma_rx);
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001454 clk_put(host->fclk);
1455err_free_iclk:
Ladislav Michle799acb2009-12-14 18:01:24 -08001456 clk_disable(host->iclk);
1457 clk_put(host->iclk);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001458 return ret;
1459}
1460
Bill Pemberton6e0ee712012-11-19 13:26:03 -05001461static int mmc_omap_remove(struct platform_device *pdev)
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001462{
1463 struct mmc_omap_host *host = platform_get_drvdata(pdev);
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001464 int i;
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001465
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001466 BUG_ON(host == NULL);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001467
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001468 for (i = 0; i < host->nr_slots; i++)
1469 mmc_omap_remove_slot(host->slots[i]);
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001470
Juha Yrjolaabfbe5f2008-03-26 16:08:57 -04001471 if (host->pdata->cleanup)
1472 host->pdata->cleanup(&pdev->dev);
1473
Russell Kingd4a36645a2009-01-23 19:03:37 +00001474 mmc_omap_fclk_enable(host, 0);
Ladislav Michl49c1d9d2009-11-11 14:26:43 -08001475 free_irq(host->irq, host);
Russell Kingd4a36645a2009-01-23 19:03:37 +00001476 clk_put(host->fclk);
1477 clk_disable(host->iclk);
1478 clk_put(host->iclk);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001479
Russell King3451c062012-04-21 22:35:42 +01001480 if (host->dma_tx)
1481 dma_release_channel(host->dma_tx);
1482 if (host->dma_rx)
1483 dma_release_channel(host->dma_rx);
1484
Venkatraman Sb01a4f12012-05-08 17:05:33 +05301485 destroy_workqueue(host->mmc_omap_wq);
Juha Yrjola juha.yrjola81ca7032006-11-11 23:39:20 +01001486
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001487 return 0;
1488}
1489
Tony Lindgren9cb238c2013-11-26 15:50:33 -08001490#if IS_BUILTIN(CONFIG_OF)
1491static const struct of_device_id mmc_omap_match[] = {
1492 { .compatible = "ti,omap2420-mmc", },
1493 { },
1494};
Luis de Bethencourtb73f34c2015-09-17 23:50:25 +02001495MODULE_DEVICE_TABLE(of, mmc_omap_match);
Tony Lindgren9cb238c2013-11-26 15:50:33 -08001496#endif
1497
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001498static struct platform_driver mmc_omap_driver = {
Venkatraman Sb6e07032012-05-08 17:05:34 +05301499 .probe = mmc_omap_probe,
Bill Pemberton0433c142012-11-19 13:20:26 -05001500 .remove = mmc_omap_remove,
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001501 .driver = {
1502 .name = DRIVER_NAME,
Tony Lindgren9cb238c2013-11-26 15:50:33 -08001503 .of_match_table = of_match_ptr(mmc_omap_match),
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001504 },
1505};
1506
Venkatraman S680f1b52012-05-08 17:05:35 +05301507module_platform_driver(mmc_omap_driver);
Carlos Aguiar730c9b72006-03-29 09:21:00 +01001508MODULE_DESCRIPTION("OMAP Multimedia Card driver");
1509MODULE_LICENSE("GPL");
Kay Sieversbc65c722008-04-15 14:34:28 -07001510MODULE_ALIAS("platform:" DRIVER_NAME);
Al Virod36b6912011-12-29 17:09:01 -05001511MODULE_AUTHOR("Juha Yrjölä");