blob: 2ac0b6887ef7e29c7acc4c4fdc5cb25496e5b1ea [file] [log] [blame]
Pierre Ossmand129bce2006-03-24 03:18:17 -08001/*
Pierre Ossman70f10482007-07-11 20:04:50 +02002 * linux/drivers/mmc/host/sdhci.c - Secure Digital Host Controller Interface driver
Pierre Ossmand129bce2006-03-24 03:18:17 -08003 *
Pierre Ossmanb69c9052008-03-08 23:44:25 +01004 * Copyright (C) 2005-2008 Pierre Ossman, All Rights Reserved.
Pierre Ossmand129bce2006-03-24 03:18:17 -08005 *
6 * This program is free software; you can redistribute it and/or modify
Pierre Ossman643f7202006-09-30 23:27:52 -07007 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or (at
9 * your option) any later version.
Pierre Ossman84c46a52007-12-02 19:58:16 +010010 *
11 * Thanks to the following companies for their support:
12 *
13 * - JMicron (hardware and technical support)
Pierre Ossmand129bce2006-03-24 03:18:17 -080014 */
15
Pierre Ossmand129bce2006-03-24 03:18:17 -080016#include <linux/delay.h>
17#include <linux/highmem.h>
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +010018#include <linux/io.h>
Pierre Ossmand129bce2006-03-24 03:18:17 -080019#include <linux/dma-mapping.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Ralf Baechle11763602007-10-23 20:42:11 +020021#include <linux/scatterlist.h>
Marek Szyprowski9bea3c82010-08-10 18:01:59 -070022#include <linux/regulator/consumer.h>
Pierre Ossmand129bce2006-03-24 03:18:17 -080023
Pierre Ossman2f730fe2008-03-17 10:29:38 +010024#include <linux/leds.h>
25
Aries Lee22113ef2010-12-15 08:14:24 +010026#include <linux/mmc/mmc.h>
Pierre Ossmand129bce2006-03-24 03:18:17 -080027#include <linux/mmc/host.h>
Pierre Ossmand129bce2006-03-24 03:18:17 -080028
Pierre Ossmand129bce2006-03-24 03:18:17 -080029#include "sdhci.h"
30
31#define DRIVER_NAME "sdhci"
Pierre Ossmand129bce2006-03-24 03:18:17 -080032
Pierre Ossmand129bce2006-03-24 03:18:17 -080033#define DBG(f, x...) \
Russell Kingc6563172006-03-29 09:30:20 +010034 pr_debug(DRIVER_NAME " [%s()]: " f, __func__,## x)
Pierre Ossmand129bce2006-03-24 03:18:17 -080035
Pierre Ossmanf9134312008-12-21 17:01:48 +010036#if defined(CONFIG_LEDS_CLASS) || (defined(CONFIG_LEDS_CLASS_MODULE) && \
37 defined(CONFIG_MMC_SDHCI_MODULE))
38#define SDHCI_USE_LEDS_CLASS
39#endif
40
Pierre Ossmandf673b22006-06-30 02:22:31 -070041static unsigned int debug_quirks = 0;
Pierre Ossman67435272006-06-30 02:22:31 -070042
Pierre Ossmand129bce2006-03-24 03:18:17 -080043static void sdhci_finish_data(struct sdhci_host *);
44
45static void sdhci_send_command(struct sdhci_host *, struct mmc_command *);
46static void sdhci_finish_command(struct sdhci_host *);
47
48static void sdhci_dumpregs(struct sdhci_host *host)
49{
Philip Rakity412ab652010-09-22 15:25:13 -070050 printk(KERN_DEBUG DRIVER_NAME ": =========== REGISTER DUMP (%s)===========\n",
51 mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -080052
53 printk(KERN_DEBUG DRIVER_NAME ": Sys addr: 0x%08x | Version: 0x%08x\n",
Anton Vorontsov4e4141a2009-03-17 00:13:46 +030054 sdhci_readl(host, SDHCI_DMA_ADDRESS),
55 sdhci_readw(host, SDHCI_HOST_VERSION));
Pierre Ossmand129bce2006-03-24 03:18:17 -080056 printk(KERN_DEBUG DRIVER_NAME ": Blk size: 0x%08x | Blk cnt: 0x%08x\n",
Anton Vorontsov4e4141a2009-03-17 00:13:46 +030057 sdhci_readw(host, SDHCI_BLOCK_SIZE),
58 sdhci_readw(host, SDHCI_BLOCK_COUNT));
Pierre Ossmand129bce2006-03-24 03:18:17 -080059 printk(KERN_DEBUG DRIVER_NAME ": Argument: 0x%08x | Trn mode: 0x%08x\n",
Anton Vorontsov4e4141a2009-03-17 00:13:46 +030060 sdhci_readl(host, SDHCI_ARGUMENT),
61 sdhci_readw(host, SDHCI_TRANSFER_MODE));
Pierre Ossmand129bce2006-03-24 03:18:17 -080062 printk(KERN_DEBUG DRIVER_NAME ": Present: 0x%08x | Host ctl: 0x%08x\n",
Anton Vorontsov4e4141a2009-03-17 00:13:46 +030063 sdhci_readl(host, SDHCI_PRESENT_STATE),
64 sdhci_readb(host, SDHCI_HOST_CONTROL));
Pierre Ossmand129bce2006-03-24 03:18:17 -080065 printk(KERN_DEBUG DRIVER_NAME ": Power: 0x%08x | Blk gap: 0x%08x\n",
Anton Vorontsov4e4141a2009-03-17 00:13:46 +030066 sdhci_readb(host, SDHCI_POWER_CONTROL),
67 sdhci_readb(host, SDHCI_BLOCK_GAP_CONTROL));
Pierre Ossmand129bce2006-03-24 03:18:17 -080068 printk(KERN_DEBUG DRIVER_NAME ": Wake-up: 0x%08x | Clock: 0x%08x\n",
Anton Vorontsov4e4141a2009-03-17 00:13:46 +030069 sdhci_readb(host, SDHCI_WAKE_UP_CONTROL),
70 sdhci_readw(host, SDHCI_CLOCK_CONTROL));
Pierre Ossmand129bce2006-03-24 03:18:17 -080071 printk(KERN_DEBUG DRIVER_NAME ": Timeout: 0x%08x | Int stat: 0x%08x\n",
Anton Vorontsov4e4141a2009-03-17 00:13:46 +030072 sdhci_readb(host, SDHCI_TIMEOUT_CONTROL),
73 sdhci_readl(host, SDHCI_INT_STATUS));
Pierre Ossmand129bce2006-03-24 03:18:17 -080074 printk(KERN_DEBUG DRIVER_NAME ": Int enab: 0x%08x | Sig enab: 0x%08x\n",
Anton Vorontsov4e4141a2009-03-17 00:13:46 +030075 sdhci_readl(host, SDHCI_INT_ENABLE),
76 sdhci_readl(host, SDHCI_SIGNAL_ENABLE));
Pierre Ossmand129bce2006-03-24 03:18:17 -080077 printk(KERN_DEBUG DRIVER_NAME ": AC12 err: 0x%08x | Slot int: 0x%08x\n",
Anton Vorontsov4e4141a2009-03-17 00:13:46 +030078 sdhci_readw(host, SDHCI_ACMD12_ERR),
79 sdhci_readw(host, SDHCI_SLOT_INT_STATUS));
Philip Rakitye8120ad2010-11-30 00:55:23 -050080 printk(KERN_DEBUG DRIVER_NAME ": Caps: 0x%08x | Caps_1: 0x%08x\n",
Anton Vorontsov4e4141a2009-03-17 00:13:46 +030081 sdhci_readl(host, SDHCI_CAPABILITIES),
Philip Rakitye8120ad2010-11-30 00:55:23 -050082 sdhci_readl(host, SDHCI_CAPABILITIES_1));
83 printk(KERN_DEBUG DRIVER_NAME ": Cmd: 0x%08x | Max curr: 0x%08x\n",
84 sdhci_readw(host, SDHCI_COMMAND),
Anton Vorontsov4e4141a2009-03-17 00:13:46 +030085 sdhci_readl(host, SDHCI_MAX_CURRENT));
Pierre Ossmand129bce2006-03-24 03:18:17 -080086
Ben Dooksbe3f4ae2009-06-08 23:33:52 +010087 if (host->flags & SDHCI_USE_ADMA)
88 printk(KERN_DEBUG DRIVER_NAME ": ADMA Err: 0x%08x | ADMA Ptr: 0x%08x\n",
89 readl(host->ioaddr + SDHCI_ADMA_ERROR),
90 readl(host->ioaddr + SDHCI_ADMA_ADDRESS));
91
Pierre Ossmand129bce2006-03-24 03:18:17 -080092 printk(KERN_DEBUG DRIVER_NAME ": ===========================================\n");
93}
94
95/*****************************************************************************\
96 * *
97 * Low level functions *
98 * *
99\*****************************************************************************/
100
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300101static void sdhci_clear_set_irqs(struct sdhci_host *host, u32 clear, u32 set)
102{
103 u32 ier;
104
105 ier = sdhci_readl(host, SDHCI_INT_ENABLE);
106 ier &= ~clear;
107 ier |= set;
108 sdhci_writel(host, ier, SDHCI_INT_ENABLE);
109 sdhci_writel(host, ier, SDHCI_SIGNAL_ENABLE);
110}
111
112static void sdhci_unmask_irqs(struct sdhci_host *host, u32 irqs)
113{
114 sdhci_clear_set_irqs(host, 0, irqs);
115}
116
117static void sdhci_mask_irqs(struct sdhci_host *host, u32 irqs)
118{
119 sdhci_clear_set_irqs(host, irqs, 0);
120}
121
122static void sdhci_set_card_detection(struct sdhci_host *host, bool enable)
123{
124 u32 irqs = SDHCI_INT_CARD_REMOVE | SDHCI_INT_CARD_INSERT;
125
Anton Vorontsov68d1fb72009-03-17 00:13:52 +0300126 if (host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION)
127 return;
128
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300129 if (enable)
130 sdhci_unmask_irqs(host, irqs);
131 else
132 sdhci_mask_irqs(host, irqs);
133}
134
135static void sdhci_enable_card_detection(struct sdhci_host *host)
136{
137 sdhci_set_card_detection(host, true);
138}
139
140static void sdhci_disable_card_detection(struct sdhci_host *host)
141{
142 sdhci_set_card_detection(host, false);
143}
144
Pierre Ossmand129bce2006-03-24 03:18:17 -0800145static void sdhci_reset(struct sdhci_host *host, u8 mask)
146{
Pierre Ossmane16514d82006-06-30 02:22:24 -0700147 unsigned long timeout;
Anton Vorontsov063a9db2009-03-17 00:14:02 +0300148 u32 uninitialized_var(ier);
Pierre Ossmane16514d82006-06-30 02:22:24 -0700149
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +0100150 if (host->quirks & SDHCI_QUIRK_NO_CARD_NO_RESET) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300151 if (!(sdhci_readl(host, SDHCI_PRESENT_STATE) &
Pierre Ossman8a4da142006-10-04 02:15:40 -0700152 SDHCI_CARD_PRESENT))
153 return;
154 }
155
Anton Vorontsov063a9db2009-03-17 00:14:02 +0300156 if (host->quirks & SDHCI_QUIRK_RESTORE_IRQS_AFTER_RESET)
157 ier = sdhci_readl(host, SDHCI_INT_ENABLE);
158
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300159 sdhci_writeb(host, mask, SDHCI_SOFTWARE_RESET);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800160
Pierre Ossmane16514d82006-06-30 02:22:24 -0700161 if (mask & SDHCI_RESET_ALL)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800162 host->clock = 0;
163
Pierre Ossmane16514d82006-06-30 02:22:24 -0700164 /* Wait max 100 ms */
165 timeout = 100;
166
167 /* hw clears the bit when it's done */
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300168 while (sdhci_readb(host, SDHCI_SOFTWARE_RESET) & mask) {
Pierre Ossmane16514d82006-06-30 02:22:24 -0700169 if (timeout == 0) {
Pierre Ossmanacf1da42007-02-09 08:29:19 +0100170 printk(KERN_ERR "%s: Reset 0x%x never completed.\n",
Pierre Ossmane16514d82006-06-30 02:22:24 -0700171 mmc_hostname(host->mmc), (int)mask);
172 sdhci_dumpregs(host);
173 return;
174 }
175 timeout--;
176 mdelay(1);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800177 }
Anton Vorontsov063a9db2009-03-17 00:14:02 +0300178
179 if (host->quirks & SDHCI_QUIRK_RESTORE_IRQS_AFTER_RESET)
180 sdhci_clear_set_irqs(host, SDHCI_INT_ALL_MASK, ier);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800181}
182
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -0800183static void sdhci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios);
184
185static void sdhci_init(struct sdhci_host *host, int soft)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800186{
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -0800187 if (soft)
188 sdhci_reset(host, SDHCI_RESET_CMD|SDHCI_RESET_DATA);
189 else
190 sdhci_reset(host, SDHCI_RESET_ALL);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800191
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300192 sdhci_clear_set_irqs(host, SDHCI_INT_ALL_MASK,
193 SDHCI_INT_BUS_POWER | SDHCI_INT_DATA_END_BIT |
Pierre Ossman3192a282006-06-30 02:22:26 -0700194 SDHCI_INT_DATA_CRC | SDHCI_INT_DATA_TIMEOUT | SDHCI_INT_INDEX |
195 SDHCI_INT_END_BIT | SDHCI_INT_CRC | SDHCI_INT_TIMEOUT |
Anton Vorontsov6aa943a2009-03-17 00:13:50 +0300196 SDHCI_INT_DATA_END | SDHCI_INT_RESPONSE);
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -0800197
198 if (soft) {
199 /* force clock reconfiguration */
200 host->clock = 0;
201 sdhci_set_ios(host->mmc, &host->mmc->ios);
202 }
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300203}
Pierre Ossmand129bce2006-03-24 03:18:17 -0800204
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300205static void sdhci_reinit(struct sdhci_host *host)
206{
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -0800207 sdhci_init(host, 0);
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300208 sdhci_enable_card_detection(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800209}
210
211static void sdhci_activate_led(struct sdhci_host *host)
212{
213 u8 ctrl;
214
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300215 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800216 ctrl |= SDHCI_CTRL_LED;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300217 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800218}
219
220static void sdhci_deactivate_led(struct sdhci_host *host)
221{
222 u8 ctrl;
223
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300224 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800225 ctrl &= ~SDHCI_CTRL_LED;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300226 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800227}
228
Pierre Ossmanf9134312008-12-21 17:01:48 +0100229#ifdef SDHCI_USE_LEDS_CLASS
Pierre Ossman2f730fe2008-03-17 10:29:38 +0100230static void sdhci_led_control(struct led_classdev *led,
231 enum led_brightness brightness)
232{
233 struct sdhci_host *host = container_of(led, struct sdhci_host, led);
234 unsigned long flags;
235
236 spin_lock_irqsave(&host->lock, flags);
237
238 if (brightness == LED_OFF)
239 sdhci_deactivate_led(host);
240 else
241 sdhci_activate_led(host);
242
243 spin_unlock_irqrestore(&host->lock, flags);
244}
245#endif
246
Pierre Ossmand129bce2006-03-24 03:18:17 -0800247/*****************************************************************************\
248 * *
249 * Core functions *
250 * *
251\*****************************************************************************/
252
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100253static void sdhci_read_block_pio(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800254{
Pierre Ossman76591502008-07-21 00:32:11 +0200255 unsigned long flags;
256 size_t blksize, len, chunk;
Steven Noonan7244b852008-10-01 01:50:25 -0700257 u32 uninitialized_var(scratch);
Pierre Ossman76591502008-07-21 00:32:11 +0200258 u8 *buf;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800259
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100260 DBG("PIO reading\n");
Pierre Ossmand129bce2006-03-24 03:18:17 -0800261
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100262 blksize = host->data->blksz;
Pierre Ossman76591502008-07-21 00:32:11 +0200263 chunk = 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800264
Pierre Ossman76591502008-07-21 00:32:11 +0200265 local_irq_save(flags);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800266
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100267 while (blksize) {
Pierre Ossman76591502008-07-21 00:32:11 +0200268 if (!sg_miter_next(&host->sg_miter))
269 BUG();
Pierre Ossmand129bce2006-03-24 03:18:17 -0800270
Pierre Ossman76591502008-07-21 00:32:11 +0200271 len = min(host->sg_miter.length, blksize);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800272
Pierre Ossman76591502008-07-21 00:32:11 +0200273 blksize -= len;
274 host->sg_miter.consumed = len;
Alex Dubov14d836e2007-04-13 19:04:38 +0200275
Pierre Ossman76591502008-07-21 00:32:11 +0200276 buf = host->sg_miter.addr;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800277
Pierre Ossman76591502008-07-21 00:32:11 +0200278 while (len) {
279 if (chunk == 0) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300280 scratch = sdhci_readl(host, SDHCI_BUFFER);
Pierre Ossman76591502008-07-21 00:32:11 +0200281 chunk = 4;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800282 }
Pierre Ossman76591502008-07-21 00:32:11 +0200283
284 *buf = scratch & 0xFF;
285
286 buf++;
287 scratch >>= 8;
288 chunk--;
289 len--;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800290 }
291 }
Pierre Ossman76591502008-07-21 00:32:11 +0200292
293 sg_miter_stop(&host->sg_miter);
294
295 local_irq_restore(flags);
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100296}
Pierre Ossmand129bce2006-03-24 03:18:17 -0800297
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100298static void sdhci_write_block_pio(struct sdhci_host *host)
299{
Pierre Ossman76591502008-07-21 00:32:11 +0200300 unsigned long flags;
301 size_t blksize, len, chunk;
302 u32 scratch;
303 u8 *buf;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100304
305 DBG("PIO writing\n");
306
307 blksize = host->data->blksz;
Pierre Ossman76591502008-07-21 00:32:11 +0200308 chunk = 0;
309 scratch = 0;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100310
Pierre Ossman76591502008-07-21 00:32:11 +0200311 local_irq_save(flags);
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100312
313 while (blksize) {
Pierre Ossman76591502008-07-21 00:32:11 +0200314 if (!sg_miter_next(&host->sg_miter))
315 BUG();
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100316
Pierre Ossman76591502008-07-21 00:32:11 +0200317 len = min(host->sg_miter.length, blksize);
Alex Dubov14d836e2007-04-13 19:04:38 +0200318
Pierre Ossman76591502008-07-21 00:32:11 +0200319 blksize -= len;
320 host->sg_miter.consumed = len;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100321
Pierre Ossman76591502008-07-21 00:32:11 +0200322 buf = host->sg_miter.addr;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100323
Pierre Ossman76591502008-07-21 00:32:11 +0200324 while (len) {
325 scratch |= (u32)*buf << (chunk * 8);
326
327 buf++;
328 chunk++;
329 len--;
330
331 if ((chunk == 4) || ((len == 0) && (blksize == 0))) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300332 sdhci_writel(host, scratch, SDHCI_BUFFER);
Pierre Ossman76591502008-07-21 00:32:11 +0200333 chunk = 0;
334 scratch = 0;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100335 }
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100336 }
337 }
Pierre Ossman76591502008-07-21 00:32:11 +0200338
339 sg_miter_stop(&host->sg_miter);
340
341 local_irq_restore(flags);
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100342}
343
344static void sdhci_transfer_pio(struct sdhci_host *host)
345{
346 u32 mask;
347
348 BUG_ON(!host->data);
349
Pierre Ossman76591502008-07-21 00:32:11 +0200350 if (host->blocks == 0)
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100351 return;
352
353 if (host->data->flags & MMC_DATA_READ)
354 mask = SDHCI_DATA_AVAILABLE;
355 else
356 mask = SDHCI_SPACE_AVAILABLE;
357
Pierre Ossman4a3cba32008-07-29 00:11:16 +0200358 /*
359 * Some controllers (JMicron JMB38x) mess up the buffer bits
360 * for transfers < 4 bytes. As long as it is just one block,
361 * we can ignore the bits.
362 */
363 if ((host->quirks & SDHCI_QUIRK_BROKEN_SMALL_PIO) &&
364 (host->data->blocks == 1))
365 mask = ~0;
366
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300367 while (sdhci_readl(host, SDHCI_PRESENT_STATE) & mask) {
Anton Vorontsov3e3bf202009-03-17 00:14:00 +0300368 if (host->quirks & SDHCI_QUIRK_PIO_NEEDS_DELAY)
369 udelay(100);
370
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100371 if (host->data->flags & MMC_DATA_READ)
372 sdhci_read_block_pio(host);
373 else
374 sdhci_write_block_pio(host);
375
Pierre Ossman76591502008-07-21 00:32:11 +0200376 host->blocks--;
377 if (host->blocks == 0)
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100378 break;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100379 }
380
381 DBG("PIO transfer complete.\n");
Pierre Ossmand129bce2006-03-24 03:18:17 -0800382}
383
Pierre Ossman2134a922008-06-28 18:28:51 +0200384static char *sdhci_kmap_atomic(struct scatterlist *sg, unsigned long *flags)
385{
386 local_irq_save(*flags);
387 return kmap_atomic(sg_page(sg), KM_BIO_SRC_IRQ) + sg->offset;
388}
389
390static void sdhci_kunmap_atomic(void *buffer, unsigned long *flags)
391{
392 kunmap_atomic(buffer, KM_BIO_SRC_IRQ);
393 local_irq_restore(*flags);
394}
395
Ben Dooks118cd172010-03-05 13:43:26 -0800396static void sdhci_set_adma_desc(u8 *desc, u32 addr, int len, unsigned cmd)
397{
Ben Dooks9e506f32010-03-05 13:43:29 -0800398 __le32 *dataddr = (__le32 __force *)(desc + 4);
399 __le16 *cmdlen = (__le16 __force *)desc;
Ben Dooks118cd172010-03-05 13:43:26 -0800400
Ben Dooks9e506f32010-03-05 13:43:29 -0800401 /* SDHCI specification says ADMA descriptors should be 4 byte
402 * aligned, so using 16 or 32bit operations should be safe. */
Ben Dooks118cd172010-03-05 13:43:26 -0800403
Ben Dooks9e506f32010-03-05 13:43:29 -0800404 cmdlen[0] = cpu_to_le16(cmd);
405 cmdlen[1] = cpu_to_le16(len);
406
407 dataddr[0] = cpu_to_le32(addr);
Ben Dooks118cd172010-03-05 13:43:26 -0800408}
409
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200410static int sdhci_adma_table_pre(struct sdhci_host *host,
Pierre Ossman2134a922008-06-28 18:28:51 +0200411 struct mmc_data *data)
412{
413 int direction;
414
415 u8 *desc;
416 u8 *align;
417 dma_addr_t addr;
418 dma_addr_t align_addr;
419 int len, offset;
420
421 struct scatterlist *sg;
422 int i;
423 char *buffer;
424 unsigned long flags;
425
426 /*
427 * The spec does not specify endianness of descriptor table.
428 * We currently guess that it is LE.
429 */
430
431 if (data->flags & MMC_DATA_READ)
432 direction = DMA_FROM_DEVICE;
433 else
434 direction = DMA_TO_DEVICE;
435
436 /*
437 * The ADMA descriptor table is mapped further down as we
438 * need to fill it with data first.
439 */
440
441 host->align_addr = dma_map_single(mmc_dev(host->mmc),
442 host->align_buffer, 128 * 4, direction);
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700443 if (dma_mapping_error(mmc_dev(host->mmc), host->align_addr))
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200444 goto fail;
Pierre Ossman2134a922008-06-28 18:28:51 +0200445 BUG_ON(host->align_addr & 0x3);
446
447 host->sg_count = dma_map_sg(mmc_dev(host->mmc),
448 data->sg, data->sg_len, direction);
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200449 if (host->sg_count == 0)
450 goto unmap_align;
Pierre Ossman2134a922008-06-28 18:28:51 +0200451
452 desc = host->adma_desc;
453 align = host->align_buffer;
454
455 align_addr = host->align_addr;
456
457 for_each_sg(data->sg, sg, host->sg_count, i) {
458 addr = sg_dma_address(sg);
459 len = sg_dma_len(sg);
460
461 /*
462 * The SDHCI specification states that ADMA
463 * addresses must be 32-bit aligned. If they
464 * aren't, then we use a bounce buffer for
465 * the (up to three) bytes that screw up the
466 * alignment.
467 */
468 offset = (4 - (addr & 0x3)) & 0x3;
469 if (offset) {
470 if (data->flags & MMC_DATA_WRITE) {
471 buffer = sdhci_kmap_atomic(sg, &flags);
Pierre Ossman6cefd052008-07-21 00:45:15 +0200472 WARN_ON(((long)buffer & PAGE_MASK) > (PAGE_SIZE - 3));
Pierre Ossman2134a922008-06-28 18:28:51 +0200473 memcpy(align, buffer, offset);
474 sdhci_kunmap_atomic(buffer, &flags);
475 }
476
Ben Dooks118cd172010-03-05 13:43:26 -0800477 /* tran, valid */
478 sdhci_set_adma_desc(desc, align_addr, offset, 0x21);
Pierre Ossman2134a922008-06-28 18:28:51 +0200479
480 BUG_ON(offset > 65536);
481
Pierre Ossman2134a922008-06-28 18:28:51 +0200482 align += 4;
483 align_addr += 4;
484
485 desc += 8;
486
487 addr += offset;
488 len -= offset;
489 }
490
Pierre Ossman2134a922008-06-28 18:28:51 +0200491 BUG_ON(len > 65536);
492
Ben Dooks118cd172010-03-05 13:43:26 -0800493 /* tran, valid */
494 sdhci_set_adma_desc(desc, addr, len, 0x21);
Pierre Ossman2134a922008-06-28 18:28:51 +0200495 desc += 8;
496
497 /*
498 * If this triggers then we have a calculation bug
499 * somewhere. :/
500 */
501 WARN_ON((desc - host->adma_desc) > (128 * 2 + 1) * 4);
502 }
503
Thomas Abraham70764a92010-05-26 14:42:04 -0700504 if (host->quirks & SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC) {
505 /*
506 * Mark the last descriptor as the terminating descriptor
507 */
508 if (desc != host->adma_desc) {
509 desc -= 8;
510 desc[0] |= 0x2; /* end */
511 }
512 } else {
513 /*
514 * Add a terminating entry.
515 */
Pierre Ossman2134a922008-06-28 18:28:51 +0200516
Thomas Abraham70764a92010-05-26 14:42:04 -0700517 /* nop, end, valid */
518 sdhci_set_adma_desc(desc, 0, 0, 0x3);
519 }
Pierre Ossman2134a922008-06-28 18:28:51 +0200520
521 /*
522 * Resync align buffer as we might have changed it.
523 */
524 if (data->flags & MMC_DATA_WRITE) {
525 dma_sync_single_for_device(mmc_dev(host->mmc),
526 host->align_addr, 128 * 4, direction);
527 }
528
529 host->adma_addr = dma_map_single(mmc_dev(host->mmc),
530 host->adma_desc, (128 * 2 + 1) * 4, DMA_TO_DEVICE);
Pierre Ossman980167b2008-07-29 00:53:20 +0200531 if (dma_mapping_error(mmc_dev(host->mmc), host->adma_addr))
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200532 goto unmap_entries;
Pierre Ossman2134a922008-06-28 18:28:51 +0200533 BUG_ON(host->adma_addr & 0x3);
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200534
535 return 0;
536
537unmap_entries:
538 dma_unmap_sg(mmc_dev(host->mmc), data->sg,
539 data->sg_len, direction);
540unmap_align:
541 dma_unmap_single(mmc_dev(host->mmc), host->align_addr,
542 128 * 4, direction);
543fail:
544 return -EINVAL;
Pierre Ossman2134a922008-06-28 18:28:51 +0200545}
546
547static void sdhci_adma_table_post(struct sdhci_host *host,
548 struct mmc_data *data)
549{
550 int direction;
551
552 struct scatterlist *sg;
553 int i, size;
554 u8 *align;
555 char *buffer;
556 unsigned long flags;
557
558 if (data->flags & MMC_DATA_READ)
559 direction = DMA_FROM_DEVICE;
560 else
561 direction = DMA_TO_DEVICE;
562
563 dma_unmap_single(mmc_dev(host->mmc), host->adma_addr,
564 (128 * 2 + 1) * 4, DMA_TO_DEVICE);
565
566 dma_unmap_single(mmc_dev(host->mmc), host->align_addr,
567 128 * 4, direction);
568
569 if (data->flags & MMC_DATA_READ) {
570 dma_sync_sg_for_cpu(mmc_dev(host->mmc), data->sg,
571 data->sg_len, direction);
572
573 align = host->align_buffer;
574
575 for_each_sg(data->sg, sg, host->sg_count, i) {
576 if (sg_dma_address(sg) & 0x3) {
577 size = 4 - (sg_dma_address(sg) & 0x3);
578
579 buffer = sdhci_kmap_atomic(sg, &flags);
Pierre Ossman6cefd052008-07-21 00:45:15 +0200580 WARN_ON(((long)buffer & PAGE_MASK) > (PAGE_SIZE - 3));
Pierre Ossman2134a922008-06-28 18:28:51 +0200581 memcpy(buffer, align, size);
582 sdhci_kunmap_atomic(buffer, &flags);
583
584 align += 4;
585 }
586 }
587 }
588
589 dma_unmap_sg(mmc_dev(host->mmc), data->sg,
590 data->sg_len, direction);
591}
592
Andrei Warkentina3c77782011-04-11 16:13:42 -0500593static u8 sdhci_calc_timeout(struct sdhci_host *host, struct mmc_command *cmd)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800594{
Pierre Ossman1c8cde92006-06-30 02:22:25 -0700595 u8 count;
Andrei Warkentina3c77782011-04-11 16:13:42 -0500596 struct mmc_data *data = cmd->data;
Pierre Ossman1c8cde92006-06-30 02:22:25 -0700597 unsigned target_timeout, current_timeout;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800598
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200599 /*
600 * If the host controller provides us with an incorrect timeout
601 * value, just skip the check and use 0xE. The hardware may take
602 * longer to time out, but that's much better than having a too-short
603 * timeout value.
604 */
Pierre Ossman11a2f1b2009-06-21 20:59:33 +0200605 if (host->quirks & SDHCI_QUIRK_BROKEN_TIMEOUT_VAL)
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200606 return 0xE;
Pierre Ossmane538fbe2007-08-12 16:46:32 +0200607
Andrei Warkentina3c77782011-04-11 16:13:42 -0500608 /* Unspecified timeout, assume max */
609 if (!data && !cmd->cmd_timeout_ms)
610 return 0xE;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800611
Andrei Warkentina3c77782011-04-11 16:13:42 -0500612 /* timeout in us */
613 if (!data)
614 target_timeout = cmd->cmd_timeout_ms * 1000;
615 else
616 target_timeout = data->timeout_ns / 1000 +
617 data->timeout_clks / host->clock;
Anton Vorontsov81b39802009-09-22 16:45:13 -0700618
Pierre Ossman1c8cde92006-06-30 02:22:25 -0700619 /*
620 * Figure out needed cycles.
621 * We do this in steps in order to fit inside a 32 bit int.
622 * The first step is the minimum timeout, which will have a
623 * minimum resolution of 6 bits:
624 * (1) 2^13*1000 > 2^22,
625 * (2) host->timeout_clk < 2^16
626 * =>
627 * (1) / (2) > 2^6
628 */
629 count = 0;
630 current_timeout = (1 << 13) * 1000 / host->timeout_clk;
631 while (current_timeout < target_timeout) {
632 count++;
633 current_timeout <<= 1;
634 if (count >= 0xF)
635 break;
636 }
637
638 if (count >= 0xF) {
Andrei Warkentina3c77782011-04-11 16:13:42 -0500639 printk(KERN_WARNING "%s: Too large timeout requested for CMD%d!\n",
640 mmc_hostname(host->mmc), cmd->opcode);
Pierre Ossman1c8cde92006-06-30 02:22:25 -0700641 count = 0xE;
642 }
643
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200644 return count;
645}
646
Anton Vorontsov6aa943a2009-03-17 00:13:50 +0300647static void sdhci_set_transfer_irqs(struct sdhci_host *host)
648{
649 u32 pio_irqs = SDHCI_INT_DATA_AVAIL | SDHCI_INT_SPACE_AVAIL;
650 u32 dma_irqs = SDHCI_INT_DMA_END | SDHCI_INT_ADMA_ERROR;
651
652 if (host->flags & SDHCI_REQ_USE_DMA)
653 sdhci_clear_set_irqs(host, pio_irqs, dma_irqs);
654 else
655 sdhci_clear_set_irqs(host, dma_irqs, pio_irqs);
656}
657
Andrei Warkentina3c77782011-04-11 16:13:42 -0500658static void sdhci_prepare_data(struct sdhci_host *host, struct mmc_command *cmd)
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200659{
660 u8 count;
Pierre Ossman2134a922008-06-28 18:28:51 +0200661 u8 ctrl;
Andrei Warkentina3c77782011-04-11 16:13:42 -0500662 struct mmc_data *data = cmd->data;
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200663 int ret;
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200664
665 WARN_ON(host->data);
666
Andrei Warkentina3c77782011-04-11 16:13:42 -0500667 if (data || (cmd->flags & MMC_RSP_BUSY)) {
668 count = sdhci_calc_timeout(host, cmd);
669 sdhci_writeb(host, count, SDHCI_TIMEOUT_CONTROL);
670 }
671
672 if (!data)
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200673 return;
674
675 /* Sanity checks */
676 BUG_ON(data->blksz * data->blocks > 524288);
677 BUG_ON(data->blksz > host->mmc->max_blk_size);
678 BUG_ON(data->blocks > 65535);
679
680 host->data = data;
681 host->data_early = 0;
Mikko Vinnif6a03cb2011-04-12 09:36:18 -0400682 host->data->bytes_xfered = 0;
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200683
Richard Röjforsa13abc72009-09-22 16:45:30 -0700684 if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA))
Pierre Ossmanc9fddbc2007-12-02 19:52:11 +0100685 host->flags |= SDHCI_REQ_USE_DMA;
686
Pierre Ossman2134a922008-06-28 18:28:51 +0200687 /*
688 * FIXME: This doesn't account for merging when mapping the
689 * scatterlist.
690 */
691 if (host->flags & SDHCI_REQ_USE_DMA) {
692 int broken, i;
693 struct scatterlist *sg;
694
695 broken = 0;
696 if (host->flags & SDHCI_USE_ADMA) {
697 if (host->quirks & SDHCI_QUIRK_32BIT_ADMA_SIZE)
698 broken = 1;
699 } else {
700 if (host->quirks & SDHCI_QUIRK_32BIT_DMA_SIZE)
701 broken = 1;
702 }
703
704 if (unlikely(broken)) {
705 for_each_sg(data->sg, sg, data->sg_len, i) {
706 if (sg->length & 0x3) {
707 DBG("Reverting to PIO because of "
708 "transfer size (%d)\n",
709 sg->length);
710 host->flags &= ~SDHCI_REQ_USE_DMA;
711 break;
712 }
713 }
714 }
Pierre Ossmanc9fddbc2007-12-02 19:52:11 +0100715 }
716
717 /*
718 * The assumption here being that alignment is the same after
719 * translation to device address space.
720 */
Pierre Ossman2134a922008-06-28 18:28:51 +0200721 if (host->flags & SDHCI_REQ_USE_DMA) {
722 int broken, i;
723 struct scatterlist *sg;
724
725 broken = 0;
726 if (host->flags & SDHCI_USE_ADMA) {
727 /*
728 * As we use 3 byte chunks to work around
729 * alignment problems, we need to check this
730 * quirk.
731 */
732 if (host->quirks & SDHCI_QUIRK_32BIT_ADMA_SIZE)
733 broken = 1;
734 } else {
735 if (host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR)
736 broken = 1;
737 }
738
739 if (unlikely(broken)) {
740 for_each_sg(data->sg, sg, data->sg_len, i) {
741 if (sg->offset & 0x3) {
742 DBG("Reverting to PIO because of "
743 "bad alignment\n");
744 host->flags &= ~SDHCI_REQ_USE_DMA;
745 break;
746 }
747 }
748 }
749 }
750
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200751 if (host->flags & SDHCI_REQ_USE_DMA) {
752 if (host->flags & SDHCI_USE_ADMA) {
753 ret = sdhci_adma_table_pre(host, data);
754 if (ret) {
755 /*
756 * This only happens when someone fed
757 * us an invalid request.
758 */
759 WARN_ON(1);
Pierre Ossmanebd6d352008-07-29 00:45:51 +0200760 host->flags &= ~SDHCI_REQ_USE_DMA;
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200761 } else {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300762 sdhci_writel(host, host->adma_addr,
763 SDHCI_ADMA_ADDRESS);
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200764 }
765 } else {
Tomas Winklerc8b3e022008-07-05 19:52:04 +0300766 int sg_cnt;
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200767
Tomas Winklerc8b3e022008-07-05 19:52:04 +0300768 sg_cnt = dma_map_sg(mmc_dev(host->mmc),
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200769 data->sg, data->sg_len,
770 (data->flags & MMC_DATA_READ) ?
771 DMA_FROM_DEVICE :
772 DMA_TO_DEVICE);
Tomas Winklerc8b3e022008-07-05 19:52:04 +0300773 if (sg_cnt == 0) {
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200774 /*
775 * This only happens when someone fed
776 * us an invalid request.
777 */
778 WARN_ON(1);
Pierre Ossmanebd6d352008-07-29 00:45:51 +0200779 host->flags &= ~SDHCI_REQ_USE_DMA;
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200780 } else {
Pierre Ossman719a61b2008-07-22 13:23:23 +0200781 WARN_ON(sg_cnt != 1);
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300782 sdhci_writel(host, sg_dma_address(data->sg),
783 SDHCI_DMA_ADDRESS);
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200784 }
785 }
786 }
787
Pierre Ossman2134a922008-06-28 18:28:51 +0200788 /*
789 * Always adjust the DMA selection as some controllers
790 * (e.g. JMicron) can't do PIO properly when the selection
791 * is ADMA.
792 */
793 if (host->version >= SDHCI_SPEC_200) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300794 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
Pierre Ossman2134a922008-06-28 18:28:51 +0200795 ctrl &= ~SDHCI_CTRL_DMA_MASK;
796 if ((host->flags & SDHCI_REQ_USE_DMA) &&
797 (host->flags & SDHCI_USE_ADMA))
798 ctrl |= SDHCI_CTRL_ADMA32;
799 else
800 ctrl |= SDHCI_CTRL_SDMA;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300801 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Pierre Ossmanc9fddbc2007-12-02 19:52:11 +0100802 }
803
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200804 if (!(host->flags & SDHCI_REQ_USE_DMA)) {
Sebastian Andrzej Siewiorda60a912009-06-18 09:33:32 +0200805 int flags;
806
807 flags = SG_MITER_ATOMIC;
808 if (host->data->flags & MMC_DATA_READ)
809 flags |= SG_MITER_TO_SG;
810 else
811 flags |= SG_MITER_FROM_SG;
812 sg_miter_start(&host->sg_miter, data->sg, data->sg_len, flags);
Pierre Ossman76591502008-07-21 00:32:11 +0200813 host->blocks = data->blocks;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800814 }
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700815
Anton Vorontsov6aa943a2009-03-17 00:13:50 +0300816 sdhci_set_transfer_irqs(host);
817
Mikko Vinnif6a03cb2011-04-12 09:36:18 -0400818 /* Set the DMA boundary value and block size */
819 sdhci_writew(host, SDHCI_MAKE_BLKSZ(SDHCI_DEFAULT_BOUNDARY_ARG,
820 data->blksz), SDHCI_BLOCK_SIZE);
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300821 sdhci_writew(host, data->blocks, SDHCI_BLOCK_COUNT);
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700822}
823
824static void sdhci_set_transfer_mode(struct sdhci_host *host,
825 struct mmc_data *data)
826{
827 u16 mode;
828
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700829 if (data == NULL)
830 return;
831
Pierre Ossmane538fbe2007-08-12 16:46:32 +0200832 WARN_ON(!host->data);
833
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700834 mode = SDHCI_TRNS_BLK_CNT_EN;
Jerry Huangc4512f72010-08-10 18:01:59 -0700835 if (data->blocks > 1) {
836 if (host->quirks & SDHCI_QUIRK_MULTIBLOCK_READ_ACMD12)
837 mode |= SDHCI_TRNS_MULTI | SDHCI_TRNS_ACMD12;
838 else
839 mode |= SDHCI_TRNS_MULTI;
840 }
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700841 if (data->flags & MMC_DATA_READ)
842 mode |= SDHCI_TRNS_READ;
Pierre Ossmanc9fddbc2007-12-02 19:52:11 +0100843 if (host->flags & SDHCI_REQ_USE_DMA)
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700844 mode |= SDHCI_TRNS_DMA;
845
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300846 sdhci_writew(host, mode, SDHCI_TRANSFER_MODE);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800847}
848
849static void sdhci_finish_data(struct sdhci_host *host)
850{
851 struct mmc_data *data;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800852
853 BUG_ON(!host->data);
854
855 data = host->data;
856 host->data = NULL;
857
Pierre Ossmanc9fddbc2007-12-02 19:52:11 +0100858 if (host->flags & SDHCI_REQ_USE_DMA) {
Pierre Ossman2134a922008-06-28 18:28:51 +0200859 if (host->flags & SDHCI_USE_ADMA)
860 sdhci_adma_table_post(host, data);
861 else {
862 dma_unmap_sg(mmc_dev(host->mmc), data->sg,
863 data->sg_len, (data->flags & MMC_DATA_READ) ?
864 DMA_FROM_DEVICE : DMA_TO_DEVICE);
865 }
Pierre Ossmand129bce2006-03-24 03:18:17 -0800866 }
867
868 /*
Pierre Ossmanc9b74c52008-04-18 20:41:49 +0200869 * The specification states that the block count register must
870 * be updated, but it does not specify at what point in the
871 * data flow. That makes the register entirely useless to read
872 * back so we have to assume that nothing made it to the card
873 * in the event of an error.
Pierre Ossmand129bce2006-03-24 03:18:17 -0800874 */
Pierre Ossmanc9b74c52008-04-18 20:41:49 +0200875 if (data->error)
876 data->bytes_xfered = 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800877 else
Pierre Ossmanc9b74c52008-04-18 20:41:49 +0200878 data->bytes_xfered = data->blksz * data->blocks;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800879
Pierre Ossmand129bce2006-03-24 03:18:17 -0800880 if (data->stop) {
881 /*
882 * The controller needs a reset of internal state machines
883 * upon error conditions.
884 */
Pierre Ossman17b04292007-07-22 22:18:46 +0200885 if (data->error) {
Pierre Ossmand129bce2006-03-24 03:18:17 -0800886 sdhci_reset(host, SDHCI_RESET_CMD);
887 sdhci_reset(host, SDHCI_RESET_DATA);
888 }
889
890 sdhci_send_command(host, data->stop);
891 } else
892 tasklet_schedule(&host->finish_tasklet);
893}
894
895static void sdhci_send_command(struct sdhci_host *host, struct mmc_command *cmd)
896{
897 int flags;
Pierre Ossmanfd2208d2006-06-30 02:22:28 -0700898 u32 mask;
Pierre Ossman7cb2c762006-06-30 02:22:23 -0700899 unsigned long timeout;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800900
901 WARN_ON(host->cmd);
902
Pierre Ossmand129bce2006-03-24 03:18:17 -0800903 /* Wait max 10 ms */
Pierre Ossman7cb2c762006-06-30 02:22:23 -0700904 timeout = 10;
Pierre Ossmanfd2208d2006-06-30 02:22:28 -0700905
906 mask = SDHCI_CMD_INHIBIT;
907 if ((cmd->data != NULL) || (cmd->flags & MMC_RSP_BUSY))
908 mask |= SDHCI_DATA_INHIBIT;
909
910 /* We shouldn't wait for data inihibit for stop commands, even
911 though they might use busy signaling */
912 if (host->mrq->data && (cmd == host->mrq->data->stop))
913 mask &= ~SDHCI_DATA_INHIBIT;
914
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300915 while (sdhci_readl(host, SDHCI_PRESENT_STATE) & mask) {
Pierre Ossman7cb2c762006-06-30 02:22:23 -0700916 if (timeout == 0) {
Pierre Ossmand129bce2006-03-24 03:18:17 -0800917 printk(KERN_ERR "%s: Controller never released "
Pierre Ossmanacf1da42007-02-09 08:29:19 +0100918 "inhibit bit(s).\n", mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -0800919 sdhci_dumpregs(host);
Pierre Ossman17b04292007-07-22 22:18:46 +0200920 cmd->error = -EIO;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800921 tasklet_schedule(&host->finish_tasklet);
922 return;
923 }
Pierre Ossman7cb2c762006-06-30 02:22:23 -0700924 timeout--;
925 mdelay(1);
926 }
Pierre Ossmand129bce2006-03-24 03:18:17 -0800927
928 mod_timer(&host->timer, jiffies + 10 * HZ);
929
930 host->cmd = cmd;
931
Andrei Warkentina3c77782011-04-11 16:13:42 -0500932 sdhci_prepare_data(host, cmd);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800933
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300934 sdhci_writel(host, cmd->arg, SDHCI_ARGUMENT);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800935
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700936 sdhci_set_transfer_mode(host, cmd->data);
937
Pierre Ossmand129bce2006-03-24 03:18:17 -0800938 if ((cmd->flags & MMC_RSP_136) && (cmd->flags & MMC_RSP_BUSY)) {
Pierre Ossmanacf1da42007-02-09 08:29:19 +0100939 printk(KERN_ERR "%s: Unsupported response type!\n",
Pierre Ossmand129bce2006-03-24 03:18:17 -0800940 mmc_hostname(host->mmc));
Pierre Ossman17b04292007-07-22 22:18:46 +0200941 cmd->error = -EINVAL;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800942 tasklet_schedule(&host->finish_tasklet);
943 return;
944 }
945
946 if (!(cmd->flags & MMC_RSP_PRESENT))
947 flags = SDHCI_CMD_RESP_NONE;
948 else if (cmd->flags & MMC_RSP_136)
949 flags = SDHCI_CMD_RESP_LONG;
950 else if (cmd->flags & MMC_RSP_BUSY)
951 flags = SDHCI_CMD_RESP_SHORT_BUSY;
952 else
953 flags = SDHCI_CMD_RESP_SHORT;
954
955 if (cmd->flags & MMC_RSP_CRC)
956 flags |= SDHCI_CMD_CRC;
957 if (cmd->flags & MMC_RSP_OPCODE)
958 flags |= SDHCI_CMD_INDEX;
959 if (cmd->data)
960 flags |= SDHCI_CMD_DATA;
961
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300962 sdhci_writew(host, SDHCI_MAKE_CMD(cmd->opcode, flags), SDHCI_COMMAND);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800963}
964
965static void sdhci_finish_command(struct sdhci_host *host)
966{
967 int i;
968
969 BUG_ON(host->cmd == NULL);
970
971 if (host->cmd->flags & MMC_RSP_PRESENT) {
972 if (host->cmd->flags & MMC_RSP_136) {
973 /* CRC is stripped so we need to do some shifting. */
974 for (i = 0;i < 4;i++) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300975 host->cmd->resp[i] = sdhci_readl(host,
Pierre Ossmand129bce2006-03-24 03:18:17 -0800976 SDHCI_RESPONSE + (3-i)*4) << 8;
977 if (i != 3)
978 host->cmd->resp[i] |=
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300979 sdhci_readb(host,
Pierre Ossmand129bce2006-03-24 03:18:17 -0800980 SDHCI_RESPONSE + (3-i)*4-1);
981 }
982 } else {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300983 host->cmd->resp[0] = sdhci_readl(host, SDHCI_RESPONSE);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800984 }
985 }
986
Pierre Ossman17b04292007-07-22 22:18:46 +0200987 host->cmd->error = 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800988
Pierre Ossmane538fbe2007-08-12 16:46:32 +0200989 if (host->data && host->data_early)
990 sdhci_finish_data(host);
991
992 if (!host->cmd->data)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800993 tasklet_schedule(&host->finish_tasklet);
994
995 host->cmd = NULL;
996}
997
998static void sdhci_set_clock(struct sdhci_host *host, unsigned int clock)
999{
1000 int div;
1001 u16 clk;
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001002 unsigned long timeout;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001003
1004 if (clock == host->clock)
1005 return;
1006
Anton Vorontsov81146342009-03-17 00:13:59 +03001007 if (host->ops->set_clock) {
1008 host->ops->set_clock(host, clock);
1009 if (host->quirks & SDHCI_QUIRK_NONSTANDARD_CLOCK)
1010 return;
1011 }
1012
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001013 sdhci_writew(host, 0, SDHCI_CLOCK_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001014
1015 if (clock == 0)
1016 goto out;
1017
Zhangfei Gao85105c52010-08-06 07:10:01 +08001018 if (host->version >= SDHCI_SPEC_300) {
1019 /* Version 3.00 divisors must be a multiple of 2. */
1020 if (host->max_clk <= clock)
1021 div = 1;
1022 else {
Zhangfei Gao03975262010-09-20 15:15:18 -04001023 for (div = 2; div < SDHCI_MAX_DIV_SPEC_300; div += 2) {
Zhangfei Gao85105c52010-08-06 07:10:01 +08001024 if ((host->max_clk / div) <= clock)
1025 break;
1026 }
1027 }
1028 } else {
1029 /* Version 2.00 divisors must be a power of 2. */
Zhangfei Gao03975262010-09-20 15:15:18 -04001030 for (div = 1; div < SDHCI_MAX_DIV_SPEC_200; div *= 2) {
Zhangfei Gao85105c52010-08-06 07:10:01 +08001031 if ((host->max_clk / div) <= clock)
1032 break;
1033 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001034 }
1035 div >>= 1;
1036
Zhangfei Gao85105c52010-08-06 07:10:01 +08001037 clk = (div & SDHCI_DIV_MASK) << SDHCI_DIVIDER_SHIFT;
1038 clk |= ((div & SDHCI_DIV_HI_MASK) >> SDHCI_DIV_MASK_LEN)
1039 << SDHCI_DIVIDER_HI_SHIFT;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001040 clk |= SDHCI_CLOCK_INT_EN;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001041 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001042
Chris Ball27f6cb12009-09-22 16:45:31 -07001043 /* Wait max 20 ms */
1044 timeout = 20;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001045 while (!((clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL))
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001046 & SDHCI_CLOCK_INT_STABLE)) {
1047 if (timeout == 0) {
Pierre Ossmanacf1da42007-02-09 08:29:19 +01001048 printk(KERN_ERR "%s: Internal clock never "
1049 "stabilised.\n", mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -08001050 sdhci_dumpregs(host);
1051 return;
1052 }
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001053 timeout--;
1054 mdelay(1);
1055 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001056
1057 clk |= SDHCI_CLOCK_CARD_EN;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001058 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001059
1060out:
1061 host->clock = clock;
1062}
1063
Pierre Ossman146ad662006-06-30 02:22:23 -07001064static void sdhci_set_power(struct sdhci_host *host, unsigned short power)
1065{
Giuseppe Cavallaro83642482010-09-28 10:41:28 +02001066 u8 pwr = 0;
Pierre Ossman146ad662006-06-30 02:22:23 -07001067
Giuseppe Cavallaro83642482010-09-28 10:41:28 +02001068 if (power != (unsigned short)-1) {
Pierre Ossmanae628902009-05-03 20:45:03 +02001069 switch (1 << power) {
1070 case MMC_VDD_165_195:
1071 pwr = SDHCI_POWER_180;
1072 break;
1073 case MMC_VDD_29_30:
1074 case MMC_VDD_30_31:
1075 pwr = SDHCI_POWER_300;
1076 break;
1077 case MMC_VDD_32_33:
1078 case MMC_VDD_33_34:
1079 pwr = SDHCI_POWER_330;
1080 break;
1081 default:
1082 BUG();
1083 }
1084 }
1085
1086 if (host->pwr == pwr)
Pierre Ossman146ad662006-06-30 02:22:23 -07001087 return;
1088
Pierre Ossmanae628902009-05-03 20:45:03 +02001089 host->pwr = pwr;
1090
1091 if (pwr == 0) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001092 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
Pierre Ossmanae628902009-05-03 20:45:03 +02001093 return;
Darren Salt9e9dc5f2007-01-27 15:32:31 +01001094 }
1095
1096 /*
1097 * Spec says that we should clear the power reg before setting
1098 * a new value. Some controllers don't seem to like this though.
1099 */
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001100 if (!(host->quirks & SDHCI_QUIRK_SINGLE_POWER_WRITE))
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001101 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
Pierre Ossman146ad662006-06-30 02:22:23 -07001102
Andres Salomone08c1692008-07-04 10:00:03 -07001103 /*
Andres Salomonc71f6512008-07-07 17:25:56 -04001104 * At least the Marvell CaFe chip gets confused if we set the voltage
Andres Salomone08c1692008-07-04 10:00:03 -07001105 * and set turn on power at the same time, so set the voltage first.
1106 */
Pierre Ossman11a2f1b2009-06-21 20:59:33 +02001107 if (host->quirks & SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER)
Pierre Ossmanae628902009-05-03 20:45:03 +02001108 sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL);
1109
1110 pwr |= SDHCI_POWER_ON;
Andres Salomone08c1692008-07-04 10:00:03 -07001111
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001112 sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL);
Harald Welte557b0692009-06-18 16:53:38 +02001113
1114 /*
1115 * Some controllers need an extra 10ms delay of 10ms before they
1116 * can apply clock after applying power
1117 */
Pierre Ossman11a2f1b2009-06-21 20:59:33 +02001118 if (host->quirks & SDHCI_QUIRK_DELAY_AFTER_POWER)
Harald Welte557b0692009-06-18 16:53:38 +02001119 mdelay(10);
Pierre Ossman146ad662006-06-30 02:22:23 -07001120}
1121
Pierre Ossmand129bce2006-03-24 03:18:17 -08001122/*****************************************************************************\
1123 * *
1124 * MMC callbacks *
1125 * *
1126\*****************************************************************************/
1127
1128static void sdhci_request(struct mmc_host *mmc, struct mmc_request *mrq)
1129{
1130 struct sdhci_host *host;
Anton Vorontsov68d1fb72009-03-17 00:13:52 +03001131 bool present;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001132 unsigned long flags;
1133
1134 host = mmc_priv(mmc);
1135
1136 spin_lock_irqsave(&host->lock, flags);
1137
1138 WARN_ON(host->mrq != NULL);
1139
Pierre Ossmanf9134312008-12-21 17:01:48 +01001140#ifndef SDHCI_USE_LEDS_CLASS
Pierre Ossmand129bce2006-03-24 03:18:17 -08001141 sdhci_activate_led(host);
Pierre Ossman2f730fe2008-03-17 10:29:38 +01001142#endif
Jerry Huangc4512f72010-08-10 18:01:59 -07001143 if (host->quirks & SDHCI_QUIRK_MULTIBLOCK_READ_ACMD12) {
1144 if (mrq->stop) {
1145 mrq->data->stop = NULL;
1146 mrq->stop = NULL;
1147 }
1148 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001149
1150 host->mrq = mrq;
1151
Anton Vorontsov68d1fb72009-03-17 00:13:52 +03001152 /* If polling, assume that the card is always present. */
1153 if (host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION)
1154 present = true;
1155 else
1156 present = sdhci_readl(host, SDHCI_PRESENT_STATE) &
1157 SDHCI_CARD_PRESENT;
1158
1159 if (!present || host->flags & SDHCI_DEVICE_DEAD) {
Pierre Ossman17b04292007-07-22 22:18:46 +02001160 host->mrq->cmd->error = -ENOMEDIUM;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001161 tasklet_schedule(&host->finish_tasklet);
1162 } else
1163 sdhci_send_command(host, mrq->cmd);
1164
Pierre Ossman5f25a662006-10-04 02:15:39 -07001165 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -08001166 spin_unlock_irqrestore(&host->lock, flags);
1167}
1168
1169static void sdhci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
1170{
1171 struct sdhci_host *host;
1172 unsigned long flags;
1173 u8 ctrl;
1174
1175 host = mmc_priv(mmc);
1176
1177 spin_lock_irqsave(&host->lock, flags);
1178
Pierre Ossman1e728592008-04-16 19:13:13 +02001179 if (host->flags & SDHCI_DEVICE_DEAD)
1180 goto out;
1181
Pierre Ossmand129bce2006-03-24 03:18:17 -08001182 /*
1183 * Reset the chip on each power off.
1184 * Should clear out any weird states.
1185 */
1186 if (ios->power_mode == MMC_POWER_OFF) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001187 sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE);
Anton Vorontsov7260cf52009-03-17 00:13:48 +03001188 sdhci_reinit(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001189 }
1190
1191 sdhci_set_clock(host, ios->clock);
1192
1193 if (ios->power_mode == MMC_POWER_OFF)
Pierre Ossman146ad662006-06-30 02:22:23 -07001194 sdhci_set_power(host, -1);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001195 else
Pierre Ossman146ad662006-06-30 02:22:23 -07001196 sdhci_set_power(host, ios->vdd);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001197
Philip Rakity643a81f2010-09-23 08:24:32 -07001198 if (host->ops->platform_send_init_74_clocks)
1199 host->ops->platform_send_init_74_clocks(host, ios->power_mode);
1200
Philip Rakity15ec4462010-11-19 16:48:39 -05001201 /*
1202 * If your platform has 8-bit width support but is not a v3 controller,
1203 * or if it requires special setup code, you should implement that in
1204 * platform_8bit_width().
1205 */
1206 if (host->ops->platform_8bit_width)
1207 host->ops->platform_8bit_width(host, ios->bus_width);
1208 else {
1209 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
1210 if (ios->bus_width == MMC_BUS_WIDTH_8) {
1211 ctrl &= ~SDHCI_CTRL_4BITBUS;
1212 if (host->version >= SDHCI_SPEC_300)
1213 ctrl |= SDHCI_CTRL_8BITBUS;
1214 } else {
1215 if (host->version >= SDHCI_SPEC_300)
1216 ctrl &= ~SDHCI_CTRL_8BITBUS;
1217 if (ios->bus_width == MMC_BUS_WIDTH_4)
1218 ctrl |= SDHCI_CTRL_4BITBUS;
1219 else
1220 ctrl &= ~SDHCI_CTRL_4BITBUS;
1221 }
1222 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
1223 }
1224
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001225 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
Pierre Ossmancd9277c2007-02-18 12:07:47 +01001226
Philip Rakity3ab9c8d2010-10-06 11:57:23 -07001227 if ((ios->timing == MMC_TIMING_SD_HS ||
1228 ios->timing == MMC_TIMING_MMC_HS)
1229 && !(host->quirks & SDHCI_QUIRK_NO_HISPD_BIT))
Pierre Ossmancd9277c2007-02-18 12:07:47 +01001230 ctrl |= SDHCI_CTRL_HISPD;
1231 else
1232 ctrl &= ~SDHCI_CTRL_HISPD;
1233
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001234 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001235
Leandro Dorileob8352262007-07-25 23:47:04 +02001236 /*
1237 * Some (ENE) controllers go apeshit on some ios operation,
1238 * signalling timeout and CRC errors even on CMD0. Resetting
1239 * it on each ios seems to solve the problem.
1240 */
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001241 if(host->quirks & SDHCI_QUIRK_RESET_CMD_DATA_ON_IOS)
Leandro Dorileob8352262007-07-25 23:47:04 +02001242 sdhci_reset(host, SDHCI_RESET_CMD | SDHCI_RESET_DATA);
1243
Pierre Ossman1e728592008-04-16 19:13:13 +02001244out:
Pierre Ossman5f25a662006-10-04 02:15:39 -07001245 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -08001246 spin_unlock_irqrestore(&host->lock, flags);
1247}
1248
1249static int sdhci_get_ro(struct mmc_host *mmc)
1250{
1251 struct sdhci_host *host;
1252 unsigned long flags;
Wolfram Sang2dfb5792010-10-15 12:21:01 +02001253 int is_readonly;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001254
1255 host = mmc_priv(mmc);
1256
1257 spin_lock_irqsave(&host->lock, flags);
1258
Pierre Ossman1e728592008-04-16 19:13:13 +02001259 if (host->flags & SDHCI_DEVICE_DEAD)
Wolfram Sang2dfb5792010-10-15 12:21:01 +02001260 is_readonly = 0;
1261 else if (host->ops->get_ro)
1262 is_readonly = host->ops->get_ro(host);
Pierre Ossman1e728592008-04-16 19:13:13 +02001263 else
Wolfram Sang2dfb5792010-10-15 12:21:01 +02001264 is_readonly = !(sdhci_readl(host, SDHCI_PRESENT_STATE)
1265 & SDHCI_WRITE_PROTECT);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001266
1267 spin_unlock_irqrestore(&host->lock, flags);
1268
Wolfram Sang2dfb5792010-10-15 12:21:01 +02001269 /* This quirk needs to be replaced by a callback-function later */
1270 return host->quirks & SDHCI_QUIRK_INVERTED_WRITE_PROTECT ?
1271 !is_readonly : is_readonly;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001272}
1273
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001274static void sdhci_enable_sdio_irq(struct mmc_host *mmc, int enable)
1275{
1276 struct sdhci_host *host;
1277 unsigned long flags;
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001278
1279 host = mmc_priv(mmc);
1280
1281 spin_lock_irqsave(&host->lock, flags);
1282
Pierre Ossman1e728592008-04-16 19:13:13 +02001283 if (host->flags & SDHCI_DEVICE_DEAD)
1284 goto out;
1285
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001286 if (enable)
Anton Vorontsov7260cf52009-03-17 00:13:48 +03001287 sdhci_unmask_irqs(host, SDHCI_INT_CARD_INT);
1288 else
1289 sdhci_mask_irqs(host, SDHCI_INT_CARD_INT);
Pierre Ossman1e728592008-04-16 19:13:13 +02001290out:
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001291 mmiowb();
1292
1293 spin_unlock_irqrestore(&host->lock, flags);
1294}
1295
David Brownellab7aefd2006-11-12 17:55:30 -08001296static const struct mmc_host_ops sdhci_ops = {
Pierre Ossmand129bce2006-03-24 03:18:17 -08001297 .request = sdhci_request,
1298 .set_ios = sdhci_set_ios,
1299 .get_ro = sdhci_get_ro,
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001300 .enable_sdio_irq = sdhci_enable_sdio_irq,
Pierre Ossmand129bce2006-03-24 03:18:17 -08001301};
1302
1303/*****************************************************************************\
1304 * *
1305 * Tasklets *
1306 * *
1307\*****************************************************************************/
1308
1309static void sdhci_tasklet_card(unsigned long param)
1310{
1311 struct sdhci_host *host;
1312 unsigned long flags;
1313
1314 host = (struct sdhci_host*)param;
1315
1316 spin_lock_irqsave(&host->lock, flags);
1317
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001318 if (!(sdhci_readl(host, SDHCI_PRESENT_STATE) & SDHCI_CARD_PRESENT)) {
Pierre Ossmand129bce2006-03-24 03:18:17 -08001319 if (host->mrq) {
1320 printk(KERN_ERR "%s: Card removed during transfer!\n",
1321 mmc_hostname(host->mmc));
1322 printk(KERN_ERR "%s: Resetting controller.\n",
1323 mmc_hostname(host->mmc));
1324
1325 sdhci_reset(host, SDHCI_RESET_CMD);
1326 sdhci_reset(host, SDHCI_RESET_DATA);
1327
Pierre Ossman17b04292007-07-22 22:18:46 +02001328 host->mrq->cmd->error = -ENOMEDIUM;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001329 tasklet_schedule(&host->finish_tasklet);
1330 }
1331 }
1332
1333 spin_unlock_irqrestore(&host->lock, flags);
1334
Pierre Ossman04cf5852008-08-18 22:18:14 +02001335 mmc_detect_change(host->mmc, msecs_to_jiffies(200));
Pierre Ossmand129bce2006-03-24 03:18:17 -08001336}
1337
1338static void sdhci_tasklet_finish(unsigned long param)
1339{
1340 struct sdhci_host *host;
1341 unsigned long flags;
1342 struct mmc_request *mrq;
1343
1344 host = (struct sdhci_host*)param;
1345
Chris Ball0c9c99a2011-04-27 17:35:31 -04001346 /*
1347 * If this tasklet gets rescheduled while running, it will
1348 * be run again afterwards but without any active request.
1349 */
1350 if (!host->mrq)
1351 return;
1352
Pierre Ossmand129bce2006-03-24 03:18:17 -08001353 spin_lock_irqsave(&host->lock, flags);
1354
1355 del_timer(&host->timer);
1356
1357 mrq = host->mrq;
1358
Pierre Ossmand129bce2006-03-24 03:18:17 -08001359 /*
1360 * The controller needs a reset of internal state machines
1361 * upon error conditions.
1362 */
Pierre Ossman1e728592008-04-16 19:13:13 +02001363 if (!(host->flags & SDHCI_DEVICE_DEAD) &&
Ben Dooksb7b4d342011-04-27 14:24:19 +01001364 ((mrq->cmd && mrq->cmd->error) ||
Pierre Ossman1e728592008-04-16 19:13:13 +02001365 (mrq->data && (mrq->data->error ||
1366 (mrq->data->stop && mrq->data->stop->error))) ||
1367 (host->quirks & SDHCI_QUIRK_RESET_AFTER_REQUEST))) {
Pierre Ossman645289d2006-06-30 02:22:33 -07001368
1369 /* Some controllers need this kick or reset won't work here */
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001370 if (host->quirks & SDHCI_QUIRK_CLOCK_BEFORE_RESET) {
Pierre Ossman645289d2006-06-30 02:22:33 -07001371 unsigned int clock;
1372
1373 /* This is to force an update */
1374 clock = host->clock;
1375 host->clock = 0;
1376 sdhci_set_clock(host, clock);
1377 }
1378
1379 /* Spec says we should do both at the same time, but Ricoh
1380 controllers do not like that. */
Pierre Ossmand129bce2006-03-24 03:18:17 -08001381 sdhci_reset(host, SDHCI_RESET_CMD);
1382 sdhci_reset(host, SDHCI_RESET_DATA);
1383 }
1384
1385 host->mrq = NULL;
1386 host->cmd = NULL;
1387 host->data = NULL;
1388
Pierre Ossmanf9134312008-12-21 17:01:48 +01001389#ifndef SDHCI_USE_LEDS_CLASS
Pierre Ossmand129bce2006-03-24 03:18:17 -08001390 sdhci_deactivate_led(host);
Pierre Ossman2f730fe2008-03-17 10:29:38 +01001391#endif
Pierre Ossmand129bce2006-03-24 03:18:17 -08001392
Pierre Ossman5f25a662006-10-04 02:15:39 -07001393 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -08001394 spin_unlock_irqrestore(&host->lock, flags);
1395
1396 mmc_request_done(host->mmc, mrq);
1397}
1398
1399static void sdhci_timeout_timer(unsigned long data)
1400{
1401 struct sdhci_host *host;
1402 unsigned long flags;
1403
1404 host = (struct sdhci_host*)data;
1405
1406 spin_lock_irqsave(&host->lock, flags);
1407
1408 if (host->mrq) {
Pierre Ossmanacf1da42007-02-09 08:29:19 +01001409 printk(KERN_ERR "%s: Timeout waiting for hardware "
1410 "interrupt.\n", mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -08001411 sdhci_dumpregs(host);
1412
1413 if (host->data) {
Pierre Ossman17b04292007-07-22 22:18:46 +02001414 host->data->error = -ETIMEDOUT;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001415 sdhci_finish_data(host);
1416 } else {
1417 if (host->cmd)
Pierre Ossman17b04292007-07-22 22:18:46 +02001418 host->cmd->error = -ETIMEDOUT;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001419 else
Pierre Ossman17b04292007-07-22 22:18:46 +02001420 host->mrq->cmd->error = -ETIMEDOUT;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001421
1422 tasklet_schedule(&host->finish_tasklet);
1423 }
1424 }
1425
Pierre Ossman5f25a662006-10-04 02:15:39 -07001426 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -08001427 spin_unlock_irqrestore(&host->lock, flags);
1428}
1429
1430/*****************************************************************************\
1431 * *
1432 * Interrupt handling *
1433 * *
1434\*****************************************************************************/
1435
1436static void sdhci_cmd_irq(struct sdhci_host *host, u32 intmask)
1437{
1438 BUG_ON(intmask == 0);
1439
1440 if (!host->cmd) {
Pierre Ossmanb67ac3f2007-08-12 17:29:47 +02001441 printk(KERN_ERR "%s: Got command interrupt 0x%08x even "
1442 "though no command operation was in progress.\n",
1443 mmc_hostname(host->mmc), (unsigned)intmask);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001444 sdhci_dumpregs(host);
1445 return;
1446 }
1447
Pierre Ossman43b58b32007-07-25 23:15:27 +02001448 if (intmask & SDHCI_INT_TIMEOUT)
Pierre Ossman17b04292007-07-22 22:18:46 +02001449 host->cmd->error = -ETIMEDOUT;
1450 else if (intmask & (SDHCI_INT_CRC | SDHCI_INT_END_BIT |
1451 SDHCI_INT_INDEX))
1452 host->cmd->error = -EILSEQ;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001453
Pierre Ossmane8095172008-07-25 01:09:08 +02001454 if (host->cmd->error) {
Pierre Ossmand129bce2006-03-24 03:18:17 -08001455 tasklet_schedule(&host->finish_tasklet);
Pierre Ossmane8095172008-07-25 01:09:08 +02001456 return;
1457 }
1458
1459 /*
1460 * The host can send and interrupt when the busy state has
1461 * ended, allowing us to wait without wasting CPU cycles.
1462 * Unfortunately this is overloaded on the "data complete"
1463 * interrupt, so we need to take some care when handling
1464 * it.
1465 *
1466 * Note: The 1.0 specification is a bit ambiguous about this
1467 * feature so there might be some problems with older
1468 * controllers.
1469 */
1470 if (host->cmd->flags & MMC_RSP_BUSY) {
1471 if (host->cmd->data)
1472 DBG("Cannot wait for busy signal when also "
1473 "doing a data transfer");
Ben Dooksf9454052009-02-20 20:33:08 +03001474 else if (!(host->quirks & SDHCI_QUIRK_NO_BUSY_IRQ))
Pierre Ossmane8095172008-07-25 01:09:08 +02001475 return;
Ben Dooksf9454052009-02-20 20:33:08 +03001476
1477 /* The controller does not support the end-of-busy IRQ,
1478 * fall through and take the SDHCI_INT_RESPONSE */
Pierre Ossmane8095172008-07-25 01:09:08 +02001479 }
1480
1481 if (intmask & SDHCI_INT_RESPONSE)
Pierre Ossman43b58b32007-07-25 23:15:27 +02001482 sdhci_finish_command(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001483}
1484
George G. Davis0957c332010-02-18 12:32:12 -05001485#ifdef CONFIG_MMC_DEBUG
Ben Dooks6882a8c2009-06-14 13:52:38 +01001486static void sdhci_show_adma_error(struct sdhci_host *host)
1487{
1488 const char *name = mmc_hostname(host->mmc);
1489 u8 *desc = host->adma_desc;
1490 __le32 *dma;
1491 __le16 *len;
1492 u8 attr;
1493
1494 sdhci_dumpregs(host);
1495
1496 while (true) {
1497 dma = (__le32 *)(desc + 4);
1498 len = (__le16 *)(desc + 2);
1499 attr = *desc;
1500
1501 DBG("%s: %p: DMA 0x%08x, LEN 0x%04x, Attr=0x%02x\n",
1502 name, desc, le32_to_cpu(*dma), le16_to_cpu(*len), attr);
1503
1504 desc += 8;
1505
1506 if (attr & 2)
1507 break;
1508 }
1509}
1510#else
1511static void sdhci_show_adma_error(struct sdhci_host *host) { }
1512#endif
1513
Pierre Ossmand129bce2006-03-24 03:18:17 -08001514static void sdhci_data_irq(struct sdhci_host *host, u32 intmask)
1515{
1516 BUG_ON(intmask == 0);
1517
1518 if (!host->data) {
1519 /*
Pierre Ossmane8095172008-07-25 01:09:08 +02001520 * The "data complete" interrupt is also used to
1521 * indicate that a busy state has ended. See comment
1522 * above in sdhci_cmd_irq().
Pierre Ossmand129bce2006-03-24 03:18:17 -08001523 */
Pierre Ossmane8095172008-07-25 01:09:08 +02001524 if (host->cmd && (host->cmd->flags & MMC_RSP_BUSY)) {
1525 if (intmask & SDHCI_INT_DATA_END) {
1526 sdhci_finish_command(host);
1527 return;
1528 }
1529 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001530
Pierre Ossmanb67ac3f2007-08-12 17:29:47 +02001531 printk(KERN_ERR "%s: Got data interrupt 0x%08x even "
1532 "though no data operation was in progress.\n",
1533 mmc_hostname(host->mmc), (unsigned)intmask);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001534 sdhci_dumpregs(host);
1535
1536 return;
1537 }
1538
1539 if (intmask & SDHCI_INT_DATA_TIMEOUT)
Pierre Ossman17b04292007-07-22 22:18:46 +02001540 host->data->error = -ETIMEDOUT;
Aries Lee22113ef2010-12-15 08:14:24 +01001541 else if (intmask & SDHCI_INT_DATA_END_BIT)
1542 host->data->error = -EILSEQ;
1543 else if ((intmask & SDHCI_INT_DATA_CRC) &&
1544 SDHCI_GET_CMD(sdhci_readw(host, SDHCI_COMMAND))
1545 != MMC_BUS_TEST_R)
Pierre Ossman17b04292007-07-22 22:18:46 +02001546 host->data->error = -EILSEQ;
Ben Dooks6882a8c2009-06-14 13:52:38 +01001547 else if (intmask & SDHCI_INT_ADMA_ERROR) {
1548 printk(KERN_ERR "%s: ADMA error\n", mmc_hostname(host->mmc));
1549 sdhci_show_adma_error(host);
Pierre Ossman2134a922008-06-28 18:28:51 +02001550 host->data->error = -EIO;
Ben Dooks6882a8c2009-06-14 13:52:38 +01001551 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001552
Pierre Ossman17b04292007-07-22 22:18:46 +02001553 if (host->data->error)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001554 sdhci_finish_data(host);
1555 else {
Pierre Ossmana406f5a2006-07-02 16:50:59 +01001556 if (intmask & (SDHCI_INT_DATA_AVAIL | SDHCI_INT_SPACE_AVAIL))
Pierre Ossmand129bce2006-03-24 03:18:17 -08001557 sdhci_transfer_pio(host);
1558
Pierre Ossman6ba736a2007-05-13 22:39:23 +02001559 /*
1560 * We currently don't do anything fancy with DMA
1561 * boundaries, but as we can't disable the feature
1562 * we need to at least restart the transfer.
Mikko Vinnif6a03cb2011-04-12 09:36:18 -04001563 *
1564 * According to the spec sdhci_readl(host, SDHCI_DMA_ADDRESS)
1565 * should return a valid address to continue from, but as
1566 * some controllers are faulty, don't trust them.
Pierre Ossman6ba736a2007-05-13 22:39:23 +02001567 */
Mikko Vinnif6a03cb2011-04-12 09:36:18 -04001568 if (intmask & SDHCI_INT_DMA_END) {
1569 u32 dmastart, dmanow;
1570 dmastart = sg_dma_address(host->data->sg);
1571 dmanow = dmastart + host->data->bytes_xfered;
1572 /*
1573 * Force update to the next DMA block boundary.
1574 */
1575 dmanow = (dmanow &
1576 ~(SDHCI_DEFAULT_BOUNDARY_SIZE - 1)) +
1577 SDHCI_DEFAULT_BOUNDARY_SIZE;
1578 host->data->bytes_xfered = dmanow - dmastart;
1579 DBG("%s: DMA base 0x%08x, transferred 0x%06x bytes,"
1580 " next 0x%08x\n",
1581 mmc_hostname(host->mmc), dmastart,
1582 host->data->bytes_xfered, dmanow);
1583 sdhci_writel(host, dmanow, SDHCI_DMA_ADDRESS);
1584 }
Pierre Ossman6ba736a2007-05-13 22:39:23 +02001585
Pierre Ossmane538fbe2007-08-12 16:46:32 +02001586 if (intmask & SDHCI_INT_DATA_END) {
1587 if (host->cmd) {
1588 /*
1589 * Data managed to finish before the
1590 * command completed. Make sure we do
1591 * things in the proper order.
1592 */
1593 host->data_early = 1;
1594 } else {
1595 sdhci_finish_data(host);
1596 }
1597 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001598 }
1599}
1600
David Howells7d12e782006-10-05 14:55:46 +01001601static irqreturn_t sdhci_irq(int irq, void *dev_id)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001602{
1603 irqreturn_t result;
1604 struct sdhci_host* host = dev_id;
1605 u32 intmask;
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001606 int cardint = 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001607
1608 spin_lock(&host->lock);
1609
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001610 intmask = sdhci_readl(host, SDHCI_INT_STATUS);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001611
Mark Lord62df67a52007-03-06 13:30:13 +01001612 if (!intmask || intmask == 0xffffffff) {
Pierre Ossmand129bce2006-03-24 03:18:17 -08001613 result = IRQ_NONE;
1614 goto out;
1615 }
1616
Pierre Ossmanb69c9052008-03-08 23:44:25 +01001617 DBG("*** %s got interrupt: 0x%08x\n",
1618 mmc_hostname(host->mmc), intmask);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001619
Pierre Ossman3192a282006-06-30 02:22:26 -07001620 if (intmask & (SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE)) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001621 sdhci_writel(host, intmask & (SDHCI_INT_CARD_INSERT |
1622 SDHCI_INT_CARD_REMOVE), SDHCI_INT_STATUS);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001623 tasklet_schedule(&host->card_tasklet);
Pierre Ossman3192a282006-06-30 02:22:26 -07001624 }
1625
1626 intmask &= ~(SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001627
1628 if (intmask & SDHCI_INT_CMD_MASK) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001629 sdhci_writel(host, intmask & SDHCI_INT_CMD_MASK,
1630 SDHCI_INT_STATUS);
Pierre Ossman3192a282006-06-30 02:22:26 -07001631 sdhci_cmd_irq(host, intmask & SDHCI_INT_CMD_MASK);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001632 }
1633
1634 if (intmask & SDHCI_INT_DATA_MASK) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001635 sdhci_writel(host, intmask & SDHCI_INT_DATA_MASK,
1636 SDHCI_INT_STATUS);
Pierre Ossman3192a282006-06-30 02:22:26 -07001637 sdhci_data_irq(host, intmask & SDHCI_INT_DATA_MASK);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001638 }
1639
1640 intmask &= ~(SDHCI_INT_CMD_MASK | SDHCI_INT_DATA_MASK);
1641
Pierre Ossman964f9ce2007-07-20 18:20:36 +02001642 intmask &= ~SDHCI_INT_ERROR;
1643
Pierre Ossmand129bce2006-03-24 03:18:17 -08001644 if (intmask & SDHCI_INT_BUS_POWER) {
Pierre Ossman3192a282006-06-30 02:22:26 -07001645 printk(KERN_ERR "%s: Card is consuming too much power!\n",
Pierre Ossmand129bce2006-03-24 03:18:17 -08001646 mmc_hostname(host->mmc));
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001647 sdhci_writel(host, SDHCI_INT_BUS_POWER, SDHCI_INT_STATUS);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001648 }
1649
Rolf Eike Beer9d26a5d2007-06-26 13:31:16 +02001650 intmask &= ~SDHCI_INT_BUS_POWER;
Pierre Ossman3192a282006-06-30 02:22:26 -07001651
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001652 if (intmask & SDHCI_INT_CARD_INT)
1653 cardint = 1;
1654
1655 intmask &= ~SDHCI_INT_CARD_INT;
1656
Pierre Ossman3192a282006-06-30 02:22:26 -07001657 if (intmask) {
Pierre Ossmanacf1da42007-02-09 08:29:19 +01001658 printk(KERN_ERR "%s: Unexpected interrupt 0x%08x.\n",
Pierre Ossman3192a282006-06-30 02:22:26 -07001659 mmc_hostname(host->mmc), intmask);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001660 sdhci_dumpregs(host);
1661
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001662 sdhci_writel(host, intmask, SDHCI_INT_STATUS);
Pierre Ossman3192a282006-06-30 02:22:26 -07001663 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001664
1665 result = IRQ_HANDLED;
1666
Pierre Ossman5f25a662006-10-04 02:15:39 -07001667 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -08001668out:
1669 spin_unlock(&host->lock);
1670
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001671 /*
1672 * We have to delay this as it calls back into the driver.
1673 */
1674 if (cardint)
1675 mmc_signal_sdio_irq(host->mmc);
1676
Pierre Ossmand129bce2006-03-24 03:18:17 -08001677 return result;
1678}
1679
1680/*****************************************************************************\
1681 * *
1682 * Suspend/resume *
1683 * *
1684\*****************************************************************************/
1685
1686#ifdef CONFIG_PM
1687
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001688int sdhci_suspend_host(struct sdhci_host *host, pm_message_t state)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001689{
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001690 int ret;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001691
Anton Vorontsov7260cf52009-03-17 00:13:48 +03001692 sdhci_disable_card_detection(host);
1693
Matt Fleming1a13f8f2010-05-26 14:42:08 -07001694 ret = mmc_suspend_host(host->mmc);
Pierre Ossmandf1c4b72007-01-30 07:55:15 +01001695 if (ret)
1696 return ret;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001697
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001698 free_irq(host->irq, host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001699
Marek Szyprowski9bea3c82010-08-10 18:01:59 -07001700 if (host->vmmc)
1701 ret = regulator_disable(host->vmmc);
1702
1703 return ret;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001704}
1705
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001706EXPORT_SYMBOL_GPL(sdhci_suspend_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001707
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001708int sdhci_resume_host(struct sdhci_host *host)
1709{
1710 int ret;
1711
Marek Szyprowski9bea3c82010-08-10 18:01:59 -07001712 if (host->vmmc) {
1713 int ret = regulator_enable(host->vmmc);
1714 if (ret)
1715 return ret;
1716 }
1717
1718
Richard Röjforsa13abc72009-09-22 16:45:30 -07001719 if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001720 if (host->ops->enable_dma)
1721 host->ops->enable_dma(host);
1722 }
1723
1724 ret = request_irq(host->irq, sdhci_irq, IRQF_SHARED,
1725 mmc_hostname(host->mmc), host);
1726 if (ret)
1727 return ret;
1728
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08001729 sdhci_init(host, (host->mmc->pm_flags & MMC_PM_KEEP_POWER));
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001730 mmiowb();
1731
1732 ret = mmc_resume_host(host->mmc);
Anton Vorontsov7260cf52009-03-17 00:13:48 +03001733 sdhci_enable_card_detection(host);
1734
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08001735 return ret;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001736}
1737
1738EXPORT_SYMBOL_GPL(sdhci_resume_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001739
Daniel Drake5f619702010-11-04 22:20:39 +00001740void sdhci_enable_irq_wakeups(struct sdhci_host *host)
1741{
1742 u8 val;
1743 val = sdhci_readb(host, SDHCI_WAKE_UP_CONTROL);
1744 val |= SDHCI_WAKE_ON_INT;
1745 sdhci_writeb(host, val, SDHCI_WAKE_UP_CONTROL);
1746}
1747
1748EXPORT_SYMBOL_GPL(sdhci_enable_irq_wakeups);
1749
Pierre Ossmand129bce2006-03-24 03:18:17 -08001750#endif /* CONFIG_PM */
1751
1752/*****************************************************************************\
1753 * *
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001754 * Device allocation/registration *
Pierre Ossmand129bce2006-03-24 03:18:17 -08001755 * *
1756\*****************************************************************************/
1757
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001758struct sdhci_host *sdhci_alloc_host(struct device *dev,
1759 size_t priv_size)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001760{
Pierre Ossmand129bce2006-03-24 03:18:17 -08001761 struct mmc_host *mmc;
1762 struct sdhci_host *host;
1763
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001764 WARN_ON(dev == NULL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001765
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001766 mmc = mmc_alloc_host(sizeof(struct sdhci_host) + priv_size, dev);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001767 if (!mmc)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001768 return ERR_PTR(-ENOMEM);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001769
1770 host = mmc_priv(mmc);
1771 host->mmc = mmc;
1772
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001773 return host;
1774}
Pierre Ossman8a4da142006-10-04 02:15:40 -07001775
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001776EXPORT_SYMBOL_GPL(sdhci_alloc_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001777
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001778int sdhci_add_host(struct sdhci_host *host)
1779{
1780 struct mmc_host *mmc;
Takashi Iwai8f230f42010-12-08 10:04:30 +01001781 unsigned int caps, ocr_avail;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001782 int ret;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001783
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001784 WARN_ON(host == NULL);
1785 if (host == NULL)
1786 return -EINVAL;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001787
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001788 mmc = host->mmc;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001789
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001790 if (debug_quirks)
1791 host->quirks = debug_quirks;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001792
Pierre Ossmand96649e2006-06-30 02:22:30 -07001793 sdhci_reset(host, SDHCI_RESET_ALL);
1794
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001795 host->version = sdhci_readw(host, SDHCI_HOST_VERSION);
Pierre Ossman2134a922008-06-28 18:28:51 +02001796 host->version = (host->version & SDHCI_SPEC_VER_MASK)
1797 >> SDHCI_SPEC_VER_SHIFT;
Zhangfei Gao85105c52010-08-06 07:10:01 +08001798 if (host->version > SDHCI_SPEC_300) {
Pierre Ossman4a965502006-06-30 02:22:29 -07001799 printk(KERN_ERR "%s: Unknown controller version (%d). "
Pierre Ossmanb69c9052008-03-08 23:44:25 +01001800 "You may experience problems.\n", mmc_hostname(mmc),
Pierre Ossman2134a922008-06-28 18:28:51 +02001801 host->version);
Pierre Ossman4a965502006-06-30 02:22:29 -07001802 }
1803
Maxim Levitskyccc92c22010-08-10 18:01:42 -07001804 caps = (host->quirks & SDHCI_QUIRK_MISSING_CAPS) ? host->caps :
1805 sdhci_readl(host, SDHCI_CAPABILITIES);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001806
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001807 if (host->quirks & SDHCI_QUIRK_FORCE_DMA)
Richard Röjforsa13abc72009-09-22 16:45:30 -07001808 host->flags |= SDHCI_USE_SDMA;
1809 else if (!(caps & SDHCI_CAN_DO_SDMA))
1810 DBG("Controller doesn't have SDMA capability\n");
Pierre Ossman67435272006-06-30 02:22:31 -07001811 else
Richard Röjforsa13abc72009-09-22 16:45:30 -07001812 host->flags |= SDHCI_USE_SDMA;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001813
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001814 if ((host->quirks & SDHCI_QUIRK_BROKEN_DMA) &&
Richard Röjforsa13abc72009-09-22 16:45:30 -07001815 (host->flags & SDHCI_USE_SDMA)) {
Rolf Eike Beercee687c2007-11-02 15:22:30 +01001816 DBG("Disabling DMA as it is marked broken\n");
Richard Röjforsa13abc72009-09-22 16:45:30 -07001817 host->flags &= ~SDHCI_USE_SDMA;
Feng Tang7c168e32007-09-30 12:44:18 +02001818 }
1819
Richard Röjforsa13abc72009-09-22 16:45:30 -07001820 if ((host->version >= SDHCI_SPEC_200) && (caps & SDHCI_CAN_DO_ADMA2))
1821 host->flags |= SDHCI_USE_ADMA;
Pierre Ossman2134a922008-06-28 18:28:51 +02001822
1823 if ((host->quirks & SDHCI_QUIRK_BROKEN_ADMA) &&
1824 (host->flags & SDHCI_USE_ADMA)) {
1825 DBG("Disabling ADMA as it is marked broken\n");
1826 host->flags &= ~SDHCI_USE_ADMA;
1827 }
1828
Richard Röjforsa13abc72009-09-22 16:45:30 -07001829 if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001830 if (host->ops->enable_dma) {
1831 if (host->ops->enable_dma(host)) {
1832 printk(KERN_WARNING "%s: No suitable DMA "
1833 "available. Falling back to PIO.\n",
1834 mmc_hostname(mmc));
Richard Röjforsa13abc72009-09-22 16:45:30 -07001835 host->flags &=
1836 ~(SDHCI_USE_SDMA | SDHCI_USE_ADMA);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001837 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001838 }
1839 }
1840
Pierre Ossman2134a922008-06-28 18:28:51 +02001841 if (host->flags & SDHCI_USE_ADMA) {
1842 /*
1843 * We need to allocate descriptors for all sg entries
1844 * (128) and potentially one alignment transfer for
1845 * each of those entries.
1846 */
1847 host->adma_desc = kmalloc((128 * 2 + 1) * 4, GFP_KERNEL);
1848 host->align_buffer = kmalloc(128 * 4, GFP_KERNEL);
1849 if (!host->adma_desc || !host->align_buffer) {
1850 kfree(host->adma_desc);
1851 kfree(host->align_buffer);
1852 printk(KERN_WARNING "%s: Unable to allocate ADMA "
1853 "buffers. Falling back to standard DMA.\n",
1854 mmc_hostname(mmc));
1855 host->flags &= ~SDHCI_USE_ADMA;
1856 }
1857 }
1858
Pierre Ossman76591502008-07-21 00:32:11 +02001859 /*
1860 * If we use DMA, then it's up to the caller to set the DMA
1861 * mask, but PIO does not need the hw shim so we set a new
1862 * mask here in that case.
1863 */
Richard Röjforsa13abc72009-09-22 16:45:30 -07001864 if (!(host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA))) {
Pierre Ossman76591502008-07-21 00:32:11 +02001865 host->dma_mask = DMA_BIT_MASK(64);
1866 mmc_dev(host->mmc)->dma_mask = &host->dma_mask;
1867 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001868
Zhangfei Gaoc4687d52010-08-20 14:02:36 -04001869 if (host->version >= SDHCI_SPEC_300)
1870 host->max_clk = (caps & SDHCI_CLOCK_V3_BASE_MASK)
1871 >> SDHCI_CLOCK_BASE_SHIFT;
1872 else
1873 host->max_clk = (caps & SDHCI_CLOCK_BASE_MASK)
1874 >> SDHCI_CLOCK_BASE_SHIFT;
1875
Pierre Ossmand129bce2006-03-24 03:18:17 -08001876 host->max_clk *= 1000000;
Anton Vorontsovf27f47e2010-05-26 14:41:53 -07001877 if (host->max_clk == 0 || host->quirks &
1878 SDHCI_QUIRK_CAP_CLOCK_BASE_BROKEN) {
Ben Dooks4240ff02009-03-17 00:13:57 +03001879 if (!host->ops->get_max_clock) {
1880 printk(KERN_ERR
1881 "%s: Hardware doesn't specify base clock "
1882 "frequency.\n", mmc_hostname(mmc));
1883 return -ENODEV;
1884 }
1885 host->max_clk = host->ops->get_max_clock(host);
1886 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001887
Pierre Ossman1c8cde92006-06-30 02:22:25 -07001888 host->timeout_clk =
1889 (caps & SDHCI_TIMEOUT_CLK_MASK) >> SDHCI_TIMEOUT_CLK_SHIFT;
1890 if (host->timeout_clk == 0) {
Anton Vorontsov81b39802009-09-22 16:45:13 -07001891 if (host->ops->get_timeout_clock) {
1892 host->timeout_clk = host->ops->get_timeout_clock(host);
1893 } else if (!(host->quirks &
1894 SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK)) {
Ben Dooks4240ff02009-03-17 00:13:57 +03001895 printk(KERN_ERR
1896 "%s: Hardware doesn't specify timeout clock "
1897 "frequency.\n", mmc_hostname(mmc));
1898 return -ENODEV;
1899 }
Pierre Ossman1c8cde92006-06-30 02:22:25 -07001900 }
1901 if (caps & SDHCI_TIMEOUT_CLK_UNIT)
1902 host->timeout_clk *= 1000;
1903
Andrei Warkentina3c77782011-04-11 16:13:42 -05001904 if (host->quirks & SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK)
1905 host->timeout_clk = host->clock / 1000;
1906
Pierre Ossmand129bce2006-03-24 03:18:17 -08001907 /*
1908 * Set host parameters.
1909 */
1910 mmc->ops = &sdhci_ops;
Marek Szyprowskice5f0362010-08-10 18:01:56 -07001911 if (host->ops->get_min_clock)
Anton Vorontsova9e58f22009-07-29 15:04:16 -07001912 mmc->f_min = host->ops->get_min_clock(host);
Zhangfei Gao03975262010-09-20 15:15:18 -04001913 else if (host->version >= SDHCI_SPEC_300)
1914 mmc->f_min = host->max_clk / SDHCI_MAX_DIV_SPEC_300;
Anton Vorontsova9e58f22009-07-29 15:04:16 -07001915 else
Zhangfei Gao03975262010-09-20 15:15:18 -04001916 mmc->f_min = host->max_clk / SDHCI_MAX_DIV_SPEC_200;
Philip Rakity15ec4462010-11-19 16:48:39 -05001917
Pierre Ossmand129bce2006-03-24 03:18:17 -08001918 mmc->f_max = host->max_clk;
Andrei Warkentina3c77782011-04-11 16:13:42 -05001919 mmc->caps |= MMC_CAP_SDIO_IRQ | MMC_CAP_ERASE;
Anton Vorontsov5fe23c72009-06-18 00:14:08 +04001920
Philip Rakity15ec4462010-11-19 16:48:39 -05001921 /*
1922 * A controller may support 8-bit width, but the board itself
1923 * might not have the pins brought out. Boards that support
1924 * 8-bit width must set "mmc->caps |= MMC_CAP_8_BIT_DATA;" in
1925 * their platform code before calling sdhci_add_host(), and we
1926 * won't assume 8-bit width for hosts without that CAP.
1927 */
Anton Vorontsov5fe23c72009-06-18 00:14:08 +04001928 if (!(host->quirks & SDHCI_QUIRK_FORCE_1_BIT_DATA))
Philip Rakity15ec4462010-11-19 16:48:39 -05001929 mmc->caps |= MMC_CAP_4_BIT_DATA;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001930
Pierre Ossman86a6a872009-02-02 21:13:49 +01001931 if (caps & SDHCI_CAN_DO_HISPD)
Zhangfei Gaoa29e7e12010-08-16 21:15:32 -04001932 mmc->caps |= MMC_CAP_SD_HIGHSPEED | MMC_CAP_MMC_HIGHSPEED;
Pierre Ossmancd9277c2007-02-18 12:07:47 +01001933
Jaehoon Chung176d1ed2010-09-27 09:42:20 +01001934 if ((host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION) &&
1935 mmc_card_is_removable(mmc))
Anton Vorontsov68d1fb72009-03-17 00:13:52 +03001936 mmc->caps |= MMC_CAP_NEEDS_POLL;
1937
Takashi Iwai8f230f42010-12-08 10:04:30 +01001938 ocr_avail = 0;
Pierre Ossman146ad662006-06-30 02:22:23 -07001939 if (caps & SDHCI_CAN_VDD_330)
Takashi Iwai8f230f42010-12-08 10:04:30 +01001940 ocr_avail |= MMC_VDD_32_33 | MMC_VDD_33_34;
Pierre Ossmanc70840e2007-02-02 22:41:41 +01001941 if (caps & SDHCI_CAN_VDD_300)
Takashi Iwai8f230f42010-12-08 10:04:30 +01001942 ocr_avail |= MMC_VDD_29_30 | MMC_VDD_30_31;
Pierre Ossmanc70840e2007-02-02 22:41:41 +01001943 if (caps & SDHCI_CAN_VDD_180)
Takashi Iwai8f230f42010-12-08 10:04:30 +01001944 ocr_avail |= MMC_VDD_165_195;
1945
1946 mmc->ocr_avail = ocr_avail;
1947 mmc->ocr_avail_sdio = ocr_avail;
1948 if (host->ocr_avail_sdio)
1949 mmc->ocr_avail_sdio &= host->ocr_avail_sdio;
1950 mmc->ocr_avail_sd = ocr_avail;
1951 if (host->ocr_avail_sd)
1952 mmc->ocr_avail_sd &= host->ocr_avail_sd;
1953 else /* normal SD controllers don't support 1.8V */
1954 mmc->ocr_avail_sd &= ~MMC_VDD_165_195;
1955 mmc->ocr_avail_mmc = ocr_avail;
1956 if (host->ocr_avail_mmc)
1957 mmc->ocr_avail_mmc &= host->ocr_avail_mmc;
Pierre Ossman146ad662006-06-30 02:22:23 -07001958
1959 if (mmc->ocr_avail == 0) {
1960 printk(KERN_ERR "%s: Hardware doesn't report any "
Pierre Ossmanb69c9052008-03-08 23:44:25 +01001961 "support voltages.\n", mmc_hostname(mmc));
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001962 return -ENODEV;
Pierre Ossman146ad662006-06-30 02:22:23 -07001963 }
1964
Pierre Ossmand129bce2006-03-24 03:18:17 -08001965 spin_lock_init(&host->lock);
1966
1967 /*
Pierre Ossman2134a922008-06-28 18:28:51 +02001968 * Maximum number of segments. Depends on if the hardware
1969 * can do scatter/gather or not.
Pierre Ossmand129bce2006-03-24 03:18:17 -08001970 */
Pierre Ossman2134a922008-06-28 18:28:51 +02001971 if (host->flags & SDHCI_USE_ADMA)
Martin K. Petersena36274e2010-09-10 01:33:59 -04001972 mmc->max_segs = 128;
Richard Röjforsa13abc72009-09-22 16:45:30 -07001973 else if (host->flags & SDHCI_USE_SDMA)
Martin K. Petersena36274e2010-09-10 01:33:59 -04001974 mmc->max_segs = 1;
Pierre Ossman2134a922008-06-28 18:28:51 +02001975 else /* PIO */
Martin K. Petersena36274e2010-09-10 01:33:59 -04001976 mmc->max_segs = 128;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001977
1978 /*
Pierre Ossmanbab76962006-07-02 16:51:35 +01001979 * Maximum number of sectors in one transfer. Limited by DMA boundary
Pierre Ossman55db8902006-11-21 17:55:45 +01001980 * size (512KiB).
Pierre Ossmand129bce2006-03-24 03:18:17 -08001981 */
Pierre Ossman55db8902006-11-21 17:55:45 +01001982 mmc->max_req_size = 524288;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001983
1984 /*
1985 * Maximum segment size. Could be one segment with the maximum number
Pierre Ossman2134a922008-06-28 18:28:51 +02001986 * of bytes. When doing hardware scatter/gather, each entry cannot
1987 * be larger than 64 KiB though.
Pierre Ossmand129bce2006-03-24 03:18:17 -08001988 */
Olof Johansson30652aa2011-01-01 18:37:32 -06001989 if (host->flags & SDHCI_USE_ADMA) {
1990 if (host->quirks & SDHCI_QUIRK_BROKEN_ADMA_ZEROLEN_DESC)
1991 mmc->max_seg_size = 65535;
1992 else
1993 mmc->max_seg_size = 65536;
1994 } else {
Pierre Ossman2134a922008-06-28 18:28:51 +02001995 mmc->max_seg_size = mmc->max_req_size;
Olof Johansson30652aa2011-01-01 18:37:32 -06001996 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001997
1998 /*
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +01001999 * Maximum block size. This varies from controller to controller and
2000 * is specified in the capabilities register.
2001 */
Anton Vorontsov0633f652009-03-17 00:14:03 +03002002 if (host->quirks & SDHCI_QUIRK_FORCE_BLK_SZ_2048) {
2003 mmc->max_blk_size = 2;
2004 } else {
2005 mmc->max_blk_size = (caps & SDHCI_MAX_BLOCK_MASK) >>
2006 SDHCI_MAX_BLOCK_SHIFT;
2007 if (mmc->max_blk_size >= 3) {
2008 printk(KERN_WARNING "%s: Invalid maximum block size, "
2009 "assuming 512 bytes\n", mmc_hostname(mmc));
2010 mmc->max_blk_size = 0;
2011 }
2012 }
2013
2014 mmc->max_blk_size = 512 << mmc->max_blk_size;
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +01002015
2016 /*
Pierre Ossman55db8902006-11-21 17:55:45 +01002017 * Maximum block count.
2018 */
Ben Dooks1388eef2009-06-14 12:40:53 +01002019 mmc->max_blk_count = (host->quirks & SDHCI_QUIRK_NO_MULTIBLOCK) ? 1 : 65535;
Pierre Ossman55db8902006-11-21 17:55:45 +01002020
2021 /*
Pierre Ossmand129bce2006-03-24 03:18:17 -08002022 * Init tasklets.
2023 */
2024 tasklet_init(&host->card_tasklet,
2025 sdhci_tasklet_card, (unsigned long)host);
2026 tasklet_init(&host->finish_tasklet,
2027 sdhci_tasklet_finish, (unsigned long)host);
2028
Al Viroe4cad1b2006-10-10 22:47:07 +01002029 setup_timer(&host->timer, sdhci_timeout_timer, (unsigned long)host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002030
Thomas Gleixnerdace1452006-07-01 19:29:38 -07002031 ret = request_irq(host->irq, sdhci_irq, IRQF_SHARED,
Pierre Ossmanb69c9052008-03-08 23:44:25 +01002032 mmc_hostname(mmc), host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002033 if (ret)
Pierre Ossman8ef1a142006-06-30 02:22:21 -07002034 goto untasklet;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002035
Marek Szyprowski9bea3c82010-08-10 18:01:59 -07002036 host->vmmc = regulator_get(mmc_dev(mmc), "vmmc");
2037 if (IS_ERR(host->vmmc)) {
2038 printk(KERN_INFO "%s: no vmmc regulator found\n", mmc_hostname(mmc));
2039 host->vmmc = NULL;
2040 } else {
2041 regulator_enable(host->vmmc);
2042 }
2043
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08002044 sdhci_init(host, 0);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002045
2046#ifdef CONFIG_MMC_DEBUG
2047 sdhci_dumpregs(host);
2048#endif
2049
Pierre Ossmanf9134312008-12-21 17:01:48 +01002050#ifdef SDHCI_USE_LEDS_CLASS
Helmut Schaa5dbace02009-02-14 16:22:39 +01002051 snprintf(host->led_name, sizeof(host->led_name),
2052 "%s::", mmc_hostname(mmc));
2053 host->led.name = host->led_name;
Pierre Ossman2f730fe2008-03-17 10:29:38 +01002054 host->led.brightness = LED_OFF;
2055 host->led.default_trigger = mmc_hostname(mmc);
2056 host->led.brightness_set = sdhci_led_control;
2057
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002058 ret = led_classdev_register(mmc_dev(mmc), &host->led);
Pierre Ossman2f730fe2008-03-17 10:29:38 +01002059 if (ret)
2060 goto reset;
2061#endif
2062
Pierre Ossman5f25a662006-10-04 02:15:39 -07002063 mmiowb();
2064
Pierre Ossmand129bce2006-03-24 03:18:17 -08002065 mmc_add_host(mmc);
2066
Richard Röjforsa13abc72009-09-22 16:45:30 -07002067 printk(KERN_INFO "%s: SDHCI controller on %s [%s] using %s\n",
Kay Sieversd1b26862008-11-08 21:37:46 +01002068 mmc_hostname(mmc), host->hw_name, dev_name(mmc_dev(mmc)),
Richard Röjforsa13abc72009-09-22 16:45:30 -07002069 (host->flags & SDHCI_USE_ADMA) ? "ADMA" :
2070 (host->flags & SDHCI_USE_SDMA) ? "DMA" : "PIO");
Pierre Ossmand129bce2006-03-24 03:18:17 -08002071
Anton Vorontsov7260cf52009-03-17 00:13:48 +03002072 sdhci_enable_card_detection(host);
2073
Pierre Ossmand129bce2006-03-24 03:18:17 -08002074 return 0;
2075
Pierre Ossmanf9134312008-12-21 17:01:48 +01002076#ifdef SDHCI_USE_LEDS_CLASS
Pierre Ossman2f730fe2008-03-17 10:29:38 +01002077reset:
2078 sdhci_reset(host, SDHCI_RESET_ALL);
2079 free_irq(host->irq, host);
2080#endif
Pierre Ossman8ef1a142006-06-30 02:22:21 -07002081untasklet:
Pierre Ossmand129bce2006-03-24 03:18:17 -08002082 tasklet_kill(&host->card_tasklet);
2083 tasklet_kill(&host->finish_tasklet);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002084
2085 return ret;
2086}
2087
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002088EXPORT_SYMBOL_GPL(sdhci_add_host);
2089
Pierre Ossman1e728592008-04-16 19:13:13 +02002090void sdhci_remove_host(struct sdhci_host *host, int dead)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002091{
Pierre Ossman1e728592008-04-16 19:13:13 +02002092 unsigned long flags;
2093
2094 if (dead) {
2095 spin_lock_irqsave(&host->lock, flags);
2096
2097 host->flags |= SDHCI_DEVICE_DEAD;
2098
2099 if (host->mrq) {
2100 printk(KERN_ERR "%s: Controller removed during "
2101 " transfer!\n", mmc_hostname(host->mmc));
2102
2103 host->mrq->cmd->error = -ENOMEDIUM;
2104 tasklet_schedule(&host->finish_tasklet);
2105 }
2106
2107 spin_unlock_irqrestore(&host->lock, flags);
2108 }
2109
Anton Vorontsov7260cf52009-03-17 00:13:48 +03002110 sdhci_disable_card_detection(host);
2111
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002112 mmc_remove_host(host->mmc);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002113
Pierre Ossmanf9134312008-12-21 17:01:48 +01002114#ifdef SDHCI_USE_LEDS_CLASS
Pierre Ossman2f730fe2008-03-17 10:29:38 +01002115 led_classdev_unregister(&host->led);
2116#endif
2117
Pierre Ossman1e728592008-04-16 19:13:13 +02002118 if (!dead)
2119 sdhci_reset(host, SDHCI_RESET_ALL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002120
2121 free_irq(host->irq, host);
2122
2123 del_timer_sync(&host->timer);
2124
2125 tasklet_kill(&host->card_tasklet);
2126 tasklet_kill(&host->finish_tasklet);
Pierre Ossman2134a922008-06-28 18:28:51 +02002127
Marek Szyprowski9bea3c82010-08-10 18:01:59 -07002128 if (host->vmmc) {
2129 regulator_disable(host->vmmc);
2130 regulator_put(host->vmmc);
2131 }
2132
Pierre Ossman2134a922008-06-28 18:28:51 +02002133 kfree(host->adma_desc);
2134 kfree(host->align_buffer);
2135
2136 host->adma_desc = NULL;
2137 host->align_buffer = NULL;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002138}
2139
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002140EXPORT_SYMBOL_GPL(sdhci_remove_host);
2141
2142void sdhci_free_host(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002143{
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002144 mmc_free_host(host->mmc);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002145}
2146
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002147EXPORT_SYMBOL_GPL(sdhci_free_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002148
2149/*****************************************************************************\
2150 * *
2151 * Driver init/exit *
2152 * *
2153\*****************************************************************************/
2154
2155static int __init sdhci_drv_init(void)
2156{
2157 printk(KERN_INFO DRIVER_NAME
Pierre Ossman52fbf9c2007-02-09 08:23:41 +01002158 ": Secure Digital Host Controller Interface driver\n");
Pierre Ossmand129bce2006-03-24 03:18:17 -08002159 printk(KERN_INFO DRIVER_NAME ": Copyright(c) Pierre Ossman\n");
2160
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002161 return 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002162}
2163
2164static void __exit sdhci_drv_exit(void)
2165{
Pierre Ossmand129bce2006-03-24 03:18:17 -08002166}
2167
2168module_init(sdhci_drv_init);
2169module_exit(sdhci_drv_exit);
2170
Pierre Ossmandf673b22006-06-30 02:22:31 -07002171module_param(debug_quirks, uint, 0444);
Pierre Ossman67435272006-06-30 02:22:31 -07002172
Pierre Ossman32710e82009-04-08 20:14:54 +02002173MODULE_AUTHOR("Pierre Ossman <pierre@ossman.eu>");
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002174MODULE_DESCRIPTION("Secure Digital Host Controller Interface core driver");
Pierre Ossmand129bce2006-03-24 03:18:17 -08002175MODULE_LICENSE("GPL");
Pierre Ossman67435272006-06-30 02:22:31 -07002176
Pierre Ossmandf673b22006-06-30 02:22:31 -07002177MODULE_PARM_DESC(debug_quirks, "Force certain quirks.");