blob: ab17344fc7b32012f1bff310501839bb5c2b7d59 [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;
682
Richard Röjforsa13abc72009-09-22 16:45:30 -0700683 if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA))
Pierre Ossmanc9fddbc2007-12-02 19:52:11 +0100684 host->flags |= SDHCI_REQ_USE_DMA;
685
Pierre Ossman2134a922008-06-28 18:28:51 +0200686 /*
687 * FIXME: This doesn't account for merging when mapping the
688 * scatterlist.
689 */
690 if (host->flags & SDHCI_REQ_USE_DMA) {
691 int broken, i;
692 struct scatterlist *sg;
693
694 broken = 0;
695 if (host->flags & SDHCI_USE_ADMA) {
696 if (host->quirks & SDHCI_QUIRK_32BIT_ADMA_SIZE)
697 broken = 1;
698 } else {
699 if (host->quirks & SDHCI_QUIRK_32BIT_DMA_SIZE)
700 broken = 1;
701 }
702
703 if (unlikely(broken)) {
704 for_each_sg(data->sg, sg, data->sg_len, i) {
705 if (sg->length & 0x3) {
706 DBG("Reverting to PIO because of "
707 "transfer size (%d)\n",
708 sg->length);
709 host->flags &= ~SDHCI_REQ_USE_DMA;
710 break;
711 }
712 }
713 }
Pierre Ossmanc9fddbc2007-12-02 19:52:11 +0100714 }
715
716 /*
717 * The assumption here being that alignment is the same after
718 * translation to device address space.
719 */
Pierre Ossman2134a922008-06-28 18:28:51 +0200720 if (host->flags & SDHCI_REQ_USE_DMA) {
721 int broken, i;
722 struct scatterlist *sg;
723
724 broken = 0;
725 if (host->flags & SDHCI_USE_ADMA) {
726 /*
727 * As we use 3 byte chunks to work around
728 * alignment problems, we need to check this
729 * quirk.
730 */
731 if (host->quirks & SDHCI_QUIRK_32BIT_ADMA_SIZE)
732 broken = 1;
733 } else {
734 if (host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR)
735 broken = 1;
736 }
737
738 if (unlikely(broken)) {
739 for_each_sg(data->sg, sg, data->sg_len, i) {
740 if (sg->offset & 0x3) {
741 DBG("Reverting to PIO because of "
742 "bad alignment\n");
743 host->flags &= ~SDHCI_REQ_USE_DMA;
744 break;
745 }
746 }
747 }
748 }
749
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200750 if (host->flags & SDHCI_REQ_USE_DMA) {
751 if (host->flags & SDHCI_USE_ADMA) {
752 ret = sdhci_adma_table_pre(host, data);
753 if (ret) {
754 /*
755 * This only happens when someone fed
756 * us an invalid request.
757 */
758 WARN_ON(1);
Pierre Ossmanebd6d352008-07-29 00:45:51 +0200759 host->flags &= ~SDHCI_REQ_USE_DMA;
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200760 } else {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300761 sdhci_writel(host, host->adma_addr,
762 SDHCI_ADMA_ADDRESS);
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200763 }
764 } else {
Tomas Winklerc8b3e022008-07-05 19:52:04 +0300765 int sg_cnt;
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200766
Tomas Winklerc8b3e022008-07-05 19:52:04 +0300767 sg_cnt = dma_map_sg(mmc_dev(host->mmc),
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200768 data->sg, data->sg_len,
769 (data->flags & MMC_DATA_READ) ?
770 DMA_FROM_DEVICE :
771 DMA_TO_DEVICE);
Tomas Winklerc8b3e022008-07-05 19:52:04 +0300772 if (sg_cnt == 0) {
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200773 /*
774 * This only happens when someone fed
775 * us an invalid request.
776 */
777 WARN_ON(1);
Pierre Ossmanebd6d352008-07-29 00:45:51 +0200778 host->flags &= ~SDHCI_REQ_USE_DMA;
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200779 } else {
Pierre Ossman719a61b2008-07-22 13:23:23 +0200780 WARN_ON(sg_cnt != 1);
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300781 sdhci_writel(host, sg_dma_address(data->sg),
782 SDHCI_DMA_ADDRESS);
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200783 }
784 }
785 }
786
Pierre Ossman2134a922008-06-28 18:28:51 +0200787 /*
788 * Always adjust the DMA selection as some controllers
789 * (e.g. JMicron) can't do PIO properly when the selection
790 * is ADMA.
791 */
792 if (host->version >= SDHCI_SPEC_200) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300793 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
Pierre Ossman2134a922008-06-28 18:28:51 +0200794 ctrl &= ~SDHCI_CTRL_DMA_MASK;
795 if ((host->flags & SDHCI_REQ_USE_DMA) &&
796 (host->flags & SDHCI_USE_ADMA))
797 ctrl |= SDHCI_CTRL_ADMA32;
798 else
799 ctrl |= SDHCI_CTRL_SDMA;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300800 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Pierre Ossmanc9fddbc2007-12-02 19:52:11 +0100801 }
802
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200803 if (!(host->flags & SDHCI_REQ_USE_DMA)) {
Sebastian Andrzej Siewiorda60a912009-06-18 09:33:32 +0200804 int flags;
805
806 flags = SG_MITER_ATOMIC;
807 if (host->data->flags & MMC_DATA_READ)
808 flags |= SG_MITER_TO_SG;
809 else
810 flags |= SG_MITER_FROM_SG;
811 sg_miter_start(&host->sg_miter, data->sg, data->sg_len, flags);
Pierre Ossman76591502008-07-21 00:32:11 +0200812 host->blocks = data->blocks;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800813 }
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700814
Anton Vorontsov6aa943a2009-03-17 00:13:50 +0300815 sdhci_set_transfer_irqs(host);
816
Pierre Ossmanbab76962006-07-02 16:51:35 +0100817 /* We do not handle DMA boundaries, so set it to max (512 KiB) */
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300818 sdhci_writew(host, SDHCI_MAKE_BLKSZ(7, data->blksz), SDHCI_BLOCK_SIZE);
819 sdhci_writew(host, data->blocks, SDHCI_BLOCK_COUNT);
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700820}
821
822static void sdhci_set_transfer_mode(struct sdhci_host *host,
823 struct mmc_data *data)
824{
825 u16 mode;
826
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700827 if (data == NULL)
828 return;
829
Pierre Ossmane538fbe2007-08-12 16:46:32 +0200830 WARN_ON(!host->data);
831
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700832 mode = SDHCI_TRNS_BLK_CNT_EN;
Jerry Huangc4512f72010-08-10 18:01:59 -0700833 if (data->blocks > 1) {
834 if (host->quirks & SDHCI_QUIRK_MULTIBLOCK_READ_ACMD12)
835 mode |= SDHCI_TRNS_MULTI | SDHCI_TRNS_ACMD12;
836 else
837 mode |= SDHCI_TRNS_MULTI;
838 }
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700839 if (data->flags & MMC_DATA_READ)
840 mode |= SDHCI_TRNS_READ;
Pierre Ossmanc9fddbc2007-12-02 19:52:11 +0100841 if (host->flags & SDHCI_REQ_USE_DMA)
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700842 mode |= SDHCI_TRNS_DMA;
843
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300844 sdhci_writew(host, mode, SDHCI_TRANSFER_MODE);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800845}
846
847static void sdhci_finish_data(struct sdhci_host *host)
848{
849 struct mmc_data *data;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800850
851 BUG_ON(!host->data);
852
853 data = host->data;
854 host->data = NULL;
855
Pierre Ossmanc9fddbc2007-12-02 19:52:11 +0100856 if (host->flags & SDHCI_REQ_USE_DMA) {
Pierre Ossman2134a922008-06-28 18:28:51 +0200857 if (host->flags & SDHCI_USE_ADMA)
858 sdhci_adma_table_post(host, data);
859 else {
860 dma_unmap_sg(mmc_dev(host->mmc), data->sg,
861 data->sg_len, (data->flags & MMC_DATA_READ) ?
862 DMA_FROM_DEVICE : DMA_TO_DEVICE);
863 }
Pierre Ossmand129bce2006-03-24 03:18:17 -0800864 }
865
866 /*
Pierre Ossmanc9b74c52008-04-18 20:41:49 +0200867 * The specification states that the block count register must
868 * be updated, but it does not specify at what point in the
869 * data flow. That makes the register entirely useless to read
870 * back so we have to assume that nothing made it to the card
871 * in the event of an error.
Pierre Ossmand129bce2006-03-24 03:18:17 -0800872 */
Pierre Ossmanc9b74c52008-04-18 20:41:49 +0200873 if (data->error)
874 data->bytes_xfered = 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800875 else
Pierre Ossmanc9b74c52008-04-18 20:41:49 +0200876 data->bytes_xfered = data->blksz * data->blocks;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800877
Pierre Ossmand129bce2006-03-24 03:18:17 -0800878 if (data->stop) {
879 /*
880 * The controller needs a reset of internal state machines
881 * upon error conditions.
882 */
Pierre Ossman17b04292007-07-22 22:18:46 +0200883 if (data->error) {
Pierre Ossmand129bce2006-03-24 03:18:17 -0800884 sdhci_reset(host, SDHCI_RESET_CMD);
885 sdhci_reset(host, SDHCI_RESET_DATA);
886 }
887
888 sdhci_send_command(host, data->stop);
889 } else
890 tasklet_schedule(&host->finish_tasklet);
891}
892
893static void sdhci_send_command(struct sdhci_host *host, struct mmc_command *cmd)
894{
895 int flags;
Pierre Ossmanfd2208d2006-06-30 02:22:28 -0700896 u32 mask;
Pierre Ossman7cb2c762006-06-30 02:22:23 -0700897 unsigned long timeout;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800898
899 WARN_ON(host->cmd);
900
Pierre Ossmand129bce2006-03-24 03:18:17 -0800901 /* Wait max 10 ms */
Pierre Ossman7cb2c762006-06-30 02:22:23 -0700902 timeout = 10;
Pierre Ossmanfd2208d2006-06-30 02:22:28 -0700903
904 mask = SDHCI_CMD_INHIBIT;
905 if ((cmd->data != NULL) || (cmd->flags & MMC_RSP_BUSY))
906 mask |= SDHCI_DATA_INHIBIT;
907
908 /* We shouldn't wait for data inihibit for stop commands, even
909 though they might use busy signaling */
910 if (host->mrq->data && (cmd == host->mrq->data->stop))
911 mask &= ~SDHCI_DATA_INHIBIT;
912
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300913 while (sdhci_readl(host, SDHCI_PRESENT_STATE) & mask) {
Pierre Ossman7cb2c762006-06-30 02:22:23 -0700914 if (timeout == 0) {
Pierre Ossmand129bce2006-03-24 03:18:17 -0800915 printk(KERN_ERR "%s: Controller never released "
Pierre Ossmanacf1da42007-02-09 08:29:19 +0100916 "inhibit bit(s).\n", mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -0800917 sdhci_dumpregs(host);
Pierre Ossman17b04292007-07-22 22:18:46 +0200918 cmd->error = -EIO;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800919 tasklet_schedule(&host->finish_tasklet);
920 return;
921 }
Pierre Ossman7cb2c762006-06-30 02:22:23 -0700922 timeout--;
923 mdelay(1);
924 }
Pierre Ossmand129bce2006-03-24 03:18:17 -0800925
926 mod_timer(&host->timer, jiffies + 10 * HZ);
927
928 host->cmd = cmd;
929
Andrei Warkentina3c77782011-04-11 16:13:42 -0500930 sdhci_prepare_data(host, cmd);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800931
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300932 sdhci_writel(host, cmd->arg, SDHCI_ARGUMENT);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800933
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700934 sdhci_set_transfer_mode(host, cmd->data);
935
Pierre Ossmand129bce2006-03-24 03:18:17 -0800936 if ((cmd->flags & MMC_RSP_136) && (cmd->flags & MMC_RSP_BUSY)) {
Pierre Ossmanacf1da42007-02-09 08:29:19 +0100937 printk(KERN_ERR "%s: Unsupported response type!\n",
Pierre Ossmand129bce2006-03-24 03:18:17 -0800938 mmc_hostname(host->mmc));
Pierre Ossman17b04292007-07-22 22:18:46 +0200939 cmd->error = -EINVAL;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800940 tasklet_schedule(&host->finish_tasklet);
941 return;
942 }
943
944 if (!(cmd->flags & MMC_RSP_PRESENT))
945 flags = SDHCI_CMD_RESP_NONE;
946 else if (cmd->flags & MMC_RSP_136)
947 flags = SDHCI_CMD_RESP_LONG;
948 else if (cmd->flags & MMC_RSP_BUSY)
949 flags = SDHCI_CMD_RESP_SHORT_BUSY;
950 else
951 flags = SDHCI_CMD_RESP_SHORT;
952
953 if (cmd->flags & MMC_RSP_CRC)
954 flags |= SDHCI_CMD_CRC;
955 if (cmd->flags & MMC_RSP_OPCODE)
956 flags |= SDHCI_CMD_INDEX;
957 if (cmd->data)
958 flags |= SDHCI_CMD_DATA;
959
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300960 sdhci_writew(host, SDHCI_MAKE_CMD(cmd->opcode, flags), SDHCI_COMMAND);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800961}
962
963static void sdhci_finish_command(struct sdhci_host *host)
964{
965 int i;
966
967 BUG_ON(host->cmd == NULL);
968
969 if (host->cmd->flags & MMC_RSP_PRESENT) {
970 if (host->cmd->flags & MMC_RSP_136) {
971 /* CRC is stripped so we need to do some shifting. */
972 for (i = 0;i < 4;i++) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300973 host->cmd->resp[i] = sdhci_readl(host,
Pierre Ossmand129bce2006-03-24 03:18:17 -0800974 SDHCI_RESPONSE + (3-i)*4) << 8;
975 if (i != 3)
976 host->cmd->resp[i] |=
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300977 sdhci_readb(host,
Pierre Ossmand129bce2006-03-24 03:18:17 -0800978 SDHCI_RESPONSE + (3-i)*4-1);
979 }
980 } else {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300981 host->cmd->resp[0] = sdhci_readl(host, SDHCI_RESPONSE);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800982 }
983 }
984
Pierre Ossman17b04292007-07-22 22:18:46 +0200985 host->cmd->error = 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800986
Pierre Ossmane538fbe2007-08-12 16:46:32 +0200987 if (host->data && host->data_early)
988 sdhci_finish_data(host);
989
990 if (!host->cmd->data)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800991 tasklet_schedule(&host->finish_tasklet);
992
993 host->cmd = NULL;
994}
995
996static void sdhci_set_clock(struct sdhci_host *host, unsigned int clock)
997{
998 int div;
999 u16 clk;
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001000 unsigned long timeout;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001001
1002 if (clock == host->clock)
1003 return;
1004
Anton Vorontsov81146342009-03-17 00:13:59 +03001005 if (host->ops->set_clock) {
1006 host->ops->set_clock(host, clock);
1007 if (host->quirks & SDHCI_QUIRK_NONSTANDARD_CLOCK)
1008 return;
1009 }
1010
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001011 sdhci_writew(host, 0, SDHCI_CLOCK_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001012
1013 if (clock == 0)
1014 goto out;
1015
Zhangfei Gao85105c52010-08-06 07:10:01 +08001016 if (host->version >= SDHCI_SPEC_300) {
1017 /* Version 3.00 divisors must be a multiple of 2. */
1018 if (host->max_clk <= clock)
1019 div = 1;
1020 else {
Zhangfei Gao03975262010-09-20 15:15:18 -04001021 for (div = 2; div < SDHCI_MAX_DIV_SPEC_300; div += 2) {
Zhangfei Gao85105c52010-08-06 07:10:01 +08001022 if ((host->max_clk / div) <= clock)
1023 break;
1024 }
1025 }
1026 } else {
1027 /* Version 2.00 divisors must be a power of 2. */
Zhangfei Gao03975262010-09-20 15:15:18 -04001028 for (div = 1; div < SDHCI_MAX_DIV_SPEC_200; div *= 2) {
Zhangfei Gao85105c52010-08-06 07:10:01 +08001029 if ((host->max_clk / div) <= clock)
1030 break;
1031 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001032 }
1033 div >>= 1;
1034
Zhangfei Gao85105c52010-08-06 07:10:01 +08001035 clk = (div & SDHCI_DIV_MASK) << SDHCI_DIVIDER_SHIFT;
1036 clk |= ((div & SDHCI_DIV_HI_MASK) >> SDHCI_DIV_MASK_LEN)
1037 << SDHCI_DIVIDER_HI_SHIFT;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001038 clk |= SDHCI_CLOCK_INT_EN;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001039 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001040
Chris Ball27f6cb12009-09-22 16:45:31 -07001041 /* Wait max 20 ms */
1042 timeout = 20;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001043 while (!((clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL))
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001044 & SDHCI_CLOCK_INT_STABLE)) {
1045 if (timeout == 0) {
Pierre Ossmanacf1da42007-02-09 08:29:19 +01001046 printk(KERN_ERR "%s: Internal clock never "
1047 "stabilised.\n", mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -08001048 sdhci_dumpregs(host);
1049 return;
1050 }
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001051 timeout--;
1052 mdelay(1);
1053 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001054
1055 clk |= SDHCI_CLOCK_CARD_EN;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001056 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001057
1058out:
1059 host->clock = clock;
1060}
1061
Pierre Ossman146ad662006-06-30 02:22:23 -07001062static void sdhci_set_power(struct sdhci_host *host, unsigned short power)
1063{
Giuseppe Cavallaro83642482010-09-28 10:41:28 +02001064 u8 pwr = 0;
Pierre Ossman146ad662006-06-30 02:22:23 -07001065
Giuseppe Cavallaro83642482010-09-28 10:41:28 +02001066 if (power != (unsigned short)-1) {
Pierre Ossmanae628902009-05-03 20:45:03 +02001067 switch (1 << power) {
1068 case MMC_VDD_165_195:
1069 pwr = SDHCI_POWER_180;
1070 break;
1071 case MMC_VDD_29_30:
1072 case MMC_VDD_30_31:
1073 pwr = SDHCI_POWER_300;
1074 break;
1075 case MMC_VDD_32_33:
1076 case MMC_VDD_33_34:
1077 pwr = SDHCI_POWER_330;
1078 break;
1079 default:
1080 BUG();
1081 }
1082 }
1083
1084 if (host->pwr == pwr)
Pierre Ossman146ad662006-06-30 02:22:23 -07001085 return;
1086
Pierre Ossmanae628902009-05-03 20:45:03 +02001087 host->pwr = pwr;
1088
1089 if (pwr == 0) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001090 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
Pierre Ossmanae628902009-05-03 20:45:03 +02001091 return;
Darren Salt9e9dc5f2007-01-27 15:32:31 +01001092 }
1093
1094 /*
1095 * Spec says that we should clear the power reg before setting
1096 * a new value. Some controllers don't seem to like this though.
1097 */
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001098 if (!(host->quirks & SDHCI_QUIRK_SINGLE_POWER_WRITE))
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001099 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
Pierre Ossman146ad662006-06-30 02:22:23 -07001100
Andres Salomone08c1692008-07-04 10:00:03 -07001101 /*
Andres Salomonc71f6512008-07-07 17:25:56 -04001102 * At least the Marvell CaFe chip gets confused if we set the voltage
Andres Salomone08c1692008-07-04 10:00:03 -07001103 * and set turn on power at the same time, so set the voltage first.
1104 */
Pierre Ossman11a2f1b2009-06-21 20:59:33 +02001105 if (host->quirks & SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER)
Pierre Ossmanae628902009-05-03 20:45:03 +02001106 sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL);
1107
1108 pwr |= SDHCI_POWER_ON;
Andres Salomone08c1692008-07-04 10:00:03 -07001109
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001110 sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL);
Harald Welte557b0692009-06-18 16:53:38 +02001111
1112 /*
1113 * Some controllers need an extra 10ms delay of 10ms before they
1114 * can apply clock after applying power
1115 */
Pierre Ossman11a2f1b2009-06-21 20:59:33 +02001116 if (host->quirks & SDHCI_QUIRK_DELAY_AFTER_POWER)
Harald Welte557b0692009-06-18 16:53:38 +02001117 mdelay(10);
Pierre Ossman146ad662006-06-30 02:22:23 -07001118}
1119
Pierre Ossmand129bce2006-03-24 03:18:17 -08001120/*****************************************************************************\
1121 * *
1122 * MMC callbacks *
1123 * *
1124\*****************************************************************************/
1125
1126static void sdhci_request(struct mmc_host *mmc, struct mmc_request *mrq)
1127{
1128 struct sdhci_host *host;
Anton Vorontsov68d1fb72009-03-17 00:13:52 +03001129 bool present;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001130 unsigned long flags;
1131
1132 host = mmc_priv(mmc);
1133
1134 spin_lock_irqsave(&host->lock, flags);
1135
1136 WARN_ON(host->mrq != NULL);
1137
Pierre Ossmanf9134312008-12-21 17:01:48 +01001138#ifndef SDHCI_USE_LEDS_CLASS
Pierre Ossmand129bce2006-03-24 03:18:17 -08001139 sdhci_activate_led(host);
Pierre Ossman2f730fe2008-03-17 10:29:38 +01001140#endif
Jerry Huangc4512f72010-08-10 18:01:59 -07001141 if (host->quirks & SDHCI_QUIRK_MULTIBLOCK_READ_ACMD12) {
1142 if (mrq->stop) {
1143 mrq->data->stop = NULL;
1144 mrq->stop = NULL;
1145 }
1146 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001147
1148 host->mrq = mrq;
1149
Anton Vorontsov68d1fb72009-03-17 00:13:52 +03001150 /* If polling, assume that the card is always present. */
1151 if (host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION)
1152 present = true;
1153 else
1154 present = sdhci_readl(host, SDHCI_PRESENT_STATE) &
1155 SDHCI_CARD_PRESENT;
1156
1157 if (!present || host->flags & SDHCI_DEVICE_DEAD) {
Pierre Ossman17b04292007-07-22 22:18:46 +02001158 host->mrq->cmd->error = -ENOMEDIUM;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001159 tasklet_schedule(&host->finish_tasklet);
1160 } else
1161 sdhci_send_command(host, mrq->cmd);
1162
Pierre Ossman5f25a662006-10-04 02:15:39 -07001163 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -08001164 spin_unlock_irqrestore(&host->lock, flags);
1165}
1166
1167static void sdhci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
1168{
1169 struct sdhci_host *host;
1170 unsigned long flags;
1171 u8 ctrl;
1172
1173 host = mmc_priv(mmc);
1174
1175 spin_lock_irqsave(&host->lock, flags);
1176
Pierre Ossman1e728592008-04-16 19:13:13 +02001177 if (host->flags & SDHCI_DEVICE_DEAD)
1178 goto out;
1179
Pierre Ossmand129bce2006-03-24 03:18:17 -08001180 /*
1181 * Reset the chip on each power off.
1182 * Should clear out any weird states.
1183 */
1184 if (ios->power_mode == MMC_POWER_OFF) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001185 sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE);
Anton Vorontsov7260cf52009-03-17 00:13:48 +03001186 sdhci_reinit(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001187 }
1188
1189 sdhci_set_clock(host, ios->clock);
1190
1191 if (ios->power_mode == MMC_POWER_OFF)
Pierre Ossman146ad662006-06-30 02:22:23 -07001192 sdhci_set_power(host, -1);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001193 else
Pierre Ossman146ad662006-06-30 02:22:23 -07001194 sdhci_set_power(host, ios->vdd);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001195
Philip Rakity643a81f2010-09-23 08:24:32 -07001196 if (host->ops->platform_send_init_74_clocks)
1197 host->ops->platform_send_init_74_clocks(host, ios->power_mode);
1198
Philip Rakity15ec4462010-11-19 16:48:39 -05001199 /*
1200 * If your platform has 8-bit width support but is not a v3 controller,
1201 * or if it requires special setup code, you should implement that in
1202 * platform_8bit_width().
1203 */
1204 if (host->ops->platform_8bit_width)
1205 host->ops->platform_8bit_width(host, ios->bus_width);
1206 else {
1207 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
1208 if (ios->bus_width == MMC_BUS_WIDTH_8) {
1209 ctrl &= ~SDHCI_CTRL_4BITBUS;
1210 if (host->version >= SDHCI_SPEC_300)
1211 ctrl |= SDHCI_CTRL_8BITBUS;
1212 } else {
1213 if (host->version >= SDHCI_SPEC_300)
1214 ctrl &= ~SDHCI_CTRL_8BITBUS;
1215 if (ios->bus_width == MMC_BUS_WIDTH_4)
1216 ctrl |= SDHCI_CTRL_4BITBUS;
1217 else
1218 ctrl &= ~SDHCI_CTRL_4BITBUS;
1219 }
1220 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
1221 }
1222
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001223 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
Pierre Ossmancd9277c2007-02-18 12:07:47 +01001224
Philip Rakity3ab9c8d2010-10-06 11:57:23 -07001225 if ((ios->timing == MMC_TIMING_SD_HS ||
1226 ios->timing == MMC_TIMING_MMC_HS)
1227 && !(host->quirks & SDHCI_QUIRK_NO_HISPD_BIT))
Pierre Ossmancd9277c2007-02-18 12:07:47 +01001228 ctrl |= SDHCI_CTRL_HISPD;
1229 else
1230 ctrl &= ~SDHCI_CTRL_HISPD;
1231
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001232 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001233
Leandro Dorileob8352262007-07-25 23:47:04 +02001234 /*
1235 * Some (ENE) controllers go apeshit on some ios operation,
1236 * signalling timeout and CRC errors even on CMD0. Resetting
1237 * it on each ios seems to solve the problem.
1238 */
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001239 if(host->quirks & SDHCI_QUIRK_RESET_CMD_DATA_ON_IOS)
Leandro Dorileob8352262007-07-25 23:47:04 +02001240 sdhci_reset(host, SDHCI_RESET_CMD | SDHCI_RESET_DATA);
1241
Pierre Ossman1e728592008-04-16 19:13:13 +02001242out:
Pierre Ossman5f25a662006-10-04 02:15:39 -07001243 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -08001244 spin_unlock_irqrestore(&host->lock, flags);
1245}
1246
1247static int sdhci_get_ro(struct mmc_host *mmc)
1248{
1249 struct sdhci_host *host;
1250 unsigned long flags;
Wolfram Sang2dfb5792010-10-15 12:21:01 +02001251 int is_readonly;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001252
1253 host = mmc_priv(mmc);
1254
1255 spin_lock_irqsave(&host->lock, flags);
1256
Pierre Ossman1e728592008-04-16 19:13:13 +02001257 if (host->flags & SDHCI_DEVICE_DEAD)
Wolfram Sang2dfb5792010-10-15 12:21:01 +02001258 is_readonly = 0;
1259 else if (host->ops->get_ro)
1260 is_readonly = host->ops->get_ro(host);
Pierre Ossman1e728592008-04-16 19:13:13 +02001261 else
Wolfram Sang2dfb5792010-10-15 12:21:01 +02001262 is_readonly = !(sdhci_readl(host, SDHCI_PRESENT_STATE)
1263 & SDHCI_WRITE_PROTECT);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001264
1265 spin_unlock_irqrestore(&host->lock, flags);
1266
Wolfram Sang2dfb5792010-10-15 12:21:01 +02001267 /* This quirk needs to be replaced by a callback-function later */
1268 return host->quirks & SDHCI_QUIRK_INVERTED_WRITE_PROTECT ?
1269 !is_readonly : is_readonly;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001270}
1271
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001272static void sdhci_enable_sdio_irq(struct mmc_host *mmc, int enable)
1273{
1274 struct sdhci_host *host;
1275 unsigned long flags;
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001276
1277 host = mmc_priv(mmc);
1278
1279 spin_lock_irqsave(&host->lock, flags);
1280
Pierre Ossman1e728592008-04-16 19:13:13 +02001281 if (host->flags & SDHCI_DEVICE_DEAD)
1282 goto out;
1283
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001284 if (enable)
Anton Vorontsov7260cf52009-03-17 00:13:48 +03001285 sdhci_unmask_irqs(host, SDHCI_INT_CARD_INT);
1286 else
1287 sdhci_mask_irqs(host, SDHCI_INT_CARD_INT);
Pierre Ossman1e728592008-04-16 19:13:13 +02001288out:
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001289 mmiowb();
1290
1291 spin_unlock_irqrestore(&host->lock, flags);
1292}
1293
David Brownellab7aefd2006-11-12 17:55:30 -08001294static const struct mmc_host_ops sdhci_ops = {
Pierre Ossmand129bce2006-03-24 03:18:17 -08001295 .request = sdhci_request,
1296 .set_ios = sdhci_set_ios,
1297 .get_ro = sdhci_get_ro,
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001298 .enable_sdio_irq = sdhci_enable_sdio_irq,
Pierre Ossmand129bce2006-03-24 03:18:17 -08001299};
1300
1301/*****************************************************************************\
1302 * *
1303 * Tasklets *
1304 * *
1305\*****************************************************************************/
1306
1307static void sdhci_tasklet_card(unsigned long param)
1308{
1309 struct sdhci_host *host;
1310 unsigned long flags;
1311
1312 host = (struct sdhci_host*)param;
1313
1314 spin_lock_irqsave(&host->lock, flags);
1315
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001316 if (!(sdhci_readl(host, SDHCI_PRESENT_STATE) & SDHCI_CARD_PRESENT)) {
Pierre Ossmand129bce2006-03-24 03:18:17 -08001317 if (host->mrq) {
1318 printk(KERN_ERR "%s: Card removed during transfer!\n",
1319 mmc_hostname(host->mmc));
1320 printk(KERN_ERR "%s: Resetting controller.\n",
1321 mmc_hostname(host->mmc));
1322
1323 sdhci_reset(host, SDHCI_RESET_CMD);
1324 sdhci_reset(host, SDHCI_RESET_DATA);
1325
Pierre Ossman17b04292007-07-22 22:18:46 +02001326 host->mrq->cmd->error = -ENOMEDIUM;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001327 tasklet_schedule(&host->finish_tasklet);
1328 }
1329 }
1330
1331 spin_unlock_irqrestore(&host->lock, flags);
1332
Pierre Ossman04cf5852008-08-18 22:18:14 +02001333 mmc_detect_change(host->mmc, msecs_to_jiffies(200));
Pierre Ossmand129bce2006-03-24 03:18:17 -08001334}
1335
1336static void sdhci_tasklet_finish(unsigned long param)
1337{
1338 struct sdhci_host *host;
1339 unsigned long flags;
1340 struct mmc_request *mrq;
1341
1342 host = (struct sdhci_host*)param;
1343
Chris Ball0c9c99a2011-04-27 17:35:31 -04001344 /*
1345 * If this tasklet gets rescheduled while running, it will
1346 * be run again afterwards but without any active request.
1347 */
1348 if (!host->mrq)
1349 return;
1350
Pierre Ossmand129bce2006-03-24 03:18:17 -08001351 spin_lock_irqsave(&host->lock, flags);
1352
1353 del_timer(&host->timer);
1354
1355 mrq = host->mrq;
1356
Pierre Ossmand129bce2006-03-24 03:18:17 -08001357 /*
1358 * The controller needs a reset of internal state machines
1359 * upon error conditions.
1360 */
Pierre Ossman1e728592008-04-16 19:13:13 +02001361 if (!(host->flags & SDHCI_DEVICE_DEAD) &&
Ben Dooksb7b4d342011-04-27 14:24:19 +01001362 ((mrq->cmd && mrq->cmd->error) ||
Pierre Ossman1e728592008-04-16 19:13:13 +02001363 (mrq->data && (mrq->data->error ||
1364 (mrq->data->stop && mrq->data->stop->error))) ||
1365 (host->quirks & SDHCI_QUIRK_RESET_AFTER_REQUEST))) {
Pierre Ossman645289d2006-06-30 02:22:33 -07001366
1367 /* Some controllers need this kick or reset won't work here */
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001368 if (host->quirks & SDHCI_QUIRK_CLOCK_BEFORE_RESET) {
Pierre Ossman645289d2006-06-30 02:22:33 -07001369 unsigned int clock;
1370
1371 /* This is to force an update */
1372 clock = host->clock;
1373 host->clock = 0;
1374 sdhci_set_clock(host, clock);
1375 }
1376
1377 /* Spec says we should do both at the same time, but Ricoh
1378 controllers do not like that. */
Pierre Ossmand129bce2006-03-24 03:18:17 -08001379 sdhci_reset(host, SDHCI_RESET_CMD);
1380 sdhci_reset(host, SDHCI_RESET_DATA);
1381 }
1382
1383 host->mrq = NULL;
1384 host->cmd = NULL;
1385 host->data = NULL;
1386
Pierre Ossmanf9134312008-12-21 17:01:48 +01001387#ifndef SDHCI_USE_LEDS_CLASS
Pierre Ossmand129bce2006-03-24 03:18:17 -08001388 sdhci_deactivate_led(host);
Pierre Ossman2f730fe2008-03-17 10:29:38 +01001389#endif
Pierre Ossmand129bce2006-03-24 03:18:17 -08001390
Pierre Ossman5f25a662006-10-04 02:15:39 -07001391 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -08001392 spin_unlock_irqrestore(&host->lock, flags);
1393
1394 mmc_request_done(host->mmc, mrq);
1395}
1396
1397static void sdhci_timeout_timer(unsigned long data)
1398{
1399 struct sdhci_host *host;
1400 unsigned long flags;
1401
1402 host = (struct sdhci_host*)data;
1403
1404 spin_lock_irqsave(&host->lock, flags);
1405
1406 if (host->mrq) {
Pierre Ossmanacf1da42007-02-09 08:29:19 +01001407 printk(KERN_ERR "%s: Timeout waiting for hardware "
1408 "interrupt.\n", mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -08001409 sdhci_dumpregs(host);
1410
1411 if (host->data) {
Pierre Ossman17b04292007-07-22 22:18:46 +02001412 host->data->error = -ETIMEDOUT;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001413 sdhci_finish_data(host);
1414 } else {
1415 if (host->cmd)
Pierre Ossman17b04292007-07-22 22:18:46 +02001416 host->cmd->error = -ETIMEDOUT;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001417 else
Pierre Ossman17b04292007-07-22 22:18:46 +02001418 host->mrq->cmd->error = -ETIMEDOUT;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001419
1420 tasklet_schedule(&host->finish_tasklet);
1421 }
1422 }
1423
Pierre Ossman5f25a662006-10-04 02:15:39 -07001424 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -08001425 spin_unlock_irqrestore(&host->lock, flags);
1426}
1427
1428/*****************************************************************************\
1429 * *
1430 * Interrupt handling *
1431 * *
1432\*****************************************************************************/
1433
1434static void sdhci_cmd_irq(struct sdhci_host *host, u32 intmask)
1435{
1436 BUG_ON(intmask == 0);
1437
1438 if (!host->cmd) {
Pierre Ossmanb67ac3f2007-08-12 17:29:47 +02001439 printk(KERN_ERR "%s: Got command interrupt 0x%08x even "
1440 "though no command operation was in progress.\n",
1441 mmc_hostname(host->mmc), (unsigned)intmask);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001442 sdhci_dumpregs(host);
1443 return;
1444 }
1445
Pierre Ossman43b58b32007-07-25 23:15:27 +02001446 if (intmask & SDHCI_INT_TIMEOUT)
Pierre Ossman17b04292007-07-22 22:18:46 +02001447 host->cmd->error = -ETIMEDOUT;
1448 else if (intmask & (SDHCI_INT_CRC | SDHCI_INT_END_BIT |
1449 SDHCI_INT_INDEX))
1450 host->cmd->error = -EILSEQ;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001451
Pierre Ossmane8095172008-07-25 01:09:08 +02001452 if (host->cmd->error) {
Pierre Ossmand129bce2006-03-24 03:18:17 -08001453 tasklet_schedule(&host->finish_tasklet);
Pierre Ossmane8095172008-07-25 01:09:08 +02001454 return;
1455 }
1456
1457 /*
1458 * The host can send and interrupt when the busy state has
1459 * ended, allowing us to wait without wasting CPU cycles.
1460 * Unfortunately this is overloaded on the "data complete"
1461 * interrupt, so we need to take some care when handling
1462 * it.
1463 *
1464 * Note: The 1.0 specification is a bit ambiguous about this
1465 * feature so there might be some problems with older
1466 * controllers.
1467 */
1468 if (host->cmd->flags & MMC_RSP_BUSY) {
1469 if (host->cmd->data)
1470 DBG("Cannot wait for busy signal when also "
1471 "doing a data transfer");
Ben Dooksf9454052009-02-20 20:33:08 +03001472 else if (!(host->quirks & SDHCI_QUIRK_NO_BUSY_IRQ))
Pierre Ossmane8095172008-07-25 01:09:08 +02001473 return;
Ben Dooksf9454052009-02-20 20:33:08 +03001474
1475 /* The controller does not support the end-of-busy IRQ,
1476 * fall through and take the SDHCI_INT_RESPONSE */
Pierre Ossmane8095172008-07-25 01:09:08 +02001477 }
1478
1479 if (intmask & SDHCI_INT_RESPONSE)
Pierre Ossman43b58b32007-07-25 23:15:27 +02001480 sdhci_finish_command(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001481}
1482
George G. Davis0957c332010-02-18 12:32:12 -05001483#ifdef CONFIG_MMC_DEBUG
Ben Dooks6882a8c2009-06-14 13:52:38 +01001484static void sdhci_show_adma_error(struct sdhci_host *host)
1485{
1486 const char *name = mmc_hostname(host->mmc);
1487 u8 *desc = host->adma_desc;
1488 __le32 *dma;
1489 __le16 *len;
1490 u8 attr;
1491
1492 sdhci_dumpregs(host);
1493
1494 while (true) {
1495 dma = (__le32 *)(desc + 4);
1496 len = (__le16 *)(desc + 2);
1497 attr = *desc;
1498
1499 DBG("%s: %p: DMA 0x%08x, LEN 0x%04x, Attr=0x%02x\n",
1500 name, desc, le32_to_cpu(*dma), le16_to_cpu(*len), attr);
1501
1502 desc += 8;
1503
1504 if (attr & 2)
1505 break;
1506 }
1507}
1508#else
1509static void sdhci_show_adma_error(struct sdhci_host *host) { }
1510#endif
1511
Pierre Ossmand129bce2006-03-24 03:18:17 -08001512static void sdhci_data_irq(struct sdhci_host *host, u32 intmask)
1513{
1514 BUG_ON(intmask == 0);
1515
1516 if (!host->data) {
1517 /*
Pierre Ossmane8095172008-07-25 01:09:08 +02001518 * The "data complete" interrupt is also used to
1519 * indicate that a busy state has ended. See comment
1520 * above in sdhci_cmd_irq().
Pierre Ossmand129bce2006-03-24 03:18:17 -08001521 */
Pierre Ossmane8095172008-07-25 01:09:08 +02001522 if (host->cmd && (host->cmd->flags & MMC_RSP_BUSY)) {
1523 if (intmask & SDHCI_INT_DATA_END) {
1524 sdhci_finish_command(host);
1525 return;
1526 }
1527 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001528
Pierre Ossmanb67ac3f2007-08-12 17:29:47 +02001529 printk(KERN_ERR "%s: Got data interrupt 0x%08x even "
1530 "though no data operation was in progress.\n",
1531 mmc_hostname(host->mmc), (unsigned)intmask);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001532 sdhci_dumpregs(host);
1533
1534 return;
1535 }
1536
1537 if (intmask & SDHCI_INT_DATA_TIMEOUT)
Pierre Ossman17b04292007-07-22 22:18:46 +02001538 host->data->error = -ETIMEDOUT;
Aries Lee22113ef2010-12-15 08:14:24 +01001539 else if (intmask & SDHCI_INT_DATA_END_BIT)
1540 host->data->error = -EILSEQ;
1541 else if ((intmask & SDHCI_INT_DATA_CRC) &&
1542 SDHCI_GET_CMD(sdhci_readw(host, SDHCI_COMMAND))
1543 != MMC_BUS_TEST_R)
Pierre Ossman17b04292007-07-22 22:18:46 +02001544 host->data->error = -EILSEQ;
Ben Dooks6882a8c2009-06-14 13:52:38 +01001545 else if (intmask & SDHCI_INT_ADMA_ERROR) {
1546 printk(KERN_ERR "%s: ADMA error\n", mmc_hostname(host->mmc));
1547 sdhci_show_adma_error(host);
Pierre Ossman2134a922008-06-28 18:28:51 +02001548 host->data->error = -EIO;
Ben Dooks6882a8c2009-06-14 13:52:38 +01001549 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001550
Pierre Ossman17b04292007-07-22 22:18:46 +02001551 if (host->data->error)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001552 sdhci_finish_data(host);
1553 else {
Pierre Ossmana406f5a2006-07-02 16:50:59 +01001554 if (intmask & (SDHCI_INT_DATA_AVAIL | SDHCI_INT_SPACE_AVAIL))
Pierre Ossmand129bce2006-03-24 03:18:17 -08001555 sdhci_transfer_pio(host);
1556
Pierre Ossman6ba736a2007-05-13 22:39:23 +02001557 /*
1558 * We currently don't do anything fancy with DMA
1559 * boundaries, but as we can't disable the feature
1560 * we need to at least restart the transfer.
1561 */
1562 if (intmask & SDHCI_INT_DMA_END)
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001563 sdhci_writel(host, sdhci_readl(host, SDHCI_DMA_ADDRESS),
1564 SDHCI_DMA_ADDRESS);
Pierre Ossman6ba736a2007-05-13 22:39:23 +02001565
Pierre Ossmane538fbe2007-08-12 16:46:32 +02001566 if (intmask & SDHCI_INT_DATA_END) {
1567 if (host->cmd) {
1568 /*
1569 * Data managed to finish before the
1570 * command completed. Make sure we do
1571 * things in the proper order.
1572 */
1573 host->data_early = 1;
1574 } else {
1575 sdhci_finish_data(host);
1576 }
1577 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001578 }
1579}
1580
David Howells7d12e782006-10-05 14:55:46 +01001581static irqreturn_t sdhci_irq(int irq, void *dev_id)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001582{
1583 irqreturn_t result;
1584 struct sdhci_host* host = dev_id;
1585 u32 intmask;
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001586 int cardint = 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001587
1588 spin_lock(&host->lock);
1589
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001590 intmask = sdhci_readl(host, SDHCI_INT_STATUS);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001591
Mark Lord62df67a52007-03-06 13:30:13 +01001592 if (!intmask || intmask == 0xffffffff) {
Pierre Ossmand129bce2006-03-24 03:18:17 -08001593 result = IRQ_NONE;
1594 goto out;
1595 }
1596
Pierre Ossmanb69c9052008-03-08 23:44:25 +01001597 DBG("*** %s got interrupt: 0x%08x\n",
1598 mmc_hostname(host->mmc), intmask);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001599
Pierre Ossman3192a282006-06-30 02:22:26 -07001600 if (intmask & (SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE)) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001601 sdhci_writel(host, intmask & (SDHCI_INT_CARD_INSERT |
1602 SDHCI_INT_CARD_REMOVE), SDHCI_INT_STATUS);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001603 tasklet_schedule(&host->card_tasklet);
Pierre Ossman3192a282006-06-30 02:22:26 -07001604 }
1605
1606 intmask &= ~(SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001607
1608 if (intmask & SDHCI_INT_CMD_MASK) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001609 sdhci_writel(host, intmask & SDHCI_INT_CMD_MASK,
1610 SDHCI_INT_STATUS);
Pierre Ossman3192a282006-06-30 02:22:26 -07001611 sdhci_cmd_irq(host, intmask & SDHCI_INT_CMD_MASK);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001612 }
1613
1614 if (intmask & SDHCI_INT_DATA_MASK) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001615 sdhci_writel(host, intmask & SDHCI_INT_DATA_MASK,
1616 SDHCI_INT_STATUS);
Pierre Ossman3192a282006-06-30 02:22:26 -07001617 sdhci_data_irq(host, intmask & SDHCI_INT_DATA_MASK);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001618 }
1619
1620 intmask &= ~(SDHCI_INT_CMD_MASK | SDHCI_INT_DATA_MASK);
1621
Pierre Ossman964f9ce2007-07-20 18:20:36 +02001622 intmask &= ~SDHCI_INT_ERROR;
1623
Pierre Ossmand129bce2006-03-24 03:18:17 -08001624 if (intmask & SDHCI_INT_BUS_POWER) {
Pierre Ossman3192a282006-06-30 02:22:26 -07001625 printk(KERN_ERR "%s: Card is consuming too much power!\n",
Pierre Ossmand129bce2006-03-24 03:18:17 -08001626 mmc_hostname(host->mmc));
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001627 sdhci_writel(host, SDHCI_INT_BUS_POWER, SDHCI_INT_STATUS);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001628 }
1629
Rolf Eike Beer9d26a5d2007-06-26 13:31:16 +02001630 intmask &= ~SDHCI_INT_BUS_POWER;
Pierre Ossman3192a282006-06-30 02:22:26 -07001631
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001632 if (intmask & SDHCI_INT_CARD_INT)
1633 cardint = 1;
1634
1635 intmask &= ~SDHCI_INT_CARD_INT;
1636
Pierre Ossman3192a282006-06-30 02:22:26 -07001637 if (intmask) {
Pierre Ossmanacf1da42007-02-09 08:29:19 +01001638 printk(KERN_ERR "%s: Unexpected interrupt 0x%08x.\n",
Pierre Ossman3192a282006-06-30 02:22:26 -07001639 mmc_hostname(host->mmc), intmask);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001640 sdhci_dumpregs(host);
1641
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001642 sdhci_writel(host, intmask, SDHCI_INT_STATUS);
Pierre Ossman3192a282006-06-30 02:22:26 -07001643 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001644
1645 result = IRQ_HANDLED;
1646
Pierre Ossman5f25a662006-10-04 02:15:39 -07001647 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -08001648out:
1649 spin_unlock(&host->lock);
1650
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001651 /*
1652 * We have to delay this as it calls back into the driver.
1653 */
1654 if (cardint)
1655 mmc_signal_sdio_irq(host->mmc);
1656
Pierre Ossmand129bce2006-03-24 03:18:17 -08001657 return result;
1658}
1659
1660/*****************************************************************************\
1661 * *
1662 * Suspend/resume *
1663 * *
1664\*****************************************************************************/
1665
1666#ifdef CONFIG_PM
1667
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001668int sdhci_suspend_host(struct sdhci_host *host, pm_message_t state)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001669{
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001670 int ret;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001671
Anton Vorontsov7260cf52009-03-17 00:13:48 +03001672 sdhci_disable_card_detection(host);
1673
Matt Fleming1a13f8f2010-05-26 14:42:08 -07001674 ret = mmc_suspend_host(host->mmc);
Pierre Ossmandf1c4b72007-01-30 07:55:15 +01001675 if (ret)
1676 return ret;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001677
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001678 free_irq(host->irq, host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001679
Marek Szyprowski9bea3c82010-08-10 18:01:59 -07001680 if (host->vmmc)
1681 ret = regulator_disable(host->vmmc);
1682
1683 return ret;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001684}
1685
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001686EXPORT_SYMBOL_GPL(sdhci_suspend_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001687
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001688int sdhci_resume_host(struct sdhci_host *host)
1689{
1690 int ret;
1691
Marek Szyprowski9bea3c82010-08-10 18:01:59 -07001692 if (host->vmmc) {
1693 int ret = regulator_enable(host->vmmc);
1694 if (ret)
1695 return ret;
1696 }
1697
1698
Richard Röjforsa13abc72009-09-22 16:45:30 -07001699 if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001700 if (host->ops->enable_dma)
1701 host->ops->enable_dma(host);
1702 }
1703
1704 ret = request_irq(host->irq, sdhci_irq, IRQF_SHARED,
1705 mmc_hostname(host->mmc), host);
1706 if (ret)
1707 return ret;
1708
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08001709 sdhci_init(host, (host->mmc->pm_flags & MMC_PM_KEEP_POWER));
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001710 mmiowb();
1711
1712 ret = mmc_resume_host(host->mmc);
Anton Vorontsov7260cf52009-03-17 00:13:48 +03001713 sdhci_enable_card_detection(host);
1714
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08001715 return ret;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001716}
1717
1718EXPORT_SYMBOL_GPL(sdhci_resume_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001719
Daniel Drake5f619702010-11-04 22:20:39 +00001720void sdhci_enable_irq_wakeups(struct sdhci_host *host)
1721{
1722 u8 val;
1723 val = sdhci_readb(host, SDHCI_WAKE_UP_CONTROL);
1724 val |= SDHCI_WAKE_ON_INT;
1725 sdhci_writeb(host, val, SDHCI_WAKE_UP_CONTROL);
1726}
1727
1728EXPORT_SYMBOL_GPL(sdhci_enable_irq_wakeups);
1729
Pierre Ossmand129bce2006-03-24 03:18:17 -08001730#endif /* CONFIG_PM */
1731
1732/*****************************************************************************\
1733 * *
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001734 * Device allocation/registration *
Pierre Ossmand129bce2006-03-24 03:18:17 -08001735 * *
1736\*****************************************************************************/
1737
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001738struct sdhci_host *sdhci_alloc_host(struct device *dev,
1739 size_t priv_size)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001740{
Pierre Ossmand129bce2006-03-24 03:18:17 -08001741 struct mmc_host *mmc;
1742 struct sdhci_host *host;
1743
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001744 WARN_ON(dev == NULL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001745
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001746 mmc = mmc_alloc_host(sizeof(struct sdhci_host) + priv_size, dev);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001747 if (!mmc)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001748 return ERR_PTR(-ENOMEM);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001749
1750 host = mmc_priv(mmc);
1751 host->mmc = mmc;
1752
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001753 return host;
1754}
Pierre Ossman8a4da142006-10-04 02:15:40 -07001755
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001756EXPORT_SYMBOL_GPL(sdhci_alloc_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001757
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001758int sdhci_add_host(struct sdhci_host *host)
1759{
1760 struct mmc_host *mmc;
Takashi Iwai8f230f42010-12-08 10:04:30 +01001761 unsigned int caps, ocr_avail;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001762 int ret;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001763
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001764 WARN_ON(host == NULL);
1765 if (host == NULL)
1766 return -EINVAL;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001767
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001768 mmc = host->mmc;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001769
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001770 if (debug_quirks)
1771 host->quirks = debug_quirks;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001772
Pierre Ossmand96649e2006-06-30 02:22:30 -07001773 sdhci_reset(host, SDHCI_RESET_ALL);
1774
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001775 host->version = sdhci_readw(host, SDHCI_HOST_VERSION);
Pierre Ossman2134a922008-06-28 18:28:51 +02001776 host->version = (host->version & SDHCI_SPEC_VER_MASK)
1777 >> SDHCI_SPEC_VER_SHIFT;
Zhangfei Gao85105c52010-08-06 07:10:01 +08001778 if (host->version > SDHCI_SPEC_300) {
Pierre Ossman4a965502006-06-30 02:22:29 -07001779 printk(KERN_ERR "%s: Unknown controller version (%d). "
Pierre Ossmanb69c9052008-03-08 23:44:25 +01001780 "You may experience problems.\n", mmc_hostname(mmc),
Pierre Ossman2134a922008-06-28 18:28:51 +02001781 host->version);
Pierre Ossman4a965502006-06-30 02:22:29 -07001782 }
1783
Maxim Levitskyccc92c22010-08-10 18:01:42 -07001784 caps = (host->quirks & SDHCI_QUIRK_MISSING_CAPS) ? host->caps :
1785 sdhci_readl(host, SDHCI_CAPABILITIES);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001786
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001787 if (host->quirks & SDHCI_QUIRK_FORCE_DMA)
Richard Röjforsa13abc72009-09-22 16:45:30 -07001788 host->flags |= SDHCI_USE_SDMA;
1789 else if (!(caps & SDHCI_CAN_DO_SDMA))
1790 DBG("Controller doesn't have SDMA capability\n");
Pierre Ossman67435272006-06-30 02:22:31 -07001791 else
Richard Röjforsa13abc72009-09-22 16:45:30 -07001792 host->flags |= SDHCI_USE_SDMA;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001793
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001794 if ((host->quirks & SDHCI_QUIRK_BROKEN_DMA) &&
Richard Röjforsa13abc72009-09-22 16:45:30 -07001795 (host->flags & SDHCI_USE_SDMA)) {
Rolf Eike Beercee687c2007-11-02 15:22:30 +01001796 DBG("Disabling DMA as it is marked broken\n");
Richard Röjforsa13abc72009-09-22 16:45:30 -07001797 host->flags &= ~SDHCI_USE_SDMA;
Feng Tang7c168e32007-09-30 12:44:18 +02001798 }
1799
Richard Röjforsa13abc72009-09-22 16:45:30 -07001800 if ((host->version >= SDHCI_SPEC_200) && (caps & SDHCI_CAN_DO_ADMA2))
1801 host->flags |= SDHCI_USE_ADMA;
Pierre Ossman2134a922008-06-28 18:28:51 +02001802
1803 if ((host->quirks & SDHCI_QUIRK_BROKEN_ADMA) &&
1804 (host->flags & SDHCI_USE_ADMA)) {
1805 DBG("Disabling ADMA as it is marked broken\n");
1806 host->flags &= ~SDHCI_USE_ADMA;
1807 }
1808
Richard Röjforsa13abc72009-09-22 16:45:30 -07001809 if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001810 if (host->ops->enable_dma) {
1811 if (host->ops->enable_dma(host)) {
1812 printk(KERN_WARNING "%s: No suitable DMA "
1813 "available. Falling back to PIO.\n",
1814 mmc_hostname(mmc));
Richard Röjforsa13abc72009-09-22 16:45:30 -07001815 host->flags &=
1816 ~(SDHCI_USE_SDMA | SDHCI_USE_ADMA);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001817 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001818 }
1819 }
1820
Pierre Ossman2134a922008-06-28 18:28:51 +02001821 if (host->flags & SDHCI_USE_ADMA) {
1822 /*
1823 * We need to allocate descriptors for all sg entries
1824 * (128) and potentially one alignment transfer for
1825 * each of those entries.
1826 */
1827 host->adma_desc = kmalloc((128 * 2 + 1) * 4, GFP_KERNEL);
1828 host->align_buffer = kmalloc(128 * 4, GFP_KERNEL);
1829 if (!host->adma_desc || !host->align_buffer) {
1830 kfree(host->adma_desc);
1831 kfree(host->align_buffer);
1832 printk(KERN_WARNING "%s: Unable to allocate ADMA "
1833 "buffers. Falling back to standard DMA.\n",
1834 mmc_hostname(mmc));
1835 host->flags &= ~SDHCI_USE_ADMA;
1836 }
1837 }
1838
Pierre Ossman76591502008-07-21 00:32:11 +02001839 /*
1840 * If we use DMA, then it's up to the caller to set the DMA
1841 * mask, but PIO does not need the hw shim so we set a new
1842 * mask here in that case.
1843 */
Richard Röjforsa13abc72009-09-22 16:45:30 -07001844 if (!(host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA))) {
Pierre Ossman76591502008-07-21 00:32:11 +02001845 host->dma_mask = DMA_BIT_MASK(64);
1846 mmc_dev(host->mmc)->dma_mask = &host->dma_mask;
1847 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001848
Zhangfei Gaoc4687d52010-08-20 14:02:36 -04001849 if (host->version >= SDHCI_SPEC_300)
1850 host->max_clk = (caps & SDHCI_CLOCK_V3_BASE_MASK)
1851 >> SDHCI_CLOCK_BASE_SHIFT;
1852 else
1853 host->max_clk = (caps & SDHCI_CLOCK_BASE_MASK)
1854 >> SDHCI_CLOCK_BASE_SHIFT;
1855
Pierre Ossmand129bce2006-03-24 03:18:17 -08001856 host->max_clk *= 1000000;
Anton Vorontsovf27f47e2010-05-26 14:41:53 -07001857 if (host->max_clk == 0 || host->quirks &
1858 SDHCI_QUIRK_CAP_CLOCK_BASE_BROKEN) {
Ben Dooks4240ff02009-03-17 00:13:57 +03001859 if (!host->ops->get_max_clock) {
1860 printk(KERN_ERR
1861 "%s: Hardware doesn't specify base clock "
1862 "frequency.\n", mmc_hostname(mmc));
1863 return -ENODEV;
1864 }
1865 host->max_clk = host->ops->get_max_clock(host);
1866 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001867
Pierre Ossman1c8cde92006-06-30 02:22:25 -07001868 host->timeout_clk =
1869 (caps & SDHCI_TIMEOUT_CLK_MASK) >> SDHCI_TIMEOUT_CLK_SHIFT;
1870 if (host->timeout_clk == 0) {
Anton Vorontsov81b39802009-09-22 16:45:13 -07001871 if (host->ops->get_timeout_clock) {
1872 host->timeout_clk = host->ops->get_timeout_clock(host);
1873 } else if (!(host->quirks &
1874 SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK)) {
Ben Dooks4240ff02009-03-17 00:13:57 +03001875 printk(KERN_ERR
1876 "%s: Hardware doesn't specify timeout clock "
1877 "frequency.\n", mmc_hostname(mmc));
1878 return -ENODEV;
1879 }
Pierre Ossman1c8cde92006-06-30 02:22:25 -07001880 }
1881 if (caps & SDHCI_TIMEOUT_CLK_UNIT)
1882 host->timeout_clk *= 1000;
1883
Andrei Warkentina3c77782011-04-11 16:13:42 -05001884 if (host->quirks & SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK)
1885 host->timeout_clk = host->clock / 1000;
1886
Pierre Ossmand129bce2006-03-24 03:18:17 -08001887 /*
1888 * Set host parameters.
1889 */
1890 mmc->ops = &sdhci_ops;
Marek Szyprowskice5f0362010-08-10 18:01:56 -07001891 if (host->ops->get_min_clock)
Anton Vorontsova9e58f22009-07-29 15:04:16 -07001892 mmc->f_min = host->ops->get_min_clock(host);
Zhangfei Gao03975262010-09-20 15:15:18 -04001893 else if (host->version >= SDHCI_SPEC_300)
1894 mmc->f_min = host->max_clk / SDHCI_MAX_DIV_SPEC_300;
Anton Vorontsova9e58f22009-07-29 15:04:16 -07001895 else
Zhangfei Gao03975262010-09-20 15:15:18 -04001896 mmc->f_min = host->max_clk / SDHCI_MAX_DIV_SPEC_200;
Philip Rakity15ec4462010-11-19 16:48:39 -05001897
Pierre Ossmand129bce2006-03-24 03:18:17 -08001898 mmc->f_max = host->max_clk;
Andrei Warkentina3c77782011-04-11 16:13:42 -05001899 mmc->caps |= MMC_CAP_SDIO_IRQ | MMC_CAP_ERASE;
Anton Vorontsov5fe23c72009-06-18 00:14:08 +04001900
Philip Rakity15ec4462010-11-19 16:48:39 -05001901 /*
1902 * A controller may support 8-bit width, but the board itself
1903 * might not have the pins brought out. Boards that support
1904 * 8-bit width must set "mmc->caps |= MMC_CAP_8_BIT_DATA;" in
1905 * their platform code before calling sdhci_add_host(), and we
1906 * won't assume 8-bit width for hosts without that CAP.
1907 */
Anton Vorontsov5fe23c72009-06-18 00:14:08 +04001908 if (!(host->quirks & SDHCI_QUIRK_FORCE_1_BIT_DATA))
Philip Rakity15ec4462010-11-19 16:48:39 -05001909 mmc->caps |= MMC_CAP_4_BIT_DATA;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001910
Pierre Ossman86a6a872009-02-02 21:13:49 +01001911 if (caps & SDHCI_CAN_DO_HISPD)
Zhangfei Gaoa29e7e12010-08-16 21:15:32 -04001912 mmc->caps |= MMC_CAP_SD_HIGHSPEED | MMC_CAP_MMC_HIGHSPEED;
Pierre Ossmancd9277c2007-02-18 12:07:47 +01001913
Jaehoon Chung176d1ed2010-09-27 09:42:20 +01001914 if ((host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION) &&
1915 mmc_card_is_removable(mmc))
Anton Vorontsov68d1fb72009-03-17 00:13:52 +03001916 mmc->caps |= MMC_CAP_NEEDS_POLL;
1917
Takashi Iwai8f230f42010-12-08 10:04:30 +01001918 ocr_avail = 0;
Pierre Ossman146ad662006-06-30 02:22:23 -07001919 if (caps & SDHCI_CAN_VDD_330)
Takashi Iwai8f230f42010-12-08 10:04:30 +01001920 ocr_avail |= MMC_VDD_32_33 | MMC_VDD_33_34;
Pierre Ossmanc70840e2007-02-02 22:41:41 +01001921 if (caps & SDHCI_CAN_VDD_300)
Takashi Iwai8f230f42010-12-08 10:04:30 +01001922 ocr_avail |= MMC_VDD_29_30 | MMC_VDD_30_31;
Pierre Ossmanc70840e2007-02-02 22:41:41 +01001923 if (caps & SDHCI_CAN_VDD_180)
Takashi Iwai8f230f42010-12-08 10:04:30 +01001924 ocr_avail |= MMC_VDD_165_195;
1925
1926 mmc->ocr_avail = ocr_avail;
1927 mmc->ocr_avail_sdio = ocr_avail;
1928 if (host->ocr_avail_sdio)
1929 mmc->ocr_avail_sdio &= host->ocr_avail_sdio;
1930 mmc->ocr_avail_sd = ocr_avail;
1931 if (host->ocr_avail_sd)
1932 mmc->ocr_avail_sd &= host->ocr_avail_sd;
1933 else /* normal SD controllers don't support 1.8V */
1934 mmc->ocr_avail_sd &= ~MMC_VDD_165_195;
1935 mmc->ocr_avail_mmc = ocr_avail;
1936 if (host->ocr_avail_mmc)
1937 mmc->ocr_avail_mmc &= host->ocr_avail_mmc;
Pierre Ossman146ad662006-06-30 02:22:23 -07001938
1939 if (mmc->ocr_avail == 0) {
1940 printk(KERN_ERR "%s: Hardware doesn't report any "
Pierre Ossmanb69c9052008-03-08 23:44:25 +01001941 "support voltages.\n", mmc_hostname(mmc));
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001942 return -ENODEV;
Pierre Ossman146ad662006-06-30 02:22:23 -07001943 }
1944
Pierre Ossmand129bce2006-03-24 03:18:17 -08001945 spin_lock_init(&host->lock);
1946
1947 /*
Pierre Ossman2134a922008-06-28 18:28:51 +02001948 * Maximum number of segments. Depends on if the hardware
1949 * can do scatter/gather or not.
Pierre Ossmand129bce2006-03-24 03:18:17 -08001950 */
Pierre Ossman2134a922008-06-28 18:28:51 +02001951 if (host->flags & SDHCI_USE_ADMA)
Martin K. Petersena36274e2010-09-10 01:33:59 -04001952 mmc->max_segs = 128;
Richard Röjforsa13abc72009-09-22 16:45:30 -07001953 else if (host->flags & SDHCI_USE_SDMA)
Martin K. Petersena36274e2010-09-10 01:33:59 -04001954 mmc->max_segs = 1;
Pierre Ossman2134a922008-06-28 18:28:51 +02001955 else /* PIO */
Martin K. Petersena36274e2010-09-10 01:33:59 -04001956 mmc->max_segs = 128;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001957
1958 /*
Pierre Ossmanbab76962006-07-02 16:51:35 +01001959 * Maximum number of sectors in one transfer. Limited by DMA boundary
Pierre Ossman55db8902006-11-21 17:55:45 +01001960 * size (512KiB).
Pierre Ossmand129bce2006-03-24 03:18:17 -08001961 */
Pierre Ossman55db8902006-11-21 17:55:45 +01001962 mmc->max_req_size = 524288;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001963
1964 /*
1965 * Maximum segment size. Could be one segment with the maximum number
Pierre Ossman2134a922008-06-28 18:28:51 +02001966 * of bytes. When doing hardware scatter/gather, each entry cannot
1967 * be larger than 64 KiB though.
Pierre Ossmand129bce2006-03-24 03:18:17 -08001968 */
Olof Johansson30652aa2011-01-01 18:37:32 -06001969 if (host->flags & SDHCI_USE_ADMA) {
1970 if (host->quirks & SDHCI_QUIRK_BROKEN_ADMA_ZEROLEN_DESC)
1971 mmc->max_seg_size = 65535;
1972 else
1973 mmc->max_seg_size = 65536;
1974 } else {
Pierre Ossman2134a922008-06-28 18:28:51 +02001975 mmc->max_seg_size = mmc->max_req_size;
Olof Johansson30652aa2011-01-01 18:37:32 -06001976 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001977
1978 /*
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +01001979 * Maximum block size. This varies from controller to controller and
1980 * is specified in the capabilities register.
1981 */
Anton Vorontsov0633f652009-03-17 00:14:03 +03001982 if (host->quirks & SDHCI_QUIRK_FORCE_BLK_SZ_2048) {
1983 mmc->max_blk_size = 2;
1984 } else {
1985 mmc->max_blk_size = (caps & SDHCI_MAX_BLOCK_MASK) >>
1986 SDHCI_MAX_BLOCK_SHIFT;
1987 if (mmc->max_blk_size >= 3) {
1988 printk(KERN_WARNING "%s: Invalid maximum block size, "
1989 "assuming 512 bytes\n", mmc_hostname(mmc));
1990 mmc->max_blk_size = 0;
1991 }
1992 }
1993
1994 mmc->max_blk_size = 512 << mmc->max_blk_size;
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +01001995
1996 /*
Pierre Ossman55db8902006-11-21 17:55:45 +01001997 * Maximum block count.
1998 */
Ben Dooks1388eef2009-06-14 12:40:53 +01001999 mmc->max_blk_count = (host->quirks & SDHCI_QUIRK_NO_MULTIBLOCK) ? 1 : 65535;
Pierre Ossman55db8902006-11-21 17:55:45 +01002000
2001 /*
Pierre Ossmand129bce2006-03-24 03:18:17 -08002002 * Init tasklets.
2003 */
2004 tasklet_init(&host->card_tasklet,
2005 sdhci_tasklet_card, (unsigned long)host);
2006 tasklet_init(&host->finish_tasklet,
2007 sdhci_tasklet_finish, (unsigned long)host);
2008
Al Viroe4cad1b2006-10-10 22:47:07 +01002009 setup_timer(&host->timer, sdhci_timeout_timer, (unsigned long)host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002010
Thomas Gleixnerdace1452006-07-01 19:29:38 -07002011 ret = request_irq(host->irq, sdhci_irq, IRQF_SHARED,
Pierre Ossmanb69c9052008-03-08 23:44:25 +01002012 mmc_hostname(mmc), host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002013 if (ret)
Pierre Ossman8ef1a142006-06-30 02:22:21 -07002014 goto untasklet;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002015
Marek Szyprowski9bea3c82010-08-10 18:01:59 -07002016 host->vmmc = regulator_get(mmc_dev(mmc), "vmmc");
2017 if (IS_ERR(host->vmmc)) {
2018 printk(KERN_INFO "%s: no vmmc regulator found\n", mmc_hostname(mmc));
2019 host->vmmc = NULL;
2020 } else {
2021 regulator_enable(host->vmmc);
2022 }
2023
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08002024 sdhci_init(host, 0);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002025
2026#ifdef CONFIG_MMC_DEBUG
2027 sdhci_dumpregs(host);
2028#endif
2029
Pierre Ossmanf9134312008-12-21 17:01:48 +01002030#ifdef SDHCI_USE_LEDS_CLASS
Helmut Schaa5dbace02009-02-14 16:22:39 +01002031 snprintf(host->led_name, sizeof(host->led_name),
2032 "%s::", mmc_hostname(mmc));
2033 host->led.name = host->led_name;
Pierre Ossman2f730fe2008-03-17 10:29:38 +01002034 host->led.brightness = LED_OFF;
2035 host->led.default_trigger = mmc_hostname(mmc);
2036 host->led.brightness_set = sdhci_led_control;
2037
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002038 ret = led_classdev_register(mmc_dev(mmc), &host->led);
Pierre Ossman2f730fe2008-03-17 10:29:38 +01002039 if (ret)
2040 goto reset;
2041#endif
2042
Pierre Ossman5f25a662006-10-04 02:15:39 -07002043 mmiowb();
2044
Pierre Ossmand129bce2006-03-24 03:18:17 -08002045 mmc_add_host(mmc);
2046
Richard Röjforsa13abc72009-09-22 16:45:30 -07002047 printk(KERN_INFO "%s: SDHCI controller on %s [%s] using %s\n",
Kay Sieversd1b26862008-11-08 21:37:46 +01002048 mmc_hostname(mmc), host->hw_name, dev_name(mmc_dev(mmc)),
Richard Röjforsa13abc72009-09-22 16:45:30 -07002049 (host->flags & SDHCI_USE_ADMA) ? "ADMA" :
2050 (host->flags & SDHCI_USE_SDMA) ? "DMA" : "PIO");
Pierre Ossmand129bce2006-03-24 03:18:17 -08002051
Anton Vorontsov7260cf52009-03-17 00:13:48 +03002052 sdhci_enable_card_detection(host);
2053
Pierre Ossmand129bce2006-03-24 03:18:17 -08002054 return 0;
2055
Pierre Ossmanf9134312008-12-21 17:01:48 +01002056#ifdef SDHCI_USE_LEDS_CLASS
Pierre Ossman2f730fe2008-03-17 10:29:38 +01002057reset:
2058 sdhci_reset(host, SDHCI_RESET_ALL);
2059 free_irq(host->irq, host);
2060#endif
Pierre Ossman8ef1a142006-06-30 02:22:21 -07002061untasklet:
Pierre Ossmand129bce2006-03-24 03:18:17 -08002062 tasklet_kill(&host->card_tasklet);
2063 tasklet_kill(&host->finish_tasklet);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002064
2065 return ret;
2066}
2067
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002068EXPORT_SYMBOL_GPL(sdhci_add_host);
2069
Pierre Ossman1e728592008-04-16 19:13:13 +02002070void sdhci_remove_host(struct sdhci_host *host, int dead)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002071{
Pierre Ossman1e728592008-04-16 19:13:13 +02002072 unsigned long flags;
2073
2074 if (dead) {
2075 spin_lock_irqsave(&host->lock, flags);
2076
2077 host->flags |= SDHCI_DEVICE_DEAD;
2078
2079 if (host->mrq) {
2080 printk(KERN_ERR "%s: Controller removed during "
2081 " transfer!\n", mmc_hostname(host->mmc));
2082
2083 host->mrq->cmd->error = -ENOMEDIUM;
2084 tasklet_schedule(&host->finish_tasklet);
2085 }
2086
2087 spin_unlock_irqrestore(&host->lock, flags);
2088 }
2089
Anton Vorontsov7260cf52009-03-17 00:13:48 +03002090 sdhci_disable_card_detection(host);
2091
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002092 mmc_remove_host(host->mmc);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002093
Pierre Ossmanf9134312008-12-21 17:01:48 +01002094#ifdef SDHCI_USE_LEDS_CLASS
Pierre Ossman2f730fe2008-03-17 10:29:38 +01002095 led_classdev_unregister(&host->led);
2096#endif
2097
Pierre Ossman1e728592008-04-16 19:13:13 +02002098 if (!dead)
2099 sdhci_reset(host, SDHCI_RESET_ALL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002100
2101 free_irq(host->irq, host);
2102
2103 del_timer_sync(&host->timer);
2104
2105 tasklet_kill(&host->card_tasklet);
2106 tasklet_kill(&host->finish_tasklet);
Pierre Ossman2134a922008-06-28 18:28:51 +02002107
Marek Szyprowski9bea3c82010-08-10 18:01:59 -07002108 if (host->vmmc) {
2109 regulator_disable(host->vmmc);
2110 regulator_put(host->vmmc);
2111 }
2112
Pierre Ossman2134a922008-06-28 18:28:51 +02002113 kfree(host->adma_desc);
2114 kfree(host->align_buffer);
2115
2116 host->adma_desc = NULL;
2117 host->align_buffer = NULL;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002118}
2119
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002120EXPORT_SYMBOL_GPL(sdhci_remove_host);
2121
2122void sdhci_free_host(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002123{
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002124 mmc_free_host(host->mmc);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002125}
2126
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002127EXPORT_SYMBOL_GPL(sdhci_free_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002128
2129/*****************************************************************************\
2130 * *
2131 * Driver init/exit *
2132 * *
2133\*****************************************************************************/
2134
2135static int __init sdhci_drv_init(void)
2136{
2137 printk(KERN_INFO DRIVER_NAME
Pierre Ossman52fbf9c2007-02-09 08:23:41 +01002138 ": Secure Digital Host Controller Interface driver\n");
Pierre Ossmand129bce2006-03-24 03:18:17 -08002139 printk(KERN_INFO DRIVER_NAME ": Copyright(c) Pierre Ossman\n");
2140
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002141 return 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002142}
2143
2144static void __exit sdhci_drv_exit(void)
2145{
Pierre Ossmand129bce2006-03-24 03:18:17 -08002146}
2147
2148module_init(sdhci_drv_init);
2149module_exit(sdhci_drv_exit);
2150
Pierre Ossmandf673b22006-06-30 02:22:31 -07002151module_param(debug_quirks, uint, 0444);
Pierre Ossman67435272006-06-30 02:22:31 -07002152
Pierre Ossman32710e82009-04-08 20:14:54 +02002153MODULE_AUTHOR("Pierre Ossman <pierre@ossman.eu>");
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002154MODULE_DESCRIPTION("Secure Digital Host Controller Interface core driver");
Pierre Ossmand129bce2006-03-24 03:18:17 -08002155MODULE_LICENSE("GPL");
Pierre Ossman67435272006-06-30 02:22:31 -07002156
Pierre Ossmandf673b22006-06-30 02:22:31 -07002157MODULE_PARM_DESC(debug_quirks, "Force certain quirks.");