blob: ba637ff8aa7e4409958e5ee64e2c2a6687ebe856 [file] [log] [blame]
Pierre Ossmand129bce2006-03-24 03:18:17 -08001/*
Pierre Ossman70f10482007-07-11 20:04:50 +02002 * linux/drivers/mmc/host/sdhci.c - Secure Digital Host Controller Interface driver
Pierre Ossmand129bce2006-03-24 03:18:17 -08003 *
Pierre Ossmanb69c9052008-03-08 23:44:25 +01004 * Copyright (C) 2005-2008 Pierre Ossman, All Rights Reserved.
Pierre Ossmand129bce2006-03-24 03:18:17 -08005 *
6 * This program is free software; you can redistribute it and/or modify
Pierre Ossman643f7202006-09-30 23:27:52 -07007 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or (at
9 * your option) any later version.
Pierre Ossman84c46a52007-12-02 19:58:16 +010010 *
11 * Thanks to the following companies for their support:
12 *
13 * - JMicron (hardware and technical support)
Pierre Ossmand129bce2006-03-24 03:18:17 -080014 */
15
Pierre Ossmand129bce2006-03-24 03:18:17 -080016#include <linux/delay.h>
17#include <linux/highmem.h>
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +010018#include <linux/io.h>
Paul Gortmaker88b47672011-07-03 15:15:51 -040019#include <linux/module.h>
Pierre Ossmand129bce2006-03-24 03:18:17 -080020#include <linux/dma-mapping.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/slab.h>
Ralf Baechle11763602007-10-23 20:42:11 +020022#include <linux/scatterlist.h>
Marek Szyprowski9bea3c82010-08-10 18:01:59 -070023#include <linux/regulator/consumer.h>
Adrian Hunter66fd8ad2011-10-03 15:33:34 +030024#include <linux/pm_runtime.h>
Pierre Ossmand129bce2006-03-24 03:18:17 -080025
Pierre Ossman2f730fe2008-03-17 10:29:38 +010026#include <linux/leds.h>
27
Aries Lee22113ef2010-12-15 08:14:24 +010028#include <linux/mmc/mmc.h>
Pierre Ossmand129bce2006-03-24 03:18:17 -080029#include <linux/mmc/host.h>
Aaron Lu473b095a2012-07-03 17:27:49 +080030#include <linux/mmc/card.h>
Corneliu Doban85cc1c32015-02-09 16:06:29 -080031#include <linux/mmc/sdio.h>
Guennadi Liakhovetskibec9d4e2012-09-17 16:45:10 +080032#include <linux/mmc/slot-gpio.h>
Pierre Ossmand129bce2006-03-24 03:18:17 -080033
Pierre Ossmand129bce2006-03-24 03:18:17 -080034#include "sdhci.h"
35
36#define DRIVER_NAME "sdhci"
Pierre Ossmand129bce2006-03-24 03:18:17 -080037
Pierre Ossmand129bce2006-03-24 03:18:17 -080038#define DBG(f, x...) \
Russell Kingc6563172006-03-29 09:30:20 +010039 pr_debug(DRIVER_NAME " [%s()]: " f, __func__,## x)
Pierre Ossmand129bce2006-03-24 03:18:17 -080040
Arindam Nathb513ea22011-05-05 12:19:04 +053041#define MAX_TUNING_LOOP 40
42
Pierre Ossmandf673b22006-06-30 02:22:31 -070043static unsigned int debug_quirks = 0;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +030044static unsigned int debug_quirks2;
Pierre Ossman67435272006-06-30 02:22:31 -070045
Pierre Ossmand129bce2006-03-24 03:18:17 -080046static void sdhci_finish_data(struct sdhci_host *);
47
Kevin Liu52983382013-01-31 11:31:37 +080048static void sdhci_enable_preset_value(struct sdhci_host *host, bool enable);
Pierre Ossmand129bce2006-03-24 03:18:17 -080049
50static void sdhci_dumpregs(struct sdhci_host *host)
51{
Chuanxiao Donga7c53672016-06-22 14:40:01 +030052 pr_err(DRIVER_NAME ": =========== REGISTER DUMP (%s)===========\n",
53 mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -080054
Chuanxiao Donga7c53672016-06-22 14:40:01 +030055 pr_err(DRIVER_NAME ": Sys addr: 0x%08x | Version: 0x%08x\n",
56 sdhci_readl(host, SDHCI_DMA_ADDRESS),
57 sdhci_readw(host, SDHCI_HOST_VERSION));
58 pr_err(DRIVER_NAME ": Blk size: 0x%08x | Blk cnt: 0x%08x\n",
59 sdhci_readw(host, SDHCI_BLOCK_SIZE),
60 sdhci_readw(host, SDHCI_BLOCK_COUNT));
61 pr_err(DRIVER_NAME ": Argument: 0x%08x | Trn mode: 0x%08x\n",
62 sdhci_readl(host, SDHCI_ARGUMENT),
63 sdhci_readw(host, SDHCI_TRANSFER_MODE));
64 pr_err(DRIVER_NAME ": Present: 0x%08x | Host ctl: 0x%08x\n",
65 sdhci_readl(host, SDHCI_PRESENT_STATE),
66 sdhci_readb(host, SDHCI_HOST_CONTROL));
67 pr_err(DRIVER_NAME ": Power: 0x%08x | Blk gap: 0x%08x\n",
68 sdhci_readb(host, SDHCI_POWER_CONTROL),
69 sdhci_readb(host, SDHCI_BLOCK_GAP_CONTROL));
70 pr_err(DRIVER_NAME ": Wake-up: 0x%08x | Clock: 0x%08x\n",
71 sdhci_readb(host, SDHCI_WAKE_UP_CONTROL),
72 sdhci_readw(host, SDHCI_CLOCK_CONTROL));
73 pr_err(DRIVER_NAME ": Timeout: 0x%08x | Int stat: 0x%08x\n",
74 sdhci_readb(host, SDHCI_TIMEOUT_CONTROL),
75 sdhci_readl(host, SDHCI_INT_STATUS));
76 pr_err(DRIVER_NAME ": Int enab: 0x%08x | Sig enab: 0x%08x\n",
77 sdhci_readl(host, SDHCI_INT_ENABLE),
78 sdhci_readl(host, SDHCI_SIGNAL_ENABLE));
79 pr_err(DRIVER_NAME ": AC12 err: 0x%08x | Slot int: 0x%08x\n",
80 sdhci_readw(host, SDHCI_ACMD12_ERR),
81 sdhci_readw(host, SDHCI_SLOT_INT_STATUS));
82 pr_err(DRIVER_NAME ": Caps: 0x%08x | Caps_1: 0x%08x\n",
83 sdhci_readl(host, SDHCI_CAPABILITIES),
84 sdhci_readl(host, SDHCI_CAPABILITIES_1));
85 pr_err(DRIVER_NAME ": Cmd: 0x%08x | Max curr: 0x%08x\n",
86 sdhci_readw(host, SDHCI_COMMAND),
87 sdhci_readl(host, SDHCI_MAX_CURRENT));
88 pr_err(DRIVER_NAME ": Host ctl2: 0x%08x\n",
89 sdhci_readw(host, SDHCI_HOST_CONTROL2));
Pierre Ossmand129bce2006-03-24 03:18:17 -080090
Adrian Huntere57a5f62014-11-04 12:42:46 +020091 if (host->flags & SDHCI_USE_ADMA) {
92 if (host->flags & SDHCI_USE_64_BIT_DMA)
Chuanxiao Donga7c53672016-06-22 14:40:01 +030093 pr_err(DRIVER_NAME ": ADMA Err: 0x%08x | ADMA Ptr: 0x%08x%08x\n",
94 readl(host->ioaddr + SDHCI_ADMA_ERROR),
95 readl(host->ioaddr + SDHCI_ADMA_ADDRESS_HI),
96 readl(host->ioaddr + SDHCI_ADMA_ADDRESS));
Adrian Huntere57a5f62014-11-04 12:42:46 +020097 else
Chuanxiao Donga7c53672016-06-22 14:40:01 +030098 pr_err(DRIVER_NAME ": ADMA Err: 0x%08x | ADMA Ptr: 0x%08x\n",
99 readl(host->ioaddr + SDHCI_ADMA_ERROR),
100 readl(host->ioaddr + SDHCI_ADMA_ADDRESS));
Adrian Huntere57a5f62014-11-04 12:42:46 +0200101 }
Ben Dooksbe3f4ae2009-06-08 23:33:52 +0100102
Chuanxiao Donga7c53672016-06-22 14:40:01 +0300103 pr_err(DRIVER_NAME ": ===========================================\n");
Pierre Ossmand129bce2006-03-24 03:18:17 -0800104}
105
106/*****************************************************************************\
107 * *
108 * Low level functions *
109 * *
110\*****************************************************************************/
111
Adrian Hunter56a590d2016-06-29 16:24:32 +0300112static inline bool sdhci_data_line_cmd(struct mmc_command *cmd)
113{
114 return cmd->data || cmd->flags & MMC_RSP_BUSY;
115}
116
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300117static void sdhci_set_card_detection(struct sdhci_host *host, bool enable)
118{
Russell King5b4f1f62014-04-25 12:57:02 +0100119 u32 present;
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300120
Adrian Hunterc79396c2011-12-27 15:48:42 +0200121 if ((host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION) ||
Jaehoon Chung860951c2016-06-21 10:13:26 +0900122 !mmc_card_is_removable(host->mmc))
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300123 return;
124
Russell King5b4f1f62014-04-25 12:57:02 +0100125 if (enable) {
126 present = sdhci_readl(host, SDHCI_PRESENT_STATE) &
127 SDHCI_CARD_PRESENT;
Shawn Guod25928d2011-06-21 22:41:48 +0800128
Russell King5b4f1f62014-04-25 12:57:02 +0100129 host->ier |= present ? SDHCI_INT_CARD_REMOVE :
130 SDHCI_INT_CARD_INSERT;
131 } else {
132 host->ier &= ~(SDHCI_INT_CARD_REMOVE | SDHCI_INT_CARD_INSERT);
133 }
Russell Kingb537f942014-04-25 12:56:01 +0100134
135 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
136 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300137}
138
139static void sdhci_enable_card_detection(struct sdhci_host *host)
140{
141 sdhci_set_card_detection(host, true);
142}
143
144static void sdhci_disable_card_detection(struct sdhci_host *host)
145{
146 sdhci_set_card_detection(host, false);
147}
148
Ulf Hansson02d0b682016-04-11 15:32:41 +0200149static void sdhci_runtime_pm_bus_on(struct sdhci_host *host)
150{
151 if (host->bus_on)
152 return;
153 host->bus_on = true;
154 pm_runtime_get_noresume(host->mmc->parent);
155}
156
157static void sdhci_runtime_pm_bus_off(struct sdhci_host *host)
158{
159 if (!host->bus_on)
160 return;
161 host->bus_on = false;
162 pm_runtime_put_noidle(host->mmc->parent);
163}
164
Russell King03231f92014-04-25 12:57:12 +0100165void sdhci_reset(struct sdhci_host *host, u8 mask)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800166{
Pierre Ossmane16514d82006-06-30 02:22:24 -0700167 unsigned long timeout;
Philip Rakity393c1a32011-01-21 11:26:40 -0800168
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300169 sdhci_writeb(host, mask, SDHCI_SOFTWARE_RESET);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800170
Adrian Hunterf0710a52013-05-06 12:17:32 +0300171 if (mask & SDHCI_RESET_ALL) {
Pierre Ossmand129bce2006-03-24 03:18:17 -0800172 host->clock = 0;
Adrian Hunterf0710a52013-05-06 12:17:32 +0300173 /* Reset-all turns off SD Bus Power */
174 if (host->quirks2 & SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON)
175 sdhci_runtime_pm_bus_off(host);
176 }
Pierre Ossmand129bce2006-03-24 03:18:17 -0800177
Pierre Ossmane16514d82006-06-30 02:22:24 -0700178 /* Wait max 100 ms */
179 timeout = 100;
180
181 /* hw clears the bit when it's done */
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300182 while (sdhci_readb(host, SDHCI_SOFTWARE_RESET) & mask) {
Pierre Ossmane16514d82006-06-30 02:22:24 -0700183 if (timeout == 0) {
Girish K Sa3c76eb2011-10-11 11:44:09 +0530184 pr_err("%s: Reset 0x%x never completed.\n",
Pierre Ossmane16514d82006-06-30 02:22:24 -0700185 mmc_hostname(host->mmc), (int)mask);
186 sdhci_dumpregs(host);
187 return;
188 }
189 timeout--;
190 mdelay(1);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800191 }
Russell King03231f92014-04-25 12:57:12 +0100192}
193EXPORT_SYMBOL_GPL(sdhci_reset);
Anton Vorontsov063a9db2009-03-17 00:14:02 +0300194
Russell King03231f92014-04-25 12:57:12 +0100195static void sdhci_do_reset(struct sdhci_host *host, u8 mask)
196{
197 if (host->quirks & SDHCI_QUIRK_NO_CARD_NO_RESET) {
Adrian Hunterd3940f22016-06-29 16:24:14 +0300198 struct mmc_host *mmc = host->mmc;
199
200 if (!mmc->ops->get_cd(mmc))
Russell King03231f92014-04-25 12:57:12 +0100201 return;
202 }
203
204 host->ops->reset(host, mask);
Philip Rakity393c1a32011-01-21 11:26:40 -0800205
Russell Kingda91a8f2014-04-25 13:00:12 +0100206 if (mask & SDHCI_RESET_ALL) {
207 if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
208 if (host->ops->enable_dma)
209 host->ops->enable_dma(host);
210 }
211
212 /* Resetting the controller clears many */
213 host->preset_enabled = false;
Shaohui Xie3abc1e802011-12-29 16:33:00 +0800214 }
Pierre Ossmand129bce2006-03-24 03:18:17 -0800215}
216
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -0800217static void sdhci_init(struct sdhci_host *host, int soft)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800218{
Adrian Hunterd3940f22016-06-29 16:24:14 +0300219 struct mmc_host *mmc = host->mmc;
220
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -0800221 if (soft)
Russell King03231f92014-04-25 12:57:12 +0100222 sdhci_do_reset(host, SDHCI_RESET_CMD|SDHCI_RESET_DATA);
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -0800223 else
Russell King03231f92014-04-25 12:57:12 +0100224 sdhci_do_reset(host, SDHCI_RESET_ALL);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800225
Russell Kingb537f942014-04-25 12:56:01 +0100226 host->ier = SDHCI_INT_BUS_POWER | SDHCI_INT_DATA_END_BIT |
227 SDHCI_INT_DATA_CRC | SDHCI_INT_DATA_TIMEOUT |
228 SDHCI_INT_INDEX | SDHCI_INT_END_BIT | SDHCI_INT_CRC |
229 SDHCI_INT_TIMEOUT | SDHCI_INT_DATA_END |
230 SDHCI_INT_RESPONSE;
231
Dong Aishengf37b20e2016-07-12 15:46:17 +0800232 if (host->tuning_mode == SDHCI_TUNING_MODE_2 ||
233 host->tuning_mode == SDHCI_TUNING_MODE_3)
234 host->ier |= SDHCI_INT_RETUNE;
235
Russell Kingb537f942014-04-25 12:56:01 +0100236 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
237 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -0800238
239 if (soft) {
240 /* force clock reconfiguration */
241 host->clock = 0;
Adrian Hunterd3940f22016-06-29 16:24:14 +0300242 mmc->ops->set_ios(mmc, &mmc->ios);
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -0800243 }
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300244}
Pierre Ossmand129bce2006-03-24 03:18:17 -0800245
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300246static void sdhci_reinit(struct sdhci_host *host)
247{
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -0800248 sdhci_init(host, 0);
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300249 sdhci_enable_card_detection(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800250}
251
Adrian Hunter061d17a2016-04-12 14:25:09 +0300252static void __sdhci_led_activate(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800253{
254 u8 ctrl;
255
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300256 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800257 ctrl |= SDHCI_CTRL_LED;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300258 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800259}
260
Adrian Hunter061d17a2016-04-12 14:25:09 +0300261static void __sdhci_led_deactivate(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800262{
263 u8 ctrl;
264
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300265 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800266 ctrl &= ~SDHCI_CTRL_LED;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300267 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800268}
269
Masahiro Yamada4f782302016-04-14 13:19:39 +0900270#if IS_REACHABLE(CONFIG_LEDS_CLASS)
Pierre Ossman2f730fe2008-03-17 10:29:38 +0100271static void sdhci_led_control(struct led_classdev *led,
Adrian Hunter061d17a2016-04-12 14:25:09 +0300272 enum led_brightness brightness)
Pierre Ossman2f730fe2008-03-17 10:29:38 +0100273{
274 struct sdhci_host *host = container_of(led, struct sdhci_host, led);
275 unsigned long flags;
276
277 spin_lock_irqsave(&host->lock, flags);
278
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300279 if (host->runtime_suspended)
280 goto out;
281
Pierre Ossman2f730fe2008-03-17 10:29:38 +0100282 if (brightness == LED_OFF)
Adrian Hunter061d17a2016-04-12 14:25:09 +0300283 __sdhci_led_deactivate(host);
Pierre Ossman2f730fe2008-03-17 10:29:38 +0100284 else
Adrian Hunter061d17a2016-04-12 14:25:09 +0300285 __sdhci_led_activate(host);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300286out:
Pierre Ossman2f730fe2008-03-17 10:29:38 +0100287 spin_unlock_irqrestore(&host->lock, flags);
288}
Adrian Hunter061d17a2016-04-12 14:25:09 +0300289
290static int sdhci_led_register(struct sdhci_host *host)
291{
292 struct mmc_host *mmc = host->mmc;
293
294 snprintf(host->led_name, sizeof(host->led_name),
295 "%s::", mmc_hostname(mmc));
296
297 host->led.name = host->led_name;
298 host->led.brightness = LED_OFF;
299 host->led.default_trigger = mmc_hostname(mmc);
300 host->led.brightness_set = sdhci_led_control;
301
302 return led_classdev_register(mmc_dev(mmc), &host->led);
303}
304
305static void sdhci_led_unregister(struct sdhci_host *host)
306{
307 led_classdev_unregister(&host->led);
308}
309
310static inline void sdhci_led_activate(struct sdhci_host *host)
311{
312}
313
314static inline void sdhci_led_deactivate(struct sdhci_host *host)
315{
316}
317
318#else
319
320static inline int sdhci_led_register(struct sdhci_host *host)
321{
322 return 0;
323}
324
325static inline void sdhci_led_unregister(struct sdhci_host *host)
326{
327}
328
329static inline void sdhci_led_activate(struct sdhci_host *host)
330{
331 __sdhci_led_activate(host);
332}
333
334static inline void sdhci_led_deactivate(struct sdhci_host *host)
335{
336 __sdhci_led_deactivate(host);
337}
338
Pierre Ossman2f730fe2008-03-17 10:29:38 +0100339#endif
340
Pierre Ossmand129bce2006-03-24 03:18:17 -0800341/*****************************************************************************\
342 * *
343 * Core functions *
344 * *
345\*****************************************************************************/
346
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100347static void sdhci_read_block_pio(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800348{
Pierre Ossman76591502008-07-21 00:32:11 +0200349 unsigned long flags;
350 size_t blksize, len, chunk;
Steven Noonan7244b852008-10-01 01:50:25 -0700351 u32 uninitialized_var(scratch);
Pierre Ossman76591502008-07-21 00:32:11 +0200352 u8 *buf;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800353
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100354 DBG("PIO reading\n");
Pierre Ossmand129bce2006-03-24 03:18:17 -0800355
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100356 blksize = host->data->blksz;
Pierre Ossman76591502008-07-21 00:32:11 +0200357 chunk = 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800358
Pierre Ossman76591502008-07-21 00:32:11 +0200359 local_irq_save(flags);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800360
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100361 while (blksize) {
Fabio Estevambf3a35a2015-05-09 18:44:51 -0300362 BUG_ON(!sg_miter_next(&host->sg_miter));
Pierre Ossmand129bce2006-03-24 03:18:17 -0800363
Pierre Ossman76591502008-07-21 00:32:11 +0200364 len = min(host->sg_miter.length, blksize);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800365
Pierre Ossman76591502008-07-21 00:32:11 +0200366 blksize -= len;
367 host->sg_miter.consumed = len;
Alex Dubov14d836e2007-04-13 19:04:38 +0200368
Pierre Ossman76591502008-07-21 00:32:11 +0200369 buf = host->sg_miter.addr;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800370
Pierre Ossman76591502008-07-21 00:32:11 +0200371 while (len) {
372 if (chunk == 0) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300373 scratch = sdhci_readl(host, SDHCI_BUFFER);
Pierre Ossman76591502008-07-21 00:32:11 +0200374 chunk = 4;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800375 }
Pierre Ossman76591502008-07-21 00:32:11 +0200376
377 *buf = scratch & 0xFF;
378
379 buf++;
380 scratch >>= 8;
381 chunk--;
382 len--;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800383 }
384 }
Pierre Ossman76591502008-07-21 00:32:11 +0200385
386 sg_miter_stop(&host->sg_miter);
387
388 local_irq_restore(flags);
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100389}
Pierre Ossmand129bce2006-03-24 03:18:17 -0800390
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100391static void sdhci_write_block_pio(struct sdhci_host *host)
392{
Pierre Ossman76591502008-07-21 00:32:11 +0200393 unsigned long flags;
394 size_t blksize, len, chunk;
395 u32 scratch;
396 u8 *buf;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100397
398 DBG("PIO writing\n");
399
400 blksize = host->data->blksz;
Pierre Ossman76591502008-07-21 00:32:11 +0200401 chunk = 0;
402 scratch = 0;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100403
Pierre Ossman76591502008-07-21 00:32:11 +0200404 local_irq_save(flags);
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100405
406 while (blksize) {
Fabio Estevambf3a35a2015-05-09 18:44:51 -0300407 BUG_ON(!sg_miter_next(&host->sg_miter));
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100408
Pierre Ossman76591502008-07-21 00:32:11 +0200409 len = min(host->sg_miter.length, blksize);
Alex Dubov14d836e2007-04-13 19:04:38 +0200410
Pierre Ossman76591502008-07-21 00:32:11 +0200411 blksize -= len;
412 host->sg_miter.consumed = len;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100413
Pierre Ossman76591502008-07-21 00:32:11 +0200414 buf = host->sg_miter.addr;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100415
Pierre Ossman76591502008-07-21 00:32:11 +0200416 while (len) {
417 scratch |= (u32)*buf << (chunk * 8);
418
419 buf++;
420 chunk++;
421 len--;
422
423 if ((chunk == 4) || ((len == 0) && (blksize == 0))) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300424 sdhci_writel(host, scratch, SDHCI_BUFFER);
Pierre Ossman76591502008-07-21 00:32:11 +0200425 chunk = 0;
426 scratch = 0;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100427 }
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100428 }
429 }
Pierre Ossman76591502008-07-21 00:32:11 +0200430
431 sg_miter_stop(&host->sg_miter);
432
433 local_irq_restore(flags);
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100434}
435
436static void sdhci_transfer_pio(struct sdhci_host *host)
437{
438 u32 mask;
439
Pierre Ossman76591502008-07-21 00:32:11 +0200440 if (host->blocks == 0)
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100441 return;
442
443 if (host->data->flags & MMC_DATA_READ)
444 mask = SDHCI_DATA_AVAILABLE;
445 else
446 mask = SDHCI_SPACE_AVAILABLE;
447
Pierre Ossman4a3cba32008-07-29 00:11:16 +0200448 /*
449 * Some controllers (JMicron JMB38x) mess up the buffer bits
450 * for transfers < 4 bytes. As long as it is just one block,
451 * we can ignore the bits.
452 */
453 if ((host->quirks & SDHCI_QUIRK_BROKEN_SMALL_PIO) &&
454 (host->data->blocks == 1))
455 mask = ~0;
456
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300457 while (sdhci_readl(host, SDHCI_PRESENT_STATE) & mask) {
Anton Vorontsov3e3bf202009-03-17 00:14:00 +0300458 if (host->quirks & SDHCI_QUIRK_PIO_NEEDS_DELAY)
459 udelay(100);
460
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100461 if (host->data->flags & MMC_DATA_READ)
462 sdhci_read_block_pio(host);
463 else
464 sdhci_write_block_pio(host);
465
Pierre Ossman76591502008-07-21 00:32:11 +0200466 host->blocks--;
467 if (host->blocks == 0)
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100468 break;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100469 }
470
471 DBG("PIO transfer complete.\n");
Pierre Ossmand129bce2006-03-24 03:18:17 -0800472}
473
Russell King48857d92016-01-26 13:40:16 +0000474static int sdhci_pre_dma_transfer(struct sdhci_host *host,
Russell Kingc0999b72016-01-26 13:40:27 +0000475 struct mmc_data *data, int cookie)
Russell King48857d92016-01-26 13:40:16 +0000476{
477 int sg_count;
478
Russell King94538e52016-01-26 13:40:37 +0000479 /*
480 * If the data buffers are already mapped, return the previous
481 * dma_map_sg() result.
482 */
483 if (data->host_cookie == COOKIE_PRE_MAPPED)
Russell King48857d92016-01-26 13:40:16 +0000484 return data->sg_count;
Russell King48857d92016-01-26 13:40:16 +0000485
486 sg_count = dma_map_sg(mmc_dev(host->mmc), data->sg, data->sg_len,
487 data->flags & MMC_DATA_WRITE ?
488 DMA_TO_DEVICE : DMA_FROM_DEVICE);
489
490 if (sg_count == 0)
491 return -ENOSPC;
492
493 data->sg_count = sg_count;
Russell Kingc0999b72016-01-26 13:40:27 +0000494 data->host_cookie = cookie;
Russell King48857d92016-01-26 13:40:16 +0000495
496 return sg_count;
497}
498
Pierre Ossman2134a922008-06-28 18:28:51 +0200499static char *sdhci_kmap_atomic(struct scatterlist *sg, unsigned long *flags)
500{
501 local_irq_save(*flags);
Cong Wang482fce92011-11-27 13:27:00 +0800502 return kmap_atomic(sg_page(sg)) + sg->offset;
Pierre Ossman2134a922008-06-28 18:28:51 +0200503}
504
505static void sdhci_kunmap_atomic(void *buffer, unsigned long *flags)
506{
Cong Wang482fce92011-11-27 13:27:00 +0800507 kunmap_atomic(buffer);
Pierre Ossman2134a922008-06-28 18:28:51 +0200508 local_irq_restore(*flags);
509}
510
Adrian Huntere57a5f62014-11-04 12:42:46 +0200511static void sdhci_adma_write_desc(struct sdhci_host *host, void *desc,
512 dma_addr_t addr, int len, unsigned cmd)
Ben Dooks118cd172010-03-05 13:43:26 -0800513{
Adrian Huntere57a5f62014-11-04 12:42:46 +0200514 struct sdhci_adma2_64_desc *dma_desc = desc;
Ben Dooks118cd172010-03-05 13:43:26 -0800515
Adrian Huntere57a5f62014-11-04 12:42:46 +0200516 /* 32-bit and 64-bit descriptors have these members in same position */
Adrian Hunter05452302014-11-04 12:42:45 +0200517 dma_desc->cmd = cpu_to_le16(cmd);
518 dma_desc->len = cpu_to_le16(len);
Adrian Huntere57a5f62014-11-04 12:42:46 +0200519 dma_desc->addr_lo = cpu_to_le32((u32)addr);
520
521 if (host->flags & SDHCI_USE_64_BIT_DMA)
522 dma_desc->addr_hi = cpu_to_le32((u64)addr >> 32);
Ben Dooks118cd172010-03-05 13:43:26 -0800523}
524
Adrian Hunterb5ffa672014-11-04 12:42:40 +0200525static void sdhci_adma_mark_end(void *desc)
526{
Adrian Huntere57a5f62014-11-04 12:42:46 +0200527 struct sdhci_adma2_64_desc *dma_desc = desc;
Adrian Hunterb5ffa672014-11-04 12:42:40 +0200528
Adrian Huntere57a5f62014-11-04 12:42:46 +0200529 /* 32-bit and 64-bit descriptors have 'cmd' in same position */
Adrian Hunter05452302014-11-04 12:42:45 +0200530 dma_desc->cmd |= cpu_to_le16(ADMA2_END);
Adrian Hunterb5ffa672014-11-04 12:42:40 +0200531}
532
Russell King60c64762016-01-26 13:40:22 +0000533static void sdhci_adma_table_pre(struct sdhci_host *host,
534 struct mmc_data *data, int sg_count)
Pierre Ossman2134a922008-06-28 18:28:51 +0200535{
Pierre Ossman2134a922008-06-28 18:28:51 +0200536 struct scatterlist *sg;
Pierre Ossman2134a922008-06-28 18:28:51 +0200537 unsigned long flags;
Russell Kingacc3ad12016-01-26 13:40:00 +0000538 dma_addr_t addr, align_addr;
539 void *desc, *align;
540 char *buffer;
541 int len, offset, i;
Pierre Ossman2134a922008-06-28 18:28:51 +0200542
543 /*
544 * The spec does not specify endianness of descriptor table.
545 * We currently guess that it is LE.
546 */
547
Russell King60c64762016-01-26 13:40:22 +0000548 host->sg_count = sg_count;
Pierre Ossman2134a922008-06-28 18:28:51 +0200549
Adrian Hunter4efaa6f2014-11-04 12:42:39 +0200550 desc = host->adma_table;
Pierre Ossman2134a922008-06-28 18:28:51 +0200551 align = host->align_buffer;
552
553 align_addr = host->align_addr;
554
555 for_each_sg(data->sg, sg, host->sg_count, i) {
556 addr = sg_dma_address(sg);
557 len = sg_dma_len(sg);
558
559 /*
Russell Kingacc3ad12016-01-26 13:40:00 +0000560 * The SDHCI specification states that ADMA addresses must
561 * be 32-bit aligned. If they aren't, then we use a bounce
562 * buffer for the (up to three) bytes that screw up the
Pierre Ossman2134a922008-06-28 18:28:51 +0200563 * alignment.
564 */
Adrian Hunter04a5ae62015-11-26 14:00:49 +0200565 offset = (SDHCI_ADMA2_ALIGN - (addr & SDHCI_ADMA2_MASK)) &
566 SDHCI_ADMA2_MASK;
Pierre Ossman2134a922008-06-28 18:28:51 +0200567 if (offset) {
568 if (data->flags & MMC_DATA_WRITE) {
569 buffer = sdhci_kmap_atomic(sg, &flags);
570 memcpy(align, buffer, offset);
571 sdhci_kunmap_atomic(buffer, &flags);
572 }
573
Ben Dooks118cd172010-03-05 13:43:26 -0800574 /* tran, valid */
Adrian Huntere57a5f62014-11-04 12:42:46 +0200575 sdhci_adma_write_desc(host, desc, align_addr, offset,
Adrian Hunter739d46d2014-11-04 12:42:44 +0200576 ADMA2_TRAN_VALID);
Pierre Ossman2134a922008-06-28 18:28:51 +0200577
578 BUG_ON(offset > 65536);
579
Adrian Hunter04a5ae62015-11-26 14:00:49 +0200580 align += SDHCI_ADMA2_ALIGN;
581 align_addr += SDHCI_ADMA2_ALIGN;
Pierre Ossman2134a922008-06-28 18:28:51 +0200582
Adrian Hunter76fe3792014-11-04 12:42:42 +0200583 desc += host->desc_sz;
Pierre Ossman2134a922008-06-28 18:28:51 +0200584
585 addr += offset;
586 len -= offset;
587 }
588
Pierre Ossman2134a922008-06-28 18:28:51 +0200589 BUG_ON(len > 65536);
590
Adrian Hunter347ea322015-11-26 14:00:48 +0200591 if (len) {
592 /* tran, valid */
593 sdhci_adma_write_desc(host, desc, addr, len,
594 ADMA2_TRAN_VALID);
595 desc += host->desc_sz;
596 }
Pierre Ossman2134a922008-06-28 18:28:51 +0200597
598 /*
599 * If this triggers then we have a calculation bug
600 * somewhere. :/
601 */
Adrian Hunter76fe3792014-11-04 12:42:42 +0200602 WARN_ON((desc - host->adma_table) >= host->adma_table_sz);
Pierre Ossman2134a922008-06-28 18:28:51 +0200603 }
604
Thomas Abraham70764a92010-05-26 14:42:04 -0700605 if (host->quirks & SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC) {
Russell Kingacc3ad12016-01-26 13:40:00 +0000606 /* Mark the last descriptor as the terminating descriptor */
Adrian Hunter4efaa6f2014-11-04 12:42:39 +0200607 if (desc != host->adma_table) {
Adrian Hunter76fe3792014-11-04 12:42:42 +0200608 desc -= host->desc_sz;
Adrian Hunterb5ffa672014-11-04 12:42:40 +0200609 sdhci_adma_mark_end(desc);
Thomas Abraham70764a92010-05-26 14:42:04 -0700610 }
611 } else {
Russell Kingacc3ad12016-01-26 13:40:00 +0000612 /* Add a terminating entry - nop, end, valid */
Adrian Huntere57a5f62014-11-04 12:42:46 +0200613 sdhci_adma_write_desc(host, desc, 0, 0, ADMA2_NOP_END_VALID);
Thomas Abraham70764a92010-05-26 14:42:04 -0700614 }
Pierre Ossman2134a922008-06-28 18:28:51 +0200615}
616
617static void sdhci_adma_table_post(struct sdhci_host *host,
618 struct mmc_data *data)
619{
Pierre Ossman2134a922008-06-28 18:28:51 +0200620 struct scatterlist *sg;
621 int i, size;
Adrian Hunter1c3d5f62014-11-04 12:42:41 +0200622 void *align;
Pierre Ossman2134a922008-06-28 18:28:51 +0200623 char *buffer;
624 unsigned long flags;
625
Russell King47fa9612016-01-26 13:40:06 +0000626 if (data->flags & MMC_DATA_READ) {
627 bool has_unaligned = false;
Russell Kingde0b65a2014-04-25 12:58:29 +0100628
Russell King47fa9612016-01-26 13:40:06 +0000629 /* Do a quick scan of the SG list for any unaligned mappings */
630 for_each_sg(data->sg, sg, host->sg_count, i)
Adrian Hunter04a5ae62015-11-26 14:00:49 +0200631 if (sg_dma_address(sg) & SDHCI_ADMA2_MASK) {
Russell King47fa9612016-01-26 13:40:06 +0000632 has_unaligned = true;
633 break;
634 }
Pierre Ossman2134a922008-06-28 18:28:51 +0200635
Russell King47fa9612016-01-26 13:40:06 +0000636 if (has_unaligned) {
637 dma_sync_sg_for_cpu(mmc_dev(host->mmc), data->sg,
Russell Kingf55c98f2016-01-26 13:40:11 +0000638 data->sg_len, DMA_FROM_DEVICE);
Pierre Ossman2134a922008-06-28 18:28:51 +0200639
Russell King47fa9612016-01-26 13:40:06 +0000640 align = host->align_buffer;
641
642 for_each_sg(data->sg, sg, host->sg_count, i) {
643 if (sg_dma_address(sg) & SDHCI_ADMA2_MASK) {
644 size = SDHCI_ADMA2_ALIGN -
645 (sg_dma_address(sg) & SDHCI_ADMA2_MASK);
646
647 buffer = sdhci_kmap_atomic(sg, &flags);
648 memcpy(buffer, align, size);
649 sdhci_kunmap_atomic(buffer, &flags);
650
651 align += SDHCI_ADMA2_ALIGN;
652 }
Pierre Ossman2134a922008-06-28 18:28:51 +0200653 }
654 }
655 }
Pierre Ossman2134a922008-06-28 18:28:51 +0200656}
657
Andrei Warkentina3c77782011-04-11 16:13:42 -0500658static u8 sdhci_calc_timeout(struct sdhci_host *host, struct mmc_command *cmd)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800659{
Pierre Ossman1c8cde92006-06-30 02:22:25 -0700660 u8 count;
Andrei Warkentina3c77782011-04-11 16:13:42 -0500661 struct mmc_data *data = cmd->data;
Pierre Ossman1c8cde92006-06-30 02:22:25 -0700662 unsigned target_timeout, current_timeout;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800663
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200664 /*
665 * If the host controller provides us with an incorrect timeout
666 * value, just skip the check and use 0xE. The hardware may take
667 * longer to time out, but that's much better than having a too-short
668 * timeout value.
669 */
Pierre Ossman11a2f1b2009-06-21 20:59:33 +0200670 if (host->quirks & SDHCI_QUIRK_BROKEN_TIMEOUT_VAL)
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200671 return 0xE;
Pierre Ossmane538fbe2007-08-12 16:46:32 +0200672
Andrei Warkentina3c77782011-04-11 16:13:42 -0500673 /* Unspecified timeout, assume max */
Ulf Hansson1d4d7742014-01-08 15:06:08 +0100674 if (!data && !cmd->busy_timeout)
Andrei Warkentina3c77782011-04-11 16:13:42 -0500675 return 0xE;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800676
Andrei Warkentina3c77782011-04-11 16:13:42 -0500677 /* timeout in us */
678 if (!data)
Ulf Hansson1d4d7742014-01-08 15:06:08 +0100679 target_timeout = cmd->busy_timeout * 1000;
Andy Shevchenko78a2ca22011-08-03 18:35:59 +0300680 else {
Russell Kingfafcfda2016-01-26 13:40:58 +0000681 target_timeout = DIV_ROUND_UP(data->timeout_ns, 1000);
Russell King7f055382016-01-26 13:41:04 +0000682 if (host->clock && data->timeout_clks) {
683 unsigned long long val;
684
685 /*
686 * data->timeout_clks is in units of clock cycles.
687 * host->clock is in Hz. target_timeout is in us.
688 * Hence, us = 1000000 * cycles / Hz. Round up.
689 */
Haibo Chen02265cd62016-10-17 10:18:37 +0200690 val = 1000000ULL * data->timeout_clks;
Russell King7f055382016-01-26 13:41:04 +0000691 if (do_div(val, host->clock))
692 target_timeout++;
693 target_timeout += val;
694 }
Andy Shevchenko78a2ca22011-08-03 18:35:59 +0300695 }
Anton Vorontsov81b39802009-09-22 16:45:13 -0700696
Pierre Ossman1c8cde92006-06-30 02:22:25 -0700697 /*
698 * Figure out needed cycles.
699 * We do this in steps in order to fit inside a 32 bit int.
700 * The first step is the minimum timeout, which will have a
701 * minimum resolution of 6 bits:
702 * (1) 2^13*1000 > 2^22,
703 * (2) host->timeout_clk < 2^16
704 * =>
705 * (1) / (2) > 2^6
706 */
707 count = 0;
708 current_timeout = (1 << 13) * 1000 / host->timeout_clk;
709 while (current_timeout < target_timeout) {
710 count++;
711 current_timeout <<= 1;
712 if (count >= 0xF)
713 break;
714 }
715
716 if (count >= 0xF) {
Chris Ball09eeff52012-06-01 10:39:45 -0400717 DBG("%s: Too large timeout 0x%x requested for CMD%d!\n",
718 mmc_hostname(host->mmc), count, cmd->opcode);
Pierre Ossman1c8cde92006-06-30 02:22:25 -0700719 count = 0xE;
720 }
721
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200722 return count;
723}
724
Anton Vorontsov6aa943a2009-03-17 00:13:50 +0300725static void sdhci_set_transfer_irqs(struct sdhci_host *host)
726{
727 u32 pio_irqs = SDHCI_INT_DATA_AVAIL | SDHCI_INT_SPACE_AVAIL;
728 u32 dma_irqs = SDHCI_INT_DMA_END | SDHCI_INT_ADMA_ERROR;
729
730 if (host->flags & SDHCI_REQ_USE_DMA)
Russell Kingb537f942014-04-25 12:56:01 +0100731 host->ier = (host->ier & ~pio_irqs) | dma_irqs;
Anton Vorontsov6aa943a2009-03-17 00:13:50 +0300732 else
Russell Kingb537f942014-04-25 12:56:01 +0100733 host->ier = (host->ier & ~dma_irqs) | pio_irqs;
734
735 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
736 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Anton Vorontsov6aa943a2009-03-17 00:13:50 +0300737}
738
Aisheng Dongb45e6682014-08-27 15:26:29 +0800739static void sdhci_set_timeout(struct sdhci_host *host, struct mmc_command *cmd)
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200740{
741 u8 count;
Aisheng Dongb45e6682014-08-27 15:26:29 +0800742
743 if (host->ops->set_timeout) {
744 host->ops->set_timeout(host, cmd);
745 } else {
746 count = sdhci_calc_timeout(host, cmd);
747 sdhci_writeb(host, count, SDHCI_TIMEOUT_CONTROL);
748 }
749}
750
751static void sdhci_prepare_data(struct sdhci_host *host, struct mmc_command *cmd)
752{
Pierre Ossman2134a922008-06-28 18:28:51 +0200753 u8 ctrl;
Andrei Warkentina3c77782011-04-11 16:13:42 -0500754 struct mmc_data *data = cmd->data;
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200755
Adrian Hunter56a590d2016-06-29 16:24:32 +0300756 if (sdhci_data_line_cmd(cmd))
Aisheng Dongb45e6682014-08-27 15:26:29 +0800757 sdhci_set_timeout(host, cmd);
Andrei Warkentina3c77782011-04-11 16:13:42 -0500758
759 if (!data)
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200760 return;
761
Adrian Hunter43dea092016-06-29 16:24:26 +0300762 WARN_ON(host->data);
763
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200764 /* Sanity checks */
765 BUG_ON(data->blksz * data->blocks > 524288);
766 BUG_ON(data->blksz > host->mmc->max_blk_size);
767 BUG_ON(data->blocks > 65535);
768
769 host->data = data;
770 host->data_early = 0;
Mikko Vinnif6a03cb2011-04-12 09:36:18 -0400771 host->data->bytes_xfered = 0;
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200772
Russell Kingfce14422016-01-26 13:41:20 +0000773 if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
Pierre Ossman2134a922008-06-28 18:28:51 +0200774 struct scatterlist *sg;
Russell Kingdf953922016-01-26 13:41:14 +0000775 unsigned int length_mask, offset_mask;
Russell Kinga0eaf0f2016-01-26 13:41:09 +0000776 int i;
Pierre Ossman2134a922008-06-28 18:28:51 +0200777
Russell Kingfce14422016-01-26 13:41:20 +0000778 host->flags |= SDHCI_REQ_USE_DMA;
779
780 /*
781 * FIXME: This doesn't account for merging when mapping the
782 * scatterlist.
783 *
784 * The assumption here being that alignment and lengths are
785 * the same after DMA mapping to device address space.
786 */
Russell Kinga0eaf0f2016-01-26 13:41:09 +0000787 length_mask = 0;
Russell Kingdf953922016-01-26 13:41:14 +0000788 offset_mask = 0;
Pierre Ossman2134a922008-06-28 18:28:51 +0200789 if (host->flags & SDHCI_USE_ADMA) {
Russell Kingdf953922016-01-26 13:41:14 +0000790 if (host->quirks & SDHCI_QUIRK_32BIT_ADMA_SIZE) {
Russell Kinga0eaf0f2016-01-26 13:41:09 +0000791 length_mask = 3;
Russell Kingdf953922016-01-26 13:41:14 +0000792 /*
793 * As we use up to 3 byte chunks to work
794 * around alignment problems, we need to
795 * check the offset as well.
796 */
797 offset_mask = 3;
798 }
Pierre Ossman2134a922008-06-28 18:28:51 +0200799 } else {
800 if (host->quirks & SDHCI_QUIRK_32BIT_DMA_SIZE)
Russell Kinga0eaf0f2016-01-26 13:41:09 +0000801 length_mask = 3;
Russell Kingdf953922016-01-26 13:41:14 +0000802 if (host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR)
803 offset_mask = 3;
Pierre Ossman2134a922008-06-28 18:28:51 +0200804 }
805
Russell Kingdf953922016-01-26 13:41:14 +0000806 if (unlikely(length_mask | offset_mask)) {
Pierre Ossman2134a922008-06-28 18:28:51 +0200807 for_each_sg(data->sg, sg, data->sg_len, i) {
Russell Kinga0eaf0f2016-01-26 13:41:09 +0000808 if (sg->length & length_mask) {
Marek Vasut2e4456f2015-11-18 10:47:02 +0100809 DBG("Reverting to PIO because of transfer size (%d)\n",
Russell Kinga0eaf0f2016-01-26 13:41:09 +0000810 sg->length);
Pierre Ossman2134a922008-06-28 18:28:51 +0200811 host->flags &= ~SDHCI_REQ_USE_DMA;
812 break;
813 }
Russell Kinga0eaf0f2016-01-26 13:41:09 +0000814 if (sg->offset & offset_mask) {
Marek Vasut2e4456f2015-11-18 10:47:02 +0100815 DBG("Reverting to PIO because of bad alignment\n");
Pierre Ossman2134a922008-06-28 18:28:51 +0200816 host->flags &= ~SDHCI_REQ_USE_DMA;
817 break;
818 }
819 }
820 }
821 }
822
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200823 if (host->flags & SDHCI_REQ_USE_DMA) {
Russell Kingc0999b72016-01-26 13:40:27 +0000824 int sg_cnt = sdhci_pre_dma_transfer(host, data, COOKIE_MAPPED);
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200825
Russell King60c64762016-01-26 13:40:22 +0000826 if (sg_cnt <= 0) {
827 /*
828 * This only happens when someone fed
829 * us an invalid request.
830 */
831 WARN_ON(1);
832 host->flags &= ~SDHCI_REQ_USE_DMA;
833 } else if (host->flags & SDHCI_USE_ADMA) {
834 sdhci_adma_table_pre(host, data, sg_cnt);
835
836 sdhci_writel(host, host->adma_addr, SDHCI_ADMA_ADDRESS);
837 if (host->flags & SDHCI_USE_64_BIT_DMA)
838 sdhci_writel(host,
839 (u64)host->adma_addr >> 32,
840 SDHCI_ADMA_ADDRESS_HI);
841 } else {
842 WARN_ON(sg_cnt != 1);
843 sdhci_writel(host, sg_dma_address(data->sg),
844 SDHCI_DMA_ADDRESS);
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200845 }
846 }
847
Pierre Ossman2134a922008-06-28 18:28:51 +0200848 /*
849 * Always adjust the DMA selection as some controllers
850 * (e.g. JMicron) can't do PIO properly when the selection
851 * is ADMA.
852 */
853 if (host->version >= SDHCI_SPEC_200) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300854 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
Pierre Ossman2134a922008-06-28 18:28:51 +0200855 ctrl &= ~SDHCI_CTRL_DMA_MASK;
856 if ((host->flags & SDHCI_REQ_USE_DMA) &&
Adrian Huntere57a5f62014-11-04 12:42:46 +0200857 (host->flags & SDHCI_USE_ADMA)) {
858 if (host->flags & SDHCI_USE_64_BIT_DMA)
859 ctrl |= SDHCI_CTRL_ADMA64;
860 else
861 ctrl |= SDHCI_CTRL_ADMA32;
862 } else {
Pierre Ossman2134a922008-06-28 18:28:51 +0200863 ctrl |= SDHCI_CTRL_SDMA;
Adrian Huntere57a5f62014-11-04 12:42:46 +0200864 }
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300865 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Pierre Ossmanc9fddbc2007-12-02 19:52:11 +0100866 }
867
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200868 if (!(host->flags & SDHCI_REQ_USE_DMA)) {
Sebastian Andrzej Siewiorda60a912009-06-18 09:33:32 +0200869 int flags;
870
871 flags = SG_MITER_ATOMIC;
872 if (host->data->flags & MMC_DATA_READ)
873 flags |= SG_MITER_TO_SG;
874 else
875 flags |= SG_MITER_FROM_SG;
876 sg_miter_start(&host->sg_miter, data->sg, data->sg_len, flags);
Pierre Ossman76591502008-07-21 00:32:11 +0200877 host->blocks = data->blocks;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800878 }
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700879
Anton Vorontsov6aa943a2009-03-17 00:13:50 +0300880 sdhci_set_transfer_irqs(host);
881
Mikko Vinnif6a03cb2011-04-12 09:36:18 -0400882 /* Set the DMA boundary value and block size */
883 sdhci_writew(host, SDHCI_MAKE_BLKSZ(SDHCI_DEFAULT_BOUNDARY_ARG,
884 data->blksz), SDHCI_BLOCK_SIZE);
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300885 sdhci_writew(host, data->blocks, SDHCI_BLOCK_COUNT);
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700886}
887
Adrian Hunter0293d502016-06-29 16:24:35 +0300888static inline bool sdhci_auto_cmd12(struct sdhci_host *host,
889 struct mmc_request *mrq)
890{
Adrian Hunter20845be2016-08-16 13:44:13 +0300891 return !mrq->sbc && (host->flags & SDHCI_AUTO_CMD12) &&
892 !mrq->cap_cmd_during_tfr;
Adrian Hunter0293d502016-06-29 16:24:35 +0300893}
894
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700895static void sdhci_set_transfer_mode(struct sdhci_host *host,
Andrei Warkentine89d4562011-05-23 15:06:37 -0500896 struct mmc_command *cmd)
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700897{
Vincent Yangd3fc5d72015-01-20 16:05:17 +0800898 u16 mode = 0;
Andrei Warkentine89d4562011-05-23 15:06:37 -0500899 struct mmc_data *data = cmd->data;
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700900
Dong Aisheng2b558c12013-10-30 22:09:48 +0800901 if (data == NULL) {
Vincent Wan9b8ffea2014-11-05 14:09:00 +0800902 if (host->quirks2 &
903 SDHCI_QUIRK2_CLEAR_TRANSFERMODE_REG_BEFORE_CMD) {
904 sdhci_writew(host, 0x0, SDHCI_TRANSFER_MODE);
905 } else {
Dong Aisheng2b558c12013-10-30 22:09:48 +0800906 /* clear Auto CMD settings for no data CMDs */
Vincent Wan9b8ffea2014-11-05 14:09:00 +0800907 mode = sdhci_readw(host, SDHCI_TRANSFER_MODE);
908 sdhci_writew(host, mode & ~(SDHCI_TRNS_AUTO_CMD12 |
Dong Aisheng2b558c12013-10-30 22:09:48 +0800909 SDHCI_TRNS_AUTO_CMD23), SDHCI_TRANSFER_MODE);
Vincent Wan9b8ffea2014-11-05 14:09:00 +0800910 }
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700911 return;
Dong Aisheng2b558c12013-10-30 22:09:48 +0800912 }
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700913
Pierre Ossmane538fbe2007-08-12 16:46:32 +0200914 WARN_ON(!host->data);
915
Vincent Yangd3fc5d72015-01-20 16:05:17 +0800916 if (!(host->quirks2 & SDHCI_QUIRK2_SUPPORT_SINGLE))
917 mode = SDHCI_TRNS_BLK_CNT_EN;
918
Andrei Warkentine89d4562011-05-23 15:06:37 -0500919 if (mmc_op_multi(cmd->opcode) || data->blocks > 1) {
Vincent Yangd3fc5d72015-01-20 16:05:17 +0800920 mode = SDHCI_TRNS_BLK_CNT_EN | SDHCI_TRNS_MULTI;
Andrei Warkentine89d4562011-05-23 15:06:37 -0500921 /*
922 * If we are sending CMD23, CMD12 never gets sent
923 * on successful completion (so no Auto-CMD12).
924 */
Adrian Hunter0293d502016-06-29 16:24:35 +0300925 if (sdhci_auto_cmd12(host, cmd->mrq) &&
Corneliu Doban85cc1c32015-02-09 16:06:29 -0800926 (cmd->opcode != SD_IO_RW_EXTENDED))
Andrei Warkentine89d4562011-05-23 15:06:37 -0500927 mode |= SDHCI_TRNS_AUTO_CMD12;
Adrian Huntera4c73ab2016-06-29 16:24:25 +0300928 else if (cmd->mrq->sbc && (host->flags & SDHCI_AUTO_CMD23)) {
Andrei Warkentin8edf63712011-05-23 15:06:39 -0500929 mode |= SDHCI_TRNS_AUTO_CMD23;
Adrian Huntera4c73ab2016-06-29 16:24:25 +0300930 sdhci_writel(host, cmd->mrq->sbc->arg, SDHCI_ARGUMENT2);
Andrei Warkentin8edf63712011-05-23 15:06:39 -0500931 }
Jerry Huangc4512f72010-08-10 18:01:59 -0700932 }
Andrei Warkentin8edf63712011-05-23 15:06:39 -0500933
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700934 if (data->flags & MMC_DATA_READ)
935 mode |= SDHCI_TRNS_READ;
Pierre Ossmanc9fddbc2007-12-02 19:52:11 +0100936 if (host->flags & SDHCI_REQ_USE_DMA)
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700937 mode |= SDHCI_TRNS_DMA;
938
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300939 sdhci_writew(host, mode, SDHCI_TRANSFER_MODE);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800940}
941
Adrian Hunter0cc563c2016-06-29 16:24:28 +0300942static bool sdhci_needs_reset(struct sdhci_host *host, struct mmc_request *mrq)
943{
944 return (!(host->flags & SDHCI_DEVICE_DEAD) &&
945 ((mrq->cmd && mrq->cmd->error) ||
946 (mrq->sbc && mrq->sbc->error) ||
947 (mrq->data && ((mrq->data->error && !mrq->data->stop) ||
948 (mrq->data->stop && mrq->data->stop->error))) ||
949 (host->quirks & SDHCI_QUIRK_RESET_AFTER_REQUEST)));
950}
951
Adrian Hunter4e9f8fe2016-06-29 16:24:34 +0300952static void __sdhci_finish_mrq(struct sdhci_host *host, struct mmc_request *mrq)
953{
954 int i;
955
956 for (i = 0; i < SDHCI_MAX_MRQS; i++) {
957 if (host->mrqs_done[i] == mrq) {
958 WARN_ON(1);
959 return;
960 }
961 }
962
963 for (i = 0; i < SDHCI_MAX_MRQS; i++) {
964 if (!host->mrqs_done[i]) {
965 host->mrqs_done[i] = mrq;
966 break;
967 }
968 }
969
970 WARN_ON(i >= SDHCI_MAX_MRQS);
971
972 tasklet_schedule(&host->finish_tasklet);
973}
974
Adrian Huntera6d3bdd2016-06-29 16:24:27 +0300975static void sdhci_finish_mrq(struct sdhci_host *host, struct mmc_request *mrq)
976{
Adrian Hunter5a8a3fe2016-06-29 16:24:30 +0300977 if (host->cmd && host->cmd->mrq == mrq)
978 host->cmd = NULL;
979
980 if (host->data_cmd && host->data_cmd->mrq == mrq)
981 host->data_cmd = NULL;
982
983 if (host->data && host->data->mrq == mrq)
984 host->data = NULL;
985
Adrian Huntered1563d2016-06-29 16:24:29 +0300986 if (sdhci_needs_reset(host, mrq))
987 host->pending_reset = true;
988
Adrian Hunter4e9f8fe2016-06-29 16:24:34 +0300989 __sdhci_finish_mrq(host, mrq);
Adrian Huntera6d3bdd2016-06-29 16:24:27 +0300990}
991
Pierre Ossmand129bce2006-03-24 03:18:17 -0800992static void sdhci_finish_data(struct sdhci_host *host)
993{
Adrian Hunter33a57ad2016-06-29 16:24:36 +0300994 struct mmc_command *data_cmd = host->data_cmd;
995 struct mmc_data *data = host->data;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800996
Pierre Ossmand129bce2006-03-24 03:18:17 -0800997 host->data = NULL;
Adrian Hunter7c89a3d2016-06-29 16:24:23 +0300998 host->data_cmd = NULL;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800999
Russell Kingadd89132016-01-26 13:40:42 +00001000 if ((host->flags & (SDHCI_REQ_USE_DMA | SDHCI_USE_ADMA)) ==
1001 (SDHCI_REQ_USE_DMA | SDHCI_USE_ADMA))
1002 sdhci_adma_table_post(host, data);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001003
1004 /*
Pierre Ossmanc9b74c52008-04-18 20:41:49 +02001005 * The specification states that the block count register must
1006 * be updated, but it does not specify at what point in the
1007 * data flow. That makes the register entirely useless to read
1008 * back so we have to assume that nothing made it to the card
1009 * in the event of an error.
Pierre Ossmand129bce2006-03-24 03:18:17 -08001010 */
Pierre Ossmanc9b74c52008-04-18 20:41:49 +02001011 if (data->error)
1012 data->bytes_xfered = 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001013 else
Pierre Ossmanc9b74c52008-04-18 20:41:49 +02001014 data->bytes_xfered = data->blksz * data->blocks;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001015
Andrei Warkentine89d4562011-05-23 15:06:37 -05001016 /*
1017 * Need to send CMD12 if -
1018 * a) open-ended multiblock transfer (no CMD23)
1019 * b) error in multiblock transfer
1020 */
1021 if (data->stop &&
1022 (data->error ||
Adrian Huntera4c73ab2016-06-29 16:24:25 +03001023 !data->mrq->sbc)) {
Andrei Warkentine89d4562011-05-23 15:06:37 -05001024
Pierre Ossmand129bce2006-03-24 03:18:17 -08001025 /*
1026 * The controller needs a reset of internal state machines
1027 * upon error conditions.
1028 */
Pierre Ossman17b04292007-07-22 22:18:46 +02001029 if (data->error) {
Adrian Hunter33a57ad2016-06-29 16:24:36 +03001030 if (!host->cmd || host->cmd == data_cmd)
1031 sdhci_do_reset(host, SDHCI_RESET_CMD);
Russell King03231f92014-04-25 12:57:12 +01001032 sdhci_do_reset(host, SDHCI_RESET_DATA);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001033 }
1034
Adrian Hunter20845be2016-08-16 13:44:13 +03001035 /*
1036 * 'cap_cmd_during_tfr' request must not use the command line
1037 * after mmc_command_done() has been called. It is upper layer's
1038 * responsibility to send the stop command if required.
1039 */
1040 if (data->mrq->cap_cmd_during_tfr) {
1041 sdhci_finish_mrq(host, data->mrq);
1042 } else {
1043 /* Avoid triggering warning in sdhci_send_command() */
1044 host->cmd = NULL;
1045 sdhci_send_command(host, data->stop);
1046 }
Adrian Huntera6d3bdd2016-06-29 16:24:27 +03001047 } else {
1048 sdhci_finish_mrq(host, data->mrq);
1049 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001050}
1051
Adrian Hunterd7422fb2016-06-29 16:24:33 +03001052static void sdhci_mod_timer(struct sdhci_host *host, struct mmc_request *mrq,
1053 unsigned long timeout)
1054{
1055 if (sdhci_data_line_cmd(mrq->cmd))
1056 mod_timer(&host->data_timer, timeout);
1057 else
1058 mod_timer(&host->timer, timeout);
1059}
1060
1061static void sdhci_del_timer(struct sdhci_host *host, struct mmc_request *mrq)
1062{
1063 if (sdhci_data_line_cmd(mrq->cmd))
1064 del_timer(&host->data_timer);
1065 else
1066 del_timer(&host->timer);
1067}
1068
Dong Aishengc0e551292013-09-13 19:11:31 +08001069void sdhci_send_command(struct sdhci_host *host, struct mmc_command *cmd)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001070{
1071 int flags;
Pierre Ossmanfd2208d2006-06-30 02:22:28 -07001072 u32 mask;
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001073 unsigned long timeout;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001074
1075 WARN_ON(host->cmd);
1076
Russell King96776202016-01-26 13:39:34 +00001077 /* Initially, a command has no error */
1078 cmd->error = 0;
1079
Adrian Hunterfc605f12016-10-05 12:11:21 +03001080 if ((host->quirks2 & SDHCI_QUIRK2_STOP_WITH_TC) &&
1081 cmd->opcode == MMC_STOP_TRANSMISSION)
1082 cmd->flags |= MMC_RSP_BUSY;
1083
Pierre Ossmand129bce2006-03-24 03:18:17 -08001084 /* Wait max 10 ms */
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001085 timeout = 10;
Pierre Ossmanfd2208d2006-06-30 02:22:28 -07001086
1087 mask = SDHCI_CMD_INHIBIT;
Adrian Hunter56a590d2016-06-29 16:24:32 +03001088 if (sdhci_data_line_cmd(cmd))
Pierre Ossmanfd2208d2006-06-30 02:22:28 -07001089 mask |= SDHCI_DATA_INHIBIT;
1090
1091 /* We shouldn't wait for data inihibit for stop commands, even
1092 though they might use busy signaling */
Adrian Huntera4c73ab2016-06-29 16:24:25 +03001093 if (cmd->mrq->data && (cmd == cmd->mrq->data->stop))
Pierre Ossmanfd2208d2006-06-30 02:22:28 -07001094 mask &= ~SDHCI_DATA_INHIBIT;
1095
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001096 while (sdhci_readl(host, SDHCI_PRESENT_STATE) & mask) {
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001097 if (timeout == 0) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01001098 pr_err("%s: Controller never released inhibit bit(s).\n",
1099 mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -08001100 sdhci_dumpregs(host);
Pierre Ossman17b04292007-07-22 22:18:46 +02001101 cmd->error = -EIO;
Adrian Huntera6d3bdd2016-06-29 16:24:27 +03001102 sdhci_finish_mrq(host, cmd->mrq);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001103 return;
1104 }
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001105 timeout--;
1106 mdelay(1);
1107 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001108
Adrian Hunter3e1a6892013-11-14 10:16:20 +02001109 timeout = jiffies;
Ulf Hansson1d4d7742014-01-08 15:06:08 +01001110 if (!cmd->data && cmd->busy_timeout > 9000)
1111 timeout += DIV_ROUND_UP(cmd->busy_timeout, 1000) * HZ + HZ;
Adrian Hunter3e1a6892013-11-14 10:16:20 +02001112 else
1113 timeout += 10 * HZ;
Adrian Hunterd7422fb2016-06-29 16:24:33 +03001114 sdhci_mod_timer(host, cmd->mrq, timeout);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001115
1116 host->cmd = cmd;
Adrian Hunter56a590d2016-06-29 16:24:32 +03001117 if (sdhci_data_line_cmd(cmd)) {
Adrian Hunter7c89a3d2016-06-29 16:24:23 +03001118 WARN_ON(host->data_cmd);
1119 host->data_cmd = cmd;
1120 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001121
Andrei Warkentina3c77782011-04-11 16:13:42 -05001122 sdhci_prepare_data(host, cmd);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001123
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001124 sdhci_writel(host, cmd->arg, SDHCI_ARGUMENT);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001125
Andrei Warkentine89d4562011-05-23 15:06:37 -05001126 sdhci_set_transfer_mode(host, cmd);
Pierre Ossmanc7fa9962006-06-30 02:22:25 -07001127
Pierre Ossmand129bce2006-03-24 03:18:17 -08001128 if ((cmd->flags & MMC_RSP_136) && (cmd->flags & MMC_RSP_BUSY)) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05301129 pr_err("%s: Unsupported response type!\n",
Pierre Ossmand129bce2006-03-24 03:18:17 -08001130 mmc_hostname(host->mmc));
Pierre Ossman17b04292007-07-22 22:18:46 +02001131 cmd->error = -EINVAL;
Adrian Huntera6d3bdd2016-06-29 16:24:27 +03001132 sdhci_finish_mrq(host, cmd->mrq);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001133 return;
1134 }
1135
1136 if (!(cmd->flags & MMC_RSP_PRESENT))
1137 flags = SDHCI_CMD_RESP_NONE;
1138 else if (cmd->flags & MMC_RSP_136)
1139 flags = SDHCI_CMD_RESP_LONG;
1140 else if (cmd->flags & MMC_RSP_BUSY)
1141 flags = SDHCI_CMD_RESP_SHORT_BUSY;
1142 else
1143 flags = SDHCI_CMD_RESP_SHORT;
1144
1145 if (cmd->flags & MMC_RSP_CRC)
1146 flags |= SDHCI_CMD_CRC;
1147 if (cmd->flags & MMC_RSP_OPCODE)
1148 flags |= SDHCI_CMD_INDEX;
Arindam Nathb513ea22011-05-05 12:19:04 +05301149
1150 /* CMD19 is special in that the Data Present Select should be set */
Girish K S069c9f12012-01-06 09:56:39 +05301151 if (cmd->data || cmd->opcode == MMC_SEND_TUNING_BLOCK ||
1152 cmd->opcode == MMC_SEND_TUNING_BLOCK_HS200)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001153 flags |= SDHCI_CMD_DATA;
1154
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001155 sdhci_writew(host, SDHCI_MAKE_CMD(cmd->opcode, flags), SDHCI_COMMAND);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001156}
Dong Aishengc0e551292013-09-13 19:11:31 +08001157EXPORT_SYMBOL_GPL(sdhci_send_command);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001158
1159static void sdhci_finish_command(struct sdhci_host *host)
1160{
Adrian Huntere0a56402016-06-29 16:24:22 +03001161 struct mmc_command *cmd = host->cmd;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001162 int i;
1163
Adrian Huntere0a56402016-06-29 16:24:22 +03001164 host->cmd = NULL;
1165
1166 if (cmd->flags & MMC_RSP_PRESENT) {
1167 if (cmd->flags & MMC_RSP_136) {
Pierre Ossmand129bce2006-03-24 03:18:17 -08001168 /* CRC is stripped so we need to do some shifting. */
1169 for (i = 0;i < 4;i++) {
Adrian Huntere0a56402016-06-29 16:24:22 +03001170 cmd->resp[i] = sdhci_readl(host,
Pierre Ossmand129bce2006-03-24 03:18:17 -08001171 SDHCI_RESPONSE + (3-i)*4) << 8;
1172 if (i != 3)
Adrian Huntere0a56402016-06-29 16:24:22 +03001173 cmd->resp[i] |=
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001174 sdhci_readb(host,
Pierre Ossmand129bce2006-03-24 03:18:17 -08001175 SDHCI_RESPONSE + (3-i)*4-1);
1176 }
1177 } else {
Adrian Huntere0a56402016-06-29 16:24:22 +03001178 cmd->resp[0] = sdhci_readl(host, SDHCI_RESPONSE);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001179 }
1180 }
1181
Adrian Hunter20845be2016-08-16 13:44:13 +03001182 if (cmd->mrq->cap_cmd_during_tfr && cmd == cmd->mrq->cmd)
1183 mmc_command_done(host->mmc, cmd->mrq);
1184
Adrian Hunter6bde8682016-06-29 16:24:20 +03001185 /*
1186 * The host can send and interrupt when the busy state has
1187 * ended, allowing us to wait without wasting CPU cycles.
1188 * The busy signal uses DAT0 so this is similar to waiting
1189 * for data to complete.
1190 *
1191 * Note: The 1.0 specification is a bit ambiguous about this
1192 * feature so there might be some problems with older
1193 * controllers.
1194 */
Adrian Huntere0a56402016-06-29 16:24:22 +03001195 if (cmd->flags & MMC_RSP_BUSY) {
1196 if (cmd->data) {
Adrian Hunter6bde8682016-06-29 16:24:20 +03001197 DBG("Cannot wait for busy signal when also doing a data transfer");
1198 } else if (!(host->quirks & SDHCI_QUIRK_NO_BUSY_IRQ) &&
Adrian Hunterea968022016-06-29 16:24:24 +03001199 cmd == host->data_cmd) {
1200 /* Command complete before busy is ended */
Adrian Hunter6bde8682016-06-29 16:24:20 +03001201 return;
1202 }
1203 }
1204
Andrei Warkentine89d4562011-05-23 15:06:37 -05001205 /* Finished CMD23, now send actual command. */
Adrian Huntera4c73ab2016-06-29 16:24:25 +03001206 if (cmd == cmd->mrq->sbc) {
1207 sdhci_send_command(host, cmd->mrq->cmd);
Andrei Warkentine89d4562011-05-23 15:06:37 -05001208 } else {
Pierre Ossmane538fbe2007-08-12 16:46:32 +02001209
Andrei Warkentine89d4562011-05-23 15:06:37 -05001210 /* Processed actual command. */
1211 if (host->data && host->data_early)
1212 sdhci_finish_data(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001213
Adrian Huntere0a56402016-06-29 16:24:22 +03001214 if (!cmd->data)
Adrian Huntera6d3bdd2016-06-29 16:24:27 +03001215 sdhci_finish_mrq(host, cmd->mrq);
Andrei Warkentine89d4562011-05-23 15:06:37 -05001216 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001217}
1218
Kevin Liu52983382013-01-31 11:31:37 +08001219static u16 sdhci_get_preset_value(struct sdhci_host *host)
1220{
Russell Kingd975f122014-04-25 12:59:31 +01001221 u16 preset = 0;
Kevin Liu52983382013-01-31 11:31:37 +08001222
Russell Kingd975f122014-04-25 12:59:31 +01001223 switch (host->timing) {
1224 case MMC_TIMING_UHS_SDR12:
Kevin Liu52983382013-01-31 11:31:37 +08001225 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR12);
1226 break;
Russell Kingd975f122014-04-25 12:59:31 +01001227 case MMC_TIMING_UHS_SDR25:
Kevin Liu52983382013-01-31 11:31:37 +08001228 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR25);
1229 break;
Russell Kingd975f122014-04-25 12:59:31 +01001230 case MMC_TIMING_UHS_SDR50:
Kevin Liu52983382013-01-31 11:31:37 +08001231 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR50);
1232 break;
Russell Kingd975f122014-04-25 12:59:31 +01001233 case MMC_TIMING_UHS_SDR104:
1234 case MMC_TIMING_MMC_HS200:
Kevin Liu52983382013-01-31 11:31:37 +08001235 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR104);
1236 break;
Russell Kingd975f122014-04-25 12:59:31 +01001237 case MMC_TIMING_UHS_DDR50:
Jisheng Zhang0dafa602015-08-18 16:21:39 +08001238 case MMC_TIMING_MMC_DDR52:
Kevin Liu52983382013-01-31 11:31:37 +08001239 preset = sdhci_readw(host, SDHCI_PRESET_FOR_DDR50);
1240 break;
Adrian Huntere9fb05d2014-11-06 15:19:06 +02001241 case MMC_TIMING_MMC_HS400:
1242 preset = sdhci_readw(host, SDHCI_PRESET_FOR_HS400);
1243 break;
Kevin Liu52983382013-01-31 11:31:37 +08001244 default:
1245 pr_warn("%s: Invalid UHS-I mode selected\n",
1246 mmc_hostname(host->mmc));
1247 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR12);
1248 break;
1249 }
1250 return preset;
1251}
1252
Ludovic Desrochesfb9ee042016-04-07 11:13:08 +02001253u16 sdhci_calc_clk(struct sdhci_host *host, unsigned int clock,
1254 unsigned int *actual_clock)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001255{
Arindam Nathc3ed3872011-05-05 12:19:06 +05301256 int div = 0; /* Initialized for compiler warning */
Giuseppe CAVALLAROdf162192011-11-04 13:53:19 +01001257 int real_div = div, clk_mul = 1;
Arindam Nathc3ed3872011-05-05 12:19:06 +05301258 u16 clk = 0;
ludovic.desroches@atmel.com54971592015-07-29 16:22:46 +02001259 bool switch_base_clk = false;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001260
Zhangfei Gao85105c52010-08-06 07:10:01 +08001261 if (host->version >= SDHCI_SPEC_300) {
Russell Kingda91a8f2014-04-25 13:00:12 +01001262 if (host->preset_enabled) {
Kevin Liu52983382013-01-31 11:31:37 +08001263 u16 pre_val;
1264
1265 clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL);
1266 pre_val = sdhci_get_preset_value(host);
1267 div = (pre_val & SDHCI_PRESET_SDCLK_FREQ_MASK)
1268 >> SDHCI_PRESET_SDCLK_FREQ_SHIFT;
1269 if (host->clk_mul &&
1270 (pre_val & SDHCI_PRESET_CLKGEN_SEL_MASK)) {
1271 clk = SDHCI_PROG_CLOCK_MODE;
1272 real_div = div + 1;
1273 clk_mul = host->clk_mul;
1274 } else {
1275 real_div = max_t(int, 1, div << 1);
1276 }
1277 goto clock_set;
1278 }
1279
Arindam Nathc3ed3872011-05-05 12:19:06 +05301280 /*
1281 * Check if the Host Controller supports Programmable Clock
1282 * Mode.
1283 */
1284 if (host->clk_mul) {
Kevin Liu52983382013-01-31 11:31:37 +08001285 for (div = 1; div <= 1024; div++) {
1286 if ((host->max_clk * host->clk_mul / div)
1287 <= clock)
1288 break;
Zhangfei Gao85105c52010-08-06 07:10:01 +08001289 }
ludovic.desroches@atmel.com54971592015-07-29 16:22:46 +02001290 if ((host->max_clk * host->clk_mul / div) <= clock) {
1291 /*
1292 * Set Programmable Clock Mode in the Clock
1293 * Control register.
1294 */
1295 clk = SDHCI_PROG_CLOCK_MODE;
1296 real_div = div;
1297 clk_mul = host->clk_mul;
1298 div--;
1299 } else {
1300 /*
1301 * Divisor can be too small to reach clock
1302 * speed requirement. Then use the base clock.
1303 */
1304 switch_base_clk = true;
1305 }
1306 }
1307
1308 if (!host->clk_mul || switch_base_clk) {
Arindam Nathc3ed3872011-05-05 12:19:06 +05301309 /* Version 3.00 divisors must be a multiple of 2. */
1310 if (host->max_clk <= clock)
1311 div = 1;
1312 else {
1313 for (div = 2; div < SDHCI_MAX_DIV_SPEC_300;
1314 div += 2) {
1315 if ((host->max_clk / div) <= clock)
1316 break;
1317 }
1318 }
Giuseppe CAVALLAROdf162192011-11-04 13:53:19 +01001319 real_div = div;
Arindam Nathc3ed3872011-05-05 12:19:06 +05301320 div >>= 1;
Suneel Garapatid1955c32015-06-09 13:01:50 +05301321 if ((host->quirks2 & SDHCI_QUIRK2_CLOCK_DIV_ZERO_BROKEN)
1322 && !div && host->max_clk <= 25000000)
1323 div = 1;
Zhangfei Gao85105c52010-08-06 07:10:01 +08001324 }
1325 } else {
1326 /* Version 2.00 divisors must be a power of 2. */
Zhangfei Gao03975262010-09-20 15:15:18 -04001327 for (div = 1; div < SDHCI_MAX_DIV_SPEC_200; div *= 2) {
Zhangfei Gao85105c52010-08-06 07:10:01 +08001328 if ((host->max_clk / div) <= clock)
1329 break;
1330 }
Giuseppe CAVALLAROdf162192011-11-04 13:53:19 +01001331 real_div = div;
Arindam Nathc3ed3872011-05-05 12:19:06 +05301332 div >>= 1;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001333 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001334
Kevin Liu52983382013-01-31 11:31:37 +08001335clock_set:
Aisheng Dong03d6f5f2014-08-27 15:26:32 +08001336 if (real_div)
Ludovic Desrochesfb9ee042016-04-07 11:13:08 +02001337 *actual_clock = (host->max_clk * clk_mul) / real_div;
Arindam Nathc3ed3872011-05-05 12:19:06 +05301338 clk |= (div & SDHCI_DIV_MASK) << SDHCI_DIVIDER_SHIFT;
Zhangfei Gao85105c52010-08-06 07:10:01 +08001339 clk |= ((div & SDHCI_DIV_HI_MASK) >> SDHCI_DIV_MASK_LEN)
1340 << SDHCI_DIVIDER_HI_SHIFT;
Ludovic Desrochesfb9ee042016-04-07 11:13:08 +02001341
1342 return clk;
1343}
1344EXPORT_SYMBOL_GPL(sdhci_calc_clk);
1345
1346void sdhci_set_clock(struct sdhci_host *host, unsigned int clock)
1347{
1348 u16 clk;
1349 unsigned long timeout;
1350
1351 host->mmc->actual_clock = 0;
1352
1353 sdhci_writew(host, 0, SDHCI_CLOCK_CONTROL);
Ludovic Desrochesfb9ee042016-04-07 11:13:08 +02001354
1355 if (clock == 0)
1356 return;
1357
1358 clk = sdhci_calc_clk(host, clock, &host->mmc->actual_clock);
1359
Pierre Ossmand129bce2006-03-24 03:18:17 -08001360 clk |= SDHCI_CLOCK_INT_EN;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001361 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001362
Chris Ball27f6cb12009-09-22 16:45:31 -07001363 /* Wait max 20 ms */
1364 timeout = 20;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001365 while (!((clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL))
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001366 & SDHCI_CLOCK_INT_STABLE)) {
1367 if (timeout == 0) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01001368 pr_err("%s: Internal clock never stabilised.\n",
1369 mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -08001370 sdhci_dumpregs(host);
1371 return;
1372 }
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001373 timeout--;
1374 mdelay(1);
1375 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001376
1377 clk |= SDHCI_CLOCK_CARD_EN;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001378 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001379}
Russell King17710592014-04-25 12:58:55 +01001380EXPORT_SYMBOL_GPL(sdhci_set_clock);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001381
Adrian Hunter1dceb042016-03-29 12:45:43 +03001382static void sdhci_set_power_reg(struct sdhci_host *host, unsigned char mode,
1383 unsigned short vdd)
Pierre Ossman146ad662006-06-30 02:22:23 -07001384{
Tim Kryger3a48edc2014-06-13 10:13:56 -07001385 struct mmc_host *mmc = host->mmc;
Adrian Hunter1dceb042016-03-29 12:45:43 +03001386
1387 spin_unlock_irq(&host->lock);
1388 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, vdd);
1389 spin_lock_irq(&host->lock);
1390
1391 if (mode != MMC_POWER_OFF)
1392 sdhci_writeb(host, SDHCI_POWER_ON, SDHCI_POWER_CONTROL);
1393 else
1394 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
1395}
1396
Adrian Hunter606d3132016-10-05 12:11:22 +03001397void sdhci_set_power_noreg(struct sdhci_host *host, unsigned char mode,
1398 unsigned short vdd)
Adrian Hunter1dceb042016-03-29 12:45:43 +03001399{
Giuseppe Cavallaro83642482010-09-28 10:41:28 +02001400 u8 pwr = 0;
Pierre Ossman146ad662006-06-30 02:22:23 -07001401
Russell King24fbb3c2014-04-25 13:00:06 +01001402 if (mode != MMC_POWER_OFF) {
1403 switch (1 << vdd) {
Pierre Ossmanae628902009-05-03 20:45:03 +02001404 case MMC_VDD_165_195:
1405 pwr = SDHCI_POWER_180;
1406 break;
1407 case MMC_VDD_29_30:
1408 case MMC_VDD_30_31:
1409 pwr = SDHCI_POWER_300;
1410 break;
1411 case MMC_VDD_32_33:
1412 case MMC_VDD_33_34:
1413 pwr = SDHCI_POWER_330;
1414 break;
1415 default:
Adrian Hunter9d5de932015-11-26 14:00:46 +02001416 WARN(1, "%s: Invalid vdd %#x\n",
1417 mmc_hostname(host->mmc), vdd);
1418 break;
Pierre Ossmanae628902009-05-03 20:45:03 +02001419 }
1420 }
1421
1422 if (host->pwr == pwr)
Russell Kinge921a8b2014-04-25 13:00:01 +01001423 return;
Pierre Ossman146ad662006-06-30 02:22:23 -07001424
Pierre Ossmanae628902009-05-03 20:45:03 +02001425 host->pwr = pwr;
1426
1427 if (pwr == 0) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001428 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
Adrian Hunterf0710a52013-05-06 12:17:32 +03001429 if (host->quirks2 & SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON)
1430 sdhci_runtime_pm_bus_off(host);
Russell Kinge921a8b2014-04-25 13:00:01 +01001431 } else {
1432 /*
1433 * Spec says that we should clear the power reg before setting
1434 * a new value. Some controllers don't seem to like this though.
1435 */
1436 if (!(host->quirks & SDHCI_QUIRK_SINGLE_POWER_WRITE))
1437 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
Darren Salt9e9dc5f2007-01-27 15:32:31 +01001438
Russell Kinge921a8b2014-04-25 13:00:01 +01001439 /*
1440 * At least the Marvell CaFe chip gets confused if we set the
1441 * voltage and set turn on power at the same time, so set the
1442 * voltage first.
1443 */
1444 if (host->quirks & SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER)
1445 sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL);
Pierre Ossman146ad662006-06-30 02:22:23 -07001446
Russell Kinge921a8b2014-04-25 13:00:01 +01001447 pwr |= SDHCI_POWER_ON;
1448
Pierre Ossmanae628902009-05-03 20:45:03 +02001449 sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL);
1450
Russell Kinge921a8b2014-04-25 13:00:01 +01001451 if (host->quirks2 & SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON)
1452 sdhci_runtime_pm_bus_on(host);
Andres Salomone08c1692008-07-04 10:00:03 -07001453
Russell Kinge921a8b2014-04-25 13:00:01 +01001454 /*
1455 * Some controllers need an extra 10ms delay of 10ms before
1456 * they can apply clock after applying power
1457 */
1458 if (host->quirks & SDHCI_QUIRK_DELAY_AFTER_POWER)
1459 mdelay(10);
1460 }
Adrian Hunter1dceb042016-03-29 12:45:43 +03001461}
Adrian Hunter606d3132016-10-05 12:11:22 +03001462EXPORT_SYMBOL_GPL(sdhci_set_power_noreg);
Jisheng Zhang918f4cb2015-12-11 21:36:29 +08001463
Adrian Hunter606d3132016-10-05 12:11:22 +03001464void sdhci_set_power(struct sdhci_host *host, unsigned char mode,
1465 unsigned short vdd)
Adrian Hunter1dceb042016-03-29 12:45:43 +03001466{
Adrian Hunter606d3132016-10-05 12:11:22 +03001467 if (IS_ERR(host->mmc->supply.vmmc))
1468 sdhci_set_power_noreg(host, mode, vdd);
Adrian Hunter1dceb042016-03-29 12:45:43 +03001469 else
Adrian Hunter606d3132016-10-05 12:11:22 +03001470 sdhci_set_power_reg(host, mode, vdd);
Pierre Ossman146ad662006-06-30 02:22:23 -07001471}
Adrian Hunter606d3132016-10-05 12:11:22 +03001472EXPORT_SYMBOL_GPL(sdhci_set_power);
Pierre Ossman146ad662006-06-30 02:22:23 -07001473
Pierre Ossmand129bce2006-03-24 03:18:17 -08001474/*****************************************************************************\
1475 * *
1476 * MMC callbacks *
1477 * *
1478\*****************************************************************************/
1479
1480static void sdhci_request(struct mmc_host *mmc, struct mmc_request *mrq)
1481{
1482 struct sdhci_host *host;
Shawn Guo505a8682012-12-11 15:23:42 +08001483 int present;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001484 unsigned long flags;
1485
1486 host = mmc_priv(mmc);
1487
Scott Branden04e079c2015-03-10 11:35:10 -07001488 /* Firstly check card presence */
Adrian Hunter8d28b7a2016-02-09 16:12:36 +02001489 present = mmc->ops->get_cd(mmc);
Krzysztof Kozlowski28367662015-01-05 10:50:15 +01001490
Pierre Ossmand129bce2006-03-24 03:18:17 -08001491 spin_lock_irqsave(&host->lock, flags);
1492
Adrian Hunter061d17a2016-04-12 14:25:09 +03001493 sdhci_led_activate(host);
Andrei Warkentine89d4562011-05-23 15:06:37 -05001494
1495 /*
1496 * Ensure we don't send the STOP for non-SET_BLOCK_COUNTED
1497 * requests if Auto-CMD12 is enabled.
1498 */
Adrian Hunter0293d502016-06-29 16:24:35 +03001499 if (sdhci_auto_cmd12(host, mrq)) {
Jerry Huangc4512f72010-08-10 18:01:59 -07001500 if (mrq->stop) {
1501 mrq->data->stop = NULL;
1502 mrq->stop = NULL;
1503 }
1504 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001505
Anton Vorontsov68d1fb72009-03-17 00:13:52 +03001506 if (!present || host->flags & SDHCI_DEVICE_DEAD) {
Adrian Huntera4c73ab2016-06-29 16:24:25 +03001507 mrq->cmd->error = -ENOMEDIUM;
Adrian Huntera6d3bdd2016-06-29 16:24:27 +03001508 sdhci_finish_mrq(host, mrq);
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05301509 } else {
Andrei Warkentin8edf63712011-05-23 15:06:39 -05001510 if (mrq->sbc && !(host->flags & SDHCI_AUTO_CMD23))
Andrei Warkentine89d4562011-05-23 15:06:37 -05001511 sdhci_send_command(host, mrq->sbc);
1512 else
1513 sdhci_send_command(host, mrq->cmd);
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05301514 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001515
Pierre Ossman5f25a662006-10-04 02:15:39 -07001516 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -08001517 spin_unlock_irqrestore(&host->lock, flags);
1518}
1519
Russell King2317f562014-04-25 12:57:07 +01001520void sdhci_set_bus_width(struct sdhci_host *host, int width)
1521{
1522 u8 ctrl;
1523
1524 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
1525 if (width == MMC_BUS_WIDTH_8) {
1526 ctrl &= ~SDHCI_CTRL_4BITBUS;
1527 if (host->version >= SDHCI_SPEC_300)
1528 ctrl |= SDHCI_CTRL_8BITBUS;
1529 } else {
1530 if (host->version >= SDHCI_SPEC_300)
1531 ctrl &= ~SDHCI_CTRL_8BITBUS;
1532 if (width == MMC_BUS_WIDTH_4)
1533 ctrl |= SDHCI_CTRL_4BITBUS;
1534 else
1535 ctrl &= ~SDHCI_CTRL_4BITBUS;
1536 }
1537 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
1538}
1539EXPORT_SYMBOL_GPL(sdhci_set_bus_width);
1540
Russell King96d7b782014-04-25 12:59:26 +01001541void sdhci_set_uhs_signaling(struct sdhci_host *host, unsigned timing)
1542{
1543 u16 ctrl_2;
1544
1545 ctrl_2 = sdhci_readw(host, SDHCI_HOST_CONTROL2);
1546 /* Select Bus Speed Mode for host */
1547 ctrl_2 &= ~SDHCI_CTRL_UHS_MASK;
1548 if ((timing == MMC_TIMING_MMC_HS200) ||
1549 (timing == MMC_TIMING_UHS_SDR104))
1550 ctrl_2 |= SDHCI_CTRL_UHS_SDR104;
1551 else if (timing == MMC_TIMING_UHS_SDR12)
1552 ctrl_2 |= SDHCI_CTRL_UHS_SDR12;
1553 else if (timing == MMC_TIMING_UHS_SDR25)
1554 ctrl_2 |= SDHCI_CTRL_UHS_SDR25;
1555 else if (timing == MMC_TIMING_UHS_SDR50)
1556 ctrl_2 |= SDHCI_CTRL_UHS_SDR50;
1557 else if ((timing == MMC_TIMING_UHS_DDR50) ||
1558 (timing == MMC_TIMING_MMC_DDR52))
1559 ctrl_2 |= SDHCI_CTRL_UHS_DDR50;
Adrian Huntere9fb05d2014-11-06 15:19:06 +02001560 else if (timing == MMC_TIMING_MMC_HS400)
1561 ctrl_2 |= SDHCI_CTRL_HS400; /* Non-standard */
Russell King96d7b782014-04-25 12:59:26 +01001562 sdhci_writew(host, ctrl_2, SDHCI_HOST_CONTROL2);
1563}
1564EXPORT_SYMBOL_GPL(sdhci_set_uhs_signaling);
1565
Dong Aishengded97e02016-04-16 01:29:25 +08001566static void sdhci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001567{
Dong Aishengded97e02016-04-16 01:29:25 +08001568 struct sdhci_host *host = mmc_priv(mmc);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001569 unsigned long flags;
1570 u8 ctrl;
1571
Pierre Ossmand129bce2006-03-24 03:18:17 -08001572 spin_lock_irqsave(&host->lock, flags);
1573
Adrian Hunterceb61432011-12-27 15:48:41 +02001574 if (host->flags & SDHCI_DEVICE_DEAD) {
1575 spin_unlock_irqrestore(&host->lock, flags);
Tim Kryger3a48edc2014-06-13 10:13:56 -07001576 if (!IS_ERR(mmc->supply.vmmc) &&
1577 ios->power_mode == MMC_POWER_OFF)
Markus Mayer4e743f12014-07-03 13:27:42 -07001578 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, 0);
Adrian Hunterceb61432011-12-27 15:48:41 +02001579 return;
1580 }
Pierre Ossman1e728592008-04-16 19:13:13 +02001581
Pierre Ossmand129bce2006-03-24 03:18:17 -08001582 /*
1583 * Reset the chip on each power off.
1584 * Should clear out any weird states.
1585 */
1586 if (ios->power_mode == MMC_POWER_OFF) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001587 sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE);
Anton Vorontsov7260cf52009-03-17 00:13:48 +03001588 sdhci_reinit(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001589 }
1590
Kevin Liu52983382013-01-31 11:31:37 +08001591 if (host->version >= SDHCI_SPEC_300 &&
Dong Aisheng372c4632013-10-18 19:48:50 +08001592 (ios->power_mode == MMC_POWER_UP) &&
1593 !(host->quirks2 & SDHCI_QUIRK2_PRESET_VALUE_BROKEN))
Kevin Liu52983382013-01-31 11:31:37 +08001594 sdhci_enable_preset_value(host, false);
1595
Russell King373073e2014-04-25 12:58:45 +01001596 if (!ios->clock || ios->clock != host->clock) {
Russell King17710592014-04-25 12:58:55 +01001597 host->ops->set_clock(host, ios->clock);
Russell King373073e2014-04-25 12:58:45 +01001598 host->clock = ios->clock;
Aisheng Dong03d6f5f2014-08-27 15:26:32 +08001599
1600 if (host->quirks & SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK &&
1601 host->clock) {
1602 host->timeout_clk = host->mmc->actual_clock ?
1603 host->mmc->actual_clock / 1000 :
1604 host->clock / 1000;
1605 host->mmc->max_busy_timeout =
1606 host->ops->get_max_timeout_count ?
1607 host->ops->get_max_timeout_count(host) :
1608 1 << 27;
1609 host->mmc->max_busy_timeout /= host->timeout_clk;
1610 }
Russell King373073e2014-04-25 12:58:45 +01001611 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001612
Adrian Hunter606d3132016-10-05 12:11:22 +03001613 if (host->ops->set_power)
1614 host->ops->set_power(host, ios->power_mode, ios->vdd);
1615 else
1616 sdhci_set_power(host, ios->power_mode, ios->vdd);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001617
Philip Rakity643a81f2010-09-23 08:24:32 -07001618 if (host->ops->platform_send_init_74_clocks)
1619 host->ops->platform_send_init_74_clocks(host, ios->power_mode);
1620
Russell King2317f562014-04-25 12:57:07 +01001621 host->ops->set_bus_width(host, ios->bus_width);
Philip Rakity15ec4462010-11-19 16:48:39 -05001622
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001623 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
Pierre Ossmancd9277c2007-02-18 12:07:47 +01001624
Philip Rakity3ab9c8d2010-10-06 11:57:23 -07001625 if ((ios->timing == MMC_TIMING_SD_HS ||
1626 ios->timing == MMC_TIMING_MMC_HS)
1627 && !(host->quirks & SDHCI_QUIRK_NO_HISPD_BIT))
Pierre Ossmancd9277c2007-02-18 12:07:47 +01001628 ctrl |= SDHCI_CTRL_HISPD;
1629 else
1630 ctrl &= ~SDHCI_CTRL_HISPD;
1631
Arindam Nathd6d50a12011-05-05 12:18:59 +05301632 if (host->version >= SDHCI_SPEC_300) {
Arindam Nath49c468f2011-05-05 12:19:01 +05301633 u16 clk, ctrl_2;
Arindam Nath49c468f2011-05-05 12:19:01 +05301634
1635 /* In case of UHS-I modes, set High Speed Enable */
Adrian Huntere9fb05d2014-11-06 15:19:06 +02001636 if ((ios->timing == MMC_TIMING_MMC_HS400) ||
1637 (ios->timing == MMC_TIMING_MMC_HS200) ||
Seungwon Jeonbb8175a2014-03-14 21:12:48 +09001638 (ios->timing == MMC_TIMING_MMC_DDR52) ||
Girish K S069c9f12012-01-06 09:56:39 +05301639 (ios->timing == MMC_TIMING_UHS_SDR50) ||
Arindam Nath49c468f2011-05-05 12:19:01 +05301640 (ios->timing == MMC_TIMING_UHS_SDR104) ||
1641 (ios->timing == MMC_TIMING_UHS_DDR50) ||
Alexander Elbsdd8df172012-01-03 23:26:53 -05001642 (ios->timing == MMC_TIMING_UHS_SDR25))
Arindam Nath49c468f2011-05-05 12:19:01 +05301643 ctrl |= SDHCI_CTRL_HISPD;
Arindam Nathd6d50a12011-05-05 12:18:59 +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 spin_unlock_irqrestore(&host->lock, flags);
1725}
1726
Dong Aishengded97e02016-04-16 01:29:25 +08001727static int sdhci_get_cd(struct mmc_host *mmc)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001728{
1729 struct sdhci_host *host = mmc_priv(mmc);
Dong Aishengded97e02016-04-16 01:29:25 +08001730 int gpio_cd = mmc_gpio_get_cd(mmc);
Kevin Liu94144a42013-02-28 17:35:53 +08001731
1732 if (host->flags & SDHCI_DEVICE_DEAD)
1733 return 0;
1734
Ivan T. Ivanov88af5652015-07-06 15:16:19 +03001735 /* If nonremovable, assume that the card is always present. */
Jaehoon Chung860951c2016-06-21 10:13:26 +09001736 if (!mmc_card_is_removable(host->mmc))
Kevin Liu94144a42013-02-28 17:35:53 +08001737 return 1;
1738
Ivan T. Ivanov88af5652015-07-06 15:16:19 +03001739 /*
1740 * Try slot gpio detect, if defined it take precedence
1741 * over build in controller functionality
1742 */
Arnd Bergmann287980e2016-05-27 23:23:25 +02001743 if (gpio_cd >= 0)
Kevin Liu94144a42013-02-28 17:35:53 +08001744 return !!gpio_cd;
1745
Ivan T. Ivanov88af5652015-07-06 15:16:19 +03001746 /* If polling, assume that the card is always present. */
1747 if (host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION)
1748 return 1;
1749
Kevin Liu94144a42013-02-28 17:35:53 +08001750 /* Host native card detect */
1751 return !!(sdhci_readl(host, SDHCI_PRESENT_STATE) & SDHCI_CARD_PRESENT);
1752}
1753
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001754static int sdhci_check_ro(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001755{
Pierre Ossmand129bce2006-03-24 03:18:17 -08001756 unsigned long flags;
Wolfram Sang2dfb5792010-10-15 12:21:01 +02001757 int is_readonly;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001758
Pierre Ossmand129bce2006-03-24 03:18:17 -08001759 spin_lock_irqsave(&host->lock, flags);
1760
Pierre Ossman1e728592008-04-16 19:13:13 +02001761 if (host->flags & SDHCI_DEVICE_DEAD)
Wolfram Sang2dfb5792010-10-15 12:21:01 +02001762 is_readonly = 0;
1763 else if (host->ops->get_ro)
1764 is_readonly = host->ops->get_ro(host);
Pierre Ossman1e728592008-04-16 19:13:13 +02001765 else
Wolfram Sang2dfb5792010-10-15 12:21:01 +02001766 is_readonly = !(sdhci_readl(host, SDHCI_PRESENT_STATE)
1767 & SDHCI_WRITE_PROTECT);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001768
1769 spin_unlock_irqrestore(&host->lock, flags);
1770
Wolfram Sang2dfb5792010-10-15 12:21:01 +02001771 /* This quirk needs to be replaced by a callback-function later */
1772 return host->quirks & SDHCI_QUIRK_INVERTED_WRITE_PROTECT ?
1773 !is_readonly : is_readonly;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001774}
1775
Takashi Iwai82b0e232011-04-21 20:26:38 +02001776#define SAMPLE_COUNT 5
1777
Dong Aishengded97e02016-04-16 01:29:25 +08001778static int sdhci_get_ro(struct mmc_host *mmc)
Takashi Iwai82b0e232011-04-21 20:26:38 +02001779{
Dong Aishengded97e02016-04-16 01:29:25 +08001780 struct sdhci_host *host = mmc_priv(mmc);
Takashi Iwai82b0e232011-04-21 20:26:38 +02001781 int i, ro_count;
1782
Takashi Iwai82b0e232011-04-21 20:26:38 +02001783 if (!(host->quirks & SDHCI_QUIRK_UNSTABLE_RO_DETECT))
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001784 return sdhci_check_ro(host);
Takashi Iwai82b0e232011-04-21 20:26:38 +02001785
1786 ro_count = 0;
1787 for (i = 0; i < SAMPLE_COUNT; i++) {
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001788 if (sdhci_check_ro(host)) {
Takashi Iwai82b0e232011-04-21 20:26:38 +02001789 if (++ro_count > SAMPLE_COUNT / 2)
1790 return 1;
1791 }
1792 msleep(30);
1793 }
1794 return 0;
1795}
1796
Adrian Hunter20758b62011-08-29 16:42:12 +03001797static void sdhci_hw_reset(struct mmc_host *mmc)
1798{
1799 struct sdhci_host *host = mmc_priv(mmc);
1800
1801 if (host->ops && host->ops->hw_reset)
1802 host->ops->hw_reset(host);
1803}
1804
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001805static void sdhci_enable_sdio_irq_nolock(struct sdhci_host *host, int enable)
1806{
Russell Kingbe138552014-04-25 12:55:56 +01001807 if (!(host->flags & SDHCI_DEVICE_DEAD)) {
Russell Kingef104332014-04-25 12:55:41 +01001808 if (enable)
Russell Kingb537f942014-04-25 12:56:01 +01001809 host->ier |= SDHCI_INT_CARD_INT;
Russell Kingef104332014-04-25 12:55:41 +01001810 else
Russell Kingb537f942014-04-25 12:56:01 +01001811 host->ier &= ~SDHCI_INT_CARD_INT;
1812
1813 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
1814 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Russell Kingef104332014-04-25 12:55:41 +01001815 mmiowb();
1816 }
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001817}
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001818
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001819static void sdhci_enable_sdio_irq(struct mmc_host *mmc, int enable)
1820{
1821 struct sdhci_host *host = mmc_priv(mmc);
1822 unsigned long flags;
1823
1824 spin_lock_irqsave(&host->lock, flags);
Russell Kingef104332014-04-25 12:55:41 +01001825 if (enable)
1826 host->flags |= SDHCI_SDIO_IRQ_ENABLED;
1827 else
1828 host->flags &= ~SDHCI_SDIO_IRQ_ENABLED;
1829
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001830 sdhci_enable_sdio_irq_nolock(host, enable);
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001831 spin_unlock_irqrestore(&host->lock, flags);
1832}
1833
Dong Aishengded97e02016-04-16 01:29:25 +08001834static int sdhci_start_signal_voltage_switch(struct mmc_host *mmc,
1835 struct mmc_ios *ios)
Philip Rakity6231f3d2012-07-23 15:56:23 -07001836{
Dong Aishengded97e02016-04-16 01:29:25 +08001837 struct sdhci_host *host = mmc_priv(mmc);
Philip Rakity6231f3d2012-07-23 15:56:23 -07001838 u16 ctrl;
Kevin Liu20b92a32012-12-17 19:29:26 +08001839 int ret;
Philip Rakity6231f3d2012-07-23 15:56:23 -07001840
1841 /*
1842 * Signal Voltage Switching is only applicable for Host Controllers
1843 * v3.00 and above.
1844 */
1845 if (host->version < SDHCI_SPEC_300)
1846 return 0;
1847
Philip Rakity6231f3d2012-07-23 15:56:23 -07001848 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
Kevin Liu20b92a32012-12-17 19:29:26 +08001849
Fabio Estevam21f59982013-02-14 10:35:03 -02001850 switch (ios->signal_voltage) {
Kevin Liu20b92a32012-12-17 19:29:26 +08001851 case MMC_SIGNAL_VOLTAGE_330:
Adrian Hunter8cb851a2016-06-29 16:24:16 +03001852 if (!(host->flags & SDHCI_SIGNALING_330))
1853 return -EINVAL;
Kevin Liu20b92a32012-12-17 19:29:26 +08001854 /* Set 1.8V Signal Enable in the Host Control2 register to 0 */
1855 ctrl &= ~SDHCI_CTRL_VDD_180;
1856 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
1857
Tim Kryger3a48edc2014-06-13 10:13:56 -07001858 if (!IS_ERR(mmc->supply.vqmmc)) {
Dong Aisheng761daa32016-07-12 15:46:10 +08001859 ret = mmc_regulator_set_vqmmc(mmc, ios);
Kevin Liu20b92a32012-12-17 19:29:26 +08001860 if (ret) {
Joe Perches66061102014-09-12 14:56:56 -07001861 pr_warn("%s: Switching to 3.3V signalling voltage failed\n",
1862 mmc_hostname(mmc));
Kevin Liu20b92a32012-12-17 19:29:26 +08001863 return -EIO;
1864 }
1865 }
1866 /* Wait for 5ms */
1867 usleep_range(5000, 5500);
1868
1869 /* 3.3V regulator output should be stable within 5 ms */
1870 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
1871 if (!(ctrl & SDHCI_CTRL_VDD_180))
1872 return 0;
1873
Joe Perches66061102014-09-12 14:56:56 -07001874 pr_warn("%s: 3.3V regulator output did not became stable\n",
1875 mmc_hostname(mmc));
Kevin Liu20b92a32012-12-17 19:29:26 +08001876
1877 return -EAGAIN;
1878 case MMC_SIGNAL_VOLTAGE_180:
Adrian Hunter8cb851a2016-06-29 16:24:16 +03001879 if (!(host->flags & SDHCI_SIGNALING_180))
1880 return -EINVAL;
Tim Kryger3a48edc2014-06-13 10:13:56 -07001881 if (!IS_ERR(mmc->supply.vqmmc)) {
Dong Aisheng761daa32016-07-12 15:46:10 +08001882 ret = mmc_regulator_set_vqmmc(mmc, ios);
Kevin Liu20b92a32012-12-17 19:29:26 +08001883 if (ret) {
Joe Perches66061102014-09-12 14:56:56 -07001884 pr_warn("%s: Switching to 1.8V signalling voltage failed\n",
1885 mmc_hostname(mmc));
Kevin Liu20b92a32012-12-17 19:29:26 +08001886 return -EIO;
1887 }
1888 }
1889
1890 /*
1891 * Enable 1.8V Signal Enable in the Host Control2
1892 * register
1893 */
1894 ctrl |= SDHCI_CTRL_VDD_180;
1895 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
1896
Vincent Yang9d967a62015-01-20 16:05:15 +08001897 /* Some controller need to do more when switching */
1898 if (host->ops->voltage_switch)
1899 host->ops->voltage_switch(host);
1900
Kevin Liu20b92a32012-12-17 19:29:26 +08001901 /* 1.8V regulator output should be stable within 5 ms */
1902 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
1903 if (ctrl & SDHCI_CTRL_VDD_180)
1904 return 0;
1905
Joe Perches66061102014-09-12 14:56:56 -07001906 pr_warn("%s: 1.8V regulator output did not became stable\n",
1907 mmc_hostname(mmc));
Kevin Liu20b92a32012-12-17 19:29:26 +08001908
1909 return -EAGAIN;
1910 case MMC_SIGNAL_VOLTAGE_120:
Adrian Hunter8cb851a2016-06-29 16:24:16 +03001911 if (!(host->flags & SDHCI_SIGNALING_120))
1912 return -EINVAL;
Tim Kryger3a48edc2014-06-13 10:13:56 -07001913 if (!IS_ERR(mmc->supply.vqmmc)) {
Dong Aisheng761daa32016-07-12 15:46:10 +08001914 ret = mmc_regulator_set_vqmmc(mmc, ios);
Kevin Liu20b92a32012-12-17 19:29:26 +08001915 if (ret) {
Joe Perches66061102014-09-12 14:56:56 -07001916 pr_warn("%s: Switching to 1.2V signalling voltage failed\n",
1917 mmc_hostname(mmc));
Kevin Liu20b92a32012-12-17 19:29:26 +08001918 return -EIO;
1919 }
1920 }
1921 return 0;
1922 default:
Arindam Nathf2119df2011-05-05 12:18:57 +05301923 /* No signal voltage switch required */
1924 return 0;
Kevin Liu20b92a32012-12-17 19:29:26 +08001925 }
Arindam Nathf2119df2011-05-05 12:18:57 +05301926}
1927
Kevin Liu20b92a32012-12-17 19:29:26 +08001928static int sdhci_card_busy(struct mmc_host *mmc)
1929{
1930 struct sdhci_host *host = mmc_priv(mmc);
1931 u32 present_state;
1932
Adrian Huntere613cc42016-06-23 14:00:58 +03001933 /* Check whether DAT[0] is 0 */
Kevin Liu20b92a32012-12-17 19:29:26 +08001934 present_state = sdhci_readl(host, SDHCI_PRESENT_STATE);
Kevin Liu20b92a32012-12-17 19:29:26 +08001935
Adrian Huntere613cc42016-06-23 14:00:58 +03001936 return !(present_state & SDHCI_DATA_0_LVL_MASK);
Kevin Liu20b92a32012-12-17 19:29:26 +08001937}
1938
Adrian Hunterb5540ce2014-12-05 19:25:31 +02001939static int sdhci_prepare_hs400_tuning(struct mmc_host *mmc, struct mmc_ios *ios)
1940{
1941 struct sdhci_host *host = mmc_priv(mmc);
1942 unsigned long flags;
1943
1944 spin_lock_irqsave(&host->lock, flags);
1945 host->flags |= SDHCI_HS400_TUNING;
1946 spin_unlock_irqrestore(&host->lock, flags);
1947
1948 return 0;
1949}
1950
Girish K S069c9f12012-01-06 09:56:39 +05301951static int sdhci_execute_tuning(struct mmc_host *mmc, u32 opcode)
Arindam Nathb513ea22011-05-05 12:19:04 +05301952{
Russell King4b6f37d2014-04-25 12:59:36 +01001953 struct sdhci_host *host = mmc_priv(mmc);
Arindam Nathb513ea22011-05-05 12:19:04 +05301954 u16 ctrl;
Arindam Nathb513ea22011-05-05 12:19:04 +05301955 int tuning_loop_counter = MAX_TUNING_LOOP;
Arindam Nathb513ea22011-05-05 12:19:04 +05301956 int err = 0;
Aisheng Dong2b35bd82013-12-23 19:13:04 +08001957 unsigned long flags;
Adrian Hunter38e40bf2014-12-05 19:25:30 +02001958 unsigned int tuning_count = 0;
Adrian Hunterb5540ce2014-12-05 19:25:31 +02001959 bool hs400_tuning;
Arindam Nathb513ea22011-05-05 12:19:04 +05301960
Aisheng Dong2b35bd82013-12-23 19:13:04 +08001961 spin_lock_irqsave(&host->lock, flags);
Arindam Nathb513ea22011-05-05 12:19:04 +05301962
Adrian Hunterb5540ce2014-12-05 19:25:31 +02001963 hs400_tuning = host->flags & SDHCI_HS400_TUNING;
1964 host->flags &= ~SDHCI_HS400_TUNING;
1965
Adrian Hunter38e40bf2014-12-05 19:25:30 +02001966 if (host->tuning_mode == SDHCI_TUNING_MODE_1)
1967 tuning_count = host->tuning_count;
1968
Arindam Nathb513ea22011-05-05 12:19:04 +05301969 /*
Weijun Yang9faac7b2015-10-04 12:04:12 +00001970 * The Host Controller needs tuning in case of SDR104 and DDR50
1971 * mode, and for SDR50 mode when Use Tuning for SDR50 is set in
1972 * the Capabilities register.
Girish K S069c9f12012-01-06 09:56:39 +05301973 * If the Host Controller supports the HS200 mode then the
1974 * tuning function has to be executed.
Arindam Nathb513ea22011-05-05 12:19:04 +05301975 */
Russell King4b6f37d2014-04-25 12:59:36 +01001976 switch (host->timing) {
Adrian Hunterb5540ce2014-12-05 19:25:31 +02001977 /* HS400 tuning is done in HS200 mode */
Adrian Huntere9fb05d2014-11-06 15:19:06 +02001978 case MMC_TIMING_MMC_HS400:
Adrian Hunterb5540ce2014-12-05 19:25:31 +02001979 err = -EINVAL;
1980 goto out_unlock;
1981
Russell King4b6f37d2014-04-25 12:59:36 +01001982 case MMC_TIMING_MMC_HS200:
Adrian Hunterb5540ce2014-12-05 19:25:31 +02001983 /*
1984 * Periodic re-tuning for HS400 is not expected to be needed, so
1985 * disable it here.
1986 */
1987 if (hs400_tuning)
1988 tuning_count = 0;
1989 break;
1990
Russell King4b6f37d2014-04-25 12:59:36 +01001991 case MMC_TIMING_UHS_SDR104:
Weijun Yang9faac7b2015-10-04 12:04:12 +00001992 case MMC_TIMING_UHS_DDR50:
Russell King4b6f37d2014-04-25 12:59:36 +01001993 break;
Girish K S069c9f12012-01-06 09:56:39 +05301994
Russell King4b6f37d2014-04-25 12:59:36 +01001995 case MMC_TIMING_UHS_SDR50:
Adrian Hunter4228b212016-04-20 09:24:03 +03001996 if (host->flags & SDHCI_SDR50_NEEDS_TUNING)
Russell King4b6f37d2014-04-25 12:59:36 +01001997 break;
1998 /* FALLTHROUGH */
1999
2000 default:
Adrian Hunterd519c862014-12-05 19:25:29 +02002001 goto out_unlock;
Arindam Nathb513ea22011-05-05 12:19:04 +05302002 }
2003
Dong Aisheng45251812013-09-13 19:11:30 +08002004 if (host->ops->platform_execute_tuning) {
Aisheng Dong2b35bd82013-12-23 19:13:04 +08002005 spin_unlock_irqrestore(&host->lock, flags);
Dong Aisheng45251812013-09-13 19:11:30 +08002006 err = host->ops->platform_execute_tuning(host, opcode);
Dong Aisheng45251812013-09-13 19:11:30 +08002007 return err;
2008 }
2009
Russell King4b6f37d2014-04-25 12:59:36 +01002010 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
2011 ctrl |= SDHCI_CTRL_EXEC_TUNING;
Vincent Yang67d0d042015-01-20 16:05:16 +08002012 if (host->quirks2 & SDHCI_QUIRK2_TUNING_WORK_AROUND)
2013 ctrl |= SDHCI_CTRL_TUNED_CLK;
Arindam Nathb513ea22011-05-05 12:19:04 +05302014 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
2015
2016 /*
2017 * As per the Host Controller spec v3.00, tuning command
2018 * generates Buffer Read Ready interrupt, so enable that.
2019 *
2020 * Note: The spec clearly says that when tuning sequence
2021 * is being performed, the controller does not generate
2022 * interrupts other than Buffer Read Ready interrupt. But
2023 * to make sure we don't hit a controller bug, we _only_
2024 * enable Buffer Read Ready interrupt here.
2025 */
Russell Kingb537f942014-04-25 12:56:01 +01002026 sdhci_writel(host, SDHCI_INT_DATA_AVAIL, SDHCI_INT_ENABLE);
2027 sdhci_writel(host, SDHCI_INT_DATA_AVAIL, SDHCI_SIGNAL_ENABLE);
Arindam Nathb513ea22011-05-05 12:19:04 +05302028
2029 /*
2030 * Issue CMD19 repeatedly till Execute Tuning is set to 0 or the number
Simon Horman1473bdd2016-05-13 13:24:31 +09002031 * of loops reaches 40 times.
Arindam Nathb513ea22011-05-05 12:19:04 +05302032 */
Arindam Nathb513ea22011-05-05 12:19:04 +05302033 do {
2034 struct mmc_command cmd = {0};
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002035 struct mmc_request mrq = {NULL};
Arindam Nathb513ea22011-05-05 12:19:04 +05302036
Girish K S069c9f12012-01-06 09:56:39 +05302037 cmd.opcode = opcode;
Arindam Nathb513ea22011-05-05 12:19:04 +05302038 cmd.arg = 0;
2039 cmd.flags = MMC_RSP_R1 | MMC_CMD_ADTC;
2040 cmd.retries = 0;
2041 cmd.data = NULL;
Adrian Hunter4e9f8fe2016-06-29 16:24:34 +03002042 cmd.mrq = &mrq;
Arindam Nathb513ea22011-05-05 12:19:04 +05302043 cmd.error = 0;
2044
Al Cooper7ce45e92014-05-09 11:34:07 -04002045 if (tuning_loop_counter-- == 0)
2046 break;
2047
Arindam Nathb513ea22011-05-05 12:19:04 +05302048 mrq.cmd = &cmd;
Arindam Nathb513ea22011-05-05 12:19:04 +05302049
2050 /*
2051 * In response to CMD19, the card sends 64 bytes of tuning
2052 * block to the Host Controller. So we set the block size
2053 * to 64 here.
2054 */
Girish K S069c9f12012-01-06 09:56:39 +05302055 if (cmd.opcode == MMC_SEND_TUNING_BLOCK_HS200) {
2056 if (mmc->ios.bus_width == MMC_BUS_WIDTH_8)
2057 sdhci_writew(host, SDHCI_MAKE_BLKSZ(7, 128),
2058 SDHCI_BLOCK_SIZE);
2059 else if (mmc->ios.bus_width == MMC_BUS_WIDTH_4)
2060 sdhci_writew(host, SDHCI_MAKE_BLKSZ(7, 64),
2061 SDHCI_BLOCK_SIZE);
2062 } else {
2063 sdhci_writew(host, SDHCI_MAKE_BLKSZ(7, 64),
2064 SDHCI_BLOCK_SIZE);
2065 }
Arindam Nathb513ea22011-05-05 12:19:04 +05302066
2067 /*
2068 * The tuning block is sent by the card to the host controller.
2069 * So we set the TRNS_READ bit in the Transfer Mode register.
2070 * This also takes care of setting DMA Enable and Multi Block
2071 * Select in the same register to 0.
2072 */
2073 sdhci_writew(host, SDHCI_TRNS_READ, SDHCI_TRANSFER_MODE);
2074
2075 sdhci_send_command(host, &cmd);
2076
2077 host->cmd = NULL;
Adrian Hunter07c161b2016-06-29 16:24:38 +03002078 sdhci_del_timer(host, &mrq);
Arindam Nathb513ea22011-05-05 12:19:04 +05302079
Aisheng Dong2b35bd82013-12-23 19:13:04 +08002080 spin_unlock_irqrestore(&host->lock, flags);
Arindam Nathb513ea22011-05-05 12:19:04 +05302081 /* Wait for Buffer Read Ready interrupt */
Christopher Freeman622b5f32016-08-17 13:34:27 -04002082 wait_event_timeout(host->buf_ready_int,
Arindam Nathb513ea22011-05-05 12:19:04 +05302083 (host->tuning_done == 1),
2084 msecs_to_jiffies(50));
Aisheng Dong2b35bd82013-12-23 19:13:04 +08002085 spin_lock_irqsave(&host->lock, flags);
Arindam Nathb513ea22011-05-05 12:19:04 +05302086
2087 if (!host->tuning_done) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01002088 pr_info(DRIVER_NAME ": Timeout waiting for Buffer Read Ready interrupt during tuning procedure, falling back to fixed sampling clock\n");
Arindam Nathb513ea22011-05-05 12:19:04 +05302089 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
2090 ctrl &= ~SDHCI_CTRL_TUNED_CLK;
2091 ctrl &= ~SDHCI_CTRL_EXEC_TUNING;
2092 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
2093
Adrian Huntercee93582016-12-02 15:14:20 +02002094 sdhci_do_reset(host, SDHCI_RESET_CMD);
2095 sdhci_do_reset(host, SDHCI_RESET_DATA);
2096
Arindam Nathb513ea22011-05-05 12:19:04 +05302097 err = -EIO;
Adrian Huntercee93582016-12-02 15:14:20 +02002098
2099 if (cmd.opcode != MMC_SEND_TUNING_BLOCK_HS200)
2100 goto out;
2101
2102 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
2103 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
2104
2105 spin_unlock_irqrestore(&host->lock, flags);
2106
2107 memset(&cmd, 0, sizeof(cmd));
2108 cmd.opcode = MMC_STOP_TRANSMISSION;
2109 cmd.flags = MMC_RSP_SPI_R1B | MMC_RSP_R1B | MMC_CMD_AC;
2110 cmd.busy_timeout = 50;
2111 mmc_wait_for_cmd(mmc, &cmd, 0);
2112
2113 spin_lock_irqsave(&host->lock, flags);
2114
Arindam Nathb513ea22011-05-05 12:19:04 +05302115 goto out;
2116 }
2117
2118 host->tuning_done = 0;
2119
2120 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
Nick Sanders197160d2014-05-06 18:52:38 -07002121
2122 /* eMMC spec does not require a delay between tuning cycles */
2123 if (opcode == MMC_SEND_TUNING_BLOCK)
2124 mdelay(1);
Arindam Nathb513ea22011-05-05 12:19:04 +05302125 } while (ctrl & SDHCI_CTRL_EXEC_TUNING);
2126
2127 /*
2128 * The Host Driver has exhausted the maximum number of loops allowed,
2129 * so use fixed sampling frequency.
2130 */
Al Cooper7ce45e92014-05-09 11:34:07 -04002131 if (tuning_loop_counter < 0) {
Arindam Nathb513ea22011-05-05 12:19:04 +05302132 ctrl &= ~SDHCI_CTRL_TUNED_CLK;
2133 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
Al Cooper7ce45e92014-05-09 11:34:07 -04002134 }
2135 if (!(ctrl & SDHCI_CTRL_TUNED_CLK)) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01002136 pr_info(DRIVER_NAME ": Tuning procedure failed, falling back to fixed sampling clock\n");
Dong Aisheng114f2bf2013-10-18 19:48:45 +08002137 err = -EIO;
Arindam Nathb513ea22011-05-05 12:19:04 +05302138 }
2139
2140out:
Adrian Hunter38e40bf2014-12-05 19:25:30 +02002141 if (tuning_count) {
Adrian Hunter66c39dfc2015-05-07 13:10:21 +03002142 /*
2143 * In case tuning fails, host controllers which support
2144 * re-tuning can try tuning again at a later time, when the
2145 * re-tuning timer expires. So for these controllers, we
2146 * return 0. Since there might be other controllers who do not
2147 * have this capability, we return error for them.
2148 */
2149 err = 0;
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05302150 }
2151
Adrian Hunter66c39dfc2015-05-07 13:10:21 +03002152 host->mmc->retune_period = err ? 0 : tuning_count;
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05302153
Russell Kingb537f942014-04-25 12:56:01 +01002154 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
2155 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Adrian Hunterd519c862014-12-05 19:25:29 +02002156out_unlock:
Aisheng Dong2b35bd82013-12-23 19:13:04 +08002157 spin_unlock_irqrestore(&host->lock, flags);
Arindam Nathb513ea22011-05-05 12:19:04 +05302158 return err;
2159}
2160
Adrian Huntercb849642015-02-06 14:12:59 +02002161static int sdhci_select_drive_strength(struct mmc_card *card,
2162 unsigned int max_dtr, int host_drv,
2163 int card_drv, int *drv_type)
2164{
2165 struct sdhci_host *host = mmc_priv(card->host);
2166
2167 if (!host->ops->select_drive_strength)
2168 return 0;
2169
2170 return host->ops->select_drive_strength(host, card, max_dtr, host_drv,
2171 card_drv, drv_type);
2172}
Kevin Liu52983382013-01-31 11:31:37 +08002173
2174static void sdhci_enable_preset_value(struct sdhci_host *host, bool enable)
Arindam Nath4d55c5a2011-05-05 12:19:05 +05302175{
Arindam Nath4d55c5a2011-05-05 12:19:05 +05302176 /* Host Controller v3.00 defines preset value registers */
2177 if (host->version < SDHCI_SPEC_300)
2178 return;
2179
Arindam Nath4d55c5a2011-05-05 12:19:05 +05302180 /*
2181 * We only enable or disable Preset Value if they are not already
2182 * enabled or disabled respectively. Otherwise, we bail out.
2183 */
Russell Kingda91a8f2014-04-25 13:00:12 +01002184 if (host->preset_enabled != enable) {
2185 u16 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
2186
2187 if (enable)
2188 ctrl |= SDHCI_CTRL_PRESET_VAL_ENABLE;
2189 else
2190 ctrl &= ~SDHCI_CTRL_PRESET_VAL_ENABLE;
2191
Arindam Nath4d55c5a2011-05-05 12:19:05 +05302192 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
Russell Kingda91a8f2014-04-25 13:00:12 +01002193
2194 if (enable)
2195 host->flags |= SDHCI_PV_ENABLED;
2196 else
2197 host->flags &= ~SDHCI_PV_ENABLED;
2198
2199 host->preset_enabled = enable;
Arindam Nath4d55c5a2011-05-05 12:19:05 +05302200 }
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002201}
2202
Haibo Chen348487c2014-12-09 17:04:05 +08002203static void sdhci_post_req(struct mmc_host *mmc, struct mmc_request *mrq,
2204 int err)
2205{
2206 struct sdhci_host *host = mmc_priv(mmc);
2207 struct mmc_data *data = mrq->data;
2208
Russell Kingf48f0392016-01-26 13:40:32 +00002209 if (data->host_cookie != COOKIE_UNMAPPED)
Russell King771a3dc2016-01-26 13:40:53 +00002210 dma_unmap_sg(mmc_dev(host->mmc), data->sg, data->sg_len,
2211 data->flags & MMC_DATA_WRITE ?
2212 DMA_TO_DEVICE : DMA_FROM_DEVICE);
2213
2214 data->host_cookie = COOKIE_UNMAPPED;
Haibo Chen348487c2014-12-09 17:04:05 +08002215}
2216
Haibo Chen348487c2014-12-09 17:04:05 +08002217static void sdhci_pre_req(struct mmc_host *mmc, struct mmc_request *mrq,
2218 bool is_first_req)
2219{
2220 struct sdhci_host *host = mmc_priv(mmc);
2221
Haibo Chend31911b2015-08-25 10:02:11 +08002222 mrq->data->host_cookie = COOKIE_UNMAPPED;
Haibo Chen348487c2014-12-09 17:04:05 +08002223
2224 if (host->flags & SDHCI_REQ_USE_DMA)
Russell King94538e52016-01-26 13:40:37 +00002225 sdhci_pre_dma_transfer(host, mrq->data, COOKIE_PRE_MAPPED);
Haibo Chen348487c2014-12-09 17:04:05 +08002226}
2227
Adrian Hunter5d0d11c2016-06-29 16:24:31 +03002228static inline bool sdhci_has_requests(struct sdhci_host *host)
2229{
2230 return host->cmd || host->data_cmd;
2231}
2232
2233static void sdhci_error_out_mrqs(struct sdhci_host *host, int err)
2234{
2235 if (host->data_cmd) {
2236 host->data_cmd->error = err;
2237 sdhci_finish_mrq(host, host->data_cmd->mrq);
2238 }
2239
2240 if (host->cmd) {
2241 host->cmd->error = err;
2242 sdhci_finish_mrq(host, host->cmd->mrq);
2243 }
2244}
2245
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002246static void sdhci_card_event(struct mmc_host *mmc)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002247{
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002248 struct sdhci_host *host = mmc_priv(mmc);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002249 unsigned long flags;
Krzysztof Kozlowski28367662015-01-05 10:50:15 +01002250 int present;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002251
Christian Daudt722e1282013-06-20 14:26:36 -07002252 /* First check if client has provided their own card event */
2253 if (host->ops->card_event)
2254 host->ops->card_event(host);
2255
Adrian Hunterd3940f22016-06-29 16:24:14 +03002256 present = mmc->ops->get_cd(mmc);
Krzysztof Kozlowski28367662015-01-05 10:50:15 +01002257
Pierre Ossmand129bce2006-03-24 03:18:17 -08002258 spin_lock_irqsave(&host->lock, flags);
2259
Adrian Hunter5d0d11c2016-06-29 16:24:31 +03002260 /* Check sdhci_has_requests() first in case we are runtime suspended */
2261 if (sdhci_has_requests(host) && !present) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05302262 pr_err("%s: Card removed during transfer!\n",
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002263 mmc_hostname(host->mmc));
Girish K Sa3c76eb2011-10-11 11:44:09 +05302264 pr_err("%s: Resetting controller.\n",
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002265 mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -08002266
Russell King03231f92014-04-25 12:57:12 +01002267 sdhci_do_reset(host, SDHCI_RESET_CMD);
2268 sdhci_do_reset(host, SDHCI_RESET_DATA);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002269
Adrian Hunter5d0d11c2016-06-29 16:24:31 +03002270 sdhci_error_out_mrqs(host, -ENOMEDIUM);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002271 }
2272
2273 spin_unlock_irqrestore(&host->lock, flags);
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002274}
2275
2276static const struct mmc_host_ops sdhci_ops = {
2277 .request = sdhci_request,
Haibo Chen348487c2014-12-09 17:04:05 +08002278 .post_req = sdhci_post_req,
2279 .pre_req = sdhci_pre_req,
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002280 .set_ios = sdhci_set_ios,
Kevin Liu94144a42013-02-28 17:35:53 +08002281 .get_cd = sdhci_get_cd,
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002282 .get_ro = sdhci_get_ro,
2283 .hw_reset = sdhci_hw_reset,
2284 .enable_sdio_irq = sdhci_enable_sdio_irq,
2285 .start_signal_voltage_switch = sdhci_start_signal_voltage_switch,
Adrian Hunterb5540ce2014-12-05 19:25:31 +02002286 .prepare_hs400_tuning = sdhci_prepare_hs400_tuning,
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002287 .execute_tuning = sdhci_execute_tuning,
Adrian Huntercb849642015-02-06 14:12:59 +02002288 .select_drive_strength = sdhci_select_drive_strength,
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 Bertazi04eb7db2017-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);
Dong Aishengf37b20e2016-07-12 15:46:17 +08002837 if (host->tuning_mode != SDHCI_TUNING_MODE_3)
2838 mmc_retune_needed(host->mmc);
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05302839
Kevin Liuad080d72013-01-05 17:21:33 +08002840 if (!device_may_wakeup(mmc_dev(host->mmc))) {
Russell Kingb537f942014-04-25 12:56:01 +01002841 host->ier = 0;
2842 sdhci_writel(host, 0, SDHCI_INT_ENABLE);
2843 sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE);
Kevin Liuad080d72013-01-05 17:21:33 +08002844 free_irq(host->irq, host);
2845 } else {
2846 sdhci_enable_irq_wakeups(host);
2847 enable_irq_wake(host->irq);
2848 }
Ulf Hansson4ee14ec2013-09-25 14:15:24 +02002849 return 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002850}
2851
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002852EXPORT_SYMBOL_GPL(sdhci_suspend_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002853
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002854int sdhci_resume_host(struct sdhci_host *host)
2855{
Adrian Hunterd3940f22016-06-29 16:24:14 +03002856 struct mmc_host *mmc = host->mmc;
Ulf Hansson4ee14ec2013-09-25 14:15:24 +02002857 int ret = 0;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002858
Richard Röjforsa13abc72009-09-22 16:45:30 -07002859 if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002860 if (host->ops->enable_dma)
2861 host->ops->enable_dma(host);
2862 }
2863
Adrian Hunter6308d292012-02-07 14:48:54 +02002864 if ((host->mmc->pm_flags & MMC_PM_KEEP_POWER) &&
2865 (host->quirks2 & SDHCI_QUIRK2_HOST_OFF_CARD_ON)) {
2866 /* Card keeps power but host controller does not */
2867 sdhci_init(host, 0);
2868 host->pwr = 0;
2869 host->clock = 0;
Adrian Hunterd3940f22016-06-29 16:24:14 +03002870 mmc->ops->set_ios(mmc, &mmc->ios);
Adrian Hunter6308d292012-02-07 14:48:54 +02002871 } else {
2872 sdhci_init(host, (host->mmc->pm_flags & MMC_PM_KEEP_POWER));
2873 mmiowb();
2874 }
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002875
Haibo Chen14a7b41642015-09-15 18:32:58 +08002876 if (!device_may_wakeup(mmc_dev(host->mmc))) {
2877 ret = request_threaded_irq(host->irq, sdhci_irq,
2878 sdhci_thread_irq, IRQF_SHARED,
2879 mmc_hostname(host->mmc), host);
2880 if (ret)
2881 return ret;
2882 } else {
2883 sdhci_disable_irq_wakeups(host);
2884 disable_irq_wake(host->irq);
2885 }
2886
Anton Vorontsov7260cf52009-03-17 00:13:48 +03002887 sdhci_enable_card_detection(host);
2888
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08002889 return ret;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002890}
2891
2892EXPORT_SYMBOL_GPL(sdhci_resume_host);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002893
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002894int sdhci_runtime_suspend_host(struct sdhci_host *host)
2895{
2896 unsigned long flags;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002897
Adrian Hunter66c39dfc2015-05-07 13:10:21 +03002898 mmc_retune_timer_stop(host->mmc);
Dong Aishengf37b20e2016-07-12 15:46:17 +08002899 if (host->tuning_mode != SDHCI_TUNING_MODE_3)
2900 mmc_retune_needed(host->mmc);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002901
2902 spin_lock_irqsave(&host->lock, flags);
Russell Kingb537f942014-04-25 12:56:01 +01002903 host->ier &= SDHCI_INT_CARD_INT;
2904 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
2905 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002906 spin_unlock_irqrestore(&host->lock, flags);
2907
Russell King781e9892014-04-25 12:55:46 +01002908 synchronize_hardirq(host->irq);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002909
2910 spin_lock_irqsave(&host->lock, flags);
2911 host->runtime_suspended = true;
2912 spin_unlock_irqrestore(&host->lock, flags);
2913
Markus Pargmann8a125ba2014-06-04 15:24:29 +02002914 return 0;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002915}
2916EXPORT_SYMBOL_GPL(sdhci_runtime_suspend_host);
2917
2918int sdhci_runtime_resume_host(struct sdhci_host *host)
2919{
Adrian Hunterd3940f22016-06-29 16:24:14 +03002920 struct mmc_host *mmc = host->mmc;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002921 unsigned long flags;
Markus Pargmann8a125ba2014-06-04 15:24:29 +02002922 int host_flags = host->flags;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002923
2924 if (host_flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
2925 if (host->ops->enable_dma)
2926 host->ops->enable_dma(host);
2927 }
2928
2929 sdhci_init(host, 0);
2930
2931 /* Force clock and power re-program */
2932 host->pwr = 0;
2933 host->clock = 0;
Adrian Hunterd3940f22016-06-29 16:24:14 +03002934 mmc->ops->start_signal_voltage_switch(mmc, &mmc->ios);
2935 mmc->ops->set_ios(mmc, &mmc->ios);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002936
Kevin Liu52983382013-01-31 11:31:37 +08002937 if ((host_flags & SDHCI_PV_ENABLED) &&
2938 !(host->quirks2 & SDHCI_QUIRK2_PRESET_VALUE_BROKEN)) {
2939 spin_lock_irqsave(&host->lock, flags);
2940 sdhci_enable_preset_value(host, true);
2941 spin_unlock_irqrestore(&host->lock, flags);
2942 }
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002943
Adrian Hunter086b0dd2016-11-02 15:49:11 +02002944 if ((mmc->caps2 & MMC_CAP2_HS400_ES) &&
2945 mmc->ops->hs400_enhanced_strobe)
2946 mmc->ops->hs400_enhanced_strobe(mmc, &mmc->ios);
2947
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002948 spin_lock_irqsave(&host->lock, flags);
2949
2950 host->runtime_suspended = false;
2951
2952 /* Enable SDIO IRQ */
Russell Kingef104332014-04-25 12:55:41 +01002953 if (host->flags & SDHCI_SDIO_IRQ_ENABLED)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002954 sdhci_enable_sdio_irq_nolock(host, true);
2955
2956 /* Enable Card Detection */
2957 sdhci_enable_card_detection(host);
2958
2959 spin_unlock_irqrestore(&host->lock, flags);
2960
Markus Pargmann8a125ba2014-06-04 15:24:29 +02002961 return 0;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002962}
2963EXPORT_SYMBOL_GPL(sdhci_runtime_resume_host);
2964
Rafael J. Wysocki162d6f92014-12-05 03:05:33 +01002965#endif /* CONFIG_PM */
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002966
Pierre Ossmand129bce2006-03-24 03:18:17 -08002967/*****************************************************************************\
2968 * *
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002969 * Device allocation/registration *
Pierre Ossmand129bce2006-03-24 03:18:17 -08002970 * *
2971\*****************************************************************************/
2972
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002973struct sdhci_host *sdhci_alloc_host(struct device *dev,
2974 size_t priv_size)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002975{
Pierre Ossmand129bce2006-03-24 03:18:17 -08002976 struct mmc_host *mmc;
2977 struct sdhci_host *host;
2978
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002979 WARN_ON(dev == NULL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002980
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002981 mmc = mmc_alloc_host(sizeof(struct sdhci_host) + priv_size, dev);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002982 if (!mmc)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002983 return ERR_PTR(-ENOMEM);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002984
2985 host = mmc_priv(mmc);
2986 host->mmc = mmc;
Adrian Hunterbf60e592016-02-09 16:12:35 +02002987 host->mmc_host_ops = sdhci_ops;
2988 mmc->ops = &host->mmc_host_ops;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002989
Adrian Hunter8cb851a2016-06-29 16:24:16 +03002990 host->flags = SDHCI_SIGNALING_330;
2991
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002992 return host;
2993}
Pierre Ossman8a4da142006-10-04 02:15:40 -07002994
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002995EXPORT_SYMBOL_GPL(sdhci_alloc_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002996
Alexandre Courbot7b913692016-03-07 11:07:55 +09002997static int sdhci_set_dma_mask(struct sdhci_host *host)
2998{
2999 struct mmc_host *mmc = host->mmc;
3000 struct device *dev = mmc_dev(mmc);
3001 int ret = -EINVAL;
3002
3003 if (host->quirks2 & SDHCI_QUIRK2_BROKEN_64_BIT_DMA)
3004 host->flags &= ~SDHCI_USE_64_BIT_DMA;
3005
3006 /* Try 64-bit mask if hardware is capable of it */
3007 if (host->flags & SDHCI_USE_64_BIT_DMA) {
3008 ret = dma_set_mask_and_coherent(dev, DMA_BIT_MASK(64));
3009 if (ret) {
3010 pr_warn("%s: Failed to set 64-bit DMA mask.\n",
3011 mmc_hostname(mmc));
3012 host->flags &= ~SDHCI_USE_64_BIT_DMA;
3013 }
3014 }
3015
3016 /* 32-bit mask as default & fallback */
3017 if (ret) {
3018 ret = dma_set_mask_and_coherent(dev, DMA_BIT_MASK(32));
3019 if (ret)
3020 pr_warn("%s: Failed to set 32-bit DMA mask.\n",
3021 mmc_hostname(mmc));
3022 }
3023
3024 return ret;
3025}
3026
Adrian Hunter6132a3b2016-06-29 16:24:18 +03003027void __sdhci_read_caps(struct sdhci_host *host, u16 *ver, u32 *caps, u32 *caps1)
3028{
3029 u16 v;
3030
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
3044 v = ver ? *ver : sdhci_readw(host, SDHCI_HOST_VERSION);
3045 host->version = (v & SDHCI_SPEC_VER_MASK) >> SDHCI_SPEC_VER_SHIFT;
3046
3047 if (host->quirks & SDHCI_QUIRK_MISSING_CAPS)
3048 return;
3049
3050 host->caps = caps ? *caps : sdhci_readl(host, SDHCI_CAPABILITIES);
3051
3052 if (host->version < SDHCI_SPEC_300)
3053 return;
3054
3055 host->caps1 = caps1 ? *caps1 : sdhci_readl(host, SDHCI_CAPABILITIES_1);
3056}
3057EXPORT_SYMBOL_GPL(__sdhci_read_caps);
3058
Adrian Hunter52f53362016-06-29 16:24:15 +03003059int sdhci_setup_host(struct sdhci_host *host)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003060{
3061 struct mmc_host *mmc;
Arindam Nathf2119df2011-05-05 12:18:57 +05303062 u32 max_current_caps;
3063 unsigned int ocr_avail;
Adrian Hunterf5fa92e2014-09-24 10:27:32 +03003064 unsigned int override_timeout_clk;
Dong Aisheng59241752015-07-22 20:53:07 +08003065 u32 max_clk;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003066 int ret;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003067
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003068 WARN_ON(host == NULL);
3069 if (host == NULL)
3070 return -EINVAL;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003071
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003072 mmc = host->mmc;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003073
Jon Hunterefba1422016-07-12 14:53:36 +01003074 /*
3075 * If there are external regulators, get them. Note this must be done
3076 * early before resetting the host and reading the capabilities so that
3077 * the host can take the appropriate action if regulators are not
3078 * available.
3079 */
3080 ret = mmc_regulator_get_supply(mmc);
3081 if (ret == -EPROBE_DEFER)
3082 return ret;
3083
Adrian Hunter6132a3b2016-06-29 16:24:18 +03003084 sdhci_read_caps(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003085
Adrian Hunterf5fa92e2014-09-24 10:27:32 +03003086 override_timeout_clk = host->timeout_clk;
3087
Zhangfei Gao85105c52010-08-06 07:10:01 +08003088 if (host->version > SDHCI_SPEC_300) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01003089 pr_err("%s: Unknown controller version (%d). You may experience problems.\n",
3090 mmc_hostname(mmc), host->version);
Pierre Ossman4a965502006-06-30 02:22:29 -07003091 }
3092
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003093 if (host->quirks & SDHCI_QUIRK_FORCE_DMA)
Richard Röjforsa13abc72009-09-22 16:45:30 -07003094 host->flags |= SDHCI_USE_SDMA;
Adrian Hunter28da3582016-06-29 16:24:17 +03003095 else if (!(host->caps & SDHCI_CAN_DO_SDMA))
Richard Röjforsa13abc72009-09-22 16:45:30 -07003096 DBG("Controller doesn't have SDMA capability\n");
Pierre Ossman67435272006-06-30 02:22:31 -07003097 else
Richard Röjforsa13abc72009-09-22 16:45:30 -07003098 host->flags |= SDHCI_USE_SDMA;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003099
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003100 if ((host->quirks & SDHCI_QUIRK_BROKEN_DMA) &&
Richard Röjforsa13abc72009-09-22 16:45:30 -07003101 (host->flags & SDHCI_USE_SDMA)) {
Rolf Eike Beercee687c2007-11-02 15:22:30 +01003102 DBG("Disabling DMA as it is marked broken\n");
Richard Röjforsa13abc72009-09-22 16:45:30 -07003103 host->flags &= ~SDHCI_USE_SDMA;
Feng Tang7c168e32007-09-30 12:44:18 +02003104 }
3105
Arindam Nathf2119df2011-05-05 12:18:57 +05303106 if ((host->version >= SDHCI_SPEC_200) &&
Adrian Hunter28da3582016-06-29 16:24:17 +03003107 (host->caps & SDHCI_CAN_DO_ADMA2))
Richard Röjforsa13abc72009-09-22 16:45:30 -07003108 host->flags |= SDHCI_USE_ADMA;
Pierre Ossman2134a922008-06-28 18:28:51 +02003109
3110 if ((host->quirks & SDHCI_QUIRK_BROKEN_ADMA) &&
3111 (host->flags & SDHCI_USE_ADMA)) {
3112 DBG("Disabling ADMA as it is marked broken\n");
3113 host->flags &= ~SDHCI_USE_ADMA;
3114 }
3115
Adrian Huntere57a5f62014-11-04 12:42:46 +02003116 /*
3117 * It is assumed that a 64-bit capable device has set a 64-bit DMA mask
3118 * and *must* do 64-bit DMA. A driver has the opportunity to change
3119 * that during the first call to ->enable_dma(). Similarly
3120 * SDHCI_QUIRK2_BROKEN_64_BIT_DMA must be left to the drivers to
3121 * implement.
3122 */
Adrian Hunter28da3582016-06-29 16:24:17 +03003123 if (host->caps & SDHCI_CAN_64BIT)
Adrian Huntere57a5f62014-11-04 12:42:46 +02003124 host->flags |= SDHCI_USE_64_BIT_DMA;
3125
Richard Röjforsa13abc72009-09-22 16:45:30 -07003126 if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
Alexandre Courbot7b913692016-03-07 11:07:55 +09003127 ret = sdhci_set_dma_mask(host);
3128
3129 if (!ret && host->ops->enable_dma)
3130 ret = host->ops->enable_dma(host);
3131
3132 if (ret) {
3133 pr_warn("%s: No suitable DMA available - falling back to PIO\n",
3134 mmc_hostname(mmc));
3135 host->flags &= ~(SDHCI_USE_SDMA | SDHCI_USE_ADMA);
3136
3137 ret = 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003138 }
3139 }
3140
Adrian Huntere57a5f62014-11-04 12:42:46 +02003141 /* SDMA does not support 64-bit DMA */
3142 if (host->flags & SDHCI_USE_64_BIT_DMA)
3143 host->flags &= ~SDHCI_USE_SDMA;
3144
Pierre Ossman2134a922008-06-28 18:28:51 +02003145 if (host->flags & SDHCI_USE_ADMA) {
Russell Kinge66e61c2016-01-26 13:39:55 +00003146 dma_addr_t dma;
3147 void *buf;
3148
Pierre Ossman2134a922008-06-28 18:28:51 +02003149 /*
Adrian Hunter76fe3792014-11-04 12:42:42 +02003150 * The DMA descriptor table size is calculated as the maximum
3151 * number of segments times 2, to allow for an alignment
3152 * descriptor for each segment, plus 1 for a nop end descriptor,
3153 * all multipled by the descriptor size.
Pierre Ossman2134a922008-06-28 18:28:51 +02003154 */
Adrian Huntere57a5f62014-11-04 12:42:46 +02003155 if (host->flags & SDHCI_USE_64_BIT_DMA) {
3156 host->adma_table_sz = (SDHCI_MAX_SEGS * 2 + 1) *
3157 SDHCI_ADMA2_64_DESC_SZ;
Adrian Huntere57a5f62014-11-04 12:42:46 +02003158 host->desc_sz = SDHCI_ADMA2_64_DESC_SZ;
Adrian Huntere57a5f62014-11-04 12:42:46 +02003159 } else {
3160 host->adma_table_sz = (SDHCI_MAX_SEGS * 2 + 1) *
3161 SDHCI_ADMA2_32_DESC_SZ;
Adrian Huntere57a5f62014-11-04 12:42:46 +02003162 host->desc_sz = SDHCI_ADMA2_32_DESC_SZ;
Adrian Huntere57a5f62014-11-04 12:42:46 +02003163 }
Russell Kinge66e61c2016-01-26 13:39:55 +00003164
Adrian Hunter04a5ae62015-11-26 14:00:49 +02003165 host->align_buffer_sz = SDHCI_MAX_SEGS * SDHCI_ADMA2_ALIGN;
Russell Kinge66e61c2016-01-26 13:39:55 +00003166 buf = dma_alloc_coherent(mmc_dev(mmc), host->align_buffer_sz +
3167 host->adma_table_sz, &dma, GFP_KERNEL);
3168 if (!buf) {
Joe Perches66061102014-09-12 14:56:56 -07003169 pr_warn("%s: Unable to allocate ADMA buffers - falling back to standard DMA\n",
Pierre Ossman2134a922008-06-28 18:28:51 +02003170 mmc_hostname(mmc));
3171 host->flags &= ~SDHCI_USE_ADMA;
Russell Kinge66e61c2016-01-26 13:39:55 +00003172 } else if ((dma + host->align_buffer_sz) &
3173 (SDHCI_ADMA2_DESC_ALIGN - 1)) {
Joe Perches66061102014-09-12 14:56:56 -07003174 pr_warn("%s: unable to allocate aligned ADMA descriptor\n",
3175 mmc_hostname(mmc));
Russell Kingd1e49f72014-04-25 12:58:34 +01003176 host->flags &= ~SDHCI_USE_ADMA;
Russell Kinge66e61c2016-01-26 13:39:55 +00003177 dma_free_coherent(mmc_dev(mmc), host->align_buffer_sz +
3178 host->adma_table_sz, buf, dma);
3179 } else {
3180 host->align_buffer = buf;
3181 host->align_addr = dma;
Russell Kingedd63fc2016-01-26 13:39:50 +00003182
Russell Kinge66e61c2016-01-26 13:39:55 +00003183 host->adma_table = buf + host->align_buffer_sz;
3184 host->adma_addr = dma + host->align_buffer_sz;
3185 }
Pierre Ossman2134a922008-06-28 18:28:51 +02003186 }
3187
Pierre Ossman76591502008-07-21 00:32:11 +02003188 /*
3189 * If we use DMA, then it's up to the caller to set the DMA
3190 * mask, but PIO does not need the hw shim so we set a new
3191 * mask here in that case.
3192 */
Richard Röjforsa13abc72009-09-22 16:45:30 -07003193 if (!(host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA))) {
Pierre Ossman76591502008-07-21 00:32:11 +02003194 host->dma_mask = DMA_BIT_MASK(64);
Markus Mayer4e743f12014-07-03 13:27:42 -07003195 mmc_dev(mmc)->dma_mask = &host->dma_mask;
Pierre Ossman76591502008-07-21 00:32:11 +02003196 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08003197
Zhangfei Gaoc4687d52010-08-20 14:02:36 -04003198 if (host->version >= SDHCI_SPEC_300)
Adrian Hunter28da3582016-06-29 16:24:17 +03003199 host->max_clk = (host->caps & SDHCI_CLOCK_V3_BASE_MASK)
Zhangfei Gaoc4687d52010-08-20 14:02:36 -04003200 >> SDHCI_CLOCK_BASE_SHIFT;
3201 else
Adrian Hunter28da3582016-06-29 16:24:17 +03003202 host->max_clk = (host->caps & SDHCI_CLOCK_BASE_MASK)
Zhangfei Gaoc4687d52010-08-20 14:02:36 -04003203 >> SDHCI_CLOCK_BASE_SHIFT;
3204
Pierre Ossmand129bce2006-03-24 03:18:17 -08003205 host->max_clk *= 1000000;
Anton Vorontsovf27f47e2010-05-26 14:41:53 -07003206 if (host->max_clk == 0 || host->quirks &
3207 SDHCI_QUIRK_CAP_CLOCK_BASE_BROKEN) {
Ben Dooks4240ff02009-03-17 00:13:57 +03003208 if (!host->ops->get_max_clock) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01003209 pr_err("%s: Hardware doesn't specify base clock frequency.\n",
3210 mmc_hostname(mmc));
Adrian Huntereb5c20d2016-04-12 14:25:08 +03003211 ret = -ENODEV;
3212 goto undma;
Ben Dooks4240ff02009-03-17 00:13:57 +03003213 }
3214 host->max_clk = host->ops->get_max_clock(host);
3215 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08003216
3217 /*
Arindam Nathc3ed3872011-05-05 12:19:06 +05303218 * In case of Host Controller v3.00, find out whether clock
3219 * multiplier is supported.
3220 */
Adrian Hunter28da3582016-06-29 16:24:17 +03003221 host->clk_mul = (host->caps1 & SDHCI_CLOCK_MUL_MASK) >>
Arindam Nathc3ed3872011-05-05 12:19:06 +05303222 SDHCI_CLOCK_MUL_SHIFT;
3223
3224 /*
3225 * In case the value in Clock Multiplier is 0, then programmable
3226 * clock mode is not supported, otherwise the actual clock
3227 * multiplier is one more than the value of Clock Multiplier
3228 * in the Capabilities Register.
3229 */
3230 if (host->clk_mul)
3231 host->clk_mul += 1;
3232
3233 /*
Pierre Ossmand129bce2006-03-24 03:18:17 -08003234 * Set host parameters.
3235 */
Dong Aisheng59241752015-07-22 20:53:07 +08003236 max_clk = host->max_clk;
3237
Marek Szyprowskice5f0362010-08-10 18:01:56 -07003238 if (host->ops->get_min_clock)
Anton Vorontsova9e58f22009-07-29 15:04:16 -07003239 mmc->f_min = host->ops->get_min_clock(host);
Arindam Nathc3ed3872011-05-05 12:19:06 +05303240 else if (host->version >= SDHCI_SPEC_300) {
3241 if (host->clk_mul) {
3242 mmc->f_min = (host->max_clk * host->clk_mul) / 1024;
Dong Aisheng59241752015-07-22 20:53:07 +08003243 max_clk = host->max_clk * host->clk_mul;
Arindam Nathc3ed3872011-05-05 12:19:06 +05303244 } else
3245 mmc->f_min = host->max_clk / SDHCI_MAX_DIV_SPEC_300;
3246 } else
Zhangfei Gao03975262010-09-20 15:15:18 -04003247 mmc->f_min = host->max_clk / SDHCI_MAX_DIV_SPEC_200;
Philip Rakity15ec4462010-11-19 16:48:39 -05003248
Adrian Hunterd310ae42016-04-12 14:25:07 +03003249 if (!mmc->f_max || mmc->f_max > max_clk)
Dong Aisheng59241752015-07-22 20:53:07 +08003250 mmc->f_max = max_clk;
3251
Aisheng Dong28aab052014-08-27 15:26:31 +08003252 if (!(host->quirks & SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK)) {
Adrian Hunter28da3582016-06-29 16:24:17 +03003253 host->timeout_clk = (host->caps & SDHCI_TIMEOUT_CLK_MASK) >>
Aisheng Dong28aab052014-08-27 15:26:31 +08003254 SDHCI_TIMEOUT_CLK_SHIFT;
3255 if (host->timeout_clk == 0) {
3256 if (host->ops->get_timeout_clock) {
3257 host->timeout_clk =
3258 host->ops->get_timeout_clock(host);
3259 } else {
3260 pr_err("%s: Hardware doesn't specify timeout clock frequency.\n",
3261 mmc_hostname(mmc));
Adrian Huntereb5c20d2016-04-12 14:25:08 +03003262 ret = -ENODEV;
3263 goto undma;
Aisheng Dong28aab052014-08-27 15:26:31 +08003264 }
Andy Shevchenko272308c2011-08-03 18:36:00 +03003265 }
Andy Shevchenko272308c2011-08-03 18:36:00 +03003266
Adrian Hunter28da3582016-06-29 16:24:17 +03003267 if (host->caps & SDHCI_TIMEOUT_CLK_UNIT)
Aisheng Dong28aab052014-08-27 15:26:31 +08003268 host->timeout_clk *= 1000;
Andy Shevchenko272308c2011-08-03 18:36:00 +03003269
Adrian Hunter99513622016-03-07 13:33:55 +02003270 if (override_timeout_clk)
3271 host->timeout_clk = override_timeout_clk;
3272
Aisheng Dong28aab052014-08-27 15:26:31 +08003273 mmc->max_busy_timeout = host->ops->get_max_timeout_count ?
Aisheng Donga6ff5ae2014-08-27 15:26:27 +08003274 host->ops->get_max_timeout_count(host) : 1 << 27;
Aisheng Dong28aab052014-08-27 15:26:31 +08003275 mmc->max_busy_timeout /= host->timeout_clk;
3276 }
Adrian Hunter58d12462011-06-28 17:16:03 +03003277
Andrei Warkentine89d4562011-05-23 15:06:37 -05003278 mmc->caps |= MMC_CAP_SDIO_IRQ | MMC_CAP_ERASE | MMC_CAP_CMD23;
Russell King781e9892014-04-25 12:55:46 +01003279 mmc->caps2 |= MMC_CAP2_SDIO_IRQ_NOTHREAD;
Andrei Warkentine89d4562011-05-23 15:06:37 -05003280
3281 if (host->quirks & SDHCI_QUIRK_MULTIBLOCK_READ_ACMD12)
3282 host->flags |= SDHCI_AUTO_CMD12;
Anton Vorontsov5fe23c72009-06-18 00:14:08 +04003283
Andrei Warkentin8edf63712011-05-23 15:06:39 -05003284 /* Auto-CMD23 stuff only works in ADMA or PIO. */
Andrei Warkentin4f3d3e92011-05-25 10:42:50 -04003285 if ((host->version >= SDHCI_SPEC_300) &&
Andrei Warkentin8edf63712011-05-23 15:06:39 -05003286 ((host->flags & SDHCI_USE_ADMA) ||
Scott Branden3bfa6f02015-02-09 16:06:28 -08003287 !(host->flags & SDHCI_USE_SDMA)) &&
3288 !(host->quirks2 & SDHCI_QUIRK2_ACMD23_BROKEN)) {
Andrei Warkentin8edf63712011-05-23 15:06:39 -05003289 host->flags |= SDHCI_AUTO_CMD23;
3290 DBG("%s: Auto-CMD23 available\n", mmc_hostname(mmc));
3291 } else {
3292 DBG("%s: Auto-CMD23 unavailable\n", mmc_hostname(mmc));
3293 }
3294
Philip Rakity15ec4462010-11-19 16:48:39 -05003295 /*
3296 * A controller may support 8-bit width, but the board itself
3297 * might not have the pins brought out. Boards that support
3298 * 8-bit width must set "mmc->caps |= MMC_CAP_8_BIT_DATA;" in
3299 * their platform code before calling sdhci_add_host(), and we
3300 * won't assume 8-bit width for hosts without that CAP.
3301 */
Anton Vorontsov5fe23c72009-06-18 00:14:08 +04003302 if (!(host->quirks & SDHCI_QUIRK_FORCE_1_BIT_DATA))
Philip Rakity15ec4462010-11-19 16:48:39 -05003303 mmc->caps |= MMC_CAP_4_BIT_DATA;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003304
Jerry Huang63ef5d82012-10-25 13:47:19 +08003305 if (host->quirks2 & SDHCI_QUIRK2_HOST_NO_CMD23)
3306 mmc->caps &= ~MMC_CAP_CMD23;
3307
Adrian Hunter28da3582016-06-29 16:24:17 +03003308 if (host->caps & SDHCI_CAN_DO_HISPD)
Zhangfei Gaoa29e7e12010-08-16 21:15:32 -04003309 mmc->caps |= MMC_CAP_SD_HIGHSPEED | MMC_CAP_MMC_HIGHSPEED;
Pierre Ossmancd9277c2007-02-18 12:07:47 +01003310
Jaehoon Chung176d1ed2010-09-27 09:42:20 +01003311 if ((host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION) &&
Jaehoon Chung860951c2016-06-21 10:13:26 +09003312 mmc_card_is_removable(mmc) &&
Arnd Bergmann287980e2016-05-27 23:23:25 +02003313 mmc_gpio_get_cd(host->mmc) < 0)
Anton Vorontsov68d1fb72009-03-17 00:13:52 +03003314 mmc->caps |= MMC_CAP_NEEDS_POLL;
3315
Philip Rakity6231f3d2012-07-23 15:56:23 -07003316 /* If vqmmc regulator and no 1.8V signalling, then there's no UHS */
Tim Kryger3a48edc2014-06-13 10:13:56 -07003317 if (!IS_ERR(mmc->supply.vqmmc)) {
3318 ret = regulator_enable(mmc->supply.vqmmc);
3319 if (!regulator_is_supported_voltage(mmc->supply.vqmmc, 1700000,
3320 1950000))
Adrian Hunter28da3582016-06-29 16:24:17 +03003321 host->caps1 &= ~(SDHCI_SUPPORT_SDR104 |
3322 SDHCI_SUPPORT_SDR50 |
3323 SDHCI_SUPPORT_DDR50);
Chris Balla3361ab2013-03-11 17:51:53 -04003324 if (ret) {
3325 pr_warn("%s: Failed to enable vqmmc regulator: %d\n",
3326 mmc_hostname(mmc), ret);
Adrian Hunter4bb74312014-11-06 15:19:04 +02003327 mmc->supply.vqmmc = ERR_PTR(-EINVAL);
Chris Balla3361ab2013-03-11 17:51:53 -04003328 }
Kevin Liu8363c372012-11-17 17:55:51 -05003329 }
Philip Rakity6231f3d2012-07-23 15:56:23 -07003330
Adrian Hunter28da3582016-06-29 16:24:17 +03003331 if (host->quirks2 & SDHCI_QUIRK2_NO_1_8_V) {
3332 host->caps1 &= ~(SDHCI_SUPPORT_SDR104 | SDHCI_SUPPORT_SDR50 |
3333 SDHCI_SUPPORT_DDR50);
3334 }
Daniel Drake6a661802012-11-25 13:01:19 -05003335
Al Cooper4188bba2012-03-16 15:54:17 -04003336 /* Any UHS-I mode in caps implies SDR12 and SDR25 support. */
Adrian Hunter28da3582016-06-29 16:24:17 +03003337 if (host->caps1 & (SDHCI_SUPPORT_SDR104 | SDHCI_SUPPORT_SDR50 |
3338 SDHCI_SUPPORT_DDR50))
Arindam Nathf2119df2011-05-05 12:18:57 +05303339 mmc->caps |= MMC_CAP_UHS_SDR12 | MMC_CAP_UHS_SDR25;
3340
3341 /* SDR104 supports also implies SDR50 support */
Adrian Hunter28da3582016-06-29 16:24:17 +03003342 if (host->caps1 & SDHCI_SUPPORT_SDR104) {
Arindam Nathf2119df2011-05-05 12:18:57 +05303343 mmc->caps |= MMC_CAP_UHS_SDR104 | MMC_CAP_UHS_SDR50;
Giuseppe CAVALLARO156e14b2013-06-12 08:16:38 +02003344 /* SD3.0: SDR104 is supported so (for eMMC) the caps2
3345 * field can be promoted to support HS200.
3346 */
Adrian Hunter549c0b12014-11-06 15:19:05 +02003347 if (!(host->quirks2 & SDHCI_QUIRK2_BROKEN_HS200))
David Cohen13868bf2013-10-29 10:58:26 -07003348 mmc->caps2 |= MMC_CAP2_HS200;
Adrian Hunter28da3582016-06-29 16:24:17 +03003349 } else if (host->caps1 & SDHCI_SUPPORT_SDR50) {
Arindam Nathf2119df2011-05-05 12:18:57 +05303350 mmc->caps |= MMC_CAP_UHS_SDR50;
Adrian Hunter28da3582016-06-29 16:24:17 +03003351 }
Arindam Nathf2119df2011-05-05 12:18:57 +05303352
Adrian Huntere9fb05d2014-11-06 15:19:06 +02003353 if (host->quirks2 & SDHCI_QUIRK2_CAPS_BIT63_FOR_HS400 &&
Adrian Hunter28da3582016-06-29 16:24:17 +03003354 (host->caps1 & SDHCI_SUPPORT_HS400))
Adrian Huntere9fb05d2014-11-06 15:19:06 +02003355 mmc->caps2 |= MMC_CAP2_HS400;
3356
Adrian Hunter549c0b12014-11-06 15:19:05 +02003357 if ((mmc->caps2 & MMC_CAP2_HSX00_1_2V) &&
3358 (IS_ERR(mmc->supply.vqmmc) ||
3359 !regulator_is_supported_voltage(mmc->supply.vqmmc, 1100000,
3360 1300000)))
3361 mmc->caps2 &= ~MMC_CAP2_HSX00_1_2V;
3362
Adrian Hunter28da3582016-06-29 16:24:17 +03003363 if ((host->caps1 & SDHCI_SUPPORT_DDR50) &&
3364 !(host->quirks2 & SDHCI_QUIRK2_BROKEN_DDR50))
Arindam Nathf2119df2011-05-05 12:18:57 +05303365 mmc->caps |= MMC_CAP_UHS_DDR50;
3366
Girish K S069c9f12012-01-06 09:56:39 +05303367 /* Does the host need tuning for SDR50? */
Adrian Hunter28da3582016-06-29 16:24:17 +03003368 if (host->caps1 & SDHCI_USE_SDR50_TUNING)
Arindam Nathb513ea22011-05-05 12:19:04 +05303369 host->flags |= SDHCI_SDR50_NEEDS_TUNING;
3370
Arindam Nathd6d50a12011-05-05 12:18:59 +05303371 /* Driver Type(s) (A, C, D) supported by the host */
Adrian Hunter28da3582016-06-29 16:24:17 +03003372 if (host->caps1 & SDHCI_DRIVER_TYPE_A)
Arindam Nathd6d50a12011-05-05 12:18:59 +05303373 mmc->caps |= MMC_CAP_DRIVER_TYPE_A;
Adrian Hunter28da3582016-06-29 16:24:17 +03003374 if (host->caps1 & SDHCI_DRIVER_TYPE_C)
Arindam Nathd6d50a12011-05-05 12:18:59 +05303375 mmc->caps |= MMC_CAP_DRIVER_TYPE_C;
Adrian Hunter28da3582016-06-29 16:24:17 +03003376 if (host->caps1 & SDHCI_DRIVER_TYPE_D)
Arindam Nathd6d50a12011-05-05 12:18:59 +05303377 mmc->caps |= MMC_CAP_DRIVER_TYPE_D;
3378
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05303379 /* Initial value for re-tuning timer count */
Adrian Hunter28da3582016-06-29 16:24:17 +03003380 host->tuning_count = (host->caps1 & SDHCI_RETUNING_TIMER_COUNT_MASK) >>
3381 SDHCI_RETUNING_TIMER_COUNT_SHIFT;
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05303382
3383 /*
3384 * In case Re-tuning Timer is not disabled, the actual value of
3385 * re-tuning timer will be 2 ^ (n - 1).
3386 */
3387 if (host->tuning_count)
3388 host->tuning_count = 1 << (host->tuning_count - 1);
3389
3390 /* Re-tuning mode supported by the Host Controller */
Adrian Hunter28da3582016-06-29 16:24:17 +03003391 host->tuning_mode = (host->caps1 & SDHCI_RETUNING_MODE_MASK) >>
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05303392 SDHCI_RETUNING_MODE_SHIFT;
3393
Takashi Iwai8f230f42010-12-08 10:04:30 +01003394 ocr_avail = 0;
Philip Rakitybad37e12012-05-27 18:36:44 -07003395
Arindam Nathf2119df2011-05-05 12:18:57 +05303396 /*
3397 * According to SD Host Controller spec v3.00, if the Host System
3398 * can afford more than 150mA, Host Driver should set XPC to 1. Also
3399 * the value is meaningful only if Voltage Support in the Capabilities
3400 * register is set. The actual current value is 4 times the register
3401 * value.
3402 */
3403 max_current_caps = sdhci_readl(host, SDHCI_MAX_CURRENT);
Tim Kryger3a48edc2014-06-13 10:13:56 -07003404 if (!max_current_caps && !IS_ERR(mmc->supply.vmmc)) {
Chuanxiao.Dongae906032014-08-01 14:00:13 +08003405 int curr = regulator_get_current_limit(mmc->supply.vmmc);
Philip Rakitybad37e12012-05-27 18:36:44 -07003406 if (curr > 0) {
3407
3408 /* convert to SDHCI_MAX_CURRENT format */
3409 curr = curr/1000; /* convert to mA */
3410 curr = curr/SDHCI_MAX_CURRENT_MULTIPLIER;
3411
3412 curr = min_t(u32, curr, SDHCI_MAX_CURRENT_LIMIT);
3413 max_current_caps =
3414 (curr << SDHCI_MAX_CURRENT_330_SHIFT) |
3415 (curr << SDHCI_MAX_CURRENT_300_SHIFT) |
3416 (curr << SDHCI_MAX_CURRENT_180_SHIFT);
3417 }
3418 }
Arindam Nathf2119df2011-05-05 12:18:57 +05303419
Adrian Hunter28da3582016-06-29 16:24:17 +03003420 if (host->caps & SDHCI_CAN_VDD_330) {
Takashi Iwai8f230f42010-12-08 10:04:30 +01003421 ocr_avail |= MMC_VDD_32_33 | MMC_VDD_33_34;
Arindam Nathf2119df2011-05-05 12:18:57 +05303422
Aaron Lu55c46652012-07-04 13:31:48 +08003423 mmc->max_current_330 = ((max_current_caps &
Arindam Nathf2119df2011-05-05 12:18:57 +05303424 SDHCI_MAX_CURRENT_330_MASK) >>
3425 SDHCI_MAX_CURRENT_330_SHIFT) *
3426 SDHCI_MAX_CURRENT_MULTIPLIER;
Arindam Nathf2119df2011-05-05 12:18:57 +05303427 }
Adrian Hunter28da3582016-06-29 16:24:17 +03003428 if (host->caps & SDHCI_CAN_VDD_300) {
Takashi Iwai8f230f42010-12-08 10:04:30 +01003429 ocr_avail |= MMC_VDD_29_30 | MMC_VDD_30_31;
Arindam Nathf2119df2011-05-05 12:18:57 +05303430
Aaron Lu55c46652012-07-04 13:31:48 +08003431 mmc->max_current_300 = ((max_current_caps &
Arindam Nathf2119df2011-05-05 12:18:57 +05303432 SDHCI_MAX_CURRENT_300_MASK) >>
3433 SDHCI_MAX_CURRENT_300_SHIFT) *
3434 SDHCI_MAX_CURRENT_MULTIPLIER;
Arindam Nathf2119df2011-05-05 12:18:57 +05303435 }
Adrian Hunter28da3582016-06-29 16:24:17 +03003436 if (host->caps & SDHCI_CAN_VDD_180) {
Takashi Iwai8f230f42010-12-08 10:04:30 +01003437 ocr_avail |= MMC_VDD_165_195;
3438
Aaron Lu55c46652012-07-04 13:31:48 +08003439 mmc->max_current_180 = ((max_current_caps &
Arindam Nathf2119df2011-05-05 12:18:57 +05303440 SDHCI_MAX_CURRENT_180_MASK) >>
3441 SDHCI_MAX_CURRENT_180_SHIFT) *
3442 SDHCI_MAX_CURRENT_MULTIPLIER;
Arindam Nathf2119df2011-05-05 12:18:57 +05303443 }
3444
Ulf Hansson5fd26c72015-06-05 11:40:08 +02003445 /* If OCR set by host, use it instead. */
3446 if (host->ocr_mask)
3447 ocr_avail = host->ocr_mask;
3448
3449 /* If OCR set by external regulators, give it highest prio. */
Tim Kryger3a48edc2014-06-13 10:13:56 -07003450 if (mmc->ocr_avail)
Tim Kryger52221612014-06-25 00:25:34 -07003451 ocr_avail = mmc->ocr_avail;
Tim Kryger3a48edc2014-06-13 10:13:56 -07003452
Takashi Iwai8f230f42010-12-08 10:04:30 +01003453 mmc->ocr_avail = ocr_avail;
3454 mmc->ocr_avail_sdio = ocr_avail;
3455 if (host->ocr_avail_sdio)
3456 mmc->ocr_avail_sdio &= host->ocr_avail_sdio;
3457 mmc->ocr_avail_sd = ocr_avail;
3458 if (host->ocr_avail_sd)
3459 mmc->ocr_avail_sd &= host->ocr_avail_sd;
3460 else /* normal SD controllers don't support 1.8V */
3461 mmc->ocr_avail_sd &= ~MMC_VDD_165_195;
3462 mmc->ocr_avail_mmc = ocr_avail;
3463 if (host->ocr_avail_mmc)
3464 mmc->ocr_avail_mmc &= host->ocr_avail_mmc;
Pierre Ossman146ad662006-06-30 02:22:23 -07003465
3466 if (mmc->ocr_avail == 0) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01003467 pr_err("%s: Hardware doesn't report any support voltages.\n",
3468 mmc_hostname(mmc));
Adrian Huntereb5c20d2016-04-12 14:25:08 +03003469 ret = -ENODEV;
3470 goto unreg;
Pierre Ossman146ad662006-06-30 02:22:23 -07003471 }
3472
Adrian Hunter8cb851a2016-06-29 16:24:16 +03003473 if ((mmc->caps & (MMC_CAP_UHS_SDR12 | MMC_CAP_UHS_SDR25 |
3474 MMC_CAP_UHS_SDR50 | MMC_CAP_UHS_SDR104 |
3475 MMC_CAP_UHS_DDR50 | MMC_CAP_1_8V_DDR)) ||
3476 (mmc->caps2 & (MMC_CAP2_HS200_1_8V_SDR | MMC_CAP2_HS400_1_8V)))
3477 host->flags |= SDHCI_SIGNALING_180;
3478
3479 if (mmc->caps2 & MMC_CAP2_HSX00_1_2V)
3480 host->flags |= SDHCI_SIGNALING_120;
3481
Pierre Ossmand129bce2006-03-24 03:18:17 -08003482 spin_lock_init(&host->lock);
3483
3484 /*
Pierre Ossman2134a922008-06-28 18:28:51 +02003485 * Maximum number of segments. Depends on if the hardware
3486 * can do scatter/gather or not.
Pierre Ossmand129bce2006-03-24 03:18:17 -08003487 */
Pierre Ossman2134a922008-06-28 18:28:51 +02003488 if (host->flags & SDHCI_USE_ADMA)
Adrian Hunter4fb213f2014-11-04 12:42:43 +02003489 mmc->max_segs = SDHCI_MAX_SEGS;
Richard Röjforsa13abc72009-09-22 16:45:30 -07003490 else if (host->flags & SDHCI_USE_SDMA)
Martin K. Petersena36274e2010-09-10 01:33:59 -04003491 mmc->max_segs = 1;
Pierre Ossman2134a922008-06-28 18:28:51 +02003492 else /* PIO */
Adrian Hunter4fb213f2014-11-04 12:42:43 +02003493 mmc->max_segs = SDHCI_MAX_SEGS;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003494
3495 /*
Adrian Hunterac005312014-12-05 19:25:28 +02003496 * Maximum number of sectors in one transfer. Limited by SDMA boundary
3497 * size (512KiB). Note some tuning modes impose a 4MiB limit, but this
3498 * is less anyway.
Pierre Ossmand129bce2006-03-24 03:18:17 -08003499 */
Pierre Ossman55db8902006-11-21 17:55:45 +01003500 mmc->max_req_size = 524288;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003501
3502 /*
3503 * Maximum segment size. Could be one segment with the maximum number
Pierre Ossman2134a922008-06-28 18:28:51 +02003504 * of bytes. When doing hardware scatter/gather, each entry cannot
3505 * be larger than 64 KiB though.
Pierre Ossmand129bce2006-03-24 03:18:17 -08003506 */
Olof Johansson30652aa2011-01-01 18:37:32 -06003507 if (host->flags & SDHCI_USE_ADMA) {
3508 if (host->quirks & SDHCI_QUIRK_BROKEN_ADMA_ZEROLEN_DESC)
3509 mmc->max_seg_size = 65535;
3510 else
3511 mmc->max_seg_size = 65536;
3512 } else {
Pierre Ossman2134a922008-06-28 18:28:51 +02003513 mmc->max_seg_size = mmc->max_req_size;
Olof Johansson30652aa2011-01-01 18:37:32 -06003514 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08003515
3516 /*
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +01003517 * Maximum block size. This varies from controller to controller and
3518 * is specified in the capabilities register.
3519 */
Anton Vorontsov0633f652009-03-17 00:14:03 +03003520 if (host->quirks & SDHCI_QUIRK_FORCE_BLK_SZ_2048) {
3521 mmc->max_blk_size = 2;
3522 } else {
Adrian Hunter28da3582016-06-29 16:24:17 +03003523 mmc->max_blk_size = (host->caps & SDHCI_MAX_BLOCK_MASK) >>
Anton Vorontsov0633f652009-03-17 00:14:03 +03003524 SDHCI_MAX_BLOCK_SHIFT;
3525 if (mmc->max_blk_size >= 3) {
Joe Perches66061102014-09-12 14:56:56 -07003526 pr_warn("%s: Invalid maximum block size, assuming 512 bytes\n",
3527 mmc_hostname(mmc));
Anton Vorontsov0633f652009-03-17 00:14:03 +03003528 mmc->max_blk_size = 0;
3529 }
3530 }
3531
3532 mmc->max_blk_size = 512 << mmc->max_blk_size;
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +01003533
3534 /*
Pierre Ossman55db8902006-11-21 17:55:45 +01003535 * Maximum block count.
3536 */
Ben Dooks1388eef2009-06-14 12:40:53 +01003537 mmc->max_blk_count = (host->quirks & SDHCI_QUIRK_NO_MULTIBLOCK) ? 1 : 65535;
Pierre Ossman55db8902006-11-21 17:55:45 +01003538
Adrian Hunter52f53362016-06-29 16:24:15 +03003539 return 0;
3540
3541unreg:
3542 if (!IS_ERR(mmc->supply.vqmmc))
3543 regulator_disable(mmc->supply.vqmmc);
3544undma:
3545 if (host->align_buffer)
3546 dma_free_coherent(mmc_dev(mmc), host->align_buffer_sz +
3547 host->adma_table_sz, host->align_buffer,
3548 host->align_addr);
3549 host->adma_table = NULL;
3550 host->align_buffer = NULL;
3551
3552 return ret;
3553}
3554EXPORT_SYMBOL_GPL(sdhci_setup_host);
3555
3556int __sdhci_add_host(struct sdhci_host *host)
3557{
3558 struct mmc_host *mmc = host->mmc;
3559 int ret;
3560
Pierre Ossman55db8902006-11-21 17:55:45 +01003561 /*
Pierre Ossmand129bce2006-03-24 03:18:17 -08003562 * Init tasklets.
3563 */
Pierre Ossmand129bce2006-03-24 03:18:17 -08003564 tasklet_init(&host->finish_tasklet,
3565 sdhci_tasklet_finish, (unsigned long)host);
3566
Al Viroe4cad1b2006-10-10 22:47:07 +01003567 setup_timer(&host->timer, sdhci_timeout_timer, (unsigned long)host);
Adrian Hunterd7422fb2016-06-29 16:24:33 +03003568 setup_timer(&host->data_timer, sdhci_timeout_data_timer,
3569 (unsigned long)host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003570
Adrian Hunter250fb7b42014-12-05 19:41:10 +02003571 init_waitqueue_head(&host->buf_ready_int);
Arindam Nathb513ea22011-05-05 12:19:04 +05303572
Shawn Guo2af502c2013-07-05 14:38:55 +08003573 sdhci_init(host, 0);
3574
Russell King781e9892014-04-25 12:55:46 +01003575 ret = request_threaded_irq(host->irq, sdhci_irq, sdhci_thread_irq,
3576 IRQF_SHARED, mmc_hostname(mmc), host);
Mark Brown0fc81ee2012-07-02 14:26:15 +01003577 if (ret) {
3578 pr_err("%s: Failed to request IRQ %d: %d\n",
3579 mmc_hostname(mmc), host->irq, ret);
Pierre Ossman8ef1a142006-06-30 02:22:21 -07003580 goto untasklet;
Mark Brown0fc81ee2012-07-02 14:26:15 +01003581 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08003582
Pierre Ossmand129bce2006-03-24 03:18:17 -08003583#ifdef CONFIG_MMC_DEBUG
3584 sdhci_dumpregs(host);
3585#endif
3586
Adrian Hunter061d17a2016-04-12 14:25:09 +03003587 ret = sdhci_led_register(host);
Mark Brown0fc81ee2012-07-02 14:26:15 +01003588 if (ret) {
3589 pr_err("%s: Failed to register LED device: %d\n",
3590 mmc_hostname(mmc), ret);
Adrian Huntereb5c20d2016-04-12 14:25:08 +03003591 goto unirq;
Mark Brown0fc81ee2012-07-02 14:26:15 +01003592 }
Pierre Ossman2f730fe2008-03-17 10:29:38 +01003593
Pierre Ossman5f25a662006-10-04 02:15:39 -07003594 mmiowb();
3595
Adrian Huntereb5c20d2016-04-12 14:25:08 +03003596 ret = mmc_add_host(mmc);
3597 if (ret)
3598 goto unled;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003599
Girish K Sa3c76eb2011-10-11 11:44:09 +05303600 pr_info("%s: SDHCI controller on %s [%s] using %s\n",
Kay Sieversd1b26862008-11-08 21:37:46 +01003601 mmc_hostname(mmc), host->hw_name, dev_name(mmc_dev(mmc)),
Adrian Huntere57a5f62014-11-04 12:42:46 +02003602 (host->flags & SDHCI_USE_ADMA) ?
3603 (host->flags & SDHCI_USE_64_BIT_DMA) ? "ADMA 64-bit" : "ADMA" :
Richard Röjforsa13abc72009-09-22 16:45:30 -07003604 (host->flags & SDHCI_USE_SDMA) ? "DMA" : "PIO");
Pierre Ossmand129bce2006-03-24 03:18:17 -08003605
Anton Vorontsov7260cf52009-03-17 00:13:48 +03003606 sdhci_enable_card_detection(host);
3607
Pierre Ossmand129bce2006-03-24 03:18:17 -08003608 return 0;
3609
Adrian Huntereb5c20d2016-04-12 14:25:08 +03003610unled:
Adrian Hunter061d17a2016-04-12 14:25:09 +03003611 sdhci_led_unregister(host);
Adrian Huntereb5c20d2016-04-12 14:25:08 +03003612unirq:
Russell King03231f92014-04-25 12:57:12 +01003613 sdhci_do_reset(host, SDHCI_RESET_ALL);
Russell Kingb537f942014-04-25 12:56:01 +01003614 sdhci_writel(host, 0, SDHCI_INT_ENABLE);
3615 sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE);
Pierre Ossman2f730fe2008-03-17 10:29:38 +01003616 free_irq(host->irq, host);
Pierre Ossman8ef1a142006-06-30 02:22:21 -07003617untasklet:
Pierre Ossmand129bce2006-03-24 03:18:17 -08003618 tasklet_kill(&host->finish_tasklet);
Adrian Hunter52f53362016-06-29 16:24:15 +03003619
Adrian Huntereb5c20d2016-04-12 14:25:08 +03003620 if (!IS_ERR(mmc->supply.vqmmc))
3621 regulator_disable(mmc->supply.vqmmc);
Adrian Hunter52f53362016-06-29 16:24:15 +03003622
Adrian Huntereb5c20d2016-04-12 14:25:08 +03003623 if (host->align_buffer)
3624 dma_free_coherent(mmc_dev(mmc), host->align_buffer_sz +
3625 host->adma_table_sz, host->align_buffer,
3626 host->align_addr);
3627 host->adma_table = NULL;
3628 host->align_buffer = NULL;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003629
3630 return ret;
3631}
Adrian Hunter52f53362016-06-29 16:24:15 +03003632EXPORT_SYMBOL_GPL(__sdhci_add_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003633
Adrian Hunter52f53362016-06-29 16:24:15 +03003634int sdhci_add_host(struct sdhci_host *host)
3635{
3636 int ret;
3637
3638 ret = sdhci_setup_host(host);
3639 if (ret)
3640 return ret;
3641
3642 return __sdhci_add_host(host);
3643}
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003644EXPORT_SYMBOL_GPL(sdhci_add_host);
3645
Pierre Ossman1e728592008-04-16 19:13:13 +02003646void sdhci_remove_host(struct sdhci_host *host, int dead)
Pierre Ossmand129bce2006-03-24 03:18:17 -08003647{
Tim Kryger3a48edc2014-06-13 10:13:56 -07003648 struct mmc_host *mmc = host->mmc;
Pierre Ossman1e728592008-04-16 19:13:13 +02003649 unsigned long flags;
3650
3651 if (dead) {
3652 spin_lock_irqsave(&host->lock, flags);
3653
3654 host->flags |= SDHCI_DEVICE_DEAD;
3655
Adrian Hunter5d0d11c2016-06-29 16:24:31 +03003656 if (sdhci_has_requests(host)) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05303657 pr_err("%s: Controller removed during "
Markus Mayer4e743f12014-07-03 13:27:42 -07003658 " transfer!\n", mmc_hostname(mmc));
Adrian Hunter5d0d11c2016-06-29 16:24:31 +03003659 sdhci_error_out_mrqs(host, -ENOMEDIUM);
Pierre Ossman1e728592008-04-16 19:13:13 +02003660 }
3661
3662 spin_unlock_irqrestore(&host->lock, flags);
3663 }
3664
Anton Vorontsov7260cf52009-03-17 00:13:48 +03003665 sdhci_disable_card_detection(host);
3666
Markus Mayer4e743f12014-07-03 13:27:42 -07003667 mmc_remove_host(mmc);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003668
Adrian Hunter061d17a2016-04-12 14:25:09 +03003669 sdhci_led_unregister(host);
Pierre Ossman2f730fe2008-03-17 10:29:38 +01003670
Pierre Ossman1e728592008-04-16 19:13:13 +02003671 if (!dead)
Russell King03231f92014-04-25 12:57:12 +01003672 sdhci_do_reset(host, SDHCI_RESET_ALL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003673
Russell Kingb537f942014-04-25 12:56:01 +01003674 sdhci_writel(host, 0, SDHCI_INT_ENABLE);
3675 sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003676 free_irq(host->irq, host);
3677
3678 del_timer_sync(&host->timer);
Adrian Hunterd7422fb2016-06-29 16:24:33 +03003679 del_timer_sync(&host->data_timer);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003680
Pierre Ossmand129bce2006-03-24 03:18:17 -08003681 tasklet_kill(&host->finish_tasklet);
Pierre Ossman2134a922008-06-28 18:28:51 +02003682
Tim Kryger3a48edc2014-06-13 10:13:56 -07003683 if (!IS_ERR(mmc->supply.vqmmc))
3684 regulator_disable(mmc->supply.vqmmc);
Philip Rakity6231f3d2012-07-23 15:56:23 -07003685
Russell Kingedd63fc2016-01-26 13:39:50 +00003686 if (host->align_buffer)
Russell Kinge66e61c2016-01-26 13:39:55 +00003687 dma_free_coherent(mmc_dev(mmc), host->align_buffer_sz +
3688 host->adma_table_sz, host->align_buffer,
3689 host->align_addr);
Pierre Ossman2134a922008-06-28 18:28:51 +02003690
Adrian Hunter4efaa6f2014-11-04 12:42:39 +02003691 host->adma_table = NULL;
Pierre Ossman2134a922008-06-28 18:28:51 +02003692 host->align_buffer = NULL;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003693}
3694
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003695EXPORT_SYMBOL_GPL(sdhci_remove_host);
3696
3697void sdhci_free_host(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -08003698{
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003699 mmc_free_host(host->mmc);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003700}
3701
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003702EXPORT_SYMBOL_GPL(sdhci_free_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003703
3704/*****************************************************************************\
3705 * *
3706 * Driver init/exit *
3707 * *
3708\*****************************************************************************/
3709
3710static int __init sdhci_drv_init(void)
3711{
Girish K Sa3c76eb2011-10-11 11:44:09 +05303712 pr_info(DRIVER_NAME
Pierre Ossman52fbf9c2007-02-09 08:23:41 +01003713 ": Secure Digital Host Controller Interface driver\n");
Girish K Sa3c76eb2011-10-11 11:44:09 +05303714 pr_info(DRIVER_NAME ": Copyright(c) Pierre Ossman\n");
Pierre Ossmand129bce2006-03-24 03:18:17 -08003715
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003716 return 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003717}
3718
3719static void __exit sdhci_drv_exit(void)
3720{
Pierre Ossmand129bce2006-03-24 03:18:17 -08003721}
3722
3723module_init(sdhci_drv_init);
3724module_exit(sdhci_drv_exit);
3725
Pierre Ossmandf673b22006-06-30 02:22:31 -07003726module_param(debug_quirks, uint, 0444);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003727module_param(debug_quirks2, uint, 0444);
Pierre Ossman67435272006-06-30 02:22:31 -07003728
Pierre Ossman32710e82009-04-08 20:14:54 +02003729MODULE_AUTHOR("Pierre Ossman <pierre@ossman.eu>");
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003730MODULE_DESCRIPTION("Secure Digital Host Controller Interface core driver");
Pierre Ossmand129bce2006-03-24 03:18:17 -08003731MODULE_LICENSE("GPL");
Pierre Ossman67435272006-06-30 02:22:31 -07003732
Pierre Ossmandf673b22006-06-30 02:22:31 -07003733MODULE_PARM_DESC(debug_quirks, "Force certain quirks.");
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003734MODULE_PARM_DESC(debug_quirks2, "Force certain other quirks.");