blob: 2b17cc1246caa146f157d70164825d22b906de8b [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 Lu473b0952012-07-03 17:27:49 +080030#include <linux/mmc/card.h>
Corneliu Doban85cc1c32015-02-09 16:06:29 -080031#include <linux/mmc/sdio.h>
Guennadi Liakhovetskibec9d4e2012-09-17 16:45:10 +080032#include <linux/mmc/slot-gpio.h>
Pierre Ossmand129bce2006-03-24 03:18:17 -080033
Pierre Ossmand129bce2006-03-24 03:18:17 -080034#include "sdhci.h"
35
36#define DRIVER_NAME "sdhci"
Pierre Ossmand129bce2006-03-24 03:18:17 -080037
Pierre Ossmand129bce2006-03-24 03:18:17 -080038#define DBG(f, x...) \
Russell Kingc6563172006-03-29 09:30:20 +010039 pr_debug(DRIVER_NAME " [%s()]: " f, __func__,## x)
Pierre Ossmand129bce2006-03-24 03:18:17 -080040
Pierre Ossmanf9134312008-12-21 17:01:48 +010041#if defined(CONFIG_LEDS_CLASS) || (defined(CONFIG_LEDS_CLASS_MODULE) && \
42 defined(CONFIG_MMC_SDHCI_MODULE))
43#define SDHCI_USE_LEDS_CLASS
44#endif
45
Arindam Nathb513ea22011-05-05 12:19:04 +053046#define MAX_TUNING_LOOP 40
47
Pierre Ossmandf673b22006-06-30 02:22:31 -070048static unsigned int debug_quirks = 0;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +030049static unsigned int debug_quirks2;
Pierre Ossman67435272006-06-30 02:22:31 -070050
Pierre Ossmand129bce2006-03-24 03:18:17 -080051static void sdhci_finish_data(struct sdhci_host *);
52
Pierre Ossmand129bce2006-03-24 03:18:17 -080053static void sdhci_finish_command(struct sdhci_host *);
Girish K S069c9f12012-01-06 09:56:39 +053054static int sdhci_execute_tuning(struct mmc_host *mmc, u32 opcode);
Kevin Liu52983382013-01-31 11:31:37 +080055static void sdhci_enable_preset_value(struct sdhci_host *host, bool enable);
Haibo Chen348487c2014-12-09 17:04:05 +080056static int sdhci_pre_dma_transfer(struct sdhci_host *host,
Haibo Chend31911b2015-08-25 10:02:11 +080057 struct mmc_data *data);
Scott Branden04e079cf2015-03-10 11:35:10 -070058static int sdhci_do_get_cd(struct sdhci_host *host);
Pierre Ossmand129bce2006-03-24 03:18:17 -080059
Rafael J. Wysocki162d6f92014-12-05 03:05:33 +010060#ifdef CONFIG_PM
Adrian Hunter66fd8ad2011-10-03 15:33:34 +030061static int sdhci_runtime_pm_get(struct sdhci_host *host);
62static int sdhci_runtime_pm_put(struct sdhci_host *host);
Adrian Hunterf0710a52013-05-06 12:17:32 +030063static void sdhci_runtime_pm_bus_on(struct sdhci_host *host);
64static void sdhci_runtime_pm_bus_off(struct sdhci_host *host);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +030065#else
66static inline int sdhci_runtime_pm_get(struct sdhci_host *host)
67{
68 return 0;
69}
70static inline int sdhci_runtime_pm_put(struct sdhci_host *host)
71{
72 return 0;
73}
Adrian Hunterf0710a52013-05-06 12:17:32 +030074static void sdhci_runtime_pm_bus_on(struct sdhci_host *host)
75{
76}
77static void sdhci_runtime_pm_bus_off(struct sdhci_host *host)
78{
79}
Adrian Hunter66fd8ad2011-10-03 15:33:34 +030080#endif
81
Pierre Ossmand129bce2006-03-24 03:18:17 -080082static void sdhci_dumpregs(struct sdhci_host *host)
83{
Girish K Sa3c76eb2011-10-11 11:44:09 +053084 pr_debug(DRIVER_NAME ": =========== REGISTER DUMP (%s)===========\n",
Philip Rakity412ab652010-09-22 15:25:13 -070085 mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -080086
Girish K Sa3c76eb2011-10-11 11:44:09 +053087 pr_debug(DRIVER_NAME ": Sys addr: 0x%08x | Version: 0x%08x\n",
Anton Vorontsov4e4141a2009-03-17 00:13:46 +030088 sdhci_readl(host, SDHCI_DMA_ADDRESS),
89 sdhci_readw(host, SDHCI_HOST_VERSION));
Girish K Sa3c76eb2011-10-11 11:44:09 +053090 pr_debug(DRIVER_NAME ": Blk size: 0x%08x | Blk cnt: 0x%08x\n",
Anton Vorontsov4e4141a2009-03-17 00:13:46 +030091 sdhci_readw(host, SDHCI_BLOCK_SIZE),
92 sdhci_readw(host, SDHCI_BLOCK_COUNT));
Girish K Sa3c76eb2011-10-11 11:44:09 +053093 pr_debug(DRIVER_NAME ": Argument: 0x%08x | Trn mode: 0x%08x\n",
Anton Vorontsov4e4141a2009-03-17 00:13:46 +030094 sdhci_readl(host, SDHCI_ARGUMENT),
95 sdhci_readw(host, SDHCI_TRANSFER_MODE));
Girish K Sa3c76eb2011-10-11 11:44:09 +053096 pr_debug(DRIVER_NAME ": Present: 0x%08x | Host ctl: 0x%08x\n",
Anton Vorontsov4e4141a2009-03-17 00:13:46 +030097 sdhci_readl(host, SDHCI_PRESENT_STATE),
98 sdhci_readb(host, SDHCI_HOST_CONTROL));
Girish K Sa3c76eb2011-10-11 11:44:09 +053099 pr_debug(DRIVER_NAME ": Power: 0x%08x | Blk gap: 0x%08x\n",
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300100 sdhci_readb(host, SDHCI_POWER_CONTROL),
101 sdhci_readb(host, SDHCI_BLOCK_GAP_CONTROL));
Girish K Sa3c76eb2011-10-11 11:44:09 +0530102 pr_debug(DRIVER_NAME ": Wake-up: 0x%08x | Clock: 0x%08x\n",
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300103 sdhci_readb(host, SDHCI_WAKE_UP_CONTROL),
104 sdhci_readw(host, SDHCI_CLOCK_CONTROL));
Girish K Sa3c76eb2011-10-11 11:44:09 +0530105 pr_debug(DRIVER_NAME ": Timeout: 0x%08x | Int stat: 0x%08x\n",
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300106 sdhci_readb(host, SDHCI_TIMEOUT_CONTROL),
107 sdhci_readl(host, SDHCI_INT_STATUS));
Girish K Sa3c76eb2011-10-11 11:44:09 +0530108 pr_debug(DRIVER_NAME ": Int enab: 0x%08x | Sig enab: 0x%08x\n",
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300109 sdhci_readl(host, SDHCI_INT_ENABLE),
110 sdhci_readl(host, SDHCI_SIGNAL_ENABLE));
Girish K Sa3c76eb2011-10-11 11:44:09 +0530111 pr_debug(DRIVER_NAME ": AC12 err: 0x%08x | Slot int: 0x%08x\n",
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300112 sdhci_readw(host, SDHCI_ACMD12_ERR),
113 sdhci_readw(host, SDHCI_SLOT_INT_STATUS));
Girish K Sa3c76eb2011-10-11 11:44:09 +0530114 pr_debug(DRIVER_NAME ": Caps: 0x%08x | Caps_1: 0x%08x\n",
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300115 sdhci_readl(host, SDHCI_CAPABILITIES),
Philip Rakitye8120ad2010-11-30 00:55:23 -0500116 sdhci_readl(host, SDHCI_CAPABILITIES_1));
Girish K Sa3c76eb2011-10-11 11:44:09 +0530117 pr_debug(DRIVER_NAME ": Cmd: 0x%08x | Max curr: 0x%08x\n",
Philip Rakitye8120ad2010-11-30 00:55:23 -0500118 sdhci_readw(host, SDHCI_COMMAND),
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300119 sdhci_readl(host, SDHCI_MAX_CURRENT));
Girish K Sa3c76eb2011-10-11 11:44:09 +0530120 pr_debug(DRIVER_NAME ": Host ctl2: 0x%08x\n",
Arindam Nathf2119df2011-05-05 12:18:57 +0530121 sdhci_readw(host, SDHCI_HOST_CONTROL2));
Pierre Ossmand129bce2006-03-24 03:18:17 -0800122
Adrian Huntere57a5f62014-11-04 12:42:46 +0200123 if (host->flags & SDHCI_USE_ADMA) {
124 if (host->flags & SDHCI_USE_64_BIT_DMA)
125 pr_debug(DRIVER_NAME ": ADMA Err: 0x%08x | ADMA Ptr: 0x%08x%08x\n",
126 readl(host->ioaddr + SDHCI_ADMA_ERROR),
127 readl(host->ioaddr + SDHCI_ADMA_ADDRESS_HI),
128 readl(host->ioaddr + SDHCI_ADMA_ADDRESS));
129 else
130 pr_debug(DRIVER_NAME ": ADMA Err: 0x%08x | ADMA Ptr: 0x%08x\n",
131 readl(host->ioaddr + SDHCI_ADMA_ERROR),
132 readl(host->ioaddr + SDHCI_ADMA_ADDRESS));
133 }
Ben Dooksbe3f4ae2009-06-08 23:33:52 +0100134
Girish K Sa3c76eb2011-10-11 11:44:09 +0530135 pr_debug(DRIVER_NAME ": ===========================================\n");
Pierre Ossmand129bce2006-03-24 03:18:17 -0800136}
137
138/*****************************************************************************\
139 * *
140 * Low level functions *
141 * *
142\*****************************************************************************/
143
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300144static void sdhci_set_card_detection(struct sdhci_host *host, bool enable)
145{
Russell King5b4f1f62014-04-25 12:57:02 +0100146 u32 present;
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300147
Adrian Hunterc79396c2011-12-27 15:48:42 +0200148 if ((host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION) ||
Daniel Drake87b87a32012-04-10 00:14:20 +0100149 (host->mmc->caps & MMC_CAP_NONREMOVABLE))
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300150 return;
151
Russell King5b4f1f62014-04-25 12:57:02 +0100152 if (enable) {
153 present = sdhci_readl(host, SDHCI_PRESENT_STATE) &
154 SDHCI_CARD_PRESENT;
Shawn Guod25928d2011-06-21 22:41:48 +0800155
Russell King5b4f1f62014-04-25 12:57:02 +0100156 host->ier |= present ? SDHCI_INT_CARD_REMOVE :
157 SDHCI_INT_CARD_INSERT;
158 } else {
159 host->ier &= ~(SDHCI_INT_CARD_REMOVE | SDHCI_INT_CARD_INSERT);
160 }
Russell Kingb537f942014-04-25 12:56:01 +0100161
162 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
163 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300164}
165
166static void sdhci_enable_card_detection(struct sdhci_host *host)
167{
168 sdhci_set_card_detection(host, true);
169}
170
171static void sdhci_disable_card_detection(struct sdhci_host *host)
172{
173 sdhci_set_card_detection(host, false);
174}
175
Russell King03231f92014-04-25 12:57:12 +0100176void sdhci_reset(struct sdhci_host *host, u8 mask)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800177{
Pierre Ossmane16514d82006-06-30 02:22:24 -0700178 unsigned long timeout;
Philip Rakity393c1a32011-01-21 11:26:40 -0800179
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300180 sdhci_writeb(host, mask, SDHCI_SOFTWARE_RESET);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800181
Adrian Hunterf0710a52013-05-06 12:17:32 +0300182 if (mask & SDHCI_RESET_ALL) {
Pierre Ossmand129bce2006-03-24 03:18:17 -0800183 host->clock = 0;
Adrian Hunterf0710a52013-05-06 12:17:32 +0300184 /* Reset-all turns off SD Bus Power */
185 if (host->quirks2 & SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON)
186 sdhci_runtime_pm_bus_off(host);
187 }
Pierre Ossmand129bce2006-03-24 03:18:17 -0800188
Pierre Ossmane16514d82006-06-30 02:22:24 -0700189 /* Wait max 100 ms */
190 timeout = 100;
191
192 /* hw clears the bit when it's done */
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300193 while (sdhci_readb(host, SDHCI_SOFTWARE_RESET) & mask) {
Pierre Ossmane16514d82006-06-30 02:22:24 -0700194 if (timeout == 0) {
Girish K Sa3c76eb2011-10-11 11:44:09 +0530195 pr_err("%s: Reset 0x%x never completed.\n",
Pierre Ossmane16514d82006-06-30 02:22:24 -0700196 mmc_hostname(host->mmc), (int)mask);
197 sdhci_dumpregs(host);
198 return;
199 }
200 timeout--;
201 mdelay(1);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800202 }
Russell King03231f92014-04-25 12:57:12 +0100203}
204EXPORT_SYMBOL_GPL(sdhci_reset);
Anton Vorontsov063a9db2009-03-17 00:14:02 +0300205
Russell King03231f92014-04-25 12:57:12 +0100206static void sdhci_do_reset(struct sdhci_host *host, u8 mask)
207{
208 if (host->quirks & SDHCI_QUIRK_NO_CARD_NO_RESET) {
Ivan T. Ivanov135b0a22015-07-06 15:16:21 +0300209 if (!sdhci_do_get_cd(host))
Russell King03231f92014-04-25 12:57:12 +0100210 return;
211 }
212
213 host->ops->reset(host, mask);
Philip Rakity393c1a32011-01-21 11:26:40 -0800214
Russell Kingda91a8f2014-04-25 13:00:12 +0100215 if (mask & SDHCI_RESET_ALL) {
216 if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
217 if (host->ops->enable_dma)
218 host->ops->enable_dma(host);
219 }
220
221 /* Resetting the controller clears many */
222 host->preset_enabled = false;
Shaohui Xie3abc1e802011-12-29 16:33:00 +0800223 }
Pierre Ossmand129bce2006-03-24 03:18:17 -0800224}
225
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -0800226static void sdhci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios);
227
228static void sdhci_init(struct sdhci_host *host, int soft)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800229{
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -0800230 if (soft)
Russell King03231f92014-04-25 12:57:12 +0100231 sdhci_do_reset(host, SDHCI_RESET_CMD|SDHCI_RESET_DATA);
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -0800232 else
Russell King03231f92014-04-25 12:57:12 +0100233 sdhci_do_reset(host, SDHCI_RESET_ALL);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800234
Russell Kingb537f942014-04-25 12:56:01 +0100235 host->ier = SDHCI_INT_BUS_POWER | SDHCI_INT_DATA_END_BIT |
236 SDHCI_INT_DATA_CRC | SDHCI_INT_DATA_TIMEOUT |
237 SDHCI_INT_INDEX | SDHCI_INT_END_BIT | SDHCI_INT_CRC |
238 SDHCI_INT_TIMEOUT | SDHCI_INT_DATA_END |
239 SDHCI_INT_RESPONSE;
240
241 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
242 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -0800243
244 if (soft) {
245 /* force clock reconfiguration */
246 host->clock = 0;
247 sdhci_set_ios(host->mmc, &host->mmc->ios);
248 }
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300249}
Pierre Ossmand129bce2006-03-24 03:18:17 -0800250
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300251static void sdhci_reinit(struct sdhci_host *host)
252{
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -0800253 sdhci_init(host, 0);
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300254 sdhci_enable_card_detection(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800255}
256
257static void sdhci_activate_led(struct sdhci_host *host)
258{
259 u8 ctrl;
260
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300261 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800262 ctrl |= SDHCI_CTRL_LED;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300263 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800264}
265
266static void sdhci_deactivate_led(struct sdhci_host *host)
267{
268 u8 ctrl;
269
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300270 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800271 ctrl &= ~SDHCI_CTRL_LED;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300272 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800273}
274
Pierre Ossmanf9134312008-12-21 17:01:48 +0100275#ifdef SDHCI_USE_LEDS_CLASS
Pierre Ossman2f730fe2008-03-17 10:29:38 +0100276static void sdhci_led_control(struct led_classdev *led,
277 enum led_brightness brightness)
278{
279 struct sdhci_host *host = container_of(led, struct sdhci_host, led);
280 unsigned long flags;
281
282 spin_lock_irqsave(&host->lock, flags);
283
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300284 if (host->runtime_suspended)
285 goto out;
286
Pierre Ossman2f730fe2008-03-17 10:29:38 +0100287 if (brightness == LED_OFF)
288 sdhci_deactivate_led(host);
289 else
290 sdhci_activate_led(host);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300291out:
Pierre Ossman2f730fe2008-03-17 10:29:38 +0100292 spin_unlock_irqrestore(&host->lock, flags);
293}
294#endif
295
Pierre Ossmand129bce2006-03-24 03:18:17 -0800296/*****************************************************************************\
297 * *
298 * Core functions *
299 * *
300\*****************************************************************************/
301
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100302static void sdhci_read_block_pio(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800303{
Pierre Ossman76591502008-07-21 00:32:11 +0200304 unsigned long flags;
305 size_t blksize, len, chunk;
Steven Noonan7244b852008-10-01 01:50:25 -0700306 u32 uninitialized_var(scratch);
Pierre Ossman76591502008-07-21 00:32:11 +0200307 u8 *buf;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800308
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100309 DBG("PIO reading\n");
Pierre Ossmand129bce2006-03-24 03:18:17 -0800310
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100311 blksize = host->data->blksz;
Pierre Ossman76591502008-07-21 00:32:11 +0200312 chunk = 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800313
Pierre Ossman76591502008-07-21 00:32:11 +0200314 local_irq_save(flags);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800315
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100316 while (blksize) {
Fabio Estevambf3a35a2015-05-09 18:44:51 -0300317 BUG_ON(!sg_miter_next(&host->sg_miter));
Pierre Ossmand129bce2006-03-24 03:18:17 -0800318
Pierre Ossman76591502008-07-21 00:32:11 +0200319 len = min(host->sg_miter.length, blksize);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800320
Pierre Ossman76591502008-07-21 00:32:11 +0200321 blksize -= len;
322 host->sg_miter.consumed = len;
Alex Dubov14d836e2007-04-13 19:04:38 +0200323
Pierre Ossman76591502008-07-21 00:32:11 +0200324 buf = host->sg_miter.addr;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800325
Pierre Ossman76591502008-07-21 00:32:11 +0200326 while (len) {
327 if (chunk == 0) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300328 scratch = sdhci_readl(host, SDHCI_BUFFER);
Pierre Ossman76591502008-07-21 00:32:11 +0200329 chunk = 4;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800330 }
Pierre Ossman76591502008-07-21 00:32:11 +0200331
332 *buf = scratch & 0xFF;
333
334 buf++;
335 scratch >>= 8;
336 chunk--;
337 len--;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800338 }
339 }
Pierre Ossman76591502008-07-21 00:32:11 +0200340
341 sg_miter_stop(&host->sg_miter);
342
343 local_irq_restore(flags);
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100344}
Pierre Ossmand129bce2006-03-24 03:18:17 -0800345
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100346static void sdhci_write_block_pio(struct sdhci_host *host)
347{
Pierre Ossman76591502008-07-21 00:32:11 +0200348 unsigned long flags;
349 size_t blksize, len, chunk;
350 u32 scratch;
351 u8 *buf;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100352
353 DBG("PIO writing\n");
354
355 blksize = host->data->blksz;
Pierre Ossman76591502008-07-21 00:32:11 +0200356 chunk = 0;
357 scratch = 0;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100358
Pierre Ossman76591502008-07-21 00:32:11 +0200359 local_irq_save(flags);
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100360
361 while (blksize) {
Fabio Estevambf3a35a2015-05-09 18:44:51 -0300362 BUG_ON(!sg_miter_next(&host->sg_miter));
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100363
Pierre Ossman76591502008-07-21 00:32:11 +0200364 len = min(host->sg_miter.length, blksize);
Alex Dubov14d836e2007-04-13 19:04:38 +0200365
Pierre Ossman76591502008-07-21 00:32:11 +0200366 blksize -= len;
367 host->sg_miter.consumed = len;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100368
Pierre Ossman76591502008-07-21 00:32:11 +0200369 buf = host->sg_miter.addr;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100370
Pierre Ossman76591502008-07-21 00:32:11 +0200371 while (len) {
372 scratch |= (u32)*buf << (chunk * 8);
373
374 buf++;
375 chunk++;
376 len--;
377
378 if ((chunk == 4) || ((len == 0) && (blksize == 0))) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300379 sdhci_writel(host, scratch, SDHCI_BUFFER);
Pierre Ossman76591502008-07-21 00:32:11 +0200380 chunk = 0;
381 scratch = 0;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100382 }
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100383 }
384 }
Pierre Ossman76591502008-07-21 00:32:11 +0200385
386 sg_miter_stop(&host->sg_miter);
387
388 local_irq_restore(flags);
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100389}
390
391static void sdhci_transfer_pio(struct sdhci_host *host)
392{
393 u32 mask;
394
395 BUG_ON(!host->data);
396
Pierre Ossman76591502008-07-21 00:32:11 +0200397 if (host->blocks == 0)
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100398 return;
399
400 if (host->data->flags & MMC_DATA_READ)
401 mask = SDHCI_DATA_AVAILABLE;
402 else
403 mask = SDHCI_SPACE_AVAILABLE;
404
Pierre Ossman4a3cba32008-07-29 00:11:16 +0200405 /*
406 * Some controllers (JMicron JMB38x) mess up the buffer bits
407 * for transfers < 4 bytes. As long as it is just one block,
408 * we can ignore the bits.
409 */
410 if ((host->quirks & SDHCI_QUIRK_BROKEN_SMALL_PIO) &&
411 (host->data->blocks == 1))
412 mask = ~0;
413
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300414 while (sdhci_readl(host, SDHCI_PRESENT_STATE) & mask) {
Anton Vorontsov3e3bf202009-03-17 00:14:00 +0300415 if (host->quirks & SDHCI_QUIRK_PIO_NEEDS_DELAY)
416 udelay(100);
417
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100418 if (host->data->flags & MMC_DATA_READ)
419 sdhci_read_block_pio(host);
420 else
421 sdhci_write_block_pio(host);
422
Pierre Ossman76591502008-07-21 00:32:11 +0200423 host->blocks--;
424 if (host->blocks == 0)
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100425 break;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100426 }
427
428 DBG("PIO transfer complete.\n");
Pierre Ossmand129bce2006-03-24 03:18:17 -0800429}
430
Pierre Ossman2134a922008-06-28 18:28:51 +0200431static char *sdhci_kmap_atomic(struct scatterlist *sg, unsigned long *flags)
432{
433 local_irq_save(*flags);
Cong Wang482fce92011-11-27 13:27:00 +0800434 return kmap_atomic(sg_page(sg)) + sg->offset;
Pierre Ossman2134a922008-06-28 18:28:51 +0200435}
436
437static void sdhci_kunmap_atomic(void *buffer, unsigned long *flags)
438{
Cong Wang482fce92011-11-27 13:27:00 +0800439 kunmap_atomic(buffer);
Pierre Ossman2134a922008-06-28 18:28:51 +0200440 local_irq_restore(*flags);
441}
442
Adrian Huntere57a5f62014-11-04 12:42:46 +0200443static void sdhci_adma_write_desc(struct sdhci_host *host, void *desc,
444 dma_addr_t addr, int len, unsigned cmd)
Ben Dooks118cd172010-03-05 13:43:26 -0800445{
Adrian Huntere57a5f62014-11-04 12:42:46 +0200446 struct sdhci_adma2_64_desc *dma_desc = desc;
Ben Dooks118cd172010-03-05 13:43:26 -0800447
Adrian Huntere57a5f62014-11-04 12:42:46 +0200448 /* 32-bit and 64-bit descriptors have these members in same position */
Adrian Hunter05452302014-11-04 12:42:45 +0200449 dma_desc->cmd = cpu_to_le16(cmd);
450 dma_desc->len = cpu_to_le16(len);
Adrian Huntere57a5f62014-11-04 12:42:46 +0200451 dma_desc->addr_lo = cpu_to_le32((u32)addr);
452
453 if (host->flags & SDHCI_USE_64_BIT_DMA)
454 dma_desc->addr_hi = cpu_to_le32((u64)addr >> 32);
Ben Dooks118cd172010-03-05 13:43:26 -0800455}
456
Adrian Hunterb5ffa672014-11-04 12:42:40 +0200457static void sdhci_adma_mark_end(void *desc)
458{
Adrian Huntere57a5f62014-11-04 12:42:46 +0200459 struct sdhci_adma2_64_desc *dma_desc = desc;
Adrian Hunterb5ffa672014-11-04 12:42:40 +0200460
Adrian Huntere57a5f62014-11-04 12:42:46 +0200461 /* 32-bit and 64-bit descriptors have 'cmd' in same position */
Adrian Hunter05452302014-11-04 12:42:45 +0200462 dma_desc->cmd |= cpu_to_le16(ADMA2_END);
Adrian Hunterb5ffa672014-11-04 12:42:40 +0200463}
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
Adrian Hunter1c3d5f62014-11-04 12:42:41 +0200470 void *desc;
471 void *align;
Pierre Ossman2134a922008-06-28 18:28:51 +0200472 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),
Adrian Hunter76fe3792014-11-04 12:42:42 +0200492 host->align_buffer, host->align_buffer_sz, 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;
Adrian Hunter76fe3792014-11-04 12:42:42 +0200495 BUG_ON(host->align_addr & host->align_mask);
Pierre Ossman2134a922008-06-28 18:28:51 +0200496
Haibo Chend31911b2015-08-25 10:02:11 +0800497 host->sg_count = sdhci_pre_dma_transfer(host, data);
Haibo Chen348487c2014-12-09 17:04:05 +0800498 if (host->sg_count < 0)
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200499 goto unmap_align;
Pierre Ossman2134a922008-06-28 18:28:51 +0200500
Adrian Hunter4efaa6f2014-11-04 12:42:39 +0200501 desc = host->adma_table;
Pierre Ossman2134a922008-06-28 18:28:51 +0200502 align = host->align_buffer;
503
504 align_addr = host->align_addr;
505
506 for_each_sg(data->sg, sg, host->sg_count, i) {
507 addr = sg_dma_address(sg);
508 len = sg_dma_len(sg);
509
510 /*
511 * The SDHCI specification states that ADMA
512 * addresses must be 32-bit aligned. If they
513 * aren't, then we use a bounce buffer for
514 * the (up to three) bytes that screw up the
515 * alignment.
516 */
Adrian Hunter76fe3792014-11-04 12:42:42 +0200517 offset = (host->align_sz - (addr & host->align_mask)) &
518 host->align_mask;
Pierre Ossman2134a922008-06-28 18:28:51 +0200519 if (offset) {
520 if (data->flags & MMC_DATA_WRITE) {
521 buffer = sdhci_kmap_atomic(sg, &flags);
522 memcpy(align, buffer, offset);
523 sdhci_kunmap_atomic(buffer, &flags);
524 }
525
Ben Dooks118cd172010-03-05 13:43:26 -0800526 /* tran, valid */
Adrian Huntere57a5f62014-11-04 12:42:46 +0200527 sdhci_adma_write_desc(host, desc, align_addr, offset,
Adrian Hunter739d46d2014-11-04 12:42:44 +0200528 ADMA2_TRAN_VALID);
Pierre Ossman2134a922008-06-28 18:28:51 +0200529
530 BUG_ON(offset > 65536);
531
Adrian Hunter76fe3792014-11-04 12:42:42 +0200532 align += host->align_sz;
533 align_addr += host->align_sz;
Pierre Ossman2134a922008-06-28 18:28:51 +0200534
Adrian Hunter76fe3792014-11-04 12:42:42 +0200535 desc += host->desc_sz;
Pierre Ossman2134a922008-06-28 18:28:51 +0200536
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 */
Adrian Huntere57a5f62014-11-04 12:42:46 +0200544 sdhci_adma_write_desc(host, desc, addr, len, ADMA2_TRAN_VALID);
Adrian Hunter76fe3792014-11-04 12:42:42 +0200545 desc += host->desc_sz;
Pierre Ossman2134a922008-06-28 18:28:51 +0200546
547 /*
548 * If this triggers then we have a calculation bug
549 * somewhere. :/
550 */
Adrian Hunter76fe3792014-11-04 12:42:42 +0200551 WARN_ON((desc - host->adma_table) >= host->adma_table_sz);
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 */
Adrian Hunter4efaa6f2014-11-04 12:42:39 +0200558 if (desc != host->adma_table) {
Adrian Hunter76fe3792014-11-04 12:42:42 +0200559 desc -= host->desc_sz;
Adrian Hunterb5ffa672014-11-04 12:42:40 +0200560 sdhci_adma_mark_end(desc);
Thomas Abraham70764a92010-05-26 14:42:04 -0700561 }
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 */
Adrian Huntere57a5f62014-11-04 12:42:46 +0200568 sdhci_adma_write_desc(host, desc, 0, 0, ADMA2_NOP_END_VALID);
Thomas Abraham70764a92010-05-26 14:42:04 -0700569 }
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),
Adrian Hunter76fe3792014-11-04 12:42:42 +0200576 host->align_addr, host->align_buffer_sz, direction);
Pierre Ossman2134a922008-06-28 18:28:51 +0200577 }
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,
Adrian Hunter76fe3792014-11-04 12:42:42 +0200583 host->align_buffer_sz, direction);
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200584fail:
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;
Adrian Hunter1c3d5f62014-11-04 12:42:41 +0200595 void *align;
Pierre Ossman2134a922008-06-28 18:28:51 +0200596 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,
Adrian Hunter76fe3792014-11-04 12:42:42 +0200606 host->align_buffer_sz, direction);
Pierre Ossman2134a922008-06-28 18:28:51 +0200607
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)
Adrian Hunter76fe3792014-11-04 12:42:42 +0200611 if (sg_dma_address(sg) & host->align_mask) {
Russell Kingde0b65a2014-04-25 12:58:29 +0100612 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) {
Adrian Hunter76fe3792014-11-04 12:42:42 +0200623 if (sg_dma_address(sg) & host->align_mask) {
624 size = host->align_sz -
625 (sg_dma_address(sg) & host->align_mask);
Pierre Ossman2134a922008-06-28 18:28:51 +0200626
627 buffer = sdhci_kmap_atomic(sg, &flags);
628 memcpy(buffer, align, size);
629 sdhci_kunmap_atomic(buffer, &flags);
630
Adrian Hunter76fe3792014-11-04 12:42:42 +0200631 align += host->align_sz;
Pierre Ossman2134a922008-06-28 18:28:51 +0200632 }
633 }
634 }
635
Haibo Chend31911b2015-08-25 10:02:11 +0800636 if (data->host_cookie == COOKIE_MAPPED) {
Haibo Chen348487c2014-12-09 17:04:05 +0800637 dma_unmap_sg(mmc_dev(host->mmc), data->sg,
638 data->sg_len, direction);
Haibo Chend31911b2015-08-25 10:02:11 +0800639 data->host_cookie = COOKIE_UNMAPPED;
640 }
Pierre Ossman2134a922008-06-28 18:28:51 +0200641}
642
Andrei Warkentina3c77782011-04-11 16:13:42 -0500643static u8 sdhci_calc_timeout(struct sdhci_host *host, struct mmc_command *cmd)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800644{
Pierre Ossman1c8cde92006-06-30 02:22:25 -0700645 u8 count;
Andrei Warkentina3c77782011-04-11 16:13:42 -0500646 struct mmc_data *data = cmd->data;
Pierre Ossman1c8cde92006-06-30 02:22:25 -0700647 unsigned target_timeout, current_timeout;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800648
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200649 /*
650 * If the host controller provides us with an incorrect timeout
651 * value, just skip the check and use 0xE. The hardware may take
652 * longer to time out, but that's much better than having a too-short
653 * timeout value.
654 */
Pierre Ossman11a2f1b2009-06-21 20:59:33 +0200655 if (host->quirks & SDHCI_QUIRK_BROKEN_TIMEOUT_VAL)
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200656 return 0xE;
Pierre Ossmane538fbe2007-08-12 16:46:32 +0200657
Andrei Warkentina3c77782011-04-11 16:13:42 -0500658 /* Unspecified timeout, assume max */
Ulf Hansson1d4d7742014-01-08 15:06:08 +0100659 if (!data && !cmd->busy_timeout)
Andrei Warkentina3c77782011-04-11 16:13:42 -0500660 return 0xE;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800661
Andrei Warkentina3c77782011-04-11 16:13:42 -0500662 /* timeout in us */
663 if (!data)
Ulf Hansson1d4d7742014-01-08 15:06:08 +0100664 target_timeout = cmd->busy_timeout * 1000;
Andy Shevchenko78a2ca22011-08-03 18:35:59 +0300665 else {
666 target_timeout = data->timeout_ns / 1000;
667 if (host->clock)
668 target_timeout += data->timeout_clks / host->clock;
669 }
Anton Vorontsov81b39802009-09-22 16:45:13 -0700670
Pierre Ossman1c8cde92006-06-30 02:22:25 -0700671 /*
672 * Figure out needed cycles.
673 * We do this in steps in order to fit inside a 32 bit int.
674 * The first step is the minimum timeout, which will have a
675 * minimum resolution of 6 bits:
676 * (1) 2^13*1000 > 2^22,
677 * (2) host->timeout_clk < 2^16
678 * =>
679 * (1) / (2) > 2^6
680 */
681 count = 0;
682 current_timeout = (1 << 13) * 1000 / host->timeout_clk;
683 while (current_timeout < target_timeout) {
684 count++;
685 current_timeout <<= 1;
686 if (count >= 0xF)
687 break;
688 }
689
690 if (count >= 0xF) {
Chris Ball09eeff52012-06-01 10:39:45 -0400691 DBG("%s: Too large timeout 0x%x requested for CMD%d!\n",
692 mmc_hostname(host->mmc), count, cmd->opcode);
Pierre Ossman1c8cde92006-06-30 02:22:25 -0700693 count = 0xE;
694 }
695
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200696 return count;
697}
698
Anton Vorontsov6aa943a2009-03-17 00:13:50 +0300699static void sdhci_set_transfer_irqs(struct sdhci_host *host)
700{
701 u32 pio_irqs = SDHCI_INT_DATA_AVAIL | SDHCI_INT_SPACE_AVAIL;
702 u32 dma_irqs = SDHCI_INT_DMA_END | SDHCI_INT_ADMA_ERROR;
703
704 if (host->flags & SDHCI_REQ_USE_DMA)
Russell Kingb537f942014-04-25 12:56:01 +0100705 host->ier = (host->ier & ~pio_irqs) | dma_irqs;
Anton Vorontsov6aa943a2009-03-17 00:13:50 +0300706 else
Russell Kingb537f942014-04-25 12:56:01 +0100707 host->ier = (host->ier & ~dma_irqs) | pio_irqs;
708
709 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
710 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Anton Vorontsov6aa943a2009-03-17 00:13:50 +0300711}
712
Aisheng Dongb45e6682014-08-27 15:26:29 +0800713static void sdhci_set_timeout(struct sdhci_host *host, struct mmc_command *cmd)
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200714{
715 u8 count;
Aisheng Dongb45e6682014-08-27 15:26:29 +0800716
717 if (host->ops->set_timeout) {
718 host->ops->set_timeout(host, cmd);
719 } else {
720 count = sdhci_calc_timeout(host, cmd);
721 sdhci_writeb(host, count, SDHCI_TIMEOUT_CONTROL);
722 }
723}
724
725static void sdhci_prepare_data(struct sdhci_host *host, struct mmc_command *cmd)
726{
Pierre Ossman2134a922008-06-28 18:28:51 +0200727 u8 ctrl;
Andrei Warkentina3c77782011-04-11 16:13:42 -0500728 struct mmc_data *data = cmd->data;
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200729 int ret;
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200730
731 WARN_ON(host->data);
732
Aisheng Dongb45e6682014-08-27 15:26:29 +0800733 if (data || (cmd->flags & MMC_RSP_BUSY))
734 sdhci_set_timeout(host, cmd);
Andrei Warkentina3c77782011-04-11 16:13:42 -0500735
736 if (!data)
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200737 return;
738
739 /* Sanity checks */
740 BUG_ON(data->blksz * data->blocks > 524288);
741 BUG_ON(data->blksz > host->mmc->max_blk_size);
742 BUG_ON(data->blocks > 65535);
743
744 host->data = data;
745 host->data_early = 0;
Mikko Vinnif6a03cb2011-04-12 09:36:18 -0400746 host->data->bytes_xfered = 0;
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200747
Richard Röjforsa13abc72009-09-22 16:45:30 -0700748 if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA))
Pierre Ossmanc9fddbc2007-12-02 19:52:11 +0100749 host->flags |= SDHCI_REQ_USE_DMA;
750
Pierre Ossman2134a922008-06-28 18:28:51 +0200751 /*
752 * FIXME: This doesn't account for merging when mapping the
753 * scatterlist.
754 */
755 if (host->flags & SDHCI_REQ_USE_DMA) {
756 int broken, i;
757 struct scatterlist *sg;
758
759 broken = 0;
760 if (host->flags & SDHCI_USE_ADMA) {
761 if (host->quirks & SDHCI_QUIRK_32BIT_ADMA_SIZE)
762 broken = 1;
763 } else {
764 if (host->quirks & SDHCI_QUIRK_32BIT_DMA_SIZE)
765 broken = 1;
766 }
767
768 if (unlikely(broken)) {
769 for_each_sg(data->sg, sg, data->sg_len, i) {
770 if (sg->length & 0x3) {
Marek Vasut2e4456f2015-11-18 10:47:02 +0100771 DBG("Reverting to PIO because of transfer size (%d)\n",
Pierre Ossman2134a922008-06-28 18:28:51 +0200772 sg->length);
773 host->flags &= ~SDHCI_REQ_USE_DMA;
774 break;
775 }
776 }
777 }
Pierre Ossmanc9fddbc2007-12-02 19:52:11 +0100778 }
779
780 /*
781 * The assumption here being that alignment is the same after
782 * translation to device address space.
783 */
Pierre Ossman2134a922008-06-28 18:28:51 +0200784 if (host->flags & SDHCI_REQ_USE_DMA) {
785 int broken, i;
786 struct scatterlist *sg;
787
788 broken = 0;
789 if (host->flags & SDHCI_USE_ADMA) {
790 /*
791 * As we use 3 byte chunks to work around
792 * alignment problems, we need to check this
793 * quirk.
794 */
795 if (host->quirks & SDHCI_QUIRK_32BIT_ADMA_SIZE)
796 broken = 1;
797 } else {
798 if (host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR)
799 broken = 1;
800 }
801
802 if (unlikely(broken)) {
803 for_each_sg(data->sg, sg, data->sg_len, i) {
804 if (sg->offset & 0x3) {
Marek Vasut2e4456f2015-11-18 10:47:02 +0100805 DBG("Reverting to PIO because of bad alignment\n");
Pierre Ossman2134a922008-06-28 18:28:51 +0200806 host->flags &= ~SDHCI_REQ_USE_DMA;
807 break;
808 }
809 }
810 }
811 }
812
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200813 if (host->flags & SDHCI_REQ_USE_DMA) {
814 if (host->flags & SDHCI_USE_ADMA) {
815 ret = sdhci_adma_table_pre(host, data);
816 if (ret) {
817 /*
818 * This only happens when someone fed
819 * us an invalid request.
820 */
821 WARN_ON(1);
Pierre Ossmanebd6d352008-07-29 00:45:51 +0200822 host->flags &= ~SDHCI_REQ_USE_DMA;
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200823 } else {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300824 sdhci_writel(host, host->adma_addr,
825 SDHCI_ADMA_ADDRESS);
Adrian Huntere57a5f62014-11-04 12:42:46 +0200826 if (host->flags & SDHCI_USE_64_BIT_DMA)
827 sdhci_writel(host,
828 (u64)host->adma_addr >> 32,
829 SDHCI_ADMA_ADDRESS_HI);
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200830 }
831 } else {
Tomas Winklerc8b3e022008-07-05 19:52:04 +0300832 int sg_cnt;
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200833
Haibo Chend31911b2015-08-25 10:02:11 +0800834 sg_cnt = sdhci_pre_dma_transfer(host, data);
Jiri Slaby62a7f362015-06-12 11:45:02 +0200835 if (sg_cnt <= 0) {
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200836 /*
837 * This only happens when someone fed
838 * us an invalid request.
839 */
840 WARN_ON(1);
Pierre Ossmanebd6d352008-07-29 00:45:51 +0200841 host->flags &= ~SDHCI_REQ_USE_DMA;
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200842 } else {
Pierre Ossman719a61b2008-07-22 13:23:23 +0200843 WARN_ON(sg_cnt != 1);
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300844 sdhci_writel(host, sg_dma_address(data->sg),
845 SDHCI_DMA_ADDRESS);
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200846 }
847 }
848 }
849
Pierre Ossman2134a922008-06-28 18:28:51 +0200850 /*
851 * Always adjust the DMA selection as some controllers
852 * (e.g. JMicron) can't do PIO properly when the selection
853 * is ADMA.
854 */
855 if (host->version >= SDHCI_SPEC_200) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300856 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
Pierre Ossman2134a922008-06-28 18:28:51 +0200857 ctrl &= ~SDHCI_CTRL_DMA_MASK;
858 if ((host->flags & SDHCI_REQ_USE_DMA) &&
Adrian Huntere57a5f62014-11-04 12:42:46 +0200859 (host->flags & SDHCI_USE_ADMA)) {
860 if (host->flags & SDHCI_USE_64_BIT_DMA)
861 ctrl |= SDHCI_CTRL_ADMA64;
862 else
863 ctrl |= SDHCI_CTRL_ADMA32;
864 } else {
Pierre Ossman2134a922008-06-28 18:28:51 +0200865 ctrl |= SDHCI_CTRL_SDMA;
Adrian Huntere57a5f62014-11-04 12:42:46 +0200866 }
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300867 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Pierre Ossmanc9fddbc2007-12-02 19:52:11 +0100868 }
869
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200870 if (!(host->flags & SDHCI_REQ_USE_DMA)) {
Sebastian Andrzej Siewiorda60a912009-06-18 09:33:32 +0200871 int flags;
872
873 flags = SG_MITER_ATOMIC;
874 if (host->data->flags & MMC_DATA_READ)
875 flags |= SG_MITER_TO_SG;
876 else
877 flags |= SG_MITER_FROM_SG;
878 sg_miter_start(&host->sg_miter, data->sg, data->sg_len, flags);
Pierre Ossman76591502008-07-21 00:32:11 +0200879 host->blocks = data->blocks;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800880 }
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700881
Anton Vorontsov6aa943a2009-03-17 00:13:50 +0300882 sdhci_set_transfer_irqs(host);
883
Mikko Vinnif6a03cb2011-04-12 09:36:18 -0400884 /* Set the DMA boundary value and block size */
885 sdhci_writew(host, SDHCI_MAKE_BLKSZ(SDHCI_DEFAULT_BOUNDARY_ARG,
886 data->blksz), SDHCI_BLOCK_SIZE);
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300887 sdhci_writew(host, data->blocks, SDHCI_BLOCK_COUNT);
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700888}
889
890static void sdhci_set_transfer_mode(struct sdhci_host *host,
Andrei Warkentine89d4562011-05-23 15:06:37 -0500891 struct mmc_command *cmd)
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700892{
Vincent Yangd3fc5d72015-01-20 16:05:17 +0800893 u16 mode = 0;
Andrei Warkentine89d4562011-05-23 15:06:37 -0500894 struct mmc_data *data = cmd->data;
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700895
Dong Aisheng2b558c12013-10-30 22:09:48 +0800896 if (data == NULL) {
Vincent Wan9b8ffea2014-11-05 14:09:00 +0800897 if (host->quirks2 &
898 SDHCI_QUIRK2_CLEAR_TRANSFERMODE_REG_BEFORE_CMD) {
899 sdhci_writew(host, 0x0, SDHCI_TRANSFER_MODE);
900 } else {
Dong Aisheng2b558c12013-10-30 22:09:48 +0800901 /* clear Auto CMD settings for no data CMDs */
Vincent Wan9b8ffea2014-11-05 14:09:00 +0800902 mode = sdhci_readw(host, SDHCI_TRANSFER_MODE);
903 sdhci_writew(host, mode & ~(SDHCI_TRNS_AUTO_CMD12 |
Dong Aisheng2b558c12013-10-30 22:09:48 +0800904 SDHCI_TRNS_AUTO_CMD23), SDHCI_TRANSFER_MODE);
Vincent Wan9b8ffea2014-11-05 14:09:00 +0800905 }
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700906 return;
Dong Aisheng2b558c12013-10-30 22:09:48 +0800907 }
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700908
Pierre Ossmane538fbe2007-08-12 16:46:32 +0200909 WARN_ON(!host->data);
910
Vincent Yangd3fc5d72015-01-20 16:05:17 +0800911 if (!(host->quirks2 & SDHCI_QUIRK2_SUPPORT_SINGLE))
912 mode = SDHCI_TRNS_BLK_CNT_EN;
913
Andrei Warkentine89d4562011-05-23 15:06:37 -0500914 if (mmc_op_multi(cmd->opcode) || data->blocks > 1) {
Vincent Yangd3fc5d72015-01-20 16:05:17 +0800915 mode = SDHCI_TRNS_BLK_CNT_EN | SDHCI_TRNS_MULTI;
Andrei Warkentine89d4562011-05-23 15:06:37 -0500916 /*
917 * If we are sending CMD23, CMD12 never gets sent
918 * on successful completion (so no Auto-CMD12).
919 */
Corneliu Doban85cc1c32015-02-09 16:06:29 -0800920 if (!host->mrq->sbc && (host->flags & SDHCI_AUTO_CMD12) &&
921 (cmd->opcode != SD_IO_RW_EXTENDED))
Andrei Warkentine89d4562011-05-23 15:06:37 -0500922 mode |= SDHCI_TRNS_AUTO_CMD12;
Andrei Warkentin8edf63712011-05-23 15:06:39 -0500923 else if (host->mrq->sbc && (host->flags & SDHCI_AUTO_CMD23)) {
924 mode |= SDHCI_TRNS_AUTO_CMD23;
925 sdhci_writel(host, host->mrq->sbc->arg, SDHCI_ARGUMENT2);
926 }
Jerry Huangc4512f72010-08-10 18:01:59 -0700927 }
Andrei Warkentin8edf63712011-05-23 15:06:39 -0500928
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700929 if (data->flags & MMC_DATA_READ)
930 mode |= SDHCI_TRNS_READ;
Pierre Ossmanc9fddbc2007-12-02 19:52:11 +0100931 if (host->flags & SDHCI_REQ_USE_DMA)
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700932 mode |= SDHCI_TRNS_DMA;
933
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300934 sdhci_writew(host, mode, SDHCI_TRANSFER_MODE);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800935}
936
937static void sdhci_finish_data(struct sdhci_host *host)
938{
939 struct mmc_data *data;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800940
941 BUG_ON(!host->data);
942
943 data = host->data;
944 host->data = NULL;
945
Pierre Ossmanc9fddbc2007-12-02 19:52:11 +0100946 if (host->flags & SDHCI_REQ_USE_DMA) {
Pierre Ossman2134a922008-06-28 18:28:51 +0200947 if (host->flags & SDHCI_USE_ADMA)
948 sdhci_adma_table_post(host, data);
949 else {
Haibo Chend31911b2015-08-25 10:02:11 +0800950 if (data->host_cookie == COOKIE_MAPPED) {
Haibo Chen348487c2014-12-09 17:04:05 +0800951 dma_unmap_sg(mmc_dev(host->mmc),
952 data->sg, data->sg_len,
953 (data->flags & MMC_DATA_READ) ?
Pierre Ossman2134a922008-06-28 18:28:51 +0200954 DMA_FROM_DEVICE : DMA_TO_DEVICE);
Haibo Chend31911b2015-08-25 10:02:11 +0800955 data->host_cookie = COOKIE_UNMAPPED;
956 }
Pierre Ossman2134a922008-06-28 18:28:51 +0200957 }
Pierre Ossmand129bce2006-03-24 03:18:17 -0800958 }
959
960 /*
Pierre Ossmanc9b74c52008-04-18 20:41:49 +0200961 * The specification states that the block count register must
962 * be updated, but it does not specify at what point in the
963 * data flow. That makes the register entirely useless to read
964 * back so we have to assume that nothing made it to the card
965 * in the event of an error.
Pierre Ossmand129bce2006-03-24 03:18:17 -0800966 */
Pierre Ossmanc9b74c52008-04-18 20:41:49 +0200967 if (data->error)
968 data->bytes_xfered = 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800969 else
Pierre Ossmanc9b74c52008-04-18 20:41:49 +0200970 data->bytes_xfered = data->blksz * data->blocks;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800971
Andrei Warkentine89d4562011-05-23 15:06:37 -0500972 /*
973 * Need to send CMD12 if -
974 * a) open-ended multiblock transfer (no CMD23)
975 * b) error in multiblock transfer
976 */
977 if (data->stop &&
978 (data->error ||
979 !host->mrq->sbc)) {
980
Pierre Ossmand129bce2006-03-24 03:18:17 -0800981 /*
982 * The controller needs a reset of internal state machines
983 * upon error conditions.
984 */
Pierre Ossman17b04292007-07-22 22:18:46 +0200985 if (data->error) {
Russell King03231f92014-04-25 12:57:12 +0100986 sdhci_do_reset(host, SDHCI_RESET_CMD);
987 sdhci_do_reset(host, SDHCI_RESET_DATA);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800988 }
989
990 sdhci_send_command(host, data->stop);
991 } else
992 tasklet_schedule(&host->finish_tasklet);
993}
994
Dong Aishengc0e551292013-09-13 19:11:31 +0800995void sdhci_send_command(struct sdhci_host *host, struct mmc_command *cmd)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800996{
997 int flags;
Pierre Ossmanfd2208d2006-06-30 02:22:28 -0700998 u32 mask;
Pierre Ossman7cb2c762006-06-30 02:22:23 -0700999 unsigned long timeout;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001000
1001 WARN_ON(host->cmd);
1002
Pierre Ossmand129bce2006-03-24 03:18:17 -08001003 /* Wait max 10 ms */
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001004 timeout = 10;
Pierre Ossmanfd2208d2006-06-30 02:22:28 -07001005
1006 mask = SDHCI_CMD_INHIBIT;
1007 if ((cmd->data != NULL) || (cmd->flags & MMC_RSP_BUSY))
1008 mask |= SDHCI_DATA_INHIBIT;
1009
1010 /* We shouldn't wait for data inihibit for stop commands, even
1011 though they might use busy signaling */
1012 if (host->mrq->data && (cmd == host->mrq->data->stop))
1013 mask &= ~SDHCI_DATA_INHIBIT;
1014
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001015 while (sdhci_readl(host, SDHCI_PRESENT_STATE) & mask) {
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001016 if (timeout == 0) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01001017 pr_err("%s: Controller never released inhibit bit(s).\n",
1018 mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -08001019 sdhci_dumpregs(host);
Pierre Ossman17b04292007-07-22 22:18:46 +02001020 cmd->error = -EIO;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001021 tasklet_schedule(&host->finish_tasklet);
1022 return;
1023 }
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001024 timeout--;
1025 mdelay(1);
1026 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001027
Adrian Hunter3e1a6892013-11-14 10:16:20 +02001028 timeout = jiffies;
Ulf Hansson1d4d7742014-01-08 15:06:08 +01001029 if (!cmd->data && cmd->busy_timeout > 9000)
1030 timeout += DIV_ROUND_UP(cmd->busy_timeout, 1000) * HZ + HZ;
Adrian Hunter3e1a6892013-11-14 10:16:20 +02001031 else
1032 timeout += 10 * HZ;
1033 mod_timer(&host->timer, timeout);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001034
1035 host->cmd = cmd;
Chanho Mine99783a2014-08-30 12:40:40 +09001036 host->busy_handle = 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001037
Andrei Warkentina3c77782011-04-11 16:13:42 -05001038 sdhci_prepare_data(host, cmd);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001039
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001040 sdhci_writel(host, cmd->arg, SDHCI_ARGUMENT);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001041
Andrei Warkentine89d4562011-05-23 15:06:37 -05001042 sdhci_set_transfer_mode(host, cmd);
Pierre Ossmanc7fa9962006-06-30 02:22:25 -07001043
Pierre Ossmand129bce2006-03-24 03:18:17 -08001044 if ((cmd->flags & MMC_RSP_136) && (cmd->flags & MMC_RSP_BUSY)) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05301045 pr_err("%s: Unsupported response type!\n",
Pierre Ossmand129bce2006-03-24 03:18:17 -08001046 mmc_hostname(host->mmc));
Pierre Ossman17b04292007-07-22 22:18:46 +02001047 cmd->error = -EINVAL;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001048 tasklet_schedule(&host->finish_tasklet);
1049 return;
1050 }
1051
1052 if (!(cmd->flags & MMC_RSP_PRESENT))
1053 flags = SDHCI_CMD_RESP_NONE;
1054 else if (cmd->flags & MMC_RSP_136)
1055 flags = SDHCI_CMD_RESP_LONG;
1056 else if (cmd->flags & MMC_RSP_BUSY)
1057 flags = SDHCI_CMD_RESP_SHORT_BUSY;
1058 else
1059 flags = SDHCI_CMD_RESP_SHORT;
1060
1061 if (cmd->flags & MMC_RSP_CRC)
1062 flags |= SDHCI_CMD_CRC;
1063 if (cmd->flags & MMC_RSP_OPCODE)
1064 flags |= SDHCI_CMD_INDEX;
Arindam Nathb513ea22011-05-05 12:19:04 +05301065
1066 /* CMD19 is special in that the Data Present Select should be set */
Girish K S069c9f12012-01-06 09:56:39 +05301067 if (cmd->data || cmd->opcode == MMC_SEND_TUNING_BLOCK ||
1068 cmd->opcode == MMC_SEND_TUNING_BLOCK_HS200)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001069 flags |= SDHCI_CMD_DATA;
1070
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001071 sdhci_writew(host, SDHCI_MAKE_CMD(cmd->opcode, flags), SDHCI_COMMAND);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001072}
Dong Aishengc0e551292013-09-13 19:11:31 +08001073EXPORT_SYMBOL_GPL(sdhci_send_command);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001074
1075static void sdhci_finish_command(struct sdhci_host *host)
1076{
1077 int i;
1078
1079 BUG_ON(host->cmd == NULL);
1080
1081 if (host->cmd->flags & MMC_RSP_PRESENT) {
1082 if (host->cmd->flags & MMC_RSP_136) {
1083 /* CRC is stripped so we need to do some shifting. */
1084 for (i = 0;i < 4;i++) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001085 host->cmd->resp[i] = sdhci_readl(host,
Pierre Ossmand129bce2006-03-24 03:18:17 -08001086 SDHCI_RESPONSE + (3-i)*4) << 8;
1087 if (i != 3)
1088 host->cmd->resp[i] |=
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001089 sdhci_readb(host,
Pierre Ossmand129bce2006-03-24 03:18:17 -08001090 SDHCI_RESPONSE + (3-i)*4-1);
1091 }
1092 } else {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001093 host->cmd->resp[0] = sdhci_readl(host, SDHCI_RESPONSE);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001094 }
1095 }
1096
Pierre Ossman17b04292007-07-22 22:18:46 +02001097 host->cmd->error = 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001098
Andrei Warkentine89d4562011-05-23 15:06:37 -05001099 /* Finished CMD23, now send actual command. */
1100 if (host->cmd == host->mrq->sbc) {
1101 host->cmd = NULL;
1102 sdhci_send_command(host, host->mrq->cmd);
1103 } else {
Pierre Ossmane538fbe2007-08-12 16:46:32 +02001104
Andrei Warkentine89d4562011-05-23 15:06:37 -05001105 /* Processed actual command. */
1106 if (host->data && host->data_early)
1107 sdhci_finish_data(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001108
Andrei Warkentine89d4562011-05-23 15:06:37 -05001109 if (!host->cmd->data)
1110 tasklet_schedule(&host->finish_tasklet);
1111
1112 host->cmd = NULL;
1113 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001114}
1115
Kevin Liu52983382013-01-31 11:31:37 +08001116static u16 sdhci_get_preset_value(struct sdhci_host *host)
1117{
Russell Kingd975f122014-04-25 12:59:31 +01001118 u16 preset = 0;
Kevin Liu52983382013-01-31 11:31:37 +08001119
Russell Kingd975f122014-04-25 12:59:31 +01001120 switch (host->timing) {
1121 case MMC_TIMING_UHS_SDR12:
Kevin Liu52983382013-01-31 11:31:37 +08001122 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR12);
1123 break;
Russell Kingd975f122014-04-25 12:59:31 +01001124 case MMC_TIMING_UHS_SDR25:
Kevin Liu52983382013-01-31 11:31:37 +08001125 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR25);
1126 break;
Russell Kingd975f122014-04-25 12:59:31 +01001127 case MMC_TIMING_UHS_SDR50:
Kevin Liu52983382013-01-31 11:31:37 +08001128 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR50);
1129 break;
Russell Kingd975f122014-04-25 12:59:31 +01001130 case MMC_TIMING_UHS_SDR104:
1131 case MMC_TIMING_MMC_HS200:
Kevin Liu52983382013-01-31 11:31:37 +08001132 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR104);
1133 break;
Russell Kingd975f122014-04-25 12:59:31 +01001134 case MMC_TIMING_UHS_DDR50:
Jisheng Zhang0dafa602015-08-18 16:21:39 +08001135 case MMC_TIMING_MMC_DDR52:
Kevin Liu52983382013-01-31 11:31:37 +08001136 preset = sdhci_readw(host, SDHCI_PRESET_FOR_DDR50);
1137 break;
Adrian Huntere9fb05d2014-11-06 15:19:06 +02001138 case MMC_TIMING_MMC_HS400:
1139 preset = sdhci_readw(host, SDHCI_PRESET_FOR_HS400);
1140 break;
Kevin Liu52983382013-01-31 11:31:37 +08001141 default:
1142 pr_warn("%s: Invalid UHS-I mode selected\n",
1143 mmc_hostname(host->mmc));
1144 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR12);
1145 break;
1146 }
1147 return preset;
1148}
1149
Russell King17710592014-04-25 12:58:55 +01001150void sdhci_set_clock(struct sdhci_host *host, unsigned int clock)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001151{
Arindam Nathc3ed3872011-05-05 12:19:06 +05301152 int div = 0; /* Initialized for compiler warning */
Giuseppe CAVALLAROdf162192011-11-04 13:53:19 +01001153 int real_div = div, clk_mul = 1;
Arindam Nathc3ed3872011-05-05 12:19:06 +05301154 u16 clk = 0;
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001155 unsigned long timeout;
ludovic.desroches@atmel.com54971592015-07-29 16:22:46 +02001156 bool switch_base_clk = false;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001157
Russell King1650d0c2014-04-25 12:58:50 +01001158 host->mmc->actual_clock = 0;
1159
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001160 sdhci_writew(host, 0, SDHCI_CLOCK_CONTROL);
ludovic.desroches@atmel.comaf951762015-09-17 10:16:19 +02001161 if (host->quirks2 & SDHCI_QUIRK2_NEED_DELAY_AFTER_INT_CLK_RST)
1162 mdelay(1);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001163
1164 if (clock == 0)
Russell King373073e2014-04-25 12:58:45 +01001165 return;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001166
Zhangfei Gao85105c52010-08-06 07:10:01 +08001167 if (host->version >= SDHCI_SPEC_300) {
Russell Kingda91a8f2014-04-25 13:00:12 +01001168 if (host->preset_enabled) {
Kevin Liu52983382013-01-31 11:31:37 +08001169 u16 pre_val;
1170
1171 clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL);
1172 pre_val = sdhci_get_preset_value(host);
1173 div = (pre_val & SDHCI_PRESET_SDCLK_FREQ_MASK)
1174 >> SDHCI_PRESET_SDCLK_FREQ_SHIFT;
1175 if (host->clk_mul &&
1176 (pre_val & SDHCI_PRESET_CLKGEN_SEL_MASK)) {
1177 clk = SDHCI_PROG_CLOCK_MODE;
1178 real_div = div + 1;
1179 clk_mul = host->clk_mul;
1180 } else {
1181 real_div = max_t(int, 1, div << 1);
1182 }
1183 goto clock_set;
1184 }
1185
Arindam Nathc3ed3872011-05-05 12:19:06 +05301186 /*
1187 * Check if the Host Controller supports Programmable Clock
1188 * Mode.
1189 */
1190 if (host->clk_mul) {
Kevin Liu52983382013-01-31 11:31:37 +08001191 for (div = 1; div <= 1024; div++) {
1192 if ((host->max_clk * host->clk_mul / div)
1193 <= clock)
1194 break;
Zhangfei Gao85105c52010-08-06 07:10:01 +08001195 }
ludovic.desroches@atmel.com54971592015-07-29 16:22:46 +02001196 if ((host->max_clk * host->clk_mul / div) <= clock) {
1197 /*
1198 * Set Programmable Clock Mode in the Clock
1199 * Control register.
1200 */
1201 clk = SDHCI_PROG_CLOCK_MODE;
1202 real_div = div;
1203 clk_mul = host->clk_mul;
1204 div--;
1205 } else {
1206 /*
1207 * Divisor can be too small to reach clock
1208 * speed requirement. Then use the base clock.
1209 */
1210 switch_base_clk = true;
1211 }
1212 }
1213
1214 if (!host->clk_mul || switch_base_clk) {
Arindam Nathc3ed3872011-05-05 12:19:06 +05301215 /* Version 3.00 divisors must be a multiple of 2. */
1216 if (host->max_clk <= clock)
1217 div = 1;
1218 else {
1219 for (div = 2; div < SDHCI_MAX_DIV_SPEC_300;
1220 div += 2) {
1221 if ((host->max_clk / div) <= clock)
1222 break;
1223 }
1224 }
Giuseppe CAVALLAROdf162192011-11-04 13:53:19 +01001225 real_div = div;
Arindam Nathc3ed3872011-05-05 12:19:06 +05301226 div >>= 1;
Suneel Garapatid1955c32015-06-09 13:01:50 +05301227 if ((host->quirks2 & SDHCI_QUIRK2_CLOCK_DIV_ZERO_BROKEN)
1228 && !div && host->max_clk <= 25000000)
1229 div = 1;
Zhangfei Gao85105c52010-08-06 07:10:01 +08001230 }
1231 } else {
1232 /* Version 2.00 divisors must be a power of 2. */
Zhangfei Gao03975262010-09-20 15:15:18 -04001233 for (div = 1; div < SDHCI_MAX_DIV_SPEC_200; div *= 2) {
Zhangfei Gao85105c52010-08-06 07:10:01 +08001234 if ((host->max_clk / div) <= clock)
1235 break;
1236 }
Giuseppe CAVALLAROdf162192011-11-04 13:53:19 +01001237 real_div = div;
Arindam Nathc3ed3872011-05-05 12:19:06 +05301238 div >>= 1;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001239 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001240
Kevin Liu52983382013-01-31 11:31:37 +08001241clock_set:
Aisheng Dong03d6f5f2014-08-27 15:26:32 +08001242 if (real_div)
Giuseppe CAVALLAROdf162192011-11-04 13:53:19 +01001243 host->mmc->actual_clock = (host->max_clk * clk_mul) / real_div;
Arindam Nathc3ed3872011-05-05 12:19:06 +05301244 clk |= (div & SDHCI_DIV_MASK) << SDHCI_DIVIDER_SHIFT;
Zhangfei Gao85105c52010-08-06 07:10:01 +08001245 clk |= ((div & SDHCI_DIV_HI_MASK) >> SDHCI_DIV_MASK_LEN)
1246 << SDHCI_DIVIDER_HI_SHIFT;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001247 clk |= SDHCI_CLOCK_INT_EN;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001248 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001249
Chris Ball27f6cb12009-09-22 16:45:31 -07001250 /* Wait max 20 ms */
1251 timeout = 20;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001252 while (!((clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL))
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001253 & SDHCI_CLOCK_INT_STABLE)) {
1254 if (timeout == 0) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01001255 pr_err("%s: Internal clock never stabilised.\n",
1256 mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -08001257 sdhci_dumpregs(host);
1258 return;
1259 }
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001260 timeout--;
1261 mdelay(1);
1262 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001263
1264 clk |= SDHCI_CLOCK_CARD_EN;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001265 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001266}
Russell King17710592014-04-25 12:58:55 +01001267EXPORT_SYMBOL_GPL(sdhci_set_clock);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001268
Russell King24fbb3c2014-04-25 13:00:06 +01001269static void sdhci_set_power(struct sdhci_host *host, unsigned char mode,
1270 unsigned short vdd)
Pierre Ossman146ad662006-06-30 02:22:23 -07001271{
Tim Kryger3a48edc2014-06-13 10:13:56 -07001272 struct mmc_host *mmc = host->mmc;
Giuseppe Cavallaro83642482010-09-28 10:41:28 +02001273 u8 pwr = 0;
Pierre Ossman146ad662006-06-30 02:22:23 -07001274
Tim Kryger52221612014-06-25 00:25:34 -07001275 if (!IS_ERR(mmc->supply.vmmc)) {
1276 spin_unlock_irq(&host->lock);
Markus Mayer4e743f12014-07-03 13:27:42 -07001277 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, vdd);
Tim Kryger52221612014-06-25 00:25:34 -07001278 spin_lock_irq(&host->lock);
Tim Kryger3cbc6122015-01-14 07:24:12 +01001279
1280 if (mode != MMC_POWER_OFF)
1281 sdhci_writeb(host, SDHCI_POWER_ON, SDHCI_POWER_CONTROL);
1282 else
1283 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
1284
Tim Kryger52221612014-06-25 00:25:34 -07001285 return;
1286 }
1287
Russell King24fbb3c2014-04-25 13:00:06 +01001288 if (mode != MMC_POWER_OFF) {
1289 switch (1 << vdd) {
Pierre Ossmanae628902009-05-03 20:45:03 +02001290 case MMC_VDD_165_195:
1291 pwr = SDHCI_POWER_180;
1292 break;
1293 case MMC_VDD_29_30:
1294 case MMC_VDD_30_31:
1295 pwr = SDHCI_POWER_300;
1296 break;
1297 case MMC_VDD_32_33:
1298 case MMC_VDD_33_34:
1299 pwr = SDHCI_POWER_330;
1300 break;
1301 default:
1302 BUG();
1303 }
1304 }
1305
1306 if (host->pwr == pwr)
Russell Kinge921a8b2014-04-25 13:00:01 +01001307 return;
Pierre Ossman146ad662006-06-30 02:22:23 -07001308
Pierre Ossmanae628902009-05-03 20:45:03 +02001309 host->pwr = pwr;
1310
1311 if (pwr == 0) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001312 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
Adrian Hunterf0710a52013-05-06 12:17:32 +03001313 if (host->quirks2 & SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON)
1314 sdhci_runtime_pm_bus_off(host);
Russell King24fbb3c2014-04-25 13:00:06 +01001315 vdd = 0;
Russell Kinge921a8b2014-04-25 13:00:01 +01001316 } else {
1317 /*
1318 * Spec says that we should clear the power reg before setting
1319 * a new value. Some controllers don't seem to like this though.
1320 */
1321 if (!(host->quirks & SDHCI_QUIRK_SINGLE_POWER_WRITE))
1322 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
Darren Salt9e9dc5f2007-01-27 15:32:31 +01001323
Russell Kinge921a8b2014-04-25 13:00:01 +01001324 /*
1325 * At least the Marvell CaFe chip gets confused if we set the
1326 * voltage and set turn on power at the same time, so set the
1327 * voltage first.
1328 */
1329 if (host->quirks & SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER)
1330 sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL);
Pierre Ossman146ad662006-06-30 02:22:23 -07001331
Russell Kinge921a8b2014-04-25 13:00:01 +01001332 pwr |= SDHCI_POWER_ON;
1333
Pierre Ossmanae628902009-05-03 20:45:03 +02001334 sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL);
1335
Russell Kinge921a8b2014-04-25 13:00:01 +01001336 if (host->quirks2 & SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON)
1337 sdhci_runtime_pm_bus_on(host);
Andres Salomone08c1692008-07-04 10:00:03 -07001338
Russell Kinge921a8b2014-04-25 13:00:01 +01001339 /*
1340 * Some controllers need an extra 10ms delay of 10ms before
1341 * they can apply clock after applying power
1342 */
1343 if (host->quirks & SDHCI_QUIRK_DELAY_AFTER_POWER)
1344 mdelay(10);
1345 }
Pierre Ossman146ad662006-06-30 02:22:23 -07001346}
1347
Pierre Ossmand129bce2006-03-24 03:18:17 -08001348/*****************************************************************************\
1349 * *
1350 * MMC callbacks *
1351 * *
1352\*****************************************************************************/
1353
1354static void sdhci_request(struct mmc_host *mmc, struct mmc_request *mrq)
1355{
1356 struct sdhci_host *host;
Shawn Guo505a8682012-12-11 15:23:42 +08001357 int present;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001358 unsigned long flags;
1359
1360 host = mmc_priv(mmc);
1361
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001362 sdhci_runtime_pm_get(host);
1363
Scott Branden04e079cf2015-03-10 11:35:10 -07001364 /* Firstly check card presence */
1365 present = sdhci_do_get_cd(host);
Krzysztof Kozlowski28367662015-01-05 10:50:15 +01001366
Pierre Ossmand129bce2006-03-24 03:18:17 -08001367 spin_lock_irqsave(&host->lock, flags);
1368
1369 WARN_ON(host->mrq != NULL);
1370
Pierre Ossmanf9134312008-12-21 17:01:48 +01001371#ifndef SDHCI_USE_LEDS_CLASS
Pierre Ossmand129bce2006-03-24 03:18:17 -08001372 sdhci_activate_led(host);
Pierre Ossman2f730fe2008-03-17 10:29:38 +01001373#endif
Andrei Warkentine89d4562011-05-23 15:06:37 -05001374
1375 /*
1376 * Ensure we don't send the STOP for non-SET_BLOCK_COUNTED
1377 * requests if Auto-CMD12 is enabled.
1378 */
1379 if (!mrq->sbc && (host->flags & SDHCI_AUTO_CMD12)) {
Jerry Huangc4512f72010-08-10 18:01:59 -07001380 if (mrq->stop) {
1381 mrq->data->stop = NULL;
1382 mrq->stop = NULL;
1383 }
1384 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001385
1386 host->mrq = mrq;
1387
Anton Vorontsov68d1fb72009-03-17 00:13:52 +03001388 if (!present || host->flags & SDHCI_DEVICE_DEAD) {
Pierre Ossman17b04292007-07-22 22:18:46 +02001389 host->mrq->cmd->error = -ENOMEDIUM;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001390 tasklet_schedule(&host->finish_tasklet);
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05301391 } else {
Andrei Warkentin8edf63712011-05-23 15:06:39 -05001392 if (mrq->sbc && !(host->flags & SDHCI_AUTO_CMD23))
Andrei Warkentine89d4562011-05-23 15:06:37 -05001393 sdhci_send_command(host, mrq->sbc);
1394 else
1395 sdhci_send_command(host, mrq->cmd);
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05301396 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001397
Pierre Ossman5f25a662006-10-04 02:15:39 -07001398 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -08001399 spin_unlock_irqrestore(&host->lock, flags);
1400}
1401
Russell King2317f562014-04-25 12:57:07 +01001402void sdhci_set_bus_width(struct sdhci_host *host, int width)
1403{
1404 u8 ctrl;
1405
1406 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
1407 if (width == MMC_BUS_WIDTH_8) {
1408 ctrl &= ~SDHCI_CTRL_4BITBUS;
1409 if (host->version >= SDHCI_SPEC_300)
1410 ctrl |= SDHCI_CTRL_8BITBUS;
1411 } else {
1412 if (host->version >= SDHCI_SPEC_300)
1413 ctrl &= ~SDHCI_CTRL_8BITBUS;
1414 if (width == MMC_BUS_WIDTH_4)
1415 ctrl |= SDHCI_CTRL_4BITBUS;
1416 else
1417 ctrl &= ~SDHCI_CTRL_4BITBUS;
1418 }
1419 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
1420}
1421EXPORT_SYMBOL_GPL(sdhci_set_bus_width);
1422
Russell King96d7b782014-04-25 12:59:26 +01001423void sdhci_set_uhs_signaling(struct sdhci_host *host, unsigned timing)
1424{
1425 u16 ctrl_2;
1426
1427 ctrl_2 = sdhci_readw(host, SDHCI_HOST_CONTROL2);
1428 /* Select Bus Speed Mode for host */
1429 ctrl_2 &= ~SDHCI_CTRL_UHS_MASK;
1430 if ((timing == MMC_TIMING_MMC_HS200) ||
1431 (timing == MMC_TIMING_UHS_SDR104))
1432 ctrl_2 |= SDHCI_CTRL_UHS_SDR104;
1433 else if (timing == MMC_TIMING_UHS_SDR12)
1434 ctrl_2 |= SDHCI_CTRL_UHS_SDR12;
1435 else if (timing == MMC_TIMING_UHS_SDR25)
1436 ctrl_2 |= SDHCI_CTRL_UHS_SDR25;
1437 else if (timing == MMC_TIMING_UHS_SDR50)
1438 ctrl_2 |= SDHCI_CTRL_UHS_SDR50;
1439 else if ((timing == MMC_TIMING_UHS_DDR50) ||
1440 (timing == MMC_TIMING_MMC_DDR52))
1441 ctrl_2 |= SDHCI_CTRL_UHS_DDR50;
Adrian Huntere9fb05d2014-11-06 15:19:06 +02001442 else if (timing == MMC_TIMING_MMC_HS400)
1443 ctrl_2 |= SDHCI_CTRL_HS400; /* Non-standard */
Russell King96d7b782014-04-25 12:59:26 +01001444 sdhci_writew(host, ctrl_2, SDHCI_HOST_CONTROL2);
1445}
1446EXPORT_SYMBOL_GPL(sdhci_set_uhs_signaling);
1447
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001448static void sdhci_do_set_ios(struct sdhci_host *host, struct mmc_ios *ios)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001449{
Pierre Ossmand129bce2006-03-24 03:18:17 -08001450 unsigned long flags;
1451 u8 ctrl;
Tim Kryger3a48edc2014-06-13 10:13:56 -07001452 struct mmc_host *mmc = host->mmc;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001453
Pierre Ossmand129bce2006-03-24 03:18:17 -08001454 spin_lock_irqsave(&host->lock, flags);
1455
Adrian Hunterceb61432011-12-27 15:48:41 +02001456 if (host->flags & SDHCI_DEVICE_DEAD) {
1457 spin_unlock_irqrestore(&host->lock, flags);
Tim Kryger3a48edc2014-06-13 10:13:56 -07001458 if (!IS_ERR(mmc->supply.vmmc) &&
1459 ios->power_mode == MMC_POWER_OFF)
Markus Mayer4e743f12014-07-03 13:27:42 -07001460 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, 0);
Adrian Hunterceb61432011-12-27 15:48:41 +02001461 return;
1462 }
Pierre Ossman1e728592008-04-16 19:13:13 +02001463
Pierre Ossmand129bce2006-03-24 03:18:17 -08001464 /*
1465 * Reset the chip on each power off.
1466 * Should clear out any weird states.
1467 */
1468 if (ios->power_mode == MMC_POWER_OFF) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001469 sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE);
Anton Vorontsov7260cf52009-03-17 00:13:48 +03001470 sdhci_reinit(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001471 }
1472
Kevin Liu52983382013-01-31 11:31:37 +08001473 if (host->version >= SDHCI_SPEC_300 &&
Dong Aisheng372c4632013-10-18 19:48:50 +08001474 (ios->power_mode == MMC_POWER_UP) &&
1475 !(host->quirks2 & SDHCI_QUIRK2_PRESET_VALUE_BROKEN))
Kevin Liu52983382013-01-31 11:31:37 +08001476 sdhci_enable_preset_value(host, false);
1477
Russell King373073e2014-04-25 12:58:45 +01001478 if (!ios->clock || ios->clock != host->clock) {
Russell King17710592014-04-25 12:58:55 +01001479 host->ops->set_clock(host, ios->clock);
Russell King373073e2014-04-25 12:58:45 +01001480 host->clock = ios->clock;
Aisheng Dong03d6f5f2014-08-27 15:26:32 +08001481
1482 if (host->quirks & SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK &&
1483 host->clock) {
1484 host->timeout_clk = host->mmc->actual_clock ?
1485 host->mmc->actual_clock / 1000 :
1486 host->clock / 1000;
1487 host->mmc->max_busy_timeout =
1488 host->ops->get_max_timeout_count ?
1489 host->ops->get_max_timeout_count(host) :
1490 1 << 27;
1491 host->mmc->max_busy_timeout /= host->timeout_clk;
1492 }
Russell King373073e2014-04-25 12:58:45 +01001493 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001494
Russell King24fbb3c2014-04-25 13:00:06 +01001495 sdhci_set_power(host, ios->power_mode, ios->vdd);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001496
Philip Rakity643a81f2010-09-23 08:24:32 -07001497 if (host->ops->platform_send_init_74_clocks)
1498 host->ops->platform_send_init_74_clocks(host, ios->power_mode);
1499
Russell King2317f562014-04-25 12:57:07 +01001500 host->ops->set_bus_width(host, ios->bus_width);
Philip Rakity15ec4462010-11-19 16:48:39 -05001501
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001502 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
Pierre Ossmancd9277c2007-02-18 12:07:47 +01001503
Philip Rakity3ab9c8d2010-10-06 11:57:23 -07001504 if ((ios->timing == MMC_TIMING_SD_HS ||
1505 ios->timing == MMC_TIMING_MMC_HS)
1506 && !(host->quirks & SDHCI_QUIRK_NO_HISPD_BIT))
Pierre Ossmancd9277c2007-02-18 12:07:47 +01001507 ctrl |= SDHCI_CTRL_HISPD;
1508 else
1509 ctrl &= ~SDHCI_CTRL_HISPD;
1510
Arindam Nathd6d50a12011-05-05 12:18:59 +05301511 if (host->version >= SDHCI_SPEC_300) {
Arindam Nath49c468f2011-05-05 12:19:01 +05301512 u16 clk, ctrl_2;
Arindam Nath49c468f2011-05-05 12:19:01 +05301513
1514 /* In case of UHS-I modes, set High Speed Enable */
Adrian Huntere9fb05d2014-11-06 15:19:06 +02001515 if ((ios->timing == MMC_TIMING_MMC_HS400) ||
1516 (ios->timing == MMC_TIMING_MMC_HS200) ||
Seungwon Jeonbb8175a2014-03-14 21:12:48 +09001517 (ios->timing == MMC_TIMING_MMC_DDR52) ||
Girish K S069c9f12012-01-06 09:56:39 +05301518 (ios->timing == MMC_TIMING_UHS_SDR50) ||
Arindam Nath49c468f2011-05-05 12:19:01 +05301519 (ios->timing == MMC_TIMING_UHS_SDR104) ||
1520 (ios->timing == MMC_TIMING_UHS_DDR50) ||
Alexander Elbsdd8df172012-01-03 23:26:53 -05001521 (ios->timing == MMC_TIMING_UHS_SDR25))
Arindam Nath49c468f2011-05-05 12:19:01 +05301522 ctrl |= SDHCI_CTRL_HISPD;
Arindam Nathd6d50a12011-05-05 12:18:59 +05301523
Russell Kingda91a8f2014-04-25 13:00:12 +01001524 if (!host->preset_enabled) {
Arindam Nath758535c2011-05-05 12:19:00 +05301525 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Arindam Nathd6d50a12011-05-05 12:18:59 +05301526 /*
1527 * We only need to set Driver Strength if the
1528 * preset value enable is not set.
1529 */
Russell Kingda91a8f2014-04-25 13:00:12 +01001530 ctrl_2 = sdhci_readw(host, SDHCI_HOST_CONTROL2);
Arindam Nathd6d50a12011-05-05 12:18:59 +05301531 ctrl_2 &= ~SDHCI_CTRL_DRV_TYPE_MASK;
1532 if (ios->drv_type == MMC_SET_DRIVER_TYPE_A)
1533 ctrl_2 |= SDHCI_CTRL_DRV_TYPE_A;
Petri Gynther43e943a2015-05-20 14:35:00 -07001534 else if (ios->drv_type == MMC_SET_DRIVER_TYPE_B)
1535 ctrl_2 |= SDHCI_CTRL_DRV_TYPE_B;
Arindam Nathd6d50a12011-05-05 12:18:59 +05301536 else if (ios->drv_type == MMC_SET_DRIVER_TYPE_C)
1537 ctrl_2 |= SDHCI_CTRL_DRV_TYPE_C;
Petri Gynther43e943a2015-05-20 14:35:00 -07001538 else if (ios->drv_type == MMC_SET_DRIVER_TYPE_D)
1539 ctrl_2 |= SDHCI_CTRL_DRV_TYPE_D;
1540 else {
Marek Vasut2e4456f2015-11-18 10:47:02 +01001541 pr_warn("%s: invalid driver type, default to driver type B\n",
1542 mmc_hostname(mmc));
Petri Gynther43e943a2015-05-20 14:35:00 -07001543 ctrl_2 |= SDHCI_CTRL_DRV_TYPE_B;
1544 }
Arindam Nathd6d50a12011-05-05 12:18:59 +05301545
1546 sdhci_writew(host, ctrl_2, SDHCI_HOST_CONTROL2);
Arindam Nath758535c2011-05-05 12:19:00 +05301547 } else {
1548 /*
1549 * According to SDHC Spec v3.00, if the Preset Value
1550 * Enable in the Host Control 2 register is set, we
1551 * need to reset SD Clock Enable before changing High
1552 * Speed Enable to avoid generating clock gliches.
1553 */
Arindam Nath758535c2011-05-05 12:19:00 +05301554
1555 /* Reset SD Clock Enable */
1556 clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL);
1557 clk &= ~SDHCI_CLOCK_CARD_EN;
1558 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
1559
1560 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
1561
1562 /* Re-enable SD Clock */
Russell King17710592014-04-25 12:58:55 +01001563 host->ops->set_clock(host, host->clock);
Arindam Nathd6d50a12011-05-05 12:18:59 +05301564 }
Arindam Nath49c468f2011-05-05 12:19:01 +05301565
Arindam Nath49c468f2011-05-05 12:19:01 +05301566 /* Reset SD Clock Enable */
1567 clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL);
1568 clk &= ~SDHCI_CLOCK_CARD_EN;
1569 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
1570
Russell King96d7b782014-04-25 12:59:26 +01001571 host->ops->set_uhs_signaling(host, ios->timing);
Russell Kingd975f122014-04-25 12:59:31 +01001572 host->timing = ios->timing;
Arindam Nath49c468f2011-05-05 12:19:01 +05301573
Kevin Liu52983382013-01-31 11:31:37 +08001574 if (!(host->quirks2 & SDHCI_QUIRK2_PRESET_VALUE_BROKEN) &&
1575 ((ios->timing == MMC_TIMING_UHS_SDR12) ||
1576 (ios->timing == MMC_TIMING_UHS_SDR25) ||
1577 (ios->timing == MMC_TIMING_UHS_SDR50) ||
1578 (ios->timing == MMC_TIMING_UHS_SDR104) ||
Jisheng Zhang0dafa602015-08-18 16:21:39 +08001579 (ios->timing == MMC_TIMING_UHS_DDR50) ||
1580 (ios->timing == MMC_TIMING_MMC_DDR52))) {
Kevin Liu52983382013-01-31 11:31:37 +08001581 u16 preset;
1582
1583 sdhci_enable_preset_value(host, true);
1584 preset = sdhci_get_preset_value(host);
1585 ios->drv_type = (preset & SDHCI_PRESET_DRV_MASK)
1586 >> SDHCI_PRESET_DRV_SHIFT;
1587 }
1588
Arindam Nath49c468f2011-05-05 12:19:01 +05301589 /* Re-enable SD Clock */
Russell King17710592014-04-25 12:58:55 +01001590 host->ops->set_clock(host, host->clock);
Arindam Nath758535c2011-05-05 12:19:00 +05301591 } else
1592 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Arindam Nathd6d50a12011-05-05 12:18:59 +05301593
Leandro Dorileob8352262007-07-25 23:47:04 +02001594 /*
1595 * Some (ENE) controllers go apeshit on some ios operation,
1596 * signalling timeout and CRC errors even on CMD0. Resetting
1597 * it on each ios seems to solve the problem.
1598 */
Mohammad Jamalc63705e2015-01-13 20:47:24 +05301599 if (host->quirks & SDHCI_QUIRK_RESET_CMD_DATA_ON_IOS)
Russell King03231f92014-04-25 12:57:12 +01001600 sdhci_do_reset(host, SDHCI_RESET_CMD | SDHCI_RESET_DATA);
Leandro Dorileob8352262007-07-25 23:47:04 +02001601
Pierre Ossman5f25a662006-10-04 02:15:39 -07001602 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -08001603 spin_unlock_irqrestore(&host->lock, flags);
1604}
1605
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001606static void sdhci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
1607{
1608 struct sdhci_host *host = mmc_priv(mmc);
1609
1610 sdhci_runtime_pm_get(host);
1611 sdhci_do_set_ios(host, ios);
1612 sdhci_runtime_pm_put(host);
1613}
1614
Kevin Liu94144a42013-02-28 17:35:53 +08001615static int sdhci_do_get_cd(struct sdhci_host *host)
1616{
1617 int gpio_cd = mmc_gpio_get_cd(host->mmc);
1618
1619 if (host->flags & SDHCI_DEVICE_DEAD)
1620 return 0;
1621
Ivan T. Ivanov88af5652015-07-06 15:16:19 +03001622 /* If nonremovable, assume that the card is always present. */
1623 if (host->mmc->caps & MMC_CAP_NONREMOVABLE)
Kevin Liu94144a42013-02-28 17:35:53 +08001624 return 1;
1625
Ivan T. Ivanov88af5652015-07-06 15:16:19 +03001626 /*
1627 * Try slot gpio detect, if defined it take precedence
1628 * over build in controller functionality
1629 */
Kevin Liu94144a42013-02-28 17:35:53 +08001630 if (!IS_ERR_VALUE(gpio_cd))
1631 return !!gpio_cd;
1632
Ivan T. Ivanov88af5652015-07-06 15:16:19 +03001633 /* If polling, assume that the card is always present. */
1634 if (host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION)
1635 return 1;
1636
Kevin Liu94144a42013-02-28 17:35:53 +08001637 /* Host native card detect */
1638 return !!(sdhci_readl(host, SDHCI_PRESENT_STATE) & SDHCI_CARD_PRESENT);
1639}
1640
1641static int sdhci_get_cd(struct mmc_host *mmc)
1642{
1643 struct sdhci_host *host = mmc_priv(mmc);
1644 int ret;
1645
1646 sdhci_runtime_pm_get(host);
1647 ret = sdhci_do_get_cd(host);
1648 sdhci_runtime_pm_put(host);
1649 return ret;
1650}
1651
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001652static int sdhci_check_ro(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001653{
Pierre Ossmand129bce2006-03-24 03:18:17 -08001654 unsigned long flags;
Wolfram Sang2dfb5792010-10-15 12:21:01 +02001655 int is_readonly;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001656
Pierre Ossmand129bce2006-03-24 03:18:17 -08001657 spin_lock_irqsave(&host->lock, flags);
1658
Pierre Ossman1e728592008-04-16 19:13:13 +02001659 if (host->flags & SDHCI_DEVICE_DEAD)
Wolfram Sang2dfb5792010-10-15 12:21:01 +02001660 is_readonly = 0;
1661 else if (host->ops->get_ro)
1662 is_readonly = host->ops->get_ro(host);
Pierre Ossman1e728592008-04-16 19:13:13 +02001663 else
Wolfram Sang2dfb5792010-10-15 12:21:01 +02001664 is_readonly = !(sdhci_readl(host, SDHCI_PRESENT_STATE)
1665 & SDHCI_WRITE_PROTECT);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001666
1667 spin_unlock_irqrestore(&host->lock, flags);
1668
Wolfram Sang2dfb5792010-10-15 12:21:01 +02001669 /* This quirk needs to be replaced by a callback-function later */
1670 return host->quirks & SDHCI_QUIRK_INVERTED_WRITE_PROTECT ?
1671 !is_readonly : is_readonly;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001672}
1673
Takashi Iwai82b0e232011-04-21 20:26:38 +02001674#define SAMPLE_COUNT 5
1675
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001676static int sdhci_do_get_ro(struct sdhci_host *host)
Takashi Iwai82b0e232011-04-21 20:26:38 +02001677{
Takashi Iwai82b0e232011-04-21 20:26:38 +02001678 int i, ro_count;
1679
Takashi Iwai82b0e232011-04-21 20:26:38 +02001680 if (!(host->quirks & SDHCI_QUIRK_UNSTABLE_RO_DETECT))
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001681 return sdhci_check_ro(host);
Takashi Iwai82b0e232011-04-21 20:26:38 +02001682
1683 ro_count = 0;
1684 for (i = 0; i < SAMPLE_COUNT; i++) {
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001685 if (sdhci_check_ro(host)) {
Takashi Iwai82b0e232011-04-21 20:26:38 +02001686 if (++ro_count > SAMPLE_COUNT / 2)
1687 return 1;
1688 }
1689 msleep(30);
1690 }
1691 return 0;
1692}
1693
Adrian Hunter20758b62011-08-29 16:42:12 +03001694static void sdhci_hw_reset(struct mmc_host *mmc)
1695{
1696 struct sdhci_host *host = mmc_priv(mmc);
1697
1698 if (host->ops && host->ops->hw_reset)
1699 host->ops->hw_reset(host);
1700}
1701
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001702static int sdhci_get_ro(struct mmc_host *mmc)
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001703{
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001704 struct sdhci_host *host = mmc_priv(mmc);
1705 int ret;
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001706
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001707 sdhci_runtime_pm_get(host);
1708 ret = sdhci_do_get_ro(host);
1709 sdhci_runtime_pm_put(host);
1710 return ret;
1711}
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001712
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001713static void sdhci_enable_sdio_irq_nolock(struct sdhci_host *host, int enable)
1714{
Russell Kingbe138552014-04-25 12:55:56 +01001715 if (!(host->flags & SDHCI_DEVICE_DEAD)) {
Russell Kingef104332014-04-25 12:55:41 +01001716 if (enable)
Russell Kingb537f942014-04-25 12:56:01 +01001717 host->ier |= SDHCI_INT_CARD_INT;
Russell Kingef104332014-04-25 12:55:41 +01001718 else
Russell Kingb537f942014-04-25 12:56:01 +01001719 host->ier &= ~SDHCI_INT_CARD_INT;
1720
1721 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
1722 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Russell Kingef104332014-04-25 12:55:41 +01001723 mmiowb();
1724 }
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001725}
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001726
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001727static void sdhci_enable_sdio_irq(struct mmc_host *mmc, int enable)
1728{
1729 struct sdhci_host *host = mmc_priv(mmc);
1730 unsigned long flags;
1731
Russell Kingef104332014-04-25 12:55:41 +01001732 sdhci_runtime_pm_get(host);
1733
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001734 spin_lock_irqsave(&host->lock, flags);
Russell Kingef104332014-04-25 12:55:41 +01001735 if (enable)
1736 host->flags |= SDHCI_SDIO_IRQ_ENABLED;
1737 else
1738 host->flags &= ~SDHCI_SDIO_IRQ_ENABLED;
1739
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001740 sdhci_enable_sdio_irq_nolock(host, enable);
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001741 spin_unlock_irqrestore(&host->lock, flags);
Russell Kingef104332014-04-25 12:55:41 +01001742
1743 sdhci_runtime_pm_put(host);
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001744}
1745
Philip Rakity6231f3d2012-07-23 15:56:23 -07001746static int sdhci_do_start_signal_voltage_switch(struct sdhci_host *host,
Fabio Estevam21f59982013-02-14 10:35:03 -02001747 struct mmc_ios *ios)
Philip Rakity6231f3d2012-07-23 15:56:23 -07001748{
Tim Kryger3a48edc2014-06-13 10:13:56 -07001749 struct mmc_host *mmc = host->mmc;
Philip Rakity6231f3d2012-07-23 15:56:23 -07001750 u16 ctrl;
Kevin Liu20b92a32012-12-17 19:29:26 +08001751 int ret;
Philip Rakity6231f3d2012-07-23 15:56:23 -07001752
1753 /*
1754 * Signal Voltage Switching is only applicable for Host Controllers
1755 * v3.00 and above.
1756 */
1757 if (host->version < SDHCI_SPEC_300)
1758 return 0;
1759
Philip Rakity6231f3d2012-07-23 15:56:23 -07001760 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
Kevin Liu20b92a32012-12-17 19:29:26 +08001761
Fabio Estevam21f59982013-02-14 10:35:03 -02001762 switch (ios->signal_voltage) {
Kevin Liu20b92a32012-12-17 19:29:26 +08001763 case MMC_SIGNAL_VOLTAGE_330:
1764 /* Set 1.8V Signal Enable in the Host Control2 register to 0 */
1765 ctrl &= ~SDHCI_CTRL_VDD_180;
1766 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
1767
Tim Kryger3a48edc2014-06-13 10:13:56 -07001768 if (!IS_ERR(mmc->supply.vqmmc)) {
1769 ret = regulator_set_voltage(mmc->supply.vqmmc, 2700000,
1770 3600000);
Kevin Liu20b92a32012-12-17 19:29:26 +08001771 if (ret) {
Joe Perches66061102014-09-12 14:56:56 -07001772 pr_warn("%s: Switching to 3.3V signalling voltage failed\n",
1773 mmc_hostname(mmc));
Kevin Liu20b92a32012-12-17 19:29:26 +08001774 return -EIO;
1775 }
1776 }
1777 /* Wait for 5ms */
1778 usleep_range(5000, 5500);
1779
1780 /* 3.3V regulator output should be stable within 5 ms */
1781 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
1782 if (!(ctrl & SDHCI_CTRL_VDD_180))
1783 return 0;
1784
Joe Perches66061102014-09-12 14:56:56 -07001785 pr_warn("%s: 3.3V regulator output did not became stable\n",
1786 mmc_hostname(mmc));
Kevin Liu20b92a32012-12-17 19:29:26 +08001787
1788 return -EAGAIN;
1789 case MMC_SIGNAL_VOLTAGE_180:
Tim Kryger3a48edc2014-06-13 10:13:56 -07001790 if (!IS_ERR(mmc->supply.vqmmc)) {
1791 ret = regulator_set_voltage(mmc->supply.vqmmc,
Kevin Liu20b92a32012-12-17 19:29:26 +08001792 1700000, 1950000);
1793 if (ret) {
Joe Perches66061102014-09-12 14:56:56 -07001794 pr_warn("%s: Switching to 1.8V signalling voltage failed\n",
1795 mmc_hostname(mmc));
Kevin Liu20b92a32012-12-17 19:29:26 +08001796 return -EIO;
1797 }
1798 }
1799
1800 /*
1801 * Enable 1.8V Signal Enable in the Host Control2
1802 * register
1803 */
1804 ctrl |= SDHCI_CTRL_VDD_180;
1805 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
1806
Vincent Yang9d967a62015-01-20 16:05:15 +08001807 /* Some controller need to do more when switching */
1808 if (host->ops->voltage_switch)
1809 host->ops->voltage_switch(host);
1810
Kevin Liu20b92a32012-12-17 19:29:26 +08001811 /* 1.8V regulator output should be stable within 5 ms */
1812 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
1813 if (ctrl & SDHCI_CTRL_VDD_180)
1814 return 0;
1815
Joe Perches66061102014-09-12 14:56:56 -07001816 pr_warn("%s: 1.8V regulator output did not became stable\n",
1817 mmc_hostname(mmc));
Kevin Liu20b92a32012-12-17 19:29:26 +08001818
1819 return -EAGAIN;
1820 case MMC_SIGNAL_VOLTAGE_120:
Tim Kryger3a48edc2014-06-13 10:13:56 -07001821 if (!IS_ERR(mmc->supply.vqmmc)) {
1822 ret = regulator_set_voltage(mmc->supply.vqmmc, 1100000,
1823 1300000);
Kevin Liu20b92a32012-12-17 19:29:26 +08001824 if (ret) {
Joe Perches66061102014-09-12 14:56:56 -07001825 pr_warn("%s: Switching to 1.2V signalling voltage failed\n",
1826 mmc_hostname(mmc));
Kevin Liu20b92a32012-12-17 19:29:26 +08001827 return -EIO;
1828 }
1829 }
1830 return 0;
1831 default:
Arindam Nathf2119df2011-05-05 12:18:57 +05301832 /* No signal voltage switch required */
1833 return 0;
Kevin Liu20b92a32012-12-17 19:29:26 +08001834 }
Arindam Nathf2119df2011-05-05 12:18:57 +05301835}
1836
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001837static int sdhci_start_signal_voltage_switch(struct mmc_host *mmc,
Fabio Estevam21f59982013-02-14 10:35:03 -02001838 struct mmc_ios *ios)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001839{
1840 struct sdhci_host *host = mmc_priv(mmc);
1841 int err;
1842
1843 if (host->version < SDHCI_SPEC_300)
1844 return 0;
1845 sdhci_runtime_pm_get(host);
Fabio Estevam21f59982013-02-14 10:35:03 -02001846 err = sdhci_do_start_signal_voltage_switch(host, ios);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001847 sdhci_runtime_pm_put(host);
1848 return err;
1849}
1850
Kevin Liu20b92a32012-12-17 19:29:26 +08001851static int sdhci_card_busy(struct mmc_host *mmc)
1852{
1853 struct sdhci_host *host = mmc_priv(mmc);
1854 u32 present_state;
1855
1856 sdhci_runtime_pm_get(host);
1857 /* Check whether DAT[3:0] is 0000 */
1858 present_state = sdhci_readl(host, SDHCI_PRESENT_STATE);
1859 sdhci_runtime_pm_put(host);
1860
1861 return !(present_state & SDHCI_DATA_LVL_MASK);
1862}
1863
Adrian Hunterb5540ce2014-12-05 19:25:31 +02001864static int sdhci_prepare_hs400_tuning(struct mmc_host *mmc, struct mmc_ios *ios)
1865{
1866 struct sdhci_host *host = mmc_priv(mmc);
1867 unsigned long flags;
1868
1869 spin_lock_irqsave(&host->lock, flags);
1870 host->flags |= SDHCI_HS400_TUNING;
1871 spin_unlock_irqrestore(&host->lock, flags);
1872
1873 return 0;
1874}
1875
Girish K S069c9f12012-01-06 09:56:39 +05301876static int sdhci_execute_tuning(struct mmc_host *mmc, u32 opcode)
Arindam Nathb513ea22011-05-05 12:19:04 +05301877{
Russell King4b6f37d2014-04-25 12:59:36 +01001878 struct sdhci_host *host = mmc_priv(mmc);
Arindam Nathb513ea22011-05-05 12:19:04 +05301879 u16 ctrl;
Arindam Nathb513ea22011-05-05 12:19:04 +05301880 int tuning_loop_counter = MAX_TUNING_LOOP;
Arindam Nathb513ea22011-05-05 12:19:04 +05301881 int err = 0;
Aisheng Dong2b35bd82013-12-23 19:13:04 +08001882 unsigned long flags;
Adrian Hunter38e40bf2014-12-05 19:25:30 +02001883 unsigned int tuning_count = 0;
Adrian Hunterb5540ce2014-12-05 19:25:31 +02001884 bool hs400_tuning;
Arindam Nathb513ea22011-05-05 12:19:04 +05301885
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001886 sdhci_runtime_pm_get(host);
Aisheng Dong2b35bd82013-12-23 19:13:04 +08001887 spin_lock_irqsave(&host->lock, flags);
Arindam Nathb513ea22011-05-05 12:19:04 +05301888
Adrian Hunterb5540ce2014-12-05 19:25:31 +02001889 hs400_tuning = host->flags & SDHCI_HS400_TUNING;
1890 host->flags &= ~SDHCI_HS400_TUNING;
1891
Adrian Hunter38e40bf2014-12-05 19:25:30 +02001892 if (host->tuning_mode == SDHCI_TUNING_MODE_1)
1893 tuning_count = host->tuning_count;
1894
Arindam Nathb513ea22011-05-05 12:19:04 +05301895 /*
Weijun Yang9faac7b2015-10-04 12:04:12 +00001896 * The Host Controller needs tuning in case of SDR104 and DDR50
1897 * mode, and for SDR50 mode when Use Tuning for SDR50 is set in
1898 * the Capabilities register.
Girish K S069c9f12012-01-06 09:56:39 +05301899 * If the Host Controller supports the HS200 mode then the
1900 * tuning function has to be executed.
Arindam Nathb513ea22011-05-05 12:19:04 +05301901 */
Russell King4b6f37d2014-04-25 12:59:36 +01001902 switch (host->timing) {
Adrian Hunterb5540ce2014-12-05 19:25:31 +02001903 /* HS400 tuning is done in HS200 mode */
Adrian Huntere9fb05d2014-11-06 15:19:06 +02001904 case MMC_TIMING_MMC_HS400:
Adrian Hunterb5540ce2014-12-05 19:25:31 +02001905 err = -EINVAL;
1906 goto out_unlock;
1907
Russell King4b6f37d2014-04-25 12:59:36 +01001908 case MMC_TIMING_MMC_HS200:
Adrian Hunterb5540ce2014-12-05 19:25:31 +02001909 /*
1910 * Periodic re-tuning for HS400 is not expected to be needed, so
1911 * disable it here.
1912 */
1913 if (hs400_tuning)
1914 tuning_count = 0;
1915 break;
1916
Russell King4b6f37d2014-04-25 12:59:36 +01001917 case MMC_TIMING_UHS_SDR104:
Weijun Yang9faac7b2015-10-04 12:04:12 +00001918 case MMC_TIMING_UHS_DDR50:
Russell King4b6f37d2014-04-25 12:59:36 +01001919 break;
Girish K S069c9f12012-01-06 09:56:39 +05301920
Russell King4b6f37d2014-04-25 12:59:36 +01001921 case MMC_TIMING_UHS_SDR50:
1922 if (host->flags & SDHCI_SDR50_NEEDS_TUNING ||
1923 host->flags & SDHCI_SDR104_NEEDS_TUNING)
1924 break;
1925 /* FALLTHROUGH */
1926
1927 default:
Adrian Hunterd519c862014-12-05 19:25:29 +02001928 goto out_unlock;
Arindam Nathb513ea22011-05-05 12:19:04 +05301929 }
1930
Dong Aisheng45251812013-09-13 19:11:30 +08001931 if (host->ops->platform_execute_tuning) {
Aisheng Dong2b35bd82013-12-23 19:13:04 +08001932 spin_unlock_irqrestore(&host->lock, flags);
Dong Aisheng45251812013-09-13 19:11:30 +08001933 err = host->ops->platform_execute_tuning(host, opcode);
1934 sdhci_runtime_pm_put(host);
1935 return err;
1936 }
1937
Russell King4b6f37d2014-04-25 12:59:36 +01001938 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
1939 ctrl |= SDHCI_CTRL_EXEC_TUNING;
Vincent Yang67d0d042015-01-20 16:05:16 +08001940 if (host->quirks2 & SDHCI_QUIRK2_TUNING_WORK_AROUND)
1941 ctrl |= SDHCI_CTRL_TUNED_CLK;
Arindam Nathb513ea22011-05-05 12:19:04 +05301942 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
1943
1944 /*
1945 * As per the Host Controller spec v3.00, tuning command
1946 * generates Buffer Read Ready interrupt, so enable that.
1947 *
1948 * Note: The spec clearly says that when tuning sequence
1949 * is being performed, the controller does not generate
1950 * interrupts other than Buffer Read Ready interrupt. But
1951 * to make sure we don't hit a controller bug, we _only_
1952 * enable Buffer Read Ready interrupt here.
1953 */
Russell Kingb537f942014-04-25 12:56:01 +01001954 sdhci_writel(host, SDHCI_INT_DATA_AVAIL, SDHCI_INT_ENABLE);
1955 sdhci_writel(host, SDHCI_INT_DATA_AVAIL, SDHCI_SIGNAL_ENABLE);
Arindam Nathb513ea22011-05-05 12:19:04 +05301956
1957 /*
1958 * Issue CMD19 repeatedly till Execute Tuning is set to 0 or the number
1959 * of loops reaches 40 times or a timeout of 150ms occurs.
1960 */
Arindam Nathb513ea22011-05-05 12:19:04 +05301961 do {
1962 struct mmc_command cmd = {0};
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001963 struct mmc_request mrq = {NULL};
Arindam Nathb513ea22011-05-05 12:19:04 +05301964
Girish K S069c9f12012-01-06 09:56:39 +05301965 cmd.opcode = opcode;
Arindam Nathb513ea22011-05-05 12:19:04 +05301966 cmd.arg = 0;
1967 cmd.flags = MMC_RSP_R1 | MMC_CMD_ADTC;
1968 cmd.retries = 0;
1969 cmd.data = NULL;
1970 cmd.error = 0;
1971
Al Cooper7ce45e92014-05-09 11:34:07 -04001972 if (tuning_loop_counter-- == 0)
1973 break;
1974
Arindam Nathb513ea22011-05-05 12:19:04 +05301975 mrq.cmd = &cmd;
1976 host->mrq = &mrq;
1977
1978 /*
1979 * In response to CMD19, the card sends 64 bytes of tuning
1980 * block to the Host Controller. So we set the block size
1981 * to 64 here.
1982 */
Girish K S069c9f12012-01-06 09:56:39 +05301983 if (cmd.opcode == MMC_SEND_TUNING_BLOCK_HS200) {
1984 if (mmc->ios.bus_width == MMC_BUS_WIDTH_8)
1985 sdhci_writew(host, SDHCI_MAKE_BLKSZ(7, 128),
1986 SDHCI_BLOCK_SIZE);
1987 else if (mmc->ios.bus_width == MMC_BUS_WIDTH_4)
1988 sdhci_writew(host, SDHCI_MAKE_BLKSZ(7, 64),
1989 SDHCI_BLOCK_SIZE);
1990 } else {
1991 sdhci_writew(host, SDHCI_MAKE_BLKSZ(7, 64),
1992 SDHCI_BLOCK_SIZE);
1993 }
Arindam Nathb513ea22011-05-05 12:19:04 +05301994
1995 /*
1996 * The tuning block is sent by the card to the host controller.
1997 * So we set the TRNS_READ bit in the Transfer Mode register.
1998 * This also takes care of setting DMA Enable and Multi Block
1999 * Select in the same register to 0.
2000 */
2001 sdhci_writew(host, SDHCI_TRNS_READ, SDHCI_TRANSFER_MODE);
2002
2003 sdhci_send_command(host, &cmd);
2004
2005 host->cmd = NULL;
2006 host->mrq = NULL;
2007
Aisheng Dong2b35bd82013-12-23 19:13:04 +08002008 spin_unlock_irqrestore(&host->lock, flags);
Arindam Nathb513ea22011-05-05 12:19:04 +05302009 /* Wait for Buffer Read Ready interrupt */
2010 wait_event_interruptible_timeout(host->buf_ready_int,
2011 (host->tuning_done == 1),
2012 msecs_to_jiffies(50));
Aisheng Dong2b35bd82013-12-23 19:13:04 +08002013 spin_lock_irqsave(&host->lock, flags);
Arindam Nathb513ea22011-05-05 12:19:04 +05302014
2015 if (!host->tuning_done) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01002016 pr_info(DRIVER_NAME ": Timeout waiting for Buffer Read Ready interrupt during tuning procedure, falling back to fixed sampling clock\n");
Arindam Nathb513ea22011-05-05 12:19:04 +05302017 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
2018 ctrl &= ~SDHCI_CTRL_TUNED_CLK;
2019 ctrl &= ~SDHCI_CTRL_EXEC_TUNING;
2020 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
2021
2022 err = -EIO;
2023 goto out;
2024 }
2025
2026 host->tuning_done = 0;
2027
2028 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
Nick Sanders197160d2014-05-06 18:52:38 -07002029
2030 /* eMMC spec does not require a delay between tuning cycles */
2031 if (opcode == MMC_SEND_TUNING_BLOCK)
2032 mdelay(1);
Arindam Nathb513ea22011-05-05 12:19:04 +05302033 } while (ctrl & SDHCI_CTRL_EXEC_TUNING);
2034
2035 /*
2036 * The Host Driver has exhausted the maximum number of loops allowed,
2037 * so use fixed sampling frequency.
2038 */
Al Cooper7ce45e92014-05-09 11:34:07 -04002039 if (tuning_loop_counter < 0) {
Arindam Nathb513ea22011-05-05 12:19:04 +05302040 ctrl &= ~SDHCI_CTRL_TUNED_CLK;
2041 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
Al Cooper7ce45e92014-05-09 11:34:07 -04002042 }
2043 if (!(ctrl & SDHCI_CTRL_TUNED_CLK)) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01002044 pr_info(DRIVER_NAME ": Tuning procedure failed, falling back to fixed sampling clock\n");
Dong Aisheng114f2bf2013-10-18 19:48:45 +08002045 err = -EIO;
Arindam Nathb513ea22011-05-05 12:19:04 +05302046 }
2047
2048out:
Adrian Hunter38e40bf2014-12-05 19:25:30 +02002049 if (tuning_count) {
Adrian Hunter66c39dfc2015-05-07 13:10:21 +03002050 /*
2051 * In case tuning fails, host controllers which support
2052 * re-tuning can try tuning again at a later time, when the
2053 * re-tuning timer expires. So for these controllers, we
2054 * return 0. Since there might be other controllers who do not
2055 * have this capability, we return error for them.
2056 */
2057 err = 0;
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05302058 }
2059
Adrian Hunter66c39dfc2015-05-07 13:10:21 +03002060 host->mmc->retune_period = err ? 0 : tuning_count;
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05302061
Russell Kingb537f942014-04-25 12:56:01 +01002062 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
2063 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Adrian Hunterd519c862014-12-05 19:25:29 +02002064out_unlock:
Aisheng Dong2b35bd82013-12-23 19:13:04 +08002065 spin_unlock_irqrestore(&host->lock, flags);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002066 sdhci_runtime_pm_put(host);
Arindam Nathb513ea22011-05-05 12:19:04 +05302067
2068 return err;
2069}
2070
Adrian Huntercb849642015-02-06 14:12:59 +02002071static int sdhci_select_drive_strength(struct mmc_card *card,
2072 unsigned int max_dtr, int host_drv,
2073 int card_drv, int *drv_type)
2074{
2075 struct sdhci_host *host = mmc_priv(card->host);
2076
2077 if (!host->ops->select_drive_strength)
2078 return 0;
2079
2080 return host->ops->select_drive_strength(host, card, max_dtr, host_drv,
2081 card_drv, drv_type);
2082}
Kevin Liu52983382013-01-31 11:31:37 +08002083
2084static void sdhci_enable_preset_value(struct sdhci_host *host, bool enable)
Arindam Nath4d55c5a2011-05-05 12:19:05 +05302085{
Arindam Nath4d55c5a2011-05-05 12:19:05 +05302086 /* Host Controller v3.00 defines preset value registers */
2087 if (host->version < SDHCI_SPEC_300)
2088 return;
2089
Arindam Nath4d55c5a2011-05-05 12:19:05 +05302090 /*
2091 * We only enable or disable Preset Value if they are not already
2092 * enabled or disabled respectively. Otherwise, we bail out.
2093 */
Russell Kingda91a8f2014-04-25 13:00:12 +01002094 if (host->preset_enabled != enable) {
2095 u16 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
2096
2097 if (enable)
2098 ctrl |= SDHCI_CTRL_PRESET_VAL_ENABLE;
2099 else
2100 ctrl &= ~SDHCI_CTRL_PRESET_VAL_ENABLE;
2101
Arindam Nath4d55c5a2011-05-05 12:19:05 +05302102 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
Russell Kingda91a8f2014-04-25 13:00:12 +01002103
2104 if (enable)
2105 host->flags |= SDHCI_PV_ENABLED;
2106 else
2107 host->flags &= ~SDHCI_PV_ENABLED;
2108
2109 host->preset_enabled = enable;
Arindam Nath4d55c5a2011-05-05 12:19:05 +05302110 }
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002111}
2112
Haibo Chen348487c2014-12-09 17:04:05 +08002113static void sdhci_post_req(struct mmc_host *mmc, struct mmc_request *mrq,
2114 int err)
2115{
2116 struct sdhci_host *host = mmc_priv(mmc);
2117 struct mmc_data *data = mrq->data;
2118
2119 if (host->flags & SDHCI_REQ_USE_DMA) {
Haibo Chend31911b2015-08-25 10:02:11 +08002120 if (data->host_cookie == COOKIE_GIVEN ||
2121 data->host_cookie == COOKIE_MAPPED)
Haibo Chen348487c2014-12-09 17:04:05 +08002122 dma_unmap_sg(mmc_dev(host->mmc), data->sg, data->sg_len,
2123 data->flags & MMC_DATA_WRITE ?
2124 DMA_TO_DEVICE : DMA_FROM_DEVICE);
Haibo Chend31911b2015-08-25 10:02:11 +08002125 data->host_cookie = COOKIE_UNMAPPED;
Haibo Chen348487c2014-12-09 17:04:05 +08002126 }
2127}
2128
2129static int sdhci_pre_dma_transfer(struct sdhci_host *host,
Haibo Chend31911b2015-08-25 10:02:11 +08002130 struct mmc_data *data)
Haibo Chen348487c2014-12-09 17:04:05 +08002131{
2132 int sg_count;
2133
Haibo Chend31911b2015-08-25 10:02:11 +08002134 if (data->host_cookie == COOKIE_MAPPED) {
2135 data->host_cookie = COOKIE_GIVEN;
2136 return data->sg_count;
Haibo Chen348487c2014-12-09 17:04:05 +08002137 }
2138
Haibo Chend31911b2015-08-25 10:02:11 +08002139 WARN_ON(data->host_cookie == COOKIE_GIVEN);
Haibo Chen348487c2014-12-09 17:04:05 +08002140
Haibo Chend31911b2015-08-25 10:02:11 +08002141 sg_count = dma_map_sg(mmc_dev(host->mmc), data->sg, data->sg_len,
2142 data->flags & MMC_DATA_WRITE ?
2143 DMA_TO_DEVICE : DMA_FROM_DEVICE);
Haibo Chen348487c2014-12-09 17:04:05 +08002144
2145 if (sg_count == 0)
Haibo Chend31911b2015-08-25 10:02:11 +08002146 return -ENOSPC;
Haibo Chen348487c2014-12-09 17:04:05 +08002147
Haibo Chend31911b2015-08-25 10:02:11 +08002148 data->sg_count = sg_count;
2149 data->host_cookie = COOKIE_MAPPED;
Haibo Chen348487c2014-12-09 17:04:05 +08002150
2151 return sg_count;
2152}
2153
2154static void sdhci_pre_req(struct mmc_host *mmc, struct mmc_request *mrq,
2155 bool is_first_req)
2156{
2157 struct sdhci_host *host = mmc_priv(mmc);
2158
Haibo Chend31911b2015-08-25 10:02:11 +08002159 mrq->data->host_cookie = COOKIE_UNMAPPED;
Haibo Chen348487c2014-12-09 17:04:05 +08002160
2161 if (host->flags & SDHCI_REQ_USE_DMA)
Haibo Chend31911b2015-08-25 10:02:11 +08002162 sdhci_pre_dma_transfer(host, mrq->data);
Haibo Chen348487c2014-12-09 17:04:05 +08002163}
2164
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002165static void sdhci_card_event(struct mmc_host *mmc)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002166{
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002167 struct sdhci_host *host = mmc_priv(mmc);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002168 unsigned long flags;
Krzysztof Kozlowski28367662015-01-05 10:50:15 +01002169 int present;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002170
Christian Daudt722e1282013-06-20 14:26:36 -07002171 /* First check if client has provided their own card event */
2172 if (host->ops->card_event)
2173 host->ops->card_event(host);
2174
Krzysztof Kozlowski28367662015-01-05 10:50:15 +01002175 present = sdhci_do_get_cd(host);
2176
Pierre Ossmand129bce2006-03-24 03:18:17 -08002177 spin_lock_irqsave(&host->lock, flags);
2178
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002179 /* Check host->mrq first in case we are runtime suspended */
Krzysztof Kozlowski28367662015-01-05 10:50:15 +01002180 if (host->mrq && !present) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05302181 pr_err("%s: Card removed during transfer!\n",
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002182 mmc_hostname(host->mmc));
Girish K Sa3c76eb2011-10-11 11:44:09 +05302183 pr_err("%s: Resetting controller.\n",
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002184 mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -08002185
Russell King03231f92014-04-25 12:57:12 +01002186 sdhci_do_reset(host, SDHCI_RESET_CMD);
2187 sdhci_do_reset(host, SDHCI_RESET_DATA);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002188
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002189 host->mrq->cmd->error = -ENOMEDIUM;
2190 tasklet_schedule(&host->finish_tasklet);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002191 }
2192
2193 spin_unlock_irqrestore(&host->lock, flags);
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002194}
2195
2196static const struct mmc_host_ops sdhci_ops = {
2197 .request = sdhci_request,
Haibo Chen348487c2014-12-09 17:04:05 +08002198 .post_req = sdhci_post_req,
2199 .pre_req = sdhci_pre_req,
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002200 .set_ios = sdhci_set_ios,
Kevin Liu94144a42013-02-28 17:35:53 +08002201 .get_cd = sdhci_get_cd,
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002202 .get_ro = sdhci_get_ro,
2203 .hw_reset = sdhci_hw_reset,
2204 .enable_sdio_irq = sdhci_enable_sdio_irq,
2205 .start_signal_voltage_switch = sdhci_start_signal_voltage_switch,
Adrian Hunterb5540ce2014-12-05 19:25:31 +02002206 .prepare_hs400_tuning = sdhci_prepare_hs400_tuning,
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002207 .execute_tuning = sdhci_execute_tuning,
Adrian Huntercb849642015-02-06 14:12:59 +02002208 .select_drive_strength = sdhci_select_drive_strength,
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002209 .card_event = sdhci_card_event,
Kevin Liu20b92a32012-12-17 19:29:26 +08002210 .card_busy = sdhci_card_busy,
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002211};
2212
2213/*****************************************************************************\
2214 * *
2215 * Tasklets *
2216 * *
2217\*****************************************************************************/
2218
Pierre Ossmand129bce2006-03-24 03:18:17 -08002219static void sdhci_tasklet_finish(unsigned long param)
2220{
2221 struct sdhci_host *host;
2222 unsigned long flags;
2223 struct mmc_request *mrq;
2224
2225 host = (struct sdhci_host*)param;
2226
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002227 spin_lock_irqsave(&host->lock, flags);
2228
Chris Ball0c9c99a2011-04-27 17:35:31 -04002229 /*
2230 * If this tasklet gets rescheduled while running, it will
2231 * be run again afterwards but without any active request.
2232 */
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002233 if (!host->mrq) {
2234 spin_unlock_irqrestore(&host->lock, flags);
Chris Ball0c9c99a2011-04-27 17:35:31 -04002235 return;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002236 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08002237
2238 del_timer(&host->timer);
2239
2240 mrq = host->mrq;
2241
Pierre Ossmand129bce2006-03-24 03:18:17 -08002242 /*
2243 * The controller needs a reset of internal state machines
2244 * upon error conditions.
2245 */
Pierre Ossman1e728592008-04-16 19:13:13 +02002246 if (!(host->flags & SDHCI_DEVICE_DEAD) &&
Ben Dooksb7b4d342011-04-27 14:24:19 +01002247 ((mrq->cmd && mrq->cmd->error) ||
Andrew Gabbasovfce9d332014-10-01 07:14:08 -05002248 (mrq->sbc && mrq->sbc->error) ||
2249 (mrq->data && ((mrq->data->error && !mrq->data->stop) ||
2250 (mrq->data->stop && mrq->data->stop->error))) ||
2251 (host->quirks & SDHCI_QUIRK_RESET_AFTER_REQUEST))) {
Pierre Ossman645289d2006-06-30 02:22:33 -07002252
2253 /* Some controllers need this kick or reset won't work here */
Andy Shevchenko8213af32013-01-07 16:31:08 +02002254 if (host->quirks & SDHCI_QUIRK_CLOCK_BEFORE_RESET)
Pierre Ossman645289d2006-06-30 02:22:33 -07002255 /* This is to force an update */
Russell King17710592014-04-25 12:58:55 +01002256 host->ops->set_clock(host, host->clock);
Pierre Ossman645289d2006-06-30 02:22:33 -07002257
2258 /* Spec says we should do both at the same time, but Ricoh
2259 controllers do not like that. */
Russell King03231f92014-04-25 12:57:12 +01002260 sdhci_do_reset(host, SDHCI_RESET_CMD);
2261 sdhci_do_reset(host, SDHCI_RESET_DATA);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002262 }
2263
2264 host->mrq = NULL;
2265 host->cmd = NULL;
2266 host->data = NULL;
2267
Pierre Ossmanf9134312008-12-21 17:01:48 +01002268#ifndef SDHCI_USE_LEDS_CLASS
Pierre Ossmand129bce2006-03-24 03:18:17 -08002269 sdhci_deactivate_led(host);
Pierre Ossman2f730fe2008-03-17 10:29:38 +01002270#endif
Pierre Ossmand129bce2006-03-24 03:18:17 -08002271
Pierre Ossman5f25a662006-10-04 02:15:39 -07002272 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -08002273 spin_unlock_irqrestore(&host->lock, flags);
2274
2275 mmc_request_done(host->mmc, mrq);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002276 sdhci_runtime_pm_put(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002277}
2278
2279static void sdhci_timeout_timer(unsigned long data)
2280{
2281 struct sdhci_host *host;
2282 unsigned long flags;
2283
2284 host = (struct sdhci_host*)data;
2285
2286 spin_lock_irqsave(&host->lock, flags);
2287
2288 if (host->mrq) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01002289 pr_err("%s: Timeout waiting for hardware interrupt.\n",
2290 mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -08002291 sdhci_dumpregs(host);
2292
2293 if (host->data) {
Pierre Ossman17b04292007-07-22 22:18:46 +02002294 host->data->error = -ETIMEDOUT;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002295 sdhci_finish_data(host);
2296 } else {
2297 if (host->cmd)
Pierre Ossman17b04292007-07-22 22:18:46 +02002298 host->cmd->error = -ETIMEDOUT;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002299 else
Pierre Ossman17b04292007-07-22 22:18:46 +02002300 host->mrq->cmd->error = -ETIMEDOUT;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002301
2302 tasklet_schedule(&host->finish_tasklet);
2303 }
2304 }
2305
Pierre Ossman5f25a662006-10-04 02:15:39 -07002306 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -08002307 spin_unlock_irqrestore(&host->lock, flags);
2308}
2309
2310/*****************************************************************************\
2311 * *
2312 * Interrupt handling *
2313 * *
2314\*****************************************************************************/
2315
Adrian Hunter61541392014-09-24 10:27:27 +03002316static void sdhci_cmd_irq(struct sdhci_host *host, u32 intmask, u32 *mask)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002317{
2318 BUG_ON(intmask == 0);
2319
2320 if (!host->cmd) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01002321 pr_err("%s: Got command interrupt 0x%08x even though no command operation was in progress.\n",
2322 mmc_hostname(host->mmc), (unsigned)intmask);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002323 sdhci_dumpregs(host);
2324 return;
2325 }
2326
Pierre Ossman43b58b32007-07-25 23:15:27 +02002327 if (intmask & SDHCI_INT_TIMEOUT)
Pierre Ossman17b04292007-07-22 22:18:46 +02002328 host->cmd->error = -ETIMEDOUT;
2329 else if (intmask & (SDHCI_INT_CRC | SDHCI_INT_END_BIT |
2330 SDHCI_INT_INDEX))
2331 host->cmd->error = -EILSEQ;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002332
Pierre Ossmane8095172008-07-25 01:09:08 +02002333 if (host->cmd->error) {
Pierre Ossmand129bce2006-03-24 03:18:17 -08002334 tasklet_schedule(&host->finish_tasklet);
Pierre Ossmane8095172008-07-25 01:09:08 +02002335 return;
2336 }
2337
2338 /*
2339 * The host can send and interrupt when the busy state has
2340 * ended, allowing us to wait without wasting CPU cycles.
2341 * Unfortunately this is overloaded on the "data complete"
2342 * interrupt, so we need to take some care when handling
2343 * it.
2344 *
2345 * Note: The 1.0 specification is a bit ambiguous about this
2346 * feature so there might be some problems with older
2347 * controllers.
2348 */
2349 if (host->cmd->flags & MMC_RSP_BUSY) {
2350 if (host->cmd->data)
Marek Vasut2e4456f2015-11-18 10:47:02 +01002351 DBG("Cannot wait for busy signal when also doing a data transfer");
Chanho Mine99783a2014-08-30 12:40:40 +09002352 else if (!(host->quirks & SDHCI_QUIRK_NO_BUSY_IRQ)
2353 && !host->busy_handle) {
2354 /* Mark that command complete before busy is ended */
2355 host->busy_handle = 1;
Pierre Ossmane8095172008-07-25 01:09:08 +02002356 return;
Chanho Mine99783a2014-08-30 12:40:40 +09002357 }
Ben Dooksf9454052009-02-20 20:33:08 +03002358
2359 /* The controller does not support the end-of-busy IRQ,
2360 * fall through and take the SDHCI_INT_RESPONSE */
Adrian Hunter61541392014-09-24 10:27:27 +03002361 } else if ((host->quirks2 & SDHCI_QUIRK2_STOP_WITH_TC) &&
2362 host->cmd->opcode == MMC_STOP_TRANSMISSION && !host->data) {
2363 *mask &= ~SDHCI_INT_DATA_END;
Pierre Ossmane8095172008-07-25 01:09:08 +02002364 }
2365
2366 if (intmask & SDHCI_INT_RESPONSE)
Pierre Ossman43b58b32007-07-25 23:15:27 +02002367 sdhci_finish_command(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002368}
2369
George G. Davis0957c332010-02-18 12:32:12 -05002370#ifdef CONFIG_MMC_DEBUG
Adrian Hunter08621b12014-11-04 12:42:38 +02002371static void sdhci_adma_show_error(struct sdhci_host *host)
Ben Dooks6882a8c2009-06-14 13:52:38 +01002372{
2373 const char *name = mmc_hostname(host->mmc);
Adrian Hunter1c3d5f62014-11-04 12:42:41 +02002374 void *desc = host->adma_table;
Ben Dooks6882a8c2009-06-14 13:52:38 +01002375
2376 sdhci_dumpregs(host);
2377
2378 while (true) {
Adrian Huntere57a5f62014-11-04 12:42:46 +02002379 struct sdhci_adma2_64_desc *dma_desc = desc;
Ben Dooks6882a8c2009-06-14 13:52:38 +01002380
Adrian Huntere57a5f62014-11-04 12:42:46 +02002381 if (host->flags & SDHCI_USE_64_BIT_DMA)
2382 DBG("%s: %p: DMA 0x%08x%08x, LEN 0x%04x, Attr=0x%02x\n",
2383 name, desc, le32_to_cpu(dma_desc->addr_hi),
2384 le32_to_cpu(dma_desc->addr_lo),
2385 le16_to_cpu(dma_desc->len),
2386 le16_to_cpu(dma_desc->cmd));
2387 else
2388 DBG("%s: %p: DMA 0x%08x, LEN 0x%04x, Attr=0x%02x\n",
2389 name, desc, le32_to_cpu(dma_desc->addr_lo),
2390 le16_to_cpu(dma_desc->len),
2391 le16_to_cpu(dma_desc->cmd));
Ben Dooks6882a8c2009-06-14 13:52:38 +01002392
Adrian Hunter76fe3792014-11-04 12:42:42 +02002393 desc += host->desc_sz;
Ben Dooks6882a8c2009-06-14 13:52:38 +01002394
Adrian Hunter05452302014-11-04 12:42:45 +02002395 if (dma_desc->cmd & cpu_to_le16(ADMA2_END))
Ben Dooks6882a8c2009-06-14 13:52:38 +01002396 break;
2397 }
2398}
2399#else
Adrian Hunter08621b12014-11-04 12:42:38 +02002400static void sdhci_adma_show_error(struct sdhci_host *host) { }
Ben Dooks6882a8c2009-06-14 13:52:38 +01002401#endif
2402
Pierre Ossmand129bce2006-03-24 03:18:17 -08002403static void sdhci_data_irq(struct sdhci_host *host, u32 intmask)
2404{
Girish K S069c9f12012-01-06 09:56:39 +05302405 u32 command;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002406 BUG_ON(intmask == 0);
2407
Arindam Nathb513ea22011-05-05 12:19:04 +05302408 /* CMD19 generates _only_ Buffer Read Ready interrupt */
2409 if (intmask & SDHCI_INT_DATA_AVAIL) {
Girish K S069c9f12012-01-06 09:56:39 +05302410 command = SDHCI_GET_CMD(sdhci_readw(host, SDHCI_COMMAND));
2411 if (command == MMC_SEND_TUNING_BLOCK ||
2412 command == MMC_SEND_TUNING_BLOCK_HS200) {
Arindam Nathb513ea22011-05-05 12:19:04 +05302413 host->tuning_done = 1;
2414 wake_up(&host->buf_ready_int);
2415 return;
2416 }
2417 }
2418
Pierre Ossmand129bce2006-03-24 03:18:17 -08002419 if (!host->data) {
2420 /*
Pierre Ossmane8095172008-07-25 01:09:08 +02002421 * The "data complete" interrupt is also used to
2422 * indicate that a busy state has ended. See comment
2423 * above in sdhci_cmd_irq().
Pierre Ossmand129bce2006-03-24 03:18:17 -08002424 */
Pierre Ossmane8095172008-07-25 01:09:08 +02002425 if (host->cmd && (host->cmd->flags & MMC_RSP_BUSY)) {
Matthieu CASTETc5abd5e2014-08-14 16:03:17 +02002426 if (intmask & SDHCI_INT_DATA_TIMEOUT) {
2427 host->cmd->error = -ETIMEDOUT;
2428 tasklet_schedule(&host->finish_tasklet);
2429 return;
2430 }
Pierre Ossmane8095172008-07-25 01:09:08 +02002431 if (intmask & SDHCI_INT_DATA_END) {
Chanho Mine99783a2014-08-30 12:40:40 +09002432 /*
2433 * Some cards handle busy-end interrupt
2434 * before the command completed, so make
2435 * sure we do things in the proper order.
2436 */
2437 if (host->busy_handle)
2438 sdhci_finish_command(host);
2439 else
2440 host->busy_handle = 1;
Pierre Ossmane8095172008-07-25 01:09:08 +02002441 return;
2442 }
2443 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08002444
Marek Vasut2e4456f2015-11-18 10:47:02 +01002445 pr_err("%s: Got data interrupt 0x%08x even though no data operation was in progress.\n",
2446 mmc_hostname(host->mmc), (unsigned)intmask);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002447 sdhci_dumpregs(host);
2448
2449 return;
2450 }
2451
2452 if (intmask & SDHCI_INT_DATA_TIMEOUT)
Pierre Ossman17b04292007-07-22 22:18:46 +02002453 host->data->error = -ETIMEDOUT;
Aries Lee22113ef2010-12-15 08:14:24 +01002454 else if (intmask & SDHCI_INT_DATA_END_BIT)
2455 host->data->error = -EILSEQ;
2456 else if ((intmask & SDHCI_INT_DATA_CRC) &&
2457 SDHCI_GET_CMD(sdhci_readw(host, SDHCI_COMMAND))
2458 != MMC_BUS_TEST_R)
Pierre Ossman17b04292007-07-22 22:18:46 +02002459 host->data->error = -EILSEQ;
Ben Dooks6882a8c2009-06-14 13:52:38 +01002460 else if (intmask & SDHCI_INT_ADMA_ERROR) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05302461 pr_err("%s: ADMA error\n", mmc_hostname(host->mmc));
Adrian Hunter08621b12014-11-04 12:42:38 +02002462 sdhci_adma_show_error(host);
Pierre Ossman2134a922008-06-28 18:28:51 +02002463 host->data->error = -EIO;
Haijun Zhanga4071fb2012-12-04 10:41:28 +08002464 if (host->ops->adma_workaround)
2465 host->ops->adma_workaround(host, intmask);
Ben Dooks6882a8c2009-06-14 13:52:38 +01002466 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08002467
Pierre Ossman17b04292007-07-22 22:18:46 +02002468 if (host->data->error)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002469 sdhci_finish_data(host);
2470 else {
Pierre Ossmana406f5a2006-07-02 16:50:59 +01002471 if (intmask & (SDHCI_INT_DATA_AVAIL | SDHCI_INT_SPACE_AVAIL))
Pierre Ossmand129bce2006-03-24 03:18:17 -08002472 sdhci_transfer_pio(host);
2473
Pierre Ossman6ba736a2007-05-13 22:39:23 +02002474 /*
2475 * We currently don't do anything fancy with DMA
2476 * boundaries, but as we can't disable the feature
2477 * we need to at least restart the transfer.
Mikko Vinnif6a03cb2011-04-12 09:36:18 -04002478 *
2479 * According to the spec sdhci_readl(host, SDHCI_DMA_ADDRESS)
2480 * should return a valid address to continue from, but as
2481 * some controllers are faulty, don't trust them.
Pierre Ossman6ba736a2007-05-13 22:39:23 +02002482 */
Mikko Vinnif6a03cb2011-04-12 09:36:18 -04002483 if (intmask & SDHCI_INT_DMA_END) {
2484 u32 dmastart, dmanow;
2485 dmastart = sg_dma_address(host->data->sg);
2486 dmanow = dmastart + host->data->bytes_xfered;
2487 /*
2488 * Force update to the next DMA block boundary.
2489 */
2490 dmanow = (dmanow &
2491 ~(SDHCI_DEFAULT_BOUNDARY_SIZE - 1)) +
2492 SDHCI_DEFAULT_BOUNDARY_SIZE;
2493 host->data->bytes_xfered = dmanow - dmastart;
2494 DBG("%s: DMA base 0x%08x, transferred 0x%06x bytes,"
2495 " next 0x%08x\n",
2496 mmc_hostname(host->mmc), dmastart,
2497 host->data->bytes_xfered, dmanow);
2498 sdhci_writel(host, dmanow, SDHCI_DMA_ADDRESS);
2499 }
Pierre Ossman6ba736a2007-05-13 22:39:23 +02002500
Pierre Ossmane538fbe2007-08-12 16:46:32 +02002501 if (intmask & SDHCI_INT_DATA_END) {
2502 if (host->cmd) {
2503 /*
2504 * Data managed to finish before the
2505 * command completed. Make sure we do
2506 * things in the proper order.
2507 */
2508 host->data_early = 1;
2509 } else {
2510 sdhci_finish_data(host);
2511 }
2512 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08002513 }
2514}
2515
David Howells7d12e782006-10-05 14:55:46 +01002516static irqreturn_t sdhci_irq(int irq, void *dev_id)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002517{
Russell King781e9892014-04-25 12:55:46 +01002518 irqreturn_t result = IRQ_NONE;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002519 struct sdhci_host *host = dev_id;
Russell King41005002014-04-25 12:55:36 +01002520 u32 intmask, mask, unexpected = 0;
Russell King781e9892014-04-25 12:55:46 +01002521 int max_loops = 16;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002522
2523 spin_lock(&host->lock);
2524
Russell Kingbe138552014-04-25 12:55:56 +01002525 if (host->runtime_suspended && !sdhci_sdio_irq_enabled(host)) {
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002526 spin_unlock(&host->lock);
Adrian Hunter655bca72014-03-11 10:09:36 +02002527 return IRQ_NONE;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002528 }
2529
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03002530 intmask = sdhci_readl(host, SDHCI_INT_STATUS);
Mark Lord62df67a52007-03-06 13:30:13 +01002531 if (!intmask || intmask == 0xffffffff) {
Pierre Ossmand129bce2006-03-24 03:18:17 -08002532 result = IRQ_NONE;
2533 goto out;
2534 }
2535
Russell King41005002014-04-25 12:55:36 +01002536 do {
2537 /* Clear selected interrupts. */
2538 mask = intmask & (SDHCI_INT_CMD_MASK | SDHCI_INT_DATA_MASK |
2539 SDHCI_INT_BUS_POWER);
2540 sdhci_writel(host, mask, SDHCI_INT_STATUS);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002541
Russell King41005002014-04-25 12:55:36 +01002542 DBG("*** %s got interrupt: 0x%08x\n",
2543 mmc_hostname(host->mmc), intmask);
2544
2545 if (intmask & (SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE)) {
2546 u32 present = sdhci_readl(host, SDHCI_PRESENT_STATE) &
2547 SDHCI_CARD_PRESENT;
2548
2549 /*
2550 * There is a observation on i.mx esdhc. INSERT
2551 * bit will be immediately set again when it gets
2552 * cleared, if a card is inserted. We have to mask
2553 * the irq to prevent interrupt storm which will
2554 * freeze the system. And the REMOVE gets the
2555 * same situation.
2556 *
2557 * More testing are needed here to ensure it works
2558 * for other platforms though.
2559 */
Russell Kingb537f942014-04-25 12:56:01 +01002560 host->ier &= ~(SDHCI_INT_CARD_INSERT |
2561 SDHCI_INT_CARD_REMOVE);
2562 host->ier |= present ? SDHCI_INT_CARD_REMOVE :
2563 SDHCI_INT_CARD_INSERT;
2564 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
2565 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Russell King41005002014-04-25 12:55:36 +01002566
2567 sdhci_writel(host, intmask & (SDHCI_INT_CARD_INSERT |
2568 SDHCI_INT_CARD_REMOVE), SDHCI_INT_STATUS);
Russell King3560db82014-04-25 12:55:51 +01002569
2570 host->thread_isr |= intmask & (SDHCI_INT_CARD_INSERT |
2571 SDHCI_INT_CARD_REMOVE);
2572 result = IRQ_WAKE_THREAD;
Russell King41005002014-04-25 12:55:36 +01002573 }
2574
2575 if (intmask & SDHCI_INT_CMD_MASK)
Adrian Hunter61541392014-09-24 10:27:27 +03002576 sdhci_cmd_irq(host, intmask & SDHCI_INT_CMD_MASK,
2577 &intmask);
Russell King41005002014-04-25 12:55:36 +01002578
2579 if (intmask & SDHCI_INT_DATA_MASK)
2580 sdhci_data_irq(host, intmask & SDHCI_INT_DATA_MASK);
2581
2582 if (intmask & SDHCI_INT_BUS_POWER)
2583 pr_err("%s: Card is consuming too much power!\n",
2584 mmc_hostname(host->mmc));
2585
Russell King781e9892014-04-25 12:55:46 +01002586 if (intmask & SDHCI_INT_CARD_INT) {
2587 sdhci_enable_sdio_irq_nolock(host, false);
2588 host->thread_isr |= SDHCI_INT_CARD_INT;
2589 result = IRQ_WAKE_THREAD;
2590 }
Russell King41005002014-04-25 12:55:36 +01002591
2592 intmask &= ~(SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE |
2593 SDHCI_INT_CMD_MASK | SDHCI_INT_DATA_MASK |
2594 SDHCI_INT_ERROR | SDHCI_INT_BUS_POWER |
2595 SDHCI_INT_CARD_INT);
2596
2597 if (intmask) {
2598 unexpected |= intmask;
2599 sdhci_writel(host, intmask, SDHCI_INT_STATUS);
2600 }
2601
Russell King781e9892014-04-25 12:55:46 +01002602 if (result == IRQ_NONE)
2603 result = IRQ_HANDLED;
Russell King41005002014-04-25 12:55:36 +01002604
2605 intmask = sdhci_readl(host, SDHCI_INT_STATUS);
Russell King41005002014-04-25 12:55:36 +01002606 } while (intmask && --max_loops);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002607out:
2608 spin_unlock(&host->lock);
2609
Alexander Stein6379b232012-03-14 09:52:10 +01002610 if (unexpected) {
2611 pr_err("%s: Unexpected interrupt 0x%08x.\n",
2612 mmc_hostname(host->mmc), unexpected);
2613 sdhci_dumpregs(host);
2614 }
Pierre Ossmanf75979b2007-09-04 07:59:18 +02002615
Pierre Ossmand129bce2006-03-24 03:18:17 -08002616 return result;
2617}
2618
Russell King781e9892014-04-25 12:55:46 +01002619static irqreturn_t sdhci_thread_irq(int irq, void *dev_id)
2620{
2621 struct sdhci_host *host = dev_id;
2622 unsigned long flags;
2623 u32 isr;
2624
2625 spin_lock_irqsave(&host->lock, flags);
2626 isr = host->thread_isr;
2627 host->thread_isr = 0;
2628 spin_unlock_irqrestore(&host->lock, flags);
2629
Russell King3560db82014-04-25 12:55:51 +01002630 if (isr & (SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE)) {
2631 sdhci_card_event(host->mmc);
2632 mmc_detect_change(host->mmc, msecs_to_jiffies(200));
2633 }
2634
Russell King781e9892014-04-25 12:55:46 +01002635 if (isr & SDHCI_INT_CARD_INT) {
2636 sdio_run_irqs(host->mmc);
2637
2638 spin_lock_irqsave(&host->lock, flags);
2639 if (host->flags & SDHCI_SDIO_IRQ_ENABLED)
2640 sdhci_enable_sdio_irq_nolock(host, true);
2641 spin_unlock_irqrestore(&host->lock, flags);
2642 }
2643
2644 return isr ? IRQ_HANDLED : IRQ_NONE;
2645}
2646
Pierre Ossmand129bce2006-03-24 03:18:17 -08002647/*****************************************************************************\
2648 * *
2649 * Suspend/resume *
2650 * *
2651\*****************************************************************************/
2652
2653#ifdef CONFIG_PM
Kevin Liuad080d72013-01-05 17:21:33 +08002654void sdhci_enable_irq_wakeups(struct sdhci_host *host)
2655{
2656 u8 val;
2657 u8 mask = SDHCI_WAKE_ON_INSERT | SDHCI_WAKE_ON_REMOVE
2658 | SDHCI_WAKE_ON_INT;
2659
2660 val = sdhci_readb(host, SDHCI_WAKE_UP_CONTROL);
2661 val |= mask ;
2662 /* Avoid fake wake up */
2663 if (host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION)
2664 val &= ~(SDHCI_WAKE_ON_INSERT | SDHCI_WAKE_ON_REMOVE);
2665 sdhci_writeb(host, val, SDHCI_WAKE_UP_CONTROL);
2666}
2667EXPORT_SYMBOL_GPL(sdhci_enable_irq_wakeups);
2668
Fabio Estevam0b10f472014-08-30 14:53:13 -03002669static void sdhci_disable_irq_wakeups(struct sdhci_host *host)
Kevin Liuad080d72013-01-05 17:21:33 +08002670{
2671 u8 val;
2672 u8 mask = SDHCI_WAKE_ON_INSERT | SDHCI_WAKE_ON_REMOVE
2673 | SDHCI_WAKE_ON_INT;
2674
2675 val = sdhci_readb(host, SDHCI_WAKE_UP_CONTROL);
2676 val &= ~mask;
2677 sdhci_writeb(host, val, SDHCI_WAKE_UP_CONTROL);
2678}
Pierre Ossmand129bce2006-03-24 03:18:17 -08002679
Manuel Lauss29495aa2011-11-03 11:09:45 +01002680int sdhci_suspend_host(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002681{
Anton Vorontsov7260cf52009-03-17 00:13:48 +03002682 sdhci_disable_card_detection(host);
2683
Adrian Hunter66c39dfc2015-05-07 13:10:21 +03002684 mmc_retune_timer_stop(host->mmc);
2685 mmc_retune_needed(host->mmc);
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05302686
Kevin Liuad080d72013-01-05 17:21:33 +08002687 if (!device_may_wakeup(mmc_dev(host->mmc))) {
Russell Kingb537f942014-04-25 12:56:01 +01002688 host->ier = 0;
2689 sdhci_writel(host, 0, SDHCI_INT_ENABLE);
2690 sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE);
Kevin Liuad080d72013-01-05 17:21:33 +08002691 free_irq(host->irq, host);
2692 } else {
2693 sdhci_enable_irq_wakeups(host);
2694 enable_irq_wake(host->irq);
2695 }
Ulf Hansson4ee14ec2013-09-25 14:15:24 +02002696 return 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002697}
2698
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002699EXPORT_SYMBOL_GPL(sdhci_suspend_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002700
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002701int sdhci_resume_host(struct sdhci_host *host)
2702{
Ulf Hansson4ee14ec2013-09-25 14:15:24 +02002703 int ret = 0;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002704
Richard Röjforsa13abc72009-09-22 16:45:30 -07002705 if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002706 if (host->ops->enable_dma)
2707 host->ops->enable_dma(host);
2708 }
2709
Adrian Hunter6308d292012-02-07 14:48:54 +02002710 if ((host->mmc->pm_flags & MMC_PM_KEEP_POWER) &&
2711 (host->quirks2 & SDHCI_QUIRK2_HOST_OFF_CARD_ON)) {
2712 /* Card keeps power but host controller does not */
2713 sdhci_init(host, 0);
2714 host->pwr = 0;
2715 host->clock = 0;
2716 sdhci_do_set_ios(host, &host->mmc->ios);
2717 } else {
2718 sdhci_init(host, (host->mmc->pm_flags & MMC_PM_KEEP_POWER));
2719 mmiowb();
2720 }
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002721
Haibo Chen14a7b41642015-09-15 18:32:58 +08002722 if (!device_may_wakeup(mmc_dev(host->mmc))) {
2723 ret = request_threaded_irq(host->irq, sdhci_irq,
2724 sdhci_thread_irq, IRQF_SHARED,
2725 mmc_hostname(host->mmc), host);
2726 if (ret)
2727 return ret;
2728 } else {
2729 sdhci_disable_irq_wakeups(host);
2730 disable_irq_wake(host->irq);
2731 }
2732
Anton Vorontsov7260cf52009-03-17 00:13:48 +03002733 sdhci_enable_card_detection(host);
2734
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08002735 return ret;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002736}
2737
2738EXPORT_SYMBOL_GPL(sdhci_resume_host);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002739
2740static int sdhci_runtime_pm_get(struct sdhci_host *host)
2741{
2742 return pm_runtime_get_sync(host->mmc->parent);
2743}
2744
2745static int sdhci_runtime_pm_put(struct sdhci_host *host)
2746{
2747 pm_runtime_mark_last_busy(host->mmc->parent);
2748 return pm_runtime_put_autosuspend(host->mmc->parent);
2749}
2750
Adrian Hunterf0710a52013-05-06 12:17:32 +03002751static void sdhci_runtime_pm_bus_on(struct sdhci_host *host)
2752{
2753 if (host->runtime_suspended || host->bus_on)
2754 return;
2755 host->bus_on = true;
2756 pm_runtime_get_noresume(host->mmc->parent);
2757}
2758
2759static void sdhci_runtime_pm_bus_off(struct sdhci_host *host)
2760{
2761 if (host->runtime_suspended || !host->bus_on)
2762 return;
2763 host->bus_on = false;
2764 pm_runtime_put_noidle(host->mmc->parent);
2765}
2766
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002767int sdhci_runtime_suspend_host(struct sdhci_host *host)
2768{
2769 unsigned long flags;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002770
Adrian Hunter66c39dfc2015-05-07 13:10:21 +03002771 mmc_retune_timer_stop(host->mmc);
2772 mmc_retune_needed(host->mmc);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002773
2774 spin_lock_irqsave(&host->lock, flags);
Russell Kingb537f942014-04-25 12:56:01 +01002775 host->ier &= SDHCI_INT_CARD_INT;
2776 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
2777 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002778 spin_unlock_irqrestore(&host->lock, flags);
2779
Russell King781e9892014-04-25 12:55:46 +01002780 synchronize_hardirq(host->irq);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002781
2782 spin_lock_irqsave(&host->lock, flags);
2783 host->runtime_suspended = true;
2784 spin_unlock_irqrestore(&host->lock, flags);
2785
Markus Pargmann8a125ba2014-06-04 15:24:29 +02002786 return 0;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002787}
2788EXPORT_SYMBOL_GPL(sdhci_runtime_suspend_host);
2789
2790int sdhci_runtime_resume_host(struct sdhci_host *host)
2791{
2792 unsigned long flags;
Markus Pargmann8a125ba2014-06-04 15:24:29 +02002793 int host_flags = host->flags;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002794
2795 if (host_flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
2796 if (host->ops->enable_dma)
2797 host->ops->enable_dma(host);
2798 }
2799
2800 sdhci_init(host, 0);
2801
2802 /* Force clock and power re-program */
2803 host->pwr = 0;
2804 host->clock = 0;
Jisheng Zhang3396e732015-01-29 17:42:12 +08002805 sdhci_do_start_signal_voltage_switch(host, &host->mmc->ios);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002806 sdhci_do_set_ios(host, &host->mmc->ios);
2807
Kevin Liu52983382013-01-31 11:31:37 +08002808 if ((host_flags & SDHCI_PV_ENABLED) &&
2809 !(host->quirks2 & SDHCI_QUIRK2_PRESET_VALUE_BROKEN)) {
2810 spin_lock_irqsave(&host->lock, flags);
2811 sdhci_enable_preset_value(host, true);
2812 spin_unlock_irqrestore(&host->lock, flags);
2813 }
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002814
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002815 spin_lock_irqsave(&host->lock, flags);
2816
2817 host->runtime_suspended = false;
2818
2819 /* Enable SDIO IRQ */
Russell Kingef104332014-04-25 12:55:41 +01002820 if (host->flags & SDHCI_SDIO_IRQ_ENABLED)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002821 sdhci_enable_sdio_irq_nolock(host, true);
2822
2823 /* Enable Card Detection */
2824 sdhci_enable_card_detection(host);
2825
2826 spin_unlock_irqrestore(&host->lock, flags);
2827
Markus Pargmann8a125ba2014-06-04 15:24:29 +02002828 return 0;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002829}
2830EXPORT_SYMBOL_GPL(sdhci_runtime_resume_host);
2831
Rafael J. Wysocki162d6f92014-12-05 03:05:33 +01002832#endif /* CONFIG_PM */
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002833
Pierre Ossmand129bce2006-03-24 03:18:17 -08002834/*****************************************************************************\
2835 * *
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002836 * Device allocation/registration *
Pierre Ossmand129bce2006-03-24 03:18:17 -08002837 * *
2838\*****************************************************************************/
2839
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002840struct sdhci_host *sdhci_alloc_host(struct device *dev,
2841 size_t priv_size)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002842{
Pierre Ossmand129bce2006-03-24 03:18:17 -08002843 struct mmc_host *mmc;
2844 struct sdhci_host *host;
2845
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002846 WARN_ON(dev == NULL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002847
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002848 mmc = mmc_alloc_host(sizeof(struct sdhci_host) + priv_size, dev);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002849 if (!mmc)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002850 return ERR_PTR(-ENOMEM);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002851
2852 host = mmc_priv(mmc);
2853 host->mmc = mmc;
2854
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002855 return host;
2856}
Pierre Ossman8a4da142006-10-04 02:15:40 -07002857
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002858EXPORT_SYMBOL_GPL(sdhci_alloc_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002859
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002860int sdhci_add_host(struct sdhci_host *host)
2861{
2862 struct mmc_host *mmc;
Philip Rakitybd6a8c32012-06-27 21:49:27 -07002863 u32 caps[2] = {0, 0};
Arindam Nathf2119df2011-05-05 12:18:57 +05302864 u32 max_current_caps;
2865 unsigned int ocr_avail;
Adrian Hunterf5fa92e2014-09-24 10:27:32 +03002866 unsigned int override_timeout_clk;
Dong Aisheng59241752015-07-22 20:53:07 +08002867 u32 max_clk;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002868 int ret;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002869
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002870 WARN_ON(host == NULL);
2871 if (host == NULL)
2872 return -EINVAL;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002873
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002874 mmc = host->mmc;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002875
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002876 if (debug_quirks)
2877 host->quirks = debug_quirks;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002878 if (debug_quirks2)
2879 host->quirks2 = debug_quirks2;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002880
Adrian Hunterf5fa92e2014-09-24 10:27:32 +03002881 override_timeout_clk = host->timeout_clk;
2882
Russell King03231f92014-04-25 12:57:12 +01002883 sdhci_do_reset(host, SDHCI_RESET_ALL);
Pierre Ossmand96649e2006-06-30 02:22:30 -07002884
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03002885 host->version = sdhci_readw(host, SDHCI_HOST_VERSION);
Pierre Ossman2134a922008-06-28 18:28:51 +02002886 host->version = (host->version & SDHCI_SPEC_VER_MASK)
2887 >> SDHCI_SPEC_VER_SHIFT;
Zhangfei Gao85105c52010-08-06 07:10:01 +08002888 if (host->version > SDHCI_SPEC_300) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01002889 pr_err("%s: Unknown controller version (%d). You may experience problems.\n",
2890 mmc_hostname(mmc), host->version);
Pierre Ossman4a965502006-06-30 02:22:29 -07002891 }
2892
Arindam Nathf2119df2011-05-05 12:18:57 +05302893 caps[0] = (host->quirks & SDHCI_QUIRK_MISSING_CAPS) ? host->caps :
Maxim Levitskyccc92c22010-08-10 18:01:42 -07002894 sdhci_readl(host, SDHCI_CAPABILITIES);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002895
Philip Rakitybd6a8c32012-06-27 21:49:27 -07002896 if (host->version >= SDHCI_SPEC_300)
2897 caps[1] = (host->quirks & SDHCI_QUIRK_MISSING_CAPS) ?
2898 host->caps1 :
2899 sdhci_readl(host, SDHCI_CAPABILITIES_1);
Arindam Nathf2119df2011-05-05 12:18:57 +05302900
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002901 if (host->quirks & SDHCI_QUIRK_FORCE_DMA)
Richard Röjforsa13abc72009-09-22 16:45:30 -07002902 host->flags |= SDHCI_USE_SDMA;
Arindam Nathf2119df2011-05-05 12:18:57 +05302903 else if (!(caps[0] & SDHCI_CAN_DO_SDMA))
Richard Röjforsa13abc72009-09-22 16:45:30 -07002904 DBG("Controller doesn't have SDMA capability\n");
Pierre Ossman67435272006-06-30 02:22:31 -07002905 else
Richard Röjforsa13abc72009-09-22 16:45:30 -07002906 host->flags |= SDHCI_USE_SDMA;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002907
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002908 if ((host->quirks & SDHCI_QUIRK_BROKEN_DMA) &&
Richard Röjforsa13abc72009-09-22 16:45:30 -07002909 (host->flags & SDHCI_USE_SDMA)) {
Rolf Eike Beercee687c2007-11-02 15:22:30 +01002910 DBG("Disabling DMA as it is marked broken\n");
Richard Röjforsa13abc72009-09-22 16:45:30 -07002911 host->flags &= ~SDHCI_USE_SDMA;
Feng Tang7c168e32007-09-30 12:44:18 +02002912 }
2913
Arindam Nathf2119df2011-05-05 12:18:57 +05302914 if ((host->version >= SDHCI_SPEC_200) &&
2915 (caps[0] & SDHCI_CAN_DO_ADMA2))
Richard Röjforsa13abc72009-09-22 16:45:30 -07002916 host->flags |= SDHCI_USE_ADMA;
Pierre Ossman2134a922008-06-28 18:28:51 +02002917
2918 if ((host->quirks & SDHCI_QUIRK_BROKEN_ADMA) &&
2919 (host->flags & SDHCI_USE_ADMA)) {
2920 DBG("Disabling ADMA as it is marked broken\n");
2921 host->flags &= ~SDHCI_USE_ADMA;
2922 }
2923
Adrian Huntere57a5f62014-11-04 12:42:46 +02002924 /*
2925 * It is assumed that a 64-bit capable device has set a 64-bit DMA mask
2926 * and *must* do 64-bit DMA. A driver has the opportunity to change
2927 * that during the first call to ->enable_dma(). Similarly
2928 * SDHCI_QUIRK2_BROKEN_64_BIT_DMA must be left to the drivers to
2929 * implement.
2930 */
2931 if (sdhci_readl(host, SDHCI_CAPABILITIES) & SDHCI_CAN_64BIT)
2932 host->flags |= SDHCI_USE_64_BIT_DMA;
2933
Richard Röjforsa13abc72009-09-22 16:45:30 -07002934 if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002935 if (host->ops->enable_dma) {
2936 if (host->ops->enable_dma(host)) {
Joe Perches66061102014-09-12 14:56:56 -07002937 pr_warn("%s: No suitable DMA available - falling back to PIO\n",
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002938 mmc_hostname(mmc));
Richard Röjforsa13abc72009-09-22 16:45:30 -07002939 host->flags &=
2940 ~(SDHCI_USE_SDMA | SDHCI_USE_ADMA);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002941 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08002942 }
2943 }
2944
Adrian Huntere57a5f62014-11-04 12:42:46 +02002945 /* SDMA does not support 64-bit DMA */
2946 if (host->flags & SDHCI_USE_64_BIT_DMA)
2947 host->flags &= ~SDHCI_USE_SDMA;
2948
Pierre Ossman2134a922008-06-28 18:28:51 +02002949 if (host->flags & SDHCI_USE_ADMA) {
2950 /*
Adrian Hunter76fe3792014-11-04 12:42:42 +02002951 * The DMA descriptor table size is calculated as the maximum
2952 * number of segments times 2, to allow for an alignment
2953 * descriptor for each segment, plus 1 for a nop end descriptor,
2954 * all multipled by the descriptor size.
Pierre Ossman2134a922008-06-28 18:28:51 +02002955 */
Adrian Huntere57a5f62014-11-04 12:42:46 +02002956 if (host->flags & SDHCI_USE_64_BIT_DMA) {
2957 host->adma_table_sz = (SDHCI_MAX_SEGS * 2 + 1) *
2958 SDHCI_ADMA2_64_DESC_SZ;
2959 host->align_buffer_sz = SDHCI_MAX_SEGS *
2960 SDHCI_ADMA2_64_ALIGN;
2961 host->desc_sz = SDHCI_ADMA2_64_DESC_SZ;
2962 host->align_sz = SDHCI_ADMA2_64_ALIGN;
2963 host->align_mask = SDHCI_ADMA2_64_ALIGN - 1;
2964 } else {
2965 host->adma_table_sz = (SDHCI_MAX_SEGS * 2 + 1) *
2966 SDHCI_ADMA2_32_DESC_SZ;
2967 host->align_buffer_sz = SDHCI_MAX_SEGS *
2968 SDHCI_ADMA2_32_ALIGN;
2969 host->desc_sz = SDHCI_ADMA2_32_DESC_SZ;
2970 host->align_sz = SDHCI_ADMA2_32_ALIGN;
2971 host->align_mask = SDHCI_ADMA2_32_ALIGN - 1;
2972 }
Adrian Hunter4efaa6f2014-11-04 12:42:39 +02002973 host->adma_table = dma_alloc_coherent(mmc_dev(mmc),
Adrian Hunter76fe3792014-11-04 12:42:42 +02002974 host->adma_table_sz,
Adrian Hunter4efaa6f2014-11-04 12:42:39 +02002975 &host->adma_addr,
2976 GFP_KERNEL);
Adrian Hunter76fe3792014-11-04 12:42:42 +02002977 host->align_buffer = kmalloc(host->align_buffer_sz, GFP_KERNEL);
Adrian Hunter4efaa6f2014-11-04 12:42:39 +02002978 if (!host->adma_table || !host->align_buffer) {
Peng Fan7ac02032015-06-22 11:41:23 +08002979 if (host->adma_table)
2980 dma_free_coherent(mmc_dev(mmc),
2981 host->adma_table_sz,
2982 host->adma_table,
2983 host->adma_addr);
Pierre Ossman2134a922008-06-28 18:28:51 +02002984 kfree(host->align_buffer);
Joe Perches66061102014-09-12 14:56:56 -07002985 pr_warn("%s: Unable to allocate ADMA buffers - falling back to standard DMA\n",
Pierre Ossman2134a922008-06-28 18:28:51 +02002986 mmc_hostname(mmc));
2987 host->flags &= ~SDHCI_USE_ADMA;
Adrian Hunter4efaa6f2014-11-04 12:42:39 +02002988 host->adma_table = NULL;
Russell Kingd1e49f72014-04-25 12:58:34 +01002989 host->align_buffer = NULL;
Adrian Hunter76fe3792014-11-04 12:42:42 +02002990 } else if (host->adma_addr & host->align_mask) {
Joe Perches66061102014-09-12 14:56:56 -07002991 pr_warn("%s: unable to allocate aligned ADMA descriptor\n",
2992 mmc_hostname(mmc));
Russell Kingd1e49f72014-04-25 12:58:34 +01002993 host->flags &= ~SDHCI_USE_ADMA;
Adrian Hunter76fe3792014-11-04 12:42:42 +02002994 dma_free_coherent(mmc_dev(mmc), host->adma_table_sz,
Adrian Hunter4efaa6f2014-11-04 12:42:39 +02002995 host->adma_table, host->adma_addr);
Russell Kingd1e49f72014-04-25 12:58:34 +01002996 kfree(host->align_buffer);
Adrian Hunter4efaa6f2014-11-04 12:42:39 +02002997 host->adma_table = NULL;
Russell Kingd1e49f72014-04-25 12:58:34 +01002998 host->align_buffer = NULL;
Pierre Ossman2134a922008-06-28 18:28:51 +02002999 }
3000 }
3001
Pierre Ossman76591502008-07-21 00:32:11 +02003002 /*
3003 * If we use DMA, then it's up to the caller to set the DMA
3004 * mask, but PIO does not need the hw shim so we set a new
3005 * mask here in that case.
3006 */
Richard Röjforsa13abc72009-09-22 16:45:30 -07003007 if (!(host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA))) {
Pierre Ossman76591502008-07-21 00:32:11 +02003008 host->dma_mask = DMA_BIT_MASK(64);
Markus Mayer4e743f12014-07-03 13:27:42 -07003009 mmc_dev(mmc)->dma_mask = &host->dma_mask;
Pierre Ossman76591502008-07-21 00:32:11 +02003010 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08003011
Zhangfei Gaoc4687d52010-08-20 14:02:36 -04003012 if (host->version >= SDHCI_SPEC_300)
Arindam Nathf2119df2011-05-05 12:18:57 +05303013 host->max_clk = (caps[0] & SDHCI_CLOCK_V3_BASE_MASK)
Zhangfei Gaoc4687d52010-08-20 14:02:36 -04003014 >> SDHCI_CLOCK_BASE_SHIFT;
3015 else
Arindam Nathf2119df2011-05-05 12:18:57 +05303016 host->max_clk = (caps[0] & SDHCI_CLOCK_BASE_MASK)
Zhangfei Gaoc4687d52010-08-20 14:02:36 -04003017 >> SDHCI_CLOCK_BASE_SHIFT;
3018
Pierre Ossmand129bce2006-03-24 03:18:17 -08003019 host->max_clk *= 1000000;
Anton Vorontsovf27f47e2010-05-26 14:41:53 -07003020 if (host->max_clk == 0 || host->quirks &
3021 SDHCI_QUIRK_CAP_CLOCK_BASE_BROKEN) {
Ben Dooks4240ff02009-03-17 00:13:57 +03003022 if (!host->ops->get_max_clock) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01003023 pr_err("%s: Hardware doesn't specify base clock frequency.\n",
3024 mmc_hostname(mmc));
Ben Dooks4240ff02009-03-17 00:13:57 +03003025 return -ENODEV;
3026 }
3027 host->max_clk = host->ops->get_max_clock(host);
3028 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08003029
3030 /*
Arindam Nathc3ed3872011-05-05 12:19:06 +05303031 * In case of Host Controller v3.00, find out whether clock
3032 * multiplier is supported.
3033 */
3034 host->clk_mul = (caps[1] & SDHCI_CLOCK_MUL_MASK) >>
3035 SDHCI_CLOCK_MUL_SHIFT;
3036
3037 /*
3038 * In case the value in Clock Multiplier is 0, then programmable
3039 * clock mode is not supported, otherwise the actual clock
3040 * multiplier is one more than the value of Clock Multiplier
3041 * in the Capabilities Register.
3042 */
3043 if (host->clk_mul)
3044 host->clk_mul += 1;
3045
3046 /*
Pierre Ossmand129bce2006-03-24 03:18:17 -08003047 * Set host parameters.
3048 */
3049 mmc->ops = &sdhci_ops;
Dong Aisheng59241752015-07-22 20:53:07 +08003050 max_clk = host->max_clk;
3051
Marek Szyprowskice5f0362010-08-10 18:01:56 -07003052 if (host->ops->get_min_clock)
Anton Vorontsova9e58f22009-07-29 15:04:16 -07003053 mmc->f_min = host->ops->get_min_clock(host);
Arindam Nathc3ed3872011-05-05 12:19:06 +05303054 else if (host->version >= SDHCI_SPEC_300) {
3055 if (host->clk_mul) {
3056 mmc->f_min = (host->max_clk * host->clk_mul) / 1024;
Dong Aisheng59241752015-07-22 20:53:07 +08003057 max_clk = host->max_clk * host->clk_mul;
Arindam Nathc3ed3872011-05-05 12:19:06 +05303058 } else
3059 mmc->f_min = host->max_clk / SDHCI_MAX_DIV_SPEC_300;
3060 } else
Zhangfei Gao03975262010-09-20 15:15:18 -04003061 mmc->f_min = host->max_clk / SDHCI_MAX_DIV_SPEC_200;
Philip Rakity15ec4462010-11-19 16:48:39 -05003062
Dong Aisheng59241752015-07-22 20:53:07 +08003063 if (!mmc->f_max || (mmc->f_max && (mmc->f_max > max_clk)))
3064 mmc->f_max = max_clk;
3065
Aisheng Dong28aab052014-08-27 15:26:31 +08003066 if (!(host->quirks & SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK)) {
3067 host->timeout_clk = (caps[0] & SDHCI_TIMEOUT_CLK_MASK) >>
3068 SDHCI_TIMEOUT_CLK_SHIFT;
3069 if (host->timeout_clk == 0) {
3070 if (host->ops->get_timeout_clock) {
3071 host->timeout_clk =
3072 host->ops->get_timeout_clock(host);
3073 } else {
3074 pr_err("%s: Hardware doesn't specify timeout clock frequency.\n",
3075 mmc_hostname(mmc));
3076 return -ENODEV;
3077 }
Andy Shevchenko272308c2011-08-03 18:36:00 +03003078 }
Andy Shevchenko272308c2011-08-03 18:36:00 +03003079
Aisheng Dong28aab052014-08-27 15:26:31 +08003080 if (caps[0] & SDHCI_TIMEOUT_CLK_UNIT)
3081 host->timeout_clk *= 1000;
Andy Shevchenko272308c2011-08-03 18:36:00 +03003082
Aisheng Dong28aab052014-08-27 15:26:31 +08003083 mmc->max_busy_timeout = host->ops->get_max_timeout_count ?
Aisheng Donga6ff5ae2014-08-27 15:26:27 +08003084 host->ops->get_max_timeout_count(host) : 1 << 27;
Aisheng Dong28aab052014-08-27 15:26:31 +08003085 mmc->max_busy_timeout /= host->timeout_clk;
3086 }
Adrian Hunter58d12462011-06-28 17:16:03 +03003087
Adrian Hunterf5fa92e2014-09-24 10:27:32 +03003088 if (override_timeout_clk)
3089 host->timeout_clk = override_timeout_clk;
3090
Andrei Warkentine89d4562011-05-23 15:06:37 -05003091 mmc->caps |= MMC_CAP_SDIO_IRQ | MMC_CAP_ERASE | MMC_CAP_CMD23;
Russell King781e9892014-04-25 12:55:46 +01003092 mmc->caps2 |= MMC_CAP2_SDIO_IRQ_NOTHREAD;
Andrei Warkentine89d4562011-05-23 15:06:37 -05003093
3094 if (host->quirks & SDHCI_QUIRK_MULTIBLOCK_READ_ACMD12)
3095 host->flags |= SDHCI_AUTO_CMD12;
Anton Vorontsov5fe23c72009-06-18 00:14:08 +04003096
Andrei Warkentin8edf63712011-05-23 15:06:39 -05003097 /* Auto-CMD23 stuff only works in ADMA or PIO. */
Andrei Warkentin4f3d3e92011-05-25 10:42:50 -04003098 if ((host->version >= SDHCI_SPEC_300) &&
Andrei Warkentin8edf63712011-05-23 15:06:39 -05003099 ((host->flags & SDHCI_USE_ADMA) ||
Scott Branden3bfa6f02015-02-09 16:06:28 -08003100 !(host->flags & SDHCI_USE_SDMA)) &&
3101 !(host->quirks2 & SDHCI_QUIRK2_ACMD23_BROKEN)) {
Andrei Warkentin8edf63712011-05-23 15:06:39 -05003102 host->flags |= SDHCI_AUTO_CMD23;
3103 DBG("%s: Auto-CMD23 available\n", mmc_hostname(mmc));
3104 } else {
3105 DBG("%s: Auto-CMD23 unavailable\n", mmc_hostname(mmc));
3106 }
3107
Philip Rakity15ec4462010-11-19 16:48:39 -05003108 /*
3109 * A controller may support 8-bit width, but the board itself
3110 * might not have the pins brought out. Boards that support
3111 * 8-bit width must set "mmc->caps |= MMC_CAP_8_BIT_DATA;" in
3112 * their platform code before calling sdhci_add_host(), and we
3113 * won't assume 8-bit width for hosts without that CAP.
3114 */
Anton Vorontsov5fe23c72009-06-18 00:14:08 +04003115 if (!(host->quirks & SDHCI_QUIRK_FORCE_1_BIT_DATA))
Philip Rakity15ec4462010-11-19 16:48:39 -05003116 mmc->caps |= MMC_CAP_4_BIT_DATA;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003117
Jerry Huang63ef5d82012-10-25 13:47:19 +08003118 if (host->quirks2 & SDHCI_QUIRK2_HOST_NO_CMD23)
3119 mmc->caps &= ~MMC_CAP_CMD23;
3120
Arindam Nathf2119df2011-05-05 12:18:57 +05303121 if (caps[0] & SDHCI_CAN_DO_HISPD)
Zhangfei Gaoa29e7e12010-08-16 21:15:32 -04003122 mmc->caps |= MMC_CAP_SD_HIGHSPEED | MMC_CAP_MMC_HIGHSPEED;
Pierre Ossmancd9277c2007-02-18 12:07:47 +01003123
Jaehoon Chung176d1ed2010-09-27 09:42:20 +01003124 if ((host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION) &&
Ivan T. Ivanovc31d22e2015-07-06 15:16:20 +03003125 !(mmc->caps & MMC_CAP_NONREMOVABLE) &&
3126 IS_ERR_VALUE(mmc_gpio_get_cd(host->mmc)))
Anton Vorontsov68d1fb72009-03-17 00:13:52 +03003127 mmc->caps |= MMC_CAP_NEEDS_POLL;
3128
Tim Kryger3a48edc2014-06-13 10:13:56 -07003129 /* If there are external regulators, get them */
3130 if (mmc_regulator_get_supply(mmc) == -EPROBE_DEFER)
3131 return -EPROBE_DEFER;
3132
Philip Rakity6231f3d2012-07-23 15:56:23 -07003133 /* If vqmmc regulator and no 1.8V signalling, then there's no UHS */
Tim Kryger3a48edc2014-06-13 10:13:56 -07003134 if (!IS_ERR(mmc->supply.vqmmc)) {
3135 ret = regulator_enable(mmc->supply.vqmmc);
3136 if (!regulator_is_supported_voltage(mmc->supply.vqmmc, 1700000,
3137 1950000))
Kevin Liu8363c372012-11-17 17:55:51 -05003138 caps[1] &= ~(SDHCI_SUPPORT_SDR104 |
3139 SDHCI_SUPPORT_SDR50 |
3140 SDHCI_SUPPORT_DDR50);
Chris Balla3361ab2013-03-11 17:51:53 -04003141 if (ret) {
3142 pr_warn("%s: Failed to enable vqmmc regulator: %d\n",
3143 mmc_hostname(mmc), ret);
Adrian Hunter4bb74312014-11-06 15:19:04 +02003144 mmc->supply.vqmmc = ERR_PTR(-EINVAL);
Chris Balla3361ab2013-03-11 17:51:53 -04003145 }
Kevin Liu8363c372012-11-17 17:55:51 -05003146 }
Philip Rakity6231f3d2012-07-23 15:56:23 -07003147
Daniel Drake6a661802012-11-25 13:01:19 -05003148 if (host->quirks2 & SDHCI_QUIRK2_NO_1_8_V)
3149 caps[1] &= ~(SDHCI_SUPPORT_SDR104 | SDHCI_SUPPORT_SDR50 |
3150 SDHCI_SUPPORT_DDR50);
3151
Al Cooper4188bba2012-03-16 15:54:17 -04003152 /* Any UHS-I mode in caps implies SDR12 and SDR25 support. */
3153 if (caps[1] & (SDHCI_SUPPORT_SDR104 | SDHCI_SUPPORT_SDR50 |
3154 SDHCI_SUPPORT_DDR50))
Arindam Nathf2119df2011-05-05 12:18:57 +05303155 mmc->caps |= MMC_CAP_UHS_SDR12 | MMC_CAP_UHS_SDR25;
3156
3157 /* SDR104 supports also implies SDR50 support */
Giuseppe CAVALLARO156e14b2013-06-12 08:16:38 +02003158 if (caps[1] & SDHCI_SUPPORT_SDR104) {
Arindam Nathf2119df2011-05-05 12:18:57 +05303159 mmc->caps |= MMC_CAP_UHS_SDR104 | MMC_CAP_UHS_SDR50;
Giuseppe CAVALLARO156e14b2013-06-12 08:16:38 +02003160 /* SD3.0: SDR104 is supported so (for eMMC) the caps2
3161 * field can be promoted to support HS200.
3162 */
Adrian Hunter549c0b12014-11-06 15:19:05 +02003163 if (!(host->quirks2 & SDHCI_QUIRK2_BROKEN_HS200))
David Cohen13868bf2013-10-29 10:58:26 -07003164 mmc->caps2 |= MMC_CAP2_HS200;
Giuseppe CAVALLARO156e14b2013-06-12 08:16:38 +02003165 } else if (caps[1] & SDHCI_SUPPORT_SDR50)
Arindam Nathf2119df2011-05-05 12:18:57 +05303166 mmc->caps |= MMC_CAP_UHS_SDR50;
3167
Adrian Huntere9fb05d2014-11-06 15:19:06 +02003168 if (host->quirks2 & SDHCI_QUIRK2_CAPS_BIT63_FOR_HS400 &&
3169 (caps[1] & SDHCI_SUPPORT_HS400))
3170 mmc->caps2 |= MMC_CAP2_HS400;
3171
Adrian Hunter549c0b12014-11-06 15:19:05 +02003172 if ((mmc->caps2 & MMC_CAP2_HSX00_1_2V) &&
3173 (IS_ERR(mmc->supply.vqmmc) ||
3174 !regulator_is_supported_voltage(mmc->supply.vqmmc, 1100000,
3175 1300000)))
3176 mmc->caps2 &= ~MMC_CAP2_HSX00_1_2V;
3177
Micky Ching9107ebb2014-02-21 18:40:35 +08003178 if ((caps[1] & SDHCI_SUPPORT_DDR50) &&
3179 !(host->quirks2 & SDHCI_QUIRK2_BROKEN_DDR50))
Arindam Nathf2119df2011-05-05 12:18:57 +05303180 mmc->caps |= MMC_CAP_UHS_DDR50;
3181
Girish K S069c9f12012-01-06 09:56:39 +05303182 /* Does the host need tuning for SDR50? */
Arindam Nathb513ea22011-05-05 12:19:04 +05303183 if (caps[1] & SDHCI_USE_SDR50_TUNING)
3184 host->flags |= SDHCI_SDR50_NEEDS_TUNING;
3185
Giuseppe CAVALLARO156e14b2013-06-12 08:16:38 +02003186 /* Does the host need tuning for SDR104 / HS200? */
Girish K S069c9f12012-01-06 09:56:39 +05303187 if (mmc->caps2 & MMC_CAP2_HS200)
Giuseppe CAVALLARO156e14b2013-06-12 08:16:38 +02003188 host->flags |= SDHCI_SDR104_NEEDS_TUNING;
Girish K S069c9f12012-01-06 09:56:39 +05303189
Arindam Nathd6d50a12011-05-05 12:18:59 +05303190 /* Driver Type(s) (A, C, D) supported by the host */
3191 if (caps[1] & SDHCI_DRIVER_TYPE_A)
3192 mmc->caps |= MMC_CAP_DRIVER_TYPE_A;
3193 if (caps[1] & SDHCI_DRIVER_TYPE_C)
3194 mmc->caps |= MMC_CAP_DRIVER_TYPE_C;
3195 if (caps[1] & SDHCI_DRIVER_TYPE_D)
3196 mmc->caps |= MMC_CAP_DRIVER_TYPE_D;
3197
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05303198 /* Initial value for re-tuning timer count */
3199 host->tuning_count = (caps[1] & SDHCI_RETUNING_TIMER_COUNT_MASK) >>
3200 SDHCI_RETUNING_TIMER_COUNT_SHIFT;
3201
3202 /*
3203 * In case Re-tuning Timer is not disabled, the actual value of
3204 * re-tuning timer will be 2 ^ (n - 1).
3205 */
3206 if (host->tuning_count)
3207 host->tuning_count = 1 << (host->tuning_count - 1);
3208
3209 /* Re-tuning mode supported by the Host Controller */
3210 host->tuning_mode = (caps[1] & SDHCI_RETUNING_MODE_MASK) >>
3211 SDHCI_RETUNING_MODE_SHIFT;
3212
Takashi Iwai8f230f42010-12-08 10:04:30 +01003213 ocr_avail = 0;
Philip Rakitybad37e12012-05-27 18:36:44 -07003214
Arindam Nathf2119df2011-05-05 12:18:57 +05303215 /*
3216 * According to SD Host Controller spec v3.00, if the Host System
3217 * can afford more than 150mA, Host Driver should set XPC to 1. Also
3218 * the value is meaningful only if Voltage Support in the Capabilities
3219 * register is set. The actual current value is 4 times the register
3220 * value.
3221 */
3222 max_current_caps = sdhci_readl(host, SDHCI_MAX_CURRENT);
Tim Kryger3a48edc2014-06-13 10:13:56 -07003223 if (!max_current_caps && !IS_ERR(mmc->supply.vmmc)) {
Chuanxiao.Dongae906032014-08-01 14:00:13 +08003224 int curr = regulator_get_current_limit(mmc->supply.vmmc);
Philip Rakitybad37e12012-05-27 18:36:44 -07003225 if (curr > 0) {
3226
3227 /* convert to SDHCI_MAX_CURRENT format */
3228 curr = curr/1000; /* convert to mA */
3229 curr = curr/SDHCI_MAX_CURRENT_MULTIPLIER;
3230
3231 curr = min_t(u32, curr, SDHCI_MAX_CURRENT_LIMIT);
3232 max_current_caps =
3233 (curr << SDHCI_MAX_CURRENT_330_SHIFT) |
3234 (curr << SDHCI_MAX_CURRENT_300_SHIFT) |
3235 (curr << SDHCI_MAX_CURRENT_180_SHIFT);
3236 }
3237 }
Arindam Nathf2119df2011-05-05 12:18:57 +05303238
3239 if (caps[0] & SDHCI_CAN_VDD_330) {
Takashi Iwai8f230f42010-12-08 10:04:30 +01003240 ocr_avail |= MMC_VDD_32_33 | MMC_VDD_33_34;
Arindam Nathf2119df2011-05-05 12:18:57 +05303241
Aaron Lu55c46652012-07-04 13:31:48 +08003242 mmc->max_current_330 = ((max_current_caps &
Arindam Nathf2119df2011-05-05 12:18:57 +05303243 SDHCI_MAX_CURRENT_330_MASK) >>
3244 SDHCI_MAX_CURRENT_330_SHIFT) *
3245 SDHCI_MAX_CURRENT_MULTIPLIER;
Arindam Nathf2119df2011-05-05 12:18:57 +05303246 }
3247 if (caps[0] & SDHCI_CAN_VDD_300) {
Takashi Iwai8f230f42010-12-08 10:04:30 +01003248 ocr_avail |= MMC_VDD_29_30 | MMC_VDD_30_31;
Arindam Nathf2119df2011-05-05 12:18:57 +05303249
Aaron Lu55c46652012-07-04 13:31:48 +08003250 mmc->max_current_300 = ((max_current_caps &
Arindam Nathf2119df2011-05-05 12:18:57 +05303251 SDHCI_MAX_CURRENT_300_MASK) >>
3252 SDHCI_MAX_CURRENT_300_SHIFT) *
3253 SDHCI_MAX_CURRENT_MULTIPLIER;
Arindam Nathf2119df2011-05-05 12:18:57 +05303254 }
3255 if (caps[0] & SDHCI_CAN_VDD_180) {
Takashi Iwai8f230f42010-12-08 10:04:30 +01003256 ocr_avail |= MMC_VDD_165_195;
3257
Aaron Lu55c46652012-07-04 13:31:48 +08003258 mmc->max_current_180 = ((max_current_caps &
Arindam Nathf2119df2011-05-05 12:18:57 +05303259 SDHCI_MAX_CURRENT_180_MASK) >>
3260 SDHCI_MAX_CURRENT_180_SHIFT) *
3261 SDHCI_MAX_CURRENT_MULTIPLIER;
Arindam Nathf2119df2011-05-05 12:18:57 +05303262 }
3263
Ulf Hansson5fd26c72015-06-05 11:40:08 +02003264 /* If OCR set by host, use it instead. */
3265 if (host->ocr_mask)
3266 ocr_avail = host->ocr_mask;
3267
3268 /* If OCR set by external regulators, give it highest prio. */
Tim Kryger3a48edc2014-06-13 10:13:56 -07003269 if (mmc->ocr_avail)
Tim Kryger52221612014-06-25 00:25:34 -07003270 ocr_avail = mmc->ocr_avail;
Tim Kryger3a48edc2014-06-13 10:13:56 -07003271
Takashi Iwai8f230f42010-12-08 10:04:30 +01003272 mmc->ocr_avail = ocr_avail;
3273 mmc->ocr_avail_sdio = ocr_avail;
3274 if (host->ocr_avail_sdio)
3275 mmc->ocr_avail_sdio &= host->ocr_avail_sdio;
3276 mmc->ocr_avail_sd = ocr_avail;
3277 if (host->ocr_avail_sd)
3278 mmc->ocr_avail_sd &= host->ocr_avail_sd;
3279 else /* normal SD controllers don't support 1.8V */
3280 mmc->ocr_avail_sd &= ~MMC_VDD_165_195;
3281 mmc->ocr_avail_mmc = ocr_avail;
3282 if (host->ocr_avail_mmc)
3283 mmc->ocr_avail_mmc &= host->ocr_avail_mmc;
Pierre Ossman146ad662006-06-30 02:22:23 -07003284
3285 if (mmc->ocr_avail == 0) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01003286 pr_err("%s: Hardware doesn't report any support voltages.\n",
3287 mmc_hostname(mmc));
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003288 return -ENODEV;
Pierre Ossman146ad662006-06-30 02:22:23 -07003289 }
3290
Pierre Ossmand129bce2006-03-24 03:18:17 -08003291 spin_lock_init(&host->lock);
3292
3293 /*
Pierre Ossman2134a922008-06-28 18:28:51 +02003294 * Maximum number of segments. Depends on if the hardware
3295 * can do scatter/gather or not.
Pierre Ossmand129bce2006-03-24 03:18:17 -08003296 */
Pierre Ossman2134a922008-06-28 18:28:51 +02003297 if (host->flags & SDHCI_USE_ADMA)
Adrian Hunter4fb213f2014-11-04 12:42:43 +02003298 mmc->max_segs = SDHCI_MAX_SEGS;
Richard Röjforsa13abc72009-09-22 16:45:30 -07003299 else if (host->flags & SDHCI_USE_SDMA)
Martin K. Petersena36274e2010-09-10 01:33:59 -04003300 mmc->max_segs = 1;
Pierre Ossman2134a922008-06-28 18:28:51 +02003301 else /* PIO */
Adrian Hunter4fb213f2014-11-04 12:42:43 +02003302 mmc->max_segs = SDHCI_MAX_SEGS;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003303
3304 /*
Adrian Hunterac005312014-12-05 19:25:28 +02003305 * Maximum number of sectors in one transfer. Limited by SDMA boundary
3306 * size (512KiB). Note some tuning modes impose a 4MiB limit, but this
3307 * is less anyway.
Pierre Ossmand129bce2006-03-24 03:18:17 -08003308 */
Pierre Ossman55db8902006-11-21 17:55:45 +01003309 mmc->max_req_size = 524288;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003310
3311 /*
3312 * Maximum segment size. Could be one segment with the maximum number
Pierre Ossman2134a922008-06-28 18:28:51 +02003313 * of bytes. When doing hardware scatter/gather, each entry cannot
3314 * be larger than 64 KiB though.
Pierre Ossmand129bce2006-03-24 03:18:17 -08003315 */
Olof Johansson30652aa2011-01-01 18:37:32 -06003316 if (host->flags & SDHCI_USE_ADMA) {
3317 if (host->quirks & SDHCI_QUIRK_BROKEN_ADMA_ZEROLEN_DESC)
3318 mmc->max_seg_size = 65535;
3319 else
3320 mmc->max_seg_size = 65536;
3321 } else {
Pierre Ossman2134a922008-06-28 18:28:51 +02003322 mmc->max_seg_size = mmc->max_req_size;
Olof Johansson30652aa2011-01-01 18:37:32 -06003323 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08003324
3325 /*
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +01003326 * Maximum block size. This varies from controller to controller and
3327 * is specified in the capabilities register.
3328 */
Anton Vorontsov0633f652009-03-17 00:14:03 +03003329 if (host->quirks & SDHCI_QUIRK_FORCE_BLK_SZ_2048) {
3330 mmc->max_blk_size = 2;
3331 } else {
Arindam Nathf2119df2011-05-05 12:18:57 +05303332 mmc->max_blk_size = (caps[0] & SDHCI_MAX_BLOCK_MASK) >>
Anton Vorontsov0633f652009-03-17 00:14:03 +03003333 SDHCI_MAX_BLOCK_SHIFT;
3334 if (mmc->max_blk_size >= 3) {
Joe Perches66061102014-09-12 14:56:56 -07003335 pr_warn("%s: Invalid maximum block size, assuming 512 bytes\n",
3336 mmc_hostname(mmc));
Anton Vorontsov0633f652009-03-17 00:14:03 +03003337 mmc->max_blk_size = 0;
3338 }
3339 }
3340
3341 mmc->max_blk_size = 512 << mmc->max_blk_size;
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +01003342
3343 /*
Pierre Ossman55db8902006-11-21 17:55:45 +01003344 * Maximum block count.
3345 */
Ben Dooks1388eef2009-06-14 12:40:53 +01003346 mmc->max_blk_count = (host->quirks & SDHCI_QUIRK_NO_MULTIBLOCK) ? 1 : 65535;
Pierre Ossman55db8902006-11-21 17:55:45 +01003347
3348 /*
Pierre Ossmand129bce2006-03-24 03:18:17 -08003349 * Init tasklets.
3350 */
Pierre Ossmand129bce2006-03-24 03:18:17 -08003351 tasklet_init(&host->finish_tasklet,
3352 sdhci_tasklet_finish, (unsigned long)host);
3353
Al Viroe4cad1b2006-10-10 22:47:07 +01003354 setup_timer(&host->timer, sdhci_timeout_timer, (unsigned long)host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003355
Adrian Hunter250fb7b42014-12-05 19:41:10 +02003356 init_waitqueue_head(&host->buf_ready_int);
Arindam Nathb513ea22011-05-05 12:19:04 +05303357
Shawn Guo2af502c2013-07-05 14:38:55 +08003358 sdhci_init(host, 0);
3359
Russell King781e9892014-04-25 12:55:46 +01003360 ret = request_threaded_irq(host->irq, sdhci_irq, sdhci_thread_irq,
3361 IRQF_SHARED, mmc_hostname(mmc), host);
Mark Brown0fc81ee2012-07-02 14:26:15 +01003362 if (ret) {
3363 pr_err("%s: Failed to request IRQ %d: %d\n",
3364 mmc_hostname(mmc), host->irq, ret);
Pierre Ossman8ef1a142006-06-30 02:22:21 -07003365 goto untasklet;
Mark Brown0fc81ee2012-07-02 14:26:15 +01003366 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08003367
Pierre Ossmand129bce2006-03-24 03:18:17 -08003368#ifdef CONFIG_MMC_DEBUG
3369 sdhci_dumpregs(host);
3370#endif
3371
Pierre Ossmanf9134312008-12-21 17:01:48 +01003372#ifdef SDHCI_USE_LEDS_CLASS
Helmut Schaa5dbace02009-02-14 16:22:39 +01003373 snprintf(host->led_name, sizeof(host->led_name),
3374 "%s::", mmc_hostname(mmc));
3375 host->led.name = host->led_name;
Pierre Ossman2f730fe2008-03-17 10:29:38 +01003376 host->led.brightness = LED_OFF;
3377 host->led.default_trigger = mmc_hostname(mmc);
3378 host->led.brightness_set = sdhci_led_control;
3379
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003380 ret = led_classdev_register(mmc_dev(mmc), &host->led);
Mark Brown0fc81ee2012-07-02 14:26:15 +01003381 if (ret) {
3382 pr_err("%s: Failed to register LED device: %d\n",
3383 mmc_hostname(mmc), ret);
Pierre Ossman2f730fe2008-03-17 10:29:38 +01003384 goto reset;
Mark Brown0fc81ee2012-07-02 14:26:15 +01003385 }
Pierre Ossman2f730fe2008-03-17 10:29:38 +01003386#endif
3387
Pierre Ossman5f25a662006-10-04 02:15:39 -07003388 mmiowb();
3389
Pierre Ossmand129bce2006-03-24 03:18:17 -08003390 mmc_add_host(mmc);
3391
Girish K Sa3c76eb2011-10-11 11:44:09 +05303392 pr_info("%s: SDHCI controller on %s [%s] using %s\n",
Kay Sieversd1b26862008-11-08 21:37:46 +01003393 mmc_hostname(mmc), host->hw_name, dev_name(mmc_dev(mmc)),
Adrian Huntere57a5f62014-11-04 12:42:46 +02003394 (host->flags & SDHCI_USE_ADMA) ?
3395 (host->flags & SDHCI_USE_64_BIT_DMA) ? "ADMA 64-bit" : "ADMA" :
Richard Röjforsa13abc72009-09-22 16:45:30 -07003396 (host->flags & SDHCI_USE_SDMA) ? "DMA" : "PIO");
Pierre Ossmand129bce2006-03-24 03:18:17 -08003397
Anton Vorontsov7260cf52009-03-17 00:13:48 +03003398 sdhci_enable_card_detection(host);
3399
Pierre Ossmand129bce2006-03-24 03:18:17 -08003400 return 0;
3401
Pierre Ossmanf9134312008-12-21 17:01:48 +01003402#ifdef SDHCI_USE_LEDS_CLASS
Pierre Ossman2f730fe2008-03-17 10:29:38 +01003403reset:
Russell King03231f92014-04-25 12:57:12 +01003404 sdhci_do_reset(host, SDHCI_RESET_ALL);
Russell Kingb537f942014-04-25 12:56:01 +01003405 sdhci_writel(host, 0, SDHCI_INT_ENABLE);
3406 sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE);
Pierre Ossman2f730fe2008-03-17 10:29:38 +01003407 free_irq(host->irq, host);
3408#endif
Pierre Ossman8ef1a142006-06-30 02:22:21 -07003409untasklet:
Pierre Ossmand129bce2006-03-24 03:18:17 -08003410 tasklet_kill(&host->finish_tasklet);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003411
3412 return ret;
3413}
3414
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003415EXPORT_SYMBOL_GPL(sdhci_add_host);
3416
Pierre Ossman1e728592008-04-16 19:13:13 +02003417void sdhci_remove_host(struct sdhci_host *host, int dead)
Pierre Ossmand129bce2006-03-24 03:18:17 -08003418{
Tim Kryger3a48edc2014-06-13 10:13:56 -07003419 struct mmc_host *mmc = host->mmc;
Pierre Ossman1e728592008-04-16 19:13:13 +02003420 unsigned long flags;
3421
3422 if (dead) {
3423 spin_lock_irqsave(&host->lock, flags);
3424
3425 host->flags |= SDHCI_DEVICE_DEAD;
3426
3427 if (host->mrq) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05303428 pr_err("%s: Controller removed during "
Markus Mayer4e743f12014-07-03 13:27:42 -07003429 " transfer!\n", mmc_hostname(mmc));
Pierre Ossman1e728592008-04-16 19:13:13 +02003430
3431 host->mrq->cmd->error = -ENOMEDIUM;
3432 tasklet_schedule(&host->finish_tasklet);
3433 }
3434
3435 spin_unlock_irqrestore(&host->lock, flags);
3436 }
3437
Anton Vorontsov7260cf52009-03-17 00:13:48 +03003438 sdhci_disable_card_detection(host);
3439
Markus Mayer4e743f12014-07-03 13:27:42 -07003440 mmc_remove_host(mmc);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003441
Pierre Ossmanf9134312008-12-21 17:01:48 +01003442#ifdef SDHCI_USE_LEDS_CLASS
Pierre Ossman2f730fe2008-03-17 10:29:38 +01003443 led_classdev_unregister(&host->led);
3444#endif
3445
Pierre Ossman1e728592008-04-16 19:13:13 +02003446 if (!dead)
Russell King03231f92014-04-25 12:57:12 +01003447 sdhci_do_reset(host, SDHCI_RESET_ALL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003448
Russell Kingb537f942014-04-25 12:56:01 +01003449 sdhci_writel(host, 0, SDHCI_INT_ENABLE);
3450 sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003451 free_irq(host->irq, host);
3452
3453 del_timer_sync(&host->timer);
3454
Pierre Ossmand129bce2006-03-24 03:18:17 -08003455 tasklet_kill(&host->finish_tasklet);
Pierre Ossman2134a922008-06-28 18:28:51 +02003456
Tim Kryger3a48edc2014-06-13 10:13:56 -07003457 if (!IS_ERR(mmc->supply.vqmmc))
3458 regulator_disable(mmc->supply.vqmmc);
Philip Rakity6231f3d2012-07-23 15:56:23 -07003459
Adrian Hunter4efaa6f2014-11-04 12:42:39 +02003460 if (host->adma_table)
Adrian Hunter76fe3792014-11-04 12:42:42 +02003461 dma_free_coherent(mmc_dev(mmc), host->adma_table_sz,
Adrian Hunter4efaa6f2014-11-04 12:42:39 +02003462 host->adma_table, host->adma_addr);
Pierre Ossman2134a922008-06-28 18:28:51 +02003463 kfree(host->align_buffer);
3464
Adrian Hunter4efaa6f2014-11-04 12:42:39 +02003465 host->adma_table = NULL;
Pierre Ossman2134a922008-06-28 18:28:51 +02003466 host->align_buffer = NULL;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003467}
3468
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003469EXPORT_SYMBOL_GPL(sdhci_remove_host);
3470
3471void sdhci_free_host(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -08003472{
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003473 mmc_free_host(host->mmc);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003474}
3475
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003476EXPORT_SYMBOL_GPL(sdhci_free_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003477
3478/*****************************************************************************\
3479 * *
3480 * Driver init/exit *
3481 * *
3482\*****************************************************************************/
3483
3484static int __init sdhci_drv_init(void)
3485{
Girish K Sa3c76eb2011-10-11 11:44:09 +05303486 pr_info(DRIVER_NAME
Pierre Ossman52fbf9c2007-02-09 08:23:41 +01003487 ": Secure Digital Host Controller Interface driver\n");
Girish K Sa3c76eb2011-10-11 11:44:09 +05303488 pr_info(DRIVER_NAME ": Copyright(c) Pierre Ossman\n");
Pierre Ossmand129bce2006-03-24 03:18:17 -08003489
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003490 return 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003491}
3492
3493static void __exit sdhci_drv_exit(void)
3494{
Pierre Ossmand129bce2006-03-24 03:18:17 -08003495}
3496
3497module_init(sdhci_drv_init);
3498module_exit(sdhci_drv_exit);
3499
Pierre Ossmandf673b22006-06-30 02:22:31 -07003500module_param(debug_quirks, uint, 0444);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003501module_param(debug_quirks2, uint, 0444);
Pierre Ossman67435272006-06-30 02:22:31 -07003502
Pierre Ossman32710e82009-04-08 20:14:54 +02003503MODULE_AUTHOR("Pierre Ossman <pierre@ossman.eu>");
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003504MODULE_DESCRIPTION("Secure Digital Host Controller Interface core driver");
Pierre Ossmand129bce2006-03-24 03:18:17 -08003505MODULE_LICENSE("GPL");
Pierre Ossman67435272006-06-30 02:22:31 -07003506
Pierre Ossmandf673b22006-06-30 02:22:31 -07003507MODULE_PARM_DESC(debug_quirks, "Force certain quirks.");
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003508MODULE_PARM_DESC(debug_quirks2, "Force certain other quirks.");