blob: cbd433712756b1704e7cba3d68228e96a231bad1 [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>
Paul Gortmaker88b47672011-07-03 15:15:51 -040019#include <linux/module.h>
Pierre Ossmand129bce2006-03-24 03:18:17 -080020#include <linux/dma-mapping.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/slab.h>
Ralf Baechle11763602007-10-23 20:42:11 +020022#include <linux/scatterlist.h>
Marek Szyprowski9bea3c82010-08-10 18:01:59 -070023#include <linux/regulator/consumer.h>
Adrian Hunter66fd8ad2011-10-03 15:33:34 +030024#include <linux/pm_runtime.h>
Pierre Ossmand129bce2006-03-24 03:18:17 -080025
Pierre Ossman2f730fe2008-03-17 10:29:38 +010026#include <linux/leds.h>
27
Aries Lee22113ef2010-12-15 08:14:24 +010028#include <linux/mmc/mmc.h>
Pierre Ossmand129bce2006-03-24 03:18:17 -080029#include <linux/mmc/host.h>
Aaron Lu473b095a2012-07-03 17:27:49 +080030#include <linux/mmc/card.h>
Guennadi Liakhovetskibec9d4e2012-09-17 16:45:10 +080031#include <linux/mmc/slot-gpio.h>
Pierre Ossmand129bce2006-03-24 03:18:17 -080032
Pierre Ossmand129bce2006-03-24 03:18:17 -080033#include "sdhci.h"
34
35#define DRIVER_NAME "sdhci"
Pierre Ossmand129bce2006-03-24 03:18:17 -080036
Pierre Ossmand129bce2006-03-24 03:18:17 -080037#define DBG(f, x...) \
Russell Kingc6563172006-03-29 09:30:20 +010038 pr_debug(DRIVER_NAME " [%s()]: " f, __func__,## x)
Pierre Ossmand129bce2006-03-24 03:18:17 -080039
Pierre Ossmanf9134312008-12-21 17:01:48 +010040#if defined(CONFIG_LEDS_CLASS) || (defined(CONFIG_LEDS_CLASS_MODULE) && \
41 defined(CONFIG_MMC_SDHCI_MODULE))
42#define SDHCI_USE_LEDS_CLASS
43#endif
44
Arindam Nathb513ea22011-05-05 12:19:04 +053045#define MAX_TUNING_LOOP 40
46
Russell Kingd1e49f72014-04-25 12:58:34 +010047#define ADMA_SIZE ((128 * 2 + 1) * 4)
48
Pierre Ossmandf673b22006-06-30 02:22:31 -070049static unsigned int debug_quirks = 0;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +030050static unsigned int debug_quirks2;
Pierre Ossman67435272006-06-30 02:22:31 -070051
Pierre Ossmand129bce2006-03-24 03:18:17 -080052static void sdhci_finish_data(struct sdhci_host *);
53
Pierre Ossmand129bce2006-03-24 03:18:17 -080054static void sdhci_finish_command(struct sdhci_host *);
Girish K S069c9f12012-01-06 09:56:39 +053055static int sdhci_execute_tuning(struct mmc_host *mmc, u32 opcode);
Arindam Nathcf2b5ee2011-05-05 12:19:07 +053056static void sdhci_tuning_timer(unsigned long data);
Kevin Liu52983382013-01-31 11:31:37 +080057static void sdhci_enable_preset_value(struct sdhci_host *host, bool enable);
Pierre Ossmand129bce2006-03-24 03:18:17 -080058
Adrian Hunter66fd8ad2011-10-03 15:33:34 +030059#ifdef CONFIG_PM_RUNTIME
60static int sdhci_runtime_pm_get(struct sdhci_host *host);
61static int sdhci_runtime_pm_put(struct sdhci_host *host);
Adrian Hunterf0710a52013-05-06 12:17:32 +030062static void sdhci_runtime_pm_bus_on(struct sdhci_host *host);
63static void sdhci_runtime_pm_bus_off(struct sdhci_host *host);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +030064#else
65static inline int sdhci_runtime_pm_get(struct sdhci_host *host)
66{
67 return 0;
68}
69static inline int sdhci_runtime_pm_put(struct sdhci_host *host)
70{
71 return 0;
72}
Adrian Hunterf0710a52013-05-06 12:17:32 +030073static void sdhci_runtime_pm_bus_on(struct sdhci_host *host)
74{
75}
76static void sdhci_runtime_pm_bus_off(struct sdhci_host *host)
77{
78}
Adrian Hunter66fd8ad2011-10-03 15:33:34 +030079#endif
80
Pierre Ossmand129bce2006-03-24 03:18:17 -080081static void sdhci_dumpregs(struct sdhci_host *host)
82{
Girish K Sa3c76eb2011-10-11 11:44:09 +053083 pr_debug(DRIVER_NAME ": =========== REGISTER DUMP (%s)===========\n",
Philip Rakity412ab652010-09-22 15:25:13 -070084 mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -080085
Girish K Sa3c76eb2011-10-11 11:44:09 +053086 pr_debug(DRIVER_NAME ": Sys addr: 0x%08x | Version: 0x%08x\n",
Anton Vorontsov4e4141a2009-03-17 00:13:46 +030087 sdhci_readl(host, SDHCI_DMA_ADDRESS),
88 sdhci_readw(host, SDHCI_HOST_VERSION));
Girish K Sa3c76eb2011-10-11 11:44:09 +053089 pr_debug(DRIVER_NAME ": Blk size: 0x%08x | Blk cnt: 0x%08x\n",
Anton Vorontsov4e4141a2009-03-17 00:13:46 +030090 sdhci_readw(host, SDHCI_BLOCK_SIZE),
91 sdhci_readw(host, SDHCI_BLOCK_COUNT));
Girish K Sa3c76eb2011-10-11 11:44:09 +053092 pr_debug(DRIVER_NAME ": Argument: 0x%08x | Trn mode: 0x%08x\n",
Anton Vorontsov4e4141a2009-03-17 00:13:46 +030093 sdhci_readl(host, SDHCI_ARGUMENT),
94 sdhci_readw(host, SDHCI_TRANSFER_MODE));
Girish K Sa3c76eb2011-10-11 11:44:09 +053095 pr_debug(DRIVER_NAME ": Present: 0x%08x | Host ctl: 0x%08x\n",
Anton Vorontsov4e4141a2009-03-17 00:13:46 +030096 sdhci_readl(host, SDHCI_PRESENT_STATE),
97 sdhci_readb(host, SDHCI_HOST_CONTROL));
Girish K Sa3c76eb2011-10-11 11:44:09 +053098 pr_debug(DRIVER_NAME ": Power: 0x%08x | Blk gap: 0x%08x\n",
Anton Vorontsov4e4141a2009-03-17 00:13:46 +030099 sdhci_readb(host, SDHCI_POWER_CONTROL),
100 sdhci_readb(host, SDHCI_BLOCK_GAP_CONTROL));
Girish K Sa3c76eb2011-10-11 11:44:09 +0530101 pr_debug(DRIVER_NAME ": Wake-up: 0x%08x | Clock: 0x%08x\n",
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300102 sdhci_readb(host, SDHCI_WAKE_UP_CONTROL),
103 sdhci_readw(host, SDHCI_CLOCK_CONTROL));
Girish K Sa3c76eb2011-10-11 11:44:09 +0530104 pr_debug(DRIVER_NAME ": Timeout: 0x%08x | Int stat: 0x%08x\n",
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300105 sdhci_readb(host, SDHCI_TIMEOUT_CONTROL),
106 sdhci_readl(host, SDHCI_INT_STATUS));
Girish K Sa3c76eb2011-10-11 11:44:09 +0530107 pr_debug(DRIVER_NAME ": Int enab: 0x%08x | Sig enab: 0x%08x\n",
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300108 sdhci_readl(host, SDHCI_INT_ENABLE),
109 sdhci_readl(host, SDHCI_SIGNAL_ENABLE));
Girish K Sa3c76eb2011-10-11 11:44:09 +0530110 pr_debug(DRIVER_NAME ": AC12 err: 0x%08x | Slot int: 0x%08x\n",
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300111 sdhci_readw(host, SDHCI_ACMD12_ERR),
112 sdhci_readw(host, SDHCI_SLOT_INT_STATUS));
Girish K Sa3c76eb2011-10-11 11:44:09 +0530113 pr_debug(DRIVER_NAME ": Caps: 0x%08x | Caps_1: 0x%08x\n",
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300114 sdhci_readl(host, SDHCI_CAPABILITIES),
Philip Rakitye8120ad2010-11-30 00:55:23 -0500115 sdhci_readl(host, SDHCI_CAPABILITIES_1));
Girish K Sa3c76eb2011-10-11 11:44:09 +0530116 pr_debug(DRIVER_NAME ": Cmd: 0x%08x | Max curr: 0x%08x\n",
Philip Rakitye8120ad2010-11-30 00:55:23 -0500117 sdhci_readw(host, SDHCI_COMMAND),
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300118 sdhci_readl(host, SDHCI_MAX_CURRENT));
Girish K Sa3c76eb2011-10-11 11:44:09 +0530119 pr_debug(DRIVER_NAME ": Host ctl2: 0x%08x\n",
Arindam Nathf2119df2011-05-05 12:18:57 +0530120 sdhci_readw(host, SDHCI_HOST_CONTROL2));
Pierre Ossmand129bce2006-03-24 03:18:17 -0800121
Ben Dooksbe3f4ae2009-06-08 23:33:52 +0100122 if (host->flags & SDHCI_USE_ADMA)
Girish K Sa3c76eb2011-10-11 11:44:09 +0530123 pr_debug(DRIVER_NAME ": ADMA Err: 0x%08x | ADMA Ptr: 0x%08x\n",
Ben Dooksbe3f4ae2009-06-08 23:33:52 +0100124 readl(host->ioaddr + SDHCI_ADMA_ERROR),
125 readl(host->ioaddr + SDHCI_ADMA_ADDRESS));
126
Girish K Sa3c76eb2011-10-11 11:44:09 +0530127 pr_debug(DRIVER_NAME ": ===========================================\n");
Pierre Ossmand129bce2006-03-24 03:18:17 -0800128}
129
130/*****************************************************************************\
131 * *
132 * Low level functions *
133 * *
134\*****************************************************************************/
135
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300136static void sdhci_set_card_detection(struct sdhci_host *host, bool enable)
137{
Russell King5b4f1f62014-04-25 12:57:02 +0100138 u32 present;
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300139
Adrian Hunterc79396c2011-12-27 15:48:42 +0200140 if ((host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION) ||
Daniel Drake87b87a32012-04-10 00:14:20 +0100141 (host->mmc->caps & MMC_CAP_NONREMOVABLE))
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300142 return;
143
Russell King5b4f1f62014-04-25 12:57:02 +0100144 if (enable) {
145 present = sdhci_readl(host, SDHCI_PRESENT_STATE) &
146 SDHCI_CARD_PRESENT;
Shawn Guod25928d2011-06-21 22:41:48 +0800147
Russell King5b4f1f62014-04-25 12:57:02 +0100148 host->ier |= present ? SDHCI_INT_CARD_REMOVE :
149 SDHCI_INT_CARD_INSERT;
150 } else {
151 host->ier &= ~(SDHCI_INT_CARD_REMOVE | SDHCI_INT_CARD_INSERT);
152 }
Russell Kingb537f942014-04-25 12:56:01 +0100153
154 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
155 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300156}
157
158static void sdhci_enable_card_detection(struct sdhci_host *host)
159{
160 sdhci_set_card_detection(host, true);
161}
162
163static void sdhci_disable_card_detection(struct sdhci_host *host)
164{
165 sdhci_set_card_detection(host, false);
166}
167
Russell King03231f92014-04-25 12:57:12 +0100168void sdhci_reset(struct sdhci_host *host, u8 mask)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800169{
Pierre Ossmane16514d82006-06-30 02:22:24 -0700170 unsigned long timeout;
Philip Rakity393c1a32011-01-21 11:26:40 -0800171
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300172 sdhci_writeb(host, mask, SDHCI_SOFTWARE_RESET);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800173
Adrian Hunterf0710a52013-05-06 12:17:32 +0300174 if (mask & SDHCI_RESET_ALL) {
Pierre Ossmand129bce2006-03-24 03:18:17 -0800175 host->clock = 0;
Adrian Hunterf0710a52013-05-06 12:17:32 +0300176 /* Reset-all turns off SD Bus Power */
177 if (host->quirks2 & SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON)
178 sdhci_runtime_pm_bus_off(host);
179 }
Pierre Ossmand129bce2006-03-24 03:18:17 -0800180
Pierre Ossmane16514d82006-06-30 02:22:24 -0700181 /* Wait max 100 ms */
182 timeout = 100;
183
184 /* hw clears the bit when it's done */
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300185 while (sdhci_readb(host, SDHCI_SOFTWARE_RESET) & mask) {
Pierre Ossmane16514d82006-06-30 02:22:24 -0700186 if (timeout == 0) {
Girish K Sa3c76eb2011-10-11 11:44:09 +0530187 pr_err("%s: Reset 0x%x never completed.\n",
Pierre Ossmane16514d82006-06-30 02:22:24 -0700188 mmc_hostname(host->mmc), (int)mask);
189 sdhci_dumpregs(host);
190 return;
191 }
192 timeout--;
193 mdelay(1);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800194 }
Russell King03231f92014-04-25 12:57:12 +0100195}
196EXPORT_SYMBOL_GPL(sdhci_reset);
Anton Vorontsov063a9db2009-03-17 00:14:02 +0300197
Russell King03231f92014-04-25 12:57:12 +0100198static void sdhci_do_reset(struct sdhci_host *host, u8 mask)
199{
200 if (host->quirks & SDHCI_QUIRK_NO_CARD_NO_RESET) {
201 if (!(sdhci_readl(host, SDHCI_PRESENT_STATE) &
202 SDHCI_CARD_PRESENT))
203 return;
204 }
205
206 host->ops->reset(host, mask);
Philip Rakity393c1a32011-01-21 11:26:40 -0800207
Russell Kingda91a8f2014-04-25 13:00:12 +0100208 if (mask & SDHCI_RESET_ALL) {
209 if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
210 if (host->ops->enable_dma)
211 host->ops->enable_dma(host);
212 }
213
214 /* Resetting the controller clears many */
215 host->preset_enabled = false;
Shaohui Xie3abc1e802011-12-29 16:33:00 +0800216 }
Pierre Ossmand129bce2006-03-24 03:18:17 -0800217}
218
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -0800219static void sdhci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios);
220
221static void sdhci_init(struct sdhci_host *host, int soft)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800222{
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -0800223 if (soft)
Russell King03231f92014-04-25 12:57:12 +0100224 sdhci_do_reset(host, SDHCI_RESET_CMD|SDHCI_RESET_DATA);
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -0800225 else
Russell King03231f92014-04-25 12:57:12 +0100226 sdhci_do_reset(host, SDHCI_RESET_ALL);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800227
Russell Kingb537f942014-04-25 12:56:01 +0100228 host->ier = SDHCI_INT_BUS_POWER | SDHCI_INT_DATA_END_BIT |
229 SDHCI_INT_DATA_CRC | SDHCI_INT_DATA_TIMEOUT |
230 SDHCI_INT_INDEX | SDHCI_INT_END_BIT | SDHCI_INT_CRC |
231 SDHCI_INT_TIMEOUT | SDHCI_INT_DATA_END |
232 SDHCI_INT_RESPONSE;
233
234 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
235 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -0800236
237 if (soft) {
238 /* force clock reconfiguration */
239 host->clock = 0;
240 sdhci_set_ios(host->mmc, &host->mmc->ios);
241 }
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300242}
Pierre Ossmand129bce2006-03-24 03:18:17 -0800243
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300244static void sdhci_reinit(struct sdhci_host *host)
245{
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -0800246 sdhci_init(host, 0);
Aaron Lub67c6b42012-06-29 16:17:31 +0800247 /*
248 * Retuning stuffs are affected by different cards inserted and only
249 * applicable to UHS-I cards. So reset these fields to their initial
250 * value when card is removed.
251 */
Aaron Lu973905f2012-07-04 13:29:09 +0800252 if (host->flags & SDHCI_USING_RETUNING_TIMER) {
253 host->flags &= ~SDHCI_USING_RETUNING_TIMER;
254
Aaron Lub67c6b42012-06-29 16:17:31 +0800255 del_timer_sync(&host->tuning_timer);
256 host->flags &= ~SDHCI_NEEDS_RETUNING;
257 host->mmc->max_blk_count =
258 (host->quirks & SDHCI_QUIRK_NO_MULTIBLOCK) ? 1 : 65535;
259 }
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300260 sdhci_enable_card_detection(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800261}
262
263static void sdhci_activate_led(struct sdhci_host *host)
264{
265 u8 ctrl;
266
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300267 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800268 ctrl |= SDHCI_CTRL_LED;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300269 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800270}
271
272static void sdhci_deactivate_led(struct sdhci_host *host)
273{
274 u8 ctrl;
275
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300276 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800277 ctrl &= ~SDHCI_CTRL_LED;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300278 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800279}
280
Pierre Ossmanf9134312008-12-21 17:01:48 +0100281#ifdef SDHCI_USE_LEDS_CLASS
Pierre Ossman2f730fe2008-03-17 10:29:38 +0100282static void sdhci_led_control(struct led_classdev *led,
283 enum led_brightness brightness)
284{
285 struct sdhci_host *host = container_of(led, struct sdhci_host, led);
286 unsigned long flags;
287
288 spin_lock_irqsave(&host->lock, flags);
289
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300290 if (host->runtime_suspended)
291 goto out;
292
Pierre Ossman2f730fe2008-03-17 10:29:38 +0100293 if (brightness == LED_OFF)
294 sdhci_deactivate_led(host);
295 else
296 sdhci_activate_led(host);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300297out:
Pierre Ossman2f730fe2008-03-17 10:29:38 +0100298 spin_unlock_irqrestore(&host->lock, flags);
299}
300#endif
301
Pierre Ossmand129bce2006-03-24 03:18:17 -0800302/*****************************************************************************\
303 * *
304 * Core functions *
305 * *
306\*****************************************************************************/
307
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100308static void sdhci_read_block_pio(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800309{
Pierre Ossman76591502008-07-21 00:32:11 +0200310 unsigned long flags;
311 size_t blksize, len, chunk;
Steven Noonan7244b852008-10-01 01:50:25 -0700312 u32 uninitialized_var(scratch);
Pierre Ossman76591502008-07-21 00:32:11 +0200313 u8 *buf;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800314
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100315 DBG("PIO reading\n");
Pierre Ossmand129bce2006-03-24 03:18:17 -0800316
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100317 blksize = host->data->blksz;
Pierre Ossman76591502008-07-21 00:32:11 +0200318 chunk = 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800319
Pierre Ossman76591502008-07-21 00:32:11 +0200320 local_irq_save(flags);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800321
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100322 while (blksize) {
Pierre Ossman76591502008-07-21 00:32:11 +0200323 if (!sg_miter_next(&host->sg_miter))
324 BUG();
Pierre Ossmand129bce2006-03-24 03:18:17 -0800325
Pierre Ossman76591502008-07-21 00:32:11 +0200326 len = min(host->sg_miter.length, blksize);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800327
Pierre Ossman76591502008-07-21 00:32:11 +0200328 blksize -= len;
329 host->sg_miter.consumed = len;
Alex Dubov14d836e2007-04-13 19:04:38 +0200330
Pierre Ossman76591502008-07-21 00:32:11 +0200331 buf = host->sg_miter.addr;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800332
Pierre Ossman76591502008-07-21 00:32:11 +0200333 while (len) {
334 if (chunk == 0) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300335 scratch = sdhci_readl(host, SDHCI_BUFFER);
Pierre Ossman76591502008-07-21 00:32:11 +0200336 chunk = 4;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800337 }
Pierre Ossman76591502008-07-21 00:32:11 +0200338
339 *buf = scratch & 0xFF;
340
341 buf++;
342 scratch >>= 8;
343 chunk--;
344 len--;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800345 }
346 }
Pierre Ossman76591502008-07-21 00:32:11 +0200347
348 sg_miter_stop(&host->sg_miter);
349
350 local_irq_restore(flags);
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100351}
Pierre Ossmand129bce2006-03-24 03:18:17 -0800352
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100353static void sdhci_write_block_pio(struct sdhci_host *host)
354{
Pierre Ossman76591502008-07-21 00:32:11 +0200355 unsigned long flags;
356 size_t blksize, len, chunk;
357 u32 scratch;
358 u8 *buf;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100359
360 DBG("PIO writing\n");
361
362 blksize = host->data->blksz;
Pierre Ossman76591502008-07-21 00:32:11 +0200363 chunk = 0;
364 scratch = 0;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100365
Pierre Ossman76591502008-07-21 00:32:11 +0200366 local_irq_save(flags);
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100367
368 while (blksize) {
Pierre Ossman76591502008-07-21 00:32:11 +0200369 if (!sg_miter_next(&host->sg_miter))
370 BUG();
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100371
Pierre Ossman76591502008-07-21 00:32:11 +0200372 len = min(host->sg_miter.length, blksize);
Alex Dubov14d836e2007-04-13 19:04:38 +0200373
Pierre Ossman76591502008-07-21 00:32:11 +0200374 blksize -= len;
375 host->sg_miter.consumed = len;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100376
Pierre Ossman76591502008-07-21 00:32:11 +0200377 buf = host->sg_miter.addr;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100378
Pierre Ossman76591502008-07-21 00:32:11 +0200379 while (len) {
380 scratch |= (u32)*buf << (chunk * 8);
381
382 buf++;
383 chunk++;
384 len--;
385
386 if ((chunk == 4) || ((len == 0) && (blksize == 0))) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300387 sdhci_writel(host, scratch, SDHCI_BUFFER);
Pierre Ossman76591502008-07-21 00:32:11 +0200388 chunk = 0;
389 scratch = 0;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100390 }
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100391 }
392 }
Pierre Ossman76591502008-07-21 00:32:11 +0200393
394 sg_miter_stop(&host->sg_miter);
395
396 local_irq_restore(flags);
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100397}
398
399static void sdhci_transfer_pio(struct sdhci_host *host)
400{
401 u32 mask;
402
403 BUG_ON(!host->data);
404
Pierre Ossman76591502008-07-21 00:32:11 +0200405 if (host->blocks == 0)
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100406 return;
407
408 if (host->data->flags & MMC_DATA_READ)
409 mask = SDHCI_DATA_AVAILABLE;
410 else
411 mask = SDHCI_SPACE_AVAILABLE;
412
Pierre Ossman4a3cba32008-07-29 00:11:16 +0200413 /*
414 * Some controllers (JMicron JMB38x) mess up the buffer bits
415 * for transfers < 4 bytes. As long as it is just one block,
416 * we can ignore the bits.
417 */
418 if ((host->quirks & SDHCI_QUIRK_BROKEN_SMALL_PIO) &&
419 (host->data->blocks == 1))
420 mask = ~0;
421
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300422 while (sdhci_readl(host, SDHCI_PRESENT_STATE) & mask) {
Anton Vorontsov3e3bf202009-03-17 00:14:00 +0300423 if (host->quirks & SDHCI_QUIRK_PIO_NEEDS_DELAY)
424 udelay(100);
425
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100426 if (host->data->flags & MMC_DATA_READ)
427 sdhci_read_block_pio(host);
428 else
429 sdhci_write_block_pio(host);
430
Pierre Ossman76591502008-07-21 00:32:11 +0200431 host->blocks--;
432 if (host->blocks == 0)
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100433 break;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100434 }
435
436 DBG("PIO transfer complete.\n");
Pierre Ossmand129bce2006-03-24 03:18:17 -0800437}
438
Pierre Ossman2134a922008-06-28 18:28:51 +0200439static char *sdhci_kmap_atomic(struct scatterlist *sg, unsigned long *flags)
440{
441 local_irq_save(*flags);
Cong Wang482fce92011-11-27 13:27:00 +0800442 return kmap_atomic(sg_page(sg)) + sg->offset;
Pierre Ossman2134a922008-06-28 18:28:51 +0200443}
444
445static void sdhci_kunmap_atomic(void *buffer, unsigned long *flags)
446{
Cong Wang482fce92011-11-27 13:27:00 +0800447 kunmap_atomic(buffer);
Pierre Ossman2134a922008-06-28 18:28:51 +0200448 local_irq_restore(*flags);
449}
450
Ben Dooks118cd172010-03-05 13:43:26 -0800451static void sdhci_set_adma_desc(u8 *desc, u32 addr, int len, unsigned cmd)
452{
Ben Dooks9e506f32010-03-05 13:43:29 -0800453 __le32 *dataddr = (__le32 __force *)(desc + 4);
454 __le16 *cmdlen = (__le16 __force *)desc;
Ben Dooks118cd172010-03-05 13:43:26 -0800455
Ben Dooks9e506f32010-03-05 13:43:29 -0800456 /* SDHCI specification says ADMA descriptors should be 4 byte
457 * aligned, so using 16 or 32bit operations should be safe. */
Ben Dooks118cd172010-03-05 13:43:26 -0800458
Ben Dooks9e506f32010-03-05 13:43:29 -0800459 cmdlen[0] = cpu_to_le16(cmd);
460 cmdlen[1] = cpu_to_le16(len);
461
462 dataddr[0] = cpu_to_le32(addr);
Ben Dooks118cd172010-03-05 13:43:26 -0800463}
464
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200465static int sdhci_adma_table_pre(struct sdhci_host *host,
Pierre Ossman2134a922008-06-28 18:28:51 +0200466 struct mmc_data *data)
467{
468 int direction;
469
470 u8 *desc;
471 u8 *align;
472 dma_addr_t addr;
473 dma_addr_t align_addr;
474 int len, offset;
475
476 struct scatterlist *sg;
477 int i;
478 char *buffer;
479 unsigned long flags;
480
481 /*
482 * The spec does not specify endianness of descriptor table.
483 * We currently guess that it is LE.
484 */
485
486 if (data->flags & MMC_DATA_READ)
487 direction = DMA_FROM_DEVICE;
488 else
489 direction = DMA_TO_DEVICE;
490
Pierre Ossman2134a922008-06-28 18:28:51 +0200491 host->align_addr = dma_map_single(mmc_dev(host->mmc),
492 host->align_buffer, 128 * 4, direction);
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700493 if (dma_mapping_error(mmc_dev(host->mmc), host->align_addr))
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200494 goto fail;
Pierre Ossman2134a922008-06-28 18:28:51 +0200495 BUG_ON(host->align_addr & 0x3);
496
497 host->sg_count = dma_map_sg(mmc_dev(host->mmc),
498 data->sg, data->sg_len, direction);
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200499 if (host->sg_count == 0)
500 goto unmap_align;
Pierre Ossman2134a922008-06-28 18:28:51 +0200501
502 desc = host->adma_desc;
503 align = host->align_buffer;
504
505 align_addr = host->align_addr;
506
507 for_each_sg(data->sg, sg, host->sg_count, i) {
508 addr = sg_dma_address(sg);
509 len = sg_dma_len(sg);
510
511 /*
512 * The SDHCI specification states that ADMA
513 * addresses must be 32-bit aligned. If they
514 * aren't, then we use a bounce buffer for
515 * the (up to three) bytes that screw up the
516 * alignment.
517 */
518 offset = (4 - (addr & 0x3)) & 0x3;
519 if (offset) {
520 if (data->flags & MMC_DATA_WRITE) {
521 buffer = sdhci_kmap_atomic(sg, &flags);
Pierre Ossman6cefd052008-07-21 00:45:15 +0200522 WARN_ON(((long)buffer & PAGE_MASK) > (PAGE_SIZE - 3));
Pierre Ossman2134a922008-06-28 18:28:51 +0200523 memcpy(align, buffer, offset);
524 sdhci_kunmap_atomic(buffer, &flags);
525 }
526
Ben Dooks118cd172010-03-05 13:43:26 -0800527 /* tran, valid */
528 sdhci_set_adma_desc(desc, align_addr, offset, 0x21);
Pierre Ossman2134a922008-06-28 18:28:51 +0200529
530 BUG_ON(offset > 65536);
531
Pierre Ossman2134a922008-06-28 18:28:51 +0200532 align += 4;
533 align_addr += 4;
534
535 desc += 8;
536
537 addr += offset;
538 len -= offset;
539 }
540
Pierre Ossman2134a922008-06-28 18:28:51 +0200541 BUG_ON(len > 65536);
542
Ben Dooks118cd172010-03-05 13:43:26 -0800543 /* tran, valid */
544 sdhci_set_adma_desc(desc, addr, len, 0x21);
Pierre Ossman2134a922008-06-28 18:28:51 +0200545 desc += 8;
546
547 /*
548 * If this triggers then we have a calculation bug
549 * somewhere. :/
550 */
Russell Kingd1e49f72014-04-25 12:58:34 +0100551 WARN_ON((desc - host->adma_desc) > ADMA_SIZE);
Pierre Ossman2134a922008-06-28 18:28:51 +0200552 }
553
Thomas Abraham70764a92010-05-26 14:42:04 -0700554 if (host->quirks & SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC) {
555 /*
556 * Mark the last descriptor as the terminating descriptor
557 */
558 if (desc != host->adma_desc) {
559 desc -= 8;
560 desc[0] |= 0x2; /* end */
561 }
562 } else {
563 /*
564 * Add a terminating entry.
565 */
Pierre Ossman2134a922008-06-28 18:28:51 +0200566
Thomas Abraham70764a92010-05-26 14:42:04 -0700567 /* nop, end, valid */
568 sdhci_set_adma_desc(desc, 0, 0, 0x3);
569 }
Pierre Ossman2134a922008-06-28 18:28:51 +0200570
571 /*
572 * Resync align buffer as we might have changed it.
573 */
574 if (data->flags & MMC_DATA_WRITE) {
575 dma_sync_single_for_device(mmc_dev(host->mmc),
576 host->align_addr, 128 * 4, direction);
577 }
578
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200579 return 0;
580
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200581unmap_align:
582 dma_unmap_single(mmc_dev(host->mmc), host->align_addr,
583 128 * 4, direction);
584fail:
585 return -EINVAL;
Pierre Ossman2134a922008-06-28 18:28:51 +0200586}
587
588static void sdhci_adma_table_post(struct sdhci_host *host,
589 struct mmc_data *data)
590{
591 int direction;
592
593 struct scatterlist *sg;
594 int i, size;
595 u8 *align;
596 char *buffer;
597 unsigned long flags;
Russell Kingde0b65a2014-04-25 12:58:29 +0100598 bool has_unaligned;
Pierre Ossman2134a922008-06-28 18:28:51 +0200599
600 if (data->flags & MMC_DATA_READ)
601 direction = DMA_FROM_DEVICE;
602 else
603 direction = DMA_TO_DEVICE;
604
Pierre Ossman2134a922008-06-28 18:28:51 +0200605 dma_unmap_single(mmc_dev(host->mmc), host->align_addr,
606 128 * 4, direction);
607
Russell Kingde0b65a2014-04-25 12:58:29 +0100608 /* Do a quick scan of the SG list for any unaligned mappings */
609 has_unaligned = false;
610 for_each_sg(data->sg, sg, host->sg_count, i)
611 if (sg_dma_address(sg) & 3) {
612 has_unaligned = true;
613 break;
614 }
615
616 if (has_unaligned && data->flags & MMC_DATA_READ) {
Pierre Ossman2134a922008-06-28 18:28:51 +0200617 dma_sync_sg_for_cpu(mmc_dev(host->mmc), data->sg,
618 data->sg_len, direction);
619
620 align = host->align_buffer;
621
622 for_each_sg(data->sg, sg, host->sg_count, i) {
623 if (sg_dma_address(sg) & 0x3) {
624 size = 4 - (sg_dma_address(sg) & 0x3);
625
626 buffer = sdhci_kmap_atomic(sg, &flags);
Pierre Ossman6cefd052008-07-21 00:45:15 +0200627 WARN_ON(((long)buffer & PAGE_MASK) > (PAGE_SIZE - 3));
Pierre Ossman2134a922008-06-28 18:28:51 +0200628 memcpy(buffer, align, size);
629 sdhci_kunmap_atomic(buffer, &flags);
630
631 align += 4;
632 }
633 }
634 }
635
636 dma_unmap_sg(mmc_dev(host->mmc), data->sg,
637 data->sg_len, direction);
638}
639
Andrei Warkentina3c77782011-04-11 16:13:42 -0500640static u8 sdhci_calc_timeout(struct sdhci_host *host, struct mmc_command *cmd)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800641{
Pierre Ossman1c8cde92006-06-30 02:22:25 -0700642 u8 count;
Andrei Warkentina3c77782011-04-11 16:13:42 -0500643 struct mmc_data *data = cmd->data;
Pierre Ossman1c8cde92006-06-30 02:22:25 -0700644 unsigned target_timeout, current_timeout;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800645
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200646 /*
647 * If the host controller provides us with an incorrect timeout
648 * value, just skip the check and use 0xE. The hardware may take
649 * longer to time out, but that's much better than having a too-short
650 * timeout value.
651 */
Pierre Ossman11a2f1b2009-06-21 20:59:33 +0200652 if (host->quirks & SDHCI_QUIRK_BROKEN_TIMEOUT_VAL)
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200653 return 0xE;
Pierre Ossmane538fbe2007-08-12 16:46:32 +0200654
Andrei Warkentina3c77782011-04-11 16:13:42 -0500655 /* Unspecified timeout, assume max */
Ulf Hansson1d4d7742014-01-08 15:06:08 +0100656 if (!data && !cmd->busy_timeout)
Andrei Warkentina3c77782011-04-11 16:13:42 -0500657 return 0xE;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800658
Andrei Warkentina3c77782011-04-11 16:13:42 -0500659 /* timeout in us */
660 if (!data)
Ulf Hansson1d4d7742014-01-08 15:06:08 +0100661 target_timeout = cmd->busy_timeout * 1000;
Andy Shevchenko78a2ca22011-08-03 18:35:59 +0300662 else {
663 target_timeout = data->timeout_ns / 1000;
664 if (host->clock)
665 target_timeout += data->timeout_clks / host->clock;
666 }
Anton Vorontsov81b39802009-09-22 16:45:13 -0700667
Pierre Ossman1c8cde92006-06-30 02:22:25 -0700668 /*
669 * Figure out needed cycles.
670 * We do this in steps in order to fit inside a 32 bit int.
671 * The first step is the minimum timeout, which will have a
672 * minimum resolution of 6 bits:
673 * (1) 2^13*1000 > 2^22,
674 * (2) host->timeout_clk < 2^16
675 * =>
676 * (1) / (2) > 2^6
677 */
678 count = 0;
679 current_timeout = (1 << 13) * 1000 / host->timeout_clk;
680 while (current_timeout < target_timeout) {
681 count++;
682 current_timeout <<= 1;
683 if (count >= 0xF)
684 break;
685 }
686
687 if (count >= 0xF) {
Chris Ball09eeff52012-06-01 10:39:45 -0400688 DBG("%s: Too large timeout 0x%x requested for CMD%d!\n",
689 mmc_hostname(host->mmc), count, cmd->opcode);
Pierre Ossman1c8cde92006-06-30 02:22:25 -0700690 count = 0xE;
691 }
692
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200693 return count;
694}
695
Anton Vorontsov6aa943a2009-03-17 00:13:50 +0300696static void sdhci_set_transfer_irqs(struct sdhci_host *host)
697{
698 u32 pio_irqs = SDHCI_INT_DATA_AVAIL | SDHCI_INT_SPACE_AVAIL;
699 u32 dma_irqs = SDHCI_INT_DMA_END | SDHCI_INT_ADMA_ERROR;
700
701 if (host->flags & SDHCI_REQ_USE_DMA)
Russell Kingb537f942014-04-25 12:56:01 +0100702 host->ier = (host->ier & ~pio_irqs) | dma_irqs;
Anton Vorontsov6aa943a2009-03-17 00:13:50 +0300703 else
Russell Kingb537f942014-04-25 12:56:01 +0100704 host->ier = (host->ier & ~dma_irqs) | pio_irqs;
705
706 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
707 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Anton Vorontsov6aa943a2009-03-17 00:13:50 +0300708}
709
Aisheng Dongb45e6682014-08-27 15:26:29 +0800710static void sdhci_set_timeout(struct sdhci_host *host, struct mmc_command *cmd)
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200711{
712 u8 count;
Aisheng Dongb45e6682014-08-27 15:26:29 +0800713
714 if (host->ops->set_timeout) {
715 host->ops->set_timeout(host, cmd);
716 } else {
717 count = sdhci_calc_timeout(host, cmd);
718 sdhci_writeb(host, count, SDHCI_TIMEOUT_CONTROL);
719 }
720}
721
722static void sdhci_prepare_data(struct sdhci_host *host, struct mmc_command *cmd)
723{
Pierre Ossman2134a922008-06-28 18:28:51 +0200724 u8 ctrl;
Andrei Warkentina3c77782011-04-11 16:13:42 -0500725 struct mmc_data *data = cmd->data;
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200726 int ret;
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200727
728 WARN_ON(host->data);
729
Aisheng Dongb45e6682014-08-27 15:26:29 +0800730 if (data || (cmd->flags & MMC_RSP_BUSY))
731 sdhci_set_timeout(host, cmd);
Andrei Warkentina3c77782011-04-11 16:13:42 -0500732
733 if (!data)
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200734 return;
735
736 /* Sanity checks */
737 BUG_ON(data->blksz * data->blocks > 524288);
738 BUG_ON(data->blksz > host->mmc->max_blk_size);
739 BUG_ON(data->blocks > 65535);
740
741 host->data = data;
742 host->data_early = 0;
Mikko Vinnif6a03cb2011-04-12 09:36:18 -0400743 host->data->bytes_xfered = 0;
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200744
Richard Röjforsa13abc72009-09-22 16:45:30 -0700745 if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA))
Pierre Ossmanc9fddbc2007-12-02 19:52:11 +0100746 host->flags |= SDHCI_REQ_USE_DMA;
747
Pierre Ossman2134a922008-06-28 18:28:51 +0200748 /*
749 * FIXME: This doesn't account for merging when mapping the
750 * scatterlist.
751 */
752 if (host->flags & SDHCI_REQ_USE_DMA) {
753 int broken, i;
754 struct scatterlist *sg;
755
756 broken = 0;
757 if (host->flags & SDHCI_USE_ADMA) {
758 if (host->quirks & SDHCI_QUIRK_32BIT_ADMA_SIZE)
759 broken = 1;
760 } else {
761 if (host->quirks & SDHCI_QUIRK_32BIT_DMA_SIZE)
762 broken = 1;
763 }
764
765 if (unlikely(broken)) {
766 for_each_sg(data->sg, sg, data->sg_len, i) {
767 if (sg->length & 0x3) {
768 DBG("Reverting to PIO because of "
769 "transfer size (%d)\n",
770 sg->length);
771 host->flags &= ~SDHCI_REQ_USE_DMA;
772 break;
773 }
774 }
775 }
Pierre Ossmanc9fddbc2007-12-02 19:52:11 +0100776 }
777
778 /*
779 * The assumption here being that alignment is the same after
780 * translation to device address space.
781 */
Pierre Ossman2134a922008-06-28 18:28:51 +0200782 if (host->flags & SDHCI_REQ_USE_DMA) {
783 int broken, i;
784 struct scatterlist *sg;
785
786 broken = 0;
787 if (host->flags & SDHCI_USE_ADMA) {
788 /*
789 * As we use 3 byte chunks to work around
790 * alignment problems, we need to check this
791 * quirk.
792 */
793 if (host->quirks & SDHCI_QUIRK_32BIT_ADMA_SIZE)
794 broken = 1;
795 } else {
796 if (host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR)
797 broken = 1;
798 }
799
800 if (unlikely(broken)) {
801 for_each_sg(data->sg, sg, data->sg_len, i) {
802 if (sg->offset & 0x3) {
803 DBG("Reverting to PIO because of "
804 "bad alignment\n");
805 host->flags &= ~SDHCI_REQ_USE_DMA;
806 break;
807 }
808 }
809 }
810 }
811
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200812 if (host->flags & SDHCI_REQ_USE_DMA) {
813 if (host->flags & SDHCI_USE_ADMA) {
814 ret = sdhci_adma_table_pre(host, data);
815 if (ret) {
816 /*
817 * This only happens when someone fed
818 * us an invalid request.
819 */
820 WARN_ON(1);
Pierre Ossmanebd6d352008-07-29 00:45:51 +0200821 host->flags &= ~SDHCI_REQ_USE_DMA;
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200822 } else {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300823 sdhci_writel(host, host->adma_addr,
824 SDHCI_ADMA_ADDRESS);
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200825 }
826 } else {
Tomas Winklerc8b3e022008-07-05 19:52:04 +0300827 int sg_cnt;
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200828
Tomas Winklerc8b3e022008-07-05 19:52:04 +0300829 sg_cnt = dma_map_sg(mmc_dev(host->mmc),
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200830 data->sg, data->sg_len,
831 (data->flags & MMC_DATA_READ) ?
832 DMA_FROM_DEVICE :
833 DMA_TO_DEVICE);
Tomas Winklerc8b3e022008-07-05 19:52:04 +0300834 if (sg_cnt == 0) {
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200835 /*
836 * This only happens when someone fed
837 * us an invalid request.
838 */
839 WARN_ON(1);
Pierre Ossmanebd6d352008-07-29 00:45:51 +0200840 host->flags &= ~SDHCI_REQ_USE_DMA;
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200841 } else {
Pierre Ossman719a61b2008-07-22 13:23:23 +0200842 WARN_ON(sg_cnt != 1);
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300843 sdhci_writel(host, sg_dma_address(data->sg),
844 SDHCI_DMA_ADDRESS);
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200845 }
846 }
847 }
848
Pierre Ossman2134a922008-06-28 18:28:51 +0200849 /*
850 * Always adjust the DMA selection as some controllers
851 * (e.g. JMicron) can't do PIO properly when the selection
852 * is ADMA.
853 */
854 if (host->version >= SDHCI_SPEC_200) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300855 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
Pierre Ossman2134a922008-06-28 18:28:51 +0200856 ctrl &= ~SDHCI_CTRL_DMA_MASK;
857 if ((host->flags & SDHCI_REQ_USE_DMA) &&
858 (host->flags & SDHCI_USE_ADMA))
859 ctrl |= SDHCI_CTRL_ADMA32;
860 else
861 ctrl |= SDHCI_CTRL_SDMA;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300862 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Pierre Ossmanc9fddbc2007-12-02 19:52:11 +0100863 }
864
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200865 if (!(host->flags & SDHCI_REQ_USE_DMA)) {
Sebastian Andrzej Siewiorda60a912009-06-18 09:33:32 +0200866 int flags;
867
868 flags = SG_MITER_ATOMIC;
869 if (host->data->flags & MMC_DATA_READ)
870 flags |= SG_MITER_TO_SG;
871 else
872 flags |= SG_MITER_FROM_SG;
873 sg_miter_start(&host->sg_miter, data->sg, data->sg_len, flags);
Pierre Ossman76591502008-07-21 00:32:11 +0200874 host->blocks = data->blocks;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800875 }
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700876
Anton Vorontsov6aa943a2009-03-17 00:13:50 +0300877 sdhci_set_transfer_irqs(host);
878
Mikko Vinnif6a03cb2011-04-12 09:36:18 -0400879 /* Set the DMA boundary value and block size */
880 sdhci_writew(host, SDHCI_MAKE_BLKSZ(SDHCI_DEFAULT_BOUNDARY_ARG,
881 data->blksz), SDHCI_BLOCK_SIZE);
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300882 sdhci_writew(host, data->blocks, SDHCI_BLOCK_COUNT);
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700883}
884
885static void sdhci_set_transfer_mode(struct sdhci_host *host,
Andrei Warkentine89d4562011-05-23 15:06:37 -0500886 struct mmc_command *cmd)
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700887{
888 u16 mode;
Andrei Warkentine89d4562011-05-23 15:06:37 -0500889 struct mmc_data *data = cmd->data;
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700890
Dong Aisheng2b558c12013-10-30 22:09:48 +0800891 if (data == NULL) {
892 /* clear Auto CMD settings for no data CMDs */
893 mode = sdhci_readw(host, SDHCI_TRANSFER_MODE);
894 sdhci_writew(host, mode & ~(SDHCI_TRNS_AUTO_CMD12 |
895 SDHCI_TRNS_AUTO_CMD23), SDHCI_TRANSFER_MODE);
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700896 return;
Dong Aisheng2b558c12013-10-30 22:09:48 +0800897 }
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700898
Pierre Ossmane538fbe2007-08-12 16:46:32 +0200899 WARN_ON(!host->data);
900
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700901 mode = SDHCI_TRNS_BLK_CNT_EN;
Andrei Warkentine89d4562011-05-23 15:06:37 -0500902 if (mmc_op_multi(cmd->opcode) || data->blocks > 1) {
903 mode |= SDHCI_TRNS_MULTI;
904 /*
905 * If we are sending CMD23, CMD12 never gets sent
906 * on successful completion (so no Auto-CMD12).
907 */
908 if (!host->mrq->sbc && (host->flags & SDHCI_AUTO_CMD12))
909 mode |= SDHCI_TRNS_AUTO_CMD12;
Andrei Warkentin8edf63712011-05-23 15:06:39 -0500910 else if (host->mrq->sbc && (host->flags & SDHCI_AUTO_CMD23)) {
911 mode |= SDHCI_TRNS_AUTO_CMD23;
912 sdhci_writel(host, host->mrq->sbc->arg, SDHCI_ARGUMENT2);
913 }
Jerry Huangc4512f72010-08-10 18:01:59 -0700914 }
Andrei Warkentin8edf63712011-05-23 15:06:39 -0500915
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700916 if (data->flags & MMC_DATA_READ)
917 mode |= SDHCI_TRNS_READ;
Pierre Ossmanc9fddbc2007-12-02 19:52:11 +0100918 if (host->flags & SDHCI_REQ_USE_DMA)
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700919 mode |= SDHCI_TRNS_DMA;
920
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300921 sdhci_writew(host, mode, SDHCI_TRANSFER_MODE);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800922}
923
924static void sdhci_finish_data(struct sdhci_host *host)
925{
926 struct mmc_data *data;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800927
928 BUG_ON(!host->data);
929
930 data = host->data;
931 host->data = NULL;
932
Pierre Ossmanc9fddbc2007-12-02 19:52:11 +0100933 if (host->flags & SDHCI_REQ_USE_DMA) {
Pierre Ossman2134a922008-06-28 18:28:51 +0200934 if (host->flags & SDHCI_USE_ADMA)
935 sdhci_adma_table_post(host, data);
936 else {
937 dma_unmap_sg(mmc_dev(host->mmc), data->sg,
938 data->sg_len, (data->flags & MMC_DATA_READ) ?
939 DMA_FROM_DEVICE : DMA_TO_DEVICE);
940 }
Pierre Ossmand129bce2006-03-24 03:18:17 -0800941 }
942
943 /*
Pierre Ossmanc9b74c52008-04-18 20:41:49 +0200944 * The specification states that the block count register must
945 * be updated, but it does not specify at what point in the
946 * data flow. That makes the register entirely useless to read
947 * back so we have to assume that nothing made it to the card
948 * in the event of an error.
Pierre Ossmand129bce2006-03-24 03:18:17 -0800949 */
Pierre Ossmanc9b74c52008-04-18 20:41:49 +0200950 if (data->error)
951 data->bytes_xfered = 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800952 else
Pierre Ossmanc9b74c52008-04-18 20:41:49 +0200953 data->bytes_xfered = data->blksz * data->blocks;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800954
Andrei Warkentine89d4562011-05-23 15:06:37 -0500955 /*
956 * Need to send CMD12 if -
957 * a) open-ended multiblock transfer (no CMD23)
958 * b) error in multiblock transfer
959 */
960 if (data->stop &&
961 (data->error ||
962 !host->mrq->sbc)) {
963
Pierre Ossmand129bce2006-03-24 03:18:17 -0800964 /*
965 * The controller needs a reset of internal state machines
966 * upon error conditions.
967 */
Pierre Ossman17b04292007-07-22 22:18:46 +0200968 if (data->error) {
Russell King03231f92014-04-25 12:57:12 +0100969 sdhci_do_reset(host, SDHCI_RESET_CMD);
970 sdhci_do_reset(host, SDHCI_RESET_DATA);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800971 }
972
973 sdhci_send_command(host, data->stop);
974 } else
975 tasklet_schedule(&host->finish_tasklet);
976}
977
Dong Aishengc0e551292013-09-13 19:11:31 +0800978void sdhci_send_command(struct sdhci_host *host, struct mmc_command *cmd)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800979{
980 int flags;
Pierre Ossmanfd2208d2006-06-30 02:22:28 -0700981 u32 mask;
Pierre Ossman7cb2c762006-06-30 02:22:23 -0700982 unsigned long timeout;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800983
984 WARN_ON(host->cmd);
985
Pierre Ossmand129bce2006-03-24 03:18:17 -0800986 /* Wait max 10 ms */
Pierre Ossman7cb2c762006-06-30 02:22:23 -0700987 timeout = 10;
Pierre Ossmanfd2208d2006-06-30 02:22:28 -0700988
989 mask = SDHCI_CMD_INHIBIT;
990 if ((cmd->data != NULL) || (cmd->flags & MMC_RSP_BUSY))
991 mask |= SDHCI_DATA_INHIBIT;
992
993 /* We shouldn't wait for data inihibit for stop commands, even
994 though they might use busy signaling */
995 if (host->mrq->data && (cmd == host->mrq->data->stop))
996 mask &= ~SDHCI_DATA_INHIBIT;
997
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300998 while (sdhci_readl(host, SDHCI_PRESENT_STATE) & mask) {
Pierre Ossman7cb2c762006-06-30 02:22:23 -0700999 if (timeout == 0) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05301000 pr_err("%s: Controller never released "
Pierre Ossmanacf1da42007-02-09 08:29:19 +01001001 "inhibit bit(s).\n", mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -08001002 sdhci_dumpregs(host);
Pierre Ossman17b04292007-07-22 22:18:46 +02001003 cmd->error = -EIO;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001004 tasklet_schedule(&host->finish_tasklet);
1005 return;
1006 }
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001007 timeout--;
1008 mdelay(1);
1009 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001010
Adrian Hunter3e1a6892013-11-14 10:16:20 +02001011 timeout = jiffies;
Ulf Hansson1d4d7742014-01-08 15:06:08 +01001012 if (!cmd->data && cmd->busy_timeout > 9000)
1013 timeout += DIV_ROUND_UP(cmd->busy_timeout, 1000) * HZ + HZ;
Adrian Hunter3e1a6892013-11-14 10:16:20 +02001014 else
1015 timeout += 10 * HZ;
1016 mod_timer(&host->timer, timeout);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001017
1018 host->cmd = cmd;
Chanho Mine99783a2014-08-30 12:40:40 +09001019 host->busy_handle = 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001020
Andrei Warkentina3c77782011-04-11 16:13:42 -05001021 sdhci_prepare_data(host, cmd);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001022
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001023 sdhci_writel(host, cmd->arg, SDHCI_ARGUMENT);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001024
Andrei Warkentine89d4562011-05-23 15:06:37 -05001025 sdhci_set_transfer_mode(host, cmd);
Pierre Ossmanc7fa9962006-06-30 02:22:25 -07001026
Pierre Ossmand129bce2006-03-24 03:18:17 -08001027 if ((cmd->flags & MMC_RSP_136) && (cmd->flags & MMC_RSP_BUSY)) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05301028 pr_err("%s: Unsupported response type!\n",
Pierre Ossmand129bce2006-03-24 03:18:17 -08001029 mmc_hostname(host->mmc));
Pierre Ossman17b04292007-07-22 22:18:46 +02001030 cmd->error = -EINVAL;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001031 tasklet_schedule(&host->finish_tasklet);
1032 return;
1033 }
1034
1035 if (!(cmd->flags & MMC_RSP_PRESENT))
1036 flags = SDHCI_CMD_RESP_NONE;
1037 else if (cmd->flags & MMC_RSP_136)
1038 flags = SDHCI_CMD_RESP_LONG;
1039 else if (cmd->flags & MMC_RSP_BUSY)
1040 flags = SDHCI_CMD_RESP_SHORT_BUSY;
1041 else
1042 flags = SDHCI_CMD_RESP_SHORT;
1043
1044 if (cmd->flags & MMC_RSP_CRC)
1045 flags |= SDHCI_CMD_CRC;
1046 if (cmd->flags & MMC_RSP_OPCODE)
1047 flags |= SDHCI_CMD_INDEX;
Arindam Nathb513ea22011-05-05 12:19:04 +05301048
1049 /* CMD19 is special in that the Data Present Select should be set */
Girish K S069c9f12012-01-06 09:56:39 +05301050 if (cmd->data || cmd->opcode == MMC_SEND_TUNING_BLOCK ||
1051 cmd->opcode == MMC_SEND_TUNING_BLOCK_HS200)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001052 flags |= SDHCI_CMD_DATA;
1053
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001054 sdhci_writew(host, SDHCI_MAKE_CMD(cmd->opcode, flags), SDHCI_COMMAND);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001055}
Dong Aishengc0e551292013-09-13 19:11:31 +08001056EXPORT_SYMBOL_GPL(sdhci_send_command);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001057
1058static void sdhci_finish_command(struct sdhci_host *host)
1059{
1060 int i;
1061
1062 BUG_ON(host->cmd == NULL);
1063
1064 if (host->cmd->flags & MMC_RSP_PRESENT) {
1065 if (host->cmd->flags & MMC_RSP_136) {
1066 /* CRC is stripped so we need to do some shifting. */
1067 for (i = 0;i < 4;i++) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001068 host->cmd->resp[i] = sdhci_readl(host,
Pierre Ossmand129bce2006-03-24 03:18:17 -08001069 SDHCI_RESPONSE + (3-i)*4) << 8;
1070 if (i != 3)
1071 host->cmd->resp[i] |=
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001072 sdhci_readb(host,
Pierre Ossmand129bce2006-03-24 03:18:17 -08001073 SDHCI_RESPONSE + (3-i)*4-1);
1074 }
1075 } else {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001076 host->cmd->resp[0] = sdhci_readl(host, SDHCI_RESPONSE);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001077 }
1078 }
1079
Pierre Ossman17b04292007-07-22 22:18:46 +02001080 host->cmd->error = 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001081
Andrei Warkentine89d4562011-05-23 15:06:37 -05001082 /* Finished CMD23, now send actual command. */
1083 if (host->cmd == host->mrq->sbc) {
1084 host->cmd = NULL;
1085 sdhci_send_command(host, host->mrq->cmd);
1086 } else {
Pierre Ossmane538fbe2007-08-12 16:46:32 +02001087
Andrei Warkentine89d4562011-05-23 15:06:37 -05001088 /* Processed actual command. */
1089 if (host->data && host->data_early)
1090 sdhci_finish_data(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001091
Andrei Warkentine89d4562011-05-23 15:06:37 -05001092 if (!host->cmd->data)
1093 tasklet_schedule(&host->finish_tasklet);
1094
1095 host->cmd = NULL;
1096 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001097}
1098
Kevin Liu52983382013-01-31 11:31:37 +08001099static u16 sdhci_get_preset_value(struct sdhci_host *host)
1100{
Russell Kingd975f122014-04-25 12:59:31 +01001101 u16 preset = 0;
Kevin Liu52983382013-01-31 11:31:37 +08001102
Russell Kingd975f122014-04-25 12:59:31 +01001103 switch (host->timing) {
1104 case MMC_TIMING_UHS_SDR12:
Kevin Liu52983382013-01-31 11:31:37 +08001105 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR12);
1106 break;
Russell Kingd975f122014-04-25 12:59:31 +01001107 case MMC_TIMING_UHS_SDR25:
Kevin Liu52983382013-01-31 11:31:37 +08001108 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR25);
1109 break;
Russell Kingd975f122014-04-25 12:59:31 +01001110 case MMC_TIMING_UHS_SDR50:
Kevin Liu52983382013-01-31 11:31:37 +08001111 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR50);
1112 break;
Russell Kingd975f122014-04-25 12:59:31 +01001113 case MMC_TIMING_UHS_SDR104:
1114 case MMC_TIMING_MMC_HS200:
Kevin Liu52983382013-01-31 11:31:37 +08001115 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR104);
1116 break;
Russell Kingd975f122014-04-25 12:59:31 +01001117 case MMC_TIMING_UHS_DDR50:
Kevin Liu52983382013-01-31 11:31:37 +08001118 preset = sdhci_readw(host, SDHCI_PRESET_FOR_DDR50);
1119 break;
1120 default:
1121 pr_warn("%s: Invalid UHS-I mode selected\n",
1122 mmc_hostname(host->mmc));
1123 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR12);
1124 break;
1125 }
1126 return preset;
1127}
1128
Russell King17710592014-04-25 12:58:55 +01001129void sdhci_set_clock(struct sdhci_host *host, unsigned int clock)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001130{
Arindam Nathc3ed3872011-05-05 12:19:06 +05301131 int div = 0; /* Initialized for compiler warning */
Giuseppe CAVALLAROdf162192011-11-04 13:53:19 +01001132 int real_div = div, clk_mul = 1;
Arindam Nathc3ed3872011-05-05 12:19:06 +05301133 u16 clk = 0;
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001134 unsigned long timeout;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001135
Russell King1650d0c2014-04-25 12:58:50 +01001136 host->mmc->actual_clock = 0;
1137
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001138 sdhci_writew(host, 0, SDHCI_CLOCK_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001139
1140 if (clock == 0)
Russell King373073e2014-04-25 12:58:45 +01001141 return;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001142
Zhangfei Gao85105c52010-08-06 07:10:01 +08001143 if (host->version >= SDHCI_SPEC_300) {
Russell Kingda91a8f2014-04-25 13:00:12 +01001144 if (host->preset_enabled) {
Kevin Liu52983382013-01-31 11:31:37 +08001145 u16 pre_val;
1146
1147 clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL);
1148 pre_val = sdhci_get_preset_value(host);
1149 div = (pre_val & SDHCI_PRESET_SDCLK_FREQ_MASK)
1150 >> SDHCI_PRESET_SDCLK_FREQ_SHIFT;
1151 if (host->clk_mul &&
1152 (pre_val & SDHCI_PRESET_CLKGEN_SEL_MASK)) {
1153 clk = SDHCI_PROG_CLOCK_MODE;
1154 real_div = div + 1;
1155 clk_mul = host->clk_mul;
1156 } else {
1157 real_div = max_t(int, 1, div << 1);
1158 }
1159 goto clock_set;
1160 }
1161
Arindam Nathc3ed3872011-05-05 12:19:06 +05301162 /*
1163 * Check if the Host Controller supports Programmable Clock
1164 * Mode.
1165 */
1166 if (host->clk_mul) {
Kevin Liu52983382013-01-31 11:31:37 +08001167 for (div = 1; div <= 1024; div++) {
1168 if ((host->max_clk * host->clk_mul / div)
1169 <= clock)
1170 break;
Zhangfei Gao85105c52010-08-06 07:10:01 +08001171 }
Kevin Liu52983382013-01-31 11:31:37 +08001172 /*
1173 * Set Programmable Clock Mode in the Clock
1174 * Control register.
1175 */
1176 clk = SDHCI_PROG_CLOCK_MODE;
1177 real_div = div;
1178 clk_mul = host->clk_mul;
1179 div--;
Arindam Nathc3ed3872011-05-05 12:19:06 +05301180 } else {
1181 /* Version 3.00 divisors must be a multiple of 2. */
1182 if (host->max_clk <= clock)
1183 div = 1;
1184 else {
1185 for (div = 2; div < SDHCI_MAX_DIV_SPEC_300;
1186 div += 2) {
1187 if ((host->max_clk / div) <= clock)
1188 break;
1189 }
1190 }
Giuseppe CAVALLAROdf162192011-11-04 13:53:19 +01001191 real_div = div;
Arindam Nathc3ed3872011-05-05 12:19:06 +05301192 div >>= 1;
Zhangfei Gao85105c52010-08-06 07:10:01 +08001193 }
1194 } else {
1195 /* Version 2.00 divisors must be a power of 2. */
Zhangfei Gao03975262010-09-20 15:15:18 -04001196 for (div = 1; div < SDHCI_MAX_DIV_SPEC_200; div *= 2) {
Zhangfei Gao85105c52010-08-06 07:10:01 +08001197 if ((host->max_clk / div) <= clock)
1198 break;
1199 }
Giuseppe CAVALLAROdf162192011-11-04 13:53:19 +01001200 real_div = div;
Arindam Nathc3ed3872011-05-05 12:19:06 +05301201 div >>= 1;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001202 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001203
Kevin Liu52983382013-01-31 11:31:37 +08001204clock_set:
Aisheng Dong03d6f5f2014-08-27 15:26:32 +08001205 if (real_div)
Giuseppe CAVALLAROdf162192011-11-04 13:53:19 +01001206 host->mmc->actual_clock = (host->max_clk * clk_mul) / real_div;
Arindam Nathc3ed3872011-05-05 12:19:06 +05301207 clk |= (div & SDHCI_DIV_MASK) << SDHCI_DIVIDER_SHIFT;
Zhangfei Gao85105c52010-08-06 07:10:01 +08001208 clk |= ((div & SDHCI_DIV_HI_MASK) >> SDHCI_DIV_MASK_LEN)
1209 << SDHCI_DIVIDER_HI_SHIFT;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001210 clk |= SDHCI_CLOCK_INT_EN;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001211 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001212
Chris Ball27f6cb12009-09-22 16:45:31 -07001213 /* Wait max 20 ms */
1214 timeout = 20;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001215 while (!((clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL))
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001216 & SDHCI_CLOCK_INT_STABLE)) {
1217 if (timeout == 0) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05301218 pr_err("%s: Internal clock never "
Pierre Ossmanacf1da42007-02-09 08:29:19 +01001219 "stabilised.\n", mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -08001220 sdhci_dumpregs(host);
1221 return;
1222 }
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001223 timeout--;
1224 mdelay(1);
1225 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001226
1227 clk |= SDHCI_CLOCK_CARD_EN;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001228 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001229}
Russell King17710592014-04-25 12:58:55 +01001230EXPORT_SYMBOL_GPL(sdhci_set_clock);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001231
Russell King24fbb3c2014-04-25 13:00:06 +01001232static void sdhci_set_power(struct sdhci_host *host, unsigned char mode,
1233 unsigned short vdd)
Pierre Ossman146ad662006-06-30 02:22:23 -07001234{
Tim Kryger3a48edc2014-06-13 10:13:56 -07001235 struct mmc_host *mmc = host->mmc;
Giuseppe Cavallaro83642482010-09-28 10:41:28 +02001236 u8 pwr = 0;
Pierre Ossman146ad662006-06-30 02:22:23 -07001237
Tim Kryger52221612014-06-25 00:25:34 -07001238 if (!IS_ERR(mmc->supply.vmmc)) {
1239 spin_unlock_irq(&host->lock);
Markus Mayer4e743f12014-07-03 13:27:42 -07001240 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, vdd);
Tim Kryger52221612014-06-25 00:25:34 -07001241 spin_lock_irq(&host->lock);
1242 return;
1243 }
1244
Russell King24fbb3c2014-04-25 13:00:06 +01001245 if (mode != MMC_POWER_OFF) {
1246 switch (1 << vdd) {
Pierre Ossmanae628902009-05-03 20:45:03 +02001247 case MMC_VDD_165_195:
1248 pwr = SDHCI_POWER_180;
1249 break;
1250 case MMC_VDD_29_30:
1251 case MMC_VDD_30_31:
1252 pwr = SDHCI_POWER_300;
1253 break;
1254 case MMC_VDD_32_33:
1255 case MMC_VDD_33_34:
1256 pwr = SDHCI_POWER_330;
1257 break;
1258 default:
1259 BUG();
1260 }
1261 }
1262
1263 if (host->pwr == pwr)
Russell Kinge921a8b2014-04-25 13:00:01 +01001264 return;
Pierre Ossman146ad662006-06-30 02:22:23 -07001265
Pierre Ossmanae628902009-05-03 20:45:03 +02001266 host->pwr = pwr;
1267
1268 if (pwr == 0) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001269 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
Adrian Hunterf0710a52013-05-06 12:17:32 +03001270 if (host->quirks2 & SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON)
1271 sdhci_runtime_pm_bus_off(host);
Russell King24fbb3c2014-04-25 13:00:06 +01001272 vdd = 0;
Russell Kinge921a8b2014-04-25 13:00:01 +01001273 } else {
1274 /*
1275 * Spec says that we should clear the power reg before setting
1276 * a new value. Some controllers don't seem to like this though.
1277 */
1278 if (!(host->quirks & SDHCI_QUIRK_SINGLE_POWER_WRITE))
1279 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
Darren Salt9e9dc5f2007-01-27 15:32:31 +01001280
Russell Kinge921a8b2014-04-25 13:00:01 +01001281 /*
1282 * At least the Marvell CaFe chip gets confused if we set the
1283 * voltage and set turn on power at the same time, so set the
1284 * voltage first.
1285 */
1286 if (host->quirks & SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER)
1287 sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL);
Pierre Ossman146ad662006-06-30 02:22:23 -07001288
Russell Kinge921a8b2014-04-25 13:00:01 +01001289 pwr |= SDHCI_POWER_ON;
1290
Pierre Ossmanae628902009-05-03 20:45:03 +02001291 sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL);
1292
Russell Kinge921a8b2014-04-25 13:00:01 +01001293 if (host->quirks2 & SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON)
1294 sdhci_runtime_pm_bus_on(host);
Andres Salomone08c1692008-07-04 10:00:03 -07001295
Russell Kinge921a8b2014-04-25 13:00:01 +01001296 /*
1297 * Some controllers need an extra 10ms delay of 10ms before
1298 * they can apply clock after applying power
1299 */
1300 if (host->quirks & SDHCI_QUIRK_DELAY_AFTER_POWER)
1301 mdelay(10);
1302 }
Pierre Ossman146ad662006-06-30 02:22:23 -07001303}
1304
Pierre Ossmand129bce2006-03-24 03:18:17 -08001305/*****************************************************************************\
1306 * *
1307 * MMC callbacks *
1308 * *
1309\*****************************************************************************/
1310
1311static void sdhci_request(struct mmc_host *mmc, struct mmc_request *mrq)
1312{
1313 struct sdhci_host *host;
Shawn Guo505a8682012-12-11 15:23:42 +08001314 int present;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001315 unsigned long flags;
Aaron Lu473b095a2012-07-03 17:27:49 +08001316 u32 tuning_opcode;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001317
1318 host = mmc_priv(mmc);
1319
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001320 sdhci_runtime_pm_get(host);
1321
Pierre Ossmand129bce2006-03-24 03:18:17 -08001322 spin_lock_irqsave(&host->lock, flags);
1323
1324 WARN_ON(host->mrq != NULL);
1325
Pierre Ossmanf9134312008-12-21 17:01:48 +01001326#ifndef SDHCI_USE_LEDS_CLASS
Pierre Ossmand129bce2006-03-24 03:18:17 -08001327 sdhci_activate_led(host);
Pierre Ossman2f730fe2008-03-17 10:29:38 +01001328#endif
Andrei Warkentine89d4562011-05-23 15:06:37 -05001329
1330 /*
1331 * Ensure we don't send the STOP for non-SET_BLOCK_COUNTED
1332 * requests if Auto-CMD12 is enabled.
1333 */
1334 if (!mrq->sbc && (host->flags & SDHCI_AUTO_CMD12)) {
Jerry Huangc4512f72010-08-10 18:01:59 -07001335 if (mrq->stop) {
1336 mrq->data->stop = NULL;
1337 mrq->stop = NULL;
1338 }
1339 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001340
1341 host->mrq = mrq;
1342
Shawn Guo505a8682012-12-11 15:23:42 +08001343 /*
1344 * Firstly check card presence from cd-gpio. The return could
1345 * be one of the following possibilities:
1346 * negative: cd-gpio is not available
1347 * zero: cd-gpio is used, and card is removed
1348 * one: cd-gpio is used, and card is present
1349 */
1350 present = mmc_gpio_get_cd(host->mmc);
1351 if (present < 0) {
1352 /* If polling, assume that the card is always present. */
1353 if (host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION)
1354 present = 1;
1355 else
1356 present = sdhci_readl(host, SDHCI_PRESENT_STATE) &
1357 SDHCI_CARD_PRESENT;
Guennadi Liakhovetskibec9d4e2012-09-17 16:45:10 +08001358 }
1359
Anton Vorontsov68d1fb72009-03-17 00:13:52 +03001360 if (!present || host->flags & SDHCI_DEVICE_DEAD) {
Pierre Ossman17b04292007-07-22 22:18:46 +02001361 host->mrq->cmd->error = -ENOMEDIUM;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001362 tasklet_schedule(&host->finish_tasklet);
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05301363 } else {
1364 u32 present_state;
1365
1366 present_state = sdhci_readl(host, SDHCI_PRESENT_STATE);
1367 /*
1368 * Check if the re-tuning timer has already expired and there
Yi Sun7756a96d2014-09-09 02:13:59 +00001369 * is no on-going data transfer and DAT0 is not busy. If so,
1370 * we need to execute tuning procedure before sending command.
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05301371 */
1372 if ((host->flags & SDHCI_NEEDS_RETUNING) &&
Yi Sun7756a96d2014-09-09 02:13:59 +00001373 !(present_state & (SDHCI_DOING_WRITE | SDHCI_DOING_READ)) &&
1374 (present_state & SDHCI_DATA_0_LVL_MASK)) {
Chris Ball14efd952012-11-05 14:29:49 -05001375 if (mmc->card) {
1376 /* eMMC uses cmd21 but sd and sdio use cmd19 */
1377 tuning_opcode =
1378 mmc->card->type == MMC_TYPE_MMC ?
1379 MMC_SEND_TUNING_BLOCK_HS200 :
1380 MMC_SEND_TUNING_BLOCK;
Chuansheng Liu63c21182013-11-05 14:52:45 +08001381
1382 /* Here we need to set the host->mrq to NULL,
1383 * in case the pending finish_tasklet
1384 * finishes it incorrectly.
1385 */
1386 host->mrq = NULL;
1387
Chris Ball14efd952012-11-05 14:29:49 -05001388 spin_unlock_irqrestore(&host->lock, flags);
1389 sdhci_execute_tuning(mmc, tuning_opcode);
1390 spin_lock_irqsave(&host->lock, flags);
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05301391
Chris Ball14efd952012-11-05 14:29:49 -05001392 /* Restore original mmc_request structure */
1393 host->mrq = mrq;
1394 }
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05301395 }
1396
Andrei Warkentin8edf63712011-05-23 15:06:39 -05001397 if (mrq->sbc && !(host->flags & SDHCI_AUTO_CMD23))
Andrei Warkentine89d4562011-05-23 15:06:37 -05001398 sdhci_send_command(host, mrq->sbc);
1399 else
1400 sdhci_send_command(host, mrq->cmd);
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05301401 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001402
Pierre Ossman5f25a662006-10-04 02:15:39 -07001403 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -08001404 spin_unlock_irqrestore(&host->lock, flags);
1405}
1406
Russell King2317f562014-04-25 12:57:07 +01001407void sdhci_set_bus_width(struct sdhci_host *host, int width)
1408{
1409 u8 ctrl;
1410
1411 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
1412 if (width == MMC_BUS_WIDTH_8) {
1413 ctrl &= ~SDHCI_CTRL_4BITBUS;
1414 if (host->version >= SDHCI_SPEC_300)
1415 ctrl |= SDHCI_CTRL_8BITBUS;
1416 } else {
1417 if (host->version >= SDHCI_SPEC_300)
1418 ctrl &= ~SDHCI_CTRL_8BITBUS;
1419 if (width == MMC_BUS_WIDTH_4)
1420 ctrl |= SDHCI_CTRL_4BITBUS;
1421 else
1422 ctrl &= ~SDHCI_CTRL_4BITBUS;
1423 }
1424 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
1425}
1426EXPORT_SYMBOL_GPL(sdhci_set_bus_width);
1427
Russell King96d7b782014-04-25 12:59:26 +01001428void sdhci_set_uhs_signaling(struct sdhci_host *host, unsigned timing)
1429{
1430 u16 ctrl_2;
1431
1432 ctrl_2 = sdhci_readw(host, SDHCI_HOST_CONTROL2);
1433 /* Select Bus Speed Mode for host */
1434 ctrl_2 &= ~SDHCI_CTRL_UHS_MASK;
1435 if ((timing == MMC_TIMING_MMC_HS200) ||
1436 (timing == MMC_TIMING_UHS_SDR104))
1437 ctrl_2 |= SDHCI_CTRL_UHS_SDR104;
1438 else if (timing == MMC_TIMING_UHS_SDR12)
1439 ctrl_2 |= SDHCI_CTRL_UHS_SDR12;
1440 else if (timing == MMC_TIMING_UHS_SDR25)
1441 ctrl_2 |= SDHCI_CTRL_UHS_SDR25;
1442 else if (timing == MMC_TIMING_UHS_SDR50)
1443 ctrl_2 |= SDHCI_CTRL_UHS_SDR50;
1444 else if ((timing == MMC_TIMING_UHS_DDR50) ||
1445 (timing == MMC_TIMING_MMC_DDR52))
1446 ctrl_2 |= SDHCI_CTRL_UHS_DDR50;
1447 sdhci_writew(host, ctrl_2, SDHCI_HOST_CONTROL2);
1448}
1449EXPORT_SYMBOL_GPL(sdhci_set_uhs_signaling);
1450
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001451static void sdhci_do_set_ios(struct sdhci_host *host, struct mmc_ios *ios)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001452{
Pierre Ossmand129bce2006-03-24 03:18:17 -08001453 unsigned long flags;
1454 u8 ctrl;
Tim Kryger3a48edc2014-06-13 10:13:56 -07001455 struct mmc_host *mmc = host->mmc;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001456
Pierre Ossmand129bce2006-03-24 03:18:17 -08001457 spin_lock_irqsave(&host->lock, flags);
1458
Adrian Hunterceb61432011-12-27 15:48:41 +02001459 if (host->flags & SDHCI_DEVICE_DEAD) {
1460 spin_unlock_irqrestore(&host->lock, flags);
Tim Kryger3a48edc2014-06-13 10:13:56 -07001461 if (!IS_ERR(mmc->supply.vmmc) &&
1462 ios->power_mode == MMC_POWER_OFF)
Markus Mayer4e743f12014-07-03 13:27:42 -07001463 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, 0);
Adrian Hunterceb61432011-12-27 15:48:41 +02001464 return;
1465 }
Pierre Ossman1e728592008-04-16 19:13:13 +02001466
Pierre Ossmand129bce2006-03-24 03:18:17 -08001467 /*
1468 * Reset the chip on each power off.
1469 * Should clear out any weird states.
1470 */
1471 if (ios->power_mode == MMC_POWER_OFF) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001472 sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE);
Anton Vorontsov7260cf52009-03-17 00:13:48 +03001473 sdhci_reinit(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001474 }
1475
Kevin Liu52983382013-01-31 11:31:37 +08001476 if (host->version >= SDHCI_SPEC_300 &&
Dong Aisheng372c4632013-10-18 19:48:50 +08001477 (ios->power_mode == MMC_POWER_UP) &&
1478 !(host->quirks2 & SDHCI_QUIRK2_PRESET_VALUE_BROKEN))
Kevin Liu52983382013-01-31 11:31:37 +08001479 sdhci_enable_preset_value(host, false);
1480
Russell King373073e2014-04-25 12:58:45 +01001481 if (!ios->clock || ios->clock != host->clock) {
Russell King17710592014-04-25 12:58:55 +01001482 host->ops->set_clock(host, ios->clock);
Russell King373073e2014-04-25 12:58:45 +01001483 host->clock = ios->clock;
Aisheng Dong03d6f5f2014-08-27 15:26:32 +08001484
1485 if (host->quirks & SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK &&
1486 host->clock) {
1487 host->timeout_clk = host->mmc->actual_clock ?
1488 host->mmc->actual_clock / 1000 :
1489 host->clock / 1000;
1490 host->mmc->max_busy_timeout =
1491 host->ops->get_max_timeout_count ?
1492 host->ops->get_max_timeout_count(host) :
1493 1 << 27;
1494 host->mmc->max_busy_timeout /= host->timeout_clk;
1495 }
Russell King373073e2014-04-25 12:58:45 +01001496 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001497
Russell King24fbb3c2014-04-25 13:00:06 +01001498 sdhci_set_power(host, ios->power_mode, ios->vdd);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001499
Philip Rakity643a81f2010-09-23 08:24:32 -07001500 if (host->ops->platform_send_init_74_clocks)
1501 host->ops->platform_send_init_74_clocks(host, ios->power_mode);
1502
Russell King2317f562014-04-25 12:57:07 +01001503 host->ops->set_bus_width(host, ios->bus_width);
Philip Rakity15ec4462010-11-19 16:48:39 -05001504
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001505 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
Pierre Ossmancd9277c2007-02-18 12:07:47 +01001506
Philip Rakity3ab9c8d2010-10-06 11:57:23 -07001507 if ((ios->timing == MMC_TIMING_SD_HS ||
1508 ios->timing == MMC_TIMING_MMC_HS)
1509 && !(host->quirks & SDHCI_QUIRK_NO_HISPD_BIT))
Pierre Ossmancd9277c2007-02-18 12:07:47 +01001510 ctrl |= SDHCI_CTRL_HISPD;
1511 else
1512 ctrl &= ~SDHCI_CTRL_HISPD;
1513
Arindam Nathd6d50a12011-05-05 12:18:59 +05301514 if (host->version >= SDHCI_SPEC_300) {
Arindam Nath49c468f2011-05-05 12:19:01 +05301515 u16 clk, ctrl_2;
Arindam Nath49c468f2011-05-05 12:19:01 +05301516
1517 /* In case of UHS-I modes, set High Speed Enable */
Girish K S069c9f12012-01-06 09:56:39 +05301518 if ((ios->timing == MMC_TIMING_MMC_HS200) ||
Seungwon Jeonbb8175a2014-03-14 21:12:48 +09001519 (ios->timing == MMC_TIMING_MMC_DDR52) ||
Girish K S069c9f12012-01-06 09:56:39 +05301520 (ios->timing == MMC_TIMING_UHS_SDR50) ||
Arindam Nath49c468f2011-05-05 12:19:01 +05301521 (ios->timing == MMC_TIMING_UHS_SDR104) ||
1522 (ios->timing == MMC_TIMING_UHS_DDR50) ||
Alexander Elbsdd8df172012-01-03 23:26:53 -05001523 (ios->timing == MMC_TIMING_UHS_SDR25))
Arindam Nath49c468f2011-05-05 12:19:01 +05301524 ctrl |= SDHCI_CTRL_HISPD;
Arindam Nathd6d50a12011-05-05 12:18:59 +05301525
Russell Kingda91a8f2014-04-25 13:00:12 +01001526 if (!host->preset_enabled) {
Arindam Nath758535c2011-05-05 12:19:00 +05301527 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Arindam Nathd6d50a12011-05-05 12:18:59 +05301528 /*
1529 * We only need to set Driver Strength if the
1530 * preset value enable is not set.
1531 */
Russell Kingda91a8f2014-04-25 13:00:12 +01001532 ctrl_2 = sdhci_readw(host, SDHCI_HOST_CONTROL2);
Arindam Nathd6d50a12011-05-05 12:18:59 +05301533 ctrl_2 &= ~SDHCI_CTRL_DRV_TYPE_MASK;
1534 if (ios->drv_type == MMC_SET_DRIVER_TYPE_A)
1535 ctrl_2 |= SDHCI_CTRL_DRV_TYPE_A;
1536 else if (ios->drv_type == MMC_SET_DRIVER_TYPE_C)
1537 ctrl_2 |= SDHCI_CTRL_DRV_TYPE_C;
1538
1539 sdhci_writew(host, ctrl_2, SDHCI_HOST_CONTROL2);
Arindam Nath758535c2011-05-05 12:19:00 +05301540 } else {
1541 /*
1542 * According to SDHC Spec v3.00, if the Preset Value
1543 * Enable in the Host Control 2 register is set, we
1544 * need to reset SD Clock Enable before changing High
1545 * Speed Enable to avoid generating clock gliches.
1546 */
Arindam Nath758535c2011-05-05 12:19:00 +05301547
1548 /* Reset SD Clock Enable */
1549 clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL);
1550 clk &= ~SDHCI_CLOCK_CARD_EN;
1551 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
1552
1553 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
1554
1555 /* Re-enable SD Clock */
Russell King17710592014-04-25 12:58:55 +01001556 host->ops->set_clock(host, host->clock);
Arindam Nathd6d50a12011-05-05 12:18:59 +05301557 }
Arindam Nath49c468f2011-05-05 12:19:01 +05301558
Arindam Nath49c468f2011-05-05 12:19:01 +05301559 /* Reset SD Clock Enable */
1560 clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL);
1561 clk &= ~SDHCI_CLOCK_CARD_EN;
1562 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
1563
Russell King96d7b782014-04-25 12:59:26 +01001564 host->ops->set_uhs_signaling(host, ios->timing);
Russell Kingd975f122014-04-25 12:59:31 +01001565 host->timing = ios->timing;
Arindam Nath49c468f2011-05-05 12:19:01 +05301566
Kevin Liu52983382013-01-31 11:31:37 +08001567 if (!(host->quirks2 & SDHCI_QUIRK2_PRESET_VALUE_BROKEN) &&
1568 ((ios->timing == MMC_TIMING_UHS_SDR12) ||
1569 (ios->timing == MMC_TIMING_UHS_SDR25) ||
1570 (ios->timing == MMC_TIMING_UHS_SDR50) ||
1571 (ios->timing == MMC_TIMING_UHS_SDR104) ||
1572 (ios->timing == MMC_TIMING_UHS_DDR50))) {
1573 u16 preset;
1574
1575 sdhci_enable_preset_value(host, true);
1576 preset = sdhci_get_preset_value(host);
1577 ios->drv_type = (preset & SDHCI_PRESET_DRV_MASK)
1578 >> SDHCI_PRESET_DRV_SHIFT;
1579 }
1580
Arindam Nath49c468f2011-05-05 12:19:01 +05301581 /* Re-enable SD Clock */
Russell King17710592014-04-25 12:58:55 +01001582 host->ops->set_clock(host, host->clock);
Arindam Nath758535c2011-05-05 12:19:00 +05301583 } else
1584 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Arindam Nathd6d50a12011-05-05 12:18:59 +05301585
Leandro Dorileob8352262007-07-25 23:47:04 +02001586 /*
1587 * Some (ENE) controllers go apeshit on some ios operation,
1588 * signalling timeout and CRC errors even on CMD0. Resetting
1589 * it on each ios seems to solve the problem.
1590 */
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01001591 if(host->quirks & SDHCI_QUIRK_RESET_CMD_DATA_ON_IOS)
Russell King03231f92014-04-25 12:57:12 +01001592 sdhci_do_reset(host, SDHCI_RESET_CMD | SDHCI_RESET_DATA);
Leandro Dorileob8352262007-07-25 23:47:04 +02001593
Pierre Ossman5f25a662006-10-04 02:15:39 -07001594 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -08001595 spin_unlock_irqrestore(&host->lock, flags);
1596}
1597
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001598static void sdhci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
1599{
1600 struct sdhci_host *host = mmc_priv(mmc);
1601
1602 sdhci_runtime_pm_get(host);
1603 sdhci_do_set_ios(host, ios);
1604 sdhci_runtime_pm_put(host);
1605}
1606
Kevin Liu94144a42013-02-28 17:35:53 +08001607static int sdhci_do_get_cd(struct sdhci_host *host)
1608{
1609 int gpio_cd = mmc_gpio_get_cd(host->mmc);
1610
1611 if (host->flags & SDHCI_DEVICE_DEAD)
1612 return 0;
1613
1614 /* If polling/nonremovable, assume that the card is always present. */
1615 if ((host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION) ||
1616 (host->mmc->caps & MMC_CAP_NONREMOVABLE))
1617 return 1;
1618
1619 /* Try slot gpio detect */
1620 if (!IS_ERR_VALUE(gpio_cd))
1621 return !!gpio_cd;
1622
1623 /* Host native card detect */
1624 return !!(sdhci_readl(host, SDHCI_PRESENT_STATE) & SDHCI_CARD_PRESENT);
1625}
1626
1627static int sdhci_get_cd(struct mmc_host *mmc)
1628{
1629 struct sdhci_host *host = mmc_priv(mmc);
1630 int ret;
1631
1632 sdhci_runtime_pm_get(host);
1633 ret = sdhci_do_get_cd(host);
1634 sdhci_runtime_pm_put(host);
1635 return ret;
1636}
1637
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001638static int sdhci_check_ro(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001639{
Pierre Ossmand129bce2006-03-24 03:18:17 -08001640 unsigned long flags;
Wolfram Sang2dfb5792010-10-15 12:21:01 +02001641 int is_readonly;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001642
Pierre Ossmand129bce2006-03-24 03:18:17 -08001643 spin_lock_irqsave(&host->lock, flags);
1644
Pierre Ossman1e728592008-04-16 19:13:13 +02001645 if (host->flags & SDHCI_DEVICE_DEAD)
Wolfram Sang2dfb5792010-10-15 12:21:01 +02001646 is_readonly = 0;
1647 else if (host->ops->get_ro)
1648 is_readonly = host->ops->get_ro(host);
Pierre Ossman1e728592008-04-16 19:13:13 +02001649 else
Wolfram Sang2dfb5792010-10-15 12:21:01 +02001650 is_readonly = !(sdhci_readl(host, SDHCI_PRESENT_STATE)
1651 & SDHCI_WRITE_PROTECT);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001652
1653 spin_unlock_irqrestore(&host->lock, flags);
1654
Wolfram Sang2dfb5792010-10-15 12:21:01 +02001655 /* This quirk needs to be replaced by a callback-function later */
1656 return host->quirks & SDHCI_QUIRK_INVERTED_WRITE_PROTECT ?
1657 !is_readonly : is_readonly;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001658}
1659
Takashi Iwai82b0e232011-04-21 20:26:38 +02001660#define SAMPLE_COUNT 5
1661
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001662static int sdhci_do_get_ro(struct sdhci_host *host)
Takashi Iwai82b0e232011-04-21 20:26:38 +02001663{
Takashi Iwai82b0e232011-04-21 20:26:38 +02001664 int i, ro_count;
1665
Takashi Iwai82b0e232011-04-21 20:26:38 +02001666 if (!(host->quirks & SDHCI_QUIRK_UNSTABLE_RO_DETECT))
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001667 return sdhci_check_ro(host);
Takashi Iwai82b0e232011-04-21 20:26:38 +02001668
1669 ro_count = 0;
1670 for (i = 0; i < SAMPLE_COUNT; i++) {
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001671 if (sdhci_check_ro(host)) {
Takashi Iwai82b0e232011-04-21 20:26:38 +02001672 if (++ro_count > SAMPLE_COUNT / 2)
1673 return 1;
1674 }
1675 msleep(30);
1676 }
1677 return 0;
1678}
1679
Adrian Hunter20758b62011-08-29 16:42:12 +03001680static void sdhci_hw_reset(struct mmc_host *mmc)
1681{
1682 struct sdhci_host *host = mmc_priv(mmc);
1683
1684 if (host->ops && host->ops->hw_reset)
1685 host->ops->hw_reset(host);
1686}
1687
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001688static int sdhci_get_ro(struct mmc_host *mmc)
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001689{
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001690 struct sdhci_host *host = mmc_priv(mmc);
1691 int ret;
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001692
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001693 sdhci_runtime_pm_get(host);
1694 ret = sdhci_do_get_ro(host);
1695 sdhci_runtime_pm_put(host);
1696 return ret;
1697}
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001698
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001699static void sdhci_enable_sdio_irq_nolock(struct sdhci_host *host, int enable)
1700{
Russell Kingbe138552014-04-25 12:55:56 +01001701 if (!(host->flags & SDHCI_DEVICE_DEAD)) {
Russell Kingef104332014-04-25 12:55:41 +01001702 if (enable)
Russell Kingb537f942014-04-25 12:56:01 +01001703 host->ier |= SDHCI_INT_CARD_INT;
Russell Kingef104332014-04-25 12:55:41 +01001704 else
Russell Kingb537f942014-04-25 12:56:01 +01001705 host->ier &= ~SDHCI_INT_CARD_INT;
1706
1707 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
1708 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Russell Kingef104332014-04-25 12:55:41 +01001709 mmiowb();
1710 }
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001711}
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001712
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001713static void sdhci_enable_sdio_irq(struct mmc_host *mmc, int enable)
1714{
1715 struct sdhci_host *host = mmc_priv(mmc);
1716 unsigned long flags;
1717
Russell Kingef104332014-04-25 12:55:41 +01001718 sdhci_runtime_pm_get(host);
1719
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001720 spin_lock_irqsave(&host->lock, flags);
Russell Kingef104332014-04-25 12:55:41 +01001721 if (enable)
1722 host->flags |= SDHCI_SDIO_IRQ_ENABLED;
1723 else
1724 host->flags &= ~SDHCI_SDIO_IRQ_ENABLED;
1725
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001726 sdhci_enable_sdio_irq_nolock(host, enable);
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001727 spin_unlock_irqrestore(&host->lock, flags);
Russell Kingef104332014-04-25 12:55:41 +01001728
1729 sdhci_runtime_pm_put(host);
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001730}
1731
Philip Rakity6231f3d2012-07-23 15:56:23 -07001732static int sdhci_do_start_signal_voltage_switch(struct sdhci_host *host,
Fabio Estevam21f59982013-02-14 10:35:03 -02001733 struct mmc_ios *ios)
Philip Rakity6231f3d2012-07-23 15:56:23 -07001734{
Tim Kryger3a48edc2014-06-13 10:13:56 -07001735 struct mmc_host *mmc = host->mmc;
Philip Rakity6231f3d2012-07-23 15:56:23 -07001736 u16 ctrl;
Kevin Liu20b92a32012-12-17 19:29:26 +08001737 int ret;
Philip Rakity6231f3d2012-07-23 15:56:23 -07001738
1739 /*
1740 * Signal Voltage Switching is only applicable for Host Controllers
1741 * v3.00 and above.
1742 */
1743 if (host->version < SDHCI_SPEC_300)
1744 return 0;
1745
Philip Rakity6231f3d2012-07-23 15:56:23 -07001746 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
Kevin Liu20b92a32012-12-17 19:29:26 +08001747
Fabio Estevam21f59982013-02-14 10:35:03 -02001748 switch (ios->signal_voltage) {
Kevin Liu20b92a32012-12-17 19:29:26 +08001749 case MMC_SIGNAL_VOLTAGE_330:
1750 /* Set 1.8V Signal Enable in the Host Control2 register to 0 */
1751 ctrl &= ~SDHCI_CTRL_VDD_180;
1752 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
1753
Tim Kryger3a48edc2014-06-13 10:13:56 -07001754 if (!IS_ERR(mmc->supply.vqmmc)) {
1755 ret = regulator_set_voltage(mmc->supply.vqmmc, 2700000,
1756 3600000);
Kevin Liu20b92a32012-12-17 19:29:26 +08001757 if (ret) {
Joe Perches66061102014-09-12 14:56:56 -07001758 pr_warn("%s: Switching to 3.3V signalling voltage failed\n",
1759 mmc_hostname(mmc));
Kevin Liu20b92a32012-12-17 19:29:26 +08001760 return -EIO;
1761 }
1762 }
1763 /* Wait for 5ms */
1764 usleep_range(5000, 5500);
1765
1766 /* 3.3V regulator output should be stable within 5 ms */
1767 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
1768 if (!(ctrl & SDHCI_CTRL_VDD_180))
1769 return 0;
1770
Joe Perches66061102014-09-12 14:56:56 -07001771 pr_warn("%s: 3.3V regulator output did not became stable\n",
1772 mmc_hostname(mmc));
Kevin Liu20b92a32012-12-17 19:29:26 +08001773
1774 return -EAGAIN;
1775 case MMC_SIGNAL_VOLTAGE_180:
Tim Kryger3a48edc2014-06-13 10:13:56 -07001776 if (!IS_ERR(mmc->supply.vqmmc)) {
1777 ret = regulator_set_voltage(mmc->supply.vqmmc,
Kevin Liu20b92a32012-12-17 19:29:26 +08001778 1700000, 1950000);
1779 if (ret) {
Joe Perches66061102014-09-12 14:56:56 -07001780 pr_warn("%s: Switching to 1.8V signalling voltage failed\n",
1781 mmc_hostname(mmc));
Kevin Liu20b92a32012-12-17 19:29:26 +08001782 return -EIO;
1783 }
1784 }
1785
1786 /*
1787 * Enable 1.8V Signal Enable in the Host Control2
1788 * register
1789 */
1790 ctrl |= SDHCI_CTRL_VDD_180;
1791 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
1792
Kevin Liu20b92a32012-12-17 19:29:26 +08001793 /* 1.8V regulator output should be stable within 5 ms */
1794 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
1795 if (ctrl & SDHCI_CTRL_VDD_180)
1796 return 0;
1797
Joe Perches66061102014-09-12 14:56:56 -07001798 pr_warn("%s: 1.8V regulator output did not became stable\n",
1799 mmc_hostname(mmc));
Kevin Liu20b92a32012-12-17 19:29:26 +08001800
1801 return -EAGAIN;
1802 case MMC_SIGNAL_VOLTAGE_120:
Tim Kryger3a48edc2014-06-13 10:13:56 -07001803 if (!IS_ERR(mmc->supply.vqmmc)) {
1804 ret = regulator_set_voltage(mmc->supply.vqmmc, 1100000,
1805 1300000);
Kevin Liu20b92a32012-12-17 19:29:26 +08001806 if (ret) {
Joe Perches66061102014-09-12 14:56:56 -07001807 pr_warn("%s: Switching to 1.2V signalling voltage failed\n",
1808 mmc_hostname(mmc));
Kevin Liu20b92a32012-12-17 19:29:26 +08001809 return -EIO;
1810 }
1811 }
1812 return 0;
1813 default:
Arindam Nathf2119df2011-05-05 12:18:57 +05301814 /* No signal voltage switch required */
1815 return 0;
Kevin Liu20b92a32012-12-17 19:29:26 +08001816 }
Arindam Nathf2119df2011-05-05 12:18:57 +05301817}
1818
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001819static int sdhci_start_signal_voltage_switch(struct mmc_host *mmc,
Fabio Estevam21f59982013-02-14 10:35:03 -02001820 struct mmc_ios *ios)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001821{
1822 struct sdhci_host *host = mmc_priv(mmc);
1823 int err;
1824
1825 if (host->version < SDHCI_SPEC_300)
1826 return 0;
1827 sdhci_runtime_pm_get(host);
Fabio Estevam21f59982013-02-14 10:35:03 -02001828 err = sdhci_do_start_signal_voltage_switch(host, ios);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001829 sdhci_runtime_pm_put(host);
1830 return err;
1831}
1832
Kevin Liu20b92a32012-12-17 19:29:26 +08001833static int sdhci_card_busy(struct mmc_host *mmc)
1834{
1835 struct sdhci_host *host = mmc_priv(mmc);
1836 u32 present_state;
1837
1838 sdhci_runtime_pm_get(host);
1839 /* Check whether DAT[3:0] is 0000 */
1840 present_state = sdhci_readl(host, SDHCI_PRESENT_STATE);
1841 sdhci_runtime_pm_put(host);
1842
1843 return !(present_state & SDHCI_DATA_LVL_MASK);
1844}
1845
Girish K S069c9f12012-01-06 09:56:39 +05301846static int sdhci_execute_tuning(struct mmc_host *mmc, u32 opcode)
Arindam Nathb513ea22011-05-05 12:19:04 +05301847{
Russell King4b6f37d2014-04-25 12:59:36 +01001848 struct sdhci_host *host = mmc_priv(mmc);
Arindam Nathb513ea22011-05-05 12:19:04 +05301849 u16 ctrl;
Arindam Nathb513ea22011-05-05 12:19:04 +05301850 int tuning_loop_counter = MAX_TUNING_LOOP;
Arindam Nathb513ea22011-05-05 12:19:04 +05301851 int err = 0;
Aisheng Dong2b35bd82013-12-23 19:13:04 +08001852 unsigned long flags;
Arindam Nathb513ea22011-05-05 12:19:04 +05301853
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001854 sdhci_runtime_pm_get(host);
Aisheng Dong2b35bd82013-12-23 19:13:04 +08001855 spin_lock_irqsave(&host->lock, flags);
Arindam Nathb513ea22011-05-05 12:19:04 +05301856
Arindam Nathb513ea22011-05-05 12:19:04 +05301857 /*
Girish K S069c9f12012-01-06 09:56:39 +05301858 * The Host Controller needs tuning only in case of SDR104 mode
1859 * and for SDR50 mode when Use Tuning for SDR50 is set in the
Arindam Nathb513ea22011-05-05 12:19:04 +05301860 * Capabilities register.
Girish K S069c9f12012-01-06 09:56:39 +05301861 * If the Host Controller supports the HS200 mode then the
1862 * tuning function has to be executed.
Arindam Nathb513ea22011-05-05 12:19:04 +05301863 */
Russell King4b6f37d2014-04-25 12:59:36 +01001864 switch (host->timing) {
1865 case MMC_TIMING_MMC_HS200:
1866 case MMC_TIMING_UHS_SDR104:
1867 break;
Girish K S069c9f12012-01-06 09:56:39 +05301868
Russell King4b6f37d2014-04-25 12:59:36 +01001869 case MMC_TIMING_UHS_SDR50:
1870 if (host->flags & SDHCI_SDR50_NEEDS_TUNING ||
1871 host->flags & SDHCI_SDR104_NEEDS_TUNING)
1872 break;
1873 /* FALLTHROUGH */
1874
1875 default:
Aisheng Dong2b35bd82013-12-23 19:13:04 +08001876 spin_unlock_irqrestore(&host->lock, flags);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001877 sdhci_runtime_pm_put(host);
Arindam Nathb513ea22011-05-05 12:19:04 +05301878 return 0;
1879 }
1880
Dong Aisheng45251812013-09-13 19:11:30 +08001881 if (host->ops->platform_execute_tuning) {
Aisheng Dong2b35bd82013-12-23 19:13:04 +08001882 spin_unlock_irqrestore(&host->lock, flags);
Dong Aisheng45251812013-09-13 19:11:30 +08001883 err = host->ops->platform_execute_tuning(host, opcode);
1884 sdhci_runtime_pm_put(host);
1885 return err;
1886 }
1887
Russell King4b6f37d2014-04-25 12:59:36 +01001888 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
1889 ctrl |= SDHCI_CTRL_EXEC_TUNING;
Arindam Nathb513ea22011-05-05 12:19:04 +05301890 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
1891
1892 /*
1893 * As per the Host Controller spec v3.00, tuning command
1894 * generates Buffer Read Ready interrupt, so enable that.
1895 *
1896 * Note: The spec clearly says that when tuning sequence
1897 * is being performed, the controller does not generate
1898 * interrupts other than Buffer Read Ready interrupt. But
1899 * to make sure we don't hit a controller bug, we _only_
1900 * enable Buffer Read Ready interrupt here.
1901 */
Russell Kingb537f942014-04-25 12:56:01 +01001902 sdhci_writel(host, SDHCI_INT_DATA_AVAIL, SDHCI_INT_ENABLE);
1903 sdhci_writel(host, SDHCI_INT_DATA_AVAIL, SDHCI_SIGNAL_ENABLE);
Arindam Nathb513ea22011-05-05 12:19:04 +05301904
1905 /*
1906 * Issue CMD19 repeatedly till Execute Tuning is set to 0 or the number
1907 * of loops reaches 40 times or a timeout of 150ms occurs.
1908 */
Arindam Nathb513ea22011-05-05 12:19:04 +05301909 do {
1910 struct mmc_command cmd = {0};
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001911 struct mmc_request mrq = {NULL};
Arindam Nathb513ea22011-05-05 12:19:04 +05301912
Girish K S069c9f12012-01-06 09:56:39 +05301913 cmd.opcode = opcode;
Arindam Nathb513ea22011-05-05 12:19:04 +05301914 cmd.arg = 0;
1915 cmd.flags = MMC_RSP_R1 | MMC_CMD_ADTC;
1916 cmd.retries = 0;
1917 cmd.data = NULL;
1918 cmd.error = 0;
1919
Al Cooper7ce45e92014-05-09 11:34:07 -04001920 if (tuning_loop_counter-- == 0)
1921 break;
1922
Arindam Nathb513ea22011-05-05 12:19:04 +05301923 mrq.cmd = &cmd;
1924 host->mrq = &mrq;
1925
1926 /*
1927 * In response to CMD19, the card sends 64 bytes of tuning
1928 * block to the Host Controller. So we set the block size
1929 * to 64 here.
1930 */
Girish K S069c9f12012-01-06 09:56:39 +05301931 if (cmd.opcode == MMC_SEND_TUNING_BLOCK_HS200) {
1932 if (mmc->ios.bus_width == MMC_BUS_WIDTH_8)
1933 sdhci_writew(host, SDHCI_MAKE_BLKSZ(7, 128),
1934 SDHCI_BLOCK_SIZE);
1935 else if (mmc->ios.bus_width == MMC_BUS_WIDTH_4)
1936 sdhci_writew(host, SDHCI_MAKE_BLKSZ(7, 64),
1937 SDHCI_BLOCK_SIZE);
1938 } else {
1939 sdhci_writew(host, SDHCI_MAKE_BLKSZ(7, 64),
1940 SDHCI_BLOCK_SIZE);
1941 }
Arindam Nathb513ea22011-05-05 12:19:04 +05301942
1943 /*
1944 * The tuning block is sent by the card to the host controller.
1945 * So we set the TRNS_READ bit in the Transfer Mode register.
1946 * This also takes care of setting DMA Enable and Multi Block
1947 * Select in the same register to 0.
1948 */
1949 sdhci_writew(host, SDHCI_TRNS_READ, SDHCI_TRANSFER_MODE);
1950
1951 sdhci_send_command(host, &cmd);
1952
1953 host->cmd = NULL;
1954 host->mrq = NULL;
1955
Aisheng Dong2b35bd82013-12-23 19:13:04 +08001956 spin_unlock_irqrestore(&host->lock, flags);
Arindam Nathb513ea22011-05-05 12:19:04 +05301957 /* Wait for Buffer Read Ready interrupt */
1958 wait_event_interruptible_timeout(host->buf_ready_int,
1959 (host->tuning_done == 1),
1960 msecs_to_jiffies(50));
Aisheng Dong2b35bd82013-12-23 19:13:04 +08001961 spin_lock_irqsave(&host->lock, flags);
Arindam Nathb513ea22011-05-05 12:19:04 +05301962
1963 if (!host->tuning_done) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05301964 pr_info(DRIVER_NAME ": Timeout waiting for "
Arindam Nathb513ea22011-05-05 12:19:04 +05301965 "Buffer Read Ready interrupt during tuning "
1966 "procedure, falling back to fixed sampling "
1967 "clock\n");
1968 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
1969 ctrl &= ~SDHCI_CTRL_TUNED_CLK;
1970 ctrl &= ~SDHCI_CTRL_EXEC_TUNING;
1971 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
1972
1973 err = -EIO;
1974 goto out;
1975 }
1976
1977 host->tuning_done = 0;
1978
1979 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
Nick Sanders197160d2014-05-06 18:52:38 -07001980
1981 /* eMMC spec does not require a delay between tuning cycles */
1982 if (opcode == MMC_SEND_TUNING_BLOCK)
1983 mdelay(1);
Arindam Nathb513ea22011-05-05 12:19:04 +05301984 } while (ctrl & SDHCI_CTRL_EXEC_TUNING);
1985
1986 /*
1987 * The Host Driver has exhausted the maximum number of loops allowed,
1988 * so use fixed sampling frequency.
1989 */
Al Cooper7ce45e92014-05-09 11:34:07 -04001990 if (tuning_loop_counter < 0) {
Arindam Nathb513ea22011-05-05 12:19:04 +05301991 ctrl &= ~SDHCI_CTRL_TUNED_CLK;
1992 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
Al Cooper7ce45e92014-05-09 11:34:07 -04001993 }
1994 if (!(ctrl & SDHCI_CTRL_TUNED_CLK)) {
1995 pr_info(DRIVER_NAME ": Tuning procedure"
1996 " failed, falling back to fixed sampling"
1997 " clock\n");
Dong Aisheng114f2bf2013-10-18 19:48:45 +08001998 err = -EIO;
Arindam Nathb513ea22011-05-05 12:19:04 +05301999 }
2000
2001out:
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05302002 /*
2003 * If this is the very first time we are here, we start the retuning
2004 * timer. Since only during the first time, SDHCI_NEEDS_RETUNING
2005 * flag won't be set, we check this condition before actually starting
2006 * the timer.
2007 */
2008 if (!(host->flags & SDHCI_NEEDS_RETUNING) && host->tuning_count &&
2009 (host->tuning_mode == SDHCI_TUNING_MODE_1)) {
Aaron Lu973905f2012-07-04 13:29:09 +08002010 host->flags |= SDHCI_USING_RETUNING_TIMER;
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05302011 mod_timer(&host->tuning_timer, jiffies +
2012 host->tuning_count * HZ);
2013 /* Tuning mode 1 limits the maximum data length to 4MB */
2014 mmc->max_blk_count = (4 * 1024 * 1024) / mmc->max_blk_size;
Arend van Spriel2bc02482014-01-04 13:51:26 +01002015 } else if (host->flags & SDHCI_USING_RETUNING_TIMER) {
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05302016 host->flags &= ~SDHCI_NEEDS_RETUNING;
2017 /* Reload the new initial value for timer */
Arend van Spriel2bc02482014-01-04 13:51:26 +01002018 mod_timer(&host->tuning_timer, jiffies +
2019 host->tuning_count * HZ);
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05302020 }
2021
2022 /*
2023 * In case tuning fails, host controllers which support re-tuning can
2024 * try tuning again at a later time, when the re-tuning timer expires.
2025 * So for these controllers, we return 0. Since there might be other
2026 * controllers who do not have this capability, we return error for
Aaron Lu973905f2012-07-04 13:29:09 +08002027 * them. SDHCI_USING_RETUNING_TIMER means the host is currently using
2028 * a retuning timer to do the retuning for the card.
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05302029 */
Aaron Lu973905f2012-07-04 13:29:09 +08002030 if (err && (host->flags & SDHCI_USING_RETUNING_TIMER))
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05302031 err = 0;
2032
Russell Kingb537f942014-04-25 12:56:01 +01002033 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
2034 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Aisheng Dong2b35bd82013-12-23 19:13:04 +08002035 spin_unlock_irqrestore(&host->lock, flags);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002036 sdhci_runtime_pm_put(host);
Arindam Nathb513ea22011-05-05 12:19:04 +05302037
2038 return err;
2039}
2040
Kevin Liu52983382013-01-31 11:31:37 +08002041
2042static void sdhci_enable_preset_value(struct sdhci_host *host, bool enable)
Arindam Nath4d55c5a2011-05-05 12:19:05 +05302043{
Arindam Nath4d55c5a2011-05-05 12:19:05 +05302044 /* Host Controller v3.00 defines preset value registers */
2045 if (host->version < SDHCI_SPEC_300)
2046 return;
2047
Arindam Nath4d55c5a2011-05-05 12:19:05 +05302048 /*
2049 * We only enable or disable Preset Value if they are not already
2050 * enabled or disabled respectively. Otherwise, we bail out.
2051 */
Russell Kingda91a8f2014-04-25 13:00:12 +01002052 if (host->preset_enabled != enable) {
2053 u16 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
2054
2055 if (enable)
2056 ctrl |= SDHCI_CTRL_PRESET_VAL_ENABLE;
2057 else
2058 ctrl &= ~SDHCI_CTRL_PRESET_VAL_ENABLE;
2059
Arindam Nath4d55c5a2011-05-05 12:19:05 +05302060 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
Russell Kingda91a8f2014-04-25 13:00:12 +01002061
2062 if (enable)
2063 host->flags |= SDHCI_PV_ENABLED;
2064 else
2065 host->flags &= ~SDHCI_PV_ENABLED;
2066
2067 host->preset_enabled = enable;
Arindam Nath4d55c5a2011-05-05 12:19:05 +05302068 }
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002069}
2070
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002071static void sdhci_card_event(struct mmc_host *mmc)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002072{
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002073 struct sdhci_host *host = mmc_priv(mmc);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002074 unsigned long flags;
2075
Christian Daudt722e1282013-06-20 14:26:36 -07002076 /* First check if client has provided their own card event */
2077 if (host->ops->card_event)
2078 host->ops->card_event(host);
2079
Pierre Ossmand129bce2006-03-24 03:18:17 -08002080 spin_lock_irqsave(&host->lock, flags);
2081
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002082 /* Check host->mrq first in case we are runtime suspended */
Shawn Guo9668d762013-06-09 19:49:24 +08002083 if (host->mrq && !sdhci_do_get_cd(host)) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05302084 pr_err("%s: Card removed during transfer!\n",
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002085 mmc_hostname(host->mmc));
Girish K Sa3c76eb2011-10-11 11:44:09 +05302086 pr_err("%s: Resetting controller.\n",
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002087 mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -08002088
Russell King03231f92014-04-25 12:57:12 +01002089 sdhci_do_reset(host, SDHCI_RESET_CMD);
2090 sdhci_do_reset(host, SDHCI_RESET_DATA);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002091
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002092 host->mrq->cmd->error = -ENOMEDIUM;
2093 tasklet_schedule(&host->finish_tasklet);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002094 }
2095
2096 spin_unlock_irqrestore(&host->lock, flags);
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002097}
2098
2099static const struct mmc_host_ops sdhci_ops = {
2100 .request = sdhci_request,
2101 .set_ios = sdhci_set_ios,
Kevin Liu94144a42013-02-28 17:35:53 +08002102 .get_cd = sdhci_get_cd,
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002103 .get_ro = sdhci_get_ro,
2104 .hw_reset = sdhci_hw_reset,
2105 .enable_sdio_irq = sdhci_enable_sdio_irq,
2106 .start_signal_voltage_switch = sdhci_start_signal_voltage_switch,
2107 .execute_tuning = sdhci_execute_tuning,
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002108 .card_event = sdhci_card_event,
Kevin Liu20b92a32012-12-17 19:29:26 +08002109 .card_busy = sdhci_card_busy,
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002110};
2111
2112/*****************************************************************************\
2113 * *
2114 * Tasklets *
2115 * *
2116\*****************************************************************************/
2117
Pierre Ossmand129bce2006-03-24 03:18:17 -08002118static void sdhci_tasklet_finish(unsigned long param)
2119{
2120 struct sdhci_host *host;
2121 unsigned long flags;
2122 struct mmc_request *mrq;
2123
2124 host = (struct sdhci_host*)param;
2125
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002126 spin_lock_irqsave(&host->lock, flags);
2127
Chris Ball0c9c99a2011-04-27 17:35:31 -04002128 /*
2129 * If this tasklet gets rescheduled while running, it will
2130 * be run again afterwards but without any active request.
2131 */
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002132 if (!host->mrq) {
2133 spin_unlock_irqrestore(&host->lock, flags);
Chris Ball0c9c99a2011-04-27 17:35:31 -04002134 return;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002135 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08002136
2137 del_timer(&host->timer);
2138
2139 mrq = host->mrq;
2140
Pierre Ossmand129bce2006-03-24 03:18:17 -08002141 /*
2142 * The controller needs a reset of internal state machines
2143 * upon error conditions.
2144 */
Pierre Ossman1e728592008-04-16 19:13:13 +02002145 if (!(host->flags & SDHCI_DEVICE_DEAD) &&
Ben Dooksb7b4d342011-04-27 14:24:19 +01002146 ((mrq->cmd && mrq->cmd->error) ||
Pierre Ossman1e728592008-04-16 19:13:13 +02002147 (mrq->data && (mrq->data->error ||
2148 (mrq->data->stop && mrq->data->stop->error))) ||
2149 (host->quirks & SDHCI_QUIRK_RESET_AFTER_REQUEST))) {
Pierre Ossman645289d2006-06-30 02:22:33 -07002150
2151 /* Some controllers need this kick or reset won't work here */
Andy Shevchenko8213af32013-01-07 16:31:08 +02002152 if (host->quirks & SDHCI_QUIRK_CLOCK_BEFORE_RESET)
Pierre Ossman645289d2006-06-30 02:22:33 -07002153 /* This is to force an update */
Russell King17710592014-04-25 12:58:55 +01002154 host->ops->set_clock(host, host->clock);
Pierre Ossman645289d2006-06-30 02:22:33 -07002155
2156 /* Spec says we should do both at the same time, but Ricoh
2157 controllers do not like that. */
Russell King03231f92014-04-25 12:57:12 +01002158 sdhci_do_reset(host, SDHCI_RESET_CMD);
2159 sdhci_do_reset(host, SDHCI_RESET_DATA);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002160 }
2161
2162 host->mrq = NULL;
2163 host->cmd = NULL;
2164 host->data = NULL;
2165
Pierre Ossmanf9134312008-12-21 17:01:48 +01002166#ifndef SDHCI_USE_LEDS_CLASS
Pierre Ossmand129bce2006-03-24 03:18:17 -08002167 sdhci_deactivate_led(host);
Pierre Ossman2f730fe2008-03-17 10:29:38 +01002168#endif
Pierre Ossmand129bce2006-03-24 03:18:17 -08002169
Pierre Ossman5f25a662006-10-04 02:15:39 -07002170 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -08002171 spin_unlock_irqrestore(&host->lock, flags);
2172
2173 mmc_request_done(host->mmc, mrq);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002174 sdhci_runtime_pm_put(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002175}
2176
2177static void sdhci_timeout_timer(unsigned long data)
2178{
2179 struct sdhci_host *host;
2180 unsigned long flags;
2181
2182 host = (struct sdhci_host*)data;
2183
2184 spin_lock_irqsave(&host->lock, flags);
2185
2186 if (host->mrq) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05302187 pr_err("%s: Timeout waiting for hardware "
Pierre Ossmanacf1da42007-02-09 08:29:19 +01002188 "interrupt.\n", mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -08002189 sdhci_dumpregs(host);
2190
2191 if (host->data) {
Pierre Ossman17b04292007-07-22 22:18:46 +02002192 host->data->error = -ETIMEDOUT;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002193 sdhci_finish_data(host);
2194 } else {
2195 if (host->cmd)
Pierre Ossman17b04292007-07-22 22:18:46 +02002196 host->cmd->error = -ETIMEDOUT;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002197 else
Pierre Ossman17b04292007-07-22 22:18:46 +02002198 host->mrq->cmd->error = -ETIMEDOUT;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002199
2200 tasklet_schedule(&host->finish_tasklet);
2201 }
2202 }
2203
Pierre Ossman5f25a662006-10-04 02:15:39 -07002204 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -08002205 spin_unlock_irqrestore(&host->lock, flags);
2206}
2207
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05302208static void sdhci_tuning_timer(unsigned long data)
2209{
2210 struct sdhci_host *host;
2211 unsigned long flags;
2212
2213 host = (struct sdhci_host *)data;
2214
2215 spin_lock_irqsave(&host->lock, flags);
2216
2217 host->flags |= SDHCI_NEEDS_RETUNING;
2218
2219 spin_unlock_irqrestore(&host->lock, flags);
2220}
2221
Pierre Ossmand129bce2006-03-24 03:18:17 -08002222/*****************************************************************************\
2223 * *
2224 * Interrupt handling *
2225 * *
2226\*****************************************************************************/
2227
2228static void sdhci_cmd_irq(struct sdhci_host *host, u32 intmask)
2229{
2230 BUG_ON(intmask == 0);
2231
2232 if (!host->cmd) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05302233 pr_err("%s: Got command interrupt 0x%08x even "
Pierre Ossmanb67ac3f2007-08-12 17:29:47 +02002234 "though no command operation was in progress.\n",
2235 mmc_hostname(host->mmc), (unsigned)intmask);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002236 sdhci_dumpregs(host);
2237 return;
2238 }
2239
Pierre Ossman43b58b32007-07-25 23:15:27 +02002240 if (intmask & SDHCI_INT_TIMEOUT)
Pierre Ossman17b04292007-07-22 22:18:46 +02002241 host->cmd->error = -ETIMEDOUT;
2242 else if (intmask & (SDHCI_INT_CRC | SDHCI_INT_END_BIT |
2243 SDHCI_INT_INDEX))
2244 host->cmd->error = -EILSEQ;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002245
Pierre Ossmane8095172008-07-25 01:09:08 +02002246 if (host->cmd->error) {
Pierre Ossmand129bce2006-03-24 03:18:17 -08002247 tasklet_schedule(&host->finish_tasklet);
Pierre Ossmane8095172008-07-25 01:09:08 +02002248 return;
2249 }
2250
2251 /*
2252 * The host can send and interrupt when the busy state has
2253 * ended, allowing us to wait without wasting CPU cycles.
2254 * Unfortunately this is overloaded on the "data complete"
2255 * interrupt, so we need to take some care when handling
2256 * it.
2257 *
2258 * Note: The 1.0 specification is a bit ambiguous about this
2259 * feature so there might be some problems with older
2260 * controllers.
2261 */
2262 if (host->cmd->flags & MMC_RSP_BUSY) {
2263 if (host->cmd->data)
2264 DBG("Cannot wait for busy signal when also "
2265 "doing a data transfer");
Chanho Mine99783a2014-08-30 12:40:40 +09002266 else if (!(host->quirks & SDHCI_QUIRK_NO_BUSY_IRQ)
2267 && !host->busy_handle) {
2268 /* Mark that command complete before busy is ended */
2269 host->busy_handle = 1;
Pierre Ossmane8095172008-07-25 01:09:08 +02002270 return;
Chanho Mine99783a2014-08-30 12:40:40 +09002271 }
Ben Dooksf9454052009-02-20 20:33:08 +03002272
2273 /* The controller does not support the end-of-busy IRQ,
2274 * fall through and take the SDHCI_INT_RESPONSE */
Pierre Ossmane8095172008-07-25 01:09:08 +02002275 }
2276
2277 if (intmask & SDHCI_INT_RESPONSE)
Pierre Ossman43b58b32007-07-25 23:15:27 +02002278 sdhci_finish_command(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002279}
2280
George G. Davis0957c332010-02-18 12:32:12 -05002281#ifdef CONFIG_MMC_DEBUG
Ben Dooks6882a8c2009-06-14 13:52:38 +01002282static void sdhci_show_adma_error(struct sdhci_host *host)
2283{
2284 const char *name = mmc_hostname(host->mmc);
2285 u8 *desc = host->adma_desc;
2286 __le32 *dma;
2287 __le16 *len;
2288 u8 attr;
2289
2290 sdhci_dumpregs(host);
2291
2292 while (true) {
2293 dma = (__le32 *)(desc + 4);
2294 len = (__le16 *)(desc + 2);
2295 attr = *desc;
2296
2297 DBG("%s: %p: DMA 0x%08x, LEN 0x%04x, Attr=0x%02x\n",
2298 name, desc, le32_to_cpu(*dma), le16_to_cpu(*len), attr);
2299
2300 desc += 8;
2301
2302 if (attr & 2)
2303 break;
2304 }
2305}
2306#else
2307static void sdhci_show_adma_error(struct sdhci_host *host) { }
2308#endif
2309
Pierre Ossmand129bce2006-03-24 03:18:17 -08002310static void sdhci_data_irq(struct sdhci_host *host, u32 intmask)
2311{
Girish K S069c9f12012-01-06 09:56:39 +05302312 u32 command;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002313 BUG_ON(intmask == 0);
2314
Arindam Nathb513ea22011-05-05 12:19:04 +05302315 /* CMD19 generates _only_ Buffer Read Ready interrupt */
2316 if (intmask & SDHCI_INT_DATA_AVAIL) {
Girish K S069c9f12012-01-06 09:56:39 +05302317 command = SDHCI_GET_CMD(sdhci_readw(host, SDHCI_COMMAND));
2318 if (command == MMC_SEND_TUNING_BLOCK ||
2319 command == MMC_SEND_TUNING_BLOCK_HS200) {
Arindam Nathb513ea22011-05-05 12:19:04 +05302320 host->tuning_done = 1;
2321 wake_up(&host->buf_ready_int);
2322 return;
2323 }
2324 }
2325
Pierre Ossmand129bce2006-03-24 03:18:17 -08002326 if (!host->data) {
2327 /*
Pierre Ossmane8095172008-07-25 01:09:08 +02002328 * The "data complete" interrupt is also used to
2329 * indicate that a busy state has ended. See comment
2330 * above in sdhci_cmd_irq().
Pierre Ossmand129bce2006-03-24 03:18:17 -08002331 */
Pierre Ossmane8095172008-07-25 01:09:08 +02002332 if (host->cmd && (host->cmd->flags & MMC_RSP_BUSY)) {
Matthieu CASTETc5abd5e2014-08-14 16:03:17 +02002333 if (intmask & SDHCI_INT_DATA_TIMEOUT) {
2334 host->cmd->error = -ETIMEDOUT;
2335 tasklet_schedule(&host->finish_tasklet);
2336 return;
2337 }
Pierre Ossmane8095172008-07-25 01:09:08 +02002338 if (intmask & SDHCI_INT_DATA_END) {
Chanho Mine99783a2014-08-30 12:40:40 +09002339 /*
2340 * Some cards handle busy-end interrupt
2341 * before the command completed, so make
2342 * sure we do things in the proper order.
2343 */
2344 if (host->busy_handle)
2345 sdhci_finish_command(host);
2346 else
2347 host->busy_handle = 1;
Pierre Ossmane8095172008-07-25 01:09:08 +02002348 return;
2349 }
2350 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08002351
Girish K Sa3c76eb2011-10-11 11:44:09 +05302352 pr_err("%s: Got data interrupt 0x%08x even "
Pierre Ossmanb67ac3f2007-08-12 17:29:47 +02002353 "though no data operation was in progress.\n",
2354 mmc_hostname(host->mmc), (unsigned)intmask);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002355 sdhci_dumpregs(host);
2356
2357 return;
2358 }
2359
2360 if (intmask & SDHCI_INT_DATA_TIMEOUT)
Pierre Ossman17b04292007-07-22 22:18:46 +02002361 host->data->error = -ETIMEDOUT;
Aries Lee22113ef2010-12-15 08:14:24 +01002362 else if (intmask & SDHCI_INT_DATA_END_BIT)
2363 host->data->error = -EILSEQ;
2364 else if ((intmask & SDHCI_INT_DATA_CRC) &&
2365 SDHCI_GET_CMD(sdhci_readw(host, SDHCI_COMMAND))
2366 != MMC_BUS_TEST_R)
Pierre Ossman17b04292007-07-22 22:18:46 +02002367 host->data->error = -EILSEQ;
Ben Dooks6882a8c2009-06-14 13:52:38 +01002368 else if (intmask & SDHCI_INT_ADMA_ERROR) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05302369 pr_err("%s: ADMA error\n", mmc_hostname(host->mmc));
Ben Dooks6882a8c2009-06-14 13:52:38 +01002370 sdhci_show_adma_error(host);
Pierre Ossman2134a922008-06-28 18:28:51 +02002371 host->data->error = -EIO;
Haijun Zhanga4071fb2012-12-04 10:41:28 +08002372 if (host->ops->adma_workaround)
2373 host->ops->adma_workaround(host, intmask);
Ben Dooks6882a8c2009-06-14 13:52:38 +01002374 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08002375
Pierre Ossman17b04292007-07-22 22:18:46 +02002376 if (host->data->error)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002377 sdhci_finish_data(host);
2378 else {
Pierre Ossmana406f5a2006-07-02 16:50:59 +01002379 if (intmask & (SDHCI_INT_DATA_AVAIL | SDHCI_INT_SPACE_AVAIL))
Pierre Ossmand129bce2006-03-24 03:18:17 -08002380 sdhci_transfer_pio(host);
2381
Pierre Ossman6ba736a2007-05-13 22:39:23 +02002382 /*
2383 * We currently don't do anything fancy with DMA
2384 * boundaries, but as we can't disable the feature
2385 * we need to at least restart the transfer.
Mikko Vinnif6a03cb2011-04-12 09:36:18 -04002386 *
2387 * According to the spec sdhci_readl(host, SDHCI_DMA_ADDRESS)
2388 * should return a valid address to continue from, but as
2389 * some controllers are faulty, don't trust them.
Pierre Ossman6ba736a2007-05-13 22:39:23 +02002390 */
Mikko Vinnif6a03cb2011-04-12 09:36:18 -04002391 if (intmask & SDHCI_INT_DMA_END) {
2392 u32 dmastart, dmanow;
2393 dmastart = sg_dma_address(host->data->sg);
2394 dmanow = dmastart + host->data->bytes_xfered;
2395 /*
2396 * Force update to the next DMA block boundary.
2397 */
2398 dmanow = (dmanow &
2399 ~(SDHCI_DEFAULT_BOUNDARY_SIZE - 1)) +
2400 SDHCI_DEFAULT_BOUNDARY_SIZE;
2401 host->data->bytes_xfered = dmanow - dmastart;
2402 DBG("%s: DMA base 0x%08x, transferred 0x%06x bytes,"
2403 " next 0x%08x\n",
2404 mmc_hostname(host->mmc), dmastart,
2405 host->data->bytes_xfered, dmanow);
2406 sdhci_writel(host, dmanow, SDHCI_DMA_ADDRESS);
2407 }
Pierre Ossman6ba736a2007-05-13 22:39:23 +02002408
Pierre Ossmane538fbe2007-08-12 16:46:32 +02002409 if (intmask & SDHCI_INT_DATA_END) {
2410 if (host->cmd) {
2411 /*
2412 * Data managed to finish before the
2413 * command completed. Make sure we do
2414 * things in the proper order.
2415 */
2416 host->data_early = 1;
2417 } else {
2418 sdhci_finish_data(host);
2419 }
2420 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08002421 }
2422}
2423
David Howells7d12e782006-10-05 14:55:46 +01002424static irqreturn_t sdhci_irq(int irq, void *dev_id)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002425{
Russell King781e9892014-04-25 12:55:46 +01002426 irqreturn_t result = IRQ_NONE;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002427 struct sdhci_host *host = dev_id;
Russell King41005002014-04-25 12:55:36 +01002428 u32 intmask, mask, unexpected = 0;
Russell King781e9892014-04-25 12:55:46 +01002429 int max_loops = 16;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002430
2431 spin_lock(&host->lock);
2432
Russell Kingbe138552014-04-25 12:55:56 +01002433 if (host->runtime_suspended && !sdhci_sdio_irq_enabled(host)) {
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002434 spin_unlock(&host->lock);
Adrian Hunter655bca72014-03-11 10:09:36 +02002435 return IRQ_NONE;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002436 }
2437
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03002438 intmask = sdhci_readl(host, SDHCI_INT_STATUS);
Mark Lord62df67a52007-03-06 13:30:13 +01002439 if (!intmask || intmask == 0xffffffff) {
Pierre Ossmand129bce2006-03-24 03:18:17 -08002440 result = IRQ_NONE;
2441 goto out;
2442 }
2443
Russell King41005002014-04-25 12:55:36 +01002444 do {
2445 /* Clear selected interrupts. */
2446 mask = intmask & (SDHCI_INT_CMD_MASK | SDHCI_INT_DATA_MASK |
2447 SDHCI_INT_BUS_POWER);
2448 sdhci_writel(host, mask, SDHCI_INT_STATUS);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002449
Russell King41005002014-04-25 12:55:36 +01002450 DBG("*** %s got interrupt: 0x%08x\n",
2451 mmc_hostname(host->mmc), intmask);
2452
2453 if (intmask & (SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE)) {
2454 u32 present = sdhci_readl(host, SDHCI_PRESENT_STATE) &
2455 SDHCI_CARD_PRESENT;
2456
2457 /*
2458 * There is a observation on i.mx esdhc. INSERT
2459 * bit will be immediately set again when it gets
2460 * cleared, if a card is inserted. We have to mask
2461 * the irq to prevent interrupt storm which will
2462 * freeze the system. And the REMOVE gets the
2463 * same situation.
2464 *
2465 * More testing are needed here to ensure it works
2466 * for other platforms though.
2467 */
Russell Kingb537f942014-04-25 12:56:01 +01002468 host->ier &= ~(SDHCI_INT_CARD_INSERT |
2469 SDHCI_INT_CARD_REMOVE);
2470 host->ier |= present ? SDHCI_INT_CARD_REMOVE :
2471 SDHCI_INT_CARD_INSERT;
2472 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
2473 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Russell King41005002014-04-25 12:55:36 +01002474
2475 sdhci_writel(host, intmask & (SDHCI_INT_CARD_INSERT |
2476 SDHCI_INT_CARD_REMOVE), SDHCI_INT_STATUS);
Russell King3560db82014-04-25 12:55:51 +01002477
2478 host->thread_isr |= intmask & (SDHCI_INT_CARD_INSERT |
2479 SDHCI_INT_CARD_REMOVE);
2480 result = IRQ_WAKE_THREAD;
Russell King41005002014-04-25 12:55:36 +01002481 }
2482
2483 if (intmask & SDHCI_INT_CMD_MASK)
2484 sdhci_cmd_irq(host, intmask & SDHCI_INT_CMD_MASK);
2485
2486 if (intmask & SDHCI_INT_DATA_MASK)
2487 sdhci_data_irq(host, intmask & SDHCI_INT_DATA_MASK);
2488
2489 if (intmask & SDHCI_INT_BUS_POWER)
2490 pr_err("%s: Card is consuming too much power!\n",
2491 mmc_hostname(host->mmc));
2492
Russell King781e9892014-04-25 12:55:46 +01002493 if (intmask & SDHCI_INT_CARD_INT) {
2494 sdhci_enable_sdio_irq_nolock(host, false);
2495 host->thread_isr |= SDHCI_INT_CARD_INT;
2496 result = IRQ_WAKE_THREAD;
2497 }
Russell King41005002014-04-25 12:55:36 +01002498
2499 intmask &= ~(SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE |
2500 SDHCI_INT_CMD_MASK | SDHCI_INT_DATA_MASK |
2501 SDHCI_INT_ERROR | SDHCI_INT_BUS_POWER |
2502 SDHCI_INT_CARD_INT);
2503
2504 if (intmask) {
2505 unexpected |= intmask;
2506 sdhci_writel(host, intmask, SDHCI_INT_STATUS);
2507 }
2508
Russell King781e9892014-04-25 12:55:46 +01002509 if (result == IRQ_NONE)
2510 result = IRQ_HANDLED;
Russell King41005002014-04-25 12:55:36 +01002511
2512 intmask = sdhci_readl(host, SDHCI_INT_STATUS);
Russell King41005002014-04-25 12:55:36 +01002513 } while (intmask && --max_loops);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002514out:
2515 spin_unlock(&host->lock);
2516
Alexander Stein6379b232012-03-14 09:52:10 +01002517 if (unexpected) {
2518 pr_err("%s: Unexpected interrupt 0x%08x.\n",
2519 mmc_hostname(host->mmc), unexpected);
2520 sdhci_dumpregs(host);
2521 }
Pierre Ossmanf75979b2007-09-04 07:59:18 +02002522
Pierre Ossmand129bce2006-03-24 03:18:17 -08002523 return result;
2524}
2525
Russell King781e9892014-04-25 12:55:46 +01002526static irqreturn_t sdhci_thread_irq(int irq, void *dev_id)
2527{
2528 struct sdhci_host *host = dev_id;
2529 unsigned long flags;
2530 u32 isr;
2531
2532 spin_lock_irqsave(&host->lock, flags);
2533 isr = host->thread_isr;
2534 host->thread_isr = 0;
2535 spin_unlock_irqrestore(&host->lock, flags);
2536
Russell King3560db82014-04-25 12:55:51 +01002537 if (isr & (SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE)) {
2538 sdhci_card_event(host->mmc);
2539 mmc_detect_change(host->mmc, msecs_to_jiffies(200));
2540 }
2541
Russell King781e9892014-04-25 12:55:46 +01002542 if (isr & SDHCI_INT_CARD_INT) {
2543 sdio_run_irqs(host->mmc);
2544
2545 spin_lock_irqsave(&host->lock, flags);
2546 if (host->flags & SDHCI_SDIO_IRQ_ENABLED)
2547 sdhci_enable_sdio_irq_nolock(host, true);
2548 spin_unlock_irqrestore(&host->lock, flags);
2549 }
2550
2551 return isr ? IRQ_HANDLED : IRQ_NONE;
2552}
2553
Pierre Ossmand129bce2006-03-24 03:18:17 -08002554/*****************************************************************************\
2555 * *
2556 * Suspend/resume *
2557 * *
2558\*****************************************************************************/
2559
2560#ifdef CONFIG_PM
Kevin Liuad080d72013-01-05 17:21:33 +08002561void sdhci_enable_irq_wakeups(struct sdhci_host *host)
2562{
2563 u8 val;
2564 u8 mask = SDHCI_WAKE_ON_INSERT | SDHCI_WAKE_ON_REMOVE
2565 | SDHCI_WAKE_ON_INT;
2566
2567 val = sdhci_readb(host, SDHCI_WAKE_UP_CONTROL);
2568 val |= mask ;
2569 /* Avoid fake wake up */
2570 if (host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION)
2571 val &= ~(SDHCI_WAKE_ON_INSERT | SDHCI_WAKE_ON_REMOVE);
2572 sdhci_writeb(host, val, SDHCI_WAKE_UP_CONTROL);
2573}
2574EXPORT_SYMBOL_GPL(sdhci_enable_irq_wakeups);
2575
Fabio Estevam0b10f472014-08-30 14:53:13 -03002576static void sdhci_disable_irq_wakeups(struct sdhci_host *host)
Kevin Liuad080d72013-01-05 17:21:33 +08002577{
2578 u8 val;
2579 u8 mask = SDHCI_WAKE_ON_INSERT | SDHCI_WAKE_ON_REMOVE
2580 | SDHCI_WAKE_ON_INT;
2581
2582 val = sdhci_readb(host, SDHCI_WAKE_UP_CONTROL);
2583 val &= ~mask;
2584 sdhci_writeb(host, val, SDHCI_WAKE_UP_CONTROL);
2585}
Pierre Ossmand129bce2006-03-24 03:18:17 -08002586
Manuel Lauss29495aa2011-11-03 11:09:45 +01002587int sdhci_suspend_host(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002588{
Anton Vorontsov7260cf52009-03-17 00:13:48 +03002589 sdhci_disable_card_detection(host);
2590
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05302591 /* Disable tuning since we are suspending */
Aaron Lu973905f2012-07-04 13:29:09 +08002592 if (host->flags & SDHCI_USING_RETUNING_TIMER) {
Aaron Luc6ced0d2011-12-28 11:11:12 +08002593 del_timer_sync(&host->tuning_timer);
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05302594 host->flags &= ~SDHCI_NEEDS_RETUNING;
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05302595 }
2596
Kevin Liuad080d72013-01-05 17:21:33 +08002597 if (!device_may_wakeup(mmc_dev(host->mmc))) {
Russell Kingb537f942014-04-25 12:56:01 +01002598 host->ier = 0;
2599 sdhci_writel(host, 0, SDHCI_INT_ENABLE);
2600 sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE);
Kevin Liuad080d72013-01-05 17:21:33 +08002601 free_irq(host->irq, host);
2602 } else {
2603 sdhci_enable_irq_wakeups(host);
2604 enable_irq_wake(host->irq);
2605 }
Ulf Hansson4ee14ec2013-09-25 14:15:24 +02002606 return 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002607}
2608
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002609EXPORT_SYMBOL_GPL(sdhci_suspend_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002610
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002611int sdhci_resume_host(struct sdhci_host *host)
2612{
Ulf Hansson4ee14ec2013-09-25 14:15:24 +02002613 int ret = 0;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002614
Richard Röjforsa13abc72009-09-22 16:45:30 -07002615 if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002616 if (host->ops->enable_dma)
2617 host->ops->enable_dma(host);
2618 }
2619
Kevin Liuad080d72013-01-05 17:21:33 +08002620 if (!device_may_wakeup(mmc_dev(host->mmc))) {
Russell King781e9892014-04-25 12:55:46 +01002621 ret = request_threaded_irq(host->irq, sdhci_irq,
2622 sdhci_thread_irq, IRQF_SHARED,
2623 mmc_hostname(host->mmc), host);
Kevin Liuad080d72013-01-05 17:21:33 +08002624 if (ret)
2625 return ret;
2626 } else {
2627 sdhci_disable_irq_wakeups(host);
2628 disable_irq_wake(host->irq);
2629 }
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002630
Adrian Hunter6308d292012-02-07 14:48:54 +02002631 if ((host->mmc->pm_flags & MMC_PM_KEEP_POWER) &&
2632 (host->quirks2 & SDHCI_QUIRK2_HOST_OFF_CARD_ON)) {
2633 /* Card keeps power but host controller does not */
2634 sdhci_init(host, 0);
2635 host->pwr = 0;
2636 host->clock = 0;
2637 sdhci_do_set_ios(host, &host->mmc->ios);
2638 } else {
2639 sdhci_init(host, (host->mmc->pm_flags & MMC_PM_KEEP_POWER));
2640 mmiowb();
2641 }
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002642
Anton Vorontsov7260cf52009-03-17 00:13:48 +03002643 sdhci_enable_card_detection(host);
2644
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05302645 /* Set the re-tuning expiration flag */
Aaron Lu973905f2012-07-04 13:29:09 +08002646 if (host->flags & SDHCI_USING_RETUNING_TIMER)
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05302647 host->flags |= SDHCI_NEEDS_RETUNING;
2648
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08002649 return ret;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002650}
2651
2652EXPORT_SYMBOL_GPL(sdhci_resume_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002653#endif /* CONFIG_PM */
2654
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002655#ifdef CONFIG_PM_RUNTIME
2656
2657static int sdhci_runtime_pm_get(struct sdhci_host *host)
2658{
2659 return pm_runtime_get_sync(host->mmc->parent);
2660}
2661
2662static int sdhci_runtime_pm_put(struct sdhci_host *host)
2663{
2664 pm_runtime_mark_last_busy(host->mmc->parent);
2665 return pm_runtime_put_autosuspend(host->mmc->parent);
2666}
2667
Adrian Hunterf0710a52013-05-06 12:17:32 +03002668static void sdhci_runtime_pm_bus_on(struct sdhci_host *host)
2669{
2670 if (host->runtime_suspended || host->bus_on)
2671 return;
2672 host->bus_on = true;
2673 pm_runtime_get_noresume(host->mmc->parent);
2674}
2675
2676static void sdhci_runtime_pm_bus_off(struct sdhci_host *host)
2677{
2678 if (host->runtime_suspended || !host->bus_on)
2679 return;
2680 host->bus_on = false;
2681 pm_runtime_put_noidle(host->mmc->parent);
2682}
2683
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002684int sdhci_runtime_suspend_host(struct sdhci_host *host)
2685{
2686 unsigned long flags;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002687
2688 /* Disable tuning since we are suspending */
Aaron Lu973905f2012-07-04 13:29:09 +08002689 if (host->flags & SDHCI_USING_RETUNING_TIMER) {
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002690 del_timer_sync(&host->tuning_timer);
2691 host->flags &= ~SDHCI_NEEDS_RETUNING;
2692 }
2693
2694 spin_lock_irqsave(&host->lock, flags);
Russell Kingb537f942014-04-25 12:56:01 +01002695 host->ier &= SDHCI_INT_CARD_INT;
2696 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
2697 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002698 spin_unlock_irqrestore(&host->lock, flags);
2699
Russell King781e9892014-04-25 12:55:46 +01002700 synchronize_hardirq(host->irq);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002701
2702 spin_lock_irqsave(&host->lock, flags);
2703 host->runtime_suspended = true;
2704 spin_unlock_irqrestore(&host->lock, flags);
2705
Markus Pargmann8a125ba2014-06-04 15:24:29 +02002706 return 0;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002707}
2708EXPORT_SYMBOL_GPL(sdhci_runtime_suspend_host);
2709
2710int sdhci_runtime_resume_host(struct sdhci_host *host)
2711{
2712 unsigned long flags;
Markus Pargmann8a125ba2014-06-04 15:24:29 +02002713 int host_flags = host->flags;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002714
2715 if (host_flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
2716 if (host->ops->enable_dma)
2717 host->ops->enable_dma(host);
2718 }
2719
2720 sdhci_init(host, 0);
2721
2722 /* Force clock and power re-program */
2723 host->pwr = 0;
2724 host->clock = 0;
2725 sdhci_do_set_ios(host, &host->mmc->ios);
2726
2727 sdhci_do_start_signal_voltage_switch(host, &host->mmc->ios);
Kevin Liu52983382013-01-31 11:31:37 +08002728 if ((host_flags & SDHCI_PV_ENABLED) &&
2729 !(host->quirks2 & SDHCI_QUIRK2_PRESET_VALUE_BROKEN)) {
2730 spin_lock_irqsave(&host->lock, flags);
2731 sdhci_enable_preset_value(host, true);
2732 spin_unlock_irqrestore(&host->lock, flags);
2733 }
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002734
2735 /* Set the re-tuning expiration flag */
Aaron Lu973905f2012-07-04 13:29:09 +08002736 if (host->flags & SDHCI_USING_RETUNING_TIMER)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002737 host->flags |= SDHCI_NEEDS_RETUNING;
2738
2739 spin_lock_irqsave(&host->lock, flags);
2740
2741 host->runtime_suspended = false;
2742
2743 /* Enable SDIO IRQ */
Russell Kingef104332014-04-25 12:55:41 +01002744 if (host->flags & SDHCI_SDIO_IRQ_ENABLED)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002745 sdhci_enable_sdio_irq_nolock(host, true);
2746
2747 /* Enable Card Detection */
2748 sdhci_enable_card_detection(host);
2749
2750 spin_unlock_irqrestore(&host->lock, flags);
2751
Markus Pargmann8a125ba2014-06-04 15:24:29 +02002752 return 0;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002753}
2754EXPORT_SYMBOL_GPL(sdhci_runtime_resume_host);
2755
2756#endif
2757
Pierre Ossmand129bce2006-03-24 03:18:17 -08002758/*****************************************************************************\
2759 * *
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002760 * Device allocation/registration *
Pierre Ossmand129bce2006-03-24 03:18:17 -08002761 * *
2762\*****************************************************************************/
2763
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002764struct sdhci_host *sdhci_alloc_host(struct device *dev,
2765 size_t priv_size)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002766{
Pierre Ossmand129bce2006-03-24 03:18:17 -08002767 struct mmc_host *mmc;
2768 struct sdhci_host *host;
2769
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002770 WARN_ON(dev == NULL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002771
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002772 mmc = mmc_alloc_host(sizeof(struct sdhci_host) + priv_size, dev);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002773 if (!mmc)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002774 return ERR_PTR(-ENOMEM);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002775
2776 host = mmc_priv(mmc);
2777 host->mmc = mmc;
2778
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002779 return host;
2780}
Pierre Ossman8a4da142006-10-04 02:15:40 -07002781
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002782EXPORT_SYMBOL_GPL(sdhci_alloc_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002783
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002784int sdhci_add_host(struct sdhci_host *host)
2785{
2786 struct mmc_host *mmc;
Philip Rakitybd6a8c32012-06-27 21:49:27 -07002787 u32 caps[2] = {0, 0};
Arindam Nathf2119df2011-05-05 12:18:57 +05302788 u32 max_current_caps;
2789 unsigned int ocr_avail;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002790 int ret;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002791
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002792 WARN_ON(host == NULL);
2793 if (host == NULL)
2794 return -EINVAL;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002795
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002796 mmc = host->mmc;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002797
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002798 if (debug_quirks)
2799 host->quirks = debug_quirks;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002800 if (debug_quirks2)
2801 host->quirks2 = debug_quirks2;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002802
Russell King03231f92014-04-25 12:57:12 +01002803 sdhci_do_reset(host, SDHCI_RESET_ALL);
Pierre Ossmand96649e2006-06-30 02:22:30 -07002804
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03002805 host->version = sdhci_readw(host, SDHCI_HOST_VERSION);
Pierre Ossman2134a922008-06-28 18:28:51 +02002806 host->version = (host->version & SDHCI_SPEC_VER_MASK)
2807 >> SDHCI_SPEC_VER_SHIFT;
Zhangfei Gao85105c52010-08-06 07:10:01 +08002808 if (host->version > SDHCI_SPEC_300) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05302809 pr_err("%s: Unknown controller version (%d). "
Pierre Ossmanb69c9052008-03-08 23:44:25 +01002810 "You may experience problems.\n", mmc_hostname(mmc),
Pierre Ossman2134a922008-06-28 18:28:51 +02002811 host->version);
Pierre Ossman4a965502006-06-30 02:22:29 -07002812 }
2813
Arindam Nathf2119df2011-05-05 12:18:57 +05302814 caps[0] = (host->quirks & SDHCI_QUIRK_MISSING_CAPS) ? host->caps :
Maxim Levitskyccc92c22010-08-10 18:01:42 -07002815 sdhci_readl(host, SDHCI_CAPABILITIES);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002816
Philip Rakitybd6a8c32012-06-27 21:49:27 -07002817 if (host->version >= SDHCI_SPEC_300)
2818 caps[1] = (host->quirks & SDHCI_QUIRK_MISSING_CAPS) ?
2819 host->caps1 :
2820 sdhci_readl(host, SDHCI_CAPABILITIES_1);
Arindam Nathf2119df2011-05-05 12:18:57 +05302821
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002822 if (host->quirks & SDHCI_QUIRK_FORCE_DMA)
Richard Röjforsa13abc72009-09-22 16:45:30 -07002823 host->flags |= SDHCI_USE_SDMA;
Arindam Nathf2119df2011-05-05 12:18:57 +05302824 else if (!(caps[0] & SDHCI_CAN_DO_SDMA))
Richard Röjforsa13abc72009-09-22 16:45:30 -07002825 DBG("Controller doesn't have SDMA capability\n");
Pierre Ossman67435272006-06-30 02:22:31 -07002826 else
Richard Röjforsa13abc72009-09-22 16:45:30 -07002827 host->flags |= SDHCI_USE_SDMA;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002828
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002829 if ((host->quirks & SDHCI_QUIRK_BROKEN_DMA) &&
Richard Röjforsa13abc72009-09-22 16:45:30 -07002830 (host->flags & SDHCI_USE_SDMA)) {
Rolf Eike Beercee687c2007-11-02 15:22:30 +01002831 DBG("Disabling DMA as it is marked broken\n");
Richard Röjforsa13abc72009-09-22 16:45:30 -07002832 host->flags &= ~SDHCI_USE_SDMA;
Feng Tang7c168e32007-09-30 12:44:18 +02002833 }
2834
Arindam Nathf2119df2011-05-05 12:18:57 +05302835 if ((host->version >= SDHCI_SPEC_200) &&
2836 (caps[0] & SDHCI_CAN_DO_ADMA2))
Richard Röjforsa13abc72009-09-22 16:45:30 -07002837 host->flags |= SDHCI_USE_ADMA;
Pierre Ossman2134a922008-06-28 18:28:51 +02002838
2839 if ((host->quirks & SDHCI_QUIRK_BROKEN_ADMA) &&
2840 (host->flags & SDHCI_USE_ADMA)) {
2841 DBG("Disabling ADMA as it is marked broken\n");
2842 host->flags &= ~SDHCI_USE_ADMA;
2843 }
2844
Richard Röjforsa13abc72009-09-22 16:45:30 -07002845 if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002846 if (host->ops->enable_dma) {
2847 if (host->ops->enable_dma(host)) {
Joe Perches66061102014-09-12 14:56:56 -07002848 pr_warn("%s: No suitable DMA available - falling back to PIO\n",
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002849 mmc_hostname(mmc));
Richard Röjforsa13abc72009-09-22 16:45:30 -07002850 host->flags &=
2851 ~(SDHCI_USE_SDMA | SDHCI_USE_ADMA);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002852 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08002853 }
2854 }
2855
Pierre Ossman2134a922008-06-28 18:28:51 +02002856 if (host->flags & SDHCI_USE_ADMA) {
2857 /*
2858 * We need to allocate descriptors for all sg entries
2859 * (128) and potentially one alignment transfer for
2860 * each of those entries.
2861 */
Markus Mayer4e743f12014-07-03 13:27:42 -07002862 host->adma_desc = dma_alloc_coherent(mmc_dev(mmc),
Russell Kingd1e49f72014-04-25 12:58:34 +01002863 ADMA_SIZE, &host->adma_addr,
2864 GFP_KERNEL);
Pierre Ossman2134a922008-06-28 18:28:51 +02002865 host->align_buffer = kmalloc(128 * 4, GFP_KERNEL);
2866 if (!host->adma_desc || !host->align_buffer) {
Markus Mayer4e743f12014-07-03 13:27:42 -07002867 dma_free_coherent(mmc_dev(mmc), ADMA_SIZE,
Russell Kingd1e49f72014-04-25 12:58:34 +01002868 host->adma_desc, host->adma_addr);
Pierre Ossman2134a922008-06-28 18:28:51 +02002869 kfree(host->align_buffer);
Joe Perches66061102014-09-12 14:56:56 -07002870 pr_warn("%s: Unable to allocate ADMA buffers - falling back to standard DMA\n",
Pierre Ossman2134a922008-06-28 18:28:51 +02002871 mmc_hostname(mmc));
2872 host->flags &= ~SDHCI_USE_ADMA;
Russell Kingd1e49f72014-04-25 12:58:34 +01002873 host->adma_desc = NULL;
2874 host->align_buffer = NULL;
2875 } else if (host->adma_addr & 3) {
Joe Perches66061102014-09-12 14:56:56 -07002876 pr_warn("%s: unable to allocate aligned ADMA descriptor\n",
2877 mmc_hostname(mmc));
Russell Kingd1e49f72014-04-25 12:58:34 +01002878 host->flags &= ~SDHCI_USE_ADMA;
Markus Mayer4e743f12014-07-03 13:27:42 -07002879 dma_free_coherent(mmc_dev(mmc), ADMA_SIZE,
Russell Kingd1e49f72014-04-25 12:58:34 +01002880 host->adma_desc, host->adma_addr);
2881 kfree(host->align_buffer);
2882 host->adma_desc = NULL;
2883 host->align_buffer = NULL;
Pierre Ossman2134a922008-06-28 18:28:51 +02002884 }
2885 }
2886
Pierre Ossman76591502008-07-21 00:32:11 +02002887 /*
2888 * If we use DMA, then it's up to the caller to set the DMA
2889 * mask, but PIO does not need the hw shim so we set a new
2890 * mask here in that case.
2891 */
Richard Röjforsa13abc72009-09-22 16:45:30 -07002892 if (!(host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA))) {
Pierre Ossman76591502008-07-21 00:32:11 +02002893 host->dma_mask = DMA_BIT_MASK(64);
Markus Mayer4e743f12014-07-03 13:27:42 -07002894 mmc_dev(mmc)->dma_mask = &host->dma_mask;
Pierre Ossman76591502008-07-21 00:32:11 +02002895 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08002896
Zhangfei Gaoc4687d52010-08-20 14:02:36 -04002897 if (host->version >= SDHCI_SPEC_300)
Arindam Nathf2119df2011-05-05 12:18:57 +05302898 host->max_clk = (caps[0] & SDHCI_CLOCK_V3_BASE_MASK)
Zhangfei Gaoc4687d52010-08-20 14:02:36 -04002899 >> SDHCI_CLOCK_BASE_SHIFT;
2900 else
Arindam Nathf2119df2011-05-05 12:18:57 +05302901 host->max_clk = (caps[0] & SDHCI_CLOCK_BASE_MASK)
Zhangfei Gaoc4687d52010-08-20 14:02:36 -04002902 >> SDHCI_CLOCK_BASE_SHIFT;
2903
Pierre Ossmand129bce2006-03-24 03:18:17 -08002904 host->max_clk *= 1000000;
Anton Vorontsovf27f47e2010-05-26 14:41:53 -07002905 if (host->max_clk == 0 || host->quirks &
2906 SDHCI_QUIRK_CAP_CLOCK_BASE_BROKEN) {
Ben Dooks4240ff02009-03-17 00:13:57 +03002907 if (!host->ops->get_max_clock) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05302908 pr_err("%s: Hardware doesn't specify base clock "
Ben Dooks4240ff02009-03-17 00:13:57 +03002909 "frequency.\n", mmc_hostname(mmc));
2910 return -ENODEV;
2911 }
2912 host->max_clk = host->ops->get_max_clock(host);
2913 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08002914
2915 /*
Arindam Nathc3ed3872011-05-05 12:19:06 +05302916 * In case of Host Controller v3.00, find out whether clock
2917 * multiplier is supported.
2918 */
2919 host->clk_mul = (caps[1] & SDHCI_CLOCK_MUL_MASK) >>
2920 SDHCI_CLOCK_MUL_SHIFT;
2921
2922 /*
2923 * In case the value in Clock Multiplier is 0, then programmable
2924 * clock mode is not supported, otherwise the actual clock
2925 * multiplier is one more than the value of Clock Multiplier
2926 * in the Capabilities Register.
2927 */
2928 if (host->clk_mul)
2929 host->clk_mul += 1;
2930
2931 /*
Pierre Ossmand129bce2006-03-24 03:18:17 -08002932 * Set host parameters.
2933 */
2934 mmc->ops = &sdhci_ops;
Arindam Nathc3ed3872011-05-05 12:19:06 +05302935 mmc->f_max = host->max_clk;
Marek Szyprowskice5f0362010-08-10 18:01:56 -07002936 if (host->ops->get_min_clock)
Anton Vorontsova9e58f22009-07-29 15:04:16 -07002937 mmc->f_min = host->ops->get_min_clock(host);
Arindam Nathc3ed3872011-05-05 12:19:06 +05302938 else if (host->version >= SDHCI_SPEC_300) {
2939 if (host->clk_mul) {
2940 mmc->f_min = (host->max_clk * host->clk_mul) / 1024;
2941 mmc->f_max = host->max_clk * host->clk_mul;
2942 } else
2943 mmc->f_min = host->max_clk / SDHCI_MAX_DIV_SPEC_300;
2944 } else
Zhangfei Gao03975262010-09-20 15:15:18 -04002945 mmc->f_min = host->max_clk / SDHCI_MAX_DIV_SPEC_200;
Philip Rakity15ec4462010-11-19 16:48:39 -05002946
Aisheng Dong28aab052014-08-27 15:26:31 +08002947 if (!(host->quirks & SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK)) {
2948 host->timeout_clk = (caps[0] & SDHCI_TIMEOUT_CLK_MASK) >>
2949 SDHCI_TIMEOUT_CLK_SHIFT;
2950 if (host->timeout_clk == 0) {
2951 if (host->ops->get_timeout_clock) {
2952 host->timeout_clk =
2953 host->ops->get_timeout_clock(host);
2954 } else {
2955 pr_err("%s: Hardware doesn't specify timeout clock frequency.\n",
2956 mmc_hostname(mmc));
2957 return -ENODEV;
2958 }
Andy Shevchenko272308c2011-08-03 18:36:00 +03002959 }
Andy Shevchenko272308c2011-08-03 18:36:00 +03002960
Aisheng Dong28aab052014-08-27 15:26:31 +08002961 if (caps[0] & SDHCI_TIMEOUT_CLK_UNIT)
2962 host->timeout_clk *= 1000;
Andy Shevchenko272308c2011-08-03 18:36:00 +03002963
Aisheng Dong28aab052014-08-27 15:26:31 +08002964 mmc->max_busy_timeout = host->ops->get_max_timeout_count ?
Aisheng Donga6ff5ae2014-08-27 15:26:27 +08002965 host->ops->get_max_timeout_count(host) : 1 << 27;
Aisheng Dong28aab052014-08-27 15:26:31 +08002966 mmc->max_busy_timeout /= host->timeout_clk;
2967 }
Adrian Hunter58d12462011-06-28 17:16:03 +03002968
Andrei Warkentine89d4562011-05-23 15:06:37 -05002969 mmc->caps |= MMC_CAP_SDIO_IRQ | MMC_CAP_ERASE | MMC_CAP_CMD23;
Russell King781e9892014-04-25 12:55:46 +01002970 mmc->caps2 |= MMC_CAP2_SDIO_IRQ_NOTHREAD;
Andrei Warkentine89d4562011-05-23 15:06:37 -05002971
2972 if (host->quirks & SDHCI_QUIRK_MULTIBLOCK_READ_ACMD12)
2973 host->flags |= SDHCI_AUTO_CMD12;
Anton Vorontsov5fe23c72009-06-18 00:14:08 +04002974
Andrei Warkentin8edf63712011-05-23 15:06:39 -05002975 /* Auto-CMD23 stuff only works in ADMA or PIO. */
Andrei Warkentin4f3d3e92011-05-25 10:42:50 -04002976 if ((host->version >= SDHCI_SPEC_300) &&
Andrei Warkentin8edf63712011-05-23 15:06:39 -05002977 ((host->flags & SDHCI_USE_ADMA) ||
Andrei Warkentin4f3d3e92011-05-25 10:42:50 -04002978 !(host->flags & SDHCI_USE_SDMA))) {
Andrei Warkentin8edf63712011-05-23 15:06:39 -05002979 host->flags |= SDHCI_AUTO_CMD23;
2980 DBG("%s: Auto-CMD23 available\n", mmc_hostname(mmc));
2981 } else {
2982 DBG("%s: Auto-CMD23 unavailable\n", mmc_hostname(mmc));
2983 }
2984
Philip Rakity15ec4462010-11-19 16:48:39 -05002985 /*
2986 * A controller may support 8-bit width, but the board itself
2987 * might not have the pins brought out. Boards that support
2988 * 8-bit width must set "mmc->caps |= MMC_CAP_8_BIT_DATA;" in
2989 * their platform code before calling sdhci_add_host(), and we
2990 * won't assume 8-bit width for hosts without that CAP.
2991 */
Anton Vorontsov5fe23c72009-06-18 00:14:08 +04002992 if (!(host->quirks & SDHCI_QUIRK_FORCE_1_BIT_DATA))
Philip Rakity15ec4462010-11-19 16:48:39 -05002993 mmc->caps |= MMC_CAP_4_BIT_DATA;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002994
Jerry Huang63ef5d82012-10-25 13:47:19 +08002995 if (host->quirks2 & SDHCI_QUIRK2_HOST_NO_CMD23)
2996 mmc->caps &= ~MMC_CAP_CMD23;
2997
Arindam Nathf2119df2011-05-05 12:18:57 +05302998 if (caps[0] & SDHCI_CAN_DO_HISPD)
Zhangfei Gaoa29e7e12010-08-16 21:15:32 -04002999 mmc->caps |= MMC_CAP_SD_HIGHSPEED | MMC_CAP_MMC_HIGHSPEED;
Pierre Ossmancd9277c2007-02-18 12:07:47 +01003000
Jaehoon Chung176d1ed2010-09-27 09:42:20 +01003001 if ((host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION) &&
Markus Mayer4e743f12014-07-03 13:27:42 -07003002 !(mmc->caps & MMC_CAP_NONREMOVABLE))
Anton Vorontsov68d1fb72009-03-17 00:13:52 +03003003 mmc->caps |= MMC_CAP_NEEDS_POLL;
3004
Tim Kryger3a48edc2014-06-13 10:13:56 -07003005 /* If there are external regulators, get them */
3006 if (mmc_regulator_get_supply(mmc) == -EPROBE_DEFER)
3007 return -EPROBE_DEFER;
3008
Philip Rakity6231f3d2012-07-23 15:56:23 -07003009 /* If vqmmc regulator and no 1.8V signalling, then there's no UHS */
Tim Kryger3a48edc2014-06-13 10:13:56 -07003010 if (!IS_ERR(mmc->supply.vqmmc)) {
3011 ret = regulator_enable(mmc->supply.vqmmc);
3012 if (!regulator_is_supported_voltage(mmc->supply.vqmmc, 1700000,
3013 1950000))
Kevin Liu8363c372012-11-17 17:55:51 -05003014 caps[1] &= ~(SDHCI_SUPPORT_SDR104 |
3015 SDHCI_SUPPORT_SDR50 |
3016 SDHCI_SUPPORT_DDR50);
Chris Balla3361ab2013-03-11 17:51:53 -04003017 if (ret) {
3018 pr_warn("%s: Failed to enable vqmmc regulator: %d\n",
3019 mmc_hostname(mmc), ret);
Tim Kryger3a48edc2014-06-13 10:13:56 -07003020 mmc->supply.vqmmc = NULL;
Chris Balla3361ab2013-03-11 17:51:53 -04003021 }
Kevin Liu8363c372012-11-17 17:55:51 -05003022 }
Philip Rakity6231f3d2012-07-23 15:56:23 -07003023
Daniel Drake6a661802012-11-25 13:01:19 -05003024 if (host->quirks2 & SDHCI_QUIRK2_NO_1_8_V)
3025 caps[1] &= ~(SDHCI_SUPPORT_SDR104 | SDHCI_SUPPORT_SDR50 |
3026 SDHCI_SUPPORT_DDR50);
3027
Al Cooper4188bba2012-03-16 15:54:17 -04003028 /* Any UHS-I mode in caps implies SDR12 and SDR25 support. */
3029 if (caps[1] & (SDHCI_SUPPORT_SDR104 | SDHCI_SUPPORT_SDR50 |
3030 SDHCI_SUPPORT_DDR50))
Arindam Nathf2119df2011-05-05 12:18:57 +05303031 mmc->caps |= MMC_CAP_UHS_SDR12 | MMC_CAP_UHS_SDR25;
3032
3033 /* SDR104 supports also implies SDR50 support */
Giuseppe CAVALLARO156e14b2013-06-12 08:16:38 +02003034 if (caps[1] & SDHCI_SUPPORT_SDR104) {
Arindam Nathf2119df2011-05-05 12:18:57 +05303035 mmc->caps |= MMC_CAP_UHS_SDR104 | MMC_CAP_UHS_SDR50;
Giuseppe CAVALLARO156e14b2013-06-12 08:16:38 +02003036 /* SD3.0: SDR104 is supported so (for eMMC) the caps2
3037 * field can be promoted to support HS200.
3038 */
Chuanxiao.Dongadc82852014-08-19 11:02:41 +08003039 if (!(host->quirks2 & SDHCI_QUIRK2_BROKEN_HS200)) {
David Cohen13868bf2013-10-29 10:58:26 -07003040 mmc->caps2 |= MMC_CAP2_HS200;
Chuanxiao.Dongadc82852014-08-19 11:02:41 +08003041 if (IS_ERR(mmc->supply.vqmmc) ||
3042 !regulator_is_supported_voltage
3043 (mmc->supply.vqmmc, 1100000, 1300000))
3044 mmc->caps2 &= ~MMC_CAP2_HS200_1_2V_SDR;
3045 }
Giuseppe CAVALLARO156e14b2013-06-12 08:16:38 +02003046 } else if (caps[1] & SDHCI_SUPPORT_SDR50)
Arindam Nathf2119df2011-05-05 12:18:57 +05303047 mmc->caps |= MMC_CAP_UHS_SDR50;
3048
Micky Ching9107ebb2014-02-21 18:40:35 +08003049 if ((caps[1] & SDHCI_SUPPORT_DDR50) &&
3050 !(host->quirks2 & SDHCI_QUIRK2_BROKEN_DDR50))
Arindam Nathf2119df2011-05-05 12:18:57 +05303051 mmc->caps |= MMC_CAP_UHS_DDR50;
3052
Girish K S069c9f12012-01-06 09:56:39 +05303053 /* Does the host need tuning for SDR50? */
Arindam Nathb513ea22011-05-05 12:19:04 +05303054 if (caps[1] & SDHCI_USE_SDR50_TUNING)
3055 host->flags |= SDHCI_SDR50_NEEDS_TUNING;
3056
Giuseppe CAVALLARO156e14b2013-06-12 08:16:38 +02003057 /* Does the host need tuning for SDR104 / HS200? */
Girish K S069c9f12012-01-06 09:56:39 +05303058 if (mmc->caps2 & MMC_CAP2_HS200)
Giuseppe CAVALLARO156e14b2013-06-12 08:16:38 +02003059 host->flags |= SDHCI_SDR104_NEEDS_TUNING;
Girish K S069c9f12012-01-06 09:56:39 +05303060
Arindam Nathd6d50a12011-05-05 12:18:59 +05303061 /* Driver Type(s) (A, C, D) supported by the host */
3062 if (caps[1] & SDHCI_DRIVER_TYPE_A)
3063 mmc->caps |= MMC_CAP_DRIVER_TYPE_A;
3064 if (caps[1] & SDHCI_DRIVER_TYPE_C)
3065 mmc->caps |= MMC_CAP_DRIVER_TYPE_C;
3066 if (caps[1] & SDHCI_DRIVER_TYPE_D)
3067 mmc->caps |= MMC_CAP_DRIVER_TYPE_D;
3068
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05303069 /* Initial value for re-tuning timer count */
3070 host->tuning_count = (caps[1] & SDHCI_RETUNING_TIMER_COUNT_MASK) >>
3071 SDHCI_RETUNING_TIMER_COUNT_SHIFT;
3072
3073 /*
3074 * In case Re-tuning Timer is not disabled, the actual value of
3075 * re-tuning timer will be 2 ^ (n - 1).
3076 */
3077 if (host->tuning_count)
3078 host->tuning_count = 1 << (host->tuning_count - 1);
3079
3080 /* Re-tuning mode supported by the Host Controller */
3081 host->tuning_mode = (caps[1] & SDHCI_RETUNING_MODE_MASK) >>
3082 SDHCI_RETUNING_MODE_SHIFT;
3083
Takashi Iwai8f230f42010-12-08 10:04:30 +01003084 ocr_avail = 0;
Philip Rakitybad37e12012-05-27 18:36:44 -07003085
Arindam Nathf2119df2011-05-05 12:18:57 +05303086 /*
3087 * According to SD Host Controller spec v3.00, if the Host System
3088 * can afford more than 150mA, Host Driver should set XPC to 1. Also
3089 * the value is meaningful only if Voltage Support in the Capabilities
3090 * register is set. The actual current value is 4 times the register
3091 * value.
3092 */
3093 max_current_caps = sdhci_readl(host, SDHCI_MAX_CURRENT);
Tim Kryger3a48edc2014-06-13 10:13:56 -07003094 if (!max_current_caps && !IS_ERR(mmc->supply.vmmc)) {
Chuanxiao.Dongae906032014-08-01 14:00:13 +08003095 int curr = regulator_get_current_limit(mmc->supply.vmmc);
Philip Rakitybad37e12012-05-27 18:36:44 -07003096 if (curr > 0) {
3097
3098 /* convert to SDHCI_MAX_CURRENT format */
3099 curr = curr/1000; /* convert to mA */
3100 curr = curr/SDHCI_MAX_CURRENT_MULTIPLIER;
3101
3102 curr = min_t(u32, curr, SDHCI_MAX_CURRENT_LIMIT);
3103 max_current_caps =
3104 (curr << SDHCI_MAX_CURRENT_330_SHIFT) |
3105 (curr << SDHCI_MAX_CURRENT_300_SHIFT) |
3106 (curr << SDHCI_MAX_CURRENT_180_SHIFT);
3107 }
3108 }
Arindam Nathf2119df2011-05-05 12:18:57 +05303109
3110 if (caps[0] & SDHCI_CAN_VDD_330) {
Takashi Iwai8f230f42010-12-08 10:04:30 +01003111 ocr_avail |= MMC_VDD_32_33 | MMC_VDD_33_34;
Arindam Nathf2119df2011-05-05 12:18:57 +05303112
Aaron Lu55c46652012-07-04 13:31:48 +08003113 mmc->max_current_330 = ((max_current_caps &
Arindam Nathf2119df2011-05-05 12:18:57 +05303114 SDHCI_MAX_CURRENT_330_MASK) >>
3115 SDHCI_MAX_CURRENT_330_SHIFT) *
3116 SDHCI_MAX_CURRENT_MULTIPLIER;
Arindam Nathf2119df2011-05-05 12:18:57 +05303117 }
3118 if (caps[0] & SDHCI_CAN_VDD_300) {
Takashi Iwai8f230f42010-12-08 10:04:30 +01003119 ocr_avail |= MMC_VDD_29_30 | MMC_VDD_30_31;
Arindam Nathf2119df2011-05-05 12:18:57 +05303120
Aaron Lu55c46652012-07-04 13:31:48 +08003121 mmc->max_current_300 = ((max_current_caps &
Arindam Nathf2119df2011-05-05 12:18:57 +05303122 SDHCI_MAX_CURRENT_300_MASK) >>
3123 SDHCI_MAX_CURRENT_300_SHIFT) *
3124 SDHCI_MAX_CURRENT_MULTIPLIER;
Arindam Nathf2119df2011-05-05 12:18:57 +05303125 }
3126 if (caps[0] & SDHCI_CAN_VDD_180) {
Takashi Iwai8f230f42010-12-08 10:04:30 +01003127 ocr_avail |= MMC_VDD_165_195;
3128
Aaron Lu55c46652012-07-04 13:31:48 +08003129 mmc->max_current_180 = ((max_current_caps &
Arindam Nathf2119df2011-05-05 12:18:57 +05303130 SDHCI_MAX_CURRENT_180_MASK) >>
3131 SDHCI_MAX_CURRENT_180_SHIFT) *
3132 SDHCI_MAX_CURRENT_MULTIPLIER;
Arindam Nathf2119df2011-05-05 12:18:57 +05303133 }
3134
Tim Kryger52221612014-06-25 00:25:34 -07003135 /* If OCR set by external regulators, use it instead */
Tim Kryger3a48edc2014-06-13 10:13:56 -07003136 if (mmc->ocr_avail)
Tim Kryger52221612014-06-25 00:25:34 -07003137 ocr_avail = mmc->ocr_avail;
Tim Kryger3a48edc2014-06-13 10:13:56 -07003138
Haijun Zhangc0b887b2013-08-26 09:19:23 +08003139 if (host->ocr_mask)
Tim Kryger3a48edc2014-06-13 10:13:56 -07003140 ocr_avail &= host->ocr_mask;
Haijun Zhangc0b887b2013-08-26 09:19:23 +08003141
Takashi Iwai8f230f42010-12-08 10:04:30 +01003142 mmc->ocr_avail = ocr_avail;
3143 mmc->ocr_avail_sdio = ocr_avail;
3144 if (host->ocr_avail_sdio)
3145 mmc->ocr_avail_sdio &= host->ocr_avail_sdio;
3146 mmc->ocr_avail_sd = ocr_avail;
3147 if (host->ocr_avail_sd)
3148 mmc->ocr_avail_sd &= host->ocr_avail_sd;
3149 else /* normal SD controllers don't support 1.8V */
3150 mmc->ocr_avail_sd &= ~MMC_VDD_165_195;
3151 mmc->ocr_avail_mmc = ocr_avail;
3152 if (host->ocr_avail_mmc)
3153 mmc->ocr_avail_mmc &= host->ocr_avail_mmc;
Pierre Ossman146ad662006-06-30 02:22:23 -07003154
3155 if (mmc->ocr_avail == 0) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05303156 pr_err("%s: Hardware doesn't report any "
Pierre Ossmanb69c9052008-03-08 23:44:25 +01003157 "support voltages.\n", mmc_hostname(mmc));
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003158 return -ENODEV;
Pierre Ossman146ad662006-06-30 02:22:23 -07003159 }
3160
Pierre Ossmand129bce2006-03-24 03:18:17 -08003161 spin_lock_init(&host->lock);
3162
3163 /*
Pierre Ossman2134a922008-06-28 18:28:51 +02003164 * Maximum number of segments. Depends on if the hardware
3165 * can do scatter/gather or not.
Pierre Ossmand129bce2006-03-24 03:18:17 -08003166 */
Pierre Ossman2134a922008-06-28 18:28:51 +02003167 if (host->flags & SDHCI_USE_ADMA)
Martin K. Petersena36274e2010-09-10 01:33:59 -04003168 mmc->max_segs = 128;
Richard Röjforsa13abc72009-09-22 16:45:30 -07003169 else if (host->flags & SDHCI_USE_SDMA)
Martin K. Petersena36274e2010-09-10 01:33:59 -04003170 mmc->max_segs = 1;
Pierre Ossman2134a922008-06-28 18:28:51 +02003171 else /* PIO */
Martin K. Petersena36274e2010-09-10 01:33:59 -04003172 mmc->max_segs = 128;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003173
3174 /*
Pierre Ossmanbab76962006-07-02 16:51:35 +01003175 * Maximum number of sectors in one transfer. Limited by DMA boundary
Pierre Ossman55db8902006-11-21 17:55:45 +01003176 * size (512KiB).
Pierre Ossmand129bce2006-03-24 03:18:17 -08003177 */
Pierre Ossman55db8902006-11-21 17:55:45 +01003178 mmc->max_req_size = 524288;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003179
3180 /*
3181 * Maximum segment size. Could be one segment with the maximum number
Pierre Ossman2134a922008-06-28 18:28:51 +02003182 * of bytes. When doing hardware scatter/gather, each entry cannot
3183 * be larger than 64 KiB though.
Pierre Ossmand129bce2006-03-24 03:18:17 -08003184 */
Olof Johansson30652aa2011-01-01 18:37:32 -06003185 if (host->flags & SDHCI_USE_ADMA) {
3186 if (host->quirks & SDHCI_QUIRK_BROKEN_ADMA_ZEROLEN_DESC)
3187 mmc->max_seg_size = 65535;
3188 else
3189 mmc->max_seg_size = 65536;
3190 } else {
Pierre Ossman2134a922008-06-28 18:28:51 +02003191 mmc->max_seg_size = mmc->max_req_size;
Olof Johansson30652aa2011-01-01 18:37:32 -06003192 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08003193
3194 /*
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +01003195 * Maximum block size. This varies from controller to controller and
3196 * is specified in the capabilities register.
3197 */
Anton Vorontsov0633f652009-03-17 00:14:03 +03003198 if (host->quirks & SDHCI_QUIRK_FORCE_BLK_SZ_2048) {
3199 mmc->max_blk_size = 2;
3200 } else {
Arindam Nathf2119df2011-05-05 12:18:57 +05303201 mmc->max_blk_size = (caps[0] & SDHCI_MAX_BLOCK_MASK) >>
Anton Vorontsov0633f652009-03-17 00:14:03 +03003202 SDHCI_MAX_BLOCK_SHIFT;
3203 if (mmc->max_blk_size >= 3) {
Joe Perches66061102014-09-12 14:56:56 -07003204 pr_warn("%s: Invalid maximum block size, assuming 512 bytes\n",
3205 mmc_hostname(mmc));
Anton Vorontsov0633f652009-03-17 00:14:03 +03003206 mmc->max_blk_size = 0;
3207 }
3208 }
3209
3210 mmc->max_blk_size = 512 << mmc->max_blk_size;
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +01003211
3212 /*
Pierre Ossman55db8902006-11-21 17:55:45 +01003213 * Maximum block count.
3214 */
Ben Dooks1388eef2009-06-14 12:40:53 +01003215 mmc->max_blk_count = (host->quirks & SDHCI_QUIRK_NO_MULTIBLOCK) ? 1 : 65535;
Pierre Ossman55db8902006-11-21 17:55:45 +01003216
3217 /*
Pierre Ossmand129bce2006-03-24 03:18:17 -08003218 * Init tasklets.
3219 */
Pierre Ossmand129bce2006-03-24 03:18:17 -08003220 tasklet_init(&host->finish_tasklet,
3221 sdhci_tasklet_finish, (unsigned long)host);
3222
Al Viroe4cad1b2006-10-10 22:47:07 +01003223 setup_timer(&host->timer, sdhci_timeout_timer, (unsigned long)host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003224
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05303225 if (host->version >= SDHCI_SPEC_300) {
Arindam Nathb513ea22011-05-05 12:19:04 +05303226 init_waitqueue_head(&host->buf_ready_int);
3227
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05303228 /* Initialize re-tuning timer */
3229 init_timer(&host->tuning_timer);
3230 host->tuning_timer.data = (unsigned long)host;
3231 host->tuning_timer.function = sdhci_tuning_timer;
3232 }
3233
Shawn Guo2af502c2013-07-05 14:38:55 +08003234 sdhci_init(host, 0);
3235
Russell King781e9892014-04-25 12:55:46 +01003236 ret = request_threaded_irq(host->irq, sdhci_irq, sdhci_thread_irq,
3237 IRQF_SHARED, mmc_hostname(mmc), host);
Mark Brown0fc81ee2012-07-02 14:26:15 +01003238 if (ret) {
3239 pr_err("%s: Failed to request IRQ %d: %d\n",
3240 mmc_hostname(mmc), host->irq, ret);
Pierre Ossman8ef1a142006-06-30 02:22:21 -07003241 goto untasklet;
Mark Brown0fc81ee2012-07-02 14:26:15 +01003242 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08003243
Pierre Ossmand129bce2006-03-24 03:18:17 -08003244#ifdef CONFIG_MMC_DEBUG
3245 sdhci_dumpregs(host);
3246#endif
3247
Pierre Ossmanf9134312008-12-21 17:01:48 +01003248#ifdef SDHCI_USE_LEDS_CLASS
Helmut Schaa5dbace02009-02-14 16:22:39 +01003249 snprintf(host->led_name, sizeof(host->led_name),
3250 "%s::", mmc_hostname(mmc));
3251 host->led.name = host->led_name;
Pierre Ossman2f730fe2008-03-17 10:29:38 +01003252 host->led.brightness = LED_OFF;
3253 host->led.default_trigger = mmc_hostname(mmc);
3254 host->led.brightness_set = sdhci_led_control;
3255
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003256 ret = led_classdev_register(mmc_dev(mmc), &host->led);
Mark Brown0fc81ee2012-07-02 14:26:15 +01003257 if (ret) {
3258 pr_err("%s: Failed to register LED device: %d\n",
3259 mmc_hostname(mmc), ret);
Pierre Ossman2f730fe2008-03-17 10:29:38 +01003260 goto reset;
Mark Brown0fc81ee2012-07-02 14:26:15 +01003261 }
Pierre Ossman2f730fe2008-03-17 10:29:38 +01003262#endif
3263
Pierre Ossman5f25a662006-10-04 02:15:39 -07003264 mmiowb();
3265
Pierre Ossmand129bce2006-03-24 03:18:17 -08003266 mmc_add_host(mmc);
3267
Girish K Sa3c76eb2011-10-11 11:44:09 +05303268 pr_info("%s: SDHCI controller on %s [%s] using %s\n",
Kay Sieversd1b26862008-11-08 21:37:46 +01003269 mmc_hostname(mmc), host->hw_name, dev_name(mmc_dev(mmc)),
Richard Röjforsa13abc72009-09-22 16:45:30 -07003270 (host->flags & SDHCI_USE_ADMA) ? "ADMA" :
3271 (host->flags & SDHCI_USE_SDMA) ? "DMA" : "PIO");
Pierre Ossmand129bce2006-03-24 03:18:17 -08003272
Anton Vorontsov7260cf52009-03-17 00:13:48 +03003273 sdhci_enable_card_detection(host);
3274
Pierre Ossmand129bce2006-03-24 03:18:17 -08003275 return 0;
3276
Pierre Ossmanf9134312008-12-21 17:01:48 +01003277#ifdef SDHCI_USE_LEDS_CLASS
Pierre Ossman2f730fe2008-03-17 10:29:38 +01003278reset:
Russell King03231f92014-04-25 12:57:12 +01003279 sdhci_do_reset(host, SDHCI_RESET_ALL);
Russell Kingb537f942014-04-25 12:56:01 +01003280 sdhci_writel(host, 0, SDHCI_INT_ENABLE);
3281 sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE);
Pierre Ossman2f730fe2008-03-17 10:29:38 +01003282 free_irq(host->irq, host);
3283#endif
Pierre Ossman8ef1a142006-06-30 02:22:21 -07003284untasklet:
Pierre Ossmand129bce2006-03-24 03:18:17 -08003285 tasklet_kill(&host->finish_tasklet);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003286
3287 return ret;
3288}
3289
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003290EXPORT_SYMBOL_GPL(sdhci_add_host);
3291
Pierre Ossman1e728592008-04-16 19:13:13 +02003292void sdhci_remove_host(struct sdhci_host *host, int dead)
Pierre Ossmand129bce2006-03-24 03:18:17 -08003293{
Tim Kryger3a48edc2014-06-13 10:13:56 -07003294 struct mmc_host *mmc = host->mmc;
Pierre Ossman1e728592008-04-16 19:13:13 +02003295 unsigned long flags;
3296
3297 if (dead) {
3298 spin_lock_irqsave(&host->lock, flags);
3299
3300 host->flags |= SDHCI_DEVICE_DEAD;
3301
3302 if (host->mrq) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05303303 pr_err("%s: Controller removed during "
Markus Mayer4e743f12014-07-03 13:27:42 -07003304 " transfer!\n", mmc_hostname(mmc));
Pierre Ossman1e728592008-04-16 19:13:13 +02003305
3306 host->mrq->cmd->error = -ENOMEDIUM;
3307 tasklet_schedule(&host->finish_tasklet);
3308 }
3309
3310 spin_unlock_irqrestore(&host->lock, flags);
3311 }
3312
Anton Vorontsov7260cf52009-03-17 00:13:48 +03003313 sdhci_disable_card_detection(host);
3314
Markus Mayer4e743f12014-07-03 13:27:42 -07003315 mmc_remove_host(mmc);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003316
Pierre Ossmanf9134312008-12-21 17:01:48 +01003317#ifdef SDHCI_USE_LEDS_CLASS
Pierre Ossman2f730fe2008-03-17 10:29:38 +01003318 led_classdev_unregister(&host->led);
3319#endif
3320
Pierre Ossman1e728592008-04-16 19:13:13 +02003321 if (!dead)
Russell King03231f92014-04-25 12:57:12 +01003322 sdhci_do_reset(host, SDHCI_RESET_ALL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003323
Russell Kingb537f942014-04-25 12:56:01 +01003324 sdhci_writel(host, 0, SDHCI_INT_ENABLE);
3325 sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003326 free_irq(host->irq, host);
3327
3328 del_timer_sync(&host->timer);
3329
Pierre Ossmand129bce2006-03-24 03:18:17 -08003330 tasklet_kill(&host->finish_tasklet);
Pierre Ossman2134a922008-06-28 18:28:51 +02003331
Tim Kryger3a48edc2014-06-13 10:13:56 -07003332 if (!IS_ERR(mmc->supply.vmmc))
3333 regulator_disable(mmc->supply.vmmc);
Marek Szyprowski9bea3c82010-08-10 18:01:59 -07003334
Tim Kryger3a48edc2014-06-13 10:13:56 -07003335 if (!IS_ERR(mmc->supply.vqmmc))
3336 regulator_disable(mmc->supply.vqmmc);
Philip Rakity6231f3d2012-07-23 15:56:23 -07003337
Russell Kingd1e49f72014-04-25 12:58:34 +01003338 if (host->adma_desc)
Markus Mayer4e743f12014-07-03 13:27:42 -07003339 dma_free_coherent(mmc_dev(mmc), ADMA_SIZE,
Russell Kingd1e49f72014-04-25 12:58:34 +01003340 host->adma_desc, host->adma_addr);
Pierre Ossman2134a922008-06-28 18:28:51 +02003341 kfree(host->align_buffer);
3342
3343 host->adma_desc = NULL;
3344 host->align_buffer = NULL;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003345}
3346
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003347EXPORT_SYMBOL_GPL(sdhci_remove_host);
3348
3349void sdhci_free_host(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -08003350{
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003351 mmc_free_host(host->mmc);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003352}
3353
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003354EXPORT_SYMBOL_GPL(sdhci_free_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003355
3356/*****************************************************************************\
3357 * *
3358 * Driver init/exit *
3359 * *
3360\*****************************************************************************/
3361
3362static int __init sdhci_drv_init(void)
3363{
Girish K Sa3c76eb2011-10-11 11:44:09 +05303364 pr_info(DRIVER_NAME
Pierre Ossman52fbf9c2007-02-09 08:23:41 +01003365 ": Secure Digital Host Controller Interface driver\n");
Girish K Sa3c76eb2011-10-11 11:44:09 +05303366 pr_info(DRIVER_NAME ": Copyright(c) Pierre Ossman\n");
Pierre Ossmand129bce2006-03-24 03:18:17 -08003367
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003368 return 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003369}
3370
3371static void __exit sdhci_drv_exit(void)
3372{
Pierre Ossmand129bce2006-03-24 03:18:17 -08003373}
3374
3375module_init(sdhci_drv_init);
3376module_exit(sdhci_drv_exit);
3377
Pierre Ossmandf673b22006-06-30 02:22:31 -07003378module_param(debug_quirks, uint, 0444);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003379module_param(debug_quirks2, uint, 0444);
Pierre Ossman67435272006-06-30 02:22:31 -07003380
Pierre Ossman32710e82009-04-08 20:14:54 +02003381MODULE_AUTHOR("Pierre Ossman <pierre@ossman.eu>");
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003382MODULE_DESCRIPTION("Secure Digital Host Controller Interface core driver");
Pierre Ossmand129bce2006-03-24 03:18:17 -08003383MODULE_LICENSE("GPL");
Pierre Ossman67435272006-06-30 02:22:31 -07003384
Pierre Ossmandf673b22006-06-30 02:22:31 -07003385MODULE_PARM_DESC(debug_quirks, "Force certain quirks.");
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003386MODULE_PARM_DESC(debug_quirks2, "Force certain other quirks.");