blob: 6e3b4d0e5b6725c9024a323e8bafdb54548956ac [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
Aisheng Dongb45e6682014-08-27 15:26:29 +0800747 if (data || (cmd->flags & MMC_RSP_BUSY))
748 sdhci_set_timeout(host, cmd);
Andrei Warkentina3c77782011-04-11 16:13:42 -0500749
750 if (!data)
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200751 return;
752
Adrian Hunter43dea092016-06-29 16:24:26 +0300753 WARN_ON(host->data);
754
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200755 /* 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 */
Adrian Huntera4c73ab2016-06-29 16:24:25 +0300909 if (!cmd->mrq->sbc && (host->flags & SDHCI_AUTO_CMD12) &&
Corneliu Doban85cc1c32015-02-09 16:06:29 -0800910 (cmd->opcode != SD_IO_RW_EXTENDED))
Andrei Warkentine89d4562011-05-23 15:06:37 -0500911 mode |= SDHCI_TRNS_AUTO_CMD12;
Adrian Huntera4c73ab2016-06-29 16:24:25 +0300912 else if (cmd->mrq->sbc && (host->flags & SDHCI_AUTO_CMD23)) {
Andrei Warkentin8edf63712011-05-23 15:06:39 -0500913 mode |= SDHCI_TRNS_AUTO_CMD23;
Adrian Huntera4c73ab2016-06-29 16:24:25 +0300914 sdhci_writel(host, cmd->mrq->sbc->arg, SDHCI_ARGUMENT2);
Andrei Warkentin8edf63712011-05-23 15:06:39 -0500915 }
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
Adrian Hunter0cc563c2016-06-29 16:24:28 +0300926static bool sdhci_needs_reset(struct sdhci_host *host, struct mmc_request *mrq)
927{
928 return (!(host->flags & SDHCI_DEVICE_DEAD) &&
929 ((mrq->cmd && mrq->cmd->error) ||
930 (mrq->sbc && mrq->sbc->error) ||
931 (mrq->data && ((mrq->data->error && !mrq->data->stop) ||
932 (mrq->data->stop && mrq->data->stop->error))) ||
933 (host->quirks & SDHCI_QUIRK_RESET_AFTER_REQUEST)));
934}
935
Adrian Huntera6d3bdd2016-06-29 16:24:27 +0300936static void sdhci_finish_mrq(struct sdhci_host *host, struct mmc_request *mrq)
937{
Adrian Hunter5a8a3fe2016-06-29 16:24:30 +0300938 if (host->cmd && host->cmd->mrq == mrq)
939 host->cmd = NULL;
940
941 if (host->data_cmd && host->data_cmd->mrq == mrq)
942 host->data_cmd = NULL;
943
944 if (host->data && host->data->mrq == mrq)
945 host->data = NULL;
946
Adrian Huntered1563d2016-06-29 16:24:29 +0300947 if (sdhci_needs_reset(host, mrq))
948 host->pending_reset = true;
949
Adrian Huntera6d3bdd2016-06-29 16:24:27 +0300950 tasklet_schedule(&host->finish_tasklet);
951}
952
Pierre Ossmand129bce2006-03-24 03:18:17 -0800953static void sdhci_finish_data(struct sdhci_host *host)
954{
955 struct mmc_data *data;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800956
Pierre Ossmand129bce2006-03-24 03:18:17 -0800957 data = host->data;
958 host->data = NULL;
Adrian Hunter7c89a3d2016-06-29 16:24:23 +0300959 host->data_cmd = NULL;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800960
Russell Kingadd89132016-01-26 13:40:42 +0000961 if ((host->flags & (SDHCI_REQ_USE_DMA | SDHCI_USE_ADMA)) ==
962 (SDHCI_REQ_USE_DMA | SDHCI_USE_ADMA))
963 sdhci_adma_table_post(host, data);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800964
965 /*
Pierre Ossmanc9b74c52008-04-18 20:41:49 +0200966 * The specification states that the block count register must
967 * be updated, but it does not specify at what point in the
968 * data flow. That makes the register entirely useless to read
969 * back so we have to assume that nothing made it to the card
970 * in the event of an error.
Pierre Ossmand129bce2006-03-24 03:18:17 -0800971 */
Pierre Ossmanc9b74c52008-04-18 20:41:49 +0200972 if (data->error)
973 data->bytes_xfered = 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800974 else
Pierre Ossmanc9b74c52008-04-18 20:41:49 +0200975 data->bytes_xfered = data->blksz * data->blocks;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800976
Andrei Warkentine89d4562011-05-23 15:06:37 -0500977 /*
978 * Need to send CMD12 if -
979 * a) open-ended multiblock transfer (no CMD23)
980 * b) error in multiblock transfer
981 */
982 if (data->stop &&
983 (data->error ||
Adrian Huntera4c73ab2016-06-29 16:24:25 +0300984 !data->mrq->sbc)) {
Andrei Warkentine89d4562011-05-23 15:06:37 -0500985
Pierre Ossmand129bce2006-03-24 03:18:17 -0800986 /*
987 * The controller needs a reset of internal state machines
988 * upon error conditions.
989 */
Pierre Ossman17b04292007-07-22 22:18:46 +0200990 if (data->error) {
Russell King03231f92014-04-25 12:57:12 +0100991 sdhci_do_reset(host, SDHCI_RESET_CMD);
992 sdhci_do_reset(host, SDHCI_RESET_DATA);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800993 }
994
995 sdhci_send_command(host, data->stop);
Adrian Huntera6d3bdd2016-06-29 16:24:27 +0300996 } else {
997 sdhci_finish_mrq(host, data->mrq);
998 }
Pierre Ossmand129bce2006-03-24 03:18:17 -0800999}
1000
Dong Aishengc0e551292013-09-13 19:11:31 +08001001void sdhci_send_command(struct sdhci_host *host, struct mmc_command *cmd)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001002{
1003 int flags;
Pierre Ossmanfd2208d2006-06-30 02:22:28 -07001004 u32 mask;
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001005 unsigned long timeout;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001006
1007 WARN_ON(host->cmd);
1008
Russell King96776202016-01-26 13:39:34 +00001009 /* Initially, a command has no error */
1010 cmd->error = 0;
1011
Pierre Ossmand129bce2006-03-24 03:18:17 -08001012 /* Wait max 10 ms */
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001013 timeout = 10;
Pierre Ossmanfd2208d2006-06-30 02:22:28 -07001014
1015 mask = SDHCI_CMD_INHIBIT;
1016 if ((cmd->data != NULL) || (cmd->flags & MMC_RSP_BUSY))
1017 mask |= SDHCI_DATA_INHIBIT;
1018
1019 /* We shouldn't wait for data inihibit for stop commands, even
1020 though they might use busy signaling */
Adrian Huntera4c73ab2016-06-29 16:24:25 +03001021 if (cmd->mrq->data && (cmd == cmd->mrq->data->stop))
Pierre Ossmanfd2208d2006-06-30 02:22:28 -07001022 mask &= ~SDHCI_DATA_INHIBIT;
1023
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001024 while (sdhci_readl(host, SDHCI_PRESENT_STATE) & mask) {
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001025 if (timeout == 0) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01001026 pr_err("%s: Controller never released inhibit bit(s).\n",
1027 mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -08001028 sdhci_dumpregs(host);
Pierre Ossman17b04292007-07-22 22:18:46 +02001029 cmd->error = -EIO;
Adrian Huntera6d3bdd2016-06-29 16:24:27 +03001030 sdhci_finish_mrq(host, cmd->mrq);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001031 return;
1032 }
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001033 timeout--;
1034 mdelay(1);
1035 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001036
Adrian Hunter3e1a6892013-11-14 10:16:20 +02001037 timeout = jiffies;
Ulf Hansson1d4d7742014-01-08 15:06:08 +01001038 if (!cmd->data && cmd->busy_timeout > 9000)
1039 timeout += DIV_ROUND_UP(cmd->busy_timeout, 1000) * HZ + HZ;
Adrian Hunter3e1a6892013-11-14 10:16:20 +02001040 else
1041 timeout += 10 * HZ;
1042 mod_timer(&host->timer, timeout);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001043
1044 host->cmd = cmd;
Adrian Hunter7c89a3d2016-06-29 16:24:23 +03001045 if (cmd->data || cmd->flags & MMC_RSP_BUSY) {
1046 WARN_ON(host->data_cmd);
1047 host->data_cmd = cmd;
1048 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001049
Andrei Warkentina3c77782011-04-11 16:13:42 -05001050 sdhci_prepare_data(host, cmd);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001051
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001052 sdhci_writel(host, cmd->arg, SDHCI_ARGUMENT);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001053
Andrei Warkentine89d4562011-05-23 15:06:37 -05001054 sdhci_set_transfer_mode(host, cmd);
Pierre Ossmanc7fa9962006-06-30 02:22:25 -07001055
Pierre Ossmand129bce2006-03-24 03:18:17 -08001056 if ((cmd->flags & MMC_RSP_136) && (cmd->flags & MMC_RSP_BUSY)) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05301057 pr_err("%s: Unsupported response type!\n",
Pierre Ossmand129bce2006-03-24 03:18:17 -08001058 mmc_hostname(host->mmc));
Pierre Ossman17b04292007-07-22 22:18:46 +02001059 cmd->error = -EINVAL;
Adrian Huntera6d3bdd2016-06-29 16:24:27 +03001060 sdhci_finish_mrq(host, cmd->mrq);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001061 return;
1062 }
1063
1064 if (!(cmd->flags & MMC_RSP_PRESENT))
1065 flags = SDHCI_CMD_RESP_NONE;
1066 else if (cmd->flags & MMC_RSP_136)
1067 flags = SDHCI_CMD_RESP_LONG;
1068 else if (cmd->flags & MMC_RSP_BUSY)
1069 flags = SDHCI_CMD_RESP_SHORT_BUSY;
1070 else
1071 flags = SDHCI_CMD_RESP_SHORT;
1072
1073 if (cmd->flags & MMC_RSP_CRC)
1074 flags |= SDHCI_CMD_CRC;
1075 if (cmd->flags & MMC_RSP_OPCODE)
1076 flags |= SDHCI_CMD_INDEX;
Arindam Nathb513ea22011-05-05 12:19:04 +05301077
1078 /* CMD19 is special in that the Data Present Select should be set */
Girish K S069c9f12012-01-06 09:56:39 +05301079 if (cmd->data || cmd->opcode == MMC_SEND_TUNING_BLOCK ||
1080 cmd->opcode == MMC_SEND_TUNING_BLOCK_HS200)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001081 flags |= SDHCI_CMD_DATA;
1082
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001083 sdhci_writew(host, SDHCI_MAKE_CMD(cmd->opcode, flags), SDHCI_COMMAND);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001084}
Dong Aishengc0e551292013-09-13 19:11:31 +08001085EXPORT_SYMBOL_GPL(sdhci_send_command);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001086
1087static void sdhci_finish_command(struct sdhci_host *host)
1088{
Adrian Huntere0a56402016-06-29 16:24:22 +03001089 struct mmc_command *cmd = host->cmd;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001090 int i;
1091
Adrian Huntere0a56402016-06-29 16:24:22 +03001092 host->cmd = NULL;
1093
1094 if (cmd->flags & MMC_RSP_PRESENT) {
1095 if (cmd->flags & MMC_RSP_136) {
Pierre Ossmand129bce2006-03-24 03:18:17 -08001096 /* CRC is stripped so we need to do some shifting. */
1097 for (i = 0;i < 4;i++) {
Adrian Huntere0a56402016-06-29 16:24:22 +03001098 cmd->resp[i] = sdhci_readl(host,
Pierre Ossmand129bce2006-03-24 03:18:17 -08001099 SDHCI_RESPONSE + (3-i)*4) << 8;
1100 if (i != 3)
Adrian Huntere0a56402016-06-29 16:24:22 +03001101 cmd->resp[i] |=
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001102 sdhci_readb(host,
Pierre Ossmand129bce2006-03-24 03:18:17 -08001103 SDHCI_RESPONSE + (3-i)*4-1);
1104 }
1105 } else {
Adrian Huntere0a56402016-06-29 16:24:22 +03001106 cmd->resp[0] = sdhci_readl(host, SDHCI_RESPONSE);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001107 }
1108 }
1109
Adrian Hunter6bde8682016-06-29 16:24:20 +03001110 /*
1111 * The host can send and interrupt when the busy state has
1112 * ended, allowing us to wait without wasting CPU cycles.
1113 * The busy signal uses DAT0 so this is similar to waiting
1114 * for data to complete.
1115 *
1116 * Note: The 1.0 specification is a bit ambiguous about this
1117 * feature so there might be some problems with older
1118 * controllers.
1119 */
Adrian Huntere0a56402016-06-29 16:24:22 +03001120 if (cmd->flags & MMC_RSP_BUSY) {
1121 if (cmd->data) {
Adrian Hunter6bde8682016-06-29 16:24:20 +03001122 DBG("Cannot wait for busy signal when also doing a data transfer");
1123 } else if (!(host->quirks & SDHCI_QUIRK_NO_BUSY_IRQ) &&
Adrian Hunterea968022016-06-29 16:24:24 +03001124 cmd == host->data_cmd) {
1125 /* Command complete before busy is ended */
Adrian Hunter6bde8682016-06-29 16:24:20 +03001126 return;
1127 }
1128 }
1129
Andrei Warkentine89d4562011-05-23 15:06:37 -05001130 /* Finished CMD23, now send actual command. */
Adrian Huntera4c73ab2016-06-29 16:24:25 +03001131 if (cmd == cmd->mrq->sbc) {
1132 sdhci_send_command(host, cmd->mrq->cmd);
Andrei Warkentine89d4562011-05-23 15:06:37 -05001133 } else {
Pierre Ossmane538fbe2007-08-12 16:46:32 +02001134
Andrei Warkentine89d4562011-05-23 15:06:37 -05001135 /* Processed actual command. */
1136 if (host->data && host->data_early)
1137 sdhci_finish_data(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001138
Adrian Huntere0a56402016-06-29 16:24:22 +03001139 if (!cmd->data)
Adrian Huntera6d3bdd2016-06-29 16:24:27 +03001140 sdhci_finish_mrq(host, cmd->mrq);
Andrei Warkentine89d4562011-05-23 15:06:37 -05001141 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001142}
1143
Kevin Liu52983382013-01-31 11:31:37 +08001144static u16 sdhci_get_preset_value(struct sdhci_host *host)
1145{
Russell Kingd975f122014-04-25 12:59:31 +01001146 u16 preset = 0;
Kevin Liu52983382013-01-31 11:31:37 +08001147
Russell Kingd975f122014-04-25 12:59:31 +01001148 switch (host->timing) {
1149 case MMC_TIMING_UHS_SDR12:
Kevin Liu52983382013-01-31 11:31:37 +08001150 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR12);
1151 break;
Russell Kingd975f122014-04-25 12:59:31 +01001152 case MMC_TIMING_UHS_SDR25:
Kevin Liu52983382013-01-31 11:31:37 +08001153 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR25);
1154 break;
Russell Kingd975f122014-04-25 12:59:31 +01001155 case MMC_TIMING_UHS_SDR50:
Kevin Liu52983382013-01-31 11:31:37 +08001156 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR50);
1157 break;
Russell Kingd975f122014-04-25 12:59:31 +01001158 case MMC_TIMING_UHS_SDR104:
1159 case MMC_TIMING_MMC_HS200:
Kevin Liu52983382013-01-31 11:31:37 +08001160 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR104);
1161 break;
Russell Kingd975f122014-04-25 12:59:31 +01001162 case MMC_TIMING_UHS_DDR50:
Jisheng Zhang0dafa602015-08-18 16:21:39 +08001163 case MMC_TIMING_MMC_DDR52:
Kevin Liu52983382013-01-31 11:31:37 +08001164 preset = sdhci_readw(host, SDHCI_PRESET_FOR_DDR50);
1165 break;
Adrian Huntere9fb05d2014-11-06 15:19:06 +02001166 case MMC_TIMING_MMC_HS400:
1167 preset = sdhci_readw(host, SDHCI_PRESET_FOR_HS400);
1168 break;
Kevin Liu52983382013-01-31 11:31:37 +08001169 default:
1170 pr_warn("%s: Invalid UHS-I mode selected\n",
1171 mmc_hostname(host->mmc));
1172 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR12);
1173 break;
1174 }
1175 return preset;
1176}
1177
Ludovic Desrochesfb9ee042016-04-07 11:13:08 +02001178u16 sdhci_calc_clk(struct sdhci_host *host, unsigned int clock,
1179 unsigned int *actual_clock)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001180{
Arindam Nathc3ed3872011-05-05 12:19:06 +05301181 int div = 0; /* Initialized for compiler warning */
Giuseppe CAVALLAROdf162192011-11-04 13:53:19 +01001182 int real_div = div, clk_mul = 1;
Arindam Nathc3ed3872011-05-05 12:19:06 +05301183 u16 clk = 0;
ludovic.desroches@atmel.com54971592015-07-29 16:22:46 +02001184 bool switch_base_clk = false;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001185
Zhangfei Gao85105c52010-08-06 07:10:01 +08001186 if (host->version >= SDHCI_SPEC_300) {
Russell Kingda91a8f2014-04-25 13:00:12 +01001187 if (host->preset_enabled) {
Kevin Liu52983382013-01-31 11:31:37 +08001188 u16 pre_val;
1189
1190 clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL);
1191 pre_val = sdhci_get_preset_value(host);
1192 div = (pre_val & SDHCI_PRESET_SDCLK_FREQ_MASK)
1193 >> SDHCI_PRESET_SDCLK_FREQ_SHIFT;
1194 if (host->clk_mul &&
1195 (pre_val & SDHCI_PRESET_CLKGEN_SEL_MASK)) {
1196 clk = SDHCI_PROG_CLOCK_MODE;
1197 real_div = div + 1;
1198 clk_mul = host->clk_mul;
1199 } else {
1200 real_div = max_t(int, 1, div << 1);
1201 }
1202 goto clock_set;
1203 }
1204
Arindam Nathc3ed3872011-05-05 12:19:06 +05301205 /*
1206 * Check if the Host Controller supports Programmable Clock
1207 * Mode.
1208 */
1209 if (host->clk_mul) {
Kevin Liu52983382013-01-31 11:31:37 +08001210 for (div = 1; div <= 1024; div++) {
1211 if ((host->max_clk * host->clk_mul / div)
1212 <= clock)
1213 break;
Zhangfei Gao85105c52010-08-06 07:10:01 +08001214 }
ludovic.desroches@atmel.com54971592015-07-29 16:22:46 +02001215 if ((host->max_clk * host->clk_mul / div) <= clock) {
1216 /*
1217 * Set Programmable Clock Mode in the Clock
1218 * Control register.
1219 */
1220 clk = SDHCI_PROG_CLOCK_MODE;
1221 real_div = div;
1222 clk_mul = host->clk_mul;
1223 div--;
1224 } else {
1225 /*
1226 * Divisor can be too small to reach clock
1227 * speed requirement. Then use the base clock.
1228 */
1229 switch_base_clk = true;
1230 }
1231 }
1232
1233 if (!host->clk_mul || switch_base_clk) {
Arindam Nathc3ed3872011-05-05 12:19:06 +05301234 /* Version 3.00 divisors must be a multiple of 2. */
1235 if (host->max_clk <= clock)
1236 div = 1;
1237 else {
1238 for (div = 2; div < SDHCI_MAX_DIV_SPEC_300;
1239 div += 2) {
1240 if ((host->max_clk / div) <= clock)
1241 break;
1242 }
1243 }
Giuseppe CAVALLAROdf162192011-11-04 13:53:19 +01001244 real_div = div;
Arindam Nathc3ed3872011-05-05 12:19:06 +05301245 div >>= 1;
Suneel Garapatid1955c32015-06-09 13:01:50 +05301246 if ((host->quirks2 & SDHCI_QUIRK2_CLOCK_DIV_ZERO_BROKEN)
1247 && !div && host->max_clk <= 25000000)
1248 div = 1;
Zhangfei Gao85105c52010-08-06 07:10:01 +08001249 }
1250 } else {
1251 /* Version 2.00 divisors must be a power of 2. */
Zhangfei Gao03975262010-09-20 15:15:18 -04001252 for (div = 1; div < SDHCI_MAX_DIV_SPEC_200; div *= 2) {
Zhangfei Gao85105c52010-08-06 07:10:01 +08001253 if ((host->max_clk / div) <= clock)
1254 break;
1255 }
Giuseppe CAVALLAROdf162192011-11-04 13:53:19 +01001256 real_div = div;
Arindam Nathc3ed3872011-05-05 12:19:06 +05301257 div >>= 1;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001258 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001259
Kevin Liu52983382013-01-31 11:31:37 +08001260clock_set:
Aisheng Dong03d6f5f2014-08-27 15:26:32 +08001261 if (real_div)
Ludovic Desrochesfb9ee042016-04-07 11:13:08 +02001262 *actual_clock = (host->max_clk * clk_mul) / real_div;
Arindam Nathc3ed3872011-05-05 12:19:06 +05301263 clk |= (div & SDHCI_DIV_MASK) << SDHCI_DIVIDER_SHIFT;
Zhangfei Gao85105c52010-08-06 07:10:01 +08001264 clk |= ((div & SDHCI_DIV_HI_MASK) >> SDHCI_DIV_MASK_LEN)
1265 << SDHCI_DIVIDER_HI_SHIFT;
Ludovic Desrochesfb9ee042016-04-07 11:13:08 +02001266
1267 return clk;
1268}
1269EXPORT_SYMBOL_GPL(sdhci_calc_clk);
1270
1271void sdhci_set_clock(struct sdhci_host *host, unsigned int clock)
1272{
1273 u16 clk;
1274 unsigned long timeout;
1275
1276 host->mmc->actual_clock = 0;
1277
1278 sdhci_writew(host, 0, SDHCI_CLOCK_CONTROL);
Ludovic Desrochesfb9ee042016-04-07 11:13:08 +02001279
1280 if (clock == 0)
1281 return;
1282
1283 clk = sdhci_calc_clk(host, clock, &host->mmc->actual_clock);
1284
Pierre Ossmand129bce2006-03-24 03:18:17 -08001285 clk |= SDHCI_CLOCK_INT_EN;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001286 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001287
Chris Ball27f6cb12009-09-22 16:45:31 -07001288 /* Wait max 20 ms */
1289 timeout = 20;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001290 while (!((clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL))
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001291 & SDHCI_CLOCK_INT_STABLE)) {
1292 if (timeout == 0) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01001293 pr_err("%s: Internal clock never stabilised.\n",
1294 mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -08001295 sdhci_dumpregs(host);
1296 return;
1297 }
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001298 timeout--;
1299 mdelay(1);
1300 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001301
1302 clk |= SDHCI_CLOCK_CARD_EN;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001303 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001304}
Russell King17710592014-04-25 12:58:55 +01001305EXPORT_SYMBOL_GPL(sdhci_set_clock);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001306
Adrian Hunter1dceb042016-03-29 12:45:43 +03001307static void sdhci_set_power_reg(struct sdhci_host *host, unsigned char mode,
1308 unsigned short vdd)
Pierre Ossman146ad662006-06-30 02:22:23 -07001309{
Tim Kryger3a48edc2014-06-13 10:13:56 -07001310 struct mmc_host *mmc = host->mmc;
Adrian Hunter1dceb042016-03-29 12:45:43 +03001311
1312 spin_unlock_irq(&host->lock);
1313 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, vdd);
1314 spin_lock_irq(&host->lock);
1315
1316 if (mode != MMC_POWER_OFF)
1317 sdhci_writeb(host, SDHCI_POWER_ON, SDHCI_POWER_CONTROL);
1318 else
1319 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
1320}
1321
1322void sdhci_set_power(struct sdhci_host *host, unsigned char mode,
1323 unsigned short vdd)
1324{
Giuseppe Cavallaro83642482010-09-28 10:41:28 +02001325 u8 pwr = 0;
Pierre Ossman146ad662006-06-30 02:22:23 -07001326
Russell King24fbb3c2014-04-25 13:00:06 +01001327 if (mode != MMC_POWER_OFF) {
1328 switch (1 << vdd) {
Pierre Ossmanae628902009-05-03 20:45:03 +02001329 case MMC_VDD_165_195:
1330 pwr = SDHCI_POWER_180;
1331 break;
1332 case MMC_VDD_29_30:
1333 case MMC_VDD_30_31:
1334 pwr = SDHCI_POWER_300;
1335 break;
1336 case MMC_VDD_32_33:
1337 case MMC_VDD_33_34:
1338 pwr = SDHCI_POWER_330;
1339 break;
1340 default:
Adrian Hunter9d5de932015-11-26 14:00:46 +02001341 WARN(1, "%s: Invalid vdd %#x\n",
1342 mmc_hostname(host->mmc), vdd);
1343 break;
Pierre Ossmanae628902009-05-03 20:45:03 +02001344 }
1345 }
1346
1347 if (host->pwr == pwr)
Russell Kinge921a8b2014-04-25 13:00:01 +01001348 return;
Pierre Ossman146ad662006-06-30 02:22:23 -07001349
Pierre Ossmanae628902009-05-03 20:45:03 +02001350 host->pwr = pwr;
1351
1352 if (pwr == 0) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001353 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
Adrian Hunterf0710a52013-05-06 12:17:32 +03001354 if (host->quirks2 & SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON)
1355 sdhci_runtime_pm_bus_off(host);
Russell Kinge921a8b2014-04-25 13:00:01 +01001356 } else {
1357 /*
1358 * Spec says that we should clear the power reg before setting
1359 * a new value. Some controllers don't seem to like this though.
1360 */
1361 if (!(host->quirks & SDHCI_QUIRK_SINGLE_POWER_WRITE))
1362 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
Darren Salt9e9dc5f2007-01-27 15:32:31 +01001363
Russell Kinge921a8b2014-04-25 13:00:01 +01001364 /*
1365 * At least the Marvell CaFe chip gets confused if we set the
1366 * voltage and set turn on power at the same time, so set the
1367 * voltage first.
1368 */
1369 if (host->quirks & SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER)
1370 sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL);
Pierre Ossman146ad662006-06-30 02:22:23 -07001371
Russell Kinge921a8b2014-04-25 13:00:01 +01001372 pwr |= SDHCI_POWER_ON;
1373
Pierre Ossmanae628902009-05-03 20:45:03 +02001374 sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL);
1375
Russell Kinge921a8b2014-04-25 13:00:01 +01001376 if (host->quirks2 & SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON)
1377 sdhci_runtime_pm_bus_on(host);
Andres Salomone08c1692008-07-04 10:00:03 -07001378
Russell Kinge921a8b2014-04-25 13:00:01 +01001379 /*
1380 * Some controllers need an extra 10ms delay of 10ms before
1381 * they can apply clock after applying power
1382 */
1383 if (host->quirks & SDHCI_QUIRK_DELAY_AFTER_POWER)
1384 mdelay(10);
1385 }
Adrian Hunter1dceb042016-03-29 12:45:43 +03001386}
1387EXPORT_SYMBOL_GPL(sdhci_set_power);
Jisheng Zhang918f4cb2015-12-11 21:36:29 +08001388
Adrian Hunter1dceb042016-03-29 12:45:43 +03001389static void __sdhci_set_power(struct sdhci_host *host, unsigned char mode,
1390 unsigned short vdd)
1391{
1392 struct mmc_host *mmc = host->mmc;
1393
1394 if (host->ops->set_power)
1395 host->ops->set_power(host, mode, vdd);
1396 else if (!IS_ERR(mmc->supply.vmmc))
1397 sdhci_set_power_reg(host, mode, vdd);
1398 else
1399 sdhci_set_power(host, mode, vdd);
Pierre Ossman146ad662006-06-30 02:22:23 -07001400}
1401
Pierre Ossmand129bce2006-03-24 03:18:17 -08001402/*****************************************************************************\
1403 * *
1404 * MMC callbacks *
1405 * *
1406\*****************************************************************************/
1407
1408static void sdhci_request(struct mmc_host *mmc, struct mmc_request *mrq)
1409{
1410 struct sdhci_host *host;
Shawn Guo505a8682012-12-11 15:23:42 +08001411 int present;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001412 unsigned long flags;
1413
1414 host = mmc_priv(mmc);
1415
Scott Branden04e079cf2015-03-10 11:35:10 -07001416 /* Firstly check card presence */
Adrian Hunter8d28b7a2016-02-09 16:12:36 +02001417 present = mmc->ops->get_cd(mmc);
Krzysztof Kozlowski28367662015-01-05 10:50:15 +01001418
Pierre Ossmand129bce2006-03-24 03:18:17 -08001419 spin_lock_irqsave(&host->lock, flags);
1420
1421 WARN_ON(host->mrq != NULL);
1422
Adrian Hunter061d17a2016-04-12 14:25:09 +03001423 sdhci_led_activate(host);
Andrei Warkentine89d4562011-05-23 15:06:37 -05001424
1425 /*
1426 * Ensure we don't send the STOP for non-SET_BLOCK_COUNTED
1427 * requests if Auto-CMD12 is enabled.
1428 */
1429 if (!mrq->sbc && (host->flags & SDHCI_AUTO_CMD12)) {
Jerry Huangc4512f72010-08-10 18:01:59 -07001430 if (mrq->stop) {
1431 mrq->data->stop = NULL;
1432 mrq->stop = NULL;
1433 }
1434 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001435
1436 host->mrq = mrq;
1437
Anton Vorontsov68d1fb72009-03-17 00:13:52 +03001438 if (!present || host->flags & SDHCI_DEVICE_DEAD) {
Adrian Huntera4c73ab2016-06-29 16:24:25 +03001439 mrq->cmd->error = -ENOMEDIUM;
Adrian Huntera6d3bdd2016-06-29 16:24:27 +03001440 sdhci_finish_mrq(host, mrq);
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05301441 } else {
Andrei Warkentin8edf63712011-05-23 15:06:39 -05001442 if (mrq->sbc && !(host->flags & SDHCI_AUTO_CMD23))
Andrei Warkentine89d4562011-05-23 15:06:37 -05001443 sdhci_send_command(host, mrq->sbc);
1444 else
1445 sdhci_send_command(host, mrq->cmd);
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05301446 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001447
Pierre Ossman5f25a662006-10-04 02:15:39 -07001448 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -08001449 spin_unlock_irqrestore(&host->lock, flags);
1450}
1451
Russell King2317f562014-04-25 12:57:07 +01001452void sdhci_set_bus_width(struct sdhci_host *host, int width)
1453{
1454 u8 ctrl;
1455
1456 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
1457 if (width == MMC_BUS_WIDTH_8) {
1458 ctrl &= ~SDHCI_CTRL_4BITBUS;
1459 if (host->version >= SDHCI_SPEC_300)
1460 ctrl |= SDHCI_CTRL_8BITBUS;
1461 } else {
1462 if (host->version >= SDHCI_SPEC_300)
1463 ctrl &= ~SDHCI_CTRL_8BITBUS;
1464 if (width == MMC_BUS_WIDTH_4)
1465 ctrl |= SDHCI_CTRL_4BITBUS;
1466 else
1467 ctrl &= ~SDHCI_CTRL_4BITBUS;
1468 }
1469 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
1470}
1471EXPORT_SYMBOL_GPL(sdhci_set_bus_width);
1472
Russell King96d7b782014-04-25 12:59:26 +01001473void sdhci_set_uhs_signaling(struct sdhci_host *host, unsigned timing)
1474{
1475 u16 ctrl_2;
1476
1477 ctrl_2 = sdhci_readw(host, SDHCI_HOST_CONTROL2);
1478 /* Select Bus Speed Mode for host */
1479 ctrl_2 &= ~SDHCI_CTRL_UHS_MASK;
1480 if ((timing == MMC_TIMING_MMC_HS200) ||
1481 (timing == MMC_TIMING_UHS_SDR104))
1482 ctrl_2 |= SDHCI_CTRL_UHS_SDR104;
1483 else if (timing == MMC_TIMING_UHS_SDR12)
1484 ctrl_2 |= SDHCI_CTRL_UHS_SDR12;
1485 else if (timing == MMC_TIMING_UHS_SDR25)
1486 ctrl_2 |= SDHCI_CTRL_UHS_SDR25;
1487 else if (timing == MMC_TIMING_UHS_SDR50)
1488 ctrl_2 |= SDHCI_CTRL_UHS_SDR50;
1489 else if ((timing == MMC_TIMING_UHS_DDR50) ||
1490 (timing == MMC_TIMING_MMC_DDR52))
1491 ctrl_2 |= SDHCI_CTRL_UHS_DDR50;
Adrian Huntere9fb05d2014-11-06 15:19:06 +02001492 else if (timing == MMC_TIMING_MMC_HS400)
1493 ctrl_2 |= SDHCI_CTRL_HS400; /* Non-standard */
Russell King96d7b782014-04-25 12:59:26 +01001494 sdhci_writew(host, ctrl_2, SDHCI_HOST_CONTROL2);
1495}
1496EXPORT_SYMBOL_GPL(sdhci_set_uhs_signaling);
1497
Dong Aishengded97e02016-04-16 01:29:25 +08001498static void sdhci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001499{
Dong Aishengded97e02016-04-16 01:29:25 +08001500 struct sdhci_host *host = mmc_priv(mmc);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001501 unsigned long flags;
1502 u8 ctrl;
1503
Pierre Ossmand129bce2006-03-24 03:18:17 -08001504 spin_lock_irqsave(&host->lock, flags);
1505
Adrian Hunterceb61432011-12-27 15:48:41 +02001506 if (host->flags & SDHCI_DEVICE_DEAD) {
1507 spin_unlock_irqrestore(&host->lock, flags);
Tim Kryger3a48edc2014-06-13 10:13:56 -07001508 if (!IS_ERR(mmc->supply.vmmc) &&
1509 ios->power_mode == MMC_POWER_OFF)
Markus Mayer4e743f12014-07-03 13:27:42 -07001510 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, 0);
Adrian Hunterceb61432011-12-27 15:48:41 +02001511 return;
1512 }
Pierre Ossman1e728592008-04-16 19:13:13 +02001513
Pierre Ossmand129bce2006-03-24 03:18:17 -08001514 /*
1515 * Reset the chip on each power off.
1516 * Should clear out any weird states.
1517 */
1518 if (ios->power_mode == MMC_POWER_OFF) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001519 sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE);
Anton Vorontsov7260cf52009-03-17 00:13:48 +03001520 sdhci_reinit(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001521 }
1522
Kevin Liu52983382013-01-31 11:31:37 +08001523 if (host->version >= SDHCI_SPEC_300 &&
Dong Aisheng372c4632013-10-18 19:48:50 +08001524 (ios->power_mode == MMC_POWER_UP) &&
1525 !(host->quirks2 & SDHCI_QUIRK2_PRESET_VALUE_BROKEN))
Kevin Liu52983382013-01-31 11:31:37 +08001526 sdhci_enable_preset_value(host, false);
1527
Russell King373073e2014-04-25 12:58:45 +01001528 if (!ios->clock || ios->clock != host->clock) {
Russell King17710592014-04-25 12:58:55 +01001529 host->ops->set_clock(host, ios->clock);
Russell King373073e2014-04-25 12:58:45 +01001530 host->clock = ios->clock;
Aisheng Dong03d6f5f2014-08-27 15:26:32 +08001531
1532 if (host->quirks & SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK &&
1533 host->clock) {
1534 host->timeout_clk = host->mmc->actual_clock ?
1535 host->mmc->actual_clock / 1000 :
1536 host->clock / 1000;
1537 host->mmc->max_busy_timeout =
1538 host->ops->get_max_timeout_count ?
1539 host->ops->get_max_timeout_count(host) :
1540 1 << 27;
1541 host->mmc->max_busy_timeout /= host->timeout_clk;
1542 }
Russell King373073e2014-04-25 12:58:45 +01001543 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001544
Adrian Hunter1dceb042016-03-29 12:45:43 +03001545 __sdhci_set_power(host, ios->power_mode, ios->vdd);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001546
Philip Rakity643a81f2010-09-23 08:24:32 -07001547 if (host->ops->platform_send_init_74_clocks)
1548 host->ops->platform_send_init_74_clocks(host, ios->power_mode);
1549
Russell King2317f562014-04-25 12:57:07 +01001550 host->ops->set_bus_width(host, ios->bus_width);
Philip Rakity15ec4462010-11-19 16:48:39 -05001551
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001552 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
Pierre Ossmancd9277c2007-02-18 12:07:47 +01001553
Philip Rakity3ab9c8d2010-10-06 11:57:23 -07001554 if ((ios->timing == MMC_TIMING_SD_HS ||
1555 ios->timing == MMC_TIMING_MMC_HS)
1556 && !(host->quirks & SDHCI_QUIRK_NO_HISPD_BIT))
Pierre Ossmancd9277c2007-02-18 12:07:47 +01001557 ctrl |= SDHCI_CTRL_HISPD;
1558 else
1559 ctrl &= ~SDHCI_CTRL_HISPD;
1560
Arindam Nathd6d50a12011-05-05 12:18:59 +05301561 if (host->version >= SDHCI_SPEC_300) {
Arindam Nath49c468f2011-05-05 12:19:01 +05301562 u16 clk, ctrl_2;
Arindam Nath49c468f2011-05-05 12:19:01 +05301563
1564 /* In case of UHS-I modes, set High Speed Enable */
Adrian Huntere9fb05d2014-11-06 15:19:06 +02001565 if ((ios->timing == MMC_TIMING_MMC_HS400) ||
1566 (ios->timing == MMC_TIMING_MMC_HS200) ||
Seungwon Jeonbb8175a2014-03-14 21:12:48 +09001567 (ios->timing == MMC_TIMING_MMC_DDR52) ||
Girish K S069c9f12012-01-06 09:56:39 +05301568 (ios->timing == MMC_TIMING_UHS_SDR50) ||
Arindam Nath49c468f2011-05-05 12:19:01 +05301569 (ios->timing == MMC_TIMING_UHS_SDR104) ||
1570 (ios->timing == MMC_TIMING_UHS_DDR50) ||
Alexander Elbsdd8df172012-01-03 23:26:53 -05001571 (ios->timing == MMC_TIMING_UHS_SDR25))
Arindam Nath49c468f2011-05-05 12:19:01 +05301572 ctrl |= SDHCI_CTRL_HISPD;
Arindam Nathd6d50a12011-05-05 12:18:59 +05301573
Russell Kingda91a8f2014-04-25 13:00:12 +01001574 if (!host->preset_enabled) {
Arindam Nath758535c2011-05-05 12:19:00 +05301575 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Arindam Nathd6d50a12011-05-05 12:18:59 +05301576 /*
1577 * We only need to set Driver Strength if the
1578 * preset value enable is not set.
1579 */
Russell Kingda91a8f2014-04-25 13:00:12 +01001580 ctrl_2 = sdhci_readw(host, SDHCI_HOST_CONTROL2);
Arindam Nathd6d50a12011-05-05 12:18:59 +05301581 ctrl_2 &= ~SDHCI_CTRL_DRV_TYPE_MASK;
1582 if (ios->drv_type == MMC_SET_DRIVER_TYPE_A)
1583 ctrl_2 |= SDHCI_CTRL_DRV_TYPE_A;
Petri Gynther43e943a2015-05-20 14:35:00 -07001584 else if (ios->drv_type == MMC_SET_DRIVER_TYPE_B)
1585 ctrl_2 |= SDHCI_CTRL_DRV_TYPE_B;
Arindam Nathd6d50a12011-05-05 12:18:59 +05301586 else if (ios->drv_type == MMC_SET_DRIVER_TYPE_C)
1587 ctrl_2 |= SDHCI_CTRL_DRV_TYPE_C;
Petri Gynther43e943a2015-05-20 14:35:00 -07001588 else if (ios->drv_type == MMC_SET_DRIVER_TYPE_D)
1589 ctrl_2 |= SDHCI_CTRL_DRV_TYPE_D;
1590 else {
Marek Vasut2e4456f2015-11-18 10:47:02 +01001591 pr_warn("%s: invalid driver type, default to driver type B\n",
1592 mmc_hostname(mmc));
Petri Gynther43e943a2015-05-20 14:35:00 -07001593 ctrl_2 |= SDHCI_CTRL_DRV_TYPE_B;
1594 }
Arindam Nathd6d50a12011-05-05 12:18:59 +05301595
1596 sdhci_writew(host, ctrl_2, SDHCI_HOST_CONTROL2);
Arindam Nath758535c2011-05-05 12:19:00 +05301597 } else {
1598 /*
1599 * According to SDHC Spec v3.00, if the Preset Value
1600 * Enable in the Host Control 2 register is set, we
1601 * need to reset SD Clock Enable before changing High
1602 * Speed Enable to avoid generating clock gliches.
1603 */
Arindam Nath758535c2011-05-05 12:19:00 +05301604
1605 /* Reset SD Clock Enable */
1606 clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL);
1607 clk &= ~SDHCI_CLOCK_CARD_EN;
1608 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
1609
1610 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
1611
1612 /* Re-enable SD Clock */
Russell King17710592014-04-25 12:58:55 +01001613 host->ops->set_clock(host, host->clock);
Arindam Nathd6d50a12011-05-05 12:18:59 +05301614 }
Arindam Nath49c468f2011-05-05 12:19:01 +05301615
Arindam Nath49c468f2011-05-05 12:19:01 +05301616 /* Reset SD Clock Enable */
1617 clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL);
1618 clk &= ~SDHCI_CLOCK_CARD_EN;
1619 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
1620
Russell King96d7b782014-04-25 12:59:26 +01001621 host->ops->set_uhs_signaling(host, ios->timing);
Russell Kingd975f122014-04-25 12:59:31 +01001622 host->timing = ios->timing;
Arindam Nath49c468f2011-05-05 12:19:01 +05301623
Kevin Liu52983382013-01-31 11:31:37 +08001624 if (!(host->quirks2 & SDHCI_QUIRK2_PRESET_VALUE_BROKEN) &&
1625 ((ios->timing == MMC_TIMING_UHS_SDR12) ||
1626 (ios->timing == MMC_TIMING_UHS_SDR25) ||
1627 (ios->timing == MMC_TIMING_UHS_SDR50) ||
1628 (ios->timing == MMC_TIMING_UHS_SDR104) ||
Jisheng Zhang0dafa602015-08-18 16:21:39 +08001629 (ios->timing == MMC_TIMING_UHS_DDR50) ||
1630 (ios->timing == MMC_TIMING_MMC_DDR52))) {
Kevin Liu52983382013-01-31 11:31:37 +08001631 u16 preset;
1632
1633 sdhci_enable_preset_value(host, true);
1634 preset = sdhci_get_preset_value(host);
1635 ios->drv_type = (preset & SDHCI_PRESET_DRV_MASK)
1636 >> SDHCI_PRESET_DRV_SHIFT;
1637 }
1638
Arindam Nath49c468f2011-05-05 12:19:01 +05301639 /* Re-enable SD Clock */
Russell King17710592014-04-25 12:58:55 +01001640 host->ops->set_clock(host, host->clock);
Arindam Nath758535c2011-05-05 12:19:00 +05301641 } else
1642 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Arindam Nathd6d50a12011-05-05 12:18:59 +05301643
Leandro Dorileob8352262007-07-25 23:47:04 +02001644 /*
1645 * Some (ENE) controllers go apeshit on some ios operation,
1646 * signalling timeout and CRC errors even on CMD0. Resetting
1647 * it on each ios seems to solve the problem.
1648 */
Mohammad Jamalc63705e2015-01-13 20:47:24 +05301649 if (host->quirks & SDHCI_QUIRK_RESET_CMD_DATA_ON_IOS)
Russell King03231f92014-04-25 12:57:12 +01001650 sdhci_do_reset(host, SDHCI_RESET_CMD | SDHCI_RESET_DATA);
Leandro Dorileob8352262007-07-25 23:47:04 +02001651
Pierre Ossman5f25a662006-10-04 02:15:39 -07001652 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -08001653 spin_unlock_irqrestore(&host->lock, flags);
1654}
1655
Dong Aishengded97e02016-04-16 01:29:25 +08001656static int sdhci_get_cd(struct mmc_host *mmc)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001657{
1658 struct sdhci_host *host = mmc_priv(mmc);
Dong Aishengded97e02016-04-16 01:29:25 +08001659 int gpio_cd = mmc_gpio_get_cd(mmc);
Kevin Liu94144a42013-02-28 17:35:53 +08001660
1661 if (host->flags & SDHCI_DEVICE_DEAD)
1662 return 0;
1663
Ivan T. Ivanov88af5652015-07-06 15:16:19 +03001664 /* If nonremovable, assume that the card is always present. */
Jaehoon Chung860951c2016-06-21 10:13:26 +09001665 if (!mmc_card_is_removable(host->mmc))
Kevin Liu94144a42013-02-28 17:35:53 +08001666 return 1;
1667
Ivan T. Ivanov88af5652015-07-06 15:16:19 +03001668 /*
1669 * Try slot gpio detect, if defined it take precedence
1670 * over build in controller functionality
1671 */
Arnd Bergmann287980e2016-05-27 23:23:25 +02001672 if (gpio_cd >= 0)
Kevin Liu94144a42013-02-28 17:35:53 +08001673 return !!gpio_cd;
1674
Ivan T. Ivanov88af5652015-07-06 15:16:19 +03001675 /* If polling, assume that the card is always present. */
1676 if (host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION)
1677 return 1;
1678
Kevin Liu94144a42013-02-28 17:35:53 +08001679 /* Host native card detect */
1680 return !!(sdhci_readl(host, SDHCI_PRESENT_STATE) & SDHCI_CARD_PRESENT);
1681}
1682
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001683static int sdhci_check_ro(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001684{
Pierre Ossmand129bce2006-03-24 03:18:17 -08001685 unsigned long flags;
Wolfram Sang2dfb5792010-10-15 12:21:01 +02001686 int is_readonly;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001687
Pierre Ossmand129bce2006-03-24 03:18:17 -08001688 spin_lock_irqsave(&host->lock, flags);
1689
Pierre Ossman1e728592008-04-16 19:13:13 +02001690 if (host->flags & SDHCI_DEVICE_DEAD)
Wolfram Sang2dfb5792010-10-15 12:21:01 +02001691 is_readonly = 0;
1692 else if (host->ops->get_ro)
1693 is_readonly = host->ops->get_ro(host);
Pierre Ossman1e728592008-04-16 19:13:13 +02001694 else
Wolfram Sang2dfb5792010-10-15 12:21:01 +02001695 is_readonly = !(sdhci_readl(host, SDHCI_PRESENT_STATE)
1696 & SDHCI_WRITE_PROTECT);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001697
1698 spin_unlock_irqrestore(&host->lock, flags);
1699
Wolfram Sang2dfb5792010-10-15 12:21:01 +02001700 /* This quirk needs to be replaced by a callback-function later */
1701 return host->quirks & SDHCI_QUIRK_INVERTED_WRITE_PROTECT ?
1702 !is_readonly : is_readonly;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001703}
1704
Takashi Iwai82b0e232011-04-21 20:26:38 +02001705#define SAMPLE_COUNT 5
1706
Dong Aishengded97e02016-04-16 01:29:25 +08001707static int sdhci_get_ro(struct mmc_host *mmc)
Takashi Iwai82b0e232011-04-21 20:26:38 +02001708{
Dong Aishengded97e02016-04-16 01:29:25 +08001709 struct sdhci_host *host = mmc_priv(mmc);
Takashi Iwai82b0e232011-04-21 20:26:38 +02001710 int i, ro_count;
1711
Takashi Iwai82b0e232011-04-21 20:26:38 +02001712 if (!(host->quirks & SDHCI_QUIRK_UNSTABLE_RO_DETECT))
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001713 return sdhci_check_ro(host);
Takashi Iwai82b0e232011-04-21 20:26:38 +02001714
1715 ro_count = 0;
1716 for (i = 0; i < SAMPLE_COUNT; i++) {
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001717 if (sdhci_check_ro(host)) {
Takashi Iwai82b0e232011-04-21 20:26:38 +02001718 if (++ro_count > SAMPLE_COUNT / 2)
1719 return 1;
1720 }
1721 msleep(30);
1722 }
1723 return 0;
1724}
1725
Adrian Hunter20758b62011-08-29 16:42:12 +03001726static void sdhci_hw_reset(struct mmc_host *mmc)
1727{
1728 struct sdhci_host *host = mmc_priv(mmc);
1729
1730 if (host->ops && host->ops->hw_reset)
1731 host->ops->hw_reset(host);
1732}
1733
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001734static void sdhci_enable_sdio_irq_nolock(struct sdhci_host *host, int enable)
1735{
Russell Kingbe138552014-04-25 12:55:56 +01001736 if (!(host->flags & SDHCI_DEVICE_DEAD)) {
Russell Kingef104332014-04-25 12:55:41 +01001737 if (enable)
Russell Kingb537f942014-04-25 12:56:01 +01001738 host->ier |= SDHCI_INT_CARD_INT;
Russell Kingef104332014-04-25 12:55:41 +01001739 else
Russell Kingb537f942014-04-25 12:56:01 +01001740 host->ier &= ~SDHCI_INT_CARD_INT;
1741
1742 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
1743 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Russell Kingef104332014-04-25 12:55:41 +01001744 mmiowb();
1745 }
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001746}
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001747
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001748static void sdhci_enable_sdio_irq(struct mmc_host *mmc, int enable)
1749{
1750 struct sdhci_host *host = mmc_priv(mmc);
1751 unsigned long flags;
1752
1753 spin_lock_irqsave(&host->lock, flags);
Russell Kingef104332014-04-25 12:55:41 +01001754 if (enable)
1755 host->flags |= SDHCI_SDIO_IRQ_ENABLED;
1756 else
1757 host->flags &= ~SDHCI_SDIO_IRQ_ENABLED;
1758
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001759 sdhci_enable_sdio_irq_nolock(host, enable);
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001760 spin_unlock_irqrestore(&host->lock, flags);
1761}
1762
Dong Aishengded97e02016-04-16 01:29:25 +08001763static int sdhci_start_signal_voltage_switch(struct mmc_host *mmc,
1764 struct mmc_ios *ios)
Philip Rakity6231f3d2012-07-23 15:56:23 -07001765{
Dong Aishengded97e02016-04-16 01:29:25 +08001766 struct sdhci_host *host = mmc_priv(mmc);
Philip Rakity6231f3d2012-07-23 15:56:23 -07001767 u16 ctrl;
Kevin Liu20b92a32012-12-17 19:29:26 +08001768 int ret;
Philip Rakity6231f3d2012-07-23 15:56:23 -07001769
1770 /*
1771 * Signal Voltage Switching is only applicable for Host Controllers
1772 * v3.00 and above.
1773 */
1774 if (host->version < SDHCI_SPEC_300)
1775 return 0;
1776
Philip Rakity6231f3d2012-07-23 15:56:23 -07001777 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
Kevin Liu20b92a32012-12-17 19:29:26 +08001778
Fabio Estevam21f59982013-02-14 10:35:03 -02001779 switch (ios->signal_voltage) {
Kevin Liu20b92a32012-12-17 19:29:26 +08001780 case MMC_SIGNAL_VOLTAGE_330:
Adrian Hunter8cb851a2016-06-29 16:24:16 +03001781 if (!(host->flags & SDHCI_SIGNALING_330))
1782 return -EINVAL;
Kevin Liu20b92a32012-12-17 19:29:26 +08001783 /* Set 1.8V Signal Enable in the Host Control2 register to 0 */
1784 ctrl &= ~SDHCI_CTRL_VDD_180;
1785 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
1786
Tim Kryger3a48edc2014-06-13 10:13:56 -07001787 if (!IS_ERR(mmc->supply.vqmmc)) {
1788 ret = regulator_set_voltage(mmc->supply.vqmmc, 2700000,
1789 3600000);
Kevin Liu20b92a32012-12-17 19:29:26 +08001790 if (ret) {
Joe Perches66061102014-09-12 14:56:56 -07001791 pr_warn("%s: Switching to 3.3V signalling voltage failed\n",
1792 mmc_hostname(mmc));
Kevin Liu20b92a32012-12-17 19:29:26 +08001793 return -EIO;
1794 }
1795 }
1796 /* Wait for 5ms */
1797 usleep_range(5000, 5500);
1798
1799 /* 3.3V regulator output should be stable within 5 ms */
1800 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
1801 if (!(ctrl & SDHCI_CTRL_VDD_180))
1802 return 0;
1803
Joe Perches66061102014-09-12 14:56:56 -07001804 pr_warn("%s: 3.3V regulator output did not became stable\n",
1805 mmc_hostname(mmc));
Kevin Liu20b92a32012-12-17 19:29:26 +08001806
1807 return -EAGAIN;
1808 case MMC_SIGNAL_VOLTAGE_180:
Adrian Hunter8cb851a2016-06-29 16:24:16 +03001809 if (!(host->flags & SDHCI_SIGNALING_180))
1810 return -EINVAL;
Tim Kryger3a48edc2014-06-13 10:13:56 -07001811 if (!IS_ERR(mmc->supply.vqmmc)) {
1812 ret = regulator_set_voltage(mmc->supply.vqmmc,
Kevin Liu20b92a32012-12-17 19:29:26 +08001813 1700000, 1950000);
1814 if (ret) {
Joe Perches66061102014-09-12 14:56:56 -07001815 pr_warn("%s: Switching to 1.8V signalling voltage failed\n",
1816 mmc_hostname(mmc));
Kevin Liu20b92a32012-12-17 19:29:26 +08001817 return -EIO;
1818 }
1819 }
1820
1821 /*
1822 * Enable 1.8V Signal Enable in the Host Control2
1823 * register
1824 */
1825 ctrl |= SDHCI_CTRL_VDD_180;
1826 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
1827
Vincent Yang9d967a62015-01-20 16:05:15 +08001828 /* Some controller need to do more when switching */
1829 if (host->ops->voltage_switch)
1830 host->ops->voltage_switch(host);
1831
Kevin Liu20b92a32012-12-17 19:29:26 +08001832 /* 1.8V regulator output should be stable within 5 ms */
1833 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
1834 if (ctrl & SDHCI_CTRL_VDD_180)
1835 return 0;
1836
Joe Perches66061102014-09-12 14:56:56 -07001837 pr_warn("%s: 1.8V regulator output did not became stable\n",
1838 mmc_hostname(mmc));
Kevin Liu20b92a32012-12-17 19:29:26 +08001839
1840 return -EAGAIN;
1841 case MMC_SIGNAL_VOLTAGE_120:
Adrian Hunter8cb851a2016-06-29 16:24:16 +03001842 if (!(host->flags & SDHCI_SIGNALING_120))
1843 return -EINVAL;
Tim Kryger3a48edc2014-06-13 10:13:56 -07001844 if (!IS_ERR(mmc->supply.vqmmc)) {
1845 ret = regulator_set_voltage(mmc->supply.vqmmc, 1100000,
1846 1300000);
Kevin Liu20b92a32012-12-17 19:29:26 +08001847 if (ret) {
Joe Perches66061102014-09-12 14:56:56 -07001848 pr_warn("%s: Switching to 1.2V signalling voltage failed\n",
1849 mmc_hostname(mmc));
Kevin Liu20b92a32012-12-17 19:29:26 +08001850 return -EIO;
1851 }
1852 }
1853 return 0;
1854 default:
Arindam Nathf2119df2011-05-05 12:18:57 +05301855 /* No signal voltage switch required */
1856 return 0;
Kevin Liu20b92a32012-12-17 19:29:26 +08001857 }
Arindam Nathf2119df2011-05-05 12:18:57 +05301858}
1859
Kevin Liu20b92a32012-12-17 19:29:26 +08001860static int sdhci_card_busy(struct mmc_host *mmc)
1861{
1862 struct sdhci_host *host = mmc_priv(mmc);
1863 u32 present_state;
1864
Adrian Huntere613cc42016-06-23 14:00:58 +03001865 /* Check whether DAT[0] is 0 */
Kevin Liu20b92a32012-12-17 19:29:26 +08001866 present_state = sdhci_readl(host, SDHCI_PRESENT_STATE);
Kevin Liu20b92a32012-12-17 19:29:26 +08001867
Adrian Huntere613cc42016-06-23 14:00:58 +03001868 return !(present_state & SDHCI_DATA_0_LVL_MASK);
Kevin Liu20b92a32012-12-17 19:29:26 +08001869}
1870
Adrian Hunterb5540ce2014-12-05 19:25:31 +02001871static int sdhci_prepare_hs400_tuning(struct mmc_host *mmc, struct mmc_ios *ios)
1872{
1873 struct sdhci_host *host = mmc_priv(mmc);
1874 unsigned long flags;
1875
1876 spin_lock_irqsave(&host->lock, flags);
1877 host->flags |= SDHCI_HS400_TUNING;
1878 spin_unlock_irqrestore(&host->lock, flags);
1879
1880 return 0;
1881}
1882
Girish K S069c9f12012-01-06 09:56:39 +05301883static int sdhci_execute_tuning(struct mmc_host *mmc, u32 opcode)
Arindam Nathb513ea22011-05-05 12:19:04 +05301884{
Russell King4b6f37d2014-04-25 12:59:36 +01001885 struct sdhci_host *host = mmc_priv(mmc);
Arindam Nathb513ea22011-05-05 12:19:04 +05301886 u16 ctrl;
Arindam Nathb513ea22011-05-05 12:19:04 +05301887 int tuning_loop_counter = MAX_TUNING_LOOP;
Arindam Nathb513ea22011-05-05 12:19:04 +05301888 int err = 0;
Aisheng Dong2b35bd82013-12-23 19:13:04 +08001889 unsigned long flags;
Adrian Hunter38e40bf2014-12-05 19:25:30 +02001890 unsigned int tuning_count = 0;
Adrian Hunterb5540ce2014-12-05 19:25:31 +02001891 bool hs400_tuning;
Arindam Nathb513ea22011-05-05 12:19:04 +05301892
Aisheng Dong2b35bd82013-12-23 19:13:04 +08001893 spin_lock_irqsave(&host->lock, flags);
Arindam Nathb513ea22011-05-05 12:19:04 +05301894
Adrian Hunterb5540ce2014-12-05 19:25:31 +02001895 hs400_tuning = host->flags & SDHCI_HS400_TUNING;
1896 host->flags &= ~SDHCI_HS400_TUNING;
1897
Adrian Hunter38e40bf2014-12-05 19:25:30 +02001898 if (host->tuning_mode == SDHCI_TUNING_MODE_1)
1899 tuning_count = host->tuning_count;
1900
Arindam Nathb513ea22011-05-05 12:19:04 +05301901 /*
Weijun Yang9faac7b2015-10-04 12:04:12 +00001902 * The Host Controller needs tuning in case of SDR104 and DDR50
1903 * mode, and for SDR50 mode when Use Tuning for SDR50 is set in
1904 * the Capabilities register.
Girish K S069c9f12012-01-06 09:56:39 +05301905 * If the Host Controller supports the HS200 mode then the
1906 * tuning function has to be executed.
Arindam Nathb513ea22011-05-05 12:19:04 +05301907 */
Russell King4b6f37d2014-04-25 12:59:36 +01001908 switch (host->timing) {
Adrian Hunterb5540ce2014-12-05 19:25:31 +02001909 /* HS400 tuning is done in HS200 mode */
Adrian Huntere9fb05d2014-11-06 15:19:06 +02001910 case MMC_TIMING_MMC_HS400:
Adrian Hunterb5540ce2014-12-05 19:25:31 +02001911 err = -EINVAL;
1912 goto out_unlock;
1913
Russell King4b6f37d2014-04-25 12:59:36 +01001914 case MMC_TIMING_MMC_HS200:
Adrian Hunterb5540ce2014-12-05 19:25:31 +02001915 /*
1916 * Periodic re-tuning for HS400 is not expected to be needed, so
1917 * disable it here.
1918 */
1919 if (hs400_tuning)
1920 tuning_count = 0;
1921 break;
1922
Russell King4b6f37d2014-04-25 12:59:36 +01001923 case MMC_TIMING_UHS_SDR104:
Weijun Yang9faac7b2015-10-04 12:04:12 +00001924 case MMC_TIMING_UHS_DDR50:
Russell King4b6f37d2014-04-25 12:59:36 +01001925 break;
Girish K S069c9f12012-01-06 09:56:39 +05301926
Russell King4b6f37d2014-04-25 12:59:36 +01001927 case MMC_TIMING_UHS_SDR50:
Adrian Hunter4228b212016-04-20 09:24:03 +03001928 if (host->flags & SDHCI_SDR50_NEEDS_TUNING)
Russell King4b6f37d2014-04-25 12:59:36 +01001929 break;
1930 /* FALLTHROUGH */
1931
1932 default:
Adrian Hunterd519c862014-12-05 19:25:29 +02001933 goto out_unlock;
Arindam Nathb513ea22011-05-05 12:19:04 +05301934 }
1935
Dong Aisheng45251812013-09-13 19:11:30 +08001936 if (host->ops->platform_execute_tuning) {
Aisheng Dong2b35bd82013-12-23 19:13:04 +08001937 spin_unlock_irqrestore(&host->lock, flags);
Dong Aisheng45251812013-09-13 19:11:30 +08001938 err = host->ops->platform_execute_tuning(host, opcode);
Dong Aisheng45251812013-09-13 19:11:30 +08001939 return err;
1940 }
1941
Russell King4b6f37d2014-04-25 12:59:36 +01001942 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
1943 ctrl |= SDHCI_CTRL_EXEC_TUNING;
Vincent Yang67d0d042015-01-20 16:05:16 +08001944 if (host->quirks2 & SDHCI_QUIRK2_TUNING_WORK_AROUND)
1945 ctrl |= SDHCI_CTRL_TUNED_CLK;
Arindam Nathb513ea22011-05-05 12:19:04 +05301946 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
1947
1948 /*
1949 * As per the Host Controller spec v3.00, tuning command
1950 * generates Buffer Read Ready interrupt, so enable that.
1951 *
1952 * Note: The spec clearly says that when tuning sequence
1953 * is being performed, the controller does not generate
1954 * interrupts other than Buffer Read Ready interrupt. But
1955 * to make sure we don't hit a controller bug, we _only_
1956 * enable Buffer Read Ready interrupt here.
1957 */
Russell Kingb537f942014-04-25 12:56:01 +01001958 sdhci_writel(host, SDHCI_INT_DATA_AVAIL, SDHCI_INT_ENABLE);
1959 sdhci_writel(host, SDHCI_INT_DATA_AVAIL, SDHCI_SIGNAL_ENABLE);
Arindam Nathb513ea22011-05-05 12:19:04 +05301960
1961 /*
1962 * Issue CMD19 repeatedly till Execute Tuning is set to 0 or the number
Simon Horman1473bdd2016-05-13 13:24:31 +09001963 * of loops reaches 40 times.
Arindam Nathb513ea22011-05-05 12:19:04 +05301964 */
Arindam Nathb513ea22011-05-05 12:19:04 +05301965 do {
1966 struct mmc_command cmd = {0};
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001967 struct mmc_request mrq = {NULL};
Arindam Nathb513ea22011-05-05 12:19:04 +05301968
Girish K S069c9f12012-01-06 09:56:39 +05301969 cmd.opcode = opcode;
Arindam Nathb513ea22011-05-05 12:19:04 +05301970 cmd.arg = 0;
1971 cmd.flags = MMC_RSP_R1 | MMC_CMD_ADTC;
1972 cmd.retries = 0;
1973 cmd.data = NULL;
1974 cmd.error = 0;
1975
Al Cooper7ce45e92014-05-09 11:34:07 -04001976 if (tuning_loop_counter-- == 0)
1977 break;
1978
Arindam Nathb513ea22011-05-05 12:19:04 +05301979 mrq.cmd = &cmd;
1980 host->mrq = &mrq;
1981
1982 /*
1983 * In response to CMD19, the card sends 64 bytes of tuning
1984 * block to the Host Controller. So we set the block size
1985 * to 64 here.
1986 */
Girish K S069c9f12012-01-06 09:56:39 +05301987 if (cmd.opcode == MMC_SEND_TUNING_BLOCK_HS200) {
1988 if (mmc->ios.bus_width == MMC_BUS_WIDTH_8)
1989 sdhci_writew(host, SDHCI_MAKE_BLKSZ(7, 128),
1990 SDHCI_BLOCK_SIZE);
1991 else if (mmc->ios.bus_width == MMC_BUS_WIDTH_4)
1992 sdhci_writew(host, SDHCI_MAKE_BLKSZ(7, 64),
1993 SDHCI_BLOCK_SIZE);
1994 } else {
1995 sdhci_writew(host, SDHCI_MAKE_BLKSZ(7, 64),
1996 SDHCI_BLOCK_SIZE);
1997 }
Arindam Nathb513ea22011-05-05 12:19:04 +05301998
1999 /*
2000 * The tuning block is sent by the card to the host controller.
2001 * So we set the TRNS_READ bit in the Transfer Mode register.
2002 * This also takes care of setting DMA Enable and Multi Block
2003 * Select in the same register to 0.
2004 */
2005 sdhci_writew(host, SDHCI_TRNS_READ, SDHCI_TRANSFER_MODE);
2006
2007 sdhci_send_command(host, &cmd);
2008
2009 host->cmd = NULL;
2010 host->mrq = NULL;
2011
Aisheng Dong2b35bd82013-12-23 19:13:04 +08002012 spin_unlock_irqrestore(&host->lock, flags);
Arindam Nathb513ea22011-05-05 12:19:04 +05302013 /* Wait for Buffer Read Ready interrupt */
2014 wait_event_interruptible_timeout(host->buf_ready_int,
2015 (host->tuning_done == 1),
2016 msecs_to_jiffies(50));
Aisheng Dong2b35bd82013-12-23 19:13:04 +08002017 spin_lock_irqsave(&host->lock, flags);
Arindam Nathb513ea22011-05-05 12:19:04 +05302018
2019 if (!host->tuning_done) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01002020 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 +05302021 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
2022 ctrl &= ~SDHCI_CTRL_TUNED_CLK;
2023 ctrl &= ~SDHCI_CTRL_EXEC_TUNING;
2024 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
2025
2026 err = -EIO;
2027 goto out;
2028 }
2029
2030 host->tuning_done = 0;
2031
2032 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
Nick Sanders197160d2014-05-06 18:52:38 -07002033
2034 /* eMMC spec does not require a delay between tuning cycles */
2035 if (opcode == MMC_SEND_TUNING_BLOCK)
2036 mdelay(1);
Arindam Nathb513ea22011-05-05 12:19:04 +05302037 } while (ctrl & SDHCI_CTRL_EXEC_TUNING);
2038
2039 /*
2040 * The Host Driver has exhausted the maximum number of loops allowed,
2041 * so use fixed sampling frequency.
2042 */
Al Cooper7ce45e92014-05-09 11:34:07 -04002043 if (tuning_loop_counter < 0) {
Arindam Nathb513ea22011-05-05 12:19:04 +05302044 ctrl &= ~SDHCI_CTRL_TUNED_CLK;
2045 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
Al Cooper7ce45e92014-05-09 11:34:07 -04002046 }
2047 if (!(ctrl & SDHCI_CTRL_TUNED_CLK)) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01002048 pr_info(DRIVER_NAME ": Tuning procedure failed, falling back to fixed sampling clock\n");
Dong Aisheng114f2bf2013-10-18 19:48:45 +08002049 err = -EIO;
Arindam Nathb513ea22011-05-05 12:19:04 +05302050 }
2051
2052out:
Adrian Hunter38e40bf2014-12-05 19:25:30 +02002053 if (tuning_count) {
Adrian Hunter66c39dfc2015-05-07 13:10:21 +03002054 /*
2055 * In case tuning fails, host controllers which support
2056 * re-tuning can try tuning again at a later time, when the
2057 * re-tuning timer expires. So for these controllers, we
2058 * return 0. Since there might be other controllers who do not
2059 * have this capability, we return error for them.
2060 */
2061 err = 0;
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05302062 }
2063
Adrian Hunter66c39dfc2015-05-07 13:10:21 +03002064 host->mmc->retune_period = err ? 0 : tuning_count;
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05302065
Russell Kingb537f942014-04-25 12:56:01 +01002066 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
2067 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Adrian Hunterd519c862014-12-05 19:25:29 +02002068out_unlock:
Aisheng Dong2b35bd82013-12-23 19:13:04 +08002069 spin_unlock_irqrestore(&host->lock, flags);
Arindam Nathb513ea22011-05-05 12:19:04 +05302070 return err;
2071}
2072
Adrian Huntercb849642015-02-06 14:12:59 +02002073static int sdhci_select_drive_strength(struct mmc_card *card,
2074 unsigned int max_dtr, int host_drv,
2075 int card_drv, int *drv_type)
2076{
2077 struct sdhci_host *host = mmc_priv(card->host);
2078
2079 if (!host->ops->select_drive_strength)
2080 return 0;
2081
2082 return host->ops->select_drive_strength(host, card, max_dtr, host_drv,
2083 card_drv, drv_type);
2084}
Kevin Liu52983382013-01-31 11:31:37 +08002085
2086static void sdhci_enable_preset_value(struct sdhci_host *host, bool enable)
Arindam Nath4d55c5a2011-05-05 12:19:05 +05302087{
Arindam Nath4d55c5a2011-05-05 12:19:05 +05302088 /* Host Controller v3.00 defines preset value registers */
2089 if (host->version < SDHCI_SPEC_300)
2090 return;
2091
Arindam Nath4d55c5a2011-05-05 12:19:05 +05302092 /*
2093 * We only enable or disable Preset Value if they are not already
2094 * enabled or disabled respectively. Otherwise, we bail out.
2095 */
Russell Kingda91a8f2014-04-25 13:00:12 +01002096 if (host->preset_enabled != enable) {
2097 u16 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
2098
2099 if (enable)
2100 ctrl |= SDHCI_CTRL_PRESET_VAL_ENABLE;
2101 else
2102 ctrl &= ~SDHCI_CTRL_PRESET_VAL_ENABLE;
2103
Arindam Nath4d55c5a2011-05-05 12:19:05 +05302104 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
Russell Kingda91a8f2014-04-25 13:00:12 +01002105
2106 if (enable)
2107 host->flags |= SDHCI_PV_ENABLED;
2108 else
2109 host->flags &= ~SDHCI_PV_ENABLED;
2110
2111 host->preset_enabled = enable;
Arindam Nath4d55c5a2011-05-05 12:19:05 +05302112 }
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002113}
2114
Haibo Chen348487c2014-12-09 17:04:05 +08002115static void sdhci_post_req(struct mmc_host *mmc, struct mmc_request *mrq,
2116 int err)
2117{
2118 struct sdhci_host *host = mmc_priv(mmc);
2119 struct mmc_data *data = mrq->data;
2120
Russell Kingf48f0392016-01-26 13:40:32 +00002121 if (data->host_cookie != COOKIE_UNMAPPED)
Russell King771a3dc2016-01-26 13:40:53 +00002122 dma_unmap_sg(mmc_dev(host->mmc), data->sg, data->sg_len,
2123 data->flags & MMC_DATA_WRITE ?
2124 DMA_TO_DEVICE : DMA_FROM_DEVICE);
2125
2126 data->host_cookie = COOKIE_UNMAPPED;
Haibo Chen348487c2014-12-09 17:04:05 +08002127}
2128
Haibo Chen348487c2014-12-09 17:04:05 +08002129static void sdhci_pre_req(struct mmc_host *mmc, struct mmc_request *mrq,
2130 bool is_first_req)
2131{
2132 struct sdhci_host *host = mmc_priv(mmc);
2133
Haibo Chend31911b2015-08-25 10:02:11 +08002134 mrq->data->host_cookie = COOKIE_UNMAPPED;
Haibo Chen348487c2014-12-09 17:04:05 +08002135
2136 if (host->flags & SDHCI_REQ_USE_DMA)
Russell King94538e52016-01-26 13:40:37 +00002137 sdhci_pre_dma_transfer(host, mrq->data, COOKIE_PRE_MAPPED);
Haibo Chen348487c2014-12-09 17:04:05 +08002138}
2139
Adrian Hunter5d0d11c2016-06-29 16:24:31 +03002140static inline bool sdhci_has_requests(struct sdhci_host *host)
2141{
2142 return host->cmd || host->data_cmd;
2143}
2144
2145static void sdhci_error_out_mrqs(struct sdhci_host *host, int err)
2146{
2147 if (host->data_cmd) {
2148 host->data_cmd->error = err;
2149 sdhci_finish_mrq(host, host->data_cmd->mrq);
2150 }
2151
2152 if (host->cmd) {
2153 host->cmd->error = err;
2154 sdhci_finish_mrq(host, host->cmd->mrq);
2155 }
2156}
2157
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002158static void sdhci_card_event(struct mmc_host *mmc)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002159{
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002160 struct sdhci_host *host = mmc_priv(mmc);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002161 unsigned long flags;
Krzysztof Kozlowski28367662015-01-05 10:50:15 +01002162 int present;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002163
Christian Daudt722e1282013-06-20 14:26:36 -07002164 /* First check if client has provided their own card event */
2165 if (host->ops->card_event)
2166 host->ops->card_event(host);
2167
Adrian Hunterd3940f22016-06-29 16:24:14 +03002168 present = mmc->ops->get_cd(mmc);
Krzysztof Kozlowski28367662015-01-05 10:50:15 +01002169
Pierre Ossmand129bce2006-03-24 03:18:17 -08002170 spin_lock_irqsave(&host->lock, flags);
2171
Adrian Hunter5d0d11c2016-06-29 16:24:31 +03002172 /* Check sdhci_has_requests() first in case we are runtime suspended */
2173 if (sdhci_has_requests(host) && !present) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05302174 pr_err("%s: Card removed during transfer!\n",
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002175 mmc_hostname(host->mmc));
Girish K Sa3c76eb2011-10-11 11:44:09 +05302176 pr_err("%s: Resetting controller.\n",
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002177 mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -08002178
Russell King03231f92014-04-25 12:57:12 +01002179 sdhci_do_reset(host, SDHCI_RESET_CMD);
2180 sdhci_do_reset(host, SDHCI_RESET_DATA);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002181
Adrian Hunter5d0d11c2016-06-29 16:24:31 +03002182 sdhci_error_out_mrqs(host, -ENOMEDIUM);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002183 }
2184
2185 spin_unlock_irqrestore(&host->lock, flags);
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002186}
2187
2188static const struct mmc_host_ops sdhci_ops = {
2189 .request = sdhci_request,
Haibo Chen348487c2014-12-09 17:04:05 +08002190 .post_req = sdhci_post_req,
2191 .pre_req = sdhci_pre_req,
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002192 .set_ios = sdhci_set_ios,
Kevin Liu94144a42013-02-28 17:35:53 +08002193 .get_cd = sdhci_get_cd,
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002194 .get_ro = sdhci_get_ro,
2195 .hw_reset = sdhci_hw_reset,
2196 .enable_sdio_irq = sdhci_enable_sdio_irq,
2197 .start_signal_voltage_switch = sdhci_start_signal_voltage_switch,
Adrian Hunterb5540ce2014-12-05 19:25:31 +02002198 .prepare_hs400_tuning = sdhci_prepare_hs400_tuning,
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002199 .execute_tuning = sdhci_execute_tuning,
Adrian Huntercb849642015-02-06 14:12:59 +02002200 .select_drive_strength = sdhci_select_drive_strength,
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002201 .card_event = sdhci_card_event,
Kevin Liu20b92a32012-12-17 19:29:26 +08002202 .card_busy = sdhci_card_busy,
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002203};
2204
2205/*****************************************************************************\
2206 * *
2207 * Tasklets *
2208 * *
2209\*****************************************************************************/
2210
Pierre Ossmand129bce2006-03-24 03:18:17 -08002211static void sdhci_tasklet_finish(unsigned long param)
2212{
2213 struct sdhci_host *host;
2214 unsigned long flags;
2215 struct mmc_request *mrq;
2216
2217 host = (struct sdhci_host*)param;
2218
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002219 spin_lock_irqsave(&host->lock, flags);
2220
Chris Ball0c9c99a2011-04-27 17:35:31 -04002221 /*
2222 * If this tasklet gets rescheduled while running, it will
2223 * be run again afterwards but without any active request.
2224 */
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002225 if (!host->mrq) {
2226 spin_unlock_irqrestore(&host->lock, flags);
Chris Ball0c9c99a2011-04-27 17:35:31 -04002227 return;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002228 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08002229
2230 del_timer(&host->timer);
2231
2232 mrq = host->mrq;
2233
Pierre Ossmand129bce2006-03-24 03:18:17 -08002234 /*
Russell King054cedf2016-01-26 13:40:42 +00002235 * Always unmap the data buffers if they were mapped by
2236 * sdhci_prepare_data() whenever we finish with a request.
2237 * This avoids leaking DMA mappings on error.
2238 */
2239 if (host->flags & SDHCI_REQ_USE_DMA) {
2240 struct mmc_data *data = mrq->data;
2241
2242 if (data && data->host_cookie == COOKIE_MAPPED) {
2243 dma_unmap_sg(mmc_dev(host->mmc), data->sg, data->sg_len,
2244 (data->flags & MMC_DATA_READ) ?
2245 DMA_FROM_DEVICE : DMA_TO_DEVICE);
2246 data->host_cookie = COOKIE_UNMAPPED;
2247 }
2248 }
2249
2250 /*
Pierre Ossmand129bce2006-03-24 03:18:17 -08002251 * The controller needs a reset of internal state machines
2252 * upon error conditions.
2253 */
Adrian Hunter0cc563c2016-06-29 16:24:28 +03002254 if (sdhci_needs_reset(host, mrq)) {
Pierre Ossman645289d2006-06-30 02:22:33 -07002255 /* Some controllers need this kick or reset won't work here */
Andy Shevchenko8213af32013-01-07 16:31:08 +02002256 if (host->quirks & SDHCI_QUIRK_CLOCK_BEFORE_RESET)
Pierre Ossman645289d2006-06-30 02:22:33 -07002257 /* This is to force an update */
Russell King17710592014-04-25 12:58:55 +01002258 host->ops->set_clock(host, host->clock);
Pierre Ossman645289d2006-06-30 02:22:33 -07002259
2260 /* Spec says we should do both at the same time, but Ricoh
2261 controllers do not like that. */
Russell King03231f92014-04-25 12:57:12 +01002262 sdhci_do_reset(host, SDHCI_RESET_CMD);
2263 sdhci_do_reset(host, SDHCI_RESET_DATA);
Adrian Huntered1563d2016-06-29 16:24:29 +03002264
2265 host->pending_reset = false;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002266 }
2267
2268 host->mrq = NULL;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002269
Adrian Hunter061d17a2016-04-12 14:25:09 +03002270 sdhci_led_deactivate(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002271
Pierre Ossman5f25a662006-10-04 02:15:39 -07002272 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -08002273 spin_unlock_irqrestore(&host->lock, flags);
2274
2275 mmc_request_done(host->mmc, mrq);
2276}
2277
2278static void sdhci_timeout_timer(unsigned long data)
2279{
2280 struct sdhci_host *host;
2281 unsigned long flags;
2282
2283 host = (struct sdhci_host*)data;
2284
2285 spin_lock_irqsave(&host->lock, flags);
2286
2287 if (host->mrq) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01002288 pr_err("%s: Timeout waiting for hardware interrupt.\n",
2289 mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -08002290 sdhci_dumpregs(host);
2291
2292 if (host->data) {
Pierre Ossman17b04292007-07-22 22:18:46 +02002293 host->data->error = -ETIMEDOUT;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002294 sdhci_finish_data(host);
2295 } else {
2296 if (host->cmd)
Pierre Ossman17b04292007-07-22 22:18:46 +02002297 host->cmd->error = -ETIMEDOUT;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002298 else
Pierre Ossman17b04292007-07-22 22:18:46 +02002299 host->mrq->cmd->error = -ETIMEDOUT;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002300
Adrian Huntera6d3bdd2016-06-29 16:24:27 +03002301 sdhci_finish_mrq(host, host->mrq);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002302 }
2303 }
2304
Pierre Ossman5f25a662006-10-04 02:15:39 -07002305 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -08002306 spin_unlock_irqrestore(&host->lock, flags);
2307}
2308
2309/*****************************************************************************\
2310 * *
2311 * Interrupt handling *
2312 * *
2313\*****************************************************************************/
2314
Adrian Hunter61541392014-09-24 10:27:27 +03002315static void sdhci_cmd_irq(struct sdhci_host *host, u32 intmask, u32 *mask)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002316{
Pierre Ossmand129bce2006-03-24 03:18:17 -08002317 if (!host->cmd) {
Adrian Huntered1563d2016-06-29 16:24:29 +03002318 /*
2319 * SDHCI recovers from errors by resetting the cmd and data
2320 * circuits. Until that is done, there very well might be more
2321 * interrupts, so ignore them in that case.
2322 */
2323 if (host->pending_reset)
2324 return;
Marek Vasut2e4456f2015-11-18 10:47:02 +01002325 pr_err("%s: Got command interrupt 0x%08x even though no command operation was in progress.\n",
2326 mmc_hostname(host->mmc), (unsigned)intmask);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002327 sdhci_dumpregs(host);
2328 return;
2329 }
2330
Russell Kingec014cb2016-01-26 13:39:39 +00002331 if (intmask & (SDHCI_INT_TIMEOUT | SDHCI_INT_CRC |
2332 SDHCI_INT_END_BIT | SDHCI_INT_INDEX)) {
2333 if (intmask & SDHCI_INT_TIMEOUT)
2334 host->cmd->error = -ETIMEDOUT;
2335 else
2336 host->cmd->error = -EILSEQ;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002337
Russell King71fcbda2016-01-26 13:39:45 +00002338 /*
2339 * If this command initiates a data phase and a response
2340 * CRC error is signalled, the card can start transferring
2341 * data - the card may have received the command without
2342 * error. We must not terminate the mmc_request early.
2343 *
2344 * If the card did not receive the command or returned an
2345 * error which prevented it sending data, the data phase
2346 * will time out.
2347 */
2348 if (host->cmd->data &&
2349 (intmask & (SDHCI_INT_CRC | SDHCI_INT_TIMEOUT)) ==
2350 SDHCI_INT_CRC) {
2351 host->cmd = NULL;
2352 return;
2353 }
2354
Adrian Huntera6d3bdd2016-06-29 16:24:27 +03002355 sdhci_finish_mrq(host, host->cmd->mrq);
Pierre Ossmane8095172008-07-25 01:09:08 +02002356 return;
2357 }
2358
Adrian Hunter6bde8682016-06-29 16:24:20 +03002359 if ((host->quirks2 & SDHCI_QUIRK2_STOP_WITH_TC) &&
2360 !(host->cmd->flags & MMC_RSP_BUSY) && !host->data &&
2361 host->cmd->opcode == MMC_STOP_TRANSMISSION)
Adrian Hunter61541392014-09-24 10:27:27 +03002362 *mask &= ~SDHCI_INT_DATA_END;
Pierre Ossmane8095172008-07-25 01:09:08 +02002363
2364 if (intmask & SDHCI_INT_RESPONSE)
Pierre Ossman43b58b32007-07-25 23:15:27 +02002365 sdhci_finish_command(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002366}
2367
George G. Davis0957c332010-02-18 12:32:12 -05002368#ifdef CONFIG_MMC_DEBUG
Adrian Hunter08621b12014-11-04 12:42:38 +02002369static void sdhci_adma_show_error(struct sdhci_host *host)
Ben Dooks6882a8c2009-06-14 13:52:38 +01002370{
2371 const char *name = mmc_hostname(host->mmc);
Adrian Hunter1c3d5f62014-11-04 12:42:41 +02002372 void *desc = host->adma_table;
Ben Dooks6882a8c2009-06-14 13:52:38 +01002373
2374 sdhci_dumpregs(host);
2375
2376 while (true) {
Adrian Huntere57a5f62014-11-04 12:42:46 +02002377 struct sdhci_adma2_64_desc *dma_desc = desc;
Ben Dooks6882a8c2009-06-14 13:52:38 +01002378
Adrian Huntere57a5f62014-11-04 12:42:46 +02002379 if (host->flags & SDHCI_USE_64_BIT_DMA)
2380 DBG("%s: %p: DMA 0x%08x%08x, LEN 0x%04x, Attr=0x%02x\n",
2381 name, desc, le32_to_cpu(dma_desc->addr_hi),
2382 le32_to_cpu(dma_desc->addr_lo),
2383 le16_to_cpu(dma_desc->len),
2384 le16_to_cpu(dma_desc->cmd));
2385 else
2386 DBG("%s: %p: DMA 0x%08x, LEN 0x%04x, Attr=0x%02x\n",
2387 name, desc, le32_to_cpu(dma_desc->addr_lo),
2388 le16_to_cpu(dma_desc->len),
2389 le16_to_cpu(dma_desc->cmd));
Ben Dooks6882a8c2009-06-14 13:52:38 +01002390
Adrian Hunter76fe3792014-11-04 12:42:42 +02002391 desc += host->desc_sz;
Ben Dooks6882a8c2009-06-14 13:52:38 +01002392
Adrian Hunter05452302014-11-04 12:42:45 +02002393 if (dma_desc->cmd & cpu_to_le16(ADMA2_END))
Ben Dooks6882a8c2009-06-14 13:52:38 +01002394 break;
2395 }
2396}
2397#else
Adrian Hunter08621b12014-11-04 12:42:38 +02002398static void sdhci_adma_show_error(struct sdhci_host *host) { }
Ben Dooks6882a8c2009-06-14 13:52:38 +01002399#endif
2400
Pierre Ossmand129bce2006-03-24 03:18:17 -08002401static void sdhci_data_irq(struct sdhci_host *host, u32 intmask)
2402{
Girish K S069c9f12012-01-06 09:56:39 +05302403 u32 command;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002404
Arindam Nathb513ea22011-05-05 12:19:04 +05302405 /* CMD19 generates _only_ Buffer Read Ready interrupt */
2406 if (intmask & SDHCI_INT_DATA_AVAIL) {
Girish K S069c9f12012-01-06 09:56:39 +05302407 command = SDHCI_GET_CMD(sdhci_readw(host, SDHCI_COMMAND));
2408 if (command == MMC_SEND_TUNING_BLOCK ||
2409 command == MMC_SEND_TUNING_BLOCK_HS200) {
Arindam Nathb513ea22011-05-05 12:19:04 +05302410 host->tuning_done = 1;
2411 wake_up(&host->buf_ready_int);
2412 return;
2413 }
2414 }
2415
Pierre Ossmand129bce2006-03-24 03:18:17 -08002416 if (!host->data) {
Adrian Hunter7c89a3d2016-06-29 16:24:23 +03002417 struct mmc_command *data_cmd = host->data_cmd;
2418
2419 if (data_cmd)
2420 host->data_cmd = NULL;
2421
Pierre Ossmand129bce2006-03-24 03:18:17 -08002422 /*
Pierre Ossmane8095172008-07-25 01:09:08 +02002423 * The "data complete" interrupt is also used to
2424 * indicate that a busy state has ended. See comment
2425 * above in sdhci_cmd_irq().
Pierre Ossmand129bce2006-03-24 03:18:17 -08002426 */
Adrian Hunter7c89a3d2016-06-29 16:24:23 +03002427 if (data_cmd && (data_cmd->flags & MMC_RSP_BUSY)) {
Matthieu CASTETc5abd5e2014-08-14 16:03:17 +02002428 if (intmask & SDHCI_INT_DATA_TIMEOUT) {
Adrian Hunter7c89a3d2016-06-29 16:24:23 +03002429 data_cmd->error = -ETIMEDOUT;
Adrian Huntera6d3bdd2016-06-29 16:24:27 +03002430 sdhci_finish_mrq(host, data_cmd->mrq);
Matthieu CASTETc5abd5e2014-08-14 16:03:17 +02002431 return;
2432 }
Pierre Ossmane8095172008-07-25 01:09:08 +02002433 if (intmask & SDHCI_INT_DATA_END) {
Chanho Mine99783a2014-08-30 12:40:40 +09002434 /*
2435 * Some cards handle busy-end interrupt
2436 * before the command completed, so make
2437 * sure we do things in the proper order.
2438 */
Adrian Hunterea968022016-06-29 16:24:24 +03002439 if (host->cmd == data_cmd)
2440 return;
2441
Adrian Huntera6d3bdd2016-06-29 16:24:27 +03002442 sdhci_finish_mrq(host, data_cmd->mrq);
Pierre Ossmane8095172008-07-25 01:09:08 +02002443 return;
2444 }
2445 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08002446
Adrian Huntered1563d2016-06-29 16:24:29 +03002447 /*
2448 * SDHCI recovers from errors by resetting the cmd and data
2449 * circuits. Until that is done, there very well might be more
2450 * interrupts, so ignore them in that case.
2451 */
2452 if (host->pending_reset)
2453 return;
2454
Marek Vasut2e4456f2015-11-18 10:47:02 +01002455 pr_err("%s: Got data interrupt 0x%08x even though no data operation was in progress.\n",
2456 mmc_hostname(host->mmc), (unsigned)intmask);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002457 sdhci_dumpregs(host);
2458
2459 return;
2460 }
2461
2462 if (intmask & SDHCI_INT_DATA_TIMEOUT)
Pierre Ossman17b04292007-07-22 22:18:46 +02002463 host->data->error = -ETIMEDOUT;
Aries Lee22113ef2010-12-15 08:14:24 +01002464 else if (intmask & SDHCI_INT_DATA_END_BIT)
2465 host->data->error = -EILSEQ;
2466 else if ((intmask & SDHCI_INT_DATA_CRC) &&
2467 SDHCI_GET_CMD(sdhci_readw(host, SDHCI_COMMAND))
2468 != MMC_BUS_TEST_R)
Pierre Ossman17b04292007-07-22 22:18:46 +02002469 host->data->error = -EILSEQ;
Ben Dooks6882a8c2009-06-14 13:52:38 +01002470 else if (intmask & SDHCI_INT_ADMA_ERROR) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05302471 pr_err("%s: ADMA error\n", mmc_hostname(host->mmc));
Adrian Hunter08621b12014-11-04 12:42:38 +02002472 sdhci_adma_show_error(host);
Pierre Ossman2134a922008-06-28 18:28:51 +02002473 host->data->error = -EIO;
Haijun Zhanga4071fb2012-12-04 10:41:28 +08002474 if (host->ops->adma_workaround)
2475 host->ops->adma_workaround(host, intmask);
Ben Dooks6882a8c2009-06-14 13:52:38 +01002476 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08002477
Pierre Ossman17b04292007-07-22 22:18:46 +02002478 if (host->data->error)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002479 sdhci_finish_data(host);
2480 else {
Pierre Ossmana406f5a2006-07-02 16:50:59 +01002481 if (intmask & (SDHCI_INT_DATA_AVAIL | SDHCI_INT_SPACE_AVAIL))
Pierre Ossmand129bce2006-03-24 03:18:17 -08002482 sdhci_transfer_pio(host);
2483
Pierre Ossman6ba736a2007-05-13 22:39:23 +02002484 /*
2485 * We currently don't do anything fancy with DMA
2486 * boundaries, but as we can't disable the feature
2487 * we need to at least restart the transfer.
Mikko Vinnif6a03cb2011-04-12 09:36:18 -04002488 *
2489 * According to the spec sdhci_readl(host, SDHCI_DMA_ADDRESS)
2490 * should return a valid address to continue from, but as
2491 * some controllers are faulty, don't trust them.
Pierre Ossman6ba736a2007-05-13 22:39:23 +02002492 */
Mikko Vinnif6a03cb2011-04-12 09:36:18 -04002493 if (intmask & SDHCI_INT_DMA_END) {
2494 u32 dmastart, dmanow;
2495 dmastart = sg_dma_address(host->data->sg);
2496 dmanow = dmastart + host->data->bytes_xfered;
2497 /*
2498 * Force update to the next DMA block boundary.
2499 */
2500 dmanow = (dmanow &
2501 ~(SDHCI_DEFAULT_BOUNDARY_SIZE - 1)) +
2502 SDHCI_DEFAULT_BOUNDARY_SIZE;
2503 host->data->bytes_xfered = dmanow - dmastart;
2504 DBG("%s: DMA base 0x%08x, transferred 0x%06x bytes,"
2505 " next 0x%08x\n",
2506 mmc_hostname(host->mmc), dmastart,
2507 host->data->bytes_xfered, dmanow);
2508 sdhci_writel(host, dmanow, SDHCI_DMA_ADDRESS);
2509 }
Pierre Ossman6ba736a2007-05-13 22:39:23 +02002510
Pierre Ossmane538fbe2007-08-12 16:46:32 +02002511 if (intmask & SDHCI_INT_DATA_END) {
Adrian Hunter7c89a3d2016-06-29 16:24:23 +03002512 if (host->cmd == host->data_cmd) {
Pierre Ossmane538fbe2007-08-12 16:46:32 +02002513 /*
2514 * Data managed to finish before the
2515 * command completed. Make sure we do
2516 * things in the proper order.
2517 */
2518 host->data_early = 1;
2519 } else {
2520 sdhci_finish_data(host);
2521 }
2522 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08002523 }
2524}
2525
David Howells7d12e782006-10-05 14:55:46 +01002526static irqreturn_t sdhci_irq(int irq, void *dev_id)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002527{
Russell King781e9892014-04-25 12:55:46 +01002528 irqreturn_t result = IRQ_NONE;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002529 struct sdhci_host *host = dev_id;
Russell King41005002014-04-25 12:55:36 +01002530 u32 intmask, mask, unexpected = 0;
Russell King781e9892014-04-25 12:55:46 +01002531 int max_loops = 16;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002532
2533 spin_lock(&host->lock);
2534
Russell Kingbe138552014-04-25 12:55:56 +01002535 if (host->runtime_suspended && !sdhci_sdio_irq_enabled(host)) {
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002536 spin_unlock(&host->lock);
Adrian Hunter655bca72014-03-11 10:09:36 +02002537 return IRQ_NONE;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002538 }
2539
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03002540 intmask = sdhci_readl(host, SDHCI_INT_STATUS);
Mark Lord62df67a52007-03-06 13:30:13 +01002541 if (!intmask || intmask == 0xffffffff) {
Pierre Ossmand129bce2006-03-24 03:18:17 -08002542 result = IRQ_NONE;
2543 goto out;
2544 }
2545
Russell King41005002014-04-25 12:55:36 +01002546 do {
2547 /* Clear selected interrupts. */
2548 mask = intmask & (SDHCI_INT_CMD_MASK | SDHCI_INT_DATA_MASK |
2549 SDHCI_INT_BUS_POWER);
2550 sdhci_writel(host, mask, SDHCI_INT_STATUS);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002551
Russell King41005002014-04-25 12:55:36 +01002552 DBG("*** %s got interrupt: 0x%08x\n",
2553 mmc_hostname(host->mmc), intmask);
2554
2555 if (intmask & (SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE)) {
2556 u32 present = sdhci_readl(host, SDHCI_PRESENT_STATE) &
2557 SDHCI_CARD_PRESENT;
2558
2559 /*
2560 * There is a observation on i.mx esdhc. INSERT
2561 * bit will be immediately set again when it gets
2562 * cleared, if a card is inserted. We have to mask
2563 * the irq to prevent interrupt storm which will
2564 * freeze the system. And the REMOVE gets the
2565 * same situation.
2566 *
2567 * More testing are needed here to ensure it works
2568 * for other platforms though.
2569 */
Russell Kingb537f942014-04-25 12:56:01 +01002570 host->ier &= ~(SDHCI_INT_CARD_INSERT |
2571 SDHCI_INT_CARD_REMOVE);
2572 host->ier |= present ? SDHCI_INT_CARD_REMOVE :
2573 SDHCI_INT_CARD_INSERT;
2574 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
2575 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Russell King41005002014-04-25 12:55:36 +01002576
2577 sdhci_writel(host, intmask & (SDHCI_INT_CARD_INSERT |
2578 SDHCI_INT_CARD_REMOVE), SDHCI_INT_STATUS);
Russell King3560db82014-04-25 12:55:51 +01002579
2580 host->thread_isr |= intmask & (SDHCI_INT_CARD_INSERT |
2581 SDHCI_INT_CARD_REMOVE);
2582 result = IRQ_WAKE_THREAD;
Russell King41005002014-04-25 12:55:36 +01002583 }
2584
2585 if (intmask & SDHCI_INT_CMD_MASK)
Adrian Hunter61541392014-09-24 10:27:27 +03002586 sdhci_cmd_irq(host, intmask & SDHCI_INT_CMD_MASK,
2587 &intmask);
Russell King41005002014-04-25 12:55:36 +01002588
2589 if (intmask & SDHCI_INT_DATA_MASK)
2590 sdhci_data_irq(host, intmask & SDHCI_INT_DATA_MASK);
2591
2592 if (intmask & SDHCI_INT_BUS_POWER)
2593 pr_err("%s: Card is consuming too much power!\n",
2594 mmc_hostname(host->mmc));
2595
Russell King781e9892014-04-25 12:55:46 +01002596 if (intmask & SDHCI_INT_CARD_INT) {
2597 sdhci_enable_sdio_irq_nolock(host, false);
2598 host->thread_isr |= SDHCI_INT_CARD_INT;
2599 result = IRQ_WAKE_THREAD;
2600 }
Russell King41005002014-04-25 12:55:36 +01002601
2602 intmask &= ~(SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE |
2603 SDHCI_INT_CMD_MASK | SDHCI_INT_DATA_MASK |
2604 SDHCI_INT_ERROR | SDHCI_INT_BUS_POWER |
2605 SDHCI_INT_CARD_INT);
2606
2607 if (intmask) {
2608 unexpected |= intmask;
2609 sdhci_writel(host, intmask, SDHCI_INT_STATUS);
2610 }
2611
Russell King781e9892014-04-25 12:55:46 +01002612 if (result == IRQ_NONE)
2613 result = IRQ_HANDLED;
Russell King41005002014-04-25 12:55:36 +01002614
2615 intmask = sdhci_readl(host, SDHCI_INT_STATUS);
Russell King41005002014-04-25 12:55:36 +01002616 } while (intmask && --max_loops);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002617out:
2618 spin_unlock(&host->lock);
2619
Alexander Stein6379b232012-03-14 09:52:10 +01002620 if (unexpected) {
2621 pr_err("%s: Unexpected interrupt 0x%08x.\n",
2622 mmc_hostname(host->mmc), unexpected);
2623 sdhci_dumpregs(host);
2624 }
Pierre Ossmanf75979b2007-09-04 07:59:18 +02002625
Pierre Ossmand129bce2006-03-24 03:18:17 -08002626 return result;
2627}
2628
Russell King781e9892014-04-25 12:55:46 +01002629static irqreturn_t sdhci_thread_irq(int irq, void *dev_id)
2630{
2631 struct sdhci_host *host = dev_id;
2632 unsigned long flags;
2633 u32 isr;
2634
2635 spin_lock_irqsave(&host->lock, flags);
2636 isr = host->thread_isr;
2637 host->thread_isr = 0;
2638 spin_unlock_irqrestore(&host->lock, flags);
2639
Russell King3560db82014-04-25 12:55:51 +01002640 if (isr & (SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE)) {
Adrian Hunterd3940f22016-06-29 16:24:14 +03002641 struct mmc_host *mmc = host->mmc;
2642
2643 mmc->ops->card_event(mmc);
2644 mmc_detect_change(mmc, msecs_to_jiffies(200));
Russell King3560db82014-04-25 12:55:51 +01002645 }
2646
Russell King781e9892014-04-25 12:55:46 +01002647 if (isr & SDHCI_INT_CARD_INT) {
2648 sdio_run_irqs(host->mmc);
2649
2650 spin_lock_irqsave(&host->lock, flags);
2651 if (host->flags & SDHCI_SDIO_IRQ_ENABLED)
2652 sdhci_enable_sdio_irq_nolock(host, true);
2653 spin_unlock_irqrestore(&host->lock, flags);
2654 }
2655
2656 return isr ? IRQ_HANDLED : IRQ_NONE;
2657}
2658
Pierre Ossmand129bce2006-03-24 03:18:17 -08002659/*****************************************************************************\
2660 * *
2661 * Suspend/resume *
2662 * *
2663\*****************************************************************************/
2664
2665#ifdef CONFIG_PM
Ludovic Desroches84d62602016-05-13 15:16:02 +02002666/*
2667 * To enable wakeup events, the corresponding events have to be enabled in
2668 * the Interrupt Status Enable register too. See 'Table 1-6: Wakeup Signal
2669 * Table' in the SD Host Controller Standard Specification.
2670 * It is useless to restore SDHCI_INT_ENABLE state in
2671 * sdhci_disable_irq_wakeups() since it will be set by
2672 * sdhci_enable_card_detection() or sdhci_init().
2673 */
Kevin Liuad080d72013-01-05 17:21:33 +08002674void sdhci_enable_irq_wakeups(struct sdhci_host *host)
2675{
2676 u8 val;
2677 u8 mask = SDHCI_WAKE_ON_INSERT | SDHCI_WAKE_ON_REMOVE
2678 | SDHCI_WAKE_ON_INT;
Ludovic Desroches84d62602016-05-13 15:16:02 +02002679 u32 irq_val = SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE |
2680 SDHCI_INT_CARD_INT;
Kevin Liuad080d72013-01-05 17:21:33 +08002681
2682 val = sdhci_readb(host, SDHCI_WAKE_UP_CONTROL);
2683 val |= mask ;
2684 /* Avoid fake wake up */
Ludovic Desroches84d62602016-05-13 15:16:02 +02002685 if (host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION) {
Kevin Liuad080d72013-01-05 17:21:33 +08002686 val &= ~(SDHCI_WAKE_ON_INSERT | SDHCI_WAKE_ON_REMOVE);
Ludovic Desroches84d62602016-05-13 15:16:02 +02002687 irq_val &= ~(SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE);
2688 }
Kevin Liuad080d72013-01-05 17:21:33 +08002689 sdhci_writeb(host, val, SDHCI_WAKE_UP_CONTROL);
Ludovic Desroches84d62602016-05-13 15:16:02 +02002690 sdhci_writel(host, irq_val, SDHCI_INT_ENABLE);
Kevin Liuad080d72013-01-05 17:21:33 +08002691}
2692EXPORT_SYMBOL_GPL(sdhci_enable_irq_wakeups);
2693
Fabio Estevam0b10f472014-08-30 14:53:13 -03002694static void sdhci_disable_irq_wakeups(struct sdhci_host *host)
Kevin Liuad080d72013-01-05 17:21:33 +08002695{
2696 u8 val;
2697 u8 mask = SDHCI_WAKE_ON_INSERT | SDHCI_WAKE_ON_REMOVE
2698 | SDHCI_WAKE_ON_INT;
2699
2700 val = sdhci_readb(host, SDHCI_WAKE_UP_CONTROL);
2701 val &= ~mask;
2702 sdhci_writeb(host, val, SDHCI_WAKE_UP_CONTROL);
2703}
Pierre Ossmand129bce2006-03-24 03:18:17 -08002704
Manuel Lauss29495aa2011-11-03 11:09:45 +01002705int sdhci_suspend_host(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002706{
Anton Vorontsov7260cf52009-03-17 00:13:48 +03002707 sdhci_disable_card_detection(host);
2708
Adrian Hunter66c39dfc2015-05-07 13:10:21 +03002709 mmc_retune_timer_stop(host->mmc);
2710 mmc_retune_needed(host->mmc);
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05302711
Kevin Liuad080d72013-01-05 17:21:33 +08002712 if (!device_may_wakeup(mmc_dev(host->mmc))) {
Russell Kingb537f942014-04-25 12:56:01 +01002713 host->ier = 0;
2714 sdhci_writel(host, 0, SDHCI_INT_ENABLE);
2715 sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE);
Kevin Liuad080d72013-01-05 17:21:33 +08002716 free_irq(host->irq, host);
2717 } else {
2718 sdhci_enable_irq_wakeups(host);
2719 enable_irq_wake(host->irq);
2720 }
Ulf Hansson4ee14ec2013-09-25 14:15:24 +02002721 return 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002722}
2723
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002724EXPORT_SYMBOL_GPL(sdhci_suspend_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002725
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002726int sdhci_resume_host(struct sdhci_host *host)
2727{
Adrian Hunterd3940f22016-06-29 16:24:14 +03002728 struct mmc_host *mmc = host->mmc;
Ulf Hansson4ee14ec2013-09-25 14:15:24 +02002729 int ret = 0;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002730
Richard Röjforsa13abc72009-09-22 16:45:30 -07002731 if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002732 if (host->ops->enable_dma)
2733 host->ops->enable_dma(host);
2734 }
2735
Adrian Hunter6308d292012-02-07 14:48:54 +02002736 if ((host->mmc->pm_flags & MMC_PM_KEEP_POWER) &&
2737 (host->quirks2 & SDHCI_QUIRK2_HOST_OFF_CARD_ON)) {
2738 /* Card keeps power but host controller does not */
2739 sdhci_init(host, 0);
2740 host->pwr = 0;
2741 host->clock = 0;
Adrian Hunterd3940f22016-06-29 16:24:14 +03002742 mmc->ops->set_ios(mmc, &mmc->ios);
Adrian Hunter6308d292012-02-07 14:48:54 +02002743 } else {
2744 sdhci_init(host, (host->mmc->pm_flags & MMC_PM_KEEP_POWER));
2745 mmiowb();
2746 }
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002747
Haibo Chen14a7b41642015-09-15 18:32:58 +08002748 if (!device_may_wakeup(mmc_dev(host->mmc))) {
2749 ret = request_threaded_irq(host->irq, sdhci_irq,
2750 sdhci_thread_irq, IRQF_SHARED,
2751 mmc_hostname(host->mmc), host);
2752 if (ret)
2753 return ret;
2754 } else {
2755 sdhci_disable_irq_wakeups(host);
2756 disable_irq_wake(host->irq);
2757 }
2758
Anton Vorontsov7260cf52009-03-17 00:13:48 +03002759 sdhci_enable_card_detection(host);
2760
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08002761 return ret;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002762}
2763
2764EXPORT_SYMBOL_GPL(sdhci_resume_host);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002765
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002766int sdhci_runtime_suspend_host(struct sdhci_host *host)
2767{
2768 unsigned long flags;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002769
Adrian Hunter66c39dfc2015-05-07 13:10:21 +03002770 mmc_retune_timer_stop(host->mmc);
2771 mmc_retune_needed(host->mmc);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002772
2773 spin_lock_irqsave(&host->lock, flags);
Russell Kingb537f942014-04-25 12:56:01 +01002774 host->ier &= SDHCI_INT_CARD_INT;
2775 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
2776 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002777 spin_unlock_irqrestore(&host->lock, flags);
2778
Russell King781e9892014-04-25 12:55:46 +01002779 synchronize_hardirq(host->irq);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002780
2781 spin_lock_irqsave(&host->lock, flags);
2782 host->runtime_suspended = true;
2783 spin_unlock_irqrestore(&host->lock, flags);
2784
Markus Pargmann8a125ba2014-06-04 15:24:29 +02002785 return 0;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002786}
2787EXPORT_SYMBOL_GPL(sdhci_runtime_suspend_host);
2788
2789int sdhci_runtime_resume_host(struct sdhci_host *host)
2790{
Adrian Hunterd3940f22016-06-29 16:24:14 +03002791 struct mmc_host *mmc = host->mmc;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002792 unsigned long flags;
Markus Pargmann8a125ba2014-06-04 15:24:29 +02002793 int host_flags = host->flags;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002794
2795 if (host_flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
2796 if (host->ops->enable_dma)
2797 host->ops->enable_dma(host);
2798 }
2799
2800 sdhci_init(host, 0);
2801
2802 /* Force clock and power re-program */
2803 host->pwr = 0;
2804 host->clock = 0;
Adrian Hunterd3940f22016-06-29 16:24:14 +03002805 mmc->ops->start_signal_voltage_switch(mmc, &mmc->ios);
2806 mmc->ops->set_ios(mmc, &mmc->ios);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002807
Kevin Liu52983382013-01-31 11:31:37 +08002808 if ((host_flags & SDHCI_PV_ENABLED) &&
2809 !(host->quirks2 & SDHCI_QUIRK2_PRESET_VALUE_BROKEN)) {
2810 spin_lock_irqsave(&host->lock, flags);
2811 sdhci_enable_preset_value(host, true);
2812 spin_unlock_irqrestore(&host->lock, flags);
2813 }
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002814
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002815 spin_lock_irqsave(&host->lock, flags);
2816
2817 host->runtime_suspended = false;
2818
2819 /* Enable SDIO IRQ */
Russell Kingef104332014-04-25 12:55:41 +01002820 if (host->flags & SDHCI_SDIO_IRQ_ENABLED)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002821 sdhci_enable_sdio_irq_nolock(host, true);
2822
2823 /* Enable Card Detection */
2824 sdhci_enable_card_detection(host);
2825
2826 spin_unlock_irqrestore(&host->lock, flags);
2827
Markus Pargmann8a125ba2014-06-04 15:24:29 +02002828 return 0;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002829}
2830EXPORT_SYMBOL_GPL(sdhci_runtime_resume_host);
2831
Rafael J. Wysocki162d6f92014-12-05 03:05:33 +01002832#endif /* CONFIG_PM */
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002833
Pierre Ossmand129bce2006-03-24 03:18:17 -08002834/*****************************************************************************\
2835 * *
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002836 * Device allocation/registration *
Pierre Ossmand129bce2006-03-24 03:18:17 -08002837 * *
2838\*****************************************************************************/
2839
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002840struct sdhci_host *sdhci_alloc_host(struct device *dev,
2841 size_t priv_size)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002842{
Pierre Ossmand129bce2006-03-24 03:18:17 -08002843 struct mmc_host *mmc;
2844 struct sdhci_host *host;
2845
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002846 WARN_ON(dev == NULL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002847
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002848 mmc = mmc_alloc_host(sizeof(struct sdhci_host) + priv_size, dev);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002849 if (!mmc)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002850 return ERR_PTR(-ENOMEM);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002851
2852 host = mmc_priv(mmc);
2853 host->mmc = mmc;
Adrian Hunterbf60e592016-02-09 16:12:35 +02002854 host->mmc_host_ops = sdhci_ops;
2855 mmc->ops = &host->mmc_host_ops;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002856
Adrian Hunter8cb851a2016-06-29 16:24:16 +03002857 host->flags = SDHCI_SIGNALING_330;
2858
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002859 return host;
2860}
Pierre Ossman8a4da142006-10-04 02:15:40 -07002861
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002862EXPORT_SYMBOL_GPL(sdhci_alloc_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002863
Alexandre Courbot7b913692016-03-07 11:07:55 +09002864static int sdhci_set_dma_mask(struct sdhci_host *host)
2865{
2866 struct mmc_host *mmc = host->mmc;
2867 struct device *dev = mmc_dev(mmc);
2868 int ret = -EINVAL;
2869
2870 if (host->quirks2 & SDHCI_QUIRK2_BROKEN_64_BIT_DMA)
2871 host->flags &= ~SDHCI_USE_64_BIT_DMA;
2872
2873 /* Try 64-bit mask if hardware is capable of it */
2874 if (host->flags & SDHCI_USE_64_BIT_DMA) {
2875 ret = dma_set_mask_and_coherent(dev, DMA_BIT_MASK(64));
2876 if (ret) {
2877 pr_warn("%s: Failed to set 64-bit DMA mask.\n",
2878 mmc_hostname(mmc));
2879 host->flags &= ~SDHCI_USE_64_BIT_DMA;
2880 }
2881 }
2882
2883 /* 32-bit mask as default & fallback */
2884 if (ret) {
2885 ret = dma_set_mask_and_coherent(dev, DMA_BIT_MASK(32));
2886 if (ret)
2887 pr_warn("%s: Failed to set 32-bit DMA mask.\n",
2888 mmc_hostname(mmc));
2889 }
2890
2891 return ret;
2892}
2893
Adrian Hunter6132a3b2016-06-29 16:24:18 +03002894void __sdhci_read_caps(struct sdhci_host *host, u16 *ver, u32 *caps, u32 *caps1)
2895{
2896 u16 v;
2897
2898 if (host->read_caps)
2899 return;
2900
2901 host->read_caps = true;
2902
2903 if (debug_quirks)
2904 host->quirks = debug_quirks;
2905
2906 if (debug_quirks2)
2907 host->quirks2 = debug_quirks2;
2908
2909 sdhci_do_reset(host, SDHCI_RESET_ALL);
2910
2911 v = ver ? *ver : sdhci_readw(host, SDHCI_HOST_VERSION);
2912 host->version = (v & SDHCI_SPEC_VER_MASK) >> SDHCI_SPEC_VER_SHIFT;
2913
2914 if (host->quirks & SDHCI_QUIRK_MISSING_CAPS)
2915 return;
2916
2917 host->caps = caps ? *caps : sdhci_readl(host, SDHCI_CAPABILITIES);
2918
2919 if (host->version < SDHCI_SPEC_300)
2920 return;
2921
2922 host->caps1 = caps1 ? *caps1 : sdhci_readl(host, SDHCI_CAPABILITIES_1);
2923}
2924EXPORT_SYMBOL_GPL(__sdhci_read_caps);
2925
Adrian Hunter52f53362016-06-29 16:24:15 +03002926int sdhci_setup_host(struct sdhci_host *host)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002927{
2928 struct mmc_host *mmc;
Arindam Nathf2119df2011-05-05 12:18:57 +05302929 u32 max_current_caps;
2930 unsigned int ocr_avail;
Adrian Hunterf5fa92e2014-09-24 10:27:32 +03002931 unsigned int override_timeout_clk;
Dong Aisheng59241752015-07-22 20:53:07 +08002932 u32 max_clk;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002933 int ret;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002934
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002935 WARN_ON(host == NULL);
2936 if (host == NULL)
2937 return -EINVAL;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002938
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002939 mmc = host->mmc;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002940
Adrian Hunter6132a3b2016-06-29 16:24:18 +03002941 sdhci_read_caps(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002942
Adrian Hunterf5fa92e2014-09-24 10:27:32 +03002943 override_timeout_clk = host->timeout_clk;
2944
Zhangfei Gao85105c52010-08-06 07:10:01 +08002945 if (host->version > SDHCI_SPEC_300) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01002946 pr_err("%s: Unknown controller version (%d). You may experience problems.\n",
2947 mmc_hostname(mmc), host->version);
Pierre Ossman4a965502006-06-30 02:22:29 -07002948 }
2949
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002950 if (host->quirks & SDHCI_QUIRK_FORCE_DMA)
Richard Röjforsa13abc72009-09-22 16:45:30 -07002951 host->flags |= SDHCI_USE_SDMA;
Adrian Hunter28da3582016-06-29 16:24:17 +03002952 else if (!(host->caps & SDHCI_CAN_DO_SDMA))
Richard Röjforsa13abc72009-09-22 16:45:30 -07002953 DBG("Controller doesn't have SDMA capability\n");
Pierre Ossman67435272006-06-30 02:22:31 -07002954 else
Richard Röjforsa13abc72009-09-22 16:45:30 -07002955 host->flags |= SDHCI_USE_SDMA;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002956
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002957 if ((host->quirks & SDHCI_QUIRK_BROKEN_DMA) &&
Richard Röjforsa13abc72009-09-22 16:45:30 -07002958 (host->flags & SDHCI_USE_SDMA)) {
Rolf Eike Beercee687c2007-11-02 15:22:30 +01002959 DBG("Disabling DMA as it is marked broken\n");
Richard Röjforsa13abc72009-09-22 16:45:30 -07002960 host->flags &= ~SDHCI_USE_SDMA;
Feng Tang7c168e32007-09-30 12:44:18 +02002961 }
2962
Arindam Nathf2119df2011-05-05 12:18:57 +05302963 if ((host->version >= SDHCI_SPEC_200) &&
Adrian Hunter28da3582016-06-29 16:24:17 +03002964 (host->caps & SDHCI_CAN_DO_ADMA2))
Richard Röjforsa13abc72009-09-22 16:45:30 -07002965 host->flags |= SDHCI_USE_ADMA;
Pierre Ossman2134a922008-06-28 18:28:51 +02002966
2967 if ((host->quirks & SDHCI_QUIRK_BROKEN_ADMA) &&
2968 (host->flags & SDHCI_USE_ADMA)) {
2969 DBG("Disabling ADMA as it is marked broken\n");
2970 host->flags &= ~SDHCI_USE_ADMA;
2971 }
2972
Adrian Huntere57a5f62014-11-04 12:42:46 +02002973 /*
2974 * It is assumed that a 64-bit capable device has set a 64-bit DMA mask
2975 * and *must* do 64-bit DMA. A driver has the opportunity to change
2976 * that during the first call to ->enable_dma(). Similarly
2977 * SDHCI_QUIRK2_BROKEN_64_BIT_DMA must be left to the drivers to
2978 * implement.
2979 */
Adrian Hunter28da3582016-06-29 16:24:17 +03002980 if (host->caps & SDHCI_CAN_64BIT)
Adrian Huntere57a5f62014-11-04 12:42:46 +02002981 host->flags |= SDHCI_USE_64_BIT_DMA;
2982
Richard Röjforsa13abc72009-09-22 16:45:30 -07002983 if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
Alexandre Courbot7b913692016-03-07 11:07:55 +09002984 ret = sdhci_set_dma_mask(host);
2985
2986 if (!ret && host->ops->enable_dma)
2987 ret = host->ops->enable_dma(host);
2988
2989 if (ret) {
2990 pr_warn("%s: No suitable DMA available - falling back to PIO\n",
2991 mmc_hostname(mmc));
2992 host->flags &= ~(SDHCI_USE_SDMA | SDHCI_USE_ADMA);
2993
2994 ret = 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002995 }
2996 }
2997
Adrian Huntere57a5f62014-11-04 12:42:46 +02002998 /* SDMA does not support 64-bit DMA */
2999 if (host->flags & SDHCI_USE_64_BIT_DMA)
3000 host->flags &= ~SDHCI_USE_SDMA;
3001
Pierre Ossman2134a922008-06-28 18:28:51 +02003002 if (host->flags & SDHCI_USE_ADMA) {
Russell Kinge66e61c2016-01-26 13:39:55 +00003003 dma_addr_t dma;
3004 void *buf;
3005
Pierre Ossman2134a922008-06-28 18:28:51 +02003006 /*
Adrian Hunter76fe3792014-11-04 12:42:42 +02003007 * The DMA descriptor table size is calculated as the maximum
3008 * number of segments times 2, to allow for an alignment
3009 * descriptor for each segment, plus 1 for a nop end descriptor,
3010 * all multipled by the descriptor size.
Pierre Ossman2134a922008-06-28 18:28:51 +02003011 */
Adrian Huntere57a5f62014-11-04 12:42:46 +02003012 if (host->flags & SDHCI_USE_64_BIT_DMA) {
3013 host->adma_table_sz = (SDHCI_MAX_SEGS * 2 + 1) *
3014 SDHCI_ADMA2_64_DESC_SZ;
Adrian Huntere57a5f62014-11-04 12:42:46 +02003015 host->desc_sz = SDHCI_ADMA2_64_DESC_SZ;
Adrian Huntere57a5f62014-11-04 12:42:46 +02003016 } else {
3017 host->adma_table_sz = (SDHCI_MAX_SEGS * 2 + 1) *
3018 SDHCI_ADMA2_32_DESC_SZ;
Adrian Huntere57a5f62014-11-04 12:42:46 +02003019 host->desc_sz = SDHCI_ADMA2_32_DESC_SZ;
Adrian Huntere57a5f62014-11-04 12:42:46 +02003020 }
Russell Kinge66e61c2016-01-26 13:39:55 +00003021
Adrian Hunter04a5ae62015-11-26 14:00:49 +02003022 host->align_buffer_sz = SDHCI_MAX_SEGS * SDHCI_ADMA2_ALIGN;
Russell Kinge66e61c2016-01-26 13:39:55 +00003023 buf = dma_alloc_coherent(mmc_dev(mmc), host->align_buffer_sz +
3024 host->adma_table_sz, &dma, GFP_KERNEL);
3025 if (!buf) {
Joe Perches66061102014-09-12 14:56:56 -07003026 pr_warn("%s: Unable to allocate ADMA buffers - falling back to standard DMA\n",
Pierre Ossman2134a922008-06-28 18:28:51 +02003027 mmc_hostname(mmc));
3028 host->flags &= ~SDHCI_USE_ADMA;
Russell Kinge66e61c2016-01-26 13:39:55 +00003029 } else if ((dma + host->align_buffer_sz) &
3030 (SDHCI_ADMA2_DESC_ALIGN - 1)) {
Joe Perches66061102014-09-12 14:56:56 -07003031 pr_warn("%s: unable to allocate aligned ADMA descriptor\n",
3032 mmc_hostname(mmc));
Russell Kingd1e49f72014-04-25 12:58:34 +01003033 host->flags &= ~SDHCI_USE_ADMA;
Russell Kinge66e61c2016-01-26 13:39:55 +00003034 dma_free_coherent(mmc_dev(mmc), host->align_buffer_sz +
3035 host->adma_table_sz, buf, dma);
3036 } else {
3037 host->align_buffer = buf;
3038 host->align_addr = dma;
Russell Kingedd63fc2016-01-26 13:39:50 +00003039
Russell Kinge66e61c2016-01-26 13:39:55 +00003040 host->adma_table = buf + host->align_buffer_sz;
3041 host->adma_addr = dma + host->align_buffer_sz;
3042 }
Pierre Ossman2134a922008-06-28 18:28:51 +02003043 }
3044
Pierre Ossman76591502008-07-21 00:32:11 +02003045 /*
3046 * If we use DMA, then it's up to the caller to set the DMA
3047 * mask, but PIO does not need the hw shim so we set a new
3048 * mask here in that case.
3049 */
Richard Röjforsa13abc72009-09-22 16:45:30 -07003050 if (!(host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA))) {
Pierre Ossman76591502008-07-21 00:32:11 +02003051 host->dma_mask = DMA_BIT_MASK(64);
Markus Mayer4e743f12014-07-03 13:27:42 -07003052 mmc_dev(mmc)->dma_mask = &host->dma_mask;
Pierre Ossman76591502008-07-21 00:32:11 +02003053 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08003054
Zhangfei Gaoc4687d52010-08-20 14:02:36 -04003055 if (host->version >= SDHCI_SPEC_300)
Adrian Hunter28da3582016-06-29 16:24:17 +03003056 host->max_clk = (host->caps & SDHCI_CLOCK_V3_BASE_MASK)
Zhangfei Gaoc4687d52010-08-20 14:02:36 -04003057 >> SDHCI_CLOCK_BASE_SHIFT;
3058 else
Adrian Hunter28da3582016-06-29 16:24:17 +03003059 host->max_clk = (host->caps & SDHCI_CLOCK_BASE_MASK)
Zhangfei Gaoc4687d52010-08-20 14:02:36 -04003060 >> SDHCI_CLOCK_BASE_SHIFT;
3061
Pierre Ossmand129bce2006-03-24 03:18:17 -08003062 host->max_clk *= 1000000;
Anton Vorontsovf27f47e2010-05-26 14:41:53 -07003063 if (host->max_clk == 0 || host->quirks &
3064 SDHCI_QUIRK_CAP_CLOCK_BASE_BROKEN) {
Ben Dooks4240ff02009-03-17 00:13:57 +03003065 if (!host->ops->get_max_clock) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01003066 pr_err("%s: Hardware doesn't specify base clock frequency.\n",
3067 mmc_hostname(mmc));
Adrian Huntereb5c20d2016-04-12 14:25:08 +03003068 ret = -ENODEV;
3069 goto undma;
Ben Dooks4240ff02009-03-17 00:13:57 +03003070 }
3071 host->max_clk = host->ops->get_max_clock(host);
3072 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08003073
3074 /*
Arindam Nathc3ed3872011-05-05 12:19:06 +05303075 * In case of Host Controller v3.00, find out whether clock
3076 * multiplier is supported.
3077 */
Adrian Hunter28da3582016-06-29 16:24:17 +03003078 host->clk_mul = (host->caps1 & SDHCI_CLOCK_MUL_MASK) >>
Arindam Nathc3ed3872011-05-05 12:19:06 +05303079 SDHCI_CLOCK_MUL_SHIFT;
3080
3081 /*
3082 * In case the value in Clock Multiplier is 0, then programmable
3083 * clock mode is not supported, otherwise the actual clock
3084 * multiplier is one more than the value of Clock Multiplier
3085 * in the Capabilities Register.
3086 */
3087 if (host->clk_mul)
3088 host->clk_mul += 1;
3089
3090 /*
Pierre Ossmand129bce2006-03-24 03:18:17 -08003091 * Set host parameters.
3092 */
Dong Aisheng59241752015-07-22 20:53:07 +08003093 max_clk = host->max_clk;
3094
Marek Szyprowskice5f0362010-08-10 18:01:56 -07003095 if (host->ops->get_min_clock)
Anton Vorontsova9e58f22009-07-29 15:04:16 -07003096 mmc->f_min = host->ops->get_min_clock(host);
Arindam Nathc3ed3872011-05-05 12:19:06 +05303097 else if (host->version >= SDHCI_SPEC_300) {
3098 if (host->clk_mul) {
3099 mmc->f_min = (host->max_clk * host->clk_mul) / 1024;
Dong Aisheng59241752015-07-22 20:53:07 +08003100 max_clk = host->max_clk * host->clk_mul;
Arindam Nathc3ed3872011-05-05 12:19:06 +05303101 } else
3102 mmc->f_min = host->max_clk / SDHCI_MAX_DIV_SPEC_300;
3103 } else
Zhangfei Gao03975262010-09-20 15:15:18 -04003104 mmc->f_min = host->max_clk / SDHCI_MAX_DIV_SPEC_200;
Philip Rakity15ec4462010-11-19 16:48:39 -05003105
Adrian Hunterd310ae42016-04-12 14:25:07 +03003106 if (!mmc->f_max || mmc->f_max > max_clk)
Dong Aisheng59241752015-07-22 20:53:07 +08003107 mmc->f_max = max_clk;
3108
Aisheng Dong28aab052014-08-27 15:26:31 +08003109 if (!(host->quirks & SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK)) {
Adrian Hunter28da3582016-06-29 16:24:17 +03003110 host->timeout_clk = (host->caps & SDHCI_TIMEOUT_CLK_MASK) >>
Aisheng Dong28aab052014-08-27 15:26:31 +08003111 SDHCI_TIMEOUT_CLK_SHIFT;
3112 if (host->timeout_clk == 0) {
3113 if (host->ops->get_timeout_clock) {
3114 host->timeout_clk =
3115 host->ops->get_timeout_clock(host);
3116 } else {
3117 pr_err("%s: Hardware doesn't specify timeout clock frequency.\n",
3118 mmc_hostname(mmc));
Adrian Huntereb5c20d2016-04-12 14:25:08 +03003119 ret = -ENODEV;
3120 goto undma;
Aisheng Dong28aab052014-08-27 15:26:31 +08003121 }
Andy Shevchenko272308c2011-08-03 18:36:00 +03003122 }
Andy Shevchenko272308c2011-08-03 18:36:00 +03003123
Adrian Hunter28da3582016-06-29 16:24:17 +03003124 if (host->caps & SDHCI_TIMEOUT_CLK_UNIT)
Aisheng Dong28aab052014-08-27 15:26:31 +08003125 host->timeout_clk *= 1000;
Andy Shevchenko272308c2011-08-03 18:36:00 +03003126
Adrian Hunter99513622016-03-07 13:33:55 +02003127 if (override_timeout_clk)
3128 host->timeout_clk = override_timeout_clk;
3129
Aisheng Dong28aab052014-08-27 15:26:31 +08003130 mmc->max_busy_timeout = host->ops->get_max_timeout_count ?
Aisheng Donga6ff5ae2014-08-27 15:26:27 +08003131 host->ops->get_max_timeout_count(host) : 1 << 27;
Aisheng Dong28aab052014-08-27 15:26:31 +08003132 mmc->max_busy_timeout /= host->timeout_clk;
3133 }
Adrian Hunter58d12462011-06-28 17:16:03 +03003134
Andrei Warkentine89d4562011-05-23 15:06:37 -05003135 mmc->caps |= MMC_CAP_SDIO_IRQ | MMC_CAP_ERASE | MMC_CAP_CMD23;
Russell King781e9892014-04-25 12:55:46 +01003136 mmc->caps2 |= MMC_CAP2_SDIO_IRQ_NOTHREAD;
Andrei Warkentine89d4562011-05-23 15:06:37 -05003137
3138 if (host->quirks & SDHCI_QUIRK_MULTIBLOCK_READ_ACMD12)
3139 host->flags |= SDHCI_AUTO_CMD12;
Anton Vorontsov5fe23c72009-06-18 00:14:08 +04003140
Andrei Warkentin8edf63712011-05-23 15:06:39 -05003141 /* Auto-CMD23 stuff only works in ADMA or PIO. */
Andrei Warkentin4f3d3e92011-05-25 10:42:50 -04003142 if ((host->version >= SDHCI_SPEC_300) &&
Andrei Warkentin8edf63712011-05-23 15:06:39 -05003143 ((host->flags & SDHCI_USE_ADMA) ||
Scott Branden3bfa6f02015-02-09 16:06:28 -08003144 !(host->flags & SDHCI_USE_SDMA)) &&
3145 !(host->quirks2 & SDHCI_QUIRK2_ACMD23_BROKEN)) {
Andrei Warkentin8edf63712011-05-23 15:06:39 -05003146 host->flags |= SDHCI_AUTO_CMD23;
3147 DBG("%s: Auto-CMD23 available\n", mmc_hostname(mmc));
3148 } else {
3149 DBG("%s: Auto-CMD23 unavailable\n", mmc_hostname(mmc));
3150 }
3151
Philip Rakity15ec4462010-11-19 16:48:39 -05003152 /*
3153 * A controller may support 8-bit width, but the board itself
3154 * might not have the pins brought out. Boards that support
3155 * 8-bit width must set "mmc->caps |= MMC_CAP_8_BIT_DATA;" in
3156 * their platform code before calling sdhci_add_host(), and we
3157 * won't assume 8-bit width for hosts without that CAP.
3158 */
Anton Vorontsov5fe23c72009-06-18 00:14:08 +04003159 if (!(host->quirks & SDHCI_QUIRK_FORCE_1_BIT_DATA))
Philip Rakity15ec4462010-11-19 16:48:39 -05003160 mmc->caps |= MMC_CAP_4_BIT_DATA;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003161
Jerry Huang63ef5d82012-10-25 13:47:19 +08003162 if (host->quirks2 & SDHCI_QUIRK2_HOST_NO_CMD23)
3163 mmc->caps &= ~MMC_CAP_CMD23;
3164
Adrian Hunter28da3582016-06-29 16:24:17 +03003165 if (host->caps & SDHCI_CAN_DO_HISPD)
Zhangfei Gaoa29e7e12010-08-16 21:15:32 -04003166 mmc->caps |= MMC_CAP_SD_HIGHSPEED | MMC_CAP_MMC_HIGHSPEED;
Pierre Ossmancd9277c2007-02-18 12:07:47 +01003167
Jaehoon Chung176d1ed2010-09-27 09:42:20 +01003168 if ((host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION) &&
Jaehoon Chung860951c2016-06-21 10:13:26 +09003169 mmc_card_is_removable(mmc) &&
Arnd Bergmann287980e2016-05-27 23:23:25 +02003170 mmc_gpio_get_cd(host->mmc) < 0)
Anton Vorontsov68d1fb72009-03-17 00:13:52 +03003171 mmc->caps |= MMC_CAP_NEEDS_POLL;
3172
Tim Kryger3a48edc2014-06-13 10:13:56 -07003173 /* If there are external regulators, get them */
Adrian Huntereb5c20d2016-04-12 14:25:08 +03003174 ret = mmc_regulator_get_supply(mmc);
3175 if (ret == -EPROBE_DEFER)
3176 goto undma;
Tim Kryger3a48edc2014-06-13 10:13:56 -07003177
Philip Rakity6231f3d2012-07-23 15:56:23 -07003178 /* If vqmmc regulator and no 1.8V signalling, then there's no UHS */
Tim Kryger3a48edc2014-06-13 10:13:56 -07003179 if (!IS_ERR(mmc->supply.vqmmc)) {
3180 ret = regulator_enable(mmc->supply.vqmmc);
3181 if (!regulator_is_supported_voltage(mmc->supply.vqmmc, 1700000,
3182 1950000))
Adrian Hunter28da3582016-06-29 16:24:17 +03003183 host->caps1 &= ~(SDHCI_SUPPORT_SDR104 |
3184 SDHCI_SUPPORT_SDR50 |
3185 SDHCI_SUPPORT_DDR50);
Chris Balla3361ab2013-03-11 17:51:53 -04003186 if (ret) {
3187 pr_warn("%s: Failed to enable vqmmc regulator: %d\n",
3188 mmc_hostname(mmc), ret);
Adrian Hunter4bb74312014-11-06 15:19:04 +02003189 mmc->supply.vqmmc = ERR_PTR(-EINVAL);
Chris Balla3361ab2013-03-11 17:51:53 -04003190 }
Kevin Liu8363c372012-11-17 17:55:51 -05003191 }
Philip Rakity6231f3d2012-07-23 15:56:23 -07003192
Adrian Hunter28da3582016-06-29 16:24:17 +03003193 if (host->quirks2 & SDHCI_QUIRK2_NO_1_8_V) {
3194 host->caps1 &= ~(SDHCI_SUPPORT_SDR104 | SDHCI_SUPPORT_SDR50 |
3195 SDHCI_SUPPORT_DDR50);
3196 }
Daniel Drake6a661802012-11-25 13:01:19 -05003197
Al Cooper4188bba2012-03-16 15:54:17 -04003198 /* Any UHS-I mode in caps implies SDR12 and SDR25 support. */
Adrian Hunter28da3582016-06-29 16:24:17 +03003199 if (host->caps1 & (SDHCI_SUPPORT_SDR104 | SDHCI_SUPPORT_SDR50 |
3200 SDHCI_SUPPORT_DDR50))
Arindam Nathf2119df2011-05-05 12:18:57 +05303201 mmc->caps |= MMC_CAP_UHS_SDR12 | MMC_CAP_UHS_SDR25;
3202
3203 /* SDR104 supports also implies SDR50 support */
Adrian Hunter28da3582016-06-29 16:24:17 +03003204 if (host->caps1 & SDHCI_SUPPORT_SDR104) {
Arindam Nathf2119df2011-05-05 12:18:57 +05303205 mmc->caps |= MMC_CAP_UHS_SDR104 | MMC_CAP_UHS_SDR50;
Giuseppe CAVALLARO156e14b2013-06-12 08:16:38 +02003206 /* SD3.0: SDR104 is supported so (for eMMC) the caps2
3207 * field can be promoted to support HS200.
3208 */
Adrian Hunter549c0b12014-11-06 15:19:05 +02003209 if (!(host->quirks2 & SDHCI_QUIRK2_BROKEN_HS200))
David Cohen13868bf2013-10-29 10:58:26 -07003210 mmc->caps2 |= MMC_CAP2_HS200;
Adrian Hunter28da3582016-06-29 16:24:17 +03003211 } else if (host->caps1 & SDHCI_SUPPORT_SDR50) {
Arindam Nathf2119df2011-05-05 12:18:57 +05303212 mmc->caps |= MMC_CAP_UHS_SDR50;
Adrian Hunter28da3582016-06-29 16:24:17 +03003213 }
Arindam Nathf2119df2011-05-05 12:18:57 +05303214
Adrian Huntere9fb05d2014-11-06 15:19:06 +02003215 if (host->quirks2 & SDHCI_QUIRK2_CAPS_BIT63_FOR_HS400 &&
Adrian Hunter28da3582016-06-29 16:24:17 +03003216 (host->caps1 & SDHCI_SUPPORT_HS400))
Adrian Huntere9fb05d2014-11-06 15:19:06 +02003217 mmc->caps2 |= MMC_CAP2_HS400;
3218
Adrian Hunter549c0b12014-11-06 15:19:05 +02003219 if ((mmc->caps2 & MMC_CAP2_HSX00_1_2V) &&
3220 (IS_ERR(mmc->supply.vqmmc) ||
3221 !regulator_is_supported_voltage(mmc->supply.vqmmc, 1100000,
3222 1300000)))
3223 mmc->caps2 &= ~MMC_CAP2_HSX00_1_2V;
3224
Adrian Hunter28da3582016-06-29 16:24:17 +03003225 if ((host->caps1 & SDHCI_SUPPORT_DDR50) &&
3226 !(host->quirks2 & SDHCI_QUIRK2_BROKEN_DDR50))
Arindam Nathf2119df2011-05-05 12:18:57 +05303227 mmc->caps |= MMC_CAP_UHS_DDR50;
3228
Girish K S069c9f12012-01-06 09:56:39 +05303229 /* Does the host need tuning for SDR50? */
Adrian Hunter28da3582016-06-29 16:24:17 +03003230 if (host->caps1 & SDHCI_USE_SDR50_TUNING)
Arindam Nathb513ea22011-05-05 12:19:04 +05303231 host->flags |= SDHCI_SDR50_NEEDS_TUNING;
3232
Arindam Nathd6d50a12011-05-05 12:18:59 +05303233 /* Driver Type(s) (A, C, D) supported by the host */
Adrian Hunter28da3582016-06-29 16:24:17 +03003234 if (host->caps1 & SDHCI_DRIVER_TYPE_A)
Arindam Nathd6d50a12011-05-05 12:18:59 +05303235 mmc->caps |= MMC_CAP_DRIVER_TYPE_A;
Adrian Hunter28da3582016-06-29 16:24:17 +03003236 if (host->caps1 & SDHCI_DRIVER_TYPE_C)
Arindam Nathd6d50a12011-05-05 12:18:59 +05303237 mmc->caps |= MMC_CAP_DRIVER_TYPE_C;
Adrian Hunter28da3582016-06-29 16:24:17 +03003238 if (host->caps1 & SDHCI_DRIVER_TYPE_D)
Arindam Nathd6d50a12011-05-05 12:18:59 +05303239 mmc->caps |= MMC_CAP_DRIVER_TYPE_D;
3240
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05303241 /* Initial value for re-tuning timer count */
Adrian Hunter28da3582016-06-29 16:24:17 +03003242 host->tuning_count = (host->caps1 & SDHCI_RETUNING_TIMER_COUNT_MASK) >>
3243 SDHCI_RETUNING_TIMER_COUNT_SHIFT;
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05303244
3245 /*
3246 * In case Re-tuning Timer is not disabled, the actual value of
3247 * re-tuning timer will be 2 ^ (n - 1).
3248 */
3249 if (host->tuning_count)
3250 host->tuning_count = 1 << (host->tuning_count - 1);
3251
3252 /* Re-tuning mode supported by the Host Controller */
Adrian Hunter28da3582016-06-29 16:24:17 +03003253 host->tuning_mode = (host->caps1 & SDHCI_RETUNING_MODE_MASK) >>
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05303254 SDHCI_RETUNING_MODE_SHIFT;
3255
Takashi Iwai8f230f42010-12-08 10:04:30 +01003256 ocr_avail = 0;
Philip Rakitybad37e12012-05-27 18:36:44 -07003257
Arindam Nathf2119df2011-05-05 12:18:57 +05303258 /*
3259 * According to SD Host Controller spec v3.00, if the Host System
3260 * can afford more than 150mA, Host Driver should set XPC to 1. Also
3261 * the value is meaningful only if Voltage Support in the Capabilities
3262 * register is set. The actual current value is 4 times the register
3263 * value.
3264 */
3265 max_current_caps = sdhci_readl(host, SDHCI_MAX_CURRENT);
Tim Kryger3a48edc2014-06-13 10:13:56 -07003266 if (!max_current_caps && !IS_ERR(mmc->supply.vmmc)) {
Chuanxiao.Dongae906032014-08-01 14:00:13 +08003267 int curr = regulator_get_current_limit(mmc->supply.vmmc);
Philip Rakitybad37e12012-05-27 18:36:44 -07003268 if (curr > 0) {
3269
3270 /* convert to SDHCI_MAX_CURRENT format */
3271 curr = curr/1000; /* convert to mA */
3272 curr = curr/SDHCI_MAX_CURRENT_MULTIPLIER;
3273
3274 curr = min_t(u32, curr, SDHCI_MAX_CURRENT_LIMIT);
3275 max_current_caps =
3276 (curr << SDHCI_MAX_CURRENT_330_SHIFT) |
3277 (curr << SDHCI_MAX_CURRENT_300_SHIFT) |
3278 (curr << SDHCI_MAX_CURRENT_180_SHIFT);
3279 }
3280 }
Arindam Nathf2119df2011-05-05 12:18:57 +05303281
Adrian Hunter28da3582016-06-29 16:24:17 +03003282 if (host->caps & SDHCI_CAN_VDD_330) {
Takashi Iwai8f230f42010-12-08 10:04:30 +01003283 ocr_avail |= MMC_VDD_32_33 | MMC_VDD_33_34;
Arindam Nathf2119df2011-05-05 12:18:57 +05303284
Aaron Lu55c46652012-07-04 13:31:48 +08003285 mmc->max_current_330 = ((max_current_caps &
Arindam Nathf2119df2011-05-05 12:18:57 +05303286 SDHCI_MAX_CURRENT_330_MASK) >>
3287 SDHCI_MAX_CURRENT_330_SHIFT) *
3288 SDHCI_MAX_CURRENT_MULTIPLIER;
Arindam Nathf2119df2011-05-05 12:18:57 +05303289 }
Adrian Hunter28da3582016-06-29 16:24:17 +03003290 if (host->caps & SDHCI_CAN_VDD_300) {
Takashi Iwai8f230f42010-12-08 10:04:30 +01003291 ocr_avail |= MMC_VDD_29_30 | MMC_VDD_30_31;
Arindam Nathf2119df2011-05-05 12:18:57 +05303292
Aaron Lu55c46652012-07-04 13:31:48 +08003293 mmc->max_current_300 = ((max_current_caps &
Arindam Nathf2119df2011-05-05 12:18:57 +05303294 SDHCI_MAX_CURRENT_300_MASK) >>
3295 SDHCI_MAX_CURRENT_300_SHIFT) *
3296 SDHCI_MAX_CURRENT_MULTIPLIER;
Arindam Nathf2119df2011-05-05 12:18:57 +05303297 }
Adrian Hunter28da3582016-06-29 16:24:17 +03003298 if (host->caps & SDHCI_CAN_VDD_180) {
Takashi Iwai8f230f42010-12-08 10:04:30 +01003299 ocr_avail |= MMC_VDD_165_195;
3300
Aaron Lu55c46652012-07-04 13:31:48 +08003301 mmc->max_current_180 = ((max_current_caps &
Arindam Nathf2119df2011-05-05 12:18:57 +05303302 SDHCI_MAX_CURRENT_180_MASK) >>
3303 SDHCI_MAX_CURRENT_180_SHIFT) *
3304 SDHCI_MAX_CURRENT_MULTIPLIER;
Arindam Nathf2119df2011-05-05 12:18:57 +05303305 }
3306
Ulf Hansson5fd26c72015-06-05 11:40:08 +02003307 /* If OCR set by host, use it instead. */
3308 if (host->ocr_mask)
3309 ocr_avail = host->ocr_mask;
3310
3311 /* If OCR set by external regulators, give it highest prio. */
Tim Kryger3a48edc2014-06-13 10:13:56 -07003312 if (mmc->ocr_avail)
Tim Kryger52221612014-06-25 00:25:34 -07003313 ocr_avail = mmc->ocr_avail;
Tim Kryger3a48edc2014-06-13 10:13:56 -07003314
Takashi Iwai8f230f42010-12-08 10:04:30 +01003315 mmc->ocr_avail = ocr_avail;
3316 mmc->ocr_avail_sdio = ocr_avail;
3317 if (host->ocr_avail_sdio)
3318 mmc->ocr_avail_sdio &= host->ocr_avail_sdio;
3319 mmc->ocr_avail_sd = ocr_avail;
3320 if (host->ocr_avail_sd)
3321 mmc->ocr_avail_sd &= host->ocr_avail_sd;
3322 else /* normal SD controllers don't support 1.8V */
3323 mmc->ocr_avail_sd &= ~MMC_VDD_165_195;
3324 mmc->ocr_avail_mmc = ocr_avail;
3325 if (host->ocr_avail_mmc)
3326 mmc->ocr_avail_mmc &= host->ocr_avail_mmc;
Pierre Ossman146ad662006-06-30 02:22:23 -07003327
3328 if (mmc->ocr_avail == 0) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01003329 pr_err("%s: Hardware doesn't report any support voltages.\n",
3330 mmc_hostname(mmc));
Adrian Huntereb5c20d2016-04-12 14:25:08 +03003331 ret = -ENODEV;
3332 goto unreg;
Pierre Ossman146ad662006-06-30 02:22:23 -07003333 }
3334
Adrian Hunter8cb851a2016-06-29 16:24:16 +03003335 if ((mmc->caps & (MMC_CAP_UHS_SDR12 | MMC_CAP_UHS_SDR25 |
3336 MMC_CAP_UHS_SDR50 | MMC_CAP_UHS_SDR104 |
3337 MMC_CAP_UHS_DDR50 | MMC_CAP_1_8V_DDR)) ||
3338 (mmc->caps2 & (MMC_CAP2_HS200_1_8V_SDR | MMC_CAP2_HS400_1_8V)))
3339 host->flags |= SDHCI_SIGNALING_180;
3340
3341 if (mmc->caps2 & MMC_CAP2_HSX00_1_2V)
3342 host->flags |= SDHCI_SIGNALING_120;
3343
Pierre Ossmand129bce2006-03-24 03:18:17 -08003344 spin_lock_init(&host->lock);
3345
3346 /*
Pierre Ossman2134a922008-06-28 18:28:51 +02003347 * Maximum number of segments. Depends on if the hardware
3348 * can do scatter/gather or not.
Pierre Ossmand129bce2006-03-24 03:18:17 -08003349 */
Pierre Ossman2134a922008-06-28 18:28:51 +02003350 if (host->flags & SDHCI_USE_ADMA)
Adrian Hunter4fb213f2014-11-04 12:42:43 +02003351 mmc->max_segs = SDHCI_MAX_SEGS;
Richard Röjforsa13abc72009-09-22 16:45:30 -07003352 else if (host->flags & SDHCI_USE_SDMA)
Martin K. Petersena36274e2010-09-10 01:33:59 -04003353 mmc->max_segs = 1;
Pierre Ossman2134a922008-06-28 18:28:51 +02003354 else /* PIO */
Adrian Hunter4fb213f2014-11-04 12:42:43 +02003355 mmc->max_segs = SDHCI_MAX_SEGS;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003356
3357 /*
Adrian Hunterac005312014-12-05 19:25:28 +02003358 * Maximum number of sectors in one transfer. Limited by SDMA boundary
3359 * size (512KiB). Note some tuning modes impose a 4MiB limit, but this
3360 * is less anyway.
Pierre Ossmand129bce2006-03-24 03:18:17 -08003361 */
Pierre Ossman55db8902006-11-21 17:55:45 +01003362 mmc->max_req_size = 524288;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003363
3364 /*
3365 * Maximum segment size. Could be one segment with the maximum number
Pierre Ossman2134a922008-06-28 18:28:51 +02003366 * of bytes. When doing hardware scatter/gather, each entry cannot
3367 * be larger than 64 KiB though.
Pierre Ossmand129bce2006-03-24 03:18:17 -08003368 */
Olof Johansson30652aa2011-01-01 18:37:32 -06003369 if (host->flags & SDHCI_USE_ADMA) {
3370 if (host->quirks & SDHCI_QUIRK_BROKEN_ADMA_ZEROLEN_DESC)
3371 mmc->max_seg_size = 65535;
3372 else
3373 mmc->max_seg_size = 65536;
3374 } else {
Pierre Ossman2134a922008-06-28 18:28:51 +02003375 mmc->max_seg_size = mmc->max_req_size;
Olof Johansson30652aa2011-01-01 18:37:32 -06003376 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08003377
3378 /*
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +01003379 * Maximum block size. This varies from controller to controller and
3380 * is specified in the capabilities register.
3381 */
Anton Vorontsov0633f652009-03-17 00:14:03 +03003382 if (host->quirks & SDHCI_QUIRK_FORCE_BLK_SZ_2048) {
3383 mmc->max_blk_size = 2;
3384 } else {
Adrian Hunter28da3582016-06-29 16:24:17 +03003385 mmc->max_blk_size = (host->caps & SDHCI_MAX_BLOCK_MASK) >>
Anton Vorontsov0633f652009-03-17 00:14:03 +03003386 SDHCI_MAX_BLOCK_SHIFT;
3387 if (mmc->max_blk_size >= 3) {
Joe Perches66061102014-09-12 14:56:56 -07003388 pr_warn("%s: Invalid maximum block size, assuming 512 bytes\n",
3389 mmc_hostname(mmc));
Anton Vorontsov0633f652009-03-17 00:14:03 +03003390 mmc->max_blk_size = 0;
3391 }
3392 }
3393
3394 mmc->max_blk_size = 512 << mmc->max_blk_size;
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +01003395
3396 /*
Pierre Ossman55db8902006-11-21 17:55:45 +01003397 * Maximum block count.
3398 */
Ben Dooks1388eef2009-06-14 12:40:53 +01003399 mmc->max_blk_count = (host->quirks & SDHCI_QUIRK_NO_MULTIBLOCK) ? 1 : 65535;
Pierre Ossman55db8902006-11-21 17:55:45 +01003400
Adrian Hunter52f53362016-06-29 16:24:15 +03003401 return 0;
3402
3403unreg:
3404 if (!IS_ERR(mmc->supply.vqmmc))
3405 regulator_disable(mmc->supply.vqmmc);
3406undma:
3407 if (host->align_buffer)
3408 dma_free_coherent(mmc_dev(mmc), host->align_buffer_sz +
3409 host->adma_table_sz, host->align_buffer,
3410 host->align_addr);
3411 host->adma_table = NULL;
3412 host->align_buffer = NULL;
3413
3414 return ret;
3415}
3416EXPORT_SYMBOL_GPL(sdhci_setup_host);
3417
3418int __sdhci_add_host(struct sdhci_host *host)
3419{
3420 struct mmc_host *mmc = host->mmc;
3421 int ret;
3422
Pierre Ossman55db8902006-11-21 17:55:45 +01003423 /*
Pierre Ossmand129bce2006-03-24 03:18:17 -08003424 * Init tasklets.
3425 */
Pierre Ossmand129bce2006-03-24 03:18:17 -08003426 tasklet_init(&host->finish_tasklet,
3427 sdhci_tasklet_finish, (unsigned long)host);
3428
Al Viroe4cad1b2006-10-10 22:47:07 +01003429 setup_timer(&host->timer, sdhci_timeout_timer, (unsigned long)host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003430
Adrian Hunter250fb7b42014-12-05 19:41:10 +02003431 init_waitqueue_head(&host->buf_ready_int);
Arindam Nathb513ea22011-05-05 12:19:04 +05303432
Shawn Guo2af502c2013-07-05 14:38:55 +08003433 sdhci_init(host, 0);
3434
Russell King781e9892014-04-25 12:55:46 +01003435 ret = request_threaded_irq(host->irq, sdhci_irq, sdhci_thread_irq,
3436 IRQF_SHARED, mmc_hostname(mmc), host);
Mark Brown0fc81ee2012-07-02 14:26:15 +01003437 if (ret) {
3438 pr_err("%s: Failed to request IRQ %d: %d\n",
3439 mmc_hostname(mmc), host->irq, ret);
Pierre Ossman8ef1a142006-06-30 02:22:21 -07003440 goto untasklet;
Mark Brown0fc81ee2012-07-02 14:26:15 +01003441 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08003442
Pierre Ossmand129bce2006-03-24 03:18:17 -08003443#ifdef CONFIG_MMC_DEBUG
3444 sdhci_dumpregs(host);
3445#endif
3446
Adrian Hunter061d17a2016-04-12 14:25:09 +03003447 ret = sdhci_led_register(host);
Mark Brown0fc81ee2012-07-02 14:26:15 +01003448 if (ret) {
3449 pr_err("%s: Failed to register LED device: %d\n",
3450 mmc_hostname(mmc), ret);
Adrian Huntereb5c20d2016-04-12 14:25:08 +03003451 goto unirq;
Mark Brown0fc81ee2012-07-02 14:26:15 +01003452 }
Pierre Ossman2f730fe2008-03-17 10:29:38 +01003453
Pierre Ossman5f25a662006-10-04 02:15:39 -07003454 mmiowb();
3455
Adrian Huntereb5c20d2016-04-12 14:25:08 +03003456 ret = mmc_add_host(mmc);
3457 if (ret)
3458 goto unled;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003459
Girish K Sa3c76eb2011-10-11 11:44:09 +05303460 pr_info("%s: SDHCI controller on %s [%s] using %s\n",
Kay Sieversd1b26862008-11-08 21:37:46 +01003461 mmc_hostname(mmc), host->hw_name, dev_name(mmc_dev(mmc)),
Adrian Huntere57a5f62014-11-04 12:42:46 +02003462 (host->flags & SDHCI_USE_ADMA) ?
3463 (host->flags & SDHCI_USE_64_BIT_DMA) ? "ADMA 64-bit" : "ADMA" :
Richard Röjforsa13abc72009-09-22 16:45:30 -07003464 (host->flags & SDHCI_USE_SDMA) ? "DMA" : "PIO");
Pierre Ossmand129bce2006-03-24 03:18:17 -08003465
Anton Vorontsov7260cf52009-03-17 00:13:48 +03003466 sdhci_enable_card_detection(host);
3467
Pierre Ossmand129bce2006-03-24 03:18:17 -08003468 return 0;
3469
Adrian Huntereb5c20d2016-04-12 14:25:08 +03003470unled:
Adrian Hunter061d17a2016-04-12 14:25:09 +03003471 sdhci_led_unregister(host);
Adrian Huntereb5c20d2016-04-12 14:25:08 +03003472unirq:
Russell King03231f92014-04-25 12:57:12 +01003473 sdhci_do_reset(host, SDHCI_RESET_ALL);
Russell Kingb537f942014-04-25 12:56:01 +01003474 sdhci_writel(host, 0, SDHCI_INT_ENABLE);
3475 sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE);
Pierre Ossman2f730fe2008-03-17 10:29:38 +01003476 free_irq(host->irq, host);
Pierre Ossman8ef1a142006-06-30 02:22:21 -07003477untasklet:
Pierre Ossmand129bce2006-03-24 03:18:17 -08003478 tasklet_kill(&host->finish_tasklet);
Adrian Hunter52f53362016-06-29 16:24:15 +03003479
Adrian Huntereb5c20d2016-04-12 14:25:08 +03003480 if (!IS_ERR(mmc->supply.vqmmc))
3481 regulator_disable(mmc->supply.vqmmc);
Adrian Hunter52f53362016-06-29 16:24:15 +03003482
Adrian Huntereb5c20d2016-04-12 14:25:08 +03003483 if (host->align_buffer)
3484 dma_free_coherent(mmc_dev(mmc), host->align_buffer_sz +
3485 host->adma_table_sz, host->align_buffer,
3486 host->align_addr);
3487 host->adma_table = NULL;
3488 host->align_buffer = NULL;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003489
3490 return ret;
3491}
Adrian Hunter52f53362016-06-29 16:24:15 +03003492EXPORT_SYMBOL_GPL(__sdhci_add_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003493
Adrian Hunter52f53362016-06-29 16:24:15 +03003494int sdhci_add_host(struct sdhci_host *host)
3495{
3496 int ret;
3497
3498 ret = sdhci_setup_host(host);
3499 if (ret)
3500 return ret;
3501
3502 return __sdhci_add_host(host);
3503}
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003504EXPORT_SYMBOL_GPL(sdhci_add_host);
3505
Pierre Ossman1e728592008-04-16 19:13:13 +02003506void sdhci_remove_host(struct sdhci_host *host, int dead)
Pierre Ossmand129bce2006-03-24 03:18:17 -08003507{
Tim Kryger3a48edc2014-06-13 10:13:56 -07003508 struct mmc_host *mmc = host->mmc;
Pierre Ossman1e728592008-04-16 19:13:13 +02003509 unsigned long flags;
3510
3511 if (dead) {
3512 spin_lock_irqsave(&host->lock, flags);
3513
3514 host->flags |= SDHCI_DEVICE_DEAD;
3515
Adrian Hunter5d0d11c2016-06-29 16:24:31 +03003516 if (sdhci_has_requests(host)) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05303517 pr_err("%s: Controller removed during "
Markus Mayer4e743f12014-07-03 13:27:42 -07003518 " transfer!\n", mmc_hostname(mmc));
Adrian Hunter5d0d11c2016-06-29 16:24:31 +03003519 sdhci_error_out_mrqs(host, -ENOMEDIUM);
Pierre Ossman1e728592008-04-16 19:13:13 +02003520 }
3521
3522 spin_unlock_irqrestore(&host->lock, flags);
3523 }
3524
Anton Vorontsov7260cf52009-03-17 00:13:48 +03003525 sdhci_disable_card_detection(host);
3526
Markus Mayer4e743f12014-07-03 13:27:42 -07003527 mmc_remove_host(mmc);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003528
Adrian Hunter061d17a2016-04-12 14:25:09 +03003529 sdhci_led_unregister(host);
Pierre Ossman2f730fe2008-03-17 10:29:38 +01003530
Pierre Ossman1e728592008-04-16 19:13:13 +02003531 if (!dead)
Russell King03231f92014-04-25 12:57:12 +01003532 sdhci_do_reset(host, SDHCI_RESET_ALL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003533
Russell Kingb537f942014-04-25 12:56:01 +01003534 sdhci_writel(host, 0, SDHCI_INT_ENABLE);
3535 sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003536 free_irq(host->irq, host);
3537
3538 del_timer_sync(&host->timer);
3539
Pierre Ossmand129bce2006-03-24 03:18:17 -08003540 tasklet_kill(&host->finish_tasklet);
Pierre Ossman2134a922008-06-28 18:28:51 +02003541
Tim Kryger3a48edc2014-06-13 10:13:56 -07003542 if (!IS_ERR(mmc->supply.vqmmc))
3543 regulator_disable(mmc->supply.vqmmc);
Philip Rakity6231f3d2012-07-23 15:56:23 -07003544
Russell Kingedd63fc2016-01-26 13:39:50 +00003545 if (host->align_buffer)
Russell Kinge66e61c2016-01-26 13:39:55 +00003546 dma_free_coherent(mmc_dev(mmc), host->align_buffer_sz +
3547 host->adma_table_sz, host->align_buffer,
3548 host->align_addr);
Pierre Ossman2134a922008-06-28 18:28:51 +02003549
Adrian Hunter4efaa6f2014-11-04 12:42:39 +02003550 host->adma_table = NULL;
Pierre Ossman2134a922008-06-28 18:28:51 +02003551 host->align_buffer = NULL;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003552}
3553
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003554EXPORT_SYMBOL_GPL(sdhci_remove_host);
3555
3556void sdhci_free_host(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -08003557{
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003558 mmc_free_host(host->mmc);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003559}
3560
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003561EXPORT_SYMBOL_GPL(sdhci_free_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003562
3563/*****************************************************************************\
3564 * *
3565 * Driver init/exit *
3566 * *
3567\*****************************************************************************/
3568
3569static int __init sdhci_drv_init(void)
3570{
Girish K Sa3c76eb2011-10-11 11:44:09 +05303571 pr_info(DRIVER_NAME
Pierre Ossman52fbf9c2007-02-09 08:23:41 +01003572 ": Secure Digital Host Controller Interface driver\n");
Girish K Sa3c76eb2011-10-11 11:44:09 +05303573 pr_info(DRIVER_NAME ": Copyright(c) Pierre Ossman\n");
Pierre Ossmand129bce2006-03-24 03:18:17 -08003574
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003575 return 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003576}
3577
3578static void __exit sdhci_drv_exit(void)
3579{
Pierre Ossmand129bce2006-03-24 03:18:17 -08003580}
3581
3582module_init(sdhci_drv_init);
3583module_exit(sdhci_drv_exit);
3584
Pierre Ossmandf673b22006-06-30 02:22:31 -07003585module_param(debug_quirks, uint, 0444);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003586module_param(debug_quirks2, uint, 0444);
Pierre Ossman67435272006-06-30 02:22:31 -07003587
Pierre Ossman32710e82009-04-08 20:14:54 +02003588MODULE_AUTHOR("Pierre Ossman <pierre@ossman.eu>");
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003589MODULE_DESCRIPTION("Secure Digital Host Controller Interface core driver");
Pierre Ossmand129bce2006-03-24 03:18:17 -08003590MODULE_LICENSE("GPL");
Pierre Ossman67435272006-06-30 02:22:31 -07003591
Pierre Ossmandf673b22006-06-30 02:22:31 -07003592MODULE_PARM_DESC(debug_quirks, "Force certain quirks.");
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003593MODULE_PARM_DESC(debug_quirks2, "Force certain other quirks.");