blob: b35ec79e72052a52a861757f6877a2e7db132b4e [file] [log] [blame]
Pierre Ossmand129bce2006-03-24 03:18:17 -08001/*
Pierre Ossman70f10482007-07-11 20:04:50 +02002 * linux/drivers/mmc/host/sdhci.c - Secure Digital Host Controller Interface driver
Pierre Ossmand129bce2006-03-24 03:18:17 -08003 *
Pierre Ossmanb69c9052008-03-08 23:44:25 +01004 * Copyright (C) 2005-2008 Pierre Ossman, All Rights Reserved.
Pierre Ossmand129bce2006-03-24 03:18:17 -08005 *
6 * This program is free software; you can redistribute it and/or modify
Pierre Ossman643f7202006-09-30 23:27:52 -07007 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or (at
9 * your option) any later version.
Pierre Ossman84c46a52007-12-02 19:58:16 +010010 *
11 * Thanks to the following companies for their support:
12 *
13 * - JMicron (hardware and technical support)
Pierre Ossmand129bce2006-03-24 03:18:17 -080014 */
15
Pierre Ossmand129bce2006-03-24 03:18:17 -080016#include <linux/delay.h>
17#include <linux/highmem.h>
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +010018#include <linux/io.h>
Paul Gortmaker88b47672011-07-03 15:15:51 -040019#include <linux/module.h>
Pierre Ossmand129bce2006-03-24 03:18:17 -080020#include <linux/dma-mapping.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/slab.h>
Ralf Baechle11763602007-10-23 20:42:11 +020022#include <linux/scatterlist.h>
Marek Szyprowski9bea3c82010-08-10 18:01:59 -070023#include <linux/regulator/consumer.h>
Adrian Hunter66fd8ad2011-10-03 15:33:34 +030024#include <linux/pm_runtime.h>
Pierre Ossmand129bce2006-03-24 03:18:17 -080025
Pierre Ossman2f730fe2008-03-17 10:29:38 +010026#include <linux/leds.h>
27
Aries Lee22113ef2010-12-15 08:14:24 +010028#include <linux/mmc/mmc.h>
Pierre Ossmand129bce2006-03-24 03:18:17 -080029#include <linux/mmc/host.h>
Aaron Lu473b0952012-07-03 17:27:49 +080030#include <linux/mmc/card.h>
Corneliu Doban85cc1c32015-02-09 16:06:29 -080031#include <linux/mmc/sdio.h>
Guennadi Liakhovetskibec9d4e2012-09-17 16:45:10 +080032#include <linux/mmc/slot-gpio.h>
Pierre Ossmand129bce2006-03-24 03:18:17 -080033
Pierre Ossmand129bce2006-03-24 03:18:17 -080034#include "sdhci.h"
35
36#define DRIVER_NAME "sdhci"
Pierre Ossmand129bce2006-03-24 03:18:17 -080037
Pierre Ossmand129bce2006-03-24 03:18:17 -080038#define DBG(f, x...) \
Russell Kingc6563172006-03-29 09:30:20 +010039 pr_debug(DRIVER_NAME " [%s()]: " f, __func__,## x)
Pierre Ossmand129bce2006-03-24 03:18:17 -080040
Pierre Ossmanf9134312008-12-21 17:01:48 +010041#if defined(CONFIG_LEDS_CLASS) || (defined(CONFIG_LEDS_CLASS_MODULE) && \
42 defined(CONFIG_MMC_SDHCI_MODULE))
43#define SDHCI_USE_LEDS_CLASS
44#endif
45
Arindam Nathb513ea22011-05-05 12:19:04 +053046#define MAX_TUNING_LOOP 40
47
Pierre Ossmandf673b22006-06-30 02:22:31 -070048static unsigned int debug_quirks = 0;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +030049static unsigned int debug_quirks2;
Pierre Ossman67435272006-06-30 02:22:31 -070050
Pierre Ossmand129bce2006-03-24 03:18:17 -080051static void sdhci_finish_data(struct sdhci_host *);
52
Pierre Ossmand129bce2006-03-24 03:18:17 -080053static void sdhci_finish_command(struct sdhci_host *);
Girish K S069c9f12012-01-06 09:56:39 +053054static int sdhci_execute_tuning(struct mmc_host *mmc, u32 opcode);
Kevin Liu52983382013-01-31 11:31:37 +080055static void sdhci_enable_preset_value(struct sdhci_host *host, bool enable);
Haibo Chen348487c2014-12-09 17:04:05 +080056static int sdhci_pre_dma_transfer(struct sdhci_host *host,
57 struct mmc_data *data,
58 struct sdhci_host_next *next);
Scott Branden04e079cf2015-03-10 11:35:10 -070059static int sdhci_do_get_cd(struct sdhci_host *host);
Pierre Ossmand129bce2006-03-24 03:18:17 -080060
Rafael J. Wysocki162d6f92014-12-05 03:05:33 +010061#ifdef CONFIG_PM
Adrian Hunter66fd8ad2011-10-03 15:33:34 +030062static int sdhci_runtime_pm_get(struct sdhci_host *host);
63static int sdhci_runtime_pm_put(struct sdhci_host *host);
Adrian Hunterf0710a52013-05-06 12:17:32 +030064static void sdhci_runtime_pm_bus_on(struct sdhci_host *host);
65static void sdhci_runtime_pm_bus_off(struct sdhci_host *host);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +030066#else
67static inline int sdhci_runtime_pm_get(struct sdhci_host *host)
68{
69 return 0;
70}
71static inline int sdhci_runtime_pm_put(struct sdhci_host *host)
72{
73 return 0;
74}
Adrian Hunterf0710a52013-05-06 12:17:32 +030075static void sdhci_runtime_pm_bus_on(struct sdhci_host *host)
76{
77}
78static void sdhci_runtime_pm_bus_off(struct sdhci_host *host)
79{
80}
Adrian Hunter66fd8ad2011-10-03 15:33:34 +030081#endif
82
Pierre Ossmand129bce2006-03-24 03:18:17 -080083static void sdhci_dumpregs(struct sdhci_host *host)
84{
Girish K Sa3c76eb2011-10-11 11:44:09 +053085 pr_debug(DRIVER_NAME ": =========== REGISTER DUMP (%s)===========\n",
Philip Rakity412ab652010-09-22 15:25:13 -070086 mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -080087
Girish K Sa3c76eb2011-10-11 11:44:09 +053088 pr_debug(DRIVER_NAME ": Sys addr: 0x%08x | Version: 0x%08x\n",
Anton Vorontsov4e4141a2009-03-17 00:13:46 +030089 sdhci_readl(host, SDHCI_DMA_ADDRESS),
90 sdhci_readw(host, SDHCI_HOST_VERSION));
Girish K Sa3c76eb2011-10-11 11:44:09 +053091 pr_debug(DRIVER_NAME ": Blk size: 0x%08x | Blk cnt: 0x%08x\n",
Anton Vorontsov4e4141a2009-03-17 00:13:46 +030092 sdhci_readw(host, SDHCI_BLOCK_SIZE),
93 sdhci_readw(host, SDHCI_BLOCK_COUNT));
Girish K Sa3c76eb2011-10-11 11:44:09 +053094 pr_debug(DRIVER_NAME ": Argument: 0x%08x | Trn mode: 0x%08x\n",
Anton Vorontsov4e4141a2009-03-17 00:13:46 +030095 sdhci_readl(host, SDHCI_ARGUMENT),
96 sdhci_readw(host, SDHCI_TRANSFER_MODE));
Girish K Sa3c76eb2011-10-11 11:44:09 +053097 pr_debug(DRIVER_NAME ": Present: 0x%08x | Host ctl: 0x%08x\n",
Anton Vorontsov4e4141a2009-03-17 00:13:46 +030098 sdhci_readl(host, SDHCI_PRESENT_STATE),
99 sdhci_readb(host, SDHCI_HOST_CONTROL));
Girish K Sa3c76eb2011-10-11 11:44:09 +0530100 pr_debug(DRIVER_NAME ": Power: 0x%08x | Blk gap: 0x%08x\n",
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300101 sdhci_readb(host, SDHCI_POWER_CONTROL),
102 sdhci_readb(host, SDHCI_BLOCK_GAP_CONTROL));
Girish K Sa3c76eb2011-10-11 11:44:09 +0530103 pr_debug(DRIVER_NAME ": Wake-up: 0x%08x | Clock: 0x%08x\n",
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300104 sdhci_readb(host, SDHCI_WAKE_UP_CONTROL),
105 sdhci_readw(host, SDHCI_CLOCK_CONTROL));
Girish K Sa3c76eb2011-10-11 11:44:09 +0530106 pr_debug(DRIVER_NAME ": Timeout: 0x%08x | Int stat: 0x%08x\n",
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300107 sdhci_readb(host, SDHCI_TIMEOUT_CONTROL),
108 sdhci_readl(host, SDHCI_INT_STATUS));
Girish K Sa3c76eb2011-10-11 11:44:09 +0530109 pr_debug(DRIVER_NAME ": Int enab: 0x%08x | Sig enab: 0x%08x\n",
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300110 sdhci_readl(host, SDHCI_INT_ENABLE),
111 sdhci_readl(host, SDHCI_SIGNAL_ENABLE));
Girish K Sa3c76eb2011-10-11 11:44:09 +0530112 pr_debug(DRIVER_NAME ": AC12 err: 0x%08x | Slot int: 0x%08x\n",
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300113 sdhci_readw(host, SDHCI_ACMD12_ERR),
114 sdhci_readw(host, SDHCI_SLOT_INT_STATUS));
Girish K Sa3c76eb2011-10-11 11:44:09 +0530115 pr_debug(DRIVER_NAME ": Caps: 0x%08x | Caps_1: 0x%08x\n",
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300116 sdhci_readl(host, SDHCI_CAPABILITIES),
Philip Rakitye8120ad2010-11-30 00:55:23 -0500117 sdhci_readl(host, SDHCI_CAPABILITIES_1));
Girish K Sa3c76eb2011-10-11 11:44:09 +0530118 pr_debug(DRIVER_NAME ": Cmd: 0x%08x | Max curr: 0x%08x\n",
Philip Rakitye8120ad2010-11-30 00:55:23 -0500119 sdhci_readw(host, SDHCI_COMMAND),
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300120 sdhci_readl(host, SDHCI_MAX_CURRENT));
Girish K Sa3c76eb2011-10-11 11:44:09 +0530121 pr_debug(DRIVER_NAME ": Host ctl2: 0x%08x\n",
Arindam Nathf2119df2011-05-05 12:18:57 +0530122 sdhci_readw(host, SDHCI_HOST_CONTROL2));
Pierre Ossmand129bce2006-03-24 03:18:17 -0800123
Adrian Huntere57a5f62014-11-04 12:42:46 +0200124 if (host->flags & SDHCI_USE_ADMA) {
125 if (host->flags & SDHCI_USE_64_BIT_DMA)
126 pr_debug(DRIVER_NAME ": ADMA Err: 0x%08x | ADMA Ptr: 0x%08x%08x\n",
127 readl(host->ioaddr + SDHCI_ADMA_ERROR),
128 readl(host->ioaddr + SDHCI_ADMA_ADDRESS_HI),
129 readl(host->ioaddr + SDHCI_ADMA_ADDRESS));
130 else
131 pr_debug(DRIVER_NAME ": ADMA Err: 0x%08x | ADMA Ptr: 0x%08x\n",
132 readl(host->ioaddr + SDHCI_ADMA_ERROR),
133 readl(host->ioaddr + SDHCI_ADMA_ADDRESS));
134 }
Ben Dooksbe3f4ae2009-06-08 23:33:52 +0100135
Girish K Sa3c76eb2011-10-11 11:44:09 +0530136 pr_debug(DRIVER_NAME ": ===========================================\n");
Pierre Ossmand129bce2006-03-24 03:18:17 -0800137}
138
139/*****************************************************************************\
140 * *
141 * Low level functions *
142 * *
143\*****************************************************************************/
144
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300145static void sdhci_set_card_detection(struct sdhci_host *host, bool enable)
146{
Russell King5b4f1f62014-04-25 12:57:02 +0100147 u32 present;
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300148
Adrian Hunterc79396c2011-12-27 15:48:42 +0200149 if ((host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION) ||
Daniel Drake87b87a32012-04-10 00:14:20 +0100150 (host->mmc->caps & MMC_CAP_NONREMOVABLE))
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300151 return;
152
Russell King5b4f1f62014-04-25 12:57:02 +0100153 if (enable) {
154 present = sdhci_readl(host, SDHCI_PRESENT_STATE) &
155 SDHCI_CARD_PRESENT;
Shawn Guod25928d2011-06-21 22:41:48 +0800156
Russell King5b4f1f62014-04-25 12:57:02 +0100157 host->ier |= present ? SDHCI_INT_CARD_REMOVE :
158 SDHCI_INT_CARD_INSERT;
159 } else {
160 host->ier &= ~(SDHCI_INT_CARD_REMOVE | SDHCI_INT_CARD_INSERT);
161 }
Russell Kingb537f942014-04-25 12:56:01 +0100162
163 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
164 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300165}
166
167static void sdhci_enable_card_detection(struct sdhci_host *host)
168{
169 sdhci_set_card_detection(host, true);
170}
171
172static void sdhci_disable_card_detection(struct sdhci_host *host)
173{
174 sdhci_set_card_detection(host, false);
175}
176
Russell King03231f92014-04-25 12:57:12 +0100177void sdhci_reset(struct sdhci_host *host, u8 mask)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800178{
Pierre Ossmane16514d82006-06-30 02:22:24 -0700179 unsigned long timeout;
Philip Rakity393c1a32011-01-21 11:26:40 -0800180
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300181 sdhci_writeb(host, mask, SDHCI_SOFTWARE_RESET);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800182
Adrian Hunterf0710a52013-05-06 12:17:32 +0300183 if (mask & SDHCI_RESET_ALL) {
Pierre Ossmand129bce2006-03-24 03:18:17 -0800184 host->clock = 0;
Adrian Hunterf0710a52013-05-06 12:17:32 +0300185 /* Reset-all turns off SD Bus Power */
186 if (host->quirks2 & SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON)
187 sdhci_runtime_pm_bus_off(host);
188 }
Pierre Ossmand129bce2006-03-24 03:18:17 -0800189
Pierre Ossmane16514d82006-06-30 02:22:24 -0700190 /* Wait max 100 ms */
191 timeout = 100;
192
193 /* hw clears the bit when it's done */
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300194 while (sdhci_readb(host, SDHCI_SOFTWARE_RESET) & mask) {
Pierre Ossmane16514d82006-06-30 02:22:24 -0700195 if (timeout == 0) {
Girish K Sa3c76eb2011-10-11 11:44:09 +0530196 pr_err("%s: Reset 0x%x never completed.\n",
Pierre Ossmane16514d82006-06-30 02:22:24 -0700197 mmc_hostname(host->mmc), (int)mask);
198 sdhci_dumpregs(host);
199 return;
200 }
201 timeout--;
202 mdelay(1);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800203 }
Russell King03231f92014-04-25 12:57:12 +0100204}
205EXPORT_SYMBOL_GPL(sdhci_reset);
Anton Vorontsov063a9db2009-03-17 00:14:02 +0300206
Russell King03231f92014-04-25 12:57:12 +0100207static void sdhci_do_reset(struct sdhci_host *host, u8 mask)
208{
209 if (host->quirks & SDHCI_QUIRK_NO_CARD_NO_RESET) {
210 if (!(sdhci_readl(host, SDHCI_PRESENT_STATE) &
211 SDHCI_CARD_PRESENT))
212 return;
213 }
214
215 host->ops->reset(host, mask);
Philip Rakity393c1a32011-01-21 11:26:40 -0800216
Russell Kingda91a8f2014-04-25 13:00:12 +0100217 if (mask & SDHCI_RESET_ALL) {
218 if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
219 if (host->ops->enable_dma)
220 host->ops->enable_dma(host);
221 }
222
223 /* Resetting the controller clears many */
224 host->preset_enabled = false;
Shaohui Xie3abc1e802011-12-29 16:33:00 +0800225 }
Pierre Ossmand129bce2006-03-24 03:18:17 -0800226}
227
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -0800228static void sdhci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios);
229
230static void sdhci_init(struct sdhci_host *host, int soft)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800231{
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -0800232 if (soft)
Russell King03231f92014-04-25 12:57:12 +0100233 sdhci_do_reset(host, SDHCI_RESET_CMD|SDHCI_RESET_DATA);
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -0800234 else
Russell King03231f92014-04-25 12:57:12 +0100235 sdhci_do_reset(host, SDHCI_RESET_ALL);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800236
Russell Kingb537f942014-04-25 12:56:01 +0100237 host->ier = SDHCI_INT_BUS_POWER | SDHCI_INT_DATA_END_BIT |
238 SDHCI_INT_DATA_CRC | SDHCI_INT_DATA_TIMEOUT |
239 SDHCI_INT_INDEX | SDHCI_INT_END_BIT | SDHCI_INT_CRC |
240 SDHCI_INT_TIMEOUT | SDHCI_INT_DATA_END |
241 SDHCI_INT_RESPONSE;
242
243 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
244 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -0800245
246 if (soft) {
247 /* force clock reconfiguration */
248 host->clock = 0;
249 sdhci_set_ios(host->mmc, &host->mmc->ios);
250 }
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300251}
Pierre Ossmand129bce2006-03-24 03:18:17 -0800252
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300253static void sdhci_reinit(struct sdhci_host *host)
254{
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -0800255 sdhci_init(host, 0);
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300256 sdhci_enable_card_detection(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800257}
258
259static void sdhci_activate_led(struct sdhci_host *host)
260{
261 u8 ctrl;
262
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300263 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800264 ctrl |= SDHCI_CTRL_LED;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300265 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800266}
267
268static void sdhci_deactivate_led(struct sdhci_host *host)
269{
270 u8 ctrl;
271
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300272 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800273 ctrl &= ~SDHCI_CTRL_LED;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300274 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800275}
276
Pierre Ossmanf9134312008-12-21 17:01:48 +0100277#ifdef SDHCI_USE_LEDS_CLASS
Pierre Ossman2f730fe2008-03-17 10:29:38 +0100278static void sdhci_led_control(struct led_classdev *led,
279 enum led_brightness brightness)
280{
281 struct sdhci_host *host = container_of(led, struct sdhci_host, led);
282 unsigned long flags;
283
284 spin_lock_irqsave(&host->lock, flags);
285
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300286 if (host->runtime_suspended)
287 goto out;
288
Pierre Ossman2f730fe2008-03-17 10:29:38 +0100289 if (brightness == LED_OFF)
290 sdhci_deactivate_led(host);
291 else
292 sdhci_activate_led(host);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300293out:
Pierre Ossman2f730fe2008-03-17 10:29:38 +0100294 spin_unlock_irqrestore(&host->lock, flags);
295}
296#endif
297
Pierre Ossmand129bce2006-03-24 03:18:17 -0800298/*****************************************************************************\
299 * *
300 * Core functions *
301 * *
302\*****************************************************************************/
303
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100304static void sdhci_read_block_pio(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800305{
Pierre Ossman76591502008-07-21 00:32:11 +0200306 unsigned long flags;
307 size_t blksize, len, chunk;
Steven Noonan7244b852008-10-01 01:50:25 -0700308 u32 uninitialized_var(scratch);
Pierre Ossman76591502008-07-21 00:32:11 +0200309 u8 *buf;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800310
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100311 DBG("PIO reading\n");
Pierre Ossmand129bce2006-03-24 03:18:17 -0800312
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100313 blksize = host->data->blksz;
Pierre Ossman76591502008-07-21 00:32:11 +0200314 chunk = 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800315
Pierre Ossman76591502008-07-21 00:32:11 +0200316 local_irq_save(flags);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800317
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100318 while (blksize) {
Fabio Estevambf3a35a2015-05-09 18:44:51 -0300319 BUG_ON(!sg_miter_next(&host->sg_miter));
Pierre Ossmand129bce2006-03-24 03:18:17 -0800320
Pierre Ossman76591502008-07-21 00:32:11 +0200321 len = min(host->sg_miter.length, blksize);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800322
Pierre Ossman76591502008-07-21 00:32:11 +0200323 blksize -= len;
324 host->sg_miter.consumed = len;
Alex Dubov14d836e2007-04-13 19:04:38 +0200325
Pierre Ossman76591502008-07-21 00:32:11 +0200326 buf = host->sg_miter.addr;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800327
Pierre Ossman76591502008-07-21 00:32:11 +0200328 while (len) {
329 if (chunk == 0) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300330 scratch = sdhci_readl(host, SDHCI_BUFFER);
Pierre Ossman76591502008-07-21 00:32:11 +0200331 chunk = 4;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800332 }
Pierre Ossman76591502008-07-21 00:32:11 +0200333
334 *buf = scratch & 0xFF;
335
336 buf++;
337 scratch >>= 8;
338 chunk--;
339 len--;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800340 }
341 }
Pierre Ossman76591502008-07-21 00:32:11 +0200342
343 sg_miter_stop(&host->sg_miter);
344
345 local_irq_restore(flags);
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100346}
Pierre Ossmand129bce2006-03-24 03:18:17 -0800347
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100348static void sdhci_write_block_pio(struct sdhci_host *host)
349{
Pierre Ossman76591502008-07-21 00:32:11 +0200350 unsigned long flags;
351 size_t blksize, len, chunk;
352 u32 scratch;
353 u8 *buf;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100354
355 DBG("PIO writing\n");
356
357 blksize = host->data->blksz;
Pierre Ossman76591502008-07-21 00:32:11 +0200358 chunk = 0;
359 scratch = 0;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100360
Pierre Ossman76591502008-07-21 00:32:11 +0200361 local_irq_save(flags);
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100362
363 while (blksize) {
Fabio Estevambf3a35a2015-05-09 18:44:51 -0300364 BUG_ON(!sg_miter_next(&host->sg_miter));
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100365
Pierre Ossman76591502008-07-21 00:32:11 +0200366 len = min(host->sg_miter.length, blksize);
Alex Dubov14d836e2007-04-13 19:04:38 +0200367
Pierre Ossman76591502008-07-21 00:32:11 +0200368 blksize -= len;
369 host->sg_miter.consumed = len;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100370
Pierre Ossman76591502008-07-21 00:32:11 +0200371 buf = host->sg_miter.addr;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100372
Pierre Ossman76591502008-07-21 00:32:11 +0200373 while (len) {
374 scratch |= (u32)*buf << (chunk * 8);
375
376 buf++;
377 chunk++;
378 len--;
379
380 if ((chunk == 4) || ((len == 0) && (blksize == 0))) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300381 sdhci_writel(host, scratch, SDHCI_BUFFER);
Pierre Ossman76591502008-07-21 00:32:11 +0200382 chunk = 0;
383 scratch = 0;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100384 }
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100385 }
386 }
Pierre Ossman76591502008-07-21 00:32:11 +0200387
388 sg_miter_stop(&host->sg_miter);
389
390 local_irq_restore(flags);
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100391}
392
393static void sdhci_transfer_pio(struct sdhci_host *host)
394{
395 u32 mask;
396
397 BUG_ON(!host->data);
398
Pierre Ossman76591502008-07-21 00:32:11 +0200399 if (host->blocks == 0)
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100400 return;
401
402 if (host->data->flags & MMC_DATA_READ)
403 mask = SDHCI_DATA_AVAILABLE;
404 else
405 mask = SDHCI_SPACE_AVAILABLE;
406
Pierre Ossman4a3cba32008-07-29 00:11:16 +0200407 /*
408 * Some controllers (JMicron JMB38x) mess up the buffer bits
409 * for transfers < 4 bytes. As long as it is just one block,
410 * we can ignore the bits.
411 */
412 if ((host->quirks & SDHCI_QUIRK_BROKEN_SMALL_PIO) &&
413 (host->data->blocks == 1))
414 mask = ~0;
415
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300416 while (sdhci_readl(host, SDHCI_PRESENT_STATE) & mask) {
Anton Vorontsov3e3bf202009-03-17 00:14:00 +0300417 if (host->quirks & SDHCI_QUIRK_PIO_NEEDS_DELAY)
418 udelay(100);
419
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100420 if (host->data->flags & MMC_DATA_READ)
421 sdhci_read_block_pio(host);
422 else
423 sdhci_write_block_pio(host);
424
Pierre Ossman76591502008-07-21 00:32:11 +0200425 host->blocks--;
426 if (host->blocks == 0)
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100427 break;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100428 }
429
430 DBG("PIO transfer complete.\n");
Pierre Ossmand129bce2006-03-24 03:18:17 -0800431}
432
Pierre Ossman2134a922008-06-28 18:28:51 +0200433static char *sdhci_kmap_atomic(struct scatterlist *sg, unsigned long *flags)
434{
435 local_irq_save(*flags);
Cong Wang482fce92011-11-27 13:27:00 +0800436 return kmap_atomic(sg_page(sg)) + sg->offset;
Pierre Ossman2134a922008-06-28 18:28:51 +0200437}
438
439static void sdhci_kunmap_atomic(void *buffer, unsigned long *flags)
440{
Cong Wang482fce92011-11-27 13:27:00 +0800441 kunmap_atomic(buffer);
Pierre Ossman2134a922008-06-28 18:28:51 +0200442 local_irq_restore(*flags);
443}
444
Adrian Huntere57a5f62014-11-04 12:42:46 +0200445static void sdhci_adma_write_desc(struct sdhci_host *host, void *desc,
446 dma_addr_t addr, int len, unsigned cmd)
Ben Dooks118cd172010-03-05 13:43:26 -0800447{
Adrian Huntere57a5f62014-11-04 12:42:46 +0200448 struct sdhci_adma2_64_desc *dma_desc = desc;
Ben Dooks118cd172010-03-05 13:43:26 -0800449
Adrian Huntere57a5f62014-11-04 12:42:46 +0200450 /* 32-bit and 64-bit descriptors have these members in same position */
Adrian Hunter05452302014-11-04 12:42:45 +0200451 dma_desc->cmd = cpu_to_le16(cmd);
452 dma_desc->len = cpu_to_le16(len);
Adrian Huntere57a5f62014-11-04 12:42:46 +0200453 dma_desc->addr_lo = cpu_to_le32((u32)addr);
454
455 if (host->flags & SDHCI_USE_64_BIT_DMA)
456 dma_desc->addr_hi = cpu_to_le32((u64)addr >> 32);
Ben Dooks118cd172010-03-05 13:43:26 -0800457}
458
Adrian Hunterb5ffa672014-11-04 12:42:40 +0200459static void sdhci_adma_mark_end(void *desc)
460{
Adrian Huntere57a5f62014-11-04 12:42:46 +0200461 struct sdhci_adma2_64_desc *dma_desc = desc;
Adrian Hunterb5ffa672014-11-04 12:42:40 +0200462
Adrian Huntere57a5f62014-11-04 12:42:46 +0200463 /* 32-bit and 64-bit descriptors have 'cmd' in same position */
Adrian Hunter05452302014-11-04 12:42:45 +0200464 dma_desc->cmd |= cpu_to_le16(ADMA2_END);
Adrian Hunterb5ffa672014-11-04 12:42:40 +0200465}
466
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200467static int sdhci_adma_table_pre(struct sdhci_host *host,
Pierre Ossman2134a922008-06-28 18:28:51 +0200468 struct mmc_data *data)
469{
470 int direction;
471
Adrian Hunter1c3d5f62014-11-04 12:42:41 +0200472 void *desc;
473 void *align;
Pierre Ossman2134a922008-06-28 18:28:51 +0200474 dma_addr_t addr;
475 dma_addr_t align_addr;
476 int len, offset;
477
478 struct scatterlist *sg;
479 int i;
480 char *buffer;
481 unsigned long flags;
482
483 /*
484 * The spec does not specify endianness of descriptor table.
485 * We currently guess that it is LE.
486 */
487
488 if (data->flags & MMC_DATA_READ)
489 direction = DMA_FROM_DEVICE;
490 else
491 direction = DMA_TO_DEVICE;
492
Pierre Ossman2134a922008-06-28 18:28:51 +0200493 host->align_addr = dma_map_single(mmc_dev(host->mmc),
Adrian Hunter76fe3792014-11-04 12:42:42 +0200494 host->align_buffer, host->align_buffer_sz, direction);
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -0700495 if (dma_mapping_error(mmc_dev(host->mmc), host->align_addr))
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200496 goto fail;
Adrian Hunter76fe3792014-11-04 12:42:42 +0200497 BUG_ON(host->align_addr & host->align_mask);
Pierre Ossman2134a922008-06-28 18:28:51 +0200498
Haibo Chen348487c2014-12-09 17:04:05 +0800499 host->sg_count = sdhci_pre_dma_transfer(host, data, NULL);
500 if (host->sg_count < 0)
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200501 goto unmap_align;
Pierre Ossman2134a922008-06-28 18:28:51 +0200502
Adrian Hunter4efaa6f2014-11-04 12:42:39 +0200503 desc = host->adma_table;
Pierre Ossman2134a922008-06-28 18:28:51 +0200504 align = host->align_buffer;
505
506 align_addr = host->align_addr;
507
508 for_each_sg(data->sg, sg, host->sg_count, i) {
509 addr = sg_dma_address(sg);
510 len = sg_dma_len(sg);
511
512 /*
513 * The SDHCI specification states that ADMA
514 * addresses must be 32-bit aligned. If they
515 * aren't, then we use a bounce buffer for
516 * the (up to three) bytes that screw up the
517 * alignment.
518 */
Adrian Hunter76fe3792014-11-04 12:42:42 +0200519 offset = (host->align_sz - (addr & host->align_mask)) &
520 host->align_mask;
Pierre Ossman2134a922008-06-28 18:28:51 +0200521 if (offset) {
522 if (data->flags & MMC_DATA_WRITE) {
523 buffer = sdhci_kmap_atomic(sg, &flags);
524 memcpy(align, buffer, offset);
525 sdhci_kunmap_atomic(buffer, &flags);
526 }
527
Ben Dooks118cd172010-03-05 13:43:26 -0800528 /* tran, valid */
Adrian Huntere57a5f62014-11-04 12:42:46 +0200529 sdhci_adma_write_desc(host, desc, align_addr, offset,
Adrian Hunter739d46d2014-11-04 12:42:44 +0200530 ADMA2_TRAN_VALID);
Pierre Ossman2134a922008-06-28 18:28:51 +0200531
532 BUG_ON(offset > 65536);
533
Adrian Hunter76fe3792014-11-04 12:42:42 +0200534 align += host->align_sz;
535 align_addr += host->align_sz;
Pierre Ossman2134a922008-06-28 18:28:51 +0200536
Adrian Hunter76fe3792014-11-04 12:42:42 +0200537 desc += host->desc_sz;
Pierre Ossman2134a922008-06-28 18:28:51 +0200538
539 addr += offset;
540 len -= offset;
541 }
542
Pierre Ossman2134a922008-06-28 18:28:51 +0200543 BUG_ON(len > 65536);
544
Ben Dooks118cd172010-03-05 13:43:26 -0800545 /* tran, valid */
Adrian Huntere57a5f62014-11-04 12:42:46 +0200546 sdhci_adma_write_desc(host, desc, addr, len, ADMA2_TRAN_VALID);
Adrian Hunter76fe3792014-11-04 12:42:42 +0200547 desc += host->desc_sz;
Pierre Ossman2134a922008-06-28 18:28:51 +0200548
549 /*
550 * If this triggers then we have a calculation bug
551 * somewhere. :/
552 */
Adrian Hunter76fe3792014-11-04 12:42:42 +0200553 WARN_ON((desc - host->adma_table) >= host->adma_table_sz);
Pierre Ossman2134a922008-06-28 18:28:51 +0200554 }
555
Thomas Abraham70764a92010-05-26 14:42:04 -0700556 if (host->quirks & SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC) {
557 /*
558 * Mark the last descriptor as the terminating descriptor
559 */
Adrian Hunter4efaa6f2014-11-04 12:42:39 +0200560 if (desc != host->adma_table) {
Adrian Hunter76fe3792014-11-04 12:42:42 +0200561 desc -= host->desc_sz;
Adrian Hunterb5ffa672014-11-04 12:42:40 +0200562 sdhci_adma_mark_end(desc);
Thomas Abraham70764a92010-05-26 14:42:04 -0700563 }
564 } else {
565 /*
566 * Add a terminating entry.
567 */
Pierre Ossman2134a922008-06-28 18:28:51 +0200568
Thomas Abraham70764a92010-05-26 14:42:04 -0700569 /* nop, end, valid */
Adrian Huntere57a5f62014-11-04 12:42:46 +0200570 sdhci_adma_write_desc(host, desc, 0, 0, ADMA2_NOP_END_VALID);
Thomas Abraham70764a92010-05-26 14:42:04 -0700571 }
Pierre Ossman2134a922008-06-28 18:28:51 +0200572
573 /*
574 * Resync align buffer as we might have changed it.
575 */
576 if (data->flags & MMC_DATA_WRITE) {
577 dma_sync_single_for_device(mmc_dev(host->mmc),
Adrian Hunter76fe3792014-11-04 12:42:42 +0200578 host->align_addr, host->align_buffer_sz, direction);
Pierre Ossman2134a922008-06-28 18:28:51 +0200579 }
580
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200581 return 0;
582
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200583unmap_align:
584 dma_unmap_single(mmc_dev(host->mmc), host->align_addr,
Adrian Hunter76fe3792014-11-04 12:42:42 +0200585 host->align_buffer_sz, direction);
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200586fail:
587 return -EINVAL;
Pierre Ossman2134a922008-06-28 18:28:51 +0200588}
589
590static void sdhci_adma_table_post(struct sdhci_host *host,
591 struct mmc_data *data)
592{
593 int direction;
594
595 struct scatterlist *sg;
596 int i, size;
Adrian Hunter1c3d5f62014-11-04 12:42:41 +0200597 void *align;
Pierre Ossman2134a922008-06-28 18:28:51 +0200598 char *buffer;
599 unsigned long flags;
Russell Kingde0b65a2014-04-25 12:58:29 +0100600 bool has_unaligned;
Pierre Ossman2134a922008-06-28 18:28:51 +0200601
602 if (data->flags & MMC_DATA_READ)
603 direction = DMA_FROM_DEVICE;
604 else
605 direction = DMA_TO_DEVICE;
606
Pierre Ossman2134a922008-06-28 18:28:51 +0200607 dma_unmap_single(mmc_dev(host->mmc), host->align_addr,
Adrian Hunter76fe3792014-11-04 12:42:42 +0200608 host->align_buffer_sz, direction);
Pierre Ossman2134a922008-06-28 18:28:51 +0200609
Russell Kingde0b65a2014-04-25 12:58:29 +0100610 /* Do a quick scan of the SG list for any unaligned mappings */
611 has_unaligned = false;
612 for_each_sg(data->sg, sg, host->sg_count, i)
Adrian Hunter76fe3792014-11-04 12:42:42 +0200613 if (sg_dma_address(sg) & host->align_mask) {
Russell Kingde0b65a2014-04-25 12:58:29 +0100614 has_unaligned = true;
615 break;
616 }
617
618 if (has_unaligned && data->flags & MMC_DATA_READ) {
Pierre Ossman2134a922008-06-28 18:28:51 +0200619 dma_sync_sg_for_cpu(mmc_dev(host->mmc), data->sg,
620 data->sg_len, direction);
621
622 align = host->align_buffer;
623
624 for_each_sg(data->sg, sg, host->sg_count, i) {
Adrian Hunter76fe3792014-11-04 12:42:42 +0200625 if (sg_dma_address(sg) & host->align_mask) {
626 size = host->align_sz -
627 (sg_dma_address(sg) & host->align_mask);
Pierre Ossman2134a922008-06-28 18:28:51 +0200628
629 buffer = sdhci_kmap_atomic(sg, &flags);
630 memcpy(buffer, align, size);
631 sdhci_kunmap_atomic(buffer, &flags);
632
Adrian Hunter76fe3792014-11-04 12:42:42 +0200633 align += host->align_sz;
Pierre Ossman2134a922008-06-28 18:28:51 +0200634 }
635 }
636 }
637
Haibo Chen348487c2014-12-09 17:04:05 +0800638 if (!data->host_cookie)
639 dma_unmap_sg(mmc_dev(host->mmc), data->sg,
640 data->sg_len, direction);
Pierre Ossman2134a922008-06-28 18:28:51 +0200641}
642
Andrei Warkentina3c77782011-04-11 16:13:42 -0500643static u8 sdhci_calc_timeout(struct sdhci_host *host, struct mmc_command *cmd)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800644{
Pierre Ossman1c8cde92006-06-30 02:22:25 -0700645 u8 count;
Andrei Warkentina3c77782011-04-11 16:13:42 -0500646 struct mmc_data *data = cmd->data;
Pierre Ossman1c8cde92006-06-30 02:22:25 -0700647 unsigned target_timeout, current_timeout;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800648
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200649 /*
650 * If the host controller provides us with an incorrect timeout
651 * value, just skip the check and use 0xE. The hardware may take
652 * longer to time out, but that's much better than having a too-short
653 * timeout value.
654 */
Pierre Ossman11a2f1b2009-06-21 20:59:33 +0200655 if (host->quirks & SDHCI_QUIRK_BROKEN_TIMEOUT_VAL)
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200656 return 0xE;
Pierre Ossmane538fbe2007-08-12 16:46:32 +0200657
Andrei Warkentina3c77782011-04-11 16:13:42 -0500658 /* Unspecified timeout, assume max */
Ulf Hansson1d4d7742014-01-08 15:06:08 +0100659 if (!data && !cmd->busy_timeout)
Andrei Warkentina3c77782011-04-11 16:13:42 -0500660 return 0xE;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800661
Andrei Warkentina3c77782011-04-11 16:13:42 -0500662 /* timeout in us */
663 if (!data)
Ulf Hansson1d4d7742014-01-08 15:06:08 +0100664 target_timeout = cmd->busy_timeout * 1000;
Andy Shevchenko78a2ca22011-08-03 18:35:59 +0300665 else {
666 target_timeout = data->timeout_ns / 1000;
667 if (host->clock)
668 target_timeout += data->timeout_clks / host->clock;
669 }
Anton Vorontsov81b39802009-09-22 16:45:13 -0700670
Pierre Ossman1c8cde92006-06-30 02:22:25 -0700671 /*
672 * Figure out needed cycles.
673 * We do this in steps in order to fit inside a 32 bit int.
674 * The first step is the minimum timeout, which will have a
675 * minimum resolution of 6 bits:
676 * (1) 2^13*1000 > 2^22,
677 * (2) host->timeout_clk < 2^16
678 * =>
679 * (1) / (2) > 2^6
680 */
681 count = 0;
682 current_timeout = (1 << 13) * 1000 / host->timeout_clk;
683 while (current_timeout < target_timeout) {
684 count++;
685 current_timeout <<= 1;
686 if (count >= 0xF)
687 break;
688 }
689
690 if (count >= 0xF) {
Chris Ball09eeff52012-06-01 10:39:45 -0400691 DBG("%s: Too large timeout 0x%x requested for CMD%d!\n",
692 mmc_hostname(host->mmc), count, cmd->opcode);
Pierre Ossman1c8cde92006-06-30 02:22:25 -0700693 count = 0xE;
694 }
695
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200696 return count;
697}
698
Anton Vorontsov6aa943a2009-03-17 00:13:50 +0300699static void sdhci_set_transfer_irqs(struct sdhci_host *host)
700{
701 u32 pio_irqs = SDHCI_INT_DATA_AVAIL | SDHCI_INT_SPACE_AVAIL;
702 u32 dma_irqs = SDHCI_INT_DMA_END | SDHCI_INT_ADMA_ERROR;
703
704 if (host->flags & SDHCI_REQ_USE_DMA)
Russell Kingb537f942014-04-25 12:56:01 +0100705 host->ier = (host->ier & ~pio_irqs) | dma_irqs;
Anton Vorontsov6aa943a2009-03-17 00:13:50 +0300706 else
Russell Kingb537f942014-04-25 12:56:01 +0100707 host->ier = (host->ier & ~dma_irqs) | pio_irqs;
708
709 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
710 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Anton Vorontsov6aa943a2009-03-17 00:13:50 +0300711}
712
Aisheng Dongb45e6682014-08-27 15:26:29 +0800713static void sdhci_set_timeout(struct sdhci_host *host, struct mmc_command *cmd)
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200714{
715 u8 count;
Aisheng Dongb45e6682014-08-27 15:26:29 +0800716
717 if (host->ops->set_timeout) {
718 host->ops->set_timeout(host, cmd);
719 } else {
720 count = sdhci_calc_timeout(host, cmd);
721 sdhci_writeb(host, count, SDHCI_TIMEOUT_CONTROL);
722 }
723}
724
725static void sdhci_prepare_data(struct sdhci_host *host, struct mmc_command *cmd)
726{
Pierre Ossman2134a922008-06-28 18:28:51 +0200727 u8 ctrl;
Andrei Warkentina3c77782011-04-11 16:13:42 -0500728 struct mmc_data *data = cmd->data;
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200729 int ret;
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200730
731 WARN_ON(host->data);
732
Aisheng Dongb45e6682014-08-27 15:26:29 +0800733 if (data || (cmd->flags & MMC_RSP_BUSY))
734 sdhci_set_timeout(host, cmd);
Andrei Warkentina3c77782011-04-11 16:13:42 -0500735
736 if (!data)
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200737 return;
738
739 /* Sanity checks */
740 BUG_ON(data->blksz * data->blocks > 524288);
741 BUG_ON(data->blksz > host->mmc->max_blk_size);
742 BUG_ON(data->blocks > 65535);
743
744 host->data = data;
745 host->data_early = 0;
Mikko Vinnif6a03cb2011-04-12 09:36:18 -0400746 host->data->bytes_xfered = 0;
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200747
Richard Röjforsa13abc72009-09-22 16:45:30 -0700748 if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA))
Pierre Ossmanc9fddbc2007-12-02 19:52:11 +0100749 host->flags |= SDHCI_REQ_USE_DMA;
750
Pierre Ossman2134a922008-06-28 18:28:51 +0200751 /*
752 * FIXME: This doesn't account for merging when mapping the
753 * scatterlist.
754 */
755 if (host->flags & SDHCI_REQ_USE_DMA) {
756 int broken, i;
757 struct scatterlist *sg;
758
759 broken = 0;
760 if (host->flags & SDHCI_USE_ADMA) {
761 if (host->quirks & SDHCI_QUIRK_32BIT_ADMA_SIZE)
762 broken = 1;
763 } else {
764 if (host->quirks & SDHCI_QUIRK_32BIT_DMA_SIZE)
765 broken = 1;
766 }
767
768 if (unlikely(broken)) {
769 for_each_sg(data->sg, sg, data->sg_len, i) {
770 if (sg->length & 0x3) {
771 DBG("Reverting to PIO because of "
772 "transfer size (%d)\n",
773 sg->length);
774 host->flags &= ~SDHCI_REQ_USE_DMA;
775 break;
776 }
777 }
778 }
Pierre Ossmanc9fddbc2007-12-02 19:52:11 +0100779 }
780
781 /*
782 * The assumption here being that alignment is the same after
783 * translation to device address space.
784 */
Pierre Ossman2134a922008-06-28 18:28:51 +0200785 if (host->flags & SDHCI_REQ_USE_DMA) {
786 int broken, i;
787 struct scatterlist *sg;
788
789 broken = 0;
790 if (host->flags & SDHCI_USE_ADMA) {
791 /*
792 * As we use 3 byte chunks to work around
793 * alignment problems, we need to check this
794 * quirk.
795 */
796 if (host->quirks & SDHCI_QUIRK_32BIT_ADMA_SIZE)
797 broken = 1;
798 } else {
799 if (host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR)
800 broken = 1;
801 }
802
803 if (unlikely(broken)) {
804 for_each_sg(data->sg, sg, data->sg_len, i) {
805 if (sg->offset & 0x3) {
806 DBG("Reverting to PIO because of "
807 "bad alignment\n");
808 host->flags &= ~SDHCI_REQ_USE_DMA;
809 break;
810 }
811 }
812 }
813 }
814
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200815 if (host->flags & SDHCI_REQ_USE_DMA) {
816 if (host->flags & SDHCI_USE_ADMA) {
817 ret = sdhci_adma_table_pre(host, data);
818 if (ret) {
819 /*
820 * This only happens when someone fed
821 * us an invalid request.
822 */
823 WARN_ON(1);
Pierre Ossmanebd6d352008-07-29 00:45:51 +0200824 host->flags &= ~SDHCI_REQ_USE_DMA;
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200825 } else {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300826 sdhci_writel(host, host->adma_addr,
827 SDHCI_ADMA_ADDRESS);
Adrian Huntere57a5f62014-11-04 12:42:46 +0200828 if (host->flags & SDHCI_USE_64_BIT_DMA)
829 sdhci_writel(host,
830 (u64)host->adma_addr >> 32,
831 SDHCI_ADMA_ADDRESS_HI);
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200832 }
833 } else {
Tomas Winklerc8b3e022008-07-05 19:52:04 +0300834 int sg_cnt;
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200835
Haibo Chen348487c2014-12-09 17:04:05 +0800836 sg_cnt = sdhci_pre_dma_transfer(host, data, NULL);
Tomas Winklerc8b3e022008-07-05 19:52:04 +0300837 if (sg_cnt == 0) {
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200838 /*
839 * This only happens when someone fed
840 * us an invalid request.
841 */
842 WARN_ON(1);
Pierre Ossmanebd6d352008-07-29 00:45:51 +0200843 host->flags &= ~SDHCI_REQ_USE_DMA;
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200844 } else {
Pierre Ossman719a61b2008-07-22 13:23:23 +0200845 WARN_ON(sg_cnt != 1);
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300846 sdhci_writel(host, sg_dma_address(data->sg),
847 SDHCI_DMA_ADDRESS);
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200848 }
849 }
850 }
851
Pierre Ossman2134a922008-06-28 18:28:51 +0200852 /*
853 * Always adjust the DMA selection as some controllers
854 * (e.g. JMicron) can't do PIO properly when the selection
855 * is ADMA.
856 */
857 if (host->version >= SDHCI_SPEC_200) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300858 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
Pierre Ossman2134a922008-06-28 18:28:51 +0200859 ctrl &= ~SDHCI_CTRL_DMA_MASK;
860 if ((host->flags & SDHCI_REQ_USE_DMA) &&
Adrian Huntere57a5f62014-11-04 12:42:46 +0200861 (host->flags & SDHCI_USE_ADMA)) {
862 if (host->flags & SDHCI_USE_64_BIT_DMA)
863 ctrl |= SDHCI_CTRL_ADMA64;
864 else
865 ctrl |= SDHCI_CTRL_ADMA32;
866 } else {
Pierre Ossman2134a922008-06-28 18:28:51 +0200867 ctrl |= SDHCI_CTRL_SDMA;
Adrian Huntere57a5f62014-11-04 12:42:46 +0200868 }
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300869 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Pierre Ossmanc9fddbc2007-12-02 19:52:11 +0100870 }
871
Pierre Ossman8f1934c2008-06-30 21:15:49 +0200872 if (!(host->flags & SDHCI_REQ_USE_DMA)) {
Sebastian Andrzej Siewiorda60a912009-06-18 09:33:32 +0200873 int flags;
874
875 flags = SG_MITER_ATOMIC;
876 if (host->data->flags & MMC_DATA_READ)
877 flags |= SG_MITER_TO_SG;
878 else
879 flags |= SG_MITER_FROM_SG;
880 sg_miter_start(&host->sg_miter, data->sg, data->sg_len, flags);
Pierre Ossman76591502008-07-21 00:32:11 +0200881 host->blocks = data->blocks;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800882 }
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700883
Anton Vorontsov6aa943a2009-03-17 00:13:50 +0300884 sdhci_set_transfer_irqs(host);
885
Mikko Vinnif6a03cb2011-04-12 09:36:18 -0400886 /* Set the DMA boundary value and block size */
887 sdhci_writew(host, SDHCI_MAKE_BLKSZ(SDHCI_DEFAULT_BOUNDARY_ARG,
888 data->blksz), SDHCI_BLOCK_SIZE);
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300889 sdhci_writew(host, data->blocks, SDHCI_BLOCK_COUNT);
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700890}
891
892static void sdhci_set_transfer_mode(struct sdhci_host *host,
Andrei Warkentine89d4562011-05-23 15:06:37 -0500893 struct mmc_command *cmd)
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700894{
Vincent Yangd3fc5d72015-01-20 16:05:17 +0800895 u16 mode = 0;
Andrei Warkentine89d4562011-05-23 15:06:37 -0500896 struct mmc_data *data = cmd->data;
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700897
Dong Aisheng2b558c12013-10-30 22:09:48 +0800898 if (data == NULL) {
Vincent Wan9b8ffea2014-11-05 14:09:00 +0800899 if (host->quirks2 &
900 SDHCI_QUIRK2_CLEAR_TRANSFERMODE_REG_BEFORE_CMD) {
901 sdhci_writew(host, 0x0, SDHCI_TRANSFER_MODE);
902 } else {
Dong Aisheng2b558c12013-10-30 22:09:48 +0800903 /* clear Auto CMD settings for no data CMDs */
Vincent Wan9b8ffea2014-11-05 14:09:00 +0800904 mode = sdhci_readw(host, SDHCI_TRANSFER_MODE);
905 sdhci_writew(host, mode & ~(SDHCI_TRNS_AUTO_CMD12 |
Dong Aisheng2b558c12013-10-30 22:09:48 +0800906 SDHCI_TRNS_AUTO_CMD23), SDHCI_TRANSFER_MODE);
Vincent Wan9b8ffea2014-11-05 14:09:00 +0800907 }
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700908 return;
Dong Aisheng2b558c12013-10-30 22:09:48 +0800909 }
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700910
Pierre Ossmane538fbe2007-08-12 16:46:32 +0200911 WARN_ON(!host->data);
912
Vincent Yangd3fc5d72015-01-20 16:05:17 +0800913 if (!(host->quirks2 & SDHCI_QUIRK2_SUPPORT_SINGLE))
914 mode = SDHCI_TRNS_BLK_CNT_EN;
915
Andrei Warkentine89d4562011-05-23 15:06:37 -0500916 if (mmc_op_multi(cmd->opcode) || data->blocks > 1) {
Vincent Yangd3fc5d72015-01-20 16:05:17 +0800917 mode = SDHCI_TRNS_BLK_CNT_EN | SDHCI_TRNS_MULTI;
Andrei Warkentine89d4562011-05-23 15:06:37 -0500918 /*
919 * If we are sending CMD23, CMD12 never gets sent
920 * on successful completion (so no Auto-CMD12).
921 */
Corneliu Doban85cc1c32015-02-09 16:06:29 -0800922 if (!host->mrq->sbc && (host->flags & SDHCI_AUTO_CMD12) &&
923 (cmd->opcode != SD_IO_RW_EXTENDED))
Andrei Warkentine89d4562011-05-23 15:06:37 -0500924 mode |= SDHCI_TRNS_AUTO_CMD12;
Andrei Warkentin8edf63712011-05-23 15:06:39 -0500925 else if (host->mrq->sbc && (host->flags & SDHCI_AUTO_CMD23)) {
926 mode |= SDHCI_TRNS_AUTO_CMD23;
927 sdhci_writel(host, host->mrq->sbc->arg, SDHCI_ARGUMENT2);
928 }
Jerry Huangc4512f72010-08-10 18:01:59 -0700929 }
Andrei Warkentin8edf63712011-05-23 15:06:39 -0500930
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700931 if (data->flags & MMC_DATA_READ)
932 mode |= SDHCI_TRNS_READ;
Pierre Ossmanc9fddbc2007-12-02 19:52:11 +0100933 if (host->flags & SDHCI_REQ_USE_DMA)
Pierre Ossmanc7fa9962006-06-30 02:22:25 -0700934 mode |= SDHCI_TRNS_DMA;
935
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300936 sdhci_writew(host, mode, SDHCI_TRANSFER_MODE);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800937}
938
939static void sdhci_finish_data(struct sdhci_host *host)
940{
941 struct mmc_data *data;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800942
943 BUG_ON(!host->data);
944
945 data = host->data;
946 host->data = NULL;
947
Pierre Ossmanc9fddbc2007-12-02 19:52:11 +0100948 if (host->flags & SDHCI_REQ_USE_DMA) {
Pierre Ossman2134a922008-06-28 18:28:51 +0200949 if (host->flags & SDHCI_USE_ADMA)
950 sdhci_adma_table_post(host, data);
951 else {
Haibo Chen348487c2014-12-09 17:04:05 +0800952 if (!data->host_cookie)
953 dma_unmap_sg(mmc_dev(host->mmc),
954 data->sg, data->sg_len,
955 (data->flags & MMC_DATA_READ) ?
Pierre Ossman2134a922008-06-28 18:28:51 +0200956 DMA_FROM_DEVICE : DMA_TO_DEVICE);
957 }
Pierre Ossmand129bce2006-03-24 03:18:17 -0800958 }
959
960 /*
Pierre Ossmanc9b74c52008-04-18 20:41:49 +0200961 * The specification states that the block count register must
962 * be updated, but it does not specify at what point in the
963 * data flow. That makes the register entirely useless to read
964 * back so we have to assume that nothing made it to the card
965 * in the event of an error.
Pierre Ossmand129bce2006-03-24 03:18:17 -0800966 */
Pierre Ossmanc9b74c52008-04-18 20:41:49 +0200967 if (data->error)
968 data->bytes_xfered = 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800969 else
Pierre Ossmanc9b74c52008-04-18 20:41:49 +0200970 data->bytes_xfered = data->blksz * data->blocks;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800971
Andrei Warkentine89d4562011-05-23 15:06:37 -0500972 /*
973 * Need to send CMD12 if -
974 * a) open-ended multiblock transfer (no CMD23)
975 * b) error in multiblock transfer
976 */
977 if (data->stop &&
978 (data->error ||
979 !host->mrq->sbc)) {
980
Pierre Ossmand129bce2006-03-24 03:18:17 -0800981 /*
982 * The controller needs a reset of internal state machines
983 * upon error conditions.
984 */
Pierre Ossman17b04292007-07-22 22:18:46 +0200985 if (data->error) {
Russell King03231f92014-04-25 12:57:12 +0100986 sdhci_do_reset(host, SDHCI_RESET_CMD);
987 sdhci_do_reset(host, SDHCI_RESET_DATA);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800988 }
989
990 sdhci_send_command(host, data->stop);
991 } else
992 tasklet_schedule(&host->finish_tasklet);
993}
994
Dong Aishengc0e551292013-09-13 19:11:31 +0800995void sdhci_send_command(struct sdhci_host *host, struct mmc_command *cmd)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800996{
997 int flags;
Pierre Ossmanfd2208d2006-06-30 02:22:28 -0700998 u32 mask;
Pierre Ossman7cb2c762006-06-30 02:22:23 -0700999 unsigned long timeout;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001000
1001 WARN_ON(host->cmd);
1002
Pierre Ossmand129bce2006-03-24 03:18:17 -08001003 /* Wait max 10 ms */
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001004 timeout = 10;
Pierre Ossmanfd2208d2006-06-30 02:22:28 -07001005
1006 mask = SDHCI_CMD_INHIBIT;
1007 if ((cmd->data != NULL) || (cmd->flags & MMC_RSP_BUSY))
1008 mask |= SDHCI_DATA_INHIBIT;
1009
1010 /* We shouldn't wait for data inihibit for stop commands, even
1011 though they might use busy signaling */
1012 if (host->mrq->data && (cmd == host->mrq->data->stop))
1013 mask &= ~SDHCI_DATA_INHIBIT;
1014
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001015 while (sdhci_readl(host, SDHCI_PRESENT_STATE) & mask) {
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001016 if (timeout == 0) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05301017 pr_err("%s: Controller never released "
Pierre Ossmanacf1da42007-02-09 08:29:19 +01001018 "inhibit bit(s).\n", mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -08001019 sdhci_dumpregs(host);
Pierre Ossman17b04292007-07-22 22:18:46 +02001020 cmd->error = -EIO;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001021 tasklet_schedule(&host->finish_tasklet);
1022 return;
1023 }
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001024 timeout--;
1025 mdelay(1);
1026 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001027
Adrian Hunter3e1a6892013-11-14 10:16:20 +02001028 timeout = jiffies;
Ulf Hansson1d4d7742014-01-08 15:06:08 +01001029 if (!cmd->data && cmd->busy_timeout > 9000)
1030 timeout += DIV_ROUND_UP(cmd->busy_timeout, 1000) * HZ + HZ;
Adrian Hunter3e1a6892013-11-14 10:16:20 +02001031 else
1032 timeout += 10 * HZ;
1033 mod_timer(&host->timer, timeout);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001034
1035 host->cmd = cmd;
Chanho Mine99783a2014-08-30 12:40:40 +09001036 host->busy_handle = 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001037
Andrei Warkentina3c77782011-04-11 16:13:42 -05001038 sdhci_prepare_data(host, cmd);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001039
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001040 sdhci_writel(host, cmd->arg, SDHCI_ARGUMENT);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001041
Andrei Warkentine89d4562011-05-23 15:06:37 -05001042 sdhci_set_transfer_mode(host, cmd);
Pierre Ossmanc7fa9962006-06-30 02:22:25 -07001043
Pierre Ossmand129bce2006-03-24 03:18:17 -08001044 if ((cmd->flags & MMC_RSP_136) && (cmd->flags & MMC_RSP_BUSY)) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05301045 pr_err("%s: Unsupported response type!\n",
Pierre Ossmand129bce2006-03-24 03:18:17 -08001046 mmc_hostname(host->mmc));
Pierre Ossman17b04292007-07-22 22:18:46 +02001047 cmd->error = -EINVAL;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001048 tasklet_schedule(&host->finish_tasklet);
1049 return;
1050 }
1051
1052 if (!(cmd->flags & MMC_RSP_PRESENT))
1053 flags = SDHCI_CMD_RESP_NONE;
1054 else if (cmd->flags & MMC_RSP_136)
1055 flags = SDHCI_CMD_RESP_LONG;
1056 else if (cmd->flags & MMC_RSP_BUSY)
1057 flags = SDHCI_CMD_RESP_SHORT_BUSY;
1058 else
1059 flags = SDHCI_CMD_RESP_SHORT;
1060
1061 if (cmd->flags & MMC_RSP_CRC)
1062 flags |= SDHCI_CMD_CRC;
1063 if (cmd->flags & MMC_RSP_OPCODE)
1064 flags |= SDHCI_CMD_INDEX;
Arindam Nathb513ea22011-05-05 12:19:04 +05301065
1066 /* CMD19 is special in that the Data Present Select should be set */
Girish K S069c9f12012-01-06 09:56:39 +05301067 if (cmd->data || cmd->opcode == MMC_SEND_TUNING_BLOCK ||
1068 cmd->opcode == MMC_SEND_TUNING_BLOCK_HS200)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001069 flags |= SDHCI_CMD_DATA;
1070
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001071 sdhci_writew(host, SDHCI_MAKE_CMD(cmd->opcode, flags), SDHCI_COMMAND);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001072}
Dong Aishengc0e551292013-09-13 19:11:31 +08001073EXPORT_SYMBOL_GPL(sdhci_send_command);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001074
1075static void sdhci_finish_command(struct sdhci_host *host)
1076{
1077 int i;
1078
1079 BUG_ON(host->cmd == NULL);
1080
1081 if (host->cmd->flags & MMC_RSP_PRESENT) {
1082 if (host->cmd->flags & MMC_RSP_136) {
1083 /* CRC is stripped so we need to do some shifting. */
1084 for (i = 0;i < 4;i++) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001085 host->cmd->resp[i] = sdhci_readl(host,
Pierre Ossmand129bce2006-03-24 03:18:17 -08001086 SDHCI_RESPONSE + (3-i)*4) << 8;
1087 if (i != 3)
1088 host->cmd->resp[i] |=
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001089 sdhci_readb(host,
Pierre Ossmand129bce2006-03-24 03:18:17 -08001090 SDHCI_RESPONSE + (3-i)*4-1);
1091 }
1092 } else {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001093 host->cmd->resp[0] = sdhci_readl(host, SDHCI_RESPONSE);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001094 }
1095 }
1096
Pierre Ossman17b04292007-07-22 22:18:46 +02001097 host->cmd->error = 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001098
Andrei Warkentine89d4562011-05-23 15:06:37 -05001099 /* Finished CMD23, now send actual command. */
1100 if (host->cmd == host->mrq->sbc) {
1101 host->cmd = NULL;
1102 sdhci_send_command(host, host->mrq->cmd);
1103 } else {
Pierre Ossmane538fbe2007-08-12 16:46:32 +02001104
Andrei Warkentine89d4562011-05-23 15:06:37 -05001105 /* Processed actual command. */
1106 if (host->data && host->data_early)
1107 sdhci_finish_data(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001108
Andrei Warkentine89d4562011-05-23 15:06:37 -05001109 if (!host->cmd->data)
1110 tasklet_schedule(&host->finish_tasklet);
1111
1112 host->cmd = NULL;
1113 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001114}
1115
Kevin Liu52983382013-01-31 11:31:37 +08001116static u16 sdhci_get_preset_value(struct sdhci_host *host)
1117{
Russell Kingd975f122014-04-25 12:59:31 +01001118 u16 preset = 0;
Kevin Liu52983382013-01-31 11:31:37 +08001119
Russell Kingd975f122014-04-25 12:59:31 +01001120 switch (host->timing) {
1121 case MMC_TIMING_UHS_SDR12:
Kevin Liu52983382013-01-31 11:31:37 +08001122 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR12);
1123 break;
Russell Kingd975f122014-04-25 12:59:31 +01001124 case MMC_TIMING_UHS_SDR25:
Kevin Liu52983382013-01-31 11:31:37 +08001125 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR25);
1126 break;
Russell Kingd975f122014-04-25 12:59:31 +01001127 case MMC_TIMING_UHS_SDR50:
Kevin Liu52983382013-01-31 11:31:37 +08001128 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR50);
1129 break;
Russell Kingd975f122014-04-25 12:59:31 +01001130 case MMC_TIMING_UHS_SDR104:
1131 case MMC_TIMING_MMC_HS200:
Kevin Liu52983382013-01-31 11:31:37 +08001132 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR104);
1133 break;
Russell Kingd975f122014-04-25 12:59:31 +01001134 case MMC_TIMING_UHS_DDR50:
Kevin Liu52983382013-01-31 11:31:37 +08001135 preset = sdhci_readw(host, SDHCI_PRESET_FOR_DDR50);
1136 break;
Adrian Huntere9fb05d2014-11-06 15:19:06 +02001137 case MMC_TIMING_MMC_HS400:
1138 preset = sdhci_readw(host, SDHCI_PRESET_FOR_HS400);
1139 break;
Kevin Liu52983382013-01-31 11:31:37 +08001140 default:
1141 pr_warn("%s: Invalid UHS-I mode selected\n",
1142 mmc_hostname(host->mmc));
1143 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR12);
1144 break;
1145 }
1146 return preset;
1147}
1148
Russell King17710592014-04-25 12:58:55 +01001149void sdhci_set_clock(struct sdhci_host *host, unsigned int clock)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001150{
Arindam Nathc3ed3872011-05-05 12:19:06 +05301151 int div = 0; /* Initialized for compiler warning */
Giuseppe CAVALLAROdf162192011-11-04 13:53:19 +01001152 int real_div = div, clk_mul = 1;
Arindam Nathc3ed3872011-05-05 12:19:06 +05301153 u16 clk = 0;
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001154 unsigned long timeout;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001155
Russell King1650d0c2014-04-25 12:58:50 +01001156 host->mmc->actual_clock = 0;
1157
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001158 sdhci_writew(host, 0, SDHCI_CLOCK_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001159
1160 if (clock == 0)
Russell King373073e2014-04-25 12:58:45 +01001161 return;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001162
Zhangfei Gao85105c52010-08-06 07:10:01 +08001163 if (host->version >= SDHCI_SPEC_300) {
Russell Kingda91a8f2014-04-25 13:00:12 +01001164 if (host->preset_enabled) {
Kevin Liu52983382013-01-31 11:31:37 +08001165 u16 pre_val;
1166
1167 clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL);
1168 pre_val = sdhci_get_preset_value(host);
1169 div = (pre_val & SDHCI_PRESET_SDCLK_FREQ_MASK)
1170 >> SDHCI_PRESET_SDCLK_FREQ_SHIFT;
1171 if (host->clk_mul &&
1172 (pre_val & SDHCI_PRESET_CLKGEN_SEL_MASK)) {
1173 clk = SDHCI_PROG_CLOCK_MODE;
1174 real_div = div + 1;
1175 clk_mul = host->clk_mul;
1176 } else {
1177 real_div = max_t(int, 1, div << 1);
1178 }
1179 goto clock_set;
1180 }
1181
Arindam Nathc3ed3872011-05-05 12:19:06 +05301182 /*
1183 * Check if the Host Controller supports Programmable Clock
1184 * Mode.
1185 */
1186 if (host->clk_mul) {
Kevin Liu52983382013-01-31 11:31:37 +08001187 for (div = 1; div <= 1024; div++) {
1188 if ((host->max_clk * host->clk_mul / div)
1189 <= clock)
1190 break;
Zhangfei Gao85105c52010-08-06 07:10:01 +08001191 }
Kevin Liu52983382013-01-31 11:31:37 +08001192 /*
1193 * Set Programmable Clock Mode in the Clock
1194 * Control register.
1195 */
1196 clk = SDHCI_PROG_CLOCK_MODE;
1197 real_div = div;
1198 clk_mul = host->clk_mul;
1199 div--;
Arindam Nathc3ed3872011-05-05 12:19:06 +05301200 } else {
1201 /* Version 3.00 divisors must be a multiple of 2. */
1202 if (host->max_clk <= clock)
1203 div = 1;
1204 else {
1205 for (div = 2; div < SDHCI_MAX_DIV_SPEC_300;
1206 div += 2) {
1207 if ((host->max_clk / div) <= clock)
1208 break;
1209 }
1210 }
Giuseppe CAVALLAROdf162192011-11-04 13:53:19 +01001211 real_div = div;
Arindam Nathc3ed3872011-05-05 12:19:06 +05301212 div >>= 1;
Zhangfei Gao85105c52010-08-06 07:10:01 +08001213 }
1214 } else {
1215 /* Version 2.00 divisors must be a power of 2. */
Zhangfei Gao03975262010-09-20 15:15:18 -04001216 for (div = 1; div < SDHCI_MAX_DIV_SPEC_200; div *= 2) {
Zhangfei Gao85105c52010-08-06 07:10:01 +08001217 if ((host->max_clk / div) <= clock)
1218 break;
1219 }
Giuseppe CAVALLAROdf162192011-11-04 13:53:19 +01001220 real_div = div;
Arindam Nathc3ed3872011-05-05 12:19:06 +05301221 div >>= 1;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001222 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001223
Kevin Liu52983382013-01-31 11:31:37 +08001224clock_set:
Aisheng Dong03d6f5f2014-08-27 15:26:32 +08001225 if (real_div)
Giuseppe CAVALLAROdf162192011-11-04 13:53:19 +01001226 host->mmc->actual_clock = (host->max_clk * clk_mul) / real_div;
Arindam Nathc3ed3872011-05-05 12:19:06 +05301227 clk |= (div & SDHCI_DIV_MASK) << SDHCI_DIVIDER_SHIFT;
Zhangfei Gao85105c52010-08-06 07:10:01 +08001228 clk |= ((div & SDHCI_DIV_HI_MASK) >> SDHCI_DIV_MASK_LEN)
1229 << SDHCI_DIVIDER_HI_SHIFT;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001230 clk |= SDHCI_CLOCK_INT_EN;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001231 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001232
Chris Ball27f6cb12009-09-22 16:45:31 -07001233 /* Wait max 20 ms */
1234 timeout = 20;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001235 while (!((clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL))
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001236 & SDHCI_CLOCK_INT_STABLE)) {
1237 if (timeout == 0) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05301238 pr_err("%s: Internal clock never "
Pierre Ossmanacf1da42007-02-09 08:29:19 +01001239 "stabilised.\n", mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -08001240 sdhci_dumpregs(host);
1241 return;
1242 }
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001243 timeout--;
1244 mdelay(1);
1245 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001246
1247 clk |= SDHCI_CLOCK_CARD_EN;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001248 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001249}
Russell King17710592014-04-25 12:58:55 +01001250EXPORT_SYMBOL_GPL(sdhci_set_clock);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001251
Russell King24fbb3c2014-04-25 13:00:06 +01001252static void sdhci_set_power(struct sdhci_host *host, unsigned char mode,
1253 unsigned short vdd)
Pierre Ossman146ad662006-06-30 02:22:23 -07001254{
Tim Kryger3a48edc2014-06-13 10:13:56 -07001255 struct mmc_host *mmc = host->mmc;
Giuseppe Cavallaro83642482010-09-28 10:41:28 +02001256 u8 pwr = 0;
Pierre Ossman146ad662006-06-30 02:22:23 -07001257
Tim Kryger52221612014-06-25 00:25:34 -07001258 if (!IS_ERR(mmc->supply.vmmc)) {
1259 spin_unlock_irq(&host->lock);
Markus Mayer4e743f12014-07-03 13:27:42 -07001260 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, vdd);
Tim Kryger52221612014-06-25 00:25:34 -07001261 spin_lock_irq(&host->lock);
Tim Kryger3cbc6122015-01-14 07:24:12 +01001262
1263 if (mode != MMC_POWER_OFF)
1264 sdhci_writeb(host, SDHCI_POWER_ON, SDHCI_POWER_CONTROL);
1265 else
1266 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
1267
Tim Kryger52221612014-06-25 00:25:34 -07001268 return;
1269 }
1270
Russell King24fbb3c2014-04-25 13:00:06 +01001271 if (mode != MMC_POWER_OFF) {
1272 switch (1 << vdd) {
Pierre Ossmanae628902009-05-03 20:45:03 +02001273 case MMC_VDD_165_195:
1274 pwr = SDHCI_POWER_180;
1275 break;
1276 case MMC_VDD_29_30:
1277 case MMC_VDD_30_31:
1278 pwr = SDHCI_POWER_300;
1279 break;
1280 case MMC_VDD_32_33:
1281 case MMC_VDD_33_34:
1282 pwr = SDHCI_POWER_330;
1283 break;
1284 default:
1285 BUG();
1286 }
1287 }
1288
1289 if (host->pwr == pwr)
Russell Kinge921a8b2014-04-25 13:00:01 +01001290 return;
Pierre Ossman146ad662006-06-30 02:22:23 -07001291
Pierre Ossmanae628902009-05-03 20:45:03 +02001292 host->pwr = pwr;
1293
1294 if (pwr == 0) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001295 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
Adrian Hunterf0710a52013-05-06 12:17:32 +03001296 if (host->quirks2 & SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON)
1297 sdhci_runtime_pm_bus_off(host);
Russell King24fbb3c2014-04-25 13:00:06 +01001298 vdd = 0;
Russell Kinge921a8b2014-04-25 13:00:01 +01001299 } else {
1300 /*
1301 * Spec says that we should clear the power reg before setting
1302 * a new value. Some controllers don't seem to like this though.
1303 */
1304 if (!(host->quirks & SDHCI_QUIRK_SINGLE_POWER_WRITE))
1305 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
Darren Salt9e9dc5f2007-01-27 15:32:31 +01001306
Russell Kinge921a8b2014-04-25 13:00:01 +01001307 /*
1308 * At least the Marvell CaFe chip gets confused if we set the
1309 * voltage and set turn on power at the same time, so set the
1310 * voltage first.
1311 */
1312 if (host->quirks & SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER)
1313 sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL);
Pierre Ossman146ad662006-06-30 02:22:23 -07001314
Russell Kinge921a8b2014-04-25 13:00:01 +01001315 pwr |= SDHCI_POWER_ON;
1316
Pierre Ossmanae628902009-05-03 20:45:03 +02001317 sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL);
1318
Russell Kinge921a8b2014-04-25 13:00:01 +01001319 if (host->quirks2 & SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON)
1320 sdhci_runtime_pm_bus_on(host);
Andres Salomone08c1692008-07-04 10:00:03 -07001321
Russell Kinge921a8b2014-04-25 13:00:01 +01001322 /*
1323 * Some controllers need an extra 10ms delay of 10ms before
1324 * they can apply clock after applying power
1325 */
1326 if (host->quirks & SDHCI_QUIRK_DELAY_AFTER_POWER)
1327 mdelay(10);
1328 }
Pierre Ossman146ad662006-06-30 02:22:23 -07001329}
1330
Pierre Ossmand129bce2006-03-24 03:18:17 -08001331/*****************************************************************************\
1332 * *
1333 * MMC callbacks *
1334 * *
1335\*****************************************************************************/
1336
1337static void sdhci_request(struct mmc_host *mmc, struct mmc_request *mrq)
1338{
1339 struct sdhci_host *host;
Shawn Guo505a8682012-12-11 15:23:42 +08001340 int present;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001341 unsigned long flags;
1342
1343 host = mmc_priv(mmc);
1344
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001345 sdhci_runtime_pm_get(host);
1346
Scott Branden04e079cf2015-03-10 11:35:10 -07001347 /* Firstly check card presence */
1348 present = sdhci_do_get_cd(host);
Krzysztof Kozlowski28367662015-01-05 10:50:15 +01001349
Pierre Ossmand129bce2006-03-24 03:18:17 -08001350 spin_lock_irqsave(&host->lock, flags);
1351
1352 WARN_ON(host->mrq != NULL);
1353
Pierre Ossmanf9134312008-12-21 17:01:48 +01001354#ifndef SDHCI_USE_LEDS_CLASS
Pierre Ossmand129bce2006-03-24 03:18:17 -08001355 sdhci_activate_led(host);
Pierre Ossman2f730fe2008-03-17 10:29:38 +01001356#endif
Andrei Warkentine89d4562011-05-23 15:06:37 -05001357
1358 /*
1359 * Ensure we don't send the STOP for non-SET_BLOCK_COUNTED
1360 * requests if Auto-CMD12 is enabled.
1361 */
1362 if (!mrq->sbc && (host->flags & SDHCI_AUTO_CMD12)) {
Jerry Huangc4512f72010-08-10 18:01:59 -07001363 if (mrq->stop) {
1364 mrq->data->stop = NULL;
1365 mrq->stop = NULL;
1366 }
1367 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001368
1369 host->mrq = mrq;
1370
Anton Vorontsov68d1fb72009-03-17 00:13:52 +03001371 if (!present || host->flags & SDHCI_DEVICE_DEAD) {
Pierre Ossman17b04292007-07-22 22:18:46 +02001372 host->mrq->cmd->error = -ENOMEDIUM;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001373 tasklet_schedule(&host->finish_tasklet);
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05301374 } else {
Andrei Warkentin8edf63712011-05-23 15:06:39 -05001375 if (mrq->sbc && !(host->flags & SDHCI_AUTO_CMD23))
Andrei Warkentine89d4562011-05-23 15:06:37 -05001376 sdhci_send_command(host, mrq->sbc);
1377 else
1378 sdhci_send_command(host, mrq->cmd);
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05301379 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001380
Pierre Ossman5f25a662006-10-04 02:15:39 -07001381 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -08001382 spin_unlock_irqrestore(&host->lock, flags);
1383}
1384
Russell King2317f562014-04-25 12:57:07 +01001385void sdhci_set_bus_width(struct sdhci_host *host, int width)
1386{
1387 u8 ctrl;
1388
1389 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
1390 if (width == MMC_BUS_WIDTH_8) {
1391 ctrl &= ~SDHCI_CTRL_4BITBUS;
1392 if (host->version >= SDHCI_SPEC_300)
1393 ctrl |= SDHCI_CTRL_8BITBUS;
1394 } else {
1395 if (host->version >= SDHCI_SPEC_300)
1396 ctrl &= ~SDHCI_CTRL_8BITBUS;
1397 if (width == MMC_BUS_WIDTH_4)
1398 ctrl |= SDHCI_CTRL_4BITBUS;
1399 else
1400 ctrl &= ~SDHCI_CTRL_4BITBUS;
1401 }
1402 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
1403}
1404EXPORT_SYMBOL_GPL(sdhci_set_bus_width);
1405
Russell King96d7b782014-04-25 12:59:26 +01001406void sdhci_set_uhs_signaling(struct sdhci_host *host, unsigned timing)
1407{
1408 u16 ctrl_2;
1409
1410 ctrl_2 = sdhci_readw(host, SDHCI_HOST_CONTROL2);
1411 /* Select Bus Speed Mode for host */
1412 ctrl_2 &= ~SDHCI_CTRL_UHS_MASK;
1413 if ((timing == MMC_TIMING_MMC_HS200) ||
1414 (timing == MMC_TIMING_UHS_SDR104))
1415 ctrl_2 |= SDHCI_CTRL_UHS_SDR104;
1416 else if (timing == MMC_TIMING_UHS_SDR12)
1417 ctrl_2 |= SDHCI_CTRL_UHS_SDR12;
1418 else if (timing == MMC_TIMING_UHS_SDR25)
1419 ctrl_2 |= SDHCI_CTRL_UHS_SDR25;
1420 else if (timing == MMC_TIMING_UHS_SDR50)
1421 ctrl_2 |= SDHCI_CTRL_UHS_SDR50;
1422 else if ((timing == MMC_TIMING_UHS_DDR50) ||
1423 (timing == MMC_TIMING_MMC_DDR52))
1424 ctrl_2 |= SDHCI_CTRL_UHS_DDR50;
Adrian Huntere9fb05d2014-11-06 15:19:06 +02001425 else if (timing == MMC_TIMING_MMC_HS400)
1426 ctrl_2 |= SDHCI_CTRL_HS400; /* Non-standard */
Russell King96d7b782014-04-25 12:59:26 +01001427 sdhci_writew(host, ctrl_2, SDHCI_HOST_CONTROL2);
1428}
1429EXPORT_SYMBOL_GPL(sdhci_set_uhs_signaling);
1430
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001431static void sdhci_do_set_ios(struct sdhci_host *host, struct mmc_ios *ios)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001432{
Pierre Ossmand129bce2006-03-24 03:18:17 -08001433 unsigned long flags;
1434 u8 ctrl;
Tim Kryger3a48edc2014-06-13 10:13:56 -07001435 struct mmc_host *mmc = host->mmc;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001436
Pierre Ossmand129bce2006-03-24 03:18:17 -08001437 spin_lock_irqsave(&host->lock, flags);
1438
Adrian Hunterceb61432011-12-27 15:48:41 +02001439 if (host->flags & SDHCI_DEVICE_DEAD) {
1440 spin_unlock_irqrestore(&host->lock, flags);
Tim Kryger3a48edc2014-06-13 10:13:56 -07001441 if (!IS_ERR(mmc->supply.vmmc) &&
1442 ios->power_mode == MMC_POWER_OFF)
Markus Mayer4e743f12014-07-03 13:27:42 -07001443 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, 0);
Adrian Hunterceb61432011-12-27 15:48:41 +02001444 return;
1445 }
Pierre Ossman1e728592008-04-16 19:13:13 +02001446
Pierre Ossmand129bce2006-03-24 03:18:17 -08001447 /*
1448 * Reset the chip on each power off.
1449 * Should clear out any weird states.
1450 */
1451 if (ios->power_mode == MMC_POWER_OFF) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001452 sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE);
Anton Vorontsov7260cf52009-03-17 00:13:48 +03001453 sdhci_reinit(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001454 }
1455
Kevin Liu52983382013-01-31 11:31:37 +08001456 if (host->version >= SDHCI_SPEC_300 &&
Dong Aisheng372c4632013-10-18 19:48:50 +08001457 (ios->power_mode == MMC_POWER_UP) &&
1458 !(host->quirks2 & SDHCI_QUIRK2_PRESET_VALUE_BROKEN))
Kevin Liu52983382013-01-31 11:31:37 +08001459 sdhci_enable_preset_value(host, false);
1460
Russell King373073e2014-04-25 12:58:45 +01001461 if (!ios->clock || ios->clock != host->clock) {
Russell King17710592014-04-25 12:58:55 +01001462 host->ops->set_clock(host, ios->clock);
Russell King373073e2014-04-25 12:58:45 +01001463 host->clock = ios->clock;
Aisheng Dong03d6f5f2014-08-27 15:26:32 +08001464
1465 if (host->quirks & SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK &&
1466 host->clock) {
1467 host->timeout_clk = host->mmc->actual_clock ?
1468 host->mmc->actual_clock / 1000 :
1469 host->clock / 1000;
1470 host->mmc->max_busy_timeout =
1471 host->ops->get_max_timeout_count ?
1472 host->ops->get_max_timeout_count(host) :
1473 1 << 27;
1474 host->mmc->max_busy_timeout /= host->timeout_clk;
1475 }
Russell King373073e2014-04-25 12:58:45 +01001476 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001477
Russell King24fbb3c2014-04-25 13:00:06 +01001478 sdhci_set_power(host, ios->power_mode, ios->vdd);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001479
Philip Rakity643a81f2010-09-23 08:24:32 -07001480 if (host->ops->platform_send_init_74_clocks)
1481 host->ops->platform_send_init_74_clocks(host, ios->power_mode);
1482
Russell King2317f562014-04-25 12:57:07 +01001483 host->ops->set_bus_width(host, ios->bus_width);
Philip Rakity15ec4462010-11-19 16:48:39 -05001484
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001485 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
Pierre Ossmancd9277c2007-02-18 12:07:47 +01001486
Philip Rakity3ab9c8d2010-10-06 11:57:23 -07001487 if ((ios->timing == MMC_TIMING_SD_HS ||
1488 ios->timing == MMC_TIMING_MMC_HS)
1489 && !(host->quirks & SDHCI_QUIRK_NO_HISPD_BIT))
Pierre Ossmancd9277c2007-02-18 12:07:47 +01001490 ctrl |= SDHCI_CTRL_HISPD;
1491 else
1492 ctrl &= ~SDHCI_CTRL_HISPD;
1493
Arindam Nathd6d50a12011-05-05 12:18:59 +05301494 if (host->version >= SDHCI_SPEC_300) {
Arindam Nath49c468f2011-05-05 12:19:01 +05301495 u16 clk, ctrl_2;
Arindam Nath49c468f2011-05-05 12:19:01 +05301496
1497 /* In case of UHS-I modes, set High Speed Enable */
Adrian Huntere9fb05d2014-11-06 15:19:06 +02001498 if ((ios->timing == MMC_TIMING_MMC_HS400) ||
1499 (ios->timing == MMC_TIMING_MMC_HS200) ||
Seungwon Jeonbb8175a2014-03-14 21:12:48 +09001500 (ios->timing == MMC_TIMING_MMC_DDR52) ||
Girish K S069c9f12012-01-06 09:56:39 +05301501 (ios->timing == MMC_TIMING_UHS_SDR50) ||
Arindam Nath49c468f2011-05-05 12:19:01 +05301502 (ios->timing == MMC_TIMING_UHS_SDR104) ||
1503 (ios->timing == MMC_TIMING_UHS_DDR50) ||
Alexander Elbsdd8df172012-01-03 23:26:53 -05001504 (ios->timing == MMC_TIMING_UHS_SDR25))
Arindam Nath49c468f2011-05-05 12:19:01 +05301505 ctrl |= SDHCI_CTRL_HISPD;
Arindam Nathd6d50a12011-05-05 12:18:59 +05301506
Russell Kingda91a8f2014-04-25 13:00:12 +01001507 if (!host->preset_enabled) {
Arindam Nath758535c2011-05-05 12:19:00 +05301508 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Arindam Nathd6d50a12011-05-05 12:18:59 +05301509 /*
1510 * We only need to set Driver Strength if the
1511 * preset value enable is not set.
1512 */
Russell Kingda91a8f2014-04-25 13:00:12 +01001513 ctrl_2 = sdhci_readw(host, SDHCI_HOST_CONTROL2);
Arindam Nathd6d50a12011-05-05 12:18:59 +05301514 ctrl_2 &= ~SDHCI_CTRL_DRV_TYPE_MASK;
1515 if (ios->drv_type == MMC_SET_DRIVER_TYPE_A)
1516 ctrl_2 |= SDHCI_CTRL_DRV_TYPE_A;
Petri Gynther43e943a2015-05-20 14:35:00 -07001517 else if (ios->drv_type == MMC_SET_DRIVER_TYPE_B)
1518 ctrl_2 |= SDHCI_CTRL_DRV_TYPE_B;
Arindam Nathd6d50a12011-05-05 12:18:59 +05301519 else if (ios->drv_type == MMC_SET_DRIVER_TYPE_C)
1520 ctrl_2 |= SDHCI_CTRL_DRV_TYPE_C;
Petri Gynther43e943a2015-05-20 14:35:00 -07001521 else if (ios->drv_type == MMC_SET_DRIVER_TYPE_D)
1522 ctrl_2 |= SDHCI_CTRL_DRV_TYPE_D;
1523 else {
1524 pr_warn("%s: invalid driver type, default to "
1525 "driver type B\n", mmc_hostname(mmc));
1526 ctrl_2 |= SDHCI_CTRL_DRV_TYPE_B;
1527 }
Arindam Nathd6d50a12011-05-05 12:18:59 +05301528
1529 sdhci_writew(host, ctrl_2, SDHCI_HOST_CONTROL2);
Arindam Nath758535c2011-05-05 12:19:00 +05301530 } else {
1531 /*
1532 * According to SDHC Spec v3.00, if the Preset Value
1533 * Enable in the Host Control 2 register is set, we
1534 * need to reset SD Clock Enable before changing High
1535 * Speed Enable to avoid generating clock gliches.
1536 */
Arindam Nath758535c2011-05-05 12:19:00 +05301537
1538 /* Reset SD Clock Enable */
1539 clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL);
1540 clk &= ~SDHCI_CLOCK_CARD_EN;
1541 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
1542
1543 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
1544
1545 /* Re-enable SD Clock */
Russell King17710592014-04-25 12:58:55 +01001546 host->ops->set_clock(host, host->clock);
Arindam Nathd6d50a12011-05-05 12:18:59 +05301547 }
Arindam Nath49c468f2011-05-05 12:19:01 +05301548
Arindam Nath49c468f2011-05-05 12:19:01 +05301549 /* Reset SD Clock Enable */
1550 clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL);
1551 clk &= ~SDHCI_CLOCK_CARD_EN;
1552 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
1553
Russell King96d7b782014-04-25 12:59:26 +01001554 host->ops->set_uhs_signaling(host, ios->timing);
Russell Kingd975f122014-04-25 12:59:31 +01001555 host->timing = ios->timing;
Arindam Nath49c468f2011-05-05 12:19:01 +05301556
Kevin Liu52983382013-01-31 11:31:37 +08001557 if (!(host->quirks2 & SDHCI_QUIRK2_PRESET_VALUE_BROKEN) &&
1558 ((ios->timing == MMC_TIMING_UHS_SDR12) ||
1559 (ios->timing == MMC_TIMING_UHS_SDR25) ||
1560 (ios->timing == MMC_TIMING_UHS_SDR50) ||
1561 (ios->timing == MMC_TIMING_UHS_SDR104) ||
1562 (ios->timing == MMC_TIMING_UHS_DDR50))) {
1563 u16 preset;
1564
1565 sdhci_enable_preset_value(host, true);
1566 preset = sdhci_get_preset_value(host);
1567 ios->drv_type = (preset & SDHCI_PRESET_DRV_MASK)
1568 >> SDHCI_PRESET_DRV_SHIFT;
1569 }
1570
Arindam Nath49c468f2011-05-05 12:19:01 +05301571 /* Re-enable SD Clock */
Russell King17710592014-04-25 12:58:55 +01001572 host->ops->set_clock(host, host->clock);
Arindam Nath758535c2011-05-05 12:19:00 +05301573 } else
1574 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Arindam Nathd6d50a12011-05-05 12:18:59 +05301575
Leandro Dorileob8352262007-07-25 23:47:04 +02001576 /*
1577 * Some (ENE) controllers go apeshit on some ios operation,
1578 * signalling timeout and CRC errors even on CMD0. Resetting
1579 * it on each ios seems to solve the problem.
1580 */
Mohammad Jamalc63705e2015-01-13 20:47:24 +05301581 if (host->quirks & SDHCI_QUIRK_RESET_CMD_DATA_ON_IOS)
Russell King03231f92014-04-25 12:57:12 +01001582 sdhci_do_reset(host, SDHCI_RESET_CMD | SDHCI_RESET_DATA);
Leandro Dorileob8352262007-07-25 23:47:04 +02001583
Pierre Ossman5f25a662006-10-04 02:15:39 -07001584 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -08001585 spin_unlock_irqrestore(&host->lock, flags);
1586}
1587
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001588static void sdhci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
1589{
1590 struct sdhci_host *host = mmc_priv(mmc);
1591
1592 sdhci_runtime_pm_get(host);
1593 sdhci_do_set_ios(host, ios);
1594 sdhci_runtime_pm_put(host);
1595}
1596
Kevin Liu94144a42013-02-28 17:35:53 +08001597static int sdhci_do_get_cd(struct sdhci_host *host)
1598{
1599 int gpio_cd = mmc_gpio_get_cd(host->mmc);
1600
1601 if (host->flags & SDHCI_DEVICE_DEAD)
1602 return 0;
1603
1604 /* If polling/nonremovable, assume that the card is always present. */
1605 if ((host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION) ||
1606 (host->mmc->caps & MMC_CAP_NONREMOVABLE))
1607 return 1;
1608
1609 /* Try slot gpio detect */
1610 if (!IS_ERR_VALUE(gpio_cd))
1611 return !!gpio_cd;
1612
1613 /* Host native card detect */
1614 return !!(sdhci_readl(host, SDHCI_PRESENT_STATE) & SDHCI_CARD_PRESENT);
1615}
1616
1617static int sdhci_get_cd(struct mmc_host *mmc)
1618{
1619 struct sdhci_host *host = mmc_priv(mmc);
1620 int ret;
1621
1622 sdhci_runtime_pm_get(host);
1623 ret = sdhci_do_get_cd(host);
1624 sdhci_runtime_pm_put(host);
1625 return ret;
1626}
1627
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001628static int sdhci_check_ro(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001629{
Pierre Ossmand129bce2006-03-24 03:18:17 -08001630 unsigned long flags;
Wolfram Sang2dfb5792010-10-15 12:21:01 +02001631 int is_readonly;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001632
Pierre Ossmand129bce2006-03-24 03:18:17 -08001633 spin_lock_irqsave(&host->lock, flags);
1634
Pierre Ossman1e728592008-04-16 19:13:13 +02001635 if (host->flags & SDHCI_DEVICE_DEAD)
Wolfram Sang2dfb5792010-10-15 12:21:01 +02001636 is_readonly = 0;
1637 else if (host->ops->get_ro)
1638 is_readonly = host->ops->get_ro(host);
Pierre Ossman1e728592008-04-16 19:13:13 +02001639 else
Wolfram Sang2dfb5792010-10-15 12:21:01 +02001640 is_readonly = !(sdhci_readl(host, SDHCI_PRESENT_STATE)
1641 & SDHCI_WRITE_PROTECT);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001642
1643 spin_unlock_irqrestore(&host->lock, flags);
1644
Wolfram Sang2dfb5792010-10-15 12:21:01 +02001645 /* This quirk needs to be replaced by a callback-function later */
1646 return host->quirks & SDHCI_QUIRK_INVERTED_WRITE_PROTECT ?
1647 !is_readonly : is_readonly;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001648}
1649
Takashi Iwai82b0e232011-04-21 20:26:38 +02001650#define SAMPLE_COUNT 5
1651
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001652static int sdhci_do_get_ro(struct sdhci_host *host)
Takashi Iwai82b0e232011-04-21 20:26:38 +02001653{
Takashi Iwai82b0e232011-04-21 20:26:38 +02001654 int i, ro_count;
1655
Takashi Iwai82b0e232011-04-21 20:26:38 +02001656 if (!(host->quirks & SDHCI_QUIRK_UNSTABLE_RO_DETECT))
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001657 return sdhci_check_ro(host);
Takashi Iwai82b0e232011-04-21 20:26:38 +02001658
1659 ro_count = 0;
1660 for (i = 0; i < SAMPLE_COUNT; i++) {
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001661 if (sdhci_check_ro(host)) {
Takashi Iwai82b0e232011-04-21 20:26:38 +02001662 if (++ro_count > SAMPLE_COUNT / 2)
1663 return 1;
1664 }
1665 msleep(30);
1666 }
1667 return 0;
1668}
1669
Adrian Hunter20758b62011-08-29 16:42:12 +03001670static void sdhci_hw_reset(struct mmc_host *mmc)
1671{
1672 struct sdhci_host *host = mmc_priv(mmc);
1673
1674 if (host->ops && host->ops->hw_reset)
1675 host->ops->hw_reset(host);
1676}
1677
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001678static int sdhci_get_ro(struct mmc_host *mmc)
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001679{
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001680 struct sdhci_host *host = mmc_priv(mmc);
1681 int ret;
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001682
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001683 sdhci_runtime_pm_get(host);
1684 ret = sdhci_do_get_ro(host);
1685 sdhci_runtime_pm_put(host);
1686 return ret;
1687}
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001688
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001689static void sdhci_enable_sdio_irq_nolock(struct sdhci_host *host, int enable)
1690{
Russell Kingbe138552014-04-25 12:55:56 +01001691 if (!(host->flags & SDHCI_DEVICE_DEAD)) {
Russell Kingef104332014-04-25 12:55:41 +01001692 if (enable)
Russell Kingb537f942014-04-25 12:56:01 +01001693 host->ier |= SDHCI_INT_CARD_INT;
Russell Kingef104332014-04-25 12:55:41 +01001694 else
Russell Kingb537f942014-04-25 12:56:01 +01001695 host->ier &= ~SDHCI_INT_CARD_INT;
1696
1697 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
1698 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Russell Kingef104332014-04-25 12:55:41 +01001699 mmiowb();
1700 }
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001701}
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001702
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001703static void sdhci_enable_sdio_irq(struct mmc_host *mmc, int enable)
1704{
1705 struct sdhci_host *host = mmc_priv(mmc);
1706 unsigned long flags;
1707
Russell Kingef104332014-04-25 12:55:41 +01001708 sdhci_runtime_pm_get(host);
1709
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001710 spin_lock_irqsave(&host->lock, flags);
Russell Kingef104332014-04-25 12:55:41 +01001711 if (enable)
1712 host->flags |= SDHCI_SDIO_IRQ_ENABLED;
1713 else
1714 host->flags &= ~SDHCI_SDIO_IRQ_ENABLED;
1715
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001716 sdhci_enable_sdio_irq_nolock(host, enable);
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001717 spin_unlock_irqrestore(&host->lock, flags);
Russell Kingef104332014-04-25 12:55:41 +01001718
1719 sdhci_runtime_pm_put(host);
Pierre Ossmanf75979b2007-09-04 07:59:18 +02001720}
1721
Philip Rakity6231f3d2012-07-23 15:56:23 -07001722static int sdhci_do_start_signal_voltage_switch(struct sdhci_host *host,
Fabio Estevam21f59982013-02-14 10:35:03 -02001723 struct mmc_ios *ios)
Philip Rakity6231f3d2012-07-23 15:56:23 -07001724{
Tim Kryger3a48edc2014-06-13 10:13:56 -07001725 struct mmc_host *mmc = host->mmc;
Philip Rakity6231f3d2012-07-23 15:56:23 -07001726 u16 ctrl;
Kevin Liu20b92a32012-12-17 19:29:26 +08001727 int ret;
Philip Rakity6231f3d2012-07-23 15:56:23 -07001728
1729 /*
1730 * Signal Voltage Switching is only applicable for Host Controllers
1731 * v3.00 and above.
1732 */
1733 if (host->version < SDHCI_SPEC_300)
1734 return 0;
1735
Philip Rakity6231f3d2012-07-23 15:56:23 -07001736 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
Kevin Liu20b92a32012-12-17 19:29:26 +08001737
Fabio Estevam21f59982013-02-14 10:35:03 -02001738 switch (ios->signal_voltage) {
Kevin Liu20b92a32012-12-17 19:29:26 +08001739 case MMC_SIGNAL_VOLTAGE_330:
1740 /* Set 1.8V Signal Enable in the Host Control2 register to 0 */
1741 ctrl &= ~SDHCI_CTRL_VDD_180;
1742 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
1743
Tim Kryger3a48edc2014-06-13 10:13:56 -07001744 if (!IS_ERR(mmc->supply.vqmmc)) {
1745 ret = regulator_set_voltage(mmc->supply.vqmmc, 2700000,
1746 3600000);
Kevin Liu20b92a32012-12-17 19:29:26 +08001747 if (ret) {
Joe Perches66061102014-09-12 14:56:56 -07001748 pr_warn("%s: Switching to 3.3V signalling voltage failed\n",
1749 mmc_hostname(mmc));
Kevin Liu20b92a32012-12-17 19:29:26 +08001750 return -EIO;
1751 }
1752 }
1753 /* Wait for 5ms */
1754 usleep_range(5000, 5500);
1755
1756 /* 3.3V regulator output should be stable within 5 ms */
1757 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
1758 if (!(ctrl & SDHCI_CTRL_VDD_180))
1759 return 0;
1760
Joe Perches66061102014-09-12 14:56:56 -07001761 pr_warn("%s: 3.3V regulator output did not became stable\n",
1762 mmc_hostname(mmc));
Kevin Liu20b92a32012-12-17 19:29:26 +08001763
1764 return -EAGAIN;
1765 case MMC_SIGNAL_VOLTAGE_180:
Tim Kryger3a48edc2014-06-13 10:13:56 -07001766 if (!IS_ERR(mmc->supply.vqmmc)) {
1767 ret = regulator_set_voltage(mmc->supply.vqmmc,
Kevin Liu20b92a32012-12-17 19:29:26 +08001768 1700000, 1950000);
1769 if (ret) {
Joe Perches66061102014-09-12 14:56:56 -07001770 pr_warn("%s: Switching to 1.8V signalling voltage failed\n",
1771 mmc_hostname(mmc));
Kevin Liu20b92a32012-12-17 19:29:26 +08001772 return -EIO;
1773 }
1774 }
1775
1776 /*
1777 * Enable 1.8V Signal Enable in the Host Control2
1778 * register
1779 */
1780 ctrl |= SDHCI_CTRL_VDD_180;
1781 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
1782
Vincent Yang9d967a62015-01-20 16:05:15 +08001783 /* Some controller need to do more when switching */
1784 if (host->ops->voltage_switch)
1785 host->ops->voltage_switch(host);
1786
Kevin Liu20b92a32012-12-17 19:29:26 +08001787 /* 1.8V regulator output should be stable within 5 ms */
1788 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
1789 if (ctrl & SDHCI_CTRL_VDD_180)
1790 return 0;
1791
Joe Perches66061102014-09-12 14:56:56 -07001792 pr_warn("%s: 1.8V regulator output did not became stable\n",
1793 mmc_hostname(mmc));
Kevin Liu20b92a32012-12-17 19:29:26 +08001794
1795 return -EAGAIN;
1796 case MMC_SIGNAL_VOLTAGE_120:
Tim Kryger3a48edc2014-06-13 10:13:56 -07001797 if (!IS_ERR(mmc->supply.vqmmc)) {
1798 ret = regulator_set_voltage(mmc->supply.vqmmc, 1100000,
1799 1300000);
Kevin Liu20b92a32012-12-17 19:29:26 +08001800 if (ret) {
Joe Perches66061102014-09-12 14:56:56 -07001801 pr_warn("%s: Switching to 1.2V signalling voltage failed\n",
1802 mmc_hostname(mmc));
Kevin Liu20b92a32012-12-17 19:29:26 +08001803 return -EIO;
1804 }
1805 }
1806 return 0;
1807 default:
Arindam Nathf2119df2011-05-05 12:18:57 +05301808 /* No signal voltage switch required */
1809 return 0;
Kevin Liu20b92a32012-12-17 19:29:26 +08001810 }
Arindam Nathf2119df2011-05-05 12:18:57 +05301811}
1812
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001813static int sdhci_start_signal_voltage_switch(struct mmc_host *mmc,
Fabio Estevam21f59982013-02-14 10:35:03 -02001814 struct mmc_ios *ios)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001815{
1816 struct sdhci_host *host = mmc_priv(mmc);
1817 int err;
1818
1819 if (host->version < SDHCI_SPEC_300)
1820 return 0;
1821 sdhci_runtime_pm_get(host);
Fabio Estevam21f59982013-02-14 10:35:03 -02001822 err = sdhci_do_start_signal_voltage_switch(host, ios);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001823 sdhci_runtime_pm_put(host);
1824 return err;
1825}
1826
Kevin Liu20b92a32012-12-17 19:29:26 +08001827static int sdhci_card_busy(struct mmc_host *mmc)
1828{
1829 struct sdhci_host *host = mmc_priv(mmc);
1830 u32 present_state;
1831
1832 sdhci_runtime_pm_get(host);
1833 /* Check whether DAT[3:0] is 0000 */
1834 present_state = sdhci_readl(host, SDHCI_PRESENT_STATE);
1835 sdhci_runtime_pm_put(host);
1836
1837 return !(present_state & SDHCI_DATA_LVL_MASK);
1838}
1839
Adrian Hunterb5540ce2014-12-05 19:25:31 +02001840static int sdhci_prepare_hs400_tuning(struct mmc_host *mmc, struct mmc_ios *ios)
1841{
1842 struct sdhci_host *host = mmc_priv(mmc);
1843 unsigned long flags;
1844
1845 spin_lock_irqsave(&host->lock, flags);
1846 host->flags |= SDHCI_HS400_TUNING;
1847 spin_unlock_irqrestore(&host->lock, flags);
1848
1849 return 0;
1850}
1851
Girish K S069c9f12012-01-06 09:56:39 +05301852static int sdhci_execute_tuning(struct mmc_host *mmc, u32 opcode)
Arindam Nathb513ea22011-05-05 12:19:04 +05301853{
Russell King4b6f37d2014-04-25 12:59:36 +01001854 struct sdhci_host *host = mmc_priv(mmc);
Arindam Nathb513ea22011-05-05 12:19:04 +05301855 u16 ctrl;
Arindam Nathb513ea22011-05-05 12:19:04 +05301856 int tuning_loop_counter = MAX_TUNING_LOOP;
Arindam Nathb513ea22011-05-05 12:19:04 +05301857 int err = 0;
Aisheng Dong2b35bd82013-12-23 19:13:04 +08001858 unsigned long flags;
Adrian Hunter38e40bf2014-12-05 19:25:30 +02001859 unsigned int tuning_count = 0;
Adrian Hunterb5540ce2014-12-05 19:25:31 +02001860 bool hs400_tuning;
Arindam Nathb513ea22011-05-05 12:19:04 +05301861
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001862 sdhci_runtime_pm_get(host);
Aisheng Dong2b35bd82013-12-23 19:13:04 +08001863 spin_lock_irqsave(&host->lock, flags);
Arindam Nathb513ea22011-05-05 12:19:04 +05301864
Adrian Hunterb5540ce2014-12-05 19:25:31 +02001865 hs400_tuning = host->flags & SDHCI_HS400_TUNING;
1866 host->flags &= ~SDHCI_HS400_TUNING;
1867
Adrian Hunter38e40bf2014-12-05 19:25:30 +02001868 if (host->tuning_mode == SDHCI_TUNING_MODE_1)
1869 tuning_count = host->tuning_count;
1870
Arindam Nathb513ea22011-05-05 12:19:04 +05301871 /*
Girish K S069c9f12012-01-06 09:56:39 +05301872 * The Host Controller needs tuning only in case of SDR104 mode
1873 * and for SDR50 mode when Use Tuning for SDR50 is set in the
Arindam Nathb513ea22011-05-05 12:19:04 +05301874 * Capabilities register.
Girish K S069c9f12012-01-06 09:56:39 +05301875 * If the Host Controller supports the HS200 mode then the
1876 * tuning function has to be executed.
Arindam Nathb513ea22011-05-05 12:19:04 +05301877 */
Russell King4b6f37d2014-04-25 12:59:36 +01001878 switch (host->timing) {
Adrian Hunterb5540ce2014-12-05 19:25:31 +02001879 /* HS400 tuning is done in HS200 mode */
Adrian Huntere9fb05d2014-11-06 15:19:06 +02001880 case MMC_TIMING_MMC_HS400:
Adrian Hunterb5540ce2014-12-05 19:25:31 +02001881 err = -EINVAL;
1882 goto out_unlock;
1883
Russell King4b6f37d2014-04-25 12:59:36 +01001884 case MMC_TIMING_MMC_HS200:
Adrian Hunterb5540ce2014-12-05 19:25:31 +02001885 /*
1886 * Periodic re-tuning for HS400 is not expected to be needed, so
1887 * disable it here.
1888 */
1889 if (hs400_tuning)
1890 tuning_count = 0;
1891 break;
1892
Russell King4b6f37d2014-04-25 12:59:36 +01001893 case MMC_TIMING_UHS_SDR104:
1894 break;
Girish K S069c9f12012-01-06 09:56:39 +05301895
Russell King4b6f37d2014-04-25 12:59:36 +01001896 case MMC_TIMING_UHS_SDR50:
1897 if (host->flags & SDHCI_SDR50_NEEDS_TUNING ||
1898 host->flags & SDHCI_SDR104_NEEDS_TUNING)
1899 break;
1900 /* FALLTHROUGH */
1901
1902 default:
Adrian Hunterd519c862014-12-05 19:25:29 +02001903 goto out_unlock;
Arindam Nathb513ea22011-05-05 12:19:04 +05301904 }
1905
Dong Aisheng45251812013-09-13 19:11:30 +08001906 if (host->ops->platform_execute_tuning) {
Aisheng Dong2b35bd82013-12-23 19:13:04 +08001907 spin_unlock_irqrestore(&host->lock, flags);
Dong Aisheng45251812013-09-13 19:11:30 +08001908 err = host->ops->platform_execute_tuning(host, opcode);
1909 sdhci_runtime_pm_put(host);
1910 return err;
1911 }
1912
Russell King4b6f37d2014-04-25 12:59:36 +01001913 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
1914 ctrl |= SDHCI_CTRL_EXEC_TUNING;
Vincent Yang67d0d042015-01-20 16:05:16 +08001915 if (host->quirks2 & SDHCI_QUIRK2_TUNING_WORK_AROUND)
1916 ctrl |= SDHCI_CTRL_TUNED_CLK;
Arindam Nathb513ea22011-05-05 12:19:04 +05301917 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
1918
1919 /*
1920 * As per the Host Controller spec v3.00, tuning command
1921 * generates Buffer Read Ready interrupt, so enable that.
1922 *
1923 * Note: The spec clearly says that when tuning sequence
1924 * is being performed, the controller does not generate
1925 * interrupts other than Buffer Read Ready interrupt. But
1926 * to make sure we don't hit a controller bug, we _only_
1927 * enable Buffer Read Ready interrupt here.
1928 */
Russell Kingb537f942014-04-25 12:56:01 +01001929 sdhci_writel(host, SDHCI_INT_DATA_AVAIL, SDHCI_INT_ENABLE);
1930 sdhci_writel(host, SDHCI_INT_DATA_AVAIL, SDHCI_SIGNAL_ENABLE);
Arindam Nathb513ea22011-05-05 12:19:04 +05301931
1932 /*
1933 * Issue CMD19 repeatedly till Execute Tuning is set to 0 or the number
1934 * of loops reaches 40 times or a timeout of 150ms occurs.
1935 */
Arindam Nathb513ea22011-05-05 12:19:04 +05301936 do {
1937 struct mmc_command cmd = {0};
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03001938 struct mmc_request mrq = {NULL};
Arindam Nathb513ea22011-05-05 12:19:04 +05301939
Girish K S069c9f12012-01-06 09:56:39 +05301940 cmd.opcode = opcode;
Arindam Nathb513ea22011-05-05 12:19:04 +05301941 cmd.arg = 0;
1942 cmd.flags = MMC_RSP_R1 | MMC_CMD_ADTC;
1943 cmd.retries = 0;
1944 cmd.data = NULL;
1945 cmd.error = 0;
1946
Al Cooper7ce45e92014-05-09 11:34:07 -04001947 if (tuning_loop_counter-- == 0)
1948 break;
1949
Arindam Nathb513ea22011-05-05 12:19:04 +05301950 mrq.cmd = &cmd;
1951 host->mrq = &mrq;
1952
1953 /*
1954 * In response to CMD19, the card sends 64 bytes of tuning
1955 * block to the Host Controller. So we set the block size
1956 * to 64 here.
1957 */
Girish K S069c9f12012-01-06 09:56:39 +05301958 if (cmd.opcode == MMC_SEND_TUNING_BLOCK_HS200) {
1959 if (mmc->ios.bus_width == MMC_BUS_WIDTH_8)
1960 sdhci_writew(host, SDHCI_MAKE_BLKSZ(7, 128),
1961 SDHCI_BLOCK_SIZE);
1962 else if (mmc->ios.bus_width == MMC_BUS_WIDTH_4)
1963 sdhci_writew(host, SDHCI_MAKE_BLKSZ(7, 64),
1964 SDHCI_BLOCK_SIZE);
1965 } else {
1966 sdhci_writew(host, SDHCI_MAKE_BLKSZ(7, 64),
1967 SDHCI_BLOCK_SIZE);
1968 }
Arindam Nathb513ea22011-05-05 12:19:04 +05301969
1970 /*
1971 * The tuning block is sent by the card to the host controller.
1972 * So we set the TRNS_READ bit in the Transfer Mode register.
1973 * This also takes care of setting DMA Enable and Multi Block
1974 * Select in the same register to 0.
1975 */
1976 sdhci_writew(host, SDHCI_TRNS_READ, SDHCI_TRANSFER_MODE);
1977
1978 sdhci_send_command(host, &cmd);
1979
1980 host->cmd = NULL;
1981 host->mrq = NULL;
1982
Aisheng Dong2b35bd82013-12-23 19:13:04 +08001983 spin_unlock_irqrestore(&host->lock, flags);
Arindam Nathb513ea22011-05-05 12:19:04 +05301984 /* Wait for Buffer Read Ready interrupt */
1985 wait_event_interruptible_timeout(host->buf_ready_int,
1986 (host->tuning_done == 1),
1987 msecs_to_jiffies(50));
Aisheng Dong2b35bd82013-12-23 19:13:04 +08001988 spin_lock_irqsave(&host->lock, flags);
Arindam Nathb513ea22011-05-05 12:19:04 +05301989
1990 if (!host->tuning_done) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05301991 pr_info(DRIVER_NAME ": Timeout waiting for "
Arindam Nathb513ea22011-05-05 12:19:04 +05301992 "Buffer Read Ready interrupt during tuning "
1993 "procedure, falling back to fixed sampling "
1994 "clock\n");
1995 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
1996 ctrl &= ~SDHCI_CTRL_TUNED_CLK;
1997 ctrl &= ~SDHCI_CTRL_EXEC_TUNING;
1998 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
1999
2000 err = -EIO;
2001 goto out;
2002 }
2003
2004 host->tuning_done = 0;
2005
2006 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
Nick Sanders197160d2014-05-06 18:52:38 -07002007
2008 /* eMMC spec does not require a delay between tuning cycles */
2009 if (opcode == MMC_SEND_TUNING_BLOCK)
2010 mdelay(1);
Arindam Nathb513ea22011-05-05 12:19:04 +05302011 } while (ctrl & SDHCI_CTRL_EXEC_TUNING);
2012
2013 /*
2014 * The Host Driver has exhausted the maximum number of loops allowed,
2015 * so use fixed sampling frequency.
2016 */
Al Cooper7ce45e92014-05-09 11:34:07 -04002017 if (tuning_loop_counter < 0) {
Arindam Nathb513ea22011-05-05 12:19:04 +05302018 ctrl &= ~SDHCI_CTRL_TUNED_CLK;
2019 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
Al Cooper7ce45e92014-05-09 11:34:07 -04002020 }
2021 if (!(ctrl & SDHCI_CTRL_TUNED_CLK)) {
2022 pr_info(DRIVER_NAME ": Tuning procedure"
2023 " failed, falling back to fixed sampling"
2024 " clock\n");
Dong Aisheng114f2bf2013-10-18 19:48:45 +08002025 err = -EIO;
Arindam Nathb513ea22011-05-05 12:19:04 +05302026 }
2027
2028out:
Adrian Hunter38e40bf2014-12-05 19:25:30 +02002029 if (tuning_count) {
Adrian Hunter66c39dfc2015-05-07 13:10:21 +03002030 /*
2031 * In case tuning fails, host controllers which support
2032 * re-tuning can try tuning again at a later time, when the
2033 * re-tuning timer expires. So for these controllers, we
2034 * return 0. Since there might be other controllers who do not
2035 * have this capability, we return error for them.
2036 */
2037 err = 0;
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05302038 }
2039
Adrian Hunter66c39dfc2015-05-07 13:10:21 +03002040 host->mmc->retune_period = err ? 0 : tuning_count;
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05302041
Russell Kingb537f942014-04-25 12:56:01 +01002042 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
2043 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Adrian Hunterd519c862014-12-05 19:25:29 +02002044out_unlock:
Aisheng Dong2b35bd82013-12-23 19:13:04 +08002045 spin_unlock_irqrestore(&host->lock, flags);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002046 sdhci_runtime_pm_put(host);
Arindam Nathb513ea22011-05-05 12:19:04 +05302047
2048 return err;
2049}
2050
Kevin Liu52983382013-01-31 11:31:37 +08002051
2052static void sdhci_enable_preset_value(struct sdhci_host *host, bool enable)
Arindam Nath4d55c5a2011-05-05 12:19:05 +05302053{
Arindam Nath4d55c5a2011-05-05 12:19:05 +05302054 /* Host Controller v3.00 defines preset value registers */
2055 if (host->version < SDHCI_SPEC_300)
2056 return;
2057
Arindam Nath4d55c5a2011-05-05 12:19:05 +05302058 /*
2059 * We only enable or disable Preset Value if they are not already
2060 * enabled or disabled respectively. Otherwise, we bail out.
2061 */
Russell Kingda91a8f2014-04-25 13:00:12 +01002062 if (host->preset_enabled != enable) {
2063 u16 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
2064
2065 if (enable)
2066 ctrl |= SDHCI_CTRL_PRESET_VAL_ENABLE;
2067 else
2068 ctrl &= ~SDHCI_CTRL_PRESET_VAL_ENABLE;
2069
Arindam Nath4d55c5a2011-05-05 12:19:05 +05302070 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
Russell Kingda91a8f2014-04-25 13:00:12 +01002071
2072 if (enable)
2073 host->flags |= SDHCI_PV_ENABLED;
2074 else
2075 host->flags &= ~SDHCI_PV_ENABLED;
2076
2077 host->preset_enabled = enable;
Arindam Nath4d55c5a2011-05-05 12:19:05 +05302078 }
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002079}
2080
Haibo Chen348487c2014-12-09 17:04:05 +08002081static void sdhci_post_req(struct mmc_host *mmc, struct mmc_request *mrq,
2082 int err)
2083{
2084 struct sdhci_host *host = mmc_priv(mmc);
2085 struct mmc_data *data = mrq->data;
2086
2087 if (host->flags & SDHCI_REQ_USE_DMA) {
2088 if (data->host_cookie)
2089 dma_unmap_sg(mmc_dev(host->mmc), data->sg, data->sg_len,
2090 data->flags & MMC_DATA_WRITE ?
2091 DMA_TO_DEVICE : DMA_FROM_DEVICE);
2092 mrq->data->host_cookie = 0;
2093 }
2094}
2095
2096static int sdhci_pre_dma_transfer(struct sdhci_host *host,
2097 struct mmc_data *data,
2098 struct sdhci_host_next *next)
2099{
2100 int sg_count;
2101
2102 if (!next && data->host_cookie &&
2103 data->host_cookie != host->next_data.cookie) {
2104 pr_debug(DRIVER_NAME "[%s] invalid cookie: %d, next-cookie %d\n",
2105 __func__, data->host_cookie, host->next_data.cookie);
2106 data->host_cookie = 0;
2107 }
2108
2109 /* Check if next job is already prepared */
2110 if (next ||
2111 (!next && data->host_cookie != host->next_data.cookie)) {
2112 sg_count = dma_map_sg(mmc_dev(host->mmc), data->sg,
2113 data->sg_len,
2114 data->flags & MMC_DATA_WRITE ?
2115 DMA_TO_DEVICE : DMA_FROM_DEVICE);
2116
2117 } else {
2118 sg_count = host->next_data.sg_count;
2119 host->next_data.sg_count = 0;
2120 }
2121
2122
2123 if (sg_count == 0)
2124 return -EINVAL;
2125
2126 if (next) {
2127 next->sg_count = sg_count;
2128 data->host_cookie = ++next->cookie < 0 ? 1 : next->cookie;
2129 } else
2130 host->sg_count = sg_count;
2131
2132 return sg_count;
2133}
2134
2135static void sdhci_pre_req(struct mmc_host *mmc, struct mmc_request *mrq,
2136 bool is_first_req)
2137{
2138 struct sdhci_host *host = mmc_priv(mmc);
2139
2140 if (mrq->data->host_cookie) {
2141 mrq->data->host_cookie = 0;
2142 return;
2143 }
2144
2145 if (host->flags & SDHCI_REQ_USE_DMA)
2146 if (sdhci_pre_dma_transfer(host,
2147 mrq->data,
2148 &host->next_data) < 0)
2149 mrq->data->host_cookie = 0;
2150}
2151
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002152static void sdhci_card_event(struct mmc_host *mmc)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002153{
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002154 struct sdhci_host *host = mmc_priv(mmc);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002155 unsigned long flags;
Krzysztof Kozlowski28367662015-01-05 10:50:15 +01002156 int present;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002157
Christian Daudt722e1282013-06-20 14:26:36 -07002158 /* First check if client has provided their own card event */
2159 if (host->ops->card_event)
2160 host->ops->card_event(host);
2161
Krzysztof Kozlowski28367662015-01-05 10:50:15 +01002162 present = sdhci_do_get_cd(host);
2163
Pierre Ossmand129bce2006-03-24 03:18:17 -08002164 spin_lock_irqsave(&host->lock, flags);
2165
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002166 /* Check host->mrq first in case we are runtime suspended */
Krzysztof Kozlowski28367662015-01-05 10:50:15 +01002167 if (host->mrq && !present) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05302168 pr_err("%s: Card removed during transfer!\n",
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002169 mmc_hostname(host->mmc));
Girish K Sa3c76eb2011-10-11 11:44:09 +05302170 pr_err("%s: Resetting controller.\n",
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002171 mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -08002172
Russell King03231f92014-04-25 12:57:12 +01002173 sdhci_do_reset(host, SDHCI_RESET_CMD);
2174 sdhci_do_reset(host, SDHCI_RESET_DATA);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002175
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002176 host->mrq->cmd->error = -ENOMEDIUM;
2177 tasklet_schedule(&host->finish_tasklet);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002178 }
2179
2180 spin_unlock_irqrestore(&host->lock, flags);
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002181}
2182
2183static const struct mmc_host_ops sdhci_ops = {
2184 .request = sdhci_request,
Haibo Chen348487c2014-12-09 17:04:05 +08002185 .post_req = sdhci_post_req,
2186 .pre_req = sdhci_pre_req,
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002187 .set_ios = sdhci_set_ios,
Kevin Liu94144a42013-02-28 17:35:53 +08002188 .get_cd = sdhci_get_cd,
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002189 .get_ro = sdhci_get_ro,
2190 .hw_reset = sdhci_hw_reset,
2191 .enable_sdio_irq = sdhci_enable_sdio_irq,
2192 .start_signal_voltage_switch = sdhci_start_signal_voltage_switch,
Adrian Hunterb5540ce2014-12-05 19:25:31 +02002193 .prepare_hs400_tuning = sdhci_prepare_hs400_tuning,
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002194 .execute_tuning = sdhci_execute_tuning,
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002195 .card_event = sdhci_card_event,
Kevin Liu20b92a32012-12-17 19:29:26 +08002196 .card_busy = sdhci_card_busy,
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002197};
2198
2199/*****************************************************************************\
2200 * *
2201 * Tasklets *
2202 * *
2203\*****************************************************************************/
2204
Pierre Ossmand129bce2006-03-24 03:18:17 -08002205static void sdhci_tasklet_finish(unsigned long param)
2206{
2207 struct sdhci_host *host;
2208 unsigned long flags;
2209 struct mmc_request *mrq;
2210
2211 host = (struct sdhci_host*)param;
2212
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002213 spin_lock_irqsave(&host->lock, flags);
2214
Chris Ball0c9c99a2011-04-27 17:35:31 -04002215 /*
2216 * If this tasklet gets rescheduled while running, it will
2217 * be run again afterwards but without any active request.
2218 */
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002219 if (!host->mrq) {
2220 spin_unlock_irqrestore(&host->lock, flags);
Chris Ball0c9c99a2011-04-27 17:35:31 -04002221 return;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002222 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08002223
2224 del_timer(&host->timer);
2225
2226 mrq = host->mrq;
2227
Pierre Ossmand129bce2006-03-24 03:18:17 -08002228 /*
2229 * The controller needs a reset of internal state machines
2230 * upon error conditions.
2231 */
Pierre Ossman1e728592008-04-16 19:13:13 +02002232 if (!(host->flags & SDHCI_DEVICE_DEAD) &&
Ben Dooksb7b4d342011-04-27 14:24:19 +01002233 ((mrq->cmd && mrq->cmd->error) ||
Andrew Gabbasovfce9d332014-10-01 07:14:08 -05002234 (mrq->sbc && mrq->sbc->error) ||
2235 (mrq->data && ((mrq->data->error && !mrq->data->stop) ||
2236 (mrq->data->stop && mrq->data->stop->error))) ||
2237 (host->quirks & SDHCI_QUIRK_RESET_AFTER_REQUEST))) {
Pierre Ossman645289d2006-06-30 02:22:33 -07002238
2239 /* Some controllers need this kick or reset won't work here */
Andy Shevchenko8213af32013-01-07 16:31:08 +02002240 if (host->quirks & SDHCI_QUIRK_CLOCK_BEFORE_RESET)
Pierre Ossman645289d2006-06-30 02:22:33 -07002241 /* This is to force an update */
Russell King17710592014-04-25 12:58:55 +01002242 host->ops->set_clock(host, host->clock);
Pierre Ossman645289d2006-06-30 02:22:33 -07002243
2244 /* Spec says we should do both at the same time, but Ricoh
2245 controllers do not like that. */
Russell King03231f92014-04-25 12:57:12 +01002246 sdhci_do_reset(host, SDHCI_RESET_CMD);
2247 sdhci_do_reset(host, SDHCI_RESET_DATA);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002248 }
2249
2250 host->mrq = NULL;
2251 host->cmd = NULL;
2252 host->data = NULL;
2253
Pierre Ossmanf9134312008-12-21 17:01:48 +01002254#ifndef SDHCI_USE_LEDS_CLASS
Pierre Ossmand129bce2006-03-24 03:18:17 -08002255 sdhci_deactivate_led(host);
Pierre Ossman2f730fe2008-03-17 10:29:38 +01002256#endif
Pierre Ossmand129bce2006-03-24 03:18:17 -08002257
Pierre Ossman5f25a662006-10-04 02:15:39 -07002258 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -08002259 spin_unlock_irqrestore(&host->lock, flags);
2260
2261 mmc_request_done(host->mmc, mrq);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002262 sdhci_runtime_pm_put(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002263}
2264
2265static void sdhci_timeout_timer(unsigned long data)
2266{
2267 struct sdhci_host *host;
2268 unsigned long flags;
2269
2270 host = (struct sdhci_host*)data;
2271
2272 spin_lock_irqsave(&host->lock, flags);
2273
2274 if (host->mrq) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05302275 pr_err("%s: Timeout waiting for hardware "
Pierre Ossmanacf1da42007-02-09 08:29:19 +01002276 "interrupt.\n", mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -08002277 sdhci_dumpregs(host);
2278
2279 if (host->data) {
Pierre Ossman17b04292007-07-22 22:18:46 +02002280 host->data->error = -ETIMEDOUT;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002281 sdhci_finish_data(host);
2282 } else {
2283 if (host->cmd)
Pierre Ossman17b04292007-07-22 22:18:46 +02002284 host->cmd->error = -ETIMEDOUT;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002285 else
Pierre Ossman17b04292007-07-22 22:18:46 +02002286 host->mrq->cmd->error = -ETIMEDOUT;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002287
2288 tasklet_schedule(&host->finish_tasklet);
2289 }
2290 }
2291
Pierre Ossman5f25a662006-10-04 02:15:39 -07002292 mmiowb();
Pierre Ossmand129bce2006-03-24 03:18:17 -08002293 spin_unlock_irqrestore(&host->lock, flags);
2294}
2295
2296/*****************************************************************************\
2297 * *
2298 * Interrupt handling *
2299 * *
2300\*****************************************************************************/
2301
Adrian Hunter61541392014-09-24 10:27:27 +03002302static void sdhci_cmd_irq(struct sdhci_host *host, u32 intmask, u32 *mask)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002303{
2304 BUG_ON(intmask == 0);
2305
2306 if (!host->cmd) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05302307 pr_err("%s: Got command interrupt 0x%08x even "
Pierre Ossmanb67ac3f2007-08-12 17:29:47 +02002308 "though no command operation was in progress.\n",
2309 mmc_hostname(host->mmc), (unsigned)intmask);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002310 sdhci_dumpregs(host);
2311 return;
2312 }
2313
Pierre Ossman43b58b32007-07-25 23:15:27 +02002314 if (intmask & SDHCI_INT_TIMEOUT)
Pierre Ossman17b04292007-07-22 22:18:46 +02002315 host->cmd->error = -ETIMEDOUT;
2316 else if (intmask & (SDHCI_INT_CRC | SDHCI_INT_END_BIT |
2317 SDHCI_INT_INDEX))
2318 host->cmd->error = -EILSEQ;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002319
Pierre Ossmane8095172008-07-25 01:09:08 +02002320 if (host->cmd->error) {
Pierre Ossmand129bce2006-03-24 03:18:17 -08002321 tasklet_schedule(&host->finish_tasklet);
Pierre Ossmane8095172008-07-25 01:09:08 +02002322 return;
2323 }
2324
2325 /*
2326 * The host can send and interrupt when the busy state has
2327 * ended, allowing us to wait without wasting CPU cycles.
2328 * Unfortunately this is overloaded on the "data complete"
2329 * interrupt, so we need to take some care when handling
2330 * it.
2331 *
2332 * Note: The 1.0 specification is a bit ambiguous about this
2333 * feature so there might be some problems with older
2334 * controllers.
2335 */
2336 if (host->cmd->flags & MMC_RSP_BUSY) {
2337 if (host->cmd->data)
2338 DBG("Cannot wait for busy signal when also "
2339 "doing a data transfer");
Chanho Mine99783a2014-08-30 12:40:40 +09002340 else if (!(host->quirks & SDHCI_QUIRK_NO_BUSY_IRQ)
2341 && !host->busy_handle) {
2342 /* Mark that command complete before busy is ended */
2343 host->busy_handle = 1;
Pierre Ossmane8095172008-07-25 01:09:08 +02002344 return;
Chanho Mine99783a2014-08-30 12:40:40 +09002345 }
Ben Dooksf9454052009-02-20 20:33:08 +03002346
2347 /* The controller does not support the end-of-busy IRQ,
2348 * fall through and take the SDHCI_INT_RESPONSE */
Adrian Hunter61541392014-09-24 10:27:27 +03002349 } else if ((host->quirks2 & SDHCI_QUIRK2_STOP_WITH_TC) &&
2350 host->cmd->opcode == MMC_STOP_TRANSMISSION && !host->data) {
2351 *mask &= ~SDHCI_INT_DATA_END;
Pierre Ossmane8095172008-07-25 01:09:08 +02002352 }
2353
2354 if (intmask & SDHCI_INT_RESPONSE)
Pierre Ossman43b58b32007-07-25 23:15:27 +02002355 sdhci_finish_command(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002356}
2357
George G. Davis0957c332010-02-18 12:32:12 -05002358#ifdef CONFIG_MMC_DEBUG
Adrian Hunter08621b12014-11-04 12:42:38 +02002359static void sdhci_adma_show_error(struct sdhci_host *host)
Ben Dooks6882a8c2009-06-14 13:52:38 +01002360{
2361 const char *name = mmc_hostname(host->mmc);
Adrian Hunter1c3d5f62014-11-04 12:42:41 +02002362 void *desc = host->adma_table;
Ben Dooks6882a8c2009-06-14 13:52:38 +01002363
2364 sdhci_dumpregs(host);
2365
2366 while (true) {
Adrian Huntere57a5f62014-11-04 12:42:46 +02002367 struct sdhci_adma2_64_desc *dma_desc = desc;
Ben Dooks6882a8c2009-06-14 13:52:38 +01002368
Adrian Huntere57a5f62014-11-04 12:42:46 +02002369 if (host->flags & SDHCI_USE_64_BIT_DMA)
2370 DBG("%s: %p: DMA 0x%08x%08x, LEN 0x%04x, Attr=0x%02x\n",
2371 name, desc, le32_to_cpu(dma_desc->addr_hi),
2372 le32_to_cpu(dma_desc->addr_lo),
2373 le16_to_cpu(dma_desc->len),
2374 le16_to_cpu(dma_desc->cmd));
2375 else
2376 DBG("%s: %p: DMA 0x%08x, LEN 0x%04x, Attr=0x%02x\n",
2377 name, desc, le32_to_cpu(dma_desc->addr_lo),
2378 le16_to_cpu(dma_desc->len),
2379 le16_to_cpu(dma_desc->cmd));
Ben Dooks6882a8c2009-06-14 13:52:38 +01002380
Adrian Hunter76fe3792014-11-04 12:42:42 +02002381 desc += host->desc_sz;
Ben Dooks6882a8c2009-06-14 13:52:38 +01002382
Adrian Hunter05452302014-11-04 12:42:45 +02002383 if (dma_desc->cmd & cpu_to_le16(ADMA2_END))
Ben Dooks6882a8c2009-06-14 13:52:38 +01002384 break;
2385 }
2386}
2387#else
Adrian Hunter08621b12014-11-04 12:42:38 +02002388static void sdhci_adma_show_error(struct sdhci_host *host) { }
Ben Dooks6882a8c2009-06-14 13:52:38 +01002389#endif
2390
Pierre Ossmand129bce2006-03-24 03:18:17 -08002391static void sdhci_data_irq(struct sdhci_host *host, u32 intmask)
2392{
Girish K S069c9f12012-01-06 09:56:39 +05302393 u32 command;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002394 BUG_ON(intmask == 0);
2395
Arindam Nathb513ea22011-05-05 12:19:04 +05302396 /* CMD19 generates _only_ Buffer Read Ready interrupt */
2397 if (intmask & SDHCI_INT_DATA_AVAIL) {
Girish K S069c9f12012-01-06 09:56:39 +05302398 command = SDHCI_GET_CMD(sdhci_readw(host, SDHCI_COMMAND));
2399 if (command == MMC_SEND_TUNING_BLOCK ||
2400 command == MMC_SEND_TUNING_BLOCK_HS200) {
Arindam Nathb513ea22011-05-05 12:19:04 +05302401 host->tuning_done = 1;
2402 wake_up(&host->buf_ready_int);
2403 return;
2404 }
2405 }
2406
Pierre Ossmand129bce2006-03-24 03:18:17 -08002407 if (!host->data) {
2408 /*
Pierre Ossmane8095172008-07-25 01:09:08 +02002409 * The "data complete" interrupt is also used to
2410 * indicate that a busy state has ended. See comment
2411 * above in sdhci_cmd_irq().
Pierre Ossmand129bce2006-03-24 03:18:17 -08002412 */
Pierre Ossmane8095172008-07-25 01:09:08 +02002413 if (host->cmd && (host->cmd->flags & MMC_RSP_BUSY)) {
Matthieu CASTETc5abd5e2014-08-14 16:03:17 +02002414 if (intmask & SDHCI_INT_DATA_TIMEOUT) {
2415 host->cmd->error = -ETIMEDOUT;
2416 tasklet_schedule(&host->finish_tasklet);
2417 return;
2418 }
Pierre Ossmane8095172008-07-25 01:09:08 +02002419 if (intmask & SDHCI_INT_DATA_END) {
Chanho Mine99783a2014-08-30 12:40:40 +09002420 /*
2421 * Some cards handle busy-end interrupt
2422 * before the command completed, so make
2423 * sure we do things in the proper order.
2424 */
2425 if (host->busy_handle)
2426 sdhci_finish_command(host);
2427 else
2428 host->busy_handle = 1;
Pierre Ossmane8095172008-07-25 01:09:08 +02002429 return;
2430 }
2431 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08002432
Girish K Sa3c76eb2011-10-11 11:44:09 +05302433 pr_err("%s: Got data interrupt 0x%08x even "
Pierre Ossmanb67ac3f2007-08-12 17:29:47 +02002434 "though no data operation was in progress.\n",
2435 mmc_hostname(host->mmc), (unsigned)intmask);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002436 sdhci_dumpregs(host);
2437
2438 return;
2439 }
2440
2441 if (intmask & SDHCI_INT_DATA_TIMEOUT)
Pierre Ossman17b04292007-07-22 22:18:46 +02002442 host->data->error = -ETIMEDOUT;
Aries Lee22113ef2010-12-15 08:14:24 +01002443 else if (intmask & SDHCI_INT_DATA_END_BIT)
2444 host->data->error = -EILSEQ;
2445 else if ((intmask & SDHCI_INT_DATA_CRC) &&
2446 SDHCI_GET_CMD(sdhci_readw(host, SDHCI_COMMAND))
2447 != MMC_BUS_TEST_R)
Pierre Ossman17b04292007-07-22 22:18:46 +02002448 host->data->error = -EILSEQ;
Ben Dooks6882a8c2009-06-14 13:52:38 +01002449 else if (intmask & SDHCI_INT_ADMA_ERROR) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05302450 pr_err("%s: ADMA error\n", mmc_hostname(host->mmc));
Adrian Hunter08621b12014-11-04 12:42:38 +02002451 sdhci_adma_show_error(host);
Pierre Ossman2134a922008-06-28 18:28:51 +02002452 host->data->error = -EIO;
Haijun Zhanga4071fb2012-12-04 10:41:28 +08002453 if (host->ops->adma_workaround)
2454 host->ops->adma_workaround(host, intmask);
Ben Dooks6882a8c2009-06-14 13:52:38 +01002455 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08002456
Pierre Ossman17b04292007-07-22 22:18:46 +02002457 if (host->data->error)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002458 sdhci_finish_data(host);
2459 else {
Pierre Ossmana406f5a2006-07-02 16:50:59 +01002460 if (intmask & (SDHCI_INT_DATA_AVAIL | SDHCI_INT_SPACE_AVAIL))
Pierre Ossmand129bce2006-03-24 03:18:17 -08002461 sdhci_transfer_pio(host);
2462
Pierre Ossman6ba736a2007-05-13 22:39:23 +02002463 /*
2464 * We currently don't do anything fancy with DMA
2465 * boundaries, but as we can't disable the feature
2466 * we need to at least restart the transfer.
Mikko Vinnif6a03cb2011-04-12 09:36:18 -04002467 *
2468 * According to the spec sdhci_readl(host, SDHCI_DMA_ADDRESS)
2469 * should return a valid address to continue from, but as
2470 * some controllers are faulty, don't trust them.
Pierre Ossman6ba736a2007-05-13 22:39:23 +02002471 */
Mikko Vinnif6a03cb2011-04-12 09:36:18 -04002472 if (intmask & SDHCI_INT_DMA_END) {
2473 u32 dmastart, dmanow;
2474 dmastart = sg_dma_address(host->data->sg);
2475 dmanow = dmastart + host->data->bytes_xfered;
2476 /*
2477 * Force update to the next DMA block boundary.
2478 */
2479 dmanow = (dmanow &
2480 ~(SDHCI_DEFAULT_BOUNDARY_SIZE - 1)) +
2481 SDHCI_DEFAULT_BOUNDARY_SIZE;
2482 host->data->bytes_xfered = dmanow - dmastart;
2483 DBG("%s: DMA base 0x%08x, transferred 0x%06x bytes,"
2484 " next 0x%08x\n",
2485 mmc_hostname(host->mmc), dmastart,
2486 host->data->bytes_xfered, dmanow);
2487 sdhci_writel(host, dmanow, SDHCI_DMA_ADDRESS);
2488 }
Pierre Ossman6ba736a2007-05-13 22:39:23 +02002489
Pierre Ossmane538fbe2007-08-12 16:46:32 +02002490 if (intmask & SDHCI_INT_DATA_END) {
2491 if (host->cmd) {
2492 /*
2493 * Data managed to finish before the
2494 * command completed. Make sure we do
2495 * things in the proper order.
2496 */
2497 host->data_early = 1;
2498 } else {
2499 sdhci_finish_data(host);
2500 }
2501 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08002502 }
2503}
2504
David Howells7d12e782006-10-05 14:55:46 +01002505static irqreturn_t sdhci_irq(int irq, void *dev_id)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002506{
Russell King781e9892014-04-25 12:55:46 +01002507 irqreturn_t result = IRQ_NONE;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002508 struct sdhci_host *host = dev_id;
Russell King41005002014-04-25 12:55:36 +01002509 u32 intmask, mask, unexpected = 0;
Russell King781e9892014-04-25 12:55:46 +01002510 int max_loops = 16;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002511
2512 spin_lock(&host->lock);
2513
Russell Kingbe138552014-04-25 12:55:56 +01002514 if (host->runtime_suspended && !sdhci_sdio_irq_enabled(host)) {
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002515 spin_unlock(&host->lock);
Adrian Hunter655bca72014-03-11 10:09:36 +02002516 return IRQ_NONE;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002517 }
2518
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03002519 intmask = sdhci_readl(host, SDHCI_INT_STATUS);
Mark Lord62df67a52007-03-06 13:30:13 +01002520 if (!intmask || intmask == 0xffffffff) {
Pierre Ossmand129bce2006-03-24 03:18:17 -08002521 result = IRQ_NONE;
2522 goto out;
2523 }
2524
Russell King41005002014-04-25 12:55:36 +01002525 do {
2526 /* Clear selected interrupts. */
2527 mask = intmask & (SDHCI_INT_CMD_MASK | SDHCI_INT_DATA_MASK |
2528 SDHCI_INT_BUS_POWER);
2529 sdhci_writel(host, mask, SDHCI_INT_STATUS);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002530
Russell King41005002014-04-25 12:55:36 +01002531 DBG("*** %s got interrupt: 0x%08x\n",
2532 mmc_hostname(host->mmc), intmask);
2533
2534 if (intmask & (SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE)) {
2535 u32 present = sdhci_readl(host, SDHCI_PRESENT_STATE) &
2536 SDHCI_CARD_PRESENT;
2537
2538 /*
2539 * There is a observation on i.mx esdhc. INSERT
2540 * bit will be immediately set again when it gets
2541 * cleared, if a card is inserted. We have to mask
2542 * the irq to prevent interrupt storm which will
2543 * freeze the system. And the REMOVE gets the
2544 * same situation.
2545 *
2546 * More testing are needed here to ensure it works
2547 * for other platforms though.
2548 */
Russell Kingb537f942014-04-25 12:56:01 +01002549 host->ier &= ~(SDHCI_INT_CARD_INSERT |
2550 SDHCI_INT_CARD_REMOVE);
2551 host->ier |= present ? SDHCI_INT_CARD_REMOVE :
2552 SDHCI_INT_CARD_INSERT;
2553 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
2554 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Russell King41005002014-04-25 12:55:36 +01002555
2556 sdhci_writel(host, intmask & (SDHCI_INT_CARD_INSERT |
2557 SDHCI_INT_CARD_REMOVE), SDHCI_INT_STATUS);
Russell King3560db82014-04-25 12:55:51 +01002558
2559 host->thread_isr |= intmask & (SDHCI_INT_CARD_INSERT |
2560 SDHCI_INT_CARD_REMOVE);
2561 result = IRQ_WAKE_THREAD;
Russell King41005002014-04-25 12:55:36 +01002562 }
2563
2564 if (intmask & SDHCI_INT_CMD_MASK)
Adrian Hunter61541392014-09-24 10:27:27 +03002565 sdhci_cmd_irq(host, intmask & SDHCI_INT_CMD_MASK,
2566 &intmask);
Russell King41005002014-04-25 12:55:36 +01002567
2568 if (intmask & SDHCI_INT_DATA_MASK)
2569 sdhci_data_irq(host, intmask & SDHCI_INT_DATA_MASK);
2570
2571 if (intmask & SDHCI_INT_BUS_POWER)
2572 pr_err("%s: Card is consuming too much power!\n",
2573 mmc_hostname(host->mmc));
2574
Russell King781e9892014-04-25 12:55:46 +01002575 if (intmask & SDHCI_INT_CARD_INT) {
2576 sdhci_enable_sdio_irq_nolock(host, false);
2577 host->thread_isr |= SDHCI_INT_CARD_INT;
2578 result = IRQ_WAKE_THREAD;
2579 }
Russell King41005002014-04-25 12:55:36 +01002580
2581 intmask &= ~(SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE |
2582 SDHCI_INT_CMD_MASK | SDHCI_INT_DATA_MASK |
2583 SDHCI_INT_ERROR | SDHCI_INT_BUS_POWER |
2584 SDHCI_INT_CARD_INT);
2585
2586 if (intmask) {
2587 unexpected |= intmask;
2588 sdhci_writel(host, intmask, SDHCI_INT_STATUS);
2589 }
2590
Russell King781e9892014-04-25 12:55:46 +01002591 if (result == IRQ_NONE)
2592 result = IRQ_HANDLED;
Russell King41005002014-04-25 12:55:36 +01002593
2594 intmask = sdhci_readl(host, SDHCI_INT_STATUS);
Russell King41005002014-04-25 12:55:36 +01002595 } while (intmask && --max_loops);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002596out:
2597 spin_unlock(&host->lock);
2598
Alexander Stein6379b232012-03-14 09:52:10 +01002599 if (unexpected) {
2600 pr_err("%s: Unexpected interrupt 0x%08x.\n",
2601 mmc_hostname(host->mmc), unexpected);
2602 sdhci_dumpregs(host);
2603 }
Pierre Ossmanf75979b2007-09-04 07:59:18 +02002604
Pierre Ossmand129bce2006-03-24 03:18:17 -08002605 return result;
2606}
2607
Russell King781e9892014-04-25 12:55:46 +01002608static irqreturn_t sdhci_thread_irq(int irq, void *dev_id)
2609{
2610 struct sdhci_host *host = dev_id;
2611 unsigned long flags;
2612 u32 isr;
2613
2614 spin_lock_irqsave(&host->lock, flags);
2615 isr = host->thread_isr;
2616 host->thread_isr = 0;
2617 spin_unlock_irqrestore(&host->lock, flags);
2618
Russell King3560db82014-04-25 12:55:51 +01002619 if (isr & (SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE)) {
2620 sdhci_card_event(host->mmc);
2621 mmc_detect_change(host->mmc, msecs_to_jiffies(200));
2622 }
2623
Russell King781e9892014-04-25 12:55:46 +01002624 if (isr & SDHCI_INT_CARD_INT) {
2625 sdio_run_irqs(host->mmc);
2626
2627 spin_lock_irqsave(&host->lock, flags);
2628 if (host->flags & SDHCI_SDIO_IRQ_ENABLED)
2629 sdhci_enable_sdio_irq_nolock(host, true);
2630 spin_unlock_irqrestore(&host->lock, flags);
2631 }
2632
2633 return isr ? IRQ_HANDLED : IRQ_NONE;
2634}
2635
Pierre Ossmand129bce2006-03-24 03:18:17 -08002636/*****************************************************************************\
2637 * *
2638 * Suspend/resume *
2639 * *
2640\*****************************************************************************/
2641
2642#ifdef CONFIG_PM
Kevin Liuad080d72013-01-05 17:21:33 +08002643void sdhci_enable_irq_wakeups(struct sdhci_host *host)
2644{
2645 u8 val;
2646 u8 mask = SDHCI_WAKE_ON_INSERT | SDHCI_WAKE_ON_REMOVE
2647 | SDHCI_WAKE_ON_INT;
2648
2649 val = sdhci_readb(host, SDHCI_WAKE_UP_CONTROL);
2650 val |= mask ;
2651 /* Avoid fake wake up */
2652 if (host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION)
2653 val &= ~(SDHCI_WAKE_ON_INSERT | SDHCI_WAKE_ON_REMOVE);
2654 sdhci_writeb(host, val, SDHCI_WAKE_UP_CONTROL);
2655}
2656EXPORT_SYMBOL_GPL(sdhci_enable_irq_wakeups);
2657
Fabio Estevam0b10f472014-08-30 14:53:13 -03002658static void sdhci_disable_irq_wakeups(struct sdhci_host *host)
Kevin Liuad080d72013-01-05 17:21:33 +08002659{
2660 u8 val;
2661 u8 mask = SDHCI_WAKE_ON_INSERT | SDHCI_WAKE_ON_REMOVE
2662 | SDHCI_WAKE_ON_INT;
2663
2664 val = sdhci_readb(host, SDHCI_WAKE_UP_CONTROL);
2665 val &= ~mask;
2666 sdhci_writeb(host, val, SDHCI_WAKE_UP_CONTROL);
2667}
Pierre Ossmand129bce2006-03-24 03:18:17 -08002668
Manuel Lauss29495aa2011-11-03 11:09:45 +01002669int sdhci_suspend_host(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002670{
Anton Vorontsov7260cf52009-03-17 00:13:48 +03002671 sdhci_disable_card_detection(host);
2672
Adrian Hunter66c39dfc2015-05-07 13:10:21 +03002673 mmc_retune_timer_stop(host->mmc);
2674 mmc_retune_needed(host->mmc);
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05302675
Kevin Liuad080d72013-01-05 17:21:33 +08002676 if (!device_may_wakeup(mmc_dev(host->mmc))) {
Russell Kingb537f942014-04-25 12:56:01 +01002677 host->ier = 0;
2678 sdhci_writel(host, 0, SDHCI_INT_ENABLE);
2679 sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE);
Kevin Liuad080d72013-01-05 17:21:33 +08002680 free_irq(host->irq, host);
2681 } else {
2682 sdhci_enable_irq_wakeups(host);
2683 enable_irq_wake(host->irq);
2684 }
Ulf Hansson4ee14ec2013-09-25 14:15:24 +02002685 return 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002686}
2687
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002688EXPORT_SYMBOL_GPL(sdhci_suspend_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002689
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002690int sdhci_resume_host(struct sdhci_host *host)
2691{
Ulf Hansson4ee14ec2013-09-25 14:15:24 +02002692 int ret = 0;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002693
Richard Röjforsa13abc72009-09-22 16:45:30 -07002694 if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002695 if (host->ops->enable_dma)
2696 host->ops->enable_dma(host);
2697 }
2698
Kevin Liuad080d72013-01-05 17:21:33 +08002699 if (!device_may_wakeup(mmc_dev(host->mmc))) {
Russell King781e9892014-04-25 12:55:46 +01002700 ret = request_threaded_irq(host->irq, sdhci_irq,
2701 sdhci_thread_irq, IRQF_SHARED,
2702 mmc_hostname(host->mmc), host);
Kevin Liuad080d72013-01-05 17:21:33 +08002703 if (ret)
2704 return ret;
2705 } else {
2706 sdhci_disable_irq_wakeups(host);
2707 disable_irq_wake(host->irq);
2708 }
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002709
Adrian Hunter6308d292012-02-07 14:48:54 +02002710 if ((host->mmc->pm_flags & MMC_PM_KEEP_POWER) &&
2711 (host->quirks2 & SDHCI_QUIRK2_HOST_OFF_CARD_ON)) {
2712 /* Card keeps power but host controller does not */
2713 sdhci_init(host, 0);
2714 host->pwr = 0;
2715 host->clock = 0;
2716 sdhci_do_set_ios(host, &host->mmc->ios);
2717 } else {
2718 sdhci_init(host, (host->mmc->pm_flags & MMC_PM_KEEP_POWER));
2719 mmiowb();
2720 }
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002721
Anton Vorontsov7260cf52009-03-17 00:13:48 +03002722 sdhci_enable_card_detection(host);
2723
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08002724 return ret;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002725}
2726
2727EXPORT_SYMBOL_GPL(sdhci_resume_host);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002728
2729static int sdhci_runtime_pm_get(struct sdhci_host *host)
2730{
2731 return pm_runtime_get_sync(host->mmc->parent);
2732}
2733
2734static int sdhci_runtime_pm_put(struct sdhci_host *host)
2735{
2736 pm_runtime_mark_last_busy(host->mmc->parent);
2737 return pm_runtime_put_autosuspend(host->mmc->parent);
2738}
2739
Adrian Hunterf0710a52013-05-06 12:17:32 +03002740static void sdhci_runtime_pm_bus_on(struct sdhci_host *host)
2741{
2742 if (host->runtime_suspended || host->bus_on)
2743 return;
2744 host->bus_on = true;
2745 pm_runtime_get_noresume(host->mmc->parent);
2746}
2747
2748static void sdhci_runtime_pm_bus_off(struct sdhci_host *host)
2749{
2750 if (host->runtime_suspended || !host->bus_on)
2751 return;
2752 host->bus_on = false;
2753 pm_runtime_put_noidle(host->mmc->parent);
2754}
2755
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002756int sdhci_runtime_suspend_host(struct sdhci_host *host)
2757{
2758 unsigned long flags;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002759
Adrian Hunter66c39dfc2015-05-07 13:10:21 +03002760 mmc_retune_timer_stop(host->mmc);
2761 mmc_retune_needed(host->mmc);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002762
2763 spin_lock_irqsave(&host->lock, flags);
Russell Kingb537f942014-04-25 12:56:01 +01002764 host->ier &= SDHCI_INT_CARD_INT;
2765 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
2766 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002767 spin_unlock_irqrestore(&host->lock, flags);
2768
Russell King781e9892014-04-25 12:55:46 +01002769 synchronize_hardirq(host->irq);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002770
2771 spin_lock_irqsave(&host->lock, flags);
2772 host->runtime_suspended = true;
2773 spin_unlock_irqrestore(&host->lock, flags);
2774
Markus Pargmann8a125ba2014-06-04 15:24:29 +02002775 return 0;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002776}
2777EXPORT_SYMBOL_GPL(sdhci_runtime_suspend_host);
2778
2779int sdhci_runtime_resume_host(struct sdhci_host *host)
2780{
2781 unsigned long flags;
Markus Pargmann8a125ba2014-06-04 15:24:29 +02002782 int host_flags = host->flags;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002783
2784 if (host_flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
2785 if (host->ops->enable_dma)
2786 host->ops->enable_dma(host);
2787 }
2788
2789 sdhci_init(host, 0);
2790
2791 /* Force clock and power re-program */
2792 host->pwr = 0;
2793 host->clock = 0;
Jisheng Zhang3396e732015-01-29 17:42:12 +08002794 sdhci_do_start_signal_voltage_switch(host, &host->mmc->ios);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002795 sdhci_do_set_ios(host, &host->mmc->ios);
2796
Kevin Liu52983382013-01-31 11:31:37 +08002797 if ((host_flags & SDHCI_PV_ENABLED) &&
2798 !(host->quirks2 & SDHCI_QUIRK2_PRESET_VALUE_BROKEN)) {
2799 spin_lock_irqsave(&host->lock, flags);
2800 sdhci_enable_preset_value(host, true);
2801 spin_unlock_irqrestore(&host->lock, flags);
2802 }
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002803
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002804 spin_lock_irqsave(&host->lock, flags);
2805
2806 host->runtime_suspended = false;
2807
2808 /* Enable SDIO IRQ */
Russell Kingef104332014-04-25 12:55:41 +01002809 if (host->flags & SDHCI_SDIO_IRQ_ENABLED)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002810 sdhci_enable_sdio_irq_nolock(host, true);
2811
2812 /* Enable Card Detection */
2813 sdhci_enable_card_detection(host);
2814
2815 spin_unlock_irqrestore(&host->lock, flags);
2816
Markus Pargmann8a125ba2014-06-04 15:24:29 +02002817 return 0;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002818}
2819EXPORT_SYMBOL_GPL(sdhci_runtime_resume_host);
2820
Rafael J. Wysocki162d6f92014-12-05 03:05:33 +01002821#endif /* CONFIG_PM */
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002822
Pierre Ossmand129bce2006-03-24 03:18:17 -08002823/*****************************************************************************\
2824 * *
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002825 * Device allocation/registration *
Pierre Ossmand129bce2006-03-24 03:18:17 -08002826 * *
2827\*****************************************************************************/
2828
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002829struct sdhci_host *sdhci_alloc_host(struct device *dev,
2830 size_t priv_size)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002831{
Pierre Ossmand129bce2006-03-24 03:18:17 -08002832 struct mmc_host *mmc;
2833 struct sdhci_host *host;
2834
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002835 WARN_ON(dev == NULL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002836
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002837 mmc = mmc_alloc_host(sizeof(struct sdhci_host) + priv_size, dev);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002838 if (!mmc)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002839 return ERR_PTR(-ENOMEM);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002840
2841 host = mmc_priv(mmc);
2842 host->mmc = mmc;
2843
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002844 return host;
2845}
Pierre Ossman8a4da142006-10-04 02:15:40 -07002846
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002847EXPORT_SYMBOL_GPL(sdhci_alloc_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002848
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002849int sdhci_add_host(struct sdhci_host *host)
2850{
2851 struct mmc_host *mmc;
Philip Rakitybd6a8c32012-06-27 21:49:27 -07002852 u32 caps[2] = {0, 0};
Arindam Nathf2119df2011-05-05 12:18:57 +05302853 u32 max_current_caps;
2854 unsigned int ocr_avail;
Adrian Hunterf5fa92e2014-09-24 10:27:32 +03002855 unsigned int override_timeout_clk;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002856 int ret;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002857
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002858 WARN_ON(host == NULL);
2859 if (host == NULL)
2860 return -EINVAL;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002861
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002862 mmc = host->mmc;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002863
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002864 if (debug_quirks)
2865 host->quirks = debug_quirks;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002866 if (debug_quirks2)
2867 host->quirks2 = debug_quirks2;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002868
Adrian Hunterf5fa92e2014-09-24 10:27:32 +03002869 override_timeout_clk = host->timeout_clk;
2870
Russell King03231f92014-04-25 12:57:12 +01002871 sdhci_do_reset(host, SDHCI_RESET_ALL);
Pierre Ossmand96649e2006-06-30 02:22:30 -07002872
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03002873 host->version = sdhci_readw(host, SDHCI_HOST_VERSION);
Pierre Ossman2134a922008-06-28 18:28:51 +02002874 host->version = (host->version & SDHCI_SPEC_VER_MASK)
2875 >> SDHCI_SPEC_VER_SHIFT;
Zhangfei Gao85105c52010-08-06 07:10:01 +08002876 if (host->version > SDHCI_SPEC_300) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05302877 pr_err("%s: Unknown controller version (%d). "
Pierre Ossmanb69c9052008-03-08 23:44:25 +01002878 "You may experience problems.\n", mmc_hostname(mmc),
Pierre Ossman2134a922008-06-28 18:28:51 +02002879 host->version);
Pierre Ossman4a965502006-06-30 02:22:29 -07002880 }
2881
Arindam Nathf2119df2011-05-05 12:18:57 +05302882 caps[0] = (host->quirks & SDHCI_QUIRK_MISSING_CAPS) ? host->caps :
Maxim Levitskyccc92c22010-08-10 18:01:42 -07002883 sdhci_readl(host, SDHCI_CAPABILITIES);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002884
Philip Rakitybd6a8c32012-06-27 21:49:27 -07002885 if (host->version >= SDHCI_SPEC_300)
2886 caps[1] = (host->quirks & SDHCI_QUIRK_MISSING_CAPS) ?
2887 host->caps1 :
2888 sdhci_readl(host, SDHCI_CAPABILITIES_1);
Arindam Nathf2119df2011-05-05 12:18:57 +05302889
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002890 if (host->quirks & SDHCI_QUIRK_FORCE_DMA)
Richard Röjforsa13abc72009-09-22 16:45:30 -07002891 host->flags |= SDHCI_USE_SDMA;
Arindam Nathf2119df2011-05-05 12:18:57 +05302892 else if (!(caps[0] & SDHCI_CAN_DO_SDMA))
Richard Röjforsa13abc72009-09-22 16:45:30 -07002893 DBG("Controller doesn't have SDMA capability\n");
Pierre Ossman67435272006-06-30 02:22:31 -07002894 else
Richard Röjforsa13abc72009-09-22 16:45:30 -07002895 host->flags |= SDHCI_USE_SDMA;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002896
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002897 if ((host->quirks & SDHCI_QUIRK_BROKEN_DMA) &&
Richard Röjforsa13abc72009-09-22 16:45:30 -07002898 (host->flags & SDHCI_USE_SDMA)) {
Rolf Eike Beercee687c2007-11-02 15:22:30 +01002899 DBG("Disabling DMA as it is marked broken\n");
Richard Röjforsa13abc72009-09-22 16:45:30 -07002900 host->flags &= ~SDHCI_USE_SDMA;
Feng Tang7c168e32007-09-30 12:44:18 +02002901 }
2902
Arindam Nathf2119df2011-05-05 12:18:57 +05302903 if ((host->version >= SDHCI_SPEC_200) &&
2904 (caps[0] & SDHCI_CAN_DO_ADMA2))
Richard Röjforsa13abc72009-09-22 16:45:30 -07002905 host->flags |= SDHCI_USE_ADMA;
Pierre Ossman2134a922008-06-28 18:28:51 +02002906
2907 if ((host->quirks & SDHCI_QUIRK_BROKEN_ADMA) &&
2908 (host->flags & SDHCI_USE_ADMA)) {
2909 DBG("Disabling ADMA as it is marked broken\n");
2910 host->flags &= ~SDHCI_USE_ADMA;
2911 }
2912
Adrian Huntere57a5f62014-11-04 12:42:46 +02002913 /*
2914 * It is assumed that a 64-bit capable device has set a 64-bit DMA mask
2915 * and *must* do 64-bit DMA. A driver has the opportunity to change
2916 * that during the first call to ->enable_dma(). Similarly
2917 * SDHCI_QUIRK2_BROKEN_64_BIT_DMA must be left to the drivers to
2918 * implement.
2919 */
2920 if (sdhci_readl(host, SDHCI_CAPABILITIES) & SDHCI_CAN_64BIT)
2921 host->flags |= SDHCI_USE_64_BIT_DMA;
2922
Richard Röjforsa13abc72009-09-22 16:45:30 -07002923 if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002924 if (host->ops->enable_dma) {
2925 if (host->ops->enable_dma(host)) {
Joe Perches66061102014-09-12 14:56:56 -07002926 pr_warn("%s: No suitable DMA available - falling back to PIO\n",
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002927 mmc_hostname(mmc));
Richard Röjforsa13abc72009-09-22 16:45:30 -07002928 host->flags &=
2929 ~(SDHCI_USE_SDMA | SDHCI_USE_ADMA);
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01002930 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08002931 }
2932 }
2933
Adrian Huntere57a5f62014-11-04 12:42:46 +02002934 /* SDMA does not support 64-bit DMA */
2935 if (host->flags & SDHCI_USE_64_BIT_DMA)
2936 host->flags &= ~SDHCI_USE_SDMA;
2937
Pierre Ossman2134a922008-06-28 18:28:51 +02002938 if (host->flags & SDHCI_USE_ADMA) {
2939 /*
Adrian Hunter76fe3792014-11-04 12:42:42 +02002940 * The DMA descriptor table size is calculated as the maximum
2941 * number of segments times 2, to allow for an alignment
2942 * descriptor for each segment, plus 1 for a nop end descriptor,
2943 * all multipled by the descriptor size.
Pierre Ossman2134a922008-06-28 18:28:51 +02002944 */
Adrian Huntere57a5f62014-11-04 12:42:46 +02002945 if (host->flags & SDHCI_USE_64_BIT_DMA) {
2946 host->adma_table_sz = (SDHCI_MAX_SEGS * 2 + 1) *
2947 SDHCI_ADMA2_64_DESC_SZ;
2948 host->align_buffer_sz = SDHCI_MAX_SEGS *
2949 SDHCI_ADMA2_64_ALIGN;
2950 host->desc_sz = SDHCI_ADMA2_64_DESC_SZ;
2951 host->align_sz = SDHCI_ADMA2_64_ALIGN;
2952 host->align_mask = SDHCI_ADMA2_64_ALIGN - 1;
2953 } else {
2954 host->adma_table_sz = (SDHCI_MAX_SEGS * 2 + 1) *
2955 SDHCI_ADMA2_32_DESC_SZ;
2956 host->align_buffer_sz = SDHCI_MAX_SEGS *
2957 SDHCI_ADMA2_32_ALIGN;
2958 host->desc_sz = SDHCI_ADMA2_32_DESC_SZ;
2959 host->align_sz = SDHCI_ADMA2_32_ALIGN;
2960 host->align_mask = SDHCI_ADMA2_32_ALIGN - 1;
2961 }
Adrian Hunter4efaa6f2014-11-04 12:42:39 +02002962 host->adma_table = dma_alloc_coherent(mmc_dev(mmc),
Adrian Hunter76fe3792014-11-04 12:42:42 +02002963 host->adma_table_sz,
Adrian Hunter4efaa6f2014-11-04 12:42:39 +02002964 &host->adma_addr,
2965 GFP_KERNEL);
Adrian Hunter76fe3792014-11-04 12:42:42 +02002966 host->align_buffer = kmalloc(host->align_buffer_sz, GFP_KERNEL);
Adrian Hunter4efaa6f2014-11-04 12:42:39 +02002967 if (!host->adma_table || !host->align_buffer) {
Adrian Hunter76fe3792014-11-04 12:42:42 +02002968 dma_free_coherent(mmc_dev(mmc), host->adma_table_sz,
Adrian Hunter4efaa6f2014-11-04 12:42:39 +02002969 host->adma_table, host->adma_addr);
Pierre Ossman2134a922008-06-28 18:28:51 +02002970 kfree(host->align_buffer);
Joe Perches66061102014-09-12 14:56:56 -07002971 pr_warn("%s: Unable to allocate ADMA buffers - falling back to standard DMA\n",
Pierre Ossman2134a922008-06-28 18:28:51 +02002972 mmc_hostname(mmc));
2973 host->flags &= ~SDHCI_USE_ADMA;
Adrian Hunter4efaa6f2014-11-04 12:42:39 +02002974 host->adma_table = NULL;
Russell Kingd1e49f72014-04-25 12:58:34 +01002975 host->align_buffer = NULL;
Adrian Hunter76fe3792014-11-04 12:42:42 +02002976 } else if (host->adma_addr & host->align_mask) {
Joe Perches66061102014-09-12 14:56:56 -07002977 pr_warn("%s: unable to allocate aligned ADMA descriptor\n",
2978 mmc_hostname(mmc));
Russell Kingd1e49f72014-04-25 12:58:34 +01002979 host->flags &= ~SDHCI_USE_ADMA;
Adrian Hunter76fe3792014-11-04 12:42:42 +02002980 dma_free_coherent(mmc_dev(mmc), host->adma_table_sz,
Adrian Hunter4efaa6f2014-11-04 12:42:39 +02002981 host->adma_table, host->adma_addr);
Russell Kingd1e49f72014-04-25 12:58:34 +01002982 kfree(host->align_buffer);
Adrian Hunter4efaa6f2014-11-04 12:42:39 +02002983 host->adma_table = NULL;
Russell Kingd1e49f72014-04-25 12:58:34 +01002984 host->align_buffer = NULL;
Pierre Ossman2134a922008-06-28 18:28:51 +02002985 }
2986 }
2987
Pierre Ossman76591502008-07-21 00:32:11 +02002988 /*
2989 * If we use DMA, then it's up to the caller to set the DMA
2990 * mask, but PIO does not need the hw shim so we set a new
2991 * mask here in that case.
2992 */
Richard Röjforsa13abc72009-09-22 16:45:30 -07002993 if (!(host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA))) {
Pierre Ossman76591502008-07-21 00:32:11 +02002994 host->dma_mask = DMA_BIT_MASK(64);
Markus Mayer4e743f12014-07-03 13:27:42 -07002995 mmc_dev(mmc)->dma_mask = &host->dma_mask;
Pierre Ossman76591502008-07-21 00:32:11 +02002996 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08002997
Zhangfei Gaoc4687d52010-08-20 14:02:36 -04002998 if (host->version >= SDHCI_SPEC_300)
Arindam Nathf2119df2011-05-05 12:18:57 +05302999 host->max_clk = (caps[0] & SDHCI_CLOCK_V3_BASE_MASK)
Zhangfei Gaoc4687d52010-08-20 14:02:36 -04003000 >> SDHCI_CLOCK_BASE_SHIFT;
3001 else
Arindam Nathf2119df2011-05-05 12:18:57 +05303002 host->max_clk = (caps[0] & SDHCI_CLOCK_BASE_MASK)
Zhangfei Gaoc4687d52010-08-20 14:02:36 -04003003 >> SDHCI_CLOCK_BASE_SHIFT;
3004
Pierre Ossmand129bce2006-03-24 03:18:17 -08003005 host->max_clk *= 1000000;
Anton Vorontsovf27f47e2010-05-26 14:41:53 -07003006 if (host->max_clk == 0 || host->quirks &
3007 SDHCI_QUIRK_CAP_CLOCK_BASE_BROKEN) {
Ben Dooks4240ff02009-03-17 00:13:57 +03003008 if (!host->ops->get_max_clock) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05303009 pr_err("%s: Hardware doesn't specify base clock "
Ben Dooks4240ff02009-03-17 00:13:57 +03003010 "frequency.\n", mmc_hostname(mmc));
3011 return -ENODEV;
3012 }
3013 host->max_clk = host->ops->get_max_clock(host);
3014 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08003015
Haibo Chen348487c2014-12-09 17:04:05 +08003016 host->next_data.cookie = 1;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003017 /*
Arindam Nathc3ed3872011-05-05 12:19:06 +05303018 * In case of Host Controller v3.00, find out whether clock
3019 * multiplier is supported.
3020 */
3021 host->clk_mul = (caps[1] & SDHCI_CLOCK_MUL_MASK) >>
3022 SDHCI_CLOCK_MUL_SHIFT;
3023
3024 /*
3025 * In case the value in Clock Multiplier is 0, then programmable
3026 * clock mode is not supported, otherwise the actual clock
3027 * multiplier is one more than the value of Clock Multiplier
3028 * in the Capabilities Register.
3029 */
3030 if (host->clk_mul)
3031 host->clk_mul += 1;
3032
3033 /*
Pierre Ossmand129bce2006-03-24 03:18:17 -08003034 * Set host parameters.
3035 */
3036 mmc->ops = &sdhci_ops;
Arindam Nathc3ed3872011-05-05 12:19:06 +05303037 mmc->f_max = host->max_clk;
Marek Szyprowskice5f0362010-08-10 18:01:56 -07003038 if (host->ops->get_min_clock)
Anton Vorontsova9e58f22009-07-29 15:04:16 -07003039 mmc->f_min = host->ops->get_min_clock(host);
Arindam Nathc3ed3872011-05-05 12:19:06 +05303040 else if (host->version >= SDHCI_SPEC_300) {
3041 if (host->clk_mul) {
3042 mmc->f_min = (host->max_clk * host->clk_mul) / 1024;
3043 mmc->f_max = host->max_clk * host->clk_mul;
3044 } else
3045 mmc->f_min = host->max_clk / SDHCI_MAX_DIV_SPEC_300;
3046 } else
Zhangfei Gao03975262010-09-20 15:15:18 -04003047 mmc->f_min = host->max_clk / SDHCI_MAX_DIV_SPEC_200;
Philip Rakity15ec4462010-11-19 16:48:39 -05003048
Aisheng Dong28aab052014-08-27 15:26:31 +08003049 if (!(host->quirks & SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK)) {
3050 host->timeout_clk = (caps[0] & SDHCI_TIMEOUT_CLK_MASK) >>
3051 SDHCI_TIMEOUT_CLK_SHIFT;
3052 if (host->timeout_clk == 0) {
3053 if (host->ops->get_timeout_clock) {
3054 host->timeout_clk =
3055 host->ops->get_timeout_clock(host);
3056 } else {
3057 pr_err("%s: Hardware doesn't specify timeout clock frequency.\n",
3058 mmc_hostname(mmc));
3059 return -ENODEV;
3060 }
Andy Shevchenko272308c2011-08-03 18:36:00 +03003061 }
Andy Shevchenko272308c2011-08-03 18:36:00 +03003062
Aisheng Dong28aab052014-08-27 15:26:31 +08003063 if (caps[0] & SDHCI_TIMEOUT_CLK_UNIT)
3064 host->timeout_clk *= 1000;
Andy Shevchenko272308c2011-08-03 18:36:00 +03003065
Aisheng Dong28aab052014-08-27 15:26:31 +08003066 mmc->max_busy_timeout = host->ops->get_max_timeout_count ?
Aisheng Donga6ff5ae2014-08-27 15:26:27 +08003067 host->ops->get_max_timeout_count(host) : 1 << 27;
Aisheng Dong28aab052014-08-27 15:26:31 +08003068 mmc->max_busy_timeout /= host->timeout_clk;
3069 }
Adrian Hunter58d12462011-06-28 17:16:03 +03003070
Adrian Hunterf5fa92e2014-09-24 10:27:32 +03003071 if (override_timeout_clk)
3072 host->timeout_clk = override_timeout_clk;
3073
Andrei Warkentine89d4562011-05-23 15:06:37 -05003074 mmc->caps |= MMC_CAP_SDIO_IRQ | MMC_CAP_ERASE | MMC_CAP_CMD23;
Russell King781e9892014-04-25 12:55:46 +01003075 mmc->caps2 |= MMC_CAP2_SDIO_IRQ_NOTHREAD;
Andrei Warkentine89d4562011-05-23 15:06:37 -05003076
3077 if (host->quirks & SDHCI_QUIRK_MULTIBLOCK_READ_ACMD12)
3078 host->flags |= SDHCI_AUTO_CMD12;
Anton Vorontsov5fe23c72009-06-18 00:14:08 +04003079
Andrei Warkentin8edf63712011-05-23 15:06:39 -05003080 /* Auto-CMD23 stuff only works in ADMA or PIO. */
Andrei Warkentin4f3d3e92011-05-25 10:42:50 -04003081 if ((host->version >= SDHCI_SPEC_300) &&
Andrei Warkentin8edf63712011-05-23 15:06:39 -05003082 ((host->flags & SDHCI_USE_ADMA) ||
Scott Branden3bfa6f02015-02-09 16:06:28 -08003083 !(host->flags & SDHCI_USE_SDMA)) &&
3084 !(host->quirks2 & SDHCI_QUIRK2_ACMD23_BROKEN)) {
Andrei Warkentin8edf63712011-05-23 15:06:39 -05003085 host->flags |= SDHCI_AUTO_CMD23;
3086 DBG("%s: Auto-CMD23 available\n", mmc_hostname(mmc));
3087 } else {
3088 DBG("%s: Auto-CMD23 unavailable\n", mmc_hostname(mmc));
3089 }
3090
Philip Rakity15ec4462010-11-19 16:48:39 -05003091 /*
3092 * A controller may support 8-bit width, but the board itself
3093 * might not have the pins brought out. Boards that support
3094 * 8-bit width must set "mmc->caps |= MMC_CAP_8_BIT_DATA;" in
3095 * their platform code before calling sdhci_add_host(), and we
3096 * won't assume 8-bit width for hosts without that CAP.
3097 */
Anton Vorontsov5fe23c72009-06-18 00:14:08 +04003098 if (!(host->quirks & SDHCI_QUIRK_FORCE_1_BIT_DATA))
Philip Rakity15ec4462010-11-19 16:48:39 -05003099 mmc->caps |= MMC_CAP_4_BIT_DATA;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003100
Jerry Huang63ef5d82012-10-25 13:47:19 +08003101 if (host->quirks2 & SDHCI_QUIRK2_HOST_NO_CMD23)
3102 mmc->caps &= ~MMC_CAP_CMD23;
3103
Arindam Nathf2119df2011-05-05 12:18:57 +05303104 if (caps[0] & SDHCI_CAN_DO_HISPD)
Zhangfei Gaoa29e7e12010-08-16 21:15:32 -04003105 mmc->caps |= MMC_CAP_SD_HIGHSPEED | MMC_CAP_MMC_HIGHSPEED;
Pierre Ossmancd9277c2007-02-18 12:07:47 +01003106
Jaehoon Chung176d1ed2010-09-27 09:42:20 +01003107 if ((host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION) &&
Markus Mayer4e743f12014-07-03 13:27:42 -07003108 !(mmc->caps & MMC_CAP_NONREMOVABLE))
Anton Vorontsov68d1fb72009-03-17 00:13:52 +03003109 mmc->caps |= MMC_CAP_NEEDS_POLL;
3110
Tim Kryger3a48edc2014-06-13 10:13:56 -07003111 /* If there are external regulators, get them */
3112 if (mmc_regulator_get_supply(mmc) == -EPROBE_DEFER)
3113 return -EPROBE_DEFER;
3114
Philip Rakity6231f3d2012-07-23 15:56:23 -07003115 /* If vqmmc regulator and no 1.8V signalling, then there's no UHS */
Tim Kryger3a48edc2014-06-13 10:13:56 -07003116 if (!IS_ERR(mmc->supply.vqmmc)) {
3117 ret = regulator_enable(mmc->supply.vqmmc);
3118 if (!regulator_is_supported_voltage(mmc->supply.vqmmc, 1700000,
3119 1950000))
Kevin Liu8363c372012-11-17 17:55:51 -05003120 caps[1] &= ~(SDHCI_SUPPORT_SDR104 |
3121 SDHCI_SUPPORT_SDR50 |
3122 SDHCI_SUPPORT_DDR50);
Chris Balla3361ab2013-03-11 17:51:53 -04003123 if (ret) {
3124 pr_warn("%s: Failed to enable vqmmc regulator: %d\n",
3125 mmc_hostname(mmc), ret);
Adrian Hunter4bb74312014-11-06 15:19:04 +02003126 mmc->supply.vqmmc = ERR_PTR(-EINVAL);
Chris Balla3361ab2013-03-11 17:51:53 -04003127 }
Kevin Liu8363c372012-11-17 17:55:51 -05003128 }
Philip Rakity6231f3d2012-07-23 15:56:23 -07003129
Daniel Drake6a661802012-11-25 13:01:19 -05003130 if (host->quirks2 & SDHCI_QUIRK2_NO_1_8_V)
3131 caps[1] &= ~(SDHCI_SUPPORT_SDR104 | SDHCI_SUPPORT_SDR50 |
3132 SDHCI_SUPPORT_DDR50);
3133
Al Cooper4188bba2012-03-16 15:54:17 -04003134 /* Any UHS-I mode in caps implies SDR12 and SDR25 support. */
3135 if (caps[1] & (SDHCI_SUPPORT_SDR104 | SDHCI_SUPPORT_SDR50 |
3136 SDHCI_SUPPORT_DDR50))
Arindam Nathf2119df2011-05-05 12:18:57 +05303137 mmc->caps |= MMC_CAP_UHS_SDR12 | MMC_CAP_UHS_SDR25;
3138
3139 /* SDR104 supports also implies SDR50 support */
Giuseppe CAVALLARO156e14b2013-06-12 08:16:38 +02003140 if (caps[1] & SDHCI_SUPPORT_SDR104) {
Arindam Nathf2119df2011-05-05 12:18:57 +05303141 mmc->caps |= MMC_CAP_UHS_SDR104 | MMC_CAP_UHS_SDR50;
Giuseppe CAVALLARO156e14b2013-06-12 08:16:38 +02003142 /* SD3.0: SDR104 is supported so (for eMMC) the caps2
3143 * field can be promoted to support HS200.
3144 */
Adrian Hunter549c0b12014-11-06 15:19:05 +02003145 if (!(host->quirks2 & SDHCI_QUIRK2_BROKEN_HS200))
David Cohen13868bf2013-10-29 10:58:26 -07003146 mmc->caps2 |= MMC_CAP2_HS200;
Giuseppe CAVALLARO156e14b2013-06-12 08:16:38 +02003147 } else if (caps[1] & SDHCI_SUPPORT_SDR50)
Arindam Nathf2119df2011-05-05 12:18:57 +05303148 mmc->caps |= MMC_CAP_UHS_SDR50;
3149
Adrian Huntere9fb05d2014-11-06 15:19:06 +02003150 if (host->quirks2 & SDHCI_QUIRK2_CAPS_BIT63_FOR_HS400 &&
3151 (caps[1] & SDHCI_SUPPORT_HS400))
3152 mmc->caps2 |= MMC_CAP2_HS400;
3153
Adrian Hunter549c0b12014-11-06 15:19:05 +02003154 if ((mmc->caps2 & MMC_CAP2_HSX00_1_2V) &&
3155 (IS_ERR(mmc->supply.vqmmc) ||
3156 !regulator_is_supported_voltage(mmc->supply.vqmmc, 1100000,
3157 1300000)))
3158 mmc->caps2 &= ~MMC_CAP2_HSX00_1_2V;
3159
Micky Ching9107ebb2014-02-21 18:40:35 +08003160 if ((caps[1] & SDHCI_SUPPORT_DDR50) &&
3161 !(host->quirks2 & SDHCI_QUIRK2_BROKEN_DDR50))
Arindam Nathf2119df2011-05-05 12:18:57 +05303162 mmc->caps |= MMC_CAP_UHS_DDR50;
3163
Girish K S069c9f12012-01-06 09:56:39 +05303164 /* Does the host need tuning for SDR50? */
Arindam Nathb513ea22011-05-05 12:19:04 +05303165 if (caps[1] & SDHCI_USE_SDR50_TUNING)
3166 host->flags |= SDHCI_SDR50_NEEDS_TUNING;
3167
Giuseppe CAVALLARO156e14b2013-06-12 08:16:38 +02003168 /* Does the host need tuning for SDR104 / HS200? */
Girish K S069c9f12012-01-06 09:56:39 +05303169 if (mmc->caps2 & MMC_CAP2_HS200)
Giuseppe CAVALLARO156e14b2013-06-12 08:16:38 +02003170 host->flags |= SDHCI_SDR104_NEEDS_TUNING;
Girish K S069c9f12012-01-06 09:56:39 +05303171
Arindam Nathd6d50a12011-05-05 12:18:59 +05303172 /* Driver Type(s) (A, C, D) supported by the host */
3173 if (caps[1] & SDHCI_DRIVER_TYPE_A)
3174 mmc->caps |= MMC_CAP_DRIVER_TYPE_A;
3175 if (caps[1] & SDHCI_DRIVER_TYPE_C)
3176 mmc->caps |= MMC_CAP_DRIVER_TYPE_C;
3177 if (caps[1] & SDHCI_DRIVER_TYPE_D)
3178 mmc->caps |= MMC_CAP_DRIVER_TYPE_D;
3179
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05303180 /* Initial value for re-tuning timer count */
3181 host->tuning_count = (caps[1] & SDHCI_RETUNING_TIMER_COUNT_MASK) >>
3182 SDHCI_RETUNING_TIMER_COUNT_SHIFT;
3183
3184 /*
3185 * In case Re-tuning Timer is not disabled, the actual value of
3186 * re-tuning timer will be 2 ^ (n - 1).
3187 */
3188 if (host->tuning_count)
3189 host->tuning_count = 1 << (host->tuning_count - 1);
3190
3191 /* Re-tuning mode supported by the Host Controller */
3192 host->tuning_mode = (caps[1] & SDHCI_RETUNING_MODE_MASK) >>
3193 SDHCI_RETUNING_MODE_SHIFT;
3194
Takashi Iwai8f230f42010-12-08 10:04:30 +01003195 ocr_avail = 0;
Philip Rakitybad37e12012-05-27 18:36:44 -07003196
Arindam Nathf2119df2011-05-05 12:18:57 +05303197 /*
3198 * According to SD Host Controller spec v3.00, if the Host System
3199 * can afford more than 150mA, Host Driver should set XPC to 1. Also
3200 * the value is meaningful only if Voltage Support in the Capabilities
3201 * register is set. The actual current value is 4 times the register
3202 * value.
3203 */
3204 max_current_caps = sdhci_readl(host, SDHCI_MAX_CURRENT);
Tim Kryger3a48edc2014-06-13 10:13:56 -07003205 if (!max_current_caps && !IS_ERR(mmc->supply.vmmc)) {
Chuanxiao.Dongae906032014-08-01 14:00:13 +08003206 int curr = regulator_get_current_limit(mmc->supply.vmmc);
Philip Rakitybad37e12012-05-27 18:36:44 -07003207 if (curr > 0) {
3208
3209 /* convert to SDHCI_MAX_CURRENT format */
3210 curr = curr/1000; /* convert to mA */
3211 curr = curr/SDHCI_MAX_CURRENT_MULTIPLIER;
3212
3213 curr = min_t(u32, curr, SDHCI_MAX_CURRENT_LIMIT);
3214 max_current_caps =
3215 (curr << SDHCI_MAX_CURRENT_330_SHIFT) |
3216 (curr << SDHCI_MAX_CURRENT_300_SHIFT) |
3217 (curr << SDHCI_MAX_CURRENT_180_SHIFT);
3218 }
3219 }
Arindam Nathf2119df2011-05-05 12:18:57 +05303220
3221 if (caps[0] & SDHCI_CAN_VDD_330) {
Takashi Iwai8f230f42010-12-08 10:04:30 +01003222 ocr_avail |= MMC_VDD_32_33 | MMC_VDD_33_34;
Arindam Nathf2119df2011-05-05 12:18:57 +05303223
Aaron Lu55c46652012-07-04 13:31:48 +08003224 mmc->max_current_330 = ((max_current_caps &
Arindam Nathf2119df2011-05-05 12:18:57 +05303225 SDHCI_MAX_CURRENT_330_MASK) >>
3226 SDHCI_MAX_CURRENT_330_SHIFT) *
3227 SDHCI_MAX_CURRENT_MULTIPLIER;
Arindam Nathf2119df2011-05-05 12:18:57 +05303228 }
3229 if (caps[0] & SDHCI_CAN_VDD_300) {
Takashi Iwai8f230f42010-12-08 10:04:30 +01003230 ocr_avail |= MMC_VDD_29_30 | MMC_VDD_30_31;
Arindam Nathf2119df2011-05-05 12:18:57 +05303231
Aaron Lu55c46652012-07-04 13:31:48 +08003232 mmc->max_current_300 = ((max_current_caps &
Arindam Nathf2119df2011-05-05 12:18:57 +05303233 SDHCI_MAX_CURRENT_300_MASK) >>
3234 SDHCI_MAX_CURRENT_300_SHIFT) *
3235 SDHCI_MAX_CURRENT_MULTIPLIER;
Arindam Nathf2119df2011-05-05 12:18:57 +05303236 }
3237 if (caps[0] & SDHCI_CAN_VDD_180) {
Takashi Iwai8f230f42010-12-08 10:04:30 +01003238 ocr_avail |= MMC_VDD_165_195;
3239
Aaron Lu55c46652012-07-04 13:31:48 +08003240 mmc->max_current_180 = ((max_current_caps &
Arindam Nathf2119df2011-05-05 12:18:57 +05303241 SDHCI_MAX_CURRENT_180_MASK) >>
3242 SDHCI_MAX_CURRENT_180_SHIFT) *
3243 SDHCI_MAX_CURRENT_MULTIPLIER;
Arindam Nathf2119df2011-05-05 12:18:57 +05303244 }
3245
Tim Kryger52221612014-06-25 00:25:34 -07003246 /* If OCR set by external regulators, use it instead */
Tim Kryger3a48edc2014-06-13 10:13:56 -07003247 if (mmc->ocr_avail)
Tim Kryger52221612014-06-25 00:25:34 -07003248 ocr_avail = mmc->ocr_avail;
Tim Kryger3a48edc2014-06-13 10:13:56 -07003249
Haijun Zhangc0b887b2013-08-26 09:19:23 +08003250 if (host->ocr_mask)
Tim Kryger3a48edc2014-06-13 10:13:56 -07003251 ocr_avail &= host->ocr_mask;
Haijun Zhangc0b887b2013-08-26 09:19:23 +08003252
Takashi Iwai8f230f42010-12-08 10:04:30 +01003253 mmc->ocr_avail = ocr_avail;
3254 mmc->ocr_avail_sdio = ocr_avail;
3255 if (host->ocr_avail_sdio)
3256 mmc->ocr_avail_sdio &= host->ocr_avail_sdio;
3257 mmc->ocr_avail_sd = ocr_avail;
3258 if (host->ocr_avail_sd)
3259 mmc->ocr_avail_sd &= host->ocr_avail_sd;
3260 else /* normal SD controllers don't support 1.8V */
3261 mmc->ocr_avail_sd &= ~MMC_VDD_165_195;
3262 mmc->ocr_avail_mmc = ocr_avail;
3263 if (host->ocr_avail_mmc)
3264 mmc->ocr_avail_mmc &= host->ocr_avail_mmc;
Pierre Ossman146ad662006-06-30 02:22:23 -07003265
3266 if (mmc->ocr_avail == 0) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05303267 pr_err("%s: Hardware doesn't report any "
Pierre Ossmanb69c9052008-03-08 23:44:25 +01003268 "support voltages.\n", mmc_hostname(mmc));
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003269 return -ENODEV;
Pierre Ossman146ad662006-06-30 02:22:23 -07003270 }
3271
Pierre Ossmand129bce2006-03-24 03:18:17 -08003272 spin_lock_init(&host->lock);
3273
3274 /*
Pierre Ossman2134a922008-06-28 18:28:51 +02003275 * Maximum number of segments. Depends on if the hardware
3276 * can do scatter/gather or not.
Pierre Ossmand129bce2006-03-24 03:18:17 -08003277 */
Pierre Ossman2134a922008-06-28 18:28:51 +02003278 if (host->flags & SDHCI_USE_ADMA)
Adrian Hunter4fb213f2014-11-04 12:42:43 +02003279 mmc->max_segs = SDHCI_MAX_SEGS;
Richard Röjforsa13abc72009-09-22 16:45:30 -07003280 else if (host->flags & SDHCI_USE_SDMA)
Martin K. Petersena36274e2010-09-10 01:33:59 -04003281 mmc->max_segs = 1;
Pierre Ossman2134a922008-06-28 18:28:51 +02003282 else /* PIO */
Adrian Hunter4fb213f2014-11-04 12:42:43 +02003283 mmc->max_segs = SDHCI_MAX_SEGS;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003284
3285 /*
Adrian Hunterac005312014-12-05 19:25:28 +02003286 * Maximum number of sectors in one transfer. Limited by SDMA boundary
3287 * size (512KiB). Note some tuning modes impose a 4MiB limit, but this
3288 * is less anyway.
Pierre Ossmand129bce2006-03-24 03:18:17 -08003289 */
Pierre Ossman55db8902006-11-21 17:55:45 +01003290 mmc->max_req_size = 524288;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003291
3292 /*
3293 * Maximum segment size. Could be one segment with the maximum number
Pierre Ossman2134a922008-06-28 18:28:51 +02003294 * of bytes. When doing hardware scatter/gather, each entry cannot
3295 * be larger than 64 KiB though.
Pierre Ossmand129bce2006-03-24 03:18:17 -08003296 */
Olof Johansson30652aa2011-01-01 18:37:32 -06003297 if (host->flags & SDHCI_USE_ADMA) {
3298 if (host->quirks & SDHCI_QUIRK_BROKEN_ADMA_ZEROLEN_DESC)
3299 mmc->max_seg_size = 65535;
3300 else
3301 mmc->max_seg_size = 65536;
3302 } else {
Pierre Ossman2134a922008-06-28 18:28:51 +02003303 mmc->max_seg_size = mmc->max_req_size;
Olof Johansson30652aa2011-01-01 18:37:32 -06003304 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08003305
3306 /*
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +01003307 * Maximum block size. This varies from controller to controller and
3308 * is specified in the capabilities register.
3309 */
Anton Vorontsov0633f652009-03-17 00:14:03 +03003310 if (host->quirks & SDHCI_QUIRK_FORCE_BLK_SZ_2048) {
3311 mmc->max_blk_size = 2;
3312 } else {
Arindam Nathf2119df2011-05-05 12:18:57 +05303313 mmc->max_blk_size = (caps[0] & SDHCI_MAX_BLOCK_MASK) >>
Anton Vorontsov0633f652009-03-17 00:14:03 +03003314 SDHCI_MAX_BLOCK_SHIFT;
3315 if (mmc->max_blk_size >= 3) {
Joe Perches66061102014-09-12 14:56:56 -07003316 pr_warn("%s: Invalid maximum block size, assuming 512 bytes\n",
3317 mmc_hostname(mmc));
Anton Vorontsov0633f652009-03-17 00:14:03 +03003318 mmc->max_blk_size = 0;
3319 }
3320 }
3321
3322 mmc->max_blk_size = 512 << mmc->max_blk_size;
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +01003323
3324 /*
Pierre Ossman55db8902006-11-21 17:55:45 +01003325 * Maximum block count.
3326 */
Ben Dooks1388eef2009-06-14 12:40:53 +01003327 mmc->max_blk_count = (host->quirks & SDHCI_QUIRK_NO_MULTIBLOCK) ? 1 : 65535;
Pierre Ossman55db8902006-11-21 17:55:45 +01003328
3329 /*
Pierre Ossmand129bce2006-03-24 03:18:17 -08003330 * Init tasklets.
3331 */
Pierre Ossmand129bce2006-03-24 03:18:17 -08003332 tasklet_init(&host->finish_tasklet,
3333 sdhci_tasklet_finish, (unsigned long)host);
3334
Al Viroe4cad1b2006-10-10 22:47:07 +01003335 setup_timer(&host->timer, sdhci_timeout_timer, (unsigned long)host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003336
Adrian Hunter250fb7b42014-12-05 19:41:10 +02003337 init_waitqueue_head(&host->buf_ready_int);
Arindam Nathb513ea22011-05-05 12:19:04 +05303338
Shawn Guo2af502c2013-07-05 14:38:55 +08003339 sdhci_init(host, 0);
3340
Russell King781e9892014-04-25 12:55:46 +01003341 ret = request_threaded_irq(host->irq, sdhci_irq, sdhci_thread_irq,
3342 IRQF_SHARED, mmc_hostname(mmc), host);
Mark Brown0fc81ee2012-07-02 14:26:15 +01003343 if (ret) {
3344 pr_err("%s: Failed to request IRQ %d: %d\n",
3345 mmc_hostname(mmc), host->irq, ret);
Pierre Ossman8ef1a142006-06-30 02:22:21 -07003346 goto untasklet;
Mark Brown0fc81ee2012-07-02 14:26:15 +01003347 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08003348
Pierre Ossmand129bce2006-03-24 03:18:17 -08003349#ifdef CONFIG_MMC_DEBUG
3350 sdhci_dumpregs(host);
3351#endif
3352
Pierre Ossmanf9134312008-12-21 17:01:48 +01003353#ifdef SDHCI_USE_LEDS_CLASS
Helmut Schaa5dbace02009-02-14 16:22:39 +01003354 snprintf(host->led_name, sizeof(host->led_name),
3355 "%s::", mmc_hostname(mmc));
3356 host->led.name = host->led_name;
Pierre Ossman2f730fe2008-03-17 10:29:38 +01003357 host->led.brightness = LED_OFF;
3358 host->led.default_trigger = mmc_hostname(mmc);
3359 host->led.brightness_set = sdhci_led_control;
3360
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003361 ret = led_classdev_register(mmc_dev(mmc), &host->led);
Mark Brown0fc81ee2012-07-02 14:26:15 +01003362 if (ret) {
3363 pr_err("%s: Failed to register LED device: %d\n",
3364 mmc_hostname(mmc), ret);
Pierre Ossman2f730fe2008-03-17 10:29:38 +01003365 goto reset;
Mark Brown0fc81ee2012-07-02 14:26:15 +01003366 }
Pierre Ossman2f730fe2008-03-17 10:29:38 +01003367#endif
3368
Pierre Ossman5f25a662006-10-04 02:15:39 -07003369 mmiowb();
3370
Pierre Ossmand129bce2006-03-24 03:18:17 -08003371 mmc_add_host(mmc);
3372
Girish K Sa3c76eb2011-10-11 11:44:09 +05303373 pr_info("%s: SDHCI controller on %s [%s] using %s\n",
Kay Sieversd1b26862008-11-08 21:37:46 +01003374 mmc_hostname(mmc), host->hw_name, dev_name(mmc_dev(mmc)),
Adrian Huntere57a5f62014-11-04 12:42:46 +02003375 (host->flags & SDHCI_USE_ADMA) ?
3376 (host->flags & SDHCI_USE_64_BIT_DMA) ? "ADMA 64-bit" : "ADMA" :
Richard Röjforsa13abc72009-09-22 16:45:30 -07003377 (host->flags & SDHCI_USE_SDMA) ? "DMA" : "PIO");
Pierre Ossmand129bce2006-03-24 03:18:17 -08003378
Anton Vorontsov7260cf52009-03-17 00:13:48 +03003379 sdhci_enable_card_detection(host);
3380
Pierre Ossmand129bce2006-03-24 03:18:17 -08003381 return 0;
3382
Pierre Ossmanf9134312008-12-21 17:01:48 +01003383#ifdef SDHCI_USE_LEDS_CLASS
Pierre Ossman2f730fe2008-03-17 10:29:38 +01003384reset:
Russell King03231f92014-04-25 12:57:12 +01003385 sdhci_do_reset(host, SDHCI_RESET_ALL);
Russell Kingb537f942014-04-25 12:56:01 +01003386 sdhci_writel(host, 0, SDHCI_INT_ENABLE);
3387 sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE);
Pierre Ossman2f730fe2008-03-17 10:29:38 +01003388 free_irq(host->irq, host);
3389#endif
Pierre Ossman8ef1a142006-06-30 02:22:21 -07003390untasklet:
Pierre Ossmand129bce2006-03-24 03:18:17 -08003391 tasklet_kill(&host->finish_tasklet);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003392
3393 return ret;
3394}
3395
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003396EXPORT_SYMBOL_GPL(sdhci_add_host);
3397
Pierre Ossman1e728592008-04-16 19:13:13 +02003398void sdhci_remove_host(struct sdhci_host *host, int dead)
Pierre Ossmand129bce2006-03-24 03:18:17 -08003399{
Tim Kryger3a48edc2014-06-13 10:13:56 -07003400 struct mmc_host *mmc = host->mmc;
Pierre Ossman1e728592008-04-16 19:13:13 +02003401 unsigned long flags;
3402
3403 if (dead) {
3404 spin_lock_irqsave(&host->lock, flags);
3405
3406 host->flags |= SDHCI_DEVICE_DEAD;
3407
3408 if (host->mrq) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05303409 pr_err("%s: Controller removed during "
Markus Mayer4e743f12014-07-03 13:27:42 -07003410 " transfer!\n", mmc_hostname(mmc));
Pierre Ossman1e728592008-04-16 19:13:13 +02003411
3412 host->mrq->cmd->error = -ENOMEDIUM;
3413 tasklet_schedule(&host->finish_tasklet);
3414 }
3415
3416 spin_unlock_irqrestore(&host->lock, flags);
3417 }
3418
Anton Vorontsov7260cf52009-03-17 00:13:48 +03003419 sdhci_disable_card_detection(host);
3420
Markus Mayer4e743f12014-07-03 13:27:42 -07003421 mmc_remove_host(mmc);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003422
Pierre Ossmanf9134312008-12-21 17:01:48 +01003423#ifdef SDHCI_USE_LEDS_CLASS
Pierre Ossman2f730fe2008-03-17 10:29:38 +01003424 led_classdev_unregister(&host->led);
3425#endif
3426
Pierre Ossman1e728592008-04-16 19:13:13 +02003427 if (!dead)
Russell King03231f92014-04-25 12:57:12 +01003428 sdhci_do_reset(host, SDHCI_RESET_ALL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003429
Russell Kingb537f942014-04-25 12:56:01 +01003430 sdhci_writel(host, 0, SDHCI_INT_ENABLE);
3431 sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003432 free_irq(host->irq, host);
3433
3434 del_timer_sync(&host->timer);
3435
Pierre Ossmand129bce2006-03-24 03:18:17 -08003436 tasklet_kill(&host->finish_tasklet);
Pierre Ossman2134a922008-06-28 18:28:51 +02003437
Tim Kryger3a48edc2014-06-13 10:13:56 -07003438 if (!IS_ERR(mmc->supply.vqmmc))
3439 regulator_disable(mmc->supply.vqmmc);
Philip Rakity6231f3d2012-07-23 15:56:23 -07003440
Adrian Hunter4efaa6f2014-11-04 12:42:39 +02003441 if (host->adma_table)
Adrian Hunter76fe3792014-11-04 12:42:42 +02003442 dma_free_coherent(mmc_dev(mmc), host->adma_table_sz,
Adrian Hunter4efaa6f2014-11-04 12:42:39 +02003443 host->adma_table, host->adma_addr);
Pierre Ossman2134a922008-06-28 18:28:51 +02003444 kfree(host->align_buffer);
3445
Adrian Hunter4efaa6f2014-11-04 12:42:39 +02003446 host->adma_table = NULL;
Pierre Ossman2134a922008-06-28 18:28:51 +02003447 host->align_buffer = NULL;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003448}
3449
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003450EXPORT_SYMBOL_GPL(sdhci_remove_host);
3451
3452void sdhci_free_host(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -08003453{
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003454 mmc_free_host(host->mmc);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003455}
3456
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003457EXPORT_SYMBOL_GPL(sdhci_free_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003458
3459/*****************************************************************************\
3460 * *
3461 * Driver init/exit *
3462 * *
3463\*****************************************************************************/
3464
3465static int __init sdhci_drv_init(void)
3466{
Girish K Sa3c76eb2011-10-11 11:44:09 +05303467 pr_info(DRIVER_NAME
Pierre Ossman52fbf9c2007-02-09 08:23:41 +01003468 ": Secure Digital Host Controller Interface driver\n");
Girish K Sa3c76eb2011-10-11 11:44:09 +05303469 pr_info(DRIVER_NAME ": Copyright(c) Pierre Ossman\n");
Pierre Ossmand129bce2006-03-24 03:18:17 -08003470
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003471 return 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003472}
3473
3474static void __exit sdhci_drv_exit(void)
3475{
Pierre Ossmand129bce2006-03-24 03:18:17 -08003476}
3477
3478module_init(sdhci_drv_init);
3479module_exit(sdhci_drv_exit);
3480
Pierre Ossmandf673b22006-06-30 02:22:31 -07003481module_param(debug_quirks, uint, 0444);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003482module_param(debug_quirks2, uint, 0444);
Pierre Ossman67435272006-06-30 02:22:31 -07003483
Pierre Ossman32710e82009-04-08 20:14:54 +02003484MODULE_AUTHOR("Pierre Ossman <pierre@ossman.eu>");
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003485MODULE_DESCRIPTION("Secure Digital Host Controller Interface core driver");
Pierre Ossmand129bce2006-03-24 03:18:17 -08003486MODULE_LICENSE("GPL");
Pierre Ossman67435272006-06-30 02:22:31 -07003487
Pierre Ossmandf673b22006-06-30 02:22:31 -07003488MODULE_PARM_DESC(debug_quirks, "Force certain quirks.");
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003489MODULE_PARM_DESC(debug_quirks2, "Force certain other quirks.");