blob: 5c2b35dd1c456347131bd51df3175df6e66ca233 [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>
Adrian Hunter5a436cc2017-03-20 19:50:31 +020017#include <linux/ktime.h>
Pierre Ossmand129bce2006-03-24 03:18:17 -080018#include <linux/highmem.h>
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +010019#include <linux/io.h>
Paul Gortmaker88b47672011-07-03 15:15:51 -040020#include <linux/module.h>
Pierre Ossmand129bce2006-03-24 03:18:17 -080021#include <linux/dma-mapping.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/slab.h>
Ralf Baechle11763602007-10-23 20:42:11 +020023#include <linux/scatterlist.h>
Marek Szyprowski9bea3c82010-08-10 18:01:59 -070024#include <linux/regulator/consumer.h>
Adrian Hunter66fd8ad2011-10-03 15:33:34 +030025#include <linux/pm_runtime.h>
Zach Brown92e0c442016-11-02 10:26:16 -050026#include <linux/of.h>
Pierre Ossmand129bce2006-03-24 03:18:17 -080027
Pierre Ossman2f730fe2008-03-17 10:29:38 +010028#include <linux/leds.h>
29
Aries Lee22113ef2010-12-15 08:14:24 +010030#include <linux/mmc/mmc.h>
Pierre Ossmand129bce2006-03-24 03:18:17 -080031#include <linux/mmc/host.h>
Aaron Lu473b0952012-07-03 17:27:49 +080032#include <linux/mmc/card.h>
Corneliu Doban85cc1c32015-02-09 16:06:29 -080033#include <linux/mmc/sdio.h>
Guennadi Liakhovetskibec9d4e2012-09-17 16:45:10 +080034#include <linux/mmc/slot-gpio.h>
Pierre Ossmand129bce2006-03-24 03:18:17 -080035
Pierre Ossmand129bce2006-03-24 03:18:17 -080036#include "sdhci.h"
37
38#define DRIVER_NAME "sdhci"
Pierre Ossmand129bce2006-03-24 03:18:17 -080039
Pierre Ossmand129bce2006-03-24 03:18:17 -080040#define DBG(f, x...) \
Russell Kingc6563172006-03-29 09:30:20 +010041 pr_debug(DRIVER_NAME " [%s()]: " f, __func__,## x)
Pierre Ossmand129bce2006-03-24 03:18:17 -080042
Arindam Nathb513ea22011-05-05 12:19:04 +053043#define MAX_TUNING_LOOP 40
44
Pierre Ossmandf673b22006-06-30 02:22:31 -070045static unsigned int debug_quirks = 0;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +030046static unsigned int debug_quirks2;
Pierre Ossman67435272006-06-30 02:22:31 -070047
Pierre Ossmand129bce2006-03-24 03:18:17 -080048static void sdhci_finish_data(struct sdhci_host *);
49
Kevin Liu52983382013-01-31 11:31:37 +080050static void sdhci_enable_preset_value(struct sdhci_host *host, bool enable);
Pierre Ossmand129bce2006-03-24 03:18:17 -080051
52static void sdhci_dumpregs(struct sdhci_host *host)
53{
Chuanxiao Donga7c53672016-06-22 14:40:01 +030054 pr_err(DRIVER_NAME ": =========== REGISTER DUMP (%s)===========\n",
55 mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -080056
Chuanxiao Donga7c53672016-06-22 14:40:01 +030057 pr_err(DRIVER_NAME ": Sys addr: 0x%08x | Version: 0x%08x\n",
58 sdhci_readl(host, SDHCI_DMA_ADDRESS),
59 sdhci_readw(host, SDHCI_HOST_VERSION));
60 pr_err(DRIVER_NAME ": Blk size: 0x%08x | Blk cnt: 0x%08x\n",
61 sdhci_readw(host, SDHCI_BLOCK_SIZE),
62 sdhci_readw(host, SDHCI_BLOCK_COUNT));
63 pr_err(DRIVER_NAME ": Argument: 0x%08x | Trn mode: 0x%08x\n",
64 sdhci_readl(host, SDHCI_ARGUMENT),
65 sdhci_readw(host, SDHCI_TRANSFER_MODE));
66 pr_err(DRIVER_NAME ": Present: 0x%08x | Host ctl: 0x%08x\n",
67 sdhci_readl(host, SDHCI_PRESENT_STATE),
68 sdhci_readb(host, SDHCI_HOST_CONTROL));
69 pr_err(DRIVER_NAME ": Power: 0x%08x | Blk gap: 0x%08x\n",
70 sdhci_readb(host, SDHCI_POWER_CONTROL),
71 sdhci_readb(host, SDHCI_BLOCK_GAP_CONTROL));
72 pr_err(DRIVER_NAME ": Wake-up: 0x%08x | Clock: 0x%08x\n",
73 sdhci_readb(host, SDHCI_WAKE_UP_CONTROL),
74 sdhci_readw(host, SDHCI_CLOCK_CONTROL));
75 pr_err(DRIVER_NAME ": Timeout: 0x%08x | Int stat: 0x%08x\n",
76 sdhci_readb(host, SDHCI_TIMEOUT_CONTROL),
77 sdhci_readl(host, SDHCI_INT_STATUS));
78 pr_err(DRIVER_NAME ": Int enab: 0x%08x | Sig enab: 0x%08x\n",
79 sdhci_readl(host, SDHCI_INT_ENABLE),
80 sdhci_readl(host, SDHCI_SIGNAL_ENABLE));
81 pr_err(DRIVER_NAME ": AC12 err: 0x%08x | Slot int: 0x%08x\n",
82 sdhci_readw(host, SDHCI_ACMD12_ERR),
83 sdhci_readw(host, SDHCI_SLOT_INT_STATUS));
84 pr_err(DRIVER_NAME ": Caps: 0x%08x | Caps_1: 0x%08x\n",
85 sdhci_readl(host, SDHCI_CAPABILITIES),
86 sdhci_readl(host, SDHCI_CAPABILITIES_1));
87 pr_err(DRIVER_NAME ": Cmd: 0x%08x | Max curr: 0x%08x\n",
88 sdhci_readw(host, SDHCI_COMMAND),
89 sdhci_readl(host, SDHCI_MAX_CURRENT));
90 pr_err(DRIVER_NAME ": Host ctl2: 0x%08x\n",
91 sdhci_readw(host, SDHCI_HOST_CONTROL2));
Pierre Ossmand129bce2006-03-24 03:18:17 -080092
Adrian Huntere57a5f62014-11-04 12:42:46 +020093 if (host->flags & SDHCI_USE_ADMA) {
94 if (host->flags & SDHCI_USE_64_BIT_DMA)
Chuanxiao Donga7c53672016-06-22 14:40:01 +030095 pr_err(DRIVER_NAME ": ADMA Err: 0x%08x | ADMA Ptr: 0x%08x%08x\n",
96 readl(host->ioaddr + SDHCI_ADMA_ERROR),
97 readl(host->ioaddr + SDHCI_ADMA_ADDRESS_HI),
98 readl(host->ioaddr + SDHCI_ADMA_ADDRESS));
Adrian Huntere57a5f62014-11-04 12:42:46 +020099 else
Chuanxiao Donga7c53672016-06-22 14:40:01 +0300100 pr_err(DRIVER_NAME ": ADMA Err: 0x%08x | ADMA Ptr: 0x%08x\n",
101 readl(host->ioaddr + SDHCI_ADMA_ERROR),
102 readl(host->ioaddr + SDHCI_ADMA_ADDRESS));
Adrian Huntere57a5f62014-11-04 12:42:46 +0200103 }
Ben Dooksbe3f4ae2009-06-08 23:33:52 +0100104
Chuanxiao Donga7c53672016-06-22 14:40:01 +0300105 pr_err(DRIVER_NAME ": ===========================================\n");
Pierre Ossmand129bce2006-03-24 03:18:17 -0800106}
107
108/*****************************************************************************\
109 * *
110 * Low level functions *
111 * *
112\*****************************************************************************/
113
Adrian Hunter56a590d2016-06-29 16:24:32 +0300114static inline bool sdhci_data_line_cmd(struct mmc_command *cmd)
115{
116 return cmd->data || cmd->flags & MMC_RSP_BUSY;
117}
118
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300119static void sdhci_set_card_detection(struct sdhci_host *host, bool enable)
120{
Russell King5b4f1f62014-04-25 12:57:02 +0100121 u32 present;
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300122
Adrian Hunterc79396c2011-12-27 15:48:42 +0200123 if ((host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION) ||
Jaehoon Chung860951c2016-06-21 10:13:26 +0900124 !mmc_card_is_removable(host->mmc))
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300125 return;
126
Russell King5b4f1f62014-04-25 12:57:02 +0100127 if (enable) {
128 present = sdhci_readl(host, SDHCI_PRESENT_STATE) &
129 SDHCI_CARD_PRESENT;
Shawn Guod25928d2011-06-21 22:41:48 +0800130
Russell King5b4f1f62014-04-25 12:57:02 +0100131 host->ier |= present ? SDHCI_INT_CARD_REMOVE :
132 SDHCI_INT_CARD_INSERT;
133 } else {
134 host->ier &= ~(SDHCI_INT_CARD_REMOVE | SDHCI_INT_CARD_INSERT);
135 }
Russell Kingb537f942014-04-25 12:56:01 +0100136
137 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
138 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300139}
140
141static void sdhci_enable_card_detection(struct sdhci_host *host)
142{
143 sdhci_set_card_detection(host, true);
144}
145
146static void sdhci_disable_card_detection(struct sdhci_host *host)
147{
148 sdhci_set_card_detection(host, false);
149}
150
Ulf Hansson02d0b682016-04-11 15:32:41 +0200151static void sdhci_runtime_pm_bus_on(struct sdhci_host *host)
152{
153 if (host->bus_on)
154 return;
155 host->bus_on = true;
156 pm_runtime_get_noresume(host->mmc->parent);
157}
158
159static void sdhci_runtime_pm_bus_off(struct sdhci_host *host)
160{
161 if (!host->bus_on)
162 return;
163 host->bus_on = false;
164 pm_runtime_put_noidle(host->mmc->parent);
165}
166
Russell King03231f92014-04-25 12:57:12 +0100167void sdhci_reset(struct sdhci_host *host, u8 mask)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800168{
Adrian Hunter5a436cc2017-03-20 19:50:31 +0200169 ktime_t timeout;
Philip Rakity393c1a32011-01-21 11:26:40 -0800170
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300171 sdhci_writeb(host, mask, SDHCI_SOFTWARE_RESET);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800172
Adrian Hunterf0710a52013-05-06 12:17:32 +0300173 if (mask & SDHCI_RESET_ALL) {
Pierre Ossmand129bce2006-03-24 03:18:17 -0800174 host->clock = 0;
Adrian Hunterf0710a52013-05-06 12:17:32 +0300175 /* Reset-all turns off SD Bus Power */
176 if (host->quirks2 & SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON)
177 sdhci_runtime_pm_bus_off(host);
178 }
Pierre Ossmand129bce2006-03-24 03:18:17 -0800179
Pierre Ossmane16514d82006-06-30 02:22:24 -0700180 /* Wait max 100 ms */
Adrian Hunter5a436cc2017-03-20 19:50:31 +0200181 timeout = ktime_add_ms(ktime_get(), 100);
Pierre Ossmane16514d82006-06-30 02:22:24 -0700182
183 /* hw clears the bit when it's done */
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300184 while (sdhci_readb(host, SDHCI_SOFTWARE_RESET) & mask) {
Adrian Hunter5a436cc2017-03-20 19:50:31 +0200185 if (ktime_after(ktime_get(), timeout)) {
Girish K Sa3c76eb2011-10-11 11:44:09 +0530186 pr_err("%s: Reset 0x%x never completed.\n",
Pierre Ossmane16514d82006-06-30 02:22:24 -0700187 mmc_hostname(host->mmc), (int)mask);
188 sdhci_dumpregs(host);
189 return;
190 }
Adrian Hunter5a436cc2017-03-20 19:50:31 +0200191 udelay(10);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800192 }
Russell King03231f92014-04-25 12:57:12 +0100193}
194EXPORT_SYMBOL_GPL(sdhci_reset);
Anton Vorontsov063a9db2009-03-17 00:14:02 +0300195
Russell King03231f92014-04-25 12:57:12 +0100196static void sdhci_do_reset(struct sdhci_host *host, u8 mask)
197{
198 if (host->quirks & SDHCI_QUIRK_NO_CARD_NO_RESET) {
Adrian Hunterd3940f22016-06-29 16:24:14 +0300199 struct mmc_host *mmc = host->mmc;
200
201 if (!mmc->ops->get_cd(mmc))
Russell King03231f92014-04-25 12:57:12 +0100202 return;
203 }
204
205 host->ops->reset(host, mask);
Philip Rakity393c1a32011-01-21 11:26:40 -0800206
Russell Kingda91a8f2014-04-25 13:00:12 +0100207 if (mask & SDHCI_RESET_ALL) {
208 if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
209 if (host->ops->enable_dma)
210 host->ops->enable_dma(host);
211 }
212
213 /* Resetting the controller clears many */
214 host->preset_enabled = false;
Shaohui Xie3abc1e802011-12-29 16:33:00 +0800215 }
Pierre Ossmand129bce2006-03-24 03:18:17 -0800216}
217
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -0800218static void sdhci_init(struct sdhci_host *host, int soft)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800219{
Adrian Hunterd3940f22016-06-29 16:24:14 +0300220 struct mmc_host *mmc = host->mmc;
221
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -0800222 if (soft)
Russell King03231f92014-04-25 12:57:12 +0100223 sdhci_do_reset(host, SDHCI_RESET_CMD|SDHCI_RESET_DATA);
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -0800224 else
Russell King03231f92014-04-25 12:57:12 +0100225 sdhci_do_reset(host, SDHCI_RESET_ALL);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800226
Russell Kingb537f942014-04-25 12:56:01 +0100227 host->ier = SDHCI_INT_BUS_POWER | SDHCI_INT_DATA_END_BIT |
228 SDHCI_INT_DATA_CRC | SDHCI_INT_DATA_TIMEOUT |
229 SDHCI_INT_INDEX | SDHCI_INT_END_BIT | SDHCI_INT_CRC |
230 SDHCI_INT_TIMEOUT | SDHCI_INT_DATA_END |
231 SDHCI_INT_RESPONSE;
232
Dong Aishengf37b20e2016-07-12 15:46:17 +0800233 if (host->tuning_mode == SDHCI_TUNING_MODE_2 ||
234 host->tuning_mode == SDHCI_TUNING_MODE_3)
235 host->ier |= SDHCI_INT_RETUNE;
236
Russell Kingb537f942014-04-25 12:56:01 +0100237 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
238 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -0800239
240 if (soft) {
241 /* force clock reconfiguration */
242 host->clock = 0;
Adrian Hunterd3940f22016-06-29 16:24:14 +0300243 mmc->ops->set_ios(mmc, &mmc->ios);
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -0800244 }
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300245}
Pierre Ossmand129bce2006-03-24 03:18:17 -0800246
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300247static void sdhci_reinit(struct sdhci_host *host)
248{
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -0800249 sdhci_init(host, 0);
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300250 sdhci_enable_card_detection(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800251}
252
Adrian Hunter061d17a2016-04-12 14:25:09 +0300253static void __sdhci_led_activate(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800254{
255 u8 ctrl;
256
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300257 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800258 ctrl |= SDHCI_CTRL_LED;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300259 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800260}
261
Adrian Hunter061d17a2016-04-12 14:25:09 +0300262static void __sdhci_led_deactivate(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800263{
264 u8 ctrl;
265
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300266 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800267 ctrl &= ~SDHCI_CTRL_LED;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300268 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800269}
270
Masahiro Yamada4f782302016-04-14 13:19:39 +0900271#if IS_REACHABLE(CONFIG_LEDS_CLASS)
Pierre Ossman2f730fe2008-03-17 10:29:38 +0100272static void sdhci_led_control(struct led_classdev *led,
Adrian Hunter061d17a2016-04-12 14:25:09 +0300273 enum led_brightness brightness)
Pierre Ossman2f730fe2008-03-17 10:29:38 +0100274{
275 struct sdhci_host *host = container_of(led, struct sdhci_host, led);
276 unsigned long flags;
277
278 spin_lock_irqsave(&host->lock, flags);
279
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300280 if (host->runtime_suspended)
281 goto out;
282
Pierre Ossman2f730fe2008-03-17 10:29:38 +0100283 if (brightness == LED_OFF)
Adrian Hunter061d17a2016-04-12 14:25:09 +0300284 __sdhci_led_deactivate(host);
Pierre Ossman2f730fe2008-03-17 10:29:38 +0100285 else
Adrian Hunter061d17a2016-04-12 14:25:09 +0300286 __sdhci_led_activate(host);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300287out:
Pierre Ossman2f730fe2008-03-17 10:29:38 +0100288 spin_unlock_irqrestore(&host->lock, flags);
289}
Adrian Hunter061d17a2016-04-12 14:25:09 +0300290
291static int sdhci_led_register(struct sdhci_host *host)
292{
293 struct mmc_host *mmc = host->mmc;
294
295 snprintf(host->led_name, sizeof(host->led_name),
296 "%s::", mmc_hostname(mmc));
297
298 host->led.name = host->led_name;
299 host->led.brightness = LED_OFF;
300 host->led.default_trigger = mmc_hostname(mmc);
301 host->led.brightness_set = sdhci_led_control;
302
303 return led_classdev_register(mmc_dev(mmc), &host->led);
304}
305
306static void sdhci_led_unregister(struct sdhci_host *host)
307{
308 led_classdev_unregister(&host->led);
309}
310
311static inline void sdhci_led_activate(struct sdhci_host *host)
312{
313}
314
315static inline void sdhci_led_deactivate(struct sdhci_host *host)
316{
317}
318
319#else
320
321static inline int sdhci_led_register(struct sdhci_host *host)
322{
323 return 0;
324}
325
326static inline void sdhci_led_unregister(struct sdhci_host *host)
327{
328}
329
330static inline void sdhci_led_activate(struct sdhci_host *host)
331{
332 __sdhci_led_activate(host);
333}
334
335static inline void sdhci_led_deactivate(struct sdhci_host *host)
336{
337 __sdhci_led_deactivate(host);
338}
339
Pierre Ossman2f730fe2008-03-17 10:29:38 +0100340#endif
341
Pierre Ossmand129bce2006-03-24 03:18:17 -0800342/*****************************************************************************\
343 * *
344 * Core functions *
345 * *
346\*****************************************************************************/
347
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100348static void sdhci_read_block_pio(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800349{
Pierre Ossman76591502008-07-21 00:32:11 +0200350 unsigned long flags;
351 size_t blksize, len, chunk;
Steven Noonan7244b852008-10-01 01:50:25 -0700352 u32 uninitialized_var(scratch);
Pierre Ossman76591502008-07-21 00:32:11 +0200353 u8 *buf;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800354
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100355 DBG("PIO reading\n");
Pierre Ossmand129bce2006-03-24 03:18:17 -0800356
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100357 blksize = host->data->blksz;
Pierre Ossman76591502008-07-21 00:32:11 +0200358 chunk = 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800359
Pierre Ossman76591502008-07-21 00:32:11 +0200360 local_irq_save(flags);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800361
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100362 while (blksize) {
Fabio Estevambf3a35a2015-05-09 18:44:51 -0300363 BUG_ON(!sg_miter_next(&host->sg_miter));
Pierre Ossmand129bce2006-03-24 03:18:17 -0800364
Pierre Ossman76591502008-07-21 00:32:11 +0200365 len = min(host->sg_miter.length, blksize);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800366
Pierre Ossman76591502008-07-21 00:32:11 +0200367 blksize -= len;
368 host->sg_miter.consumed = len;
Alex Dubov14d836e2007-04-13 19:04:38 +0200369
Pierre Ossman76591502008-07-21 00:32:11 +0200370 buf = host->sg_miter.addr;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800371
Pierre Ossman76591502008-07-21 00:32:11 +0200372 while (len) {
373 if (chunk == 0) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300374 scratch = sdhci_readl(host, SDHCI_BUFFER);
Pierre Ossman76591502008-07-21 00:32:11 +0200375 chunk = 4;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800376 }
Pierre Ossman76591502008-07-21 00:32:11 +0200377
378 *buf = scratch & 0xFF;
379
380 buf++;
381 scratch >>= 8;
382 chunk--;
383 len--;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800384 }
385 }
Pierre Ossman76591502008-07-21 00:32:11 +0200386
387 sg_miter_stop(&host->sg_miter);
388
389 local_irq_restore(flags);
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100390}
Pierre Ossmand129bce2006-03-24 03:18:17 -0800391
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100392static void sdhci_write_block_pio(struct sdhci_host *host)
393{
Pierre Ossman76591502008-07-21 00:32:11 +0200394 unsigned long flags;
395 size_t blksize, len, chunk;
396 u32 scratch;
397 u8 *buf;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100398
399 DBG("PIO writing\n");
400
401 blksize = host->data->blksz;
Pierre Ossman76591502008-07-21 00:32:11 +0200402 chunk = 0;
403 scratch = 0;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100404
Pierre Ossman76591502008-07-21 00:32:11 +0200405 local_irq_save(flags);
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100406
407 while (blksize) {
Fabio Estevambf3a35a2015-05-09 18:44:51 -0300408 BUG_ON(!sg_miter_next(&host->sg_miter));
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100409
Pierre Ossman76591502008-07-21 00:32:11 +0200410 len = min(host->sg_miter.length, blksize);
Alex Dubov14d836e2007-04-13 19:04:38 +0200411
Pierre Ossman76591502008-07-21 00:32:11 +0200412 blksize -= len;
413 host->sg_miter.consumed = len;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100414
Pierre Ossman76591502008-07-21 00:32:11 +0200415 buf = host->sg_miter.addr;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100416
Pierre Ossman76591502008-07-21 00:32:11 +0200417 while (len) {
418 scratch |= (u32)*buf << (chunk * 8);
419
420 buf++;
421 chunk++;
422 len--;
423
424 if ((chunk == 4) || ((len == 0) && (blksize == 0))) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300425 sdhci_writel(host, scratch, SDHCI_BUFFER);
Pierre Ossman76591502008-07-21 00:32:11 +0200426 chunk = 0;
427 scratch = 0;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100428 }
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100429 }
430 }
Pierre Ossman76591502008-07-21 00:32:11 +0200431
432 sg_miter_stop(&host->sg_miter);
433
434 local_irq_restore(flags);
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100435}
436
437static void sdhci_transfer_pio(struct sdhci_host *host)
438{
439 u32 mask;
440
Pierre Ossman76591502008-07-21 00:32:11 +0200441 if (host->blocks == 0)
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100442 return;
443
444 if (host->data->flags & MMC_DATA_READ)
445 mask = SDHCI_DATA_AVAILABLE;
446 else
447 mask = SDHCI_SPACE_AVAILABLE;
448
Pierre Ossman4a3cba32008-07-29 00:11:16 +0200449 /*
450 * Some controllers (JMicron JMB38x) mess up the buffer bits
451 * for transfers < 4 bytes. As long as it is just one block,
452 * we can ignore the bits.
453 */
454 if ((host->quirks & SDHCI_QUIRK_BROKEN_SMALL_PIO) &&
455 (host->data->blocks == 1))
456 mask = ~0;
457
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300458 while (sdhci_readl(host, SDHCI_PRESENT_STATE) & mask) {
Anton Vorontsov3e3bf202009-03-17 00:14:00 +0300459 if (host->quirks & SDHCI_QUIRK_PIO_NEEDS_DELAY)
460 udelay(100);
461
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100462 if (host->data->flags & MMC_DATA_READ)
463 sdhci_read_block_pio(host);
464 else
465 sdhci_write_block_pio(host);
466
Pierre Ossman76591502008-07-21 00:32:11 +0200467 host->blocks--;
468 if (host->blocks == 0)
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100469 break;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100470 }
471
472 DBG("PIO transfer complete.\n");
Pierre Ossmand129bce2006-03-24 03:18:17 -0800473}
474
Russell King48857d92016-01-26 13:40:16 +0000475static int sdhci_pre_dma_transfer(struct sdhci_host *host,
Russell Kingc0999b72016-01-26 13:40:27 +0000476 struct mmc_data *data, int cookie)
Russell King48857d92016-01-26 13:40:16 +0000477{
478 int sg_count;
479
Russell King94538e52016-01-26 13:40:37 +0000480 /*
481 * If the data buffers are already mapped, return the previous
482 * dma_map_sg() result.
483 */
484 if (data->host_cookie == COOKIE_PRE_MAPPED)
Russell King48857d92016-01-26 13:40:16 +0000485 return data->sg_count;
Russell King48857d92016-01-26 13:40:16 +0000486
487 sg_count = dma_map_sg(mmc_dev(host->mmc), data->sg, data->sg_len,
488 data->flags & MMC_DATA_WRITE ?
489 DMA_TO_DEVICE : DMA_FROM_DEVICE);
490
491 if (sg_count == 0)
492 return -ENOSPC;
493
494 data->sg_count = sg_count;
Russell Kingc0999b72016-01-26 13:40:27 +0000495 data->host_cookie = cookie;
Russell King48857d92016-01-26 13:40:16 +0000496
497 return sg_count;
498}
499
Pierre Ossman2134a922008-06-28 18:28:51 +0200500static char *sdhci_kmap_atomic(struct scatterlist *sg, unsigned long *flags)
501{
502 local_irq_save(*flags);
Cong Wang482fce92011-11-27 13:27:00 +0800503 return kmap_atomic(sg_page(sg)) + sg->offset;
Pierre Ossman2134a922008-06-28 18:28:51 +0200504}
505
506static void sdhci_kunmap_atomic(void *buffer, unsigned long *flags)
507{
Cong Wang482fce92011-11-27 13:27:00 +0800508 kunmap_atomic(buffer);
Pierre Ossman2134a922008-06-28 18:28:51 +0200509 local_irq_restore(*flags);
510}
511
Adrian Huntere57a5f62014-11-04 12:42:46 +0200512static void sdhci_adma_write_desc(struct sdhci_host *host, void *desc,
513 dma_addr_t addr, int len, unsigned cmd)
Ben Dooks118cd172010-03-05 13:43:26 -0800514{
Adrian Huntere57a5f62014-11-04 12:42:46 +0200515 struct sdhci_adma2_64_desc *dma_desc = desc;
Ben Dooks118cd172010-03-05 13:43:26 -0800516
Adrian Huntere57a5f62014-11-04 12:42:46 +0200517 /* 32-bit and 64-bit descriptors have these members in same position */
Adrian Hunter05452302014-11-04 12:42:45 +0200518 dma_desc->cmd = cpu_to_le16(cmd);
519 dma_desc->len = cpu_to_le16(len);
Adrian Huntere57a5f62014-11-04 12:42:46 +0200520 dma_desc->addr_lo = cpu_to_le32((u32)addr);
521
522 if (host->flags & SDHCI_USE_64_BIT_DMA)
523 dma_desc->addr_hi = cpu_to_le32((u64)addr >> 32);
Ben Dooks118cd172010-03-05 13:43:26 -0800524}
525
Adrian Hunterb5ffa672014-11-04 12:42:40 +0200526static void sdhci_adma_mark_end(void *desc)
527{
Adrian Huntere57a5f62014-11-04 12:42:46 +0200528 struct sdhci_adma2_64_desc *dma_desc = desc;
Adrian Hunterb5ffa672014-11-04 12:42:40 +0200529
Adrian Huntere57a5f62014-11-04 12:42:46 +0200530 /* 32-bit and 64-bit descriptors have 'cmd' in same position */
Adrian Hunter05452302014-11-04 12:42:45 +0200531 dma_desc->cmd |= cpu_to_le16(ADMA2_END);
Adrian Hunterb5ffa672014-11-04 12:42:40 +0200532}
533
Russell King60c64762016-01-26 13:40:22 +0000534static void sdhci_adma_table_pre(struct sdhci_host *host,
535 struct mmc_data *data, int sg_count)
Pierre Ossman2134a922008-06-28 18:28:51 +0200536{
Pierre Ossman2134a922008-06-28 18:28:51 +0200537 struct scatterlist *sg;
Pierre Ossman2134a922008-06-28 18:28:51 +0200538 unsigned long flags;
Russell Kingacc3ad12016-01-26 13:40:00 +0000539 dma_addr_t addr, align_addr;
540 void *desc, *align;
541 char *buffer;
542 int len, offset, i;
Pierre Ossman2134a922008-06-28 18:28:51 +0200543
544 /*
545 * The spec does not specify endianness of descriptor table.
546 * We currently guess that it is LE.
547 */
548
Russell King60c64762016-01-26 13:40:22 +0000549 host->sg_count = sg_count;
Pierre Ossman2134a922008-06-28 18:28:51 +0200550
Adrian Hunter4efaa6f2014-11-04 12:42:39 +0200551 desc = host->adma_table;
Pierre Ossman2134a922008-06-28 18:28:51 +0200552 align = host->align_buffer;
553
554 align_addr = host->align_addr;
555
556 for_each_sg(data->sg, sg, host->sg_count, i) {
557 addr = sg_dma_address(sg);
558 len = sg_dma_len(sg);
559
560 /*
Russell Kingacc3ad12016-01-26 13:40:00 +0000561 * The SDHCI specification states that ADMA addresses must
562 * be 32-bit aligned. If they aren't, then we use a bounce
563 * buffer for the (up to three) bytes that screw up the
Pierre Ossman2134a922008-06-28 18:28:51 +0200564 * alignment.
565 */
Adrian Hunter04a5ae62015-11-26 14:00:49 +0200566 offset = (SDHCI_ADMA2_ALIGN - (addr & SDHCI_ADMA2_MASK)) &
567 SDHCI_ADMA2_MASK;
Pierre Ossman2134a922008-06-28 18:28:51 +0200568 if (offset) {
569 if (data->flags & MMC_DATA_WRITE) {
570 buffer = sdhci_kmap_atomic(sg, &flags);
571 memcpy(align, buffer, offset);
572 sdhci_kunmap_atomic(buffer, &flags);
573 }
574
Ben Dooks118cd172010-03-05 13:43:26 -0800575 /* tran, valid */
Adrian Huntere57a5f62014-11-04 12:42:46 +0200576 sdhci_adma_write_desc(host, desc, align_addr, offset,
Adrian Hunter739d46d2014-11-04 12:42:44 +0200577 ADMA2_TRAN_VALID);
Pierre Ossman2134a922008-06-28 18:28:51 +0200578
579 BUG_ON(offset > 65536);
580
Adrian Hunter04a5ae62015-11-26 14:00:49 +0200581 align += SDHCI_ADMA2_ALIGN;
582 align_addr += SDHCI_ADMA2_ALIGN;
Pierre Ossman2134a922008-06-28 18:28:51 +0200583
Adrian Hunter76fe3792014-11-04 12:42:42 +0200584 desc += host->desc_sz;
Pierre Ossman2134a922008-06-28 18:28:51 +0200585
586 addr += offset;
587 len -= offset;
588 }
589
Pierre Ossman2134a922008-06-28 18:28:51 +0200590 BUG_ON(len > 65536);
591
Adrian Hunter347ea322015-11-26 14:00:48 +0200592 if (len) {
593 /* tran, valid */
594 sdhci_adma_write_desc(host, desc, addr, len,
595 ADMA2_TRAN_VALID);
596 desc += host->desc_sz;
597 }
Pierre Ossman2134a922008-06-28 18:28:51 +0200598
599 /*
600 * If this triggers then we have a calculation bug
601 * somewhere. :/
602 */
Adrian Hunter76fe3792014-11-04 12:42:42 +0200603 WARN_ON((desc - host->adma_table) >= host->adma_table_sz);
Pierre Ossman2134a922008-06-28 18:28:51 +0200604 }
605
Thomas Abraham70764a92010-05-26 14:42:04 -0700606 if (host->quirks & SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC) {
Russell Kingacc3ad12016-01-26 13:40:00 +0000607 /* Mark the last descriptor as the terminating descriptor */
Adrian Hunter4efaa6f2014-11-04 12:42:39 +0200608 if (desc != host->adma_table) {
Adrian Hunter76fe3792014-11-04 12:42:42 +0200609 desc -= host->desc_sz;
Adrian Hunterb5ffa672014-11-04 12:42:40 +0200610 sdhci_adma_mark_end(desc);
Thomas Abraham70764a92010-05-26 14:42:04 -0700611 }
612 } else {
Russell Kingacc3ad12016-01-26 13:40:00 +0000613 /* Add a terminating entry - nop, end, valid */
Adrian Huntere57a5f62014-11-04 12:42:46 +0200614 sdhci_adma_write_desc(host, desc, 0, 0, ADMA2_NOP_END_VALID);
Thomas Abraham70764a92010-05-26 14:42:04 -0700615 }
Pierre Ossman2134a922008-06-28 18:28:51 +0200616}
617
618static void sdhci_adma_table_post(struct sdhci_host *host,
619 struct mmc_data *data)
620{
Pierre Ossman2134a922008-06-28 18:28:51 +0200621 struct scatterlist *sg;
622 int i, size;
Adrian Hunter1c3d5f62014-11-04 12:42:41 +0200623 void *align;
Pierre Ossman2134a922008-06-28 18:28:51 +0200624 char *buffer;
625 unsigned long flags;
626
Russell King47fa9612016-01-26 13:40:06 +0000627 if (data->flags & MMC_DATA_READ) {
628 bool has_unaligned = false;
Russell Kingde0b65a2014-04-25 12:58:29 +0100629
Russell King47fa9612016-01-26 13:40:06 +0000630 /* Do a quick scan of the SG list for any unaligned mappings */
631 for_each_sg(data->sg, sg, host->sg_count, i)
Adrian Hunter04a5ae62015-11-26 14:00:49 +0200632 if (sg_dma_address(sg) & SDHCI_ADMA2_MASK) {
Russell King47fa9612016-01-26 13:40:06 +0000633 has_unaligned = true;
634 break;
635 }
Pierre Ossman2134a922008-06-28 18:28:51 +0200636
Russell King47fa9612016-01-26 13:40:06 +0000637 if (has_unaligned) {
638 dma_sync_sg_for_cpu(mmc_dev(host->mmc), data->sg,
Russell Kingf55c98f2016-01-26 13:40:11 +0000639 data->sg_len, DMA_FROM_DEVICE);
Pierre Ossman2134a922008-06-28 18:28:51 +0200640
Russell King47fa9612016-01-26 13:40:06 +0000641 align = host->align_buffer;
642
643 for_each_sg(data->sg, sg, host->sg_count, i) {
644 if (sg_dma_address(sg) & SDHCI_ADMA2_MASK) {
645 size = SDHCI_ADMA2_ALIGN -
646 (sg_dma_address(sg) & SDHCI_ADMA2_MASK);
647
648 buffer = sdhci_kmap_atomic(sg, &flags);
649 memcpy(buffer, align, size);
650 sdhci_kunmap_atomic(buffer, &flags);
651
652 align += SDHCI_ADMA2_ALIGN;
653 }
Pierre Ossman2134a922008-06-28 18:28:51 +0200654 }
655 }
656 }
Pierre Ossman2134a922008-06-28 18:28:51 +0200657}
658
Andrei Warkentina3c77782011-04-11 16:13:42 -0500659static u8 sdhci_calc_timeout(struct sdhci_host *host, struct mmc_command *cmd)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800660{
Pierre Ossman1c8cde92006-06-30 02:22:25 -0700661 u8 count;
Andrei Warkentina3c77782011-04-11 16:13:42 -0500662 struct mmc_data *data = cmd->data;
Pierre Ossman1c8cde92006-06-30 02:22:25 -0700663 unsigned target_timeout, current_timeout;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800664
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200665 /*
666 * If the host controller provides us with an incorrect timeout
667 * value, just skip the check and use 0xE. The hardware may take
668 * longer to time out, but that's much better than having a too-short
669 * timeout value.
670 */
Pierre Ossman11a2f1b2009-06-21 20:59:33 +0200671 if (host->quirks & SDHCI_QUIRK_BROKEN_TIMEOUT_VAL)
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200672 return 0xE;
Pierre Ossmane538fbe2007-08-12 16:46:32 +0200673
Andrei Warkentina3c77782011-04-11 16:13:42 -0500674 /* Unspecified timeout, assume max */
Ulf Hansson1d4d7742014-01-08 15:06:08 +0100675 if (!data && !cmd->busy_timeout)
Andrei Warkentina3c77782011-04-11 16:13:42 -0500676 return 0xE;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800677
Andrei Warkentina3c77782011-04-11 16:13:42 -0500678 /* timeout in us */
679 if (!data)
Ulf Hansson1d4d7742014-01-08 15:06:08 +0100680 target_timeout = cmd->busy_timeout * 1000;
Andy Shevchenko78a2ca22011-08-03 18:35:59 +0300681 else {
Russell Kingfafcfda2016-01-26 13:40:58 +0000682 target_timeout = DIV_ROUND_UP(data->timeout_ns, 1000);
Russell King7f055382016-01-26 13:41:04 +0000683 if (host->clock && data->timeout_clks) {
684 unsigned long long val;
685
686 /*
687 * data->timeout_clks is in units of clock cycles.
688 * host->clock is in Hz. target_timeout is in us.
689 * Hence, us = 1000000 * cycles / Hz. Round up.
690 */
Haibo Chen02265cd62016-10-17 10:18:37 +0200691 val = 1000000ULL * data->timeout_clks;
Russell King7f055382016-01-26 13:41:04 +0000692 if (do_div(val, host->clock))
693 target_timeout++;
694 target_timeout += val;
695 }
Andy Shevchenko78a2ca22011-08-03 18:35:59 +0300696 }
Anton Vorontsov81b39802009-09-22 16:45:13 -0700697
Pierre Ossman1c8cde92006-06-30 02:22:25 -0700698 /*
699 * Figure out needed cycles.
700 * We do this in steps in order to fit inside a 32 bit int.
701 * The first step is the minimum timeout, which will have a
702 * minimum resolution of 6 bits:
703 * (1) 2^13*1000 > 2^22,
704 * (2) host->timeout_clk < 2^16
705 * =>
706 * (1) / (2) > 2^6
707 */
708 count = 0;
709 current_timeout = (1 << 13) * 1000 / host->timeout_clk;
710 while (current_timeout < target_timeout) {
711 count++;
712 current_timeout <<= 1;
713 if (count >= 0xF)
714 break;
715 }
716
717 if (count >= 0xF) {
Chris Ball09eeff52012-06-01 10:39:45 -0400718 DBG("%s: Too large timeout 0x%x requested for CMD%d!\n",
719 mmc_hostname(host->mmc), count, cmd->opcode);
Pierre Ossman1c8cde92006-06-30 02:22:25 -0700720 count = 0xE;
721 }
722
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200723 return count;
724}
725
Anton Vorontsov6aa943a2009-03-17 00:13:50 +0300726static void sdhci_set_transfer_irqs(struct sdhci_host *host)
727{
728 u32 pio_irqs = SDHCI_INT_DATA_AVAIL | SDHCI_INT_SPACE_AVAIL;
729 u32 dma_irqs = SDHCI_INT_DMA_END | SDHCI_INT_ADMA_ERROR;
730
731 if (host->flags & SDHCI_REQ_USE_DMA)
Russell Kingb537f942014-04-25 12:56:01 +0100732 host->ier = (host->ier & ~pio_irqs) | dma_irqs;
Anton Vorontsov6aa943a2009-03-17 00:13:50 +0300733 else
Russell Kingb537f942014-04-25 12:56:01 +0100734 host->ier = (host->ier & ~dma_irqs) | pio_irqs;
735
736 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
737 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Anton Vorontsov6aa943a2009-03-17 00:13:50 +0300738}
739
Aisheng Dongb45e6682014-08-27 15:26:29 +0800740static void sdhci_set_timeout(struct sdhci_host *host, struct mmc_command *cmd)
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200741{
742 u8 count;
Aisheng Dongb45e6682014-08-27 15:26:29 +0800743
744 if (host->ops->set_timeout) {
745 host->ops->set_timeout(host, cmd);
746 } else {
747 count = sdhci_calc_timeout(host, cmd);
748 sdhci_writeb(host, count, SDHCI_TIMEOUT_CONTROL);
749 }
750}
751
752static void sdhci_prepare_data(struct sdhci_host *host, struct mmc_command *cmd)
753{
Pierre Ossman2134a922008-06-28 18:28:51 +0200754 u8 ctrl;
Andrei Warkentina3c77782011-04-11 16:13:42 -0500755 struct mmc_data *data = cmd->data;
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200756
Adrian Hunter56a590d2016-06-29 16:24:32 +0300757 if (sdhci_data_line_cmd(cmd))
Aisheng Dongb45e6682014-08-27 15:26:29 +0800758 sdhci_set_timeout(host, cmd);
Andrei Warkentina3c77782011-04-11 16:13:42 -0500759
760 if (!data)
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200761 return;
762
Adrian Hunter43dea092016-06-29 16:24:26 +0300763 WARN_ON(host->data);
764
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200765 /* Sanity checks */
766 BUG_ON(data->blksz * data->blocks > 524288);
767 BUG_ON(data->blksz > host->mmc->max_blk_size);
768 BUG_ON(data->blocks > 65535);
769
770 host->data = data;
771 host->data_early = 0;
Mikko Vinnif6a03cb2011-04-12 09:36:18 -0400772 host->data->bytes_xfered = 0;
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200773
Russell Kingfce14422016-01-26 13:41:20 +0000774 if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
Pierre Ossman2134a922008-06-28 18:28:51 +0200775 struct scatterlist *sg;
Russell Kingdf953922016-01-26 13:41:14 +0000776 unsigned int length_mask, offset_mask;
Russell Kinga0eaf0f2016-01-26 13:41:09 +0000777 int i;
Pierre Ossman2134a922008-06-28 18:28:51 +0200778
Russell Kingfce14422016-01-26 13:41:20 +0000779 host->flags |= SDHCI_REQ_USE_DMA;
780
781 /*
782 * FIXME: This doesn't account for merging when mapping the
783 * scatterlist.
784 *
785 * The assumption here being that alignment and lengths are
786 * the same after DMA mapping to device address space.
787 */
Russell Kinga0eaf0f2016-01-26 13:41:09 +0000788 length_mask = 0;
Russell Kingdf953922016-01-26 13:41:14 +0000789 offset_mask = 0;
Pierre Ossman2134a922008-06-28 18:28:51 +0200790 if (host->flags & SDHCI_USE_ADMA) {
Russell Kingdf953922016-01-26 13:41:14 +0000791 if (host->quirks & SDHCI_QUIRK_32BIT_ADMA_SIZE) {
Russell Kinga0eaf0f2016-01-26 13:41:09 +0000792 length_mask = 3;
Russell Kingdf953922016-01-26 13:41:14 +0000793 /*
794 * As we use up to 3 byte chunks to work
795 * around alignment problems, we need to
796 * check the offset as well.
797 */
798 offset_mask = 3;
799 }
Pierre Ossman2134a922008-06-28 18:28:51 +0200800 } else {
801 if (host->quirks & SDHCI_QUIRK_32BIT_DMA_SIZE)
Russell Kinga0eaf0f2016-01-26 13:41:09 +0000802 length_mask = 3;
Russell Kingdf953922016-01-26 13:41:14 +0000803 if (host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR)
804 offset_mask = 3;
Pierre Ossman2134a922008-06-28 18:28:51 +0200805 }
806
Russell Kingdf953922016-01-26 13:41:14 +0000807 if (unlikely(length_mask | offset_mask)) {
Pierre Ossman2134a922008-06-28 18:28:51 +0200808 for_each_sg(data->sg, sg, data->sg_len, i) {
Russell Kinga0eaf0f2016-01-26 13:41:09 +0000809 if (sg->length & length_mask) {
Marek Vasut2e4456f2015-11-18 10:47:02 +0100810 DBG("Reverting to PIO because of transfer size (%d)\n",
Russell Kinga0eaf0f2016-01-26 13:41:09 +0000811 sg->length);
Pierre Ossman2134a922008-06-28 18:28:51 +0200812 host->flags &= ~SDHCI_REQ_USE_DMA;
813 break;
814 }
Russell Kinga0eaf0f2016-01-26 13:41:09 +0000815 if (sg->offset & offset_mask) {
Marek Vasut2e4456f2015-11-18 10:47:02 +0100816 DBG("Reverting to PIO because of bad alignment\n");
Pierre Ossman2134a922008-06-28 18:28:51 +0200817 host->flags &= ~SDHCI_REQ_USE_DMA;
818 break;
819 }
820 }
821 }
822 }
823
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200824 if (host->flags & SDHCI_REQ_USE_DMA) {
Russell Kingc0999b72016-01-26 13:40:27 +0000825 int sg_cnt = sdhci_pre_dma_transfer(host, data, COOKIE_MAPPED);
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200826
Russell King60c64762016-01-26 13:40:22 +0000827 if (sg_cnt <= 0) {
828 /*
829 * This only happens when someone fed
830 * us an invalid request.
831 */
832 WARN_ON(1);
833 host->flags &= ~SDHCI_REQ_USE_DMA;
834 } else if (host->flags & SDHCI_USE_ADMA) {
835 sdhci_adma_table_pre(host, data, sg_cnt);
836
837 sdhci_writel(host, host->adma_addr, SDHCI_ADMA_ADDRESS);
838 if (host->flags & SDHCI_USE_64_BIT_DMA)
839 sdhci_writel(host,
840 (u64)host->adma_addr >> 32,
841 SDHCI_ADMA_ADDRESS_HI);
842 } else {
843 WARN_ON(sg_cnt != 1);
844 sdhci_writel(host, sg_dma_address(data->sg),
845 SDHCI_DMA_ADDRESS);
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200846 }
847 }
848
Pierre Ossman2134a922008-06-28 18:28:51 +0200849 /*
850 * Always adjust the DMA selection as some controllers
851 * (e.g. JMicron) can't do PIO properly when the selection
852 * is ADMA.
853 */
854 if (host->version >= SDHCI_SPEC_200) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300855 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
Pierre Ossman2134a922008-06-28 18:28:51 +0200856 ctrl &= ~SDHCI_CTRL_DMA_MASK;
857 if ((host->flags & SDHCI_REQ_USE_DMA) &&
Adrian Huntere57a5f62014-11-04 12:42:46 +0200858 (host->flags & SDHCI_USE_ADMA)) {
859 if (host->flags & SDHCI_USE_64_BIT_DMA)
860 ctrl |= SDHCI_CTRL_ADMA64;
861 else
862 ctrl |= SDHCI_CTRL_ADMA32;
863 } else {
Pierre Ossman2134a922008-06-28 18:28:51 +0200864 ctrl |= SDHCI_CTRL_SDMA;
Adrian Huntere57a5f62014-11-04 12:42:46 +0200865 }
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300866 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Pierre Ossmanc9fddbc2007-12-02 19:52:11 +0100867 }
868
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200869 if (!(host->flags & SDHCI_REQ_USE_DMA)) {
Sebastian Andrzej Siewiorda60a912009-06-18 09:33:32 +0200870 int flags;
871
872 flags = SG_MITER_ATOMIC;
873 if (host->data->flags & MMC_DATA_READ)
874 flags |= SG_MITER_TO_SG;
875 else
876 flags |= SG_MITER_FROM_SG;
877 sg_miter_start(&host->sg_miter, data->sg, data->sg_len, flags);
Pierre Ossman76591502008-07-21 00:32:11 +0200878 host->blocks = data->blocks;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800879 }
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700880
Anton Vorontsov6aa943a2009-03-17 00:13:50 +0300881 sdhci_set_transfer_irqs(host);
882
Mikko Vinnif6a03cb2011-04-12 09:36:18 -0400883 /* Set the DMA boundary value and block size */
884 sdhci_writew(host, SDHCI_MAKE_BLKSZ(SDHCI_DEFAULT_BOUNDARY_ARG,
885 data->blksz), SDHCI_BLOCK_SIZE);
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300886 sdhci_writew(host, data->blocks, SDHCI_BLOCK_COUNT);
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700887}
888
Adrian Hunter0293d502016-06-29 16:24:35 +0300889static inline bool sdhci_auto_cmd12(struct sdhci_host *host,
890 struct mmc_request *mrq)
891{
Adrian Hunter20845be2016-08-16 13:44:13 +0300892 return !mrq->sbc && (host->flags & SDHCI_AUTO_CMD12) &&
893 !mrq->cap_cmd_during_tfr;
Adrian Hunter0293d502016-06-29 16:24:35 +0300894}
895
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700896static void sdhci_set_transfer_mode(struct sdhci_host *host,
Andrei Warkentine89d4562011-05-23 15:06:37 -0500897 struct mmc_command *cmd)
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700898{
Vincent Yangd3fc5d72015-01-20 16:05:17 +0800899 u16 mode = 0;
Andrei Warkentine89d4562011-05-23 15:06:37 -0500900 struct mmc_data *data = cmd->data;
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700901
Dong Aisheng2b558c12013-10-30 22:09:48 +0800902 if (data == NULL) {
Vincent Wan9b8ffea2014-11-05 14:09:00 +0800903 if (host->quirks2 &
904 SDHCI_QUIRK2_CLEAR_TRANSFERMODE_REG_BEFORE_CMD) {
905 sdhci_writew(host, 0x0, SDHCI_TRANSFER_MODE);
906 } else {
Dong Aisheng2b558c12013-10-30 22:09:48 +0800907 /* clear Auto CMD settings for no data CMDs */
Vincent Wan9b8ffea2014-11-05 14:09:00 +0800908 mode = sdhci_readw(host, SDHCI_TRANSFER_MODE);
909 sdhci_writew(host, mode & ~(SDHCI_TRNS_AUTO_CMD12 |
Dong Aisheng2b558c12013-10-30 22:09:48 +0800910 SDHCI_TRNS_AUTO_CMD23), SDHCI_TRANSFER_MODE);
Vincent Wan9b8ffea2014-11-05 14:09:00 +0800911 }
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700912 return;
Dong Aisheng2b558c12013-10-30 22:09:48 +0800913 }
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700914
Pierre Ossmane538fbe2007-08-12 16:46:32 +0200915 WARN_ON(!host->data);
916
Vincent Yangd3fc5d72015-01-20 16:05:17 +0800917 if (!(host->quirks2 & SDHCI_QUIRK2_SUPPORT_SINGLE))
918 mode = SDHCI_TRNS_BLK_CNT_EN;
919
Andrei Warkentine89d4562011-05-23 15:06:37 -0500920 if (mmc_op_multi(cmd->opcode) || data->blocks > 1) {
Vincent Yangd3fc5d72015-01-20 16:05:17 +0800921 mode = SDHCI_TRNS_BLK_CNT_EN | SDHCI_TRNS_MULTI;
Andrei Warkentine89d4562011-05-23 15:06:37 -0500922 /*
923 * If we are sending CMD23, CMD12 never gets sent
924 * on successful completion (so no Auto-CMD12).
925 */
Adrian Hunter0293d502016-06-29 16:24:35 +0300926 if (sdhci_auto_cmd12(host, cmd->mrq) &&
Corneliu Doban85cc1c32015-02-09 16:06:29 -0800927 (cmd->opcode != SD_IO_RW_EXTENDED))
Andrei Warkentine89d4562011-05-23 15:06:37 -0500928 mode |= SDHCI_TRNS_AUTO_CMD12;
Adrian Huntera4c73ab2016-06-29 16:24:25 +0300929 else if (cmd->mrq->sbc && (host->flags & SDHCI_AUTO_CMD23)) {
Andrei Warkentin8edf63712011-05-23 15:06:39 -0500930 mode |= SDHCI_TRNS_AUTO_CMD23;
Adrian Huntera4c73ab2016-06-29 16:24:25 +0300931 sdhci_writel(host, cmd->mrq->sbc->arg, SDHCI_ARGUMENT2);
Andrei Warkentin8edf63712011-05-23 15:06:39 -0500932 }
Jerry Huangc4512f72010-08-10 18:01:59 -0700933 }
Andrei Warkentin8edf63712011-05-23 15:06:39 -0500934
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700935 if (data->flags & MMC_DATA_READ)
936 mode |= SDHCI_TRNS_READ;
Pierre Ossmanc9fddbc2007-12-02 19:52:11 +0100937 if (host->flags & SDHCI_REQ_USE_DMA)
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700938 mode |= SDHCI_TRNS_DMA;
939
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300940 sdhci_writew(host, mode, SDHCI_TRANSFER_MODE);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800941}
942
Adrian Hunter0cc563c2016-06-29 16:24:28 +0300943static bool sdhci_needs_reset(struct sdhci_host *host, struct mmc_request *mrq)
944{
945 return (!(host->flags & SDHCI_DEVICE_DEAD) &&
946 ((mrq->cmd && mrq->cmd->error) ||
947 (mrq->sbc && mrq->sbc->error) ||
948 (mrq->data && ((mrq->data->error && !mrq->data->stop) ||
949 (mrq->data->stop && mrq->data->stop->error))) ||
950 (host->quirks & SDHCI_QUIRK_RESET_AFTER_REQUEST)));
951}
952
Adrian Hunter4e9f8fe2016-06-29 16:24:34 +0300953static void __sdhci_finish_mrq(struct sdhci_host *host, struct mmc_request *mrq)
954{
955 int i;
956
957 for (i = 0; i < SDHCI_MAX_MRQS; i++) {
958 if (host->mrqs_done[i] == mrq) {
959 WARN_ON(1);
960 return;
961 }
962 }
963
964 for (i = 0; i < SDHCI_MAX_MRQS; i++) {
965 if (!host->mrqs_done[i]) {
966 host->mrqs_done[i] = mrq;
967 break;
968 }
969 }
970
971 WARN_ON(i >= SDHCI_MAX_MRQS);
972
973 tasklet_schedule(&host->finish_tasklet);
974}
975
Adrian Huntera6d3bdd2016-06-29 16:24:27 +0300976static void sdhci_finish_mrq(struct sdhci_host *host, struct mmc_request *mrq)
977{
Adrian Hunter5a8a3fe2016-06-29 16:24:30 +0300978 if (host->cmd && host->cmd->mrq == mrq)
979 host->cmd = NULL;
980
981 if (host->data_cmd && host->data_cmd->mrq == mrq)
982 host->data_cmd = NULL;
983
984 if (host->data && host->data->mrq == mrq)
985 host->data = NULL;
986
Adrian Huntered1563d2016-06-29 16:24:29 +0300987 if (sdhci_needs_reset(host, mrq))
988 host->pending_reset = true;
989
Adrian Hunter4e9f8fe2016-06-29 16:24:34 +0300990 __sdhci_finish_mrq(host, mrq);
Adrian Huntera6d3bdd2016-06-29 16:24:27 +0300991}
992
Pierre Ossmand129bce2006-03-24 03:18:17 -0800993static void sdhci_finish_data(struct sdhci_host *host)
994{
Adrian Hunter33a57ad2016-06-29 16:24:36 +0300995 struct mmc_command *data_cmd = host->data_cmd;
996 struct mmc_data *data = host->data;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800997
Pierre Ossmand129bce2006-03-24 03:18:17 -0800998 host->data = NULL;
Adrian Hunter7c89a3d2016-06-29 16:24:23 +0300999 host->data_cmd = NULL;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001000
Russell Kingadd89132016-01-26 13:40:42 +00001001 if ((host->flags & (SDHCI_REQ_USE_DMA | SDHCI_USE_ADMA)) ==
1002 (SDHCI_REQ_USE_DMA | SDHCI_USE_ADMA))
1003 sdhci_adma_table_post(host, data);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001004
1005 /*
Pierre Ossmanc9b74c52008-04-18 20:41:49 +02001006 * The specification states that the block count register must
1007 * be updated, but it does not specify at what point in the
1008 * data flow. That makes the register entirely useless to read
1009 * back so we have to assume that nothing made it to the card
1010 * in the event of an error.
Pierre Ossmand129bce2006-03-24 03:18:17 -08001011 */
Pierre Ossmanc9b74c52008-04-18 20:41:49 +02001012 if (data->error)
1013 data->bytes_xfered = 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001014 else
Pierre Ossmanc9b74c52008-04-18 20:41:49 +02001015 data->bytes_xfered = data->blksz * data->blocks;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001016
Andrei Warkentine89d4562011-05-23 15:06:37 -05001017 /*
1018 * Need to send CMD12 if -
1019 * a) open-ended multiblock transfer (no CMD23)
1020 * b) error in multiblock transfer
1021 */
1022 if (data->stop &&
1023 (data->error ||
Adrian Huntera4c73ab2016-06-29 16:24:25 +03001024 !data->mrq->sbc)) {
Andrei Warkentine89d4562011-05-23 15:06:37 -05001025
Pierre Ossmand129bce2006-03-24 03:18:17 -08001026 /*
1027 * The controller needs a reset of internal state machines
1028 * upon error conditions.
1029 */
Pierre Ossman17b04292007-07-22 22:18:46 +02001030 if (data->error) {
Adrian Hunter33a57ad2016-06-29 16:24:36 +03001031 if (!host->cmd || host->cmd == data_cmd)
1032 sdhci_do_reset(host, SDHCI_RESET_CMD);
Russell King03231f92014-04-25 12:57:12 +01001033 sdhci_do_reset(host, SDHCI_RESET_DATA);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001034 }
1035
Adrian Hunter20845be2016-08-16 13:44:13 +03001036 /*
1037 * 'cap_cmd_during_tfr' request must not use the command line
1038 * after mmc_command_done() has been called. It is upper layer's
1039 * responsibility to send the stop command if required.
1040 */
1041 if (data->mrq->cap_cmd_during_tfr) {
1042 sdhci_finish_mrq(host, data->mrq);
1043 } else {
1044 /* Avoid triggering warning in sdhci_send_command() */
1045 host->cmd = NULL;
1046 sdhci_send_command(host, data->stop);
1047 }
Adrian Huntera6d3bdd2016-06-29 16:24:27 +03001048 } else {
1049 sdhci_finish_mrq(host, data->mrq);
1050 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001051}
1052
Adrian Hunterd7422fb2016-06-29 16:24:33 +03001053static void sdhci_mod_timer(struct sdhci_host *host, struct mmc_request *mrq,
1054 unsigned long timeout)
1055{
1056 if (sdhci_data_line_cmd(mrq->cmd))
1057 mod_timer(&host->data_timer, timeout);
1058 else
1059 mod_timer(&host->timer, timeout);
1060}
1061
1062static void sdhci_del_timer(struct sdhci_host *host, struct mmc_request *mrq)
1063{
1064 if (sdhci_data_line_cmd(mrq->cmd))
1065 del_timer(&host->data_timer);
1066 else
1067 del_timer(&host->timer);
1068}
1069
Dong Aishengc0e551292013-09-13 19:11:31 +08001070void sdhci_send_command(struct sdhci_host *host, struct mmc_command *cmd)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001071{
1072 int flags;
Pierre Ossmanfd2208d2006-06-30 02:22:28 -07001073 u32 mask;
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001074 unsigned long timeout;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001075
1076 WARN_ON(host->cmd);
1077
Russell King96776202016-01-26 13:39:34 +00001078 /* Initially, a command has no error */
1079 cmd->error = 0;
1080
Adrian Hunterfc605f12016-10-05 12:11:21 +03001081 if ((host->quirks2 & SDHCI_QUIRK2_STOP_WITH_TC) &&
1082 cmd->opcode == MMC_STOP_TRANSMISSION)
1083 cmd->flags |= MMC_RSP_BUSY;
1084
Pierre Ossmand129bce2006-03-24 03:18:17 -08001085 /* Wait max 10 ms */
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001086 timeout = 10;
Pierre Ossmanfd2208d2006-06-30 02:22:28 -07001087
1088 mask = SDHCI_CMD_INHIBIT;
Adrian Hunter56a590d2016-06-29 16:24:32 +03001089 if (sdhci_data_line_cmd(cmd))
Pierre Ossmanfd2208d2006-06-30 02:22:28 -07001090 mask |= SDHCI_DATA_INHIBIT;
1091
1092 /* We shouldn't wait for data inihibit for stop commands, even
1093 though they might use busy signaling */
Adrian Huntera4c73ab2016-06-29 16:24:25 +03001094 if (cmd->mrq->data && (cmd == cmd->mrq->data->stop))
Pierre Ossmanfd2208d2006-06-30 02:22:28 -07001095 mask &= ~SDHCI_DATA_INHIBIT;
1096
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001097 while (sdhci_readl(host, SDHCI_PRESENT_STATE) & mask) {
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001098 if (timeout == 0) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01001099 pr_err("%s: Controller never released inhibit bit(s).\n",
1100 mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -08001101 sdhci_dumpregs(host);
Pierre Ossman17b04292007-07-22 22:18:46 +02001102 cmd->error = -EIO;
Adrian Huntera6d3bdd2016-06-29 16:24:27 +03001103 sdhci_finish_mrq(host, cmd->mrq);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001104 return;
1105 }
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001106 timeout--;
1107 mdelay(1);
1108 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001109
Adrian Hunter3e1a6892013-11-14 10:16:20 +02001110 timeout = jiffies;
Ulf Hansson1d4d7742014-01-08 15:06:08 +01001111 if (!cmd->data && cmd->busy_timeout > 9000)
1112 timeout += DIV_ROUND_UP(cmd->busy_timeout, 1000) * HZ + HZ;
Adrian Hunter3e1a6892013-11-14 10:16:20 +02001113 else
1114 timeout += 10 * HZ;
Adrian Hunterd7422fb2016-06-29 16:24:33 +03001115 sdhci_mod_timer(host, cmd->mrq, timeout);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001116
1117 host->cmd = cmd;
Adrian Hunter56a590d2016-06-29 16:24:32 +03001118 if (sdhci_data_line_cmd(cmd)) {
Adrian Hunter7c89a3d2016-06-29 16:24:23 +03001119 WARN_ON(host->data_cmd);
1120 host->data_cmd = cmd;
1121 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001122
Andrei Warkentina3c77782011-04-11 16:13:42 -05001123 sdhci_prepare_data(host, cmd);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001124
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001125 sdhci_writel(host, cmd->arg, SDHCI_ARGUMENT);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001126
Andrei Warkentine89d4562011-05-23 15:06:37 -05001127 sdhci_set_transfer_mode(host, cmd);
Pierre Ossmanc7fa9962006-06-30 02:22:25 -07001128
Pierre Ossmand129bce2006-03-24 03:18:17 -08001129 if ((cmd->flags & MMC_RSP_136) && (cmd->flags & MMC_RSP_BUSY)) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05301130 pr_err("%s: Unsupported response type!\n",
Pierre Ossmand129bce2006-03-24 03:18:17 -08001131 mmc_hostname(host->mmc));
Pierre Ossman17b04292007-07-22 22:18:46 +02001132 cmd->error = -EINVAL;
Adrian Huntera6d3bdd2016-06-29 16:24:27 +03001133 sdhci_finish_mrq(host, cmd->mrq);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001134 return;
1135 }
1136
1137 if (!(cmd->flags & MMC_RSP_PRESENT))
1138 flags = SDHCI_CMD_RESP_NONE;
1139 else if (cmd->flags & MMC_RSP_136)
1140 flags = SDHCI_CMD_RESP_LONG;
1141 else if (cmd->flags & MMC_RSP_BUSY)
1142 flags = SDHCI_CMD_RESP_SHORT_BUSY;
1143 else
1144 flags = SDHCI_CMD_RESP_SHORT;
1145
1146 if (cmd->flags & MMC_RSP_CRC)
1147 flags |= SDHCI_CMD_CRC;
1148 if (cmd->flags & MMC_RSP_OPCODE)
1149 flags |= SDHCI_CMD_INDEX;
Arindam Nathb513ea22011-05-05 12:19:04 +05301150
1151 /* CMD19 is special in that the Data Present Select should be set */
Girish K S069c9f12012-01-06 09:56:39 +05301152 if (cmd->data || cmd->opcode == MMC_SEND_TUNING_BLOCK ||
1153 cmd->opcode == MMC_SEND_TUNING_BLOCK_HS200)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001154 flags |= SDHCI_CMD_DATA;
1155
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001156 sdhci_writew(host, SDHCI_MAKE_CMD(cmd->opcode, flags), SDHCI_COMMAND);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001157}
Dong Aishengc0e551292013-09-13 19:11:31 +08001158EXPORT_SYMBOL_GPL(sdhci_send_command);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001159
1160static void sdhci_finish_command(struct sdhci_host *host)
1161{
Adrian Huntere0a56402016-06-29 16:24:22 +03001162 struct mmc_command *cmd = host->cmd;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001163 int i;
1164
Adrian Huntere0a56402016-06-29 16:24:22 +03001165 host->cmd = NULL;
1166
1167 if (cmd->flags & MMC_RSP_PRESENT) {
1168 if (cmd->flags & MMC_RSP_136) {
Pierre Ossmand129bce2006-03-24 03:18:17 -08001169 /* CRC is stripped so we need to do some shifting. */
1170 for (i = 0;i < 4;i++) {
Adrian Huntere0a56402016-06-29 16:24:22 +03001171 cmd->resp[i] = sdhci_readl(host,
Pierre Ossmand129bce2006-03-24 03:18:17 -08001172 SDHCI_RESPONSE + (3-i)*4) << 8;
1173 if (i != 3)
Adrian Huntere0a56402016-06-29 16:24:22 +03001174 cmd->resp[i] |=
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001175 sdhci_readb(host,
Pierre Ossmand129bce2006-03-24 03:18:17 -08001176 SDHCI_RESPONSE + (3-i)*4-1);
1177 }
1178 } else {
Adrian Huntere0a56402016-06-29 16:24:22 +03001179 cmd->resp[0] = sdhci_readl(host, SDHCI_RESPONSE);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001180 }
1181 }
1182
Adrian Hunter20845be2016-08-16 13:44:13 +03001183 if (cmd->mrq->cap_cmd_during_tfr && cmd == cmd->mrq->cmd)
1184 mmc_command_done(host->mmc, cmd->mrq);
1185
Adrian Hunter6bde8682016-06-29 16:24:20 +03001186 /*
1187 * The host can send and interrupt when the busy state has
1188 * ended, allowing us to wait without wasting CPU cycles.
1189 * The busy signal uses DAT0 so this is similar to waiting
1190 * for data to complete.
1191 *
1192 * Note: The 1.0 specification is a bit ambiguous about this
1193 * feature so there might be some problems with older
1194 * controllers.
1195 */
Adrian Huntere0a56402016-06-29 16:24:22 +03001196 if (cmd->flags & MMC_RSP_BUSY) {
1197 if (cmd->data) {
Adrian Hunter6bde8682016-06-29 16:24:20 +03001198 DBG("Cannot wait for busy signal when also doing a data transfer");
1199 } else if (!(host->quirks & SDHCI_QUIRK_NO_BUSY_IRQ) &&
Adrian Hunterea968022016-06-29 16:24:24 +03001200 cmd == host->data_cmd) {
1201 /* Command complete before busy is ended */
Adrian Hunter6bde8682016-06-29 16:24:20 +03001202 return;
1203 }
1204 }
1205
Andrei Warkentine89d4562011-05-23 15:06:37 -05001206 /* Finished CMD23, now send actual command. */
Adrian Huntera4c73ab2016-06-29 16:24:25 +03001207 if (cmd == cmd->mrq->sbc) {
1208 sdhci_send_command(host, cmd->mrq->cmd);
Andrei Warkentine89d4562011-05-23 15:06:37 -05001209 } else {
Pierre Ossmane538fbe2007-08-12 16:46:32 +02001210
Andrei Warkentine89d4562011-05-23 15:06:37 -05001211 /* Processed actual command. */
1212 if (host->data && host->data_early)
1213 sdhci_finish_data(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001214
Adrian Huntere0a56402016-06-29 16:24:22 +03001215 if (!cmd->data)
Adrian Huntera6d3bdd2016-06-29 16:24:27 +03001216 sdhci_finish_mrq(host, cmd->mrq);
Andrei Warkentine89d4562011-05-23 15:06:37 -05001217 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001218}
1219
Kevin Liu52983382013-01-31 11:31:37 +08001220static u16 sdhci_get_preset_value(struct sdhci_host *host)
1221{
Russell Kingd975f122014-04-25 12:59:31 +01001222 u16 preset = 0;
Kevin Liu52983382013-01-31 11:31:37 +08001223
Russell Kingd975f122014-04-25 12:59:31 +01001224 switch (host->timing) {
1225 case MMC_TIMING_UHS_SDR12:
Kevin Liu52983382013-01-31 11:31:37 +08001226 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR12);
1227 break;
Russell Kingd975f122014-04-25 12:59:31 +01001228 case MMC_TIMING_UHS_SDR25:
Kevin Liu52983382013-01-31 11:31:37 +08001229 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR25);
1230 break;
Russell Kingd975f122014-04-25 12:59:31 +01001231 case MMC_TIMING_UHS_SDR50:
Kevin Liu52983382013-01-31 11:31:37 +08001232 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR50);
1233 break;
Russell Kingd975f122014-04-25 12:59:31 +01001234 case MMC_TIMING_UHS_SDR104:
1235 case MMC_TIMING_MMC_HS200:
Kevin Liu52983382013-01-31 11:31:37 +08001236 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR104);
1237 break;
Russell Kingd975f122014-04-25 12:59:31 +01001238 case MMC_TIMING_UHS_DDR50:
Jisheng Zhang0dafa602015-08-18 16:21:39 +08001239 case MMC_TIMING_MMC_DDR52:
Kevin Liu52983382013-01-31 11:31:37 +08001240 preset = sdhci_readw(host, SDHCI_PRESET_FOR_DDR50);
1241 break;
Adrian Huntere9fb05d2014-11-06 15:19:06 +02001242 case MMC_TIMING_MMC_HS400:
1243 preset = sdhci_readw(host, SDHCI_PRESET_FOR_HS400);
1244 break;
Kevin Liu52983382013-01-31 11:31:37 +08001245 default:
1246 pr_warn("%s: Invalid UHS-I mode selected\n",
1247 mmc_hostname(host->mmc));
1248 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR12);
1249 break;
1250 }
1251 return preset;
1252}
1253
Ludovic Desrochesfb9ee042016-04-07 11:13:08 +02001254u16 sdhci_calc_clk(struct sdhci_host *host, unsigned int clock,
1255 unsigned int *actual_clock)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001256{
Arindam Nathc3ed3872011-05-05 12:19:06 +05301257 int div = 0; /* Initialized for compiler warning */
Giuseppe CAVALLAROdf162192011-11-04 13:53:19 +01001258 int real_div = div, clk_mul = 1;
Arindam Nathc3ed3872011-05-05 12:19:06 +05301259 u16 clk = 0;
ludovic.desroches@atmel.com54971592015-07-29 16:22:46 +02001260 bool switch_base_clk = false;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001261
Zhangfei Gao85105c52010-08-06 07:10:01 +08001262 if (host->version >= SDHCI_SPEC_300) {
Russell Kingda91a8f2014-04-25 13:00:12 +01001263 if (host->preset_enabled) {
Kevin Liu52983382013-01-31 11:31:37 +08001264 u16 pre_val;
1265
1266 clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL);
1267 pre_val = sdhci_get_preset_value(host);
1268 div = (pre_val & SDHCI_PRESET_SDCLK_FREQ_MASK)
1269 >> SDHCI_PRESET_SDCLK_FREQ_SHIFT;
1270 if (host->clk_mul &&
1271 (pre_val & SDHCI_PRESET_CLKGEN_SEL_MASK)) {
1272 clk = SDHCI_PROG_CLOCK_MODE;
1273 real_div = div + 1;
1274 clk_mul = host->clk_mul;
1275 } else {
1276 real_div = max_t(int, 1, div << 1);
1277 }
1278 goto clock_set;
1279 }
1280
Arindam Nathc3ed3872011-05-05 12:19:06 +05301281 /*
1282 * Check if the Host Controller supports Programmable Clock
1283 * Mode.
1284 */
1285 if (host->clk_mul) {
Kevin Liu52983382013-01-31 11:31:37 +08001286 for (div = 1; div <= 1024; div++) {
1287 if ((host->max_clk * host->clk_mul / div)
1288 <= clock)
1289 break;
Zhangfei Gao85105c52010-08-06 07:10:01 +08001290 }
ludovic.desroches@atmel.com54971592015-07-29 16:22:46 +02001291 if ((host->max_clk * host->clk_mul / div) <= clock) {
1292 /*
1293 * Set Programmable Clock Mode in the Clock
1294 * Control register.
1295 */
1296 clk = SDHCI_PROG_CLOCK_MODE;
1297 real_div = div;
1298 clk_mul = host->clk_mul;
1299 div--;
1300 } else {
1301 /*
1302 * Divisor can be too small to reach clock
1303 * speed requirement. Then use the base clock.
1304 */
1305 switch_base_clk = true;
1306 }
1307 }
1308
1309 if (!host->clk_mul || switch_base_clk) {
Arindam Nathc3ed3872011-05-05 12:19:06 +05301310 /* Version 3.00 divisors must be a multiple of 2. */
1311 if (host->max_clk <= clock)
1312 div = 1;
1313 else {
1314 for (div = 2; div < SDHCI_MAX_DIV_SPEC_300;
1315 div += 2) {
1316 if ((host->max_clk / div) <= clock)
1317 break;
1318 }
1319 }
Giuseppe CAVALLAROdf162192011-11-04 13:53:19 +01001320 real_div = div;
Arindam Nathc3ed3872011-05-05 12:19:06 +05301321 div >>= 1;
Suneel Garapatid1955c32015-06-09 13:01:50 +05301322 if ((host->quirks2 & SDHCI_QUIRK2_CLOCK_DIV_ZERO_BROKEN)
1323 && !div && host->max_clk <= 25000000)
1324 div = 1;
Zhangfei Gao85105c52010-08-06 07:10:01 +08001325 }
1326 } else {
1327 /* Version 2.00 divisors must be a power of 2. */
Zhangfei Gao03975262010-09-20 15:15:18 -04001328 for (div = 1; div < SDHCI_MAX_DIV_SPEC_200; div *= 2) {
Zhangfei Gao85105c52010-08-06 07:10:01 +08001329 if ((host->max_clk / div) <= clock)
1330 break;
1331 }
Giuseppe CAVALLAROdf162192011-11-04 13:53:19 +01001332 real_div = div;
Arindam Nathc3ed3872011-05-05 12:19:06 +05301333 div >>= 1;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001334 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001335
Kevin Liu52983382013-01-31 11:31:37 +08001336clock_set:
Aisheng Dong03d6f5f2014-08-27 15:26:32 +08001337 if (real_div)
Ludovic Desrochesfb9ee042016-04-07 11:13:08 +02001338 *actual_clock = (host->max_clk * clk_mul) / real_div;
Arindam Nathc3ed3872011-05-05 12:19:06 +05301339 clk |= (div & SDHCI_DIV_MASK) << SDHCI_DIVIDER_SHIFT;
Zhangfei Gao85105c52010-08-06 07:10:01 +08001340 clk |= ((div & SDHCI_DIV_HI_MASK) >> SDHCI_DIV_MASK_LEN)
1341 << SDHCI_DIVIDER_HI_SHIFT;
Ludovic Desrochesfb9ee042016-04-07 11:13:08 +02001342
1343 return clk;
1344}
1345EXPORT_SYMBOL_GPL(sdhci_calc_clk);
1346
Ritesh Harjanifec79672016-11-21 12:07:19 +05301347void sdhci_enable_clk(struct sdhci_host *host, u16 clk)
Ludovic Desrochesfb9ee042016-04-07 11:13:08 +02001348{
Adrian Hunter5a436cc2017-03-20 19:50:31 +02001349 ktime_t timeout;
Ludovic Desrochesfb9ee042016-04-07 11:13:08 +02001350
Pierre Ossmand129bce2006-03-24 03:18:17 -08001351 clk |= SDHCI_CLOCK_INT_EN;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001352 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001353
Chris Ball27f6cb12009-09-22 16:45:31 -07001354 /* Wait max 20 ms */
Adrian Hunter5a436cc2017-03-20 19:50:31 +02001355 timeout = ktime_add_ms(ktime_get(), 20);
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001356 while (!((clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL))
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001357 & SDHCI_CLOCK_INT_STABLE)) {
Adrian Hunter5a436cc2017-03-20 19:50:31 +02001358 if (ktime_after(ktime_get(), timeout)) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01001359 pr_err("%s: Internal clock never stabilised.\n",
1360 mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -08001361 sdhci_dumpregs(host);
1362 return;
1363 }
Adrian Hunter5a436cc2017-03-20 19:50:31 +02001364 udelay(10);
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001365 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001366
1367 clk |= SDHCI_CLOCK_CARD_EN;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001368 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001369}
Ritesh Harjanifec79672016-11-21 12:07:19 +05301370EXPORT_SYMBOL_GPL(sdhci_enable_clk);
1371
1372void sdhci_set_clock(struct sdhci_host *host, unsigned int clock)
1373{
1374 u16 clk;
1375
1376 host->mmc->actual_clock = 0;
1377
1378 sdhci_writew(host, 0, SDHCI_CLOCK_CONTROL);
1379
1380 if (clock == 0)
1381 return;
1382
1383 clk = sdhci_calc_clk(host, clock, &host->mmc->actual_clock);
1384 sdhci_enable_clk(host, clk);
1385}
Russell King17710592014-04-25 12:58:55 +01001386EXPORT_SYMBOL_GPL(sdhci_set_clock);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001387
Adrian Hunter1dceb042016-03-29 12:45:43 +03001388static void sdhci_set_power_reg(struct sdhci_host *host, unsigned char mode,
1389 unsigned short vdd)
Pierre Ossman146ad662006-06-30 02:22:23 -07001390{
Tim Kryger3a48edc2014-06-13 10:13:56 -07001391 struct mmc_host *mmc = host->mmc;
Adrian Hunter1dceb042016-03-29 12:45:43 +03001392
Adrian Hunter1dceb042016-03-29 12:45:43 +03001393 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, vdd);
Adrian Hunter1dceb042016-03-29 12:45:43 +03001394
1395 if (mode != MMC_POWER_OFF)
1396 sdhci_writeb(host, SDHCI_POWER_ON, SDHCI_POWER_CONTROL);
1397 else
1398 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
1399}
1400
Adrian Hunter606d3132016-10-05 12:11:22 +03001401void sdhci_set_power_noreg(struct sdhci_host *host, unsigned char mode,
1402 unsigned short vdd)
Adrian Hunter1dceb042016-03-29 12:45:43 +03001403{
Giuseppe Cavallaro83642482010-09-28 10:41:28 +02001404 u8 pwr = 0;
Pierre Ossman146ad662006-06-30 02:22:23 -07001405
Russell King24fbb3c2014-04-25 13:00:06 +01001406 if (mode != MMC_POWER_OFF) {
1407 switch (1 << vdd) {
Pierre Ossmanae628902009-05-03 20:45:03 +02001408 case MMC_VDD_165_195:
1409 pwr = SDHCI_POWER_180;
1410 break;
1411 case MMC_VDD_29_30:
1412 case MMC_VDD_30_31:
1413 pwr = SDHCI_POWER_300;
1414 break;
1415 case MMC_VDD_32_33:
1416 case MMC_VDD_33_34:
1417 pwr = SDHCI_POWER_330;
1418 break;
1419 default:
Adrian Hunter9d5de932015-11-26 14:00:46 +02001420 WARN(1, "%s: Invalid vdd %#x\n",
1421 mmc_hostname(host->mmc), vdd);
1422 break;
Pierre Ossmanae628902009-05-03 20:45:03 +02001423 }
1424 }
1425
1426 if (host->pwr == pwr)
Russell Kinge921a8b2014-04-25 13:00:01 +01001427 return;
Pierre Ossman146ad662006-06-30 02:22:23 -07001428
Pierre Ossmanae628902009-05-03 20:45:03 +02001429 host->pwr = pwr;
1430
1431 if (pwr == 0) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001432 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
Adrian Hunterf0710a52013-05-06 12:17:32 +03001433 if (host->quirks2 & SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON)
1434 sdhci_runtime_pm_bus_off(host);
Russell Kinge921a8b2014-04-25 13:00:01 +01001435 } else {
1436 /*
1437 * Spec says that we should clear the power reg before setting
1438 * a new value. Some controllers don't seem to like this though.
1439 */
1440 if (!(host->quirks & SDHCI_QUIRK_SINGLE_POWER_WRITE))
1441 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
Darren Salt9e9dc5f2007-01-27 15:32:31 +01001442
Russell Kinge921a8b2014-04-25 13:00:01 +01001443 /*
1444 * At least the Marvell CaFe chip gets confused if we set the
1445 * voltage and set turn on power at the same time, so set the
1446 * voltage first.
1447 */
1448 if (host->quirks & SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER)
1449 sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL);
Pierre Ossman146ad662006-06-30 02:22:23 -07001450
Russell Kinge921a8b2014-04-25 13:00:01 +01001451 pwr |= SDHCI_POWER_ON;
1452
Pierre Ossmanae628902009-05-03 20:45:03 +02001453 sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL);
1454
Russell Kinge921a8b2014-04-25 13:00:01 +01001455 if (host->quirks2 & SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON)
1456 sdhci_runtime_pm_bus_on(host);
Andres Salomone08c1692008-07-04 10:00:03 -07001457
Russell Kinge921a8b2014-04-25 13:00:01 +01001458 /*
1459 * Some controllers need an extra 10ms delay of 10ms before
1460 * they can apply clock after applying power
1461 */
1462 if (host->quirks & SDHCI_QUIRK_DELAY_AFTER_POWER)
1463 mdelay(10);
1464 }
Adrian Hunter1dceb042016-03-29 12:45:43 +03001465}
Adrian Hunter606d3132016-10-05 12:11:22 +03001466EXPORT_SYMBOL_GPL(sdhci_set_power_noreg);
Jisheng Zhang918f4cb2015-12-11 21:36:29 +08001467
Adrian Hunter606d3132016-10-05 12:11:22 +03001468void sdhci_set_power(struct sdhci_host *host, unsigned char mode,
1469 unsigned short vdd)
Adrian Hunter1dceb042016-03-29 12:45:43 +03001470{
Adrian Hunter606d3132016-10-05 12:11:22 +03001471 if (IS_ERR(host->mmc->supply.vmmc))
1472 sdhci_set_power_noreg(host, mode, vdd);
Adrian Hunter1dceb042016-03-29 12:45:43 +03001473 else
Adrian Hunter606d3132016-10-05 12:11:22 +03001474 sdhci_set_power_reg(host, mode, vdd);
Pierre Ossman146ad662006-06-30 02:22:23 -07001475}
Adrian Hunter606d3132016-10-05 12:11:22 +03001476EXPORT_SYMBOL_GPL(sdhci_set_power);
Pierre Ossman146ad662006-06-30 02:22:23 -07001477
Pierre Ossmand129bce2006-03-24 03:18:17 -08001478/*****************************************************************************\
1479 * *
1480 * MMC callbacks *
1481 * *
1482\*****************************************************************************/
1483
1484static void sdhci_request(struct mmc_host *mmc, struct mmc_request *mrq)
1485{
1486 struct sdhci_host *host;
Shawn Guo505a8682012-12-11 15:23:42 +08001487 int present;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001488 unsigned long flags;
1489
1490 host = mmc_priv(mmc);
1491
Scott Branden04e079cf2015-03-10 11:35:10 -07001492 /* Firstly check card presence */
Adrian Hunter8d28b7a2016-02-09 16:12:36 +02001493 present = mmc->ops->get_cd(mmc);
Krzysztof Kozlowski28367662015-01-05 10:50:15 +01001494
Pierre Ossmand129bce2006-03-24 03:18:17 -08001495 spin_lock_irqsave(&host->lock, flags);
1496
Adrian Hunter061d17a2016-04-12 14:25:09 +03001497 sdhci_led_activate(host);
Andrei Warkentine89d4562011-05-23 15:06:37 -05001498
1499 /*
1500 * Ensure we don't send the STOP for non-SET_BLOCK_COUNTED
1501 * requests if Auto-CMD12 is enabled.
1502 */
Adrian Hunter0293d502016-06-29 16:24:35 +03001503 if (sdhci_auto_cmd12(host, mrq)) {
Jerry Huangc4512f72010-08-10 18:01:59 -07001504 if (mrq->stop) {
1505 mrq->data->stop = NULL;
1506 mrq->stop = NULL;
1507 }
1508 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001509
Anton Vorontsov68d1fb72009-03-17 00:13:52 +03001510 if (!present || host->flags & SDHCI_DEVICE_DEAD) {
Adrian Huntera4c73ab2016-06-29 16:24:25 +03001511 mrq->cmd->error = -ENOMEDIUM;
Adrian Huntera6d3bdd2016-06-29 16:24:27 +03001512 sdhci_finish_mrq(host, mrq);
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05301513 } else {
Andrei Warkentin8edf63712011-05-23 15:06:39 -05001514 if (mrq->sbc && !(host->flags & SDHCI_AUTO_CMD23))
Andrei Warkentine89d4562011-05-23 15:06:37 -05001515 sdhci_send_command(host, mrq->sbc);
1516 else
1517 sdhci_send_command(host, mrq->cmd);
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05301518 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001519
Pierre Ossman5f25a662006-10-04 02:15:39 -07001520 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -08001521 spin_unlock_irqrestore(&host->lock, flags);
1522}
1523
Russell King2317f562014-04-25 12:57:07 +01001524void sdhci_set_bus_width(struct sdhci_host *host, int width)
1525{
1526 u8 ctrl;
1527
1528 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
1529 if (width == MMC_BUS_WIDTH_8) {
1530 ctrl &= ~SDHCI_CTRL_4BITBUS;
1531 if (host->version >= SDHCI_SPEC_300)
1532 ctrl |= SDHCI_CTRL_8BITBUS;
1533 } else {
1534 if (host->version >= SDHCI_SPEC_300)
1535 ctrl &= ~SDHCI_CTRL_8BITBUS;
1536 if (width == MMC_BUS_WIDTH_4)
1537 ctrl |= SDHCI_CTRL_4BITBUS;
1538 else
1539 ctrl &= ~SDHCI_CTRL_4BITBUS;
1540 }
1541 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
1542}
1543EXPORT_SYMBOL_GPL(sdhci_set_bus_width);
1544
Russell King96d7b782014-04-25 12:59:26 +01001545void sdhci_set_uhs_signaling(struct sdhci_host *host, unsigned timing)
1546{
1547 u16 ctrl_2;
1548
1549 ctrl_2 = sdhci_readw(host, SDHCI_HOST_CONTROL2);
1550 /* Select Bus Speed Mode for host */
1551 ctrl_2 &= ~SDHCI_CTRL_UHS_MASK;
1552 if ((timing == MMC_TIMING_MMC_HS200) ||
1553 (timing == MMC_TIMING_UHS_SDR104))
1554 ctrl_2 |= SDHCI_CTRL_UHS_SDR104;
1555 else if (timing == MMC_TIMING_UHS_SDR12)
1556 ctrl_2 |= SDHCI_CTRL_UHS_SDR12;
1557 else if (timing == MMC_TIMING_UHS_SDR25)
1558 ctrl_2 |= SDHCI_CTRL_UHS_SDR25;
1559 else if (timing == MMC_TIMING_UHS_SDR50)
1560 ctrl_2 |= SDHCI_CTRL_UHS_SDR50;
1561 else if ((timing == MMC_TIMING_UHS_DDR50) ||
1562 (timing == MMC_TIMING_MMC_DDR52))
1563 ctrl_2 |= SDHCI_CTRL_UHS_DDR50;
Adrian Huntere9fb05d2014-11-06 15:19:06 +02001564 else if (timing == MMC_TIMING_MMC_HS400)
1565 ctrl_2 |= SDHCI_CTRL_HS400; /* Non-standard */
Russell King96d7b782014-04-25 12:59:26 +01001566 sdhci_writew(host, ctrl_2, SDHCI_HOST_CONTROL2);
1567}
1568EXPORT_SYMBOL_GPL(sdhci_set_uhs_signaling);
1569
Dong Aishengded97e02016-04-16 01:29:25 +08001570static void sdhci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001571{
Dong Aishengded97e02016-04-16 01:29:25 +08001572 struct sdhci_host *host = mmc_priv(mmc);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001573 u8 ctrl;
1574
Adrian Hunter84ec0482016-12-19 15:33:11 +02001575 if (ios->power_mode == MMC_POWER_UNDEFINED)
1576 return;
1577
Adrian Hunterceb61432011-12-27 15:48:41 +02001578 if (host->flags & SDHCI_DEVICE_DEAD) {
Tim Kryger3a48edc2014-06-13 10:13:56 -07001579 if (!IS_ERR(mmc->supply.vmmc) &&
1580 ios->power_mode == MMC_POWER_OFF)
Markus Mayer4e743f12014-07-03 13:27:42 -07001581 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, 0);
Adrian Hunterceb61432011-12-27 15:48:41 +02001582 return;
1583 }
Pierre Ossman1e728592008-04-16 19:13:13 +02001584
Pierre Ossmand129bce2006-03-24 03:18:17 -08001585 /*
1586 * Reset the chip on each power off.
1587 * Should clear out any weird states.
1588 */
1589 if (ios->power_mode == MMC_POWER_OFF) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001590 sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE);
Anton Vorontsov7260cf52009-03-17 00:13:48 +03001591 sdhci_reinit(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001592 }
1593
Kevin Liu52983382013-01-31 11:31:37 +08001594 if (host->version >= SDHCI_SPEC_300 &&
Dong Aisheng372c4632013-10-18 19:48:50 +08001595 (ios->power_mode == MMC_POWER_UP) &&
1596 !(host->quirks2 & SDHCI_QUIRK2_PRESET_VALUE_BROKEN))
Kevin Liu52983382013-01-31 11:31:37 +08001597 sdhci_enable_preset_value(host, false);
1598
Russell King373073e2014-04-25 12:58:45 +01001599 if (!ios->clock || ios->clock != host->clock) {
Russell King17710592014-04-25 12:58:55 +01001600 host->ops->set_clock(host, ios->clock);
Russell King373073e2014-04-25 12:58:45 +01001601 host->clock = ios->clock;
Aisheng Dong03d6f5f2014-08-27 15:26:32 +08001602
1603 if (host->quirks & SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK &&
1604 host->clock) {
1605 host->timeout_clk = host->mmc->actual_clock ?
1606 host->mmc->actual_clock / 1000 :
1607 host->clock / 1000;
1608 host->mmc->max_busy_timeout =
1609 host->ops->get_max_timeout_count ?
1610 host->ops->get_max_timeout_count(host) :
1611 1 << 27;
1612 host->mmc->max_busy_timeout /= host->timeout_clk;
1613 }
Russell King373073e2014-04-25 12:58:45 +01001614 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001615
Adrian Hunter606d3132016-10-05 12:11:22 +03001616 if (host->ops->set_power)
1617 host->ops->set_power(host, ios->power_mode, ios->vdd);
1618 else
1619 sdhci_set_power(host, ios->power_mode, ios->vdd);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001620
Philip Rakity643a81f2010-09-23 08:24:32 -07001621 if (host->ops->platform_send_init_74_clocks)
1622 host->ops->platform_send_init_74_clocks(host, ios->power_mode);
1623
Russell King2317f562014-04-25 12:57:07 +01001624 host->ops->set_bus_width(host, ios->bus_width);
Philip Rakity15ec4462010-11-19 16:48:39 -05001625
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001626 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
Pierre Ossmancd9277c2007-02-18 12:07:47 +01001627
Philip Rakity3ab9c8d2010-10-06 11:57:23 -07001628 if ((ios->timing == MMC_TIMING_SD_HS ||
Jaehoon Chung273c5412016-10-07 14:08:43 +09001629 ios->timing == MMC_TIMING_MMC_HS ||
1630 ios->timing == MMC_TIMING_MMC_HS400 ||
1631 ios->timing == MMC_TIMING_MMC_HS200 ||
1632 ios->timing == MMC_TIMING_MMC_DDR52 ||
1633 ios->timing == MMC_TIMING_UHS_SDR50 ||
1634 ios->timing == MMC_TIMING_UHS_SDR104 ||
1635 ios->timing == MMC_TIMING_UHS_DDR50 ||
1636 ios->timing == MMC_TIMING_UHS_SDR25)
Philip Rakity3ab9c8d2010-10-06 11:57:23 -07001637 && !(host->quirks & SDHCI_QUIRK_NO_HISPD_BIT))
Pierre Ossmancd9277c2007-02-18 12:07:47 +01001638 ctrl |= SDHCI_CTRL_HISPD;
1639 else
1640 ctrl &= ~SDHCI_CTRL_HISPD;
1641
Arindam Nathd6d50a12011-05-05 12:18:59 +05301642 if (host->version >= SDHCI_SPEC_300) {
Arindam Nath49c468f2011-05-05 12:19:01 +05301643 u16 clk, ctrl_2;
Arindam Nath49c468f2011-05-05 12:19:01 +05301644
Russell Kingda91a8f2014-04-25 13:00:12 +01001645 if (!host->preset_enabled) {
Arindam Nath758535c2011-05-05 12:19:00 +05301646 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Arindam Nathd6d50a12011-05-05 12:18:59 +05301647 /*
1648 * We only need to set Driver Strength if the
1649 * preset value enable is not set.
1650 */
Russell Kingda91a8f2014-04-25 13:00:12 +01001651 ctrl_2 = sdhci_readw(host, SDHCI_HOST_CONTROL2);
Arindam Nathd6d50a12011-05-05 12:18:59 +05301652 ctrl_2 &= ~SDHCI_CTRL_DRV_TYPE_MASK;
1653 if (ios->drv_type == MMC_SET_DRIVER_TYPE_A)
1654 ctrl_2 |= SDHCI_CTRL_DRV_TYPE_A;
Petri Gynther43e943a2015-05-20 14:35:00 -07001655 else if (ios->drv_type == MMC_SET_DRIVER_TYPE_B)
1656 ctrl_2 |= SDHCI_CTRL_DRV_TYPE_B;
Arindam Nathd6d50a12011-05-05 12:18:59 +05301657 else if (ios->drv_type == MMC_SET_DRIVER_TYPE_C)
1658 ctrl_2 |= SDHCI_CTRL_DRV_TYPE_C;
Petri Gynther43e943a2015-05-20 14:35:00 -07001659 else if (ios->drv_type == MMC_SET_DRIVER_TYPE_D)
1660 ctrl_2 |= SDHCI_CTRL_DRV_TYPE_D;
1661 else {
Marek Vasut2e4456f2015-11-18 10:47:02 +01001662 pr_warn("%s: invalid driver type, default to driver type B\n",
1663 mmc_hostname(mmc));
Petri Gynther43e943a2015-05-20 14:35:00 -07001664 ctrl_2 |= SDHCI_CTRL_DRV_TYPE_B;
1665 }
Arindam Nathd6d50a12011-05-05 12:18:59 +05301666
1667 sdhci_writew(host, ctrl_2, SDHCI_HOST_CONTROL2);
Arindam Nath758535c2011-05-05 12:19:00 +05301668 } else {
1669 /*
1670 * According to SDHC Spec v3.00, if the Preset Value
1671 * Enable in the Host Control 2 register is set, we
1672 * need to reset SD Clock Enable before changing High
1673 * Speed Enable to avoid generating clock gliches.
1674 */
Arindam Nath758535c2011-05-05 12:19:00 +05301675
1676 /* Reset SD Clock Enable */
1677 clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL);
1678 clk &= ~SDHCI_CLOCK_CARD_EN;
1679 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
1680
1681 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
1682
1683 /* Re-enable SD Clock */
Russell King17710592014-04-25 12:58:55 +01001684 host->ops->set_clock(host, host->clock);
Arindam Nathd6d50a12011-05-05 12:18:59 +05301685 }
Arindam Nath49c468f2011-05-05 12:19:01 +05301686
Arindam Nath49c468f2011-05-05 12:19:01 +05301687 /* Reset SD Clock Enable */
1688 clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL);
1689 clk &= ~SDHCI_CLOCK_CARD_EN;
1690 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
1691
Russell King96d7b782014-04-25 12:59:26 +01001692 host->ops->set_uhs_signaling(host, ios->timing);
Russell Kingd975f122014-04-25 12:59:31 +01001693 host->timing = ios->timing;
Arindam Nath49c468f2011-05-05 12:19:01 +05301694
Kevin Liu52983382013-01-31 11:31:37 +08001695 if (!(host->quirks2 & SDHCI_QUIRK2_PRESET_VALUE_BROKEN) &&
1696 ((ios->timing == MMC_TIMING_UHS_SDR12) ||
1697 (ios->timing == MMC_TIMING_UHS_SDR25) ||
1698 (ios->timing == MMC_TIMING_UHS_SDR50) ||
1699 (ios->timing == MMC_TIMING_UHS_SDR104) ||
Jisheng Zhang0dafa602015-08-18 16:21:39 +08001700 (ios->timing == MMC_TIMING_UHS_DDR50) ||
1701 (ios->timing == MMC_TIMING_MMC_DDR52))) {
Kevin Liu52983382013-01-31 11:31:37 +08001702 u16 preset;
1703
1704 sdhci_enable_preset_value(host, true);
1705 preset = sdhci_get_preset_value(host);
1706 ios->drv_type = (preset & SDHCI_PRESET_DRV_MASK)
1707 >> SDHCI_PRESET_DRV_SHIFT;
1708 }
1709
Arindam Nath49c468f2011-05-05 12:19:01 +05301710 /* Re-enable SD Clock */
Russell King17710592014-04-25 12:58:55 +01001711 host->ops->set_clock(host, host->clock);
Arindam Nath758535c2011-05-05 12:19:00 +05301712 } else
1713 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Arindam Nathd6d50a12011-05-05 12:18:59 +05301714
Leandro Dorileob8352262007-07-25 23:47:04 +02001715 /*
1716 * Some (ENE) controllers go apeshit on some ios operation,
1717 * signalling timeout and CRC errors even on CMD0. Resetting
1718 * it on each ios seems to solve the problem.
1719 */
Mohammad Jamalc63705e2015-01-13 20:47:24 +05301720 if (host->quirks & SDHCI_QUIRK_RESET_CMD_DATA_ON_IOS)
Russell King03231f92014-04-25 12:57:12 +01001721 sdhci_do_reset(host, SDHCI_RESET_CMD | SDHCI_RESET_DATA);
Leandro Dorileob8352262007-07-25 23:47:04 +02001722
Pierre Ossman5f25a662006-10-04 02:15:39 -07001723 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -08001724}
1725
Dong Aishengded97e02016-04-16 01:29:25 +08001726static int sdhci_get_cd(struct mmc_host *mmc)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001727{
1728 struct sdhci_host *host = mmc_priv(mmc);
Dong Aishengded97e02016-04-16 01:29:25 +08001729 int gpio_cd = mmc_gpio_get_cd(mmc);
Kevin Liu94144a42013-02-28 17:35:53 +08001730
1731 if (host->flags & SDHCI_DEVICE_DEAD)
1732 return 0;
1733
Ivan T. Ivanov88af5652015-07-06 15:16:19 +03001734 /* If nonremovable, assume that the card is always present. */
Jaehoon Chung860951c2016-06-21 10:13:26 +09001735 if (!mmc_card_is_removable(host->mmc))
Kevin Liu94144a42013-02-28 17:35:53 +08001736 return 1;
1737
Ivan T. Ivanov88af5652015-07-06 15:16:19 +03001738 /*
1739 * Try slot gpio detect, if defined it take precedence
1740 * over build in controller functionality
1741 */
Arnd Bergmann287980e2016-05-27 23:23:25 +02001742 if (gpio_cd >= 0)
Kevin Liu94144a42013-02-28 17:35:53 +08001743 return !!gpio_cd;
1744
Ivan T. Ivanov88af5652015-07-06 15:16:19 +03001745 /* If polling, assume that the card is always present. */
1746 if (host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION)
1747 return 1;
1748
Kevin Liu94144a42013-02-28 17:35:53 +08001749 /* Host native card detect */
1750 return !!(sdhci_readl(host, SDHCI_PRESENT_STATE) & SDHCI_CARD_PRESENT);
1751}
1752
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001753static int sdhci_check_ro(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001754{
Pierre Ossmand129bce2006-03-24 03:18:17 -08001755 unsigned long flags;
Wolfram Sang2dfb5792010-10-15 12:21:01 +02001756 int is_readonly;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001757
Pierre Ossmand129bce2006-03-24 03:18:17 -08001758 spin_lock_irqsave(&host->lock, flags);
1759
Pierre Ossman1e728592008-04-16 19:13:13 +02001760 if (host->flags & SDHCI_DEVICE_DEAD)
Wolfram Sang2dfb5792010-10-15 12:21:01 +02001761 is_readonly = 0;
1762 else if (host->ops->get_ro)
1763 is_readonly = host->ops->get_ro(host);
Pierre Ossman1e728592008-04-16 19:13:13 +02001764 else
Wolfram Sang2dfb5792010-10-15 12:21:01 +02001765 is_readonly = !(sdhci_readl(host, SDHCI_PRESENT_STATE)
1766 & SDHCI_WRITE_PROTECT);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001767
1768 spin_unlock_irqrestore(&host->lock, flags);
1769
Wolfram Sang2dfb5792010-10-15 12:21:01 +02001770 /* This quirk needs to be replaced by a callback-function later */
1771 return host->quirks & SDHCI_QUIRK_INVERTED_WRITE_PROTECT ?
1772 !is_readonly : is_readonly;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001773}
1774
Takashi Iwai82b0e232011-04-21 20:26:38 +02001775#define SAMPLE_COUNT 5
1776
Dong Aishengded97e02016-04-16 01:29:25 +08001777static int sdhci_get_ro(struct mmc_host *mmc)
Takashi Iwai82b0e232011-04-21 20:26:38 +02001778{
Dong Aishengded97e02016-04-16 01:29:25 +08001779 struct sdhci_host *host = mmc_priv(mmc);
Takashi Iwai82b0e232011-04-21 20:26:38 +02001780 int i, ro_count;
1781
Takashi Iwai82b0e232011-04-21 20:26:38 +02001782 if (!(host->quirks & SDHCI_QUIRK_UNSTABLE_RO_DETECT))
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001783 return sdhci_check_ro(host);
Takashi Iwai82b0e232011-04-21 20:26:38 +02001784
1785 ro_count = 0;
1786 for (i = 0; i < SAMPLE_COUNT; i++) {
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001787 if (sdhci_check_ro(host)) {
Takashi Iwai82b0e232011-04-21 20:26:38 +02001788 if (++ro_count > SAMPLE_COUNT / 2)
1789 return 1;
1790 }
1791 msleep(30);
1792 }
1793 return 0;
1794}
1795
Adrian Hunter20758b62011-08-29 16:42:12 +03001796static void sdhci_hw_reset(struct mmc_host *mmc)
1797{
1798 struct sdhci_host *host = mmc_priv(mmc);
1799
1800 if (host->ops && host->ops->hw_reset)
1801 host->ops->hw_reset(host);
1802}
1803
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001804static void sdhci_enable_sdio_irq_nolock(struct sdhci_host *host, int enable)
1805{
Russell Kingbe138552014-04-25 12:55:56 +01001806 if (!(host->flags & SDHCI_DEVICE_DEAD)) {
Russell Kingef104332014-04-25 12:55:41 +01001807 if (enable)
Russell Kingb537f942014-04-25 12:56:01 +01001808 host->ier |= SDHCI_INT_CARD_INT;
Russell Kingef104332014-04-25 12:55:41 +01001809 else
Russell Kingb537f942014-04-25 12:56:01 +01001810 host->ier &= ~SDHCI_INT_CARD_INT;
1811
1812 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
1813 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Russell Kingef104332014-04-25 12:55:41 +01001814 mmiowb();
1815 }
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001816}
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001817
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001818static void sdhci_enable_sdio_irq(struct mmc_host *mmc, int enable)
1819{
1820 struct sdhci_host *host = mmc_priv(mmc);
1821 unsigned long flags;
1822
Hans de Goede923713b2017-03-26 13:14:45 +02001823 if (enable)
1824 pm_runtime_get_noresume(host->mmc->parent);
1825
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001826 spin_lock_irqsave(&host->lock, flags);
Russell Kingef104332014-04-25 12:55:41 +01001827 if (enable)
1828 host->flags |= SDHCI_SDIO_IRQ_ENABLED;
1829 else
1830 host->flags &= ~SDHCI_SDIO_IRQ_ENABLED;
1831
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001832 sdhci_enable_sdio_irq_nolock(host, enable);
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001833 spin_unlock_irqrestore(&host->lock, flags);
Hans de Goede923713b2017-03-26 13:14:45 +02001834
1835 if (!enable)
1836 pm_runtime_put_noidle(host->mmc->parent);
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001837}
1838
Dong Aishengded97e02016-04-16 01:29:25 +08001839static int sdhci_start_signal_voltage_switch(struct mmc_host *mmc,
1840 struct mmc_ios *ios)
Philip Rakity6231f3d2012-07-23 15:56:23 -07001841{
Dong Aishengded97e02016-04-16 01:29:25 +08001842 struct sdhci_host *host = mmc_priv(mmc);
Philip Rakity6231f3d2012-07-23 15:56:23 -07001843 u16 ctrl;
Kevin Liu20b92a32012-12-17 19:29:26 +08001844 int ret;
Philip Rakity6231f3d2012-07-23 15:56:23 -07001845
1846 /*
1847 * Signal Voltage Switching is only applicable for Host Controllers
1848 * v3.00 and above.
1849 */
1850 if (host->version < SDHCI_SPEC_300)
1851 return 0;
1852
Philip Rakity6231f3d2012-07-23 15:56:23 -07001853 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
Kevin Liu20b92a32012-12-17 19:29:26 +08001854
Fabio Estevam21f59982013-02-14 10:35:03 -02001855 switch (ios->signal_voltage) {
Kevin Liu20b92a32012-12-17 19:29:26 +08001856 case MMC_SIGNAL_VOLTAGE_330:
Adrian Hunter8cb851a2016-06-29 16:24:16 +03001857 if (!(host->flags & SDHCI_SIGNALING_330))
1858 return -EINVAL;
Kevin Liu20b92a32012-12-17 19:29:26 +08001859 /* Set 1.8V Signal Enable in the Host Control2 register to 0 */
1860 ctrl &= ~SDHCI_CTRL_VDD_180;
1861 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
1862
Tim Kryger3a48edc2014-06-13 10:13:56 -07001863 if (!IS_ERR(mmc->supply.vqmmc)) {
Dong Aisheng761daa32016-07-12 15:46:10 +08001864 ret = mmc_regulator_set_vqmmc(mmc, ios);
Kevin Liu20b92a32012-12-17 19:29:26 +08001865 if (ret) {
Joe Perches66061102014-09-12 14:56:56 -07001866 pr_warn("%s: Switching to 3.3V signalling voltage failed\n",
1867 mmc_hostname(mmc));
Kevin Liu20b92a32012-12-17 19:29:26 +08001868 return -EIO;
1869 }
1870 }
1871 /* Wait for 5ms */
1872 usleep_range(5000, 5500);
1873
1874 /* 3.3V regulator output should be stable within 5 ms */
1875 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
1876 if (!(ctrl & SDHCI_CTRL_VDD_180))
1877 return 0;
1878
Joe Perches66061102014-09-12 14:56:56 -07001879 pr_warn("%s: 3.3V regulator output did not became stable\n",
1880 mmc_hostname(mmc));
Kevin Liu20b92a32012-12-17 19:29:26 +08001881
1882 return -EAGAIN;
1883 case MMC_SIGNAL_VOLTAGE_180:
Adrian Hunter8cb851a2016-06-29 16:24:16 +03001884 if (!(host->flags & SDHCI_SIGNALING_180))
1885 return -EINVAL;
Tim Kryger3a48edc2014-06-13 10:13:56 -07001886 if (!IS_ERR(mmc->supply.vqmmc)) {
Dong Aisheng761daa32016-07-12 15:46:10 +08001887 ret = mmc_regulator_set_vqmmc(mmc, ios);
Kevin Liu20b92a32012-12-17 19:29:26 +08001888 if (ret) {
Joe Perches66061102014-09-12 14:56:56 -07001889 pr_warn("%s: Switching to 1.8V signalling voltage failed\n",
1890 mmc_hostname(mmc));
Kevin Liu20b92a32012-12-17 19:29:26 +08001891 return -EIO;
1892 }
1893 }
1894
1895 /*
1896 * Enable 1.8V Signal Enable in the Host Control2
1897 * register
1898 */
1899 ctrl |= SDHCI_CTRL_VDD_180;
1900 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
1901
Vincent Yang9d967a62015-01-20 16:05:15 +08001902 /* Some controller need to do more when switching */
1903 if (host->ops->voltage_switch)
1904 host->ops->voltage_switch(host);
1905
Kevin Liu20b92a32012-12-17 19:29:26 +08001906 /* 1.8V regulator output should be stable within 5 ms */
1907 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
1908 if (ctrl & SDHCI_CTRL_VDD_180)
1909 return 0;
1910
Joe Perches66061102014-09-12 14:56:56 -07001911 pr_warn("%s: 1.8V regulator output did not became stable\n",
1912 mmc_hostname(mmc));
Kevin Liu20b92a32012-12-17 19:29:26 +08001913
1914 return -EAGAIN;
1915 case MMC_SIGNAL_VOLTAGE_120:
Adrian Hunter8cb851a2016-06-29 16:24:16 +03001916 if (!(host->flags & SDHCI_SIGNALING_120))
1917 return -EINVAL;
Tim Kryger3a48edc2014-06-13 10:13:56 -07001918 if (!IS_ERR(mmc->supply.vqmmc)) {
Dong Aisheng761daa32016-07-12 15:46:10 +08001919 ret = mmc_regulator_set_vqmmc(mmc, ios);
Kevin Liu20b92a32012-12-17 19:29:26 +08001920 if (ret) {
Joe Perches66061102014-09-12 14:56:56 -07001921 pr_warn("%s: Switching to 1.2V signalling voltage failed\n",
1922 mmc_hostname(mmc));
Kevin Liu20b92a32012-12-17 19:29:26 +08001923 return -EIO;
1924 }
1925 }
1926 return 0;
1927 default:
Arindam Nathf2119df2011-05-05 12:18:57 +05301928 /* No signal voltage switch required */
1929 return 0;
Kevin Liu20b92a32012-12-17 19:29:26 +08001930 }
Arindam Nathf2119df2011-05-05 12:18:57 +05301931}
1932
Kevin Liu20b92a32012-12-17 19:29:26 +08001933static int sdhci_card_busy(struct mmc_host *mmc)
1934{
1935 struct sdhci_host *host = mmc_priv(mmc);
1936 u32 present_state;
1937
Adrian Huntere613cc42016-06-23 14:00:58 +03001938 /* Check whether DAT[0] is 0 */
Kevin Liu20b92a32012-12-17 19:29:26 +08001939 present_state = sdhci_readl(host, SDHCI_PRESENT_STATE);
Kevin Liu20b92a32012-12-17 19:29:26 +08001940
Adrian Huntere613cc42016-06-23 14:00:58 +03001941 return !(present_state & SDHCI_DATA_0_LVL_MASK);
Kevin Liu20b92a32012-12-17 19:29:26 +08001942}
1943
Adrian Hunterb5540ce2014-12-05 19:25:31 +02001944static int sdhci_prepare_hs400_tuning(struct mmc_host *mmc, struct mmc_ios *ios)
1945{
1946 struct sdhci_host *host = mmc_priv(mmc);
1947 unsigned long flags;
1948
1949 spin_lock_irqsave(&host->lock, flags);
1950 host->flags |= SDHCI_HS400_TUNING;
1951 spin_unlock_irqrestore(&host->lock, flags);
1952
1953 return 0;
1954}
1955
Adrian Hunterda4bc4f2016-12-02 15:59:23 +02001956static void sdhci_start_tuning(struct sdhci_host *host)
1957{
1958 u16 ctrl;
1959
1960 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
1961 ctrl |= SDHCI_CTRL_EXEC_TUNING;
1962 if (host->quirks2 & SDHCI_QUIRK2_TUNING_WORK_AROUND)
1963 ctrl |= SDHCI_CTRL_TUNED_CLK;
1964 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
1965
1966 /*
1967 * As per the Host Controller spec v3.00, tuning command
1968 * generates Buffer Read Ready interrupt, so enable that.
1969 *
1970 * Note: The spec clearly says that when tuning sequence
1971 * is being performed, the controller does not generate
1972 * interrupts other than Buffer Read Ready interrupt. But
1973 * to make sure we don't hit a controller bug, we _only_
1974 * enable Buffer Read Ready interrupt here.
1975 */
1976 sdhci_writel(host, SDHCI_INT_DATA_AVAIL, SDHCI_INT_ENABLE);
1977 sdhci_writel(host, SDHCI_INT_DATA_AVAIL, SDHCI_SIGNAL_ENABLE);
1978}
1979
1980static void sdhci_end_tuning(struct sdhci_host *host)
1981{
1982 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
1983 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
1984}
1985
1986static void sdhci_reset_tuning(struct sdhci_host *host)
1987{
1988 u16 ctrl;
1989
1990 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
1991 ctrl &= ~SDHCI_CTRL_TUNED_CLK;
1992 ctrl &= ~SDHCI_CTRL_EXEC_TUNING;
1993 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
1994}
1995
1996static void sdhci_abort_tuning(struct sdhci_host *host, u32 opcode,
1997 unsigned long flags)
1998{
1999 sdhci_reset_tuning(host);
2000
2001 sdhci_do_reset(host, SDHCI_RESET_CMD);
2002 sdhci_do_reset(host, SDHCI_RESET_DATA);
2003
2004 sdhci_end_tuning(host);
2005
2006 spin_unlock_irqrestore(&host->lock, flags);
2007 mmc_abort_tuning(host->mmc, opcode);
2008 spin_lock_irqsave(&host->lock, flags);
2009}
2010
2011/*
2012 * We use sdhci_send_tuning() because mmc_send_tuning() is not a good fit. SDHCI
2013 * tuning command does not have a data payload (or rather the hardware does it
2014 * automatically) so mmc_send_tuning() will return -EIO. Also the tuning command
2015 * interrupt setup is different to other commands and there is no timeout
2016 * interrupt so special handling is needed.
2017 */
2018static void sdhci_send_tuning(struct sdhci_host *host, u32 opcode,
2019 unsigned long flags)
2020{
2021 struct mmc_host *mmc = host->mmc;
Masahiro Yamadac7836d12016-12-19 20:51:18 +09002022 struct mmc_command cmd = {};
2023 struct mmc_request mrq = {};
Adrian Hunterda4bc4f2016-12-02 15:59:23 +02002024
2025 cmd.opcode = opcode;
2026 cmd.flags = MMC_RSP_R1 | MMC_CMD_ADTC;
2027 cmd.mrq = &mrq;
2028
2029 mrq.cmd = &cmd;
2030 /*
2031 * In response to CMD19, the card sends 64 bytes of tuning
2032 * block to the Host Controller. So we set the block size
2033 * to 64 here.
2034 */
Adrian Hunter85336102016-12-02 15:14:26 +02002035 if (cmd.opcode == MMC_SEND_TUNING_BLOCK_HS200 &&
2036 mmc->ios.bus_width == MMC_BUS_WIDTH_8)
2037 sdhci_writew(host, SDHCI_MAKE_BLKSZ(7, 128), SDHCI_BLOCK_SIZE);
2038 else
2039 sdhci_writew(host, SDHCI_MAKE_BLKSZ(7, 64), SDHCI_BLOCK_SIZE);
Adrian Hunterda4bc4f2016-12-02 15:59:23 +02002040
2041 /*
2042 * The tuning block is sent by the card to the host controller.
2043 * So we set the TRNS_READ bit in the Transfer Mode register.
2044 * This also takes care of setting DMA Enable and Multi Block
2045 * Select in the same register to 0.
2046 */
2047 sdhci_writew(host, SDHCI_TRNS_READ, SDHCI_TRANSFER_MODE);
2048
2049 sdhci_send_command(host, &cmd);
2050
2051 host->cmd = NULL;
2052
2053 sdhci_del_timer(host, &mrq);
2054
2055 host->tuning_done = 0;
2056
2057 spin_unlock_irqrestore(&host->lock, flags);
2058
2059 /* Wait for Buffer Read Ready interrupt */
2060 wait_event_timeout(host->buf_ready_int, (host->tuning_done == 1),
2061 msecs_to_jiffies(50));
2062
2063 spin_lock_irqsave(&host->lock, flags);
2064}
2065
Adrian Hunter6b11e702016-12-02 15:14:27 +02002066static void __sdhci_execute_tuning(struct sdhci_host *host, u32 opcode,
2067 unsigned long flags)
2068{
2069 int i;
2070
2071 /*
2072 * Issue opcode repeatedly till Execute Tuning is set to 0 or the number
2073 * of loops reaches 40 times.
2074 */
2075 for (i = 0; i < MAX_TUNING_LOOP; i++) {
2076 u16 ctrl;
2077
2078 sdhci_send_tuning(host, opcode, flags);
2079
2080 if (!host->tuning_done) {
2081 pr_info("%s: Tuning timeout, falling back to fixed sampling clock\n",
2082 mmc_hostname(host->mmc));
2083 sdhci_abort_tuning(host, opcode, flags);
2084 return;
2085 }
2086
2087 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
2088 if (!(ctrl & SDHCI_CTRL_EXEC_TUNING)) {
2089 if (ctrl & SDHCI_CTRL_TUNED_CLK)
2090 return; /* Success! */
2091 break;
2092 }
2093
2094 /* eMMC spec does not require a delay between tuning cycles */
2095 if (opcode == MMC_SEND_TUNING_BLOCK)
2096 mdelay(1);
2097 }
2098
2099 pr_info("%s: Tuning failed, falling back to fixed sampling clock\n",
2100 mmc_hostname(host->mmc));
2101 sdhci_reset_tuning(host);
2102}
2103
Masahiro Yamada85a882c2016-12-08 21:50:54 +09002104int sdhci_execute_tuning(struct mmc_host *mmc, u32 opcode)
Arindam Nathb513ea22011-05-05 12:19:04 +05302105{
Russell King4b6f37d2014-04-25 12:59:36 +01002106 struct sdhci_host *host = mmc_priv(mmc);
Arindam Nathb513ea22011-05-05 12:19:04 +05302107 int err = 0;
Aisheng Dong2b35bd82013-12-23 19:13:04 +08002108 unsigned long flags;
Adrian Hunter38e40bf2014-12-05 19:25:30 +02002109 unsigned int tuning_count = 0;
Adrian Hunterb5540ce2014-12-05 19:25:31 +02002110 bool hs400_tuning;
Arindam Nathb513ea22011-05-05 12:19:04 +05302111
Aisheng Dong2b35bd82013-12-23 19:13:04 +08002112 spin_lock_irqsave(&host->lock, flags);
Arindam Nathb513ea22011-05-05 12:19:04 +05302113
Adrian Hunterb5540ce2014-12-05 19:25:31 +02002114 hs400_tuning = host->flags & SDHCI_HS400_TUNING;
Adrian Hunterb5540ce2014-12-05 19:25:31 +02002115
Adrian Hunter38e40bf2014-12-05 19:25:30 +02002116 if (host->tuning_mode == SDHCI_TUNING_MODE_1)
2117 tuning_count = host->tuning_count;
2118
Arindam Nathb513ea22011-05-05 12:19:04 +05302119 /*
Weijun Yang9faac7b2015-10-04 12:04:12 +00002120 * The Host Controller needs tuning in case of SDR104 and DDR50
2121 * mode, and for SDR50 mode when Use Tuning for SDR50 is set in
2122 * the Capabilities register.
Girish K S069c9f12012-01-06 09:56:39 +05302123 * If the Host Controller supports the HS200 mode then the
2124 * tuning function has to be executed.
Arindam Nathb513ea22011-05-05 12:19:04 +05302125 */
Russell King4b6f37d2014-04-25 12:59:36 +01002126 switch (host->timing) {
Adrian Hunterb5540ce2014-12-05 19:25:31 +02002127 /* HS400 tuning is done in HS200 mode */
Adrian Huntere9fb05d2014-11-06 15:19:06 +02002128 case MMC_TIMING_MMC_HS400:
Adrian Hunterb5540ce2014-12-05 19:25:31 +02002129 err = -EINVAL;
2130 goto out_unlock;
2131
Russell King4b6f37d2014-04-25 12:59:36 +01002132 case MMC_TIMING_MMC_HS200:
Adrian Hunterb5540ce2014-12-05 19:25:31 +02002133 /*
2134 * Periodic re-tuning for HS400 is not expected to be needed, so
2135 * disable it here.
2136 */
2137 if (hs400_tuning)
2138 tuning_count = 0;
2139 break;
2140
Russell King4b6f37d2014-04-25 12:59:36 +01002141 case MMC_TIMING_UHS_SDR104:
Weijun Yang9faac7b2015-10-04 12:04:12 +00002142 case MMC_TIMING_UHS_DDR50:
Russell King4b6f37d2014-04-25 12:59:36 +01002143 break;
Girish K S069c9f12012-01-06 09:56:39 +05302144
Russell King4b6f37d2014-04-25 12:59:36 +01002145 case MMC_TIMING_UHS_SDR50:
Adrian Hunter4228b212016-04-20 09:24:03 +03002146 if (host->flags & SDHCI_SDR50_NEEDS_TUNING)
Russell King4b6f37d2014-04-25 12:59:36 +01002147 break;
2148 /* FALLTHROUGH */
2149
2150 default:
Adrian Hunterd519c862014-12-05 19:25:29 +02002151 goto out_unlock;
Arindam Nathb513ea22011-05-05 12:19:04 +05302152 }
2153
Dong Aisheng45251812013-09-13 19:11:30 +08002154 if (host->ops->platform_execute_tuning) {
Aisheng Dong2b35bd82013-12-23 19:13:04 +08002155 spin_unlock_irqrestore(&host->lock, flags);
Ritesh Harjani8a8fa872017-01-10 12:30:50 +05302156 err = host->ops->platform_execute_tuning(host, opcode);
2157 spin_lock_irqsave(&host->lock, flags);
2158 goto out_unlock;
Dong Aisheng45251812013-09-13 19:11:30 +08002159 }
2160
Adrian Hunter6b11e702016-12-02 15:14:27 +02002161 host->mmc->retune_period = tuning_count;
2162
Adrian Hunterda4bc4f2016-12-02 15:59:23 +02002163 sdhci_start_tuning(host);
Arindam Nathb513ea22011-05-05 12:19:04 +05302164
Adrian Hunter6b11e702016-12-02 15:14:27 +02002165 __sdhci_execute_tuning(host, opcode, flags);
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05302166
Adrian Hunterda4bc4f2016-12-02 15:59:23 +02002167 sdhci_end_tuning(host);
Adrian Hunterd519c862014-12-05 19:25:29 +02002168out_unlock:
Ritesh Harjani8a8fa872017-01-10 12:30:50 +05302169 host->flags &= ~SDHCI_HS400_TUNING;
Aisheng Dong2b35bd82013-12-23 19:13:04 +08002170 spin_unlock_irqrestore(&host->lock, flags);
Adrian Hunter6b11e702016-12-02 15:14:27 +02002171
Arindam Nathb513ea22011-05-05 12:19:04 +05302172 return err;
2173}
Masahiro Yamada85a882c2016-12-08 21:50:54 +09002174EXPORT_SYMBOL_GPL(sdhci_execute_tuning);
Arindam Nathb513ea22011-05-05 12:19:04 +05302175
Kevin Liu52983382013-01-31 11:31:37 +08002176static void sdhci_enable_preset_value(struct sdhci_host *host, bool enable)
Arindam Nath4d55c5a2011-05-05 12:19:05 +05302177{
Arindam Nath4d55c5a2011-05-05 12:19:05 +05302178 /* Host Controller v3.00 defines preset value registers */
2179 if (host->version < SDHCI_SPEC_300)
2180 return;
2181
Arindam Nath4d55c5a2011-05-05 12:19:05 +05302182 /*
2183 * We only enable or disable Preset Value if they are not already
2184 * enabled or disabled respectively. Otherwise, we bail out.
2185 */
Russell Kingda91a8f2014-04-25 13:00:12 +01002186 if (host->preset_enabled != enable) {
2187 u16 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
2188
2189 if (enable)
2190 ctrl |= SDHCI_CTRL_PRESET_VAL_ENABLE;
2191 else
2192 ctrl &= ~SDHCI_CTRL_PRESET_VAL_ENABLE;
2193
Arindam Nath4d55c5a2011-05-05 12:19:05 +05302194 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
Russell Kingda91a8f2014-04-25 13:00:12 +01002195
2196 if (enable)
2197 host->flags |= SDHCI_PV_ENABLED;
2198 else
2199 host->flags &= ~SDHCI_PV_ENABLED;
2200
2201 host->preset_enabled = enable;
Arindam Nath4d55c5a2011-05-05 12:19:05 +05302202 }
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002203}
2204
Haibo Chen348487c2014-12-09 17:04:05 +08002205static void sdhci_post_req(struct mmc_host *mmc, struct mmc_request *mrq,
2206 int err)
2207{
2208 struct sdhci_host *host = mmc_priv(mmc);
2209 struct mmc_data *data = mrq->data;
2210
Russell Kingf48f0392016-01-26 13:40:32 +00002211 if (data->host_cookie != COOKIE_UNMAPPED)
Russell King771a3dc2016-01-26 13:40:53 +00002212 dma_unmap_sg(mmc_dev(host->mmc), data->sg, data->sg_len,
2213 data->flags & MMC_DATA_WRITE ?
2214 DMA_TO_DEVICE : DMA_FROM_DEVICE);
2215
2216 data->host_cookie = COOKIE_UNMAPPED;
Haibo Chen348487c2014-12-09 17:04:05 +08002217}
2218
Linus Walleijd3c6aac2016-11-23 11:02:24 +01002219static void sdhci_pre_req(struct mmc_host *mmc, struct mmc_request *mrq)
Haibo Chen348487c2014-12-09 17:04:05 +08002220{
2221 struct sdhci_host *host = mmc_priv(mmc);
2222
Haibo Chend31911b2015-08-25 10:02:11 +08002223 mrq->data->host_cookie = COOKIE_UNMAPPED;
Haibo Chen348487c2014-12-09 17:04:05 +08002224
2225 if (host->flags & SDHCI_REQ_USE_DMA)
Russell King94538e52016-01-26 13:40:37 +00002226 sdhci_pre_dma_transfer(host, mrq->data, COOKIE_PRE_MAPPED);
Haibo Chen348487c2014-12-09 17:04:05 +08002227}
2228
Adrian Hunter5d0d11c2016-06-29 16:24:31 +03002229static inline bool sdhci_has_requests(struct sdhci_host *host)
2230{
2231 return host->cmd || host->data_cmd;
2232}
2233
2234static void sdhci_error_out_mrqs(struct sdhci_host *host, int err)
2235{
2236 if (host->data_cmd) {
2237 host->data_cmd->error = err;
2238 sdhci_finish_mrq(host, host->data_cmd->mrq);
2239 }
2240
2241 if (host->cmd) {
2242 host->cmd->error = err;
2243 sdhci_finish_mrq(host, host->cmd->mrq);
2244 }
2245}
2246
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002247static void sdhci_card_event(struct mmc_host *mmc)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002248{
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002249 struct sdhci_host *host = mmc_priv(mmc);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002250 unsigned long flags;
Krzysztof Kozlowski28367662015-01-05 10:50:15 +01002251 int present;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002252
Christian Daudt722e1282013-06-20 14:26:36 -07002253 /* First check if client has provided their own card event */
2254 if (host->ops->card_event)
2255 host->ops->card_event(host);
2256
Adrian Hunterd3940f22016-06-29 16:24:14 +03002257 present = mmc->ops->get_cd(mmc);
Krzysztof Kozlowski28367662015-01-05 10:50:15 +01002258
Pierre Ossmand129bce2006-03-24 03:18:17 -08002259 spin_lock_irqsave(&host->lock, flags);
2260
Adrian Hunter5d0d11c2016-06-29 16:24:31 +03002261 /* Check sdhci_has_requests() first in case we are runtime suspended */
2262 if (sdhci_has_requests(host) && !present) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05302263 pr_err("%s: Card removed during transfer!\n",
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002264 mmc_hostname(host->mmc));
Girish K Sa3c76eb2011-10-11 11:44:09 +05302265 pr_err("%s: Resetting controller.\n",
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002266 mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -08002267
Russell King03231f92014-04-25 12:57:12 +01002268 sdhci_do_reset(host, SDHCI_RESET_CMD);
2269 sdhci_do_reset(host, SDHCI_RESET_DATA);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002270
Adrian Hunter5d0d11c2016-06-29 16:24:31 +03002271 sdhci_error_out_mrqs(host, -ENOMEDIUM);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002272 }
2273
2274 spin_unlock_irqrestore(&host->lock, flags);
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002275}
2276
2277static const struct mmc_host_ops sdhci_ops = {
2278 .request = sdhci_request,
Haibo Chen348487c2014-12-09 17:04:05 +08002279 .post_req = sdhci_post_req,
2280 .pre_req = sdhci_pre_req,
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002281 .set_ios = sdhci_set_ios,
Kevin Liu94144a42013-02-28 17:35:53 +08002282 .get_cd = sdhci_get_cd,
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002283 .get_ro = sdhci_get_ro,
2284 .hw_reset = sdhci_hw_reset,
2285 .enable_sdio_irq = sdhci_enable_sdio_irq,
2286 .start_signal_voltage_switch = sdhci_start_signal_voltage_switch,
Adrian Hunterb5540ce2014-12-05 19:25:31 +02002287 .prepare_hs400_tuning = sdhci_prepare_hs400_tuning,
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002288 .execute_tuning = sdhci_execute_tuning,
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002289 .card_event = sdhci_card_event,
Kevin Liu20b92a32012-12-17 19:29:26 +08002290 .card_busy = sdhci_card_busy,
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002291};
2292
2293/*****************************************************************************\
2294 * *
2295 * Tasklets *
2296 * *
2297\*****************************************************************************/
2298
Adrian Hunter4e9f8fe2016-06-29 16:24:34 +03002299static bool sdhci_request_done(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002300{
Pierre Ossmand129bce2006-03-24 03:18:17 -08002301 unsigned long flags;
2302 struct mmc_request *mrq;
Adrian Hunter4e9f8fe2016-06-29 16:24:34 +03002303 int i;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002304
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002305 spin_lock_irqsave(&host->lock, flags);
2306
Adrian Hunter4e9f8fe2016-06-29 16:24:34 +03002307 for (i = 0; i < SDHCI_MAX_MRQS; i++) {
2308 mrq = host->mrqs_done[i];
Adrian Hunter6ebebea2016-11-02 15:49:08 +02002309 if (mrq)
Adrian Hunter4e9f8fe2016-06-29 16:24:34 +03002310 break;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002311 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08002312
Adrian Hunter4e9f8fe2016-06-29 16:24:34 +03002313 if (!mrq) {
2314 spin_unlock_irqrestore(&host->lock, flags);
2315 return true;
2316 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08002317
Adrian Hunterd7422fb2016-06-29 16:24:33 +03002318 sdhci_del_timer(host, mrq);
2319
Pierre Ossmand129bce2006-03-24 03:18:17 -08002320 /*
Russell King054cedf2016-01-26 13:40:42 +00002321 * Always unmap the data buffers if they were mapped by
2322 * sdhci_prepare_data() whenever we finish with a request.
2323 * This avoids leaking DMA mappings on error.
2324 */
2325 if (host->flags & SDHCI_REQ_USE_DMA) {
2326 struct mmc_data *data = mrq->data;
2327
2328 if (data && data->host_cookie == COOKIE_MAPPED) {
2329 dma_unmap_sg(mmc_dev(host->mmc), data->sg, data->sg_len,
2330 (data->flags & MMC_DATA_READ) ?
2331 DMA_FROM_DEVICE : DMA_TO_DEVICE);
2332 data->host_cookie = COOKIE_UNMAPPED;
2333 }
2334 }
2335
2336 /*
Pierre Ossmand129bce2006-03-24 03:18:17 -08002337 * The controller needs a reset of internal state machines
2338 * upon error conditions.
2339 */
Adrian Hunter0cc563c2016-06-29 16:24:28 +03002340 if (sdhci_needs_reset(host, mrq)) {
Adrian Hunter6ebebea2016-11-02 15:49:08 +02002341 /*
2342 * Do not finish until command and data lines are available for
2343 * reset. Note there can only be one other mrq, so it cannot
2344 * also be in mrqs_done, otherwise host->cmd and host->data_cmd
2345 * would both be null.
2346 */
2347 if (host->cmd || host->data_cmd) {
2348 spin_unlock_irqrestore(&host->lock, flags);
2349 return true;
2350 }
2351
Pierre Ossman645289d2006-06-30 02:22:33 -07002352 /* Some controllers need this kick or reset won't work here */
Andy Shevchenko8213af32013-01-07 16:31:08 +02002353 if (host->quirks & SDHCI_QUIRK_CLOCK_BEFORE_RESET)
Pierre Ossman645289d2006-06-30 02:22:33 -07002354 /* This is to force an update */
Russell King17710592014-04-25 12:58:55 +01002355 host->ops->set_clock(host, host->clock);
Pierre Ossman645289d2006-06-30 02:22:33 -07002356
2357 /* Spec says we should do both at the same time, but Ricoh
2358 controllers do not like that. */
Adrian Hunter6ebebea2016-11-02 15:49:08 +02002359 sdhci_do_reset(host, SDHCI_RESET_CMD);
2360 sdhci_do_reset(host, SDHCI_RESET_DATA);
Adrian Huntered1563d2016-06-29 16:24:29 +03002361
2362 host->pending_reset = false;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002363 }
2364
Adrian Hunter4e9f8fe2016-06-29 16:24:34 +03002365 if (!sdhci_has_requests(host))
2366 sdhci_led_deactivate(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002367
Adrian Hunter6ebebea2016-11-02 15:49:08 +02002368 host->mrqs_done[i] = NULL;
2369
Pierre Ossman5f25a662006-10-04 02:15:39 -07002370 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -08002371 spin_unlock_irqrestore(&host->lock, flags);
2372
2373 mmc_request_done(host->mmc, mrq);
Adrian Hunter4e9f8fe2016-06-29 16:24:34 +03002374
2375 return false;
2376}
2377
2378static void sdhci_tasklet_finish(unsigned long param)
2379{
2380 struct sdhci_host *host = (struct sdhci_host *)param;
2381
2382 while (!sdhci_request_done(host))
2383 ;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002384}
2385
2386static void sdhci_timeout_timer(unsigned long data)
2387{
2388 struct sdhci_host *host;
2389 unsigned long flags;
2390
2391 host = (struct sdhci_host*)data;
2392
2393 spin_lock_irqsave(&host->lock, flags);
2394
Adrian Hunterd7422fb2016-06-29 16:24:33 +03002395 if (host->cmd && !sdhci_data_line_cmd(host->cmd)) {
2396 pr_err("%s: Timeout waiting for hardware cmd interrupt.\n",
2397 mmc_hostname(host->mmc));
2398 sdhci_dumpregs(host);
2399
2400 host->cmd->error = -ETIMEDOUT;
2401 sdhci_finish_mrq(host, host->cmd->mrq);
2402 }
2403
2404 mmiowb();
2405 spin_unlock_irqrestore(&host->lock, flags);
2406}
2407
2408static void sdhci_timeout_data_timer(unsigned long data)
2409{
2410 struct sdhci_host *host;
2411 unsigned long flags;
2412
2413 host = (struct sdhci_host *)data;
2414
2415 spin_lock_irqsave(&host->lock, flags);
2416
2417 if (host->data || host->data_cmd ||
2418 (host->cmd && sdhci_data_line_cmd(host->cmd))) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01002419 pr_err("%s: Timeout waiting for hardware interrupt.\n",
2420 mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -08002421 sdhci_dumpregs(host);
2422
2423 if (host->data) {
Pierre Ossman17b04292007-07-22 22:18:46 +02002424 host->data->error = -ETIMEDOUT;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002425 sdhci_finish_data(host);
Adrian Hunterd7422fb2016-06-29 16:24:33 +03002426 } else if (host->data_cmd) {
2427 host->data_cmd->error = -ETIMEDOUT;
2428 sdhci_finish_mrq(host, host->data_cmd->mrq);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002429 } else {
Adrian Hunterd7422fb2016-06-29 16:24:33 +03002430 host->cmd->error = -ETIMEDOUT;
2431 sdhci_finish_mrq(host, host->cmd->mrq);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002432 }
2433 }
2434
Pierre Ossman5f25a662006-10-04 02:15:39 -07002435 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -08002436 spin_unlock_irqrestore(&host->lock, flags);
2437}
2438
2439/*****************************************************************************\
2440 * *
2441 * Interrupt handling *
2442 * *
2443\*****************************************************************************/
2444
Adrian Hunterfc605f12016-10-05 12:11:21 +03002445static void sdhci_cmd_irq(struct sdhci_host *host, u32 intmask)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002446{
Pierre Ossmand129bce2006-03-24 03:18:17 -08002447 if (!host->cmd) {
Adrian Huntered1563d2016-06-29 16:24:29 +03002448 /*
2449 * SDHCI recovers from errors by resetting the cmd and data
2450 * circuits. Until that is done, there very well might be more
2451 * interrupts, so ignore them in that case.
2452 */
2453 if (host->pending_reset)
2454 return;
Marek Vasut2e4456f2015-11-18 10:47:02 +01002455 pr_err("%s: Got command interrupt 0x%08x even though no command operation was in progress.\n",
2456 mmc_hostname(host->mmc), (unsigned)intmask);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002457 sdhci_dumpregs(host);
2458 return;
2459 }
2460
Russell Kingec014cb2016-01-26 13:39:39 +00002461 if (intmask & (SDHCI_INT_TIMEOUT | SDHCI_INT_CRC |
2462 SDHCI_INT_END_BIT | SDHCI_INT_INDEX)) {
2463 if (intmask & SDHCI_INT_TIMEOUT)
2464 host->cmd->error = -ETIMEDOUT;
2465 else
2466 host->cmd->error = -EILSEQ;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002467
Russell King71fcbda2016-01-26 13:39:45 +00002468 /*
2469 * If this command initiates a data phase and a response
2470 * CRC error is signalled, the card can start transferring
2471 * data - the card may have received the command without
2472 * error. We must not terminate the mmc_request early.
2473 *
2474 * If the card did not receive the command or returned an
2475 * error which prevented it sending data, the data phase
2476 * will time out.
2477 */
2478 if (host->cmd->data &&
2479 (intmask & (SDHCI_INT_CRC | SDHCI_INT_TIMEOUT)) ==
2480 SDHCI_INT_CRC) {
2481 host->cmd = NULL;
2482 return;
2483 }
2484
Adrian Huntera6d3bdd2016-06-29 16:24:27 +03002485 sdhci_finish_mrq(host, host->cmd->mrq);
Pierre Ossmane8095172008-07-25 01:09:08 +02002486 return;
2487 }
2488
Pierre Ossmane8095172008-07-25 01:09:08 +02002489 if (intmask & SDHCI_INT_RESPONSE)
Pierre Ossman43b58b32007-07-25 23:15:27 +02002490 sdhci_finish_command(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002491}
2492
George G. Davis0957c332010-02-18 12:32:12 -05002493#ifdef CONFIG_MMC_DEBUG
Adrian Hunter08621b12014-11-04 12:42:38 +02002494static void sdhci_adma_show_error(struct sdhci_host *host)
Ben Dooks6882a8c2009-06-14 13:52:38 +01002495{
2496 const char *name = mmc_hostname(host->mmc);
Adrian Hunter1c3d5f62014-11-04 12:42:41 +02002497 void *desc = host->adma_table;
Ben Dooks6882a8c2009-06-14 13:52:38 +01002498
2499 sdhci_dumpregs(host);
2500
2501 while (true) {
Adrian Huntere57a5f62014-11-04 12:42:46 +02002502 struct sdhci_adma2_64_desc *dma_desc = desc;
Ben Dooks6882a8c2009-06-14 13:52:38 +01002503
Adrian Huntere57a5f62014-11-04 12:42:46 +02002504 if (host->flags & SDHCI_USE_64_BIT_DMA)
2505 DBG("%s: %p: DMA 0x%08x%08x, LEN 0x%04x, Attr=0x%02x\n",
2506 name, desc, le32_to_cpu(dma_desc->addr_hi),
2507 le32_to_cpu(dma_desc->addr_lo),
2508 le16_to_cpu(dma_desc->len),
2509 le16_to_cpu(dma_desc->cmd));
2510 else
2511 DBG("%s: %p: DMA 0x%08x, LEN 0x%04x, Attr=0x%02x\n",
2512 name, desc, le32_to_cpu(dma_desc->addr_lo),
2513 le16_to_cpu(dma_desc->len),
2514 le16_to_cpu(dma_desc->cmd));
Ben Dooks6882a8c2009-06-14 13:52:38 +01002515
Adrian Hunter76fe3792014-11-04 12:42:42 +02002516 desc += host->desc_sz;
Ben Dooks6882a8c2009-06-14 13:52:38 +01002517
Adrian Hunter05452302014-11-04 12:42:45 +02002518 if (dma_desc->cmd & cpu_to_le16(ADMA2_END))
Ben Dooks6882a8c2009-06-14 13:52:38 +01002519 break;
2520 }
2521}
2522#else
Adrian Hunter08621b12014-11-04 12:42:38 +02002523static void sdhci_adma_show_error(struct sdhci_host *host) { }
Ben Dooks6882a8c2009-06-14 13:52:38 +01002524#endif
2525
Pierre Ossmand129bce2006-03-24 03:18:17 -08002526static void sdhci_data_irq(struct sdhci_host *host, u32 intmask)
2527{
Girish K S069c9f12012-01-06 09:56:39 +05302528 u32 command;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002529
Arindam Nathb513ea22011-05-05 12:19:04 +05302530 /* CMD19 generates _only_ Buffer Read Ready interrupt */
2531 if (intmask & SDHCI_INT_DATA_AVAIL) {
Girish K S069c9f12012-01-06 09:56:39 +05302532 command = SDHCI_GET_CMD(sdhci_readw(host, SDHCI_COMMAND));
2533 if (command == MMC_SEND_TUNING_BLOCK ||
2534 command == MMC_SEND_TUNING_BLOCK_HS200) {
Arindam Nathb513ea22011-05-05 12:19:04 +05302535 host->tuning_done = 1;
2536 wake_up(&host->buf_ready_int);
2537 return;
2538 }
2539 }
2540
Pierre Ossmand129bce2006-03-24 03:18:17 -08002541 if (!host->data) {
Adrian Hunter7c89a3d2016-06-29 16:24:23 +03002542 struct mmc_command *data_cmd = host->data_cmd;
2543
Pierre Ossmand129bce2006-03-24 03:18:17 -08002544 /*
Pierre Ossmane8095172008-07-25 01:09:08 +02002545 * The "data complete" interrupt is also used to
2546 * indicate that a busy state has ended. See comment
2547 * above in sdhci_cmd_irq().
Pierre Ossmand129bce2006-03-24 03:18:17 -08002548 */
Adrian Hunter7c89a3d2016-06-29 16:24:23 +03002549 if (data_cmd && (data_cmd->flags & MMC_RSP_BUSY)) {
Matthieu CASTETc5abd5e2014-08-14 16:03:17 +02002550 if (intmask & SDHCI_INT_DATA_TIMEOUT) {
Adrian Hunter69b962a2016-11-02 15:49:09 +02002551 host->data_cmd = NULL;
Adrian Hunter7c89a3d2016-06-29 16:24:23 +03002552 data_cmd->error = -ETIMEDOUT;
Adrian Huntera6d3bdd2016-06-29 16:24:27 +03002553 sdhci_finish_mrq(host, data_cmd->mrq);
Matthieu CASTETc5abd5e2014-08-14 16:03:17 +02002554 return;
2555 }
Pierre Ossmane8095172008-07-25 01:09:08 +02002556 if (intmask & SDHCI_INT_DATA_END) {
Adrian Hunter69b962a2016-11-02 15:49:09 +02002557 host->data_cmd = NULL;
Chanho Mine99783a2014-08-30 12:40:40 +09002558 /*
2559 * Some cards handle busy-end interrupt
2560 * before the command completed, so make
2561 * sure we do things in the proper order.
2562 */
Adrian Hunterea968022016-06-29 16:24:24 +03002563 if (host->cmd == data_cmd)
2564 return;
2565
Adrian Huntera6d3bdd2016-06-29 16:24:27 +03002566 sdhci_finish_mrq(host, data_cmd->mrq);
Pierre Ossmane8095172008-07-25 01:09:08 +02002567 return;
2568 }
2569 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08002570
Adrian Huntered1563d2016-06-29 16:24:29 +03002571 /*
2572 * SDHCI recovers from errors by resetting the cmd and data
2573 * circuits. Until that is done, there very well might be more
2574 * interrupts, so ignore them in that case.
2575 */
2576 if (host->pending_reset)
2577 return;
2578
Marek Vasut2e4456f2015-11-18 10:47:02 +01002579 pr_err("%s: Got data interrupt 0x%08x even though no data operation was in progress.\n",
2580 mmc_hostname(host->mmc), (unsigned)intmask);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002581 sdhci_dumpregs(host);
2582
2583 return;
2584 }
2585
2586 if (intmask & SDHCI_INT_DATA_TIMEOUT)
Pierre Ossman17b04292007-07-22 22:18:46 +02002587 host->data->error = -ETIMEDOUT;
Aries Lee22113ef2010-12-15 08:14:24 +01002588 else if (intmask & SDHCI_INT_DATA_END_BIT)
2589 host->data->error = -EILSEQ;
2590 else if ((intmask & SDHCI_INT_DATA_CRC) &&
2591 SDHCI_GET_CMD(sdhci_readw(host, SDHCI_COMMAND))
2592 != MMC_BUS_TEST_R)
Pierre Ossman17b04292007-07-22 22:18:46 +02002593 host->data->error = -EILSEQ;
Ben Dooks6882a8c2009-06-14 13:52:38 +01002594 else if (intmask & SDHCI_INT_ADMA_ERROR) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05302595 pr_err("%s: ADMA error\n", mmc_hostname(host->mmc));
Adrian Hunter08621b12014-11-04 12:42:38 +02002596 sdhci_adma_show_error(host);
Pierre Ossman2134a922008-06-28 18:28:51 +02002597 host->data->error = -EIO;
Haijun Zhanga4071fb2012-12-04 10:41:28 +08002598 if (host->ops->adma_workaround)
2599 host->ops->adma_workaround(host, intmask);
Ben Dooks6882a8c2009-06-14 13:52:38 +01002600 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08002601
Pierre Ossman17b04292007-07-22 22:18:46 +02002602 if (host->data->error)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002603 sdhci_finish_data(host);
2604 else {
Pierre Ossmana406f5a2006-07-02 16:50:59 +01002605 if (intmask & (SDHCI_INT_DATA_AVAIL | SDHCI_INT_SPACE_AVAIL))
Pierre Ossmand129bce2006-03-24 03:18:17 -08002606 sdhci_transfer_pio(host);
2607
Pierre Ossman6ba736a2007-05-13 22:39:23 +02002608 /*
2609 * We currently don't do anything fancy with DMA
2610 * boundaries, but as we can't disable the feature
2611 * we need to at least restart the transfer.
Mikko Vinnif6a03cb2011-04-12 09:36:18 -04002612 *
2613 * According to the spec sdhci_readl(host, SDHCI_DMA_ADDRESS)
2614 * should return a valid address to continue from, but as
2615 * some controllers are faulty, don't trust them.
Pierre Ossman6ba736a2007-05-13 22:39:23 +02002616 */
Mikko Vinnif6a03cb2011-04-12 09:36:18 -04002617 if (intmask & SDHCI_INT_DMA_END) {
2618 u32 dmastart, dmanow;
2619 dmastart = sg_dma_address(host->data->sg);
2620 dmanow = dmastart + host->data->bytes_xfered;
2621 /*
2622 * Force update to the next DMA block boundary.
2623 */
2624 dmanow = (dmanow &
2625 ~(SDHCI_DEFAULT_BOUNDARY_SIZE - 1)) +
2626 SDHCI_DEFAULT_BOUNDARY_SIZE;
2627 host->data->bytes_xfered = dmanow - dmastart;
2628 DBG("%s: DMA base 0x%08x, transferred 0x%06x bytes,"
2629 " next 0x%08x\n",
2630 mmc_hostname(host->mmc), dmastart,
2631 host->data->bytes_xfered, dmanow);
2632 sdhci_writel(host, dmanow, SDHCI_DMA_ADDRESS);
2633 }
Pierre Ossman6ba736a2007-05-13 22:39:23 +02002634
Pierre Ossmane538fbe2007-08-12 16:46:32 +02002635 if (intmask & SDHCI_INT_DATA_END) {
Adrian Hunter7c89a3d2016-06-29 16:24:23 +03002636 if (host->cmd == host->data_cmd) {
Pierre Ossmane538fbe2007-08-12 16:46:32 +02002637 /*
2638 * Data managed to finish before the
2639 * command completed. Make sure we do
2640 * things in the proper order.
2641 */
2642 host->data_early = 1;
2643 } else {
2644 sdhci_finish_data(host);
2645 }
2646 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08002647 }
2648}
2649
David Howells7d12e782006-10-05 14:55:46 +01002650static irqreturn_t sdhci_irq(int irq, void *dev_id)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002651{
Russell King781e9892014-04-25 12:55:46 +01002652 irqreturn_t result = IRQ_NONE;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002653 struct sdhci_host *host = dev_id;
Russell King41005002014-04-25 12:55:36 +01002654 u32 intmask, mask, unexpected = 0;
Russell King781e9892014-04-25 12:55:46 +01002655 int max_loops = 16;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002656
2657 spin_lock(&host->lock);
2658
Russell Kingbe138552014-04-25 12:55:56 +01002659 if (host->runtime_suspended && !sdhci_sdio_irq_enabled(host)) {
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002660 spin_unlock(&host->lock);
Adrian Hunter655bca72014-03-11 10:09:36 +02002661 return IRQ_NONE;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002662 }
2663
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03002664 intmask = sdhci_readl(host, SDHCI_INT_STATUS);
Mark Lord62df67a52007-03-06 13:30:13 +01002665 if (!intmask || intmask == 0xffffffff) {
Pierre Ossmand129bce2006-03-24 03:18:17 -08002666 result = IRQ_NONE;
2667 goto out;
2668 }
2669
Russell King41005002014-04-25 12:55:36 +01002670 do {
2671 /* Clear selected interrupts. */
2672 mask = intmask & (SDHCI_INT_CMD_MASK | SDHCI_INT_DATA_MASK |
2673 SDHCI_INT_BUS_POWER);
2674 sdhci_writel(host, mask, SDHCI_INT_STATUS);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002675
Russell King41005002014-04-25 12:55:36 +01002676 DBG("*** %s got interrupt: 0x%08x\n",
2677 mmc_hostname(host->mmc), intmask);
2678
2679 if (intmask & (SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE)) {
2680 u32 present = sdhci_readl(host, SDHCI_PRESENT_STATE) &
2681 SDHCI_CARD_PRESENT;
2682
2683 /*
2684 * There is a observation on i.mx esdhc. INSERT
2685 * bit will be immediately set again when it gets
2686 * cleared, if a card is inserted. We have to mask
2687 * the irq to prevent interrupt storm which will
2688 * freeze the system. And the REMOVE gets the
2689 * same situation.
2690 *
2691 * More testing are needed here to ensure it works
2692 * for other platforms though.
2693 */
Russell Kingb537f942014-04-25 12:56:01 +01002694 host->ier &= ~(SDHCI_INT_CARD_INSERT |
2695 SDHCI_INT_CARD_REMOVE);
2696 host->ier |= present ? SDHCI_INT_CARD_REMOVE :
2697 SDHCI_INT_CARD_INSERT;
2698 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
2699 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Russell King41005002014-04-25 12:55:36 +01002700
2701 sdhci_writel(host, intmask & (SDHCI_INT_CARD_INSERT |
2702 SDHCI_INT_CARD_REMOVE), SDHCI_INT_STATUS);
Russell King3560db82014-04-25 12:55:51 +01002703
2704 host->thread_isr |= intmask & (SDHCI_INT_CARD_INSERT |
2705 SDHCI_INT_CARD_REMOVE);
2706 result = IRQ_WAKE_THREAD;
Russell King41005002014-04-25 12:55:36 +01002707 }
2708
2709 if (intmask & SDHCI_INT_CMD_MASK)
Adrian Hunterfc605f12016-10-05 12:11:21 +03002710 sdhci_cmd_irq(host, intmask & SDHCI_INT_CMD_MASK);
Russell King41005002014-04-25 12:55:36 +01002711
2712 if (intmask & SDHCI_INT_DATA_MASK)
2713 sdhci_data_irq(host, intmask & SDHCI_INT_DATA_MASK);
2714
2715 if (intmask & SDHCI_INT_BUS_POWER)
2716 pr_err("%s: Card is consuming too much power!\n",
2717 mmc_hostname(host->mmc));
2718
Dong Aishengf37b20e2016-07-12 15:46:17 +08002719 if (intmask & SDHCI_INT_RETUNE)
2720 mmc_retune_needed(host->mmc);
2721
Gabriel Krisman Bertazi161e6d42017-01-16 12:23:42 -02002722 if ((intmask & SDHCI_INT_CARD_INT) &&
2723 (host->ier & SDHCI_INT_CARD_INT)) {
Russell King781e9892014-04-25 12:55:46 +01002724 sdhci_enable_sdio_irq_nolock(host, false);
2725 host->thread_isr |= SDHCI_INT_CARD_INT;
2726 result = IRQ_WAKE_THREAD;
2727 }
Russell King41005002014-04-25 12:55:36 +01002728
2729 intmask &= ~(SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE |
2730 SDHCI_INT_CMD_MASK | SDHCI_INT_DATA_MASK |
2731 SDHCI_INT_ERROR | SDHCI_INT_BUS_POWER |
Dong Aishengf37b20e2016-07-12 15:46:17 +08002732 SDHCI_INT_RETUNE | SDHCI_INT_CARD_INT);
Russell King41005002014-04-25 12:55:36 +01002733
2734 if (intmask) {
2735 unexpected |= intmask;
2736 sdhci_writel(host, intmask, SDHCI_INT_STATUS);
2737 }
2738
Russell King781e9892014-04-25 12:55:46 +01002739 if (result == IRQ_NONE)
2740 result = IRQ_HANDLED;
Russell King41005002014-04-25 12:55:36 +01002741
2742 intmask = sdhci_readl(host, SDHCI_INT_STATUS);
Russell King41005002014-04-25 12:55:36 +01002743 } while (intmask && --max_loops);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002744out:
2745 spin_unlock(&host->lock);
2746
Alexander Stein6379b232012-03-14 09:52:10 +01002747 if (unexpected) {
2748 pr_err("%s: Unexpected interrupt 0x%08x.\n",
2749 mmc_hostname(host->mmc), unexpected);
2750 sdhci_dumpregs(host);
2751 }
Pierre Ossmanf75979b2007-09-04 07:59:18 +02002752
Pierre Ossmand129bce2006-03-24 03:18:17 -08002753 return result;
2754}
2755
Russell King781e9892014-04-25 12:55:46 +01002756static irqreturn_t sdhci_thread_irq(int irq, void *dev_id)
2757{
2758 struct sdhci_host *host = dev_id;
2759 unsigned long flags;
2760 u32 isr;
2761
2762 spin_lock_irqsave(&host->lock, flags);
2763 isr = host->thread_isr;
2764 host->thread_isr = 0;
2765 spin_unlock_irqrestore(&host->lock, flags);
2766
Russell King3560db82014-04-25 12:55:51 +01002767 if (isr & (SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE)) {
Adrian Hunterd3940f22016-06-29 16:24:14 +03002768 struct mmc_host *mmc = host->mmc;
2769
2770 mmc->ops->card_event(mmc);
2771 mmc_detect_change(mmc, msecs_to_jiffies(200));
Russell King3560db82014-04-25 12:55:51 +01002772 }
2773
Russell King781e9892014-04-25 12:55:46 +01002774 if (isr & SDHCI_INT_CARD_INT) {
2775 sdio_run_irqs(host->mmc);
2776
2777 spin_lock_irqsave(&host->lock, flags);
2778 if (host->flags & SDHCI_SDIO_IRQ_ENABLED)
2779 sdhci_enable_sdio_irq_nolock(host, true);
2780 spin_unlock_irqrestore(&host->lock, flags);
2781 }
2782
2783 return isr ? IRQ_HANDLED : IRQ_NONE;
2784}
2785
Pierre Ossmand129bce2006-03-24 03:18:17 -08002786/*****************************************************************************\
2787 * *
2788 * Suspend/resume *
2789 * *
2790\*****************************************************************************/
2791
2792#ifdef CONFIG_PM
Ludovic Desroches84d62602016-05-13 15:16:02 +02002793/*
2794 * To enable wakeup events, the corresponding events have to be enabled in
2795 * the Interrupt Status Enable register too. See 'Table 1-6: Wakeup Signal
2796 * Table' in the SD Host Controller Standard Specification.
2797 * It is useless to restore SDHCI_INT_ENABLE state in
2798 * sdhci_disable_irq_wakeups() since it will be set by
2799 * sdhci_enable_card_detection() or sdhci_init().
2800 */
Kevin Liuad080d72013-01-05 17:21:33 +08002801void sdhci_enable_irq_wakeups(struct sdhci_host *host)
2802{
2803 u8 val;
2804 u8 mask = SDHCI_WAKE_ON_INSERT | SDHCI_WAKE_ON_REMOVE
2805 | SDHCI_WAKE_ON_INT;
Ludovic Desroches84d62602016-05-13 15:16:02 +02002806 u32 irq_val = SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE |
2807 SDHCI_INT_CARD_INT;
Kevin Liuad080d72013-01-05 17:21:33 +08002808
2809 val = sdhci_readb(host, SDHCI_WAKE_UP_CONTROL);
2810 val |= mask ;
2811 /* Avoid fake wake up */
Ludovic Desroches84d62602016-05-13 15:16:02 +02002812 if (host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION) {
Kevin Liuad080d72013-01-05 17:21:33 +08002813 val &= ~(SDHCI_WAKE_ON_INSERT | SDHCI_WAKE_ON_REMOVE);
Ludovic Desroches84d62602016-05-13 15:16:02 +02002814 irq_val &= ~(SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE);
2815 }
Kevin Liuad080d72013-01-05 17:21:33 +08002816 sdhci_writeb(host, val, SDHCI_WAKE_UP_CONTROL);
Ludovic Desroches84d62602016-05-13 15:16:02 +02002817 sdhci_writel(host, irq_val, SDHCI_INT_ENABLE);
Kevin Liuad080d72013-01-05 17:21:33 +08002818}
2819EXPORT_SYMBOL_GPL(sdhci_enable_irq_wakeups);
2820
Fabio Estevam0b10f472014-08-30 14:53:13 -03002821static void sdhci_disable_irq_wakeups(struct sdhci_host *host)
Kevin Liuad080d72013-01-05 17:21:33 +08002822{
2823 u8 val;
2824 u8 mask = SDHCI_WAKE_ON_INSERT | SDHCI_WAKE_ON_REMOVE
2825 | SDHCI_WAKE_ON_INT;
2826
2827 val = sdhci_readb(host, SDHCI_WAKE_UP_CONTROL);
2828 val &= ~mask;
2829 sdhci_writeb(host, val, SDHCI_WAKE_UP_CONTROL);
2830}
Pierre Ossmand129bce2006-03-24 03:18:17 -08002831
Manuel Lauss29495aa2011-11-03 11:09:45 +01002832int sdhci_suspend_host(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002833{
Anton Vorontsov7260cf52009-03-17 00:13:48 +03002834 sdhci_disable_card_detection(host);
2835
Adrian Hunter66c39dfc2015-05-07 13:10:21 +03002836 mmc_retune_timer_stop(host->mmc);
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05302837
Kevin Liuad080d72013-01-05 17:21:33 +08002838 if (!device_may_wakeup(mmc_dev(host->mmc))) {
Russell Kingb537f942014-04-25 12:56:01 +01002839 host->ier = 0;
2840 sdhci_writel(host, 0, SDHCI_INT_ENABLE);
2841 sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE);
Kevin Liuad080d72013-01-05 17:21:33 +08002842 free_irq(host->irq, host);
2843 } else {
2844 sdhci_enable_irq_wakeups(host);
2845 enable_irq_wake(host->irq);
2846 }
Ulf Hansson4ee14ec2013-09-25 14:15:24 +02002847 return 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002848}
2849
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002850EXPORT_SYMBOL_GPL(sdhci_suspend_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002851
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002852int sdhci_resume_host(struct sdhci_host *host)
2853{
Adrian Hunterd3940f22016-06-29 16:24:14 +03002854 struct mmc_host *mmc = host->mmc;
Ulf Hansson4ee14ec2013-09-25 14:15:24 +02002855 int ret = 0;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002856
Richard Röjforsa13abc72009-09-22 16:45:30 -07002857 if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002858 if (host->ops->enable_dma)
2859 host->ops->enable_dma(host);
2860 }
2861
Adrian Hunter6308d292012-02-07 14:48:54 +02002862 if ((host->mmc->pm_flags & MMC_PM_KEEP_POWER) &&
2863 (host->quirks2 & SDHCI_QUIRK2_HOST_OFF_CARD_ON)) {
2864 /* Card keeps power but host controller does not */
2865 sdhci_init(host, 0);
2866 host->pwr = 0;
2867 host->clock = 0;
Adrian Hunterd3940f22016-06-29 16:24:14 +03002868 mmc->ops->set_ios(mmc, &mmc->ios);
Adrian Hunter6308d292012-02-07 14:48:54 +02002869 } else {
2870 sdhci_init(host, (host->mmc->pm_flags & MMC_PM_KEEP_POWER));
2871 mmiowb();
2872 }
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002873
Haibo Chen14a7b41642015-09-15 18:32:58 +08002874 if (!device_may_wakeup(mmc_dev(host->mmc))) {
2875 ret = request_threaded_irq(host->irq, sdhci_irq,
2876 sdhci_thread_irq, IRQF_SHARED,
2877 mmc_hostname(host->mmc), host);
2878 if (ret)
2879 return ret;
2880 } else {
2881 sdhci_disable_irq_wakeups(host);
2882 disable_irq_wake(host->irq);
2883 }
2884
Anton Vorontsov7260cf52009-03-17 00:13:48 +03002885 sdhci_enable_card_detection(host);
2886
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08002887 return ret;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002888}
2889
2890EXPORT_SYMBOL_GPL(sdhci_resume_host);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002891
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002892int sdhci_runtime_suspend_host(struct sdhci_host *host)
2893{
2894 unsigned long flags;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002895
Adrian Hunter66c39dfc2015-05-07 13:10:21 +03002896 mmc_retune_timer_stop(host->mmc);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002897
2898 spin_lock_irqsave(&host->lock, flags);
Russell Kingb537f942014-04-25 12:56:01 +01002899 host->ier &= SDHCI_INT_CARD_INT;
2900 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
2901 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002902 spin_unlock_irqrestore(&host->lock, flags);
2903
Russell King781e9892014-04-25 12:55:46 +01002904 synchronize_hardirq(host->irq);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002905
2906 spin_lock_irqsave(&host->lock, flags);
2907 host->runtime_suspended = true;
2908 spin_unlock_irqrestore(&host->lock, flags);
2909
Markus Pargmann8a125ba2014-06-04 15:24:29 +02002910 return 0;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002911}
2912EXPORT_SYMBOL_GPL(sdhci_runtime_suspend_host);
2913
2914int sdhci_runtime_resume_host(struct sdhci_host *host)
2915{
Adrian Hunterd3940f22016-06-29 16:24:14 +03002916 struct mmc_host *mmc = host->mmc;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002917 unsigned long flags;
Markus Pargmann8a125ba2014-06-04 15:24:29 +02002918 int host_flags = host->flags;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002919
2920 if (host_flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
2921 if (host->ops->enable_dma)
2922 host->ops->enable_dma(host);
2923 }
2924
2925 sdhci_init(host, 0);
2926
Adrian Hunter84ec0482016-12-19 15:33:11 +02002927 if (mmc->ios.power_mode != MMC_POWER_UNDEFINED) {
2928 /* Force clock and power re-program */
2929 host->pwr = 0;
2930 host->clock = 0;
2931 mmc->ops->start_signal_voltage_switch(mmc, &mmc->ios);
2932 mmc->ops->set_ios(mmc, &mmc->ios);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002933
Adrian Hunter84ec0482016-12-19 15:33:11 +02002934 if ((host_flags & SDHCI_PV_ENABLED) &&
2935 !(host->quirks2 & SDHCI_QUIRK2_PRESET_VALUE_BROKEN)) {
2936 spin_lock_irqsave(&host->lock, flags);
2937 sdhci_enable_preset_value(host, true);
2938 spin_unlock_irqrestore(&host->lock, flags);
2939 }
2940
2941 if ((mmc->caps2 & MMC_CAP2_HS400_ES) &&
2942 mmc->ops->hs400_enhanced_strobe)
2943 mmc->ops->hs400_enhanced_strobe(mmc, &mmc->ios);
Kevin Liu52983382013-01-31 11:31:37 +08002944 }
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002945
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002946 spin_lock_irqsave(&host->lock, flags);
2947
2948 host->runtime_suspended = false;
2949
2950 /* Enable SDIO IRQ */
Russell Kingef104332014-04-25 12:55:41 +01002951 if (host->flags & SDHCI_SDIO_IRQ_ENABLED)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002952 sdhci_enable_sdio_irq_nolock(host, true);
2953
2954 /* Enable Card Detection */
2955 sdhci_enable_card_detection(host);
2956
2957 spin_unlock_irqrestore(&host->lock, flags);
2958
Markus Pargmann8a125ba2014-06-04 15:24:29 +02002959 return 0;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002960}
2961EXPORT_SYMBOL_GPL(sdhci_runtime_resume_host);
2962
Rafael J. Wysocki162d6f92014-12-05 03:05:33 +01002963#endif /* CONFIG_PM */
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002964
Pierre Ossmand129bce2006-03-24 03:18:17 -08002965/*****************************************************************************\
2966 * *
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002967 * Device allocation/registration *
Pierre Ossmand129bce2006-03-24 03:18:17 -08002968 * *
2969\*****************************************************************************/
2970
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002971struct sdhci_host *sdhci_alloc_host(struct device *dev,
2972 size_t priv_size)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002973{
Pierre Ossmand129bce2006-03-24 03:18:17 -08002974 struct mmc_host *mmc;
2975 struct sdhci_host *host;
2976
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002977 WARN_ON(dev == NULL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002978
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002979 mmc = mmc_alloc_host(sizeof(struct sdhci_host) + priv_size, dev);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002980 if (!mmc)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002981 return ERR_PTR(-ENOMEM);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002982
2983 host = mmc_priv(mmc);
2984 host->mmc = mmc;
Adrian Hunterbf60e592016-02-09 16:12:35 +02002985 host->mmc_host_ops = sdhci_ops;
2986 mmc->ops = &host->mmc_host_ops;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002987
Adrian Hunter8cb851a2016-06-29 16:24:16 +03002988 host->flags = SDHCI_SIGNALING_330;
2989
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002990 return host;
2991}
Pierre Ossman8a4da142006-10-04 02:15:40 -07002992
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002993EXPORT_SYMBOL_GPL(sdhci_alloc_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002994
Alexandre Courbot7b913692016-03-07 11:07:55 +09002995static int sdhci_set_dma_mask(struct sdhci_host *host)
2996{
2997 struct mmc_host *mmc = host->mmc;
2998 struct device *dev = mmc_dev(mmc);
2999 int ret = -EINVAL;
3000
3001 if (host->quirks2 & SDHCI_QUIRK2_BROKEN_64_BIT_DMA)
3002 host->flags &= ~SDHCI_USE_64_BIT_DMA;
3003
3004 /* Try 64-bit mask if hardware is capable of it */
3005 if (host->flags & SDHCI_USE_64_BIT_DMA) {
3006 ret = dma_set_mask_and_coherent(dev, DMA_BIT_MASK(64));
3007 if (ret) {
3008 pr_warn("%s: Failed to set 64-bit DMA mask.\n",
3009 mmc_hostname(mmc));
3010 host->flags &= ~SDHCI_USE_64_BIT_DMA;
3011 }
3012 }
3013
3014 /* 32-bit mask as default & fallback */
3015 if (ret) {
3016 ret = dma_set_mask_and_coherent(dev, DMA_BIT_MASK(32));
3017 if (ret)
3018 pr_warn("%s: Failed to set 32-bit DMA mask.\n",
3019 mmc_hostname(mmc));
3020 }
3021
3022 return ret;
3023}
3024
Adrian Hunter6132a3b2016-06-29 16:24:18 +03003025void __sdhci_read_caps(struct sdhci_host *host, u16 *ver, u32 *caps, u32 *caps1)
3026{
3027 u16 v;
Zach Brown92e0c442016-11-02 10:26:16 -05003028 u64 dt_caps_mask = 0;
3029 u64 dt_caps = 0;
Adrian Hunter6132a3b2016-06-29 16:24:18 +03003030
3031 if (host->read_caps)
3032 return;
3033
3034 host->read_caps = true;
3035
3036 if (debug_quirks)
3037 host->quirks = debug_quirks;
3038
3039 if (debug_quirks2)
3040 host->quirks2 = debug_quirks2;
3041
3042 sdhci_do_reset(host, SDHCI_RESET_ALL);
3043
Zach Brown92e0c442016-11-02 10:26:16 -05003044 of_property_read_u64(mmc_dev(host->mmc)->of_node,
3045 "sdhci-caps-mask", &dt_caps_mask);
3046 of_property_read_u64(mmc_dev(host->mmc)->of_node,
3047 "sdhci-caps", &dt_caps);
3048
Adrian Hunter6132a3b2016-06-29 16:24:18 +03003049 v = ver ? *ver : sdhci_readw(host, SDHCI_HOST_VERSION);
3050 host->version = (v & SDHCI_SPEC_VER_MASK) >> SDHCI_SPEC_VER_SHIFT;
3051
3052 if (host->quirks & SDHCI_QUIRK_MISSING_CAPS)
3053 return;
3054
Zach Brown92e0c442016-11-02 10:26:16 -05003055 if (caps) {
3056 host->caps = *caps;
3057 } else {
3058 host->caps = sdhci_readl(host, SDHCI_CAPABILITIES);
3059 host->caps &= ~lower_32_bits(dt_caps_mask);
3060 host->caps |= lower_32_bits(dt_caps);
3061 }
Adrian Hunter6132a3b2016-06-29 16:24:18 +03003062
3063 if (host->version < SDHCI_SPEC_300)
3064 return;
3065
Zach Brown92e0c442016-11-02 10:26:16 -05003066 if (caps1) {
3067 host->caps1 = *caps1;
3068 } else {
3069 host->caps1 = sdhci_readl(host, SDHCI_CAPABILITIES_1);
3070 host->caps1 &= ~upper_32_bits(dt_caps_mask);
3071 host->caps1 |= upper_32_bits(dt_caps);
3072 }
Adrian Hunter6132a3b2016-06-29 16:24:18 +03003073}
3074EXPORT_SYMBOL_GPL(__sdhci_read_caps);
3075
Adrian Hunter52f53362016-06-29 16:24:15 +03003076int sdhci_setup_host(struct sdhci_host *host)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003077{
3078 struct mmc_host *mmc;
Arindam Nathf2119df2011-05-05 12:18:57 +05303079 u32 max_current_caps;
3080 unsigned int ocr_avail;
Adrian Hunterf5fa92e2014-09-24 10:27:32 +03003081 unsigned int override_timeout_clk;
Dong Aisheng59241752015-07-22 20:53:07 +08003082 u32 max_clk;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003083 int ret;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003084
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003085 WARN_ON(host == NULL);
3086 if (host == NULL)
3087 return -EINVAL;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003088
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003089 mmc = host->mmc;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003090
Jon Hunterefba1422016-07-12 14:53:36 +01003091 /*
3092 * If there are external regulators, get them. Note this must be done
3093 * early before resetting the host and reading the capabilities so that
3094 * the host can take the appropriate action if regulators are not
3095 * available.
3096 */
3097 ret = mmc_regulator_get_supply(mmc);
3098 if (ret == -EPROBE_DEFER)
3099 return ret;
3100
Adrian Hunter6132a3b2016-06-29 16:24:18 +03003101 sdhci_read_caps(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003102
Adrian Hunterf5fa92e2014-09-24 10:27:32 +03003103 override_timeout_clk = host->timeout_clk;
3104
Zhangfei Gao85105c52010-08-06 07:10:01 +08003105 if (host->version > SDHCI_SPEC_300) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01003106 pr_err("%s: Unknown controller version (%d). You may experience problems.\n",
3107 mmc_hostname(mmc), host->version);
Pierre Ossman4a965502006-06-30 02:22:29 -07003108 }
3109
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003110 if (host->quirks & SDHCI_QUIRK_FORCE_DMA)
Richard Röjforsa13abc72009-09-22 16:45:30 -07003111 host->flags |= SDHCI_USE_SDMA;
Adrian Hunter28da3582016-06-29 16:24:17 +03003112 else if (!(host->caps & SDHCI_CAN_DO_SDMA))
Richard Röjforsa13abc72009-09-22 16:45:30 -07003113 DBG("Controller doesn't have SDMA capability\n");
Pierre Ossman67435272006-06-30 02:22:31 -07003114 else
Richard Röjforsa13abc72009-09-22 16:45:30 -07003115 host->flags |= SDHCI_USE_SDMA;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003116
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003117 if ((host->quirks & SDHCI_QUIRK_BROKEN_DMA) &&
Richard Röjforsa13abc72009-09-22 16:45:30 -07003118 (host->flags & SDHCI_USE_SDMA)) {
Rolf Eike Beercee687c2007-11-02 15:22:30 +01003119 DBG("Disabling DMA as it is marked broken\n");
Richard Röjforsa13abc72009-09-22 16:45:30 -07003120 host->flags &= ~SDHCI_USE_SDMA;
Feng Tang7c168e32007-09-30 12:44:18 +02003121 }
3122
Arindam Nathf2119df2011-05-05 12:18:57 +05303123 if ((host->version >= SDHCI_SPEC_200) &&
Adrian Hunter28da3582016-06-29 16:24:17 +03003124 (host->caps & SDHCI_CAN_DO_ADMA2))
Richard Röjforsa13abc72009-09-22 16:45:30 -07003125 host->flags |= SDHCI_USE_ADMA;
Pierre Ossman2134a922008-06-28 18:28:51 +02003126
3127 if ((host->quirks & SDHCI_QUIRK_BROKEN_ADMA) &&
3128 (host->flags & SDHCI_USE_ADMA)) {
3129 DBG("Disabling ADMA as it is marked broken\n");
3130 host->flags &= ~SDHCI_USE_ADMA;
3131 }
3132
Adrian Huntere57a5f62014-11-04 12:42:46 +02003133 /*
3134 * It is assumed that a 64-bit capable device has set a 64-bit DMA mask
3135 * and *must* do 64-bit DMA. A driver has the opportunity to change
3136 * that during the first call to ->enable_dma(). Similarly
3137 * SDHCI_QUIRK2_BROKEN_64_BIT_DMA must be left to the drivers to
3138 * implement.
3139 */
Adrian Hunter28da3582016-06-29 16:24:17 +03003140 if (host->caps & SDHCI_CAN_64BIT)
Adrian Huntere57a5f62014-11-04 12:42:46 +02003141 host->flags |= SDHCI_USE_64_BIT_DMA;
3142
Richard Röjforsa13abc72009-09-22 16:45:30 -07003143 if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
Alexandre Courbot7b913692016-03-07 11:07:55 +09003144 ret = sdhci_set_dma_mask(host);
3145
3146 if (!ret && host->ops->enable_dma)
3147 ret = host->ops->enable_dma(host);
3148
3149 if (ret) {
3150 pr_warn("%s: No suitable DMA available - falling back to PIO\n",
3151 mmc_hostname(mmc));
3152 host->flags &= ~(SDHCI_USE_SDMA | SDHCI_USE_ADMA);
3153
3154 ret = 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003155 }
3156 }
3157
Adrian Huntere57a5f62014-11-04 12:42:46 +02003158 /* SDMA does not support 64-bit DMA */
3159 if (host->flags & SDHCI_USE_64_BIT_DMA)
3160 host->flags &= ~SDHCI_USE_SDMA;
3161
Pierre Ossman2134a922008-06-28 18:28:51 +02003162 if (host->flags & SDHCI_USE_ADMA) {
Russell Kinge66e61c2016-01-26 13:39:55 +00003163 dma_addr_t dma;
3164 void *buf;
3165
Pierre Ossman2134a922008-06-28 18:28:51 +02003166 /*
Adrian Hunter76fe3792014-11-04 12:42:42 +02003167 * The DMA descriptor table size is calculated as the maximum
3168 * number of segments times 2, to allow for an alignment
3169 * descriptor for each segment, plus 1 for a nop end descriptor,
3170 * all multipled by the descriptor size.
Pierre Ossman2134a922008-06-28 18:28:51 +02003171 */
Adrian Huntere57a5f62014-11-04 12:42:46 +02003172 if (host->flags & SDHCI_USE_64_BIT_DMA) {
3173 host->adma_table_sz = (SDHCI_MAX_SEGS * 2 + 1) *
3174 SDHCI_ADMA2_64_DESC_SZ;
Adrian Huntere57a5f62014-11-04 12:42:46 +02003175 host->desc_sz = SDHCI_ADMA2_64_DESC_SZ;
Adrian Huntere57a5f62014-11-04 12:42:46 +02003176 } else {
3177 host->adma_table_sz = (SDHCI_MAX_SEGS * 2 + 1) *
3178 SDHCI_ADMA2_32_DESC_SZ;
Adrian Huntere57a5f62014-11-04 12:42:46 +02003179 host->desc_sz = SDHCI_ADMA2_32_DESC_SZ;
Adrian Huntere57a5f62014-11-04 12:42:46 +02003180 }
Russell Kinge66e61c2016-01-26 13:39:55 +00003181
Adrian Hunter04a5ae62015-11-26 14:00:49 +02003182 host->align_buffer_sz = SDHCI_MAX_SEGS * SDHCI_ADMA2_ALIGN;
Russell Kinge66e61c2016-01-26 13:39:55 +00003183 buf = dma_alloc_coherent(mmc_dev(mmc), host->align_buffer_sz +
3184 host->adma_table_sz, &dma, GFP_KERNEL);
3185 if (!buf) {
Joe Perches66061102014-09-12 14:56:56 -07003186 pr_warn("%s: Unable to allocate ADMA buffers - falling back to standard DMA\n",
Pierre Ossman2134a922008-06-28 18:28:51 +02003187 mmc_hostname(mmc));
3188 host->flags &= ~SDHCI_USE_ADMA;
Russell Kinge66e61c2016-01-26 13:39:55 +00003189 } else if ((dma + host->align_buffer_sz) &
3190 (SDHCI_ADMA2_DESC_ALIGN - 1)) {
Joe Perches66061102014-09-12 14:56:56 -07003191 pr_warn("%s: unable to allocate aligned ADMA descriptor\n",
3192 mmc_hostname(mmc));
Russell Kingd1e49f72014-04-25 12:58:34 +01003193 host->flags &= ~SDHCI_USE_ADMA;
Russell Kinge66e61c2016-01-26 13:39:55 +00003194 dma_free_coherent(mmc_dev(mmc), host->align_buffer_sz +
3195 host->adma_table_sz, buf, dma);
3196 } else {
3197 host->align_buffer = buf;
3198 host->align_addr = dma;
Russell Kingedd63fc2016-01-26 13:39:50 +00003199
Russell Kinge66e61c2016-01-26 13:39:55 +00003200 host->adma_table = buf + host->align_buffer_sz;
3201 host->adma_addr = dma + host->align_buffer_sz;
3202 }
Pierre Ossman2134a922008-06-28 18:28:51 +02003203 }
3204
Pierre Ossman76591502008-07-21 00:32:11 +02003205 /*
3206 * If we use DMA, then it's up to the caller to set the DMA
3207 * mask, but PIO does not need the hw shim so we set a new
3208 * mask here in that case.
3209 */
Richard Röjforsa13abc72009-09-22 16:45:30 -07003210 if (!(host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA))) {
Pierre Ossman76591502008-07-21 00:32:11 +02003211 host->dma_mask = DMA_BIT_MASK(64);
Markus Mayer4e743f12014-07-03 13:27:42 -07003212 mmc_dev(mmc)->dma_mask = &host->dma_mask;
Pierre Ossman76591502008-07-21 00:32:11 +02003213 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08003214
Zhangfei Gaoc4687d52010-08-20 14:02:36 -04003215 if (host->version >= SDHCI_SPEC_300)
Adrian Hunter28da3582016-06-29 16:24:17 +03003216 host->max_clk = (host->caps & SDHCI_CLOCK_V3_BASE_MASK)
Zhangfei Gaoc4687d52010-08-20 14:02:36 -04003217 >> SDHCI_CLOCK_BASE_SHIFT;
3218 else
Adrian Hunter28da3582016-06-29 16:24:17 +03003219 host->max_clk = (host->caps & SDHCI_CLOCK_BASE_MASK)
Zhangfei Gaoc4687d52010-08-20 14:02:36 -04003220 >> SDHCI_CLOCK_BASE_SHIFT;
3221
Pierre Ossmand129bce2006-03-24 03:18:17 -08003222 host->max_clk *= 1000000;
Anton Vorontsovf27f47e2010-05-26 14:41:53 -07003223 if (host->max_clk == 0 || host->quirks &
3224 SDHCI_QUIRK_CAP_CLOCK_BASE_BROKEN) {
Ben Dooks4240ff02009-03-17 00:13:57 +03003225 if (!host->ops->get_max_clock) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01003226 pr_err("%s: Hardware doesn't specify base clock frequency.\n",
3227 mmc_hostname(mmc));
Adrian Huntereb5c20d2016-04-12 14:25:08 +03003228 ret = -ENODEV;
3229 goto undma;
Ben Dooks4240ff02009-03-17 00:13:57 +03003230 }
3231 host->max_clk = host->ops->get_max_clock(host);
3232 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08003233
3234 /*
Arindam Nathc3ed3872011-05-05 12:19:06 +05303235 * In case of Host Controller v3.00, find out whether clock
3236 * multiplier is supported.
3237 */
Adrian Hunter28da3582016-06-29 16:24:17 +03003238 host->clk_mul = (host->caps1 & SDHCI_CLOCK_MUL_MASK) >>
Arindam Nathc3ed3872011-05-05 12:19:06 +05303239 SDHCI_CLOCK_MUL_SHIFT;
3240
3241 /*
3242 * In case the value in Clock Multiplier is 0, then programmable
3243 * clock mode is not supported, otherwise the actual clock
3244 * multiplier is one more than the value of Clock Multiplier
3245 * in the Capabilities Register.
3246 */
3247 if (host->clk_mul)
3248 host->clk_mul += 1;
3249
3250 /*
Pierre Ossmand129bce2006-03-24 03:18:17 -08003251 * Set host parameters.
3252 */
Dong Aisheng59241752015-07-22 20:53:07 +08003253 max_clk = host->max_clk;
3254
Marek Szyprowskice5f0362010-08-10 18:01:56 -07003255 if (host->ops->get_min_clock)
Anton Vorontsova9e58f22009-07-29 15:04:16 -07003256 mmc->f_min = host->ops->get_min_clock(host);
Arindam Nathc3ed3872011-05-05 12:19:06 +05303257 else if (host->version >= SDHCI_SPEC_300) {
3258 if (host->clk_mul) {
3259 mmc->f_min = (host->max_clk * host->clk_mul) / 1024;
Dong Aisheng59241752015-07-22 20:53:07 +08003260 max_clk = host->max_clk * host->clk_mul;
Arindam Nathc3ed3872011-05-05 12:19:06 +05303261 } else
3262 mmc->f_min = host->max_clk / SDHCI_MAX_DIV_SPEC_300;
3263 } else
Zhangfei Gao03975262010-09-20 15:15:18 -04003264 mmc->f_min = host->max_clk / SDHCI_MAX_DIV_SPEC_200;
Philip Rakity15ec4462010-11-19 16:48:39 -05003265
Adrian Hunterd310ae42016-04-12 14:25:07 +03003266 if (!mmc->f_max || mmc->f_max > max_clk)
Dong Aisheng59241752015-07-22 20:53:07 +08003267 mmc->f_max = max_clk;
3268
Aisheng Dong28aab052014-08-27 15:26:31 +08003269 if (!(host->quirks & SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK)) {
Adrian Hunter28da3582016-06-29 16:24:17 +03003270 host->timeout_clk = (host->caps & SDHCI_TIMEOUT_CLK_MASK) >>
Aisheng Dong28aab052014-08-27 15:26:31 +08003271 SDHCI_TIMEOUT_CLK_SHIFT;
3272 if (host->timeout_clk == 0) {
3273 if (host->ops->get_timeout_clock) {
3274 host->timeout_clk =
3275 host->ops->get_timeout_clock(host);
3276 } else {
3277 pr_err("%s: Hardware doesn't specify timeout clock frequency.\n",
3278 mmc_hostname(mmc));
Adrian Huntereb5c20d2016-04-12 14:25:08 +03003279 ret = -ENODEV;
3280 goto undma;
Aisheng Dong28aab052014-08-27 15:26:31 +08003281 }
Andy Shevchenko272308c2011-08-03 18:36:00 +03003282 }
Andy Shevchenko272308c2011-08-03 18:36:00 +03003283
Adrian Hunter28da3582016-06-29 16:24:17 +03003284 if (host->caps & SDHCI_TIMEOUT_CLK_UNIT)
Aisheng Dong28aab052014-08-27 15:26:31 +08003285 host->timeout_clk *= 1000;
Andy Shevchenko272308c2011-08-03 18:36:00 +03003286
Adrian Hunter99513622016-03-07 13:33:55 +02003287 if (override_timeout_clk)
3288 host->timeout_clk = override_timeout_clk;
3289
Aisheng Dong28aab052014-08-27 15:26:31 +08003290 mmc->max_busy_timeout = host->ops->get_max_timeout_count ?
Aisheng Donga6ff5ae2014-08-27 15:26:27 +08003291 host->ops->get_max_timeout_count(host) : 1 << 27;
Aisheng Dong28aab052014-08-27 15:26:31 +08003292 mmc->max_busy_timeout /= host->timeout_clk;
3293 }
Adrian Hunter58d12462011-06-28 17:16:03 +03003294
Andrei Warkentine89d4562011-05-23 15:06:37 -05003295 mmc->caps |= MMC_CAP_SDIO_IRQ | MMC_CAP_ERASE | MMC_CAP_CMD23;
Russell King781e9892014-04-25 12:55:46 +01003296 mmc->caps2 |= MMC_CAP2_SDIO_IRQ_NOTHREAD;
Andrei Warkentine89d4562011-05-23 15:06:37 -05003297
3298 if (host->quirks & SDHCI_QUIRK_MULTIBLOCK_READ_ACMD12)
3299 host->flags |= SDHCI_AUTO_CMD12;
Anton Vorontsov5fe23c72009-06-18 00:14:08 +04003300
Andrei Warkentin8edf63712011-05-23 15:06:39 -05003301 /* Auto-CMD23 stuff only works in ADMA or PIO. */
Andrei Warkentin4f3d3e92011-05-25 10:42:50 -04003302 if ((host->version >= SDHCI_SPEC_300) &&
Andrei Warkentin8edf63712011-05-23 15:06:39 -05003303 ((host->flags & SDHCI_USE_ADMA) ||
Scott Branden3bfa6f02015-02-09 16:06:28 -08003304 !(host->flags & SDHCI_USE_SDMA)) &&
3305 !(host->quirks2 & SDHCI_QUIRK2_ACMD23_BROKEN)) {
Andrei Warkentin8edf63712011-05-23 15:06:39 -05003306 host->flags |= SDHCI_AUTO_CMD23;
3307 DBG("%s: Auto-CMD23 available\n", mmc_hostname(mmc));
3308 } else {
3309 DBG("%s: Auto-CMD23 unavailable\n", mmc_hostname(mmc));
3310 }
3311
Philip Rakity15ec4462010-11-19 16:48:39 -05003312 /*
3313 * A controller may support 8-bit width, but the board itself
3314 * might not have the pins brought out. Boards that support
3315 * 8-bit width must set "mmc->caps |= MMC_CAP_8_BIT_DATA;" in
3316 * their platform code before calling sdhci_add_host(), and we
3317 * won't assume 8-bit width for hosts without that CAP.
3318 */
Anton Vorontsov5fe23c72009-06-18 00:14:08 +04003319 if (!(host->quirks & SDHCI_QUIRK_FORCE_1_BIT_DATA))
Philip Rakity15ec4462010-11-19 16:48:39 -05003320 mmc->caps |= MMC_CAP_4_BIT_DATA;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003321
Jerry Huang63ef5d82012-10-25 13:47:19 +08003322 if (host->quirks2 & SDHCI_QUIRK2_HOST_NO_CMD23)
3323 mmc->caps &= ~MMC_CAP_CMD23;
3324
Adrian Hunter28da3582016-06-29 16:24:17 +03003325 if (host->caps & SDHCI_CAN_DO_HISPD)
Zhangfei Gaoa29e7e12010-08-16 21:15:32 -04003326 mmc->caps |= MMC_CAP_SD_HIGHSPEED | MMC_CAP_MMC_HIGHSPEED;
Pierre Ossmancd9277c2007-02-18 12:07:47 +01003327
Jaehoon Chung176d1ed2010-09-27 09:42:20 +01003328 if ((host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION) &&
Jaehoon Chung860951c2016-06-21 10:13:26 +09003329 mmc_card_is_removable(mmc) &&
Arnd Bergmann287980e2016-05-27 23:23:25 +02003330 mmc_gpio_get_cd(host->mmc) < 0)
Anton Vorontsov68d1fb72009-03-17 00:13:52 +03003331 mmc->caps |= MMC_CAP_NEEDS_POLL;
3332
Philip Rakity6231f3d2012-07-23 15:56:23 -07003333 /* If vqmmc regulator and no 1.8V signalling, then there's no UHS */
Tim Kryger3a48edc2014-06-13 10:13:56 -07003334 if (!IS_ERR(mmc->supply.vqmmc)) {
3335 ret = regulator_enable(mmc->supply.vqmmc);
3336 if (!regulator_is_supported_voltage(mmc->supply.vqmmc, 1700000,
3337 1950000))
Adrian Hunter28da3582016-06-29 16:24:17 +03003338 host->caps1 &= ~(SDHCI_SUPPORT_SDR104 |
3339 SDHCI_SUPPORT_SDR50 |
3340 SDHCI_SUPPORT_DDR50);
Chris Balla3361ab2013-03-11 17:51:53 -04003341 if (ret) {
3342 pr_warn("%s: Failed to enable vqmmc regulator: %d\n",
3343 mmc_hostname(mmc), ret);
Adrian Hunter4bb74312014-11-06 15:19:04 +02003344 mmc->supply.vqmmc = ERR_PTR(-EINVAL);
Chris Balla3361ab2013-03-11 17:51:53 -04003345 }
Kevin Liu8363c372012-11-17 17:55:51 -05003346 }
Philip Rakity6231f3d2012-07-23 15:56:23 -07003347
Adrian Hunter28da3582016-06-29 16:24:17 +03003348 if (host->quirks2 & SDHCI_QUIRK2_NO_1_8_V) {
3349 host->caps1 &= ~(SDHCI_SUPPORT_SDR104 | SDHCI_SUPPORT_SDR50 |
3350 SDHCI_SUPPORT_DDR50);
3351 }
Daniel Drake6a661802012-11-25 13:01:19 -05003352
Al Cooper4188bba2012-03-16 15:54:17 -04003353 /* Any UHS-I mode in caps implies SDR12 and SDR25 support. */
Adrian Hunter28da3582016-06-29 16:24:17 +03003354 if (host->caps1 & (SDHCI_SUPPORT_SDR104 | SDHCI_SUPPORT_SDR50 |
3355 SDHCI_SUPPORT_DDR50))
Arindam Nathf2119df2011-05-05 12:18:57 +05303356 mmc->caps |= MMC_CAP_UHS_SDR12 | MMC_CAP_UHS_SDR25;
3357
3358 /* SDR104 supports also implies SDR50 support */
Adrian Hunter28da3582016-06-29 16:24:17 +03003359 if (host->caps1 & SDHCI_SUPPORT_SDR104) {
Arindam Nathf2119df2011-05-05 12:18:57 +05303360 mmc->caps |= MMC_CAP_UHS_SDR104 | MMC_CAP_UHS_SDR50;
Giuseppe CAVALLARO156e14b2013-06-12 08:16:38 +02003361 /* SD3.0: SDR104 is supported so (for eMMC) the caps2
3362 * field can be promoted to support HS200.
3363 */
Adrian Hunter549c0b12014-11-06 15:19:05 +02003364 if (!(host->quirks2 & SDHCI_QUIRK2_BROKEN_HS200))
David Cohen13868bf2013-10-29 10:58:26 -07003365 mmc->caps2 |= MMC_CAP2_HS200;
Adrian Hunter28da3582016-06-29 16:24:17 +03003366 } else if (host->caps1 & SDHCI_SUPPORT_SDR50) {
Arindam Nathf2119df2011-05-05 12:18:57 +05303367 mmc->caps |= MMC_CAP_UHS_SDR50;
Adrian Hunter28da3582016-06-29 16:24:17 +03003368 }
Arindam Nathf2119df2011-05-05 12:18:57 +05303369
Adrian Huntere9fb05d2014-11-06 15:19:06 +02003370 if (host->quirks2 & SDHCI_QUIRK2_CAPS_BIT63_FOR_HS400 &&
Adrian Hunter28da3582016-06-29 16:24:17 +03003371 (host->caps1 & SDHCI_SUPPORT_HS400))
Adrian Huntere9fb05d2014-11-06 15:19:06 +02003372 mmc->caps2 |= MMC_CAP2_HS400;
3373
Adrian Hunter549c0b12014-11-06 15:19:05 +02003374 if ((mmc->caps2 & MMC_CAP2_HSX00_1_2V) &&
3375 (IS_ERR(mmc->supply.vqmmc) ||
3376 !regulator_is_supported_voltage(mmc->supply.vqmmc, 1100000,
3377 1300000)))
3378 mmc->caps2 &= ~MMC_CAP2_HSX00_1_2V;
3379
Adrian Hunter28da3582016-06-29 16:24:17 +03003380 if ((host->caps1 & SDHCI_SUPPORT_DDR50) &&
3381 !(host->quirks2 & SDHCI_QUIRK2_BROKEN_DDR50))
Arindam Nathf2119df2011-05-05 12:18:57 +05303382 mmc->caps |= MMC_CAP_UHS_DDR50;
3383
Girish K S069c9f12012-01-06 09:56:39 +05303384 /* Does the host need tuning for SDR50? */
Adrian Hunter28da3582016-06-29 16:24:17 +03003385 if (host->caps1 & SDHCI_USE_SDR50_TUNING)
Arindam Nathb513ea22011-05-05 12:19:04 +05303386 host->flags |= SDHCI_SDR50_NEEDS_TUNING;
3387
Arindam Nathd6d50a12011-05-05 12:18:59 +05303388 /* Driver Type(s) (A, C, D) supported by the host */
Adrian Hunter28da3582016-06-29 16:24:17 +03003389 if (host->caps1 & SDHCI_DRIVER_TYPE_A)
Arindam Nathd6d50a12011-05-05 12:18:59 +05303390 mmc->caps |= MMC_CAP_DRIVER_TYPE_A;
Adrian Hunter28da3582016-06-29 16:24:17 +03003391 if (host->caps1 & SDHCI_DRIVER_TYPE_C)
Arindam Nathd6d50a12011-05-05 12:18:59 +05303392 mmc->caps |= MMC_CAP_DRIVER_TYPE_C;
Adrian Hunter28da3582016-06-29 16:24:17 +03003393 if (host->caps1 & SDHCI_DRIVER_TYPE_D)
Arindam Nathd6d50a12011-05-05 12:18:59 +05303394 mmc->caps |= MMC_CAP_DRIVER_TYPE_D;
3395
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05303396 /* Initial value for re-tuning timer count */
Adrian Hunter28da3582016-06-29 16:24:17 +03003397 host->tuning_count = (host->caps1 & SDHCI_RETUNING_TIMER_COUNT_MASK) >>
3398 SDHCI_RETUNING_TIMER_COUNT_SHIFT;
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05303399
3400 /*
3401 * In case Re-tuning Timer is not disabled, the actual value of
3402 * re-tuning timer will be 2 ^ (n - 1).
3403 */
3404 if (host->tuning_count)
3405 host->tuning_count = 1 << (host->tuning_count - 1);
3406
3407 /* Re-tuning mode supported by the Host Controller */
Adrian Hunter28da3582016-06-29 16:24:17 +03003408 host->tuning_mode = (host->caps1 & SDHCI_RETUNING_MODE_MASK) >>
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05303409 SDHCI_RETUNING_MODE_SHIFT;
3410
Takashi Iwai8f230f42010-12-08 10:04:30 +01003411 ocr_avail = 0;
Philip Rakitybad37e12012-05-27 18:36:44 -07003412
Arindam Nathf2119df2011-05-05 12:18:57 +05303413 /*
3414 * According to SD Host Controller spec v3.00, if the Host System
3415 * can afford more than 150mA, Host Driver should set XPC to 1. Also
3416 * the value is meaningful only if Voltage Support in the Capabilities
3417 * register is set. The actual current value is 4 times the register
3418 * value.
3419 */
3420 max_current_caps = sdhci_readl(host, SDHCI_MAX_CURRENT);
Tim Kryger3a48edc2014-06-13 10:13:56 -07003421 if (!max_current_caps && !IS_ERR(mmc->supply.vmmc)) {
Chuanxiao.Dongae906032014-08-01 14:00:13 +08003422 int curr = regulator_get_current_limit(mmc->supply.vmmc);
Philip Rakitybad37e12012-05-27 18:36:44 -07003423 if (curr > 0) {
3424
3425 /* convert to SDHCI_MAX_CURRENT format */
3426 curr = curr/1000; /* convert to mA */
3427 curr = curr/SDHCI_MAX_CURRENT_MULTIPLIER;
3428
3429 curr = min_t(u32, curr, SDHCI_MAX_CURRENT_LIMIT);
3430 max_current_caps =
3431 (curr << SDHCI_MAX_CURRENT_330_SHIFT) |
3432 (curr << SDHCI_MAX_CURRENT_300_SHIFT) |
3433 (curr << SDHCI_MAX_CURRENT_180_SHIFT);
3434 }
3435 }
Arindam Nathf2119df2011-05-05 12:18:57 +05303436
Adrian Hunter28da3582016-06-29 16:24:17 +03003437 if (host->caps & SDHCI_CAN_VDD_330) {
Takashi Iwai8f230f42010-12-08 10:04:30 +01003438 ocr_avail |= MMC_VDD_32_33 | MMC_VDD_33_34;
Arindam Nathf2119df2011-05-05 12:18:57 +05303439
Aaron Lu55c46652012-07-04 13:31:48 +08003440 mmc->max_current_330 = ((max_current_caps &
Arindam Nathf2119df2011-05-05 12:18:57 +05303441 SDHCI_MAX_CURRENT_330_MASK) >>
3442 SDHCI_MAX_CURRENT_330_SHIFT) *
3443 SDHCI_MAX_CURRENT_MULTIPLIER;
Arindam Nathf2119df2011-05-05 12:18:57 +05303444 }
Adrian Hunter28da3582016-06-29 16:24:17 +03003445 if (host->caps & SDHCI_CAN_VDD_300) {
Takashi Iwai8f230f42010-12-08 10:04:30 +01003446 ocr_avail |= MMC_VDD_29_30 | MMC_VDD_30_31;
Arindam Nathf2119df2011-05-05 12:18:57 +05303447
Aaron Lu55c46652012-07-04 13:31:48 +08003448 mmc->max_current_300 = ((max_current_caps &
Arindam Nathf2119df2011-05-05 12:18:57 +05303449 SDHCI_MAX_CURRENT_300_MASK) >>
3450 SDHCI_MAX_CURRENT_300_SHIFT) *
3451 SDHCI_MAX_CURRENT_MULTIPLIER;
Arindam Nathf2119df2011-05-05 12:18:57 +05303452 }
Adrian Hunter28da3582016-06-29 16:24:17 +03003453 if (host->caps & SDHCI_CAN_VDD_180) {
Takashi Iwai8f230f42010-12-08 10:04:30 +01003454 ocr_avail |= MMC_VDD_165_195;
3455
Aaron Lu55c46652012-07-04 13:31:48 +08003456 mmc->max_current_180 = ((max_current_caps &
Arindam Nathf2119df2011-05-05 12:18:57 +05303457 SDHCI_MAX_CURRENT_180_MASK) >>
3458 SDHCI_MAX_CURRENT_180_SHIFT) *
3459 SDHCI_MAX_CURRENT_MULTIPLIER;
Arindam Nathf2119df2011-05-05 12:18:57 +05303460 }
3461
Ulf Hansson5fd26c72015-06-05 11:40:08 +02003462 /* If OCR set by host, use it instead. */
3463 if (host->ocr_mask)
3464 ocr_avail = host->ocr_mask;
3465
3466 /* If OCR set by external regulators, give it highest prio. */
Tim Kryger3a48edc2014-06-13 10:13:56 -07003467 if (mmc->ocr_avail)
Tim Kryger52221612014-06-25 00:25:34 -07003468 ocr_avail = mmc->ocr_avail;
Tim Kryger3a48edc2014-06-13 10:13:56 -07003469
Takashi Iwai8f230f42010-12-08 10:04:30 +01003470 mmc->ocr_avail = ocr_avail;
3471 mmc->ocr_avail_sdio = ocr_avail;
3472 if (host->ocr_avail_sdio)
3473 mmc->ocr_avail_sdio &= host->ocr_avail_sdio;
3474 mmc->ocr_avail_sd = ocr_avail;
3475 if (host->ocr_avail_sd)
3476 mmc->ocr_avail_sd &= host->ocr_avail_sd;
3477 else /* normal SD controllers don't support 1.8V */
3478 mmc->ocr_avail_sd &= ~MMC_VDD_165_195;
3479 mmc->ocr_avail_mmc = ocr_avail;
3480 if (host->ocr_avail_mmc)
3481 mmc->ocr_avail_mmc &= host->ocr_avail_mmc;
Pierre Ossman146ad662006-06-30 02:22:23 -07003482
3483 if (mmc->ocr_avail == 0) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01003484 pr_err("%s: Hardware doesn't report any support voltages.\n",
3485 mmc_hostname(mmc));
Adrian Huntereb5c20d2016-04-12 14:25:08 +03003486 ret = -ENODEV;
3487 goto unreg;
Pierre Ossman146ad662006-06-30 02:22:23 -07003488 }
3489
Adrian Hunter8cb851a2016-06-29 16:24:16 +03003490 if ((mmc->caps & (MMC_CAP_UHS_SDR12 | MMC_CAP_UHS_SDR25 |
3491 MMC_CAP_UHS_SDR50 | MMC_CAP_UHS_SDR104 |
3492 MMC_CAP_UHS_DDR50 | MMC_CAP_1_8V_DDR)) ||
3493 (mmc->caps2 & (MMC_CAP2_HS200_1_8V_SDR | MMC_CAP2_HS400_1_8V)))
3494 host->flags |= SDHCI_SIGNALING_180;
3495
3496 if (mmc->caps2 & MMC_CAP2_HSX00_1_2V)
3497 host->flags |= SDHCI_SIGNALING_120;
3498
Pierre Ossmand129bce2006-03-24 03:18:17 -08003499 spin_lock_init(&host->lock);
3500
3501 /*
Pierre Ossman2134a922008-06-28 18:28:51 +02003502 * Maximum number of segments. Depends on if the hardware
3503 * can do scatter/gather or not.
Pierre Ossmand129bce2006-03-24 03:18:17 -08003504 */
Pierre Ossman2134a922008-06-28 18:28:51 +02003505 if (host->flags & SDHCI_USE_ADMA)
Adrian Hunter4fb213f2014-11-04 12:42:43 +02003506 mmc->max_segs = SDHCI_MAX_SEGS;
Richard Röjforsa13abc72009-09-22 16:45:30 -07003507 else if (host->flags & SDHCI_USE_SDMA)
Martin K. Petersena36274e2010-09-10 01:33:59 -04003508 mmc->max_segs = 1;
Pierre Ossman2134a922008-06-28 18:28:51 +02003509 else /* PIO */
Adrian Hunter4fb213f2014-11-04 12:42:43 +02003510 mmc->max_segs = SDHCI_MAX_SEGS;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003511
3512 /*
Adrian Hunterac005312014-12-05 19:25:28 +02003513 * Maximum number of sectors in one transfer. Limited by SDMA boundary
3514 * size (512KiB). Note some tuning modes impose a 4MiB limit, but this
3515 * is less anyway.
Pierre Ossmand129bce2006-03-24 03:18:17 -08003516 */
Pierre Ossman55db8902006-11-21 17:55:45 +01003517 mmc->max_req_size = 524288;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003518
3519 /*
3520 * Maximum segment size. Could be one segment with the maximum number
Pierre Ossman2134a922008-06-28 18:28:51 +02003521 * of bytes. When doing hardware scatter/gather, each entry cannot
3522 * be larger than 64 KiB though.
Pierre Ossmand129bce2006-03-24 03:18:17 -08003523 */
Olof Johansson30652aa2011-01-01 18:37:32 -06003524 if (host->flags & SDHCI_USE_ADMA) {
3525 if (host->quirks & SDHCI_QUIRK_BROKEN_ADMA_ZEROLEN_DESC)
3526 mmc->max_seg_size = 65535;
3527 else
3528 mmc->max_seg_size = 65536;
3529 } else {
Pierre Ossman2134a922008-06-28 18:28:51 +02003530 mmc->max_seg_size = mmc->max_req_size;
Olof Johansson30652aa2011-01-01 18:37:32 -06003531 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08003532
3533 /*
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +01003534 * Maximum block size. This varies from controller to controller and
3535 * is specified in the capabilities register.
3536 */
Anton Vorontsov0633f652009-03-17 00:14:03 +03003537 if (host->quirks & SDHCI_QUIRK_FORCE_BLK_SZ_2048) {
3538 mmc->max_blk_size = 2;
3539 } else {
Adrian Hunter28da3582016-06-29 16:24:17 +03003540 mmc->max_blk_size = (host->caps & SDHCI_MAX_BLOCK_MASK) >>
Anton Vorontsov0633f652009-03-17 00:14:03 +03003541 SDHCI_MAX_BLOCK_SHIFT;
3542 if (mmc->max_blk_size >= 3) {
Joe Perches66061102014-09-12 14:56:56 -07003543 pr_warn("%s: Invalid maximum block size, assuming 512 bytes\n",
3544 mmc_hostname(mmc));
Anton Vorontsov0633f652009-03-17 00:14:03 +03003545 mmc->max_blk_size = 0;
3546 }
3547 }
3548
3549 mmc->max_blk_size = 512 << mmc->max_blk_size;
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +01003550
3551 /*
Pierre Ossman55db8902006-11-21 17:55:45 +01003552 * Maximum block count.
3553 */
Ben Dooks1388eef2009-06-14 12:40:53 +01003554 mmc->max_blk_count = (host->quirks & SDHCI_QUIRK_NO_MULTIBLOCK) ? 1 : 65535;
Pierre Ossman55db8902006-11-21 17:55:45 +01003555
Adrian Hunter52f53362016-06-29 16:24:15 +03003556 return 0;
3557
3558unreg:
3559 if (!IS_ERR(mmc->supply.vqmmc))
3560 regulator_disable(mmc->supply.vqmmc);
3561undma:
3562 if (host->align_buffer)
3563 dma_free_coherent(mmc_dev(mmc), host->align_buffer_sz +
3564 host->adma_table_sz, host->align_buffer,
3565 host->align_addr);
3566 host->adma_table = NULL;
3567 host->align_buffer = NULL;
3568
3569 return ret;
3570}
3571EXPORT_SYMBOL_GPL(sdhci_setup_host);
3572
3573int __sdhci_add_host(struct sdhci_host *host)
3574{
3575 struct mmc_host *mmc = host->mmc;
3576 int ret;
3577
Pierre Ossman55db8902006-11-21 17:55:45 +01003578 /*
Pierre Ossmand129bce2006-03-24 03:18:17 -08003579 * Init tasklets.
3580 */
Pierre Ossmand129bce2006-03-24 03:18:17 -08003581 tasklet_init(&host->finish_tasklet,
3582 sdhci_tasklet_finish, (unsigned long)host);
3583
Al Viroe4cad1b2006-10-10 22:47:07 +01003584 setup_timer(&host->timer, sdhci_timeout_timer, (unsigned long)host);
Adrian Hunterd7422fb2016-06-29 16:24:33 +03003585 setup_timer(&host->data_timer, sdhci_timeout_data_timer,
3586 (unsigned long)host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003587
Adrian Hunter250fb7b42014-12-05 19:41:10 +02003588 init_waitqueue_head(&host->buf_ready_int);
Arindam Nathb513ea22011-05-05 12:19:04 +05303589
Shawn Guo2af502c2013-07-05 14:38:55 +08003590 sdhci_init(host, 0);
3591
Russell King781e9892014-04-25 12:55:46 +01003592 ret = request_threaded_irq(host->irq, sdhci_irq, sdhci_thread_irq,
3593 IRQF_SHARED, mmc_hostname(mmc), host);
Mark Brown0fc81ee2012-07-02 14:26:15 +01003594 if (ret) {
3595 pr_err("%s: Failed to request IRQ %d: %d\n",
3596 mmc_hostname(mmc), host->irq, ret);
Pierre Ossman8ef1a142006-06-30 02:22:21 -07003597 goto untasklet;
Mark Brown0fc81ee2012-07-02 14:26:15 +01003598 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08003599
Pierre Ossmand129bce2006-03-24 03:18:17 -08003600#ifdef CONFIG_MMC_DEBUG
3601 sdhci_dumpregs(host);
3602#endif
3603
Adrian Hunter061d17a2016-04-12 14:25:09 +03003604 ret = sdhci_led_register(host);
Mark Brown0fc81ee2012-07-02 14:26:15 +01003605 if (ret) {
3606 pr_err("%s: Failed to register LED device: %d\n",
3607 mmc_hostname(mmc), ret);
Adrian Huntereb5c20d2016-04-12 14:25:08 +03003608 goto unirq;
Mark Brown0fc81ee2012-07-02 14:26:15 +01003609 }
Pierre Ossman2f730fe2008-03-17 10:29:38 +01003610
Pierre Ossman5f25a662006-10-04 02:15:39 -07003611 mmiowb();
3612
Adrian Huntereb5c20d2016-04-12 14:25:08 +03003613 ret = mmc_add_host(mmc);
3614 if (ret)
3615 goto unled;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003616
Girish K Sa3c76eb2011-10-11 11:44:09 +05303617 pr_info("%s: SDHCI controller on %s [%s] using %s\n",
Kay Sieversd1b26862008-11-08 21:37:46 +01003618 mmc_hostname(mmc), host->hw_name, dev_name(mmc_dev(mmc)),
Adrian Huntere57a5f62014-11-04 12:42:46 +02003619 (host->flags & SDHCI_USE_ADMA) ?
3620 (host->flags & SDHCI_USE_64_BIT_DMA) ? "ADMA 64-bit" : "ADMA" :
Richard Röjforsa13abc72009-09-22 16:45:30 -07003621 (host->flags & SDHCI_USE_SDMA) ? "DMA" : "PIO");
Pierre Ossmand129bce2006-03-24 03:18:17 -08003622
Anton Vorontsov7260cf52009-03-17 00:13:48 +03003623 sdhci_enable_card_detection(host);
3624
Pierre Ossmand129bce2006-03-24 03:18:17 -08003625 return 0;
3626
Adrian Huntereb5c20d2016-04-12 14:25:08 +03003627unled:
Adrian Hunter061d17a2016-04-12 14:25:09 +03003628 sdhci_led_unregister(host);
Adrian Huntereb5c20d2016-04-12 14:25:08 +03003629unirq:
Russell King03231f92014-04-25 12:57:12 +01003630 sdhci_do_reset(host, SDHCI_RESET_ALL);
Russell Kingb537f942014-04-25 12:56:01 +01003631 sdhci_writel(host, 0, SDHCI_INT_ENABLE);
3632 sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE);
Pierre Ossman2f730fe2008-03-17 10:29:38 +01003633 free_irq(host->irq, host);
Pierre Ossman8ef1a142006-06-30 02:22:21 -07003634untasklet:
Pierre Ossmand129bce2006-03-24 03:18:17 -08003635 tasklet_kill(&host->finish_tasklet);
Adrian Hunter52f53362016-06-29 16:24:15 +03003636
Adrian Huntereb5c20d2016-04-12 14:25:08 +03003637 if (!IS_ERR(mmc->supply.vqmmc))
3638 regulator_disable(mmc->supply.vqmmc);
Adrian Hunter52f53362016-06-29 16:24:15 +03003639
Adrian Huntereb5c20d2016-04-12 14:25:08 +03003640 if (host->align_buffer)
3641 dma_free_coherent(mmc_dev(mmc), host->align_buffer_sz +
3642 host->adma_table_sz, host->align_buffer,
3643 host->align_addr);
3644 host->adma_table = NULL;
3645 host->align_buffer = NULL;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003646
3647 return ret;
3648}
Adrian Hunter52f53362016-06-29 16:24:15 +03003649EXPORT_SYMBOL_GPL(__sdhci_add_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003650
Adrian Hunter52f53362016-06-29 16:24:15 +03003651int sdhci_add_host(struct sdhci_host *host)
3652{
3653 int ret;
3654
3655 ret = sdhci_setup_host(host);
3656 if (ret)
3657 return ret;
3658
3659 return __sdhci_add_host(host);
3660}
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003661EXPORT_SYMBOL_GPL(sdhci_add_host);
3662
Pierre Ossman1e728592008-04-16 19:13:13 +02003663void sdhci_remove_host(struct sdhci_host *host, int dead)
Pierre Ossmand129bce2006-03-24 03:18:17 -08003664{
Tim Kryger3a48edc2014-06-13 10:13:56 -07003665 struct mmc_host *mmc = host->mmc;
Pierre Ossman1e728592008-04-16 19:13:13 +02003666 unsigned long flags;
3667
3668 if (dead) {
3669 spin_lock_irqsave(&host->lock, flags);
3670
3671 host->flags |= SDHCI_DEVICE_DEAD;
3672
Adrian Hunter5d0d11c2016-06-29 16:24:31 +03003673 if (sdhci_has_requests(host)) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05303674 pr_err("%s: Controller removed during "
Markus Mayer4e743f12014-07-03 13:27:42 -07003675 " transfer!\n", mmc_hostname(mmc));
Adrian Hunter5d0d11c2016-06-29 16:24:31 +03003676 sdhci_error_out_mrqs(host, -ENOMEDIUM);
Pierre Ossman1e728592008-04-16 19:13:13 +02003677 }
3678
3679 spin_unlock_irqrestore(&host->lock, flags);
3680 }
3681
Anton Vorontsov7260cf52009-03-17 00:13:48 +03003682 sdhci_disable_card_detection(host);
3683
Markus Mayer4e743f12014-07-03 13:27:42 -07003684 mmc_remove_host(mmc);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003685
Adrian Hunter061d17a2016-04-12 14:25:09 +03003686 sdhci_led_unregister(host);
Pierre Ossman2f730fe2008-03-17 10:29:38 +01003687
Pierre Ossman1e728592008-04-16 19:13:13 +02003688 if (!dead)
Russell King03231f92014-04-25 12:57:12 +01003689 sdhci_do_reset(host, SDHCI_RESET_ALL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003690
Russell Kingb537f942014-04-25 12:56:01 +01003691 sdhci_writel(host, 0, SDHCI_INT_ENABLE);
3692 sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003693 free_irq(host->irq, host);
3694
3695 del_timer_sync(&host->timer);
Adrian Hunterd7422fb2016-06-29 16:24:33 +03003696 del_timer_sync(&host->data_timer);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003697
Pierre Ossmand129bce2006-03-24 03:18:17 -08003698 tasklet_kill(&host->finish_tasklet);
Pierre Ossman2134a922008-06-28 18:28:51 +02003699
Tim Kryger3a48edc2014-06-13 10:13:56 -07003700 if (!IS_ERR(mmc->supply.vqmmc))
3701 regulator_disable(mmc->supply.vqmmc);
Philip Rakity6231f3d2012-07-23 15:56:23 -07003702
Russell Kingedd63fc2016-01-26 13:39:50 +00003703 if (host->align_buffer)
Russell Kinge66e61c2016-01-26 13:39:55 +00003704 dma_free_coherent(mmc_dev(mmc), host->align_buffer_sz +
3705 host->adma_table_sz, host->align_buffer,
3706 host->align_addr);
Pierre Ossman2134a922008-06-28 18:28:51 +02003707
Adrian Hunter4efaa6f2014-11-04 12:42:39 +02003708 host->adma_table = NULL;
Pierre Ossman2134a922008-06-28 18:28:51 +02003709 host->align_buffer = NULL;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003710}
3711
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003712EXPORT_SYMBOL_GPL(sdhci_remove_host);
3713
3714void sdhci_free_host(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -08003715{
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003716 mmc_free_host(host->mmc);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003717}
3718
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003719EXPORT_SYMBOL_GPL(sdhci_free_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003720
3721/*****************************************************************************\
3722 * *
3723 * Driver init/exit *
3724 * *
3725\*****************************************************************************/
3726
3727static int __init sdhci_drv_init(void)
3728{
Girish K Sa3c76eb2011-10-11 11:44:09 +05303729 pr_info(DRIVER_NAME
Pierre Ossman52fbf9c2007-02-09 08:23:41 +01003730 ": Secure Digital Host Controller Interface driver\n");
Girish K Sa3c76eb2011-10-11 11:44:09 +05303731 pr_info(DRIVER_NAME ": Copyright(c) Pierre Ossman\n");
Pierre Ossmand129bce2006-03-24 03:18:17 -08003732
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003733 return 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003734}
3735
3736static void __exit sdhci_drv_exit(void)
3737{
Pierre Ossmand129bce2006-03-24 03:18:17 -08003738}
3739
3740module_init(sdhci_drv_init);
3741module_exit(sdhci_drv_exit);
3742
Pierre Ossmandf673b22006-06-30 02:22:31 -07003743module_param(debug_quirks, uint, 0444);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003744module_param(debug_quirks2, uint, 0444);
Pierre Ossman67435272006-06-30 02:22:31 -07003745
Pierre Ossman32710e82009-04-08 20:14:54 +02003746MODULE_AUTHOR("Pierre Ossman <pierre@ossman.eu>");
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003747MODULE_DESCRIPTION("Secure Digital Host Controller Interface core driver");
Pierre Ossmand129bce2006-03-24 03:18:17 -08003748MODULE_LICENSE("GPL");
Pierre Ossman67435272006-06-30 02:22:31 -07003749
Pierre Ossmandf673b22006-06-30 02:22:31 -07003750MODULE_PARM_DESC(debug_quirks, "Force certain quirks.");
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003751MODULE_PARM_DESC(debug_quirks2, "Force certain other quirks.");