blob: 55698864c2cdf252e8f257e9f215ccbfbeca7983 [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
Pierre Ossmand129bce2006-03-24 03:18:17 -080026#include <linux/mmc/host.h>
Pierre Ossmand129bce2006-03-24 03:18:17 -080027
Pierre Ossmand129bce2006-03-24 03:18:17 -080028#include "sdhci.h"
29
30#define DRIVER_NAME "sdhci"
Pierre Ossmand129bce2006-03-24 03:18:17 -080031
Pierre Ossmand129bce2006-03-24 03:18:17 -080032#define DBG(f, x...) \
Russell Kingc6563172006-03-29 09:30:20 +010033 pr_debug(DRIVER_NAME " [%s()]: " f, __func__,## x)
Pierre Ossmand129bce2006-03-24 03:18:17 -080034
Pierre Ossmanf9134312008-12-21 17:01:48 +010035#if defined(CONFIG_LEDS_CLASS) || (defined(CONFIG_LEDS_CLASS_MODULE) && \
36 defined(CONFIG_MMC_SDHCI_MODULE))
37#define SDHCI_USE_LEDS_CLASS
38#endif
39
Pierre Ossmandf673b22006-06-30 02:22:31 -070040static unsigned int debug_quirks = 0;
Pierre Ossman67435272006-06-30 02:22:31 -070041
Pierre Ossmand129bce2006-03-24 03:18:17 -080042static void sdhci_prepare_data(struct sdhci_host *, struct mmc_data *);
43static 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
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200593static u8 sdhci_calc_timeout(struct sdhci_host *host, struct mmc_data *data)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800594{
Pierre Ossman1c8cde92006-06-30 02:22:25 -0700595 u8 count;
596 unsigned target_timeout, current_timeout;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800597
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200598 /*
599 * If the host controller provides us with an incorrect timeout
600 * value, just skip the check and use 0xE. The hardware may take
601 * longer to time out, but that's much better than having a too-short
602 * timeout value.
603 */
Pierre Ossman11a2f1b2009-06-21 20:59:33 +0200604 if (host->quirks & SDHCI_QUIRK_BROKEN_TIMEOUT_VAL)
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200605 return 0xE;
Pierre Ossmane538fbe2007-08-12 16:46:32 +0200606
Pierre Ossman1c8cde92006-06-30 02:22:25 -0700607 /* timeout in us */
608 target_timeout = data->timeout_ns / 1000 +
609 data->timeout_clks / host->clock;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800610
Anton Vorontsov81b39802009-09-22 16:45:13 -0700611 if (host->quirks & SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK)
612 host->timeout_clk = host->clock / 1000;
613
Pierre Ossman1c8cde92006-06-30 02:22:25 -0700614 /*
615 * Figure out needed cycles.
616 * We do this in steps in order to fit inside a 32 bit int.
617 * The first step is the minimum timeout, which will have a
618 * minimum resolution of 6 bits:
619 * (1) 2^13*1000 > 2^22,
620 * (2) host->timeout_clk < 2^16
621 * =>
622 * (1) / (2) > 2^6
623 */
624 count = 0;
625 current_timeout = (1 << 13) * 1000 / host->timeout_clk;
626 while (current_timeout < target_timeout) {
627 count++;
628 current_timeout <<= 1;
629 if (count >= 0xF)
630 break;
631 }
632
633 if (count >= 0xF) {
634 printk(KERN_WARNING "%s: Too large timeout requested!\n",
635 mmc_hostname(host->mmc));
636 count = 0xE;
637 }
638
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200639 return count;
640}
641
Anton Vorontsov6aa943a2009-03-17 00:13:50 +0300642static void sdhci_set_transfer_irqs(struct sdhci_host *host)
643{
644 u32 pio_irqs = SDHCI_INT_DATA_AVAIL | SDHCI_INT_SPACE_AVAIL;
645 u32 dma_irqs = SDHCI_INT_DMA_END | SDHCI_INT_ADMA_ERROR;
646
647 if (host->flags & SDHCI_REQ_USE_DMA)
648 sdhci_clear_set_irqs(host, pio_irqs, dma_irqs);
649 else
650 sdhci_clear_set_irqs(host, dma_irqs, pio_irqs);
651}
652
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200653static void sdhci_prepare_data(struct sdhci_host *host, struct mmc_data *data)
654{
655 u8 count;
Pierre Ossman2134a922008-06-28 18:28:51 +0200656 u8 ctrl;
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200657 int ret;
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200658
659 WARN_ON(host->data);
660
661 if (data == NULL)
662 return;
663
664 /* Sanity checks */
665 BUG_ON(data->blksz * data->blocks > 524288);
666 BUG_ON(data->blksz > host->mmc->max_blk_size);
667 BUG_ON(data->blocks > 65535);
668
669 host->data = data;
670 host->data_early = 0;
671
672 count = sdhci_calc_timeout(host, data);
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300673 sdhci_writeb(host, count, SDHCI_TIMEOUT_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800674
Richard Röjforsa13abc72009-09-22 16:45:30 -0700675 if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA))
Pierre Ossmanc9fddbc2007-12-02 19:52:11 +0100676 host->flags |= SDHCI_REQ_USE_DMA;
677
Pierre Ossman2134a922008-06-28 18:28:51 +0200678 /*
679 * FIXME: This doesn't account for merging when mapping the
680 * scatterlist.
681 */
682 if (host->flags & SDHCI_REQ_USE_DMA) {
683 int broken, i;
684 struct scatterlist *sg;
685
686 broken = 0;
687 if (host->flags & SDHCI_USE_ADMA) {
688 if (host->quirks & SDHCI_QUIRK_32BIT_ADMA_SIZE)
689 broken = 1;
690 } else {
691 if (host->quirks & SDHCI_QUIRK_32BIT_DMA_SIZE)
692 broken = 1;
693 }
694
695 if (unlikely(broken)) {
696 for_each_sg(data->sg, sg, data->sg_len, i) {
697 if (sg->length & 0x3) {
698 DBG("Reverting to PIO because of "
699 "transfer size (%d)\n",
700 sg->length);
701 host->flags &= ~SDHCI_REQ_USE_DMA;
702 break;
703 }
704 }
705 }
Pierre Ossmanc9fddbc2007-12-02 19:52:11 +0100706 }
707
708 /*
709 * The assumption here being that alignment is the same after
710 * translation to device address space.
711 */
Pierre Ossman2134a922008-06-28 18:28:51 +0200712 if (host->flags & SDHCI_REQ_USE_DMA) {
713 int broken, i;
714 struct scatterlist *sg;
715
716 broken = 0;
717 if (host->flags & SDHCI_USE_ADMA) {
718 /*
719 * As we use 3 byte chunks to work around
720 * alignment problems, we need to check this
721 * quirk.
722 */
723 if (host->quirks & SDHCI_QUIRK_32BIT_ADMA_SIZE)
724 broken = 1;
725 } else {
726 if (host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR)
727 broken = 1;
728 }
729
730 if (unlikely(broken)) {
731 for_each_sg(data->sg, sg, data->sg_len, i) {
732 if (sg->offset & 0x3) {
733 DBG("Reverting to PIO because of "
734 "bad alignment\n");
735 host->flags &= ~SDHCI_REQ_USE_DMA;
736 break;
737 }
738 }
739 }
740 }
741
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200742 if (host->flags & SDHCI_REQ_USE_DMA) {
743 if (host->flags & SDHCI_USE_ADMA) {
744 ret = sdhci_adma_table_pre(host, data);
745 if (ret) {
746 /*
747 * This only happens when someone fed
748 * us an invalid request.
749 */
750 WARN_ON(1);
Pierre Ossmanebd6d352008-07-29 00:45:51 +0200751 host->flags &= ~SDHCI_REQ_USE_DMA;
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200752 } else {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300753 sdhci_writel(host, host->adma_addr,
754 SDHCI_ADMA_ADDRESS);
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200755 }
756 } else {
Tomas Winklerc8b3e022008-07-05 19:52:04 +0300757 int sg_cnt;
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200758
Tomas Winklerc8b3e022008-07-05 19:52:04 +0300759 sg_cnt = dma_map_sg(mmc_dev(host->mmc),
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200760 data->sg, data->sg_len,
761 (data->flags & MMC_DATA_READ) ?
762 DMA_FROM_DEVICE :
763 DMA_TO_DEVICE);
Tomas Winklerc8b3e022008-07-05 19:52:04 +0300764 if (sg_cnt == 0) {
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200765 /*
766 * This only happens when someone fed
767 * us an invalid request.
768 */
769 WARN_ON(1);
Pierre Ossmanebd6d352008-07-29 00:45:51 +0200770 host->flags &= ~SDHCI_REQ_USE_DMA;
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200771 } else {
Pierre Ossman719a61b2008-07-22 13:23:23 +0200772 WARN_ON(sg_cnt != 1);
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300773 sdhci_writel(host, sg_dma_address(data->sg),
774 SDHCI_DMA_ADDRESS);
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200775 }
776 }
777 }
778
Pierre Ossman2134a922008-06-28 18:28:51 +0200779 /*
780 * Always adjust the DMA selection as some controllers
781 * (e.g. JMicron) can't do PIO properly when the selection
782 * is ADMA.
783 */
784 if (host->version >= SDHCI_SPEC_200) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300785 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
Pierre Ossman2134a922008-06-28 18:28:51 +0200786 ctrl &= ~SDHCI_CTRL_DMA_MASK;
787 if ((host->flags & SDHCI_REQ_USE_DMA) &&
788 (host->flags & SDHCI_USE_ADMA))
789 ctrl |= SDHCI_CTRL_ADMA32;
790 else
791 ctrl |= SDHCI_CTRL_SDMA;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300792 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Pierre Ossmanc9fddbc2007-12-02 19:52:11 +0100793 }
794
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200795 if (!(host->flags & SDHCI_REQ_USE_DMA)) {
Sebastian Andrzej Siewiorda60a912009-06-18 09:33:32 +0200796 int flags;
797
798 flags = SG_MITER_ATOMIC;
799 if (host->data->flags & MMC_DATA_READ)
800 flags |= SG_MITER_TO_SG;
801 else
802 flags |= SG_MITER_FROM_SG;
803 sg_miter_start(&host->sg_miter, data->sg, data->sg_len, flags);
Pierre Ossman76591502008-07-21 00:32:11 +0200804 host->blocks = data->blocks;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800805 }
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700806
Anton Vorontsov6aa943a2009-03-17 00:13:50 +0300807 sdhci_set_transfer_irqs(host);
808
Pierre Ossmanbab76962006-07-02 16:51:35 +0100809 /* We do not handle DMA boundaries, so set it to max (512 KiB) */
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300810 sdhci_writew(host, SDHCI_MAKE_BLKSZ(7, data->blksz), SDHCI_BLOCK_SIZE);
811 sdhci_writew(host, data->blocks, SDHCI_BLOCK_COUNT);
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700812}
813
814static void sdhci_set_transfer_mode(struct sdhci_host *host,
815 struct mmc_data *data)
816{
817 u16 mode;
818
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700819 if (data == NULL)
820 return;
821
Pierre Ossmane538fbe2007-08-12 16:46:32 +0200822 WARN_ON(!host->data);
823
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700824 mode = SDHCI_TRNS_BLK_CNT_EN;
Jerry Huangc4512f72010-08-10 18:01:59 -0700825 if (data->blocks > 1) {
826 if (host->quirks & SDHCI_QUIRK_MULTIBLOCK_READ_ACMD12)
827 mode |= SDHCI_TRNS_MULTI | SDHCI_TRNS_ACMD12;
828 else
829 mode |= SDHCI_TRNS_MULTI;
830 }
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700831 if (data->flags & MMC_DATA_READ)
832 mode |= SDHCI_TRNS_READ;
Pierre Ossmanc9fddbc2007-12-02 19:52:11 +0100833 if (host->flags & SDHCI_REQ_USE_DMA)
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700834 mode |= SDHCI_TRNS_DMA;
835
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300836 sdhci_writew(host, mode, SDHCI_TRANSFER_MODE);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800837}
838
839static void sdhci_finish_data(struct sdhci_host *host)
840{
841 struct mmc_data *data;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800842
843 BUG_ON(!host->data);
844
845 data = host->data;
846 host->data = NULL;
847
Pierre Ossmanc9fddbc2007-12-02 19:52:11 +0100848 if (host->flags & SDHCI_REQ_USE_DMA) {
Pierre Ossman2134a922008-06-28 18:28:51 +0200849 if (host->flags & SDHCI_USE_ADMA)
850 sdhci_adma_table_post(host, data);
851 else {
852 dma_unmap_sg(mmc_dev(host->mmc), data->sg,
853 data->sg_len, (data->flags & MMC_DATA_READ) ?
854 DMA_FROM_DEVICE : DMA_TO_DEVICE);
855 }
Pierre Ossmand129bce2006-03-24 03:18:17 -0800856 }
857
858 /*
Pierre Ossmanc9b74c52008-04-18 20:41:49 +0200859 * The specification states that the block count register must
860 * be updated, but it does not specify at what point in the
861 * data flow. That makes the register entirely useless to read
862 * back so we have to assume that nothing made it to the card
863 * in the event of an error.
Pierre Ossmand129bce2006-03-24 03:18:17 -0800864 */
Pierre Ossmanc9b74c52008-04-18 20:41:49 +0200865 if (data->error)
866 data->bytes_xfered = 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800867 else
Pierre Ossmanc9b74c52008-04-18 20:41:49 +0200868 data->bytes_xfered = data->blksz * data->blocks;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800869
Pierre Ossmand129bce2006-03-24 03:18:17 -0800870 if (data->stop) {
871 /*
872 * The controller needs a reset of internal state machines
873 * upon error conditions.
874 */
Pierre Ossman17b04292007-07-22 22:18:46 +0200875 if (data->error) {
Pierre Ossmand129bce2006-03-24 03:18:17 -0800876 sdhci_reset(host, SDHCI_RESET_CMD);
877 sdhci_reset(host, SDHCI_RESET_DATA);
878 }
879
880 sdhci_send_command(host, data->stop);
881 } else
882 tasklet_schedule(&host->finish_tasklet);
883}
884
885static void sdhci_send_command(struct sdhci_host *host, struct mmc_command *cmd)
886{
887 int flags;
Pierre Ossmanfd2208d2006-06-30 02:22:28 -0700888 u32 mask;
Pierre Ossman7cb2c762006-06-30 02:22:23 -0700889 unsigned long timeout;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800890
891 WARN_ON(host->cmd);
892
Pierre Ossmand129bce2006-03-24 03:18:17 -0800893 /* Wait max 10 ms */
Pierre Ossman7cb2c762006-06-30 02:22:23 -0700894 timeout = 10;
Pierre Ossmanfd2208d2006-06-30 02:22:28 -0700895
896 mask = SDHCI_CMD_INHIBIT;
897 if ((cmd->data != NULL) || (cmd->flags & MMC_RSP_BUSY))
898 mask |= SDHCI_DATA_INHIBIT;
899
900 /* We shouldn't wait for data inihibit for stop commands, even
901 though they might use busy signaling */
902 if (host->mrq->data && (cmd == host->mrq->data->stop))
903 mask &= ~SDHCI_DATA_INHIBIT;
904
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300905 while (sdhci_readl(host, SDHCI_PRESENT_STATE) & mask) {
Pierre Ossman7cb2c762006-06-30 02:22:23 -0700906 if (timeout == 0) {
Pierre Ossmand129bce2006-03-24 03:18:17 -0800907 printk(KERN_ERR "%s: Controller never released "
Pierre Ossmanacf1da42007-02-09 08:29:19 +0100908 "inhibit bit(s).\n", mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -0800909 sdhci_dumpregs(host);
Pierre Ossman17b04292007-07-22 22:18:46 +0200910 cmd->error = -EIO;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800911 tasklet_schedule(&host->finish_tasklet);
912 return;
913 }
Pierre Ossman7cb2c762006-06-30 02:22:23 -0700914 timeout--;
915 mdelay(1);
916 }
Pierre Ossmand129bce2006-03-24 03:18:17 -0800917
918 mod_timer(&host->timer, jiffies + 10 * HZ);
919
920 host->cmd = cmd;
921
922 sdhci_prepare_data(host, cmd->data);
923
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300924 sdhci_writel(host, cmd->arg, SDHCI_ARGUMENT);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800925
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700926 sdhci_set_transfer_mode(host, cmd->data);
927
Pierre Ossmand129bce2006-03-24 03:18:17 -0800928 if ((cmd->flags & MMC_RSP_136) && (cmd->flags & MMC_RSP_BUSY)) {
Pierre Ossmanacf1da42007-02-09 08:29:19 +0100929 printk(KERN_ERR "%s: Unsupported response type!\n",
Pierre Ossmand129bce2006-03-24 03:18:17 -0800930 mmc_hostname(host->mmc));
Pierre Ossman17b04292007-07-22 22:18:46 +0200931 cmd->error = -EINVAL;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800932 tasklet_schedule(&host->finish_tasklet);
933 return;
934 }
935
936 if (!(cmd->flags & MMC_RSP_PRESENT))
937 flags = SDHCI_CMD_RESP_NONE;
938 else if (cmd->flags & MMC_RSP_136)
939 flags = SDHCI_CMD_RESP_LONG;
940 else if (cmd->flags & MMC_RSP_BUSY)
941 flags = SDHCI_CMD_RESP_SHORT_BUSY;
942 else
943 flags = SDHCI_CMD_RESP_SHORT;
944
945 if (cmd->flags & MMC_RSP_CRC)
946 flags |= SDHCI_CMD_CRC;
947 if (cmd->flags & MMC_RSP_OPCODE)
948 flags |= SDHCI_CMD_INDEX;
949 if (cmd->data)
950 flags |= SDHCI_CMD_DATA;
951
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300952 sdhci_writew(host, SDHCI_MAKE_CMD(cmd->opcode, flags), SDHCI_COMMAND);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800953}
954
955static void sdhci_finish_command(struct sdhci_host *host)
956{
957 int i;
958
959 BUG_ON(host->cmd == NULL);
960
961 if (host->cmd->flags & MMC_RSP_PRESENT) {
962 if (host->cmd->flags & MMC_RSP_136) {
963 /* CRC is stripped so we need to do some shifting. */
964 for (i = 0;i < 4;i++) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300965 host->cmd->resp[i] = sdhci_readl(host,
Pierre Ossmand129bce2006-03-24 03:18:17 -0800966 SDHCI_RESPONSE + (3-i)*4) << 8;
967 if (i != 3)
968 host->cmd->resp[i] |=
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300969 sdhci_readb(host,
Pierre Ossmand129bce2006-03-24 03:18:17 -0800970 SDHCI_RESPONSE + (3-i)*4-1);
971 }
972 } else {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300973 host->cmd->resp[0] = sdhci_readl(host, SDHCI_RESPONSE);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800974 }
975 }
976
Pierre Ossman17b04292007-07-22 22:18:46 +0200977 host->cmd->error = 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800978
Pierre Ossmane538fbe2007-08-12 16:46:32 +0200979 if (host->data && host->data_early)
980 sdhci_finish_data(host);
981
982 if (!host->cmd->data)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800983 tasklet_schedule(&host->finish_tasklet);
984
985 host->cmd = NULL;
986}
987
988static void sdhci_set_clock(struct sdhci_host *host, unsigned int clock)
989{
990 int div;
991 u16 clk;
Pierre Ossman7cb2c762006-06-30 02:22:23 -0700992 unsigned long timeout;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800993
994 if (clock == host->clock)
995 return;
996
Anton Vorontsov81146342009-03-17 00:13:59 +0300997 if (host->ops->set_clock) {
998 host->ops->set_clock(host, clock);
999 if (host->quirks & SDHCI_QUIRK_NONSTANDARD_CLOCK)
1000 return;
1001 }
1002
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001003 sdhci_writew(host, 0, SDHCI_CLOCK_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001004
1005 if (clock == 0)
1006 goto out;
1007
Zhangfei Gao85105c52010-08-06 07:10:01 +08001008 if (host->version >= SDHCI_SPEC_300) {
1009 /* Version 3.00 divisors must be a multiple of 2. */
1010 if (host->max_clk <= clock)
1011 div = 1;
1012 else {
Zhangfei Gao03975262010-09-20 15:15:18 -04001013 for (div = 2; div < SDHCI_MAX_DIV_SPEC_300; div += 2) {
Zhangfei Gao85105c52010-08-06 07:10:01 +08001014 if ((host->max_clk / div) <= clock)
1015 break;
1016 }
1017 }
1018 } else {
1019 /* Version 2.00 divisors must be a power of 2. */
Zhangfei Gao03975262010-09-20 15:15:18 -04001020 for (div = 1; div < SDHCI_MAX_DIV_SPEC_200; div *= 2) {
Zhangfei Gao85105c52010-08-06 07:10:01 +08001021 if ((host->max_clk / div) <= clock)
1022 break;
1023 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001024 }
1025 div >>= 1;
1026
Zhangfei Gao85105c52010-08-06 07:10:01 +08001027 clk = (div & SDHCI_DIV_MASK) << SDHCI_DIVIDER_SHIFT;
1028 clk |= ((div & SDHCI_DIV_HI_MASK) >> SDHCI_DIV_MASK_LEN)
1029 << SDHCI_DIVIDER_HI_SHIFT;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001030 clk |= SDHCI_CLOCK_INT_EN;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001031 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001032
Chris Ball27f6cb12009-09-22 16:45:31 -07001033 /* Wait max 20 ms */
1034 timeout = 20;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001035 while (!((clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL))
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001036 & SDHCI_CLOCK_INT_STABLE)) {
1037 if (timeout == 0) {
Pierre Ossmanacf1da42007-02-09 08:29:19 +01001038 printk(KERN_ERR "%s: Internal clock never "
1039 "stabilised.\n", mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -08001040 sdhci_dumpregs(host);
1041 return;
1042 }
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001043 timeout--;
1044 mdelay(1);
1045 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001046
1047 clk |= SDHCI_CLOCK_CARD_EN;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001048 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001049
1050out:
1051 host->clock = clock;
1052}
1053
Pierre Ossman146ad662006-06-30 02:22:23 -07001054static void sdhci_set_power(struct sdhci_host *host, unsigned short power)
1055{
Giuseppe Cavallaro83642482010-09-28 10:41:28 +02001056 u8 pwr = 0;
Pierre Ossman146ad662006-06-30 02:22:23 -07001057
Giuseppe Cavallaro83642482010-09-28 10:41:28 +02001058 if (power != (unsigned short)-1) {
Pierre Ossmanae628902009-05-03 20:45:03 +02001059 switch (1 << power) {
1060 case MMC_VDD_165_195:
1061 pwr = SDHCI_POWER_180;
1062 break;
1063 case MMC_VDD_29_30:
1064 case MMC_VDD_30_31:
1065 pwr = SDHCI_POWER_300;
1066 break;
1067 case MMC_VDD_32_33:
1068 case MMC_VDD_33_34:
1069 pwr = SDHCI_POWER_330;
1070 break;
1071 default:
1072 BUG();
1073 }
1074 }
1075
1076 if (host->pwr == pwr)
Pierre Ossman146ad662006-06-30 02:22:23 -07001077 return;
1078
Pierre Ossmanae628902009-05-03 20:45:03 +02001079 host->pwr = pwr;
1080
1081 if (pwr == 0) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001082 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
Pierre Ossmanae628902009-05-03 20:45:03 +02001083 return;
Darren Salt9e9dc5f2007-01-27 15:32:31 +01001084 }
1085
1086 /*
1087 * Spec says that we should clear the power reg before setting
1088 * a new value. Some controllers don't seem to like this though.
1089 */
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001090 if (!(host->quirks & SDHCI_QUIRK_SINGLE_POWER_WRITE))
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001091 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
Pierre Ossman146ad662006-06-30 02:22:23 -07001092
Andres Salomone08c1692008-07-04 10:00:03 -07001093 /*
Andres Salomonc71f6512008-07-07 17:25:56 -04001094 * At least the Marvell CaFe chip gets confused if we set the voltage
Andres Salomone08c1692008-07-04 10:00:03 -07001095 * and set turn on power at the same time, so set the voltage first.
1096 */
Pierre Ossman11a2f1b2009-06-21 20:59:33 +02001097 if (host->quirks & SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER)
Pierre Ossmanae628902009-05-03 20:45:03 +02001098 sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL);
1099
1100 pwr |= SDHCI_POWER_ON;
Andres Salomone08c1692008-07-04 10:00:03 -07001101
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001102 sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL);
Harald Welte557b0692009-06-18 16:53:38 +02001103
1104 /*
1105 * Some controllers need an extra 10ms delay of 10ms before they
1106 * can apply clock after applying power
1107 */
Pierre Ossman11a2f1b2009-06-21 20:59:33 +02001108 if (host->quirks & SDHCI_QUIRK_DELAY_AFTER_POWER)
Harald Welte557b0692009-06-18 16:53:38 +02001109 mdelay(10);
Pierre Ossman146ad662006-06-30 02:22:23 -07001110}
1111
Pierre Ossmand129bce2006-03-24 03:18:17 -08001112/*****************************************************************************\
1113 * *
1114 * MMC callbacks *
1115 * *
1116\*****************************************************************************/
1117
1118static void sdhci_request(struct mmc_host *mmc, struct mmc_request *mrq)
1119{
1120 struct sdhci_host *host;
Anton Vorontsov68d1fb72009-03-17 00:13:52 +03001121 bool present;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001122 unsigned long flags;
1123
1124 host = mmc_priv(mmc);
1125
1126 spin_lock_irqsave(&host->lock, flags);
1127
1128 WARN_ON(host->mrq != NULL);
1129
Pierre Ossmanf9134312008-12-21 17:01:48 +01001130#ifndef SDHCI_USE_LEDS_CLASS
Pierre Ossmand129bce2006-03-24 03:18:17 -08001131 sdhci_activate_led(host);
Pierre Ossman2f730fe2008-03-17 10:29:38 +01001132#endif
Jerry Huangc4512f72010-08-10 18:01:59 -07001133 if (host->quirks & SDHCI_QUIRK_MULTIBLOCK_READ_ACMD12) {
1134 if (mrq->stop) {
1135 mrq->data->stop = NULL;
1136 mrq->stop = NULL;
1137 }
1138 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001139
1140 host->mrq = mrq;
1141
Anton Vorontsov68d1fb72009-03-17 00:13:52 +03001142 /* If polling, assume that the card is always present. */
1143 if (host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION)
1144 present = true;
1145 else
1146 present = sdhci_readl(host, SDHCI_PRESENT_STATE) &
1147 SDHCI_CARD_PRESENT;
1148
1149 if (!present || host->flags & SDHCI_DEVICE_DEAD) {
Pierre Ossman17b04292007-07-22 22:18:46 +02001150 host->mrq->cmd->error = -ENOMEDIUM;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001151 tasklet_schedule(&host->finish_tasklet);
1152 } else
1153 sdhci_send_command(host, mrq->cmd);
1154
Pierre Ossman5f25a662006-10-04 02:15:39 -07001155 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -08001156 spin_unlock_irqrestore(&host->lock, flags);
1157}
1158
1159static void sdhci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
1160{
1161 struct sdhci_host *host;
1162 unsigned long flags;
1163 u8 ctrl;
1164
1165 host = mmc_priv(mmc);
1166
1167 spin_lock_irqsave(&host->lock, flags);
1168
Pierre Ossman1e728592008-04-16 19:13:13 +02001169 if (host->flags & SDHCI_DEVICE_DEAD)
1170 goto out;
1171
Pierre Ossmand129bce2006-03-24 03:18:17 -08001172 /*
1173 * Reset the chip on each power off.
1174 * Should clear out any weird states.
1175 */
1176 if (ios->power_mode == MMC_POWER_OFF) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001177 sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE);
Anton Vorontsov7260cf52009-03-17 00:13:48 +03001178 sdhci_reinit(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001179 }
1180
1181 sdhci_set_clock(host, ios->clock);
1182
1183 if (ios->power_mode == MMC_POWER_OFF)
Pierre Ossman146ad662006-06-30 02:22:23 -07001184 sdhci_set_power(host, -1);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001185 else
Pierre Ossman146ad662006-06-30 02:22:23 -07001186 sdhci_set_power(host, ios->vdd);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001187
Philip Rakity643a81f2010-09-23 08:24:32 -07001188 if (host->ops->platform_send_init_74_clocks)
1189 host->ops->platform_send_init_74_clocks(host, ios->power_mode);
1190
Philip Rakity15ec4462010-11-19 16:48:39 -05001191 /*
1192 * If your platform has 8-bit width support but is not a v3 controller,
1193 * or if it requires special setup code, you should implement that in
1194 * platform_8bit_width().
1195 */
1196 if (host->ops->platform_8bit_width)
1197 host->ops->platform_8bit_width(host, ios->bus_width);
1198 else {
1199 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
1200 if (ios->bus_width == MMC_BUS_WIDTH_8) {
1201 ctrl &= ~SDHCI_CTRL_4BITBUS;
1202 if (host->version >= SDHCI_SPEC_300)
1203 ctrl |= SDHCI_CTRL_8BITBUS;
1204 } else {
1205 if (host->version >= SDHCI_SPEC_300)
1206 ctrl &= ~SDHCI_CTRL_8BITBUS;
1207 if (ios->bus_width == MMC_BUS_WIDTH_4)
1208 ctrl |= SDHCI_CTRL_4BITBUS;
1209 else
1210 ctrl &= ~SDHCI_CTRL_4BITBUS;
1211 }
1212 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
1213 }
1214
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001215 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
Pierre Ossmancd9277c2007-02-18 12:07:47 +01001216
Philip Rakity3ab9c8d2010-10-06 11:57:23 -07001217 if ((ios->timing == MMC_TIMING_SD_HS ||
1218 ios->timing == MMC_TIMING_MMC_HS)
1219 && !(host->quirks & SDHCI_QUIRK_NO_HISPD_BIT))
Pierre Ossmancd9277c2007-02-18 12:07:47 +01001220 ctrl |= SDHCI_CTRL_HISPD;
1221 else
1222 ctrl &= ~SDHCI_CTRL_HISPD;
1223
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001224 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001225
Leandro Dorileob8352262007-07-25 23:47:04 +02001226 /*
1227 * Some (ENE) controllers go apeshit on some ios operation,
1228 * signalling timeout and CRC errors even on CMD0. Resetting
1229 * it on each ios seems to solve the problem.
1230 */
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001231 if(host->quirks & SDHCI_QUIRK_RESET_CMD_DATA_ON_IOS)
Leandro Dorileob8352262007-07-25 23:47:04 +02001232 sdhci_reset(host, SDHCI_RESET_CMD | SDHCI_RESET_DATA);
1233
Pierre Ossman1e728592008-04-16 19:13:13 +02001234out:
Pierre Ossman5f25a662006-10-04 02:15:39 -07001235 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -08001236 spin_unlock_irqrestore(&host->lock, flags);
1237}
1238
1239static int sdhci_get_ro(struct mmc_host *mmc)
1240{
1241 struct sdhci_host *host;
1242 unsigned long flags;
Wolfram Sang2dfb5792010-10-15 12:21:01 +02001243 int is_readonly;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001244
1245 host = mmc_priv(mmc);
1246
1247 spin_lock_irqsave(&host->lock, flags);
1248
Pierre Ossman1e728592008-04-16 19:13:13 +02001249 if (host->flags & SDHCI_DEVICE_DEAD)
Wolfram Sang2dfb5792010-10-15 12:21:01 +02001250 is_readonly = 0;
1251 else if (host->ops->get_ro)
1252 is_readonly = host->ops->get_ro(host);
Pierre Ossman1e728592008-04-16 19:13:13 +02001253 else
Wolfram Sang2dfb5792010-10-15 12:21:01 +02001254 is_readonly = !(sdhci_readl(host, SDHCI_PRESENT_STATE)
1255 & SDHCI_WRITE_PROTECT);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001256
1257 spin_unlock_irqrestore(&host->lock, flags);
1258
Wolfram Sang2dfb5792010-10-15 12:21:01 +02001259 /* This quirk needs to be replaced by a callback-function later */
1260 return host->quirks & SDHCI_QUIRK_INVERTED_WRITE_PROTECT ?
1261 !is_readonly : is_readonly;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001262}
1263
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001264static void sdhci_enable_sdio_irq(struct mmc_host *mmc, int enable)
1265{
1266 struct sdhci_host *host;
1267 unsigned long flags;
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001268
1269 host = mmc_priv(mmc);
1270
1271 spin_lock_irqsave(&host->lock, flags);
1272
Pierre Ossman1e728592008-04-16 19:13:13 +02001273 if (host->flags & SDHCI_DEVICE_DEAD)
1274 goto out;
1275
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001276 if (enable)
Anton Vorontsov7260cf52009-03-17 00:13:48 +03001277 sdhci_unmask_irqs(host, SDHCI_INT_CARD_INT);
1278 else
1279 sdhci_mask_irqs(host, SDHCI_INT_CARD_INT);
Pierre Ossman1e728592008-04-16 19:13:13 +02001280out:
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001281 mmiowb();
1282
1283 spin_unlock_irqrestore(&host->lock, flags);
1284}
1285
David Brownellab7aefd2006-11-12 17:55:30 -08001286static const struct mmc_host_ops sdhci_ops = {
Pierre Ossmand129bce2006-03-24 03:18:17 -08001287 .request = sdhci_request,
1288 .set_ios = sdhci_set_ios,
1289 .get_ro = sdhci_get_ro,
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001290 .enable_sdio_irq = sdhci_enable_sdio_irq,
Pierre Ossmand129bce2006-03-24 03:18:17 -08001291};
1292
1293/*****************************************************************************\
1294 * *
1295 * Tasklets *
1296 * *
1297\*****************************************************************************/
1298
1299static void sdhci_tasklet_card(unsigned long param)
1300{
1301 struct sdhci_host *host;
1302 unsigned long flags;
1303
1304 host = (struct sdhci_host*)param;
1305
1306 spin_lock_irqsave(&host->lock, flags);
1307
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001308 if (!(sdhci_readl(host, SDHCI_PRESENT_STATE) & SDHCI_CARD_PRESENT)) {
Pierre Ossmand129bce2006-03-24 03:18:17 -08001309 if (host->mrq) {
1310 printk(KERN_ERR "%s: Card removed during transfer!\n",
1311 mmc_hostname(host->mmc));
1312 printk(KERN_ERR "%s: Resetting controller.\n",
1313 mmc_hostname(host->mmc));
1314
1315 sdhci_reset(host, SDHCI_RESET_CMD);
1316 sdhci_reset(host, SDHCI_RESET_DATA);
1317
Pierre Ossman17b04292007-07-22 22:18:46 +02001318 host->mrq->cmd->error = -ENOMEDIUM;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001319 tasklet_schedule(&host->finish_tasklet);
1320 }
1321 }
1322
1323 spin_unlock_irqrestore(&host->lock, flags);
1324
Pierre Ossman04cf5852008-08-18 22:18:14 +02001325 mmc_detect_change(host->mmc, msecs_to_jiffies(200));
Pierre Ossmand129bce2006-03-24 03:18:17 -08001326}
1327
1328static void sdhci_tasklet_finish(unsigned long param)
1329{
1330 struct sdhci_host *host;
1331 unsigned long flags;
1332 struct mmc_request *mrq;
1333
1334 host = (struct sdhci_host*)param;
1335
1336 spin_lock_irqsave(&host->lock, flags);
1337
1338 del_timer(&host->timer);
1339
1340 mrq = host->mrq;
1341
Pierre Ossmand129bce2006-03-24 03:18:17 -08001342 /*
1343 * The controller needs a reset of internal state machines
1344 * upon error conditions.
1345 */
Pierre Ossman1e728592008-04-16 19:13:13 +02001346 if (!(host->flags & SDHCI_DEVICE_DEAD) &&
1347 (mrq->cmd->error ||
1348 (mrq->data && (mrq->data->error ||
1349 (mrq->data->stop && mrq->data->stop->error))) ||
1350 (host->quirks & SDHCI_QUIRK_RESET_AFTER_REQUEST))) {
Pierre Ossman645289d2006-06-30 02:22:33 -07001351
1352 /* Some controllers need this kick or reset won't work here */
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001353 if (host->quirks & SDHCI_QUIRK_CLOCK_BEFORE_RESET) {
Pierre Ossman645289d2006-06-30 02:22:33 -07001354 unsigned int clock;
1355
1356 /* This is to force an update */
1357 clock = host->clock;
1358 host->clock = 0;
1359 sdhci_set_clock(host, clock);
1360 }
1361
1362 /* Spec says we should do both at the same time, but Ricoh
1363 controllers do not like that. */
Pierre Ossmand129bce2006-03-24 03:18:17 -08001364 sdhci_reset(host, SDHCI_RESET_CMD);
1365 sdhci_reset(host, SDHCI_RESET_DATA);
1366 }
1367
1368 host->mrq = NULL;
1369 host->cmd = NULL;
1370 host->data = NULL;
1371
Pierre Ossmanf9134312008-12-21 17:01:48 +01001372#ifndef SDHCI_USE_LEDS_CLASS
Pierre Ossmand129bce2006-03-24 03:18:17 -08001373 sdhci_deactivate_led(host);
Pierre Ossman2f730fe2008-03-17 10:29:38 +01001374#endif
Pierre Ossmand129bce2006-03-24 03:18:17 -08001375
Pierre Ossman5f25a662006-10-04 02:15:39 -07001376 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -08001377 spin_unlock_irqrestore(&host->lock, flags);
1378
1379 mmc_request_done(host->mmc, mrq);
1380}
1381
1382static void sdhci_timeout_timer(unsigned long data)
1383{
1384 struct sdhci_host *host;
1385 unsigned long flags;
1386
1387 host = (struct sdhci_host*)data;
1388
1389 spin_lock_irqsave(&host->lock, flags);
1390
1391 if (host->mrq) {
Pierre Ossmanacf1da42007-02-09 08:29:19 +01001392 printk(KERN_ERR "%s: Timeout waiting for hardware "
1393 "interrupt.\n", mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -08001394 sdhci_dumpregs(host);
1395
1396 if (host->data) {
Pierre Ossman17b04292007-07-22 22:18:46 +02001397 host->data->error = -ETIMEDOUT;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001398 sdhci_finish_data(host);
1399 } else {
1400 if (host->cmd)
Pierre Ossman17b04292007-07-22 22:18:46 +02001401 host->cmd->error = -ETIMEDOUT;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001402 else
Pierre Ossman17b04292007-07-22 22:18:46 +02001403 host->mrq->cmd->error = -ETIMEDOUT;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001404
1405 tasklet_schedule(&host->finish_tasklet);
1406 }
1407 }
1408
Pierre Ossman5f25a662006-10-04 02:15:39 -07001409 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -08001410 spin_unlock_irqrestore(&host->lock, flags);
1411}
1412
1413/*****************************************************************************\
1414 * *
1415 * Interrupt handling *
1416 * *
1417\*****************************************************************************/
1418
1419static void sdhci_cmd_irq(struct sdhci_host *host, u32 intmask)
1420{
1421 BUG_ON(intmask == 0);
1422
1423 if (!host->cmd) {
Pierre Ossmanb67ac3f2007-08-12 17:29:47 +02001424 printk(KERN_ERR "%s: Got command interrupt 0x%08x even "
1425 "though no command operation was in progress.\n",
1426 mmc_hostname(host->mmc), (unsigned)intmask);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001427 sdhci_dumpregs(host);
1428 return;
1429 }
1430
Pierre Ossman43b58b32007-07-25 23:15:27 +02001431 if (intmask & SDHCI_INT_TIMEOUT)
Pierre Ossman17b04292007-07-22 22:18:46 +02001432 host->cmd->error = -ETIMEDOUT;
1433 else if (intmask & (SDHCI_INT_CRC | SDHCI_INT_END_BIT |
1434 SDHCI_INT_INDEX))
1435 host->cmd->error = -EILSEQ;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001436
Pierre Ossmane8095172008-07-25 01:09:08 +02001437 if (host->cmd->error) {
Pierre Ossmand129bce2006-03-24 03:18:17 -08001438 tasklet_schedule(&host->finish_tasklet);
Pierre Ossmane8095172008-07-25 01:09:08 +02001439 return;
1440 }
1441
1442 /*
1443 * The host can send and interrupt when the busy state has
1444 * ended, allowing us to wait without wasting CPU cycles.
1445 * Unfortunately this is overloaded on the "data complete"
1446 * interrupt, so we need to take some care when handling
1447 * it.
1448 *
1449 * Note: The 1.0 specification is a bit ambiguous about this
1450 * feature so there might be some problems with older
1451 * controllers.
1452 */
1453 if (host->cmd->flags & MMC_RSP_BUSY) {
1454 if (host->cmd->data)
1455 DBG("Cannot wait for busy signal when also "
1456 "doing a data transfer");
Ben Dooksf9454052009-02-20 20:33:08 +03001457 else if (!(host->quirks & SDHCI_QUIRK_NO_BUSY_IRQ))
Pierre Ossmane8095172008-07-25 01:09:08 +02001458 return;
Ben Dooksf9454052009-02-20 20:33:08 +03001459
1460 /* The controller does not support the end-of-busy IRQ,
1461 * fall through and take the SDHCI_INT_RESPONSE */
Pierre Ossmane8095172008-07-25 01:09:08 +02001462 }
1463
1464 if (intmask & SDHCI_INT_RESPONSE)
Pierre Ossman43b58b32007-07-25 23:15:27 +02001465 sdhci_finish_command(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001466}
1467
George G. Davis0957c332010-02-18 12:32:12 -05001468#ifdef CONFIG_MMC_DEBUG
Ben Dooks6882a8c2009-06-14 13:52:38 +01001469static void sdhci_show_adma_error(struct sdhci_host *host)
1470{
1471 const char *name = mmc_hostname(host->mmc);
1472 u8 *desc = host->adma_desc;
1473 __le32 *dma;
1474 __le16 *len;
1475 u8 attr;
1476
1477 sdhci_dumpregs(host);
1478
1479 while (true) {
1480 dma = (__le32 *)(desc + 4);
1481 len = (__le16 *)(desc + 2);
1482 attr = *desc;
1483
1484 DBG("%s: %p: DMA 0x%08x, LEN 0x%04x, Attr=0x%02x\n",
1485 name, desc, le32_to_cpu(*dma), le16_to_cpu(*len), attr);
1486
1487 desc += 8;
1488
1489 if (attr & 2)
1490 break;
1491 }
1492}
1493#else
1494static void sdhci_show_adma_error(struct sdhci_host *host) { }
1495#endif
1496
Pierre Ossmand129bce2006-03-24 03:18:17 -08001497static void sdhci_data_irq(struct sdhci_host *host, u32 intmask)
1498{
1499 BUG_ON(intmask == 0);
1500
1501 if (!host->data) {
1502 /*
Pierre Ossmane8095172008-07-25 01:09:08 +02001503 * The "data complete" interrupt is also used to
1504 * indicate that a busy state has ended. See comment
1505 * above in sdhci_cmd_irq().
Pierre Ossmand129bce2006-03-24 03:18:17 -08001506 */
Pierre Ossmane8095172008-07-25 01:09:08 +02001507 if (host->cmd && (host->cmd->flags & MMC_RSP_BUSY)) {
1508 if (intmask & SDHCI_INT_DATA_END) {
1509 sdhci_finish_command(host);
1510 return;
1511 }
1512 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001513
Pierre Ossmanb67ac3f2007-08-12 17:29:47 +02001514 printk(KERN_ERR "%s: Got data interrupt 0x%08x even "
1515 "though no data operation was in progress.\n",
1516 mmc_hostname(host->mmc), (unsigned)intmask);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001517 sdhci_dumpregs(host);
1518
1519 return;
1520 }
1521
1522 if (intmask & SDHCI_INT_DATA_TIMEOUT)
Pierre Ossman17b04292007-07-22 22:18:46 +02001523 host->data->error = -ETIMEDOUT;
1524 else if (intmask & (SDHCI_INT_DATA_CRC | SDHCI_INT_DATA_END_BIT))
1525 host->data->error = -EILSEQ;
Ben Dooks6882a8c2009-06-14 13:52:38 +01001526 else if (intmask & SDHCI_INT_ADMA_ERROR) {
1527 printk(KERN_ERR "%s: ADMA error\n", mmc_hostname(host->mmc));
1528 sdhci_show_adma_error(host);
Pierre Ossman2134a922008-06-28 18:28:51 +02001529 host->data->error = -EIO;
Ben Dooks6882a8c2009-06-14 13:52:38 +01001530 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001531
Pierre Ossman17b04292007-07-22 22:18:46 +02001532 if (host->data->error)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001533 sdhci_finish_data(host);
1534 else {
Pierre Ossmana406f5a2006-07-02 16:50:59 +01001535 if (intmask & (SDHCI_INT_DATA_AVAIL | SDHCI_INT_SPACE_AVAIL))
Pierre Ossmand129bce2006-03-24 03:18:17 -08001536 sdhci_transfer_pio(host);
1537
Pierre Ossman6ba736a2007-05-13 22:39:23 +02001538 /*
1539 * We currently don't do anything fancy with DMA
1540 * boundaries, but as we can't disable the feature
1541 * we need to at least restart the transfer.
1542 */
1543 if (intmask & SDHCI_INT_DMA_END)
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001544 sdhci_writel(host, sdhci_readl(host, SDHCI_DMA_ADDRESS),
1545 SDHCI_DMA_ADDRESS);
Pierre Ossman6ba736a2007-05-13 22:39:23 +02001546
Pierre Ossmane538fbe2007-08-12 16:46:32 +02001547 if (intmask & SDHCI_INT_DATA_END) {
1548 if (host->cmd) {
1549 /*
1550 * Data managed to finish before the
1551 * command completed. Make sure we do
1552 * things in the proper order.
1553 */
1554 host->data_early = 1;
1555 } else {
1556 sdhci_finish_data(host);
1557 }
1558 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001559 }
1560}
1561
David Howells7d12e782006-10-05 14:55:46 +01001562static irqreturn_t sdhci_irq(int irq, void *dev_id)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001563{
1564 irqreturn_t result;
1565 struct sdhci_host* host = dev_id;
1566 u32 intmask;
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001567 int cardint = 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001568
1569 spin_lock(&host->lock);
1570
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001571 intmask = sdhci_readl(host, SDHCI_INT_STATUS);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001572
Mark Lord62df67a52007-03-06 13:30:13 +01001573 if (!intmask || intmask == 0xffffffff) {
Pierre Ossmand129bce2006-03-24 03:18:17 -08001574 result = IRQ_NONE;
1575 goto out;
1576 }
1577
Pierre Ossmanb69c9052008-03-08 23:44:25 +01001578 DBG("*** %s got interrupt: 0x%08x\n",
1579 mmc_hostname(host->mmc), intmask);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001580
Pierre Ossman3192a282006-06-30 02:22:26 -07001581 if (intmask & (SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE)) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001582 sdhci_writel(host, intmask & (SDHCI_INT_CARD_INSERT |
1583 SDHCI_INT_CARD_REMOVE), SDHCI_INT_STATUS);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001584 tasklet_schedule(&host->card_tasklet);
Pierre Ossman3192a282006-06-30 02:22:26 -07001585 }
1586
1587 intmask &= ~(SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001588
1589 if (intmask & SDHCI_INT_CMD_MASK) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001590 sdhci_writel(host, intmask & SDHCI_INT_CMD_MASK,
1591 SDHCI_INT_STATUS);
Pierre Ossman3192a282006-06-30 02:22:26 -07001592 sdhci_cmd_irq(host, intmask & SDHCI_INT_CMD_MASK);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001593 }
1594
1595 if (intmask & SDHCI_INT_DATA_MASK) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001596 sdhci_writel(host, intmask & SDHCI_INT_DATA_MASK,
1597 SDHCI_INT_STATUS);
Pierre Ossman3192a282006-06-30 02:22:26 -07001598 sdhci_data_irq(host, intmask & SDHCI_INT_DATA_MASK);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001599 }
1600
1601 intmask &= ~(SDHCI_INT_CMD_MASK | SDHCI_INT_DATA_MASK);
1602
Pierre Ossman964f9ce2007-07-20 18:20:36 +02001603 intmask &= ~SDHCI_INT_ERROR;
1604
Pierre Ossmand129bce2006-03-24 03:18:17 -08001605 if (intmask & SDHCI_INT_BUS_POWER) {
Pierre Ossman3192a282006-06-30 02:22:26 -07001606 printk(KERN_ERR "%s: Card is consuming too much power!\n",
Pierre Ossmand129bce2006-03-24 03:18:17 -08001607 mmc_hostname(host->mmc));
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001608 sdhci_writel(host, SDHCI_INT_BUS_POWER, SDHCI_INT_STATUS);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001609 }
1610
Rolf Eike Beer9d26a5d2007-06-26 13:31:16 +02001611 intmask &= ~SDHCI_INT_BUS_POWER;
Pierre Ossman3192a282006-06-30 02:22:26 -07001612
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001613 if (intmask & SDHCI_INT_CARD_INT)
1614 cardint = 1;
1615
1616 intmask &= ~SDHCI_INT_CARD_INT;
1617
Pierre Ossman3192a282006-06-30 02:22:26 -07001618 if (intmask) {
Pierre Ossmanacf1da42007-02-09 08:29:19 +01001619 printk(KERN_ERR "%s: Unexpected interrupt 0x%08x.\n",
Pierre Ossman3192a282006-06-30 02:22:26 -07001620 mmc_hostname(host->mmc), intmask);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001621 sdhci_dumpregs(host);
1622
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001623 sdhci_writel(host, intmask, SDHCI_INT_STATUS);
Pierre Ossman3192a282006-06-30 02:22:26 -07001624 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001625
1626 result = IRQ_HANDLED;
1627
Pierre Ossman5f25a662006-10-04 02:15:39 -07001628 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -08001629out:
1630 spin_unlock(&host->lock);
1631
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001632 /*
1633 * We have to delay this as it calls back into the driver.
1634 */
1635 if (cardint)
1636 mmc_signal_sdio_irq(host->mmc);
1637
Pierre Ossmand129bce2006-03-24 03:18:17 -08001638 return result;
1639}
1640
1641/*****************************************************************************\
1642 * *
1643 * Suspend/resume *
1644 * *
1645\*****************************************************************************/
1646
1647#ifdef CONFIG_PM
1648
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001649int sdhci_suspend_host(struct sdhci_host *host, pm_message_t state)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001650{
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001651 int ret;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001652
Anton Vorontsov7260cf52009-03-17 00:13:48 +03001653 sdhci_disable_card_detection(host);
1654
Matt Fleming1a13f8f2010-05-26 14:42:08 -07001655 ret = mmc_suspend_host(host->mmc);
Pierre Ossmandf1c4b72007-01-30 07:55:15 +01001656 if (ret)
1657 return ret;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001658
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001659 free_irq(host->irq, host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001660
Marek Szyprowski9bea3c82010-08-10 18:01:59 -07001661 if (host->vmmc)
1662 ret = regulator_disable(host->vmmc);
1663
1664 return ret;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001665}
1666
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001667EXPORT_SYMBOL_GPL(sdhci_suspend_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001668
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001669int sdhci_resume_host(struct sdhci_host *host)
1670{
1671 int ret;
1672
Marek Szyprowski9bea3c82010-08-10 18:01:59 -07001673 if (host->vmmc) {
1674 int ret = regulator_enable(host->vmmc);
1675 if (ret)
1676 return ret;
1677 }
1678
1679
Richard Röjforsa13abc72009-09-22 16:45:30 -07001680 if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001681 if (host->ops->enable_dma)
1682 host->ops->enable_dma(host);
1683 }
1684
1685 ret = request_irq(host->irq, sdhci_irq, IRQF_SHARED,
1686 mmc_hostname(host->mmc), host);
1687 if (ret)
1688 return ret;
1689
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08001690 sdhci_init(host, (host->mmc->pm_flags & MMC_PM_KEEP_POWER));
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001691 mmiowb();
1692
1693 ret = mmc_resume_host(host->mmc);
Anton Vorontsov7260cf52009-03-17 00:13:48 +03001694 sdhci_enable_card_detection(host);
1695
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08001696 return ret;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001697}
1698
1699EXPORT_SYMBOL_GPL(sdhci_resume_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001700
Daniel Drake5f619702010-11-04 22:20:39 +00001701void sdhci_enable_irq_wakeups(struct sdhci_host *host)
1702{
1703 u8 val;
1704 val = sdhci_readb(host, SDHCI_WAKE_UP_CONTROL);
1705 val |= SDHCI_WAKE_ON_INT;
1706 sdhci_writeb(host, val, SDHCI_WAKE_UP_CONTROL);
1707}
1708
1709EXPORT_SYMBOL_GPL(sdhci_enable_irq_wakeups);
1710
Pierre Ossmand129bce2006-03-24 03:18:17 -08001711#endif /* CONFIG_PM */
1712
1713/*****************************************************************************\
1714 * *
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001715 * Device allocation/registration *
Pierre Ossmand129bce2006-03-24 03:18:17 -08001716 * *
1717\*****************************************************************************/
1718
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001719struct sdhci_host *sdhci_alloc_host(struct device *dev,
1720 size_t priv_size)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001721{
Pierre Ossmand129bce2006-03-24 03:18:17 -08001722 struct mmc_host *mmc;
1723 struct sdhci_host *host;
1724
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001725 WARN_ON(dev == NULL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001726
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001727 mmc = mmc_alloc_host(sizeof(struct sdhci_host) + priv_size, dev);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001728 if (!mmc)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001729 return ERR_PTR(-ENOMEM);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001730
1731 host = mmc_priv(mmc);
1732 host->mmc = mmc;
1733
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001734 return host;
1735}
Pierre Ossman8a4da142006-10-04 02:15:40 -07001736
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001737EXPORT_SYMBOL_GPL(sdhci_alloc_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001738
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001739int sdhci_add_host(struct sdhci_host *host)
1740{
1741 struct mmc_host *mmc;
Takashi Iwai8f230f42010-12-08 10:04:30 +01001742 unsigned int caps, ocr_avail;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001743 int ret;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001744
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001745 WARN_ON(host == NULL);
1746 if (host == NULL)
1747 return -EINVAL;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001748
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001749 mmc = host->mmc;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001750
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001751 if (debug_quirks)
1752 host->quirks = debug_quirks;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001753
Pierre Ossmand96649e2006-06-30 02:22:30 -07001754 sdhci_reset(host, SDHCI_RESET_ALL);
1755
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001756 host->version = sdhci_readw(host, SDHCI_HOST_VERSION);
Pierre Ossman2134a922008-06-28 18:28:51 +02001757 host->version = (host->version & SDHCI_SPEC_VER_MASK)
1758 >> SDHCI_SPEC_VER_SHIFT;
Zhangfei Gao85105c52010-08-06 07:10:01 +08001759 if (host->version > SDHCI_SPEC_300) {
Pierre Ossman4a965502006-06-30 02:22:29 -07001760 printk(KERN_ERR "%s: Unknown controller version (%d). "
Pierre Ossmanb69c9052008-03-08 23:44:25 +01001761 "You may experience problems.\n", mmc_hostname(mmc),
Pierre Ossman2134a922008-06-28 18:28:51 +02001762 host->version);
Pierre Ossman4a965502006-06-30 02:22:29 -07001763 }
1764
Maxim Levitskyccc92c22010-08-10 18:01:42 -07001765 caps = (host->quirks & SDHCI_QUIRK_MISSING_CAPS) ? host->caps :
1766 sdhci_readl(host, SDHCI_CAPABILITIES);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001767
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001768 if (host->quirks & SDHCI_QUIRK_FORCE_DMA)
Richard Röjforsa13abc72009-09-22 16:45:30 -07001769 host->flags |= SDHCI_USE_SDMA;
1770 else if (!(caps & SDHCI_CAN_DO_SDMA))
1771 DBG("Controller doesn't have SDMA capability\n");
Pierre Ossman67435272006-06-30 02:22:31 -07001772 else
Richard Röjforsa13abc72009-09-22 16:45:30 -07001773 host->flags |= SDHCI_USE_SDMA;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001774
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001775 if ((host->quirks & SDHCI_QUIRK_BROKEN_DMA) &&
Richard Röjforsa13abc72009-09-22 16:45:30 -07001776 (host->flags & SDHCI_USE_SDMA)) {
Rolf Eike Beercee687c2007-11-02 15:22:30 +01001777 DBG("Disabling DMA as it is marked broken\n");
Richard Röjforsa13abc72009-09-22 16:45:30 -07001778 host->flags &= ~SDHCI_USE_SDMA;
Feng Tang7c168e32007-09-30 12:44:18 +02001779 }
1780
Richard Röjforsa13abc72009-09-22 16:45:30 -07001781 if ((host->version >= SDHCI_SPEC_200) && (caps & SDHCI_CAN_DO_ADMA2))
1782 host->flags |= SDHCI_USE_ADMA;
Pierre Ossman2134a922008-06-28 18:28:51 +02001783
1784 if ((host->quirks & SDHCI_QUIRK_BROKEN_ADMA) &&
1785 (host->flags & SDHCI_USE_ADMA)) {
1786 DBG("Disabling ADMA as it is marked broken\n");
1787 host->flags &= ~SDHCI_USE_ADMA;
1788 }
1789
Richard Röjforsa13abc72009-09-22 16:45:30 -07001790 if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001791 if (host->ops->enable_dma) {
1792 if (host->ops->enable_dma(host)) {
1793 printk(KERN_WARNING "%s: No suitable DMA "
1794 "available. Falling back to PIO.\n",
1795 mmc_hostname(mmc));
Richard Röjforsa13abc72009-09-22 16:45:30 -07001796 host->flags &=
1797 ~(SDHCI_USE_SDMA | SDHCI_USE_ADMA);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001798 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001799 }
1800 }
1801
Pierre Ossman2134a922008-06-28 18:28:51 +02001802 if (host->flags & SDHCI_USE_ADMA) {
1803 /*
1804 * We need to allocate descriptors for all sg entries
1805 * (128) and potentially one alignment transfer for
1806 * each of those entries.
1807 */
1808 host->adma_desc = kmalloc((128 * 2 + 1) * 4, GFP_KERNEL);
1809 host->align_buffer = kmalloc(128 * 4, GFP_KERNEL);
1810 if (!host->adma_desc || !host->align_buffer) {
1811 kfree(host->adma_desc);
1812 kfree(host->align_buffer);
1813 printk(KERN_WARNING "%s: Unable to allocate ADMA "
1814 "buffers. Falling back to standard DMA.\n",
1815 mmc_hostname(mmc));
1816 host->flags &= ~SDHCI_USE_ADMA;
1817 }
1818 }
1819
Pierre Ossman76591502008-07-21 00:32:11 +02001820 /*
1821 * If we use DMA, then it's up to the caller to set the DMA
1822 * mask, but PIO does not need the hw shim so we set a new
1823 * mask here in that case.
1824 */
Richard Röjforsa13abc72009-09-22 16:45:30 -07001825 if (!(host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA))) {
Pierre Ossman76591502008-07-21 00:32:11 +02001826 host->dma_mask = DMA_BIT_MASK(64);
1827 mmc_dev(host->mmc)->dma_mask = &host->dma_mask;
1828 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001829
Zhangfei Gaoc4687d52010-08-20 14:02:36 -04001830 if (host->version >= SDHCI_SPEC_300)
1831 host->max_clk = (caps & SDHCI_CLOCK_V3_BASE_MASK)
1832 >> SDHCI_CLOCK_BASE_SHIFT;
1833 else
1834 host->max_clk = (caps & SDHCI_CLOCK_BASE_MASK)
1835 >> SDHCI_CLOCK_BASE_SHIFT;
1836
Pierre Ossmand129bce2006-03-24 03:18:17 -08001837 host->max_clk *= 1000000;
Anton Vorontsovf27f47e2010-05-26 14:41:53 -07001838 if (host->max_clk == 0 || host->quirks &
1839 SDHCI_QUIRK_CAP_CLOCK_BASE_BROKEN) {
Ben Dooks4240ff02009-03-17 00:13:57 +03001840 if (!host->ops->get_max_clock) {
1841 printk(KERN_ERR
1842 "%s: Hardware doesn't specify base clock "
1843 "frequency.\n", mmc_hostname(mmc));
1844 return -ENODEV;
1845 }
1846 host->max_clk = host->ops->get_max_clock(host);
1847 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001848
Pierre Ossman1c8cde92006-06-30 02:22:25 -07001849 host->timeout_clk =
1850 (caps & SDHCI_TIMEOUT_CLK_MASK) >> SDHCI_TIMEOUT_CLK_SHIFT;
1851 if (host->timeout_clk == 0) {
Anton Vorontsov81b39802009-09-22 16:45:13 -07001852 if (host->ops->get_timeout_clock) {
1853 host->timeout_clk = host->ops->get_timeout_clock(host);
1854 } else if (!(host->quirks &
1855 SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK)) {
Ben Dooks4240ff02009-03-17 00:13:57 +03001856 printk(KERN_ERR
1857 "%s: Hardware doesn't specify timeout clock "
1858 "frequency.\n", mmc_hostname(mmc));
1859 return -ENODEV;
1860 }
Pierre Ossman1c8cde92006-06-30 02:22:25 -07001861 }
1862 if (caps & SDHCI_TIMEOUT_CLK_UNIT)
1863 host->timeout_clk *= 1000;
1864
Pierre Ossmand129bce2006-03-24 03:18:17 -08001865 /*
1866 * Set host parameters.
1867 */
1868 mmc->ops = &sdhci_ops;
Marek Szyprowskice5f0362010-08-10 18:01:56 -07001869 if (host->ops->get_min_clock)
Anton Vorontsova9e58f22009-07-29 15:04:16 -07001870 mmc->f_min = host->ops->get_min_clock(host);
Zhangfei Gao03975262010-09-20 15:15:18 -04001871 else if (host->version >= SDHCI_SPEC_300)
1872 mmc->f_min = host->max_clk / SDHCI_MAX_DIV_SPEC_300;
Anton Vorontsova9e58f22009-07-29 15:04:16 -07001873 else
Zhangfei Gao03975262010-09-20 15:15:18 -04001874 mmc->f_min = host->max_clk / SDHCI_MAX_DIV_SPEC_200;
Philip Rakity15ec4462010-11-19 16:48:39 -05001875
Pierre Ossmand129bce2006-03-24 03:18:17 -08001876 mmc->f_max = host->max_clk;
Kyungmin Parkc1f59772010-08-10 18:01:44 -07001877 mmc->caps |= MMC_CAP_SDIO_IRQ;
Anton Vorontsov5fe23c72009-06-18 00:14:08 +04001878
Philip Rakity15ec4462010-11-19 16:48:39 -05001879 /*
1880 * A controller may support 8-bit width, but the board itself
1881 * might not have the pins brought out. Boards that support
1882 * 8-bit width must set "mmc->caps |= MMC_CAP_8_BIT_DATA;" in
1883 * their platform code before calling sdhci_add_host(), and we
1884 * won't assume 8-bit width for hosts without that CAP.
1885 */
Anton Vorontsov5fe23c72009-06-18 00:14:08 +04001886 if (!(host->quirks & SDHCI_QUIRK_FORCE_1_BIT_DATA))
Philip Rakity15ec4462010-11-19 16:48:39 -05001887 mmc->caps |= MMC_CAP_4_BIT_DATA;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001888
Pierre Ossman86a6a872009-02-02 21:13:49 +01001889 if (caps & SDHCI_CAN_DO_HISPD)
Zhangfei Gaoa29e7e12010-08-16 21:15:32 -04001890 mmc->caps |= MMC_CAP_SD_HIGHSPEED | MMC_CAP_MMC_HIGHSPEED;
Pierre Ossmancd9277c2007-02-18 12:07:47 +01001891
Jaehoon Chung176d1ed2010-09-27 09:42:20 +01001892 if ((host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION) &&
1893 mmc_card_is_removable(mmc))
Anton Vorontsov68d1fb72009-03-17 00:13:52 +03001894 mmc->caps |= MMC_CAP_NEEDS_POLL;
1895
Takashi Iwai8f230f42010-12-08 10:04:30 +01001896 ocr_avail = 0;
Pierre Ossman146ad662006-06-30 02:22:23 -07001897 if (caps & SDHCI_CAN_VDD_330)
Takashi Iwai8f230f42010-12-08 10:04:30 +01001898 ocr_avail |= MMC_VDD_32_33 | MMC_VDD_33_34;
Pierre Ossmanc70840e2007-02-02 22:41:41 +01001899 if (caps & SDHCI_CAN_VDD_300)
Takashi Iwai8f230f42010-12-08 10:04:30 +01001900 ocr_avail |= MMC_VDD_29_30 | MMC_VDD_30_31;
Pierre Ossmanc70840e2007-02-02 22:41:41 +01001901 if (caps & SDHCI_CAN_VDD_180)
Takashi Iwai8f230f42010-12-08 10:04:30 +01001902 ocr_avail |= MMC_VDD_165_195;
1903
1904 mmc->ocr_avail = ocr_avail;
1905 mmc->ocr_avail_sdio = ocr_avail;
1906 if (host->ocr_avail_sdio)
1907 mmc->ocr_avail_sdio &= host->ocr_avail_sdio;
1908 mmc->ocr_avail_sd = ocr_avail;
1909 if (host->ocr_avail_sd)
1910 mmc->ocr_avail_sd &= host->ocr_avail_sd;
1911 else /* normal SD controllers don't support 1.8V */
1912 mmc->ocr_avail_sd &= ~MMC_VDD_165_195;
1913 mmc->ocr_avail_mmc = ocr_avail;
1914 if (host->ocr_avail_mmc)
1915 mmc->ocr_avail_mmc &= host->ocr_avail_mmc;
Pierre Ossman146ad662006-06-30 02:22:23 -07001916
1917 if (mmc->ocr_avail == 0) {
1918 printk(KERN_ERR "%s: Hardware doesn't report any "
Pierre Ossmanb69c9052008-03-08 23:44:25 +01001919 "support voltages.\n", mmc_hostname(mmc));
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001920 return -ENODEV;
Pierre Ossman146ad662006-06-30 02:22:23 -07001921 }
1922
Pierre Ossmand129bce2006-03-24 03:18:17 -08001923 spin_lock_init(&host->lock);
1924
1925 /*
Pierre Ossman2134a922008-06-28 18:28:51 +02001926 * Maximum number of segments. Depends on if the hardware
1927 * can do scatter/gather or not.
Pierre Ossmand129bce2006-03-24 03:18:17 -08001928 */
Pierre Ossman2134a922008-06-28 18:28:51 +02001929 if (host->flags & SDHCI_USE_ADMA)
Martin K. Petersena36274e2010-09-10 01:33:59 -04001930 mmc->max_segs = 128;
Richard Röjforsa13abc72009-09-22 16:45:30 -07001931 else if (host->flags & SDHCI_USE_SDMA)
Martin K. Petersena36274e2010-09-10 01:33:59 -04001932 mmc->max_segs = 1;
Pierre Ossman2134a922008-06-28 18:28:51 +02001933 else /* PIO */
Martin K. Petersena36274e2010-09-10 01:33:59 -04001934 mmc->max_segs = 128;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001935
1936 /*
Pierre Ossmanbab76962006-07-02 16:51:35 +01001937 * Maximum number of sectors in one transfer. Limited by DMA boundary
Pierre Ossman55db8902006-11-21 17:55:45 +01001938 * size (512KiB).
Pierre Ossmand129bce2006-03-24 03:18:17 -08001939 */
Pierre Ossman55db8902006-11-21 17:55:45 +01001940 mmc->max_req_size = 524288;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001941
1942 /*
1943 * Maximum segment size. Could be one segment with the maximum number
Pierre Ossman2134a922008-06-28 18:28:51 +02001944 * of bytes. When doing hardware scatter/gather, each entry cannot
1945 * be larger than 64 KiB though.
Pierre Ossmand129bce2006-03-24 03:18:17 -08001946 */
Pierre Ossman2134a922008-06-28 18:28:51 +02001947 if (host->flags & SDHCI_USE_ADMA)
1948 mmc->max_seg_size = 65536;
1949 else
1950 mmc->max_seg_size = mmc->max_req_size;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001951
1952 /*
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +01001953 * Maximum block size. This varies from controller to controller and
1954 * is specified in the capabilities register.
1955 */
Anton Vorontsov0633f652009-03-17 00:14:03 +03001956 if (host->quirks & SDHCI_QUIRK_FORCE_BLK_SZ_2048) {
1957 mmc->max_blk_size = 2;
1958 } else {
1959 mmc->max_blk_size = (caps & SDHCI_MAX_BLOCK_MASK) >>
1960 SDHCI_MAX_BLOCK_SHIFT;
1961 if (mmc->max_blk_size >= 3) {
1962 printk(KERN_WARNING "%s: Invalid maximum block size, "
1963 "assuming 512 bytes\n", mmc_hostname(mmc));
1964 mmc->max_blk_size = 0;
1965 }
1966 }
1967
1968 mmc->max_blk_size = 512 << mmc->max_blk_size;
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +01001969
1970 /*
Pierre Ossman55db8902006-11-21 17:55:45 +01001971 * Maximum block count.
1972 */
Ben Dooks1388eef2009-06-14 12:40:53 +01001973 mmc->max_blk_count = (host->quirks & SDHCI_QUIRK_NO_MULTIBLOCK) ? 1 : 65535;
Pierre Ossman55db8902006-11-21 17:55:45 +01001974
1975 /*
Pierre Ossmand129bce2006-03-24 03:18:17 -08001976 * Init tasklets.
1977 */
1978 tasklet_init(&host->card_tasklet,
1979 sdhci_tasklet_card, (unsigned long)host);
1980 tasklet_init(&host->finish_tasklet,
1981 sdhci_tasklet_finish, (unsigned long)host);
1982
Al Viroe4cad1b2006-10-10 22:47:07 +01001983 setup_timer(&host->timer, sdhci_timeout_timer, (unsigned long)host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001984
Thomas Gleixnerdace1452006-07-01 19:29:38 -07001985 ret = request_irq(host->irq, sdhci_irq, IRQF_SHARED,
Pierre Ossmanb69c9052008-03-08 23:44:25 +01001986 mmc_hostname(mmc), host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001987 if (ret)
Pierre Ossman8ef1a142006-06-30 02:22:21 -07001988 goto untasklet;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001989
Marek Szyprowski9bea3c82010-08-10 18:01:59 -07001990 host->vmmc = regulator_get(mmc_dev(mmc), "vmmc");
1991 if (IS_ERR(host->vmmc)) {
1992 printk(KERN_INFO "%s: no vmmc regulator found\n", mmc_hostname(mmc));
1993 host->vmmc = NULL;
1994 } else {
1995 regulator_enable(host->vmmc);
1996 }
1997
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08001998 sdhci_init(host, 0);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001999
2000#ifdef CONFIG_MMC_DEBUG
2001 sdhci_dumpregs(host);
2002#endif
2003
Pierre Ossmanf9134312008-12-21 17:01:48 +01002004#ifdef SDHCI_USE_LEDS_CLASS
Helmut Schaa5dbace02009-02-14 16:22:39 +01002005 snprintf(host->led_name, sizeof(host->led_name),
2006 "%s::", mmc_hostname(mmc));
2007 host->led.name = host->led_name;
Pierre Ossman2f730fe2008-03-17 10:29:38 +01002008 host->led.brightness = LED_OFF;
2009 host->led.default_trigger = mmc_hostname(mmc);
2010 host->led.brightness_set = sdhci_led_control;
2011
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002012 ret = led_classdev_register(mmc_dev(mmc), &host->led);
Pierre Ossman2f730fe2008-03-17 10:29:38 +01002013 if (ret)
2014 goto reset;
2015#endif
2016
Pierre Ossman5f25a662006-10-04 02:15:39 -07002017 mmiowb();
2018
Pierre Ossmand129bce2006-03-24 03:18:17 -08002019 mmc_add_host(mmc);
2020
Richard Röjforsa13abc72009-09-22 16:45:30 -07002021 printk(KERN_INFO "%s: SDHCI controller on %s [%s] using %s\n",
Kay Sieversd1b26862008-11-08 21:37:46 +01002022 mmc_hostname(mmc), host->hw_name, dev_name(mmc_dev(mmc)),
Richard Röjforsa13abc72009-09-22 16:45:30 -07002023 (host->flags & SDHCI_USE_ADMA) ? "ADMA" :
2024 (host->flags & SDHCI_USE_SDMA) ? "DMA" : "PIO");
Pierre Ossmand129bce2006-03-24 03:18:17 -08002025
Anton Vorontsov7260cf52009-03-17 00:13:48 +03002026 sdhci_enable_card_detection(host);
2027
Pierre Ossmand129bce2006-03-24 03:18:17 -08002028 return 0;
2029
Pierre Ossmanf9134312008-12-21 17:01:48 +01002030#ifdef SDHCI_USE_LEDS_CLASS
Pierre Ossman2f730fe2008-03-17 10:29:38 +01002031reset:
2032 sdhci_reset(host, SDHCI_RESET_ALL);
2033 free_irq(host->irq, host);
2034#endif
Pierre Ossman8ef1a142006-06-30 02:22:21 -07002035untasklet:
Pierre Ossmand129bce2006-03-24 03:18:17 -08002036 tasklet_kill(&host->card_tasklet);
2037 tasklet_kill(&host->finish_tasklet);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002038
2039 return ret;
2040}
2041
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002042EXPORT_SYMBOL_GPL(sdhci_add_host);
2043
Pierre Ossman1e728592008-04-16 19:13:13 +02002044void sdhci_remove_host(struct sdhci_host *host, int dead)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002045{
Pierre Ossman1e728592008-04-16 19:13:13 +02002046 unsigned long flags;
2047
2048 if (dead) {
2049 spin_lock_irqsave(&host->lock, flags);
2050
2051 host->flags |= SDHCI_DEVICE_DEAD;
2052
2053 if (host->mrq) {
2054 printk(KERN_ERR "%s: Controller removed during "
2055 " transfer!\n", mmc_hostname(host->mmc));
2056
2057 host->mrq->cmd->error = -ENOMEDIUM;
2058 tasklet_schedule(&host->finish_tasklet);
2059 }
2060
2061 spin_unlock_irqrestore(&host->lock, flags);
2062 }
2063
Anton Vorontsov7260cf52009-03-17 00:13:48 +03002064 sdhci_disable_card_detection(host);
2065
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002066 mmc_remove_host(host->mmc);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002067
Pierre Ossmanf9134312008-12-21 17:01:48 +01002068#ifdef SDHCI_USE_LEDS_CLASS
Pierre Ossman2f730fe2008-03-17 10:29:38 +01002069 led_classdev_unregister(&host->led);
2070#endif
2071
Pierre Ossman1e728592008-04-16 19:13:13 +02002072 if (!dead)
2073 sdhci_reset(host, SDHCI_RESET_ALL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002074
2075 free_irq(host->irq, host);
2076
2077 del_timer_sync(&host->timer);
2078
2079 tasklet_kill(&host->card_tasklet);
2080 tasklet_kill(&host->finish_tasklet);
Pierre Ossman2134a922008-06-28 18:28:51 +02002081
Marek Szyprowski9bea3c82010-08-10 18:01:59 -07002082 if (host->vmmc) {
2083 regulator_disable(host->vmmc);
2084 regulator_put(host->vmmc);
2085 }
2086
Pierre Ossman2134a922008-06-28 18:28:51 +02002087 kfree(host->adma_desc);
2088 kfree(host->align_buffer);
2089
2090 host->adma_desc = NULL;
2091 host->align_buffer = NULL;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002092}
2093
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002094EXPORT_SYMBOL_GPL(sdhci_remove_host);
2095
2096void sdhci_free_host(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002097{
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002098 mmc_free_host(host->mmc);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002099}
2100
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002101EXPORT_SYMBOL_GPL(sdhci_free_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002102
2103/*****************************************************************************\
2104 * *
2105 * Driver init/exit *
2106 * *
2107\*****************************************************************************/
2108
2109static int __init sdhci_drv_init(void)
2110{
2111 printk(KERN_INFO DRIVER_NAME
Pierre Ossman52fbf9c2007-02-09 08:23:41 +01002112 ": Secure Digital Host Controller Interface driver\n");
Pierre Ossmand129bce2006-03-24 03:18:17 -08002113 printk(KERN_INFO DRIVER_NAME ": Copyright(c) Pierre Ossman\n");
2114
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002115 return 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002116}
2117
2118static void __exit sdhci_drv_exit(void)
2119{
Pierre Ossmand129bce2006-03-24 03:18:17 -08002120}
2121
2122module_init(sdhci_drv_init);
2123module_exit(sdhci_drv_exit);
2124
Pierre Ossmandf673b22006-06-30 02:22:31 -07002125module_param(debug_quirks, uint, 0444);
Pierre Ossman67435272006-06-30 02:22:31 -07002126
Pierre Ossman32710e82009-04-08 20:14:54 +02002127MODULE_AUTHOR("Pierre Ossman <pierre@ossman.eu>");
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002128MODULE_DESCRIPTION("Secure Digital Host Controller Interface core driver");
Pierre Ossmand129bce2006-03-24 03:18:17 -08002129MODULE_LICENSE("GPL");
Pierre Ossman67435272006-06-30 02:22:31 -07002130
Pierre Ossmandf673b22006-06-30 02:22:31 -07002131MODULE_PARM_DESC(debug_quirks, "Force certain quirks.");