blob: 31c14b0ff8e2ca63950c807e169e83587a70b0c0 [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
Arindam Nathb513ea22011-05-05 12:19:04 +053041#define MAX_TUNING_LOOP 40
42
Pierre Ossmandf673b22006-06-30 02:22:31 -070043static unsigned int debug_quirks = 0;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +030044static unsigned int debug_quirks2;
Pierre Ossman67435272006-06-30 02:22:31 -070045
Pierre Ossmand129bce2006-03-24 03:18:17 -080046static void sdhci_finish_data(struct sdhci_host *);
47
Kevin Liu52983382013-01-31 11:31:37 +080048static void sdhci_enable_preset_value(struct sdhci_host *host, bool enable);
Pierre Ossmand129bce2006-03-24 03:18:17 -080049
50static void sdhci_dumpregs(struct sdhci_host *host)
51{
Chuanxiao Donga7c53672016-06-22 14:40:01 +030052 pr_err(DRIVER_NAME ": =========== REGISTER DUMP (%s)===========\n",
53 mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -080054
Chuanxiao Donga7c53672016-06-22 14:40:01 +030055 pr_err(DRIVER_NAME ": Sys addr: 0x%08x | Version: 0x%08x\n",
56 sdhci_readl(host, SDHCI_DMA_ADDRESS),
57 sdhci_readw(host, SDHCI_HOST_VERSION));
58 pr_err(DRIVER_NAME ": Blk size: 0x%08x | Blk cnt: 0x%08x\n",
59 sdhci_readw(host, SDHCI_BLOCK_SIZE),
60 sdhci_readw(host, SDHCI_BLOCK_COUNT));
61 pr_err(DRIVER_NAME ": Argument: 0x%08x | Trn mode: 0x%08x\n",
62 sdhci_readl(host, SDHCI_ARGUMENT),
63 sdhci_readw(host, SDHCI_TRANSFER_MODE));
64 pr_err(DRIVER_NAME ": Present: 0x%08x | Host ctl: 0x%08x\n",
65 sdhci_readl(host, SDHCI_PRESENT_STATE),
66 sdhci_readb(host, SDHCI_HOST_CONTROL));
67 pr_err(DRIVER_NAME ": Power: 0x%08x | Blk gap: 0x%08x\n",
68 sdhci_readb(host, SDHCI_POWER_CONTROL),
69 sdhci_readb(host, SDHCI_BLOCK_GAP_CONTROL));
70 pr_err(DRIVER_NAME ": Wake-up: 0x%08x | Clock: 0x%08x\n",
71 sdhci_readb(host, SDHCI_WAKE_UP_CONTROL),
72 sdhci_readw(host, SDHCI_CLOCK_CONTROL));
73 pr_err(DRIVER_NAME ": Timeout: 0x%08x | Int stat: 0x%08x\n",
74 sdhci_readb(host, SDHCI_TIMEOUT_CONTROL),
75 sdhci_readl(host, SDHCI_INT_STATUS));
76 pr_err(DRIVER_NAME ": Int enab: 0x%08x | Sig enab: 0x%08x\n",
77 sdhci_readl(host, SDHCI_INT_ENABLE),
78 sdhci_readl(host, SDHCI_SIGNAL_ENABLE));
79 pr_err(DRIVER_NAME ": AC12 err: 0x%08x | Slot int: 0x%08x\n",
80 sdhci_readw(host, SDHCI_ACMD12_ERR),
81 sdhci_readw(host, SDHCI_SLOT_INT_STATUS));
82 pr_err(DRIVER_NAME ": Caps: 0x%08x | Caps_1: 0x%08x\n",
83 sdhci_readl(host, SDHCI_CAPABILITIES),
84 sdhci_readl(host, SDHCI_CAPABILITIES_1));
85 pr_err(DRIVER_NAME ": Cmd: 0x%08x | Max curr: 0x%08x\n",
86 sdhci_readw(host, SDHCI_COMMAND),
87 sdhci_readl(host, SDHCI_MAX_CURRENT));
88 pr_err(DRIVER_NAME ": Host ctl2: 0x%08x\n",
89 sdhci_readw(host, SDHCI_HOST_CONTROL2));
Pierre Ossmand129bce2006-03-24 03:18:17 -080090
Adrian Huntere57a5f62014-11-04 12:42:46 +020091 if (host->flags & SDHCI_USE_ADMA) {
92 if (host->flags & SDHCI_USE_64_BIT_DMA)
Chuanxiao Donga7c53672016-06-22 14:40:01 +030093 pr_err(DRIVER_NAME ": ADMA Err: 0x%08x | ADMA Ptr: 0x%08x%08x\n",
94 readl(host->ioaddr + SDHCI_ADMA_ERROR),
95 readl(host->ioaddr + SDHCI_ADMA_ADDRESS_HI),
96 readl(host->ioaddr + SDHCI_ADMA_ADDRESS));
Adrian Huntere57a5f62014-11-04 12:42:46 +020097 else
Chuanxiao Donga7c53672016-06-22 14:40:01 +030098 pr_err(DRIVER_NAME ": ADMA Err: 0x%08x | ADMA Ptr: 0x%08x\n",
99 readl(host->ioaddr + SDHCI_ADMA_ERROR),
100 readl(host->ioaddr + SDHCI_ADMA_ADDRESS));
Adrian Huntere57a5f62014-11-04 12:42:46 +0200101 }
Ben Dooksbe3f4ae2009-06-08 23:33:52 +0100102
Chuanxiao Donga7c53672016-06-22 14:40:01 +0300103 pr_err(DRIVER_NAME ": ===========================================\n");
Pierre Ossmand129bce2006-03-24 03:18:17 -0800104}
105
106/*****************************************************************************\
107 * *
108 * Low level functions *
109 * *
110\*****************************************************************************/
111
Adrian Hunter56a590d2016-06-29 16:24:32 +0300112static inline bool sdhci_data_line_cmd(struct mmc_command *cmd)
113{
114 return cmd->data || cmd->flags & MMC_RSP_BUSY;
115}
116
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300117static void sdhci_set_card_detection(struct sdhci_host *host, bool enable)
118{
Russell King5b4f1f62014-04-25 12:57:02 +0100119 u32 present;
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300120
Adrian Hunterc79396c2011-12-27 15:48:42 +0200121 if ((host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION) ||
Jaehoon Chung860951c2016-06-21 10:13:26 +0900122 !mmc_card_is_removable(host->mmc))
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300123 return;
124
Russell King5b4f1f62014-04-25 12:57:02 +0100125 if (enable) {
126 present = sdhci_readl(host, SDHCI_PRESENT_STATE) &
127 SDHCI_CARD_PRESENT;
Shawn Guod25928d2011-06-21 22:41:48 +0800128
Russell King5b4f1f62014-04-25 12:57:02 +0100129 host->ier |= present ? SDHCI_INT_CARD_REMOVE :
130 SDHCI_INT_CARD_INSERT;
131 } else {
132 host->ier &= ~(SDHCI_INT_CARD_REMOVE | SDHCI_INT_CARD_INSERT);
133 }
Russell Kingb537f942014-04-25 12:56:01 +0100134
135 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
136 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300137}
138
139static void sdhci_enable_card_detection(struct sdhci_host *host)
140{
141 sdhci_set_card_detection(host, true);
142}
143
144static void sdhci_disable_card_detection(struct sdhci_host *host)
145{
146 sdhci_set_card_detection(host, false);
147}
148
Ulf Hansson02d0b682016-04-11 15:32:41 +0200149static void sdhci_runtime_pm_bus_on(struct sdhci_host *host)
150{
151 if (host->bus_on)
152 return;
153 host->bus_on = true;
154 pm_runtime_get_noresume(host->mmc->parent);
155}
156
157static void sdhci_runtime_pm_bus_off(struct sdhci_host *host)
158{
159 if (!host->bus_on)
160 return;
161 host->bus_on = false;
162 pm_runtime_put_noidle(host->mmc->parent);
163}
164
Russell King03231f92014-04-25 12:57:12 +0100165void sdhci_reset(struct sdhci_host *host, u8 mask)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800166{
Pierre Ossmane16514d82006-06-30 02:22:24 -0700167 unsigned long timeout;
Philip Rakity393c1a32011-01-21 11:26:40 -0800168
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300169 sdhci_writeb(host, mask, SDHCI_SOFTWARE_RESET);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800170
Adrian Hunterf0710a52013-05-06 12:17:32 +0300171 if (mask & SDHCI_RESET_ALL) {
Pierre Ossmand129bce2006-03-24 03:18:17 -0800172 host->clock = 0;
Adrian Hunterf0710a52013-05-06 12:17:32 +0300173 /* Reset-all turns off SD Bus Power */
174 if (host->quirks2 & SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON)
175 sdhci_runtime_pm_bus_off(host);
176 }
Pierre Ossmand129bce2006-03-24 03:18:17 -0800177
Pierre Ossmane16514d82006-06-30 02:22:24 -0700178 /* Wait max 100 ms */
179 timeout = 100;
180
181 /* hw clears the bit when it's done */
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300182 while (sdhci_readb(host, SDHCI_SOFTWARE_RESET) & mask) {
Pierre Ossmane16514d82006-06-30 02:22:24 -0700183 if (timeout == 0) {
Girish K Sa3c76eb2011-10-11 11:44:09 +0530184 pr_err("%s: Reset 0x%x never completed.\n",
Pierre Ossmane16514d82006-06-30 02:22:24 -0700185 mmc_hostname(host->mmc), (int)mask);
186 sdhci_dumpregs(host);
187 return;
188 }
189 timeout--;
190 mdelay(1);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800191 }
Russell King03231f92014-04-25 12:57:12 +0100192}
193EXPORT_SYMBOL_GPL(sdhci_reset);
Anton Vorontsov063a9db2009-03-17 00:14:02 +0300194
Russell King03231f92014-04-25 12:57:12 +0100195static void sdhci_do_reset(struct sdhci_host *host, u8 mask)
196{
197 if (host->quirks & SDHCI_QUIRK_NO_CARD_NO_RESET) {
Adrian Hunterd3940f22016-06-29 16:24:14 +0300198 struct mmc_host *mmc = host->mmc;
199
200 if (!mmc->ops->get_cd(mmc))
Russell King03231f92014-04-25 12:57:12 +0100201 return;
202 }
203
204 host->ops->reset(host, mask);
Philip Rakity393c1a32011-01-21 11:26:40 -0800205
Russell Kingda91a8f2014-04-25 13:00:12 +0100206 if (mask & SDHCI_RESET_ALL) {
207 if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
208 if (host->ops->enable_dma)
209 host->ops->enable_dma(host);
210 }
211
212 /* Resetting the controller clears many */
213 host->preset_enabled = false;
Shaohui Xie3abc1e802011-12-29 16:33:00 +0800214 }
Pierre Ossmand129bce2006-03-24 03:18:17 -0800215}
216
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -0800217static void sdhci_init(struct sdhci_host *host, int soft)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800218{
Adrian Hunterd3940f22016-06-29 16:24:14 +0300219 struct mmc_host *mmc = host->mmc;
220
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -0800221 if (soft)
Russell King03231f92014-04-25 12:57:12 +0100222 sdhci_do_reset(host, SDHCI_RESET_CMD|SDHCI_RESET_DATA);
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -0800223 else
Russell King03231f92014-04-25 12:57:12 +0100224 sdhci_do_reset(host, SDHCI_RESET_ALL);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800225
Russell Kingb537f942014-04-25 12:56:01 +0100226 host->ier = SDHCI_INT_BUS_POWER | SDHCI_INT_DATA_END_BIT |
227 SDHCI_INT_DATA_CRC | SDHCI_INT_DATA_TIMEOUT |
228 SDHCI_INT_INDEX | SDHCI_INT_END_BIT | SDHCI_INT_CRC |
229 SDHCI_INT_TIMEOUT | SDHCI_INT_DATA_END |
230 SDHCI_INT_RESPONSE;
231
Dong Aishengf37b20e2016-07-12 15:46:17 +0800232 if (host->tuning_mode == SDHCI_TUNING_MODE_2 ||
233 host->tuning_mode == SDHCI_TUNING_MODE_3)
234 host->ier |= SDHCI_INT_RETUNE;
235
Russell Kingb537f942014-04-25 12:56:01 +0100236 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
237 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -0800238
239 if (soft) {
240 /* force clock reconfiguration */
241 host->clock = 0;
Adrian Hunterd3940f22016-06-29 16:24:14 +0300242 mmc->ops->set_ios(mmc, &mmc->ios);
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -0800243 }
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300244}
Pierre Ossmand129bce2006-03-24 03:18:17 -0800245
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300246static void sdhci_reinit(struct sdhci_host *host)
247{
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -0800248 sdhci_init(host, 0);
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300249 sdhci_enable_card_detection(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800250}
251
Adrian Hunter061d17a2016-04-12 14:25:09 +0300252static void __sdhci_led_activate(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800253{
254 u8 ctrl;
255
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300256 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800257 ctrl |= SDHCI_CTRL_LED;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300258 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800259}
260
Adrian Hunter061d17a2016-04-12 14:25:09 +0300261static void __sdhci_led_deactivate(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800262{
263 u8 ctrl;
264
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300265 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800266 ctrl &= ~SDHCI_CTRL_LED;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300267 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800268}
269
Masahiro Yamada4f782302016-04-14 13:19:39 +0900270#if IS_REACHABLE(CONFIG_LEDS_CLASS)
Pierre Ossman2f730fe2008-03-17 10:29:38 +0100271static void sdhci_led_control(struct led_classdev *led,
Adrian Hunter061d17a2016-04-12 14:25:09 +0300272 enum led_brightness brightness)
Pierre Ossman2f730fe2008-03-17 10:29:38 +0100273{
274 struct sdhci_host *host = container_of(led, struct sdhci_host, led);
275 unsigned long flags;
276
277 spin_lock_irqsave(&host->lock, flags);
278
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300279 if (host->runtime_suspended)
280 goto out;
281
Pierre Ossman2f730fe2008-03-17 10:29:38 +0100282 if (brightness == LED_OFF)
Adrian Hunter061d17a2016-04-12 14:25:09 +0300283 __sdhci_led_deactivate(host);
Pierre Ossman2f730fe2008-03-17 10:29:38 +0100284 else
Adrian Hunter061d17a2016-04-12 14:25:09 +0300285 __sdhci_led_activate(host);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300286out:
Pierre Ossman2f730fe2008-03-17 10:29:38 +0100287 spin_unlock_irqrestore(&host->lock, flags);
288}
Adrian Hunter061d17a2016-04-12 14:25:09 +0300289
290static int sdhci_led_register(struct sdhci_host *host)
291{
292 struct mmc_host *mmc = host->mmc;
293
294 snprintf(host->led_name, sizeof(host->led_name),
295 "%s::", mmc_hostname(mmc));
296
297 host->led.name = host->led_name;
298 host->led.brightness = LED_OFF;
299 host->led.default_trigger = mmc_hostname(mmc);
300 host->led.brightness_set = sdhci_led_control;
301
302 return led_classdev_register(mmc_dev(mmc), &host->led);
303}
304
305static void sdhci_led_unregister(struct sdhci_host *host)
306{
307 led_classdev_unregister(&host->led);
308}
309
310static inline void sdhci_led_activate(struct sdhci_host *host)
311{
312}
313
314static inline void sdhci_led_deactivate(struct sdhci_host *host)
315{
316}
317
318#else
319
320static inline int sdhci_led_register(struct sdhci_host *host)
321{
322 return 0;
323}
324
325static inline void sdhci_led_unregister(struct sdhci_host *host)
326{
327}
328
329static inline void sdhci_led_activate(struct sdhci_host *host)
330{
331 __sdhci_led_activate(host);
332}
333
334static inline void sdhci_led_deactivate(struct sdhci_host *host)
335{
336 __sdhci_led_deactivate(host);
337}
338
Pierre Ossman2f730fe2008-03-17 10:29:38 +0100339#endif
340
Pierre Ossmand129bce2006-03-24 03:18:17 -0800341/*****************************************************************************\
342 * *
343 * Core functions *
344 * *
345\*****************************************************************************/
346
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100347static void sdhci_read_block_pio(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800348{
Pierre Ossman76591502008-07-21 00:32:11 +0200349 unsigned long flags;
350 size_t blksize, len, chunk;
Steven Noonan7244b852008-10-01 01:50:25 -0700351 u32 uninitialized_var(scratch);
Pierre Ossman76591502008-07-21 00:32:11 +0200352 u8 *buf;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800353
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100354 DBG("PIO reading\n");
Pierre Ossmand129bce2006-03-24 03:18:17 -0800355
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100356 blksize = host->data->blksz;
Pierre Ossman76591502008-07-21 00:32:11 +0200357 chunk = 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800358
Pierre Ossman76591502008-07-21 00:32:11 +0200359 local_irq_save(flags);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800360
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100361 while (blksize) {
Fabio Estevambf3a35a2015-05-09 18:44:51 -0300362 BUG_ON(!sg_miter_next(&host->sg_miter));
Pierre Ossmand129bce2006-03-24 03:18:17 -0800363
Pierre Ossman76591502008-07-21 00:32:11 +0200364 len = min(host->sg_miter.length, blksize);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800365
Pierre Ossman76591502008-07-21 00:32:11 +0200366 blksize -= len;
367 host->sg_miter.consumed = len;
Alex Dubov14d836e2007-04-13 19:04:38 +0200368
Pierre Ossman76591502008-07-21 00:32:11 +0200369 buf = host->sg_miter.addr;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800370
Pierre Ossman76591502008-07-21 00:32:11 +0200371 while (len) {
372 if (chunk == 0) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300373 scratch = sdhci_readl(host, SDHCI_BUFFER);
Pierre Ossman76591502008-07-21 00:32:11 +0200374 chunk = 4;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800375 }
Pierre Ossman76591502008-07-21 00:32:11 +0200376
377 *buf = scratch & 0xFF;
378
379 buf++;
380 scratch >>= 8;
381 chunk--;
382 len--;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800383 }
384 }
Pierre Ossman76591502008-07-21 00:32:11 +0200385
386 sg_miter_stop(&host->sg_miter);
387
388 local_irq_restore(flags);
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100389}
Pierre Ossmand129bce2006-03-24 03:18:17 -0800390
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100391static void sdhci_write_block_pio(struct sdhci_host *host)
392{
Pierre Ossman76591502008-07-21 00:32:11 +0200393 unsigned long flags;
394 size_t blksize, len, chunk;
395 u32 scratch;
396 u8 *buf;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100397
398 DBG("PIO writing\n");
399
400 blksize = host->data->blksz;
Pierre Ossman76591502008-07-21 00:32:11 +0200401 chunk = 0;
402 scratch = 0;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100403
Pierre Ossman76591502008-07-21 00:32:11 +0200404 local_irq_save(flags);
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100405
406 while (blksize) {
Fabio Estevambf3a35a2015-05-09 18:44:51 -0300407 BUG_ON(!sg_miter_next(&host->sg_miter));
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100408
Pierre Ossman76591502008-07-21 00:32:11 +0200409 len = min(host->sg_miter.length, blksize);
Alex Dubov14d836e2007-04-13 19:04:38 +0200410
Pierre Ossman76591502008-07-21 00:32:11 +0200411 blksize -= len;
412 host->sg_miter.consumed = len;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100413
Pierre Ossman76591502008-07-21 00:32:11 +0200414 buf = host->sg_miter.addr;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100415
Pierre Ossman76591502008-07-21 00:32:11 +0200416 while (len) {
417 scratch |= (u32)*buf << (chunk * 8);
418
419 buf++;
420 chunk++;
421 len--;
422
423 if ((chunk == 4) || ((len == 0) && (blksize == 0))) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300424 sdhci_writel(host, scratch, SDHCI_BUFFER);
Pierre Ossman76591502008-07-21 00:32:11 +0200425 chunk = 0;
426 scratch = 0;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100427 }
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100428 }
429 }
Pierre Ossman76591502008-07-21 00:32:11 +0200430
431 sg_miter_stop(&host->sg_miter);
432
433 local_irq_restore(flags);
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100434}
435
436static void sdhci_transfer_pio(struct sdhci_host *host)
437{
438 u32 mask;
439
Pierre Ossman76591502008-07-21 00:32:11 +0200440 if (host->blocks == 0)
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100441 return;
442
443 if (host->data->flags & MMC_DATA_READ)
444 mask = SDHCI_DATA_AVAILABLE;
445 else
446 mask = SDHCI_SPACE_AVAILABLE;
447
Pierre Ossman4a3cba32008-07-29 00:11:16 +0200448 /*
449 * Some controllers (JMicron JMB38x) mess up the buffer bits
450 * for transfers < 4 bytes. As long as it is just one block,
451 * we can ignore the bits.
452 */
453 if ((host->quirks & SDHCI_QUIRK_BROKEN_SMALL_PIO) &&
454 (host->data->blocks == 1))
455 mask = ~0;
456
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300457 while (sdhci_readl(host, SDHCI_PRESENT_STATE) & mask) {
Anton Vorontsov3e3bf202009-03-17 00:14:00 +0300458 if (host->quirks & SDHCI_QUIRK_PIO_NEEDS_DELAY)
459 udelay(100);
460
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100461 if (host->data->flags & MMC_DATA_READ)
462 sdhci_read_block_pio(host);
463 else
464 sdhci_write_block_pio(host);
465
Pierre Ossman76591502008-07-21 00:32:11 +0200466 host->blocks--;
467 if (host->blocks == 0)
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100468 break;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100469 }
470
471 DBG("PIO transfer complete.\n");
Pierre Ossmand129bce2006-03-24 03:18:17 -0800472}
473
Russell King48857d92016-01-26 13:40:16 +0000474static int sdhci_pre_dma_transfer(struct sdhci_host *host,
Russell Kingc0999b72016-01-26 13:40:27 +0000475 struct mmc_data *data, int cookie)
Russell King48857d92016-01-26 13:40:16 +0000476{
477 int sg_count;
478
Russell King94538e52016-01-26 13:40:37 +0000479 /*
480 * If the data buffers are already mapped, return the previous
481 * dma_map_sg() result.
482 */
483 if (data->host_cookie == COOKIE_PRE_MAPPED)
Russell King48857d92016-01-26 13:40:16 +0000484 return data->sg_count;
Russell King48857d92016-01-26 13:40:16 +0000485
486 sg_count = dma_map_sg(mmc_dev(host->mmc), data->sg, data->sg_len,
487 data->flags & MMC_DATA_WRITE ?
488 DMA_TO_DEVICE : DMA_FROM_DEVICE);
489
490 if (sg_count == 0)
491 return -ENOSPC;
492
493 data->sg_count = sg_count;
Russell Kingc0999b72016-01-26 13:40:27 +0000494 data->host_cookie = cookie;
Russell King48857d92016-01-26 13:40:16 +0000495
496 return sg_count;
497}
498
Pierre Ossman2134a922008-06-28 18:28:51 +0200499static char *sdhci_kmap_atomic(struct scatterlist *sg, unsigned long *flags)
500{
501 local_irq_save(*flags);
Cong Wang482fce92011-11-27 13:27:00 +0800502 return kmap_atomic(sg_page(sg)) + sg->offset;
Pierre Ossman2134a922008-06-28 18:28:51 +0200503}
504
505static void sdhci_kunmap_atomic(void *buffer, unsigned long *flags)
506{
Cong Wang482fce92011-11-27 13:27:00 +0800507 kunmap_atomic(buffer);
Pierre Ossman2134a922008-06-28 18:28:51 +0200508 local_irq_restore(*flags);
509}
510
Adrian Huntere57a5f62014-11-04 12:42:46 +0200511static void sdhci_adma_write_desc(struct sdhci_host *host, void *desc,
512 dma_addr_t addr, int len, unsigned cmd)
Ben Dooks118cd172010-03-05 13:43:26 -0800513{
Adrian Huntere57a5f62014-11-04 12:42:46 +0200514 struct sdhci_adma2_64_desc *dma_desc = desc;
Ben Dooks118cd172010-03-05 13:43:26 -0800515
Adrian Huntere57a5f62014-11-04 12:42:46 +0200516 /* 32-bit and 64-bit descriptors have these members in same position */
Adrian Hunter05452302014-11-04 12:42:45 +0200517 dma_desc->cmd = cpu_to_le16(cmd);
518 dma_desc->len = cpu_to_le16(len);
Adrian Huntere57a5f62014-11-04 12:42:46 +0200519 dma_desc->addr_lo = cpu_to_le32((u32)addr);
520
521 if (host->flags & SDHCI_USE_64_BIT_DMA)
522 dma_desc->addr_hi = cpu_to_le32((u64)addr >> 32);
Ben Dooks118cd172010-03-05 13:43:26 -0800523}
524
Adrian Hunterb5ffa672014-11-04 12:42:40 +0200525static void sdhci_adma_mark_end(void *desc)
526{
Adrian Huntere57a5f62014-11-04 12:42:46 +0200527 struct sdhci_adma2_64_desc *dma_desc = desc;
Adrian Hunterb5ffa672014-11-04 12:42:40 +0200528
Adrian Huntere57a5f62014-11-04 12:42:46 +0200529 /* 32-bit and 64-bit descriptors have 'cmd' in same position */
Adrian Hunter05452302014-11-04 12:42:45 +0200530 dma_desc->cmd |= cpu_to_le16(ADMA2_END);
Adrian Hunterb5ffa672014-11-04 12:42:40 +0200531}
532
Russell King60c64762016-01-26 13:40:22 +0000533static void sdhci_adma_table_pre(struct sdhci_host *host,
534 struct mmc_data *data, int sg_count)
Pierre Ossman2134a922008-06-28 18:28:51 +0200535{
Pierre Ossman2134a922008-06-28 18:28:51 +0200536 struct scatterlist *sg;
Pierre Ossman2134a922008-06-28 18:28:51 +0200537 unsigned long flags;
Russell Kingacc3ad12016-01-26 13:40:00 +0000538 dma_addr_t addr, align_addr;
539 void *desc, *align;
540 char *buffer;
541 int len, offset, i;
Pierre Ossman2134a922008-06-28 18:28:51 +0200542
543 /*
544 * The spec does not specify endianness of descriptor table.
545 * We currently guess that it is LE.
546 */
547
Russell King60c64762016-01-26 13:40:22 +0000548 host->sg_count = sg_count;
Pierre Ossman2134a922008-06-28 18:28:51 +0200549
Adrian Hunter4efaa6f2014-11-04 12:42:39 +0200550 desc = host->adma_table;
Pierre Ossman2134a922008-06-28 18:28:51 +0200551 align = host->align_buffer;
552
553 align_addr = host->align_addr;
554
555 for_each_sg(data->sg, sg, host->sg_count, i) {
556 addr = sg_dma_address(sg);
557 len = sg_dma_len(sg);
558
559 /*
Russell Kingacc3ad12016-01-26 13:40:00 +0000560 * The SDHCI specification states that ADMA addresses must
561 * be 32-bit aligned. If they aren't, then we use a bounce
562 * buffer for the (up to three) bytes that screw up the
Pierre Ossman2134a922008-06-28 18:28:51 +0200563 * alignment.
564 */
Adrian Hunter04a5ae62015-11-26 14:00:49 +0200565 offset = (SDHCI_ADMA2_ALIGN - (addr & SDHCI_ADMA2_MASK)) &
566 SDHCI_ADMA2_MASK;
Pierre Ossman2134a922008-06-28 18:28:51 +0200567 if (offset) {
568 if (data->flags & MMC_DATA_WRITE) {
569 buffer = sdhci_kmap_atomic(sg, &flags);
570 memcpy(align, buffer, offset);
571 sdhci_kunmap_atomic(buffer, &flags);
572 }
573
Ben Dooks118cd172010-03-05 13:43:26 -0800574 /* tran, valid */
Adrian Huntere57a5f62014-11-04 12:42:46 +0200575 sdhci_adma_write_desc(host, desc, align_addr, offset,
Adrian Hunter739d46d2014-11-04 12:42:44 +0200576 ADMA2_TRAN_VALID);
Pierre Ossman2134a922008-06-28 18:28:51 +0200577
578 BUG_ON(offset > 65536);
579
Adrian Hunter04a5ae62015-11-26 14:00:49 +0200580 align += SDHCI_ADMA2_ALIGN;
581 align_addr += SDHCI_ADMA2_ALIGN;
Pierre Ossman2134a922008-06-28 18:28:51 +0200582
Adrian Hunter76fe3792014-11-04 12:42:42 +0200583 desc += host->desc_sz;
Pierre Ossman2134a922008-06-28 18:28:51 +0200584
585 addr += offset;
586 len -= offset;
587 }
588
Pierre Ossman2134a922008-06-28 18:28:51 +0200589 BUG_ON(len > 65536);
590
Adrian Hunter347ea322015-11-26 14:00:48 +0200591 if (len) {
592 /* tran, valid */
593 sdhci_adma_write_desc(host, desc, addr, len,
594 ADMA2_TRAN_VALID);
595 desc += host->desc_sz;
596 }
Pierre Ossman2134a922008-06-28 18:28:51 +0200597
598 /*
599 * If this triggers then we have a calculation bug
600 * somewhere. :/
601 */
Adrian Hunter76fe3792014-11-04 12:42:42 +0200602 WARN_ON((desc - host->adma_table) >= host->adma_table_sz);
Pierre Ossman2134a922008-06-28 18:28:51 +0200603 }
604
Thomas Abraham70764a92010-05-26 14:42:04 -0700605 if (host->quirks & SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC) {
Russell Kingacc3ad12016-01-26 13:40:00 +0000606 /* Mark the last descriptor as the terminating descriptor */
Adrian Hunter4efaa6f2014-11-04 12:42:39 +0200607 if (desc != host->adma_table) {
Adrian Hunter76fe3792014-11-04 12:42:42 +0200608 desc -= host->desc_sz;
Adrian Hunterb5ffa672014-11-04 12:42:40 +0200609 sdhci_adma_mark_end(desc);
Thomas Abraham70764a92010-05-26 14:42:04 -0700610 }
611 } else {
Russell Kingacc3ad12016-01-26 13:40:00 +0000612 /* Add a terminating entry - nop, end, valid */
Adrian Huntere57a5f62014-11-04 12:42:46 +0200613 sdhci_adma_write_desc(host, desc, 0, 0, ADMA2_NOP_END_VALID);
Thomas Abraham70764a92010-05-26 14:42:04 -0700614 }
Pierre Ossman2134a922008-06-28 18:28:51 +0200615}
616
617static void sdhci_adma_table_post(struct sdhci_host *host,
618 struct mmc_data *data)
619{
Pierre Ossman2134a922008-06-28 18:28:51 +0200620 struct scatterlist *sg;
621 int i, size;
Adrian Hunter1c3d5f62014-11-04 12:42:41 +0200622 void *align;
Pierre Ossman2134a922008-06-28 18:28:51 +0200623 char *buffer;
624 unsigned long flags;
625
Russell King47fa9612016-01-26 13:40:06 +0000626 if (data->flags & MMC_DATA_READ) {
627 bool has_unaligned = false;
Russell Kingde0b65a2014-04-25 12:58:29 +0100628
Russell King47fa9612016-01-26 13:40:06 +0000629 /* Do a quick scan of the SG list for any unaligned mappings */
630 for_each_sg(data->sg, sg, host->sg_count, i)
Adrian Hunter04a5ae62015-11-26 14:00:49 +0200631 if (sg_dma_address(sg) & SDHCI_ADMA2_MASK) {
Russell King47fa9612016-01-26 13:40:06 +0000632 has_unaligned = true;
633 break;
634 }
Pierre Ossman2134a922008-06-28 18:28:51 +0200635
Russell King47fa9612016-01-26 13:40:06 +0000636 if (has_unaligned) {
637 dma_sync_sg_for_cpu(mmc_dev(host->mmc), data->sg,
Russell Kingf55c98f2016-01-26 13:40:11 +0000638 data->sg_len, DMA_FROM_DEVICE);
Pierre Ossman2134a922008-06-28 18:28:51 +0200639
Russell King47fa9612016-01-26 13:40:06 +0000640 align = host->align_buffer;
641
642 for_each_sg(data->sg, sg, host->sg_count, i) {
643 if (sg_dma_address(sg) & SDHCI_ADMA2_MASK) {
644 size = SDHCI_ADMA2_ALIGN -
645 (sg_dma_address(sg) & SDHCI_ADMA2_MASK);
646
647 buffer = sdhci_kmap_atomic(sg, &flags);
648 memcpy(buffer, align, size);
649 sdhci_kunmap_atomic(buffer, &flags);
650
651 align += SDHCI_ADMA2_ALIGN;
652 }
Pierre Ossman2134a922008-06-28 18:28:51 +0200653 }
654 }
655 }
Pierre Ossman2134a922008-06-28 18:28:51 +0200656}
657
Andrei Warkentina3c77782011-04-11 16:13:42 -0500658static u8 sdhci_calc_timeout(struct sdhci_host *host, struct mmc_command *cmd)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800659{
Pierre Ossman1c8cde92006-06-30 02:22:25 -0700660 u8 count;
Andrei Warkentina3c77782011-04-11 16:13:42 -0500661 struct mmc_data *data = cmd->data;
Pierre Ossman1c8cde92006-06-30 02:22:25 -0700662 unsigned target_timeout, current_timeout;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800663
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200664 /*
665 * If the host controller provides us with an incorrect timeout
666 * value, just skip the check and use 0xE. The hardware may take
667 * longer to time out, but that's much better than having a too-short
668 * timeout value.
669 */
Pierre Ossman11a2f1b2009-06-21 20:59:33 +0200670 if (host->quirks & SDHCI_QUIRK_BROKEN_TIMEOUT_VAL)
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200671 return 0xE;
Pierre Ossmane538fbe2007-08-12 16:46:32 +0200672
Andrei Warkentina3c77782011-04-11 16:13:42 -0500673 /* Unspecified timeout, assume max */
Ulf Hansson1d4d7742014-01-08 15:06:08 +0100674 if (!data && !cmd->busy_timeout)
Andrei Warkentina3c77782011-04-11 16:13:42 -0500675 return 0xE;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800676
Andrei Warkentina3c77782011-04-11 16:13:42 -0500677 /* timeout in us */
678 if (!data)
Ulf Hansson1d4d7742014-01-08 15:06:08 +0100679 target_timeout = cmd->busy_timeout * 1000;
Andy Shevchenko78a2ca22011-08-03 18:35:59 +0300680 else {
Russell Kingfafcfda2016-01-26 13:40:58 +0000681 target_timeout = DIV_ROUND_UP(data->timeout_ns, 1000);
Russell King7f055382016-01-26 13:41:04 +0000682 if (host->clock && data->timeout_clks) {
683 unsigned long long val;
684
685 /*
686 * data->timeout_clks is in units of clock cycles.
687 * host->clock is in Hz. target_timeout is in us.
688 * Hence, us = 1000000 * cycles / Hz. Round up.
689 */
690 val = 1000000 * data->timeout_clks;
691 if (do_div(val, host->clock))
692 target_timeout++;
693 target_timeout += val;
694 }
Andy Shevchenko78a2ca22011-08-03 18:35:59 +0300695 }
Anton Vorontsov81b39802009-09-22 16:45:13 -0700696
Pierre Ossman1c8cde92006-06-30 02:22:25 -0700697 /*
698 * Figure out needed cycles.
699 * We do this in steps in order to fit inside a 32 bit int.
700 * The first step is the minimum timeout, which will have a
701 * minimum resolution of 6 bits:
702 * (1) 2^13*1000 > 2^22,
703 * (2) host->timeout_clk < 2^16
704 * =>
705 * (1) / (2) > 2^6
706 */
707 count = 0;
708 current_timeout = (1 << 13) * 1000 / host->timeout_clk;
709 while (current_timeout < target_timeout) {
710 count++;
711 current_timeout <<= 1;
712 if (count >= 0xF)
713 break;
714 }
715
716 if (count >= 0xF) {
Chris Ball09eeff52012-06-01 10:39:45 -0400717 DBG("%s: Too large timeout 0x%x requested for CMD%d!\n",
718 mmc_hostname(host->mmc), count, cmd->opcode);
Pierre Ossman1c8cde92006-06-30 02:22:25 -0700719 count = 0xE;
720 }
721
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200722 return count;
723}
724
Anton Vorontsov6aa943a2009-03-17 00:13:50 +0300725static void sdhci_set_transfer_irqs(struct sdhci_host *host)
726{
727 u32 pio_irqs = SDHCI_INT_DATA_AVAIL | SDHCI_INT_SPACE_AVAIL;
728 u32 dma_irqs = SDHCI_INT_DMA_END | SDHCI_INT_ADMA_ERROR;
729
730 if (host->flags & SDHCI_REQ_USE_DMA)
Russell Kingb537f942014-04-25 12:56:01 +0100731 host->ier = (host->ier & ~pio_irqs) | dma_irqs;
Anton Vorontsov6aa943a2009-03-17 00:13:50 +0300732 else
Russell Kingb537f942014-04-25 12:56:01 +0100733 host->ier = (host->ier & ~dma_irqs) | pio_irqs;
734
735 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
736 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Anton Vorontsov6aa943a2009-03-17 00:13:50 +0300737}
738
Aisheng Dongb45e6682014-08-27 15:26:29 +0800739static void sdhci_set_timeout(struct sdhci_host *host, struct mmc_command *cmd)
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200740{
741 u8 count;
Aisheng Dongb45e6682014-08-27 15:26:29 +0800742
743 if (host->ops->set_timeout) {
744 host->ops->set_timeout(host, cmd);
745 } else {
746 count = sdhci_calc_timeout(host, cmd);
747 sdhci_writeb(host, count, SDHCI_TIMEOUT_CONTROL);
748 }
749}
750
751static void sdhci_prepare_data(struct sdhci_host *host, struct mmc_command *cmd)
752{
Pierre Ossman2134a922008-06-28 18:28:51 +0200753 u8 ctrl;
Andrei Warkentina3c77782011-04-11 16:13:42 -0500754 struct mmc_data *data = cmd->data;
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200755
Adrian Hunter56a590d2016-06-29 16:24:32 +0300756 if (sdhci_data_line_cmd(cmd))
Aisheng Dongb45e6682014-08-27 15:26:29 +0800757 sdhci_set_timeout(host, cmd);
Andrei Warkentina3c77782011-04-11 16:13:42 -0500758
759 if (!data)
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200760 return;
761
Adrian Hunter43dea092016-06-29 16:24:26 +0300762 WARN_ON(host->data);
763
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200764 /* Sanity checks */
765 BUG_ON(data->blksz * data->blocks > 524288);
766 BUG_ON(data->blksz > host->mmc->max_blk_size);
767 BUG_ON(data->blocks > 65535);
768
769 host->data = data;
770 host->data_early = 0;
Mikko Vinnif6a03cb2011-04-12 09:36:18 -0400771 host->data->bytes_xfered = 0;
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200772
Russell Kingfce14422016-01-26 13:41:20 +0000773 if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
Pierre Ossman2134a922008-06-28 18:28:51 +0200774 struct scatterlist *sg;
Russell Kingdf953922016-01-26 13:41:14 +0000775 unsigned int length_mask, offset_mask;
Russell Kinga0eaf0f2016-01-26 13:41:09 +0000776 int i;
Pierre Ossman2134a922008-06-28 18:28:51 +0200777
Russell Kingfce14422016-01-26 13:41:20 +0000778 host->flags |= SDHCI_REQ_USE_DMA;
779
780 /*
781 * FIXME: This doesn't account for merging when mapping the
782 * scatterlist.
783 *
784 * The assumption here being that alignment and lengths are
785 * the same after DMA mapping to device address space.
786 */
Russell Kinga0eaf0f2016-01-26 13:41:09 +0000787 length_mask = 0;
Russell Kingdf953922016-01-26 13:41:14 +0000788 offset_mask = 0;
Pierre Ossman2134a922008-06-28 18:28:51 +0200789 if (host->flags & SDHCI_USE_ADMA) {
Russell Kingdf953922016-01-26 13:41:14 +0000790 if (host->quirks & SDHCI_QUIRK_32BIT_ADMA_SIZE) {
Russell Kinga0eaf0f2016-01-26 13:41:09 +0000791 length_mask = 3;
Russell Kingdf953922016-01-26 13:41:14 +0000792 /*
793 * As we use up to 3 byte chunks to work
794 * around alignment problems, we need to
795 * check the offset as well.
796 */
797 offset_mask = 3;
798 }
Pierre Ossman2134a922008-06-28 18:28:51 +0200799 } else {
800 if (host->quirks & SDHCI_QUIRK_32BIT_DMA_SIZE)
Russell Kinga0eaf0f2016-01-26 13:41:09 +0000801 length_mask = 3;
Russell Kingdf953922016-01-26 13:41:14 +0000802 if (host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR)
803 offset_mask = 3;
Pierre Ossman2134a922008-06-28 18:28:51 +0200804 }
805
Russell Kingdf953922016-01-26 13:41:14 +0000806 if (unlikely(length_mask | offset_mask)) {
Pierre Ossman2134a922008-06-28 18:28:51 +0200807 for_each_sg(data->sg, sg, data->sg_len, i) {
Russell Kinga0eaf0f2016-01-26 13:41:09 +0000808 if (sg->length & length_mask) {
Marek Vasut2e4456f2015-11-18 10:47:02 +0100809 DBG("Reverting to PIO because of transfer size (%d)\n",
Russell Kinga0eaf0f2016-01-26 13:41:09 +0000810 sg->length);
Pierre Ossman2134a922008-06-28 18:28:51 +0200811 host->flags &= ~SDHCI_REQ_USE_DMA;
812 break;
813 }
Russell Kinga0eaf0f2016-01-26 13:41:09 +0000814 if (sg->offset & offset_mask) {
Marek Vasut2e4456f2015-11-18 10:47:02 +0100815 DBG("Reverting to PIO because of bad alignment\n");
Pierre Ossman2134a922008-06-28 18:28:51 +0200816 host->flags &= ~SDHCI_REQ_USE_DMA;
817 break;
818 }
819 }
820 }
821 }
822
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200823 if (host->flags & SDHCI_REQ_USE_DMA) {
Russell Kingc0999b72016-01-26 13:40:27 +0000824 int sg_cnt = sdhci_pre_dma_transfer(host, data, COOKIE_MAPPED);
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200825
Russell King60c64762016-01-26 13:40:22 +0000826 if (sg_cnt <= 0) {
827 /*
828 * This only happens when someone fed
829 * us an invalid request.
830 */
831 WARN_ON(1);
832 host->flags &= ~SDHCI_REQ_USE_DMA;
833 } else if (host->flags & SDHCI_USE_ADMA) {
834 sdhci_adma_table_pre(host, data, sg_cnt);
835
836 sdhci_writel(host, host->adma_addr, SDHCI_ADMA_ADDRESS);
837 if (host->flags & SDHCI_USE_64_BIT_DMA)
838 sdhci_writel(host,
839 (u64)host->adma_addr >> 32,
840 SDHCI_ADMA_ADDRESS_HI);
841 } else {
842 WARN_ON(sg_cnt != 1);
843 sdhci_writel(host, sg_dma_address(data->sg),
844 SDHCI_DMA_ADDRESS);
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200845 }
846 }
847
Pierre Ossman2134a922008-06-28 18:28:51 +0200848 /*
849 * Always adjust the DMA selection as some controllers
850 * (e.g. JMicron) can't do PIO properly when the selection
851 * is ADMA.
852 */
853 if (host->version >= SDHCI_SPEC_200) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300854 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
Pierre Ossman2134a922008-06-28 18:28:51 +0200855 ctrl &= ~SDHCI_CTRL_DMA_MASK;
856 if ((host->flags & SDHCI_REQ_USE_DMA) &&
Adrian Huntere57a5f62014-11-04 12:42:46 +0200857 (host->flags & SDHCI_USE_ADMA)) {
858 if (host->flags & SDHCI_USE_64_BIT_DMA)
859 ctrl |= SDHCI_CTRL_ADMA64;
860 else
861 ctrl |= SDHCI_CTRL_ADMA32;
862 } else {
Pierre Ossman2134a922008-06-28 18:28:51 +0200863 ctrl |= SDHCI_CTRL_SDMA;
Adrian Huntere57a5f62014-11-04 12:42:46 +0200864 }
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300865 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Pierre Ossmanc9fddbc2007-12-02 19:52:11 +0100866 }
867
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200868 if (!(host->flags & SDHCI_REQ_USE_DMA)) {
Sebastian Andrzej Siewiorda60a912009-06-18 09:33:32 +0200869 int flags;
870
871 flags = SG_MITER_ATOMIC;
872 if (host->data->flags & MMC_DATA_READ)
873 flags |= SG_MITER_TO_SG;
874 else
875 flags |= SG_MITER_FROM_SG;
876 sg_miter_start(&host->sg_miter, data->sg, data->sg_len, flags);
Pierre Ossman76591502008-07-21 00:32:11 +0200877 host->blocks = data->blocks;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800878 }
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700879
Anton Vorontsov6aa943a2009-03-17 00:13:50 +0300880 sdhci_set_transfer_irqs(host);
881
Mikko Vinnif6a03cb2011-04-12 09:36:18 -0400882 /* Set the DMA boundary value and block size */
883 sdhci_writew(host, SDHCI_MAKE_BLKSZ(SDHCI_DEFAULT_BOUNDARY_ARG,
884 data->blksz), SDHCI_BLOCK_SIZE);
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300885 sdhci_writew(host, data->blocks, SDHCI_BLOCK_COUNT);
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700886}
887
Adrian Hunter0293d502016-06-29 16:24:35 +0300888static inline bool sdhci_auto_cmd12(struct sdhci_host *host,
889 struct mmc_request *mrq)
890{
891 return !mrq->sbc && (host->flags & SDHCI_AUTO_CMD12);
892}
893
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700894static void sdhci_set_transfer_mode(struct sdhci_host *host,
Andrei Warkentine89d4562011-05-23 15:06:37 -0500895 struct mmc_command *cmd)
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700896{
Vincent Yangd3fc5d72015-01-20 16:05:17 +0800897 u16 mode = 0;
Andrei Warkentine89d4562011-05-23 15:06:37 -0500898 struct mmc_data *data = cmd->data;
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700899
Dong Aisheng2b558c12013-10-30 22:09:48 +0800900 if (data == NULL) {
Vincent Wan9b8ffea2014-11-05 14:09:00 +0800901 if (host->quirks2 &
902 SDHCI_QUIRK2_CLEAR_TRANSFERMODE_REG_BEFORE_CMD) {
903 sdhci_writew(host, 0x0, SDHCI_TRANSFER_MODE);
904 } else {
Dong Aisheng2b558c12013-10-30 22:09:48 +0800905 /* clear Auto CMD settings for no data CMDs */
Vincent Wan9b8ffea2014-11-05 14:09:00 +0800906 mode = sdhci_readw(host, SDHCI_TRANSFER_MODE);
907 sdhci_writew(host, mode & ~(SDHCI_TRNS_AUTO_CMD12 |
Dong Aisheng2b558c12013-10-30 22:09:48 +0800908 SDHCI_TRNS_AUTO_CMD23), SDHCI_TRANSFER_MODE);
Vincent Wan9b8ffea2014-11-05 14:09:00 +0800909 }
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700910 return;
Dong Aisheng2b558c12013-10-30 22:09:48 +0800911 }
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700912
Pierre Ossmane538fbe2007-08-12 16:46:32 +0200913 WARN_ON(!host->data);
914
Vincent Yangd3fc5d72015-01-20 16:05:17 +0800915 if (!(host->quirks2 & SDHCI_QUIRK2_SUPPORT_SINGLE))
916 mode = SDHCI_TRNS_BLK_CNT_EN;
917
Andrei Warkentine89d4562011-05-23 15:06:37 -0500918 if (mmc_op_multi(cmd->opcode) || data->blocks > 1) {
Vincent Yangd3fc5d72015-01-20 16:05:17 +0800919 mode = SDHCI_TRNS_BLK_CNT_EN | SDHCI_TRNS_MULTI;
Andrei Warkentine89d4562011-05-23 15:06:37 -0500920 /*
921 * If we are sending CMD23, CMD12 never gets sent
922 * on successful completion (so no Auto-CMD12).
923 */
Adrian Hunter0293d502016-06-29 16:24:35 +0300924 if (sdhci_auto_cmd12(host, cmd->mrq) &&
Corneliu Doban85cc1c32015-02-09 16:06:29 -0800925 (cmd->opcode != SD_IO_RW_EXTENDED))
Andrei Warkentine89d4562011-05-23 15:06:37 -0500926 mode |= SDHCI_TRNS_AUTO_CMD12;
Adrian Huntera4c73ab2016-06-29 16:24:25 +0300927 else if (cmd->mrq->sbc && (host->flags & SDHCI_AUTO_CMD23)) {
Andrei Warkentin8edf63712011-05-23 15:06:39 -0500928 mode |= SDHCI_TRNS_AUTO_CMD23;
Adrian Huntera4c73ab2016-06-29 16:24:25 +0300929 sdhci_writel(host, cmd->mrq->sbc->arg, SDHCI_ARGUMENT2);
Andrei Warkentin8edf63712011-05-23 15:06:39 -0500930 }
Jerry Huangc4512f72010-08-10 18:01:59 -0700931 }
Andrei Warkentin8edf63712011-05-23 15:06:39 -0500932
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700933 if (data->flags & MMC_DATA_READ)
934 mode |= SDHCI_TRNS_READ;
Pierre Ossmanc9fddbc2007-12-02 19:52:11 +0100935 if (host->flags & SDHCI_REQ_USE_DMA)
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700936 mode |= SDHCI_TRNS_DMA;
937
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300938 sdhci_writew(host, mode, SDHCI_TRANSFER_MODE);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800939}
940
Adrian Hunter0cc563c2016-06-29 16:24:28 +0300941static bool sdhci_needs_reset(struct sdhci_host *host, struct mmc_request *mrq)
942{
943 return (!(host->flags & SDHCI_DEVICE_DEAD) &&
944 ((mrq->cmd && mrq->cmd->error) ||
945 (mrq->sbc && mrq->sbc->error) ||
946 (mrq->data && ((mrq->data->error && !mrq->data->stop) ||
947 (mrq->data->stop && mrq->data->stop->error))) ||
948 (host->quirks & SDHCI_QUIRK_RESET_AFTER_REQUEST)));
949}
950
Adrian Hunter4e9f8fe2016-06-29 16:24:34 +0300951static void __sdhci_finish_mrq(struct sdhci_host *host, struct mmc_request *mrq)
952{
953 int i;
954
955 for (i = 0; i < SDHCI_MAX_MRQS; i++) {
956 if (host->mrqs_done[i] == mrq) {
957 WARN_ON(1);
958 return;
959 }
960 }
961
962 for (i = 0; i < SDHCI_MAX_MRQS; i++) {
963 if (!host->mrqs_done[i]) {
964 host->mrqs_done[i] = mrq;
965 break;
966 }
967 }
968
969 WARN_ON(i >= SDHCI_MAX_MRQS);
970
971 tasklet_schedule(&host->finish_tasklet);
972}
973
Adrian Huntera6d3bdd2016-06-29 16:24:27 +0300974static void sdhci_finish_mrq(struct sdhci_host *host, struct mmc_request *mrq)
975{
Adrian Hunter5a8a3fe2016-06-29 16:24:30 +0300976 if (host->cmd && host->cmd->mrq == mrq)
977 host->cmd = NULL;
978
979 if (host->data_cmd && host->data_cmd->mrq == mrq)
980 host->data_cmd = NULL;
981
982 if (host->data && host->data->mrq == mrq)
983 host->data = NULL;
984
Adrian Huntered1563d2016-06-29 16:24:29 +0300985 if (sdhci_needs_reset(host, mrq))
986 host->pending_reset = true;
987
Adrian Hunter4e9f8fe2016-06-29 16:24:34 +0300988 __sdhci_finish_mrq(host, mrq);
Adrian Huntera6d3bdd2016-06-29 16:24:27 +0300989}
990
Pierre Ossmand129bce2006-03-24 03:18:17 -0800991static void sdhci_finish_data(struct sdhci_host *host)
992{
Adrian Hunter33a57ad2016-06-29 16:24:36 +0300993 struct mmc_command *data_cmd = host->data_cmd;
994 struct mmc_data *data = host->data;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800995
Pierre Ossmand129bce2006-03-24 03:18:17 -0800996 host->data = NULL;
Adrian Hunter7c89a3d2016-06-29 16:24:23 +0300997 host->data_cmd = NULL;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800998
Russell Kingadd89132016-01-26 13:40:42 +0000999 if ((host->flags & (SDHCI_REQ_USE_DMA | SDHCI_USE_ADMA)) ==
1000 (SDHCI_REQ_USE_DMA | SDHCI_USE_ADMA))
1001 sdhci_adma_table_post(host, data);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001002
1003 /*
Pierre Ossmanc9b74c52008-04-18 20:41:49 +02001004 * The specification states that the block count register must
1005 * be updated, but it does not specify at what point in the
1006 * data flow. That makes the register entirely useless to read
1007 * back so we have to assume that nothing made it to the card
1008 * in the event of an error.
Pierre Ossmand129bce2006-03-24 03:18:17 -08001009 */
Pierre Ossmanc9b74c52008-04-18 20:41:49 +02001010 if (data->error)
1011 data->bytes_xfered = 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001012 else
Pierre Ossmanc9b74c52008-04-18 20:41:49 +02001013 data->bytes_xfered = data->blksz * data->blocks;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001014
Andrei Warkentine89d4562011-05-23 15:06:37 -05001015 /*
1016 * Need to send CMD12 if -
1017 * a) open-ended multiblock transfer (no CMD23)
1018 * b) error in multiblock transfer
1019 */
1020 if (data->stop &&
1021 (data->error ||
Adrian Huntera4c73ab2016-06-29 16:24:25 +03001022 !data->mrq->sbc)) {
Andrei Warkentine89d4562011-05-23 15:06:37 -05001023
Pierre Ossmand129bce2006-03-24 03:18:17 -08001024 /*
1025 * The controller needs a reset of internal state machines
1026 * upon error conditions.
1027 */
Pierre Ossman17b04292007-07-22 22:18:46 +02001028 if (data->error) {
Adrian Hunter33a57ad2016-06-29 16:24:36 +03001029 if (!host->cmd || host->cmd == data_cmd)
1030 sdhci_do_reset(host, SDHCI_RESET_CMD);
Russell King03231f92014-04-25 12:57:12 +01001031 sdhci_do_reset(host, SDHCI_RESET_DATA);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001032 }
1033
Adrian Hunter8842fd12016-06-29 16:24:37 +03001034 /* Avoid triggering warning in sdhci_send_command() */
1035 host->cmd = NULL;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001036 sdhci_send_command(host, data->stop);
Adrian Huntera6d3bdd2016-06-29 16:24:27 +03001037 } else {
1038 sdhci_finish_mrq(host, data->mrq);
1039 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001040}
1041
Adrian Hunterd7422fb2016-06-29 16:24:33 +03001042static void sdhci_mod_timer(struct sdhci_host *host, struct mmc_request *mrq,
1043 unsigned long timeout)
1044{
1045 if (sdhci_data_line_cmd(mrq->cmd))
1046 mod_timer(&host->data_timer, timeout);
1047 else
1048 mod_timer(&host->timer, timeout);
1049}
1050
1051static void sdhci_del_timer(struct sdhci_host *host, struct mmc_request *mrq)
1052{
1053 if (sdhci_data_line_cmd(mrq->cmd))
1054 del_timer(&host->data_timer);
1055 else
1056 del_timer(&host->timer);
1057}
1058
Dong Aishengc0e551292013-09-13 19:11:31 +08001059void sdhci_send_command(struct sdhci_host *host, struct mmc_command *cmd)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001060{
1061 int flags;
Pierre Ossmanfd2208d2006-06-30 02:22:28 -07001062 u32 mask;
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001063 unsigned long timeout;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001064
1065 WARN_ON(host->cmd);
1066
Russell King96776202016-01-26 13:39:34 +00001067 /* Initially, a command has no error */
1068 cmd->error = 0;
1069
Pierre Ossmand129bce2006-03-24 03:18:17 -08001070 /* Wait max 10 ms */
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001071 timeout = 10;
Pierre Ossmanfd2208d2006-06-30 02:22:28 -07001072
1073 mask = SDHCI_CMD_INHIBIT;
Adrian Hunter56a590d2016-06-29 16:24:32 +03001074 if (sdhci_data_line_cmd(cmd))
Pierre Ossmanfd2208d2006-06-30 02:22:28 -07001075 mask |= SDHCI_DATA_INHIBIT;
1076
1077 /* We shouldn't wait for data inihibit for stop commands, even
1078 though they might use busy signaling */
Adrian Huntera4c73ab2016-06-29 16:24:25 +03001079 if (cmd->mrq->data && (cmd == cmd->mrq->data->stop))
Pierre Ossmanfd2208d2006-06-30 02:22:28 -07001080 mask &= ~SDHCI_DATA_INHIBIT;
1081
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001082 while (sdhci_readl(host, SDHCI_PRESENT_STATE) & mask) {
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001083 if (timeout == 0) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01001084 pr_err("%s: Controller never released inhibit bit(s).\n",
1085 mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -08001086 sdhci_dumpregs(host);
Pierre Ossman17b04292007-07-22 22:18:46 +02001087 cmd->error = -EIO;
Adrian Huntera6d3bdd2016-06-29 16:24:27 +03001088 sdhci_finish_mrq(host, cmd->mrq);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001089 return;
1090 }
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001091 timeout--;
1092 mdelay(1);
1093 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001094
Adrian Hunter3e1a6892013-11-14 10:16:20 +02001095 timeout = jiffies;
Ulf Hansson1d4d7742014-01-08 15:06:08 +01001096 if (!cmd->data && cmd->busy_timeout > 9000)
1097 timeout += DIV_ROUND_UP(cmd->busy_timeout, 1000) * HZ + HZ;
Adrian Hunter3e1a6892013-11-14 10:16:20 +02001098 else
1099 timeout += 10 * HZ;
Adrian Hunterd7422fb2016-06-29 16:24:33 +03001100 sdhci_mod_timer(host, cmd->mrq, timeout);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001101
1102 host->cmd = cmd;
Adrian Hunter56a590d2016-06-29 16:24:32 +03001103 if (sdhci_data_line_cmd(cmd)) {
Adrian Hunter7c89a3d2016-06-29 16:24:23 +03001104 WARN_ON(host->data_cmd);
1105 host->data_cmd = cmd;
1106 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001107
Andrei Warkentina3c77782011-04-11 16:13:42 -05001108 sdhci_prepare_data(host, cmd);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001109
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001110 sdhci_writel(host, cmd->arg, SDHCI_ARGUMENT);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001111
Andrei Warkentine89d4562011-05-23 15:06:37 -05001112 sdhci_set_transfer_mode(host, cmd);
Pierre Ossmanc7fa9962006-06-30 02:22:25 -07001113
Pierre Ossmand129bce2006-03-24 03:18:17 -08001114 if ((cmd->flags & MMC_RSP_136) && (cmd->flags & MMC_RSP_BUSY)) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05301115 pr_err("%s: Unsupported response type!\n",
Pierre Ossmand129bce2006-03-24 03:18:17 -08001116 mmc_hostname(host->mmc));
Pierre Ossman17b04292007-07-22 22:18:46 +02001117 cmd->error = -EINVAL;
Adrian Huntera6d3bdd2016-06-29 16:24:27 +03001118 sdhci_finish_mrq(host, cmd->mrq);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001119 return;
1120 }
1121
1122 if (!(cmd->flags & MMC_RSP_PRESENT))
1123 flags = SDHCI_CMD_RESP_NONE;
1124 else if (cmd->flags & MMC_RSP_136)
1125 flags = SDHCI_CMD_RESP_LONG;
1126 else if (cmd->flags & MMC_RSP_BUSY)
1127 flags = SDHCI_CMD_RESP_SHORT_BUSY;
1128 else
1129 flags = SDHCI_CMD_RESP_SHORT;
1130
1131 if (cmd->flags & MMC_RSP_CRC)
1132 flags |= SDHCI_CMD_CRC;
1133 if (cmd->flags & MMC_RSP_OPCODE)
1134 flags |= SDHCI_CMD_INDEX;
Arindam Nathb513ea22011-05-05 12:19:04 +05301135
1136 /* CMD19 is special in that the Data Present Select should be set */
Girish K S069c9f12012-01-06 09:56:39 +05301137 if (cmd->data || cmd->opcode == MMC_SEND_TUNING_BLOCK ||
1138 cmd->opcode == MMC_SEND_TUNING_BLOCK_HS200)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001139 flags |= SDHCI_CMD_DATA;
1140
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001141 sdhci_writew(host, SDHCI_MAKE_CMD(cmd->opcode, flags), SDHCI_COMMAND);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001142}
Dong Aishengc0e551292013-09-13 19:11:31 +08001143EXPORT_SYMBOL_GPL(sdhci_send_command);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001144
1145static void sdhci_finish_command(struct sdhci_host *host)
1146{
Adrian Huntere0a56402016-06-29 16:24:22 +03001147 struct mmc_command *cmd = host->cmd;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001148 int i;
1149
Adrian Huntere0a56402016-06-29 16:24:22 +03001150 host->cmd = NULL;
1151
1152 if (cmd->flags & MMC_RSP_PRESENT) {
1153 if (cmd->flags & MMC_RSP_136) {
Pierre Ossmand129bce2006-03-24 03:18:17 -08001154 /* CRC is stripped so we need to do some shifting. */
1155 for (i = 0;i < 4;i++) {
Adrian Huntere0a56402016-06-29 16:24:22 +03001156 cmd->resp[i] = sdhci_readl(host,
Pierre Ossmand129bce2006-03-24 03:18:17 -08001157 SDHCI_RESPONSE + (3-i)*4) << 8;
1158 if (i != 3)
Adrian Huntere0a56402016-06-29 16:24:22 +03001159 cmd->resp[i] |=
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001160 sdhci_readb(host,
Pierre Ossmand129bce2006-03-24 03:18:17 -08001161 SDHCI_RESPONSE + (3-i)*4-1);
1162 }
1163 } else {
Adrian Huntere0a56402016-06-29 16:24:22 +03001164 cmd->resp[0] = sdhci_readl(host, SDHCI_RESPONSE);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001165 }
1166 }
1167
Adrian Hunter6bde8682016-06-29 16:24:20 +03001168 /*
1169 * The host can send and interrupt when the busy state has
1170 * ended, allowing us to wait without wasting CPU cycles.
1171 * The busy signal uses DAT0 so this is similar to waiting
1172 * for data to complete.
1173 *
1174 * Note: The 1.0 specification is a bit ambiguous about this
1175 * feature so there might be some problems with older
1176 * controllers.
1177 */
Adrian Huntere0a56402016-06-29 16:24:22 +03001178 if (cmd->flags & MMC_RSP_BUSY) {
1179 if (cmd->data) {
Adrian Hunter6bde8682016-06-29 16:24:20 +03001180 DBG("Cannot wait for busy signal when also doing a data transfer");
1181 } else if (!(host->quirks & SDHCI_QUIRK_NO_BUSY_IRQ) &&
Adrian Hunterea968022016-06-29 16:24:24 +03001182 cmd == host->data_cmd) {
1183 /* Command complete before busy is ended */
Adrian Hunter6bde8682016-06-29 16:24:20 +03001184 return;
1185 }
1186 }
1187
Andrei Warkentine89d4562011-05-23 15:06:37 -05001188 /* Finished CMD23, now send actual command. */
Adrian Huntera4c73ab2016-06-29 16:24:25 +03001189 if (cmd == cmd->mrq->sbc) {
1190 sdhci_send_command(host, cmd->mrq->cmd);
Andrei Warkentine89d4562011-05-23 15:06:37 -05001191 } else {
Pierre Ossmane538fbe2007-08-12 16:46:32 +02001192
Andrei Warkentine89d4562011-05-23 15:06:37 -05001193 /* Processed actual command. */
1194 if (host->data && host->data_early)
1195 sdhci_finish_data(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001196
Adrian Huntere0a56402016-06-29 16:24:22 +03001197 if (!cmd->data)
Adrian Huntera6d3bdd2016-06-29 16:24:27 +03001198 sdhci_finish_mrq(host, cmd->mrq);
Andrei Warkentine89d4562011-05-23 15:06:37 -05001199 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001200}
1201
Kevin Liu52983382013-01-31 11:31:37 +08001202static u16 sdhci_get_preset_value(struct sdhci_host *host)
1203{
Russell Kingd975f122014-04-25 12:59:31 +01001204 u16 preset = 0;
Kevin Liu52983382013-01-31 11:31:37 +08001205
Russell Kingd975f122014-04-25 12:59:31 +01001206 switch (host->timing) {
1207 case MMC_TIMING_UHS_SDR12:
Kevin Liu52983382013-01-31 11:31:37 +08001208 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR12);
1209 break;
Russell Kingd975f122014-04-25 12:59:31 +01001210 case MMC_TIMING_UHS_SDR25:
Kevin Liu52983382013-01-31 11:31:37 +08001211 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR25);
1212 break;
Russell Kingd975f122014-04-25 12:59:31 +01001213 case MMC_TIMING_UHS_SDR50:
Kevin Liu52983382013-01-31 11:31:37 +08001214 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR50);
1215 break;
Russell Kingd975f122014-04-25 12:59:31 +01001216 case MMC_TIMING_UHS_SDR104:
1217 case MMC_TIMING_MMC_HS200:
Kevin Liu52983382013-01-31 11:31:37 +08001218 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR104);
1219 break;
Russell Kingd975f122014-04-25 12:59:31 +01001220 case MMC_TIMING_UHS_DDR50:
Jisheng Zhang0dafa602015-08-18 16:21:39 +08001221 case MMC_TIMING_MMC_DDR52:
Kevin Liu52983382013-01-31 11:31:37 +08001222 preset = sdhci_readw(host, SDHCI_PRESET_FOR_DDR50);
1223 break;
Adrian Huntere9fb05d2014-11-06 15:19:06 +02001224 case MMC_TIMING_MMC_HS400:
1225 preset = sdhci_readw(host, SDHCI_PRESET_FOR_HS400);
1226 break;
Kevin Liu52983382013-01-31 11:31:37 +08001227 default:
1228 pr_warn("%s: Invalid UHS-I mode selected\n",
1229 mmc_hostname(host->mmc));
1230 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR12);
1231 break;
1232 }
1233 return preset;
1234}
1235
Ludovic Desrochesfb9ee042016-04-07 11:13:08 +02001236u16 sdhci_calc_clk(struct sdhci_host *host, unsigned int clock,
1237 unsigned int *actual_clock)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001238{
Arindam Nathc3ed3872011-05-05 12:19:06 +05301239 int div = 0; /* Initialized for compiler warning */
Giuseppe CAVALLAROdf162192011-11-04 13:53:19 +01001240 int real_div = div, clk_mul = 1;
Arindam Nathc3ed3872011-05-05 12:19:06 +05301241 u16 clk = 0;
ludovic.desroches@atmel.com54971592015-07-29 16:22:46 +02001242 bool switch_base_clk = false;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001243
Zhangfei Gao85105c52010-08-06 07:10:01 +08001244 if (host->version >= SDHCI_SPEC_300) {
Russell Kingda91a8f2014-04-25 13:00:12 +01001245 if (host->preset_enabled) {
Kevin Liu52983382013-01-31 11:31:37 +08001246 u16 pre_val;
1247
1248 clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL);
1249 pre_val = sdhci_get_preset_value(host);
1250 div = (pre_val & SDHCI_PRESET_SDCLK_FREQ_MASK)
1251 >> SDHCI_PRESET_SDCLK_FREQ_SHIFT;
1252 if (host->clk_mul &&
1253 (pre_val & SDHCI_PRESET_CLKGEN_SEL_MASK)) {
1254 clk = SDHCI_PROG_CLOCK_MODE;
1255 real_div = div + 1;
1256 clk_mul = host->clk_mul;
1257 } else {
1258 real_div = max_t(int, 1, div << 1);
1259 }
1260 goto clock_set;
1261 }
1262
Arindam Nathc3ed3872011-05-05 12:19:06 +05301263 /*
1264 * Check if the Host Controller supports Programmable Clock
1265 * Mode.
1266 */
1267 if (host->clk_mul) {
Kevin Liu52983382013-01-31 11:31:37 +08001268 for (div = 1; div <= 1024; div++) {
1269 if ((host->max_clk * host->clk_mul / div)
1270 <= clock)
1271 break;
Zhangfei Gao85105c52010-08-06 07:10:01 +08001272 }
ludovic.desroches@atmel.com54971592015-07-29 16:22:46 +02001273 if ((host->max_clk * host->clk_mul / div) <= clock) {
1274 /*
1275 * Set Programmable Clock Mode in the Clock
1276 * Control register.
1277 */
1278 clk = SDHCI_PROG_CLOCK_MODE;
1279 real_div = div;
1280 clk_mul = host->clk_mul;
1281 div--;
1282 } else {
1283 /*
1284 * Divisor can be too small to reach clock
1285 * speed requirement. Then use the base clock.
1286 */
1287 switch_base_clk = true;
1288 }
1289 }
1290
1291 if (!host->clk_mul || switch_base_clk) {
Arindam Nathc3ed3872011-05-05 12:19:06 +05301292 /* Version 3.00 divisors must be a multiple of 2. */
1293 if (host->max_clk <= clock)
1294 div = 1;
1295 else {
1296 for (div = 2; div < SDHCI_MAX_DIV_SPEC_300;
1297 div += 2) {
1298 if ((host->max_clk / div) <= clock)
1299 break;
1300 }
1301 }
Giuseppe CAVALLAROdf162192011-11-04 13:53:19 +01001302 real_div = div;
Arindam Nathc3ed3872011-05-05 12:19:06 +05301303 div >>= 1;
Suneel Garapatid1955c32015-06-09 13:01:50 +05301304 if ((host->quirks2 & SDHCI_QUIRK2_CLOCK_DIV_ZERO_BROKEN)
1305 && !div && host->max_clk <= 25000000)
1306 div = 1;
Zhangfei Gao85105c52010-08-06 07:10:01 +08001307 }
1308 } else {
1309 /* Version 2.00 divisors must be a power of 2. */
Zhangfei Gao03975262010-09-20 15:15:18 -04001310 for (div = 1; div < SDHCI_MAX_DIV_SPEC_200; div *= 2) {
Zhangfei Gao85105c52010-08-06 07:10:01 +08001311 if ((host->max_clk / div) <= clock)
1312 break;
1313 }
Giuseppe CAVALLAROdf162192011-11-04 13:53:19 +01001314 real_div = div;
Arindam Nathc3ed3872011-05-05 12:19:06 +05301315 div >>= 1;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001316 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001317
Kevin Liu52983382013-01-31 11:31:37 +08001318clock_set:
Aisheng Dong03d6f5f2014-08-27 15:26:32 +08001319 if (real_div)
Ludovic Desrochesfb9ee042016-04-07 11:13:08 +02001320 *actual_clock = (host->max_clk * clk_mul) / real_div;
Arindam Nathc3ed3872011-05-05 12:19:06 +05301321 clk |= (div & SDHCI_DIV_MASK) << SDHCI_DIVIDER_SHIFT;
Zhangfei Gao85105c52010-08-06 07:10:01 +08001322 clk |= ((div & SDHCI_DIV_HI_MASK) >> SDHCI_DIV_MASK_LEN)
1323 << SDHCI_DIVIDER_HI_SHIFT;
Ludovic Desrochesfb9ee042016-04-07 11:13:08 +02001324
1325 return clk;
1326}
1327EXPORT_SYMBOL_GPL(sdhci_calc_clk);
1328
1329void sdhci_set_clock(struct sdhci_host *host, unsigned int clock)
1330{
1331 u16 clk;
1332 unsigned long timeout;
1333
1334 host->mmc->actual_clock = 0;
1335
1336 sdhci_writew(host, 0, SDHCI_CLOCK_CONTROL);
Ludovic Desrochesfb9ee042016-04-07 11:13:08 +02001337
1338 if (clock == 0)
1339 return;
1340
1341 clk = sdhci_calc_clk(host, clock, &host->mmc->actual_clock);
1342
Pierre Ossmand129bce2006-03-24 03:18:17 -08001343 clk |= SDHCI_CLOCK_INT_EN;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001344 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001345
Chris Ball27f6cb12009-09-22 16:45:31 -07001346 /* Wait max 20 ms */
1347 timeout = 20;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001348 while (!((clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL))
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001349 & SDHCI_CLOCK_INT_STABLE)) {
1350 if (timeout == 0) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01001351 pr_err("%s: Internal clock never stabilised.\n",
1352 mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -08001353 sdhci_dumpregs(host);
1354 return;
1355 }
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001356 timeout--;
1357 mdelay(1);
1358 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001359
1360 clk |= SDHCI_CLOCK_CARD_EN;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001361 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001362}
Russell King17710592014-04-25 12:58:55 +01001363EXPORT_SYMBOL_GPL(sdhci_set_clock);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001364
Adrian Hunter1dceb042016-03-29 12:45:43 +03001365static void sdhci_set_power_reg(struct sdhci_host *host, unsigned char mode,
1366 unsigned short vdd)
Pierre Ossman146ad662006-06-30 02:22:23 -07001367{
Tim Kryger3a48edc2014-06-13 10:13:56 -07001368 struct mmc_host *mmc = host->mmc;
Adrian Hunter1dceb042016-03-29 12:45:43 +03001369
1370 spin_unlock_irq(&host->lock);
1371 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, vdd);
1372 spin_lock_irq(&host->lock);
1373
1374 if (mode != MMC_POWER_OFF)
1375 sdhci_writeb(host, SDHCI_POWER_ON, SDHCI_POWER_CONTROL);
1376 else
1377 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
1378}
1379
1380void sdhci_set_power(struct sdhci_host *host, unsigned char mode,
1381 unsigned short vdd)
1382{
Giuseppe Cavallaro83642482010-09-28 10:41:28 +02001383 u8 pwr = 0;
Pierre Ossman146ad662006-06-30 02:22:23 -07001384
Russell King24fbb3c2014-04-25 13:00:06 +01001385 if (mode != MMC_POWER_OFF) {
1386 switch (1 << vdd) {
Pierre Ossmanae628902009-05-03 20:45:03 +02001387 case MMC_VDD_165_195:
1388 pwr = SDHCI_POWER_180;
1389 break;
1390 case MMC_VDD_29_30:
1391 case MMC_VDD_30_31:
1392 pwr = SDHCI_POWER_300;
1393 break;
1394 case MMC_VDD_32_33:
1395 case MMC_VDD_33_34:
1396 pwr = SDHCI_POWER_330;
1397 break;
1398 default:
Adrian Hunter9d5de932015-11-26 14:00:46 +02001399 WARN(1, "%s: Invalid vdd %#x\n",
1400 mmc_hostname(host->mmc), vdd);
1401 break;
Pierre Ossmanae628902009-05-03 20:45:03 +02001402 }
1403 }
1404
1405 if (host->pwr == pwr)
Russell Kinge921a8b2014-04-25 13:00:01 +01001406 return;
Pierre Ossman146ad662006-06-30 02:22:23 -07001407
Pierre Ossmanae628902009-05-03 20:45:03 +02001408 host->pwr = pwr;
1409
1410 if (pwr == 0) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001411 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
Adrian Hunterf0710a52013-05-06 12:17:32 +03001412 if (host->quirks2 & SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON)
1413 sdhci_runtime_pm_bus_off(host);
Russell Kinge921a8b2014-04-25 13:00:01 +01001414 } else {
1415 /*
1416 * Spec says that we should clear the power reg before setting
1417 * a new value. Some controllers don't seem to like this though.
1418 */
1419 if (!(host->quirks & SDHCI_QUIRK_SINGLE_POWER_WRITE))
1420 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
Darren Salt9e9dc5f2007-01-27 15:32:31 +01001421
Russell Kinge921a8b2014-04-25 13:00:01 +01001422 /*
1423 * At least the Marvell CaFe chip gets confused if we set the
1424 * voltage and set turn on power at the same time, so set the
1425 * voltage first.
1426 */
1427 if (host->quirks & SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER)
1428 sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL);
Pierre Ossman146ad662006-06-30 02:22:23 -07001429
Russell Kinge921a8b2014-04-25 13:00:01 +01001430 pwr |= SDHCI_POWER_ON;
1431
Pierre Ossmanae628902009-05-03 20:45:03 +02001432 sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL);
1433
Russell Kinge921a8b2014-04-25 13:00:01 +01001434 if (host->quirks2 & SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON)
1435 sdhci_runtime_pm_bus_on(host);
Andres Salomone08c1692008-07-04 10:00:03 -07001436
Russell Kinge921a8b2014-04-25 13:00:01 +01001437 /*
1438 * Some controllers need an extra 10ms delay of 10ms before
1439 * they can apply clock after applying power
1440 */
1441 if (host->quirks & SDHCI_QUIRK_DELAY_AFTER_POWER)
1442 mdelay(10);
1443 }
Adrian Hunter1dceb042016-03-29 12:45:43 +03001444}
1445EXPORT_SYMBOL_GPL(sdhci_set_power);
Jisheng Zhang918f4cb2015-12-11 21:36:29 +08001446
Adrian Hunter1dceb042016-03-29 12:45:43 +03001447static void __sdhci_set_power(struct sdhci_host *host, unsigned char mode,
1448 unsigned short vdd)
1449{
1450 struct mmc_host *mmc = host->mmc;
1451
1452 if (host->ops->set_power)
1453 host->ops->set_power(host, mode, vdd);
1454 else if (!IS_ERR(mmc->supply.vmmc))
1455 sdhci_set_power_reg(host, mode, vdd);
1456 else
1457 sdhci_set_power(host, mode, vdd);
Pierre Ossman146ad662006-06-30 02:22:23 -07001458}
1459
Pierre Ossmand129bce2006-03-24 03:18:17 -08001460/*****************************************************************************\
1461 * *
1462 * MMC callbacks *
1463 * *
1464\*****************************************************************************/
1465
1466static void sdhci_request(struct mmc_host *mmc, struct mmc_request *mrq)
1467{
1468 struct sdhci_host *host;
Shawn Guo505a8682012-12-11 15:23:42 +08001469 int present;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001470 unsigned long flags;
1471
1472 host = mmc_priv(mmc);
1473
Scott Branden04e079c2015-03-10 11:35:10 -07001474 /* Firstly check card presence */
Adrian Hunter8d28b7a2016-02-09 16:12:36 +02001475 present = mmc->ops->get_cd(mmc);
Krzysztof Kozlowski28367662015-01-05 10:50:15 +01001476
Pierre Ossmand129bce2006-03-24 03:18:17 -08001477 spin_lock_irqsave(&host->lock, flags);
1478
Adrian Hunter061d17a2016-04-12 14:25:09 +03001479 sdhci_led_activate(host);
Andrei Warkentine89d4562011-05-23 15:06:37 -05001480
1481 /*
1482 * Ensure we don't send the STOP for non-SET_BLOCK_COUNTED
1483 * requests if Auto-CMD12 is enabled.
1484 */
Adrian Hunter0293d502016-06-29 16:24:35 +03001485 if (sdhci_auto_cmd12(host, mrq)) {
Jerry Huangc4512f72010-08-10 18:01:59 -07001486 if (mrq->stop) {
1487 mrq->data->stop = NULL;
1488 mrq->stop = NULL;
1489 }
1490 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001491
Anton Vorontsov68d1fb72009-03-17 00:13:52 +03001492 if (!present || host->flags & SDHCI_DEVICE_DEAD) {
Adrian Huntera4c73ab2016-06-29 16:24:25 +03001493 mrq->cmd->error = -ENOMEDIUM;
Adrian Huntera6d3bdd2016-06-29 16:24:27 +03001494 sdhci_finish_mrq(host, mrq);
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05301495 } else {
Andrei Warkentin8edf63712011-05-23 15:06:39 -05001496 if (mrq->sbc && !(host->flags & SDHCI_AUTO_CMD23))
Andrei Warkentine89d4562011-05-23 15:06:37 -05001497 sdhci_send_command(host, mrq->sbc);
1498 else
1499 sdhci_send_command(host, mrq->cmd);
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05301500 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001501
Pierre Ossman5f25a662006-10-04 02:15:39 -07001502 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -08001503 spin_unlock_irqrestore(&host->lock, flags);
1504}
1505
Russell King2317f562014-04-25 12:57:07 +01001506void sdhci_set_bus_width(struct sdhci_host *host, int width)
1507{
1508 u8 ctrl;
1509
1510 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
1511 if (width == MMC_BUS_WIDTH_8) {
1512 ctrl &= ~SDHCI_CTRL_4BITBUS;
1513 if (host->version >= SDHCI_SPEC_300)
1514 ctrl |= SDHCI_CTRL_8BITBUS;
1515 } else {
1516 if (host->version >= SDHCI_SPEC_300)
1517 ctrl &= ~SDHCI_CTRL_8BITBUS;
1518 if (width == MMC_BUS_WIDTH_4)
1519 ctrl |= SDHCI_CTRL_4BITBUS;
1520 else
1521 ctrl &= ~SDHCI_CTRL_4BITBUS;
1522 }
1523 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
1524}
1525EXPORT_SYMBOL_GPL(sdhci_set_bus_width);
1526
Russell King96d7b782014-04-25 12:59:26 +01001527void sdhci_set_uhs_signaling(struct sdhci_host *host, unsigned timing)
1528{
1529 u16 ctrl_2;
1530
1531 ctrl_2 = sdhci_readw(host, SDHCI_HOST_CONTROL2);
1532 /* Select Bus Speed Mode for host */
1533 ctrl_2 &= ~SDHCI_CTRL_UHS_MASK;
1534 if ((timing == MMC_TIMING_MMC_HS200) ||
1535 (timing == MMC_TIMING_UHS_SDR104))
1536 ctrl_2 |= SDHCI_CTRL_UHS_SDR104;
1537 else if (timing == MMC_TIMING_UHS_SDR12)
1538 ctrl_2 |= SDHCI_CTRL_UHS_SDR12;
1539 else if (timing == MMC_TIMING_UHS_SDR25)
1540 ctrl_2 |= SDHCI_CTRL_UHS_SDR25;
1541 else if (timing == MMC_TIMING_UHS_SDR50)
1542 ctrl_2 |= SDHCI_CTRL_UHS_SDR50;
1543 else if ((timing == MMC_TIMING_UHS_DDR50) ||
1544 (timing == MMC_TIMING_MMC_DDR52))
1545 ctrl_2 |= SDHCI_CTRL_UHS_DDR50;
Adrian Huntere9fb05d2014-11-06 15:19:06 +02001546 else if (timing == MMC_TIMING_MMC_HS400)
1547 ctrl_2 |= SDHCI_CTRL_HS400; /* Non-standard */
Russell King96d7b782014-04-25 12:59:26 +01001548 sdhci_writew(host, ctrl_2, SDHCI_HOST_CONTROL2);
1549}
1550EXPORT_SYMBOL_GPL(sdhci_set_uhs_signaling);
1551
Dong Aishengded97e02016-04-16 01:29:25 +08001552static void sdhci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001553{
Dong Aishengded97e02016-04-16 01:29:25 +08001554 struct sdhci_host *host = mmc_priv(mmc);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001555 unsigned long flags;
1556 u8 ctrl;
1557
Pierre Ossmand129bce2006-03-24 03:18:17 -08001558 spin_lock_irqsave(&host->lock, flags);
1559
Adrian Hunterceb61432011-12-27 15:48:41 +02001560 if (host->flags & SDHCI_DEVICE_DEAD) {
1561 spin_unlock_irqrestore(&host->lock, flags);
Tim Kryger3a48edc2014-06-13 10:13:56 -07001562 if (!IS_ERR(mmc->supply.vmmc) &&
1563 ios->power_mode == MMC_POWER_OFF)
Markus Mayer4e743f12014-07-03 13:27:42 -07001564 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, 0);
Adrian Hunterceb61432011-12-27 15:48:41 +02001565 return;
1566 }
Pierre Ossman1e728592008-04-16 19:13:13 +02001567
Pierre Ossmand129bce2006-03-24 03:18:17 -08001568 /*
1569 * Reset the chip on each power off.
1570 * Should clear out any weird states.
1571 */
1572 if (ios->power_mode == MMC_POWER_OFF) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001573 sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE);
Anton Vorontsov7260cf52009-03-17 00:13:48 +03001574 sdhci_reinit(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001575 }
1576
Kevin Liu52983382013-01-31 11:31:37 +08001577 if (host->version >= SDHCI_SPEC_300 &&
Dong Aisheng372c4632013-10-18 19:48:50 +08001578 (ios->power_mode == MMC_POWER_UP) &&
1579 !(host->quirks2 & SDHCI_QUIRK2_PRESET_VALUE_BROKEN))
Kevin Liu52983382013-01-31 11:31:37 +08001580 sdhci_enable_preset_value(host, false);
1581
Russell King373073e2014-04-25 12:58:45 +01001582 if (!ios->clock || ios->clock != host->clock) {
Russell King17710592014-04-25 12:58:55 +01001583 host->ops->set_clock(host, ios->clock);
Russell King373073e2014-04-25 12:58:45 +01001584 host->clock = ios->clock;
Aisheng Dong03d6f5f2014-08-27 15:26:32 +08001585
1586 if (host->quirks & SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK &&
1587 host->clock) {
1588 host->timeout_clk = host->mmc->actual_clock ?
1589 host->mmc->actual_clock / 1000 :
1590 host->clock / 1000;
1591 host->mmc->max_busy_timeout =
1592 host->ops->get_max_timeout_count ?
1593 host->ops->get_max_timeout_count(host) :
1594 1 << 27;
1595 host->mmc->max_busy_timeout /= host->timeout_clk;
1596 }
Russell King373073e2014-04-25 12:58:45 +01001597 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001598
Adrian Hunter1dceb042016-03-29 12:45:43 +03001599 __sdhci_set_power(host, ios->power_mode, ios->vdd);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001600
Philip Rakity643a81f2010-09-23 08:24:32 -07001601 if (host->ops->platform_send_init_74_clocks)
1602 host->ops->platform_send_init_74_clocks(host, ios->power_mode);
1603
Russell King2317f562014-04-25 12:57:07 +01001604 host->ops->set_bus_width(host, ios->bus_width);
Philip Rakity15ec4462010-11-19 16:48:39 -05001605
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001606 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
Pierre Ossmancd9277c2007-02-18 12:07:47 +01001607
Philip Rakity3ab9c8d2010-10-06 11:57:23 -07001608 if ((ios->timing == MMC_TIMING_SD_HS ||
1609 ios->timing == MMC_TIMING_MMC_HS)
1610 && !(host->quirks & SDHCI_QUIRK_NO_HISPD_BIT))
Pierre Ossmancd9277c2007-02-18 12:07:47 +01001611 ctrl |= SDHCI_CTRL_HISPD;
1612 else
1613 ctrl &= ~SDHCI_CTRL_HISPD;
1614
Arindam Nathd6d50a12011-05-05 12:18:59 +05301615 if (host->version >= SDHCI_SPEC_300) {
Arindam Nath49c468f2011-05-05 12:19:01 +05301616 u16 clk, ctrl_2;
Arindam Nath49c468f2011-05-05 12:19:01 +05301617
1618 /* In case of UHS-I modes, set High Speed Enable */
Adrian Huntere9fb05d2014-11-06 15:19:06 +02001619 if ((ios->timing == MMC_TIMING_MMC_HS400) ||
1620 (ios->timing == MMC_TIMING_MMC_HS200) ||
Seungwon Jeonbb8175a2014-03-14 21:12:48 +09001621 (ios->timing == MMC_TIMING_MMC_DDR52) ||
Girish K S069c9f12012-01-06 09:56:39 +05301622 (ios->timing == MMC_TIMING_UHS_SDR50) ||
Arindam Nath49c468f2011-05-05 12:19:01 +05301623 (ios->timing == MMC_TIMING_UHS_SDR104) ||
1624 (ios->timing == MMC_TIMING_UHS_DDR50) ||
Alexander Elbsdd8df172012-01-03 23:26:53 -05001625 (ios->timing == MMC_TIMING_UHS_SDR25))
Arindam Nath49c468f2011-05-05 12:19:01 +05301626 ctrl |= SDHCI_CTRL_HISPD;
Arindam Nathd6d50a12011-05-05 12:18:59 +05301627
Russell Kingda91a8f2014-04-25 13:00:12 +01001628 if (!host->preset_enabled) {
Arindam Nath758535c2011-05-05 12:19:00 +05301629 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Arindam Nathd6d50a12011-05-05 12:18:59 +05301630 /*
1631 * We only need to set Driver Strength if the
1632 * preset value enable is not set.
1633 */
Russell Kingda91a8f2014-04-25 13:00:12 +01001634 ctrl_2 = sdhci_readw(host, SDHCI_HOST_CONTROL2);
Arindam Nathd6d50a12011-05-05 12:18:59 +05301635 ctrl_2 &= ~SDHCI_CTRL_DRV_TYPE_MASK;
1636 if (ios->drv_type == MMC_SET_DRIVER_TYPE_A)
1637 ctrl_2 |= SDHCI_CTRL_DRV_TYPE_A;
Petri Gynther43e943a2015-05-20 14:35:00 -07001638 else if (ios->drv_type == MMC_SET_DRIVER_TYPE_B)
1639 ctrl_2 |= SDHCI_CTRL_DRV_TYPE_B;
Arindam Nathd6d50a12011-05-05 12:18:59 +05301640 else if (ios->drv_type == MMC_SET_DRIVER_TYPE_C)
1641 ctrl_2 |= SDHCI_CTRL_DRV_TYPE_C;
Petri Gynther43e943a2015-05-20 14:35:00 -07001642 else if (ios->drv_type == MMC_SET_DRIVER_TYPE_D)
1643 ctrl_2 |= SDHCI_CTRL_DRV_TYPE_D;
1644 else {
Marek Vasut2e4456f2015-11-18 10:47:02 +01001645 pr_warn("%s: invalid driver type, default to driver type B\n",
1646 mmc_hostname(mmc));
Petri Gynther43e943a2015-05-20 14:35:00 -07001647 ctrl_2 |= SDHCI_CTRL_DRV_TYPE_B;
1648 }
Arindam Nathd6d50a12011-05-05 12:18:59 +05301649
1650 sdhci_writew(host, ctrl_2, SDHCI_HOST_CONTROL2);
Arindam Nath758535c2011-05-05 12:19:00 +05301651 } else {
1652 /*
1653 * According to SDHC Spec v3.00, if the Preset Value
1654 * Enable in the Host Control 2 register is set, we
1655 * need to reset SD Clock Enable before changing High
1656 * Speed Enable to avoid generating clock gliches.
1657 */
Arindam Nath758535c2011-05-05 12:19:00 +05301658
1659 /* Reset SD Clock Enable */
1660 clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL);
1661 clk &= ~SDHCI_CLOCK_CARD_EN;
1662 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
1663
1664 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
1665
1666 /* Re-enable SD Clock */
Russell King17710592014-04-25 12:58:55 +01001667 host->ops->set_clock(host, host->clock);
Arindam Nathd6d50a12011-05-05 12:18:59 +05301668 }
Arindam Nath49c468f2011-05-05 12:19:01 +05301669
Arindam Nath49c468f2011-05-05 12:19:01 +05301670 /* Reset SD Clock Enable */
1671 clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL);
1672 clk &= ~SDHCI_CLOCK_CARD_EN;
1673 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
1674
Russell King96d7b782014-04-25 12:59:26 +01001675 host->ops->set_uhs_signaling(host, ios->timing);
Russell Kingd975f122014-04-25 12:59:31 +01001676 host->timing = ios->timing;
Arindam Nath49c468f2011-05-05 12:19:01 +05301677
Kevin Liu52983382013-01-31 11:31:37 +08001678 if (!(host->quirks2 & SDHCI_QUIRK2_PRESET_VALUE_BROKEN) &&
1679 ((ios->timing == MMC_TIMING_UHS_SDR12) ||
1680 (ios->timing == MMC_TIMING_UHS_SDR25) ||
1681 (ios->timing == MMC_TIMING_UHS_SDR50) ||
1682 (ios->timing == MMC_TIMING_UHS_SDR104) ||
Jisheng Zhang0dafa602015-08-18 16:21:39 +08001683 (ios->timing == MMC_TIMING_UHS_DDR50) ||
1684 (ios->timing == MMC_TIMING_MMC_DDR52))) {
Kevin Liu52983382013-01-31 11:31:37 +08001685 u16 preset;
1686
1687 sdhci_enable_preset_value(host, true);
1688 preset = sdhci_get_preset_value(host);
1689 ios->drv_type = (preset & SDHCI_PRESET_DRV_MASK)
1690 >> SDHCI_PRESET_DRV_SHIFT;
1691 }
1692
Arindam Nath49c468f2011-05-05 12:19:01 +05301693 /* Re-enable SD Clock */
Russell King17710592014-04-25 12:58:55 +01001694 host->ops->set_clock(host, host->clock);
Arindam Nath758535c2011-05-05 12:19:00 +05301695 } else
1696 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Arindam Nathd6d50a12011-05-05 12:18:59 +05301697
Leandro Dorileob8352262007-07-25 23:47:04 +02001698 /*
1699 * Some (ENE) controllers go apeshit on some ios operation,
1700 * signalling timeout and CRC errors even on CMD0. Resetting
1701 * it on each ios seems to solve the problem.
1702 */
Mohammad Jamalc63705e2015-01-13 20:47:24 +05301703 if (host->quirks & SDHCI_QUIRK_RESET_CMD_DATA_ON_IOS)
Russell King03231f92014-04-25 12:57:12 +01001704 sdhci_do_reset(host, SDHCI_RESET_CMD | SDHCI_RESET_DATA);
Leandro Dorileob8352262007-07-25 23:47:04 +02001705
Pierre Ossman5f25a662006-10-04 02:15:39 -07001706 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -08001707 spin_unlock_irqrestore(&host->lock, flags);
1708}
1709
Dong Aishengded97e02016-04-16 01:29:25 +08001710static int sdhci_get_cd(struct mmc_host *mmc)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001711{
1712 struct sdhci_host *host = mmc_priv(mmc);
Dong Aishengded97e02016-04-16 01:29:25 +08001713 int gpio_cd = mmc_gpio_get_cd(mmc);
Kevin Liu94144a42013-02-28 17:35:53 +08001714
1715 if (host->flags & SDHCI_DEVICE_DEAD)
1716 return 0;
1717
Ivan T. Ivanov88af5652015-07-06 15:16:19 +03001718 /* If nonremovable, assume that the card is always present. */
Jaehoon Chung860951c2016-06-21 10:13:26 +09001719 if (!mmc_card_is_removable(host->mmc))
Kevin Liu94144a42013-02-28 17:35:53 +08001720 return 1;
1721
Ivan T. Ivanov88af5652015-07-06 15:16:19 +03001722 /*
1723 * Try slot gpio detect, if defined it take precedence
1724 * over build in controller functionality
1725 */
Arnd Bergmann287980e2016-05-27 23:23:25 +02001726 if (gpio_cd >= 0)
Kevin Liu94144a42013-02-28 17:35:53 +08001727 return !!gpio_cd;
1728
Ivan T. Ivanov88af5652015-07-06 15:16:19 +03001729 /* If polling, assume that the card is always present. */
1730 if (host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION)
1731 return 1;
1732
Kevin Liu94144a42013-02-28 17:35:53 +08001733 /* Host native card detect */
1734 return !!(sdhci_readl(host, SDHCI_PRESENT_STATE) & SDHCI_CARD_PRESENT);
1735}
1736
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001737static int sdhci_check_ro(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001738{
Pierre Ossmand129bce2006-03-24 03:18:17 -08001739 unsigned long flags;
Wolfram Sang2dfb5792010-10-15 12:21:01 +02001740 int is_readonly;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001741
Pierre Ossmand129bce2006-03-24 03:18:17 -08001742 spin_lock_irqsave(&host->lock, flags);
1743
Pierre Ossman1e728592008-04-16 19:13:13 +02001744 if (host->flags & SDHCI_DEVICE_DEAD)
Wolfram Sang2dfb5792010-10-15 12:21:01 +02001745 is_readonly = 0;
1746 else if (host->ops->get_ro)
1747 is_readonly = host->ops->get_ro(host);
Pierre Ossman1e728592008-04-16 19:13:13 +02001748 else
Wolfram Sang2dfb5792010-10-15 12:21:01 +02001749 is_readonly = !(sdhci_readl(host, SDHCI_PRESENT_STATE)
1750 & SDHCI_WRITE_PROTECT);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001751
1752 spin_unlock_irqrestore(&host->lock, flags);
1753
Wolfram Sang2dfb5792010-10-15 12:21:01 +02001754 /* This quirk needs to be replaced by a callback-function later */
1755 return host->quirks & SDHCI_QUIRK_INVERTED_WRITE_PROTECT ?
1756 !is_readonly : is_readonly;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001757}
1758
Takashi Iwai82b0e232011-04-21 20:26:38 +02001759#define SAMPLE_COUNT 5
1760
Dong Aishengded97e02016-04-16 01:29:25 +08001761static int sdhci_get_ro(struct mmc_host *mmc)
Takashi Iwai82b0e232011-04-21 20:26:38 +02001762{
Dong Aishengded97e02016-04-16 01:29:25 +08001763 struct sdhci_host *host = mmc_priv(mmc);
Takashi Iwai82b0e232011-04-21 20:26:38 +02001764 int i, ro_count;
1765
Takashi Iwai82b0e232011-04-21 20:26:38 +02001766 if (!(host->quirks & SDHCI_QUIRK_UNSTABLE_RO_DETECT))
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001767 return sdhci_check_ro(host);
Takashi Iwai82b0e232011-04-21 20:26:38 +02001768
1769 ro_count = 0;
1770 for (i = 0; i < SAMPLE_COUNT; i++) {
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001771 if (sdhci_check_ro(host)) {
Takashi Iwai82b0e232011-04-21 20:26:38 +02001772 if (++ro_count > SAMPLE_COUNT / 2)
1773 return 1;
1774 }
1775 msleep(30);
1776 }
1777 return 0;
1778}
1779
Adrian Hunter20758b62011-08-29 16:42:12 +03001780static void sdhci_hw_reset(struct mmc_host *mmc)
1781{
1782 struct sdhci_host *host = mmc_priv(mmc);
1783
1784 if (host->ops && host->ops->hw_reset)
1785 host->ops->hw_reset(host);
1786}
1787
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001788static void sdhci_enable_sdio_irq_nolock(struct sdhci_host *host, int enable)
1789{
Russell Kingbe138552014-04-25 12:55:56 +01001790 if (!(host->flags & SDHCI_DEVICE_DEAD)) {
Russell Kingef104332014-04-25 12:55:41 +01001791 if (enable)
Russell Kingb537f942014-04-25 12:56:01 +01001792 host->ier |= SDHCI_INT_CARD_INT;
Russell Kingef104332014-04-25 12:55:41 +01001793 else
Russell Kingb537f942014-04-25 12:56:01 +01001794 host->ier &= ~SDHCI_INT_CARD_INT;
1795
1796 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
1797 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Russell Kingef104332014-04-25 12:55:41 +01001798 mmiowb();
1799 }
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001800}
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001801
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001802static void sdhci_enable_sdio_irq(struct mmc_host *mmc, int enable)
1803{
1804 struct sdhci_host *host = mmc_priv(mmc);
1805 unsigned long flags;
1806
1807 spin_lock_irqsave(&host->lock, flags);
Russell Kingef104332014-04-25 12:55:41 +01001808 if (enable)
1809 host->flags |= SDHCI_SDIO_IRQ_ENABLED;
1810 else
1811 host->flags &= ~SDHCI_SDIO_IRQ_ENABLED;
1812
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001813 sdhci_enable_sdio_irq_nolock(host, enable);
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001814 spin_unlock_irqrestore(&host->lock, flags);
1815}
1816
Dong Aishengded97e02016-04-16 01:29:25 +08001817static int sdhci_start_signal_voltage_switch(struct mmc_host *mmc,
1818 struct mmc_ios *ios)
Philip Rakity6231f3d2012-07-23 15:56:23 -07001819{
Dong Aishengded97e02016-04-16 01:29:25 +08001820 struct sdhci_host *host = mmc_priv(mmc);
Philip Rakity6231f3d2012-07-23 15:56:23 -07001821 u16 ctrl;
Kevin Liu20b92a32012-12-17 19:29:26 +08001822 int ret;
Philip Rakity6231f3d2012-07-23 15:56:23 -07001823
1824 /*
1825 * Signal Voltage Switching is only applicable for Host Controllers
1826 * v3.00 and above.
1827 */
1828 if (host->version < SDHCI_SPEC_300)
1829 return 0;
1830
Philip Rakity6231f3d2012-07-23 15:56:23 -07001831 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
Kevin Liu20b92a32012-12-17 19:29:26 +08001832
Fabio Estevam21f59982013-02-14 10:35:03 -02001833 switch (ios->signal_voltage) {
Kevin Liu20b92a32012-12-17 19:29:26 +08001834 case MMC_SIGNAL_VOLTAGE_330:
Adrian Hunter8cb851a2016-06-29 16:24:16 +03001835 if (!(host->flags & SDHCI_SIGNALING_330))
1836 return -EINVAL;
Kevin Liu20b92a32012-12-17 19:29:26 +08001837 /* Set 1.8V Signal Enable in the Host Control2 register to 0 */
1838 ctrl &= ~SDHCI_CTRL_VDD_180;
1839 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
1840
Tim Kryger3a48edc2014-06-13 10:13:56 -07001841 if (!IS_ERR(mmc->supply.vqmmc)) {
Dong Aisheng761daa32016-07-12 15:46:10 +08001842 ret = mmc_regulator_set_vqmmc(mmc, ios);
Kevin Liu20b92a32012-12-17 19:29:26 +08001843 if (ret) {
Joe Perches66061102014-09-12 14:56:56 -07001844 pr_warn("%s: Switching to 3.3V signalling voltage failed\n",
1845 mmc_hostname(mmc));
Kevin Liu20b92a32012-12-17 19:29:26 +08001846 return -EIO;
1847 }
1848 }
1849 /* Wait for 5ms */
1850 usleep_range(5000, 5500);
1851
1852 /* 3.3V regulator output should be stable within 5 ms */
1853 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
1854 if (!(ctrl & SDHCI_CTRL_VDD_180))
1855 return 0;
1856
Joe Perches66061102014-09-12 14:56:56 -07001857 pr_warn("%s: 3.3V regulator output did not became stable\n",
1858 mmc_hostname(mmc));
Kevin Liu20b92a32012-12-17 19:29:26 +08001859
1860 return -EAGAIN;
1861 case MMC_SIGNAL_VOLTAGE_180:
Adrian Hunter8cb851a2016-06-29 16:24:16 +03001862 if (!(host->flags & SDHCI_SIGNALING_180))
1863 return -EINVAL;
Tim Kryger3a48edc2014-06-13 10:13:56 -07001864 if (!IS_ERR(mmc->supply.vqmmc)) {
Dong Aisheng761daa32016-07-12 15:46:10 +08001865 ret = mmc_regulator_set_vqmmc(mmc, ios);
Kevin Liu20b92a32012-12-17 19:29:26 +08001866 if (ret) {
Joe Perches66061102014-09-12 14:56:56 -07001867 pr_warn("%s: Switching to 1.8V signalling voltage failed\n",
1868 mmc_hostname(mmc));
Kevin Liu20b92a32012-12-17 19:29:26 +08001869 return -EIO;
1870 }
1871 }
1872
1873 /*
1874 * Enable 1.8V Signal Enable in the Host Control2
1875 * register
1876 */
1877 ctrl |= SDHCI_CTRL_VDD_180;
1878 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
1879
Vincent Yang9d967a62015-01-20 16:05:15 +08001880 /* Some controller need to do more when switching */
1881 if (host->ops->voltage_switch)
1882 host->ops->voltage_switch(host);
1883
Kevin Liu20b92a32012-12-17 19:29:26 +08001884 /* 1.8V regulator output should be stable within 5 ms */
1885 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
1886 if (ctrl & SDHCI_CTRL_VDD_180)
1887 return 0;
1888
Joe Perches66061102014-09-12 14:56:56 -07001889 pr_warn("%s: 1.8V regulator output did not became stable\n",
1890 mmc_hostname(mmc));
Kevin Liu20b92a32012-12-17 19:29:26 +08001891
1892 return -EAGAIN;
1893 case MMC_SIGNAL_VOLTAGE_120:
Adrian Hunter8cb851a2016-06-29 16:24:16 +03001894 if (!(host->flags & SDHCI_SIGNALING_120))
1895 return -EINVAL;
Tim Kryger3a48edc2014-06-13 10:13:56 -07001896 if (!IS_ERR(mmc->supply.vqmmc)) {
Dong Aisheng761daa32016-07-12 15:46:10 +08001897 ret = mmc_regulator_set_vqmmc(mmc, ios);
Kevin Liu20b92a32012-12-17 19:29:26 +08001898 if (ret) {
Joe Perches66061102014-09-12 14:56:56 -07001899 pr_warn("%s: Switching to 1.2V signalling voltage failed\n",
1900 mmc_hostname(mmc));
Kevin Liu20b92a32012-12-17 19:29:26 +08001901 return -EIO;
1902 }
1903 }
1904 return 0;
1905 default:
Arindam Nathf2119df2011-05-05 12:18:57 +05301906 /* No signal voltage switch required */
1907 return 0;
Kevin Liu20b92a32012-12-17 19:29:26 +08001908 }
Arindam Nathf2119df2011-05-05 12:18:57 +05301909}
1910
Kevin Liu20b92a32012-12-17 19:29:26 +08001911static int sdhci_card_busy(struct mmc_host *mmc)
1912{
1913 struct sdhci_host *host = mmc_priv(mmc);
1914 u32 present_state;
1915
Adrian Huntere613cc42016-06-23 14:00:58 +03001916 /* Check whether DAT[0] is 0 */
Kevin Liu20b92a32012-12-17 19:29:26 +08001917 present_state = sdhci_readl(host, SDHCI_PRESENT_STATE);
Kevin Liu20b92a32012-12-17 19:29:26 +08001918
Adrian Huntere613cc42016-06-23 14:00:58 +03001919 return !(present_state & SDHCI_DATA_0_LVL_MASK);
Kevin Liu20b92a32012-12-17 19:29:26 +08001920}
1921
Adrian Hunterb5540ce2014-12-05 19:25:31 +02001922static int sdhci_prepare_hs400_tuning(struct mmc_host *mmc, struct mmc_ios *ios)
1923{
1924 struct sdhci_host *host = mmc_priv(mmc);
1925 unsigned long flags;
1926
1927 spin_lock_irqsave(&host->lock, flags);
1928 host->flags |= SDHCI_HS400_TUNING;
1929 spin_unlock_irqrestore(&host->lock, flags);
1930
1931 return 0;
1932}
1933
Girish K S069c9f12012-01-06 09:56:39 +05301934static int sdhci_execute_tuning(struct mmc_host *mmc, u32 opcode)
Arindam Nathb513ea22011-05-05 12:19:04 +05301935{
Russell King4b6f37d2014-04-25 12:59:36 +01001936 struct sdhci_host *host = mmc_priv(mmc);
Arindam Nathb513ea22011-05-05 12:19:04 +05301937 u16 ctrl;
Arindam Nathb513ea22011-05-05 12:19:04 +05301938 int tuning_loop_counter = MAX_TUNING_LOOP;
Arindam Nathb513ea22011-05-05 12:19:04 +05301939 int err = 0;
Aisheng Dong2b35bd82013-12-23 19:13:04 +08001940 unsigned long flags;
Adrian Hunter38e40bf2014-12-05 19:25:30 +02001941 unsigned int tuning_count = 0;
Adrian Hunterb5540ce2014-12-05 19:25:31 +02001942 bool hs400_tuning;
Arindam Nathb513ea22011-05-05 12:19:04 +05301943
Aisheng Dong2b35bd82013-12-23 19:13:04 +08001944 spin_lock_irqsave(&host->lock, flags);
Arindam Nathb513ea22011-05-05 12:19:04 +05301945
Adrian Hunterb5540ce2014-12-05 19:25:31 +02001946 hs400_tuning = host->flags & SDHCI_HS400_TUNING;
1947 host->flags &= ~SDHCI_HS400_TUNING;
1948
Adrian Hunter38e40bf2014-12-05 19:25:30 +02001949 if (host->tuning_mode == SDHCI_TUNING_MODE_1)
1950 tuning_count = host->tuning_count;
1951
Arindam Nathb513ea22011-05-05 12:19:04 +05301952 /*
Weijun Yang9faac7b2015-10-04 12:04:12 +00001953 * The Host Controller needs tuning in case of SDR104 and DDR50
1954 * mode, and for SDR50 mode when Use Tuning for SDR50 is set in
1955 * the Capabilities register.
Girish K S069c9f12012-01-06 09:56:39 +05301956 * If the Host Controller supports the HS200 mode then the
1957 * tuning function has to be executed.
Arindam Nathb513ea22011-05-05 12:19:04 +05301958 */
Russell King4b6f37d2014-04-25 12:59:36 +01001959 switch (host->timing) {
Adrian Hunterb5540ce2014-12-05 19:25:31 +02001960 /* HS400 tuning is done in HS200 mode */
Adrian Huntere9fb05d2014-11-06 15:19:06 +02001961 case MMC_TIMING_MMC_HS400:
Adrian Hunterb5540ce2014-12-05 19:25:31 +02001962 err = -EINVAL;
1963 goto out_unlock;
1964
Russell King4b6f37d2014-04-25 12:59:36 +01001965 case MMC_TIMING_MMC_HS200:
Adrian Hunterb5540ce2014-12-05 19:25:31 +02001966 /*
1967 * Periodic re-tuning for HS400 is not expected to be needed, so
1968 * disable it here.
1969 */
1970 if (hs400_tuning)
1971 tuning_count = 0;
1972 break;
1973
Russell King4b6f37d2014-04-25 12:59:36 +01001974 case MMC_TIMING_UHS_SDR104:
Weijun Yang9faac7b2015-10-04 12:04:12 +00001975 case MMC_TIMING_UHS_DDR50:
Russell King4b6f37d2014-04-25 12:59:36 +01001976 break;
Girish K S069c9f12012-01-06 09:56:39 +05301977
Russell King4b6f37d2014-04-25 12:59:36 +01001978 case MMC_TIMING_UHS_SDR50:
Adrian Hunter4228b212016-04-20 09:24:03 +03001979 if (host->flags & SDHCI_SDR50_NEEDS_TUNING)
Russell King4b6f37d2014-04-25 12:59:36 +01001980 break;
1981 /* FALLTHROUGH */
1982
1983 default:
Adrian Hunterd519c862014-12-05 19:25:29 +02001984 goto out_unlock;
Arindam Nathb513ea22011-05-05 12:19:04 +05301985 }
1986
Dong Aisheng45251812013-09-13 19:11:30 +08001987 if (host->ops->platform_execute_tuning) {
Aisheng Dong2b35bd82013-12-23 19:13:04 +08001988 spin_unlock_irqrestore(&host->lock, flags);
Dong Aisheng45251812013-09-13 19:11:30 +08001989 err = host->ops->platform_execute_tuning(host, opcode);
Dong Aisheng45251812013-09-13 19:11:30 +08001990 return err;
1991 }
1992
Russell King4b6f37d2014-04-25 12:59:36 +01001993 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
1994 ctrl |= SDHCI_CTRL_EXEC_TUNING;
Vincent Yang67d0d042015-01-20 16:05:16 +08001995 if (host->quirks2 & SDHCI_QUIRK2_TUNING_WORK_AROUND)
1996 ctrl |= SDHCI_CTRL_TUNED_CLK;
Arindam Nathb513ea22011-05-05 12:19:04 +05301997 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
1998
1999 /*
2000 * As per the Host Controller spec v3.00, tuning command
2001 * generates Buffer Read Ready interrupt, so enable that.
2002 *
2003 * Note: The spec clearly says that when tuning sequence
2004 * is being performed, the controller does not generate
2005 * interrupts other than Buffer Read Ready interrupt. But
2006 * to make sure we don't hit a controller bug, we _only_
2007 * enable Buffer Read Ready interrupt here.
2008 */
Russell Kingb537f942014-04-25 12:56:01 +01002009 sdhci_writel(host, SDHCI_INT_DATA_AVAIL, SDHCI_INT_ENABLE);
2010 sdhci_writel(host, SDHCI_INT_DATA_AVAIL, SDHCI_SIGNAL_ENABLE);
Arindam Nathb513ea22011-05-05 12:19:04 +05302011
2012 /*
2013 * Issue CMD19 repeatedly till Execute Tuning is set to 0 or the number
Simon Horman1473bdd2016-05-13 13:24:31 +09002014 * of loops reaches 40 times.
Arindam Nathb513ea22011-05-05 12:19:04 +05302015 */
Arindam Nathb513ea22011-05-05 12:19:04 +05302016 do {
2017 struct mmc_command cmd = {0};
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002018 struct mmc_request mrq = {NULL};
Arindam Nathb513ea22011-05-05 12:19:04 +05302019
Girish K S069c9f12012-01-06 09:56:39 +05302020 cmd.opcode = opcode;
Arindam Nathb513ea22011-05-05 12:19:04 +05302021 cmd.arg = 0;
2022 cmd.flags = MMC_RSP_R1 | MMC_CMD_ADTC;
2023 cmd.retries = 0;
2024 cmd.data = NULL;
Adrian Hunter4e9f8fe2016-06-29 16:24:34 +03002025 cmd.mrq = &mrq;
Arindam Nathb513ea22011-05-05 12:19:04 +05302026 cmd.error = 0;
2027
Al Cooper7ce45e92014-05-09 11:34:07 -04002028 if (tuning_loop_counter-- == 0)
2029 break;
2030
Arindam Nathb513ea22011-05-05 12:19:04 +05302031 mrq.cmd = &cmd;
Arindam Nathb513ea22011-05-05 12:19:04 +05302032
2033 /*
2034 * In response to CMD19, the card sends 64 bytes of tuning
2035 * block to the Host Controller. So we set the block size
2036 * to 64 here.
2037 */
Girish K S069c9f12012-01-06 09:56:39 +05302038 if (cmd.opcode == MMC_SEND_TUNING_BLOCK_HS200) {
2039 if (mmc->ios.bus_width == MMC_BUS_WIDTH_8)
2040 sdhci_writew(host, SDHCI_MAKE_BLKSZ(7, 128),
2041 SDHCI_BLOCK_SIZE);
2042 else if (mmc->ios.bus_width == MMC_BUS_WIDTH_4)
2043 sdhci_writew(host, SDHCI_MAKE_BLKSZ(7, 64),
2044 SDHCI_BLOCK_SIZE);
2045 } else {
2046 sdhci_writew(host, SDHCI_MAKE_BLKSZ(7, 64),
2047 SDHCI_BLOCK_SIZE);
2048 }
Arindam Nathb513ea22011-05-05 12:19:04 +05302049
2050 /*
2051 * The tuning block is sent by the card to the host controller.
2052 * So we set the TRNS_READ bit in the Transfer Mode register.
2053 * This also takes care of setting DMA Enable and Multi Block
2054 * Select in the same register to 0.
2055 */
2056 sdhci_writew(host, SDHCI_TRNS_READ, SDHCI_TRANSFER_MODE);
2057
2058 sdhci_send_command(host, &cmd);
2059
2060 host->cmd = NULL;
Adrian Hunter07c161b2016-06-29 16:24:38 +03002061 sdhci_del_timer(host, &mrq);
Arindam Nathb513ea22011-05-05 12:19:04 +05302062
Aisheng Dong2b35bd82013-12-23 19:13:04 +08002063 spin_unlock_irqrestore(&host->lock, flags);
Arindam Nathb513ea22011-05-05 12:19:04 +05302064 /* Wait for Buffer Read Ready interrupt */
2065 wait_event_interruptible_timeout(host->buf_ready_int,
2066 (host->tuning_done == 1),
2067 msecs_to_jiffies(50));
Aisheng Dong2b35bd82013-12-23 19:13:04 +08002068 spin_lock_irqsave(&host->lock, flags);
Arindam Nathb513ea22011-05-05 12:19:04 +05302069
2070 if (!host->tuning_done) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01002071 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 +05302072 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
2073 ctrl &= ~SDHCI_CTRL_TUNED_CLK;
2074 ctrl &= ~SDHCI_CTRL_EXEC_TUNING;
2075 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
2076
2077 err = -EIO;
2078 goto out;
2079 }
2080
2081 host->tuning_done = 0;
2082
2083 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
Nick Sanders197160d2014-05-06 18:52:38 -07002084
2085 /* eMMC spec does not require a delay between tuning cycles */
2086 if (opcode == MMC_SEND_TUNING_BLOCK)
2087 mdelay(1);
Arindam Nathb513ea22011-05-05 12:19:04 +05302088 } while (ctrl & SDHCI_CTRL_EXEC_TUNING);
2089
2090 /*
2091 * The Host Driver has exhausted the maximum number of loops allowed,
2092 * so use fixed sampling frequency.
2093 */
Al Cooper7ce45e92014-05-09 11:34:07 -04002094 if (tuning_loop_counter < 0) {
Arindam Nathb513ea22011-05-05 12:19:04 +05302095 ctrl &= ~SDHCI_CTRL_TUNED_CLK;
2096 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
Al Cooper7ce45e92014-05-09 11:34:07 -04002097 }
2098 if (!(ctrl & SDHCI_CTRL_TUNED_CLK)) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01002099 pr_info(DRIVER_NAME ": Tuning procedure failed, falling back to fixed sampling clock\n");
Dong Aisheng114f2bf2013-10-18 19:48:45 +08002100 err = -EIO;
Arindam Nathb513ea22011-05-05 12:19:04 +05302101 }
2102
2103out:
Adrian Hunter38e40bf2014-12-05 19:25:30 +02002104 if (tuning_count) {
Adrian Hunter66c39dfc2015-05-07 13:10:21 +03002105 /*
2106 * In case tuning fails, host controllers which support
2107 * re-tuning can try tuning again at a later time, when the
2108 * re-tuning timer expires. So for these controllers, we
2109 * return 0. Since there might be other controllers who do not
2110 * have this capability, we return error for them.
2111 */
2112 err = 0;
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05302113 }
2114
Adrian Hunter66c39dfc2015-05-07 13:10:21 +03002115 host->mmc->retune_period = err ? 0 : tuning_count;
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05302116
Russell Kingb537f942014-04-25 12:56:01 +01002117 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
2118 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Adrian Hunterd519c862014-12-05 19:25:29 +02002119out_unlock:
Aisheng Dong2b35bd82013-12-23 19:13:04 +08002120 spin_unlock_irqrestore(&host->lock, flags);
Arindam Nathb513ea22011-05-05 12:19:04 +05302121 return err;
2122}
2123
Adrian Huntercb849642015-02-06 14:12:59 +02002124static int sdhci_select_drive_strength(struct mmc_card *card,
2125 unsigned int max_dtr, int host_drv,
2126 int card_drv, int *drv_type)
2127{
2128 struct sdhci_host *host = mmc_priv(card->host);
2129
2130 if (!host->ops->select_drive_strength)
2131 return 0;
2132
2133 return host->ops->select_drive_strength(host, card, max_dtr, host_drv,
2134 card_drv, drv_type);
2135}
Kevin Liu52983382013-01-31 11:31:37 +08002136
2137static void sdhci_enable_preset_value(struct sdhci_host *host, bool enable)
Arindam Nath4d55c5a2011-05-05 12:19:05 +05302138{
Arindam Nath4d55c5a2011-05-05 12:19:05 +05302139 /* Host Controller v3.00 defines preset value registers */
2140 if (host->version < SDHCI_SPEC_300)
2141 return;
2142
Arindam Nath4d55c5a2011-05-05 12:19:05 +05302143 /*
2144 * We only enable or disable Preset Value if they are not already
2145 * enabled or disabled respectively. Otherwise, we bail out.
2146 */
Russell Kingda91a8f2014-04-25 13:00:12 +01002147 if (host->preset_enabled != enable) {
2148 u16 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
2149
2150 if (enable)
2151 ctrl |= SDHCI_CTRL_PRESET_VAL_ENABLE;
2152 else
2153 ctrl &= ~SDHCI_CTRL_PRESET_VAL_ENABLE;
2154
Arindam Nath4d55c5a2011-05-05 12:19:05 +05302155 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
Russell Kingda91a8f2014-04-25 13:00:12 +01002156
2157 if (enable)
2158 host->flags |= SDHCI_PV_ENABLED;
2159 else
2160 host->flags &= ~SDHCI_PV_ENABLED;
2161
2162 host->preset_enabled = enable;
Arindam Nath4d55c5a2011-05-05 12:19:05 +05302163 }
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002164}
2165
Haibo Chen348487c2014-12-09 17:04:05 +08002166static void sdhci_post_req(struct mmc_host *mmc, struct mmc_request *mrq,
2167 int err)
2168{
2169 struct sdhci_host *host = mmc_priv(mmc);
2170 struct mmc_data *data = mrq->data;
2171
Russell Kingf48f0392016-01-26 13:40:32 +00002172 if (data->host_cookie != COOKIE_UNMAPPED)
Russell King771a3dc2016-01-26 13:40:53 +00002173 dma_unmap_sg(mmc_dev(host->mmc), data->sg, data->sg_len,
2174 data->flags & MMC_DATA_WRITE ?
2175 DMA_TO_DEVICE : DMA_FROM_DEVICE);
2176
2177 data->host_cookie = COOKIE_UNMAPPED;
Haibo Chen348487c2014-12-09 17:04:05 +08002178}
2179
Haibo Chen348487c2014-12-09 17:04:05 +08002180static void sdhci_pre_req(struct mmc_host *mmc, struct mmc_request *mrq,
2181 bool is_first_req)
2182{
2183 struct sdhci_host *host = mmc_priv(mmc);
2184
Haibo Chend31911b2015-08-25 10:02:11 +08002185 mrq->data->host_cookie = COOKIE_UNMAPPED;
Haibo Chen348487c2014-12-09 17:04:05 +08002186
2187 if (host->flags & SDHCI_REQ_USE_DMA)
Russell King94538e52016-01-26 13:40:37 +00002188 sdhci_pre_dma_transfer(host, mrq->data, COOKIE_PRE_MAPPED);
Haibo Chen348487c2014-12-09 17:04:05 +08002189}
2190
Adrian Hunter5d0d11c2016-06-29 16:24:31 +03002191static inline bool sdhci_has_requests(struct sdhci_host *host)
2192{
2193 return host->cmd || host->data_cmd;
2194}
2195
2196static void sdhci_error_out_mrqs(struct sdhci_host *host, int err)
2197{
2198 if (host->data_cmd) {
2199 host->data_cmd->error = err;
2200 sdhci_finish_mrq(host, host->data_cmd->mrq);
2201 }
2202
2203 if (host->cmd) {
2204 host->cmd->error = err;
2205 sdhci_finish_mrq(host, host->cmd->mrq);
2206 }
2207}
2208
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002209static void sdhci_card_event(struct mmc_host *mmc)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002210{
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002211 struct sdhci_host *host = mmc_priv(mmc);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002212 unsigned long flags;
Krzysztof Kozlowski28367662015-01-05 10:50:15 +01002213 int present;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002214
Christian Daudt722e1282013-06-20 14:26:36 -07002215 /* First check if client has provided their own card event */
2216 if (host->ops->card_event)
2217 host->ops->card_event(host);
2218
Adrian Hunterd3940f22016-06-29 16:24:14 +03002219 present = mmc->ops->get_cd(mmc);
Krzysztof Kozlowski28367662015-01-05 10:50:15 +01002220
Pierre Ossmand129bce2006-03-24 03:18:17 -08002221 spin_lock_irqsave(&host->lock, flags);
2222
Adrian Hunter5d0d11c2016-06-29 16:24:31 +03002223 /* Check sdhci_has_requests() first in case we are runtime suspended */
2224 if (sdhci_has_requests(host) && !present) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05302225 pr_err("%s: Card removed during transfer!\n",
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002226 mmc_hostname(host->mmc));
Girish K Sa3c76eb2011-10-11 11:44:09 +05302227 pr_err("%s: Resetting controller.\n",
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002228 mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -08002229
Russell King03231f92014-04-25 12:57:12 +01002230 sdhci_do_reset(host, SDHCI_RESET_CMD);
2231 sdhci_do_reset(host, SDHCI_RESET_DATA);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002232
Adrian Hunter5d0d11c2016-06-29 16:24:31 +03002233 sdhci_error_out_mrqs(host, -ENOMEDIUM);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002234 }
2235
2236 spin_unlock_irqrestore(&host->lock, flags);
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002237}
2238
2239static const struct mmc_host_ops sdhci_ops = {
2240 .request = sdhci_request,
Haibo Chen348487c2014-12-09 17:04:05 +08002241 .post_req = sdhci_post_req,
2242 .pre_req = sdhci_pre_req,
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002243 .set_ios = sdhci_set_ios,
Kevin Liu94144a42013-02-28 17:35:53 +08002244 .get_cd = sdhci_get_cd,
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002245 .get_ro = sdhci_get_ro,
2246 .hw_reset = sdhci_hw_reset,
2247 .enable_sdio_irq = sdhci_enable_sdio_irq,
2248 .start_signal_voltage_switch = sdhci_start_signal_voltage_switch,
Adrian Hunterb5540ce2014-12-05 19:25:31 +02002249 .prepare_hs400_tuning = sdhci_prepare_hs400_tuning,
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002250 .execute_tuning = sdhci_execute_tuning,
Adrian Huntercb849642015-02-06 14:12:59 +02002251 .select_drive_strength = sdhci_select_drive_strength,
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002252 .card_event = sdhci_card_event,
Kevin Liu20b92a32012-12-17 19:29:26 +08002253 .card_busy = sdhci_card_busy,
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002254};
2255
2256/*****************************************************************************\
2257 * *
2258 * Tasklets *
2259 * *
2260\*****************************************************************************/
2261
Adrian Hunter4e9f8fe2016-06-29 16:24:34 +03002262static bool sdhci_request_done(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002263{
Pierre Ossmand129bce2006-03-24 03:18:17 -08002264 unsigned long flags;
2265 struct mmc_request *mrq;
Adrian Hunter4e9f8fe2016-06-29 16:24:34 +03002266 int i;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002267
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002268 spin_lock_irqsave(&host->lock, flags);
2269
Adrian Hunter4e9f8fe2016-06-29 16:24:34 +03002270 for (i = 0; i < SDHCI_MAX_MRQS; i++) {
2271 mrq = host->mrqs_done[i];
2272 if (mrq) {
2273 host->mrqs_done[i] = NULL;
2274 break;
2275 }
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002276 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08002277
Adrian Hunter4e9f8fe2016-06-29 16:24:34 +03002278 if (!mrq) {
2279 spin_unlock_irqrestore(&host->lock, flags);
2280 return true;
2281 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08002282
Adrian Hunterd7422fb2016-06-29 16:24:33 +03002283 sdhci_del_timer(host, mrq);
2284
Pierre Ossmand129bce2006-03-24 03:18:17 -08002285 /*
Russell King054cedf2016-01-26 13:40:42 +00002286 * Always unmap the data buffers if they were mapped by
2287 * sdhci_prepare_data() whenever we finish with a request.
2288 * This avoids leaking DMA mappings on error.
2289 */
2290 if (host->flags & SDHCI_REQ_USE_DMA) {
2291 struct mmc_data *data = mrq->data;
2292
2293 if (data && data->host_cookie == COOKIE_MAPPED) {
2294 dma_unmap_sg(mmc_dev(host->mmc), data->sg, data->sg_len,
2295 (data->flags & MMC_DATA_READ) ?
2296 DMA_FROM_DEVICE : DMA_TO_DEVICE);
2297 data->host_cookie = COOKIE_UNMAPPED;
2298 }
2299 }
2300
2301 /*
Pierre Ossmand129bce2006-03-24 03:18:17 -08002302 * The controller needs a reset of internal state machines
2303 * upon error conditions.
2304 */
Adrian Hunter0cc563c2016-06-29 16:24:28 +03002305 if (sdhci_needs_reset(host, mrq)) {
Pierre Ossman645289d2006-06-30 02:22:33 -07002306 /* Some controllers need this kick or reset won't work here */
Andy Shevchenko8213af32013-01-07 16:31:08 +02002307 if (host->quirks & SDHCI_QUIRK_CLOCK_BEFORE_RESET)
Pierre Ossman645289d2006-06-30 02:22:33 -07002308 /* This is to force an update */
Russell King17710592014-04-25 12:58:55 +01002309 host->ops->set_clock(host, host->clock);
Pierre Ossman645289d2006-06-30 02:22:33 -07002310
2311 /* Spec says we should do both at the same time, but Ricoh
2312 controllers do not like that. */
Adrian Hunter33a57ad2016-06-29 16:24:36 +03002313 if (!host->cmd)
2314 sdhci_do_reset(host, SDHCI_RESET_CMD);
2315 if (!host->data_cmd)
2316 sdhci_do_reset(host, SDHCI_RESET_DATA);
Adrian Huntered1563d2016-06-29 16:24:29 +03002317
2318 host->pending_reset = false;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002319 }
2320
Adrian Hunter4e9f8fe2016-06-29 16:24:34 +03002321 if (!sdhci_has_requests(host))
2322 sdhci_led_deactivate(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002323
Pierre Ossman5f25a662006-10-04 02:15:39 -07002324 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -08002325 spin_unlock_irqrestore(&host->lock, flags);
2326
2327 mmc_request_done(host->mmc, mrq);
Adrian Hunter4e9f8fe2016-06-29 16:24:34 +03002328
2329 return false;
2330}
2331
2332static void sdhci_tasklet_finish(unsigned long param)
2333{
2334 struct sdhci_host *host = (struct sdhci_host *)param;
2335
2336 while (!sdhci_request_done(host))
2337 ;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002338}
2339
2340static void sdhci_timeout_timer(unsigned long data)
2341{
2342 struct sdhci_host *host;
2343 unsigned long flags;
2344
2345 host = (struct sdhci_host*)data;
2346
2347 spin_lock_irqsave(&host->lock, flags);
2348
Adrian Hunterd7422fb2016-06-29 16:24:33 +03002349 if (host->cmd && !sdhci_data_line_cmd(host->cmd)) {
2350 pr_err("%s: Timeout waiting for hardware cmd interrupt.\n",
2351 mmc_hostname(host->mmc));
2352 sdhci_dumpregs(host);
2353
2354 host->cmd->error = -ETIMEDOUT;
2355 sdhci_finish_mrq(host, host->cmd->mrq);
2356 }
2357
2358 mmiowb();
2359 spin_unlock_irqrestore(&host->lock, flags);
2360}
2361
2362static void sdhci_timeout_data_timer(unsigned long data)
2363{
2364 struct sdhci_host *host;
2365 unsigned long flags;
2366
2367 host = (struct sdhci_host *)data;
2368
2369 spin_lock_irqsave(&host->lock, flags);
2370
2371 if (host->data || host->data_cmd ||
2372 (host->cmd && sdhci_data_line_cmd(host->cmd))) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01002373 pr_err("%s: Timeout waiting for hardware interrupt.\n",
2374 mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -08002375 sdhci_dumpregs(host);
2376
2377 if (host->data) {
Pierre Ossman17b04292007-07-22 22:18:46 +02002378 host->data->error = -ETIMEDOUT;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002379 sdhci_finish_data(host);
Adrian Hunterd7422fb2016-06-29 16:24:33 +03002380 } else if (host->data_cmd) {
2381 host->data_cmd->error = -ETIMEDOUT;
2382 sdhci_finish_mrq(host, host->data_cmd->mrq);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002383 } else {
Adrian Hunterd7422fb2016-06-29 16:24:33 +03002384 host->cmd->error = -ETIMEDOUT;
2385 sdhci_finish_mrq(host, host->cmd->mrq);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002386 }
2387 }
2388
Pierre Ossman5f25a662006-10-04 02:15:39 -07002389 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -08002390 spin_unlock_irqrestore(&host->lock, flags);
2391}
2392
2393/*****************************************************************************\
2394 * *
2395 * Interrupt handling *
2396 * *
2397\*****************************************************************************/
2398
Adrian Hunter61541392014-09-24 10:27:27 +03002399static void sdhci_cmd_irq(struct sdhci_host *host, u32 intmask, u32 *mask)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002400{
Pierre Ossmand129bce2006-03-24 03:18:17 -08002401 if (!host->cmd) {
Adrian Huntered1563d2016-06-29 16:24:29 +03002402 /*
2403 * SDHCI recovers from errors by resetting the cmd and data
2404 * circuits. Until that is done, there very well might be more
2405 * interrupts, so ignore them in that case.
2406 */
2407 if (host->pending_reset)
2408 return;
Marek Vasut2e4456f2015-11-18 10:47:02 +01002409 pr_err("%s: Got command interrupt 0x%08x even though no command operation was in progress.\n",
2410 mmc_hostname(host->mmc), (unsigned)intmask);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002411 sdhci_dumpregs(host);
2412 return;
2413 }
2414
Russell Kingec014cb2016-01-26 13:39:39 +00002415 if (intmask & (SDHCI_INT_TIMEOUT | SDHCI_INT_CRC |
2416 SDHCI_INT_END_BIT | SDHCI_INT_INDEX)) {
2417 if (intmask & SDHCI_INT_TIMEOUT)
2418 host->cmd->error = -ETIMEDOUT;
2419 else
2420 host->cmd->error = -EILSEQ;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002421
Russell King71fcbda2016-01-26 13:39:45 +00002422 /*
2423 * If this command initiates a data phase and a response
2424 * CRC error is signalled, the card can start transferring
2425 * data - the card may have received the command without
2426 * error. We must not terminate the mmc_request early.
2427 *
2428 * If the card did not receive the command or returned an
2429 * error which prevented it sending data, the data phase
2430 * will time out.
2431 */
2432 if (host->cmd->data &&
2433 (intmask & (SDHCI_INT_CRC | SDHCI_INT_TIMEOUT)) ==
2434 SDHCI_INT_CRC) {
2435 host->cmd = NULL;
2436 return;
2437 }
2438
Adrian Huntera6d3bdd2016-06-29 16:24:27 +03002439 sdhci_finish_mrq(host, host->cmd->mrq);
Pierre Ossmane8095172008-07-25 01:09:08 +02002440 return;
2441 }
2442
Adrian Hunter6bde8682016-06-29 16:24:20 +03002443 if ((host->quirks2 & SDHCI_QUIRK2_STOP_WITH_TC) &&
2444 !(host->cmd->flags & MMC_RSP_BUSY) && !host->data &&
2445 host->cmd->opcode == MMC_STOP_TRANSMISSION)
Adrian Hunter61541392014-09-24 10:27:27 +03002446 *mask &= ~SDHCI_INT_DATA_END;
Pierre Ossmane8095172008-07-25 01:09:08 +02002447
2448 if (intmask & SDHCI_INT_RESPONSE)
Pierre Ossman43b58b32007-07-25 23:15:27 +02002449 sdhci_finish_command(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002450}
2451
George G. Davis0957c332010-02-18 12:32:12 -05002452#ifdef CONFIG_MMC_DEBUG
Adrian Hunter08621b12014-11-04 12:42:38 +02002453static void sdhci_adma_show_error(struct sdhci_host *host)
Ben Dooks6882a8c2009-06-14 13:52:38 +01002454{
2455 const char *name = mmc_hostname(host->mmc);
Adrian Hunter1c3d5f62014-11-04 12:42:41 +02002456 void *desc = host->adma_table;
Ben Dooks6882a8c2009-06-14 13:52:38 +01002457
2458 sdhci_dumpregs(host);
2459
2460 while (true) {
Adrian Huntere57a5f62014-11-04 12:42:46 +02002461 struct sdhci_adma2_64_desc *dma_desc = desc;
Ben Dooks6882a8c2009-06-14 13:52:38 +01002462
Adrian Huntere57a5f62014-11-04 12:42:46 +02002463 if (host->flags & SDHCI_USE_64_BIT_DMA)
2464 DBG("%s: %p: DMA 0x%08x%08x, LEN 0x%04x, Attr=0x%02x\n",
2465 name, desc, le32_to_cpu(dma_desc->addr_hi),
2466 le32_to_cpu(dma_desc->addr_lo),
2467 le16_to_cpu(dma_desc->len),
2468 le16_to_cpu(dma_desc->cmd));
2469 else
2470 DBG("%s: %p: DMA 0x%08x, LEN 0x%04x, Attr=0x%02x\n",
2471 name, desc, le32_to_cpu(dma_desc->addr_lo),
2472 le16_to_cpu(dma_desc->len),
2473 le16_to_cpu(dma_desc->cmd));
Ben Dooks6882a8c2009-06-14 13:52:38 +01002474
Adrian Hunter76fe3792014-11-04 12:42:42 +02002475 desc += host->desc_sz;
Ben Dooks6882a8c2009-06-14 13:52:38 +01002476
Adrian Hunter05452302014-11-04 12:42:45 +02002477 if (dma_desc->cmd & cpu_to_le16(ADMA2_END))
Ben Dooks6882a8c2009-06-14 13:52:38 +01002478 break;
2479 }
2480}
2481#else
Adrian Hunter08621b12014-11-04 12:42:38 +02002482static void sdhci_adma_show_error(struct sdhci_host *host) { }
Ben Dooks6882a8c2009-06-14 13:52:38 +01002483#endif
2484
Pierre Ossmand129bce2006-03-24 03:18:17 -08002485static void sdhci_data_irq(struct sdhci_host *host, u32 intmask)
2486{
Girish K S069c9f12012-01-06 09:56:39 +05302487 u32 command;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002488
Arindam Nathb513ea22011-05-05 12:19:04 +05302489 /* CMD19 generates _only_ Buffer Read Ready interrupt */
2490 if (intmask & SDHCI_INT_DATA_AVAIL) {
Girish K S069c9f12012-01-06 09:56:39 +05302491 command = SDHCI_GET_CMD(sdhci_readw(host, SDHCI_COMMAND));
2492 if (command == MMC_SEND_TUNING_BLOCK ||
2493 command == MMC_SEND_TUNING_BLOCK_HS200) {
Arindam Nathb513ea22011-05-05 12:19:04 +05302494 host->tuning_done = 1;
2495 wake_up(&host->buf_ready_int);
2496 return;
2497 }
2498 }
2499
Pierre Ossmand129bce2006-03-24 03:18:17 -08002500 if (!host->data) {
Adrian Hunter7c89a3d2016-06-29 16:24:23 +03002501 struct mmc_command *data_cmd = host->data_cmd;
2502
2503 if (data_cmd)
2504 host->data_cmd = NULL;
2505
Pierre Ossmand129bce2006-03-24 03:18:17 -08002506 /*
Pierre Ossmane8095172008-07-25 01:09:08 +02002507 * The "data complete" interrupt is also used to
2508 * indicate that a busy state has ended. See comment
2509 * above in sdhci_cmd_irq().
Pierre Ossmand129bce2006-03-24 03:18:17 -08002510 */
Adrian Hunter7c89a3d2016-06-29 16:24:23 +03002511 if (data_cmd && (data_cmd->flags & MMC_RSP_BUSY)) {
Matthieu CASTETc5abd5e2014-08-14 16:03:17 +02002512 if (intmask & SDHCI_INT_DATA_TIMEOUT) {
Adrian Hunter7c89a3d2016-06-29 16:24:23 +03002513 data_cmd->error = -ETIMEDOUT;
Adrian Huntera6d3bdd2016-06-29 16:24:27 +03002514 sdhci_finish_mrq(host, data_cmd->mrq);
Matthieu CASTETc5abd5e2014-08-14 16:03:17 +02002515 return;
2516 }
Pierre Ossmane8095172008-07-25 01:09:08 +02002517 if (intmask & SDHCI_INT_DATA_END) {
Chanho Mine99783a2014-08-30 12:40:40 +09002518 /*
2519 * Some cards handle busy-end interrupt
2520 * before the command completed, so make
2521 * sure we do things in the proper order.
2522 */
Adrian Hunterea968022016-06-29 16:24:24 +03002523 if (host->cmd == data_cmd)
2524 return;
2525
Adrian Huntera6d3bdd2016-06-29 16:24:27 +03002526 sdhci_finish_mrq(host, data_cmd->mrq);
Pierre Ossmane8095172008-07-25 01:09:08 +02002527 return;
2528 }
2529 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08002530
Adrian Huntered1563d2016-06-29 16:24:29 +03002531 /*
2532 * SDHCI recovers from errors by resetting the cmd and data
2533 * circuits. Until that is done, there very well might be more
2534 * interrupts, so ignore them in that case.
2535 */
2536 if (host->pending_reset)
2537 return;
2538
Marek Vasut2e4456f2015-11-18 10:47:02 +01002539 pr_err("%s: Got data interrupt 0x%08x even though no data operation was in progress.\n",
2540 mmc_hostname(host->mmc), (unsigned)intmask);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002541 sdhci_dumpregs(host);
2542
2543 return;
2544 }
2545
2546 if (intmask & SDHCI_INT_DATA_TIMEOUT)
Pierre Ossman17b04292007-07-22 22:18:46 +02002547 host->data->error = -ETIMEDOUT;
Aries Lee22113ef2010-12-15 08:14:24 +01002548 else if (intmask & SDHCI_INT_DATA_END_BIT)
2549 host->data->error = -EILSEQ;
2550 else if ((intmask & SDHCI_INT_DATA_CRC) &&
2551 SDHCI_GET_CMD(sdhci_readw(host, SDHCI_COMMAND))
2552 != MMC_BUS_TEST_R)
Pierre Ossman17b04292007-07-22 22:18:46 +02002553 host->data->error = -EILSEQ;
Ben Dooks6882a8c2009-06-14 13:52:38 +01002554 else if (intmask & SDHCI_INT_ADMA_ERROR) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05302555 pr_err("%s: ADMA error\n", mmc_hostname(host->mmc));
Adrian Hunter08621b12014-11-04 12:42:38 +02002556 sdhci_adma_show_error(host);
Pierre Ossman2134a922008-06-28 18:28:51 +02002557 host->data->error = -EIO;
Haijun Zhanga4071fb2012-12-04 10:41:28 +08002558 if (host->ops->adma_workaround)
2559 host->ops->adma_workaround(host, intmask);
Ben Dooks6882a8c2009-06-14 13:52:38 +01002560 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08002561
Pierre Ossman17b04292007-07-22 22:18:46 +02002562 if (host->data->error)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002563 sdhci_finish_data(host);
2564 else {
Pierre Ossmana406f5a2006-07-02 16:50:59 +01002565 if (intmask & (SDHCI_INT_DATA_AVAIL | SDHCI_INT_SPACE_AVAIL))
Pierre Ossmand129bce2006-03-24 03:18:17 -08002566 sdhci_transfer_pio(host);
2567
Pierre Ossman6ba736a2007-05-13 22:39:23 +02002568 /*
2569 * We currently don't do anything fancy with DMA
2570 * boundaries, but as we can't disable the feature
2571 * we need to at least restart the transfer.
Mikko Vinnif6a03cb2011-04-12 09:36:18 -04002572 *
2573 * According to the spec sdhci_readl(host, SDHCI_DMA_ADDRESS)
2574 * should return a valid address to continue from, but as
2575 * some controllers are faulty, don't trust them.
Pierre Ossman6ba736a2007-05-13 22:39:23 +02002576 */
Mikko Vinnif6a03cb2011-04-12 09:36:18 -04002577 if (intmask & SDHCI_INT_DMA_END) {
2578 u32 dmastart, dmanow;
2579 dmastart = sg_dma_address(host->data->sg);
2580 dmanow = dmastart + host->data->bytes_xfered;
2581 /*
2582 * Force update to the next DMA block boundary.
2583 */
2584 dmanow = (dmanow &
2585 ~(SDHCI_DEFAULT_BOUNDARY_SIZE - 1)) +
2586 SDHCI_DEFAULT_BOUNDARY_SIZE;
2587 host->data->bytes_xfered = dmanow - dmastart;
2588 DBG("%s: DMA base 0x%08x, transferred 0x%06x bytes,"
2589 " next 0x%08x\n",
2590 mmc_hostname(host->mmc), dmastart,
2591 host->data->bytes_xfered, dmanow);
2592 sdhci_writel(host, dmanow, SDHCI_DMA_ADDRESS);
2593 }
Pierre Ossman6ba736a2007-05-13 22:39:23 +02002594
Pierre Ossmane538fbe2007-08-12 16:46:32 +02002595 if (intmask & SDHCI_INT_DATA_END) {
Adrian Hunter7c89a3d2016-06-29 16:24:23 +03002596 if (host->cmd == host->data_cmd) {
Pierre Ossmane538fbe2007-08-12 16:46:32 +02002597 /*
2598 * Data managed to finish before the
2599 * command completed. Make sure we do
2600 * things in the proper order.
2601 */
2602 host->data_early = 1;
2603 } else {
2604 sdhci_finish_data(host);
2605 }
2606 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08002607 }
2608}
2609
David Howells7d12e782006-10-05 14:55:46 +01002610static irqreturn_t sdhci_irq(int irq, void *dev_id)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002611{
Russell King781e9892014-04-25 12:55:46 +01002612 irqreturn_t result = IRQ_NONE;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002613 struct sdhci_host *host = dev_id;
Russell King41005002014-04-25 12:55:36 +01002614 u32 intmask, mask, unexpected = 0;
Russell King781e9892014-04-25 12:55:46 +01002615 int max_loops = 16;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002616
2617 spin_lock(&host->lock);
2618
Russell Kingbe138552014-04-25 12:55:56 +01002619 if (host->runtime_suspended && !sdhci_sdio_irq_enabled(host)) {
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002620 spin_unlock(&host->lock);
Adrian Hunter655bca72014-03-11 10:09:36 +02002621 return IRQ_NONE;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002622 }
2623
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03002624 intmask = sdhci_readl(host, SDHCI_INT_STATUS);
Mark Lord62df67a52007-03-06 13:30:13 +01002625 if (!intmask || intmask == 0xffffffff) {
Pierre Ossmand129bce2006-03-24 03:18:17 -08002626 result = IRQ_NONE;
2627 goto out;
2628 }
2629
Russell King41005002014-04-25 12:55:36 +01002630 do {
2631 /* Clear selected interrupts. */
2632 mask = intmask & (SDHCI_INT_CMD_MASK | SDHCI_INT_DATA_MASK |
2633 SDHCI_INT_BUS_POWER);
2634 sdhci_writel(host, mask, SDHCI_INT_STATUS);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002635
Russell King41005002014-04-25 12:55:36 +01002636 DBG("*** %s got interrupt: 0x%08x\n",
2637 mmc_hostname(host->mmc), intmask);
2638
2639 if (intmask & (SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE)) {
2640 u32 present = sdhci_readl(host, SDHCI_PRESENT_STATE) &
2641 SDHCI_CARD_PRESENT;
2642
2643 /*
2644 * There is a observation on i.mx esdhc. INSERT
2645 * bit will be immediately set again when it gets
2646 * cleared, if a card is inserted. We have to mask
2647 * the irq to prevent interrupt storm which will
2648 * freeze the system. And the REMOVE gets the
2649 * same situation.
2650 *
2651 * More testing are needed here to ensure it works
2652 * for other platforms though.
2653 */
Russell Kingb537f942014-04-25 12:56:01 +01002654 host->ier &= ~(SDHCI_INT_CARD_INSERT |
2655 SDHCI_INT_CARD_REMOVE);
2656 host->ier |= present ? SDHCI_INT_CARD_REMOVE :
2657 SDHCI_INT_CARD_INSERT;
2658 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
2659 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Russell King41005002014-04-25 12:55:36 +01002660
2661 sdhci_writel(host, intmask & (SDHCI_INT_CARD_INSERT |
2662 SDHCI_INT_CARD_REMOVE), SDHCI_INT_STATUS);
Russell King3560db82014-04-25 12:55:51 +01002663
2664 host->thread_isr |= intmask & (SDHCI_INT_CARD_INSERT |
2665 SDHCI_INT_CARD_REMOVE);
2666 result = IRQ_WAKE_THREAD;
Russell King41005002014-04-25 12:55:36 +01002667 }
2668
2669 if (intmask & SDHCI_INT_CMD_MASK)
Adrian Hunter61541392014-09-24 10:27:27 +03002670 sdhci_cmd_irq(host, intmask & SDHCI_INT_CMD_MASK,
2671 &intmask);
Russell King41005002014-04-25 12:55:36 +01002672
2673 if (intmask & SDHCI_INT_DATA_MASK)
2674 sdhci_data_irq(host, intmask & SDHCI_INT_DATA_MASK);
2675
2676 if (intmask & SDHCI_INT_BUS_POWER)
2677 pr_err("%s: Card is consuming too much power!\n",
2678 mmc_hostname(host->mmc));
2679
Dong Aishengf37b20e2016-07-12 15:46:17 +08002680 if (intmask & SDHCI_INT_RETUNE)
2681 mmc_retune_needed(host->mmc);
2682
Russell King781e9892014-04-25 12:55:46 +01002683 if (intmask & SDHCI_INT_CARD_INT) {
2684 sdhci_enable_sdio_irq_nolock(host, false);
2685 host->thread_isr |= SDHCI_INT_CARD_INT;
2686 result = IRQ_WAKE_THREAD;
2687 }
Russell King41005002014-04-25 12:55:36 +01002688
2689 intmask &= ~(SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE |
2690 SDHCI_INT_CMD_MASK | SDHCI_INT_DATA_MASK |
2691 SDHCI_INT_ERROR | SDHCI_INT_BUS_POWER |
Dong Aishengf37b20e2016-07-12 15:46:17 +08002692 SDHCI_INT_RETUNE | SDHCI_INT_CARD_INT);
Russell King41005002014-04-25 12:55:36 +01002693
2694 if (intmask) {
2695 unexpected |= intmask;
2696 sdhci_writel(host, intmask, SDHCI_INT_STATUS);
2697 }
2698
Russell King781e9892014-04-25 12:55:46 +01002699 if (result == IRQ_NONE)
2700 result = IRQ_HANDLED;
Russell King41005002014-04-25 12:55:36 +01002701
2702 intmask = sdhci_readl(host, SDHCI_INT_STATUS);
Russell King41005002014-04-25 12:55:36 +01002703 } while (intmask && --max_loops);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002704out:
2705 spin_unlock(&host->lock);
2706
Alexander Stein6379b232012-03-14 09:52:10 +01002707 if (unexpected) {
2708 pr_err("%s: Unexpected interrupt 0x%08x.\n",
2709 mmc_hostname(host->mmc), unexpected);
2710 sdhci_dumpregs(host);
2711 }
Pierre Ossmanf75979b2007-09-04 07:59:18 +02002712
Pierre Ossmand129bce2006-03-24 03:18:17 -08002713 return result;
2714}
2715
Russell King781e9892014-04-25 12:55:46 +01002716static irqreturn_t sdhci_thread_irq(int irq, void *dev_id)
2717{
2718 struct sdhci_host *host = dev_id;
2719 unsigned long flags;
2720 u32 isr;
2721
2722 spin_lock_irqsave(&host->lock, flags);
2723 isr = host->thread_isr;
2724 host->thread_isr = 0;
2725 spin_unlock_irqrestore(&host->lock, flags);
2726
Russell King3560db82014-04-25 12:55:51 +01002727 if (isr & (SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE)) {
Adrian Hunterd3940f22016-06-29 16:24:14 +03002728 struct mmc_host *mmc = host->mmc;
2729
2730 mmc->ops->card_event(mmc);
2731 mmc_detect_change(mmc, msecs_to_jiffies(200));
Russell King3560db82014-04-25 12:55:51 +01002732 }
2733
Russell King781e9892014-04-25 12:55:46 +01002734 if (isr & SDHCI_INT_CARD_INT) {
2735 sdio_run_irqs(host->mmc);
2736
2737 spin_lock_irqsave(&host->lock, flags);
2738 if (host->flags & SDHCI_SDIO_IRQ_ENABLED)
2739 sdhci_enable_sdio_irq_nolock(host, true);
2740 spin_unlock_irqrestore(&host->lock, flags);
2741 }
2742
2743 return isr ? IRQ_HANDLED : IRQ_NONE;
2744}
2745
Pierre Ossmand129bce2006-03-24 03:18:17 -08002746/*****************************************************************************\
2747 * *
2748 * Suspend/resume *
2749 * *
2750\*****************************************************************************/
2751
2752#ifdef CONFIG_PM
Ludovic Desroches84d62602016-05-13 15:16:02 +02002753/*
2754 * To enable wakeup events, the corresponding events have to be enabled in
2755 * the Interrupt Status Enable register too. See 'Table 1-6: Wakeup Signal
2756 * Table' in the SD Host Controller Standard Specification.
2757 * It is useless to restore SDHCI_INT_ENABLE state in
2758 * sdhci_disable_irq_wakeups() since it will be set by
2759 * sdhci_enable_card_detection() or sdhci_init().
2760 */
Kevin Liuad080d72013-01-05 17:21:33 +08002761void sdhci_enable_irq_wakeups(struct sdhci_host *host)
2762{
2763 u8 val;
2764 u8 mask = SDHCI_WAKE_ON_INSERT | SDHCI_WAKE_ON_REMOVE
2765 | SDHCI_WAKE_ON_INT;
Ludovic Desroches84d62602016-05-13 15:16:02 +02002766 u32 irq_val = SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE |
2767 SDHCI_INT_CARD_INT;
Kevin Liuad080d72013-01-05 17:21:33 +08002768
2769 val = sdhci_readb(host, SDHCI_WAKE_UP_CONTROL);
2770 val |= mask ;
2771 /* Avoid fake wake up */
Ludovic Desroches84d62602016-05-13 15:16:02 +02002772 if (host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION) {
Kevin Liuad080d72013-01-05 17:21:33 +08002773 val &= ~(SDHCI_WAKE_ON_INSERT | SDHCI_WAKE_ON_REMOVE);
Ludovic Desroches84d62602016-05-13 15:16:02 +02002774 irq_val &= ~(SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE);
2775 }
Kevin Liuad080d72013-01-05 17:21:33 +08002776 sdhci_writeb(host, val, SDHCI_WAKE_UP_CONTROL);
Ludovic Desroches84d62602016-05-13 15:16:02 +02002777 sdhci_writel(host, irq_val, SDHCI_INT_ENABLE);
Kevin Liuad080d72013-01-05 17:21:33 +08002778}
2779EXPORT_SYMBOL_GPL(sdhci_enable_irq_wakeups);
2780
Fabio Estevam0b10f472014-08-30 14:53:13 -03002781static void sdhci_disable_irq_wakeups(struct sdhci_host *host)
Kevin Liuad080d72013-01-05 17:21:33 +08002782{
2783 u8 val;
2784 u8 mask = SDHCI_WAKE_ON_INSERT | SDHCI_WAKE_ON_REMOVE
2785 | SDHCI_WAKE_ON_INT;
2786
2787 val = sdhci_readb(host, SDHCI_WAKE_UP_CONTROL);
2788 val &= ~mask;
2789 sdhci_writeb(host, val, SDHCI_WAKE_UP_CONTROL);
2790}
Pierre Ossmand129bce2006-03-24 03:18:17 -08002791
Manuel Lauss29495aa2011-11-03 11:09:45 +01002792int sdhci_suspend_host(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002793{
Anton Vorontsov7260cf52009-03-17 00:13:48 +03002794 sdhci_disable_card_detection(host);
2795
Adrian Hunter66c39dfc2015-05-07 13:10:21 +03002796 mmc_retune_timer_stop(host->mmc);
Dong Aishengf37b20e2016-07-12 15:46:17 +08002797 if (host->tuning_mode != SDHCI_TUNING_MODE_3)
2798 mmc_retune_needed(host->mmc);
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05302799
Kevin Liuad080d72013-01-05 17:21:33 +08002800 if (!device_may_wakeup(mmc_dev(host->mmc))) {
Russell Kingb537f942014-04-25 12:56:01 +01002801 host->ier = 0;
2802 sdhci_writel(host, 0, SDHCI_INT_ENABLE);
2803 sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE);
Kevin Liuad080d72013-01-05 17:21:33 +08002804 free_irq(host->irq, host);
2805 } else {
2806 sdhci_enable_irq_wakeups(host);
2807 enable_irq_wake(host->irq);
2808 }
Ulf Hansson4ee14ec2013-09-25 14:15:24 +02002809 return 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002810}
2811
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002812EXPORT_SYMBOL_GPL(sdhci_suspend_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002813
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002814int sdhci_resume_host(struct sdhci_host *host)
2815{
Adrian Hunterd3940f22016-06-29 16:24:14 +03002816 struct mmc_host *mmc = host->mmc;
Ulf Hansson4ee14ec2013-09-25 14:15:24 +02002817 int ret = 0;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002818
Richard Röjforsa13abc72009-09-22 16:45:30 -07002819 if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002820 if (host->ops->enable_dma)
2821 host->ops->enable_dma(host);
2822 }
2823
Adrian Hunter6308d292012-02-07 14:48:54 +02002824 if ((host->mmc->pm_flags & MMC_PM_KEEP_POWER) &&
2825 (host->quirks2 & SDHCI_QUIRK2_HOST_OFF_CARD_ON)) {
2826 /* Card keeps power but host controller does not */
2827 sdhci_init(host, 0);
2828 host->pwr = 0;
2829 host->clock = 0;
Adrian Hunterd3940f22016-06-29 16:24:14 +03002830 mmc->ops->set_ios(mmc, &mmc->ios);
Adrian Hunter6308d292012-02-07 14:48:54 +02002831 } else {
2832 sdhci_init(host, (host->mmc->pm_flags & MMC_PM_KEEP_POWER));
2833 mmiowb();
2834 }
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002835
Haibo Chen14a7b41642015-09-15 18:32:58 +08002836 if (!device_may_wakeup(mmc_dev(host->mmc))) {
2837 ret = request_threaded_irq(host->irq, sdhci_irq,
2838 sdhci_thread_irq, IRQF_SHARED,
2839 mmc_hostname(host->mmc), host);
2840 if (ret)
2841 return ret;
2842 } else {
2843 sdhci_disable_irq_wakeups(host);
2844 disable_irq_wake(host->irq);
2845 }
2846
Anton Vorontsov7260cf52009-03-17 00:13:48 +03002847 sdhci_enable_card_detection(host);
2848
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08002849 return ret;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002850}
2851
2852EXPORT_SYMBOL_GPL(sdhci_resume_host);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002853
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002854int sdhci_runtime_suspend_host(struct sdhci_host *host)
2855{
2856 unsigned long flags;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002857
Adrian Hunter66c39dfc2015-05-07 13:10:21 +03002858 mmc_retune_timer_stop(host->mmc);
Dong Aishengf37b20e2016-07-12 15:46:17 +08002859 if (host->tuning_mode != SDHCI_TUNING_MODE_3)
2860 mmc_retune_needed(host->mmc);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002861
2862 spin_lock_irqsave(&host->lock, flags);
Russell Kingb537f942014-04-25 12:56:01 +01002863 host->ier &= SDHCI_INT_CARD_INT;
2864 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
2865 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002866 spin_unlock_irqrestore(&host->lock, flags);
2867
Russell King781e9892014-04-25 12:55:46 +01002868 synchronize_hardirq(host->irq);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002869
2870 spin_lock_irqsave(&host->lock, flags);
2871 host->runtime_suspended = true;
2872 spin_unlock_irqrestore(&host->lock, flags);
2873
Markus Pargmann8a125ba2014-06-04 15:24:29 +02002874 return 0;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002875}
2876EXPORT_SYMBOL_GPL(sdhci_runtime_suspend_host);
2877
2878int sdhci_runtime_resume_host(struct sdhci_host *host)
2879{
Adrian Hunterd3940f22016-06-29 16:24:14 +03002880 struct mmc_host *mmc = host->mmc;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002881 unsigned long flags;
Markus Pargmann8a125ba2014-06-04 15:24:29 +02002882 int host_flags = host->flags;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002883
2884 if (host_flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
2885 if (host->ops->enable_dma)
2886 host->ops->enable_dma(host);
2887 }
2888
2889 sdhci_init(host, 0);
2890
2891 /* Force clock and power re-program */
2892 host->pwr = 0;
2893 host->clock = 0;
Adrian Hunterd3940f22016-06-29 16:24:14 +03002894 mmc->ops->start_signal_voltage_switch(mmc, &mmc->ios);
2895 mmc->ops->set_ios(mmc, &mmc->ios);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002896
Kevin Liu52983382013-01-31 11:31:37 +08002897 if ((host_flags & SDHCI_PV_ENABLED) &&
2898 !(host->quirks2 & SDHCI_QUIRK2_PRESET_VALUE_BROKEN)) {
2899 spin_lock_irqsave(&host->lock, flags);
2900 sdhci_enable_preset_value(host, true);
2901 spin_unlock_irqrestore(&host->lock, flags);
2902 }
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002903
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002904 spin_lock_irqsave(&host->lock, flags);
2905
2906 host->runtime_suspended = false;
2907
2908 /* Enable SDIO IRQ */
Russell Kingef104332014-04-25 12:55:41 +01002909 if (host->flags & SDHCI_SDIO_IRQ_ENABLED)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002910 sdhci_enable_sdio_irq_nolock(host, true);
2911
2912 /* Enable Card Detection */
2913 sdhci_enable_card_detection(host);
2914
2915 spin_unlock_irqrestore(&host->lock, flags);
2916
Markus Pargmann8a125ba2014-06-04 15:24:29 +02002917 return 0;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002918}
2919EXPORT_SYMBOL_GPL(sdhci_runtime_resume_host);
2920
Rafael J. Wysocki162d6f92014-12-05 03:05:33 +01002921#endif /* CONFIG_PM */
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002922
Pierre Ossmand129bce2006-03-24 03:18:17 -08002923/*****************************************************************************\
2924 * *
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002925 * Device allocation/registration *
Pierre Ossmand129bce2006-03-24 03:18:17 -08002926 * *
2927\*****************************************************************************/
2928
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002929struct sdhci_host *sdhci_alloc_host(struct device *dev,
2930 size_t priv_size)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002931{
Pierre Ossmand129bce2006-03-24 03:18:17 -08002932 struct mmc_host *mmc;
2933 struct sdhci_host *host;
2934
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002935 WARN_ON(dev == NULL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002936
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002937 mmc = mmc_alloc_host(sizeof(struct sdhci_host) + priv_size, dev);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002938 if (!mmc)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002939 return ERR_PTR(-ENOMEM);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002940
2941 host = mmc_priv(mmc);
2942 host->mmc = mmc;
Adrian Hunterbf60e592016-02-09 16:12:35 +02002943 host->mmc_host_ops = sdhci_ops;
2944 mmc->ops = &host->mmc_host_ops;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002945
Adrian Hunter8cb851a2016-06-29 16:24:16 +03002946 host->flags = SDHCI_SIGNALING_330;
2947
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002948 return host;
2949}
Pierre Ossman8a4da142006-10-04 02:15:40 -07002950
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002951EXPORT_SYMBOL_GPL(sdhci_alloc_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002952
Alexandre Courbot7b913692016-03-07 11:07:55 +09002953static int sdhci_set_dma_mask(struct sdhci_host *host)
2954{
2955 struct mmc_host *mmc = host->mmc;
2956 struct device *dev = mmc_dev(mmc);
2957 int ret = -EINVAL;
2958
2959 if (host->quirks2 & SDHCI_QUIRK2_BROKEN_64_BIT_DMA)
2960 host->flags &= ~SDHCI_USE_64_BIT_DMA;
2961
2962 /* Try 64-bit mask if hardware is capable of it */
2963 if (host->flags & SDHCI_USE_64_BIT_DMA) {
2964 ret = dma_set_mask_and_coherent(dev, DMA_BIT_MASK(64));
2965 if (ret) {
2966 pr_warn("%s: Failed to set 64-bit DMA mask.\n",
2967 mmc_hostname(mmc));
2968 host->flags &= ~SDHCI_USE_64_BIT_DMA;
2969 }
2970 }
2971
2972 /* 32-bit mask as default & fallback */
2973 if (ret) {
2974 ret = dma_set_mask_and_coherent(dev, DMA_BIT_MASK(32));
2975 if (ret)
2976 pr_warn("%s: Failed to set 32-bit DMA mask.\n",
2977 mmc_hostname(mmc));
2978 }
2979
2980 return ret;
2981}
2982
Adrian Hunter6132a3b2016-06-29 16:24:18 +03002983void __sdhci_read_caps(struct sdhci_host *host, u16 *ver, u32 *caps, u32 *caps1)
2984{
2985 u16 v;
2986
2987 if (host->read_caps)
2988 return;
2989
2990 host->read_caps = true;
2991
2992 if (debug_quirks)
2993 host->quirks = debug_quirks;
2994
2995 if (debug_quirks2)
2996 host->quirks2 = debug_quirks2;
2997
2998 sdhci_do_reset(host, SDHCI_RESET_ALL);
2999
3000 v = ver ? *ver : sdhci_readw(host, SDHCI_HOST_VERSION);
3001 host->version = (v & SDHCI_SPEC_VER_MASK) >> SDHCI_SPEC_VER_SHIFT;
3002
3003 if (host->quirks & SDHCI_QUIRK_MISSING_CAPS)
3004 return;
3005
3006 host->caps = caps ? *caps : sdhci_readl(host, SDHCI_CAPABILITIES);
3007
3008 if (host->version < SDHCI_SPEC_300)
3009 return;
3010
3011 host->caps1 = caps1 ? *caps1 : sdhci_readl(host, SDHCI_CAPABILITIES_1);
3012}
3013EXPORT_SYMBOL_GPL(__sdhci_read_caps);
3014
Adrian Hunter52f53362016-06-29 16:24:15 +03003015int sdhci_setup_host(struct sdhci_host *host)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003016{
3017 struct mmc_host *mmc;
Arindam Nathf2119df2011-05-05 12:18:57 +05303018 u32 max_current_caps;
3019 unsigned int ocr_avail;
Adrian Hunterf5fa92e2014-09-24 10:27:32 +03003020 unsigned int override_timeout_clk;
Dong Aisheng59241752015-07-22 20:53:07 +08003021 u32 max_clk;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003022 int ret;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003023
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003024 WARN_ON(host == NULL);
3025 if (host == NULL)
3026 return -EINVAL;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003027
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003028 mmc = host->mmc;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003029
Adrian Hunter6132a3b2016-06-29 16:24:18 +03003030 sdhci_read_caps(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003031
Adrian Hunterf5fa92e2014-09-24 10:27:32 +03003032 override_timeout_clk = host->timeout_clk;
3033
Zhangfei Gao85105c52010-08-06 07:10:01 +08003034 if (host->version > SDHCI_SPEC_300) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01003035 pr_err("%s: Unknown controller version (%d). You may experience problems.\n",
3036 mmc_hostname(mmc), host->version);
Pierre Ossman4a965502006-06-30 02:22:29 -07003037 }
3038
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003039 if (host->quirks & SDHCI_QUIRK_FORCE_DMA)
Richard Röjforsa13abc72009-09-22 16:45:30 -07003040 host->flags |= SDHCI_USE_SDMA;
Adrian Hunter28da3582016-06-29 16:24:17 +03003041 else if (!(host->caps & SDHCI_CAN_DO_SDMA))
Richard Röjforsa13abc72009-09-22 16:45:30 -07003042 DBG("Controller doesn't have SDMA capability\n");
Pierre Ossman67435272006-06-30 02:22:31 -07003043 else
Richard Röjforsa13abc72009-09-22 16:45:30 -07003044 host->flags |= SDHCI_USE_SDMA;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003045
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003046 if ((host->quirks & SDHCI_QUIRK_BROKEN_DMA) &&
Richard Röjforsa13abc72009-09-22 16:45:30 -07003047 (host->flags & SDHCI_USE_SDMA)) {
Rolf Eike Beercee687c2007-11-02 15:22:30 +01003048 DBG("Disabling DMA as it is marked broken\n");
Richard Röjforsa13abc72009-09-22 16:45:30 -07003049 host->flags &= ~SDHCI_USE_SDMA;
Feng Tang7c168e32007-09-30 12:44:18 +02003050 }
3051
Arindam Nathf2119df2011-05-05 12:18:57 +05303052 if ((host->version >= SDHCI_SPEC_200) &&
Adrian Hunter28da3582016-06-29 16:24:17 +03003053 (host->caps & SDHCI_CAN_DO_ADMA2))
Richard Röjforsa13abc72009-09-22 16:45:30 -07003054 host->flags |= SDHCI_USE_ADMA;
Pierre Ossman2134a922008-06-28 18:28:51 +02003055
3056 if ((host->quirks & SDHCI_QUIRK_BROKEN_ADMA) &&
3057 (host->flags & SDHCI_USE_ADMA)) {
3058 DBG("Disabling ADMA as it is marked broken\n");
3059 host->flags &= ~SDHCI_USE_ADMA;
3060 }
3061
Adrian Huntere57a5f62014-11-04 12:42:46 +02003062 /*
3063 * It is assumed that a 64-bit capable device has set a 64-bit DMA mask
3064 * and *must* do 64-bit DMA. A driver has the opportunity to change
3065 * that during the first call to ->enable_dma(). Similarly
3066 * SDHCI_QUIRK2_BROKEN_64_BIT_DMA must be left to the drivers to
3067 * implement.
3068 */
Adrian Hunter28da3582016-06-29 16:24:17 +03003069 if (host->caps & SDHCI_CAN_64BIT)
Adrian Huntere57a5f62014-11-04 12:42:46 +02003070 host->flags |= SDHCI_USE_64_BIT_DMA;
3071
Richard Röjforsa13abc72009-09-22 16:45:30 -07003072 if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
Alexandre Courbot7b913692016-03-07 11:07:55 +09003073 ret = sdhci_set_dma_mask(host);
3074
3075 if (!ret && host->ops->enable_dma)
3076 ret = host->ops->enable_dma(host);
3077
3078 if (ret) {
3079 pr_warn("%s: No suitable DMA available - falling back to PIO\n",
3080 mmc_hostname(mmc));
3081 host->flags &= ~(SDHCI_USE_SDMA | SDHCI_USE_ADMA);
3082
3083 ret = 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003084 }
3085 }
3086
Adrian Huntere57a5f62014-11-04 12:42:46 +02003087 /* SDMA does not support 64-bit DMA */
3088 if (host->flags & SDHCI_USE_64_BIT_DMA)
3089 host->flags &= ~SDHCI_USE_SDMA;
3090
Pierre Ossman2134a922008-06-28 18:28:51 +02003091 if (host->flags & SDHCI_USE_ADMA) {
Russell Kinge66e61c2016-01-26 13:39:55 +00003092 dma_addr_t dma;
3093 void *buf;
3094
Pierre Ossman2134a922008-06-28 18:28:51 +02003095 /*
Adrian Hunter76fe3792014-11-04 12:42:42 +02003096 * The DMA descriptor table size is calculated as the maximum
3097 * number of segments times 2, to allow for an alignment
3098 * descriptor for each segment, plus 1 for a nop end descriptor,
3099 * all multipled by the descriptor size.
Pierre Ossman2134a922008-06-28 18:28:51 +02003100 */
Adrian Huntere57a5f62014-11-04 12:42:46 +02003101 if (host->flags & SDHCI_USE_64_BIT_DMA) {
3102 host->adma_table_sz = (SDHCI_MAX_SEGS * 2 + 1) *
3103 SDHCI_ADMA2_64_DESC_SZ;
Adrian Huntere57a5f62014-11-04 12:42:46 +02003104 host->desc_sz = SDHCI_ADMA2_64_DESC_SZ;
Adrian Huntere57a5f62014-11-04 12:42:46 +02003105 } else {
3106 host->adma_table_sz = (SDHCI_MAX_SEGS * 2 + 1) *
3107 SDHCI_ADMA2_32_DESC_SZ;
Adrian Huntere57a5f62014-11-04 12:42:46 +02003108 host->desc_sz = SDHCI_ADMA2_32_DESC_SZ;
Adrian Huntere57a5f62014-11-04 12:42:46 +02003109 }
Russell Kinge66e61c2016-01-26 13:39:55 +00003110
Adrian Hunter04a5ae62015-11-26 14:00:49 +02003111 host->align_buffer_sz = SDHCI_MAX_SEGS * SDHCI_ADMA2_ALIGN;
Russell Kinge66e61c2016-01-26 13:39:55 +00003112 buf = dma_alloc_coherent(mmc_dev(mmc), host->align_buffer_sz +
3113 host->adma_table_sz, &dma, GFP_KERNEL);
3114 if (!buf) {
Joe Perches66061102014-09-12 14:56:56 -07003115 pr_warn("%s: Unable to allocate ADMA buffers - falling back to standard DMA\n",
Pierre Ossman2134a922008-06-28 18:28:51 +02003116 mmc_hostname(mmc));
3117 host->flags &= ~SDHCI_USE_ADMA;
Russell Kinge66e61c2016-01-26 13:39:55 +00003118 } else if ((dma + host->align_buffer_sz) &
3119 (SDHCI_ADMA2_DESC_ALIGN - 1)) {
Joe Perches66061102014-09-12 14:56:56 -07003120 pr_warn("%s: unable to allocate aligned ADMA descriptor\n",
3121 mmc_hostname(mmc));
Russell Kingd1e49f72014-04-25 12:58:34 +01003122 host->flags &= ~SDHCI_USE_ADMA;
Russell Kinge66e61c2016-01-26 13:39:55 +00003123 dma_free_coherent(mmc_dev(mmc), host->align_buffer_sz +
3124 host->adma_table_sz, buf, dma);
3125 } else {
3126 host->align_buffer = buf;
3127 host->align_addr = dma;
Russell Kingedd63fc2016-01-26 13:39:50 +00003128
Russell Kinge66e61c2016-01-26 13:39:55 +00003129 host->adma_table = buf + host->align_buffer_sz;
3130 host->adma_addr = dma + host->align_buffer_sz;
3131 }
Pierre Ossman2134a922008-06-28 18:28:51 +02003132 }
3133
Pierre Ossman76591502008-07-21 00:32:11 +02003134 /*
3135 * If we use DMA, then it's up to the caller to set the DMA
3136 * mask, but PIO does not need the hw shim so we set a new
3137 * mask here in that case.
3138 */
Richard Röjforsa13abc72009-09-22 16:45:30 -07003139 if (!(host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA))) {
Pierre Ossman76591502008-07-21 00:32:11 +02003140 host->dma_mask = DMA_BIT_MASK(64);
Markus Mayer4e743f12014-07-03 13:27:42 -07003141 mmc_dev(mmc)->dma_mask = &host->dma_mask;
Pierre Ossman76591502008-07-21 00:32:11 +02003142 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08003143
Zhangfei Gaoc4687d52010-08-20 14:02:36 -04003144 if (host->version >= SDHCI_SPEC_300)
Adrian Hunter28da3582016-06-29 16:24:17 +03003145 host->max_clk = (host->caps & SDHCI_CLOCK_V3_BASE_MASK)
Zhangfei Gaoc4687d52010-08-20 14:02:36 -04003146 >> SDHCI_CLOCK_BASE_SHIFT;
3147 else
Adrian Hunter28da3582016-06-29 16:24:17 +03003148 host->max_clk = (host->caps & SDHCI_CLOCK_BASE_MASK)
Zhangfei Gaoc4687d52010-08-20 14:02:36 -04003149 >> SDHCI_CLOCK_BASE_SHIFT;
3150
Pierre Ossmand129bce2006-03-24 03:18:17 -08003151 host->max_clk *= 1000000;
Anton Vorontsovf27f47e2010-05-26 14:41:53 -07003152 if (host->max_clk == 0 || host->quirks &
3153 SDHCI_QUIRK_CAP_CLOCK_BASE_BROKEN) {
Ben Dooks4240ff02009-03-17 00:13:57 +03003154 if (!host->ops->get_max_clock) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01003155 pr_err("%s: Hardware doesn't specify base clock frequency.\n",
3156 mmc_hostname(mmc));
Adrian Huntereb5c20d2016-04-12 14:25:08 +03003157 ret = -ENODEV;
3158 goto undma;
Ben Dooks4240ff02009-03-17 00:13:57 +03003159 }
3160 host->max_clk = host->ops->get_max_clock(host);
3161 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08003162
3163 /*
Arindam Nathc3ed3872011-05-05 12:19:06 +05303164 * In case of Host Controller v3.00, find out whether clock
3165 * multiplier is supported.
3166 */
Adrian Hunter28da3582016-06-29 16:24:17 +03003167 host->clk_mul = (host->caps1 & SDHCI_CLOCK_MUL_MASK) >>
Arindam Nathc3ed3872011-05-05 12:19:06 +05303168 SDHCI_CLOCK_MUL_SHIFT;
3169
3170 /*
3171 * In case the value in Clock Multiplier is 0, then programmable
3172 * clock mode is not supported, otherwise the actual clock
3173 * multiplier is one more than the value of Clock Multiplier
3174 * in the Capabilities Register.
3175 */
3176 if (host->clk_mul)
3177 host->clk_mul += 1;
3178
3179 /*
Pierre Ossmand129bce2006-03-24 03:18:17 -08003180 * Set host parameters.
3181 */
Dong Aisheng59241752015-07-22 20:53:07 +08003182 max_clk = host->max_clk;
3183
Marek Szyprowskice5f0362010-08-10 18:01:56 -07003184 if (host->ops->get_min_clock)
Anton Vorontsova9e58f22009-07-29 15:04:16 -07003185 mmc->f_min = host->ops->get_min_clock(host);
Arindam Nathc3ed3872011-05-05 12:19:06 +05303186 else if (host->version >= SDHCI_SPEC_300) {
3187 if (host->clk_mul) {
3188 mmc->f_min = (host->max_clk * host->clk_mul) / 1024;
Dong Aisheng59241752015-07-22 20:53:07 +08003189 max_clk = host->max_clk * host->clk_mul;
Arindam Nathc3ed3872011-05-05 12:19:06 +05303190 } else
3191 mmc->f_min = host->max_clk / SDHCI_MAX_DIV_SPEC_300;
3192 } else
Zhangfei Gao03975262010-09-20 15:15:18 -04003193 mmc->f_min = host->max_clk / SDHCI_MAX_DIV_SPEC_200;
Philip Rakity15ec4462010-11-19 16:48:39 -05003194
Adrian Hunterd310ae42016-04-12 14:25:07 +03003195 if (!mmc->f_max || mmc->f_max > max_clk)
Dong Aisheng59241752015-07-22 20:53:07 +08003196 mmc->f_max = max_clk;
3197
Aisheng Dong28aab052014-08-27 15:26:31 +08003198 if (!(host->quirks & SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK)) {
Adrian Hunter28da3582016-06-29 16:24:17 +03003199 host->timeout_clk = (host->caps & SDHCI_TIMEOUT_CLK_MASK) >>
Aisheng Dong28aab052014-08-27 15:26:31 +08003200 SDHCI_TIMEOUT_CLK_SHIFT;
3201 if (host->timeout_clk == 0) {
3202 if (host->ops->get_timeout_clock) {
3203 host->timeout_clk =
3204 host->ops->get_timeout_clock(host);
3205 } else {
3206 pr_err("%s: Hardware doesn't specify timeout clock frequency.\n",
3207 mmc_hostname(mmc));
Adrian Huntereb5c20d2016-04-12 14:25:08 +03003208 ret = -ENODEV;
3209 goto undma;
Aisheng Dong28aab052014-08-27 15:26:31 +08003210 }
Andy Shevchenko272308c2011-08-03 18:36:00 +03003211 }
Andy Shevchenko272308c2011-08-03 18:36:00 +03003212
Adrian Hunter28da3582016-06-29 16:24:17 +03003213 if (host->caps & SDHCI_TIMEOUT_CLK_UNIT)
Aisheng Dong28aab052014-08-27 15:26:31 +08003214 host->timeout_clk *= 1000;
Andy Shevchenko272308c2011-08-03 18:36:00 +03003215
Adrian Hunter99513622016-03-07 13:33:55 +02003216 if (override_timeout_clk)
3217 host->timeout_clk = override_timeout_clk;
3218
Aisheng Dong28aab052014-08-27 15:26:31 +08003219 mmc->max_busy_timeout = host->ops->get_max_timeout_count ?
Aisheng Donga6ff5ae2014-08-27 15:26:27 +08003220 host->ops->get_max_timeout_count(host) : 1 << 27;
Aisheng Dong28aab052014-08-27 15:26:31 +08003221 mmc->max_busy_timeout /= host->timeout_clk;
3222 }
Adrian Hunter58d12462011-06-28 17:16:03 +03003223
Andrei Warkentine89d4562011-05-23 15:06:37 -05003224 mmc->caps |= MMC_CAP_SDIO_IRQ | MMC_CAP_ERASE | MMC_CAP_CMD23;
Russell King781e9892014-04-25 12:55:46 +01003225 mmc->caps2 |= MMC_CAP2_SDIO_IRQ_NOTHREAD;
Andrei Warkentine89d4562011-05-23 15:06:37 -05003226
3227 if (host->quirks & SDHCI_QUIRK_MULTIBLOCK_READ_ACMD12)
3228 host->flags |= SDHCI_AUTO_CMD12;
Anton Vorontsov5fe23c72009-06-18 00:14:08 +04003229
Andrei Warkentin8edf63712011-05-23 15:06:39 -05003230 /* Auto-CMD23 stuff only works in ADMA or PIO. */
Andrei Warkentin4f3d3e92011-05-25 10:42:50 -04003231 if ((host->version >= SDHCI_SPEC_300) &&
Andrei Warkentin8edf63712011-05-23 15:06:39 -05003232 ((host->flags & SDHCI_USE_ADMA) ||
Scott Branden3bfa6f02015-02-09 16:06:28 -08003233 !(host->flags & SDHCI_USE_SDMA)) &&
3234 !(host->quirks2 & SDHCI_QUIRK2_ACMD23_BROKEN)) {
Andrei Warkentin8edf63712011-05-23 15:06:39 -05003235 host->flags |= SDHCI_AUTO_CMD23;
3236 DBG("%s: Auto-CMD23 available\n", mmc_hostname(mmc));
3237 } else {
3238 DBG("%s: Auto-CMD23 unavailable\n", mmc_hostname(mmc));
3239 }
3240
Philip Rakity15ec4462010-11-19 16:48:39 -05003241 /*
3242 * A controller may support 8-bit width, but the board itself
3243 * might not have the pins brought out. Boards that support
3244 * 8-bit width must set "mmc->caps |= MMC_CAP_8_BIT_DATA;" in
3245 * their platform code before calling sdhci_add_host(), and we
3246 * won't assume 8-bit width for hosts without that CAP.
3247 */
Anton Vorontsov5fe23c72009-06-18 00:14:08 +04003248 if (!(host->quirks & SDHCI_QUIRK_FORCE_1_BIT_DATA))
Philip Rakity15ec4462010-11-19 16:48:39 -05003249 mmc->caps |= MMC_CAP_4_BIT_DATA;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003250
Jerry Huang63ef5d82012-10-25 13:47:19 +08003251 if (host->quirks2 & SDHCI_QUIRK2_HOST_NO_CMD23)
3252 mmc->caps &= ~MMC_CAP_CMD23;
3253
Adrian Hunter28da3582016-06-29 16:24:17 +03003254 if (host->caps & SDHCI_CAN_DO_HISPD)
Zhangfei Gaoa29e7e12010-08-16 21:15:32 -04003255 mmc->caps |= MMC_CAP_SD_HIGHSPEED | MMC_CAP_MMC_HIGHSPEED;
Pierre Ossmancd9277c2007-02-18 12:07:47 +01003256
Jaehoon Chung176d1ed2010-09-27 09:42:20 +01003257 if ((host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION) &&
Jaehoon Chung860951c2016-06-21 10:13:26 +09003258 mmc_card_is_removable(mmc) &&
Arnd Bergmann287980e2016-05-27 23:23:25 +02003259 mmc_gpio_get_cd(host->mmc) < 0)
Anton Vorontsov68d1fb72009-03-17 00:13:52 +03003260 mmc->caps |= MMC_CAP_NEEDS_POLL;
3261
Tim Kryger3a48edc2014-06-13 10:13:56 -07003262 /* If there are external regulators, get them */
Adrian Huntereb5c20d2016-04-12 14:25:08 +03003263 ret = mmc_regulator_get_supply(mmc);
3264 if (ret == -EPROBE_DEFER)
3265 goto undma;
Tim Kryger3a48edc2014-06-13 10:13:56 -07003266
Philip Rakity6231f3d2012-07-23 15:56:23 -07003267 /* If vqmmc regulator and no 1.8V signalling, then there's no UHS */
Tim Kryger3a48edc2014-06-13 10:13:56 -07003268 if (!IS_ERR(mmc->supply.vqmmc)) {
3269 ret = regulator_enable(mmc->supply.vqmmc);
3270 if (!regulator_is_supported_voltage(mmc->supply.vqmmc, 1700000,
3271 1950000))
Adrian Hunter28da3582016-06-29 16:24:17 +03003272 host->caps1 &= ~(SDHCI_SUPPORT_SDR104 |
3273 SDHCI_SUPPORT_SDR50 |
3274 SDHCI_SUPPORT_DDR50);
Chris Balla3361ab2013-03-11 17:51:53 -04003275 if (ret) {
3276 pr_warn("%s: Failed to enable vqmmc regulator: %d\n",
3277 mmc_hostname(mmc), ret);
Adrian Hunter4bb74312014-11-06 15:19:04 +02003278 mmc->supply.vqmmc = ERR_PTR(-EINVAL);
Chris Balla3361ab2013-03-11 17:51:53 -04003279 }
Kevin Liu8363c372012-11-17 17:55:51 -05003280 }
Philip Rakity6231f3d2012-07-23 15:56:23 -07003281
Adrian Hunter28da3582016-06-29 16:24:17 +03003282 if (host->quirks2 & SDHCI_QUIRK2_NO_1_8_V) {
3283 host->caps1 &= ~(SDHCI_SUPPORT_SDR104 | SDHCI_SUPPORT_SDR50 |
3284 SDHCI_SUPPORT_DDR50);
3285 }
Daniel Drake6a661802012-11-25 13:01:19 -05003286
Al Cooper4188bba2012-03-16 15:54:17 -04003287 /* Any UHS-I mode in caps implies SDR12 and SDR25 support. */
Adrian Hunter28da3582016-06-29 16:24:17 +03003288 if (host->caps1 & (SDHCI_SUPPORT_SDR104 | SDHCI_SUPPORT_SDR50 |
3289 SDHCI_SUPPORT_DDR50))
Arindam Nathf2119df2011-05-05 12:18:57 +05303290 mmc->caps |= MMC_CAP_UHS_SDR12 | MMC_CAP_UHS_SDR25;
3291
3292 /* SDR104 supports also implies SDR50 support */
Adrian Hunter28da3582016-06-29 16:24:17 +03003293 if (host->caps1 & SDHCI_SUPPORT_SDR104) {
Arindam Nathf2119df2011-05-05 12:18:57 +05303294 mmc->caps |= MMC_CAP_UHS_SDR104 | MMC_CAP_UHS_SDR50;
Giuseppe CAVALLARO156e14b2013-06-12 08:16:38 +02003295 /* SD3.0: SDR104 is supported so (for eMMC) the caps2
3296 * field can be promoted to support HS200.
3297 */
Adrian Hunter549c0b12014-11-06 15:19:05 +02003298 if (!(host->quirks2 & SDHCI_QUIRK2_BROKEN_HS200))
David Cohen13868bf2013-10-29 10:58:26 -07003299 mmc->caps2 |= MMC_CAP2_HS200;
Adrian Hunter28da3582016-06-29 16:24:17 +03003300 } else if (host->caps1 & SDHCI_SUPPORT_SDR50) {
Arindam Nathf2119df2011-05-05 12:18:57 +05303301 mmc->caps |= MMC_CAP_UHS_SDR50;
Adrian Hunter28da3582016-06-29 16:24:17 +03003302 }
Arindam Nathf2119df2011-05-05 12:18:57 +05303303
Adrian Huntere9fb05d2014-11-06 15:19:06 +02003304 if (host->quirks2 & SDHCI_QUIRK2_CAPS_BIT63_FOR_HS400 &&
Adrian Hunter28da3582016-06-29 16:24:17 +03003305 (host->caps1 & SDHCI_SUPPORT_HS400))
Adrian Huntere9fb05d2014-11-06 15:19:06 +02003306 mmc->caps2 |= MMC_CAP2_HS400;
3307
Adrian Hunter549c0b12014-11-06 15:19:05 +02003308 if ((mmc->caps2 & MMC_CAP2_HSX00_1_2V) &&
3309 (IS_ERR(mmc->supply.vqmmc) ||
3310 !regulator_is_supported_voltage(mmc->supply.vqmmc, 1100000,
3311 1300000)))
3312 mmc->caps2 &= ~MMC_CAP2_HSX00_1_2V;
3313
Adrian Hunter28da3582016-06-29 16:24:17 +03003314 if ((host->caps1 & SDHCI_SUPPORT_DDR50) &&
3315 !(host->quirks2 & SDHCI_QUIRK2_BROKEN_DDR50))
Arindam Nathf2119df2011-05-05 12:18:57 +05303316 mmc->caps |= MMC_CAP_UHS_DDR50;
3317
Girish K S069c9f12012-01-06 09:56:39 +05303318 /* Does the host need tuning for SDR50? */
Adrian Hunter28da3582016-06-29 16:24:17 +03003319 if (host->caps1 & SDHCI_USE_SDR50_TUNING)
Arindam Nathb513ea22011-05-05 12:19:04 +05303320 host->flags |= SDHCI_SDR50_NEEDS_TUNING;
3321
Arindam Nathd6d50a12011-05-05 12:18:59 +05303322 /* Driver Type(s) (A, C, D) supported by the host */
Adrian Hunter28da3582016-06-29 16:24:17 +03003323 if (host->caps1 & SDHCI_DRIVER_TYPE_A)
Arindam Nathd6d50a12011-05-05 12:18:59 +05303324 mmc->caps |= MMC_CAP_DRIVER_TYPE_A;
Adrian Hunter28da3582016-06-29 16:24:17 +03003325 if (host->caps1 & SDHCI_DRIVER_TYPE_C)
Arindam Nathd6d50a12011-05-05 12:18:59 +05303326 mmc->caps |= MMC_CAP_DRIVER_TYPE_C;
Adrian Hunter28da3582016-06-29 16:24:17 +03003327 if (host->caps1 & SDHCI_DRIVER_TYPE_D)
Arindam Nathd6d50a12011-05-05 12:18:59 +05303328 mmc->caps |= MMC_CAP_DRIVER_TYPE_D;
3329
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05303330 /* Initial value for re-tuning timer count */
Adrian Hunter28da3582016-06-29 16:24:17 +03003331 host->tuning_count = (host->caps1 & SDHCI_RETUNING_TIMER_COUNT_MASK) >>
3332 SDHCI_RETUNING_TIMER_COUNT_SHIFT;
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05303333
3334 /*
3335 * In case Re-tuning Timer is not disabled, the actual value of
3336 * re-tuning timer will be 2 ^ (n - 1).
3337 */
3338 if (host->tuning_count)
3339 host->tuning_count = 1 << (host->tuning_count - 1);
3340
3341 /* Re-tuning mode supported by the Host Controller */
Adrian Hunter28da3582016-06-29 16:24:17 +03003342 host->tuning_mode = (host->caps1 & SDHCI_RETUNING_MODE_MASK) >>
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05303343 SDHCI_RETUNING_MODE_SHIFT;
3344
Takashi Iwai8f230f42010-12-08 10:04:30 +01003345 ocr_avail = 0;
Philip Rakitybad37e12012-05-27 18:36:44 -07003346
Arindam Nathf2119df2011-05-05 12:18:57 +05303347 /*
3348 * According to SD Host Controller spec v3.00, if the Host System
3349 * can afford more than 150mA, Host Driver should set XPC to 1. Also
3350 * the value is meaningful only if Voltage Support in the Capabilities
3351 * register is set. The actual current value is 4 times the register
3352 * value.
3353 */
3354 max_current_caps = sdhci_readl(host, SDHCI_MAX_CURRENT);
Tim Kryger3a48edc2014-06-13 10:13:56 -07003355 if (!max_current_caps && !IS_ERR(mmc->supply.vmmc)) {
Chuanxiao.Dongae906032014-08-01 14:00:13 +08003356 int curr = regulator_get_current_limit(mmc->supply.vmmc);
Philip Rakitybad37e12012-05-27 18:36:44 -07003357 if (curr > 0) {
3358
3359 /* convert to SDHCI_MAX_CURRENT format */
3360 curr = curr/1000; /* convert to mA */
3361 curr = curr/SDHCI_MAX_CURRENT_MULTIPLIER;
3362
3363 curr = min_t(u32, curr, SDHCI_MAX_CURRENT_LIMIT);
3364 max_current_caps =
3365 (curr << SDHCI_MAX_CURRENT_330_SHIFT) |
3366 (curr << SDHCI_MAX_CURRENT_300_SHIFT) |
3367 (curr << SDHCI_MAX_CURRENT_180_SHIFT);
3368 }
3369 }
Arindam Nathf2119df2011-05-05 12:18:57 +05303370
Adrian Hunter28da3582016-06-29 16:24:17 +03003371 if (host->caps & SDHCI_CAN_VDD_330) {
Takashi Iwai8f230f42010-12-08 10:04:30 +01003372 ocr_avail |= MMC_VDD_32_33 | MMC_VDD_33_34;
Arindam Nathf2119df2011-05-05 12:18:57 +05303373
Aaron Lu55c46652012-07-04 13:31:48 +08003374 mmc->max_current_330 = ((max_current_caps &
Arindam Nathf2119df2011-05-05 12:18:57 +05303375 SDHCI_MAX_CURRENT_330_MASK) >>
3376 SDHCI_MAX_CURRENT_330_SHIFT) *
3377 SDHCI_MAX_CURRENT_MULTIPLIER;
Arindam Nathf2119df2011-05-05 12:18:57 +05303378 }
Adrian Hunter28da3582016-06-29 16:24:17 +03003379 if (host->caps & SDHCI_CAN_VDD_300) {
Takashi Iwai8f230f42010-12-08 10:04:30 +01003380 ocr_avail |= MMC_VDD_29_30 | MMC_VDD_30_31;
Arindam Nathf2119df2011-05-05 12:18:57 +05303381
Aaron Lu55c46652012-07-04 13:31:48 +08003382 mmc->max_current_300 = ((max_current_caps &
Arindam Nathf2119df2011-05-05 12:18:57 +05303383 SDHCI_MAX_CURRENT_300_MASK) >>
3384 SDHCI_MAX_CURRENT_300_SHIFT) *
3385 SDHCI_MAX_CURRENT_MULTIPLIER;
Arindam Nathf2119df2011-05-05 12:18:57 +05303386 }
Adrian Hunter28da3582016-06-29 16:24:17 +03003387 if (host->caps & SDHCI_CAN_VDD_180) {
Takashi Iwai8f230f42010-12-08 10:04:30 +01003388 ocr_avail |= MMC_VDD_165_195;
3389
Aaron Lu55c46652012-07-04 13:31:48 +08003390 mmc->max_current_180 = ((max_current_caps &
Arindam Nathf2119df2011-05-05 12:18:57 +05303391 SDHCI_MAX_CURRENT_180_MASK) >>
3392 SDHCI_MAX_CURRENT_180_SHIFT) *
3393 SDHCI_MAX_CURRENT_MULTIPLIER;
Arindam Nathf2119df2011-05-05 12:18:57 +05303394 }
3395
Ulf Hansson5fd26c72015-06-05 11:40:08 +02003396 /* If OCR set by host, use it instead. */
3397 if (host->ocr_mask)
3398 ocr_avail = host->ocr_mask;
3399
3400 /* If OCR set by external regulators, give it highest prio. */
Tim Kryger3a48edc2014-06-13 10:13:56 -07003401 if (mmc->ocr_avail)
Tim Kryger52221612014-06-25 00:25:34 -07003402 ocr_avail = mmc->ocr_avail;
Tim Kryger3a48edc2014-06-13 10:13:56 -07003403
Takashi Iwai8f230f42010-12-08 10:04:30 +01003404 mmc->ocr_avail = ocr_avail;
3405 mmc->ocr_avail_sdio = ocr_avail;
3406 if (host->ocr_avail_sdio)
3407 mmc->ocr_avail_sdio &= host->ocr_avail_sdio;
3408 mmc->ocr_avail_sd = ocr_avail;
3409 if (host->ocr_avail_sd)
3410 mmc->ocr_avail_sd &= host->ocr_avail_sd;
3411 else /* normal SD controllers don't support 1.8V */
3412 mmc->ocr_avail_sd &= ~MMC_VDD_165_195;
3413 mmc->ocr_avail_mmc = ocr_avail;
3414 if (host->ocr_avail_mmc)
3415 mmc->ocr_avail_mmc &= host->ocr_avail_mmc;
Pierre Ossman146ad662006-06-30 02:22:23 -07003416
3417 if (mmc->ocr_avail == 0) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01003418 pr_err("%s: Hardware doesn't report any support voltages.\n",
3419 mmc_hostname(mmc));
Adrian Huntereb5c20d2016-04-12 14:25:08 +03003420 ret = -ENODEV;
3421 goto unreg;
Pierre Ossman146ad662006-06-30 02:22:23 -07003422 }
3423
Adrian Hunter8cb851a2016-06-29 16:24:16 +03003424 if ((mmc->caps & (MMC_CAP_UHS_SDR12 | MMC_CAP_UHS_SDR25 |
3425 MMC_CAP_UHS_SDR50 | MMC_CAP_UHS_SDR104 |
3426 MMC_CAP_UHS_DDR50 | MMC_CAP_1_8V_DDR)) ||
3427 (mmc->caps2 & (MMC_CAP2_HS200_1_8V_SDR | MMC_CAP2_HS400_1_8V)))
3428 host->flags |= SDHCI_SIGNALING_180;
3429
3430 if (mmc->caps2 & MMC_CAP2_HSX00_1_2V)
3431 host->flags |= SDHCI_SIGNALING_120;
3432
Pierre Ossmand129bce2006-03-24 03:18:17 -08003433 spin_lock_init(&host->lock);
3434
3435 /*
Pierre Ossman2134a922008-06-28 18:28:51 +02003436 * Maximum number of segments. Depends on if the hardware
3437 * can do scatter/gather or not.
Pierre Ossmand129bce2006-03-24 03:18:17 -08003438 */
Pierre Ossman2134a922008-06-28 18:28:51 +02003439 if (host->flags & SDHCI_USE_ADMA)
Adrian Hunter4fb213f2014-11-04 12:42:43 +02003440 mmc->max_segs = SDHCI_MAX_SEGS;
Richard Röjforsa13abc72009-09-22 16:45:30 -07003441 else if (host->flags & SDHCI_USE_SDMA)
Martin K. Petersena36274e2010-09-10 01:33:59 -04003442 mmc->max_segs = 1;
Pierre Ossman2134a922008-06-28 18:28:51 +02003443 else /* PIO */
Adrian Hunter4fb213f2014-11-04 12:42:43 +02003444 mmc->max_segs = SDHCI_MAX_SEGS;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003445
3446 /*
Adrian Hunterac005312014-12-05 19:25:28 +02003447 * Maximum number of sectors in one transfer. Limited by SDMA boundary
3448 * size (512KiB). Note some tuning modes impose a 4MiB limit, but this
3449 * is less anyway.
Pierre Ossmand129bce2006-03-24 03:18:17 -08003450 */
Pierre Ossman55db8902006-11-21 17:55:45 +01003451 mmc->max_req_size = 524288;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003452
3453 /*
3454 * Maximum segment size. Could be one segment with the maximum number
Pierre Ossman2134a922008-06-28 18:28:51 +02003455 * of bytes. When doing hardware scatter/gather, each entry cannot
3456 * be larger than 64 KiB though.
Pierre Ossmand129bce2006-03-24 03:18:17 -08003457 */
Olof Johansson30652aa2011-01-01 18:37:32 -06003458 if (host->flags & SDHCI_USE_ADMA) {
3459 if (host->quirks & SDHCI_QUIRK_BROKEN_ADMA_ZEROLEN_DESC)
3460 mmc->max_seg_size = 65535;
3461 else
3462 mmc->max_seg_size = 65536;
3463 } else {
Pierre Ossman2134a922008-06-28 18:28:51 +02003464 mmc->max_seg_size = mmc->max_req_size;
Olof Johansson30652aa2011-01-01 18:37:32 -06003465 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08003466
3467 /*
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +01003468 * Maximum block size. This varies from controller to controller and
3469 * is specified in the capabilities register.
3470 */
Anton Vorontsov0633f652009-03-17 00:14:03 +03003471 if (host->quirks & SDHCI_QUIRK_FORCE_BLK_SZ_2048) {
3472 mmc->max_blk_size = 2;
3473 } else {
Adrian Hunter28da3582016-06-29 16:24:17 +03003474 mmc->max_blk_size = (host->caps & SDHCI_MAX_BLOCK_MASK) >>
Anton Vorontsov0633f652009-03-17 00:14:03 +03003475 SDHCI_MAX_BLOCK_SHIFT;
3476 if (mmc->max_blk_size >= 3) {
Joe Perches66061102014-09-12 14:56:56 -07003477 pr_warn("%s: Invalid maximum block size, assuming 512 bytes\n",
3478 mmc_hostname(mmc));
Anton Vorontsov0633f652009-03-17 00:14:03 +03003479 mmc->max_blk_size = 0;
3480 }
3481 }
3482
3483 mmc->max_blk_size = 512 << mmc->max_blk_size;
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +01003484
3485 /*
Pierre Ossman55db8902006-11-21 17:55:45 +01003486 * Maximum block count.
3487 */
Ben Dooks1388eef2009-06-14 12:40:53 +01003488 mmc->max_blk_count = (host->quirks & SDHCI_QUIRK_NO_MULTIBLOCK) ? 1 : 65535;
Pierre Ossman55db8902006-11-21 17:55:45 +01003489
Adrian Hunter52f53362016-06-29 16:24:15 +03003490 return 0;
3491
3492unreg:
3493 if (!IS_ERR(mmc->supply.vqmmc))
3494 regulator_disable(mmc->supply.vqmmc);
3495undma:
3496 if (host->align_buffer)
3497 dma_free_coherent(mmc_dev(mmc), host->align_buffer_sz +
3498 host->adma_table_sz, host->align_buffer,
3499 host->align_addr);
3500 host->adma_table = NULL;
3501 host->align_buffer = NULL;
3502
3503 return ret;
3504}
3505EXPORT_SYMBOL_GPL(sdhci_setup_host);
3506
3507int __sdhci_add_host(struct sdhci_host *host)
3508{
3509 struct mmc_host *mmc = host->mmc;
3510 int ret;
3511
Pierre Ossman55db8902006-11-21 17:55:45 +01003512 /*
Pierre Ossmand129bce2006-03-24 03:18:17 -08003513 * Init tasklets.
3514 */
Pierre Ossmand129bce2006-03-24 03:18:17 -08003515 tasklet_init(&host->finish_tasklet,
3516 sdhci_tasklet_finish, (unsigned long)host);
3517
Al Viroe4cad1b2006-10-10 22:47:07 +01003518 setup_timer(&host->timer, sdhci_timeout_timer, (unsigned long)host);
Adrian Hunterd7422fb2016-06-29 16:24:33 +03003519 setup_timer(&host->data_timer, sdhci_timeout_data_timer,
3520 (unsigned long)host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003521
Adrian Hunter250fb7b42014-12-05 19:41:10 +02003522 init_waitqueue_head(&host->buf_ready_int);
Arindam Nathb513ea22011-05-05 12:19:04 +05303523
Shawn Guo2af502c2013-07-05 14:38:55 +08003524 sdhci_init(host, 0);
3525
Russell King781e9892014-04-25 12:55:46 +01003526 ret = request_threaded_irq(host->irq, sdhci_irq, sdhci_thread_irq,
3527 IRQF_SHARED, mmc_hostname(mmc), host);
Mark Brown0fc81ee2012-07-02 14:26:15 +01003528 if (ret) {
3529 pr_err("%s: Failed to request IRQ %d: %d\n",
3530 mmc_hostname(mmc), host->irq, ret);
Pierre Ossman8ef1a142006-06-30 02:22:21 -07003531 goto untasklet;
Mark Brown0fc81ee2012-07-02 14:26:15 +01003532 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08003533
Pierre Ossmand129bce2006-03-24 03:18:17 -08003534#ifdef CONFIG_MMC_DEBUG
3535 sdhci_dumpregs(host);
3536#endif
3537
Adrian Hunter061d17a2016-04-12 14:25:09 +03003538 ret = sdhci_led_register(host);
Mark Brown0fc81ee2012-07-02 14:26:15 +01003539 if (ret) {
3540 pr_err("%s: Failed to register LED device: %d\n",
3541 mmc_hostname(mmc), ret);
Adrian Huntereb5c20d2016-04-12 14:25:08 +03003542 goto unirq;
Mark Brown0fc81ee2012-07-02 14:26:15 +01003543 }
Pierre Ossman2f730fe2008-03-17 10:29:38 +01003544
Pierre Ossman5f25a662006-10-04 02:15:39 -07003545 mmiowb();
3546
Adrian Huntereb5c20d2016-04-12 14:25:08 +03003547 ret = mmc_add_host(mmc);
3548 if (ret)
3549 goto unled;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003550
Girish K Sa3c76eb2011-10-11 11:44:09 +05303551 pr_info("%s: SDHCI controller on %s [%s] using %s\n",
Kay Sieversd1b26862008-11-08 21:37:46 +01003552 mmc_hostname(mmc), host->hw_name, dev_name(mmc_dev(mmc)),
Adrian Huntere57a5f62014-11-04 12:42:46 +02003553 (host->flags & SDHCI_USE_ADMA) ?
3554 (host->flags & SDHCI_USE_64_BIT_DMA) ? "ADMA 64-bit" : "ADMA" :
Richard Röjforsa13abc72009-09-22 16:45:30 -07003555 (host->flags & SDHCI_USE_SDMA) ? "DMA" : "PIO");
Pierre Ossmand129bce2006-03-24 03:18:17 -08003556
Anton Vorontsov7260cf52009-03-17 00:13:48 +03003557 sdhci_enable_card_detection(host);
3558
Pierre Ossmand129bce2006-03-24 03:18:17 -08003559 return 0;
3560
Adrian Huntereb5c20d2016-04-12 14:25:08 +03003561unled:
Adrian Hunter061d17a2016-04-12 14:25:09 +03003562 sdhci_led_unregister(host);
Adrian Huntereb5c20d2016-04-12 14:25:08 +03003563unirq:
Russell King03231f92014-04-25 12:57:12 +01003564 sdhci_do_reset(host, SDHCI_RESET_ALL);
Russell Kingb537f942014-04-25 12:56:01 +01003565 sdhci_writel(host, 0, SDHCI_INT_ENABLE);
3566 sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE);
Pierre Ossman2f730fe2008-03-17 10:29:38 +01003567 free_irq(host->irq, host);
Pierre Ossman8ef1a142006-06-30 02:22:21 -07003568untasklet:
Pierre Ossmand129bce2006-03-24 03:18:17 -08003569 tasklet_kill(&host->finish_tasklet);
Adrian Hunter52f53362016-06-29 16:24:15 +03003570
Adrian Huntereb5c20d2016-04-12 14:25:08 +03003571 if (!IS_ERR(mmc->supply.vqmmc))
3572 regulator_disable(mmc->supply.vqmmc);
Adrian Hunter52f53362016-06-29 16:24:15 +03003573
Adrian Huntereb5c20d2016-04-12 14:25:08 +03003574 if (host->align_buffer)
3575 dma_free_coherent(mmc_dev(mmc), host->align_buffer_sz +
3576 host->adma_table_sz, host->align_buffer,
3577 host->align_addr);
3578 host->adma_table = NULL;
3579 host->align_buffer = NULL;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003580
3581 return ret;
3582}
Adrian Hunter52f53362016-06-29 16:24:15 +03003583EXPORT_SYMBOL_GPL(__sdhci_add_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003584
Adrian Hunter52f53362016-06-29 16:24:15 +03003585int sdhci_add_host(struct sdhci_host *host)
3586{
3587 int ret;
3588
3589 ret = sdhci_setup_host(host);
3590 if (ret)
3591 return ret;
3592
3593 return __sdhci_add_host(host);
3594}
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003595EXPORT_SYMBOL_GPL(sdhci_add_host);
3596
Pierre Ossman1e728592008-04-16 19:13:13 +02003597void sdhci_remove_host(struct sdhci_host *host, int dead)
Pierre Ossmand129bce2006-03-24 03:18:17 -08003598{
Tim Kryger3a48edc2014-06-13 10:13:56 -07003599 struct mmc_host *mmc = host->mmc;
Pierre Ossman1e728592008-04-16 19:13:13 +02003600 unsigned long flags;
3601
3602 if (dead) {
3603 spin_lock_irqsave(&host->lock, flags);
3604
3605 host->flags |= SDHCI_DEVICE_DEAD;
3606
Adrian Hunter5d0d11c2016-06-29 16:24:31 +03003607 if (sdhci_has_requests(host)) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05303608 pr_err("%s: Controller removed during "
Markus Mayer4e743f12014-07-03 13:27:42 -07003609 " transfer!\n", mmc_hostname(mmc));
Adrian Hunter5d0d11c2016-06-29 16:24:31 +03003610 sdhci_error_out_mrqs(host, -ENOMEDIUM);
Pierre Ossman1e728592008-04-16 19:13:13 +02003611 }
3612
3613 spin_unlock_irqrestore(&host->lock, flags);
3614 }
3615
Anton Vorontsov7260cf52009-03-17 00:13:48 +03003616 sdhci_disable_card_detection(host);
3617
Markus Mayer4e743f12014-07-03 13:27:42 -07003618 mmc_remove_host(mmc);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003619
Adrian Hunter061d17a2016-04-12 14:25:09 +03003620 sdhci_led_unregister(host);
Pierre Ossman2f730fe2008-03-17 10:29:38 +01003621
Pierre Ossman1e728592008-04-16 19:13:13 +02003622 if (!dead)
Russell King03231f92014-04-25 12:57:12 +01003623 sdhci_do_reset(host, SDHCI_RESET_ALL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003624
Russell Kingb537f942014-04-25 12:56:01 +01003625 sdhci_writel(host, 0, SDHCI_INT_ENABLE);
3626 sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003627 free_irq(host->irq, host);
3628
3629 del_timer_sync(&host->timer);
Adrian Hunterd7422fb2016-06-29 16:24:33 +03003630 del_timer_sync(&host->data_timer);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003631
Pierre Ossmand129bce2006-03-24 03:18:17 -08003632 tasklet_kill(&host->finish_tasklet);
Pierre Ossman2134a922008-06-28 18:28:51 +02003633
Tim Kryger3a48edc2014-06-13 10:13:56 -07003634 if (!IS_ERR(mmc->supply.vqmmc))
3635 regulator_disable(mmc->supply.vqmmc);
Philip Rakity6231f3d2012-07-23 15:56:23 -07003636
Russell Kingedd63fc2016-01-26 13:39:50 +00003637 if (host->align_buffer)
Russell Kinge66e61c2016-01-26 13:39:55 +00003638 dma_free_coherent(mmc_dev(mmc), host->align_buffer_sz +
3639 host->adma_table_sz, host->align_buffer,
3640 host->align_addr);
Pierre Ossman2134a922008-06-28 18:28:51 +02003641
Adrian Hunter4efaa6f2014-11-04 12:42:39 +02003642 host->adma_table = NULL;
Pierre Ossman2134a922008-06-28 18:28:51 +02003643 host->align_buffer = NULL;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003644}
3645
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003646EXPORT_SYMBOL_GPL(sdhci_remove_host);
3647
3648void sdhci_free_host(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -08003649{
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003650 mmc_free_host(host->mmc);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003651}
3652
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003653EXPORT_SYMBOL_GPL(sdhci_free_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003654
3655/*****************************************************************************\
3656 * *
3657 * Driver init/exit *
3658 * *
3659\*****************************************************************************/
3660
3661static int __init sdhci_drv_init(void)
3662{
Girish K Sa3c76eb2011-10-11 11:44:09 +05303663 pr_info(DRIVER_NAME
Pierre Ossman52fbf9c2007-02-09 08:23:41 +01003664 ": Secure Digital Host Controller Interface driver\n");
Girish K Sa3c76eb2011-10-11 11:44:09 +05303665 pr_info(DRIVER_NAME ": Copyright(c) Pierre Ossman\n");
Pierre Ossmand129bce2006-03-24 03:18:17 -08003666
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003667 return 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003668}
3669
3670static void __exit sdhci_drv_exit(void)
3671{
Pierre Ossmand129bce2006-03-24 03:18:17 -08003672}
3673
3674module_init(sdhci_drv_init);
3675module_exit(sdhci_drv_exit);
3676
Pierre Ossmandf673b22006-06-30 02:22:31 -07003677module_param(debug_quirks, uint, 0444);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003678module_param(debug_quirks2, uint, 0444);
Pierre Ossman67435272006-06-30 02:22:31 -07003679
Pierre Ossman32710e82009-04-08 20:14:54 +02003680MODULE_AUTHOR("Pierre Ossman <pierre@ossman.eu>");
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003681MODULE_DESCRIPTION("Secure Digital Host Controller Interface core driver");
Pierre Ossmand129bce2006-03-24 03:18:17 -08003682MODULE_LICENSE("GPL");
Pierre Ossman67435272006-06-30 02:22:31 -07003683
Pierre Ossmandf673b22006-06-30 02:22:31 -07003684MODULE_PARM_DESC(debug_quirks, "Force certain quirks.");
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003685MODULE_PARM_DESC(debug_quirks2, "Force certain other quirks.");