blob: 2bd6bc1aca28e63ab24335df75882ef28795ea74 [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);
Scott Branden04e079cf2015-03-10 11:35:10 -070056static int sdhci_do_get_cd(struct sdhci_host *host);
Pierre Ossmand129bce2006-03-24 03:18:17 -080057
Rafael J. Wysocki162d6f92014-12-05 03:05:33 +010058#ifdef CONFIG_PM
Adrian Hunter66fd8ad2011-10-03 15:33:34 +030059static int sdhci_runtime_pm_get(struct sdhci_host *host);
60static int sdhci_runtime_pm_put(struct sdhci_host *host);
Adrian Hunterf0710a52013-05-06 12:17:32 +030061static void sdhci_runtime_pm_bus_on(struct sdhci_host *host);
62static void sdhci_runtime_pm_bus_off(struct sdhci_host *host);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +030063#else
64static inline int sdhci_runtime_pm_get(struct sdhci_host *host)
65{
66 return 0;
67}
68static inline int sdhci_runtime_pm_put(struct sdhci_host *host)
69{
70 return 0;
71}
Adrian Hunterf0710a52013-05-06 12:17:32 +030072static void sdhci_runtime_pm_bus_on(struct sdhci_host *host)
73{
74}
75static void sdhci_runtime_pm_bus_off(struct sdhci_host *host)
76{
77}
Adrian Hunter66fd8ad2011-10-03 15:33:34 +030078#endif
79
Pierre Ossmand129bce2006-03-24 03:18:17 -080080static void sdhci_dumpregs(struct sdhci_host *host)
81{
Girish K Sa3c76eb2011-10-11 11:44:09 +053082 pr_debug(DRIVER_NAME ": =========== REGISTER DUMP (%s)===========\n",
Philip Rakity412ab652010-09-22 15:25:13 -070083 mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -080084
Girish K Sa3c76eb2011-10-11 11:44:09 +053085 pr_debug(DRIVER_NAME ": Sys addr: 0x%08x | Version: 0x%08x\n",
Anton Vorontsov4e4141a2009-03-17 00:13:46 +030086 sdhci_readl(host, SDHCI_DMA_ADDRESS),
87 sdhci_readw(host, SDHCI_HOST_VERSION));
Girish K Sa3c76eb2011-10-11 11:44:09 +053088 pr_debug(DRIVER_NAME ": Blk size: 0x%08x | Blk cnt: 0x%08x\n",
Anton Vorontsov4e4141a2009-03-17 00:13:46 +030089 sdhci_readw(host, SDHCI_BLOCK_SIZE),
90 sdhci_readw(host, SDHCI_BLOCK_COUNT));
Girish K Sa3c76eb2011-10-11 11:44:09 +053091 pr_debug(DRIVER_NAME ": Argument: 0x%08x | Trn mode: 0x%08x\n",
Anton Vorontsov4e4141a2009-03-17 00:13:46 +030092 sdhci_readl(host, SDHCI_ARGUMENT),
93 sdhci_readw(host, SDHCI_TRANSFER_MODE));
Girish K Sa3c76eb2011-10-11 11:44:09 +053094 pr_debug(DRIVER_NAME ": Present: 0x%08x | Host ctl: 0x%08x\n",
Anton Vorontsov4e4141a2009-03-17 00:13:46 +030095 sdhci_readl(host, SDHCI_PRESENT_STATE),
96 sdhci_readb(host, SDHCI_HOST_CONTROL));
Girish K Sa3c76eb2011-10-11 11:44:09 +053097 pr_debug(DRIVER_NAME ": Power: 0x%08x | Blk gap: 0x%08x\n",
Anton Vorontsov4e4141a2009-03-17 00:13:46 +030098 sdhci_readb(host, SDHCI_POWER_CONTROL),
99 sdhci_readb(host, SDHCI_BLOCK_GAP_CONTROL));
Girish K Sa3c76eb2011-10-11 11:44:09 +0530100 pr_debug(DRIVER_NAME ": Wake-up: 0x%08x | Clock: 0x%08x\n",
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300101 sdhci_readb(host, SDHCI_WAKE_UP_CONTROL),
102 sdhci_readw(host, SDHCI_CLOCK_CONTROL));
Girish K Sa3c76eb2011-10-11 11:44:09 +0530103 pr_debug(DRIVER_NAME ": Timeout: 0x%08x | Int stat: 0x%08x\n",
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300104 sdhci_readb(host, SDHCI_TIMEOUT_CONTROL),
105 sdhci_readl(host, SDHCI_INT_STATUS));
Girish K Sa3c76eb2011-10-11 11:44:09 +0530106 pr_debug(DRIVER_NAME ": Int enab: 0x%08x | Sig enab: 0x%08x\n",
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300107 sdhci_readl(host, SDHCI_INT_ENABLE),
108 sdhci_readl(host, SDHCI_SIGNAL_ENABLE));
Girish K Sa3c76eb2011-10-11 11:44:09 +0530109 pr_debug(DRIVER_NAME ": AC12 err: 0x%08x | Slot int: 0x%08x\n",
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300110 sdhci_readw(host, SDHCI_ACMD12_ERR),
111 sdhci_readw(host, SDHCI_SLOT_INT_STATUS));
Girish K Sa3c76eb2011-10-11 11:44:09 +0530112 pr_debug(DRIVER_NAME ": Caps: 0x%08x | Caps_1: 0x%08x\n",
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300113 sdhci_readl(host, SDHCI_CAPABILITIES),
Philip Rakitye8120ad2010-11-30 00:55:23 -0500114 sdhci_readl(host, SDHCI_CAPABILITIES_1));
Girish K Sa3c76eb2011-10-11 11:44:09 +0530115 pr_debug(DRIVER_NAME ": Cmd: 0x%08x | Max curr: 0x%08x\n",
Philip Rakitye8120ad2010-11-30 00:55:23 -0500116 sdhci_readw(host, SDHCI_COMMAND),
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300117 sdhci_readl(host, SDHCI_MAX_CURRENT));
Girish K Sa3c76eb2011-10-11 11:44:09 +0530118 pr_debug(DRIVER_NAME ": Host ctl2: 0x%08x\n",
Arindam Nathf2119df2011-05-05 12:18:57 +0530119 sdhci_readw(host, SDHCI_HOST_CONTROL2));
Pierre Ossmand129bce2006-03-24 03:18:17 -0800120
Adrian Huntere57a5f62014-11-04 12:42:46 +0200121 if (host->flags & SDHCI_USE_ADMA) {
122 if (host->flags & SDHCI_USE_64_BIT_DMA)
123 pr_debug(DRIVER_NAME ": ADMA Err: 0x%08x | ADMA Ptr: 0x%08x%08x\n",
124 readl(host->ioaddr + SDHCI_ADMA_ERROR),
125 readl(host->ioaddr + SDHCI_ADMA_ADDRESS_HI),
126 readl(host->ioaddr + SDHCI_ADMA_ADDRESS));
127 else
128 pr_debug(DRIVER_NAME ": ADMA Err: 0x%08x | ADMA Ptr: 0x%08x\n",
129 readl(host->ioaddr + SDHCI_ADMA_ERROR),
130 readl(host->ioaddr + SDHCI_ADMA_ADDRESS));
131 }
Ben Dooksbe3f4ae2009-06-08 23:33:52 +0100132
Girish K Sa3c76eb2011-10-11 11:44:09 +0530133 pr_debug(DRIVER_NAME ": ===========================================\n");
Pierre Ossmand129bce2006-03-24 03:18:17 -0800134}
135
136/*****************************************************************************\
137 * *
138 * Low level functions *
139 * *
140\*****************************************************************************/
141
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300142static void sdhci_set_card_detection(struct sdhci_host *host, bool enable)
143{
Russell King5b4f1f62014-04-25 12:57:02 +0100144 u32 present;
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300145
Adrian Hunterc79396c2011-12-27 15:48:42 +0200146 if ((host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION) ||
Daniel Drake87b87a32012-04-10 00:14:20 +0100147 (host->mmc->caps & MMC_CAP_NONREMOVABLE))
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300148 return;
149
Russell King5b4f1f62014-04-25 12:57:02 +0100150 if (enable) {
151 present = sdhci_readl(host, SDHCI_PRESENT_STATE) &
152 SDHCI_CARD_PRESENT;
Shawn Guod25928d2011-06-21 22:41:48 +0800153
Russell King5b4f1f62014-04-25 12:57:02 +0100154 host->ier |= present ? SDHCI_INT_CARD_REMOVE :
155 SDHCI_INT_CARD_INSERT;
156 } else {
157 host->ier &= ~(SDHCI_INT_CARD_REMOVE | SDHCI_INT_CARD_INSERT);
158 }
Russell Kingb537f942014-04-25 12:56:01 +0100159
160 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
161 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300162}
163
164static void sdhci_enable_card_detection(struct sdhci_host *host)
165{
166 sdhci_set_card_detection(host, true);
167}
168
169static void sdhci_disable_card_detection(struct sdhci_host *host)
170{
171 sdhci_set_card_detection(host, false);
172}
173
Russell King03231f92014-04-25 12:57:12 +0100174void sdhci_reset(struct sdhci_host *host, u8 mask)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800175{
Pierre Ossmane16514d82006-06-30 02:22:24 -0700176 unsigned long timeout;
Philip Rakity393c1a32011-01-21 11:26:40 -0800177
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300178 sdhci_writeb(host, mask, SDHCI_SOFTWARE_RESET);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800179
Adrian Hunterf0710a52013-05-06 12:17:32 +0300180 if (mask & SDHCI_RESET_ALL) {
Pierre Ossmand129bce2006-03-24 03:18:17 -0800181 host->clock = 0;
Adrian Hunterf0710a52013-05-06 12:17:32 +0300182 /* Reset-all turns off SD Bus Power */
183 if (host->quirks2 & SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON)
184 sdhci_runtime_pm_bus_off(host);
185 }
Pierre Ossmand129bce2006-03-24 03:18:17 -0800186
Pierre Ossmane16514d82006-06-30 02:22:24 -0700187 /* Wait max 100 ms */
188 timeout = 100;
189
190 /* hw clears the bit when it's done */
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300191 while (sdhci_readb(host, SDHCI_SOFTWARE_RESET) & mask) {
Pierre Ossmane16514d82006-06-30 02:22:24 -0700192 if (timeout == 0) {
Girish K Sa3c76eb2011-10-11 11:44:09 +0530193 pr_err("%s: Reset 0x%x never completed.\n",
Pierre Ossmane16514d82006-06-30 02:22:24 -0700194 mmc_hostname(host->mmc), (int)mask);
195 sdhci_dumpregs(host);
196 return;
197 }
198 timeout--;
199 mdelay(1);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800200 }
Russell King03231f92014-04-25 12:57:12 +0100201}
202EXPORT_SYMBOL_GPL(sdhci_reset);
Anton Vorontsov063a9db2009-03-17 00:14:02 +0300203
Russell King03231f92014-04-25 12:57:12 +0100204static void sdhci_do_reset(struct sdhci_host *host, u8 mask)
205{
206 if (host->quirks & SDHCI_QUIRK_NO_CARD_NO_RESET) {
Ivan T. Ivanov135b0a22015-07-06 15:16:21 +0300207 if (!sdhci_do_get_cd(host))
Russell King03231f92014-04-25 12:57:12 +0100208 return;
209 }
210
211 host->ops->reset(host, mask);
Philip Rakity393c1a32011-01-21 11:26:40 -0800212
Russell Kingda91a8f2014-04-25 13:00:12 +0100213 if (mask & SDHCI_RESET_ALL) {
214 if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
215 if (host->ops->enable_dma)
216 host->ops->enable_dma(host);
217 }
218
219 /* Resetting the controller clears many */
220 host->preset_enabled = false;
Shaohui Xie3abc1e802011-12-29 16:33:00 +0800221 }
Pierre Ossmand129bce2006-03-24 03:18:17 -0800222}
223
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -0800224static void sdhci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios);
225
226static void sdhci_init(struct sdhci_host *host, int soft)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800227{
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -0800228 if (soft)
Russell King03231f92014-04-25 12:57:12 +0100229 sdhci_do_reset(host, SDHCI_RESET_CMD|SDHCI_RESET_DATA);
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -0800230 else
Russell King03231f92014-04-25 12:57:12 +0100231 sdhci_do_reset(host, SDHCI_RESET_ALL);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800232
Russell Kingb537f942014-04-25 12:56:01 +0100233 host->ier = SDHCI_INT_BUS_POWER | SDHCI_INT_DATA_END_BIT |
234 SDHCI_INT_DATA_CRC | SDHCI_INT_DATA_TIMEOUT |
235 SDHCI_INT_INDEX | SDHCI_INT_END_BIT | SDHCI_INT_CRC |
236 SDHCI_INT_TIMEOUT | SDHCI_INT_DATA_END |
237 SDHCI_INT_RESPONSE;
238
239 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
240 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -0800241
242 if (soft) {
243 /* force clock reconfiguration */
244 host->clock = 0;
245 sdhci_set_ios(host->mmc, &host->mmc->ios);
246 }
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300247}
Pierre Ossmand129bce2006-03-24 03:18:17 -0800248
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300249static void sdhci_reinit(struct sdhci_host *host)
250{
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -0800251 sdhci_init(host, 0);
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300252 sdhci_enable_card_detection(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800253}
254
255static void sdhci_activate_led(struct sdhci_host *host)
256{
257 u8 ctrl;
258
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300259 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800260 ctrl |= SDHCI_CTRL_LED;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300261 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800262}
263
264static void sdhci_deactivate_led(struct sdhci_host *host)
265{
266 u8 ctrl;
267
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300268 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800269 ctrl &= ~SDHCI_CTRL_LED;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300270 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800271}
272
Pierre Ossmanf9134312008-12-21 17:01:48 +0100273#ifdef SDHCI_USE_LEDS_CLASS
Pierre Ossman2f730fe2008-03-17 10:29:38 +0100274static void sdhci_led_control(struct led_classdev *led,
275 enum led_brightness brightness)
276{
277 struct sdhci_host *host = container_of(led, struct sdhci_host, led);
278 unsigned long flags;
279
280 spin_lock_irqsave(&host->lock, flags);
281
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300282 if (host->runtime_suspended)
283 goto out;
284
Pierre Ossman2f730fe2008-03-17 10:29:38 +0100285 if (brightness == LED_OFF)
286 sdhci_deactivate_led(host);
287 else
288 sdhci_activate_led(host);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300289out:
Pierre Ossman2f730fe2008-03-17 10:29:38 +0100290 spin_unlock_irqrestore(&host->lock, flags);
291}
292#endif
293
Pierre Ossmand129bce2006-03-24 03:18:17 -0800294/*****************************************************************************\
295 * *
296 * Core functions *
297 * *
298\*****************************************************************************/
299
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100300static void sdhci_read_block_pio(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800301{
Pierre Ossman76591502008-07-21 00:32:11 +0200302 unsigned long flags;
303 size_t blksize, len, chunk;
Steven Noonan7244b852008-10-01 01:50:25 -0700304 u32 uninitialized_var(scratch);
Pierre Ossman76591502008-07-21 00:32:11 +0200305 u8 *buf;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800306
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100307 DBG("PIO reading\n");
Pierre Ossmand129bce2006-03-24 03:18:17 -0800308
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100309 blksize = host->data->blksz;
Pierre Ossman76591502008-07-21 00:32:11 +0200310 chunk = 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800311
Pierre Ossman76591502008-07-21 00:32:11 +0200312 local_irq_save(flags);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800313
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100314 while (blksize) {
Fabio Estevambf3a35a2015-05-09 18:44:51 -0300315 BUG_ON(!sg_miter_next(&host->sg_miter));
Pierre Ossmand129bce2006-03-24 03:18:17 -0800316
Pierre Ossman76591502008-07-21 00:32:11 +0200317 len = min(host->sg_miter.length, blksize);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800318
Pierre Ossman76591502008-07-21 00:32:11 +0200319 blksize -= len;
320 host->sg_miter.consumed = len;
Alex Dubov14d836e2007-04-13 19:04:38 +0200321
Pierre Ossman76591502008-07-21 00:32:11 +0200322 buf = host->sg_miter.addr;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800323
Pierre Ossman76591502008-07-21 00:32:11 +0200324 while (len) {
325 if (chunk == 0) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300326 scratch = sdhci_readl(host, SDHCI_BUFFER);
Pierre Ossman76591502008-07-21 00:32:11 +0200327 chunk = 4;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800328 }
Pierre Ossman76591502008-07-21 00:32:11 +0200329
330 *buf = scratch & 0xFF;
331
332 buf++;
333 scratch >>= 8;
334 chunk--;
335 len--;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800336 }
337 }
Pierre Ossman76591502008-07-21 00:32:11 +0200338
339 sg_miter_stop(&host->sg_miter);
340
341 local_irq_restore(flags);
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100342}
Pierre Ossmand129bce2006-03-24 03:18:17 -0800343
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100344static void sdhci_write_block_pio(struct sdhci_host *host)
345{
Pierre Ossman76591502008-07-21 00:32:11 +0200346 unsigned long flags;
347 size_t blksize, len, chunk;
348 u32 scratch;
349 u8 *buf;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100350
351 DBG("PIO writing\n");
352
353 blksize = host->data->blksz;
Pierre Ossman76591502008-07-21 00:32:11 +0200354 chunk = 0;
355 scratch = 0;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100356
Pierre Ossman76591502008-07-21 00:32:11 +0200357 local_irq_save(flags);
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100358
359 while (blksize) {
Fabio Estevambf3a35a2015-05-09 18:44:51 -0300360 BUG_ON(!sg_miter_next(&host->sg_miter));
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100361
Pierre Ossman76591502008-07-21 00:32:11 +0200362 len = min(host->sg_miter.length, blksize);
Alex Dubov14d836e2007-04-13 19:04:38 +0200363
Pierre Ossman76591502008-07-21 00:32:11 +0200364 blksize -= len;
365 host->sg_miter.consumed = len;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100366
Pierre Ossman76591502008-07-21 00:32:11 +0200367 buf = host->sg_miter.addr;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100368
Pierre Ossman76591502008-07-21 00:32:11 +0200369 while (len) {
370 scratch |= (u32)*buf << (chunk * 8);
371
372 buf++;
373 chunk++;
374 len--;
375
376 if ((chunk == 4) || ((len == 0) && (blksize == 0))) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300377 sdhci_writel(host, scratch, SDHCI_BUFFER);
Pierre Ossman76591502008-07-21 00:32:11 +0200378 chunk = 0;
379 scratch = 0;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100380 }
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100381 }
382 }
Pierre Ossman76591502008-07-21 00:32:11 +0200383
384 sg_miter_stop(&host->sg_miter);
385
386 local_irq_restore(flags);
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100387}
388
389static void sdhci_transfer_pio(struct sdhci_host *host)
390{
391 u32 mask;
392
393 BUG_ON(!host->data);
394
Pierre Ossman76591502008-07-21 00:32:11 +0200395 if (host->blocks == 0)
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100396 return;
397
398 if (host->data->flags & MMC_DATA_READ)
399 mask = SDHCI_DATA_AVAILABLE;
400 else
401 mask = SDHCI_SPACE_AVAILABLE;
402
Pierre Ossman4a3cba32008-07-29 00:11:16 +0200403 /*
404 * Some controllers (JMicron JMB38x) mess up the buffer bits
405 * for transfers < 4 bytes. As long as it is just one block,
406 * we can ignore the bits.
407 */
408 if ((host->quirks & SDHCI_QUIRK_BROKEN_SMALL_PIO) &&
409 (host->data->blocks == 1))
410 mask = ~0;
411
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300412 while (sdhci_readl(host, SDHCI_PRESENT_STATE) & mask) {
Anton Vorontsov3e3bf202009-03-17 00:14:00 +0300413 if (host->quirks & SDHCI_QUIRK_PIO_NEEDS_DELAY)
414 udelay(100);
415
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100416 if (host->data->flags & MMC_DATA_READ)
417 sdhci_read_block_pio(host);
418 else
419 sdhci_write_block_pio(host);
420
Pierre Ossman76591502008-07-21 00:32:11 +0200421 host->blocks--;
422 if (host->blocks == 0)
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100423 break;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100424 }
425
426 DBG("PIO transfer complete.\n");
Pierre Ossmand129bce2006-03-24 03:18:17 -0800427}
428
Russell King48857d92016-01-26 13:40:16 +0000429static int sdhci_pre_dma_transfer(struct sdhci_host *host,
Russell Kingc0999b72016-01-26 13:40:27 +0000430 struct mmc_data *data, int cookie)
Russell King48857d92016-01-26 13:40:16 +0000431{
432 int sg_count;
433
Russell King94538e52016-01-26 13:40:37 +0000434 /*
435 * If the data buffers are already mapped, return the previous
436 * dma_map_sg() result.
437 */
438 if (data->host_cookie == COOKIE_PRE_MAPPED)
Russell King48857d92016-01-26 13:40:16 +0000439 return data->sg_count;
Russell King48857d92016-01-26 13:40:16 +0000440
441 sg_count = dma_map_sg(mmc_dev(host->mmc), data->sg, data->sg_len,
442 data->flags & MMC_DATA_WRITE ?
443 DMA_TO_DEVICE : DMA_FROM_DEVICE);
444
445 if (sg_count == 0)
446 return -ENOSPC;
447
448 data->sg_count = sg_count;
Russell Kingc0999b72016-01-26 13:40:27 +0000449 data->host_cookie = cookie;
Russell King48857d92016-01-26 13:40:16 +0000450
451 return sg_count;
452}
453
Pierre Ossman2134a922008-06-28 18:28:51 +0200454static char *sdhci_kmap_atomic(struct scatterlist *sg, unsigned long *flags)
455{
456 local_irq_save(*flags);
Cong Wang482fce92011-11-27 13:27:00 +0800457 return kmap_atomic(sg_page(sg)) + sg->offset;
Pierre Ossman2134a922008-06-28 18:28:51 +0200458}
459
460static void sdhci_kunmap_atomic(void *buffer, unsigned long *flags)
461{
Cong Wang482fce92011-11-27 13:27:00 +0800462 kunmap_atomic(buffer);
Pierre Ossman2134a922008-06-28 18:28:51 +0200463 local_irq_restore(*flags);
464}
465
Adrian Huntere57a5f62014-11-04 12:42:46 +0200466static void sdhci_adma_write_desc(struct sdhci_host *host, void *desc,
467 dma_addr_t addr, int len, unsigned cmd)
Ben Dooks118cd172010-03-05 13:43:26 -0800468{
Adrian Huntere57a5f62014-11-04 12:42:46 +0200469 struct sdhci_adma2_64_desc *dma_desc = desc;
Ben Dooks118cd172010-03-05 13:43:26 -0800470
Adrian Huntere57a5f62014-11-04 12:42:46 +0200471 /* 32-bit and 64-bit descriptors have these members in same position */
Adrian Hunter05452302014-11-04 12:42:45 +0200472 dma_desc->cmd = cpu_to_le16(cmd);
473 dma_desc->len = cpu_to_le16(len);
Adrian Huntere57a5f62014-11-04 12:42:46 +0200474 dma_desc->addr_lo = cpu_to_le32((u32)addr);
475
476 if (host->flags & SDHCI_USE_64_BIT_DMA)
477 dma_desc->addr_hi = cpu_to_le32((u64)addr >> 32);
Ben Dooks118cd172010-03-05 13:43:26 -0800478}
479
Adrian Hunterb5ffa672014-11-04 12:42:40 +0200480static void sdhci_adma_mark_end(void *desc)
481{
Adrian Huntere57a5f62014-11-04 12:42:46 +0200482 struct sdhci_adma2_64_desc *dma_desc = desc;
Adrian Hunterb5ffa672014-11-04 12:42:40 +0200483
Adrian Huntere57a5f62014-11-04 12:42:46 +0200484 /* 32-bit and 64-bit descriptors have 'cmd' in same position */
Adrian Hunter05452302014-11-04 12:42:45 +0200485 dma_desc->cmd |= cpu_to_le16(ADMA2_END);
Adrian Hunterb5ffa672014-11-04 12:42:40 +0200486}
487
Russell King60c64762016-01-26 13:40:22 +0000488static void sdhci_adma_table_pre(struct sdhci_host *host,
489 struct mmc_data *data, int sg_count)
Pierre Ossman2134a922008-06-28 18:28:51 +0200490{
Pierre Ossman2134a922008-06-28 18:28:51 +0200491 struct scatterlist *sg;
Pierre Ossman2134a922008-06-28 18:28:51 +0200492 unsigned long flags;
Russell Kingacc3ad12016-01-26 13:40:00 +0000493 dma_addr_t addr, align_addr;
494 void *desc, *align;
495 char *buffer;
496 int len, offset, i;
Pierre Ossman2134a922008-06-28 18:28:51 +0200497
498 /*
499 * The spec does not specify endianness of descriptor table.
500 * We currently guess that it is LE.
501 */
502
Russell King60c64762016-01-26 13:40:22 +0000503 host->sg_count = sg_count;
Pierre Ossman2134a922008-06-28 18:28:51 +0200504
Adrian Hunter4efaa6f2014-11-04 12:42:39 +0200505 desc = host->adma_table;
Pierre Ossman2134a922008-06-28 18:28:51 +0200506 align = host->align_buffer;
507
508 align_addr = host->align_addr;
509
510 for_each_sg(data->sg, sg, host->sg_count, i) {
511 addr = sg_dma_address(sg);
512 len = sg_dma_len(sg);
513
514 /*
Russell Kingacc3ad12016-01-26 13:40:00 +0000515 * The SDHCI specification states that ADMA addresses must
516 * be 32-bit aligned. If they aren't, then we use a bounce
517 * buffer for the (up to three) bytes that screw up the
Pierre Ossman2134a922008-06-28 18:28:51 +0200518 * alignment.
519 */
Adrian Hunter04a5ae62015-11-26 14:00:49 +0200520 offset = (SDHCI_ADMA2_ALIGN - (addr & SDHCI_ADMA2_MASK)) &
521 SDHCI_ADMA2_MASK;
Pierre Ossman2134a922008-06-28 18:28:51 +0200522 if (offset) {
523 if (data->flags & MMC_DATA_WRITE) {
524 buffer = sdhci_kmap_atomic(sg, &flags);
525 memcpy(align, buffer, offset);
526 sdhci_kunmap_atomic(buffer, &flags);
527 }
528
Ben Dooks118cd172010-03-05 13:43:26 -0800529 /* tran, valid */
Adrian Huntere57a5f62014-11-04 12:42:46 +0200530 sdhci_adma_write_desc(host, desc, align_addr, offset,
Adrian Hunter739d46d2014-11-04 12:42:44 +0200531 ADMA2_TRAN_VALID);
Pierre Ossman2134a922008-06-28 18:28:51 +0200532
533 BUG_ON(offset > 65536);
534
Adrian Hunter04a5ae62015-11-26 14:00:49 +0200535 align += SDHCI_ADMA2_ALIGN;
536 align_addr += SDHCI_ADMA2_ALIGN;
Pierre Ossman2134a922008-06-28 18:28:51 +0200537
Adrian Hunter76fe3792014-11-04 12:42:42 +0200538 desc += host->desc_sz;
Pierre Ossman2134a922008-06-28 18:28:51 +0200539
540 addr += offset;
541 len -= offset;
542 }
543
Pierre Ossman2134a922008-06-28 18:28:51 +0200544 BUG_ON(len > 65536);
545
Adrian Hunter347ea322015-11-26 14:00:48 +0200546 if (len) {
547 /* tran, valid */
548 sdhci_adma_write_desc(host, desc, addr, len,
549 ADMA2_TRAN_VALID);
550 desc += host->desc_sz;
551 }
Pierre Ossman2134a922008-06-28 18:28:51 +0200552
553 /*
554 * If this triggers then we have a calculation bug
555 * somewhere. :/
556 */
Adrian Hunter76fe3792014-11-04 12:42:42 +0200557 WARN_ON((desc - host->adma_table) >= host->adma_table_sz);
Pierre Ossman2134a922008-06-28 18:28:51 +0200558 }
559
Thomas Abraham70764a92010-05-26 14:42:04 -0700560 if (host->quirks & SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC) {
Russell Kingacc3ad12016-01-26 13:40:00 +0000561 /* Mark the last descriptor as the terminating descriptor */
Adrian Hunter4efaa6f2014-11-04 12:42:39 +0200562 if (desc != host->adma_table) {
Adrian Hunter76fe3792014-11-04 12:42:42 +0200563 desc -= host->desc_sz;
Adrian Hunterb5ffa672014-11-04 12:42:40 +0200564 sdhci_adma_mark_end(desc);
Thomas Abraham70764a92010-05-26 14:42:04 -0700565 }
566 } else {
Russell Kingacc3ad12016-01-26 13:40:00 +0000567 /* Add a terminating entry - 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
572static void sdhci_adma_table_post(struct sdhci_host *host,
573 struct mmc_data *data)
574{
Pierre Ossman2134a922008-06-28 18:28:51 +0200575 struct scatterlist *sg;
576 int i, size;
Adrian Hunter1c3d5f62014-11-04 12:42:41 +0200577 void *align;
Pierre Ossman2134a922008-06-28 18:28:51 +0200578 char *buffer;
579 unsigned long flags;
580
Russell King47fa9612016-01-26 13:40:06 +0000581 if (data->flags & MMC_DATA_READ) {
582 bool has_unaligned = false;
Russell Kingde0b65a2014-04-25 12:58:29 +0100583
Russell King47fa9612016-01-26 13:40:06 +0000584 /* Do a quick scan of the SG list for any unaligned mappings */
585 for_each_sg(data->sg, sg, host->sg_count, i)
Adrian Hunter04a5ae62015-11-26 14:00:49 +0200586 if (sg_dma_address(sg) & SDHCI_ADMA2_MASK) {
Russell King47fa9612016-01-26 13:40:06 +0000587 has_unaligned = true;
588 break;
589 }
Pierre Ossman2134a922008-06-28 18:28:51 +0200590
Russell King47fa9612016-01-26 13:40:06 +0000591 if (has_unaligned) {
592 dma_sync_sg_for_cpu(mmc_dev(host->mmc), data->sg,
Russell Kingf55c98f2016-01-26 13:40:11 +0000593 data->sg_len, DMA_FROM_DEVICE);
Pierre Ossman2134a922008-06-28 18:28:51 +0200594
Russell King47fa9612016-01-26 13:40:06 +0000595 align = host->align_buffer;
596
597 for_each_sg(data->sg, sg, host->sg_count, i) {
598 if (sg_dma_address(sg) & SDHCI_ADMA2_MASK) {
599 size = SDHCI_ADMA2_ALIGN -
600 (sg_dma_address(sg) & SDHCI_ADMA2_MASK);
601
602 buffer = sdhci_kmap_atomic(sg, &flags);
603 memcpy(buffer, align, size);
604 sdhci_kunmap_atomic(buffer, &flags);
605
606 align += SDHCI_ADMA2_ALIGN;
607 }
Pierre Ossman2134a922008-06-28 18:28:51 +0200608 }
609 }
610 }
Pierre Ossman2134a922008-06-28 18:28:51 +0200611}
612
Andrei Warkentina3c77782011-04-11 16:13:42 -0500613static u8 sdhci_calc_timeout(struct sdhci_host *host, struct mmc_command *cmd)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800614{
Pierre Ossman1c8cde92006-06-30 02:22:25 -0700615 u8 count;
Andrei Warkentina3c77782011-04-11 16:13:42 -0500616 struct mmc_data *data = cmd->data;
Pierre Ossman1c8cde92006-06-30 02:22:25 -0700617 unsigned target_timeout, current_timeout;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800618
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200619 /*
620 * If the host controller provides us with an incorrect timeout
621 * value, just skip the check and use 0xE. The hardware may take
622 * longer to time out, but that's much better than having a too-short
623 * timeout value.
624 */
Pierre Ossman11a2f1b2009-06-21 20:59:33 +0200625 if (host->quirks & SDHCI_QUIRK_BROKEN_TIMEOUT_VAL)
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200626 return 0xE;
Pierre Ossmane538fbe2007-08-12 16:46:32 +0200627
Andrei Warkentina3c77782011-04-11 16:13:42 -0500628 /* Unspecified timeout, assume max */
Ulf Hansson1d4d7742014-01-08 15:06:08 +0100629 if (!data && !cmd->busy_timeout)
Andrei Warkentina3c77782011-04-11 16:13:42 -0500630 return 0xE;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800631
Andrei Warkentina3c77782011-04-11 16:13:42 -0500632 /* timeout in us */
633 if (!data)
Ulf Hansson1d4d7742014-01-08 15:06:08 +0100634 target_timeout = cmd->busy_timeout * 1000;
Andy Shevchenko78a2ca22011-08-03 18:35:59 +0300635 else {
Russell Kingfafcfda2016-01-26 13:40:58 +0000636 target_timeout = DIV_ROUND_UP(data->timeout_ns, 1000);
Russell King7f055382016-01-26 13:41:04 +0000637 if (host->clock && data->timeout_clks) {
638 unsigned long long val;
639
640 /*
641 * data->timeout_clks is in units of clock cycles.
642 * host->clock is in Hz. target_timeout is in us.
643 * Hence, us = 1000000 * cycles / Hz. Round up.
644 */
645 val = 1000000 * data->timeout_clks;
646 if (do_div(val, host->clock))
647 target_timeout++;
648 target_timeout += val;
649 }
Andy Shevchenko78a2ca22011-08-03 18:35:59 +0300650 }
Anton Vorontsov81b39802009-09-22 16:45:13 -0700651
Pierre Ossman1c8cde92006-06-30 02:22:25 -0700652 /*
653 * Figure out needed cycles.
654 * We do this in steps in order to fit inside a 32 bit int.
655 * The first step is the minimum timeout, which will have a
656 * minimum resolution of 6 bits:
657 * (1) 2^13*1000 > 2^22,
658 * (2) host->timeout_clk < 2^16
659 * =>
660 * (1) / (2) > 2^6
661 */
662 count = 0;
663 current_timeout = (1 << 13) * 1000 / host->timeout_clk;
664 while (current_timeout < target_timeout) {
665 count++;
666 current_timeout <<= 1;
667 if (count >= 0xF)
668 break;
669 }
670
671 if (count >= 0xF) {
Chris Ball09eeff52012-06-01 10:39:45 -0400672 DBG("%s: Too large timeout 0x%x requested for CMD%d!\n",
673 mmc_hostname(host->mmc), count, cmd->opcode);
Pierre Ossman1c8cde92006-06-30 02:22:25 -0700674 count = 0xE;
675 }
676
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200677 return count;
678}
679
Anton Vorontsov6aa943a2009-03-17 00:13:50 +0300680static void sdhci_set_transfer_irqs(struct sdhci_host *host)
681{
682 u32 pio_irqs = SDHCI_INT_DATA_AVAIL | SDHCI_INT_SPACE_AVAIL;
683 u32 dma_irqs = SDHCI_INT_DMA_END | SDHCI_INT_ADMA_ERROR;
684
685 if (host->flags & SDHCI_REQ_USE_DMA)
Russell Kingb537f942014-04-25 12:56:01 +0100686 host->ier = (host->ier & ~pio_irqs) | dma_irqs;
Anton Vorontsov6aa943a2009-03-17 00:13:50 +0300687 else
Russell Kingb537f942014-04-25 12:56:01 +0100688 host->ier = (host->ier & ~dma_irqs) | pio_irqs;
689
690 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
691 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Anton Vorontsov6aa943a2009-03-17 00:13:50 +0300692}
693
Aisheng Dongb45e6682014-08-27 15:26:29 +0800694static void sdhci_set_timeout(struct sdhci_host *host, struct mmc_command *cmd)
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200695{
696 u8 count;
Aisheng Dongb45e6682014-08-27 15:26:29 +0800697
698 if (host->ops->set_timeout) {
699 host->ops->set_timeout(host, cmd);
700 } else {
701 count = sdhci_calc_timeout(host, cmd);
702 sdhci_writeb(host, count, SDHCI_TIMEOUT_CONTROL);
703 }
704}
705
706static void sdhci_prepare_data(struct sdhci_host *host, struct mmc_command *cmd)
707{
Pierre Ossman2134a922008-06-28 18:28:51 +0200708 u8 ctrl;
Andrei Warkentina3c77782011-04-11 16:13:42 -0500709 struct mmc_data *data = cmd->data;
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200710
711 WARN_ON(host->data);
712
Aisheng Dongb45e6682014-08-27 15:26:29 +0800713 if (data || (cmd->flags & MMC_RSP_BUSY))
714 sdhci_set_timeout(host, cmd);
Andrei Warkentina3c77782011-04-11 16:13:42 -0500715
716 if (!data)
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200717 return;
718
719 /* Sanity checks */
720 BUG_ON(data->blksz * data->blocks > 524288);
721 BUG_ON(data->blksz > host->mmc->max_blk_size);
722 BUG_ON(data->blocks > 65535);
723
724 host->data = data;
725 host->data_early = 0;
Mikko Vinnif6a03cb2011-04-12 09:36:18 -0400726 host->data->bytes_xfered = 0;
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200727
Richard Röjforsa13abc72009-09-22 16:45:30 -0700728 if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA))
Pierre Ossmanc9fddbc2007-12-02 19:52:11 +0100729 host->flags |= SDHCI_REQ_USE_DMA;
730
Pierre Ossman2134a922008-06-28 18:28:51 +0200731 /*
732 * FIXME: This doesn't account for merging when mapping the
733 * scatterlist.
Russell Kingdf953922016-01-26 13:41:14 +0000734 *
735 * The assumption here being that alignment and lengths are
736 * the same after DMA mapping to device address space.
Pierre Ossman2134a922008-06-28 18:28:51 +0200737 */
738 if (host->flags & SDHCI_REQ_USE_DMA) {
Pierre Ossman2134a922008-06-28 18:28:51 +0200739 struct scatterlist *sg;
Russell Kingdf953922016-01-26 13:41:14 +0000740 unsigned int length_mask, offset_mask;
Russell Kinga0eaf0f2016-01-26 13:41:09 +0000741 int i;
Pierre Ossman2134a922008-06-28 18:28:51 +0200742
Russell Kinga0eaf0f2016-01-26 13:41:09 +0000743 length_mask = 0;
Russell Kingdf953922016-01-26 13:41:14 +0000744 offset_mask = 0;
Pierre Ossman2134a922008-06-28 18:28:51 +0200745 if (host->flags & SDHCI_USE_ADMA) {
Russell Kingdf953922016-01-26 13:41:14 +0000746 if (host->quirks & SDHCI_QUIRK_32BIT_ADMA_SIZE) {
Russell Kinga0eaf0f2016-01-26 13:41:09 +0000747 length_mask = 3;
Russell Kingdf953922016-01-26 13:41:14 +0000748 /*
749 * As we use up to 3 byte chunks to work
750 * around alignment problems, we need to
751 * check the offset as well.
752 */
753 offset_mask = 3;
754 }
Pierre Ossman2134a922008-06-28 18:28:51 +0200755 } else {
756 if (host->quirks & SDHCI_QUIRK_32BIT_DMA_SIZE)
Russell Kinga0eaf0f2016-01-26 13:41:09 +0000757 length_mask = 3;
Russell Kingdf953922016-01-26 13:41:14 +0000758 if (host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR)
759 offset_mask = 3;
Pierre Ossman2134a922008-06-28 18:28:51 +0200760 }
761
Russell Kingdf953922016-01-26 13:41:14 +0000762 if (unlikely(length_mask | offset_mask)) {
Pierre Ossman2134a922008-06-28 18:28:51 +0200763 for_each_sg(data->sg, sg, data->sg_len, i) {
Russell Kinga0eaf0f2016-01-26 13:41:09 +0000764 if (sg->length & length_mask) {
Marek Vasut2e4456f2015-11-18 10:47:02 +0100765 DBG("Reverting to PIO because of transfer size (%d)\n",
Russell Kinga0eaf0f2016-01-26 13:41:09 +0000766 sg->length);
Pierre Ossman2134a922008-06-28 18:28:51 +0200767 host->flags &= ~SDHCI_REQ_USE_DMA;
768 break;
769 }
Russell Kinga0eaf0f2016-01-26 13:41:09 +0000770 if (sg->offset & offset_mask) {
Marek Vasut2e4456f2015-11-18 10:47:02 +0100771 DBG("Reverting to PIO because of bad alignment\n");
Pierre Ossman2134a922008-06-28 18:28:51 +0200772 host->flags &= ~SDHCI_REQ_USE_DMA;
773 break;
774 }
775 }
776 }
777 }
778
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200779 if (host->flags & SDHCI_REQ_USE_DMA) {
Russell Kingc0999b72016-01-26 13:40:27 +0000780 int sg_cnt = sdhci_pre_dma_transfer(host, data, COOKIE_MAPPED);
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200781
Russell King60c64762016-01-26 13:40:22 +0000782 if (sg_cnt <= 0) {
783 /*
784 * This only happens when someone fed
785 * us an invalid request.
786 */
787 WARN_ON(1);
788 host->flags &= ~SDHCI_REQ_USE_DMA;
789 } else if (host->flags & SDHCI_USE_ADMA) {
790 sdhci_adma_table_pre(host, data, sg_cnt);
791
792 sdhci_writel(host, host->adma_addr, SDHCI_ADMA_ADDRESS);
793 if (host->flags & SDHCI_USE_64_BIT_DMA)
794 sdhci_writel(host,
795 (u64)host->adma_addr >> 32,
796 SDHCI_ADMA_ADDRESS_HI);
797 } else {
798 WARN_ON(sg_cnt != 1);
799 sdhci_writel(host, sg_dma_address(data->sg),
800 SDHCI_DMA_ADDRESS);
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200801 }
802 }
803
Pierre Ossman2134a922008-06-28 18:28:51 +0200804 /*
805 * Always adjust the DMA selection as some controllers
806 * (e.g. JMicron) can't do PIO properly when the selection
807 * is ADMA.
808 */
809 if (host->version >= SDHCI_SPEC_200) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300810 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
Pierre Ossman2134a922008-06-28 18:28:51 +0200811 ctrl &= ~SDHCI_CTRL_DMA_MASK;
812 if ((host->flags & SDHCI_REQ_USE_DMA) &&
Adrian Huntere57a5f62014-11-04 12:42:46 +0200813 (host->flags & SDHCI_USE_ADMA)) {
814 if (host->flags & SDHCI_USE_64_BIT_DMA)
815 ctrl |= SDHCI_CTRL_ADMA64;
816 else
817 ctrl |= SDHCI_CTRL_ADMA32;
818 } else {
Pierre Ossman2134a922008-06-28 18:28:51 +0200819 ctrl |= SDHCI_CTRL_SDMA;
Adrian Huntere57a5f62014-11-04 12:42:46 +0200820 }
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300821 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Pierre Ossmanc9fddbc2007-12-02 19:52:11 +0100822 }
823
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200824 if (!(host->flags & SDHCI_REQ_USE_DMA)) {
Sebastian Andrzej Siewiorda60a912009-06-18 09:33:32 +0200825 int flags;
826
827 flags = SG_MITER_ATOMIC;
828 if (host->data->flags & MMC_DATA_READ)
829 flags |= SG_MITER_TO_SG;
830 else
831 flags |= SG_MITER_FROM_SG;
832 sg_miter_start(&host->sg_miter, data->sg, data->sg_len, flags);
Pierre Ossman76591502008-07-21 00:32:11 +0200833 host->blocks = data->blocks;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800834 }
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700835
Anton Vorontsov6aa943a2009-03-17 00:13:50 +0300836 sdhci_set_transfer_irqs(host);
837
Mikko Vinnif6a03cb2011-04-12 09:36:18 -0400838 /* Set the DMA boundary value and block size */
839 sdhci_writew(host, SDHCI_MAKE_BLKSZ(SDHCI_DEFAULT_BOUNDARY_ARG,
840 data->blksz), SDHCI_BLOCK_SIZE);
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300841 sdhci_writew(host, data->blocks, SDHCI_BLOCK_COUNT);
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700842}
843
844static void sdhci_set_transfer_mode(struct sdhci_host *host,
Andrei Warkentine89d4562011-05-23 15:06:37 -0500845 struct mmc_command *cmd)
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700846{
Vincent Yangd3fc5d72015-01-20 16:05:17 +0800847 u16 mode = 0;
Andrei Warkentine89d4562011-05-23 15:06:37 -0500848 struct mmc_data *data = cmd->data;
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700849
Dong Aisheng2b558c12013-10-30 22:09:48 +0800850 if (data == NULL) {
Vincent Wan9b8ffea2014-11-05 14:09:00 +0800851 if (host->quirks2 &
852 SDHCI_QUIRK2_CLEAR_TRANSFERMODE_REG_BEFORE_CMD) {
853 sdhci_writew(host, 0x0, SDHCI_TRANSFER_MODE);
854 } else {
Dong Aisheng2b558c12013-10-30 22:09:48 +0800855 /* clear Auto CMD settings for no data CMDs */
Vincent Wan9b8ffea2014-11-05 14:09:00 +0800856 mode = sdhci_readw(host, SDHCI_TRANSFER_MODE);
857 sdhci_writew(host, mode & ~(SDHCI_TRNS_AUTO_CMD12 |
Dong Aisheng2b558c12013-10-30 22:09:48 +0800858 SDHCI_TRNS_AUTO_CMD23), SDHCI_TRANSFER_MODE);
Vincent Wan9b8ffea2014-11-05 14:09:00 +0800859 }
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700860 return;
Dong Aisheng2b558c12013-10-30 22:09:48 +0800861 }
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700862
Pierre Ossmane538fbe2007-08-12 16:46:32 +0200863 WARN_ON(!host->data);
864
Vincent Yangd3fc5d72015-01-20 16:05:17 +0800865 if (!(host->quirks2 & SDHCI_QUIRK2_SUPPORT_SINGLE))
866 mode = SDHCI_TRNS_BLK_CNT_EN;
867
Andrei Warkentine89d4562011-05-23 15:06:37 -0500868 if (mmc_op_multi(cmd->opcode) || data->blocks > 1) {
Vincent Yangd3fc5d72015-01-20 16:05:17 +0800869 mode = SDHCI_TRNS_BLK_CNT_EN | SDHCI_TRNS_MULTI;
Andrei Warkentine89d4562011-05-23 15:06:37 -0500870 /*
871 * If we are sending CMD23, CMD12 never gets sent
872 * on successful completion (so no Auto-CMD12).
873 */
Corneliu Doban85cc1c32015-02-09 16:06:29 -0800874 if (!host->mrq->sbc && (host->flags & SDHCI_AUTO_CMD12) &&
875 (cmd->opcode != SD_IO_RW_EXTENDED))
Andrei Warkentine89d4562011-05-23 15:06:37 -0500876 mode |= SDHCI_TRNS_AUTO_CMD12;
Andrei Warkentin8edf63712011-05-23 15:06:39 -0500877 else if (host->mrq->sbc && (host->flags & SDHCI_AUTO_CMD23)) {
878 mode |= SDHCI_TRNS_AUTO_CMD23;
879 sdhci_writel(host, host->mrq->sbc->arg, SDHCI_ARGUMENT2);
880 }
Jerry Huangc4512f72010-08-10 18:01:59 -0700881 }
Andrei Warkentin8edf63712011-05-23 15:06:39 -0500882
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700883 if (data->flags & MMC_DATA_READ)
884 mode |= SDHCI_TRNS_READ;
Pierre Ossmanc9fddbc2007-12-02 19:52:11 +0100885 if (host->flags & SDHCI_REQ_USE_DMA)
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700886 mode |= SDHCI_TRNS_DMA;
887
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300888 sdhci_writew(host, mode, SDHCI_TRANSFER_MODE);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800889}
890
891static void sdhci_finish_data(struct sdhci_host *host)
892{
893 struct mmc_data *data;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800894
895 BUG_ON(!host->data);
896
897 data = host->data;
898 host->data = NULL;
899
Russell Kingadd89132016-01-26 13:40:42 +0000900 if ((host->flags & (SDHCI_REQ_USE_DMA | SDHCI_USE_ADMA)) ==
901 (SDHCI_REQ_USE_DMA | SDHCI_USE_ADMA))
902 sdhci_adma_table_post(host, data);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800903
904 /*
Pierre Ossmanc9b74c52008-04-18 20:41:49 +0200905 * The specification states that the block count register must
906 * be updated, but it does not specify at what point in the
907 * data flow. That makes the register entirely useless to read
908 * back so we have to assume that nothing made it to the card
909 * in the event of an error.
Pierre Ossmand129bce2006-03-24 03:18:17 -0800910 */
Pierre Ossmanc9b74c52008-04-18 20:41:49 +0200911 if (data->error)
912 data->bytes_xfered = 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800913 else
Pierre Ossmanc9b74c52008-04-18 20:41:49 +0200914 data->bytes_xfered = data->blksz * data->blocks;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800915
Andrei Warkentine89d4562011-05-23 15:06:37 -0500916 /*
917 * Need to send CMD12 if -
918 * a) open-ended multiblock transfer (no CMD23)
919 * b) error in multiblock transfer
920 */
921 if (data->stop &&
922 (data->error ||
923 !host->mrq->sbc)) {
924
Pierre Ossmand129bce2006-03-24 03:18:17 -0800925 /*
926 * The controller needs a reset of internal state machines
927 * upon error conditions.
928 */
Pierre Ossman17b04292007-07-22 22:18:46 +0200929 if (data->error) {
Russell King03231f92014-04-25 12:57:12 +0100930 sdhci_do_reset(host, SDHCI_RESET_CMD);
931 sdhci_do_reset(host, SDHCI_RESET_DATA);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800932 }
933
934 sdhci_send_command(host, data->stop);
935 } else
936 tasklet_schedule(&host->finish_tasklet);
937}
938
Dong Aishengc0e551292013-09-13 19:11:31 +0800939void sdhci_send_command(struct sdhci_host *host, struct mmc_command *cmd)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800940{
941 int flags;
Pierre Ossmanfd2208d2006-06-30 02:22:28 -0700942 u32 mask;
Pierre Ossman7cb2c762006-06-30 02:22:23 -0700943 unsigned long timeout;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800944
945 WARN_ON(host->cmd);
946
Russell King96776202016-01-26 13:39:34 +0000947 /* Initially, a command has no error */
948 cmd->error = 0;
949
Pierre Ossmand129bce2006-03-24 03:18:17 -0800950 /* Wait max 10 ms */
Pierre Ossman7cb2c762006-06-30 02:22:23 -0700951 timeout = 10;
Pierre Ossmanfd2208d2006-06-30 02:22:28 -0700952
953 mask = SDHCI_CMD_INHIBIT;
954 if ((cmd->data != NULL) || (cmd->flags & MMC_RSP_BUSY))
955 mask |= SDHCI_DATA_INHIBIT;
956
957 /* We shouldn't wait for data inihibit for stop commands, even
958 though they might use busy signaling */
959 if (host->mrq->data && (cmd == host->mrq->data->stop))
960 mask &= ~SDHCI_DATA_INHIBIT;
961
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300962 while (sdhci_readl(host, SDHCI_PRESENT_STATE) & mask) {
Pierre Ossman7cb2c762006-06-30 02:22:23 -0700963 if (timeout == 0) {
Marek Vasut2e4456f2015-11-18 10:47:02 +0100964 pr_err("%s: Controller never released inhibit bit(s).\n",
965 mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -0800966 sdhci_dumpregs(host);
Pierre Ossman17b04292007-07-22 22:18:46 +0200967 cmd->error = -EIO;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800968 tasklet_schedule(&host->finish_tasklet);
969 return;
970 }
Pierre Ossman7cb2c762006-06-30 02:22:23 -0700971 timeout--;
972 mdelay(1);
973 }
Pierre Ossmand129bce2006-03-24 03:18:17 -0800974
Adrian Hunter3e1a6892013-11-14 10:16:20 +0200975 timeout = jiffies;
Ulf Hansson1d4d7742014-01-08 15:06:08 +0100976 if (!cmd->data && cmd->busy_timeout > 9000)
977 timeout += DIV_ROUND_UP(cmd->busy_timeout, 1000) * HZ + HZ;
Adrian Hunter3e1a6892013-11-14 10:16:20 +0200978 else
979 timeout += 10 * HZ;
980 mod_timer(&host->timer, timeout);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800981
982 host->cmd = cmd;
Chanho Mine99783a2014-08-30 12:40:40 +0900983 host->busy_handle = 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800984
Andrei Warkentina3c77782011-04-11 16:13:42 -0500985 sdhci_prepare_data(host, cmd);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800986
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300987 sdhci_writel(host, cmd->arg, SDHCI_ARGUMENT);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800988
Andrei Warkentine89d4562011-05-23 15:06:37 -0500989 sdhci_set_transfer_mode(host, cmd);
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700990
Pierre Ossmand129bce2006-03-24 03:18:17 -0800991 if ((cmd->flags & MMC_RSP_136) && (cmd->flags & MMC_RSP_BUSY)) {
Girish K Sa3c76eb2011-10-11 11:44:09 +0530992 pr_err("%s: Unsupported response type!\n",
Pierre Ossmand129bce2006-03-24 03:18:17 -0800993 mmc_hostname(host->mmc));
Pierre Ossman17b04292007-07-22 22:18:46 +0200994 cmd->error = -EINVAL;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800995 tasklet_schedule(&host->finish_tasklet);
996 return;
997 }
998
999 if (!(cmd->flags & MMC_RSP_PRESENT))
1000 flags = SDHCI_CMD_RESP_NONE;
1001 else if (cmd->flags & MMC_RSP_136)
1002 flags = SDHCI_CMD_RESP_LONG;
1003 else if (cmd->flags & MMC_RSP_BUSY)
1004 flags = SDHCI_CMD_RESP_SHORT_BUSY;
1005 else
1006 flags = SDHCI_CMD_RESP_SHORT;
1007
1008 if (cmd->flags & MMC_RSP_CRC)
1009 flags |= SDHCI_CMD_CRC;
1010 if (cmd->flags & MMC_RSP_OPCODE)
1011 flags |= SDHCI_CMD_INDEX;
Arindam Nathb513ea22011-05-05 12:19:04 +05301012
1013 /* CMD19 is special in that the Data Present Select should be set */
Girish K S069c9f12012-01-06 09:56:39 +05301014 if (cmd->data || cmd->opcode == MMC_SEND_TUNING_BLOCK ||
1015 cmd->opcode == MMC_SEND_TUNING_BLOCK_HS200)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001016 flags |= SDHCI_CMD_DATA;
1017
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001018 sdhci_writew(host, SDHCI_MAKE_CMD(cmd->opcode, flags), SDHCI_COMMAND);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001019}
Dong Aishengc0e551292013-09-13 19:11:31 +08001020EXPORT_SYMBOL_GPL(sdhci_send_command);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001021
1022static void sdhci_finish_command(struct sdhci_host *host)
1023{
1024 int i;
1025
1026 BUG_ON(host->cmd == NULL);
1027
1028 if (host->cmd->flags & MMC_RSP_PRESENT) {
1029 if (host->cmd->flags & MMC_RSP_136) {
1030 /* CRC is stripped so we need to do some shifting. */
1031 for (i = 0;i < 4;i++) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001032 host->cmd->resp[i] = sdhci_readl(host,
Pierre Ossmand129bce2006-03-24 03:18:17 -08001033 SDHCI_RESPONSE + (3-i)*4) << 8;
1034 if (i != 3)
1035 host->cmd->resp[i] |=
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001036 sdhci_readb(host,
Pierre Ossmand129bce2006-03-24 03:18:17 -08001037 SDHCI_RESPONSE + (3-i)*4-1);
1038 }
1039 } else {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001040 host->cmd->resp[0] = sdhci_readl(host, SDHCI_RESPONSE);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001041 }
1042 }
1043
Andrei Warkentine89d4562011-05-23 15:06:37 -05001044 /* Finished CMD23, now send actual command. */
1045 if (host->cmd == host->mrq->sbc) {
1046 host->cmd = NULL;
1047 sdhci_send_command(host, host->mrq->cmd);
1048 } else {
Pierre Ossmane538fbe2007-08-12 16:46:32 +02001049
Andrei Warkentine89d4562011-05-23 15:06:37 -05001050 /* Processed actual command. */
1051 if (host->data && host->data_early)
1052 sdhci_finish_data(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001053
Andrei Warkentine89d4562011-05-23 15:06:37 -05001054 if (!host->cmd->data)
1055 tasklet_schedule(&host->finish_tasklet);
1056
1057 host->cmd = NULL;
1058 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001059}
1060
Kevin Liu52983382013-01-31 11:31:37 +08001061static u16 sdhci_get_preset_value(struct sdhci_host *host)
1062{
Russell Kingd975f122014-04-25 12:59:31 +01001063 u16 preset = 0;
Kevin Liu52983382013-01-31 11:31:37 +08001064
Russell Kingd975f122014-04-25 12:59:31 +01001065 switch (host->timing) {
1066 case MMC_TIMING_UHS_SDR12:
Kevin Liu52983382013-01-31 11:31:37 +08001067 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR12);
1068 break;
Russell Kingd975f122014-04-25 12:59:31 +01001069 case MMC_TIMING_UHS_SDR25:
Kevin Liu52983382013-01-31 11:31:37 +08001070 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR25);
1071 break;
Russell Kingd975f122014-04-25 12:59:31 +01001072 case MMC_TIMING_UHS_SDR50:
Kevin Liu52983382013-01-31 11:31:37 +08001073 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR50);
1074 break;
Russell Kingd975f122014-04-25 12:59:31 +01001075 case MMC_TIMING_UHS_SDR104:
1076 case MMC_TIMING_MMC_HS200:
Kevin Liu52983382013-01-31 11:31:37 +08001077 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR104);
1078 break;
Russell Kingd975f122014-04-25 12:59:31 +01001079 case MMC_TIMING_UHS_DDR50:
Jisheng Zhang0dafa602015-08-18 16:21:39 +08001080 case MMC_TIMING_MMC_DDR52:
Kevin Liu52983382013-01-31 11:31:37 +08001081 preset = sdhci_readw(host, SDHCI_PRESET_FOR_DDR50);
1082 break;
Adrian Huntere9fb05d2014-11-06 15:19:06 +02001083 case MMC_TIMING_MMC_HS400:
1084 preset = sdhci_readw(host, SDHCI_PRESET_FOR_HS400);
1085 break;
Kevin Liu52983382013-01-31 11:31:37 +08001086 default:
1087 pr_warn("%s: Invalid UHS-I mode selected\n",
1088 mmc_hostname(host->mmc));
1089 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR12);
1090 break;
1091 }
1092 return preset;
1093}
1094
Russell King17710592014-04-25 12:58:55 +01001095void sdhci_set_clock(struct sdhci_host *host, unsigned int clock)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001096{
Arindam Nathc3ed3872011-05-05 12:19:06 +05301097 int div = 0; /* Initialized for compiler warning */
Giuseppe CAVALLAROdf162192011-11-04 13:53:19 +01001098 int real_div = div, clk_mul = 1;
Arindam Nathc3ed3872011-05-05 12:19:06 +05301099 u16 clk = 0;
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001100 unsigned long timeout;
ludovic.desroches@atmel.com54971592015-07-29 16:22:46 +02001101 bool switch_base_clk = false;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001102
Russell King1650d0c2014-04-25 12:58:50 +01001103 host->mmc->actual_clock = 0;
1104
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001105 sdhci_writew(host, 0, SDHCI_CLOCK_CONTROL);
ludovic.desroches@atmel.comaf951762015-09-17 10:16:19 +02001106 if (host->quirks2 & SDHCI_QUIRK2_NEED_DELAY_AFTER_INT_CLK_RST)
1107 mdelay(1);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001108
1109 if (clock == 0)
Russell King373073e2014-04-25 12:58:45 +01001110 return;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001111
Zhangfei Gao85105c52010-08-06 07:10:01 +08001112 if (host->version >= SDHCI_SPEC_300) {
Russell Kingda91a8f2014-04-25 13:00:12 +01001113 if (host->preset_enabled) {
Kevin Liu52983382013-01-31 11:31:37 +08001114 u16 pre_val;
1115
1116 clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL);
1117 pre_val = sdhci_get_preset_value(host);
1118 div = (pre_val & SDHCI_PRESET_SDCLK_FREQ_MASK)
1119 >> SDHCI_PRESET_SDCLK_FREQ_SHIFT;
1120 if (host->clk_mul &&
1121 (pre_val & SDHCI_PRESET_CLKGEN_SEL_MASK)) {
1122 clk = SDHCI_PROG_CLOCK_MODE;
1123 real_div = div + 1;
1124 clk_mul = host->clk_mul;
1125 } else {
1126 real_div = max_t(int, 1, div << 1);
1127 }
1128 goto clock_set;
1129 }
1130
Arindam Nathc3ed3872011-05-05 12:19:06 +05301131 /*
1132 * Check if the Host Controller supports Programmable Clock
1133 * Mode.
1134 */
1135 if (host->clk_mul) {
Kevin Liu52983382013-01-31 11:31:37 +08001136 for (div = 1; div <= 1024; div++) {
1137 if ((host->max_clk * host->clk_mul / div)
1138 <= clock)
1139 break;
Zhangfei Gao85105c52010-08-06 07:10:01 +08001140 }
ludovic.desroches@atmel.com54971592015-07-29 16:22:46 +02001141 if ((host->max_clk * host->clk_mul / div) <= clock) {
1142 /*
1143 * Set Programmable Clock Mode in the Clock
1144 * Control register.
1145 */
1146 clk = SDHCI_PROG_CLOCK_MODE;
1147 real_div = div;
1148 clk_mul = host->clk_mul;
1149 div--;
1150 } else {
1151 /*
1152 * Divisor can be too small to reach clock
1153 * speed requirement. Then use the base clock.
1154 */
1155 switch_base_clk = true;
1156 }
1157 }
1158
1159 if (!host->clk_mul || switch_base_clk) {
Arindam Nathc3ed3872011-05-05 12:19:06 +05301160 /* Version 3.00 divisors must be a multiple of 2. */
1161 if (host->max_clk <= clock)
1162 div = 1;
1163 else {
1164 for (div = 2; div < SDHCI_MAX_DIV_SPEC_300;
1165 div += 2) {
1166 if ((host->max_clk / div) <= clock)
1167 break;
1168 }
1169 }
Giuseppe CAVALLAROdf162192011-11-04 13:53:19 +01001170 real_div = div;
Arindam Nathc3ed3872011-05-05 12:19:06 +05301171 div >>= 1;
Suneel Garapatid1955c32015-06-09 13:01:50 +05301172 if ((host->quirks2 & SDHCI_QUIRK2_CLOCK_DIV_ZERO_BROKEN)
1173 && !div && host->max_clk <= 25000000)
1174 div = 1;
Zhangfei Gao85105c52010-08-06 07:10:01 +08001175 }
1176 } else {
1177 /* Version 2.00 divisors must be a power of 2. */
Zhangfei Gao03975262010-09-20 15:15:18 -04001178 for (div = 1; div < SDHCI_MAX_DIV_SPEC_200; div *= 2) {
Zhangfei Gao85105c52010-08-06 07:10:01 +08001179 if ((host->max_clk / div) <= clock)
1180 break;
1181 }
Giuseppe CAVALLAROdf162192011-11-04 13:53:19 +01001182 real_div = div;
Arindam Nathc3ed3872011-05-05 12:19:06 +05301183 div >>= 1;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001184 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001185
Kevin Liu52983382013-01-31 11:31:37 +08001186clock_set:
Aisheng Dong03d6f5f2014-08-27 15:26:32 +08001187 if (real_div)
Giuseppe CAVALLAROdf162192011-11-04 13:53:19 +01001188 host->mmc->actual_clock = (host->max_clk * clk_mul) / real_div;
Arindam Nathc3ed3872011-05-05 12:19:06 +05301189 clk |= (div & SDHCI_DIV_MASK) << SDHCI_DIVIDER_SHIFT;
Zhangfei Gao85105c52010-08-06 07:10:01 +08001190 clk |= ((div & SDHCI_DIV_HI_MASK) >> SDHCI_DIV_MASK_LEN)
1191 << SDHCI_DIVIDER_HI_SHIFT;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001192 clk |= SDHCI_CLOCK_INT_EN;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001193 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001194
Chris Ball27f6cb12009-09-22 16:45:31 -07001195 /* Wait max 20 ms */
1196 timeout = 20;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001197 while (!((clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL))
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001198 & SDHCI_CLOCK_INT_STABLE)) {
1199 if (timeout == 0) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01001200 pr_err("%s: Internal clock never stabilised.\n",
1201 mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -08001202 sdhci_dumpregs(host);
1203 return;
1204 }
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001205 timeout--;
1206 mdelay(1);
1207 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001208
1209 clk |= SDHCI_CLOCK_CARD_EN;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001210 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001211}
Russell King17710592014-04-25 12:58:55 +01001212EXPORT_SYMBOL_GPL(sdhci_set_clock);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001213
Russell King24fbb3c2014-04-25 13:00:06 +01001214static void sdhci_set_power(struct sdhci_host *host, unsigned char mode,
1215 unsigned short vdd)
Pierre Ossman146ad662006-06-30 02:22:23 -07001216{
Tim Kryger3a48edc2014-06-13 10:13:56 -07001217 struct mmc_host *mmc = host->mmc;
Giuseppe Cavallaro83642482010-09-28 10:41:28 +02001218 u8 pwr = 0;
Pierre Ossman146ad662006-06-30 02:22:23 -07001219
Russell King24fbb3c2014-04-25 13:00:06 +01001220 if (mode != MMC_POWER_OFF) {
1221 switch (1 << vdd) {
Pierre Ossmanae628902009-05-03 20:45:03 +02001222 case MMC_VDD_165_195:
1223 pwr = SDHCI_POWER_180;
1224 break;
1225 case MMC_VDD_29_30:
1226 case MMC_VDD_30_31:
1227 pwr = SDHCI_POWER_300;
1228 break;
1229 case MMC_VDD_32_33:
1230 case MMC_VDD_33_34:
1231 pwr = SDHCI_POWER_330;
1232 break;
1233 default:
Adrian Hunter9d5de932015-11-26 14:00:46 +02001234 WARN(1, "%s: Invalid vdd %#x\n",
1235 mmc_hostname(host->mmc), vdd);
1236 break;
Pierre Ossmanae628902009-05-03 20:45:03 +02001237 }
1238 }
1239
1240 if (host->pwr == pwr)
Russell Kinge921a8b2014-04-25 13:00:01 +01001241 return;
Pierre Ossman146ad662006-06-30 02:22:23 -07001242
Pierre Ossmanae628902009-05-03 20:45:03 +02001243 host->pwr = pwr;
1244
1245 if (pwr == 0) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001246 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
Adrian Hunterf0710a52013-05-06 12:17:32 +03001247 if (host->quirks2 & SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON)
1248 sdhci_runtime_pm_bus_off(host);
Russell King24fbb3c2014-04-25 13:00:06 +01001249 vdd = 0;
Russell Kinge921a8b2014-04-25 13:00:01 +01001250 } else {
1251 /*
1252 * Spec says that we should clear the power reg before setting
1253 * a new value. Some controllers don't seem to like this though.
1254 */
1255 if (!(host->quirks & SDHCI_QUIRK_SINGLE_POWER_WRITE))
1256 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
Darren Salt9e9dc5f2007-01-27 15:32:31 +01001257
Russell Kinge921a8b2014-04-25 13:00:01 +01001258 /*
1259 * At least the Marvell CaFe chip gets confused if we set the
1260 * voltage and set turn on power at the same time, so set the
1261 * voltage first.
1262 */
1263 if (host->quirks & SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER)
1264 sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL);
Pierre Ossman146ad662006-06-30 02:22:23 -07001265
Russell Kinge921a8b2014-04-25 13:00:01 +01001266 pwr |= SDHCI_POWER_ON;
1267
Pierre Ossmanae628902009-05-03 20:45:03 +02001268 sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL);
1269
Russell Kinge921a8b2014-04-25 13:00:01 +01001270 if (host->quirks2 & SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON)
1271 sdhci_runtime_pm_bus_on(host);
Andres Salomone08c1692008-07-04 10:00:03 -07001272
Russell Kinge921a8b2014-04-25 13:00:01 +01001273 /*
1274 * Some controllers need an extra 10ms delay of 10ms before
1275 * they can apply clock after applying power
1276 */
1277 if (host->quirks & SDHCI_QUIRK_DELAY_AFTER_POWER)
1278 mdelay(10);
1279 }
Jisheng Zhang918f4cb2015-12-11 21:36:29 +08001280
1281 if (!IS_ERR(mmc->supply.vmmc)) {
1282 spin_unlock_irq(&host->lock);
1283 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, vdd);
1284 spin_lock_irq(&host->lock);
1285 }
Pierre Ossman146ad662006-06-30 02:22:23 -07001286}
1287
Pierre Ossmand129bce2006-03-24 03:18:17 -08001288/*****************************************************************************\
1289 * *
1290 * MMC callbacks *
1291 * *
1292\*****************************************************************************/
1293
1294static void sdhci_request(struct mmc_host *mmc, struct mmc_request *mrq)
1295{
1296 struct sdhci_host *host;
Shawn Guo505a8682012-12-11 15:23:42 +08001297 int present;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001298 unsigned long flags;
1299
1300 host = mmc_priv(mmc);
1301
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001302 sdhci_runtime_pm_get(host);
1303
Scott Branden04e079cf2015-03-10 11:35:10 -07001304 /* Firstly check card presence */
Adrian Hunter8d28b7a2016-02-09 16:12:36 +02001305 present = mmc->ops->get_cd(mmc);
Krzysztof Kozlowski28367662015-01-05 10:50:15 +01001306
Pierre Ossmand129bce2006-03-24 03:18:17 -08001307 spin_lock_irqsave(&host->lock, flags);
1308
1309 WARN_ON(host->mrq != NULL);
1310
Pierre Ossmanf9134312008-12-21 17:01:48 +01001311#ifndef SDHCI_USE_LEDS_CLASS
Pierre Ossmand129bce2006-03-24 03:18:17 -08001312 sdhci_activate_led(host);
Pierre Ossman2f730fe2008-03-17 10:29:38 +01001313#endif
Andrei Warkentine89d4562011-05-23 15:06:37 -05001314
1315 /*
1316 * Ensure we don't send the STOP for non-SET_BLOCK_COUNTED
1317 * requests if Auto-CMD12 is enabled.
1318 */
1319 if (!mrq->sbc && (host->flags & SDHCI_AUTO_CMD12)) {
Jerry Huangc4512f72010-08-10 18:01:59 -07001320 if (mrq->stop) {
1321 mrq->data->stop = NULL;
1322 mrq->stop = NULL;
1323 }
1324 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001325
1326 host->mrq = mrq;
1327
Anton Vorontsov68d1fb72009-03-17 00:13:52 +03001328 if (!present || host->flags & SDHCI_DEVICE_DEAD) {
Pierre Ossman17b04292007-07-22 22:18:46 +02001329 host->mrq->cmd->error = -ENOMEDIUM;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001330 tasklet_schedule(&host->finish_tasklet);
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05301331 } else {
Andrei Warkentin8edf63712011-05-23 15:06:39 -05001332 if (mrq->sbc && !(host->flags & SDHCI_AUTO_CMD23))
Andrei Warkentine89d4562011-05-23 15:06:37 -05001333 sdhci_send_command(host, mrq->sbc);
1334 else
1335 sdhci_send_command(host, mrq->cmd);
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05301336 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001337
Pierre Ossman5f25a662006-10-04 02:15:39 -07001338 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -08001339 spin_unlock_irqrestore(&host->lock, flags);
1340}
1341
Russell King2317f562014-04-25 12:57:07 +01001342void sdhci_set_bus_width(struct sdhci_host *host, int width)
1343{
1344 u8 ctrl;
1345
1346 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
1347 if (width == MMC_BUS_WIDTH_8) {
1348 ctrl &= ~SDHCI_CTRL_4BITBUS;
1349 if (host->version >= SDHCI_SPEC_300)
1350 ctrl |= SDHCI_CTRL_8BITBUS;
1351 } else {
1352 if (host->version >= SDHCI_SPEC_300)
1353 ctrl &= ~SDHCI_CTRL_8BITBUS;
1354 if (width == MMC_BUS_WIDTH_4)
1355 ctrl |= SDHCI_CTRL_4BITBUS;
1356 else
1357 ctrl &= ~SDHCI_CTRL_4BITBUS;
1358 }
1359 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
1360}
1361EXPORT_SYMBOL_GPL(sdhci_set_bus_width);
1362
Russell King96d7b782014-04-25 12:59:26 +01001363void sdhci_set_uhs_signaling(struct sdhci_host *host, unsigned timing)
1364{
1365 u16 ctrl_2;
1366
1367 ctrl_2 = sdhci_readw(host, SDHCI_HOST_CONTROL2);
1368 /* Select Bus Speed Mode for host */
1369 ctrl_2 &= ~SDHCI_CTRL_UHS_MASK;
1370 if ((timing == MMC_TIMING_MMC_HS200) ||
1371 (timing == MMC_TIMING_UHS_SDR104))
1372 ctrl_2 |= SDHCI_CTRL_UHS_SDR104;
1373 else if (timing == MMC_TIMING_UHS_SDR12)
1374 ctrl_2 |= SDHCI_CTRL_UHS_SDR12;
1375 else if (timing == MMC_TIMING_UHS_SDR25)
1376 ctrl_2 |= SDHCI_CTRL_UHS_SDR25;
1377 else if (timing == MMC_TIMING_UHS_SDR50)
1378 ctrl_2 |= SDHCI_CTRL_UHS_SDR50;
1379 else if ((timing == MMC_TIMING_UHS_DDR50) ||
1380 (timing == MMC_TIMING_MMC_DDR52))
1381 ctrl_2 |= SDHCI_CTRL_UHS_DDR50;
Adrian Huntere9fb05d2014-11-06 15:19:06 +02001382 else if (timing == MMC_TIMING_MMC_HS400)
1383 ctrl_2 |= SDHCI_CTRL_HS400; /* Non-standard */
Russell King96d7b782014-04-25 12:59:26 +01001384 sdhci_writew(host, ctrl_2, SDHCI_HOST_CONTROL2);
1385}
1386EXPORT_SYMBOL_GPL(sdhci_set_uhs_signaling);
1387
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001388static void sdhci_do_set_ios(struct sdhci_host *host, struct mmc_ios *ios)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001389{
Pierre Ossmand129bce2006-03-24 03:18:17 -08001390 unsigned long flags;
1391 u8 ctrl;
Tim Kryger3a48edc2014-06-13 10:13:56 -07001392 struct mmc_host *mmc = host->mmc;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001393
Pierre Ossmand129bce2006-03-24 03:18:17 -08001394 spin_lock_irqsave(&host->lock, flags);
1395
Adrian Hunterceb61432011-12-27 15:48:41 +02001396 if (host->flags & SDHCI_DEVICE_DEAD) {
1397 spin_unlock_irqrestore(&host->lock, flags);
Tim Kryger3a48edc2014-06-13 10:13:56 -07001398 if (!IS_ERR(mmc->supply.vmmc) &&
1399 ios->power_mode == MMC_POWER_OFF)
Markus Mayer4e743f12014-07-03 13:27:42 -07001400 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, 0);
Adrian Hunterceb61432011-12-27 15:48:41 +02001401 return;
1402 }
Pierre Ossman1e728592008-04-16 19:13:13 +02001403
Pierre Ossmand129bce2006-03-24 03:18:17 -08001404 /*
1405 * Reset the chip on each power off.
1406 * Should clear out any weird states.
1407 */
1408 if (ios->power_mode == MMC_POWER_OFF) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001409 sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE);
Anton Vorontsov7260cf52009-03-17 00:13:48 +03001410 sdhci_reinit(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001411 }
1412
Kevin Liu52983382013-01-31 11:31:37 +08001413 if (host->version >= SDHCI_SPEC_300 &&
Dong Aisheng372c4632013-10-18 19:48:50 +08001414 (ios->power_mode == MMC_POWER_UP) &&
1415 !(host->quirks2 & SDHCI_QUIRK2_PRESET_VALUE_BROKEN))
Kevin Liu52983382013-01-31 11:31:37 +08001416 sdhci_enable_preset_value(host, false);
1417
Russell King373073e2014-04-25 12:58:45 +01001418 if (!ios->clock || ios->clock != host->clock) {
Russell King17710592014-04-25 12:58:55 +01001419 host->ops->set_clock(host, ios->clock);
Russell King373073e2014-04-25 12:58:45 +01001420 host->clock = ios->clock;
Aisheng Dong03d6f5f2014-08-27 15:26:32 +08001421
1422 if (host->quirks & SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK &&
1423 host->clock) {
1424 host->timeout_clk = host->mmc->actual_clock ?
1425 host->mmc->actual_clock / 1000 :
1426 host->clock / 1000;
1427 host->mmc->max_busy_timeout =
1428 host->ops->get_max_timeout_count ?
1429 host->ops->get_max_timeout_count(host) :
1430 1 << 27;
1431 host->mmc->max_busy_timeout /= host->timeout_clk;
1432 }
Russell King373073e2014-04-25 12:58:45 +01001433 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001434
Russell King24fbb3c2014-04-25 13:00:06 +01001435 sdhci_set_power(host, ios->power_mode, ios->vdd);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001436
Philip Rakity643a81f2010-09-23 08:24:32 -07001437 if (host->ops->platform_send_init_74_clocks)
1438 host->ops->platform_send_init_74_clocks(host, ios->power_mode);
1439
Russell King2317f562014-04-25 12:57:07 +01001440 host->ops->set_bus_width(host, ios->bus_width);
Philip Rakity15ec4462010-11-19 16:48:39 -05001441
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001442 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
Pierre Ossmancd9277c2007-02-18 12:07:47 +01001443
Philip Rakity3ab9c8d2010-10-06 11:57:23 -07001444 if ((ios->timing == MMC_TIMING_SD_HS ||
1445 ios->timing == MMC_TIMING_MMC_HS)
1446 && !(host->quirks & SDHCI_QUIRK_NO_HISPD_BIT))
Pierre Ossmancd9277c2007-02-18 12:07:47 +01001447 ctrl |= SDHCI_CTRL_HISPD;
1448 else
1449 ctrl &= ~SDHCI_CTRL_HISPD;
1450
Arindam Nathd6d50a12011-05-05 12:18:59 +05301451 if (host->version >= SDHCI_SPEC_300) {
Arindam Nath49c468f2011-05-05 12:19:01 +05301452 u16 clk, ctrl_2;
Arindam Nath49c468f2011-05-05 12:19:01 +05301453
1454 /* In case of UHS-I modes, set High Speed Enable */
Adrian Huntere9fb05d2014-11-06 15:19:06 +02001455 if ((ios->timing == MMC_TIMING_MMC_HS400) ||
1456 (ios->timing == MMC_TIMING_MMC_HS200) ||
Seungwon Jeonbb8175a2014-03-14 21:12:48 +09001457 (ios->timing == MMC_TIMING_MMC_DDR52) ||
Girish K S069c9f12012-01-06 09:56:39 +05301458 (ios->timing == MMC_TIMING_UHS_SDR50) ||
Arindam Nath49c468f2011-05-05 12:19:01 +05301459 (ios->timing == MMC_TIMING_UHS_SDR104) ||
1460 (ios->timing == MMC_TIMING_UHS_DDR50) ||
Alexander Elbsdd8df172012-01-03 23:26:53 -05001461 (ios->timing == MMC_TIMING_UHS_SDR25))
Arindam Nath49c468f2011-05-05 12:19:01 +05301462 ctrl |= SDHCI_CTRL_HISPD;
Arindam Nathd6d50a12011-05-05 12:18:59 +05301463
Russell Kingda91a8f2014-04-25 13:00:12 +01001464 if (!host->preset_enabled) {
Arindam Nath758535c2011-05-05 12:19:00 +05301465 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Arindam Nathd6d50a12011-05-05 12:18:59 +05301466 /*
1467 * We only need to set Driver Strength if the
1468 * preset value enable is not set.
1469 */
Russell Kingda91a8f2014-04-25 13:00:12 +01001470 ctrl_2 = sdhci_readw(host, SDHCI_HOST_CONTROL2);
Arindam Nathd6d50a12011-05-05 12:18:59 +05301471 ctrl_2 &= ~SDHCI_CTRL_DRV_TYPE_MASK;
1472 if (ios->drv_type == MMC_SET_DRIVER_TYPE_A)
1473 ctrl_2 |= SDHCI_CTRL_DRV_TYPE_A;
Petri Gynther43e943a2015-05-20 14:35:00 -07001474 else if (ios->drv_type == MMC_SET_DRIVER_TYPE_B)
1475 ctrl_2 |= SDHCI_CTRL_DRV_TYPE_B;
Arindam Nathd6d50a12011-05-05 12:18:59 +05301476 else if (ios->drv_type == MMC_SET_DRIVER_TYPE_C)
1477 ctrl_2 |= SDHCI_CTRL_DRV_TYPE_C;
Petri Gynther43e943a2015-05-20 14:35:00 -07001478 else if (ios->drv_type == MMC_SET_DRIVER_TYPE_D)
1479 ctrl_2 |= SDHCI_CTRL_DRV_TYPE_D;
1480 else {
Marek Vasut2e4456f2015-11-18 10:47:02 +01001481 pr_warn("%s: invalid driver type, default to driver type B\n",
1482 mmc_hostname(mmc));
Petri Gynther43e943a2015-05-20 14:35:00 -07001483 ctrl_2 |= SDHCI_CTRL_DRV_TYPE_B;
1484 }
Arindam Nathd6d50a12011-05-05 12:18:59 +05301485
1486 sdhci_writew(host, ctrl_2, SDHCI_HOST_CONTROL2);
Arindam Nath758535c2011-05-05 12:19:00 +05301487 } else {
1488 /*
1489 * According to SDHC Spec v3.00, if the Preset Value
1490 * Enable in the Host Control 2 register is set, we
1491 * need to reset SD Clock Enable before changing High
1492 * Speed Enable to avoid generating clock gliches.
1493 */
Arindam Nath758535c2011-05-05 12:19:00 +05301494
1495 /* Reset SD Clock Enable */
1496 clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL);
1497 clk &= ~SDHCI_CLOCK_CARD_EN;
1498 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
1499
1500 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
1501
1502 /* Re-enable SD Clock */
Russell King17710592014-04-25 12:58:55 +01001503 host->ops->set_clock(host, host->clock);
Arindam Nathd6d50a12011-05-05 12:18:59 +05301504 }
Arindam Nath49c468f2011-05-05 12:19:01 +05301505
Arindam Nath49c468f2011-05-05 12:19:01 +05301506 /* Reset SD Clock Enable */
1507 clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL);
1508 clk &= ~SDHCI_CLOCK_CARD_EN;
1509 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
1510
Russell King96d7b782014-04-25 12:59:26 +01001511 host->ops->set_uhs_signaling(host, ios->timing);
Russell Kingd975f122014-04-25 12:59:31 +01001512 host->timing = ios->timing;
Arindam Nath49c468f2011-05-05 12:19:01 +05301513
Kevin Liu52983382013-01-31 11:31:37 +08001514 if (!(host->quirks2 & SDHCI_QUIRK2_PRESET_VALUE_BROKEN) &&
1515 ((ios->timing == MMC_TIMING_UHS_SDR12) ||
1516 (ios->timing == MMC_TIMING_UHS_SDR25) ||
1517 (ios->timing == MMC_TIMING_UHS_SDR50) ||
1518 (ios->timing == MMC_TIMING_UHS_SDR104) ||
Jisheng Zhang0dafa602015-08-18 16:21:39 +08001519 (ios->timing == MMC_TIMING_UHS_DDR50) ||
1520 (ios->timing == MMC_TIMING_MMC_DDR52))) {
Kevin Liu52983382013-01-31 11:31:37 +08001521 u16 preset;
1522
1523 sdhci_enable_preset_value(host, true);
1524 preset = sdhci_get_preset_value(host);
1525 ios->drv_type = (preset & SDHCI_PRESET_DRV_MASK)
1526 >> SDHCI_PRESET_DRV_SHIFT;
1527 }
1528
Arindam Nath49c468f2011-05-05 12:19:01 +05301529 /* Re-enable SD Clock */
Russell King17710592014-04-25 12:58:55 +01001530 host->ops->set_clock(host, host->clock);
Arindam Nath758535c2011-05-05 12:19:00 +05301531 } else
1532 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Arindam Nathd6d50a12011-05-05 12:18:59 +05301533
Leandro Dorileob8352262007-07-25 23:47:04 +02001534 /*
1535 * Some (ENE) controllers go apeshit on some ios operation,
1536 * signalling timeout and CRC errors even on CMD0. Resetting
1537 * it on each ios seems to solve the problem.
1538 */
Mohammad Jamalc63705e2015-01-13 20:47:24 +05301539 if (host->quirks & SDHCI_QUIRK_RESET_CMD_DATA_ON_IOS)
Russell King03231f92014-04-25 12:57:12 +01001540 sdhci_do_reset(host, SDHCI_RESET_CMD | SDHCI_RESET_DATA);
Leandro Dorileob8352262007-07-25 23:47:04 +02001541
Pierre Ossman5f25a662006-10-04 02:15:39 -07001542 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -08001543 spin_unlock_irqrestore(&host->lock, flags);
1544}
1545
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001546static void sdhci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
1547{
1548 struct sdhci_host *host = mmc_priv(mmc);
1549
1550 sdhci_runtime_pm_get(host);
1551 sdhci_do_set_ios(host, ios);
1552 sdhci_runtime_pm_put(host);
1553}
1554
Kevin Liu94144a42013-02-28 17:35:53 +08001555static int sdhci_do_get_cd(struct sdhci_host *host)
1556{
1557 int gpio_cd = mmc_gpio_get_cd(host->mmc);
1558
1559 if (host->flags & SDHCI_DEVICE_DEAD)
1560 return 0;
1561
Ivan T. Ivanov88af5652015-07-06 15:16:19 +03001562 /* If nonremovable, assume that the card is always present. */
1563 if (host->mmc->caps & MMC_CAP_NONREMOVABLE)
Kevin Liu94144a42013-02-28 17:35:53 +08001564 return 1;
1565
Ivan T. Ivanov88af5652015-07-06 15:16:19 +03001566 /*
1567 * Try slot gpio detect, if defined it take precedence
1568 * over build in controller functionality
1569 */
Kevin Liu94144a42013-02-28 17:35:53 +08001570 if (!IS_ERR_VALUE(gpio_cd))
1571 return !!gpio_cd;
1572
Ivan T. Ivanov88af5652015-07-06 15:16:19 +03001573 /* If polling, assume that the card is always present. */
1574 if (host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION)
1575 return 1;
1576
Kevin Liu94144a42013-02-28 17:35:53 +08001577 /* Host native card detect */
1578 return !!(sdhci_readl(host, SDHCI_PRESENT_STATE) & SDHCI_CARD_PRESENT);
1579}
1580
1581static int sdhci_get_cd(struct mmc_host *mmc)
1582{
1583 struct sdhci_host *host = mmc_priv(mmc);
1584 int ret;
1585
1586 sdhci_runtime_pm_get(host);
1587 ret = sdhci_do_get_cd(host);
1588 sdhci_runtime_pm_put(host);
1589 return ret;
1590}
1591
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001592static int sdhci_check_ro(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001593{
Pierre Ossmand129bce2006-03-24 03:18:17 -08001594 unsigned long flags;
Wolfram Sang2dfb5792010-10-15 12:21:01 +02001595 int is_readonly;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001596
Pierre Ossmand129bce2006-03-24 03:18:17 -08001597 spin_lock_irqsave(&host->lock, flags);
1598
Pierre Ossman1e728592008-04-16 19:13:13 +02001599 if (host->flags & SDHCI_DEVICE_DEAD)
Wolfram Sang2dfb5792010-10-15 12:21:01 +02001600 is_readonly = 0;
1601 else if (host->ops->get_ro)
1602 is_readonly = host->ops->get_ro(host);
Pierre Ossman1e728592008-04-16 19:13:13 +02001603 else
Wolfram Sang2dfb5792010-10-15 12:21:01 +02001604 is_readonly = !(sdhci_readl(host, SDHCI_PRESENT_STATE)
1605 & SDHCI_WRITE_PROTECT);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001606
1607 spin_unlock_irqrestore(&host->lock, flags);
1608
Wolfram Sang2dfb5792010-10-15 12:21:01 +02001609 /* This quirk needs to be replaced by a callback-function later */
1610 return host->quirks & SDHCI_QUIRK_INVERTED_WRITE_PROTECT ?
1611 !is_readonly : is_readonly;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001612}
1613
Takashi Iwai82b0e232011-04-21 20:26:38 +02001614#define SAMPLE_COUNT 5
1615
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001616static int sdhci_do_get_ro(struct sdhci_host *host)
Takashi Iwai82b0e232011-04-21 20:26:38 +02001617{
Takashi Iwai82b0e232011-04-21 20:26:38 +02001618 int i, ro_count;
1619
Takashi Iwai82b0e232011-04-21 20:26:38 +02001620 if (!(host->quirks & SDHCI_QUIRK_UNSTABLE_RO_DETECT))
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001621 return sdhci_check_ro(host);
Takashi Iwai82b0e232011-04-21 20:26:38 +02001622
1623 ro_count = 0;
1624 for (i = 0; i < SAMPLE_COUNT; i++) {
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001625 if (sdhci_check_ro(host)) {
Takashi Iwai82b0e232011-04-21 20:26:38 +02001626 if (++ro_count > SAMPLE_COUNT / 2)
1627 return 1;
1628 }
1629 msleep(30);
1630 }
1631 return 0;
1632}
1633
Adrian Hunter20758b62011-08-29 16:42:12 +03001634static void sdhci_hw_reset(struct mmc_host *mmc)
1635{
1636 struct sdhci_host *host = mmc_priv(mmc);
1637
1638 if (host->ops && host->ops->hw_reset)
1639 host->ops->hw_reset(host);
1640}
1641
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001642static int sdhci_get_ro(struct mmc_host *mmc)
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001643{
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001644 struct sdhci_host *host = mmc_priv(mmc);
1645 int ret;
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001646
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001647 sdhci_runtime_pm_get(host);
1648 ret = sdhci_do_get_ro(host);
1649 sdhci_runtime_pm_put(host);
1650 return ret;
1651}
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001652
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001653static void sdhci_enable_sdio_irq_nolock(struct sdhci_host *host, int enable)
1654{
Russell Kingbe138552014-04-25 12:55:56 +01001655 if (!(host->flags & SDHCI_DEVICE_DEAD)) {
Russell Kingef104332014-04-25 12:55:41 +01001656 if (enable)
Russell Kingb537f942014-04-25 12:56:01 +01001657 host->ier |= SDHCI_INT_CARD_INT;
Russell Kingef104332014-04-25 12:55:41 +01001658 else
Russell Kingb537f942014-04-25 12:56:01 +01001659 host->ier &= ~SDHCI_INT_CARD_INT;
1660
1661 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
1662 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Russell Kingef104332014-04-25 12:55:41 +01001663 mmiowb();
1664 }
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001665}
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001666
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001667static void sdhci_enable_sdio_irq(struct mmc_host *mmc, int enable)
1668{
1669 struct sdhci_host *host = mmc_priv(mmc);
1670 unsigned long flags;
1671
Russell Kingef104332014-04-25 12:55:41 +01001672 sdhci_runtime_pm_get(host);
1673
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001674 spin_lock_irqsave(&host->lock, flags);
Russell Kingef104332014-04-25 12:55:41 +01001675 if (enable)
1676 host->flags |= SDHCI_SDIO_IRQ_ENABLED;
1677 else
1678 host->flags &= ~SDHCI_SDIO_IRQ_ENABLED;
1679
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001680 sdhci_enable_sdio_irq_nolock(host, enable);
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001681 spin_unlock_irqrestore(&host->lock, flags);
Russell Kingef104332014-04-25 12:55:41 +01001682
1683 sdhci_runtime_pm_put(host);
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001684}
1685
Philip Rakity6231f3d2012-07-23 15:56:23 -07001686static int sdhci_do_start_signal_voltage_switch(struct sdhci_host *host,
Fabio Estevam21f59982013-02-14 10:35:03 -02001687 struct mmc_ios *ios)
Philip Rakity6231f3d2012-07-23 15:56:23 -07001688{
Tim Kryger3a48edc2014-06-13 10:13:56 -07001689 struct mmc_host *mmc = host->mmc;
Philip Rakity6231f3d2012-07-23 15:56:23 -07001690 u16 ctrl;
Kevin Liu20b92a32012-12-17 19:29:26 +08001691 int ret;
Philip Rakity6231f3d2012-07-23 15:56:23 -07001692
1693 /*
1694 * Signal Voltage Switching is only applicable for Host Controllers
1695 * v3.00 and above.
1696 */
1697 if (host->version < SDHCI_SPEC_300)
1698 return 0;
1699
Philip Rakity6231f3d2012-07-23 15:56:23 -07001700 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
Kevin Liu20b92a32012-12-17 19:29:26 +08001701
Fabio Estevam21f59982013-02-14 10:35:03 -02001702 switch (ios->signal_voltage) {
Kevin Liu20b92a32012-12-17 19:29:26 +08001703 case MMC_SIGNAL_VOLTAGE_330:
1704 /* Set 1.8V Signal Enable in the Host Control2 register to 0 */
1705 ctrl &= ~SDHCI_CTRL_VDD_180;
1706 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
1707
Tim Kryger3a48edc2014-06-13 10:13:56 -07001708 if (!IS_ERR(mmc->supply.vqmmc)) {
1709 ret = regulator_set_voltage(mmc->supply.vqmmc, 2700000,
1710 3600000);
Kevin Liu20b92a32012-12-17 19:29:26 +08001711 if (ret) {
Joe Perches66061102014-09-12 14:56:56 -07001712 pr_warn("%s: Switching to 3.3V signalling voltage failed\n",
1713 mmc_hostname(mmc));
Kevin Liu20b92a32012-12-17 19:29:26 +08001714 return -EIO;
1715 }
1716 }
1717 /* Wait for 5ms */
1718 usleep_range(5000, 5500);
1719
1720 /* 3.3V regulator output should be stable within 5 ms */
1721 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
1722 if (!(ctrl & SDHCI_CTRL_VDD_180))
1723 return 0;
1724
Joe Perches66061102014-09-12 14:56:56 -07001725 pr_warn("%s: 3.3V regulator output did not became stable\n",
1726 mmc_hostname(mmc));
Kevin Liu20b92a32012-12-17 19:29:26 +08001727
1728 return -EAGAIN;
1729 case MMC_SIGNAL_VOLTAGE_180:
Tim Kryger3a48edc2014-06-13 10:13:56 -07001730 if (!IS_ERR(mmc->supply.vqmmc)) {
1731 ret = regulator_set_voltage(mmc->supply.vqmmc,
Kevin Liu20b92a32012-12-17 19:29:26 +08001732 1700000, 1950000);
1733 if (ret) {
Joe Perches66061102014-09-12 14:56:56 -07001734 pr_warn("%s: Switching to 1.8V signalling voltage failed\n",
1735 mmc_hostname(mmc));
Kevin Liu20b92a32012-12-17 19:29:26 +08001736 return -EIO;
1737 }
1738 }
1739
1740 /*
1741 * Enable 1.8V Signal Enable in the Host Control2
1742 * register
1743 */
1744 ctrl |= SDHCI_CTRL_VDD_180;
1745 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
1746
Vincent Yang9d967a62015-01-20 16:05:15 +08001747 /* Some controller need to do more when switching */
1748 if (host->ops->voltage_switch)
1749 host->ops->voltage_switch(host);
1750
Kevin Liu20b92a32012-12-17 19:29:26 +08001751 /* 1.8V regulator output should be stable within 5 ms */
1752 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
1753 if (ctrl & SDHCI_CTRL_VDD_180)
1754 return 0;
1755
Joe Perches66061102014-09-12 14:56:56 -07001756 pr_warn("%s: 1.8V regulator output did not became stable\n",
1757 mmc_hostname(mmc));
Kevin Liu20b92a32012-12-17 19:29:26 +08001758
1759 return -EAGAIN;
1760 case MMC_SIGNAL_VOLTAGE_120:
Tim Kryger3a48edc2014-06-13 10:13:56 -07001761 if (!IS_ERR(mmc->supply.vqmmc)) {
1762 ret = regulator_set_voltage(mmc->supply.vqmmc, 1100000,
1763 1300000);
Kevin Liu20b92a32012-12-17 19:29:26 +08001764 if (ret) {
Joe Perches66061102014-09-12 14:56:56 -07001765 pr_warn("%s: Switching to 1.2V signalling voltage failed\n",
1766 mmc_hostname(mmc));
Kevin Liu20b92a32012-12-17 19:29:26 +08001767 return -EIO;
1768 }
1769 }
1770 return 0;
1771 default:
Arindam Nathf2119df2011-05-05 12:18:57 +05301772 /* No signal voltage switch required */
1773 return 0;
Kevin Liu20b92a32012-12-17 19:29:26 +08001774 }
Arindam Nathf2119df2011-05-05 12:18:57 +05301775}
1776
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001777static int sdhci_start_signal_voltage_switch(struct mmc_host *mmc,
Fabio Estevam21f59982013-02-14 10:35:03 -02001778 struct mmc_ios *ios)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001779{
1780 struct sdhci_host *host = mmc_priv(mmc);
1781 int err;
1782
1783 if (host->version < SDHCI_SPEC_300)
1784 return 0;
1785 sdhci_runtime_pm_get(host);
Fabio Estevam21f59982013-02-14 10:35:03 -02001786 err = sdhci_do_start_signal_voltage_switch(host, ios);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001787 sdhci_runtime_pm_put(host);
1788 return err;
1789}
1790
Kevin Liu20b92a32012-12-17 19:29:26 +08001791static int sdhci_card_busy(struct mmc_host *mmc)
1792{
1793 struct sdhci_host *host = mmc_priv(mmc);
1794 u32 present_state;
1795
1796 sdhci_runtime_pm_get(host);
1797 /* Check whether DAT[3:0] is 0000 */
1798 present_state = sdhci_readl(host, SDHCI_PRESENT_STATE);
1799 sdhci_runtime_pm_put(host);
1800
1801 return !(present_state & SDHCI_DATA_LVL_MASK);
1802}
1803
Adrian Hunterb5540ce2014-12-05 19:25:31 +02001804static int sdhci_prepare_hs400_tuning(struct mmc_host *mmc, struct mmc_ios *ios)
1805{
1806 struct sdhci_host *host = mmc_priv(mmc);
1807 unsigned long flags;
1808
1809 spin_lock_irqsave(&host->lock, flags);
1810 host->flags |= SDHCI_HS400_TUNING;
1811 spin_unlock_irqrestore(&host->lock, flags);
1812
1813 return 0;
1814}
1815
Girish K S069c9f12012-01-06 09:56:39 +05301816static int sdhci_execute_tuning(struct mmc_host *mmc, u32 opcode)
Arindam Nathb513ea22011-05-05 12:19:04 +05301817{
Russell King4b6f37d2014-04-25 12:59:36 +01001818 struct sdhci_host *host = mmc_priv(mmc);
Arindam Nathb513ea22011-05-05 12:19:04 +05301819 u16 ctrl;
Arindam Nathb513ea22011-05-05 12:19:04 +05301820 int tuning_loop_counter = MAX_TUNING_LOOP;
Arindam Nathb513ea22011-05-05 12:19:04 +05301821 int err = 0;
Aisheng Dong2b35bd82013-12-23 19:13:04 +08001822 unsigned long flags;
Adrian Hunter38e40bf2014-12-05 19:25:30 +02001823 unsigned int tuning_count = 0;
Adrian Hunterb5540ce2014-12-05 19:25:31 +02001824 bool hs400_tuning;
Arindam Nathb513ea22011-05-05 12:19:04 +05301825
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001826 sdhci_runtime_pm_get(host);
Aisheng Dong2b35bd82013-12-23 19:13:04 +08001827 spin_lock_irqsave(&host->lock, flags);
Arindam Nathb513ea22011-05-05 12:19:04 +05301828
Adrian Hunterb5540ce2014-12-05 19:25:31 +02001829 hs400_tuning = host->flags & SDHCI_HS400_TUNING;
1830 host->flags &= ~SDHCI_HS400_TUNING;
1831
Adrian Hunter38e40bf2014-12-05 19:25:30 +02001832 if (host->tuning_mode == SDHCI_TUNING_MODE_1)
1833 tuning_count = host->tuning_count;
1834
Arindam Nathb513ea22011-05-05 12:19:04 +05301835 /*
Weijun Yang9faac7b2015-10-04 12:04:12 +00001836 * The Host Controller needs tuning in case of SDR104 and DDR50
1837 * mode, and for SDR50 mode when Use Tuning for SDR50 is set in
1838 * the Capabilities register.
Girish K S069c9f12012-01-06 09:56:39 +05301839 * If the Host Controller supports the HS200 mode then the
1840 * tuning function has to be executed.
Arindam Nathb513ea22011-05-05 12:19:04 +05301841 */
Russell King4b6f37d2014-04-25 12:59:36 +01001842 switch (host->timing) {
Adrian Hunterb5540ce2014-12-05 19:25:31 +02001843 /* HS400 tuning is done in HS200 mode */
Adrian Huntere9fb05d2014-11-06 15:19:06 +02001844 case MMC_TIMING_MMC_HS400:
Adrian Hunterb5540ce2014-12-05 19:25:31 +02001845 err = -EINVAL;
1846 goto out_unlock;
1847
Russell King4b6f37d2014-04-25 12:59:36 +01001848 case MMC_TIMING_MMC_HS200:
Adrian Hunterb5540ce2014-12-05 19:25:31 +02001849 /*
1850 * Periodic re-tuning for HS400 is not expected to be needed, so
1851 * disable it here.
1852 */
1853 if (hs400_tuning)
1854 tuning_count = 0;
1855 break;
1856
Russell King4b6f37d2014-04-25 12:59:36 +01001857 case MMC_TIMING_UHS_SDR104:
Weijun Yang9faac7b2015-10-04 12:04:12 +00001858 case MMC_TIMING_UHS_DDR50:
Russell King4b6f37d2014-04-25 12:59:36 +01001859 break;
Girish K S069c9f12012-01-06 09:56:39 +05301860
Russell King4b6f37d2014-04-25 12:59:36 +01001861 case MMC_TIMING_UHS_SDR50:
1862 if (host->flags & SDHCI_SDR50_NEEDS_TUNING ||
1863 host->flags & SDHCI_SDR104_NEEDS_TUNING)
1864 break;
1865 /* FALLTHROUGH */
1866
1867 default:
Adrian Hunterd519c862014-12-05 19:25:29 +02001868 goto out_unlock;
Arindam Nathb513ea22011-05-05 12:19:04 +05301869 }
1870
Dong Aisheng45251812013-09-13 19:11:30 +08001871 if (host->ops->platform_execute_tuning) {
Aisheng Dong2b35bd82013-12-23 19:13:04 +08001872 spin_unlock_irqrestore(&host->lock, flags);
Dong Aisheng45251812013-09-13 19:11:30 +08001873 err = host->ops->platform_execute_tuning(host, opcode);
1874 sdhci_runtime_pm_put(host);
1875 return err;
1876 }
1877
Russell King4b6f37d2014-04-25 12:59:36 +01001878 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
1879 ctrl |= SDHCI_CTRL_EXEC_TUNING;
Vincent Yang67d0d042015-01-20 16:05:16 +08001880 if (host->quirks2 & SDHCI_QUIRK2_TUNING_WORK_AROUND)
1881 ctrl |= SDHCI_CTRL_TUNED_CLK;
Arindam Nathb513ea22011-05-05 12:19:04 +05301882 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
1883
1884 /*
1885 * As per the Host Controller spec v3.00, tuning command
1886 * generates Buffer Read Ready interrupt, so enable that.
1887 *
1888 * Note: The spec clearly says that when tuning sequence
1889 * is being performed, the controller does not generate
1890 * interrupts other than Buffer Read Ready interrupt. But
1891 * to make sure we don't hit a controller bug, we _only_
1892 * enable Buffer Read Ready interrupt here.
1893 */
Russell Kingb537f942014-04-25 12:56:01 +01001894 sdhci_writel(host, SDHCI_INT_DATA_AVAIL, SDHCI_INT_ENABLE);
1895 sdhci_writel(host, SDHCI_INT_DATA_AVAIL, SDHCI_SIGNAL_ENABLE);
Arindam Nathb513ea22011-05-05 12:19:04 +05301896
1897 /*
1898 * Issue CMD19 repeatedly till Execute Tuning is set to 0 or the number
1899 * of loops reaches 40 times or a timeout of 150ms occurs.
1900 */
Arindam Nathb513ea22011-05-05 12:19:04 +05301901 do {
1902 struct mmc_command cmd = {0};
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001903 struct mmc_request mrq = {NULL};
Arindam Nathb513ea22011-05-05 12:19:04 +05301904
Girish K S069c9f12012-01-06 09:56:39 +05301905 cmd.opcode = opcode;
Arindam Nathb513ea22011-05-05 12:19:04 +05301906 cmd.arg = 0;
1907 cmd.flags = MMC_RSP_R1 | MMC_CMD_ADTC;
1908 cmd.retries = 0;
1909 cmd.data = NULL;
1910 cmd.error = 0;
1911
Al Cooper7ce45e92014-05-09 11:34:07 -04001912 if (tuning_loop_counter-- == 0)
1913 break;
1914
Arindam Nathb513ea22011-05-05 12:19:04 +05301915 mrq.cmd = &cmd;
1916 host->mrq = &mrq;
1917
1918 /*
1919 * In response to CMD19, the card sends 64 bytes of tuning
1920 * block to the Host Controller. So we set the block size
1921 * to 64 here.
1922 */
Girish K S069c9f12012-01-06 09:56:39 +05301923 if (cmd.opcode == MMC_SEND_TUNING_BLOCK_HS200) {
1924 if (mmc->ios.bus_width == MMC_BUS_WIDTH_8)
1925 sdhci_writew(host, SDHCI_MAKE_BLKSZ(7, 128),
1926 SDHCI_BLOCK_SIZE);
1927 else if (mmc->ios.bus_width == MMC_BUS_WIDTH_4)
1928 sdhci_writew(host, SDHCI_MAKE_BLKSZ(7, 64),
1929 SDHCI_BLOCK_SIZE);
1930 } else {
1931 sdhci_writew(host, SDHCI_MAKE_BLKSZ(7, 64),
1932 SDHCI_BLOCK_SIZE);
1933 }
Arindam Nathb513ea22011-05-05 12:19:04 +05301934
1935 /*
1936 * The tuning block is sent by the card to the host controller.
1937 * So we set the TRNS_READ bit in the Transfer Mode register.
1938 * This also takes care of setting DMA Enable and Multi Block
1939 * Select in the same register to 0.
1940 */
1941 sdhci_writew(host, SDHCI_TRNS_READ, SDHCI_TRANSFER_MODE);
1942
1943 sdhci_send_command(host, &cmd);
1944
1945 host->cmd = NULL;
1946 host->mrq = NULL;
1947
Aisheng Dong2b35bd82013-12-23 19:13:04 +08001948 spin_unlock_irqrestore(&host->lock, flags);
Arindam Nathb513ea22011-05-05 12:19:04 +05301949 /* Wait for Buffer Read Ready interrupt */
1950 wait_event_interruptible_timeout(host->buf_ready_int,
1951 (host->tuning_done == 1),
1952 msecs_to_jiffies(50));
Aisheng Dong2b35bd82013-12-23 19:13:04 +08001953 spin_lock_irqsave(&host->lock, flags);
Arindam Nathb513ea22011-05-05 12:19:04 +05301954
1955 if (!host->tuning_done) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01001956 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 +05301957 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
1958 ctrl &= ~SDHCI_CTRL_TUNED_CLK;
1959 ctrl &= ~SDHCI_CTRL_EXEC_TUNING;
1960 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
1961
1962 err = -EIO;
1963 goto out;
1964 }
1965
1966 host->tuning_done = 0;
1967
1968 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
Nick Sanders197160d2014-05-06 18:52:38 -07001969
1970 /* eMMC spec does not require a delay between tuning cycles */
1971 if (opcode == MMC_SEND_TUNING_BLOCK)
1972 mdelay(1);
Arindam Nathb513ea22011-05-05 12:19:04 +05301973 } while (ctrl & SDHCI_CTRL_EXEC_TUNING);
1974
1975 /*
1976 * The Host Driver has exhausted the maximum number of loops allowed,
1977 * so use fixed sampling frequency.
1978 */
Al Cooper7ce45e92014-05-09 11:34:07 -04001979 if (tuning_loop_counter < 0) {
Arindam Nathb513ea22011-05-05 12:19:04 +05301980 ctrl &= ~SDHCI_CTRL_TUNED_CLK;
1981 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
Al Cooper7ce45e92014-05-09 11:34:07 -04001982 }
1983 if (!(ctrl & SDHCI_CTRL_TUNED_CLK)) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01001984 pr_info(DRIVER_NAME ": Tuning procedure failed, falling back to fixed sampling clock\n");
Dong Aisheng114f2bf2013-10-18 19:48:45 +08001985 err = -EIO;
Arindam Nathb513ea22011-05-05 12:19:04 +05301986 }
1987
1988out:
Adrian Hunter38e40bf2014-12-05 19:25:30 +02001989 if (tuning_count) {
Adrian Hunter66c39dfc2015-05-07 13:10:21 +03001990 /*
1991 * In case tuning fails, host controllers which support
1992 * re-tuning can try tuning again at a later time, when the
1993 * re-tuning timer expires. So for these controllers, we
1994 * return 0. Since there might be other controllers who do not
1995 * have this capability, we return error for them.
1996 */
1997 err = 0;
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05301998 }
1999
Adrian Hunter66c39dfc2015-05-07 13:10:21 +03002000 host->mmc->retune_period = err ? 0 : tuning_count;
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05302001
Russell Kingb537f942014-04-25 12:56:01 +01002002 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
2003 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Adrian Hunterd519c862014-12-05 19:25:29 +02002004out_unlock:
Aisheng Dong2b35bd82013-12-23 19:13:04 +08002005 spin_unlock_irqrestore(&host->lock, flags);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002006 sdhci_runtime_pm_put(host);
Arindam Nathb513ea22011-05-05 12:19:04 +05302007
2008 return err;
2009}
2010
Adrian Huntercb849642015-02-06 14:12:59 +02002011static int sdhci_select_drive_strength(struct mmc_card *card,
2012 unsigned int max_dtr, int host_drv,
2013 int card_drv, int *drv_type)
2014{
2015 struct sdhci_host *host = mmc_priv(card->host);
2016
2017 if (!host->ops->select_drive_strength)
2018 return 0;
2019
2020 return host->ops->select_drive_strength(host, card, max_dtr, host_drv,
2021 card_drv, drv_type);
2022}
Kevin Liu52983382013-01-31 11:31:37 +08002023
2024static void sdhci_enable_preset_value(struct sdhci_host *host, bool enable)
Arindam Nath4d55c5a2011-05-05 12:19:05 +05302025{
Arindam Nath4d55c5a2011-05-05 12:19:05 +05302026 /* Host Controller v3.00 defines preset value registers */
2027 if (host->version < SDHCI_SPEC_300)
2028 return;
2029
Arindam Nath4d55c5a2011-05-05 12:19:05 +05302030 /*
2031 * We only enable or disable Preset Value if they are not already
2032 * enabled or disabled respectively. Otherwise, we bail out.
2033 */
Russell Kingda91a8f2014-04-25 13:00:12 +01002034 if (host->preset_enabled != enable) {
2035 u16 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
2036
2037 if (enable)
2038 ctrl |= SDHCI_CTRL_PRESET_VAL_ENABLE;
2039 else
2040 ctrl &= ~SDHCI_CTRL_PRESET_VAL_ENABLE;
2041
Arindam Nath4d55c5a2011-05-05 12:19:05 +05302042 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
Russell Kingda91a8f2014-04-25 13:00:12 +01002043
2044 if (enable)
2045 host->flags |= SDHCI_PV_ENABLED;
2046 else
2047 host->flags &= ~SDHCI_PV_ENABLED;
2048
2049 host->preset_enabled = enable;
Arindam Nath4d55c5a2011-05-05 12:19:05 +05302050 }
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002051}
2052
Haibo Chen348487c2014-12-09 17:04:05 +08002053static void sdhci_post_req(struct mmc_host *mmc, struct mmc_request *mrq,
2054 int err)
2055{
2056 struct sdhci_host *host = mmc_priv(mmc);
2057 struct mmc_data *data = mrq->data;
2058
Russell Kingf48f0392016-01-26 13:40:32 +00002059 if (data->host_cookie != COOKIE_UNMAPPED)
Russell King771a3dc2016-01-26 13:40:53 +00002060 dma_unmap_sg(mmc_dev(host->mmc), data->sg, data->sg_len,
2061 data->flags & MMC_DATA_WRITE ?
2062 DMA_TO_DEVICE : DMA_FROM_DEVICE);
2063
2064 data->host_cookie = COOKIE_UNMAPPED;
Haibo Chen348487c2014-12-09 17:04:05 +08002065}
2066
Haibo Chen348487c2014-12-09 17:04:05 +08002067static void sdhci_pre_req(struct mmc_host *mmc, struct mmc_request *mrq,
2068 bool is_first_req)
2069{
2070 struct sdhci_host *host = mmc_priv(mmc);
2071
Haibo Chend31911b2015-08-25 10:02:11 +08002072 mrq->data->host_cookie = COOKIE_UNMAPPED;
Haibo Chen348487c2014-12-09 17:04:05 +08002073
2074 if (host->flags & SDHCI_REQ_USE_DMA)
Russell King94538e52016-01-26 13:40:37 +00002075 sdhci_pre_dma_transfer(host, mrq->data, COOKIE_PRE_MAPPED);
Haibo Chen348487c2014-12-09 17:04:05 +08002076}
2077
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002078static void sdhci_card_event(struct mmc_host *mmc)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002079{
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002080 struct sdhci_host *host = mmc_priv(mmc);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002081 unsigned long flags;
Krzysztof Kozlowski28367662015-01-05 10:50:15 +01002082 int present;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002083
Christian Daudt722e1282013-06-20 14:26:36 -07002084 /* First check if client has provided their own card event */
2085 if (host->ops->card_event)
2086 host->ops->card_event(host);
2087
Krzysztof Kozlowski28367662015-01-05 10:50:15 +01002088 present = sdhci_do_get_cd(host);
2089
Pierre Ossmand129bce2006-03-24 03:18:17 -08002090 spin_lock_irqsave(&host->lock, flags);
2091
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002092 /* Check host->mrq first in case we are runtime suspended */
Krzysztof Kozlowski28367662015-01-05 10:50:15 +01002093 if (host->mrq && !present) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05302094 pr_err("%s: Card removed during transfer!\n",
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002095 mmc_hostname(host->mmc));
Girish K Sa3c76eb2011-10-11 11:44:09 +05302096 pr_err("%s: Resetting controller.\n",
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002097 mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -08002098
Russell King03231f92014-04-25 12:57:12 +01002099 sdhci_do_reset(host, SDHCI_RESET_CMD);
2100 sdhci_do_reset(host, SDHCI_RESET_DATA);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002101
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002102 host->mrq->cmd->error = -ENOMEDIUM;
2103 tasklet_schedule(&host->finish_tasklet);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002104 }
2105
2106 spin_unlock_irqrestore(&host->lock, flags);
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002107}
2108
2109static const struct mmc_host_ops sdhci_ops = {
2110 .request = sdhci_request,
Haibo Chen348487c2014-12-09 17:04:05 +08002111 .post_req = sdhci_post_req,
2112 .pre_req = sdhci_pre_req,
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002113 .set_ios = sdhci_set_ios,
Kevin Liu94144a42013-02-28 17:35:53 +08002114 .get_cd = sdhci_get_cd,
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002115 .get_ro = sdhci_get_ro,
2116 .hw_reset = sdhci_hw_reset,
2117 .enable_sdio_irq = sdhci_enable_sdio_irq,
2118 .start_signal_voltage_switch = sdhci_start_signal_voltage_switch,
Adrian Hunterb5540ce2014-12-05 19:25:31 +02002119 .prepare_hs400_tuning = sdhci_prepare_hs400_tuning,
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002120 .execute_tuning = sdhci_execute_tuning,
Adrian Huntercb849642015-02-06 14:12:59 +02002121 .select_drive_strength = sdhci_select_drive_strength,
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002122 .card_event = sdhci_card_event,
Kevin Liu20b92a32012-12-17 19:29:26 +08002123 .card_busy = sdhci_card_busy,
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002124};
2125
2126/*****************************************************************************\
2127 * *
2128 * Tasklets *
2129 * *
2130\*****************************************************************************/
2131
Pierre Ossmand129bce2006-03-24 03:18:17 -08002132static void sdhci_tasklet_finish(unsigned long param)
2133{
2134 struct sdhci_host *host;
2135 unsigned long flags;
2136 struct mmc_request *mrq;
2137
2138 host = (struct sdhci_host*)param;
2139
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002140 spin_lock_irqsave(&host->lock, flags);
2141
Chris Ball0c9c99a2011-04-27 17:35:31 -04002142 /*
2143 * If this tasklet gets rescheduled while running, it will
2144 * be run again afterwards but without any active request.
2145 */
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002146 if (!host->mrq) {
2147 spin_unlock_irqrestore(&host->lock, flags);
Chris Ball0c9c99a2011-04-27 17:35:31 -04002148 return;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002149 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08002150
2151 del_timer(&host->timer);
2152
2153 mrq = host->mrq;
2154
Pierre Ossmand129bce2006-03-24 03:18:17 -08002155 /*
Russell King054cedf2016-01-26 13:40:42 +00002156 * Always unmap the data buffers if they were mapped by
2157 * sdhci_prepare_data() whenever we finish with a request.
2158 * This avoids leaking DMA mappings on error.
2159 */
2160 if (host->flags & SDHCI_REQ_USE_DMA) {
2161 struct mmc_data *data = mrq->data;
2162
2163 if (data && data->host_cookie == COOKIE_MAPPED) {
2164 dma_unmap_sg(mmc_dev(host->mmc), data->sg, data->sg_len,
2165 (data->flags & MMC_DATA_READ) ?
2166 DMA_FROM_DEVICE : DMA_TO_DEVICE);
2167 data->host_cookie = COOKIE_UNMAPPED;
2168 }
2169 }
2170
2171 /*
Pierre Ossmand129bce2006-03-24 03:18:17 -08002172 * The controller needs a reset of internal state machines
2173 * upon error conditions.
2174 */
Pierre Ossman1e728592008-04-16 19:13:13 +02002175 if (!(host->flags & SDHCI_DEVICE_DEAD) &&
Ben Dooksb7b4d342011-04-27 14:24:19 +01002176 ((mrq->cmd && mrq->cmd->error) ||
Andrew Gabbasovfce9d332014-10-01 07:14:08 -05002177 (mrq->sbc && mrq->sbc->error) ||
2178 (mrq->data && ((mrq->data->error && !mrq->data->stop) ||
2179 (mrq->data->stop && mrq->data->stop->error))) ||
2180 (host->quirks & SDHCI_QUIRK_RESET_AFTER_REQUEST))) {
Pierre Ossman645289d2006-06-30 02:22:33 -07002181
2182 /* Some controllers need this kick or reset won't work here */
Andy Shevchenko8213af32013-01-07 16:31:08 +02002183 if (host->quirks & SDHCI_QUIRK_CLOCK_BEFORE_RESET)
Pierre Ossman645289d2006-06-30 02:22:33 -07002184 /* This is to force an update */
Russell King17710592014-04-25 12:58:55 +01002185 host->ops->set_clock(host, host->clock);
Pierre Ossman645289d2006-06-30 02:22:33 -07002186
2187 /* Spec says we should do both at the same time, but Ricoh
2188 controllers do not like that. */
Russell King03231f92014-04-25 12:57:12 +01002189 sdhci_do_reset(host, SDHCI_RESET_CMD);
2190 sdhci_do_reset(host, SDHCI_RESET_DATA);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002191 }
2192
2193 host->mrq = NULL;
2194 host->cmd = NULL;
2195 host->data = NULL;
2196
Pierre Ossmanf9134312008-12-21 17:01:48 +01002197#ifndef SDHCI_USE_LEDS_CLASS
Pierre Ossmand129bce2006-03-24 03:18:17 -08002198 sdhci_deactivate_led(host);
Pierre Ossman2f730fe2008-03-17 10:29:38 +01002199#endif
Pierre Ossmand129bce2006-03-24 03:18:17 -08002200
Pierre Ossman5f25a662006-10-04 02:15:39 -07002201 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -08002202 spin_unlock_irqrestore(&host->lock, flags);
2203
2204 mmc_request_done(host->mmc, mrq);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002205 sdhci_runtime_pm_put(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002206}
2207
2208static void sdhci_timeout_timer(unsigned long data)
2209{
2210 struct sdhci_host *host;
2211 unsigned long flags;
2212
2213 host = (struct sdhci_host*)data;
2214
2215 spin_lock_irqsave(&host->lock, flags);
2216
2217 if (host->mrq) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01002218 pr_err("%s: Timeout waiting for hardware interrupt.\n",
2219 mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -08002220 sdhci_dumpregs(host);
2221
2222 if (host->data) {
Pierre Ossman17b04292007-07-22 22:18:46 +02002223 host->data->error = -ETIMEDOUT;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002224 sdhci_finish_data(host);
2225 } else {
2226 if (host->cmd)
Pierre Ossman17b04292007-07-22 22:18:46 +02002227 host->cmd->error = -ETIMEDOUT;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002228 else
Pierre Ossman17b04292007-07-22 22:18:46 +02002229 host->mrq->cmd->error = -ETIMEDOUT;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002230
2231 tasklet_schedule(&host->finish_tasklet);
2232 }
2233 }
2234
Pierre Ossman5f25a662006-10-04 02:15:39 -07002235 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -08002236 spin_unlock_irqrestore(&host->lock, flags);
2237}
2238
2239/*****************************************************************************\
2240 * *
2241 * Interrupt handling *
2242 * *
2243\*****************************************************************************/
2244
Adrian Hunter61541392014-09-24 10:27:27 +03002245static void sdhci_cmd_irq(struct sdhci_host *host, u32 intmask, u32 *mask)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002246{
2247 BUG_ON(intmask == 0);
2248
2249 if (!host->cmd) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01002250 pr_err("%s: Got command interrupt 0x%08x even though no command operation was in progress.\n",
2251 mmc_hostname(host->mmc), (unsigned)intmask);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002252 sdhci_dumpregs(host);
2253 return;
2254 }
2255
Russell Kingec014cb2016-01-26 13:39:39 +00002256 if (intmask & (SDHCI_INT_TIMEOUT | SDHCI_INT_CRC |
2257 SDHCI_INT_END_BIT | SDHCI_INT_INDEX)) {
2258 if (intmask & SDHCI_INT_TIMEOUT)
2259 host->cmd->error = -ETIMEDOUT;
2260 else
2261 host->cmd->error = -EILSEQ;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002262
Russell King71fcbda2016-01-26 13:39:45 +00002263 /*
2264 * If this command initiates a data phase and a response
2265 * CRC error is signalled, the card can start transferring
2266 * data - the card may have received the command without
2267 * error. We must not terminate the mmc_request early.
2268 *
2269 * If the card did not receive the command or returned an
2270 * error which prevented it sending data, the data phase
2271 * will time out.
2272 */
2273 if (host->cmd->data &&
2274 (intmask & (SDHCI_INT_CRC | SDHCI_INT_TIMEOUT)) ==
2275 SDHCI_INT_CRC) {
2276 host->cmd = NULL;
2277 return;
2278 }
2279
Pierre Ossmand129bce2006-03-24 03:18:17 -08002280 tasklet_schedule(&host->finish_tasklet);
Pierre Ossmane8095172008-07-25 01:09:08 +02002281 return;
2282 }
2283
2284 /*
2285 * The host can send and interrupt when the busy state has
2286 * ended, allowing us to wait without wasting CPU cycles.
2287 * Unfortunately this is overloaded on the "data complete"
2288 * interrupt, so we need to take some care when handling
2289 * it.
2290 *
2291 * Note: The 1.0 specification is a bit ambiguous about this
2292 * feature so there might be some problems with older
2293 * controllers.
2294 */
2295 if (host->cmd->flags & MMC_RSP_BUSY) {
2296 if (host->cmd->data)
Marek Vasut2e4456f2015-11-18 10:47:02 +01002297 DBG("Cannot wait for busy signal when also doing a data transfer");
Chanho Mine99783a2014-08-30 12:40:40 +09002298 else if (!(host->quirks & SDHCI_QUIRK_NO_BUSY_IRQ)
2299 && !host->busy_handle) {
2300 /* Mark that command complete before busy is ended */
2301 host->busy_handle = 1;
Pierre Ossmane8095172008-07-25 01:09:08 +02002302 return;
Chanho Mine99783a2014-08-30 12:40:40 +09002303 }
Ben Dooksf9454052009-02-20 20:33:08 +03002304
2305 /* The controller does not support the end-of-busy IRQ,
2306 * fall through and take the SDHCI_INT_RESPONSE */
Adrian Hunter61541392014-09-24 10:27:27 +03002307 } else if ((host->quirks2 & SDHCI_QUIRK2_STOP_WITH_TC) &&
2308 host->cmd->opcode == MMC_STOP_TRANSMISSION && !host->data) {
2309 *mask &= ~SDHCI_INT_DATA_END;
Pierre Ossmane8095172008-07-25 01:09:08 +02002310 }
2311
2312 if (intmask & SDHCI_INT_RESPONSE)
Pierre Ossman43b58b32007-07-25 23:15:27 +02002313 sdhci_finish_command(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002314}
2315
George G. Davis0957c332010-02-18 12:32:12 -05002316#ifdef CONFIG_MMC_DEBUG
Adrian Hunter08621b12014-11-04 12:42:38 +02002317static void sdhci_adma_show_error(struct sdhci_host *host)
Ben Dooks6882a8c2009-06-14 13:52:38 +01002318{
2319 const char *name = mmc_hostname(host->mmc);
Adrian Hunter1c3d5f62014-11-04 12:42:41 +02002320 void *desc = host->adma_table;
Ben Dooks6882a8c2009-06-14 13:52:38 +01002321
2322 sdhci_dumpregs(host);
2323
2324 while (true) {
Adrian Huntere57a5f62014-11-04 12:42:46 +02002325 struct sdhci_adma2_64_desc *dma_desc = desc;
Ben Dooks6882a8c2009-06-14 13:52:38 +01002326
Adrian Huntere57a5f62014-11-04 12:42:46 +02002327 if (host->flags & SDHCI_USE_64_BIT_DMA)
2328 DBG("%s: %p: DMA 0x%08x%08x, LEN 0x%04x, Attr=0x%02x\n",
2329 name, desc, le32_to_cpu(dma_desc->addr_hi),
2330 le32_to_cpu(dma_desc->addr_lo),
2331 le16_to_cpu(dma_desc->len),
2332 le16_to_cpu(dma_desc->cmd));
2333 else
2334 DBG("%s: %p: DMA 0x%08x, LEN 0x%04x, Attr=0x%02x\n",
2335 name, desc, le32_to_cpu(dma_desc->addr_lo),
2336 le16_to_cpu(dma_desc->len),
2337 le16_to_cpu(dma_desc->cmd));
Ben Dooks6882a8c2009-06-14 13:52:38 +01002338
Adrian Hunter76fe3792014-11-04 12:42:42 +02002339 desc += host->desc_sz;
Ben Dooks6882a8c2009-06-14 13:52:38 +01002340
Adrian Hunter05452302014-11-04 12:42:45 +02002341 if (dma_desc->cmd & cpu_to_le16(ADMA2_END))
Ben Dooks6882a8c2009-06-14 13:52:38 +01002342 break;
2343 }
2344}
2345#else
Adrian Hunter08621b12014-11-04 12:42:38 +02002346static void sdhci_adma_show_error(struct sdhci_host *host) { }
Ben Dooks6882a8c2009-06-14 13:52:38 +01002347#endif
2348
Pierre Ossmand129bce2006-03-24 03:18:17 -08002349static void sdhci_data_irq(struct sdhci_host *host, u32 intmask)
2350{
Girish K S069c9f12012-01-06 09:56:39 +05302351 u32 command;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002352 BUG_ON(intmask == 0);
2353
Arindam Nathb513ea22011-05-05 12:19:04 +05302354 /* CMD19 generates _only_ Buffer Read Ready interrupt */
2355 if (intmask & SDHCI_INT_DATA_AVAIL) {
Girish K S069c9f12012-01-06 09:56:39 +05302356 command = SDHCI_GET_CMD(sdhci_readw(host, SDHCI_COMMAND));
2357 if (command == MMC_SEND_TUNING_BLOCK ||
2358 command == MMC_SEND_TUNING_BLOCK_HS200) {
Arindam Nathb513ea22011-05-05 12:19:04 +05302359 host->tuning_done = 1;
2360 wake_up(&host->buf_ready_int);
2361 return;
2362 }
2363 }
2364
Pierre Ossmand129bce2006-03-24 03:18:17 -08002365 if (!host->data) {
2366 /*
Pierre Ossmane8095172008-07-25 01:09:08 +02002367 * The "data complete" interrupt is also used to
2368 * indicate that a busy state has ended. See comment
2369 * above in sdhci_cmd_irq().
Pierre Ossmand129bce2006-03-24 03:18:17 -08002370 */
Pierre Ossmane8095172008-07-25 01:09:08 +02002371 if (host->cmd && (host->cmd->flags & MMC_RSP_BUSY)) {
Matthieu CASTETc5abd5e2014-08-14 16:03:17 +02002372 if (intmask & SDHCI_INT_DATA_TIMEOUT) {
2373 host->cmd->error = -ETIMEDOUT;
2374 tasklet_schedule(&host->finish_tasklet);
2375 return;
2376 }
Pierre Ossmane8095172008-07-25 01:09:08 +02002377 if (intmask & SDHCI_INT_DATA_END) {
Chanho Mine99783a2014-08-30 12:40:40 +09002378 /*
2379 * Some cards handle busy-end interrupt
2380 * before the command completed, so make
2381 * sure we do things in the proper order.
2382 */
2383 if (host->busy_handle)
2384 sdhci_finish_command(host);
2385 else
2386 host->busy_handle = 1;
Pierre Ossmane8095172008-07-25 01:09:08 +02002387 return;
2388 }
2389 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08002390
Marek Vasut2e4456f2015-11-18 10:47:02 +01002391 pr_err("%s: Got data interrupt 0x%08x even though no data operation was in progress.\n",
2392 mmc_hostname(host->mmc), (unsigned)intmask);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002393 sdhci_dumpregs(host);
2394
2395 return;
2396 }
2397
2398 if (intmask & SDHCI_INT_DATA_TIMEOUT)
Pierre Ossman17b04292007-07-22 22:18:46 +02002399 host->data->error = -ETIMEDOUT;
Aries Lee22113ef2010-12-15 08:14:24 +01002400 else if (intmask & SDHCI_INT_DATA_END_BIT)
2401 host->data->error = -EILSEQ;
2402 else if ((intmask & SDHCI_INT_DATA_CRC) &&
2403 SDHCI_GET_CMD(sdhci_readw(host, SDHCI_COMMAND))
2404 != MMC_BUS_TEST_R)
Pierre Ossman17b04292007-07-22 22:18:46 +02002405 host->data->error = -EILSEQ;
Ben Dooks6882a8c2009-06-14 13:52:38 +01002406 else if (intmask & SDHCI_INT_ADMA_ERROR) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05302407 pr_err("%s: ADMA error\n", mmc_hostname(host->mmc));
Adrian Hunter08621b12014-11-04 12:42:38 +02002408 sdhci_adma_show_error(host);
Pierre Ossman2134a922008-06-28 18:28:51 +02002409 host->data->error = -EIO;
Haijun Zhanga4071fb2012-12-04 10:41:28 +08002410 if (host->ops->adma_workaround)
2411 host->ops->adma_workaround(host, intmask);
Ben Dooks6882a8c2009-06-14 13:52:38 +01002412 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08002413
Pierre Ossman17b04292007-07-22 22:18:46 +02002414 if (host->data->error)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002415 sdhci_finish_data(host);
2416 else {
Pierre Ossmana406f5a2006-07-02 16:50:59 +01002417 if (intmask & (SDHCI_INT_DATA_AVAIL | SDHCI_INT_SPACE_AVAIL))
Pierre Ossmand129bce2006-03-24 03:18:17 -08002418 sdhci_transfer_pio(host);
2419
Pierre Ossman6ba736a2007-05-13 22:39:23 +02002420 /*
2421 * We currently don't do anything fancy with DMA
2422 * boundaries, but as we can't disable the feature
2423 * we need to at least restart the transfer.
Mikko Vinnif6a03cb2011-04-12 09:36:18 -04002424 *
2425 * According to the spec sdhci_readl(host, SDHCI_DMA_ADDRESS)
2426 * should return a valid address to continue from, but as
2427 * some controllers are faulty, don't trust them.
Pierre Ossman6ba736a2007-05-13 22:39:23 +02002428 */
Mikko Vinnif6a03cb2011-04-12 09:36:18 -04002429 if (intmask & SDHCI_INT_DMA_END) {
2430 u32 dmastart, dmanow;
2431 dmastart = sg_dma_address(host->data->sg);
2432 dmanow = dmastart + host->data->bytes_xfered;
2433 /*
2434 * Force update to the next DMA block boundary.
2435 */
2436 dmanow = (dmanow &
2437 ~(SDHCI_DEFAULT_BOUNDARY_SIZE - 1)) +
2438 SDHCI_DEFAULT_BOUNDARY_SIZE;
2439 host->data->bytes_xfered = dmanow - dmastart;
2440 DBG("%s: DMA base 0x%08x, transferred 0x%06x bytes,"
2441 " next 0x%08x\n",
2442 mmc_hostname(host->mmc), dmastart,
2443 host->data->bytes_xfered, dmanow);
2444 sdhci_writel(host, dmanow, SDHCI_DMA_ADDRESS);
2445 }
Pierre Ossman6ba736a2007-05-13 22:39:23 +02002446
Pierre Ossmane538fbe2007-08-12 16:46:32 +02002447 if (intmask & SDHCI_INT_DATA_END) {
2448 if (host->cmd) {
2449 /*
2450 * Data managed to finish before the
2451 * command completed. Make sure we do
2452 * things in the proper order.
2453 */
2454 host->data_early = 1;
2455 } else {
2456 sdhci_finish_data(host);
2457 }
2458 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08002459 }
2460}
2461
David Howells7d12e782006-10-05 14:55:46 +01002462static irqreturn_t sdhci_irq(int irq, void *dev_id)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002463{
Russell King781e9892014-04-25 12:55:46 +01002464 irqreturn_t result = IRQ_NONE;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002465 struct sdhci_host *host = dev_id;
Russell King41005002014-04-25 12:55:36 +01002466 u32 intmask, mask, unexpected = 0;
Russell King781e9892014-04-25 12:55:46 +01002467 int max_loops = 16;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002468
2469 spin_lock(&host->lock);
2470
Russell Kingbe138552014-04-25 12:55:56 +01002471 if (host->runtime_suspended && !sdhci_sdio_irq_enabled(host)) {
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002472 spin_unlock(&host->lock);
Adrian Hunter655bca72014-03-11 10:09:36 +02002473 return IRQ_NONE;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002474 }
2475
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03002476 intmask = sdhci_readl(host, SDHCI_INT_STATUS);
Mark Lord62df67a52007-03-06 13:30:13 +01002477 if (!intmask || intmask == 0xffffffff) {
Pierre Ossmand129bce2006-03-24 03:18:17 -08002478 result = IRQ_NONE;
2479 goto out;
2480 }
2481
Russell King41005002014-04-25 12:55:36 +01002482 do {
2483 /* Clear selected interrupts. */
2484 mask = intmask & (SDHCI_INT_CMD_MASK | SDHCI_INT_DATA_MASK |
2485 SDHCI_INT_BUS_POWER);
2486 sdhci_writel(host, mask, SDHCI_INT_STATUS);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002487
Russell King41005002014-04-25 12:55:36 +01002488 DBG("*** %s got interrupt: 0x%08x\n",
2489 mmc_hostname(host->mmc), intmask);
2490
2491 if (intmask & (SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE)) {
2492 u32 present = sdhci_readl(host, SDHCI_PRESENT_STATE) &
2493 SDHCI_CARD_PRESENT;
2494
2495 /*
2496 * There is a observation on i.mx esdhc. INSERT
2497 * bit will be immediately set again when it gets
2498 * cleared, if a card is inserted. We have to mask
2499 * the irq to prevent interrupt storm which will
2500 * freeze the system. And the REMOVE gets the
2501 * same situation.
2502 *
2503 * More testing are needed here to ensure it works
2504 * for other platforms though.
2505 */
Russell Kingb537f942014-04-25 12:56:01 +01002506 host->ier &= ~(SDHCI_INT_CARD_INSERT |
2507 SDHCI_INT_CARD_REMOVE);
2508 host->ier |= present ? SDHCI_INT_CARD_REMOVE :
2509 SDHCI_INT_CARD_INSERT;
2510 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
2511 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Russell King41005002014-04-25 12:55:36 +01002512
2513 sdhci_writel(host, intmask & (SDHCI_INT_CARD_INSERT |
2514 SDHCI_INT_CARD_REMOVE), SDHCI_INT_STATUS);
Russell King3560db82014-04-25 12:55:51 +01002515
2516 host->thread_isr |= intmask & (SDHCI_INT_CARD_INSERT |
2517 SDHCI_INT_CARD_REMOVE);
2518 result = IRQ_WAKE_THREAD;
Russell King41005002014-04-25 12:55:36 +01002519 }
2520
2521 if (intmask & SDHCI_INT_CMD_MASK)
Adrian Hunter61541392014-09-24 10:27:27 +03002522 sdhci_cmd_irq(host, intmask & SDHCI_INT_CMD_MASK,
2523 &intmask);
Russell King41005002014-04-25 12:55:36 +01002524
2525 if (intmask & SDHCI_INT_DATA_MASK)
2526 sdhci_data_irq(host, intmask & SDHCI_INT_DATA_MASK);
2527
2528 if (intmask & SDHCI_INT_BUS_POWER)
2529 pr_err("%s: Card is consuming too much power!\n",
2530 mmc_hostname(host->mmc));
2531
Russell King781e9892014-04-25 12:55:46 +01002532 if (intmask & SDHCI_INT_CARD_INT) {
2533 sdhci_enable_sdio_irq_nolock(host, false);
2534 host->thread_isr |= SDHCI_INT_CARD_INT;
2535 result = IRQ_WAKE_THREAD;
2536 }
Russell King41005002014-04-25 12:55:36 +01002537
2538 intmask &= ~(SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE |
2539 SDHCI_INT_CMD_MASK | SDHCI_INT_DATA_MASK |
2540 SDHCI_INT_ERROR | SDHCI_INT_BUS_POWER |
2541 SDHCI_INT_CARD_INT);
2542
2543 if (intmask) {
2544 unexpected |= intmask;
2545 sdhci_writel(host, intmask, SDHCI_INT_STATUS);
2546 }
2547
Russell King781e9892014-04-25 12:55:46 +01002548 if (result == IRQ_NONE)
2549 result = IRQ_HANDLED;
Russell King41005002014-04-25 12:55:36 +01002550
2551 intmask = sdhci_readl(host, SDHCI_INT_STATUS);
Russell King41005002014-04-25 12:55:36 +01002552 } while (intmask && --max_loops);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002553out:
2554 spin_unlock(&host->lock);
2555
Alexander Stein6379b232012-03-14 09:52:10 +01002556 if (unexpected) {
2557 pr_err("%s: Unexpected interrupt 0x%08x.\n",
2558 mmc_hostname(host->mmc), unexpected);
2559 sdhci_dumpregs(host);
2560 }
Pierre Ossmanf75979b2007-09-04 07:59:18 +02002561
Pierre Ossmand129bce2006-03-24 03:18:17 -08002562 return result;
2563}
2564
Russell King781e9892014-04-25 12:55:46 +01002565static irqreturn_t sdhci_thread_irq(int irq, void *dev_id)
2566{
2567 struct sdhci_host *host = dev_id;
2568 unsigned long flags;
2569 u32 isr;
2570
2571 spin_lock_irqsave(&host->lock, flags);
2572 isr = host->thread_isr;
2573 host->thread_isr = 0;
2574 spin_unlock_irqrestore(&host->lock, flags);
2575
Russell King3560db82014-04-25 12:55:51 +01002576 if (isr & (SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE)) {
2577 sdhci_card_event(host->mmc);
2578 mmc_detect_change(host->mmc, msecs_to_jiffies(200));
2579 }
2580
Russell King781e9892014-04-25 12:55:46 +01002581 if (isr & SDHCI_INT_CARD_INT) {
2582 sdio_run_irqs(host->mmc);
2583
2584 spin_lock_irqsave(&host->lock, flags);
2585 if (host->flags & SDHCI_SDIO_IRQ_ENABLED)
2586 sdhci_enable_sdio_irq_nolock(host, true);
2587 spin_unlock_irqrestore(&host->lock, flags);
2588 }
2589
2590 return isr ? IRQ_HANDLED : IRQ_NONE;
2591}
2592
Pierre Ossmand129bce2006-03-24 03:18:17 -08002593/*****************************************************************************\
2594 * *
2595 * Suspend/resume *
2596 * *
2597\*****************************************************************************/
2598
2599#ifdef CONFIG_PM
Kevin Liuad080d72013-01-05 17:21:33 +08002600void sdhci_enable_irq_wakeups(struct sdhci_host *host)
2601{
2602 u8 val;
2603 u8 mask = SDHCI_WAKE_ON_INSERT | SDHCI_WAKE_ON_REMOVE
2604 | SDHCI_WAKE_ON_INT;
2605
2606 val = sdhci_readb(host, SDHCI_WAKE_UP_CONTROL);
2607 val |= mask ;
2608 /* Avoid fake wake up */
2609 if (host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION)
2610 val &= ~(SDHCI_WAKE_ON_INSERT | SDHCI_WAKE_ON_REMOVE);
2611 sdhci_writeb(host, val, SDHCI_WAKE_UP_CONTROL);
2612}
2613EXPORT_SYMBOL_GPL(sdhci_enable_irq_wakeups);
2614
Fabio Estevam0b10f472014-08-30 14:53:13 -03002615static void sdhci_disable_irq_wakeups(struct sdhci_host *host)
Kevin Liuad080d72013-01-05 17:21:33 +08002616{
2617 u8 val;
2618 u8 mask = SDHCI_WAKE_ON_INSERT | SDHCI_WAKE_ON_REMOVE
2619 | SDHCI_WAKE_ON_INT;
2620
2621 val = sdhci_readb(host, SDHCI_WAKE_UP_CONTROL);
2622 val &= ~mask;
2623 sdhci_writeb(host, val, SDHCI_WAKE_UP_CONTROL);
2624}
Pierre Ossmand129bce2006-03-24 03:18:17 -08002625
Manuel Lauss29495aa2011-11-03 11:09:45 +01002626int sdhci_suspend_host(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002627{
Anton Vorontsov7260cf52009-03-17 00:13:48 +03002628 sdhci_disable_card_detection(host);
2629
Adrian Hunter66c39dfc2015-05-07 13:10:21 +03002630 mmc_retune_timer_stop(host->mmc);
2631 mmc_retune_needed(host->mmc);
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05302632
Kevin Liuad080d72013-01-05 17:21:33 +08002633 if (!device_may_wakeup(mmc_dev(host->mmc))) {
Russell Kingb537f942014-04-25 12:56:01 +01002634 host->ier = 0;
2635 sdhci_writel(host, 0, SDHCI_INT_ENABLE);
2636 sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE);
Kevin Liuad080d72013-01-05 17:21:33 +08002637 free_irq(host->irq, host);
2638 } else {
2639 sdhci_enable_irq_wakeups(host);
2640 enable_irq_wake(host->irq);
2641 }
Ulf Hansson4ee14ec2013-09-25 14:15:24 +02002642 return 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002643}
2644
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002645EXPORT_SYMBOL_GPL(sdhci_suspend_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002646
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002647int sdhci_resume_host(struct sdhci_host *host)
2648{
Ulf Hansson4ee14ec2013-09-25 14:15:24 +02002649 int ret = 0;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002650
Richard Röjforsa13abc72009-09-22 16:45:30 -07002651 if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002652 if (host->ops->enable_dma)
2653 host->ops->enable_dma(host);
2654 }
2655
Adrian Hunter6308d292012-02-07 14:48:54 +02002656 if ((host->mmc->pm_flags & MMC_PM_KEEP_POWER) &&
2657 (host->quirks2 & SDHCI_QUIRK2_HOST_OFF_CARD_ON)) {
2658 /* Card keeps power but host controller does not */
2659 sdhci_init(host, 0);
2660 host->pwr = 0;
2661 host->clock = 0;
2662 sdhci_do_set_ios(host, &host->mmc->ios);
2663 } else {
2664 sdhci_init(host, (host->mmc->pm_flags & MMC_PM_KEEP_POWER));
2665 mmiowb();
2666 }
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002667
Haibo Chen14a7b41642015-09-15 18:32:58 +08002668 if (!device_may_wakeup(mmc_dev(host->mmc))) {
2669 ret = request_threaded_irq(host->irq, sdhci_irq,
2670 sdhci_thread_irq, IRQF_SHARED,
2671 mmc_hostname(host->mmc), host);
2672 if (ret)
2673 return ret;
2674 } else {
2675 sdhci_disable_irq_wakeups(host);
2676 disable_irq_wake(host->irq);
2677 }
2678
Anton Vorontsov7260cf52009-03-17 00:13:48 +03002679 sdhci_enable_card_detection(host);
2680
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08002681 return ret;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002682}
2683
2684EXPORT_SYMBOL_GPL(sdhci_resume_host);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002685
2686static int sdhci_runtime_pm_get(struct sdhci_host *host)
2687{
2688 return pm_runtime_get_sync(host->mmc->parent);
2689}
2690
2691static int sdhci_runtime_pm_put(struct sdhci_host *host)
2692{
2693 pm_runtime_mark_last_busy(host->mmc->parent);
2694 return pm_runtime_put_autosuspend(host->mmc->parent);
2695}
2696
Adrian Hunterf0710a52013-05-06 12:17:32 +03002697static void sdhci_runtime_pm_bus_on(struct sdhci_host *host)
2698{
Adrian Hunter5c671c42015-11-26 14:00:50 +02002699 if (host->bus_on)
Adrian Hunterf0710a52013-05-06 12:17:32 +03002700 return;
2701 host->bus_on = true;
2702 pm_runtime_get_noresume(host->mmc->parent);
2703}
2704
2705static void sdhci_runtime_pm_bus_off(struct sdhci_host *host)
2706{
Adrian Hunter5c671c42015-11-26 14:00:50 +02002707 if (!host->bus_on)
Adrian Hunterf0710a52013-05-06 12:17:32 +03002708 return;
2709 host->bus_on = false;
2710 pm_runtime_put_noidle(host->mmc->parent);
2711}
2712
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002713int sdhci_runtime_suspend_host(struct sdhci_host *host)
2714{
2715 unsigned long flags;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002716
Adrian Hunter66c39dfc2015-05-07 13:10:21 +03002717 mmc_retune_timer_stop(host->mmc);
2718 mmc_retune_needed(host->mmc);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002719
2720 spin_lock_irqsave(&host->lock, flags);
Russell Kingb537f942014-04-25 12:56:01 +01002721 host->ier &= SDHCI_INT_CARD_INT;
2722 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
2723 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002724 spin_unlock_irqrestore(&host->lock, flags);
2725
Russell King781e9892014-04-25 12:55:46 +01002726 synchronize_hardirq(host->irq);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002727
2728 spin_lock_irqsave(&host->lock, flags);
2729 host->runtime_suspended = true;
2730 spin_unlock_irqrestore(&host->lock, flags);
2731
Markus Pargmann8a125ba2014-06-04 15:24:29 +02002732 return 0;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002733}
2734EXPORT_SYMBOL_GPL(sdhci_runtime_suspend_host);
2735
2736int sdhci_runtime_resume_host(struct sdhci_host *host)
2737{
2738 unsigned long flags;
Markus Pargmann8a125ba2014-06-04 15:24:29 +02002739 int host_flags = host->flags;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002740
2741 if (host_flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
2742 if (host->ops->enable_dma)
2743 host->ops->enable_dma(host);
2744 }
2745
2746 sdhci_init(host, 0);
2747
2748 /* Force clock and power re-program */
2749 host->pwr = 0;
2750 host->clock = 0;
Jisheng Zhang3396e732015-01-29 17:42:12 +08002751 sdhci_do_start_signal_voltage_switch(host, &host->mmc->ios);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002752 sdhci_do_set_ios(host, &host->mmc->ios);
2753
Kevin Liu52983382013-01-31 11:31:37 +08002754 if ((host_flags & SDHCI_PV_ENABLED) &&
2755 !(host->quirks2 & SDHCI_QUIRK2_PRESET_VALUE_BROKEN)) {
2756 spin_lock_irqsave(&host->lock, flags);
2757 sdhci_enable_preset_value(host, true);
2758 spin_unlock_irqrestore(&host->lock, flags);
2759 }
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002760
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002761 spin_lock_irqsave(&host->lock, flags);
2762
2763 host->runtime_suspended = false;
2764
2765 /* Enable SDIO IRQ */
Russell Kingef104332014-04-25 12:55:41 +01002766 if (host->flags & SDHCI_SDIO_IRQ_ENABLED)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002767 sdhci_enable_sdio_irq_nolock(host, true);
2768
2769 /* Enable Card Detection */
2770 sdhci_enable_card_detection(host);
2771
2772 spin_unlock_irqrestore(&host->lock, flags);
2773
Markus Pargmann8a125ba2014-06-04 15:24:29 +02002774 return 0;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002775}
2776EXPORT_SYMBOL_GPL(sdhci_runtime_resume_host);
2777
Rafael J. Wysocki162d6f92014-12-05 03:05:33 +01002778#endif /* CONFIG_PM */
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002779
Pierre Ossmand129bce2006-03-24 03:18:17 -08002780/*****************************************************************************\
2781 * *
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002782 * Device allocation/registration *
Pierre Ossmand129bce2006-03-24 03:18:17 -08002783 * *
2784\*****************************************************************************/
2785
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002786struct sdhci_host *sdhci_alloc_host(struct device *dev,
2787 size_t priv_size)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002788{
Pierre Ossmand129bce2006-03-24 03:18:17 -08002789 struct mmc_host *mmc;
2790 struct sdhci_host *host;
2791
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002792 WARN_ON(dev == NULL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002793
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002794 mmc = mmc_alloc_host(sizeof(struct sdhci_host) + priv_size, dev);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002795 if (!mmc)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002796 return ERR_PTR(-ENOMEM);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002797
2798 host = mmc_priv(mmc);
2799 host->mmc = mmc;
Adrian Hunterbf60e592016-02-09 16:12:35 +02002800 host->mmc_host_ops = sdhci_ops;
2801 mmc->ops = &host->mmc_host_ops;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002802
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002803 return host;
2804}
Pierre Ossman8a4da142006-10-04 02:15:40 -07002805
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002806EXPORT_SYMBOL_GPL(sdhci_alloc_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002807
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002808int sdhci_add_host(struct sdhci_host *host)
2809{
2810 struct mmc_host *mmc;
Philip Rakitybd6a8c32012-06-27 21:49:27 -07002811 u32 caps[2] = {0, 0};
Arindam Nathf2119df2011-05-05 12:18:57 +05302812 u32 max_current_caps;
2813 unsigned int ocr_avail;
Adrian Hunterf5fa92e2014-09-24 10:27:32 +03002814 unsigned int override_timeout_clk;
Dong Aisheng59241752015-07-22 20:53:07 +08002815 u32 max_clk;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002816 int ret;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002817
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002818 WARN_ON(host == NULL);
2819 if (host == NULL)
2820 return -EINVAL;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002821
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002822 mmc = host->mmc;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002823
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002824 if (debug_quirks)
2825 host->quirks = debug_quirks;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002826 if (debug_quirks2)
2827 host->quirks2 = debug_quirks2;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002828
Adrian Hunterf5fa92e2014-09-24 10:27:32 +03002829 override_timeout_clk = host->timeout_clk;
2830
Russell King03231f92014-04-25 12:57:12 +01002831 sdhci_do_reset(host, SDHCI_RESET_ALL);
Pierre Ossmand96649e2006-06-30 02:22:30 -07002832
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03002833 host->version = sdhci_readw(host, SDHCI_HOST_VERSION);
Pierre Ossman2134a922008-06-28 18:28:51 +02002834 host->version = (host->version & SDHCI_SPEC_VER_MASK)
2835 >> SDHCI_SPEC_VER_SHIFT;
Zhangfei Gao85105c52010-08-06 07:10:01 +08002836 if (host->version > SDHCI_SPEC_300) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01002837 pr_err("%s: Unknown controller version (%d). You may experience problems.\n",
2838 mmc_hostname(mmc), host->version);
Pierre Ossman4a965502006-06-30 02:22:29 -07002839 }
2840
Arindam Nathf2119df2011-05-05 12:18:57 +05302841 caps[0] = (host->quirks & SDHCI_QUIRK_MISSING_CAPS) ? host->caps :
Maxim Levitskyccc92c22010-08-10 18:01:42 -07002842 sdhci_readl(host, SDHCI_CAPABILITIES);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002843
Philip Rakitybd6a8c32012-06-27 21:49:27 -07002844 if (host->version >= SDHCI_SPEC_300)
2845 caps[1] = (host->quirks & SDHCI_QUIRK_MISSING_CAPS) ?
2846 host->caps1 :
2847 sdhci_readl(host, SDHCI_CAPABILITIES_1);
Arindam Nathf2119df2011-05-05 12:18:57 +05302848
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002849 if (host->quirks & SDHCI_QUIRK_FORCE_DMA)
Richard Röjforsa13abc72009-09-22 16:45:30 -07002850 host->flags |= SDHCI_USE_SDMA;
Arindam Nathf2119df2011-05-05 12:18:57 +05302851 else if (!(caps[0] & SDHCI_CAN_DO_SDMA))
Richard Röjforsa13abc72009-09-22 16:45:30 -07002852 DBG("Controller doesn't have SDMA capability\n");
Pierre Ossman67435272006-06-30 02:22:31 -07002853 else
Richard Röjforsa13abc72009-09-22 16:45:30 -07002854 host->flags |= SDHCI_USE_SDMA;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002855
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002856 if ((host->quirks & SDHCI_QUIRK_BROKEN_DMA) &&
Richard Röjforsa13abc72009-09-22 16:45:30 -07002857 (host->flags & SDHCI_USE_SDMA)) {
Rolf Eike Beercee687c2007-11-02 15:22:30 +01002858 DBG("Disabling DMA as it is marked broken\n");
Richard Röjforsa13abc72009-09-22 16:45:30 -07002859 host->flags &= ~SDHCI_USE_SDMA;
Feng Tang7c168e32007-09-30 12:44:18 +02002860 }
2861
Arindam Nathf2119df2011-05-05 12:18:57 +05302862 if ((host->version >= SDHCI_SPEC_200) &&
2863 (caps[0] & SDHCI_CAN_DO_ADMA2))
Richard Röjforsa13abc72009-09-22 16:45:30 -07002864 host->flags |= SDHCI_USE_ADMA;
Pierre Ossman2134a922008-06-28 18:28:51 +02002865
2866 if ((host->quirks & SDHCI_QUIRK_BROKEN_ADMA) &&
2867 (host->flags & SDHCI_USE_ADMA)) {
2868 DBG("Disabling ADMA as it is marked broken\n");
2869 host->flags &= ~SDHCI_USE_ADMA;
2870 }
2871
Adrian Huntere57a5f62014-11-04 12:42:46 +02002872 /*
2873 * It is assumed that a 64-bit capable device has set a 64-bit DMA mask
2874 * and *must* do 64-bit DMA. A driver has the opportunity to change
2875 * that during the first call to ->enable_dma(). Similarly
2876 * SDHCI_QUIRK2_BROKEN_64_BIT_DMA must be left to the drivers to
2877 * implement.
2878 */
Al Cooper5eaa7472016-02-10 15:25:39 -05002879 if (caps[0] & SDHCI_CAN_64BIT)
Adrian Huntere57a5f62014-11-04 12:42:46 +02002880 host->flags |= SDHCI_USE_64_BIT_DMA;
2881
Richard Röjforsa13abc72009-09-22 16:45:30 -07002882 if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002883 if (host->ops->enable_dma) {
2884 if (host->ops->enable_dma(host)) {
Joe Perches66061102014-09-12 14:56:56 -07002885 pr_warn("%s: No suitable DMA available - falling back to PIO\n",
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002886 mmc_hostname(mmc));
Richard Röjforsa13abc72009-09-22 16:45:30 -07002887 host->flags &=
2888 ~(SDHCI_USE_SDMA | SDHCI_USE_ADMA);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002889 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08002890 }
2891 }
2892
Adrian Huntere57a5f62014-11-04 12:42:46 +02002893 /* SDMA does not support 64-bit DMA */
2894 if (host->flags & SDHCI_USE_64_BIT_DMA)
2895 host->flags &= ~SDHCI_USE_SDMA;
2896
Pierre Ossman2134a922008-06-28 18:28:51 +02002897 if (host->flags & SDHCI_USE_ADMA) {
Russell Kinge66e61c2016-01-26 13:39:55 +00002898 dma_addr_t dma;
2899 void *buf;
2900
Pierre Ossman2134a922008-06-28 18:28:51 +02002901 /*
Adrian Hunter76fe3792014-11-04 12:42:42 +02002902 * The DMA descriptor table size is calculated as the maximum
2903 * number of segments times 2, to allow for an alignment
2904 * descriptor for each segment, plus 1 for a nop end descriptor,
2905 * all multipled by the descriptor size.
Pierre Ossman2134a922008-06-28 18:28:51 +02002906 */
Adrian Huntere57a5f62014-11-04 12:42:46 +02002907 if (host->flags & SDHCI_USE_64_BIT_DMA) {
2908 host->adma_table_sz = (SDHCI_MAX_SEGS * 2 + 1) *
2909 SDHCI_ADMA2_64_DESC_SZ;
Adrian Huntere57a5f62014-11-04 12:42:46 +02002910 host->desc_sz = SDHCI_ADMA2_64_DESC_SZ;
Adrian Huntere57a5f62014-11-04 12:42:46 +02002911 } else {
2912 host->adma_table_sz = (SDHCI_MAX_SEGS * 2 + 1) *
2913 SDHCI_ADMA2_32_DESC_SZ;
Adrian Huntere57a5f62014-11-04 12:42:46 +02002914 host->desc_sz = SDHCI_ADMA2_32_DESC_SZ;
Adrian Huntere57a5f62014-11-04 12:42:46 +02002915 }
Russell Kinge66e61c2016-01-26 13:39:55 +00002916
Adrian Hunter04a5ae62015-11-26 14:00:49 +02002917 host->align_buffer_sz = SDHCI_MAX_SEGS * SDHCI_ADMA2_ALIGN;
Russell Kinge66e61c2016-01-26 13:39:55 +00002918 buf = dma_alloc_coherent(mmc_dev(mmc), host->align_buffer_sz +
2919 host->adma_table_sz, &dma, GFP_KERNEL);
2920 if (!buf) {
Joe Perches66061102014-09-12 14:56:56 -07002921 pr_warn("%s: Unable to allocate ADMA buffers - falling back to standard DMA\n",
Pierre Ossman2134a922008-06-28 18:28:51 +02002922 mmc_hostname(mmc));
2923 host->flags &= ~SDHCI_USE_ADMA;
Russell Kinge66e61c2016-01-26 13:39:55 +00002924 } else if ((dma + host->align_buffer_sz) &
2925 (SDHCI_ADMA2_DESC_ALIGN - 1)) {
Joe Perches66061102014-09-12 14:56:56 -07002926 pr_warn("%s: unable to allocate aligned ADMA descriptor\n",
2927 mmc_hostname(mmc));
Russell Kingd1e49f72014-04-25 12:58:34 +01002928 host->flags &= ~SDHCI_USE_ADMA;
Russell Kinge66e61c2016-01-26 13:39:55 +00002929 dma_free_coherent(mmc_dev(mmc), host->align_buffer_sz +
2930 host->adma_table_sz, buf, dma);
2931 } else {
2932 host->align_buffer = buf;
2933 host->align_addr = dma;
Russell Kingedd63fc2016-01-26 13:39:50 +00002934
Russell Kinge66e61c2016-01-26 13:39:55 +00002935 host->adma_table = buf + host->align_buffer_sz;
2936 host->adma_addr = dma + host->align_buffer_sz;
2937 }
Pierre Ossman2134a922008-06-28 18:28:51 +02002938 }
2939
Pierre Ossman76591502008-07-21 00:32:11 +02002940 /*
2941 * If we use DMA, then it's up to the caller to set the DMA
2942 * mask, but PIO does not need the hw shim so we set a new
2943 * mask here in that case.
2944 */
Richard Röjforsa13abc72009-09-22 16:45:30 -07002945 if (!(host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA))) {
Pierre Ossman76591502008-07-21 00:32:11 +02002946 host->dma_mask = DMA_BIT_MASK(64);
Markus Mayer4e743f12014-07-03 13:27:42 -07002947 mmc_dev(mmc)->dma_mask = &host->dma_mask;
Pierre Ossman76591502008-07-21 00:32:11 +02002948 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08002949
Zhangfei Gaoc4687d52010-08-20 14:02:36 -04002950 if (host->version >= SDHCI_SPEC_300)
Arindam Nathf2119df2011-05-05 12:18:57 +05302951 host->max_clk = (caps[0] & SDHCI_CLOCK_V3_BASE_MASK)
Zhangfei Gaoc4687d52010-08-20 14:02:36 -04002952 >> SDHCI_CLOCK_BASE_SHIFT;
2953 else
Arindam Nathf2119df2011-05-05 12:18:57 +05302954 host->max_clk = (caps[0] & SDHCI_CLOCK_BASE_MASK)
Zhangfei Gaoc4687d52010-08-20 14:02:36 -04002955 >> SDHCI_CLOCK_BASE_SHIFT;
2956
Pierre Ossmand129bce2006-03-24 03:18:17 -08002957 host->max_clk *= 1000000;
Anton Vorontsovf27f47e2010-05-26 14:41:53 -07002958 if (host->max_clk == 0 || host->quirks &
2959 SDHCI_QUIRK_CAP_CLOCK_BASE_BROKEN) {
Ben Dooks4240ff02009-03-17 00:13:57 +03002960 if (!host->ops->get_max_clock) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01002961 pr_err("%s: Hardware doesn't specify base clock frequency.\n",
2962 mmc_hostname(mmc));
Ben Dooks4240ff02009-03-17 00:13:57 +03002963 return -ENODEV;
2964 }
2965 host->max_clk = host->ops->get_max_clock(host);
2966 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08002967
2968 /*
Arindam Nathc3ed3872011-05-05 12:19:06 +05302969 * In case of Host Controller v3.00, find out whether clock
2970 * multiplier is supported.
2971 */
2972 host->clk_mul = (caps[1] & SDHCI_CLOCK_MUL_MASK) >>
2973 SDHCI_CLOCK_MUL_SHIFT;
2974
2975 /*
2976 * In case the value in Clock Multiplier is 0, then programmable
2977 * clock mode is not supported, otherwise the actual clock
2978 * multiplier is one more than the value of Clock Multiplier
2979 * in the Capabilities Register.
2980 */
2981 if (host->clk_mul)
2982 host->clk_mul += 1;
2983
2984 /*
Pierre Ossmand129bce2006-03-24 03:18:17 -08002985 * Set host parameters.
2986 */
Dong Aisheng59241752015-07-22 20:53:07 +08002987 max_clk = host->max_clk;
2988
Marek Szyprowskice5f0362010-08-10 18:01:56 -07002989 if (host->ops->get_min_clock)
Anton Vorontsova9e58f22009-07-29 15:04:16 -07002990 mmc->f_min = host->ops->get_min_clock(host);
Arindam Nathc3ed3872011-05-05 12:19:06 +05302991 else if (host->version >= SDHCI_SPEC_300) {
2992 if (host->clk_mul) {
2993 mmc->f_min = (host->max_clk * host->clk_mul) / 1024;
Dong Aisheng59241752015-07-22 20:53:07 +08002994 max_clk = host->max_clk * host->clk_mul;
Arindam Nathc3ed3872011-05-05 12:19:06 +05302995 } else
2996 mmc->f_min = host->max_clk / SDHCI_MAX_DIV_SPEC_300;
2997 } else
Zhangfei Gao03975262010-09-20 15:15:18 -04002998 mmc->f_min = host->max_clk / SDHCI_MAX_DIV_SPEC_200;
Philip Rakity15ec4462010-11-19 16:48:39 -05002999
Dong Aisheng59241752015-07-22 20:53:07 +08003000 if (!mmc->f_max || (mmc->f_max && (mmc->f_max > max_clk)))
3001 mmc->f_max = max_clk;
3002
Aisheng Dong28aab052014-08-27 15:26:31 +08003003 if (!(host->quirks & SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK)) {
3004 host->timeout_clk = (caps[0] & SDHCI_TIMEOUT_CLK_MASK) >>
3005 SDHCI_TIMEOUT_CLK_SHIFT;
3006 if (host->timeout_clk == 0) {
3007 if (host->ops->get_timeout_clock) {
3008 host->timeout_clk =
3009 host->ops->get_timeout_clock(host);
3010 } else {
3011 pr_err("%s: Hardware doesn't specify timeout clock frequency.\n",
3012 mmc_hostname(mmc));
3013 return -ENODEV;
3014 }
Andy Shevchenko272308c2011-08-03 18:36:00 +03003015 }
Andy Shevchenko272308c2011-08-03 18:36:00 +03003016
Aisheng Dong28aab052014-08-27 15:26:31 +08003017 if (caps[0] & SDHCI_TIMEOUT_CLK_UNIT)
3018 host->timeout_clk *= 1000;
Andy Shevchenko272308c2011-08-03 18:36:00 +03003019
Aisheng Dong28aab052014-08-27 15:26:31 +08003020 mmc->max_busy_timeout = host->ops->get_max_timeout_count ?
Aisheng Donga6ff5ae2014-08-27 15:26:27 +08003021 host->ops->get_max_timeout_count(host) : 1 << 27;
Aisheng Dong28aab052014-08-27 15:26:31 +08003022 mmc->max_busy_timeout /= host->timeout_clk;
3023 }
Adrian Hunter58d12462011-06-28 17:16:03 +03003024
Adrian Hunterf5fa92e2014-09-24 10:27:32 +03003025 if (override_timeout_clk)
3026 host->timeout_clk = override_timeout_clk;
3027
Andrei Warkentine89d4562011-05-23 15:06:37 -05003028 mmc->caps |= MMC_CAP_SDIO_IRQ | MMC_CAP_ERASE | MMC_CAP_CMD23;
Russell King781e9892014-04-25 12:55:46 +01003029 mmc->caps2 |= MMC_CAP2_SDIO_IRQ_NOTHREAD;
Andrei Warkentine89d4562011-05-23 15:06:37 -05003030
3031 if (host->quirks & SDHCI_QUIRK_MULTIBLOCK_READ_ACMD12)
3032 host->flags |= SDHCI_AUTO_CMD12;
Anton Vorontsov5fe23c72009-06-18 00:14:08 +04003033
Andrei Warkentin8edf63712011-05-23 15:06:39 -05003034 /* Auto-CMD23 stuff only works in ADMA or PIO. */
Andrei Warkentin4f3d3e92011-05-25 10:42:50 -04003035 if ((host->version >= SDHCI_SPEC_300) &&
Andrei Warkentin8edf63712011-05-23 15:06:39 -05003036 ((host->flags & SDHCI_USE_ADMA) ||
Scott Branden3bfa6f02015-02-09 16:06:28 -08003037 !(host->flags & SDHCI_USE_SDMA)) &&
3038 !(host->quirks2 & SDHCI_QUIRK2_ACMD23_BROKEN)) {
Andrei Warkentin8edf63712011-05-23 15:06:39 -05003039 host->flags |= SDHCI_AUTO_CMD23;
3040 DBG("%s: Auto-CMD23 available\n", mmc_hostname(mmc));
3041 } else {
3042 DBG("%s: Auto-CMD23 unavailable\n", mmc_hostname(mmc));
3043 }
3044
Philip Rakity15ec4462010-11-19 16:48:39 -05003045 /*
3046 * A controller may support 8-bit width, but the board itself
3047 * might not have the pins brought out. Boards that support
3048 * 8-bit width must set "mmc->caps |= MMC_CAP_8_BIT_DATA;" in
3049 * their platform code before calling sdhci_add_host(), and we
3050 * won't assume 8-bit width for hosts without that CAP.
3051 */
Anton Vorontsov5fe23c72009-06-18 00:14:08 +04003052 if (!(host->quirks & SDHCI_QUIRK_FORCE_1_BIT_DATA))
Philip Rakity15ec4462010-11-19 16:48:39 -05003053 mmc->caps |= MMC_CAP_4_BIT_DATA;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003054
Jerry Huang63ef5d82012-10-25 13:47:19 +08003055 if (host->quirks2 & SDHCI_QUIRK2_HOST_NO_CMD23)
3056 mmc->caps &= ~MMC_CAP_CMD23;
3057
Arindam Nathf2119df2011-05-05 12:18:57 +05303058 if (caps[0] & SDHCI_CAN_DO_HISPD)
Zhangfei Gaoa29e7e12010-08-16 21:15:32 -04003059 mmc->caps |= MMC_CAP_SD_HIGHSPEED | MMC_CAP_MMC_HIGHSPEED;
Pierre Ossmancd9277c2007-02-18 12:07:47 +01003060
Jaehoon Chung176d1ed2010-09-27 09:42:20 +01003061 if ((host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION) &&
Ivan T. Ivanovc31d22e2015-07-06 15:16:20 +03003062 !(mmc->caps & MMC_CAP_NONREMOVABLE) &&
3063 IS_ERR_VALUE(mmc_gpio_get_cd(host->mmc)))
Anton Vorontsov68d1fb72009-03-17 00:13:52 +03003064 mmc->caps |= MMC_CAP_NEEDS_POLL;
3065
Tim Kryger3a48edc2014-06-13 10:13:56 -07003066 /* If there are external regulators, get them */
3067 if (mmc_regulator_get_supply(mmc) == -EPROBE_DEFER)
3068 return -EPROBE_DEFER;
3069
Philip Rakity6231f3d2012-07-23 15:56:23 -07003070 /* If vqmmc regulator and no 1.8V signalling, then there's no UHS */
Tim Kryger3a48edc2014-06-13 10:13:56 -07003071 if (!IS_ERR(mmc->supply.vqmmc)) {
3072 ret = regulator_enable(mmc->supply.vqmmc);
3073 if (!regulator_is_supported_voltage(mmc->supply.vqmmc, 1700000,
3074 1950000))
Kevin Liu8363c372012-11-17 17:55:51 -05003075 caps[1] &= ~(SDHCI_SUPPORT_SDR104 |
3076 SDHCI_SUPPORT_SDR50 |
3077 SDHCI_SUPPORT_DDR50);
Chris Balla3361ab2013-03-11 17:51:53 -04003078 if (ret) {
3079 pr_warn("%s: Failed to enable vqmmc regulator: %d\n",
3080 mmc_hostname(mmc), ret);
Adrian Hunter4bb74312014-11-06 15:19:04 +02003081 mmc->supply.vqmmc = ERR_PTR(-EINVAL);
Chris Balla3361ab2013-03-11 17:51:53 -04003082 }
Kevin Liu8363c372012-11-17 17:55:51 -05003083 }
Philip Rakity6231f3d2012-07-23 15:56:23 -07003084
Daniel Drake6a661802012-11-25 13:01:19 -05003085 if (host->quirks2 & SDHCI_QUIRK2_NO_1_8_V)
3086 caps[1] &= ~(SDHCI_SUPPORT_SDR104 | SDHCI_SUPPORT_SDR50 |
3087 SDHCI_SUPPORT_DDR50);
3088
Al Cooper4188bba2012-03-16 15:54:17 -04003089 /* Any UHS-I mode in caps implies SDR12 and SDR25 support. */
3090 if (caps[1] & (SDHCI_SUPPORT_SDR104 | SDHCI_SUPPORT_SDR50 |
3091 SDHCI_SUPPORT_DDR50))
Arindam Nathf2119df2011-05-05 12:18:57 +05303092 mmc->caps |= MMC_CAP_UHS_SDR12 | MMC_CAP_UHS_SDR25;
3093
3094 /* SDR104 supports also implies SDR50 support */
Giuseppe CAVALLARO156e14b2013-06-12 08:16:38 +02003095 if (caps[1] & SDHCI_SUPPORT_SDR104) {
Arindam Nathf2119df2011-05-05 12:18:57 +05303096 mmc->caps |= MMC_CAP_UHS_SDR104 | MMC_CAP_UHS_SDR50;
Giuseppe CAVALLARO156e14b2013-06-12 08:16:38 +02003097 /* SD3.0: SDR104 is supported so (for eMMC) the caps2
3098 * field can be promoted to support HS200.
3099 */
Adrian Hunter549c0b12014-11-06 15:19:05 +02003100 if (!(host->quirks2 & SDHCI_QUIRK2_BROKEN_HS200))
David Cohen13868bf2013-10-29 10:58:26 -07003101 mmc->caps2 |= MMC_CAP2_HS200;
Giuseppe CAVALLARO156e14b2013-06-12 08:16:38 +02003102 } else if (caps[1] & SDHCI_SUPPORT_SDR50)
Arindam Nathf2119df2011-05-05 12:18:57 +05303103 mmc->caps |= MMC_CAP_UHS_SDR50;
3104
Adrian Huntere9fb05d2014-11-06 15:19:06 +02003105 if (host->quirks2 & SDHCI_QUIRK2_CAPS_BIT63_FOR_HS400 &&
3106 (caps[1] & SDHCI_SUPPORT_HS400))
3107 mmc->caps2 |= MMC_CAP2_HS400;
3108
Adrian Hunter549c0b12014-11-06 15:19:05 +02003109 if ((mmc->caps2 & MMC_CAP2_HSX00_1_2V) &&
3110 (IS_ERR(mmc->supply.vqmmc) ||
3111 !regulator_is_supported_voltage(mmc->supply.vqmmc, 1100000,
3112 1300000)))
3113 mmc->caps2 &= ~MMC_CAP2_HSX00_1_2V;
3114
Micky Ching9107ebb2014-02-21 18:40:35 +08003115 if ((caps[1] & SDHCI_SUPPORT_DDR50) &&
3116 !(host->quirks2 & SDHCI_QUIRK2_BROKEN_DDR50))
Arindam Nathf2119df2011-05-05 12:18:57 +05303117 mmc->caps |= MMC_CAP_UHS_DDR50;
3118
Girish K S069c9f12012-01-06 09:56:39 +05303119 /* Does the host need tuning for SDR50? */
Arindam Nathb513ea22011-05-05 12:19:04 +05303120 if (caps[1] & SDHCI_USE_SDR50_TUNING)
3121 host->flags |= SDHCI_SDR50_NEEDS_TUNING;
3122
Giuseppe CAVALLARO156e14b2013-06-12 08:16:38 +02003123 /* Does the host need tuning for SDR104 / HS200? */
Girish K S069c9f12012-01-06 09:56:39 +05303124 if (mmc->caps2 & MMC_CAP2_HS200)
Giuseppe CAVALLARO156e14b2013-06-12 08:16:38 +02003125 host->flags |= SDHCI_SDR104_NEEDS_TUNING;
Girish K S069c9f12012-01-06 09:56:39 +05303126
Arindam Nathd6d50a12011-05-05 12:18:59 +05303127 /* Driver Type(s) (A, C, D) supported by the host */
3128 if (caps[1] & SDHCI_DRIVER_TYPE_A)
3129 mmc->caps |= MMC_CAP_DRIVER_TYPE_A;
3130 if (caps[1] & SDHCI_DRIVER_TYPE_C)
3131 mmc->caps |= MMC_CAP_DRIVER_TYPE_C;
3132 if (caps[1] & SDHCI_DRIVER_TYPE_D)
3133 mmc->caps |= MMC_CAP_DRIVER_TYPE_D;
3134
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05303135 /* Initial value for re-tuning timer count */
3136 host->tuning_count = (caps[1] & SDHCI_RETUNING_TIMER_COUNT_MASK) >>
3137 SDHCI_RETUNING_TIMER_COUNT_SHIFT;
3138
3139 /*
3140 * In case Re-tuning Timer is not disabled, the actual value of
3141 * re-tuning timer will be 2 ^ (n - 1).
3142 */
3143 if (host->tuning_count)
3144 host->tuning_count = 1 << (host->tuning_count - 1);
3145
3146 /* Re-tuning mode supported by the Host Controller */
3147 host->tuning_mode = (caps[1] & SDHCI_RETUNING_MODE_MASK) >>
3148 SDHCI_RETUNING_MODE_SHIFT;
3149
Takashi Iwai8f230f42010-12-08 10:04:30 +01003150 ocr_avail = 0;
Philip Rakitybad37e12012-05-27 18:36:44 -07003151
Arindam Nathf2119df2011-05-05 12:18:57 +05303152 /*
3153 * According to SD Host Controller spec v3.00, if the Host System
3154 * can afford more than 150mA, Host Driver should set XPC to 1. Also
3155 * the value is meaningful only if Voltage Support in the Capabilities
3156 * register is set. The actual current value is 4 times the register
3157 * value.
3158 */
3159 max_current_caps = sdhci_readl(host, SDHCI_MAX_CURRENT);
Tim Kryger3a48edc2014-06-13 10:13:56 -07003160 if (!max_current_caps && !IS_ERR(mmc->supply.vmmc)) {
Chuanxiao.Dongae906032014-08-01 14:00:13 +08003161 int curr = regulator_get_current_limit(mmc->supply.vmmc);
Philip Rakitybad37e12012-05-27 18:36:44 -07003162 if (curr > 0) {
3163
3164 /* convert to SDHCI_MAX_CURRENT format */
3165 curr = curr/1000; /* convert to mA */
3166 curr = curr/SDHCI_MAX_CURRENT_MULTIPLIER;
3167
3168 curr = min_t(u32, curr, SDHCI_MAX_CURRENT_LIMIT);
3169 max_current_caps =
3170 (curr << SDHCI_MAX_CURRENT_330_SHIFT) |
3171 (curr << SDHCI_MAX_CURRENT_300_SHIFT) |
3172 (curr << SDHCI_MAX_CURRENT_180_SHIFT);
3173 }
3174 }
Arindam Nathf2119df2011-05-05 12:18:57 +05303175
3176 if (caps[0] & SDHCI_CAN_VDD_330) {
Takashi Iwai8f230f42010-12-08 10:04:30 +01003177 ocr_avail |= MMC_VDD_32_33 | MMC_VDD_33_34;
Arindam Nathf2119df2011-05-05 12:18:57 +05303178
Aaron Lu55c46652012-07-04 13:31:48 +08003179 mmc->max_current_330 = ((max_current_caps &
Arindam Nathf2119df2011-05-05 12:18:57 +05303180 SDHCI_MAX_CURRENT_330_MASK) >>
3181 SDHCI_MAX_CURRENT_330_SHIFT) *
3182 SDHCI_MAX_CURRENT_MULTIPLIER;
Arindam Nathf2119df2011-05-05 12:18:57 +05303183 }
3184 if (caps[0] & SDHCI_CAN_VDD_300) {
Takashi Iwai8f230f42010-12-08 10:04:30 +01003185 ocr_avail |= MMC_VDD_29_30 | MMC_VDD_30_31;
Arindam Nathf2119df2011-05-05 12:18:57 +05303186
Aaron Lu55c46652012-07-04 13:31:48 +08003187 mmc->max_current_300 = ((max_current_caps &
Arindam Nathf2119df2011-05-05 12:18:57 +05303188 SDHCI_MAX_CURRENT_300_MASK) >>
3189 SDHCI_MAX_CURRENT_300_SHIFT) *
3190 SDHCI_MAX_CURRENT_MULTIPLIER;
Arindam Nathf2119df2011-05-05 12:18:57 +05303191 }
3192 if (caps[0] & SDHCI_CAN_VDD_180) {
Takashi Iwai8f230f42010-12-08 10:04:30 +01003193 ocr_avail |= MMC_VDD_165_195;
3194
Aaron Lu55c46652012-07-04 13:31:48 +08003195 mmc->max_current_180 = ((max_current_caps &
Arindam Nathf2119df2011-05-05 12:18:57 +05303196 SDHCI_MAX_CURRENT_180_MASK) >>
3197 SDHCI_MAX_CURRENT_180_SHIFT) *
3198 SDHCI_MAX_CURRENT_MULTIPLIER;
Arindam Nathf2119df2011-05-05 12:18:57 +05303199 }
3200
Ulf Hansson5fd26c72015-06-05 11:40:08 +02003201 /* If OCR set by host, use it instead. */
3202 if (host->ocr_mask)
3203 ocr_avail = host->ocr_mask;
3204
3205 /* If OCR set by external regulators, give it highest prio. */
Tim Kryger3a48edc2014-06-13 10:13:56 -07003206 if (mmc->ocr_avail)
Tim Kryger52221612014-06-25 00:25:34 -07003207 ocr_avail = mmc->ocr_avail;
Tim Kryger3a48edc2014-06-13 10:13:56 -07003208
Takashi Iwai8f230f42010-12-08 10:04:30 +01003209 mmc->ocr_avail = ocr_avail;
3210 mmc->ocr_avail_sdio = ocr_avail;
3211 if (host->ocr_avail_sdio)
3212 mmc->ocr_avail_sdio &= host->ocr_avail_sdio;
3213 mmc->ocr_avail_sd = ocr_avail;
3214 if (host->ocr_avail_sd)
3215 mmc->ocr_avail_sd &= host->ocr_avail_sd;
3216 else /* normal SD controllers don't support 1.8V */
3217 mmc->ocr_avail_sd &= ~MMC_VDD_165_195;
3218 mmc->ocr_avail_mmc = ocr_avail;
3219 if (host->ocr_avail_mmc)
3220 mmc->ocr_avail_mmc &= host->ocr_avail_mmc;
Pierre Ossman146ad662006-06-30 02:22:23 -07003221
3222 if (mmc->ocr_avail == 0) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01003223 pr_err("%s: Hardware doesn't report any support voltages.\n",
3224 mmc_hostname(mmc));
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003225 return -ENODEV;
Pierre Ossman146ad662006-06-30 02:22:23 -07003226 }
3227
Pierre Ossmand129bce2006-03-24 03:18:17 -08003228 spin_lock_init(&host->lock);
3229
3230 /*
Pierre Ossman2134a922008-06-28 18:28:51 +02003231 * Maximum number of segments. Depends on if the hardware
3232 * can do scatter/gather or not.
Pierre Ossmand129bce2006-03-24 03:18:17 -08003233 */
Pierre Ossman2134a922008-06-28 18:28:51 +02003234 if (host->flags & SDHCI_USE_ADMA)
Adrian Hunter4fb213f2014-11-04 12:42:43 +02003235 mmc->max_segs = SDHCI_MAX_SEGS;
Richard Röjforsa13abc72009-09-22 16:45:30 -07003236 else if (host->flags & SDHCI_USE_SDMA)
Martin K. Petersena36274e2010-09-10 01:33:59 -04003237 mmc->max_segs = 1;
Pierre Ossman2134a922008-06-28 18:28:51 +02003238 else /* PIO */
Adrian Hunter4fb213f2014-11-04 12:42:43 +02003239 mmc->max_segs = SDHCI_MAX_SEGS;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003240
3241 /*
Adrian Hunterac005312014-12-05 19:25:28 +02003242 * Maximum number of sectors in one transfer. Limited by SDMA boundary
3243 * size (512KiB). Note some tuning modes impose a 4MiB limit, but this
3244 * is less anyway.
Pierre Ossmand129bce2006-03-24 03:18:17 -08003245 */
Pierre Ossman55db8902006-11-21 17:55:45 +01003246 mmc->max_req_size = 524288;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003247
3248 /*
3249 * Maximum segment size. Could be one segment with the maximum number
Pierre Ossman2134a922008-06-28 18:28:51 +02003250 * of bytes. When doing hardware scatter/gather, each entry cannot
3251 * be larger than 64 KiB though.
Pierre Ossmand129bce2006-03-24 03:18:17 -08003252 */
Olof Johansson30652aa2011-01-01 18:37:32 -06003253 if (host->flags & SDHCI_USE_ADMA) {
3254 if (host->quirks & SDHCI_QUIRK_BROKEN_ADMA_ZEROLEN_DESC)
3255 mmc->max_seg_size = 65535;
3256 else
3257 mmc->max_seg_size = 65536;
3258 } else {
Pierre Ossman2134a922008-06-28 18:28:51 +02003259 mmc->max_seg_size = mmc->max_req_size;
Olof Johansson30652aa2011-01-01 18:37:32 -06003260 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08003261
3262 /*
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +01003263 * Maximum block size. This varies from controller to controller and
3264 * is specified in the capabilities register.
3265 */
Anton Vorontsov0633f652009-03-17 00:14:03 +03003266 if (host->quirks & SDHCI_QUIRK_FORCE_BLK_SZ_2048) {
3267 mmc->max_blk_size = 2;
3268 } else {
Arindam Nathf2119df2011-05-05 12:18:57 +05303269 mmc->max_blk_size = (caps[0] & SDHCI_MAX_BLOCK_MASK) >>
Anton Vorontsov0633f652009-03-17 00:14:03 +03003270 SDHCI_MAX_BLOCK_SHIFT;
3271 if (mmc->max_blk_size >= 3) {
Joe Perches66061102014-09-12 14:56:56 -07003272 pr_warn("%s: Invalid maximum block size, assuming 512 bytes\n",
3273 mmc_hostname(mmc));
Anton Vorontsov0633f652009-03-17 00:14:03 +03003274 mmc->max_blk_size = 0;
3275 }
3276 }
3277
3278 mmc->max_blk_size = 512 << mmc->max_blk_size;
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +01003279
3280 /*
Pierre Ossman55db8902006-11-21 17:55:45 +01003281 * Maximum block count.
3282 */
Ben Dooks1388eef2009-06-14 12:40:53 +01003283 mmc->max_blk_count = (host->quirks & SDHCI_QUIRK_NO_MULTIBLOCK) ? 1 : 65535;
Pierre Ossman55db8902006-11-21 17:55:45 +01003284
3285 /*
Pierre Ossmand129bce2006-03-24 03:18:17 -08003286 * Init tasklets.
3287 */
Pierre Ossmand129bce2006-03-24 03:18:17 -08003288 tasklet_init(&host->finish_tasklet,
3289 sdhci_tasklet_finish, (unsigned long)host);
3290
Al Viroe4cad1b2006-10-10 22:47:07 +01003291 setup_timer(&host->timer, sdhci_timeout_timer, (unsigned long)host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003292
Adrian Hunter250fb7b42014-12-05 19:41:10 +02003293 init_waitqueue_head(&host->buf_ready_int);
Arindam Nathb513ea22011-05-05 12:19:04 +05303294
Shawn Guo2af502c2013-07-05 14:38:55 +08003295 sdhci_init(host, 0);
3296
Russell King781e9892014-04-25 12:55:46 +01003297 ret = request_threaded_irq(host->irq, sdhci_irq, sdhci_thread_irq,
3298 IRQF_SHARED, mmc_hostname(mmc), host);
Mark Brown0fc81ee2012-07-02 14:26:15 +01003299 if (ret) {
3300 pr_err("%s: Failed to request IRQ %d: %d\n",
3301 mmc_hostname(mmc), host->irq, ret);
Pierre Ossman8ef1a142006-06-30 02:22:21 -07003302 goto untasklet;
Mark Brown0fc81ee2012-07-02 14:26:15 +01003303 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08003304
Pierre Ossmand129bce2006-03-24 03:18:17 -08003305#ifdef CONFIG_MMC_DEBUG
3306 sdhci_dumpregs(host);
3307#endif
3308
Pierre Ossmanf9134312008-12-21 17:01:48 +01003309#ifdef SDHCI_USE_LEDS_CLASS
Helmut Schaa5dbace02009-02-14 16:22:39 +01003310 snprintf(host->led_name, sizeof(host->led_name),
3311 "%s::", mmc_hostname(mmc));
3312 host->led.name = host->led_name;
Pierre Ossman2f730fe2008-03-17 10:29:38 +01003313 host->led.brightness = LED_OFF;
3314 host->led.default_trigger = mmc_hostname(mmc);
3315 host->led.brightness_set = sdhci_led_control;
3316
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003317 ret = led_classdev_register(mmc_dev(mmc), &host->led);
Mark Brown0fc81ee2012-07-02 14:26:15 +01003318 if (ret) {
3319 pr_err("%s: Failed to register LED device: %d\n",
3320 mmc_hostname(mmc), ret);
Pierre Ossman2f730fe2008-03-17 10:29:38 +01003321 goto reset;
Mark Brown0fc81ee2012-07-02 14:26:15 +01003322 }
Pierre Ossman2f730fe2008-03-17 10:29:38 +01003323#endif
3324
Pierre Ossman5f25a662006-10-04 02:15:39 -07003325 mmiowb();
3326
Pierre Ossmand129bce2006-03-24 03:18:17 -08003327 mmc_add_host(mmc);
3328
Girish K Sa3c76eb2011-10-11 11:44:09 +05303329 pr_info("%s: SDHCI controller on %s [%s] using %s\n",
Kay Sieversd1b26862008-11-08 21:37:46 +01003330 mmc_hostname(mmc), host->hw_name, dev_name(mmc_dev(mmc)),
Adrian Huntere57a5f62014-11-04 12:42:46 +02003331 (host->flags & SDHCI_USE_ADMA) ?
3332 (host->flags & SDHCI_USE_64_BIT_DMA) ? "ADMA 64-bit" : "ADMA" :
Richard Röjforsa13abc72009-09-22 16:45:30 -07003333 (host->flags & SDHCI_USE_SDMA) ? "DMA" : "PIO");
Pierre Ossmand129bce2006-03-24 03:18:17 -08003334
Anton Vorontsov7260cf52009-03-17 00:13:48 +03003335 sdhci_enable_card_detection(host);
3336
Pierre Ossmand129bce2006-03-24 03:18:17 -08003337 return 0;
3338
Pierre Ossmanf9134312008-12-21 17:01:48 +01003339#ifdef SDHCI_USE_LEDS_CLASS
Pierre Ossman2f730fe2008-03-17 10:29:38 +01003340reset:
Russell King03231f92014-04-25 12:57:12 +01003341 sdhci_do_reset(host, SDHCI_RESET_ALL);
Russell Kingb537f942014-04-25 12:56:01 +01003342 sdhci_writel(host, 0, SDHCI_INT_ENABLE);
3343 sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE);
Pierre Ossman2f730fe2008-03-17 10:29:38 +01003344 free_irq(host->irq, host);
3345#endif
Pierre Ossman8ef1a142006-06-30 02:22:21 -07003346untasklet:
Pierre Ossmand129bce2006-03-24 03:18:17 -08003347 tasklet_kill(&host->finish_tasklet);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003348
3349 return ret;
3350}
3351
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003352EXPORT_SYMBOL_GPL(sdhci_add_host);
3353
Pierre Ossman1e728592008-04-16 19:13:13 +02003354void sdhci_remove_host(struct sdhci_host *host, int dead)
Pierre Ossmand129bce2006-03-24 03:18:17 -08003355{
Tim Kryger3a48edc2014-06-13 10:13:56 -07003356 struct mmc_host *mmc = host->mmc;
Pierre Ossman1e728592008-04-16 19:13:13 +02003357 unsigned long flags;
3358
3359 if (dead) {
3360 spin_lock_irqsave(&host->lock, flags);
3361
3362 host->flags |= SDHCI_DEVICE_DEAD;
3363
3364 if (host->mrq) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05303365 pr_err("%s: Controller removed during "
Markus Mayer4e743f12014-07-03 13:27:42 -07003366 " transfer!\n", mmc_hostname(mmc));
Pierre Ossman1e728592008-04-16 19:13:13 +02003367
3368 host->mrq->cmd->error = -ENOMEDIUM;
3369 tasklet_schedule(&host->finish_tasklet);
3370 }
3371
3372 spin_unlock_irqrestore(&host->lock, flags);
3373 }
3374
Anton Vorontsov7260cf52009-03-17 00:13:48 +03003375 sdhci_disable_card_detection(host);
3376
Markus Mayer4e743f12014-07-03 13:27:42 -07003377 mmc_remove_host(mmc);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003378
Pierre Ossmanf9134312008-12-21 17:01:48 +01003379#ifdef SDHCI_USE_LEDS_CLASS
Pierre Ossman2f730fe2008-03-17 10:29:38 +01003380 led_classdev_unregister(&host->led);
3381#endif
3382
Pierre Ossman1e728592008-04-16 19:13:13 +02003383 if (!dead)
Russell King03231f92014-04-25 12:57:12 +01003384 sdhci_do_reset(host, SDHCI_RESET_ALL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003385
Russell Kingb537f942014-04-25 12:56:01 +01003386 sdhci_writel(host, 0, SDHCI_INT_ENABLE);
3387 sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003388 free_irq(host->irq, host);
3389
3390 del_timer_sync(&host->timer);
3391
Pierre Ossmand129bce2006-03-24 03:18:17 -08003392 tasklet_kill(&host->finish_tasklet);
Pierre Ossman2134a922008-06-28 18:28:51 +02003393
Tim Kryger3a48edc2014-06-13 10:13:56 -07003394 if (!IS_ERR(mmc->supply.vqmmc))
3395 regulator_disable(mmc->supply.vqmmc);
Philip Rakity6231f3d2012-07-23 15:56:23 -07003396
Russell Kingedd63fc2016-01-26 13:39:50 +00003397 if (host->align_buffer)
Russell Kinge66e61c2016-01-26 13:39:55 +00003398 dma_free_coherent(mmc_dev(mmc), host->align_buffer_sz +
3399 host->adma_table_sz, host->align_buffer,
3400 host->align_addr);
Pierre Ossman2134a922008-06-28 18:28:51 +02003401
Adrian Hunter4efaa6f2014-11-04 12:42:39 +02003402 host->adma_table = NULL;
Pierre Ossman2134a922008-06-28 18:28:51 +02003403 host->align_buffer = NULL;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003404}
3405
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003406EXPORT_SYMBOL_GPL(sdhci_remove_host);
3407
3408void sdhci_free_host(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -08003409{
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003410 mmc_free_host(host->mmc);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003411}
3412
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003413EXPORT_SYMBOL_GPL(sdhci_free_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003414
3415/*****************************************************************************\
3416 * *
3417 * Driver init/exit *
3418 * *
3419\*****************************************************************************/
3420
3421static int __init sdhci_drv_init(void)
3422{
Girish K Sa3c76eb2011-10-11 11:44:09 +05303423 pr_info(DRIVER_NAME
Pierre Ossman52fbf9c2007-02-09 08:23:41 +01003424 ": Secure Digital Host Controller Interface driver\n");
Girish K Sa3c76eb2011-10-11 11:44:09 +05303425 pr_info(DRIVER_NAME ": Copyright(c) Pierre Ossman\n");
Pierre Ossmand129bce2006-03-24 03:18:17 -08003426
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003427 return 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003428}
3429
3430static void __exit sdhci_drv_exit(void)
3431{
Pierre Ossmand129bce2006-03-24 03:18:17 -08003432}
3433
3434module_init(sdhci_drv_init);
3435module_exit(sdhci_drv_exit);
3436
Pierre Ossmandf673b22006-06-30 02:22:31 -07003437module_param(debug_quirks, uint, 0444);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003438module_param(debug_quirks2, uint, 0444);
Pierre Ossman67435272006-06-30 02:22:31 -07003439
Pierre Ossman32710e82009-04-08 20:14:54 +02003440MODULE_AUTHOR("Pierre Ossman <pierre@ossman.eu>");
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003441MODULE_DESCRIPTION("Secure Digital Host Controller Interface core driver");
Pierre Ossmand129bce2006-03-24 03:18:17 -08003442MODULE_LICENSE("GPL");
Pierre Ossman67435272006-06-30 02:22:31 -07003443
Pierre Ossmandf673b22006-06-30 02:22:31 -07003444MODULE_PARM_DESC(debug_quirks, "Force certain quirks.");
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003445MODULE_PARM_DESC(debug_quirks2, "Force certain other quirks.");