blob: c9456bd603a97f8aa37701dbeeb90143c7139d21 [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
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300112static void sdhci_set_card_detection(struct sdhci_host *host, bool enable)
113{
Russell King5b4f1f62014-04-25 12:57:02 +0100114 u32 present;
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300115
Adrian Hunterc79396c2011-12-27 15:48:42 +0200116 if ((host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION) ||
Jaehoon Chung860951c2016-06-21 10:13:26 +0900117 !mmc_card_is_removable(host->mmc))
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300118 return;
119
Russell King5b4f1f62014-04-25 12:57:02 +0100120 if (enable) {
121 present = sdhci_readl(host, SDHCI_PRESENT_STATE) &
122 SDHCI_CARD_PRESENT;
Shawn Guod25928d2011-06-21 22:41:48 +0800123
Russell King5b4f1f62014-04-25 12:57:02 +0100124 host->ier |= present ? SDHCI_INT_CARD_REMOVE :
125 SDHCI_INT_CARD_INSERT;
126 } else {
127 host->ier &= ~(SDHCI_INT_CARD_REMOVE | SDHCI_INT_CARD_INSERT);
128 }
Russell Kingb537f942014-04-25 12:56:01 +0100129
130 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
131 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300132}
133
134static void sdhci_enable_card_detection(struct sdhci_host *host)
135{
136 sdhci_set_card_detection(host, true);
137}
138
139static void sdhci_disable_card_detection(struct sdhci_host *host)
140{
141 sdhci_set_card_detection(host, false);
142}
143
Ulf Hansson02d0b682016-04-11 15:32:41 +0200144static void sdhci_runtime_pm_bus_on(struct sdhci_host *host)
145{
146 if (host->bus_on)
147 return;
148 host->bus_on = true;
149 pm_runtime_get_noresume(host->mmc->parent);
150}
151
152static void sdhci_runtime_pm_bus_off(struct sdhci_host *host)
153{
154 if (!host->bus_on)
155 return;
156 host->bus_on = false;
157 pm_runtime_put_noidle(host->mmc->parent);
158}
159
Russell King03231f92014-04-25 12:57:12 +0100160void sdhci_reset(struct sdhci_host *host, u8 mask)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800161{
Pierre Ossmane16514d82006-06-30 02:22:24 -0700162 unsigned long timeout;
Philip Rakity393c1a32011-01-21 11:26:40 -0800163
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300164 sdhci_writeb(host, mask, SDHCI_SOFTWARE_RESET);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800165
Adrian Hunterf0710a52013-05-06 12:17:32 +0300166 if (mask & SDHCI_RESET_ALL) {
Pierre Ossmand129bce2006-03-24 03:18:17 -0800167 host->clock = 0;
Adrian Hunterf0710a52013-05-06 12:17:32 +0300168 /* Reset-all turns off SD Bus Power */
169 if (host->quirks2 & SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON)
170 sdhci_runtime_pm_bus_off(host);
171 }
Pierre Ossmand129bce2006-03-24 03:18:17 -0800172
Pierre Ossmane16514d82006-06-30 02:22:24 -0700173 /* Wait max 100 ms */
174 timeout = 100;
175
176 /* hw clears the bit when it's done */
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300177 while (sdhci_readb(host, SDHCI_SOFTWARE_RESET) & mask) {
Pierre Ossmane16514d82006-06-30 02:22:24 -0700178 if (timeout == 0) {
Girish K Sa3c76eb2011-10-11 11:44:09 +0530179 pr_err("%s: Reset 0x%x never completed.\n",
Pierre Ossmane16514d82006-06-30 02:22:24 -0700180 mmc_hostname(host->mmc), (int)mask);
181 sdhci_dumpregs(host);
182 return;
183 }
184 timeout--;
185 mdelay(1);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800186 }
Russell King03231f92014-04-25 12:57:12 +0100187}
188EXPORT_SYMBOL_GPL(sdhci_reset);
Anton Vorontsov063a9db2009-03-17 00:14:02 +0300189
Russell King03231f92014-04-25 12:57:12 +0100190static void sdhci_do_reset(struct sdhci_host *host, u8 mask)
191{
192 if (host->quirks & SDHCI_QUIRK_NO_CARD_NO_RESET) {
Adrian Hunterd3940f22016-06-29 16:24:14 +0300193 struct mmc_host *mmc = host->mmc;
194
195 if (!mmc->ops->get_cd(mmc))
Russell King03231f92014-04-25 12:57:12 +0100196 return;
197 }
198
199 host->ops->reset(host, mask);
Philip Rakity393c1a32011-01-21 11:26:40 -0800200
Russell Kingda91a8f2014-04-25 13:00:12 +0100201 if (mask & SDHCI_RESET_ALL) {
202 if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
203 if (host->ops->enable_dma)
204 host->ops->enable_dma(host);
205 }
206
207 /* Resetting the controller clears many */
208 host->preset_enabled = false;
Shaohui Xie3abc1e802011-12-29 16:33:00 +0800209 }
Pierre Ossmand129bce2006-03-24 03:18:17 -0800210}
211
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -0800212static void sdhci_init(struct sdhci_host *host, int soft)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800213{
Adrian Hunterd3940f22016-06-29 16:24:14 +0300214 struct mmc_host *mmc = host->mmc;
215
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -0800216 if (soft)
Russell King03231f92014-04-25 12:57:12 +0100217 sdhci_do_reset(host, SDHCI_RESET_CMD|SDHCI_RESET_DATA);
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -0800218 else
Russell King03231f92014-04-25 12:57:12 +0100219 sdhci_do_reset(host, SDHCI_RESET_ALL);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800220
Russell Kingb537f942014-04-25 12:56:01 +0100221 host->ier = SDHCI_INT_BUS_POWER | SDHCI_INT_DATA_END_BIT |
222 SDHCI_INT_DATA_CRC | SDHCI_INT_DATA_TIMEOUT |
223 SDHCI_INT_INDEX | SDHCI_INT_END_BIT | SDHCI_INT_CRC |
224 SDHCI_INT_TIMEOUT | SDHCI_INT_DATA_END |
225 SDHCI_INT_RESPONSE;
226
227 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
228 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -0800229
230 if (soft) {
231 /* force clock reconfiguration */
232 host->clock = 0;
Adrian Hunterd3940f22016-06-29 16:24:14 +0300233 mmc->ops->set_ios(mmc, &mmc->ios);
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -0800234 }
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300235}
Pierre Ossmand129bce2006-03-24 03:18:17 -0800236
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300237static void sdhci_reinit(struct sdhci_host *host)
238{
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -0800239 sdhci_init(host, 0);
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300240 sdhci_enable_card_detection(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800241}
242
Adrian Hunter061d17a2016-04-12 14:25:09 +0300243static void __sdhci_led_activate(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800244{
245 u8 ctrl;
246
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300247 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800248 ctrl |= SDHCI_CTRL_LED;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300249 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800250}
251
Adrian Hunter061d17a2016-04-12 14:25:09 +0300252static void __sdhci_led_deactivate(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
Masahiro Yamada4f782302016-04-14 13:19:39 +0900261#if IS_REACHABLE(CONFIG_LEDS_CLASS)
Pierre Ossman2f730fe2008-03-17 10:29:38 +0100262static void sdhci_led_control(struct led_classdev *led,
Adrian Hunter061d17a2016-04-12 14:25:09 +0300263 enum led_brightness brightness)
Pierre Ossman2f730fe2008-03-17 10:29:38 +0100264{
265 struct sdhci_host *host = container_of(led, struct sdhci_host, led);
266 unsigned long flags;
267
268 spin_lock_irqsave(&host->lock, flags);
269
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300270 if (host->runtime_suspended)
271 goto out;
272
Pierre Ossman2f730fe2008-03-17 10:29:38 +0100273 if (brightness == LED_OFF)
Adrian Hunter061d17a2016-04-12 14:25:09 +0300274 __sdhci_led_deactivate(host);
Pierre Ossman2f730fe2008-03-17 10:29:38 +0100275 else
Adrian Hunter061d17a2016-04-12 14:25:09 +0300276 __sdhci_led_activate(host);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300277out:
Pierre Ossman2f730fe2008-03-17 10:29:38 +0100278 spin_unlock_irqrestore(&host->lock, flags);
279}
Adrian Hunter061d17a2016-04-12 14:25:09 +0300280
281static int sdhci_led_register(struct sdhci_host *host)
282{
283 struct mmc_host *mmc = host->mmc;
284
285 snprintf(host->led_name, sizeof(host->led_name),
286 "%s::", mmc_hostname(mmc));
287
288 host->led.name = host->led_name;
289 host->led.brightness = LED_OFF;
290 host->led.default_trigger = mmc_hostname(mmc);
291 host->led.brightness_set = sdhci_led_control;
292
293 return led_classdev_register(mmc_dev(mmc), &host->led);
294}
295
296static void sdhci_led_unregister(struct sdhci_host *host)
297{
298 led_classdev_unregister(&host->led);
299}
300
301static inline void sdhci_led_activate(struct sdhci_host *host)
302{
303}
304
305static inline void sdhci_led_deactivate(struct sdhci_host *host)
306{
307}
308
309#else
310
311static inline int sdhci_led_register(struct sdhci_host *host)
312{
313 return 0;
314}
315
316static inline void sdhci_led_unregister(struct sdhci_host *host)
317{
318}
319
320static inline void sdhci_led_activate(struct sdhci_host *host)
321{
322 __sdhci_led_activate(host);
323}
324
325static inline void sdhci_led_deactivate(struct sdhci_host *host)
326{
327 __sdhci_led_deactivate(host);
328}
329
Pierre Ossman2f730fe2008-03-17 10:29:38 +0100330#endif
331
Pierre Ossmand129bce2006-03-24 03:18:17 -0800332/*****************************************************************************\
333 * *
334 * Core functions *
335 * *
336\*****************************************************************************/
337
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100338static void sdhci_read_block_pio(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800339{
Pierre Ossman76591502008-07-21 00:32:11 +0200340 unsigned long flags;
341 size_t blksize, len, chunk;
Steven Noonan7244b852008-10-01 01:50:25 -0700342 u32 uninitialized_var(scratch);
Pierre Ossman76591502008-07-21 00:32:11 +0200343 u8 *buf;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800344
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100345 DBG("PIO reading\n");
Pierre Ossmand129bce2006-03-24 03:18:17 -0800346
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100347 blksize = host->data->blksz;
Pierre Ossman76591502008-07-21 00:32:11 +0200348 chunk = 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800349
Pierre Ossman76591502008-07-21 00:32:11 +0200350 local_irq_save(flags);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800351
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100352 while (blksize) {
Fabio Estevambf3a35a2015-05-09 18:44:51 -0300353 BUG_ON(!sg_miter_next(&host->sg_miter));
Pierre Ossmand129bce2006-03-24 03:18:17 -0800354
Pierre Ossman76591502008-07-21 00:32:11 +0200355 len = min(host->sg_miter.length, blksize);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800356
Pierre Ossman76591502008-07-21 00:32:11 +0200357 blksize -= len;
358 host->sg_miter.consumed = len;
Alex Dubov14d836e2007-04-13 19:04:38 +0200359
Pierre Ossman76591502008-07-21 00:32:11 +0200360 buf = host->sg_miter.addr;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800361
Pierre Ossman76591502008-07-21 00:32:11 +0200362 while (len) {
363 if (chunk == 0) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300364 scratch = sdhci_readl(host, SDHCI_BUFFER);
Pierre Ossman76591502008-07-21 00:32:11 +0200365 chunk = 4;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800366 }
Pierre Ossman76591502008-07-21 00:32:11 +0200367
368 *buf = scratch & 0xFF;
369
370 buf++;
371 scratch >>= 8;
372 chunk--;
373 len--;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800374 }
375 }
Pierre Ossman76591502008-07-21 00:32:11 +0200376
377 sg_miter_stop(&host->sg_miter);
378
379 local_irq_restore(flags);
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100380}
Pierre Ossmand129bce2006-03-24 03:18:17 -0800381
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100382static void sdhci_write_block_pio(struct sdhci_host *host)
383{
Pierre Ossman76591502008-07-21 00:32:11 +0200384 unsigned long flags;
385 size_t blksize, len, chunk;
386 u32 scratch;
387 u8 *buf;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100388
389 DBG("PIO writing\n");
390
391 blksize = host->data->blksz;
Pierre Ossman76591502008-07-21 00:32:11 +0200392 chunk = 0;
393 scratch = 0;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100394
Pierre Ossman76591502008-07-21 00:32:11 +0200395 local_irq_save(flags);
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100396
397 while (blksize) {
Fabio Estevambf3a35a2015-05-09 18:44:51 -0300398 BUG_ON(!sg_miter_next(&host->sg_miter));
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100399
Pierre Ossman76591502008-07-21 00:32:11 +0200400 len = min(host->sg_miter.length, blksize);
Alex Dubov14d836e2007-04-13 19:04:38 +0200401
Pierre Ossman76591502008-07-21 00:32:11 +0200402 blksize -= len;
403 host->sg_miter.consumed = len;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100404
Pierre Ossman76591502008-07-21 00:32:11 +0200405 buf = host->sg_miter.addr;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100406
Pierre Ossman76591502008-07-21 00:32:11 +0200407 while (len) {
408 scratch |= (u32)*buf << (chunk * 8);
409
410 buf++;
411 chunk++;
412 len--;
413
414 if ((chunk == 4) || ((len == 0) && (blksize == 0))) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300415 sdhci_writel(host, scratch, SDHCI_BUFFER);
Pierre Ossman76591502008-07-21 00:32:11 +0200416 chunk = 0;
417 scratch = 0;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100418 }
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100419 }
420 }
Pierre Ossman76591502008-07-21 00:32:11 +0200421
422 sg_miter_stop(&host->sg_miter);
423
424 local_irq_restore(flags);
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100425}
426
427static void sdhci_transfer_pio(struct sdhci_host *host)
428{
429 u32 mask;
430
Pierre Ossman76591502008-07-21 00:32:11 +0200431 if (host->blocks == 0)
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100432 return;
433
434 if (host->data->flags & MMC_DATA_READ)
435 mask = SDHCI_DATA_AVAILABLE;
436 else
437 mask = SDHCI_SPACE_AVAILABLE;
438
Pierre Ossman4a3cba32008-07-29 00:11:16 +0200439 /*
440 * Some controllers (JMicron JMB38x) mess up the buffer bits
441 * for transfers < 4 bytes. As long as it is just one block,
442 * we can ignore the bits.
443 */
444 if ((host->quirks & SDHCI_QUIRK_BROKEN_SMALL_PIO) &&
445 (host->data->blocks == 1))
446 mask = ~0;
447
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300448 while (sdhci_readl(host, SDHCI_PRESENT_STATE) & mask) {
Anton Vorontsov3e3bf202009-03-17 00:14:00 +0300449 if (host->quirks & SDHCI_QUIRK_PIO_NEEDS_DELAY)
450 udelay(100);
451
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100452 if (host->data->flags & MMC_DATA_READ)
453 sdhci_read_block_pio(host);
454 else
455 sdhci_write_block_pio(host);
456
Pierre Ossman76591502008-07-21 00:32:11 +0200457 host->blocks--;
458 if (host->blocks == 0)
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100459 break;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100460 }
461
462 DBG("PIO transfer complete.\n");
Pierre Ossmand129bce2006-03-24 03:18:17 -0800463}
464
Russell King48857d92016-01-26 13:40:16 +0000465static int sdhci_pre_dma_transfer(struct sdhci_host *host,
Russell Kingc0999b72016-01-26 13:40:27 +0000466 struct mmc_data *data, int cookie)
Russell King48857d92016-01-26 13:40:16 +0000467{
468 int sg_count;
469
Russell King94538e52016-01-26 13:40:37 +0000470 /*
471 * If the data buffers are already mapped, return the previous
472 * dma_map_sg() result.
473 */
474 if (data->host_cookie == COOKIE_PRE_MAPPED)
Russell King48857d92016-01-26 13:40:16 +0000475 return data->sg_count;
Russell King48857d92016-01-26 13:40:16 +0000476
477 sg_count = dma_map_sg(mmc_dev(host->mmc), data->sg, data->sg_len,
478 data->flags & MMC_DATA_WRITE ?
479 DMA_TO_DEVICE : DMA_FROM_DEVICE);
480
481 if (sg_count == 0)
482 return -ENOSPC;
483
484 data->sg_count = sg_count;
Russell Kingc0999b72016-01-26 13:40:27 +0000485 data->host_cookie = cookie;
Russell King48857d92016-01-26 13:40:16 +0000486
487 return sg_count;
488}
489
Pierre Ossman2134a922008-06-28 18:28:51 +0200490static char *sdhci_kmap_atomic(struct scatterlist *sg, unsigned long *flags)
491{
492 local_irq_save(*flags);
Cong Wang482fce92011-11-27 13:27:00 +0800493 return kmap_atomic(sg_page(sg)) + sg->offset;
Pierre Ossman2134a922008-06-28 18:28:51 +0200494}
495
496static void sdhci_kunmap_atomic(void *buffer, unsigned long *flags)
497{
Cong Wang482fce92011-11-27 13:27:00 +0800498 kunmap_atomic(buffer);
Pierre Ossman2134a922008-06-28 18:28:51 +0200499 local_irq_restore(*flags);
500}
501
Adrian Huntere57a5f62014-11-04 12:42:46 +0200502static void sdhci_adma_write_desc(struct sdhci_host *host, void *desc,
503 dma_addr_t addr, int len, unsigned cmd)
Ben Dooks118cd172010-03-05 13:43:26 -0800504{
Adrian Huntere57a5f62014-11-04 12:42:46 +0200505 struct sdhci_adma2_64_desc *dma_desc = desc;
Ben Dooks118cd172010-03-05 13:43:26 -0800506
Adrian Huntere57a5f62014-11-04 12:42:46 +0200507 /* 32-bit and 64-bit descriptors have these members in same position */
Adrian Hunter05452302014-11-04 12:42:45 +0200508 dma_desc->cmd = cpu_to_le16(cmd);
509 dma_desc->len = cpu_to_le16(len);
Adrian Huntere57a5f62014-11-04 12:42:46 +0200510 dma_desc->addr_lo = cpu_to_le32((u32)addr);
511
512 if (host->flags & SDHCI_USE_64_BIT_DMA)
513 dma_desc->addr_hi = cpu_to_le32((u64)addr >> 32);
Ben Dooks118cd172010-03-05 13:43:26 -0800514}
515
Adrian Hunterb5ffa672014-11-04 12:42:40 +0200516static void sdhci_adma_mark_end(void *desc)
517{
Adrian Huntere57a5f62014-11-04 12:42:46 +0200518 struct sdhci_adma2_64_desc *dma_desc = desc;
Adrian Hunterb5ffa672014-11-04 12:42:40 +0200519
Adrian Huntere57a5f62014-11-04 12:42:46 +0200520 /* 32-bit and 64-bit descriptors have 'cmd' in same position */
Adrian Hunter05452302014-11-04 12:42:45 +0200521 dma_desc->cmd |= cpu_to_le16(ADMA2_END);
Adrian Hunterb5ffa672014-11-04 12:42:40 +0200522}
523
Russell King60c64762016-01-26 13:40:22 +0000524static void sdhci_adma_table_pre(struct sdhci_host *host,
525 struct mmc_data *data, int sg_count)
Pierre Ossman2134a922008-06-28 18:28:51 +0200526{
Pierre Ossman2134a922008-06-28 18:28:51 +0200527 struct scatterlist *sg;
Pierre Ossman2134a922008-06-28 18:28:51 +0200528 unsigned long flags;
Russell Kingacc3ad12016-01-26 13:40:00 +0000529 dma_addr_t addr, align_addr;
530 void *desc, *align;
531 char *buffer;
532 int len, offset, i;
Pierre Ossman2134a922008-06-28 18:28:51 +0200533
534 /*
535 * The spec does not specify endianness of descriptor table.
536 * We currently guess that it is LE.
537 */
538
Russell King60c64762016-01-26 13:40:22 +0000539 host->sg_count = sg_count;
Pierre Ossman2134a922008-06-28 18:28:51 +0200540
Adrian Hunter4efaa6f2014-11-04 12:42:39 +0200541 desc = host->adma_table;
Pierre Ossman2134a922008-06-28 18:28:51 +0200542 align = host->align_buffer;
543
544 align_addr = host->align_addr;
545
546 for_each_sg(data->sg, sg, host->sg_count, i) {
547 addr = sg_dma_address(sg);
548 len = sg_dma_len(sg);
549
550 /*
Russell Kingacc3ad12016-01-26 13:40:00 +0000551 * The SDHCI specification states that ADMA addresses must
552 * be 32-bit aligned. If they aren't, then we use a bounce
553 * buffer for the (up to three) bytes that screw up the
Pierre Ossman2134a922008-06-28 18:28:51 +0200554 * alignment.
555 */
Adrian Hunter04a5ae62015-11-26 14:00:49 +0200556 offset = (SDHCI_ADMA2_ALIGN - (addr & SDHCI_ADMA2_MASK)) &
557 SDHCI_ADMA2_MASK;
Pierre Ossman2134a922008-06-28 18:28:51 +0200558 if (offset) {
559 if (data->flags & MMC_DATA_WRITE) {
560 buffer = sdhci_kmap_atomic(sg, &flags);
561 memcpy(align, buffer, offset);
562 sdhci_kunmap_atomic(buffer, &flags);
563 }
564
Ben Dooks118cd172010-03-05 13:43:26 -0800565 /* tran, valid */
Adrian Huntere57a5f62014-11-04 12:42:46 +0200566 sdhci_adma_write_desc(host, desc, align_addr, offset,
Adrian Hunter739d46d2014-11-04 12:42:44 +0200567 ADMA2_TRAN_VALID);
Pierre Ossman2134a922008-06-28 18:28:51 +0200568
569 BUG_ON(offset > 65536);
570
Adrian Hunter04a5ae62015-11-26 14:00:49 +0200571 align += SDHCI_ADMA2_ALIGN;
572 align_addr += SDHCI_ADMA2_ALIGN;
Pierre Ossman2134a922008-06-28 18:28:51 +0200573
Adrian Hunter76fe3792014-11-04 12:42:42 +0200574 desc += host->desc_sz;
Pierre Ossman2134a922008-06-28 18:28:51 +0200575
576 addr += offset;
577 len -= offset;
578 }
579
Pierre Ossman2134a922008-06-28 18:28:51 +0200580 BUG_ON(len > 65536);
581
Adrian Hunter347ea322015-11-26 14:00:48 +0200582 if (len) {
583 /* tran, valid */
584 sdhci_adma_write_desc(host, desc, addr, len,
585 ADMA2_TRAN_VALID);
586 desc += host->desc_sz;
587 }
Pierre Ossman2134a922008-06-28 18:28:51 +0200588
589 /*
590 * If this triggers then we have a calculation bug
591 * somewhere. :/
592 */
Adrian Hunter76fe3792014-11-04 12:42:42 +0200593 WARN_ON((desc - host->adma_table) >= host->adma_table_sz);
Pierre Ossman2134a922008-06-28 18:28:51 +0200594 }
595
Thomas Abraham70764a92010-05-26 14:42:04 -0700596 if (host->quirks & SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC) {
Russell Kingacc3ad12016-01-26 13:40:00 +0000597 /* Mark the last descriptor as the terminating descriptor */
Adrian Hunter4efaa6f2014-11-04 12:42:39 +0200598 if (desc != host->adma_table) {
Adrian Hunter76fe3792014-11-04 12:42:42 +0200599 desc -= host->desc_sz;
Adrian Hunterb5ffa672014-11-04 12:42:40 +0200600 sdhci_adma_mark_end(desc);
Thomas Abraham70764a92010-05-26 14:42:04 -0700601 }
602 } else {
Russell Kingacc3ad12016-01-26 13:40:00 +0000603 /* Add a terminating entry - nop, end, valid */
Adrian Huntere57a5f62014-11-04 12:42:46 +0200604 sdhci_adma_write_desc(host, desc, 0, 0, ADMA2_NOP_END_VALID);
Thomas Abraham70764a92010-05-26 14:42:04 -0700605 }
Pierre Ossman2134a922008-06-28 18:28:51 +0200606}
607
608static void sdhci_adma_table_post(struct sdhci_host *host,
609 struct mmc_data *data)
610{
Pierre Ossman2134a922008-06-28 18:28:51 +0200611 struct scatterlist *sg;
612 int i, size;
Adrian Hunter1c3d5f62014-11-04 12:42:41 +0200613 void *align;
Pierre Ossman2134a922008-06-28 18:28:51 +0200614 char *buffer;
615 unsigned long flags;
616
Russell King47fa9612016-01-26 13:40:06 +0000617 if (data->flags & MMC_DATA_READ) {
618 bool has_unaligned = false;
Russell Kingde0b65a2014-04-25 12:58:29 +0100619
Russell King47fa9612016-01-26 13:40:06 +0000620 /* Do a quick scan of the SG list for any unaligned mappings */
621 for_each_sg(data->sg, sg, host->sg_count, i)
Adrian Hunter04a5ae62015-11-26 14:00:49 +0200622 if (sg_dma_address(sg) & SDHCI_ADMA2_MASK) {
Russell King47fa9612016-01-26 13:40:06 +0000623 has_unaligned = true;
624 break;
625 }
Pierre Ossman2134a922008-06-28 18:28:51 +0200626
Russell King47fa9612016-01-26 13:40:06 +0000627 if (has_unaligned) {
628 dma_sync_sg_for_cpu(mmc_dev(host->mmc), data->sg,
Russell Kingf55c98f2016-01-26 13:40:11 +0000629 data->sg_len, DMA_FROM_DEVICE);
Pierre Ossman2134a922008-06-28 18:28:51 +0200630
Russell King47fa9612016-01-26 13:40:06 +0000631 align = host->align_buffer;
632
633 for_each_sg(data->sg, sg, host->sg_count, i) {
634 if (sg_dma_address(sg) & SDHCI_ADMA2_MASK) {
635 size = SDHCI_ADMA2_ALIGN -
636 (sg_dma_address(sg) & SDHCI_ADMA2_MASK);
637
638 buffer = sdhci_kmap_atomic(sg, &flags);
639 memcpy(buffer, align, size);
640 sdhci_kunmap_atomic(buffer, &flags);
641
642 align += SDHCI_ADMA2_ALIGN;
643 }
Pierre Ossman2134a922008-06-28 18:28:51 +0200644 }
645 }
646 }
Pierre Ossman2134a922008-06-28 18:28:51 +0200647}
648
Andrei Warkentina3c77782011-04-11 16:13:42 -0500649static u8 sdhci_calc_timeout(struct sdhci_host *host, struct mmc_command *cmd)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800650{
Pierre Ossman1c8cde92006-06-30 02:22:25 -0700651 u8 count;
Andrei Warkentina3c77782011-04-11 16:13:42 -0500652 struct mmc_data *data = cmd->data;
Pierre Ossman1c8cde92006-06-30 02:22:25 -0700653 unsigned target_timeout, current_timeout;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800654
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200655 /*
656 * If the host controller provides us with an incorrect timeout
657 * value, just skip the check and use 0xE. The hardware may take
658 * longer to time out, but that's much better than having a too-short
659 * timeout value.
660 */
Pierre Ossman11a2f1b2009-06-21 20:59:33 +0200661 if (host->quirks & SDHCI_QUIRK_BROKEN_TIMEOUT_VAL)
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200662 return 0xE;
Pierre Ossmane538fbe2007-08-12 16:46:32 +0200663
Andrei Warkentina3c77782011-04-11 16:13:42 -0500664 /* Unspecified timeout, assume max */
Ulf Hansson1d4d7742014-01-08 15:06:08 +0100665 if (!data && !cmd->busy_timeout)
Andrei Warkentina3c77782011-04-11 16:13:42 -0500666 return 0xE;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800667
Andrei Warkentina3c77782011-04-11 16:13:42 -0500668 /* timeout in us */
669 if (!data)
Ulf Hansson1d4d7742014-01-08 15:06:08 +0100670 target_timeout = cmd->busy_timeout * 1000;
Andy Shevchenko78a2ca22011-08-03 18:35:59 +0300671 else {
Russell Kingfafcfda2016-01-26 13:40:58 +0000672 target_timeout = DIV_ROUND_UP(data->timeout_ns, 1000);
Russell King7f055382016-01-26 13:41:04 +0000673 if (host->clock && data->timeout_clks) {
674 unsigned long long val;
675
676 /*
677 * data->timeout_clks is in units of clock cycles.
678 * host->clock is in Hz. target_timeout is in us.
679 * Hence, us = 1000000 * cycles / Hz. Round up.
680 */
681 val = 1000000 * data->timeout_clks;
682 if (do_div(val, host->clock))
683 target_timeout++;
684 target_timeout += val;
685 }
Andy Shevchenko78a2ca22011-08-03 18:35:59 +0300686 }
Anton Vorontsov81b39802009-09-22 16:45:13 -0700687
Pierre Ossman1c8cde92006-06-30 02:22:25 -0700688 /*
689 * Figure out needed cycles.
690 * We do this in steps in order to fit inside a 32 bit int.
691 * The first step is the minimum timeout, which will have a
692 * minimum resolution of 6 bits:
693 * (1) 2^13*1000 > 2^22,
694 * (2) host->timeout_clk < 2^16
695 * =>
696 * (1) / (2) > 2^6
697 */
698 count = 0;
699 current_timeout = (1 << 13) * 1000 / host->timeout_clk;
700 while (current_timeout < target_timeout) {
701 count++;
702 current_timeout <<= 1;
703 if (count >= 0xF)
704 break;
705 }
706
707 if (count >= 0xF) {
Chris Ball09eeff52012-06-01 10:39:45 -0400708 DBG("%s: Too large timeout 0x%x requested for CMD%d!\n",
709 mmc_hostname(host->mmc), count, cmd->opcode);
Pierre Ossman1c8cde92006-06-30 02:22:25 -0700710 count = 0xE;
711 }
712
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200713 return count;
714}
715
Anton Vorontsov6aa943a2009-03-17 00:13:50 +0300716static void sdhci_set_transfer_irqs(struct sdhci_host *host)
717{
718 u32 pio_irqs = SDHCI_INT_DATA_AVAIL | SDHCI_INT_SPACE_AVAIL;
719 u32 dma_irqs = SDHCI_INT_DMA_END | SDHCI_INT_ADMA_ERROR;
720
721 if (host->flags & SDHCI_REQ_USE_DMA)
Russell Kingb537f942014-04-25 12:56:01 +0100722 host->ier = (host->ier & ~pio_irqs) | dma_irqs;
Anton Vorontsov6aa943a2009-03-17 00:13:50 +0300723 else
Russell Kingb537f942014-04-25 12:56:01 +0100724 host->ier = (host->ier & ~dma_irqs) | pio_irqs;
725
726 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
727 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Anton Vorontsov6aa943a2009-03-17 00:13:50 +0300728}
729
Aisheng Dongb45e6682014-08-27 15:26:29 +0800730static void sdhci_set_timeout(struct sdhci_host *host, struct mmc_command *cmd)
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200731{
732 u8 count;
Aisheng Dongb45e6682014-08-27 15:26:29 +0800733
734 if (host->ops->set_timeout) {
735 host->ops->set_timeout(host, cmd);
736 } else {
737 count = sdhci_calc_timeout(host, cmd);
738 sdhci_writeb(host, count, SDHCI_TIMEOUT_CONTROL);
739 }
740}
741
742static void sdhci_prepare_data(struct sdhci_host *host, struct mmc_command *cmd)
743{
Pierre Ossman2134a922008-06-28 18:28:51 +0200744 u8 ctrl;
Andrei Warkentina3c77782011-04-11 16:13:42 -0500745 struct mmc_data *data = cmd->data;
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200746
747 WARN_ON(host->data);
748
Aisheng Dongb45e6682014-08-27 15:26:29 +0800749 if (data || (cmd->flags & MMC_RSP_BUSY))
750 sdhci_set_timeout(host, cmd);
Andrei Warkentina3c77782011-04-11 16:13:42 -0500751
752 if (!data)
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200753 return;
754
755 /* Sanity checks */
756 BUG_ON(data->blksz * data->blocks > 524288);
757 BUG_ON(data->blksz > host->mmc->max_blk_size);
758 BUG_ON(data->blocks > 65535);
759
760 host->data = data;
761 host->data_early = 0;
Mikko Vinnif6a03cb2011-04-12 09:36:18 -0400762 host->data->bytes_xfered = 0;
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200763
Russell Kingfce14422016-01-26 13:41:20 +0000764 if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
Pierre Ossman2134a922008-06-28 18:28:51 +0200765 struct scatterlist *sg;
Russell Kingdf953922016-01-26 13:41:14 +0000766 unsigned int length_mask, offset_mask;
Russell Kinga0eaf0f2016-01-26 13:41:09 +0000767 int i;
Pierre Ossman2134a922008-06-28 18:28:51 +0200768
Russell Kingfce14422016-01-26 13:41:20 +0000769 host->flags |= SDHCI_REQ_USE_DMA;
770
771 /*
772 * FIXME: This doesn't account for merging when mapping the
773 * scatterlist.
774 *
775 * The assumption here being that alignment and lengths are
776 * the same after DMA mapping to device address space.
777 */
Russell Kinga0eaf0f2016-01-26 13:41:09 +0000778 length_mask = 0;
Russell Kingdf953922016-01-26 13:41:14 +0000779 offset_mask = 0;
Pierre Ossman2134a922008-06-28 18:28:51 +0200780 if (host->flags & SDHCI_USE_ADMA) {
Russell Kingdf953922016-01-26 13:41:14 +0000781 if (host->quirks & SDHCI_QUIRK_32BIT_ADMA_SIZE) {
Russell Kinga0eaf0f2016-01-26 13:41:09 +0000782 length_mask = 3;
Russell Kingdf953922016-01-26 13:41:14 +0000783 /*
784 * As we use up to 3 byte chunks to work
785 * around alignment problems, we need to
786 * check the offset as well.
787 */
788 offset_mask = 3;
789 }
Pierre Ossman2134a922008-06-28 18:28:51 +0200790 } else {
791 if (host->quirks & SDHCI_QUIRK_32BIT_DMA_SIZE)
Russell Kinga0eaf0f2016-01-26 13:41:09 +0000792 length_mask = 3;
Russell Kingdf953922016-01-26 13:41:14 +0000793 if (host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR)
794 offset_mask = 3;
Pierre Ossman2134a922008-06-28 18:28:51 +0200795 }
796
Russell Kingdf953922016-01-26 13:41:14 +0000797 if (unlikely(length_mask | offset_mask)) {
Pierre Ossman2134a922008-06-28 18:28:51 +0200798 for_each_sg(data->sg, sg, data->sg_len, i) {
Russell Kinga0eaf0f2016-01-26 13:41:09 +0000799 if (sg->length & length_mask) {
Marek Vasut2e4456f2015-11-18 10:47:02 +0100800 DBG("Reverting to PIO because of transfer size (%d)\n",
Russell Kinga0eaf0f2016-01-26 13:41:09 +0000801 sg->length);
Pierre Ossman2134a922008-06-28 18:28:51 +0200802 host->flags &= ~SDHCI_REQ_USE_DMA;
803 break;
804 }
Russell Kinga0eaf0f2016-01-26 13:41:09 +0000805 if (sg->offset & offset_mask) {
Marek Vasut2e4456f2015-11-18 10:47:02 +0100806 DBG("Reverting to PIO because of bad alignment\n");
Pierre Ossman2134a922008-06-28 18:28:51 +0200807 host->flags &= ~SDHCI_REQ_USE_DMA;
808 break;
809 }
810 }
811 }
812 }
813
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200814 if (host->flags & SDHCI_REQ_USE_DMA) {
Russell Kingc0999b72016-01-26 13:40:27 +0000815 int sg_cnt = sdhci_pre_dma_transfer(host, data, COOKIE_MAPPED);
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200816
Russell King60c64762016-01-26 13:40:22 +0000817 if (sg_cnt <= 0) {
818 /*
819 * This only happens when someone fed
820 * us an invalid request.
821 */
822 WARN_ON(1);
823 host->flags &= ~SDHCI_REQ_USE_DMA;
824 } else if (host->flags & SDHCI_USE_ADMA) {
825 sdhci_adma_table_pre(host, data, sg_cnt);
826
827 sdhci_writel(host, host->adma_addr, SDHCI_ADMA_ADDRESS);
828 if (host->flags & SDHCI_USE_64_BIT_DMA)
829 sdhci_writel(host,
830 (u64)host->adma_addr >> 32,
831 SDHCI_ADMA_ADDRESS_HI);
832 } else {
833 WARN_ON(sg_cnt != 1);
834 sdhci_writel(host, sg_dma_address(data->sg),
835 SDHCI_DMA_ADDRESS);
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200836 }
837 }
838
Pierre Ossman2134a922008-06-28 18:28:51 +0200839 /*
840 * Always adjust the DMA selection as some controllers
841 * (e.g. JMicron) can't do PIO properly when the selection
842 * is ADMA.
843 */
844 if (host->version >= SDHCI_SPEC_200) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300845 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
Pierre Ossman2134a922008-06-28 18:28:51 +0200846 ctrl &= ~SDHCI_CTRL_DMA_MASK;
847 if ((host->flags & SDHCI_REQ_USE_DMA) &&
Adrian Huntere57a5f62014-11-04 12:42:46 +0200848 (host->flags & SDHCI_USE_ADMA)) {
849 if (host->flags & SDHCI_USE_64_BIT_DMA)
850 ctrl |= SDHCI_CTRL_ADMA64;
851 else
852 ctrl |= SDHCI_CTRL_ADMA32;
853 } else {
Pierre Ossman2134a922008-06-28 18:28:51 +0200854 ctrl |= SDHCI_CTRL_SDMA;
Adrian Huntere57a5f62014-11-04 12:42:46 +0200855 }
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300856 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Pierre Ossmanc9fddbc2007-12-02 19:52:11 +0100857 }
858
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200859 if (!(host->flags & SDHCI_REQ_USE_DMA)) {
Sebastian Andrzej Siewiorda60a912009-06-18 09:33:32 +0200860 int flags;
861
862 flags = SG_MITER_ATOMIC;
863 if (host->data->flags & MMC_DATA_READ)
864 flags |= SG_MITER_TO_SG;
865 else
866 flags |= SG_MITER_FROM_SG;
867 sg_miter_start(&host->sg_miter, data->sg, data->sg_len, flags);
Pierre Ossman76591502008-07-21 00:32:11 +0200868 host->blocks = data->blocks;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800869 }
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700870
Anton Vorontsov6aa943a2009-03-17 00:13:50 +0300871 sdhci_set_transfer_irqs(host);
872
Mikko Vinnif6a03cb2011-04-12 09:36:18 -0400873 /* Set the DMA boundary value and block size */
874 sdhci_writew(host, SDHCI_MAKE_BLKSZ(SDHCI_DEFAULT_BOUNDARY_ARG,
875 data->blksz), SDHCI_BLOCK_SIZE);
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300876 sdhci_writew(host, data->blocks, SDHCI_BLOCK_COUNT);
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700877}
878
879static void sdhci_set_transfer_mode(struct sdhci_host *host,
Andrei Warkentine89d4562011-05-23 15:06:37 -0500880 struct mmc_command *cmd)
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700881{
Vincent Yangd3fc5d72015-01-20 16:05:17 +0800882 u16 mode = 0;
Andrei Warkentine89d4562011-05-23 15:06:37 -0500883 struct mmc_data *data = cmd->data;
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700884
Dong Aisheng2b558c12013-10-30 22:09:48 +0800885 if (data == NULL) {
Vincent Wan9b8ffea2014-11-05 14:09:00 +0800886 if (host->quirks2 &
887 SDHCI_QUIRK2_CLEAR_TRANSFERMODE_REG_BEFORE_CMD) {
888 sdhci_writew(host, 0x0, SDHCI_TRANSFER_MODE);
889 } else {
Dong Aisheng2b558c12013-10-30 22:09:48 +0800890 /* clear Auto CMD settings for no data CMDs */
Vincent Wan9b8ffea2014-11-05 14:09:00 +0800891 mode = sdhci_readw(host, SDHCI_TRANSFER_MODE);
892 sdhci_writew(host, mode & ~(SDHCI_TRNS_AUTO_CMD12 |
Dong Aisheng2b558c12013-10-30 22:09:48 +0800893 SDHCI_TRNS_AUTO_CMD23), SDHCI_TRANSFER_MODE);
Vincent Wan9b8ffea2014-11-05 14:09:00 +0800894 }
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700895 return;
Dong Aisheng2b558c12013-10-30 22:09:48 +0800896 }
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700897
Pierre Ossmane538fbe2007-08-12 16:46:32 +0200898 WARN_ON(!host->data);
899
Vincent Yangd3fc5d72015-01-20 16:05:17 +0800900 if (!(host->quirks2 & SDHCI_QUIRK2_SUPPORT_SINGLE))
901 mode = SDHCI_TRNS_BLK_CNT_EN;
902
Andrei Warkentine89d4562011-05-23 15:06:37 -0500903 if (mmc_op_multi(cmd->opcode) || data->blocks > 1) {
Vincent Yangd3fc5d72015-01-20 16:05:17 +0800904 mode = SDHCI_TRNS_BLK_CNT_EN | SDHCI_TRNS_MULTI;
Andrei Warkentine89d4562011-05-23 15:06:37 -0500905 /*
906 * If we are sending CMD23, CMD12 never gets sent
907 * on successful completion (so no Auto-CMD12).
908 */
Corneliu Doban85cc1c32015-02-09 16:06:29 -0800909 if (!host->mrq->sbc && (host->flags & SDHCI_AUTO_CMD12) &&
910 (cmd->opcode != SD_IO_RW_EXTENDED))
Andrei Warkentine89d4562011-05-23 15:06:37 -0500911 mode |= SDHCI_TRNS_AUTO_CMD12;
Andrei Warkentin8edf63712011-05-23 15:06:39 -0500912 else if (host->mrq->sbc && (host->flags & SDHCI_AUTO_CMD23)) {
913 mode |= SDHCI_TRNS_AUTO_CMD23;
914 sdhci_writel(host, host->mrq->sbc->arg, SDHCI_ARGUMENT2);
915 }
Jerry Huangc4512f72010-08-10 18:01:59 -0700916 }
Andrei Warkentin8edf63712011-05-23 15:06:39 -0500917
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700918 if (data->flags & MMC_DATA_READ)
919 mode |= SDHCI_TRNS_READ;
Pierre Ossmanc9fddbc2007-12-02 19:52:11 +0100920 if (host->flags & SDHCI_REQ_USE_DMA)
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700921 mode |= SDHCI_TRNS_DMA;
922
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300923 sdhci_writew(host, mode, SDHCI_TRANSFER_MODE);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800924}
925
926static void sdhci_finish_data(struct sdhci_host *host)
927{
928 struct mmc_data *data;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800929
Pierre Ossmand129bce2006-03-24 03:18:17 -0800930 data = host->data;
931 host->data = NULL;
Adrian Hunter7c89a3d2016-06-29 16:24:23 +0300932 host->data_cmd = NULL;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800933
Russell Kingadd89132016-01-26 13:40:42 +0000934 if ((host->flags & (SDHCI_REQ_USE_DMA | SDHCI_USE_ADMA)) ==
935 (SDHCI_REQ_USE_DMA | SDHCI_USE_ADMA))
936 sdhci_adma_table_post(host, data);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800937
938 /*
Pierre Ossmanc9b74c52008-04-18 20:41:49 +0200939 * The specification states that the block count register must
940 * be updated, but it does not specify at what point in the
941 * data flow. That makes the register entirely useless to read
942 * back so we have to assume that nothing made it to the card
943 * in the event of an error.
Pierre Ossmand129bce2006-03-24 03:18:17 -0800944 */
Pierre Ossmanc9b74c52008-04-18 20:41:49 +0200945 if (data->error)
946 data->bytes_xfered = 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800947 else
Pierre Ossmanc9b74c52008-04-18 20:41:49 +0200948 data->bytes_xfered = data->blksz * data->blocks;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800949
Andrei Warkentine89d4562011-05-23 15:06:37 -0500950 /*
951 * Need to send CMD12 if -
952 * a) open-ended multiblock transfer (no CMD23)
953 * b) error in multiblock transfer
954 */
955 if (data->stop &&
956 (data->error ||
957 !host->mrq->sbc)) {
958
Pierre Ossmand129bce2006-03-24 03:18:17 -0800959 /*
960 * The controller needs a reset of internal state machines
961 * upon error conditions.
962 */
Pierre Ossman17b04292007-07-22 22:18:46 +0200963 if (data->error) {
Russell King03231f92014-04-25 12:57:12 +0100964 sdhci_do_reset(host, SDHCI_RESET_CMD);
965 sdhci_do_reset(host, SDHCI_RESET_DATA);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800966 }
967
968 sdhci_send_command(host, data->stop);
969 } else
970 tasklet_schedule(&host->finish_tasklet);
971}
972
Dong Aishengc0e551292013-09-13 19:11:31 +0800973void sdhci_send_command(struct sdhci_host *host, struct mmc_command *cmd)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800974{
975 int flags;
Pierre Ossmanfd2208d2006-06-30 02:22:28 -0700976 u32 mask;
Pierre Ossman7cb2c762006-06-30 02:22:23 -0700977 unsigned long timeout;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800978
979 WARN_ON(host->cmd);
980
Russell King96776202016-01-26 13:39:34 +0000981 /* Initially, a command has no error */
982 cmd->error = 0;
983
Pierre Ossmand129bce2006-03-24 03:18:17 -0800984 /* Wait max 10 ms */
Pierre Ossman7cb2c762006-06-30 02:22:23 -0700985 timeout = 10;
Pierre Ossmanfd2208d2006-06-30 02:22:28 -0700986
987 mask = SDHCI_CMD_INHIBIT;
988 if ((cmd->data != NULL) || (cmd->flags & MMC_RSP_BUSY))
989 mask |= SDHCI_DATA_INHIBIT;
990
991 /* We shouldn't wait for data inihibit for stop commands, even
992 though they might use busy signaling */
993 if (host->mrq->data && (cmd == host->mrq->data->stop))
994 mask &= ~SDHCI_DATA_INHIBIT;
995
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300996 while (sdhci_readl(host, SDHCI_PRESENT_STATE) & mask) {
Pierre Ossman7cb2c762006-06-30 02:22:23 -0700997 if (timeout == 0) {
Marek Vasut2e4456f2015-11-18 10:47:02 +0100998 pr_err("%s: Controller never released inhibit bit(s).\n",
999 mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -08001000 sdhci_dumpregs(host);
Pierre Ossman17b04292007-07-22 22:18:46 +02001001 cmd->error = -EIO;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001002 tasklet_schedule(&host->finish_tasklet);
1003 return;
1004 }
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001005 timeout--;
1006 mdelay(1);
1007 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001008
Adrian Hunter3e1a6892013-11-14 10:16:20 +02001009 timeout = jiffies;
Ulf Hansson1d4d7742014-01-08 15:06:08 +01001010 if (!cmd->data && cmd->busy_timeout > 9000)
1011 timeout += DIV_ROUND_UP(cmd->busy_timeout, 1000) * HZ + HZ;
Adrian Hunter3e1a6892013-11-14 10:16:20 +02001012 else
1013 timeout += 10 * HZ;
1014 mod_timer(&host->timer, timeout);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001015
1016 host->cmd = cmd;
Chanho Mine99783a2014-08-30 12:40:40 +09001017 host->busy_handle = 0;
Adrian Hunter7c89a3d2016-06-29 16:24:23 +03001018 if (cmd->data || cmd->flags & MMC_RSP_BUSY) {
1019 WARN_ON(host->data_cmd);
1020 host->data_cmd = cmd;
1021 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001022
Andrei Warkentina3c77782011-04-11 16:13:42 -05001023 sdhci_prepare_data(host, cmd);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001024
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001025 sdhci_writel(host, cmd->arg, SDHCI_ARGUMENT);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001026
Andrei Warkentine89d4562011-05-23 15:06:37 -05001027 sdhci_set_transfer_mode(host, cmd);
Pierre Ossmanc7fa9962006-06-30 02:22:25 -07001028
Pierre Ossmand129bce2006-03-24 03:18:17 -08001029 if ((cmd->flags & MMC_RSP_136) && (cmd->flags & MMC_RSP_BUSY)) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05301030 pr_err("%s: Unsupported response type!\n",
Pierre Ossmand129bce2006-03-24 03:18:17 -08001031 mmc_hostname(host->mmc));
Pierre Ossman17b04292007-07-22 22:18:46 +02001032 cmd->error = -EINVAL;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001033 tasklet_schedule(&host->finish_tasklet);
1034 return;
1035 }
1036
1037 if (!(cmd->flags & MMC_RSP_PRESENT))
1038 flags = SDHCI_CMD_RESP_NONE;
1039 else if (cmd->flags & MMC_RSP_136)
1040 flags = SDHCI_CMD_RESP_LONG;
1041 else if (cmd->flags & MMC_RSP_BUSY)
1042 flags = SDHCI_CMD_RESP_SHORT_BUSY;
1043 else
1044 flags = SDHCI_CMD_RESP_SHORT;
1045
1046 if (cmd->flags & MMC_RSP_CRC)
1047 flags |= SDHCI_CMD_CRC;
1048 if (cmd->flags & MMC_RSP_OPCODE)
1049 flags |= SDHCI_CMD_INDEX;
Arindam Nathb513ea22011-05-05 12:19:04 +05301050
1051 /* CMD19 is special in that the Data Present Select should be set */
Girish K S069c9f12012-01-06 09:56:39 +05301052 if (cmd->data || cmd->opcode == MMC_SEND_TUNING_BLOCK ||
1053 cmd->opcode == MMC_SEND_TUNING_BLOCK_HS200)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001054 flags |= SDHCI_CMD_DATA;
1055
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001056 sdhci_writew(host, SDHCI_MAKE_CMD(cmd->opcode, flags), SDHCI_COMMAND);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001057}
Dong Aishengc0e551292013-09-13 19:11:31 +08001058EXPORT_SYMBOL_GPL(sdhci_send_command);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001059
1060static void sdhci_finish_command(struct sdhci_host *host)
1061{
Adrian Huntere0a56402016-06-29 16:24:22 +03001062 struct mmc_command *cmd = host->cmd;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001063 int i;
1064
Adrian Huntere0a56402016-06-29 16:24:22 +03001065 host->cmd = NULL;
1066
1067 if (cmd->flags & MMC_RSP_PRESENT) {
1068 if (cmd->flags & MMC_RSP_136) {
Pierre Ossmand129bce2006-03-24 03:18:17 -08001069 /* CRC is stripped so we need to do some shifting. */
1070 for (i = 0;i < 4;i++) {
Adrian Huntere0a56402016-06-29 16:24:22 +03001071 cmd->resp[i] = sdhci_readl(host,
Pierre Ossmand129bce2006-03-24 03:18:17 -08001072 SDHCI_RESPONSE + (3-i)*4) << 8;
1073 if (i != 3)
Adrian Huntere0a56402016-06-29 16:24:22 +03001074 cmd->resp[i] |=
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001075 sdhci_readb(host,
Pierre Ossmand129bce2006-03-24 03:18:17 -08001076 SDHCI_RESPONSE + (3-i)*4-1);
1077 }
1078 } else {
Adrian Huntere0a56402016-06-29 16:24:22 +03001079 cmd->resp[0] = sdhci_readl(host, SDHCI_RESPONSE);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001080 }
1081 }
1082
Adrian Hunter6bde8682016-06-29 16:24:20 +03001083 /*
1084 * The host can send and interrupt when the busy state has
1085 * ended, allowing us to wait without wasting CPU cycles.
1086 * The busy signal uses DAT0 so this is similar to waiting
1087 * for data to complete.
1088 *
1089 * Note: The 1.0 specification is a bit ambiguous about this
1090 * feature so there might be some problems with older
1091 * controllers.
1092 */
Adrian Huntere0a56402016-06-29 16:24:22 +03001093 if (cmd->flags & MMC_RSP_BUSY) {
1094 if (cmd->data) {
Adrian Hunter6bde8682016-06-29 16:24:20 +03001095 DBG("Cannot wait for busy signal when also doing a data transfer");
1096 } else if (!(host->quirks & SDHCI_QUIRK_NO_BUSY_IRQ) &&
1097 !host->busy_handle) {
1098 /* Mark that command complete before busy is ended */
1099 host->busy_handle = 1;
Adrian Hunter6bde8682016-06-29 16:24:20 +03001100 return;
1101 }
1102 }
1103
Andrei Warkentine89d4562011-05-23 15:06:37 -05001104 /* Finished CMD23, now send actual command. */
Adrian Huntere0a56402016-06-29 16:24:22 +03001105 if (cmd == host->mrq->sbc) {
Andrei Warkentine89d4562011-05-23 15:06:37 -05001106 sdhci_send_command(host, host->mrq->cmd);
1107 } else {
Pierre Ossmane538fbe2007-08-12 16:46:32 +02001108
Andrei Warkentine89d4562011-05-23 15:06:37 -05001109 /* Processed actual command. */
1110 if (host->data && host->data_early)
1111 sdhci_finish_data(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001112
Adrian Huntere0a56402016-06-29 16:24:22 +03001113 if (!cmd->data)
Andrei Warkentine89d4562011-05-23 15:06:37 -05001114 tasklet_schedule(&host->finish_tasklet);
Andrei Warkentine89d4562011-05-23 15:06:37 -05001115 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001116}
1117
Kevin Liu52983382013-01-31 11:31:37 +08001118static u16 sdhci_get_preset_value(struct sdhci_host *host)
1119{
Russell Kingd975f122014-04-25 12:59:31 +01001120 u16 preset = 0;
Kevin Liu52983382013-01-31 11:31:37 +08001121
Russell Kingd975f122014-04-25 12:59:31 +01001122 switch (host->timing) {
1123 case MMC_TIMING_UHS_SDR12:
Kevin Liu52983382013-01-31 11:31:37 +08001124 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR12);
1125 break;
Russell Kingd975f122014-04-25 12:59:31 +01001126 case MMC_TIMING_UHS_SDR25:
Kevin Liu52983382013-01-31 11:31:37 +08001127 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR25);
1128 break;
Russell Kingd975f122014-04-25 12:59:31 +01001129 case MMC_TIMING_UHS_SDR50:
Kevin Liu52983382013-01-31 11:31:37 +08001130 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR50);
1131 break;
Russell Kingd975f122014-04-25 12:59:31 +01001132 case MMC_TIMING_UHS_SDR104:
1133 case MMC_TIMING_MMC_HS200:
Kevin Liu52983382013-01-31 11:31:37 +08001134 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR104);
1135 break;
Russell Kingd975f122014-04-25 12:59:31 +01001136 case MMC_TIMING_UHS_DDR50:
Jisheng Zhang0dafa602015-08-18 16:21:39 +08001137 case MMC_TIMING_MMC_DDR52:
Kevin Liu52983382013-01-31 11:31:37 +08001138 preset = sdhci_readw(host, SDHCI_PRESET_FOR_DDR50);
1139 break;
Adrian Huntere9fb05d2014-11-06 15:19:06 +02001140 case MMC_TIMING_MMC_HS400:
1141 preset = sdhci_readw(host, SDHCI_PRESET_FOR_HS400);
1142 break;
Kevin Liu52983382013-01-31 11:31:37 +08001143 default:
1144 pr_warn("%s: Invalid UHS-I mode selected\n",
1145 mmc_hostname(host->mmc));
1146 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR12);
1147 break;
1148 }
1149 return preset;
1150}
1151
Ludovic Desrochesfb9ee042016-04-07 11:13:08 +02001152u16 sdhci_calc_clk(struct sdhci_host *host, unsigned int clock,
1153 unsigned int *actual_clock)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001154{
Arindam Nathc3ed3872011-05-05 12:19:06 +05301155 int div = 0; /* Initialized for compiler warning */
Giuseppe CAVALLAROdf162192011-11-04 13:53:19 +01001156 int real_div = div, clk_mul = 1;
Arindam Nathc3ed3872011-05-05 12:19:06 +05301157 u16 clk = 0;
ludovic.desroches@atmel.com54971592015-07-29 16:22:46 +02001158 bool switch_base_clk = false;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001159
Zhangfei Gao85105c52010-08-06 07:10:01 +08001160 if (host->version >= SDHCI_SPEC_300) {
Russell Kingda91a8f2014-04-25 13:00:12 +01001161 if (host->preset_enabled) {
Kevin Liu52983382013-01-31 11:31:37 +08001162 u16 pre_val;
1163
1164 clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL);
1165 pre_val = sdhci_get_preset_value(host);
1166 div = (pre_val & SDHCI_PRESET_SDCLK_FREQ_MASK)
1167 >> SDHCI_PRESET_SDCLK_FREQ_SHIFT;
1168 if (host->clk_mul &&
1169 (pre_val & SDHCI_PRESET_CLKGEN_SEL_MASK)) {
1170 clk = SDHCI_PROG_CLOCK_MODE;
1171 real_div = div + 1;
1172 clk_mul = host->clk_mul;
1173 } else {
1174 real_div = max_t(int, 1, div << 1);
1175 }
1176 goto clock_set;
1177 }
1178
Arindam Nathc3ed3872011-05-05 12:19:06 +05301179 /*
1180 * Check if the Host Controller supports Programmable Clock
1181 * Mode.
1182 */
1183 if (host->clk_mul) {
Kevin Liu52983382013-01-31 11:31:37 +08001184 for (div = 1; div <= 1024; div++) {
1185 if ((host->max_clk * host->clk_mul / div)
1186 <= clock)
1187 break;
Zhangfei Gao85105c52010-08-06 07:10:01 +08001188 }
ludovic.desroches@atmel.com54971592015-07-29 16:22:46 +02001189 if ((host->max_clk * host->clk_mul / div) <= clock) {
1190 /*
1191 * Set Programmable Clock Mode in the Clock
1192 * Control register.
1193 */
1194 clk = SDHCI_PROG_CLOCK_MODE;
1195 real_div = div;
1196 clk_mul = host->clk_mul;
1197 div--;
1198 } else {
1199 /*
1200 * Divisor can be too small to reach clock
1201 * speed requirement. Then use the base clock.
1202 */
1203 switch_base_clk = true;
1204 }
1205 }
1206
1207 if (!host->clk_mul || switch_base_clk) {
Arindam Nathc3ed3872011-05-05 12:19:06 +05301208 /* Version 3.00 divisors must be a multiple of 2. */
1209 if (host->max_clk <= clock)
1210 div = 1;
1211 else {
1212 for (div = 2; div < SDHCI_MAX_DIV_SPEC_300;
1213 div += 2) {
1214 if ((host->max_clk / div) <= clock)
1215 break;
1216 }
1217 }
Giuseppe CAVALLAROdf162192011-11-04 13:53:19 +01001218 real_div = div;
Arindam Nathc3ed3872011-05-05 12:19:06 +05301219 div >>= 1;
Suneel Garapatid1955c32015-06-09 13:01:50 +05301220 if ((host->quirks2 & SDHCI_QUIRK2_CLOCK_DIV_ZERO_BROKEN)
1221 && !div && host->max_clk <= 25000000)
1222 div = 1;
Zhangfei Gao85105c52010-08-06 07:10:01 +08001223 }
1224 } else {
1225 /* Version 2.00 divisors must be a power of 2. */
Zhangfei Gao03975262010-09-20 15:15:18 -04001226 for (div = 1; div < SDHCI_MAX_DIV_SPEC_200; div *= 2) {
Zhangfei Gao85105c52010-08-06 07:10:01 +08001227 if ((host->max_clk / div) <= clock)
1228 break;
1229 }
Giuseppe CAVALLAROdf162192011-11-04 13:53:19 +01001230 real_div = div;
Arindam Nathc3ed3872011-05-05 12:19:06 +05301231 div >>= 1;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001232 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001233
Kevin Liu52983382013-01-31 11:31:37 +08001234clock_set:
Aisheng Dong03d6f5f2014-08-27 15:26:32 +08001235 if (real_div)
Ludovic Desrochesfb9ee042016-04-07 11:13:08 +02001236 *actual_clock = (host->max_clk * clk_mul) / real_div;
Arindam Nathc3ed3872011-05-05 12:19:06 +05301237 clk |= (div & SDHCI_DIV_MASK) << SDHCI_DIVIDER_SHIFT;
Zhangfei Gao85105c52010-08-06 07:10:01 +08001238 clk |= ((div & SDHCI_DIV_HI_MASK) >> SDHCI_DIV_MASK_LEN)
1239 << SDHCI_DIVIDER_HI_SHIFT;
Ludovic Desrochesfb9ee042016-04-07 11:13:08 +02001240
1241 return clk;
1242}
1243EXPORT_SYMBOL_GPL(sdhci_calc_clk);
1244
1245void sdhci_set_clock(struct sdhci_host *host, unsigned int clock)
1246{
1247 u16 clk;
1248 unsigned long timeout;
1249
1250 host->mmc->actual_clock = 0;
1251
1252 sdhci_writew(host, 0, SDHCI_CLOCK_CONTROL);
Ludovic Desrochesfb9ee042016-04-07 11:13:08 +02001253
1254 if (clock == 0)
1255 return;
1256
1257 clk = sdhci_calc_clk(host, clock, &host->mmc->actual_clock);
1258
Pierre Ossmand129bce2006-03-24 03:18:17 -08001259 clk |= SDHCI_CLOCK_INT_EN;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001260 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001261
Chris Ball27f6cb12009-09-22 16:45:31 -07001262 /* Wait max 20 ms */
1263 timeout = 20;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001264 while (!((clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL))
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001265 & SDHCI_CLOCK_INT_STABLE)) {
1266 if (timeout == 0) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01001267 pr_err("%s: Internal clock never stabilised.\n",
1268 mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -08001269 sdhci_dumpregs(host);
1270 return;
1271 }
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001272 timeout--;
1273 mdelay(1);
1274 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001275
1276 clk |= SDHCI_CLOCK_CARD_EN;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001277 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001278}
Russell King17710592014-04-25 12:58:55 +01001279EXPORT_SYMBOL_GPL(sdhci_set_clock);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001280
Adrian Hunter1dceb042016-03-29 12:45:43 +03001281static void sdhci_set_power_reg(struct sdhci_host *host, unsigned char mode,
1282 unsigned short vdd)
Pierre Ossman146ad662006-06-30 02:22:23 -07001283{
Tim Kryger3a48edc2014-06-13 10:13:56 -07001284 struct mmc_host *mmc = host->mmc;
Adrian Hunter1dceb042016-03-29 12:45:43 +03001285
1286 spin_unlock_irq(&host->lock);
1287 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, vdd);
1288 spin_lock_irq(&host->lock);
1289
1290 if (mode != MMC_POWER_OFF)
1291 sdhci_writeb(host, SDHCI_POWER_ON, SDHCI_POWER_CONTROL);
1292 else
1293 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
1294}
1295
1296void sdhci_set_power(struct sdhci_host *host, unsigned char mode,
1297 unsigned short vdd)
1298{
Giuseppe Cavallaro83642482010-09-28 10:41:28 +02001299 u8 pwr = 0;
Pierre Ossman146ad662006-06-30 02:22:23 -07001300
Russell King24fbb3c2014-04-25 13:00:06 +01001301 if (mode != MMC_POWER_OFF) {
1302 switch (1 << vdd) {
Pierre Ossmanae628902009-05-03 20:45:03 +02001303 case MMC_VDD_165_195:
1304 pwr = SDHCI_POWER_180;
1305 break;
1306 case MMC_VDD_29_30:
1307 case MMC_VDD_30_31:
1308 pwr = SDHCI_POWER_300;
1309 break;
1310 case MMC_VDD_32_33:
1311 case MMC_VDD_33_34:
1312 pwr = SDHCI_POWER_330;
1313 break;
1314 default:
Adrian Hunter9d5de932015-11-26 14:00:46 +02001315 WARN(1, "%s: Invalid vdd %#x\n",
1316 mmc_hostname(host->mmc), vdd);
1317 break;
Pierre Ossmanae628902009-05-03 20:45:03 +02001318 }
1319 }
1320
1321 if (host->pwr == pwr)
Russell Kinge921a8b2014-04-25 13:00:01 +01001322 return;
Pierre Ossman146ad662006-06-30 02:22:23 -07001323
Pierre Ossmanae628902009-05-03 20:45:03 +02001324 host->pwr = pwr;
1325
1326 if (pwr == 0) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001327 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
Adrian Hunterf0710a52013-05-06 12:17:32 +03001328 if (host->quirks2 & SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON)
1329 sdhci_runtime_pm_bus_off(host);
Russell Kinge921a8b2014-04-25 13:00:01 +01001330 } else {
1331 /*
1332 * Spec says that we should clear the power reg before setting
1333 * a new value. Some controllers don't seem to like this though.
1334 */
1335 if (!(host->quirks & SDHCI_QUIRK_SINGLE_POWER_WRITE))
1336 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
Darren Salt9e9dc5f2007-01-27 15:32:31 +01001337
Russell Kinge921a8b2014-04-25 13:00:01 +01001338 /*
1339 * At least the Marvell CaFe chip gets confused if we set the
1340 * voltage and set turn on power at the same time, so set the
1341 * voltage first.
1342 */
1343 if (host->quirks & SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER)
1344 sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL);
Pierre Ossman146ad662006-06-30 02:22:23 -07001345
Russell Kinge921a8b2014-04-25 13:00:01 +01001346 pwr |= SDHCI_POWER_ON;
1347
Pierre Ossmanae628902009-05-03 20:45:03 +02001348 sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL);
1349
Russell Kinge921a8b2014-04-25 13:00:01 +01001350 if (host->quirks2 & SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON)
1351 sdhci_runtime_pm_bus_on(host);
Andres Salomone08c1692008-07-04 10:00:03 -07001352
Russell Kinge921a8b2014-04-25 13:00:01 +01001353 /*
1354 * Some controllers need an extra 10ms delay of 10ms before
1355 * they can apply clock after applying power
1356 */
1357 if (host->quirks & SDHCI_QUIRK_DELAY_AFTER_POWER)
1358 mdelay(10);
1359 }
Adrian Hunter1dceb042016-03-29 12:45:43 +03001360}
1361EXPORT_SYMBOL_GPL(sdhci_set_power);
Jisheng Zhang918f4cb2015-12-11 21:36:29 +08001362
Adrian Hunter1dceb042016-03-29 12:45:43 +03001363static void __sdhci_set_power(struct sdhci_host *host, unsigned char mode,
1364 unsigned short vdd)
1365{
1366 struct mmc_host *mmc = host->mmc;
1367
1368 if (host->ops->set_power)
1369 host->ops->set_power(host, mode, vdd);
1370 else if (!IS_ERR(mmc->supply.vmmc))
1371 sdhci_set_power_reg(host, mode, vdd);
1372 else
1373 sdhci_set_power(host, mode, vdd);
Pierre Ossman146ad662006-06-30 02:22:23 -07001374}
1375
Pierre Ossmand129bce2006-03-24 03:18:17 -08001376/*****************************************************************************\
1377 * *
1378 * MMC callbacks *
1379 * *
1380\*****************************************************************************/
1381
1382static void sdhci_request(struct mmc_host *mmc, struct mmc_request *mrq)
1383{
1384 struct sdhci_host *host;
Shawn Guo505a8682012-12-11 15:23:42 +08001385 int present;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001386 unsigned long flags;
1387
1388 host = mmc_priv(mmc);
1389
Scott Branden04e079cf2015-03-10 11:35:10 -07001390 /* Firstly check card presence */
Adrian Hunter8d28b7a2016-02-09 16:12:36 +02001391 present = mmc->ops->get_cd(mmc);
Krzysztof Kozlowski28367662015-01-05 10:50:15 +01001392
Pierre Ossmand129bce2006-03-24 03:18:17 -08001393 spin_lock_irqsave(&host->lock, flags);
1394
1395 WARN_ON(host->mrq != NULL);
1396
Adrian Hunter061d17a2016-04-12 14:25:09 +03001397 sdhci_led_activate(host);
Andrei Warkentine89d4562011-05-23 15:06:37 -05001398
1399 /*
1400 * Ensure we don't send the STOP for non-SET_BLOCK_COUNTED
1401 * requests if Auto-CMD12 is enabled.
1402 */
1403 if (!mrq->sbc && (host->flags & SDHCI_AUTO_CMD12)) {
Jerry Huangc4512f72010-08-10 18:01:59 -07001404 if (mrq->stop) {
1405 mrq->data->stop = NULL;
1406 mrq->stop = NULL;
1407 }
1408 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001409
1410 host->mrq = mrq;
1411
Anton Vorontsov68d1fb72009-03-17 00:13:52 +03001412 if (!present || host->flags & SDHCI_DEVICE_DEAD) {
Pierre Ossman17b04292007-07-22 22:18:46 +02001413 host->mrq->cmd->error = -ENOMEDIUM;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001414 tasklet_schedule(&host->finish_tasklet);
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05301415 } else {
Andrei Warkentin8edf63712011-05-23 15:06:39 -05001416 if (mrq->sbc && !(host->flags & SDHCI_AUTO_CMD23))
Andrei Warkentine89d4562011-05-23 15:06:37 -05001417 sdhci_send_command(host, mrq->sbc);
1418 else
1419 sdhci_send_command(host, mrq->cmd);
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05301420 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001421
Pierre Ossman5f25a662006-10-04 02:15:39 -07001422 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -08001423 spin_unlock_irqrestore(&host->lock, flags);
1424}
1425
Russell King2317f562014-04-25 12:57:07 +01001426void sdhci_set_bus_width(struct sdhci_host *host, int width)
1427{
1428 u8 ctrl;
1429
1430 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
1431 if (width == MMC_BUS_WIDTH_8) {
1432 ctrl &= ~SDHCI_CTRL_4BITBUS;
1433 if (host->version >= SDHCI_SPEC_300)
1434 ctrl |= SDHCI_CTRL_8BITBUS;
1435 } else {
1436 if (host->version >= SDHCI_SPEC_300)
1437 ctrl &= ~SDHCI_CTRL_8BITBUS;
1438 if (width == MMC_BUS_WIDTH_4)
1439 ctrl |= SDHCI_CTRL_4BITBUS;
1440 else
1441 ctrl &= ~SDHCI_CTRL_4BITBUS;
1442 }
1443 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
1444}
1445EXPORT_SYMBOL_GPL(sdhci_set_bus_width);
1446
Russell King96d7b782014-04-25 12:59:26 +01001447void sdhci_set_uhs_signaling(struct sdhci_host *host, unsigned timing)
1448{
1449 u16 ctrl_2;
1450
1451 ctrl_2 = sdhci_readw(host, SDHCI_HOST_CONTROL2);
1452 /* Select Bus Speed Mode for host */
1453 ctrl_2 &= ~SDHCI_CTRL_UHS_MASK;
1454 if ((timing == MMC_TIMING_MMC_HS200) ||
1455 (timing == MMC_TIMING_UHS_SDR104))
1456 ctrl_2 |= SDHCI_CTRL_UHS_SDR104;
1457 else if (timing == MMC_TIMING_UHS_SDR12)
1458 ctrl_2 |= SDHCI_CTRL_UHS_SDR12;
1459 else if (timing == MMC_TIMING_UHS_SDR25)
1460 ctrl_2 |= SDHCI_CTRL_UHS_SDR25;
1461 else if (timing == MMC_TIMING_UHS_SDR50)
1462 ctrl_2 |= SDHCI_CTRL_UHS_SDR50;
1463 else if ((timing == MMC_TIMING_UHS_DDR50) ||
1464 (timing == MMC_TIMING_MMC_DDR52))
1465 ctrl_2 |= SDHCI_CTRL_UHS_DDR50;
Adrian Huntere9fb05d2014-11-06 15:19:06 +02001466 else if (timing == MMC_TIMING_MMC_HS400)
1467 ctrl_2 |= SDHCI_CTRL_HS400; /* Non-standard */
Russell King96d7b782014-04-25 12:59:26 +01001468 sdhci_writew(host, ctrl_2, SDHCI_HOST_CONTROL2);
1469}
1470EXPORT_SYMBOL_GPL(sdhci_set_uhs_signaling);
1471
Dong Aishengded97e02016-04-16 01:29:25 +08001472static void sdhci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001473{
Dong Aishengded97e02016-04-16 01:29:25 +08001474 struct sdhci_host *host = mmc_priv(mmc);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001475 unsigned long flags;
1476 u8 ctrl;
1477
Pierre Ossmand129bce2006-03-24 03:18:17 -08001478 spin_lock_irqsave(&host->lock, flags);
1479
Adrian Hunterceb61432011-12-27 15:48:41 +02001480 if (host->flags & SDHCI_DEVICE_DEAD) {
1481 spin_unlock_irqrestore(&host->lock, flags);
Tim Kryger3a48edc2014-06-13 10:13:56 -07001482 if (!IS_ERR(mmc->supply.vmmc) &&
1483 ios->power_mode == MMC_POWER_OFF)
Markus Mayer4e743f12014-07-03 13:27:42 -07001484 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, 0);
Adrian Hunterceb61432011-12-27 15:48:41 +02001485 return;
1486 }
Pierre Ossman1e728592008-04-16 19:13:13 +02001487
Pierre Ossmand129bce2006-03-24 03:18:17 -08001488 /*
1489 * Reset the chip on each power off.
1490 * Should clear out any weird states.
1491 */
1492 if (ios->power_mode == MMC_POWER_OFF) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001493 sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE);
Anton Vorontsov7260cf52009-03-17 00:13:48 +03001494 sdhci_reinit(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001495 }
1496
Kevin Liu52983382013-01-31 11:31:37 +08001497 if (host->version >= SDHCI_SPEC_300 &&
Dong Aisheng372c4632013-10-18 19:48:50 +08001498 (ios->power_mode == MMC_POWER_UP) &&
1499 !(host->quirks2 & SDHCI_QUIRK2_PRESET_VALUE_BROKEN))
Kevin Liu52983382013-01-31 11:31:37 +08001500 sdhci_enable_preset_value(host, false);
1501
Russell King373073e2014-04-25 12:58:45 +01001502 if (!ios->clock || ios->clock != host->clock) {
Russell King17710592014-04-25 12:58:55 +01001503 host->ops->set_clock(host, ios->clock);
Russell King373073e2014-04-25 12:58:45 +01001504 host->clock = ios->clock;
Aisheng Dong03d6f5f2014-08-27 15:26:32 +08001505
1506 if (host->quirks & SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK &&
1507 host->clock) {
1508 host->timeout_clk = host->mmc->actual_clock ?
1509 host->mmc->actual_clock / 1000 :
1510 host->clock / 1000;
1511 host->mmc->max_busy_timeout =
1512 host->ops->get_max_timeout_count ?
1513 host->ops->get_max_timeout_count(host) :
1514 1 << 27;
1515 host->mmc->max_busy_timeout /= host->timeout_clk;
1516 }
Russell King373073e2014-04-25 12:58:45 +01001517 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001518
Adrian Hunter1dceb042016-03-29 12:45:43 +03001519 __sdhci_set_power(host, ios->power_mode, ios->vdd);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001520
Philip Rakity643a81f2010-09-23 08:24:32 -07001521 if (host->ops->platform_send_init_74_clocks)
1522 host->ops->platform_send_init_74_clocks(host, ios->power_mode);
1523
Russell King2317f562014-04-25 12:57:07 +01001524 host->ops->set_bus_width(host, ios->bus_width);
Philip Rakity15ec4462010-11-19 16:48:39 -05001525
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001526 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
Pierre Ossmancd9277c2007-02-18 12:07:47 +01001527
Philip Rakity3ab9c8d2010-10-06 11:57:23 -07001528 if ((ios->timing == MMC_TIMING_SD_HS ||
1529 ios->timing == MMC_TIMING_MMC_HS)
1530 && !(host->quirks & SDHCI_QUIRK_NO_HISPD_BIT))
Pierre Ossmancd9277c2007-02-18 12:07:47 +01001531 ctrl |= SDHCI_CTRL_HISPD;
1532 else
1533 ctrl &= ~SDHCI_CTRL_HISPD;
1534
Arindam Nathd6d50a12011-05-05 12:18:59 +05301535 if (host->version >= SDHCI_SPEC_300) {
Arindam Nath49c468f2011-05-05 12:19:01 +05301536 u16 clk, ctrl_2;
Arindam Nath49c468f2011-05-05 12:19:01 +05301537
1538 /* In case of UHS-I modes, set High Speed Enable */
Adrian Huntere9fb05d2014-11-06 15:19:06 +02001539 if ((ios->timing == MMC_TIMING_MMC_HS400) ||
1540 (ios->timing == MMC_TIMING_MMC_HS200) ||
Seungwon Jeonbb8175a2014-03-14 21:12:48 +09001541 (ios->timing == MMC_TIMING_MMC_DDR52) ||
Girish K S069c9f12012-01-06 09:56:39 +05301542 (ios->timing == MMC_TIMING_UHS_SDR50) ||
Arindam Nath49c468f2011-05-05 12:19:01 +05301543 (ios->timing == MMC_TIMING_UHS_SDR104) ||
1544 (ios->timing == MMC_TIMING_UHS_DDR50) ||
Alexander Elbsdd8df172012-01-03 23:26:53 -05001545 (ios->timing == MMC_TIMING_UHS_SDR25))
Arindam Nath49c468f2011-05-05 12:19:01 +05301546 ctrl |= SDHCI_CTRL_HISPD;
Arindam Nathd6d50a12011-05-05 12:18:59 +05301547
Russell Kingda91a8f2014-04-25 13:00:12 +01001548 if (!host->preset_enabled) {
Arindam Nath758535c2011-05-05 12:19:00 +05301549 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Arindam Nathd6d50a12011-05-05 12:18:59 +05301550 /*
1551 * We only need to set Driver Strength if the
1552 * preset value enable is not set.
1553 */
Russell Kingda91a8f2014-04-25 13:00:12 +01001554 ctrl_2 = sdhci_readw(host, SDHCI_HOST_CONTROL2);
Arindam Nathd6d50a12011-05-05 12:18:59 +05301555 ctrl_2 &= ~SDHCI_CTRL_DRV_TYPE_MASK;
1556 if (ios->drv_type == MMC_SET_DRIVER_TYPE_A)
1557 ctrl_2 |= SDHCI_CTRL_DRV_TYPE_A;
Petri Gynther43e943a2015-05-20 14:35:00 -07001558 else if (ios->drv_type == MMC_SET_DRIVER_TYPE_B)
1559 ctrl_2 |= SDHCI_CTRL_DRV_TYPE_B;
Arindam Nathd6d50a12011-05-05 12:18:59 +05301560 else if (ios->drv_type == MMC_SET_DRIVER_TYPE_C)
1561 ctrl_2 |= SDHCI_CTRL_DRV_TYPE_C;
Petri Gynther43e943a2015-05-20 14:35:00 -07001562 else if (ios->drv_type == MMC_SET_DRIVER_TYPE_D)
1563 ctrl_2 |= SDHCI_CTRL_DRV_TYPE_D;
1564 else {
Marek Vasut2e4456f2015-11-18 10:47:02 +01001565 pr_warn("%s: invalid driver type, default to driver type B\n",
1566 mmc_hostname(mmc));
Petri Gynther43e943a2015-05-20 14:35:00 -07001567 ctrl_2 |= SDHCI_CTRL_DRV_TYPE_B;
1568 }
Arindam Nathd6d50a12011-05-05 12:18:59 +05301569
1570 sdhci_writew(host, ctrl_2, SDHCI_HOST_CONTROL2);
Arindam Nath758535c2011-05-05 12:19:00 +05301571 } else {
1572 /*
1573 * According to SDHC Spec v3.00, if the Preset Value
1574 * Enable in the Host Control 2 register is set, we
1575 * need to reset SD Clock Enable before changing High
1576 * Speed Enable to avoid generating clock gliches.
1577 */
Arindam Nath758535c2011-05-05 12:19:00 +05301578
1579 /* Reset SD Clock Enable */
1580 clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL);
1581 clk &= ~SDHCI_CLOCK_CARD_EN;
1582 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
1583
1584 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
1585
1586 /* Re-enable SD Clock */
Russell King17710592014-04-25 12:58:55 +01001587 host->ops->set_clock(host, host->clock);
Arindam Nathd6d50a12011-05-05 12:18:59 +05301588 }
Arindam Nath49c468f2011-05-05 12:19:01 +05301589
Arindam Nath49c468f2011-05-05 12:19:01 +05301590 /* Reset SD Clock Enable */
1591 clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL);
1592 clk &= ~SDHCI_CLOCK_CARD_EN;
1593 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
1594
Russell King96d7b782014-04-25 12:59:26 +01001595 host->ops->set_uhs_signaling(host, ios->timing);
Russell Kingd975f122014-04-25 12:59:31 +01001596 host->timing = ios->timing;
Arindam Nath49c468f2011-05-05 12:19:01 +05301597
Kevin Liu52983382013-01-31 11:31:37 +08001598 if (!(host->quirks2 & SDHCI_QUIRK2_PRESET_VALUE_BROKEN) &&
1599 ((ios->timing == MMC_TIMING_UHS_SDR12) ||
1600 (ios->timing == MMC_TIMING_UHS_SDR25) ||
1601 (ios->timing == MMC_TIMING_UHS_SDR50) ||
1602 (ios->timing == MMC_TIMING_UHS_SDR104) ||
Jisheng Zhang0dafa602015-08-18 16:21:39 +08001603 (ios->timing == MMC_TIMING_UHS_DDR50) ||
1604 (ios->timing == MMC_TIMING_MMC_DDR52))) {
Kevin Liu52983382013-01-31 11:31:37 +08001605 u16 preset;
1606
1607 sdhci_enable_preset_value(host, true);
1608 preset = sdhci_get_preset_value(host);
1609 ios->drv_type = (preset & SDHCI_PRESET_DRV_MASK)
1610 >> SDHCI_PRESET_DRV_SHIFT;
1611 }
1612
Arindam Nath49c468f2011-05-05 12:19:01 +05301613 /* Re-enable SD Clock */
Russell King17710592014-04-25 12:58:55 +01001614 host->ops->set_clock(host, host->clock);
Arindam Nath758535c2011-05-05 12:19:00 +05301615 } else
1616 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Arindam Nathd6d50a12011-05-05 12:18:59 +05301617
Leandro Dorileob8352262007-07-25 23:47:04 +02001618 /*
1619 * Some (ENE) controllers go apeshit on some ios operation,
1620 * signalling timeout and CRC errors even on CMD0. Resetting
1621 * it on each ios seems to solve the problem.
1622 */
Mohammad Jamalc63705e2015-01-13 20:47:24 +05301623 if (host->quirks & SDHCI_QUIRK_RESET_CMD_DATA_ON_IOS)
Russell King03231f92014-04-25 12:57:12 +01001624 sdhci_do_reset(host, SDHCI_RESET_CMD | SDHCI_RESET_DATA);
Leandro Dorileob8352262007-07-25 23:47:04 +02001625
Pierre Ossman5f25a662006-10-04 02:15:39 -07001626 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -08001627 spin_unlock_irqrestore(&host->lock, flags);
1628}
1629
Dong Aishengded97e02016-04-16 01:29:25 +08001630static int sdhci_get_cd(struct mmc_host *mmc)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001631{
1632 struct sdhci_host *host = mmc_priv(mmc);
Dong Aishengded97e02016-04-16 01:29:25 +08001633 int gpio_cd = mmc_gpio_get_cd(mmc);
Kevin Liu94144a42013-02-28 17:35:53 +08001634
1635 if (host->flags & SDHCI_DEVICE_DEAD)
1636 return 0;
1637
Ivan T. Ivanov88af5652015-07-06 15:16:19 +03001638 /* If nonremovable, assume that the card is always present. */
Jaehoon Chung860951c2016-06-21 10:13:26 +09001639 if (!mmc_card_is_removable(host->mmc))
Kevin Liu94144a42013-02-28 17:35:53 +08001640 return 1;
1641
Ivan T. Ivanov88af5652015-07-06 15:16:19 +03001642 /*
1643 * Try slot gpio detect, if defined it take precedence
1644 * over build in controller functionality
1645 */
Arnd Bergmann287980e2016-05-27 23:23:25 +02001646 if (gpio_cd >= 0)
Kevin Liu94144a42013-02-28 17:35:53 +08001647 return !!gpio_cd;
1648
Ivan T. Ivanov88af5652015-07-06 15:16:19 +03001649 /* If polling, assume that the card is always present. */
1650 if (host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION)
1651 return 1;
1652
Kevin Liu94144a42013-02-28 17:35:53 +08001653 /* Host native card detect */
1654 return !!(sdhci_readl(host, SDHCI_PRESENT_STATE) & SDHCI_CARD_PRESENT);
1655}
1656
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001657static int sdhci_check_ro(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001658{
Pierre Ossmand129bce2006-03-24 03:18:17 -08001659 unsigned long flags;
Wolfram Sang2dfb5792010-10-15 12:21:01 +02001660 int is_readonly;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001661
Pierre Ossmand129bce2006-03-24 03:18:17 -08001662 spin_lock_irqsave(&host->lock, flags);
1663
Pierre Ossman1e728592008-04-16 19:13:13 +02001664 if (host->flags & SDHCI_DEVICE_DEAD)
Wolfram Sang2dfb5792010-10-15 12:21:01 +02001665 is_readonly = 0;
1666 else if (host->ops->get_ro)
1667 is_readonly = host->ops->get_ro(host);
Pierre Ossman1e728592008-04-16 19:13:13 +02001668 else
Wolfram Sang2dfb5792010-10-15 12:21:01 +02001669 is_readonly = !(sdhci_readl(host, SDHCI_PRESENT_STATE)
1670 & SDHCI_WRITE_PROTECT);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001671
1672 spin_unlock_irqrestore(&host->lock, flags);
1673
Wolfram Sang2dfb5792010-10-15 12:21:01 +02001674 /* This quirk needs to be replaced by a callback-function later */
1675 return host->quirks & SDHCI_QUIRK_INVERTED_WRITE_PROTECT ?
1676 !is_readonly : is_readonly;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001677}
1678
Takashi Iwai82b0e232011-04-21 20:26:38 +02001679#define SAMPLE_COUNT 5
1680
Dong Aishengded97e02016-04-16 01:29:25 +08001681static int sdhci_get_ro(struct mmc_host *mmc)
Takashi Iwai82b0e232011-04-21 20:26:38 +02001682{
Dong Aishengded97e02016-04-16 01:29:25 +08001683 struct sdhci_host *host = mmc_priv(mmc);
Takashi Iwai82b0e232011-04-21 20:26:38 +02001684 int i, ro_count;
1685
Takashi Iwai82b0e232011-04-21 20:26:38 +02001686 if (!(host->quirks & SDHCI_QUIRK_UNSTABLE_RO_DETECT))
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001687 return sdhci_check_ro(host);
Takashi Iwai82b0e232011-04-21 20:26:38 +02001688
1689 ro_count = 0;
1690 for (i = 0; i < SAMPLE_COUNT; i++) {
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001691 if (sdhci_check_ro(host)) {
Takashi Iwai82b0e232011-04-21 20:26:38 +02001692 if (++ro_count > SAMPLE_COUNT / 2)
1693 return 1;
1694 }
1695 msleep(30);
1696 }
1697 return 0;
1698}
1699
Adrian Hunter20758b62011-08-29 16:42:12 +03001700static void sdhci_hw_reset(struct mmc_host *mmc)
1701{
1702 struct sdhci_host *host = mmc_priv(mmc);
1703
1704 if (host->ops && host->ops->hw_reset)
1705 host->ops->hw_reset(host);
1706}
1707
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001708static void sdhci_enable_sdio_irq_nolock(struct sdhci_host *host, int enable)
1709{
Russell Kingbe138552014-04-25 12:55:56 +01001710 if (!(host->flags & SDHCI_DEVICE_DEAD)) {
Russell Kingef104332014-04-25 12:55:41 +01001711 if (enable)
Russell Kingb537f942014-04-25 12:56:01 +01001712 host->ier |= SDHCI_INT_CARD_INT;
Russell Kingef104332014-04-25 12:55:41 +01001713 else
Russell Kingb537f942014-04-25 12:56:01 +01001714 host->ier &= ~SDHCI_INT_CARD_INT;
1715
1716 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
1717 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Russell Kingef104332014-04-25 12:55:41 +01001718 mmiowb();
1719 }
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001720}
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001721
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001722static void sdhci_enable_sdio_irq(struct mmc_host *mmc, int enable)
1723{
1724 struct sdhci_host *host = mmc_priv(mmc);
1725 unsigned long flags;
1726
1727 spin_lock_irqsave(&host->lock, flags);
Russell Kingef104332014-04-25 12:55:41 +01001728 if (enable)
1729 host->flags |= SDHCI_SDIO_IRQ_ENABLED;
1730 else
1731 host->flags &= ~SDHCI_SDIO_IRQ_ENABLED;
1732
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001733 sdhci_enable_sdio_irq_nolock(host, enable);
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001734 spin_unlock_irqrestore(&host->lock, flags);
1735}
1736
Dong Aishengded97e02016-04-16 01:29:25 +08001737static int sdhci_start_signal_voltage_switch(struct mmc_host *mmc,
1738 struct mmc_ios *ios)
Philip Rakity6231f3d2012-07-23 15:56:23 -07001739{
Dong Aishengded97e02016-04-16 01:29:25 +08001740 struct sdhci_host *host = mmc_priv(mmc);
Philip Rakity6231f3d2012-07-23 15:56:23 -07001741 u16 ctrl;
Kevin Liu20b92a32012-12-17 19:29:26 +08001742 int ret;
Philip Rakity6231f3d2012-07-23 15:56:23 -07001743
1744 /*
1745 * Signal Voltage Switching is only applicable for Host Controllers
1746 * v3.00 and above.
1747 */
1748 if (host->version < SDHCI_SPEC_300)
1749 return 0;
1750
Philip Rakity6231f3d2012-07-23 15:56:23 -07001751 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
Kevin Liu20b92a32012-12-17 19:29:26 +08001752
Fabio Estevam21f59982013-02-14 10:35:03 -02001753 switch (ios->signal_voltage) {
Kevin Liu20b92a32012-12-17 19:29:26 +08001754 case MMC_SIGNAL_VOLTAGE_330:
Adrian Hunter8cb851a2016-06-29 16:24:16 +03001755 if (!(host->flags & SDHCI_SIGNALING_330))
1756 return -EINVAL;
Kevin Liu20b92a32012-12-17 19:29:26 +08001757 /* Set 1.8V Signal Enable in the Host Control2 register to 0 */
1758 ctrl &= ~SDHCI_CTRL_VDD_180;
1759 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
1760
Tim Kryger3a48edc2014-06-13 10:13:56 -07001761 if (!IS_ERR(mmc->supply.vqmmc)) {
1762 ret = regulator_set_voltage(mmc->supply.vqmmc, 2700000,
1763 3600000);
Kevin Liu20b92a32012-12-17 19:29:26 +08001764 if (ret) {
Joe Perches66061102014-09-12 14:56:56 -07001765 pr_warn("%s: Switching to 3.3V signalling voltage failed\n",
1766 mmc_hostname(mmc));
Kevin Liu20b92a32012-12-17 19:29:26 +08001767 return -EIO;
1768 }
1769 }
1770 /* Wait for 5ms */
1771 usleep_range(5000, 5500);
1772
1773 /* 3.3V regulator output should be stable within 5 ms */
1774 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
1775 if (!(ctrl & SDHCI_CTRL_VDD_180))
1776 return 0;
1777
Joe Perches66061102014-09-12 14:56:56 -07001778 pr_warn("%s: 3.3V regulator output did not became stable\n",
1779 mmc_hostname(mmc));
Kevin Liu20b92a32012-12-17 19:29:26 +08001780
1781 return -EAGAIN;
1782 case MMC_SIGNAL_VOLTAGE_180:
Adrian Hunter8cb851a2016-06-29 16:24:16 +03001783 if (!(host->flags & SDHCI_SIGNALING_180))
1784 return -EINVAL;
Tim Kryger3a48edc2014-06-13 10:13:56 -07001785 if (!IS_ERR(mmc->supply.vqmmc)) {
1786 ret = regulator_set_voltage(mmc->supply.vqmmc,
Kevin Liu20b92a32012-12-17 19:29:26 +08001787 1700000, 1950000);
1788 if (ret) {
Joe Perches66061102014-09-12 14:56:56 -07001789 pr_warn("%s: Switching to 1.8V signalling voltage failed\n",
1790 mmc_hostname(mmc));
Kevin Liu20b92a32012-12-17 19:29:26 +08001791 return -EIO;
1792 }
1793 }
1794
1795 /*
1796 * Enable 1.8V Signal Enable in the Host Control2
1797 * register
1798 */
1799 ctrl |= SDHCI_CTRL_VDD_180;
1800 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
1801
Vincent Yang9d967a62015-01-20 16:05:15 +08001802 /* Some controller need to do more when switching */
1803 if (host->ops->voltage_switch)
1804 host->ops->voltage_switch(host);
1805
Kevin Liu20b92a32012-12-17 19:29:26 +08001806 /* 1.8V regulator output should be stable within 5 ms */
1807 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
1808 if (ctrl & SDHCI_CTRL_VDD_180)
1809 return 0;
1810
Joe Perches66061102014-09-12 14:56:56 -07001811 pr_warn("%s: 1.8V regulator output did not became stable\n",
1812 mmc_hostname(mmc));
Kevin Liu20b92a32012-12-17 19:29:26 +08001813
1814 return -EAGAIN;
1815 case MMC_SIGNAL_VOLTAGE_120:
Adrian Hunter8cb851a2016-06-29 16:24:16 +03001816 if (!(host->flags & SDHCI_SIGNALING_120))
1817 return -EINVAL;
Tim Kryger3a48edc2014-06-13 10:13:56 -07001818 if (!IS_ERR(mmc->supply.vqmmc)) {
1819 ret = regulator_set_voltage(mmc->supply.vqmmc, 1100000,
1820 1300000);
Kevin Liu20b92a32012-12-17 19:29:26 +08001821 if (ret) {
Joe Perches66061102014-09-12 14:56:56 -07001822 pr_warn("%s: Switching to 1.2V signalling voltage failed\n",
1823 mmc_hostname(mmc));
Kevin Liu20b92a32012-12-17 19:29:26 +08001824 return -EIO;
1825 }
1826 }
1827 return 0;
1828 default:
Arindam Nathf2119df2011-05-05 12:18:57 +05301829 /* No signal voltage switch required */
1830 return 0;
Kevin Liu20b92a32012-12-17 19:29:26 +08001831 }
Arindam Nathf2119df2011-05-05 12:18:57 +05301832}
1833
Kevin Liu20b92a32012-12-17 19:29:26 +08001834static int sdhci_card_busy(struct mmc_host *mmc)
1835{
1836 struct sdhci_host *host = mmc_priv(mmc);
1837 u32 present_state;
1838
Adrian Huntere613cc42016-06-23 14:00:58 +03001839 /* Check whether DAT[0] is 0 */
Kevin Liu20b92a32012-12-17 19:29:26 +08001840 present_state = sdhci_readl(host, SDHCI_PRESENT_STATE);
Kevin Liu20b92a32012-12-17 19:29:26 +08001841
Adrian Huntere613cc42016-06-23 14:00:58 +03001842 return !(present_state & SDHCI_DATA_0_LVL_MASK);
Kevin Liu20b92a32012-12-17 19:29:26 +08001843}
1844
Adrian Hunterb5540ce2014-12-05 19:25:31 +02001845static int sdhci_prepare_hs400_tuning(struct mmc_host *mmc, struct mmc_ios *ios)
1846{
1847 struct sdhci_host *host = mmc_priv(mmc);
1848 unsigned long flags;
1849
1850 spin_lock_irqsave(&host->lock, flags);
1851 host->flags |= SDHCI_HS400_TUNING;
1852 spin_unlock_irqrestore(&host->lock, flags);
1853
1854 return 0;
1855}
1856
Girish K S069c9f12012-01-06 09:56:39 +05301857static int sdhci_execute_tuning(struct mmc_host *mmc, u32 opcode)
Arindam Nathb513ea22011-05-05 12:19:04 +05301858{
Russell King4b6f37d2014-04-25 12:59:36 +01001859 struct sdhci_host *host = mmc_priv(mmc);
Arindam Nathb513ea22011-05-05 12:19:04 +05301860 u16 ctrl;
Arindam Nathb513ea22011-05-05 12:19:04 +05301861 int tuning_loop_counter = MAX_TUNING_LOOP;
Arindam Nathb513ea22011-05-05 12:19:04 +05301862 int err = 0;
Aisheng Dong2b35bd82013-12-23 19:13:04 +08001863 unsigned long flags;
Adrian Hunter38e40bf2014-12-05 19:25:30 +02001864 unsigned int tuning_count = 0;
Adrian Hunterb5540ce2014-12-05 19:25:31 +02001865 bool hs400_tuning;
Arindam Nathb513ea22011-05-05 12:19:04 +05301866
Aisheng Dong2b35bd82013-12-23 19:13:04 +08001867 spin_lock_irqsave(&host->lock, flags);
Arindam Nathb513ea22011-05-05 12:19:04 +05301868
Adrian Hunterb5540ce2014-12-05 19:25:31 +02001869 hs400_tuning = host->flags & SDHCI_HS400_TUNING;
1870 host->flags &= ~SDHCI_HS400_TUNING;
1871
Adrian Hunter38e40bf2014-12-05 19:25:30 +02001872 if (host->tuning_mode == SDHCI_TUNING_MODE_1)
1873 tuning_count = host->tuning_count;
1874
Arindam Nathb513ea22011-05-05 12:19:04 +05301875 /*
Weijun Yang9faac7b2015-10-04 12:04:12 +00001876 * The Host Controller needs tuning in case of SDR104 and DDR50
1877 * mode, and for SDR50 mode when Use Tuning for SDR50 is set in
1878 * the Capabilities register.
Girish K S069c9f12012-01-06 09:56:39 +05301879 * If the Host Controller supports the HS200 mode then the
1880 * tuning function has to be executed.
Arindam Nathb513ea22011-05-05 12:19:04 +05301881 */
Russell King4b6f37d2014-04-25 12:59:36 +01001882 switch (host->timing) {
Adrian Hunterb5540ce2014-12-05 19:25:31 +02001883 /* HS400 tuning is done in HS200 mode */
Adrian Huntere9fb05d2014-11-06 15:19:06 +02001884 case MMC_TIMING_MMC_HS400:
Adrian Hunterb5540ce2014-12-05 19:25:31 +02001885 err = -EINVAL;
1886 goto out_unlock;
1887
Russell King4b6f37d2014-04-25 12:59:36 +01001888 case MMC_TIMING_MMC_HS200:
Adrian Hunterb5540ce2014-12-05 19:25:31 +02001889 /*
1890 * Periodic re-tuning for HS400 is not expected to be needed, so
1891 * disable it here.
1892 */
1893 if (hs400_tuning)
1894 tuning_count = 0;
1895 break;
1896
Russell King4b6f37d2014-04-25 12:59:36 +01001897 case MMC_TIMING_UHS_SDR104:
Weijun Yang9faac7b2015-10-04 12:04:12 +00001898 case MMC_TIMING_UHS_DDR50:
Russell King4b6f37d2014-04-25 12:59:36 +01001899 break;
Girish K S069c9f12012-01-06 09:56:39 +05301900
Russell King4b6f37d2014-04-25 12:59:36 +01001901 case MMC_TIMING_UHS_SDR50:
Adrian Hunter4228b212016-04-20 09:24:03 +03001902 if (host->flags & SDHCI_SDR50_NEEDS_TUNING)
Russell King4b6f37d2014-04-25 12:59:36 +01001903 break;
1904 /* FALLTHROUGH */
1905
1906 default:
Adrian Hunterd519c862014-12-05 19:25:29 +02001907 goto out_unlock;
Arindam Nathb513ea22011-05-05 12:19:04 +05301908 }
1909
Dong Aisheng45251812013-09-13 19:11:30 +08001910 if (host->ops->platform_execute_tuning) {
Aisheng Dong2b35bd82013-12-23 19:13:04 +08001911 spin_unlock_irqrestore(&host->lock, flags);
Dong Aisheng45251812013-09-13 19:11:30 +08001912 err = host->ops->platform_execute_tuning(host, opcode);
Dong Aisheng45251812013-09-13 19:11:30 +08001913 return err;
1914 }
1915
Russell King4b6f37d2014-04-25 12:59:36 +01001916 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
1917 ctrl |= SDHCI_CTRL_EXEC_TUNING;
Vincent Yang67d0d042015-01-20 16:05:16 +08001918 if (host->quirks2 & SDHCI_QUIRK2_TUNING_WORK_AROUND)
1919 ctrl |= SDHCI_CTRL_TUNED_CLK;
Arindam Nathb513ea22011-05-05 12:19:04 +05301920 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
1921
1922 /*
1923 * As per the Host Controller spec v3.00, tuning command
1924 * generates Buffer Read Ready interrupt, so enable that.
1925 *
1926 * Note: The spec clearly says that when tuning sequence
1927 * is being performed, the controller does not generate
1928 * interrupts other than Buffer Read Ready interrupt. But
1929 * to make sure we don't hit a controller bug, we _only_
1930 * enable Buffer Read Ready interrupt here.
1931 */
Russell Kingb537f942014-04-25 12:56:01 +01001932 sdhci_writel(host, SDHCI_INT_DATA_AVAIL, SDHCI_INT_ENABLE);
1933 sdhci_writel(host, SDHCI_INT_DATA_AVAIL, SDHCI_SIGNAL_ENABLE);
Arindam Nathb513ea22011-05-05 12:19:04 +05301934
1935 /*
1936 * Issue CMD19 repeatedly till Execute Tuning is set to 0 or the number
Simon Horman1473bdd2016-05-13 13:24:31 +09001937 * of loops reaches 40 times.
Arindam Nathb513ea22011-05-05 12:19:04 +05301938 */
Arindam Nathb513ea22011-05-05 12:19:04 +05301939 do {
1940 struct mmc_command cmd = {0};
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001941 struct mmc_request mrq = {NULL};
Arindam Nathb513ea22011-05-05 12:19:04 +05301942
Girish K S069c9f12012-01-06 09:56:39 +05301943 cmd.opcode = opcode;
Arindam Nathb513ea22011-05-05 12:19:04 +05301944 cmd.arg = 0;
1945 cmd.flags = MMC_RSP_R1 | MMC_CMD_ADTC;
1946 cmd.retries = 0;
1947 cmd.data = NULL;
1948 cmd.error = 0;
1949
Al Cooper7ce45e92014-05-09 11:34:07 -04001950 if (tuning_loop_counter-- == 0)
1951 break;
1952
Arindam Nathb513ea22011-05-05 12:19:04 +05301953 mrq.cmd = &cmd;
1954 host->mrq = &mrq;
1955
1956 /*
1957 * In response to CMD19, the card sends 64 bytes of tuning
1958 * block to the Host Controller. So we set the block size
1959 * to 64 here.
1960 */
Girish K S069c9f12012-01-06 09:56:39 +05301961 if (cmd.opcode == MMC_SEND_TUNING_BLOCK_HS200) {
1962 if (mmc->ios.bus_width == MMC_BUS_WIDTH_8)
1963 sdhci_writew(host, SDHCI_MAKE_BLKSZ(7, 128),
1964 SDHCI_BLOCK_SIZE);
1965 else if (mmc->ios.bus_width == MMC_BUS_WIDTH_4)
1966 sdhci_writew(host, SDHCI_MAKE_BLKSZ(7, 64),
1967 SDHCI_BLOCK_SIZE);
1968 } else {
1969 sdhci_writew(host, SDHCI_MAKE_BLKSZ(7, 64),
1970 SDHCI_BLOCK_SIZE);
1971 }
Arindam Nathb513ea22011-05-05 12:19:04 +05301972
1973 /*
1974 * The tuning block is sent by the card to the host controller.
1975 * So we set the TRNS_READ bit in the Transfer Mode register.
1976 * This also takes care of setting DMA Enable and Multi Block
1977 * Select in the same register to 0.
1978 */
1979 sdhci_writew(host, SDHCI_TRNS_READ, SDHCI_TRANSFER_MODE);
1980
1981 sdhci_send_command(host, &cmd);
1982
1983 host->cmd = NULL;
1984 host->mrq = NULL;
1985
Aisheng Dong2b35bd82013-12-23 19:13:04 +08001986 spin_unlock_irqrestore(&host->lock, flags);
Arindam Nathb513ea22011-05-05 12:19:04 +05301987 /* Wait for Buffer Read Ready interrupt */
1988 wait_event_interruptible_timeout(host->buf_ready_int,
1989 (host->tuning_done == 1),
1990 msecs_to_jiffies(50));
Aisheng Dong2b35bd82013-12-23 19:13:04 +08001991 spin_lock_irqsave(&host->lock, flags);
Arindam Nathb513ea22011-05-05 12:19:04 +05301992
1993 if (!host->tuning_done) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01001994 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 +05301995 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
1996 ctrl &= ~SDHCI_CTRL_TUNED_CLK;
1997 ctrl &= ~SDHCI_CTRL_EXEC_TUNING;
1998 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
1999
2000 err = -EIO;
2001 goto out;
2002 }
2003
2004 host->tuning_done = 0;
2005
2006 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
Nick Sanders197160d2014-05-06 18:52:38 -07002007
2008 /* eMMC spec does not require a delay between tuning cycles */
2009 if (opcode == MMC_SEND_TUNING_BLOCK)
2010 mdelay(1);
Arindam Nathb513ea22011-05-05 12:19:04 +05302011 } while (ctrl & SDHCI_CTRL_EXEC_TUNING);
2012
2013 /*
2014 * The Host Driver has exhausted the maximum number of loops allowed,
2015 * so use fixed sampling frequency.
2016 */
Al Cooper7ce45e92014-05-09 11:34:07 -04002017 if (tuning_loop_counter < 0) {
Arindam Nathb513ea22011-05-05 12:19:04 +05302018 ctrl &= ~SDHCI_CTRL_TUNED_CLK;
2019 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
Al Cooper7ce45e92014-05-09 11:34:07 -04002020 }
2021 if (!(ctrl & SDHCI_CTRL_TUNED_CLK)) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01002022 pr_info(DRIVER_NAME ": Tuning procedure failed, falling back to fixed sampling clock\n");
Dong Aisheng114f2bf2013-10-18 19:48:45 +08002023 err = -EIO;
Arindam Nathb513ea22011-05-05 12:19:04 +05302024 }
2025
2026out:
Adrian Hunter38e40bf2014-12-05 19:25:30 +02002027 if (tuning_count) {
Adrian Hunter66c39dfc2015-05-07 13:10:21 +03002028 /*
2029 * In case tuning fails, host controllers which support
2030 * re-tuning can try tuning again at a later time, when the
2031 * re-tuning timer expires. So for these controllers, we
2032 * return 0. Since there might be other controllers who do not
2033 * have this capability, we return error for them.
2034 */
2035 err = 0;
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05302036 }
2037
Adrian Hunter66c39dfc2015-05-07 13:10:21 +03002038 host->mmc->retune_period = err ? 0 : tuning_count;
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05302039
Russell Kingb537f942014-04-25 12:56:01 +01002040 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
2041 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Adrian Hunterd519c862014-12-05 19:25:29 +02002042out_unlock:
Aisheng Dong2b35bd82013-12-23 19:13:04 +08002043 spin_unlock_irqrestore(&host->lock, flags);
Arindam Nathb513ea22011-05-05 12:19:04 +05302044 return err;
2045}
2046
Adrian Huntercb849642015-02-06 14:12:59 +02002047static int sdhci_select_drive_strength(struct mmc_card *card,
2048 unsigned int max_dtr, int host_drv,
2049 int card_drv, int *drv_type)
2050{
2051 struct sdhci_host *host = mmc_priv(card->host);
2052
2053 if (!host->ops->select_drive_strength)
2054 return 0;
2055
2056 return host->ops->select_drive_strength(host, card, max_dtr, host_drv,
2057 card_drv, drv_type);
2058}
Kevin Liu52983382013-01-31 11:31:37 +08002059
2060static void sdhci_enable_preset_value(struct sdhci_host *host, bool enable)
Arindam Nath4d55c5a2011-05-05 12:19:05 +05302061{
Arindam Nath4d55c5a2011-05-05 12:19:05 +05302062 /* Host Controller v3.00 defines preset value registers */
2063 if (host->version < SDHCI_SPEC_300)
2064 return;
2065
Arindam Nath4d55c5a2011-05-05 12:19:05 +05302066 /*
2067 * We only enable or disable Preset Value if they are not already
2068 * enabled or disabled respectively. Otherwise, we bail out.
2069 */
Russell Kingda91a8f2014-04-25 13:00:12 +01002070 if (host->preset_enabled != enable) {
2071 u16 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
2072
2073 if (enable)
2074 ctrl |= SDHCI_CTRL_PRESET_VAL_ENABLE;
2075 else
2076 ctrl &= ~SDHCI_CTRL_PRESET_VAL_ENABLE;
2077
Arindam Nath4d55c5a2011-05-05 12:19:05 +05302078 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
Russell Kingda91a8f2014-04-25 13:00:12 +01002079
2080 if (enable)
2081 host->flags |= SDHCI_PV_ENABLED;
2082 else
2083 host->flags &= ~SDHCI_PV_ENABLED;
2084
2085 host->preset_enabled = enable;
Arindam Nath4d55c5a2011-05-05 12:19:05 +05302086 }
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002087}
2088
Haibo Chen348487c2014-12-09 17:04:05 +08002089static void sdhci_post_req(struct mmc_host *mmc, struct mmc_request *mrq,
2090 int err)
2091{
2092 struct sdhci_host *host = mmc_priv(mmc);
2093 struct mmc_data *data = mrq->data;
2094
Russell Kingf48f0392016-01-26 13:40:32 +00002095 if (data->host_cookie != COOKIE_UNMAPPED)
Russell King771a3dc2016-01-26 13:40:53 +00002096 dma_unmap_sg(mmc_dev(host->mmc), data->sg, data->sg_len,
2097 data->flags & MMC_DATA_WRITE ?
2098 DMA_TO_DEVICE : DMA_FROM_DEVICE);
2099
2100 data->host_cookie = COOKIE_UNMAPPED;
Haibo Chen348487c2014-12-09 17:04:05 +08002101}
2102
Haibo Chen348487c2014-12-09 17:04:05 +08002103static void sdhci_pre_req(struct mmc_host *mmc, struct mmc_request *mrq,
2104 bool is_first_req)
2105{
2106 struct sdhci_host *host = mmc_priv(mmc);
2107
Haibo Chend31911b2015-08-25 10:02:11 +08002108 mrq->data->host_cookie = COOKIE_UNMAPPED;
Haibo Chen348487c2014-12-09 17:04:05 +08002109
2110 if (host->flags & SDHCI_REQ_USE_DMA)
Russell King94538e52016-01-26 13:40:37 +00002111 sdhci_pre_dma_transfer(host, mrq->data, COOKIE_PRE_MAPPED);
Haibo Chen348487c2014-12-09 17:04:05 +08002112}
2113
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002114static void sdhci_card_event(struct mmc_host *mmc)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002115{
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002116 struct sdhci_host *host = mmc_priv(mmc);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002117 unsigned long flags;
Krzysztof Kozlowski28367662015-01-05 10:50:15 +01002118 int present;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002119
Christian Daudt722e1282013-06-20 14:26:36 -07002120 /* First check if client has provided their own card event */
2121 if (host->ops->card_event)
2122 host->ops->card_event(host);
2123
Adrian Hunterd3940f22016-06-29 16:24:14 +03002124 present = mmc->ops->get_cd(mmc);
Krzysztof Kozlowski28367662015-01-05 10:50:15 +01002125
Pierre Ossmand129bce2006-03-24 03:18:17 -08002126 spin_lock_irqsave(&host->lock, flags);
2127
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002128 /* Check host->mrq first in case we are runtime suspended */
Krzysztof Kozlowski28367662015-01-05 10:50:15 +01002129 if (host->mrq && !present) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05302130 pr_err("%s: Card removed during transfer!\n",
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002131 mmc_hostname(host->mmc));
Girish K Sa3c76eb2011-10-11 11:44:09 +05302132 pr_err("%s: Resetting controller.\n",
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002133 mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -08002134
Russell King03231f92014-04-25 12:57:12 +01002135 sdhci_do_reset(host, SDHCI_RESET_CMD);
2136 sdhci_do_reset(host, SDHCI_RESET_DATA);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002137
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002138 host->mrq->cmd->error = -ENOMEDIUM;
2139 tasklet_schedule(&host->finish_tasklet);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002140 }
2141
2142 spin_unlock_irqrestore(&host->lock, flags);
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002143}
2144
2145static const struct mmc_host_ops sdhci_ops = {
2146 .request = sdhci_request,
Haibo Chen348487c2014-12-09 17:04:05 +08002147 .post_req = sdhci_post_req,
2148 .pre_req = sdhci_pre_req,
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002149 .set_ios = sdhci_set_ios,
Kevin Liu94144a42013-02-28 17:35:53 +08002150 .get_cd = sdhci_get_cd,
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002151 .get_ro = sdhci_get_ro,
2152 .hw_reset = sdhci_hw_reset,
2153 .enable_sdio_irq = sdhci_enable_sdio_irq,
2154 .start_signal_voltage_switch = sdhci_start_signal_voltage_switch,
Adrian Hunterb5540ce2014-12-05 19:25:31 +02002155 .prepare_hs400_tuning = sdhci_prepare_hs400_tuning,
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002156 .execute_tuning = sdhci_execute_tuning,
Adrian Huntercb849642015-02-06 14:12:59 +02002157 .select_drive_strength = sdhci_select_drive_strength,
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002158 .card_event = sdhci_card_event,
Kevin Liu20b92a32012-12-17 19:29:26 +08002159 .card_busy = sdhci_card_busy,
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002160};
2161
2162/*****************************************************************************\
2163 * *
2164 * Tasklets *
2165 * *
2166\*****************************************************************************/
2167
Pierre Ossmand129bce2006-03-24 03:18:17 -08002168static void sdhci_tasklet_finish(unsigned long param)
2169{
2170 struct sdhci_host *host;
2171 unsigned long flags;
2172 struct mmc_request *mrq;
2173
2174 host = (struct sdhci_host*)param;
2175
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002176 spin_lock_irqsave(&host->lock, flags);
2177
Chris Ball0c9c99a2011-04-27 17:35:31 -04002178 /*
2179 * If this tasklet gets rescheduled while running, it will
2180 * be run again afterwards but without any active request.
2181 */
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002182 if (!host->mrq) {
2183 spin_unlock_irqrestore(&host->lock, flags);
Chris Ball0c9c99a2011-04-27 17:35:31 -04002184 return;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002185 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08002186
2187 del_timer(&host->timer);
2188
2189 mrq = host->mrq;
2190
Pierre Ossmand129bce2006-03-24 03:18:17 -08002191 /*
Russell King054cedf2016-01-26 13:40:42 +00002192 * Always unmap the data buffers if they were mapped by
2193 * sdhci_prepare_data() whenever we finish with a request.
2194 * This avoids leaking DMA mappings on error.
2195 */
2196 if (host->flags & SDHCI_REQ_USE_DMA) {
2197 struct mmc_data *data = mrq->data;
2198
2199 if (data && data->host_cookie == COOKIE_MAPPED) {
2200 dma_unmap_sg(mmc_dev(host->mmc), data->sg, data->sg_len,
2201 (data->flags & MMC_DATA_READ) ?
2202 DMA_FROM_DEVICE : DMA_TO_DEVICE);
2203 data->host_cookie = COOKIE_UNMAPPED;
2204 }
2205 }
2206
2207 /*
Pierre Ossmand129bce2006-03-24 03:18:17 -08002208 * The controller needs a reset of internal state machines
2209 * upon error conditions.
2210 */
Pierre Ossman1e728592008-04-16 19:13:13 +02002211 if (!(host->flags & SDHCI_DEVICE_DEAD) &&
Ben Dooksb7b4d342011-04-27 14:24:19 +01002212 ((mrq->cmd && mrq->cmd->error) ||
Andrew Gabbasovfce9d332014-10-01 07:14:08 -05002213 (mrq->sbc && mrq->sbc->error) ||
2214 (mrq->data && ((mrq->data->error && !mrq->data->stop) ||
2215 (mrq->data->stop && mrq->data->stop->error))) ||
2216 (host->quirks & SDHCI_QUIRK_RESET_AFTER_REQUEST))) {
Pierre Ossman645289d2006-06-30 02:22:33 -07002217
2218 /* Some controllers need this kick or reset won't work here */
Andy Shevchenko8213af32013-01-07 16:31:08 +02002219 if (host->quirks & SDHCI_QUIRK_CLOCK_BEFORE_RESET)
Pierre Ossman645289d2006-06-30 02:22:33 -07002220 /* This is to force an update */
Russell King17710592014-04-25 12:58:55 +01002221 host->ops->set_clock(host, host->clock);
Pierre Ossman645289d2006-06-30 02:22:33 -07002222
2223 /* Spec says we should do both at the same time, but Ricoh
2224 controllers do not like that. */
Russell King03231f92014-04-25 12:57:12 +01002225 sdhci_do_reset(host, SDHCI_RESET_CMD);
2226 sdhci_do_reset(host, SDHCI_RESET_DATA);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002227 }
2228
2229 host->mrq = NULL;
2230 host->cmd = NULL;
2231 host->data = NULL;
Adrian Hunter7c89a3d2016-06-29 16:24:23 +03002232 host->data_cmd = NULL;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002233
Adrian Hunter061d17a2016-04-12 14:25:09 +03002234 sdhci_led_deactivate(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002235
Pierre Ossman5f25a662006-10-04 02:15:39 -07002236 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -08002237 spin_unlock_irqrestore(&host->lock, flags);
2238
2239 mmc_request_done(host->mmc, mrq);
2240}
2241
2242static void sdhci_timeout_timer(unsigned long data)
2243{
2244 struct sdhci_host *host;
2245 unsigned long flags;
2246
2247 host = (struct sdhci_host*)data;
2248
2249 spin_lock_irqsave(&host->lock, flags);
2250
2251 if (host->mrq) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01002252 pr_err("%s: Timeout waiting for hardware interrupt.\n",
2253 mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -08002254 sdhci_dumpregs(host);
2255
2256 if (host->data) {
Pierre Ossman17b04292007-07-22 22:18:46 +02002257 host->data->error = -ETIMEDOUT;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002258 sdhci_finish_data(host);
2259 } else {
2260 if (host->cmd)
Pierre Ossman17b04292007-07-22 22:18:46 +02002261 host->cmd->error = -ETIMEDOUT;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002262 else
Pierre Ossman17b04292007-07-22 22:18:46 +02002263 host->mrq->cmd->error = -ETIMEDOUT;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002264
2265 tasklet_schedule(&host->finish_tasklet);
2266 }
2267 }
2268
Pierre Ossman5f25a662006-10-04 02:15:39 -07002269 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -08002270 spin_unlock_irqrestore(&host->lock, flags);
2271}
2272
2273/*****************************************************************************\
2274 * *
2275 * Interrupt handling *
2276 * *
2277\*****************************************************************************/
2278
Adrian Hunter61541392014-09-24 10:27:27 +03002279static void sdhci_cmd_irq(struct sdhci_host *host, u32 intmask, u32 *mask)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002280{
Pierre Ossmand129bce2006-03-24 03:18:17 -08002281 if (!host->cmd) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01002282 pr_err("%s: Got command interrupt 0x%08x even though no command operation was in progress.\n",
2283 mmc_hostname(host->mmc), (unsigned)intmask);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002284 sdhci_dumpregs(host);
2285 return;
2286 }
2287
Russell Kingec014cb2016-01-26 13:39:39 +00002288 if (intmask & (SDHCI_INT_TIMEOUT | SDHCI_INT_CRC |
2289 SDHCI_INT_END_BIT | SDHCI_INT_INDEX)) {
2290 if (intmask & SDHCI_INT_TIMEOUT)
2291 host->cmd->error = -ETIMEDOUT;
2292 else
2293 host->cmd->error = -EILSEQ;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002294
Russell King71fcbda2016-01-26 13:39:45 +00002295 /*
2296 * If this command initiates a data phase and a response
2297 * CRC error is signalled, the card can start transferring
2298 * data - the card may have received the command without
2299 * error. We must not terminate the mmc_request early.
2300 *
2301 * If the card did not receive the command or returned an
2302 * error which prevented it sending data, the data phase
2303 * will time out.
2304 */
2305 if (host->cmd->data &&
2306 (intmask & (SDHCI_INT_CRC | SDHCI_INT_TIMEOUT)) ==
2307 SDHCI_INT_CRC) {
2308 host->cmd = NULL;
2309 return;
2310 }
2311
Pierre Ossmand129bce2006-03-24 03:18:17 -08002312 tasklet_schedule(&host->finish_tasklet);
Pierre Ossmane8095172008-07-25 01:09:08 +02002313 return;
2314 }
2315
Adrian Hunter6bde8682016-06-29 16:24:20 +03002316 if ((host->quirks2 & SDHCI_QUIRK2_STOP_WITH_TC) &&
2317 !(host->cmd->flags & MMC_RSP_BUSY) && !host->data &&
2318 host->cmd->opcode == MMC_STOP_TRANSMISSION)
Adrian Hunter61541392014-09-24 10:27:27 +03002319 *mask &= ~SDHCI_INT_DATA_END;
Pierre Ossmane8095172008-07-25 01:09:08 +02002320
2321 if (intmask & SDHCI_INT_RESPONSE)
Pierre Ossman43b58b32007-07-25 23:15:27 +02002322 sdhci_finish_command(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002323}
2324
George G. Davis0957c332010-02-18 12:32:12 -05002325#ifdef CONFIG_MMC_DEBUG
Adrian Hunter08621b12014-11-04 12:42:38 +02002326static void sdhci_adma_show_error(struct sdhci_host *host)
Ben Dooks6882a8c2009-06-14 13:52:38 +01002327{
2328 const char *name = mmc_hostname(host->mmc);
Adrian Hunter1c3d5f62014-11-04 12:42:41 +02002329 void *desc = host->adma_table;
Ben Dooks6882a8c2009-06-14 13:52:38 +01002330
2331 sdhci_dumpregs(host);
2332
2333 while (true) {
Adrian Huntere57a5f62014-11-04 12:42:46 +02002334 struct sdhci_adma2_64_desc *dma_desc = desc;
Ben Dooks6882a8c2009-06-14 13:52:38 +01002335
Adrian Huntere57a5f62014-11-04 12:42:46 +02002336 if (host->flags & SDHCI_USE_64_BIT_DMA)
2337 DBG("%s: %p: DMA 0x%08x%08x, LEN 0x%04x, Attr=0x%02x\n",
2338 name, desc, le32_to_cpu(dma_desc->addr_hi),
2339 le32_to_cpu(dma_desc->addr_lo),
2340 le16_to_cpu(dma_desc->len),
2341 le16_to_cpu(dma_desc->cmd));
2342 else
2343 DBG("%s: %p: DMA 0x%08x, LEN 0x%04x, Attr=0x%02x\n",
2344 name, desc, le32_to_cpu(dma_desc->addr_lo),
2345 le16_to_cpu(dma_desc->len),
2346 le16_to_cpu(dma_desc->cmd));
Ben Dooks6882a8c2009-06-14 13:52:38 +01002347
Adrian Hunter76fe3792014-11-04 12:42:42 +02002348 desc += host->desc_sz;
Ben Dooks6882a8c2009-06-14 13:52:38 +01002349
Adrian Hunter05452302014-11-04 12:42:45 +02002350 if (dma_desc->cmd & cpu_to_le16(ADMA2_END))
Ben Dooks6882a8c2009-06-14 13:52:38 +01002351 break;
2352 }
2353}
2354#else
Adrian Hunter08621b12014-11-04 12:42:38 +02002355static void sdhci_adma_show_error(struct sdhci_host *host) { }
Ben Dooks6882a8c2009-06-14 13:52:38 +01002356#endif
2357
Pierre Ossmand129bce2006-03-24 03:18:17 -08002358static void sdhci_data_irq(struct sdhci_host *host, u32 intmask)
2359{
Girish K S069c9f12012-01-06 09:56:39 +05302360 u32 command;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002361
Arindam Nathb513ea22011-05-05 12:19:04 +05302362 /* CMD19 generates _only_ Buffer Read Ready interrupt */
2363 if (intmask & SDHCI_INT_DATA_AVAIL) {
Girish K S069c9f12012-01-06 09:56:39 +05302364 command = SDHCI_GET_CMD(sdhci_readw(host, SDHCI_COMMAND));
2365 if (command == MMC_SEND_TUNING_BLOCK ||
2366 command == MMC_SEND_TUNING_BLOCK_HS200) {
Arindam Nathb513ea22011-05-05 12:19:04 +05302367 host->tuning_done = 1;
2368 wake_up(&host->buf_ready_int);
2369 return;
2370 }
2371 }
2372
Pierre Ossmand129bce2006-03-24 03:18:17 -08002373 if (!host->data) {
Adrian Hunter7c89a3d2016-06-29 16:24:23 +03002374 struct mmc_command *data_cmd = host->data_cmd;
2375
2376 if (data_cmd)
2377 host->data_cmd = NULL;
2378
Pierre Ossmand129bce2006-03-24 03:18:17 -08002379 /*
Pierre Ossmane8095172008-07-25 01:09:08 +02002380 * The "data complete" interrupt is also used to
2381 * indicate that a busy state has ended. See comment
2382 * above in sdhci_cmd_irq().
Pierre Ossmand129bce2006-03-24 03:18:17 -08002383 */
Adrian Hunter7c89a3d2016-06-29 16:24:23 +03002384 if (data_cmd && (data_cmd->flags & MMC_RSP_BUSY)) {
Matthieu CASTETc5abd5e2014-08-14 16:03:17 +02002385 if (intmask & SDHCI_INT_DATA_TIMEOUT) {
Adrian Hunter7c89a3d2016-06-29 16:24:23 +03002386 data_cmd->error = -ETIMEDOUT;
Matthieu CASTETc5abd5e2014-08-14 16:03:17 +02002387 tasklet_schedule(&host->finish_tasklet);
2388 return;
2389 }
Pierre Ossmane8095172008-07-25 01:09:08 +02002390 if (intmask & SDHCI_INT_DATA_END) {
Chanho Mine99783a2014-08-30 12:40:40 +09002391 /*
2392 * Some cards handle busy-end interrupt
2393 * before the command completed, so make
2394 * sure we do things in the proper order.
2395 */
2396 if (host->busy_handle)
Adrian Hunter6bde8682016-06-29 16:24:20 +03002397 tasklet_schedule(&host->finish_tasklet);
Chanho Mine99783a2014-08-30 12:40:40 +09002398 else
2399 host->busy_handle = 1;
Pierre Ossmane8095172008-07-25 01:09:08 +02002400 return;
2401 }
2402 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08002403
Marek Vasut2e4456f2015-11-18 10:47:02 +01002404 pr_err("%s: Got data interrupt 0x%08x even though no data operation was in progress.\n",
2405 mmc_hostname(host->mmc), (unsigned)intmask);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002406 sdhci_dumpregs(host);
2407
2408 return;
2409 }
2410
2411 if (intmask & SDHCI_INT_DATA_TIMEOUT)
Pierre Ossman17b04292007-07-22 22:18:46 +02002412 host->data->error = -ETIMEDOUT;
Aries Lee22113ef2010-12-15 08:14:24 +01002413 else if (intmask & SDHCI_INT_DATA_END_BIT)
2414 host->data->error = -EILSEQ;
2415 else if ((intmask & SDHCI_INT_DATA_CRC) &&
2416 SDHCI_GET_CMD(sdhci_readw(host, SDHCI_COMMAND))
2417 != MMC_BUS_TEST_R)
Pierre Ossman17b04292007-07-22 22:18:46 +02002418 host->data->error = -EILSEQ;
Ben Dooks6882a8c2009-06-14 13:52:38 +01002419 else if (intmask & SDHCI_INT_ADMA_ERROR) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05302420 pr_err("%s: ADMA error\n", mmc_hostname(host->mmc));
Adrian Hunter08621b12014-11-04 12:42:38 +02002421 sdhci_adma_show_error(host);
Pierre Ossman2134a922008-06-28 18:28:51 +02002422 host->data->error = -EIO;
Haijun Zhanga4071fb2012-12-04 10:41:28 +08002423 if (host->ops->adma_workaround)
2424 host->ops->adma_workaround(host, intmask);
Ben Dooks6882a8c2009-06-14 13:52:38 +01002425 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08002426
Pierre Ossman17b04292007-07-22 22:18:46 +02002427 if (host->data->error)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002428 sdhci_finish_data(host);
2429 else {
Pierre Ossmana406f5a2006-07-02 16:50:59 +01002430 if (intmask & (SDHCI_INT_DATA_AVAIL | SDHCI_INT_SPACE_AVAIL))
Pierre Ossmand129bce2006-03-24 03:18:17 -08002431 sdhci_transfer_pio(host);
2432
Pierre Ossman6ba736a2007-05-13 22:39:23 +02002433 /*
2434 * We currently don't do anything fancy with DMA
2435 * boundaries, but as we can't disable the feature
2436 * we need to at least restart the transfer.
Mikko Vinnif6a03cb2011-04-12 09:36:18 -04002437 *
2438 * According to the spec sdhci_readl(host, SDHCI_DMA_ADDRESS)
2439 * should return a valid address to continue from, but as
2440 * some controllers are faulty, don't trust them.
Pierre Ossman6ba736a2007-05-13 22:39:23 +02002441 */
Mikko Vinnif6a03cb2011-04-12 09:36:18 -04002442 if (intmask & SDHCI_INT_DMA_END) {
2443 u32 dmastart, dmanow;
2444 dmastart = sg_dma_address(host->data->sg);
2445 dmanow = dmastart + host->data->bytes_xfered;
2446 /*
2447 * Force update to the next DMA block boundary.
2448 */
2449 dmanow = (dmanow &
2450 ~(SDHCI_DEFAULT_BOUNDARY_SIZE - 1)) +
2451 SDHCI_DEFAULT_BOUNDARY_SIZE;
2452 host->data->bytes_xfered = dmanow - dmastart;
2453 DBG("%s: DMA base 0x%08x, transferred 0x%06x bytes,"
2454 " next 0x%08x\n",
2455 mmc_hostname(host->mmc), dmastart,
2456 host->data->bytes_xfered, dmanow);
2457 sdhci_writel(host, dmanow, SDHCI_DMA_ADDRESS);
2458 }
Pierre Ossman6ba736a2007-05-13 22:39:23 +02002459
Pierre Ossmane538fbe2007-08-12 16:46:32 +02002460 if (intmask & SDHCI_INT_DATA_END) {
Adrian Hunter7c89a3d2016-06-29 16:24:23 +03002461 if (host->cmd == host->data_cmd) {
Pierre Ossmane538fbe2007-08-12 16:46:32 +02002462 /*
2463 * Data managed to finish before the
2464 * command completed. Make sure we do
2465 * things in the proper order.
2466 */
2467 host->data_early = 1;
2468 } else {
2469 sdhci_finish_data(host);
2470 }
2471 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08002472 }
2473}
2474
David Howells7d12e782006-10-05 14:55:46 +01002475static irqreturn_t sdhci_irq(int irq, void *dev_id)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002476{
Russell King781e9892014-04-25 12:55:46 +01002477 irqreturn_t result = IRQ_NONE;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002478 struct sdhci_host *host = dev_id;
Russell King41005002014-04-25 12:55:36 +01002479 u32 intmask, mask, unexpected = 0;
Russell King781e9892014-04-25 12:55:46 +01002480 int max_loops = 16;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002481
2482 spin_lock(&host->lock);
2483
Russell Kingbe138552014-04-25 12:55:56 +01002484 if (host->runtime_suspended && !sdhci_sdio_irq_enabled(host)) {
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002485 spin_unlock(&host->lock);
Adrian Hunter655bca72014-03-11 10:09:36 +02002486 return IRQ_NONE;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002487 }
2488
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03002489 intmask = sdhci_readl(host, SDHCI_INT_STATUS);
Mark Lord62df67a52007-03-06 13:30:13 +01002490 if (!intmask || intmask == 0xffffffff) {
Pierre Ossmand129bce2006-03-24 03:18:17 -08002491 result = IRQ_NONE;
2492 goto out;
2493 }
2494
Russell King41005002014-04-25 12:55:36 +01002495 do {
2496 /* Clear selected interrupts. */
2497 mask = intmask & (SDHCI_INT_CMD_MASK | SDHCI_INT_DATA_MASK |
2498 SDHCI_INT_BUS_POWER);
2499 sdhci_writel(host, mask, SDHCI_INT_STATUS);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002500
Russell King41005002014-04-25 12:55:36 +01002501 DBG("*** %s got interrupt: 0x%08x\n",
2502 mmc_hostname(host->mmc), intmask);
2503
2504 if (intmask & (SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE)) {
2505 u32 present = sdhci_readl(host, SDHCI_PRESENT_STATE) &
2506 SDHCI_CARD_PRESENT;
2507
2508 /*
2509 * There is a observation on i.mx esdhc. INSERT
2510 * bit will be immediately set again when it gets
2511 * cleared, if a card is inserted. We have to mask
2512 * the irq to prevent interrupt storm which will
2513 * freeze the system. And the REMOVE gets the
2514 * same situation.
2515 *
2516 * More testing are needed here to ensure it works
2517 * for other platforms though.
2518 */
Russell Kingb537f942014-04-25 12:56:01 +01002519 host->ier &= ~(SDHCI_INT_CARD_INSERT |
2520 SDHCI_INT_CARD_REMOVE);
2521 host->ier |= present ? SDHCI_INT_CARD_REMOVE :
2522 SDHCI_INT_CARD_INSERT;
2523 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
2524 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Russell King41005002014-04-25 12:55:36 +01002525
2526 sdhci_writel(host, intmask & (SDHCI_INT_CARD_INSERT |
2527 SDHCI_INT_CARD_REMOVE), SDHCI_INT_STATUS);
Russell King3560db82014-04-25 12:55:51 +01002528
2529 host->thread_isr |= intmask & (SDHCI_INT_CARD_INSERT |
2530 SDHCI_INT_CARD_REMOVE);
2531 result = IRQ_WAKE_THREAD;
Russell King41005002014-04-25 12:55:36 +01002532 }
2533
2534 if (intmask & SDHCI_INT_CMD_MASK)
Adrian Hunter61541392014-09-24 10:27:27 +03002535 sdhci_cmd_irq(host, intmask & SDHCI_INT_CMD_MASK,
2536 &intmask);
Russell King41005002014-04-25 12:55:36 +01002537
2538 if (intmask & SDHCI_INT_DATA_MASK)
2539 sdhci_data_irq(host, intmask & SDHCI_INT_DATA_MASK);
2540
2541 if (intmask & SDHCI_INT_BUS_POWER)
2542 pr_err("%s: Card is consuming too much power!\n",
2543 mmc_hostname(host->mmc));
2544
Russell King781e9892014-04-25 12:55:46 +01002545 if (intmask & SDHCI_INT_CARD_INT) {
2546 sdhci_enable_sdio_irq_nolock(host, false);
2547 host->thread_isr |= SDHCI_INT_CARD_INT;
2548 result = IRQ_WAKE_THREAD;
2549 }
Russell King41005002014-04-25 12:55:36 +01002550
2551 intmask &= ~(SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE |
2552 SDHCI_INT_CMD_MASK | SDHCI_INT_DATA_MASK |
2553 SDHCI_INT_ERROR | SDHCI_INT_BUS_POWER |
2554 SDHCI_INT_CARD_INT);
2555
2556 if (intmask) {
2557 unexpected |= intmask;
2558 sdhci_writel(host, intmask, SDHCI_INT_STATUS);
2559 }
2560
Russell King781e9892014-04-25 12:55:46 +01002561 if (result == IRQ_NONE)
2562 result = IRQ_HANDLED;
Russell King41005002014-04-25 12:55:36 +01002563
2564 intmask = sdhci_readl(host, SDHCI_INT_STATUS);
Russell King41005002014-04-25 12:55:36 +01002565 } while (intmask && --max_loops);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002566out:
2567 spin_unlock(&host->lock);
2568
Alexander Stein6379b232012-03-14 09:52:10 +01002569 if (unexpected) {
2570 pr_err("%s: Unexpected interrupt 0x%08x.\n",
2571 mmc_hostname(host->mmc), unexpected);
2572 sdhci_dumpregs(host);
2573 }
Pierre Ossmanf75979b2007-09-04 07:59:18 +02002574
Pierre Ossmand129bce2006-03-24 03:18:17 -08002575 return result;
2576}
2577
Russell King781e9892014-04-25 12:55:46 +01002578static irqreturn_t sdhci_thread_irq(int irq, void *dev_id)
2579{
2580 struct sdhci_host *host = dev_id;
2581 unsigned long flags;
2582 u32 isr;
2583
2584 spin_lock_irqsave(&host->lock, flags);
2585 isr = host->thread_isr;
2586 host->thread_isr = 0;
2587 spin_unlock_irqrestore(&host->lock, flags);
2588
Russell King3560db82014-04-25 12:55:51 +01002589 if (isr & (SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE)) {
Adrian Hunterd3940f22016-06-29 16:24:14 +03002590 struct mmc_host *mmc = host->mmc;
2591
2592 mmc->ops->card_event(mmc);
2593 mmc_detect_change(mmc, msecs_to_jiffies(200));
Russell King3560db82014-04-25 12:55:51 +01002594 }
2595
Russell King781e9892014-04-25 12:55:46 +01002596 if (isr & SDHCI_INT_CARD_INT) {
2597 sdio_run_irqs(host->mmc);
2598
2599 spin_lock_irqsave(&host->lock, flags);
2600 if (host->flags & SDHCI_SDIO_IRQ_ENABLED)
2601 sdhci_enable_sdio_irq_nolock(host, true);
2602 spin_unlock_irqrestore(&host->lock, flags);
2603 }
2604
2605 return isr ? IRQ_HANDLED : IRQ_NONE;
2606}
2607
Pierre Ossmand129bce2006-03-24 03:18:17 -08002608/*****************************************************************************\
2609 * *
2610 * Suspend/resume *
2611 * *
2612\*****************************************************************************/
2613
2614#ifdef CONFIG_PM
Ludovic Desroches84d62602016-05-13 15:16:02 +02002615/*
2616 * To enable wakeup events, the corresponding events have to be enabled in
2617 * the Interrupt Status Enable register too. See 'Table 1-6: Wakeup Signal
2618 * Table' in the SD Host Controller Standard Specification.
2619 * It is useless to restore SDHCI_INT_ENABLE state in
2620 * sdhci_disable_irq_wakeups() since it will be set by
2621 * sdhci_enable_card_detection() or sdhci_init().
2622 */
Kevin Liuad080d72013-01-05 17:21:33 +08002623void sdhci_enable_irq_wakeups(struct sdhci_host *host)
2624{
2625 u8 val;
2626 u8 mask = SDHCI_WAKE_ON_INSERT | SDHCI_WAKE_ON_REMOVE
2627 | SDHCI_WAKE_ON_INT;
Ludovic Desroches84d62602016-05-13 15:16:02 +02002628 u32 irq_val = SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE |
2629 SDHCI_INT_CARD_INT;
Kevin Liuad080d72013-01-05 17:21:33 +08002630
2631 val = sdhci_readb(host, SDHCI_WAKE_UP_CONTROL);
2632 val |= mask ;
2633 /* Avoid fake wake up */
Ludovic Desroches84d62602016-05-13 15:16:02 +02002634 if (host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION) {
Kevin Liuad080d72013-01-05 17:21:33 +08002635 val &= ~(SDHCI_WAKE_ON_INSERT | SDHCI_WAKE_ON_REMOVE);
Ludovic Desroches84d62602016-05-13 15:16:02 +02002636 irq_val &= ~(SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE);
2637 }
Kevin Liuad080d72013-01-05 17:21:33 +08002638 sdhci_writeb(host, val, SDHCI_WAKE_UP_CONTROL);
Ludovic Desroches84d62602016-05-13 15:16:02 +02002639 sdhci_writel(host, irq_val, SDHCI_INT_ENABLE);
Kevin Liuad080d72013-01-05 17:21:33 +08002640}
2641EXPORT_SYMBOL_GPL(sdhci_enable_irq_wakeups);
2642
Fabio Estevam0b10f472014-08-30 14:53:13 -03002643static void sdhci_disable_irq_wakeups(struct sdhci_host *host)
Kevin Liuad080d72013-01-05 17:21:33 +08002644{
2645 u8 val;
2646 u8 mask = SDHCI_WAKE_ON_INSERT | SDHCI_WAKE_ON_REMOVE
2647 | SDHCI_WAKE_ON_INT;
2648
2649 val = sdhci_readb(host, SDHCI_WAKE_UP_CONTROL);
2650 val &= ~mask;
2651 sdhci_writeb(host, val, SDHCI_WAKE_UP_CONTROL);
2652}
Pierre Ossmand129bce2006-03-24 03:18:17 -08002653
Manuel Lauss29495aa2011-11-03 11:09:45 +01002654int sdhci_suspend_host(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002655{
Anton Vorontsov7260cf52009-03-17 00:13:48 +03002656 sdhci_disable_card_detection(host);
2657
Adrian Hunter66c39dfc2015-05-07 13:10:21 +03002658 mmc_retune_timer_stop(host->mmc);
2659 mmc_retune_needed(host->mmc);
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05302660
Kevin Liuad080d72013-01-05 17:21:33 +08002661 if (!device_may_wakeup(mmc_dev(host->mmc))) {
Russell Kingb537f942014-04-25 12:56:01 +01002662 host->ier = 0;
2663 sdhci_writel(host, 0, SDHCI_INT_ENABLE);
2664 sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE);
Kevin Liuad080d72013-01-05 17:21:33 +08002665 free_irq(host->irq, host);
2666 } else {
2667 sdhci_enable_irq_wakeups(host);
2668 enable_irq_wake(host->irq);
2669 }
Ulf Hansson4ee14ec2013-09-25 14:15:24 +02002670 return 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002671}
2672
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002673EXPORT_SYMBOL_GPL(sdhci_suspend_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002674
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002675int sdhci_resume_host(struct sdhci_host *host)
2676{
Adrian Hunterd3940f22016-06-29 16:24:14 +03002677 struct mmc_host *mmc = host->mmc;
Ulf Hansson4ee14ec2013-09-25 14:15:24 +02002678 int ret = 0;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002679
Richard Röjforsa13abc72009-09-22 16:45:30 -07002680 if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002681 if (host->ops->enable_dma)
2682 host->ops->enable_dma(host);
2683 }
2684
Adrian Hunter6308d292012-02-07 14:48:54 +02002685 if ((host->mmc->pm_flags & MMC_PM_KEEP_POWER) &&
2686 (host->quirks2 & SDHCI_QUIRK2_HOST_OFF_CARD_ON)) {
2687 /* Card keeps power but host controller does not */
2688 sdhci_init(host, 0);
2689 host->pwr = 0;
2690 host->clock = 0;
Adrian Hunterd3940f22016-06-29 16:24:14 +03002691 mmc->ops->set_ios(mmc, &mmc->ios);
Adrian Hunter6308d292012-02-07 14:48:54 +02002692 } else {
2693 sdhci_init(host, (host->mmc->pm_flags & MMC_PM_KEEP_POWER));
2694 mmiowb();
2695 }
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002696
Haibo Chen14a7b41642015-09-15 18:32:58 +08002697 if (!device_may_wakeup(mmc_dev(host->mmc))) {
2698 ret = request_threaded_irq(host->irq, sdhci_irq,
2699 sdhci_thread_irq, IRQF_SHARED,
2700 mmc_hostname(host->mmc), host);
2701 if (ret)
2702 return ret;
2703 } else {
2704 sdhci_disable_irq_wakeups(host);
2705 disable_irq_wake(host->irq);
2706 }
2707
Anton Vorontsov7260cf52009-03-17 00:13:48 +03002708 sdhci_enable_card_detection(host);
2709
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08002710 return ret;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002711}
2712
2713EXPORT_SYMBOL_GPL(sdhci_resume_host);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002714
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002715int sdhci_runtime_suspend_host(struct sdhci_host *host)
2716{
2717 unsigned long flags;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002718
Adrian Hunter66c39dfc2015-05-07 13:10:21 +03002719 mmc_retune_timer_stop(host->mmc);
2720 mmc_retune_needed(host->mmc);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002721
2722 spin_lock_irqsave(&host->lock, flags);
Russell Kingb537f942014-04-25 12:56:01 +01002723 host->ier &= SDHCI_INT_CARD_INT;
2724 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
2725 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002726 spin_unlock_irqrestore(&host->lock, flags);
2727
Russell King781e9892014-04-25 12:55:46 +01002728 synchronize_hardirq(host->irq);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002729
2730 spin_lock_irqsave(&host->lock, flags);
2731 host->runtime_suspended = true;
2732 spin_unlock_irqrestore(&host->lock, flags);
2733
Markus Pargmann8a125ba2014-06-04 15:24:29 +02002734 return 0;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002735}
2736EXPORT_SYMBOL_GPL(sdhci_runtime_suspend_host);
2737
2738int sdhci_runtime_resume_host(struct sdhci_host *host)
2739{
Adrian Hunterd3940f22016-06-29 16:24:14 +03002740 struct mmc_host *mmc = host->mmc;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002741 unsigned long flags;
Markus Pargmann8a125ba2014-06-04 15:24:29 +02002742 int host_flags = host->flags;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002743
2744 if (host_flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
2745 if (host->ops->enable_dma)
2746 host->ops->enable_dma(host);
2747 }
2748
2749 sdhci_init(host, 0);
2750
2751 /* Force clock and power re-program */
2752 host->pwr = 0;
2753 host->clock = 0;
Adrian Hunterd3940f22016-06-29 16:24:14 +03002754 mmc->ops->start_signal_voltage_switch(mmc, &mmc->ios);
2755 mmc->ops->set_ios(mmc, &mmc->ios);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002756
Kevin Liu52983382013-01-31 11:31:37 +08002757 if ((host_flags & SDHCI_PV_ENABLED) &&
2758 !(host->quirks2 & SDHCI_QUIRK2_PRESET_VALUE_BROKEN)) {
2759 spin_lock_irqsave(&host->lock, flags);
2760 sdhci_enable_preset_value(host, true);
2761 spin_unlock_irqrestore(&host->lock, flags);
2762 }
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002763
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002764 spin_lock_irqsave(&host->lock, flags);
2765
2766 host->runtime_suspended = false;
2767
2768 /* Enable SDIO IRQ */
Russell Kingef104332014-04-25 12:55:41 +01002769 if (host->flags & SDHCI_SDIO_IRQ_ENABLED)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002770 sdhci_enable_sdio_irq_nolock(host, true);
2771
2772 /* Enable Card Detection */
2773 sdhci_enable_card_detection(host);
2774
2775 spin_unlock_irqrestore(&host->lock, flags);
2776
Markus Pargmann8a125ba2014-06-04 15:24:29 +02002777 return 0;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002778}
2779EXPORT_SYMBOL_GPL(sdhci_runtime_resume_host);
2780
Rafael J. Wysocki162d6f92014-12-05 03:05:33 +01002781#endif /* CONFIG_PM */
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002782
Pierre Ossmand129bce2006-03-24 03:18:17 -08002783/*****************************************************************************\
2784 * *
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002785 * Device allocation/registration *
Pierre Ossmand129bce2006-03-24 03:18:17 -08002786 * *
2787\*****************************************************************************/
2788
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002789struct sdhci_host *sdhci_alloc_host(struct device *dev,
2790 size_t priv_size)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002791{
Pierre Ossmand129bce2006-03-24 03:18:17 -08002792 struct mmc_host *mmc;
2793 struct sdhci_host *host;
2794
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002795 WARN_ON(dev == NULL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002796
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002797 mmc = mmc_alloc_host(sizeof(struct sdhci_host) + priv_size, dev);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002798 if (!mmc)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002799 return ERR_PTR(-ENOMEM);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002800
2801 host = mmc_priv(mmc);
2802 host->mmc = mmc;
Adrian Hunterbf60e592016-02-09 16:12:35 +02002803 host->mmc_host_ops = sdhci_ops;
2804 mmc->ops = &host->mmc_host_ops;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002805
Adrian Hunter8cb851a2016-06-29 16:24:16 +03002806 host->flags = SDHCI_SIGNALING_330;
2807
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002808 return host;
2809}
Pierre Ossman8a4da142006-10-04 02:15:40 -07002810
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002811EXPORT_SYMBOL_GPL(sdhci_alloc_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002812
Alexandre Courbot7b913692016-03-07 11:07:55 +09002813static int sdhci_set_dma_mask(struct sdhci_host *host)
2814{
2815 struct mmc_host *mmc = host->mmc;
2816 struct device *dev = mmc_dev(mmc);
2817 int ret = -EINVAL;
2818
2819 if (host->quirks2 & SDHCI_QUIRK2_BROKEN_64_BIT_DMA)
2820 host->flags &= ~SDHCI_USE_64_BIT_DMA;
2821
2822 /* Try 64-bit mask if hardware is capable of it */
2823 if (host->flags & SDHCI_USE_64_BIT_DMA) {
2824 ret = dma_set_mask_and_coherent(dev, DMA_BIT_MASK(64));
2825 if (ret) {
2826 pr_warn("%s: Failed to set 64-bit DMA mask.\n",
2827 mmc_hostname(mmc));
2828 host->flags &= ~SDHCI_USE_64_BIT_DMA;
2829 }
2830 }
2831
2832 /* 32-bit mask as default & fallback */
2833 if (ret) {
2834 ret = dma_set_mask_and_coherent(dev, DMA_BIT_MASK(32));
2835 if (ret)
2836 pr_warn("%s: Failed to set 32-bit DMA mask.\n",
2837 mmc_hostname(mmc));
2838 }
2839
2840 return ret;
2841}
2842
Adrian Hunter6132a3b2016-06-29 16:24:18 +03002843void __sdhci_read_caps(struct sdhci_host *host, u16 *ver, u32 *caps, u32 *caps1)
2844{
2845 u16 v;
2846
2847 if (host->read_caps)
2848 return;
2849
2850 host->read_caps = true;
2851
2852 if (debug_quirks)
2853 host->quirks = debug_quirks;
2854
2855 if (debug_quirks2)
2856 host->quirks2 = debug_quirks2;
2857
2858 sdhci_do_reset(host, SDHCI_RESET_ALL);
2859
2860 v = ver ? *ver : sdhci_readw(host, SDHCI_HOST_VERSION);
2861 host->version = (v & SDHCI_SPEC_VER_MASK) >> SDHCI_SPEC_VER_SHIFT;
2862
2863 if (host->quirks & SDHCI_QUIRK_MISSING_CAPS)
2864 return;
2865
2866 host->caps = caps ? *caps : sdhci_readl(host, SDHCI_CAPABILITIES);
2867
2868 if (host->version < SDHCI_SPEC_300)
2869 return;
2870
2871 host->caps1 = caps1 ? *caps1 : sdhci_readl(host, SDHCI_CAPABILITIES_1);
2872}
2873EXPORT_SYMBOL_GPL(__sdhci_read_caps);
2874
Adrian Hunter52f53362016-06-29 16:24:15 +03002875int sdhci_setup_host(struct sdhci_host *host)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002876{
2877 struct mmc_host *mmc;
Arindam Nathf2119df2011-05-05 12:18:57 +05302878 u32 max_current_caps;
2879 unsigned int ocr_avail;
Adrian Hunterf5fa92e2014-09-24 10:27:32 +03002880 unsigned int override_timeout_clk;
Dong Aisheng59241752015-07-22 20:53:07 +08002881 u32 max_clk;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002882 int ret;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002883
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002884 WARN_ON(host == NULL);
2885 if (host == NULL)
2886 return -EINVAL;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002887
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002888 mmc = host->mmc;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002889
Adrian Hunter6132a3b2016-06-29 16:24:18 +03002890 sdhci_read_caps(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002891
Adrian Hunterf5fa92e2014-09-24 10:27:32 +03002892 override_timeout_clk = host->timeout_clk;
2893
Zhangfei Gao85105c52010-08-06 07:10:01 +08002894 if (host->version > SDHCI_SPEC_300) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01002895 pr_err("%s: Unknown controller version (%d). You may experience problems.\n",
2896 mmc_hostname(mmc), host->version);
Pierre Ossman4a965502006-06-30 02:22:29 -07002897 }
2898
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002899 if (host->quirks & SDHCI_QUIRK_FORCE_DMA)
Richard Röjforsa13abc72009-09-22 16:45:30 -07002900 host->flags |= SDHCI_USE_SDMA;
Adrian Hunter28da3582016-06-29 16:24:17 +03002901 else if (!(host->caps & SDHCI_CAN_DO_SDMA))
Richard Röjforsa13abc72009-09-22 16:45:30 -07002902 DBG("Controller doesn't have SDMA capability\n");
Pierre Ossman67435272006-06-30 02:22:31 -07002903 else
Richard Röjforsa13abc72009-09-22 16:45:30 -07002904 host->flags |= SDHCI_USE_SDMA;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002905
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002906 if ((host->quirks & SDHCI_QUIRK_BROKEN_DMA) &&
Richard Röjforsa13abc72009-09-22 16:45:30 -07002907 (host->flags & SDHCI_USE_SDMA)) {
Rolf Eike Beercee687c2007-11-02 15:22:30 +01002908 DBG("Disabling DMA as it is marked broken\n");
Richard Röjforsa13abc72009-09-22 16:45:30 -07002909 host->flags &= ~SDHCI_USE_SDMA;
Feng Tang7c168e32007-09-30 12:44:18 +02002910 }
2911
Arindam Nathf2119df2011-05-05 12:18:57 +05302912 if ((host->version >= SDHCI_SPEC_200) &&
Adrian Hunter28da3582016-06-29 16:24:17 +03002913 (host->caps & SDHCI_CAN_DO_ADMA2))
Richard Röjforsa13abc72009-09-22 16:45:30 -07002914 host->flags |= SDHCI_USE_ADMA;
Pierre Ossman2134a922008-06-28 18:28:51 +02002915
2916 if ((host->quirks & SDHCI_QUIRK_BROKEN_ADMA) &&
2917 (host->flags & SDHCI_USE_ADMA)) {
2918 DBG("Disabling ADMA as it is marked broken\n");
2919 host->flags &= ~SDHCI_USE_ADMA;
2920 }
2921
Adrian Huntere57a5f62014-11-04 12:42:46 +02002922 /*
2923 * It is assumed that a 64-bit capable device has set a 64-bit DMA mask
2924 * and *must* do 64-bit DMA. A driver has the opportunity to change
2925 * that during the first call to ->enable_dma(). Similarly
2926 * SDHCI_QUIRK2_BROKEN_64_BIT_DMA must be left to the drivers to
2927 * implement.
2928 */
Adrian Hunter28da3582016-06-29 16:24:17 +03002929 if (host->caps & SDHCI_CAN_64BIT)
Adrian Huntere57a5f62014-11-04 12:42:46 +02002930 host->flags |= SDHCI_USE_64_BIT_DMA;
2931
Richard Röjforsa13abc72009-09-22 16:45:30 -07002932 if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
Alexandre Courbot7b913692016-03-07 11:07:55 +09002933 ret = sdhci_set_dma_mask(host);
2934
2935 if (!ret && host->ops->enable_dma)
2936 ret = host->ops->enable_dma(host);
2937
2938 if (ret) {
2939 pr_warn("%s: No suitable DMA available - falling back to PIO\n",
2940 mmc_hostname(mmc));
2941 host->flags &= ~(SDHCI_USE_SDMA | SDHCI_USE_ADMA);
2942
2943 ret = 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002944 }
2945 }
2946
Adrian Huntere57a5f62014-11-04 12:42:46 +02002947 /* SDMA does not support 64-bit DMA */
2948 if (host->flags & SDHCI_USE_64_BIT_DMA)
2949 host->flags &= ~SDHCI_USE_SDMA;
2950
Pierre Ossman2134a922008-06-28 18:28:51 +02002951 if (host->flags & SDHCI_USE_ADMA) {
Russell Kinge66e61c2016-01-26 13:39:55 +00002952 dma_addr_t dma;
2953 void *buf;
2954
Pierre Ossman2134a922008-06-28 18:28:51 +02002955 /*
Adrian Hunter76fe3792014-11-04 12:42:42 +02002956 * The DMA descriptor table size is calculated as the maximum
2957 * number of segments times 2, to allow for an alignment
2958 * descriptor for each segment, plus 1 for a nop end descriptor,
2959 * all multipled by the descriptor size.
Pierre Ossman2134a922008-06-28 18:28:51 +02002960 */
Adrian Huntere57a5f62014-11-04 12:42:46 +02002961 if (host->flags & SDHCI_USE_64_BIT_DMA) {
2962 host->adma_table_sz = (SDHCI_MAX_SEGS * 2 + 1) *
2963 SDHCI_ADMA2_64_DESC_SZ;
Adrian Huntere57a5f62014-11-04 12:42:46 +02002964 host->desc_sz = SDHCI_ADMA2_64_DESC_SZ;
Adrian Huntere57a5f62014-11-04 12:42:46 +02002965 } else {
2966 host->adma_table_sz = (SDHCI_MAX_SEGS * 2 + 1) *
2967 SDHCI_ADMA2_32_DESC_SZ;
Adrian Huntere57a5f62014-11-04 12:42:46 +02002968 host->desc_sz = SDHCI_ADMA2_32_DESC_SZ;
Adrian Huntere57a5f62014-11-04 12:42:46 +02002969 }
Russell Kinge66e61c2016-01-26 13:39:55 +00002970
Adrian Hunter04a5ae62015-11-26 14:00:49 +02002971 host->align_buffer_sz = SDHCI_MAX_SEGS * SDHCI_ADMA2_ALIGN;
Russell Kinge66e61c2016-01-26 13:39:55 +00002972 buf = dma_alloc_coherent(mmc_dev(mmc), host->align_buffer_sz +
2973 host->adma_table_sz, &dma, GFP_KERNEL);
2974 if (!buf) {
Joe Perches66061102014-09-12 14:56:56 -07002975 pr_warn("%s: Unable to allocate ADMA buffers - falling back to standard DMA\n",
Pierre Ossman2134a922008-06-28 18:28:51 +02002976 mmc_hostname(mmc));
2977 host->flags &= ~SDHCI_USE_ADMA;
Russell Kinge66e61c2016-01-26 13:39:55 +00002978 } else if ((dma + host->align_buffer_sz) &
2979 (SDHCI_ADMA2_DESC_ALIGN - 1)) {
Joe Perches66061102014-09-12 14:56:56 -07002980 pr_warn("%s: unable to allocate aligned ADMA descriptor\n",
2981 mmc_hostname(mmc));
Russell Kingd1e49f72014-04-25 12:58:34 +01002982 host->flags &= ~SDHCI_USE_ADMA;
Russell Kinge66e61c2016-01-26 13:39:55 +00002983 dma_free_coherent(mmc_dev(mmc), host->align_buffer_sz +
2984 host->adma_table_sz, buf, dma);
2985 } else {
2986 host->align_buffer = buf;
2987 host->align_addr = dma;
Russell Kingedd63fc2016-01-26 13:39:50 +00002988
Russell Kinge66e61c2016-01-26 13:39:55 +00002989 host->adma_table = buf + host->align_buffer_sz;
2990 host->adma_addr = dma + host->align_buffer_sz;
2991 }
Pierre Ossman2134a922008-06-28 18:28:51 +02002992 }
2993
Pierre Ossman76591502008-07-21 00:32:11 +02002994 /*
2995 * If we use DMA, then it's up to the caller to set the DMA
2996 * mask, but PIO does not need the hw shim so we set a new
2997 * mask here in that case.
2998 */
Richard Röjforsa13abc72009-09-22 16:45:30 -07002999 if (!(host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA))) {
Pierre Ossman76591502008-07-21 00:32:11 +02003000 host->dma_mask = DMA_BIT_MASK(64);
Markus Mayer4e743f12014-07-03 13:27:42 -07003001 mmc_dev(mmc)->dma_mask = &host->dma_mask;
Pierre Ossman76591502008-07-21 00:32:11 +02003002 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08003003
Zhangfei Gaoc4687d52010-08-20 14:02:36 -04003004 if (host->version >= SDHCI_SPEC_300)
Adrian Hunter28da3582016-06-29 16:24:17 +03003005 host->max_clk = (host->caps & SDHCI_CLOCK_V3_BASE_MASK)
Zhangfei Gaoc4687d52010-08-20 14:02:36 -04003006 >> SDHCI_CLOCK_BASE_SHIFT;
3007 else
Adrian Hunter28da3582016-06-29 16:24:17 +03003008 host->max_clk = (host->caps & SDHCI_CLOCK_BASE_MASK)
Zhangfei Gaoc4687d52010-08-20 14:02:36 -04003009 >> SDHCI_CLOCK_BASE_SHIFT;
3010
Pierre Ossmand129bce2006-03-24 03:18:17 -08003011 host->max_clk *= 1000000;
Anton Vorontsovf27f47e2010-05-26 14:41:53 -07003012 if (host->max_clk == 0 || host->quirks &
3013 SDHCI_QUIRK_CAP_CLOCK_BASE_BROKEN) {
Ben Dooks4240ff02009-03-17 00:13:57 +03003014 if (!host->ops->get_max_clock) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01003015 pr_err("%s: Hardware doesn't specify base clock frequency.\n",
3016 mmc_hostname(mmc));
Adrian Huntereb5c20d2016-04-12 14:25:08 +03003017 ret = -ENODEV;
3018 goto undma;
Ben Dooks4240ff02009-03-17 00:13:57 +03003019 }
3020 host->max_clk = host->ops->get_max_clock(host);
3021 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08003022
3023 /*
Arindam Nathc3ed3872011-05-05 12:19:06 +05303024 * In case of Host Controller v3.00, find out whether clock
3025 * multiplier is supported.
3026 */
Adrian Hunter28da3582016-06-29 16:24:17 +03003027 host->clk_mul = (host->caps1 & SDHCI_CLOCK_MUL_MASK) >>
Arindam Nathc3ed3872011-05-05 12:19:06 +05303028 SDHCI_CLOCK_MUL_SHIFT;
3029
3030 /*
3031 * In case the value in Clock Multiplier is 0, then programmable
3032 * clock mode is not supported, otherwise the actual clock
3033 * multiplier is one more than the value of Clock Multiplier
3034 * in the Capabilities Register.
3035 */
3036 if (host->clk_mul)
3037 host->clk_mul += 1;
3038
3039 /*
Pierre Ossmand129bce2006-03-24 03:18:17 -08003040 * Set host parameters.
3041 */
Dong Aisheng59241752015-07-22 20:53:07 +08003042 max_clk = host->max_clk;
3043
Marek Szyprowskice5f0362010-08-10 18:01:56 -07003044 if (host->ops->get_min_clock)
Anton Vorontsova9e58f22009-07-29 15:04:16 -07003045 mmc->f_min = host->ops->get_min_clock(host);
Arindam Nathc3ed3872011-05-05 12:19:06 +05303046 else if (host->version >= SDHCI_SPEC_300) {
3047 if (host->clk_mul) {
3048 mmc->f_min = (host->max_clk * host->clk_mul) / 1024;
Dong Aisheng59241752015-07-22 20:53:07 +08003049 max_clk = host->max_clk * host->clk_mul;
Arindam Nathc3ed3872011-05-05 12:19:06 +05303050 } else
3051 mmc->f_min = host->max_clk / SDHCI_MAX_DIV_SPEC_300;
3052 } else
Zhangfei Gao03975262010-09-20 15:15:18 -04003053 mmc->f_min = host->max_clk / SDHCI_MAX_DIV_SPEC_200;
Philip Rakity15ec4462010-11-19 16:48:39 -05003054
Adrian Hunterd310ae42016-04-12 14:25:07 +03003055 if (!mmc->f_max || mmc->f_max > max_clk)
Dong Aisheng59241752015-07-22 20:53:07 +08003056 mmc->f_max = max_clk;
3057
Aisheng Dong28aab052014-08-27 15:26:31 +08003058 if (!(host->quirks & SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK)) {
Adrian Hunter28da3582016-06-29 16:24:17 +03003059 host->timeout_clk = (host->caps & SDHCI_TIMEOUT_CLK_MASK) >>
Aisheng Dong28aab052014-08-27 15:26:31 +08003060 SDHCI_TIMEOUT_CLK_SHIFT;
3061 if (host->timeout_clk == 0) {
3062 if (host->ops->get_timeout_clock) {
3063 host->timeout_clk =
3064 host->ops->get_timeout_clock(host);
3065 } else {
3066 pr_err("%s: Hardware doesn't specify timeout clock frequency.\n",
3067 mmc_hostname(mmc));
Adrian Huntereb5c20d2016-04-12 14:25:08 +03003068 ret = -ENODEV;
3069 goto undma;
Aisheng Dong28aab052014-08-27 15:26:31 +08003070 }
Andy Shevchenko272308c2011-08-03 18:36:00 +03003071 }
Andy Shevchenko272308c2011-08-03 18:36:00 +03003072
Adrian Hunter28da3582016-06-29 16:24:17 +03003073 if (host->caps & SDHCI_TIMEOUT_CLK_UNIT)
Aisheng Dong28aab052014-08-27 15:26:31 +08003074 host->timeout_clk *= 1000;
Andy Shevchenko272308c2011-08-03 18:36:00 +03003075
Adrian Hunter99513622016-03-07 13:33:55 +02003076 if (override_timeout_clk)
3077 host->timeout_clk = override_timeout_clk;
3078
Aisheng Dong28aab052014-08-27 15:26:31 +08003079 mmc->max_busy_timeout = host->ops->get_max_timeout_count ?
Aisheng Donga6ff5ae2014-08-27 15:26:27 +08003080 host->ops->get_max_timeout_count(host) : 1 << 27;
Aisheng Dong28aab052014-08-27 15:26:31 +08003081 mmc->max_busy_timeout /= host->timeout_clk;
3082 }
Adrian Hunter58d12462011-06-28 17:16:03 +03003083
Andrei Warkentine89d4562011-05-23 15:06:37 -05003084 mmc->caps |= MMC_CAP_SDIO_IRQ | MMC_CAP_ERASE | MMC_CAP_CMD23;
Russell King781e9892014-04-25 12:55:46 +01003085 mmc->caps2 |= MMC_CAP2_SDIO_IRQ_NOTHREAD;
Andrei Warkentine89d4562011-05-23 15:06:37 -05003086
3087 if (host->quirks & SDHCI_QUIRK_MULTIBLOCK_READ_ACMD12)
3088 host->flags |= SDHCI_AUTO_CMD12;
Anton Vorontsov5fe23c72009-06-18 00:14:08 +04003089
Andrei Warkentin8edf63712011-05-23 15:06:39 -05003090 /* Auto-CMD23 stuff only works in ADMA or PIO. */
Andrei Warkentin4f3d3e92011-05-25 10:42:50 -04003091 if ((host->version >= SDHCI_SPEC_300) &&
Andrei Warkentin8edf63712011-05-23 15:06:39 -05003092 ((host->flags & SDHCI_USE_ADMA) ||
Scott Branden3bfa6f02015-02-09 16:06:28 -08003093 !(host->flags & SDHCI_USE_SDMA)) &&
3094 !(host->quirks2 & SDHCI_QUIRK2_ACMD23_BROKEN)) {
Andrei Warkentin8edf63712011-05-23 15:06:39 -05003095 host->flags |= SDHCI_AUTO_CMD23;
3096 DBG("%s: Auto-CMD23 available\n", mmc_hostname(mmc));
3097 } else {
3098 DBG("%s: Auto-CMD23 unavailable\n", mmc_hostname(mmc));
3099 }
3100
Philip Rakity15ec4462010-11-19 16:48:39 -05003101 /*
3102 * A controller may support 8-bit width, but the board itself
3103 * might not have the pins brought out. Boards that support
3104 * 8-bit width must set "mmc->caps |= MMC_CAP_8_BIT_DATA;" in
3105 * their platform code before calling sdhci_add_host(), and we
3106 * won't assume 8-bit width for hosts without that CAP.
3107 */
Anton Vorontsov5fe23c72009-06-18 00:14:08 +04003108 if (!(host->quirks & SDHCI_QUIRK_FORCE_1_BIT_DATA))
Philip Rakity15ec4462010-11-19 16:48:39 -05003109 mmc->caps |= MMC_CAP_4_BIT_DATA;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003110
Jerry Huang63ef5d82012-10-25 13:47:19 +08003111 if (host->quirks2 & SDHCI_QUIRK2_HOST_NO_CMD23)
3112 mmc->caps &= ~MMC_CAP_CMD23;
3113
Adrian Hunter28da3582016-06-29 16:24:17 +03003114 if (host->caps & SDHCI_CAN_DO_HISPD)
Zhangfei Gaoa29e7e12010-08-16 21:15:32 -04003115 mmc->caps |= MMC_CAP_SD_HIGHSPEED | MMC_CAP_MMC_HIGHSPEED;
Pierre Ossmancd9277c2007-02-18 12:07:47 +01003116
Jaehoon Chung176d1ed2010-09-27 09:42:20 +01003117 if ((host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION) &&
Jaehoon Chung860951c2016-06-21 10:13:26 +09003118 mmc_card_is_removable(mmc) &&
Arnd Bergmann287980e2016-05-27 23:23:25 +02003119 mmc_gpio_get_cd(host->mmc) < 0)
Anton Vorontsov68d1fb72009-03-17 00:13:52 +03003120 mmc->caps |= MMC_CAP_NEEDS_POLL;
3121
Tim Kryger3a48edc2014-06-13 10:13:56 -07003122 /* If there are external regulators, get them */
Adrian Huntereb5c20d2016-04-12 14:25:08 +03003123 ret = mmc_regulator_get_supply(mmc);
3124 if (ret == -EPROBE_DEFER)
3125 goto undma;
Tim Kryger3a48edc2014-06-13 10:13:56 -07003126
Philip Rakity6231f3d2012-07-23 15:56:23 -07003127 /* If vqmmc regulator and no 1.8V signalling, then there's no UHS */
Tim Kryger3a48edc2014-06-13 10:13:56 -07003128 if (!IS_ERR(mmc->supply.vqmmc)) {
3129 ret = regulator_enable(mmc->supply.vqmmc);
3130 if (!regulator_is_supported_voltage(mmc->supply.vqmmc, 1700000,
3131 1950000))
Adrian Hunter28da3582016-06-29 16:24:17 +03003132 host->caps1 &= ~(SDHCI_SUPPORT_SDR104 |
3133 SDHCI_SUPPORT_SDR50 |
3134 SDHCI_SUPPORT_DDR50);
Chris Balla3361ab2013-03-11 17:51:53 -04003135 if (ret) {
3136 pr_warn("%s: Failed to enable vqmmc regulator: %d\n",
3137 mmc_hostname(mmc), ret);
Adrian Hunter4bb74312014-11-06 15:19:04 +02003138 mmc->supply.vqmmc = ERR_PTR(-EINVAL);
Chris Balla3361ab2013-03-11 17:51:53 -04003139 }
Kevin Liu8363c372012-11-17 17:55:51 -05003140 }
Philip Rakity6231f3d2012-07-23 15:56:23 -07003141
Adrian Hunter28da3582016-06-29 16:24:17 +03003142 if (host->quirks2 & SDHCI_QUIRK2_NO_1_8_V) {
3143 host->caps1 &= ~(SDHCI_SUPPORT_SDR104 | SDHCI_SUPPORT_SDR50 |
3144 SDHCI_SUPPORT_DDR50);
3145 }
Daniel Drake6a661802012-11-25 13:01:19 -05003146
Al Cooper4188bba2012-03-16 15:54:17 -04003147 /* Any UHS-I mode in caps implies SDR12 and SDR25 support. */
Adrian Hunter28da3582016-06-29 16:24:17 +03003148 if (host->caps1 & (SDHCI_SUPPORT_SDR104 | SDHCI_SUPPORT_SDR50 |
3149 SDHCI_SUPPORT_DDR50))
Arindam Nathf2119df2011-05-05 12:18:57 +05303150 mmc->caps |= MMC_CAP_UHS_SDR12 | MMC_CAP_UHS_SDR25;
3151
3152 /* SDR104 supports also implies SDR50 support */
Adrian Hunter28da3582016-06-29 16:24:17 +03003153 if (host->caps1 & SDHCI_SUPPORT_SDR104) {
Arindam Nathf2119df2011-05-05 12:18:57 +05303154 mmc->caps |= MMC_CAP_UHS_SDR104 | MMC_CAP_UHS_SDR50;
Giuseppe CAVALLARO156e14b2013-06-12 08:16:38 +02003155 /* SD3.0: SDR104 is supported so (for eMMC) the caps2
3156 * field can be promoted to support HS200.
3157 */
Adrian Hunter549c0b12014-11-06 15:19:05 +02003158 if (!(host->quirks2 & SDHCI_QUIRK2_BROKEN_HS200))
David Cohen13868bf2013-10-29 10:58:26 -07003159 mmc->caps2 |= MMC_CAP2_HS200;
Adrian Hunter28da3582016-06-29 16:24:17 +03003160 } else if (host->caps1 & SDHCI_SUPPORT_SDR50) {
Arindam Nathf2119df2011-05-05 12:18:57 +05303161 mmc->caps |= MMC_CAP_UHS_SDR50;
Adrian Hunter28da3582016-06-29 16:24:17 +03003162 }
Arindam Nathf2119df2011-05-05 12:18:57 +05303163
Adrian Huntere9fb05d2014-11-06 15:19:06 +02003164 if (host->quirks2 & SDHCI_QUIRK2_CAPS_BIT63_FOR_HS400 &&
Adrian Hunter28da3582016-06-29 16:24:17 +03003165 (host->caps1 & SDHCI_SUPPORT_HS400))
Adrian Huntere9fb05d2014-11-06 15:19:06 +02003166 mmc->caps2 |= MMC_CAP2_HS400;
3167
Adrian Hunter549c0b12014-11-06 15:19:05 +02003168 if ((mmc->caps2 & MMC_CAP2_HSX00_1_2V) &&
3169 (IS_ERR(mmc->supply.vqmmc) ||
3170 !regulator_is_supported_voltage(mmc->supply.vqmmc, 1100000,
3171 1300000)))
3172 mmc->caps2 &= ~MMC_CAP2_HSX00_1_2V;
3173
Adrian Hunter28da3582016-06-29 16:24:17 +03003174 if ((host->caps1 & SDHCI_SUPPORT_DDR50) &&
3175 !(host->quirks2 & SDHCI_QUIRK2_BROKEN_DDR50))
Arindam Nathf2119df2011-05-05 12:18:57 +05303176 mmc->caps |= MMC_CAP_UHS_DDR50;
3177
Girish K S069c9f12012-01-06 09:56:39 +05303178 /* Does the host need tuning for SDR50? */
Adrian Hunter28da3582016-06-29 16:24:17 +03003179 if (host->caps1 & SDHCI_USE_SDR50_TUNING)
Arindam Nathb513ea22011-05-05 12:19:04 +05303180 host->flags |= SDHCI_SDR50_NEEDS_TUNING;
3181
Arindam Nathd6d50a12011-05-05 12:18:59 +05303182 /* Driver Type(s) (A, C, D) supported by the host */
Adrian Hunter28da3582016-06-29 16:24:17 +03003183 if (host->caps1 & SDHCI_DRIVER_TYPE_A)
Arindam Nathd6d50a12011-05-05 12:18:59 +05303184 mmc->caps |= MMC_CAP_DRIVER_TYPE_A;
Adrian Hunter28da3582016-06-29 16:24:17 +03003185 if (host->caps1 & SDHCI_DRIVER_TYPE_C)
Arindam Nathd6d50a12011-05-05 12:18:59 +05303186 mmc->caps |= MMC_CAP_DRIVER_TYPE_C;
Adrian Hunter28da3582016-06-29 16:24:17 +03003187 if (host->caps1 & SDHCI_DRIVER_TYPE_D)
Arindam Nathd6d50a12011-05-05 12:18:59 +05303188 mmc->caps |= MMC_CAP_DRIVER_TYPE_D;
3189
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05303190 /* Initial value for re-tuning timer count */
Adrian Hunter28da3582016-06-29 16:24:17 +03003191 host->tuning_count = (host->caps1 & SDHCI_RETUNING_TIMER_COUNT_MASK) >>
3192 SDHCI_RETUNING_TIMER_COUNT_SHIFT;
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05303193
3194 /*
3195 * In case Re-tuning Timer is not disabled, the actual value of
3196 * re-tuning timer will be 2 ^ (n - 1).
3197 */
3198 if (host->tuning_count)
3199 host->tuning_count = 1 << (host->tuning_count - 1);
3200
3201 /* Re-tuning mode supported by the Host Controller */
Adrian Hunter28da3582016-06-29 16:24:17 +03003202 host->tuning_mode = (host->caps1 & SDHCI_RETUNING_MODE_MASK) >>
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05303203 SDHCI_RETUNING_MODE_SHIFT;
3204
Takashi Iwai8f230f42010-12-08 10:04:30 +01003205 ocr_avail = 0;
Philip Rakitybad37e12012-05-27 18:36:44 -07003206
Arindam Nathf2119df2011-05-05 12:18:57 +05303207 /*
3208 * According to SD Host Controller spec v3.00, if the Host System
3209 * can afford more than 150mA, Host Driver should set XPC to 1. Also
3210 * the value is meaningful only if Voltage Support in the Capabilities
3211 * register is set. The actual current value is 4 times the register
3212 * value.
3213 */
3214 max_current_caps = sdhci_readl(host, SDHCI_MAX_CURRENT);
Tim Kryger3a48edc2014-06-13 10:13:56 -07003215 if (!max_current_caps && !IS_ERR(mmc->supply.vmmc)) {
Chuanxiao.Dongae906032014-08-01 14:00:13 +08003216 int curr = regulator_get_current_limit(mmc->supply.vmmc);
Philip Rakitybad37e12012-05-27 18:36:44 -07003217 if (curr > 0) {
3218
3219 /* convert to SDHCI_MAX_CURRENT format */
3220 curr = curr/1000; /* convert to mA */
3221 curr = curr/SDHCI_MAX_CURRENT_MULTIPLIER;
3222
3223 curr = min_t(u32, curr, SDHCI_MAX_CURRENT_LIMIT);
3224 max_current_caps =
3225 (curr << SDHCI_MAX_CURRENT_330_SHIFT) |
3226 (curr << SDHCI_MAX_CURRENT_300_SHIFT) |
3227 (curr << SDHCI_MAX_CURRENT_180_SHIFT);
3228 }
3229 }
Arindam Nathf2119df2011-05-05 12:18:57 +05303230
Adrian Hunter28da3582016-06-29 16:24:17 +03003231 if (host->caps & SDHCI_CAN_VDD_330) {
Takashi Iwai8f230f42010-12-08 10:04:30 +01003232 ocr_avail |= MMC_VDD_32_33 | MMC_VDD_33_34;
Arindam Nathf2119df2011-05-05 12:18:57 +05303233
Aaron Lu55c46652012-07-04 13:31:48 +08003234 mmc->max_current_330 = ((max_current_caps &
Arindam Nathf2119df2011-05-05 12:18:57 +05303235 SDHCI_MAX_CURRENT_330_MASK) >>
3236 SDHCI_MAX_CURRENT_330_SHIFT) *
3237 SDHCI_MAX_CURRENT_MULTIPLIER;
Arindam Nathf2119df2011-05-05 12:18:57 +05303238 }
Adrian Hunter28da3582016-06-29 16:24:17 +03003239 if (host->caps & SDHCI_CAN_VDD_300) {
Takashi Iwai8f230f42010-12-08 10:04:30 +01003240 ocr_avail |= MMC_VDD_29_30 | MMC_VDD_30_31;
Arindam Nathf2119df2011-05-05 12:18:57 +05303241
Aaron Lu55c46652012-07-04 13:31:48 +08003242 mmc->max_current_300 = ((max_current_caps &
Arindam Nathf2119df2011-05-05 12:18:57 +05303243 SDHCI_MAX_CURRENT_300_MASK) >>
3244 SDHCI_MAX_CURRENT_300_SHIFT) *
3245 SDHCI_MAX_CURRENT_MULTIPLIER;
Arindam Nathf2119df2011-05-05 12:18:57 +05303246 }
Adrian Hunter28da3582016-06-29 16:24:17 +03003247 if (host->caps & SDHCI_CAN_VDD_180) {
Takashi Iwai8f230f42010-12-08 10:04:30 +01003248 ocr_avail |= MMC_VDD_165_195;
3249
Aaron Lu55c46652012-07-04 13:31:48 +08003250 mmc->max_current_180 = ((max_current_caps &
Arindam Nathf2119df2011-05-05 12:18:57 +05303251 SDHCI_MAX_CURRENT_180_MASK) >>
3252 SDHCI_MAX_CURRENT_180_SHIFT) *
3253 SDHCI_MAX_CURRENT_MULTIPLIER;
Arindam Nathf2119df2011-05-05 12:18:57 +05303254 }
3255
Ulf Hansson5fd26c72015-06-05 11:40:08 +02003256 /* If OCR set by host, use it instead. */
3257 if (host->ocr_mask)
3258 ocr_avail = host->ocr_mask;
3259
3260 /* If OCR set by external regulators, give it highest prio. */
Tim Kryger3a48edc2014-06-13 10:13:56 -07003261 if (mmc->ocr_avail)
Tim Kryger52221612014-06-25 00:25:34 -07003262 ocr_avail = mmc->ocr_avail;
Tim Kryger3a48edc2014-06-13 10:13:56 -07003263
Takashi Iwai8f230f42010-12-08 10:04:30 +01003264 mmc->ocr_avail = ocr_avail;
3265 mmc->ocr_avail_sdio = ocr_avail;
3266 if (host->ocr_avail_sdio)
3267 mmc->ocr_avail_sdio &= host->ocr_avail_sdio;
3268 mmc->ocr_avail_sd = ocr_avail;
3269 if (host->ocr_avail_sd)
3270 mmc->ocr_avail_sd &= host->ocr_avail_sd;
3271 else /* normal SD controllers don't support 1.8V */
3272 mmc->ocr_avail_sd &= ~MMC_VDD_165_195;
3273 mmc->ocr_avail_mmc = ocr_avail;
3274 if (host->ocr_avail_mmc)
3275 mmc->ocr_avail_mmc &= host->ocr_avail_mmc;
Pierre Ossman146ad662006-06-30 02:22:23 -07003276
3277 if (mmc->ocr_avail == 0) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01003278 pr_err("%s: Hardware doesn't report any support voltages.\n",
3279 mmc_hostname(mmc));
Adrian Huntereb5c20d2016-04-12 14:25:08 +03003280 ret = -ENODEV;
3281 goto unreg;
Pierre Ossman146ad662006-06-30 02:22:23 -07003282 }
3283
Adrian Hunter8cb851a2016-06-29 16:24:16 +03003284 if ((mmc->caps & (MMC_CAP_UHS_SDR12 | MMC_CAP_UHS_SDR25 |
3285 MMC_CAP_UHS_SDR50 | MMC_CAP_UHS_SDR104 |
3286 MMC_CAP_UHS_DDR50 | MMC_CAP_1_8V_DDR)) ||
3287 (mmc->caps2 & (MMC_CAP2_HS200_1_8V_SDR | MMC_CAP2_HS400_1_8V)))
3288 host->flags |= SDHCI_SIGNALING_180;
3289
3290 if (mmc->caps2 & MMC_CAP2_HSX00_1_2V)
3291 host->flags |= SDHCI_SIGNALING_120;
3292
Pierre Ossmand129bce2006-03-24 03:18:17 -08003293 spin_lock_init(&host->lock);
3294
3295 /*
Pierre Ossman2134a922008-06-28 18:28:51 +02003296 * Maximum number of segments. Depends on if the hardware
3297 * can do scatter/gather or not.
Pierre Ossmand129bce2006-03-24 03:18:17 -08003298 */
Pierre Ossman2134a922008-06-28 18:28:51 +02003299 if (host->flags & SDHCI_USE_ADMA)
Adrian Hunter4fb213f2014-11-04 12:42:43 +02003300 mmc->max_segs = SDHCI_MAX_SEGS;
Richard Röjforsa13abc72009-09-22 16:45:30 -07003301 else if (host->flags & SDHCI_USE_SDMA)
Martin K. Petersena36274e2010-09-10 01:33:59 -04003302 mmc->max_segs = 1;
Pierre Ossman2134a922008-06-28 18:28:51 +02003303 else /* PIO */
Adrian Hunter4fb213f2014-11-04 12:42:43 +02003304 mmc->max_segs = SDHCI_MAX_SEGS;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003305
3306 /*
Adrian Hunterac005312014-12-05 19:25:28 +02003307 * Maximum number of sectors in one transfer. Limited by SDMA boundary
3308 * size (512KiB). Note some tuning modes impose a 4MiB limit, but this
3309 * is less anyway.
Pierre Ossmand129bce2006-03-24 03:18:17 -08003310 */
Pierre Ossman55db8902006-11-21 17:55:45 +01003311 mmc->max_req_size = 524288;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003312
3313 /*
3314 * Maximum segment size. Could be one segment with the maximum number
Pierre Ossman2134a922008-06-28 18:28:51 +02003315 * of bytes. When doing hardware scatter/gather, each entry cannot
3316 * be larger than 64 KiB though.
Pierre Ossmand129bce2006-03-24 03:18:17 -08003317 */
Olof Johansson30652aa2011-01-01 18:37:32 -06003318 if (host->flags & SDHCI_USE_ADMA) {
3319 if (host->quirks & SDHCI_QUIRK_BROKEN_ADMA_ZEROLEN_DESC)
3320 mmc->max_seg_size = 65535;
3321 else
3322 mmc->max_seg_size = 65536;
3323 } else {
Pierre Ossman2134a922008-06-28 18:28:51 +02003324 mmc->max_seg_size = mmc->max_req_size;
Olof Johansson30652aa2011-01-01 18:37:32 -06003325 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08003326
3327 /*
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +01003328 * Maximum block size. This varies from controller to controller and
3329 * is specified in the capabilities register.
3330 */
Anton Vorontsov0633f652009-03-17 00:14:03 +03003331 if (host->quirks & SDHCI_QUIRK_FORCE_BLK_SZ_2048) {
3332 mmc->max_blk_size = 2;
3333 } else {
Adrian Hunter28da3582016-06-29 16:24:17 +03003334 mmc->max_blk_size = (host->caps & SDHCI_MAX_BLOCK_MASK) >>
Anton Vorontsov0633f652009-03-17 00:14:03 +03003335 SDHCI_MAX_BLOCK_SHIFT;
3336 if (mmc->max_blk_size >= 3) {
Joe Perches66061102014-09-12 14:56:56 -07003337 pr_warn("%s: Invalid maximum block size, assuming 512 bytes\n",
3338 mmc_hostname(mmc));
Anton Vorontsov0633f652009-03-17 00:14:03 +03003339 mmc->max_blk_size = 0;
3340 }
3341 }
3342
3343 mmc->max_blk_size = 512 << mmc->max_blk_size;
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +01003344
3345 /*
Pierre Ossman55db8902006-11-21 17:55:45 +01003346 * Maximum block count.
3347 */
Ben Dooks1388eef2009-06-14 12:40:53 +01003348 mmc->max_blk_count = (host->quirks & SDHCI_QUIRK_NO_MULTIBLOCK) ? 1 : 65535;
Pierre Ossman55db8902006-11-21 17:55:45 +01003349
Adrian Hunter52f53362016-06-29 16:24:15 +03003350 return 0;
3351
3352unreg:
3353 if (!IS_ERR(mmc->supply.vqmmc))
3354 regulator_disable(mmc->supply.vqmmc);
3355undma:
3356 if (host->align_buffer)
3357 dma_free_coherent(mmc_dev(mmc), host->align_buffer_sz +
3358 host->adma_table_sz, host->align_buffer,
3359 host->align_addr);
3360 host->adma_table = NULL;
3361 host->align_buffer = NULL;
3362
3363 return ret;
3364}
3365EXPORT_SYMBOL_GPL(sdhci_setup_host);
3366
3367int __sdhci_add_host(struct sdhci_host *host)
3368{
3369 struct mmc_host *mmc = host->mmc;
3370 int ret;
3371
Pierre Ossman55db8902006-11-21 17:55:45 +01003372 /*
Pierre Ossmand129bce2006-03-24 03:18:17 -08003373 * Init tasklets.
3374 */
Pierre Ossmand129bce2006-03-24 03:18:17 -08003375 tasklet_init(&host->finish_tasklet,
3376 sdhci_tasklet_finish, (unsigned long)host);
3377
Al Viroe4cad1b2006-10-10 22:47:07 +01003378 setup_timer(&host->timer, sdhci_timeout_timer, (unsigned long)host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003379
Adrian Hunter250fb7b42014-12-05 19:41:10 +02003380 init_waitqueue_head(&host->buf_ready_int);
Arindam Nathb513ea22011-05-05 12:19:04 +05303381
Shawn Guo2af502c2013-07-05 14:38:55 +08003382 sdhci_init(host, 0);
3383
Russell King781e9892014-04-25 12:55:46 +01003384 ret = request_threaded_irq(host->irq, sdhci_irq, sdhci_thread_irq,
3385 IRQF_SHARED, mmc_hostname(mmc), host);
Mark Brown0fc81ee2012-07-02 14:26:15 +01003386 if (ret) {
3387 pr_err("%s: Failed to request IRQ %d: %d\n",
3388 mmc_hostname(mmc), host->irq, ret);
Pierre Ossman8ef1a142006-06-30 02:22:21 -07003389 goto untasklet;
Mark Brown0fc81ee2012-07-02 14:26:15 +01003390 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08003391
Pierre Ossmand129bce2006-03-24 03:18:17 -08003392#ifdef CONFIG_MMC_DEBUG
3393 sdhci_dumpregs(host);
3394#endif
3395
Adrian Hunter061d17a2016-04-12 14:25:09 +03003396 ret = sdhci_led_register(host);
Mark Brown0fc81ee2012-07-02 14:26:15 +01003397 if (ret) {
3398 pr_err("%s: Failed to register LED device: %d\n",
3399 mmc_hostname(mmc), ret);
Adrian Huntereb5c20d2016-04-12 14:25:08 +03003400 goto unirq;
Mark Brown0fc81ee2012-07-02 14:26:15 +01003401 }
Pierre Ossman2f730fe2008-03-17 10:29:38 +01003402
Pierre Ossman5f25a662006-10-04 02:15:39 -07003403 mmiowb();
3404
Adrian Huntereb5c20d2016-04-12 14:25:08 +03003405 ret = mmc_add_host(mmc);
3406 if (ret)
3407 goto unled;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003408
Girish K Sa3c76eb2011-10-11 11:44:09 +05303409 pr_info("%s: SDHCI controller on %s [%s] using %s\n",
Kay Sieversd1b26862008-11-08 21:37:46 +01003410 mmc_hostname(mmc), host->hw_name, dev_name(mmc_dev(mmc)),
Adrian Huntere57a5f62014-11-04 12:42:46 +02003411 (host->flags & SDHCI_USE_ADMA) ?
3412 (host->flags & SDHCI_USE_64_BIT_DMA) ? "ADMA 64-bit" : "ADMA" :
Richard Röjforsa13abc72009-09-22 16:45:30 -07003413 (host->flags & SDHCI_USE_SDMA) ? "DMA" : "PIO");
Pierre Ossmand129bce2006-03-24 03:18:17 -08003414
Anton Vorontsov7260cf52009-03-17 00:13:48 +03003415 sdhci_enable_card_detection(host);
3416
Pierre Ossmand129bce2006-03-24 03:18:17 -08003417 return 0;
3418
Adrian Huntereb5c20d2016-04-12 14:25:08 +03003419unled:
Adrian Hunter061d17a2016-04-12 14:25:09 +03003420 sdhci_led_unregister(host);
Adrian Huntereb5c20d2016-04-12 14:25:08 +03003421unirq:
Russell King03231f92014-04-25 12:57:12 +01003422 sdhci_do_reset(host, SDHCI_RESET_ALL);
Russell Kingb537f942014-04-25 12:56:01 +01003423 sdhci_writel(host, 0, SDHCI_INT_ENABLE);
3424 sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE);
Pierre Ossman2f730fe2008-03-17 10:29:38 +01003425 free_irq(host->irq, host);
Pierre Ossman8ef1a142006-06-30 02:22:21 -07003426untasklet:
Pierre Ossmand129bce2006-03-24 03:18:17 -08003427 tasklet_kill(&host->finish_tasklet);
Adrian Hunter52f53362016-06-29 16:24:15 +03003428
Adrian Huntereb5c20d2016-04-12 14:25:08 +03003429 if (!IS_ERR(mmc->supply.vqmmc))
3430 regulator_disable(mmc->supply.vqmmc);
Adrian Hunter52f53362016-06-29 16:24:15 +03003431
Adrian Huntereb5c20d2016-04-12 14:25:08 +03003432 if (host->align_buffer)
3433 dma_free_coherent(mmc_dev(mmc), host->align_buffer_sz +
3434 host->adma_table_sz, host->align_buffer,
3435 host->align_addr);
3436 host->adma_table = NULL;
3437 host->align_buffer = NULL;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003438
3439 return ret;
3440}
Adrian Hunter52f53362016-06-29 16:24:15 +03003441EXPORT_SYMBOL_GPL(__sdhci_add_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003442
Adrian Hunter52f53362016-06-29 16:24:15 +03003443int sdhci_add_host(struct sdhci_host *host)
3444{
3445 int ret;
3446
3447 ret = sdhci_setup_host(host);
3448 if (ret)
3449 return ret;
3450
3451 return __sdhci_add_host(host);
3452}
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003453EXPORT_SYMBOL_GPL(sdhci_add_host);
3454
Pierre Ossman1e728592008-04-16 19:13:13 +02003455void sdhci_remove_host(struct sdhci_host *host, int dead)
Pierre Ossmand129bce2006-03-24 03:18:17 -08003456{
Tim Kryger3a48edc2014-06-13 10:13:56 -07003457 struct mmc_host *mmc = host->mmc;
Pierre Ossman1e728592008-04-16 19:13:13 +02003458 unsigned long flags;
3459
3460 if (dead) {
3461 spin_lock_irqsave(&host->lock, flags);
3462
3463 host->flags |= SDHCI_DEVICE_DEAD;
3464
3465 if (host->mrq) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05303466 pr_err("%s: Controller removed during "
Markus Mayer4e743f12014-07-03 13:27:42 -07003467 " transfer!\n", mmc_hostname(mmc));
Pierre Ossman1e728592008-04-16 19:13:13 +02003468
3469 host->mrq->cmd->error = -ENOMEDIUM;
3470 tasklet_schedule(&host->finish_tasklet);
3471 }
3472
3473 spin_unlock_irqrestore(&host->lock, flags);
3474 }
3475
Anton Vorontsov7260cf52009-03-17 00:13:48 +03003476 sdhci_disable_card_detection(host);
3477
Markus Mayer4e743f12014-07-03 13:27:42 -07003478 mmc_remove_host(mmc);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003479
Adrian Hunter061d17a2016-04-12 14:25:09 +03003480 sdhci_led_unregister(host);
Pierre Ossman2f730fe2008-03-17 10:29:38 +01003481
Pierre Ossman1e728592008-04-16 19:13:13 +02003482 if (!dead)
Russell King03231f92014-04-25 12:57:12 +01003483 sdhci_do_reset(host, SDHCI_RESET_ALL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003484
Russell Kingb537f942014-04-25 12:56:01 +01003485 sdhci_writel(host, 0, SDHCI_INT_ENABLE);
3486 sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003487 free_irq(host->irq, host);
3488
3489 del_timer_sync(&host->timer);
3490
Pierre Ossmand129bce2006-03-24 03:18:17 -08003491 tasklet_kill(&host->finish_tasklet);
Pierre Ossman2134a922008-06-28 18:28:51 +02003492
Tim Kryger3a48edc2014-06-13 10:13:56 -07003493 if (!IS_ERR(mmc->supply.vqmmc))
3494 regulator_disable(mmc->supply.vqmmc);
Philip Rakity6231f3d2012-07-23 15:56:23 -07003495
Russell Kingedd63fc2016-01-26 13:39:50 +00003496 if (host->align_buffer)
Russell Kinge66e61c2016-01-26 13:39:55 +00003497 dma_free_coherent(mmc_dev(mmc), host->align_buffer_sz +
3498 host->adma_table_sz, host->align_buffer,
3499 host->align_addr);
Pierre Ossman2134a922008-06-28 18:28:51 +02003500
Adrian Hunter4efaa6f2014-11-04 12:42:39 +02003501 host->adma_table = NULL;
Pierre Ossman2134a922008-06-28 18:28:51 +02003502 host->align_buffer = NULL;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003503}
3504
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003505EXPORT_SYMBOL_GPL(sdhci_remove_host);
3506
3507void sdhci_free_host(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -08003508{
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003509 mmc_free_host(host->mmc);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003510}
3511
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003512EXPORT_SYMBOL_GPL(sdhci_free_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003513
3514/*****************************************************************************\
3515 * *
3516 * Driver init/exit *
3517 * *
3518\*****************************************************************************/
3519
3520static int __init sdhci_drv_init(void)
3521{
Girish K Sa3c76eb2011-10-11 11:44:09 +05303522 pr_info(DRIVER_NAME
Pierre Ossman52fbf9c2007-02-09 08:23:41 +01003523 ": Secure Digital Host Controller Interface driver\n");
Girish K Sa3c76eb2011-10-11 11:44:09 +05303524 pr_info(DRIVER_NAME ": Copyright(c) Pierre Ossman\n");
Pierre Ossmand129bce2006-03-24 03:18:17 -08003525
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003526 return 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003527}
3528
3529static void __exit sdhci_drv_exit(void)
3530{
Pierre Ossmand129bce2006-03-24 03:18:17 -08003531}
3532
3533module_init(sdhci_drv_init);
3534module_exit(sdhci_drv_exit);
3535
Pierre Ossmandf673b22006-06-30 02:22:31 -07003536module_param(debug_quirks, uint, 0444);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003537module_param(debug_quirks2, uint, 0444);
Pierre Ossman67435272006-06-30 02:22:31 -07003538
Pierre Ossman32710e82009-04-08 20:14:54 +02003539MODULE_AUTHOR("Pierre Ossman <pierre@ossman.eu>");
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003540MODULE_DESCRIPTION("Secure Digital Host Controller Interface core driver");
Pierre Ossmand129bce2006-03-24 03:18:17 -08003541MODULE_LICENSE("GPL");
Pierre Ossman67435272006-06-30 02:22:31 -07003542
Pierre Ossmandf673b22006-06-30 02:22:31 -07003543MODULE_PARM_DESC(debug_quirks, "Force certain quirks.");
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003544MODULE_PARM_DESC(debug_quirks2, "Force certain other quirks.");