blob: 863b23b2c9f83011c219dbaec65d03d636dfb595 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Pierre Ossmand129bce2006-03-24 03:18:17 -08002/*
Pierre Ossman70f10482007-07-11 20:04:50 +02003 * linux/drivers/mmc/host/sdhci.c - Secure Digital Host Controller Interface driver
Pierre Ossmand129bce2006-03-24 03:18:17 -08004 *
Pierre Ossmanb69c9052008-03-08 23:44:25 +01005 * Copyright (C) 2005-2008 Pierre Ossman, All Rights Reserved.
Pierre Ossmand129bce2006-03-24 03:18:17 -08006 *
Pierre Ossman84c46a52007-12-02 19:58:16 +01007 * Thanks to the following companies for their support:
8 *
9 * - JMicron (hardware and technical support)
Pierre Ossmand129bce2006-03-24 03:18:17 -080010 */
11
Masahiro Yamadafa091012020-03-12 20:00:50 +090012#include <linux/bitfield.h>
Pierre Ossmand129bce2006-03-24 03:18:17 -080013#include <linux/delay.h>
Chunyan Zhang18e762e2020-01-16 16:21:47 +053014#include <linux/dmaengine.h>
Adrian Hunter5a436cc2017-03-20 19:50:31 +020015#include <linux/ktime.h>
Pierre Ossmand129bce2006-03-24 03:18:17 -080016#include <linux/highmem.h>
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +010017#include <linux/io.h>
Paul Gortmaker88b47672011-07-03 15:15:51 -040018#include <linux/module.h>
Pierre Ossmand129bce2006-03-24 03:18:17 -080019#include <linux/dma-mapping.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Ralf Baechle11763602007-10-23 20:42:11 +020021#include <linux/scatterlist.h>
Linus Walleijbd9b9022018-01-29 00:44:53 +010022#include <linux/sizes.h>
Ulf Hansson250dcd12017-11-27 11:28:50 +010023#include <linux/swiotlb.h>
Marek Szyprowski9bea3c82010-08-10 18:01:59 -070024#include <linux/regulator/consumer.h>
Adrian Hunter66fd8ad2011-10-03 15:33:34 +030025#include <linux/pm_runtime.h>
Zach Brown92e0c442016-11-02 10:26:16 -050026#include <linux/of.h>
Pierre Ossmand129bce2006-03-24 03:18:17 -080027
Pierre Ossman2f730fe2008-03-17 10:29:38 +010028#include <linux/leds.h>
29
Aries Lee22113ef2010-12-15 08:14:24 +010030#include <linux/mmc/mmc.h>
Pierre Ossmand129bce2006-03-24 03:18:17 -080031#include <linux/mmc/host.h>
Aaron Lu473b0952012-07-03 17:27:49 +080032#include <linux/mmc/card.h>
Corneliu Doban85cc1c32015-02-09 16:06:29 -080033#include <linux/mmc/sdio.h>
Guennadi Liakhovetskibec9d4e2012-09-17 16:45:10 +080034#include <linux/mmc/slot-gpio.h>
Pierre Ossmand129bce2006-03-24 03:18:17 -080035
Pierre Ossmand129bce2006-03-24 03:18:17 -080036#include "sdhci.h"
37
38#define DRIVER_NAME "sdhci"
Pierre Ossmand129bce2006-03-24 03:18:17 -080039
Pierre Ossmand129bce2006-03-24 03:18:17 -080040#define DBG(f, x...) \
Adrian Hunterf4218652017-03-20 19:50:39 +020041 pr_debug("%s: " DRIVER_NAME ": " f, mmc_hostname(host->mmc), ## x)
Pierre Ossmand129bce2006-03-24 03:18:17 -080042
Adrian Hunter85ad90e2017-03-20 19:50:42 +020043#define SDHCI_DUMP(f, x...) \
44 pr_err("%s: " DRIVER_NAME ": " f, mmc_hostname(host->mmc), ## x)
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
Kevin Liu52983382013-01-31 11:31:37 +080053static void sdhci_enable_preset_value(struct sdhci_host *host, bool enable);
Pierre Ossmand129bce2006-03-24 03:18:17 -080054
Adrian Hunterd2898172017-03-20 19:50:43 +020055void sdhci_dumpregs(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -080056{
Adrian Hunter85ad90e2017-03-20 19:50:42 +020057 SDHCI_DUMP("============ SDHCI REGISTER DUMP ===========\n");
Pierre Ossmand129bce2006-03-24 03:18:17 -080058
Adrian Hunter85ad90e2017-03-20 19:50:42 +020059 SDHCI_DUMP("Sys addr: 0x%08x | Version: 0x%08x\n",
60 sdhci_readl(host, SDHCI_DMA_ADDRESS),
61 sdhci_readw(host, SDHCI_HOST_VERSION));
62 SDHCI_DUMP("Blk size: 0x%08x | Blk cnt: 0x%08x\n",
63 sdhci_readw(host, SDHCI_BLOCK_SIZE),
64 sdhci_readw(host, SDHCI_BLOCK_COUNT));
65 SDHCI_DUMP("Argument: 0x%08x | Trn mode: 0x%08x\n",
66 sdhci_readl(host, SDHCI_ARGUMENT),
67 sdhci_readw(host, SDHCI_TRANSFER_MODE));
68 SDHCI_DUMP("Present: 0x%08x | Host ctl: 0x%08x\n",
69 sdhci_readl(host, SDHCI_PRESENT_STATE),
70 sdhci_readb(host, SDHCI_HOST_CONTROL));
71 SDHCI_DUMP("Power: 0x%08x | Blk gap: 0x%08x\n",
72 sdhci_readb(host, SDHCI_POWER_CONTROL),
73 sdhci_readb(host, SDHCI_BLOCK_GAP_CONTROL));
74 SDHCI_DUMP("Wake-up: 0x%08x | Clock: 0x%08x\n",
75 sdhci_readb(host, SDHCI_WAKE_UP_CONTROL),
76 sdhci_readw(host, SDHCI_CLOCK_CONTROL));
77 SDHCI_DUMP("Timeout: 0x%08x | Int stat: 0x%08x\n",
78 sdhci_readb(host, SDHCI_TIMEOUT_CONTROL),
79 sdhci_readl(host, SDHCI_INT_STATUS));
80 SDHCI_DUMP("Int enab: 0x%08x | Sig enab: 0x%08x\n",
81 sdhci_readl(host, SDHCI_INT_ENABLE),
82 sdhci_readl(host, SDHCI_SIGNAL_ENABLE));
Adrian Hunter869f8a62018-11-15 15:53:42 +020083 SDHCI_DUMP("ACmd stat: 0x%08x | Slot int: 0x%08x\n",
84 sdhci_readw(host, SDHCI_AUTO_CMD_STATUS),
Adrian Hunter85ad90e2017-03-20 19:50:42 +020085 sdhci_readw(host, SDHCI_SLOT_INT_STATUS));
86 SDHCI_DUMP("Caps: 0x%08x | Caps_1: 0x%08x\n",
87 sdhci_readl(host, SDHCI_CAPABILITIES),
88 sdhci_readl(host, SDHCI_CAPABILITIES_1));
89 SDHCI_DUMP("Cmd: 0x%08x | Max curr: 0x%08x\n",
90 sdhci_readw(host, SDHCI_COMMAND),
91 sdhci_readl(host, SDHCI_MAX_CURRENT));
92 SDHCI_DUMP("Resp[0]: 0x%08x | Resp[1]: 0x%08x\n",
Adrian Hunter79623022017-03-20 19:50:40 +020093 sdhci_readl(host, SDHCI_RESPONSE),
94 sdhci_readl(host, SDHCI_RESPONSE + 4));
Adrian Hunter85ad90e2017-03-20 19:50:42 +020095 SDHCI_DUMP("Resp[2]: 0x%08x | Resp[3]: 0x%08x\n",
Adrian Hunter79623022017-03-20 19:50:40 +020096 sdhci_readl(host, SDHCI_RESPONSE + 8),
97 sdhci_readl(host, SDHCI_RESPONSE + 12));
Adrian Hunter85ad90e2017-03-20 19:50:42 +020098 SDHCI_DUMP("Host ctl2: 0x%08x\n",
99 sdhci_readw(host, SDHCI_HOST_CONTROL2));
Pierre Ossmand129bce2006-03-24 03:18:17 -0800100
Adrian Huntere57a5f62014-11-04 12:42:46 +0200101 if (host->flags & SDHCI_USE_ADMA) {
Adrian Hunter85ad90e2017-03-20 19:50:42 +0200102 if (host->flags & SDHCI_USE_64_BIT_DMA) {
103 SDHCI_DUMP("ADMA Err: 0x%08x | ADMA Ptr: 0x%08x%08x\n",
104 sdhci_readl(host, SDHCI_ADMA_ERROR),
105 sdhci_readl(host, SDHCI_ADMA_ADDRESS_HI),
106 sdhci_readl(host, SDHCI_ADMA_ADDRESS));
107 } else {
108 SDHCI_DUMP("ADMA Err: 0x%08x | ADMA Ptr: 0x%08x\n",
109 sdhci_readl(host, SDHCI_ADMA_ERROR),
110 sdhci_readl(host, SDHCI_ADMA_ADDRESS));
111 }
Adrian Huntere57a5f62014-11-04 12:42:46 +0200112 }
Ben Dooksbe3f4ae2009-06-08 23:33:52 +0100113
Adrian Hunter85ad90e2017-03-20 19:50:42 +0200114 SDHCI_DUMP("============================================\n");
Pierre Ossmand129bce2006-03-24 03:18:17 -0800115}
Adrian Hunterd2898172017-03-20 19:50:43 +0200116EXPORT_SYMBOL_GPL(sdhci_dumpregs);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800117
118/*****************************************************************************\
119 * *
120 * Low level functions *
121 * *
122\*****************************************************************************/
123
Chunyan Zhangb3f80b42018-08-30 16:21:38 +0800124static void sdhci_do_enable_v4_mode(struct sdhci_host *host)
125{
126 u16 ctrl2;
127
Sowjanya Komatineni97207c12018-12-13 12:34:06 -0800128 ctrl2 = sdhci_readw(host, SDHCI_HOST_CONTROL2);
Chunyan Zhangb3f80b42018-08-30 16:21:38 +0800129 if (ctrl2 & SDHCI_CTRL_V4_MODE)
130 return;
131
132 ctrl2 |= SDHCI_CTRL_V4_MODE;
Sowjanya Komatineni97207c12018-12-13 12:34:06 -0800133 sdhci_writew(host, ctrl2, SDHCI_HOST_CONTROL2);
Chunyan Zhangb3f80b42018-08-30 16:21:38 +0800134}
135
136/*
137 * This can be called before sdhci_add_host() by Vendor's host controller
138 * driver to enable v4 mode if supported.
139 */
140void sdhci_enable_v4_mode(struct sdhci_host *host)
141{
142 host->v4_mode = true;
143 sdhci_do_enable_v4_mode(host);
144}
145EXPORT_SYMBOL_GPL(sdhci_enable_v4_mode);
146
Adrian Hunter56a590d2016-06-29 16:24:32 +0300147static inline bool sdhci_data_line_cmd(struct mmc_command *cmd)
148{
149 return cmd->data || cmd->flags & MMC_RSP_BUSY;
150}
151
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300152static void sdhci_set_card_detection(struct sdhci_host *host, bool enable)
153{
Russell King5b4f1f62014-04-25 12:57:02 +0100154 u32 present;
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300155
Adrian Hunterc79396c2011-12-27 15:48:42 +0200156 if ((host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION) ||
Haibo Chene65bb382020-02-19 16:22:40 +0800157 !mmc_card_is_removable(host->mmc) || mmc_can_gpio_cd(host->mmc))
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300158 return;
159
Russell King5b4f1f62014-04-25 12:57:02 +0100160 if (enable) {
161 present = sdhci_readl(host, SDHCI_PRESENT_STATE) &
162 SDHCI_CARD_PRESENT;
Shawn Guod25928d2011-06-21 22:41:48 +0800163
Russell King5b4f1f62014-04-25 12:57:02 +0100164 host->ier |= present ? SDHCI_INT_CARD_REMOVE :
165 SDHCI_INT_CARD_INSERT;
166 } else {
167 host->ier &= ~(SDHCI_INT_CARD_REMOVE | SDHCI_INT_CARD_INSERT);
168 }
Russell Kingb537f942014-04-25 12:56:01 +0100169
170 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
171 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300172}
173
174static void sdhci_enable_card_detection(struct sdhci_host *host)
175{
176 sdhci_set_card_detection(host, true);
177}
178
179static void sdhci_disable_card_detection(struct sdhci_host *host)
180{
181 sdhci_set_card_detection(host, false);
182}
183
Ulf Hansson02d0b682016-04-11 15:32:41 +0200184static void sdhci_runtime_pm_bus_on(struct sdhci_host *host)
185{
186 if (host->bus_on)
187 return;
188 host->bus_on = true;
189 pm_runtime_get_noresume(host->mmc->parent);
190}
191
192static void sdhci_runtime_pm_bus_off(struct sdhci_host *host)
193{
194 if (!host->bus_on)
195 return;
196 host->bus_on = false;
197 pm_runtime_put_noidle(host->mmc->parent);
198}
199
Russell King03231f92014-04-25 12:57:12 +0100200void sdhci_reset(struct sdhci_host *host, u8 mask)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800201{
Adrian Hunter5a436cc2017-03-20 19:50:31 +0200202 ktime_t timeout;
Philip Rakity393c1a32011-01-21 11:26:40 -0800203
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300204 sdhci_writeb(host, mask, SDHCI_SOFTWARE_RESET);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800205
Adrian Hunterf0710a52013-05-06 12:17:32 +0300206 if (mask & SDHCI_RESET_ALL) {
Pierre Ossmand129bce2006-03-24 03:18:17 -0800207 host->clock = 0;
Adrian Hunterf0710a52013-05-06 12:17:32 +0300208 /* Reset-all turns off SD Bus Power */
209 if (host->quirks2 & SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON)
210 sdhci_runtime_pm_bus_off(host);
211 }
Pierre Ossmand129bce2006-03-24 03:18:17 -0800212
Pierre Ossmane16514d82006-06-30 02:22:24 -0700213 /* Wait max 100 ms */
Adrian Hunter5a436cc2017-03-20 19:50:31 +0200214 timeout = ktime_add_ms(ktime_get(), 100);
Pierre Ossmane16514d82006-06-30 02:22:24 -0700215
216 /* hw clears the bit when it's done */
Alek Dub7044412018-12-06 17:24:59 +0800217 while (1) {
218 bool timedout = ktime_after(ktime_get(), timeout);
219
220 if (!(sdhci_readb(host, SDHCI_SOFTWARE_RESET) & mask))
221 break;
222 if (timedout) {
Girish K Sa3c76eb2011-10-11 11:44:09 +0530223 pr_err("%s: Reset 0x%x never completed.\n",
Pierre Ossmane16514d82006-06-30 02:22:24 -0700224 mmc_hostname(host->mmc), (int)mask);
225 sdhci_dumpregs(host);
226 return;
227 }
Adrian Hunter5a436cc2017-03-20 19:50:31 +0200228 udelay(10);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800229 }
Russell King03231f92014-04-25 12:57:12 +0100230}
231EXPORT_SYMBOL_GPL(sdhci_reset);
Anton Vorontsov063a9db2009-03-17 00:14:02 +0300232
Russell King03231f92014-04-25 12:57:12 +0100233static void sdhci_do_reset(struct sdhci_host *host, u8 mask)
234{
235 if (host->quirks & SDHCI_QUIRK_NO_CARD_NO_RESET) {
Adrian Hunterd3940f22016-06-29 16:24:14 +0300236 struct mmc_host *mmc = host->mmc;
237
238 if (!mmc->ops->get_cd(mmc))
Russell King03231f92014-04-25 12:57:12 +0100239 return;
240 }
241
242 host->ops->reset(host, mask);
Philip Rakity393c1a32011-01-21 11:26:40 -0800243
Russell Kingda91a8f2014-04-25 13:00:12 +0100244 if (mask & SDHCI_RESET_ALL) {
245 if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
246 if (host->ops->enable_dma)
247 host->ops->enable_dma(host);
248 }
249
250 /* Resetting the controller clears many */
251 host->preset_enabled = false;
Shaohui Xie3abc1e802011-12-29 16:33:00 +0800252 }
Pierre Ossmand129bce2006-03-24 03:18:17 -0800253}
254
Adrian Hunterf5c1ab82017-03-20 19:50:46 +0200255static void sdhci_set_default_irqs(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800256{
Russell Kingb537f942014-04-25 12:56:01 +0100257 host->ier = SDHCI_INT_BUS_POWER | SDHCI_INT_DATA_END_BIT |
258 SDHCI_INT_DATA_CRC | SDHCI_INT_DATA_TIMEOUT |
259 SDHCI_INT_INDEX | SDHCI_INT_END_BIT | SDHCI_INT_CRC |
260 SDHCI_INT_TIMEOUT | SDHCI_INT_DATA_END |
261 SDHCI_INT_RESPONSE;
262
Dong Aishengf37b20e2016-07-12 15:46:17 +0800263 if (host->tuning_mode == SDHCI_TUNING_MODE_2 ||
264 host->tuning_mode == SDHCI_TUNING_MODE_3)
265 host->ier |= SDHCI_INT_RETUNE;
266
Russell Kingb537f942014-04-25 12:56:01 +0100267 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
268 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Adrian Hunterf5c1ab82017-03-20 19:50:46 +0200269}
270
Chunyan Zhang685e4442018-08-30 16:21:40 +0800271static void sdhci_config_dma(struct sdhci_host *host)
272{
273 u8 ctrl;
274 u16 ctrl2;
275
276 if (host->version < SDHCI_SPEC_200)
277 return;
278
279 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
280
281 /*
282 * Always adjust the DMA selection as some controllers
283 * (e.g. JMicron) can't do PIO properly when the selection
284 * is ADMA.
285 */
286 ctrl &= ~SDHCI_CTRL_DMA_MASK;
287 if (!(host->flags & SDHCI_REQ_USE_DMA))
288 goto out;
289
290 /* Note if DMA Select is zero then SDMA is selected */
291 if (host->flags & SDHCI_USE_ADMA)
292 ctrl |= SDHCI_CTRL_ADMA32;
293
294 if (host->flags & SDHCI_USE_64_BIT_DMA) {
295 /*
296 * If v4 mode, all supported DMA can be 64-bit addressing if
297 * controller supports 64-bit system address, otherwise only
298 * ADMA can support 64-bit addressing.
299 */
300 if (host->v4_mode) {
301 ctrl2 = sdhci_readw(host, SDHCI_HOST_CONTROL2);
302 ctrl2 |= SDHCI_CTRL_64BIT_ADDR;
303 sdhci_writew(host, ctrl2, SDHCI_HOST_CONTROL2);
304 } else if (host->flags & SDHCI_USE_ADMA) {
305 /*
306 * Don't need to undo SDHCI_CTRL_ADMA32 in order to
307 * set SDHCI_CTRL_ADMA64.
308 */
309 ctrl |= SDHCI_CTRL_ADMA64;
310 }
311 }
312
313out:
314 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
315}
316
Adrian Hunterf5c1ab82017-03-20 19:50:46 +0200317static void sdhci_init(struct sdhci_host *host, int soft)
318{
319 struct mmc_host *mmc = host->mmc;
320
321 if (soft)
322 sdhci_do_reset(host, SDHCI_RESET_CMD | SDHCI_RESET_DATA);
323 else
324 sdhci_do_reset(host, SDHCI_RESET_ALL);
325
Chunyan Zhangb3f80b42018-08-30 16:21:38 +0800326 if (host->v4_mode)
327 sdhci_do_enable_v4_mode(host);
328
Adrian Hunterf5c1ab82017-03-20 19:50:46 +0200329 sdhci_set_default_irqs(host);
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -0800330
Adrian Hunterf12e39d2017-03-20 19:50:47 +0200331 host->cqe_on = false;
332
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -0800333 if (soft) {
334 /* force clock reconfiguration */
335 host->clock = 0;
Adrian Hunterd3940f22016-06-29 16:24:14 +0300336 mmc->ops->set_ios(mmc, &mmc->ios);
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -0800337 }
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300338}
Pierre Ossmand129bce2006-03-24 03:18:17 -0800339
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300340static void sdhci_reinit(struct sdhci_host *host)
341{
Raul E Rangeldcaac3f2019-09-04 10:46:24 -0600342 u32 cd = host->ier & (SDHCI_INT_CARD_REMOVE | SDHCI_INT_CARD_INSERT);
343
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -0800344 sdhci_init(host, 0);
Anton Vorontsov7260cf52009-03-17 00:13:48 +0300345 sdhci_enable_card_detection(host);
Raul E Rangeldcaac3f2019-09-04 10:46:24 -0600346
347 /*
348 * A change to the card detect bits indicates a change in present state,
349 * refer sdhci_set_card_detection(). A card detect interrupt might have
350 * been missed while the host controller was being reset, so trigger a
351 * rescan to check.
352 */
353 if (cd != (host->ier & (SDHCI_INT_CARD_REMOVE | SDHCI_INT_CARD_INSERT)))
354 mmc_detect_change(host->mmc, msecs_to_jiffies(200));
Pierre Ossmand129bce2006-03-24 03:18:17 -0800355}
356
Adrian Hunter061d17a2016-04-12 14:25:09 +0300357static void __sdhci_led_activate(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800358{
359 u8 ctrl;
360
Adrian Hunterbd29f582018-12-11 15:10:42 +0200361 if (host->quirks & SDHCI_QUIRK_NO_LED)
362 return;
363
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300364 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800365 ctrl |= SDHCI_CTRL_LED;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300366 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800367}
368
Adrian Hunter061d17a2016-04-12 14:25:09 +0300369static void __sdhci_led_deactivate(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800370{
371 u8 ctrl;
372
Adrian Hunterbd29f582018-12-11 15:10:42 +0200373 if (host->quirks & SDHCI_QUIRK_NO_LED)
374 return;
375
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300376 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800377 ctrl &= ~SDHCI_CTRL_LED;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300378 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800379}
380
Masahiro Yamada4f782302016-04-14 13:19:39 +0900381#if IS_REACHABLE(CONFIG_LEDS_CLASS)
Pierre Ossman2f730fe2008-03-17 10:29:38 +0100382static void sdhci_led_control(struct led_classdev *led,
Adrian Hunter061d17a2016-04-12 14:25:09 +0300383 enum led_brightness brightness)
Pierre Ossman2f730fe2008-03-17 10:29:38 +0100384{
385 struct sdhci_host *host = container_of(led, struct sdhci_host, led);
386 unsigned long flags;
387
388 spin_lock_irqsave(&host->lock, flags);
389
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300390 if (host->runtime_suspended)
391 goto out;
392
Pierre Ossman2f730fe2008-03-17 10:29:38 +0100393 if (brightness == LED_OFF)
Adrian Hunter061d17a2016-04-12 14:25:09 +0300394 __sdhci_led_deactivate(host);
Pierre Ossman2f730fe2008-03-17 10:29:38 +0100395 else
Adrian Hunter061d17a2016-04-12 14:25:09 +0300396 __sdhci_led_activate(host);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +0300397out:
Pierre Ossman2f730fe2008-03-17 10:29:38 +0100398 spin_unlock_irqrestore(&host->lock, flags);
399}
Adrian Hunter061d17a2016-04-12 14:25:09 +0300400
401static int sdhci_led_register(struct sdhci_host *host)
402{
403 struct mmc_host *mmc = host->mmc;
404
Adrian Hunterbd29f582018-12-11 15:10:42 +0200405 if (host->quirks & SDHCI_QUIRK_NO_LED)
406 return 0;
407
Adrian Hunter061d17a2016-04-12 14:25:09 +0300408 snprintf(host->led_name, sizeof(host->led_name),
409 "%s::", mmc_hostname(mmc));
410
411 host->led.name = host->led_name;
412 host->led.brightness = LED_OFF;
413 host->led.default_trigger = mmc_hostname(mmc);
414 host->led.brightness_set = sdhci_led_control;
415
416 return led_classdev_register(mmc_dev(mmc), &host->led);
417}
418
419static void sdhci_led_unregister(struct sdhci_host *host)
420{
Adrian Hunterbd29f582018-12-11 15:10:42 +0200421 if (host->quirks & SDHCI_QUIRK_NO_LED)
422 return;
423
Adrian Hunter061d17a2016-04-12 14:25:09 +0300424 led_classdev_unregister(&host->led);
425}
426
427static inline void sdhci_led_activate(struct sdhci_host *host)
428{
429}
430
431static inline void sdhci_led_deactivate(struct sdhci_host *host)
432{
433}
434
435#else
436
437static inline int sdhci_led_register(struct sdhci_host *host)
438{
439 return 0;
440}
441
442static inline void sdhci_led_unregister(struct sdhci_host *host)
443{
444}
445
446static inline void sdhci_led_activate(struct sdhci_host *host)
447{
448 __sdhci_led_activate(host);
449}
450
451static inline void sdhci_led_deactivate(struct sdhci_host *host)
452{
453 __sdhci_led_deactivate(host);
454}
455
Pierre Ossman2f730fe2008-03-17 10:29:38 +0100456#endif
457
Adrian Hunter97a1aba2019-04-05 15:40:17 +0300458static void sdhci_mod_timer(struct sdhci_host *host, struct mmc_request *mrq,
459 unsigned long timeout)
460{
461 if (sdhci_data_line_cmd(mrq->cmd))
462 mod_timer(&host->data_timer, timeout);
463 else
464 mod_timer(&host->timer, timeout);
465}
466
467static void sdhci_del_timer(struct sdhci_host *host, struct mmc_request *mrq)
468{
469 if (sdhci_data_line_cmd(mrq->cmd))
470 del_timer(&host->data_timer);
471 else
472 del_timer(&host->timer);
473}
474
475static inline bool sdhci_has_requests(struct sdhci_host *host)
476{
477 return host->cmd || host->data_cmd;
478}
479
Pierre Ossmand129bce2006-03-24 03:18:17 -0800480/*****************************************************************************\
481 * *
482 * Core functions *
483 * *
484\*****************************************************************************/
485
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100486static void sdhci_read_block_pio(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800487{
Pierre Ossman76591502008-07-21 00:32:11 +0200488 unsigned long flags;
489 size_t blksize, len, chunk;
Steven Noonan7244b852008-10-01 01:50:25 -0700490 u32 uninitialized_var(scratch);
Pierre Ossman76591502008-07-21 00:32:11 +0200491 u8 *buf;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800492
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100493 DBG("PIO reading\n");
Pierre Ossmand129bce2006-03-24 03:18:17 -0800494
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100495 blksize = host->data->blksz;
Pierre Ossman76591502008-07-21 00:32:11 +0200496 chunk = 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800497
Pierre Ossman76591502008-07-21 00:32:11 +0200498 local_irq_save(flags);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800499
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100500 while (blksize) {
Fabio Estevambf3a35a2015-05-09 18:44:51 -0300501 BUG_ON(!sg_miter_next(&host->sg_miter));
Pierre Ossmand129bce2006-03-24 03:18:17 -0800502
Pierre Ossman76591502008-07-21 00:32:11 +0200503 len = min(host->sg_miter.length, blksize);
Pierre Ossmand129bce2006-03-24 03:18:17 -0800504
Pierre Ossman76591502008-07-21 00:32:11 +0200505 blksize -= len;
506 host->sg_miter.consumed = len;
Alex Dubov14d836e2007-04-13 19:04:38 +0200507
Pierre Ossman76591502008-07-21 00:32:11 +0200508 buf = host->sg_miter.addr;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800509
Pierre Ossman76591502008-07-21 00:32:11 +0200510 while (len) {
511 if (chunk == 0) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300512 scratch = sdhci_readl(host, SDHCI_BUFFER);
Pierre Ossman76591502008-07-21 00:32:11 +0200513 chunk = 4;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800514 }
Pierre Ossman76591502008-07-21 00:32:11 +0200515
516 *buf = scratch & 0xFF;
517
518 buf++;
519 scratch >>= 8;
520 chunk--;
521 len--;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800522 }
523 }
Pierre Ossman76591502008-07-21 00:32:11 +0200524
525 sg_miter_stop(&host->sg_miter);
526
527 local_irq_restore(flags);
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100528}
Pierre Ossmand129bce2006-03-24 03:18:17 -0800529
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100530static void sdhci_write_block_pio(struct sdhci_host *host)
531{
Pierre Ossman76591502008-07-21 00:32:11 +0200532 unsigned long flags;
533 size_t blksize, len, chunk;
534 u32 scratch;
535 u8 *buf;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100536
537 DBG("PIO writing\n");
538
539 blksize = host->data->blksz;
Pierre Ossman76591502008-07-21 00:32:11 +0200540 chunk = 0;
541 scratch = 0;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100542
Pierre Ossman76591502008-07-21 00:32:11 +0200543 local_irq_save(flags);
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100544
545 while (blksize) {
Fabio Estevambf3a35a2015-05-09 18:44:51 -0300546 BUG_ON(!sg_miter_next(&host->sg_miter));
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100547
Pierre Ossman76591502008-07-21 00:32:11 +0200548 len = min(host->sg_miter.length, blksize);
Alex Dubov14d836e2007-04-13 19:04:38 +0200549
Pierre Ossman76591502008-07-21 00:32:11 +0200550 blksize -= len;
551 host->sg_miter.consumed = len;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100552
Pierre Ossman76591502008-07-21 00:32:11 +0200553 buf = host->sg_miter.addr;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100554
Pierre Ossman76591502008-07-21 00:32:11 +0200555 while (len) {
556 scratch |= (u32)*buf << (chunk * 8);
557
558 buf++;
559 chunk++;
560 len--;
561
562 if ((chunk == 4) || ((len == 0) && (blksize == 0))) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300563 sdhci_writel(host, scratch, SDHCI_BUFFER);
Pierre Ossman76591502008-07-21 00:32:11 +0200564 chunk = 0;
565 scratch = 0;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100566 }
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100567 }
568 }
Pierre Ossman76591502008-07-21 00:32:11 +0200569
570 sg_miter_stop(&host->sg_miter);
571
572 local_irq_restore(flags);
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100573}
574
575static void sdhci_transfer_pio(struct sdhci_host *host)
576{
577 u32 mask;
578
Pierre Ossman76591502008-07-21 00:32:11 +0200579 if (host->blocks == 0)
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100580 return;
581
582 if (host->data->flags & MMC_DATA_READ)
583 mask = SDHCI_DATA_AVAILABLE;
584 else
585 mask = SDHCI_SPACE_AVAILABLE;
586
Pierre Ossman4a3cba32008-07-29 00:11:16 +0200587 /*
588 * Some controllers (JMicron JMB38x) mess up the buffer bits
589 * for transfers < 4 bytes. As long as it is just one block,
590 * we can ignore the bits.
591 */
592 if ((host->quirks & SDHCI_QUIRK_BROKEN_SMALL_PIO) &&
593 (host->data->blocks == 1))
594 mask = ~0;
595
Anton Vorontsov4e4141a2009-03-17 00:13:46 +0300596 while (sdhci_readl(host, SDHCI_PRESENT_STATE) & mask) {
Anton Vorontsov3e3bf202009-03-17 00:14:00 +0300597 if (host->quirks & SDHCI_QUIRK_PIO_NEEDS_DELAY)
598 udelay(100);
599
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100600 if (host->data->flags & MMC_DATA_READ)
601 sdhci_read_block_pio(host);
602 else
603 sdhci_write_block_pio(host);
604
Pierre Ossman76591502008-07-21 00:32:11 +0200605 host->blocks--;
606 if (host->blocks == 0)
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100607 break;
Pierre Ossmana406f5a2006-07-02 16:50:59 +0100608 }
609
610 DBG("PIO transfer complete.\n");
Pierre Ossmand129bce2006-03-24 03:18:17 -0800611}
612
Russell King48857d92016-01-26 13:40:16 +0000613static int sdhci_pre_dma_transfer(struct sdhci_host *host,
Russell Kingc0999b72016-01-26 13:40:27 +0000614 struct mmc_data *data, int cookie)
Russell King48857d92016-01-26 13:40:16 +0000615{
616 int sg_count;
617
Russell King94538e52016-01-26 13:40:37 +0000618 /*
619 * If the data buffers are already mapped, return the previous
620 * dma_map_sg() result.
621 */
622 if (data->host_cookie == COOKIE_PRE_MAPPED)
Russell King48857d92016-01-26 13:40:16 +0000623 return data->sg_count;
Russell King48857d92016-01-26 13:40:16 +0000624
Linus Walleijbd9b9022018-01-29 00:44:53 +0100625 /* Bounce write requests to the bounce buffer */
626 if (host->bounce_buffer) {
627 unsigned int length = data->blksz * data->blocks;
628
629 if (length > host->bounce_buffer_size) {
630 pr_err("%s: asked for transfer of %u bytes exceeds bounce buffer %u bytes\n",
631 mmc_hostname(host->mmc), length,
632 host->bounce_buffer_size);
633 return -EIO;
634 }
635 if (mmc_get_dma_dir(data) == DMA_TO_DEVICE) {
636 /* Copy the data to the bounce buffer */
637 sg_copy_to_buffer(data->sg, data->sg_len,
638 host->bounce_buffer,
639 length);
640 }
641 /* Switch ownership to the DMA */
642 dma_sync_single_for_device(host->mmc->parent,
643 host->bounce_addr,
644 host->bounce_buffer_size,
645 mmc_get_dma_dir(data));
646 /* Just a dummy value */
647 sg_count = 1;
648 } else {
649 /* Just access the data directly from memory */
650 sg_count = dma_map_sg(mmc_dev(host->mmc),
651 data->sg, data->sg_len,
652 mmc_get_dma_dir(data));
653 }
Russell King48857d92016-01-26 13:40:16 +0000654
655 if (sg_count == 0)
656 return -ENOSPC;
657
658 data->sg_count = sg_count;
Russell Kingc0999b72016-01-26 13:40:27 +0000659 data->host_cookie = cookie;
Russell King48857d92016-01-26 13:40:16 +0000660
661 return sg_count;
662}
663
Pierre Ossman2134a922008-06-28 18:28:51 +0200664static char *sdhci_kmap_atomic(struct scatterlist *sg, unsigned long *flags)
665{
666 local_irq_save(*flags);
Cong Wang482fce92011-11-27 13:27:00 +0800667 return kmap_atomic(sg_page(sg)) + sg->offset;
Pierre Ossman2134a922008-06-28 18:28:51 +0200668}
669
670static void sdhci_kunmap_atomic(void *buffer, unsigned long *flags)
671{
Cong Wang482fce92011-11-27 13:27:00 +0800672 kunmap_atomic(buffer);
Pierre Ossman2134a922008-06-28 18:28:51 +0200673 local_irq_restore(*flags);
674}
675
Jisheng Zhang54552e42018-08-28 17:47:23 +0800676void sdhci_adma_write_desc(struct sdhci_host *host, void **desc,
677 dma_addr_t addr, int len, unsigned int cmd)
Ben Dooks118cd172010-03-05 13:43:26 -0800678{
Jisheng Zhang54552e42018-08-28 17:47:23 +0800679 struct sdhci_adma2_64_desc *dma_desc = *desc;
Ben Dooks118cd172010-03-05 13:43:26 -0800680
Adrian Huntere57a5f62014-11-04 12:42:46 +0200681 /* 32-bit and 64-bit descriptors have these members in same position */
Adrian Hunter05452302014-11-04 12:42:45 +0200682 dma_desc->cmd = cpu_to_le16(cmd);
683 dma_desc->len = cpu_to_le16(len);
Masahiro Yamada38eee2e2019-08-29 20:22:06 +0900684 dma_desc->addr_lo = cpu_to_le32(lower_32_bits(addr));
Adrian Huntere57a5f62014-11-04 12:42:46 +0200685
686 if (host->flags & SDHCI_USE_64_BIT_DMA)
Masahiro Yamada38eee2e2019-08-29 20:22:06 +0900687 dma_desc->addr_hi = cpu_to_le32(upper_32_bits(addr));
Jisheng Zhang54552e42018-08-28 17:47:23 +0800688
689 *desc += host->desc_sz;
690}
691EXPORT_SYMBOL_GPL(sdhci_adma_write_desc);
692
693static inline void __sdhci_adma_write_desc(struct sdhci_host *host,
694 void **desc, dma_addr_t addr,
695 int len, unsigned int cmd)
696{
697 if (host->ops->adma_write_desc)
698 host->ops->adma_write_desc(host, desc, addr, len, cmd);
Jisheng Zhang07be55b2018-09-17 13:30:41 +0800699 else
700 sdhci_adma_write_desc(host, desc, addr, len, cmd);
Ben Dooks118cd172010-03-05 13:43:26 -0800701}
702
Adrian Hunterb5ffa672014-11-04 12:42:40 +0200703static void sdhci_adma_mark_end(void *desc)
704{
Adrian Huntere57a5f62014-11-04 12:42:46 +0200705 struct sdhci_adma2_64_desc *dma_desc = desc;
Adrian Hunterb5ffa672014-11-04 12:42:40 +0200706
Adrian Huntere57a5f62014-11-04 12:42:46 +0200707 /* 32-bit and 64-bit descriptors have 'cmd' in same position */
Adrian Hunter05452302014-11-04 12:42:45 +0200708 dma_desc->cmd |= cpu_to_le16(ADMA2_END);
Adrian Hunterb5ffa672014-11-04 12:42:40 +0200709}
710
Russell King60c64762016-01-26 13:40:22 +0000711static void sdhci_adma_table_pre(struct sdhci_host *host,
712 struct mmc_data *data, int sg_count)
Pierre Ossman2134a922008-06-28 18:28:51 +0200713{
Pierre Ossman2134a922008-06-28 18:28:51 +0200714 struct scatterlist *sg;
Pierre Ossman2134a922008-06-28 18:28:51 +0200715 unsigned long flags;
Russell Kingacc3ad12016-01-26 13:40:00 +0000716 dma_addr_t addr, align_addr;
717 void *desc, *align;
718 char *buffer;
719 int len, offset, i;
Pierre Ossman2134a922008-06-28 18:28:51 +0200720
721 /*
722 * The spec does not specify endianness of descriptor table.
723 * We currently guess that it is LE.
724 */
725
Russell King60c64762016-01-26 13:40:22 +0000726 host->sg_count = sg_count;
Pierre Ossman2134a922008-06-28 18:28:51 +0200727
Adrian Hunter4efaa6f2014-11-04 12:42:39 +0200728 desc = host->adma_table;
Pierre Ossman2134a922008-06-28 18:28:51 +0200729 align = host->align_buffer;
730
731 align_addr = host->align_addr;
732
733 for_each_sg(data->sg, sg, host->sg_count, i) {
734 addr = sg_dma_address(sg);
735 len = sg_dma_len(sg);
736
737 /*
Russell Kingacc3ad12016-01-26 13:40:00 +0000738 * The SDHCI specification states that ADMA addresses must
739 * be 32-bit aligned. If they aren't, then we use a bounce
740 * buffer for the (up to three) bytes that screw up the
Pierre Ossman2134a922008-06-28 18:28:51 +0200741 * alignment.
742 */
Adrian Hunter04a5ae62015-11-26 14:00:49 +0200743 offset = (SDHCI_ADMA2_ALIGN - (addr & SDHCI_ADMA2_MASK)) &
744 SDHCI_ADMA2_MASK;
Pierre Ossman2134a922008-06-28 18:28:51 +0200745 if (offset) {
746 if (data->flags & MMC_DATA_WRITE) {
747 buffer = sdhci_kmap_atomic(sg, &flags);
748 memcpy(align, buffer, offset);
749 sdhci_kunmap_atomic(buffer, &flags);
750 }
751
Ben Dooks118cd172010-03-05 13:43:26 -0800752 /* tran, valid */
Jisheng Zhang54552e42018-08-28 17:47:23 +0800753 __sdhci_adma_write_desc(host, &desc, align_addr,
754 offset, ADMA2_TRAN_VALID);
Pierre Ossman2134a922008-06-28 18:28:51 +0200755
756 BUG_ON(offset > 65536);
757
Adrian Hunter04a5ae62015-11-26 14:00:49 +0200758 align += SDHCI_ADMA2_ALIGN;
759 align_addr += SDHCI_ADMA2_ALIGN;
Pierre Ossman2134a922008-06-28 18:28:51 +0200760
Pierre Ossman2134a922008-06-28 18:28:51 +0200761 addr += offset;
762 len -= offset;
763 }
764
Pierre Ossman2134a922008-06-28 18:28:51 +0200765 BUG_ON(len > 65536);
766
Jisheng Zhang54552e42018-08-28 17:47:23 +0800767 /* tran, valid */
768 if (len)
769 __sdhci_adma_write_desc(host, &desc, addr, len,
770 ADMA2_TRAN_VALID);
Pierre Ossman2134a922008-06-28 18:28:51 +0200771
772 /*
773 * If this triggers then we have a calculation bug
774 * somewhere. :/
775 */
Adrian Hunter76fe3792014-11-04 12:42:42 +0200776 WARN_ON((desc - host->adma_table) >= host->adma_table_sz);
Pierre Ossman2134a922008-06-28 18:28:51 +0200777 }
778
Thomas Abraham70764a92010-05-26 14:42:04 -0700779 if (host->quirks & SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC) {
Russell Kingacc3ad12016-01-26 13:40:00 +0000780 /* Mark the last descriptor as the terminating descriptor */
Adrian Hunter4efaa6f2014-11-04 12:42:39 +0200781 if (desc != host->adma_table) {
Adrian Hunter76fe3792014-11-04 12:42:42 +0200782 desc -= host->desc_sz;
Adrian Hunterb5ffa672014-11-04 12:42:40 +0200783 sdhci_adma_mark_end(desc);
Thomas Abraham70764a92010-05-26 14:42:04 -0700784 }
785 } else {
Russell Kingacc3ad12016-01-26 13:40:00 +0000786 /* Add a terminating entry - nop, end, valid */
Jisheng Zhang54552e42018-08-28 17:47:23 +0800787 __sdhci_adma_write_desc(host, &desc, 0, 0, ADMA2_NOP_END_VALID);
Thomas Abraham70764a92010-05-26 14:42:04 -0700788 }
Pierre Ossman2134a922008-06-28 18:28:51 +0200789}
790
791static void sdhci_adma_table_post(struct sdhci_host *host,
792 struct mmc_data *data)
793{
Pierre Ossman2134a922008-06-28 18:28:51 +0200794 struct scatterlist *sg;
795 int i, size;
Adrian Hunter1c3d5f62014-11-04 12:42:41 +0200796 void *align;
Pierre Ossman2134a922008-06-28 18:28:51 +0200797 char *buffer;
798 unsigned long flags;
799
Russell King47fa9612016-01-26 13:40:06 +0000800 if (data->flags & MMC_DATA_READ) {
801 bool has_unaligned = false;
Russell Kingde0b65a2014-04-25 12:58:29 +0100802
Russell King47fa9612016-01-26 13:40:06 +0000803 /* Do a quick scan of the SG list for any unaligned mappings */
804 for_each_sg(data->sg, sg, host->sg_count, i)
Adrian Hunter04a5ae62015-11-26 14:00:49 +0200805 if (sg_dma_address(sg) & SDHCI_ADMA2_MASK) {
Russell King47fa9612016-01-26 13:40:06 +0000806 has_unaligned = true;
807 break;
808 }
Pierre Ossman2134a922008-06-28 18:28:51 +0200809
Russell King47fa9612016-01-26 13:40:06 +0000810 if (has_unaligned) {
811 dma_sync_sg_for_cpu(mmc_dev(host->mmc), data->sg,
Russell Kingf55c98f2016-01-26 13:40:11 +0000812 data->sg_len, DMA_FROM_DEVICE);
Pierre Ossman2134a922008-06-28 18:28:51 +0200813
Russell King47fa9612016-01-26 13:40:06 +0000814 align = host->align_buffer;
815
816 for_each_sg(data->sg, sg, host->sg_count, i) {
817 if (sg_dma_address(sg) & SDHCI_ADMA2_MASK) {
818 size = SDHCI_ADMA2_ALIGN -
819 (sg_dma_address(sg) & SDHCI_ADMA2_MASK);
820
821 buffer = sdhci_kmap_atomic(sg, &flags);
822 memcpy(buffer, align, size);
823 sdhci_kunmap_atomic(buffer, &flags);
824
825 align += SDHCI_ADMA2_ALIGN;
826 }
Pierre Ossman2134a922008-06-28 18:28:51 +0200827 }
828 }
829 }
Pierre Ossman2134a922008-06-28 18:28:51 +0200830}
831
Masahiro Yamada38eee2e2019-08-29 20:22:06 +0900832static void sdhci_set_adma_addr(struct sdhci_host *host, dma_addr_t addr)
833{
834 sdhci_writel(host, lower_32_bits(addr), SDHCI_ADMA_ADDRESS);
835 if (host->flags & SDHCI_USE_64_BIT_DMA)
836 sdhci_writel(host, upper_32_bits(addr), SDHCI_ADMA_ADDRESS_HI);
837}
838
Chunyan Zhang917a0c52018-08-30 16:21:39 +0800839static dma_addr_t sdhci_sdma_address(struct sdhci_host *host)
Linus Walleijbd9b9022018-01-29 00:44:53 +0100840{
841 if (host->bounce_buffer)
842 return host->bounce_addr;
843 else
844 return sg_dma_address(host->data->sg);
845}
846
Chunyan Zhang917a0c52018-08-30 16:21:39 +0800847static void sdhci_set_sdma_addr(struct sdhci_host *host, dma_addr_t addr)
848{
Masahiro Yamada38eee2e2019-08-29 20:22:06 +0900849 if (host->v4_mode)
850 sdhci_set_adma_addr(host, addr);
851 else
Chunyan Zhang917a0c52018-08-30 16:21:39 +0800852 sdhci_writel(host, addr, SDHCI_DMA_ADDRESS);
Chunyan Zhang917a0c52018-08-30 16:21:39 +0800853}
854
Adrian Hunter0bb28d72018-04-27 17:17:16 +0530855static unsigned int sdhci_target_timeout(struct sdhci_host *host,
856 struct mmc_command *cmd,
857 struct mmc_data *data)
858{
859 unsigned int target_timeout;
860
861 /* timeout in us */
862 if (!data) {
863 target_timeout = cmd->busy_timeout * 1000;
864 } else {
865 target_timeout = DIV_ROUND_UP(data->timeout_ns, 1000);
866 if (host->clock && data->timeout_clks) {
867 unsigned long long val;
868
869 /*
870 * data->timeout_clks is in units of clock cycles.
871 * host->clock is in Hz. target_timeout is in us.
872 * Hence, us = 1000000 * cycles / Hz. Round up.
873 */
874 val = 1000000ULL * data->timeout_clks;
875 if (do_div(val, host->clock))
876 target_timeout++;
877 target_timeout += val;
878 }
879 }
880
881 return target_timeout;
882}
883
Kishon Vijay Abraham Ifc1fa1b2018-04-27 17:17:17 +0530884static void sdhci_calc_sw_timeout(struct sdhci_host *host,
885 struct mmc_command *cmd)
886{
887 struct mmc_data *data = cmd->data;
888 struct mmc_host *mmc = host->mmc;
889 struct mmc_ios *ios = &mmc->ios;
890 unsigned char bus_width = 1 << ios->bus_width;
891 unsigned int blksz;
892 unsigned int freq;
893 u64 target_timeout;
894 u64 transfer_time;
895
896 target_timeout = sdhci_target_timeout(host, cmd, data);
897 target_timeout *= NSEC_PER_USEC;
898
899 if (data) {
900 blksz = data->blksz;
901 freq = host->mmc->actual_clock ? : host->clock;
902 transfer_time = (u64)blksz * NSEC_PER_SEC * (8 / bus_width);
903 do_div(transfer_time, freq);
904 /* multiply by '2' to account for any unknowns */
905 transfer_time = transfer_time * 2;
906 /* calculate timeout for the entire data */
907 host->data_timeout = data->blocks * target_timeout +
908 transfer_time;
909 } else {
910 host->data_timeout = target_timeout;
911 }
912
913 if (host->data_timeout)
914 host->data_timeout += MMC_CMD_TRANSFER_TIME;
915}
916
Adrian Huntera999fd92018-04-27 17:17:15 +0530917static u8 sdhci_calc_timeout(struct sdhci_host *host, struct mmc_command *cmd,
918 bool *too_big)
Pierre Ossmand129bce2006-03-24 03:18:17 -0800919{
Pierre Ossman1c8cde92006-06-30 02:22:25 -0700920 u8 count;
BOUGH CHEN401059d2019-01-07 10:11:36 +0000921 struct mmc_data *data;
Pierre Ossman1c8cde92006-06-30 02:22:25 -0700922 unsigned target_timeout, current_timeout;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800923
Adrian Huntera999fd92018-04-27 17:17:15 +0530924 *too_big = true;
925
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200926 /*
927 * If the host controller provides us with an incorrect timeout
928 * value, just skip the check and use 0xE. The hardware may take
929 * longer to time out, but that's much better than having a too-short
930 * timeout value.
931 */
Pierre Ossman11a2f1b2009-06-21 20:59:33 +0200932 if (host->quirks & SDHCI_QUIRK_BROKEN_TIMEOUT_VAL)
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200933 return 0xE;
Pierre Ossmane538fbe2007-08-12 16:46:32 +0200934
BOUGH CHEN401059d2019-01-07 10:11:36 +0000935 /* Unspecified command, asume max */
936 if (cmd == NULL)
937 return 0xE;
938
939 data = cmd->data;
Andrei Warkentina3c77782011-04-11 16:13:42 -0500940 /* Unspecified timeout, assume max */
Ulf Hansson1d4d7742014-01-08 15:06:08 +0100941 if (!data && !cmd->busy_timeout)
Andrei Warkentina3c77782011-04-11 16:13:42 -0500942 return 0xE;
Pierre Ossmand129bce2006-03-24 03:18:17 -0800943
Andrei Warkentina3c77782011-04-11 16:13:42 -0500944 /* timeout in us */
Adrian Hunter0bb28d72018-04-27 17:17:16 +0530945 target_timeout = sdhci_target_timeout(host, cmd, data);
Anton Vorontsov81b39802009-09-22 16:45:13 -0700946
Pierre Ossman1c8cde92006-06-30 02:22:25 -0700947 /*
948 * Figure out needed cycles.
949 * We do this in steps in order to fit inside a 32 bit int.
950 * The first step is the minimum timeout, which will have a
951 * minimum resolution of 6 bits:
952 * (1) 2^13*1000 > 2^22,
953 * (2) host->timeout_clk < 2^16
954 * =>
955 * (1) / (2) > 2^6
956 */
957 count = 0;
958 current_timeout = (1 << 13) * 1000 / host->timeout_clk;
959 while (current_timeout < target_timeout) {
960 count++;
961 current_timeout <<= 1;
962 if (count >= 0xF)
963 break;
964 }
965
966 if (count >= 0xF) {
Adrian Huntera999fd92018-04-27 17:17:15 +0530967 if (!(host->quirks2 & SDHCI_QUIRK2_DISABLE_HW_TIMEOUT))
968 DBG("Too large timeout 0x%x requested for CMD%d!\n",
969 count, cmd->opcode);
Pierre Ossman1c8cde92006-06-30 02:22:25 -0700970 count = 0xE;
Adrian Huntera999fd92018-04-27 17:17:15 +0530971 } else {
972 *too_big = false;
Pierre Ossman1c8cde92006-06-30 02:22:25 -0700973 }
974
Pierre Ossmanee53ab52008-07-05 00:25:15 +0200975 return count;
976}
977
Anton Vorontsov6aa943a2009-03-17 00:13:50 +0300978static void sdhci_set_transfer_irqs(struct sdhci_host *host)
979{
980 u32 pio_irqs = SDHCI_INT_DATA_AVAIL | SDHCI_INT_SPACE_AVAIL;
981 u32 dma_irqs = SDHCI_INT_DMA_END | SDHCI_INT_ADMA_ERROR;
982
983 if (host->flags & SDHCI_REQ_USE_DMA)
Russell Kingb537f942014-04-25 12:56:01 +0100984 host->ier = (host->ier & ~pio_irqs) | dma_irqs;
Anton Vorontsov6aa943a2009-03-17 00:13:50 +0300985 else
Russell Kingb537f942014-04-25 12:56:01 +0100986 host->ier = (host->ier & ~dma_irqs) | pio_irqs;
987
Adrian Hunteraf849c82018-11-15 15:53:43 +0200988 if (host->flags & (SDHCI_AUTO_CMD23 | SDHCI_AUTO_CMD12))
989 host->ier |= SDHCI_INT_AUTO_CMD_ERR;
990 else
991 host->ier &= ~SDHCI_INT_AUTO_CMD_ERR;
992
Russell Kingb537f942014-04-25 12:56:01 +0100993 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
994 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Anton Vorontsov6aa943a2009-03-17 00:13:50 +0300995}
996
Faiz Abbas7907ebe2020-01-16 16:21:49 +0530997void sdhci_set_data_timeout_irq(struct sdhci_host *host, bool enable)
Adrian Huntera999fd92018-04-27 17:17:15 +0530998{
999 if (enable)
1000 host->ier |= SDHCI_INT_DATA_TIMEOUT;
1001 else
1002 host->ier &= ~SDHCI_INT_DATA_TIMEOUT;
1003 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
1004 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
1005}
Faiz Abbas7907ebe2020-01-16 16:21:49 +05301006EXPORT_SYMBOL_GPL(sdhci_set_data_timeout_irq);
Adrian Huntera999fd92018-04-27 17:17:15 +05301007
Faiz Abbas7d76ed72020-01-16 16:21:50 +05301008void __sdhci_set_timeout(struct sdhci_host *host, struct mmc_command *cmd)
1009{
1010 bool too_big = false;
1011 u8 count = sdhci_calc_timeout(host, cmd, &too_big);
1012
1013 if (too_big &&
1014 host->quirks2 & SDHCI_QUIRK2_DISABLE_HW_TIMEOUT) {
1015 sdhci_calc_sw_timeout(host, cmd);
1016 sdhci_set_data_timeout_irq(host, false);
1017 } else if (!(host->ier & SDHCI_INT_DATA_TIMEOUT)) {
1018 sdhci_set_data_timeout_irq(host, true);
1019 }
1020
1021 sdhci_writeb(host, count, SDHCI_TIMEOUT_CONTROL);
1022}
1023EXPORT_SYMBOL_GPL(__sdhci_set_timeout);
1024
Aisheng Dongb45e6682014-08-27 15:26:29 +08001025static void sdhci_set_timeout(struct sdhci_host *host, struct mmc_command *cmd)
Pierre Ossmanee53ab52008-07-05 00:25:15 +02001026{
Faiz Abbas7d76ed72020-01-16 16:21:50 +05301027 if (host->ops->set_timeout)
Aisheng Dongb45e6682014-08-27 15:26:29 +08001028 host->ops->set_timeout(host, cmd);
Faiz Abbas7d76ed72020-01-16 16:21:50 +05301029 else
1030 __sdhci_set_timeout(host, cmd);
Aisheng Dongb45e6682014-08-27 15:26:29 +08001031}
1032
Faiz Abbas15db1832020-01-16 16:21:46 +05301033static void sdhci_initialize_data(struct sdhci_host *host,
1034 struct mmc_data *data)
Aisheng Dongb45e6682014-08-27 15:26:29 +08001035{
Adrian Hunter43dea092016-06-29 16:24:26 +03001036 WARN_ON(host->data);
1037
Pierre Ossmanee53ab52008-07-05 00:25:15 +02001038 /* Sanity checks */
1039 BUG_ON(data->blksz * data->blocks > 524288);
1040 BUG_ON(data->blksz > host->mmc->max_blk_size);
1041 BUG_ON(data->blocks > 65535);
1042
1043 host->data = data;
1044 host->data_early = 0;
Mikko Vinnif6a03cb2011-04-12 09:36:18 -04001045 host->data->bytes_xfered = 0;
Faiz Abbas15db1832020-01-16 16:21:46 +05301046}
1047
1048static inline void sdhci_set_block_info(struct sdhci_host *host,
1049 struct mmc_data *data)
1050{
1051 /* Set the DMA boundary value and block size */
1052 sdhci_writew(host,
1053 SDHCI_MAKE_BLKSZ(host->sdma_boundary, data->blksz),
1054 SDHCI_BLOCK_SIZE);
1055 /*
1056 * For Version 4.10 onwards, if v4 mode is enabled, 32-bit Block Count
1057 * can be supported, in that case 16-bit block count register must be 0.
1058 */
1059 if (host->version >= SDHCI_SPEC_410 && host->v4_mode &&
1060 (host->quirks2 & SDHCI_QUIRK2_USE_32BIT_BLK_CNT)) {
1061 if (sdhci_readw(host, SDHCI_BLOCK_COUNT))
1062 sdhci_writew(host, 0, SDHCI_BLOCK_COUNT);
1063 sdhci_writew(host, data->blocks, SDHCI_32BIT_BLK_CNT);
1064 } else {
1065 sdhci_writew(host, data->blocks, SDHCI_BLOCK_COUNT);
1066 }
1067}
1068
1069static void sdhci_prepare_data(struct sdhci_host *host, struct mmc_command *cmd)
1070{
1071 struct mmc_data *data = cmd->data;
1072
1073 sdhci_initialize_data(host, data);
Pierre Ossmanee53ab52008-07-05 00:25:15 +02001074
Russell Kingfce14422016-01-26 13:41:20 +00001075 if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
Pierre Ossman2134a922008-06-28 18:28:51 +02001076 struct scatterlist *sg;
Russell Kingdf953922016-01-26 13:41:14 +00001077 unsigned int length_mask, offset_mask;
Russell Kinga0eaf0f2016-01-26 13:41:09 +00001078 int i;
Pierre Ossman2134a922008-06-28 18:28:51 +02001079
Russell Kingfce14422016-01-26 13:41:20 +00001080 host->flags |= SDHCI_REQ_USE_DMA;
1081
1082 /*
1083 * FIXME: This doesn't account for merging when mapping the
1084 * scatterlist.
1085 *
1086 * The assumption here being that alignment and lengths are
1087 * the same after DMA mapping to device address space.
1088 */
Russell Kinga0eaf0f2016-01-26 13:41:09 +00001089 length_mask = 0;
Russell Kingdf953922016-01-26 13:41:14 +00001090 offset_mask = 0;
Pierre Ossman2134a922008-06-28 18:28:51 +02001091 if (host->flags & SDHCI_USE_ADMA) {
Russell Kingdf953922016-01-26 13:41:14 +00001092 if (host->quirks & SDHCI_QUIRK_32BIT_ADMA_SIZE) {
Russell Kinga0eaf0f2016-01-26 13:41:09 +00001093 length_mask = 3;
Russell Kingdf953922016-01-26 13:41:14 +00001094 /*
1095 * As we use up to 3 byte chunks to work
1096 * around alignment problems, we need to
1097 * check the offset as well.
1098 */
1099 offset_mask = 3;
1100 }
Pierre Ossman2134a922008-06-28 18:28:51 +02001101 } else {
1102 if (host->quirks & SDHCI_QUIRK_32BIT_DMA_SIZE)
Russell Kinga0eaf0f2016-01-26 13:41:09 +00001103 length_mask = 3;
Russell Kingdf953922016-01-26 13:41:14 +00001104 if (host->quirks & SDHCI_QUIRK_32BIT_DMA_ADDR)
1105 offset_mask = 3;
Pierre Ossman2134a922008-06-28 18:28:51 +02001106 }
1107
Russell Kingdf953922016-01-26 13:41:14 +00001108 if (unlikely(length_mask | offset_mask)) {
Pierre Ossman2134a922008-06-28 18:28:51 +02001109 for_each_sg(data->sg, sg, data->sg_len, i) {
Russell Kinga0eaf0f2016-01-26 13:41:09 +00001110 if (sg->length & length_mask) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01001111 DBG("Reverting to PIO because of transfer size (%d)\n",
Russell Kinga0eaf0f2016-01-26 13:41:09 +00001112 sg->length);
Pierre Ossman2134a922008-06-28 18:28:51 +02001113 host->flags &= ~SDHCI_REQ_USE_DMA;
1114 break;
1115 }
Russell Kinga0eaf0f2016-01-26 13:41:09 +00001116 if (sg->offset & offset_mask) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01001117 DBG("Reverting to PIO because of bad alignment\n");
Pierre Ossman2134a922008-06-28 18:28:51 +02001118 host->flags &= ~SDHCI_REQ_USE_DMA;
1119 break;
1120 }
1121 }
1122 }
1123 }
1124
Pierre Ossman8f1934c2008-06-30 21:15:49 +02001125 if (host->flags & SDHCI_REQ_USE_DMA) {
Russell Kingc0999b72016-01-26 13:40:27 +00001126 int sg_cnt = sdhci_pre_dma_transfer(host, data, COOKIE_MAPPED);
Pierre Ossman8f1934c2008-06-30 21:15:49 +02001127
Russell King60c64762016-01-26 13:40:22 +00001128 if (sg_cnt <= 0) {
1129 /*
1130 * This only happens when someone fed
1131 * us an invalid request.
1132 */
1133 WARN_ON(1);
1134 host->flags &= ~SDHCI_REQ_USE_DMA;
1135 } else if (host->flags & SDHCI_USE_ADMA) {
1136 sdhci_adma_table_pre(host, data, sg_cnt);
Masahiro Yamada38eee2e2019-08-29 20:22:06 +09001137 sdhci_set_adma_addr(host, host->adma_addr);
Russell King60c64762016-01-26 13:40:22 +00001138 } else {
1139 WARN_ON(sg_cnt != 1);
Chunyan Zhang917a0c52018-08-30 16:21:39 +08001140 sdhci_set_sdma_addr(host, sdhci_sdma_address(host));
Pierre Ossman8f1934c2008-06-30 21:15:49 +02001141 }
1142 }
1143
Chunyan Zhang685e4442018-08-30 16:21:40 +08001144 sdhci_config_dma(host);
Pierre Ossmanc9fddbc2007-12-02 19:52:11 +01001145
Pierre Ossman8f1934c2008-06-30 21:15:49 +02001146 if (!(host->flags & SDHCI_REQ_USE_DMA)) {
Sebastian Andrzej Siewiorda60a912009-06-18 09:33:32 +02001147 int flags;
1148
1149 flags = SG_MITER_ATOMIC;
1150 if (host->data->flags & MMC_DATA_READ)
1151 flags |= SG_MITER_TO_SG;
1152 else
1153 flags |= SG_MITER_FROM_SG;
1154 sg_miter_start(&host->sg_miter, data->sg, data->sg_len, flags);
Pierre Ossman76591502008-07-21 00:32:11 +02001155 host->blocks = data->blocks;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001156 }
Pierre Ossmanc7fa9962006-06-30 02:22:25 -07001157
Anton Vorontsov6aa943a2009-03-17 00:13:50 +03001158 sdhci_set_transfer_irqs(host);
1159
Faiz Abbas15db1832020-01-16 16:21:46 +05301160 sdhci_set_block_info(host, data);
Pierre Ossmanc7fa9962006-06-30 02:22:25 -07001161}
1162
Chunyan Zhang18e762e2020-01-16 16:21:47 +05301163#if IS_ENABLED(CONFIG_MMC_SDHCI_EXTERNAL_DMA)
1164
1165static int sdhci_external_dma_init(struct sdhci_host *host)
1166{
1167 int ret = 0;
1168 struct mmc_host *mmc = host->mmc;
1169
1170 host->tx_chan = dma_request_chan(mmc->parent, "tx");
1171 if (IS_ERR(host->tx_chan)) {
1172 ret = PTR_ERR(host->tx_chan);
1173 if (ret != -EPROBE_DEFER)
1174 pr_warn("Failed to request TX DMA channel.\n");
1175 host->tx_chan = NULL;
1176 return ret;
1177 }
1178
1179 host->rx_chan = dma_request_chan(mmc->parent, "rx");
1180 if (IS_ERR(host->rx_chan)) {
1181 if (host->tx_chan) {
1182 dma_release_channel(host->tx_chan);
1183 host->tx_chan = NULL;
1184 }
1185
1186 ret = PTR_ERR(host->rx_chan);
1187 if (ret != -EPROBE_DEFER)
1188 pr_warn("Failed to request RX DMA channel.\n");
1189 host->rx_chan = NULL;
1190 }
1191
1192 return ret;
1193}
1194
1195static struct dma_chan *sdhci_external_dma_channel(struct sdhci_host *host,
1196 struct mmc_data *data)
1197{
1198 return data->flags & MMC_DATA_WRITE ? host->tx_chan : host->rx_chan;
1199}
1200
1201static int sdhci_external_dma_setup(struct sdhci_host *host,
1202 struct mmc_command *cmd)
1203{
1204 int ret, i;
Chunyan Zhang1215c022020-01-20 11:32:23 +08001205 enum dma_transfer_direction dir;
Chunyan Zhang18e762e2020-01-16 16:21:47 +05301206 struct dma_async_tx_descriptor *desc;
1207 struct mmc_data *data = cmd->data;
1208 struct dma_chan *chan;
1209 struct dma_slave_config cfg;
1210 dma_cookie_t cookie;
1211 int sg_cnt;
1212
1213 if (!host->mapbase)
1214 return -EINVAL;
1215
1216 cfg.src_addr = host->mapbase + SDHCI_BUFFER;
1217 cfg.dst_addr = host->mapbase + SDHCI_BUFFER;
1218 cfg.src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
1219 cfg.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
1220 cfg.src_maxburst = data->blksz / 4;
1221 cfg.dst_maxburst = data->blksz / 4;
1222
1223 /* Sanity check: all the SG entries must be aligned by block size. */
1224 for (i = 0; i < data->sg_len; i++) {
1225 if ((data->sg + i)->length % data->blksz)
1226 return -EINVAL;
1227 }
1228
1229 chan = sdhci_external_dma_channel(host, data);
1230
1231 ret = dmaengine_slave_config(chan, &cfg);
1232 if (ret)
1233 return ret;
1234
1235 sg_cnt = sdhci_pre_dma_transfer(host, data, COOKIE_MAPPED);
1236 if (sg_cnt <= 0)
1237 return -EINVAL;
1238
Chunyan Zhang1215c022020-01-20 11:32:23 +08001239 dir = data->flags & MMC_DATA_WRITE ? DMA_MEM_TO_DEV : DMA_DEV_TO_MEM;
1240 desc = dmaengine_prep_slave_sg(chan, data->sg, data->sg_len, dir,
Chunyan Zhang18e762e2020-01-16 16:21:47 +05301241 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
1242 if (!desc)
1243 return -EINVAL;
1244
1245 desc->callback = NULL;
1246 desc->callback_param = NULL;
1247
1248 cookie = dmaengine_submit(desc);
1249 if (dma_submit_error(cookie))
1250 ret = cookie;
1251
1252 return ret;
1253}
1254
1255static void sdhci_external_dma_release(struct sdhci_host *host)
1256{
1257 if (host->tx_chan) {
1258 dma_release_channel(host->tx_chan);
1259 host->tx_chan = NULL;
1260 }
1261
1262 if (host->rx_chan) {
1263 dma_release_channel(host->rx_chan);
1264 host->rx_chan = NULL;
1265 }
1266
1267 sdhci_switch_external_dma(host, false);
1268}
1269
1270static void __sdhci_external_dma_prepare_data(struct sdhci_host *host,
1271 struct mmc_command *cmd)
1272{
1273 struct mmc_data *data = cmd->data;
1274
1275 sdhci_initialize_data(host, data);
1276
1277 host->flags |= SDHCI_REQ_USE_DMA;
1278 sdhci_set_transfer_irqs(host);
1279
1280 sdhci_set_block_info(host, data);
1281}
1282
1283static void sdhci_external_dma_prepare_data(struct sdhci_host *host,
1284 struct mmc_command *cmd)
1285{
1286 if (!sdhci_external_dma_setup(host, cmd)) {
1287 __sdhci_external_dma_prepare_data(host, cmd);
1288 } else {
1289 sdhci_external_dma_release(host);
1290 pr_err("%s: Cannot use external DMA, switch to the DMA/PIO which standard SDHCI provides.\n",
1291 mmc_hostname(host->mmc));
1292 sdhci_prepare_data(host, cmd);
1293 }
1294}
1295
1296static void sdhci_external_dma_pre_transfer(struct sdhci_host *host,
1297 struct mmc_command *cmd)
1298{
1299 struct dma_chan *chan;
1300
1301 if (!cmd->data)
1302 return;
1303
1304 chan = sdhci_external_dma_channel(host, cmd->data);
1305 if (chan)
1306 dma_async_issue_pending(chan);
1307}
1308
1309#else
1310
1311static inline int sdhci_external_dma_init(struct sdhci_host *host)
1312{
1313 return -EOPNOTSUPP;
1314}
1315
1316static inline void sdhci_external_dma_release(struct sdhci_host *host)
1317{
1318}
1319
1320static inline void sdhci_external_dma_prepare_data(struct sdhci_host *host,
1321 struct mmc_command *cmd)
1322{
1323 /* This should never happen */
1324 WARN_ON_ONCE(1);
1325}
1326
1327static inline void sdhci_external_dma_pre_transfer(struct sdhci_host *host,
1328 struct mmc_command *cmd)
1329{
1330}
1331
1332static inline struct dma_chan *sdhci_external_dma_channel(struct sdhci_host *host,
1333 struct mmc_data *data)
1334{
1335 return NULL;
1336}
1337
1338#endif
1339
1340void sdhci_switch_external_dma(struct sdhci_host *host, bool en)
1341{
1342 host->use_external_dma = en;
1343}
1344EXPORT_SYMBOL_GPL(sdhci_switch_external_dma);
1345
Adrian Hunter0293d502016-06-29 16:24:35 +03001346static inline bool sdhci_auto_cmd12(struct sdhci_host *host,
1347 struct mmc_request *mrq)
1348{
Adrian Hunter20845be2016-08-16 13:44:13 +03001349 return !mrq->sbc && (host->flags & SDHCI_AUTO_CMD12) &&
1350 !mrq->cap_cmd_during_tfr;
Adrian Hunter0293d502016-06-29 16:24:35 +03001351}
1352
Adrian Huntered633032020-04-12 12:03:45 +03001353static inline bool sdhci_auto_cmd23(struct sdhci_host *host,
1354 struct mmc_request *mrq)
1355{
1356 return mrq->sbc && (host->flags & SDHCI_AUTO_CMD23);
1357}
1358
1359static inline bool sdhci_manual_cmd23(struct sdhci_host *host,
1360 struct mmc_request *mrq)
1361{
1362 return mrq->sbc && !(host->flags & SDHCI_AUTO_CMD23);
1363}
1364
Chunyan Zhang427b6512018-08-30 16:21:42 +08001365static inline void sdhci_auto_cmd_select(struct sdhci_host *host,
1366 struct mmc_command *cmd,
1367 u16 *mode)
1368{
1369 bool use_cmd12 = sdhci_auto_cmd12(host, cmd->mrq) &&
1370 (cmd->opcode != SD_IO_RW_EXTENDED);
Adrian Huntered633032020-04-12 12:03:45 +03001371 bool use_cmd23 = sdhci_auto_cmd23(host, cmd->mrq);
Chunyan Zhang427b6512018-08-30 16:21:42 +08001372 u16 ctrl2;
1373
1374 /*
1375 * In case of Version 4.10 or later, use of 'Auto CMD Auto
1376 * Select' is recommended rather than use of 'Auto CMD12
1377 * Enable' or 'Auto CMD23 Enable'.
1378 */
1379 if (host->version >= SDHCI_SPEC_410 && (use_cmd12 || use_cmd23)) {
1380 *mode |= SDHCI_TRNS_AUTO_SEL;
1381
1382 ctrl2 = sdhci_readw(host, SDHCI_HOST_CONTROL2);
1383 if (use_cmd23)
1384 ctrl2 |= SDHCI_CMD23_ENABLE;
1385 else
1386 ctrl2 &= ~SDHCI_CMD23_ENABLE;
1387 sdhci_writew(host, ctrl2, SDHCI_HOST_CONTROL2);
1388
1389 return;
1390 }
1391
1392 /*
1393 * If we are sending CMD23, CMD12 never gets sent
1394 * on successful completion (so no Auto-CMD12).
1395 */
1396 if (use_cmd12)
1397 *mode |= SDHCI_TRNS_AUTO_CMD12;
1398 else if (use_cmd23)
1399 *mode |= SDHCI_TRNS_AUTO_CMD23;
1400}
1401
Pierre Ossmanc7fa9962006-06-30 02:22:25 -07001402static void sdhci_set_transfer_mode(struct sdhci_host *host,
Andrei Warkentine89d4562011-05-23 15:06:37 -05001403 struct mmc_command *cmd)
Pierre Ossmanc7fa9962006-06-30 02:22:25 -07001404{
Vincent Yangd3fc5d72015-01-20 16:05:17 +08001405 u16 mode = 0;
Andrei Warkentine89d4562011-05-23 15:06:37 -05001406 struct mmc_data *data = cmd->data;
Pierre Ossmanc7fa9962006-06-30 02:22:25 -07001407
Dong Aisheng2b558c12013-10-30 22:09:48 +08001408 if (data == NULL) {
Vincent Wan9b8ffea2014-11-05 14:09:00 +08001409 if (host->quirks2 &
1410 SDHCI_QUIRK2_CLEAR_TRANSFERMODE_REG_BEFORE_CMD) {
ernest.zhang0086fc22018-07-16 14:26:54 +08001411 /* must not clear SDHCI_TRANSFER_MODE when tuning */
1412 if (cmd->opcode != MMC_SEND_TUNING_BLOCK_HS200)
1413 sdhci_writew(host, 0x0, SDHCI_TRANSFER_MODE);
Vincent Wan9b8ffea2014-11-05 14:09:00 +08001414 } else {
Dong Aisheng2b558c12013-10-30 22:09:48 +08001415 /* clear Auto CMD settings for no data CMDs */
Vincent Wan9b8ffea2014-11-05 14:09:00 +08001416 mode = sdhci_readw(host, SDHCI_TRANSFER_MODE);
1417 sdhci_writew(host, mode & ~(SDHCI_TRNS_AUTO_CMD12 |
Dong Aisheng2b558c12013-10-30 22:09:48 +08001418 SDHCI_TRNS_AUTO_CMD23), SDHCI_TRANSFER_MODE);
Vincent Wan9b8ffea2014-11-05 14:09:00 +08001419 }
Pierre Ossmanc7fa9962006-06-30 02:22:25 -07001420 return;
Dong Aisheng2b558c12013-10-30 22:09:48 +08001421 }
Pierre Ossmanc7fa9962006-06-30 02:22:25 -07001422
Pierre Ossmane538fbe2007-08-12 16:46:32 +02001423 WARN_ON(!host->data);
1424
Vincent Yangd3fc5d72015-01-20 16:05:17 +08001425 if (!(host->quirks2 & SDHCI_QUIRK2_SUPPORT_SINGLE))
1426 mode = SDHCI_TRNS_BLK_CNT_EN;
1427
Andrei Warkentine89d4562011-05-23 15:06:37 -05001428 if (mmc_op_multi(cmd->opcode) || data->blocks > 1) {
Vincent Yangd3fc5d72015-01-20 16:05:17 +08001429 mode = SDHCI_TRNS_BLK_CNT_EN | SDHCI_TRNS_MULTI;
Chunyan Zhang427b6512018-08-30 16:21:42 +08001430 sdhci_auto_cmd_select(host, cmd, &mode);
Adrian Huntered633032020-04-12 12:03:45 +03001431 if (sdhci_auto_cmd23(host, cmd->mrq))
Adrian Huntera4c73ab2016-06-29 16:24:25 +03001432 sdhci_writel(host, cmd->mrq->sbc->arg, SDHCI_ARGUMENT2);
Jerry Huangc4512f72010-08-10 18:01:59 -07001433 }
Andrei Warkentin8edf63712011-05-23 15:06:39 -05001434
Pierre Ossmanc7fa9962006-06-30 02:22:25 -07001435 if (data->flags & MMC_DATA_READ)
1436 mode |= SDHCI_TRNS_READ;
Pierre Ossmanc9fddbc2007-12-02 19:52:11 +01001437 if (host->flags & SDHCI_REQ_USE_DMA)
Pierre Ossmanc7fa9962006-06-30 02:22:25 -07001438 mode |= SDHCI_TRNS_DMA;
1439
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001440 sdhci_writew(host, mode, SDHCI_TRANSFER_MODE);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001441}
1442
Adrian Hunter0cc563c2016-06-29 16:24:28 +03001443static bool sdhci_needs_reset(struct sdhci_host *host, struct mmc_request *mrq)
1444{
1445 return (!(host->flags & SDHCI_DEVICE_DEAD) &&
1446 ((mrq->cmd && mrq->cmd->error) ||
1447 (mrq->sbc && mrq->sbc->error) ||
Adrian Hunter4bf78092018-11-15 15:53:41 +02001448 (mrq->data && mrq->data->stop && mrq->data->stop->error) ||
Adrian Hunter0cc563c2016-06-29 16:24:28 +03001449 (host->quirks & SDHCI_QUIRK_RESET_AFTER_REQUEST)));
1450}
1451
Faiz Abbas15db1832020-01-16 16:21:46 +05301452static void sdhci_set_mrq_done(struct sdhci_host *host, struct mmc_request *mrq)
Adrian Hunter4e9f8fe2016-06-29 16:24:34 +03001453{
1454 int i;
1455
1456 for (i = 0; i < SDHCI_MAX_MRQS; i++) {
1457 if (host->mrqs_done[i] == mrq) {
1458 WARN_ON(1);
1459 return;
1460 }
1461 }
1462
1463 for (i = 0; i < SDHCI_MAX_MRQS; i++) {
1464 if (!host->mrqs_done[i]) {
1465 host->mrqs_done[i] = mrq;
1466 break;
1467 }
1468 }
1469
1470 WARN_ON(i >= SDHCI_MAX_MRQS);
Faiz Abbas15db1832020-01-16 16:21:46 +05301471}
1472
1473static void __sdhci_finish_mrq(struct sdhci_host *host, struct mmc_request *mrq)
1474{
1475 if (host->cmd && host->cmd->mrq == mrq)
1476 host->cmd = NULL;
1477
1478 if (host->data_cmd && host->data_cmd->mrq == mrq)
1479 host->data_cmd = NULL;
1480
1481 if (host->data && host->data->mrq == mrq)
1482 host->data = NULL;
1483
1484 if (sdhci_needs_reset(host, mrq))
1485 host->pending_reset = true;
1486
1487 sdhci_set_mrq_done(host, mrq);
Adrian Hunter4e9f8fe2016-06-29 16:24:34 +03001488
Adrian Huntere9a07292019-04-05 15:40:18 +03001489 sdhci_del_timer(host, mrq);
1490
1491 if (!sdhci_has_requests(host))
1492 sdhci_led_deactivate(host);
Adrian Hunter4e9f8fe2016-06-29 16:24:34 +03001493}
1494
Adrian Huntera6d3bdd2016-06-29 16:24:27 +03001495static void sdhci_finish_mrq(struct sdhci_host *host, struct mmc_request *mrq)
1496{
Adrian Hunter4e9f8fe2016-06-29 16:24:34 +03001497 __sdhci_finish_mrq(host, mrq);
Adrian Hunter2e72ab92019-04-05 15:40:16 +03001498
Adrian Hunterc07a48c2019-04-05 15:40:20 +03001499 queue_work(host->complete_wq, &host->complete_work);
Adrian Huntera6d3bdd2016-06-29 16:24:27 +03001500}
1501
Pierre Ossmand129bce2006-03-24 03:18:17 -08001502static void sdhci_finish_data(struct sdhci_host *host)
1503{
Adrian Hunter33a57ad2016-06-29 16:24:36 +03001504 struct mmc_command *data_cmd = host->data_cmd;
1505 struct mmc_data *data = host->data;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001506
Pierre Ossmand129bce2006-03-24 03:18:17 -08001507 host->data = NULL;
Adrian Hunter7c89a3d2016-06-29 16:24:23 +03001508 host->data_cmd = NULL;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001509
Adrian Hunter4bf78092018-11-15 15:53:41 +02001510 /*
1511 * The controller needs a reset of internal state machines upon error
1512 * conditions.
1513 */
1514 if (data->error) {
1515 if (!host->cmd || host->cmd == data_cmd)
1516 sdhci_do_reset(host, SDHCI_RESET_CMD);
1517 sdhci_do_reset(host, SDHCI_RESET_DATA);
1518 }
1519
Russell Kingadd89132016-01-26 13:40:42 +00001520 if ((host->flags & (SDHCI_REQ_USE_DMA | SDHCI_USE_ADMA)) ==
1521 (SDHCI_REQ_USE_DMA | SDHCI_USE_ADMA))
1522 sdhci_adma_table_post(host, data);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001523
1524 /*
Pierre Ossmanc9b74c52008-04-18 20:41:49 +02001525 * The specification states that the block count register must
1526 * be updated, but it does not specify at what point in the
1527 * data flow. That makes the register entirely useless to read
1528 * back so we have to assume that nothing made it to the card
1529 * in the event of an error.
Pierre Ossmand129bce2006-03-24 03:18:17 -08001530 */
Pierre Ossmanc9b74c52008-04-18 20:41:49 +02001531 if (data->error)
1532 data->bytes_xfered = 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001533 else
Pierre Ossmanc9b74c52008-04-18 20:41:49 +02001534 data->bytes_xfered = data->blksz * data->blocks;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001535
Andrei Warkentine89d4562011-05-23 15:06:37 -05001536 /*
1537 * Need to send CMD12 if -
Yangbo Lufdbbe6c2019-11-14 19:18:14 +08001538 * a) open-ended multiblock transfer not using auto CMD12 (no CMD23)
Andrei Warkentine89d4562011-05-23 15:06:37 -05001539 * b) error in multiblock transfer
1540 */
1541 if (data->stop &&
Yangbo Lufdbbe6c2019-11-14 19:18:14 +08001542 ((!data->mrq->sbc && !sdhci_auto_cmd12(host, data->mrq)) ||
1543 data->error)) {
Adrian Hunter20845be2016-08-16 13:44:13 +03001544 /*
1545 * 'cap_cmd_during_tfr' request must not use the command line
1546 * after mmc_command_done() has been called. It is upper layer's
1547 * responsibility to send the stop command if required.
1548 */
1549 if (data->mrq->cap_cmd_during_tfr) {
Adrian Hunter19d2f692019-04-05 15:40:19 +03001550 __sdhci_finish_mrq(host, data->mrq);
Adrian Hunter20845be2016-08-16 13:44:13 +03001551 } else {
1552 /* Avoid triggering warning in sdhci_send_command() */
1553 host->cmd = NULL;
1554 sdhci_send_command(host, data->stop);
1555 }
Adrian Huntera6d3bdd2016-06-29 16:24:27 +03001556 } else {
Adrian Hunter19d2f692019-04-05 15:40:19 +03001557 __sdhci_finish_mrq(host, data->mrq);
Adrian Huntera6d3bdd2016-06-29 16:24:27 +03001558 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001559}
1560
Dong Aishengc0e551292013-09-13 19:11:31 +08001561void sdhci_send_command(struct sdhci_host *host, struct mmc_command *cmd)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001562{
1563 int flags;
Pierre Ossmanfd2208d2006-06-30 02:22:28 -07001564 u32 mask;
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001565 unsigned long timeout;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001566
1567 WARN_ON(host->cmd);
1568
Russell King96776202016-01-26 13:39:34 +00001569 /* Initially, a command has no error */
1570 cmd->error = 0;
1571
Adrian Hunterfc605f12016-10-05 12:11:21 +03001572 if ((host->quirks2 & SDHCI_QUIRK2_STOP_WITH_TC) &&
1573 cmd->opcode == MMC_STOP_TRANSMISSION)
1574 cmd->flags |= MMC_RSP_BUSY;
1575
Pierre Ossmand129bce2006-03-24 03:18:17 -08001576 /* Wait max 10 ms */
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001577 timeout = 10;
Pierre Ossmanfd2208d2006-06-30 02:22:28 -07001578
1579 mask = SDHCI_CMD_INHIBIT;
Adrian Hunter56a590d2016-06-29 16:24:32 +03001580 if (sdhci_data_line_cmd(cmd))
Pierre Ossmanfd2208d2006-06-30 02:22:28 -07001581 mask |= SDHCI_DATA_INHIBIT;
1582
1583 /* We shouldn't wait for data inihibit for stop commands, even
1584 though they might use busy signaling */
Adrian Huntera4c73ab2016-06-29 16:24:25 +03001585 if (cmd->mrq->data && (cmd == cmd->mrq->data->stop))
Pierre Ossmanfd2208d2006-06-30 02:22:28 -07001586 mask &= ~SDHCI_DATA_INHIBIT;
1587
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001588 while (sdhci_readl(host, SDHCI_PRESENT_STATE) & mask) {
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001589 if (timeout == 0) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01001590 pr_err("%s: Controller never released inhibit bit(s).\n",
1591 mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -08001592 sdhci_dumpregs(host);
Pierre Ossman17b04292007-07-22 22:18:46 +02001593 cmd->error = -EIO;
Adrian Huntera6d3bdd2016-06-29 16:24:27 +03001594 sdhci_finish_mrq(host, cmd->mrq);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001595 return;
1596 }
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001597 timeout--;
1598 mdelay(1);
1599 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001600
Pierre Ossmand129bce2006-03-24 03:18:17 -08001601 host->cmd = cmd;
Faiz Abbas15db1832020-01-16 16:21:46 +05301602 host->data_timeout = 0;
Adrian Hunter56a590d2016-06-29 16:24:32 +03001603 if (sdhci_data_line_cmd(cmd)) {
Adrian Hunter7c89a3d2016-06-29 16:24:23 +03001604 WARN_ON(host->data_cmd);
1605 host->data_cmd = cmd;
Faiz Abbas15db1832020-01-16 16:21:46 +05301606 sdhci_set_timeout(host, cmd);
Adrian Hunter7c89a3d2016-06-29 16:24:23 +03001607 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001608
Chunyan Zhang18e762e2020-01-16 16:21:47 +05301609 if (cmd->data) {
1610 if (host->use_external_dma)
1611 sdhci_external_dma_prepare_data(host, cmd);
1612 else
1613 sdhci_prepare_data(host, cmd);
1614 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001615
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001616 sdhci_writel(host, cmd->arg, SDHCI_ARGUMENT);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001617
Andrei Warkentine89d4562011-05-23 15:06:37 -05001618 sdhci_set_transfer_mode(host, cmd);
Pierre Ossmanc7fa9962006-06-30 02:22:25 -07001619
Pierre Ossmand129bce2006-03-24 03:18:17 -08001620 if ((cmd->flags & MMC_RSP_136) && (cmd->flags & MMC_RSP_BUSY)) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05301621 pr_err("%s: Unsupported response type!\n",
Pierre Ossmand129bce2006-03-24 03:18:17 -08001622 mmc_hostname(host->mmc));
Pierre Ossman17b04292007-07-22 22:18:46 +02001623 cmd->error = -EINVAL;
Adrian Huntera6d3bdd2016-06-29 16:24:27 +03001624 sdhci_finish_mrq(host, cmd->mrq);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001625 return;
1626 }
1627
1628 if (!(cmd->flags & MMC_RSP_PRESENT))
1629 flags = SDHCI_CMD_RESP_NONE;
1630 else if (cmd->flags & MMC_RSP_136)
1631 flags = SDHCI_CMD_RESP_LONG;
1632 else if (cmd->flags & MMC_RSP_BUSY)
1633 flags = SDHCI_CMD_RESP_SHORT_BUSY;
1634 else
1635 flags = SDHCI_CMD_RESP_SHORT;
1636
1637 if (cmd->flags & MMC_RSP_CRC)
1638 flags |= SDHCI_CMD_CRC;
1639 if (cmd->flags & MMC_RSP_OPCODE)
1640 flags |= SDHCI_CMD_INDEX;
Arindam Nathb513ea22011-05-05 12:19:04 +05301641
1642 /* CMD19 is special in that the Data Present Select should be set */
Girish K S069c9f12012-01-06 09:56:39 +05301643 if (cmd->data || cmd->opcode == MMC_SEND_TUNING_BLOCK ||
1644 cmd->opcode == MMC_SEND_TUNING_BLOCK_HS200)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001645 flags |= SDHCI_CMD_DATA;
1646
Kishon Vijay Abraham Ifc1fa1b2018-04-27 17:17:17 +05301647 timeout = jiffies;
1648 if (host->data_timeout)
1649 timeout += nsecs_to_jiffies(host->data_timeout);
1650 else if (!cmd->data && cmd->busy_timeout > 9000)
1651 timeout += DIV_ROUND_UP(cmd->busy_timeout, 1000) * HZ + HZ;
1652 else
1653 timeout += 10 * HZ;
1654 sdhci_mod_timer(host, cmd->mrq, timeout);
1655
Chunyan Zhang18e762e2020-01-16 16:21:47 +05301656 if (host->use_external_dma)
1657 sdhci_external_dma_pre_transfer(host, cmd);
1658
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001659 sdhci_writew(host, SDHCI_MAKE_CMD(cmd->opcode, flags), SDHCI_COMMAND);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001660}
Dong Aishengc0e551292013-09-13 19:11:31 +08001661EXPORT_SYMBOL_GPL(sdhci_send_command);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001662
Adrian Hunter4a5fc112017-08-21 13:11:28 +05301663static void sdhci_read_rsp_136(struct sdhci_host *host, struct mmc_command *cmd)
1664{
1665 int i, reg;
1666
1667 for (i = 0; i < 4; i++) {
1668 reg = SDHCI_RESPONSE + (3 - i) * 4;
1669 cmd->resp[i] = sdhci_readl(host, reg);
1670 }
1671
Kishon Vijay Abraham I1284c242017-08-21 13:11:29 +05301672 if (host->quirks2 & SDHCI_QUIRK2_RSP_136_HAS_CRC)
1673 return;
1674
Adrian Hunter4a5fc112017-08-21 13:11:28 +05301675 /* CRC is stripped so we need to do some shifting */
1676 for (i = 0; i < 4; i++) {
1677 cmd->resp[i] <<= 8;
1678 if (i != 3)
1679 cmd->resp[i] |= cmd->resp[i + 1] >> 24;
1680 }
1681}
1682
Pierre Ossmand129bce2006-03-24 03:18:17 -08001683static void sdhci_finish_command(struct sdhci_host *host)
1684{
Adrian Huntere0a56402016-06-29 16:24:22 +03001685 struct mmc_command *cmd = host->cmd;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001686
Adrian Huntere0a56402016-06-29 16:24:22 +03001687 host->cmd = NULL;
1688
1689 if (cmd->flags & MMC_RSP_PRESENT) {
1690 if (cmd->flags & MMC_RSP_136) {
Adrian Hunter4a5fc112017-08-21 13:11:28 +05301691 sdhci_read_rsp_136(host, cmd);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001692 } else {
Adrian Huntere0a56402016-06-29 16:24:22 +03001693 cmd->resp[0] = sdhci_readl(host, SDHCI_RESPONSE);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001694 }
1695 }
1696
Adrian Hunter20845be2016-08-16 13:44:13 +03001697 if (cmd->mrq->cap_cmd_during_tfr && cmd == cmd->mrq->cmd)
1698 mmc_command_done(host->mmc, cmd->mrq);
1699
Adrian Hunter6bde8682016-06-29 16:24:20 +03001700 /*
1701 * The host can send and interrupt when the busy state has
1702 * ended, allowing us to wait without wasting CPU cycles.
1703 * The busy signal uses DAT0 so this is similar to waiting
1704 * for data to complete.
1705 *
1706 * Note: The 1.0 specification is a bit ambiguous about this
1707 * feature so there might be some problems with older
1708 * controllers.
1709 */
Adrian Huntere0a56402016-06-29 16:24:22 +03001710 if (cmd->flags & MMC_RSP_BUSY) {
1711 if (cmd->data) {
Adrian Hunter6bde8682016-06-29 16:24:20 +03001712 DBG("Cannot wait for busy signal when also doing a data transfer");
1713 } else if (!(host->quirks & SDHCI_QUIRK_NO_BUSY_IRQ) &&
Adrian Hunterea968022016-06-29 16:24:24 +03001714 cmd == host->data_cmd) {
1715 /* Command complete before busy is ended */
Adrian Hunter6bde8682016-06-29 16:24:20 +03001716 return;
1717 }
1718 }
1719
Andrei Warkentine89d4562011-05-23 15:06:37 -05001720 /* Finished CMD23, now send actual command. */
Adrian Huntera4c73ab2016-06-29 16:24:25 +03001721 if (cmd == cmd->mrq->sbc) {
1722 sdhci_send_command(host, cmd->mrq->cmd);
Andrei Warkentine89d4562011-05-23 15:06:37 -05001723 } else {
Pierre Ossmane538fbe2007-08-12 16:46:32 +02001724
Andrei Warkentine89d4562011-05-23 15:06:37 -05001725 /* Processed actual command. */
1726 if (host->data && host->data_early)
1727 sdhci_finish_data(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001728
Adrian Huntere0a56402016-06-29 16:24:22 +03001729 if (!cmd->data)
Adrian Hunter19d2f692019-04-05 15:40:19 +03001730 __sdhci_finish_mrq(host, cmd->mrq);
Andrei Warkentine89d4562011-05-23 15:06:37 -05001731 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001732}
1733
Kevin Liu52983382013-01-31 11:31:37 +08001734static u16 sdhci_get_preset_value(struct sdhci_host *host)
1735{
Russell Kingd975f122014-04-25 12:59:31 +01001736 u16 preset = 0;
Kevin Liu52983382013-01-31 11:31:37 +08001737
Russell Kingd975f122014-04-25 12:59:31 +01001738 switch (host->timing) {
1739 case MMC_TIMING_UHS_SDR12:
Kevin Liu52983382013-01-31 11:31:37 +08001740 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR12);
1741 break;
Russell Kingd975f122014-04-25 12:59:31 +01001742 case MMC_TIMING_UHS_SDR25:
Kevin Liu52983382013-01-31 11:31:37 +08001743 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR25);
1744 break;
Russell Kingd975f122014-04-25 12:59:31 +01001745 case MMC_TIMING_UHS_SDR50:
Kevin Liu52983382013-01-31 11:31:37 +08001746 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR50);
1747 break;
Russell Kingd975f122014-04-25 12:59:31 +01001748 case MMC_TIMING_UHS_SDR104:
1749 case MMC_TIMING_MMC_HS200:
Kevin Liu52983382013-01-31 11:31:37 +08001750 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR104);
1751 break;
Russell Kingd975f122014-04-25 12:59:31 +01001752 case MMC_TIMING_UHS_DDR50:
Jisheng Zhang0dafa602015-08-18 16:21:39 +08001753 case MMC_TIMING_MMC_DDR52:
Kevin Liu52983382013-01-31 11:31:37 +08001754 preset = sdhci_readw(host, SDHCI_PRESET_FOR_DDR50);
1755 break;
Adrian Huntere9fb05d2014-11-06 15:19:06 +02001756 case MMC_TIMING_MMC_HS400:
1757 preset = sdhci_readw(host, SDHCI_PRESET_FOR_HS400);
1758 break;
Kevin Liu52983382013-01-31 11:31:37 +08001759 default:
1760 pr_warn("%s: Invalid UHS-I mode selected\n",
1761 mmc_hostname(host->mmc));
1762 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR12);
1763 break;
1764 }
1765 return preset;
1766}
1767
Ludovic Desrochesfb9ee042016-04-07 11:13:08 +02001768u16 sdhci_calc_clk(struct sdhci_host *host, unsigned int clock,
1769 unsigned int *actual_clock)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001770{
Arindam Nathc3ed3872011-05-05 12:19:06 +05301771 int div = 0; /* Initialized for compiler warning */
Giuseppe CAVALLAROdf162192011-11-04 13:53:19 +01001772 int real_div = div, clk_mul = 1;
Arindam Nathc3ed3872011-05-05 12:19:06 +05301773 u16 clk = 0;
ludovic.desroches@atmel.com54971592015-07-29 16:22:46 +02001774 bool switch_base_clk = false;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001775
Zhangfei Gao85105c52010-08-06 07:10:01 +08001776 if (host->version >= SDHCI_SPEC_300) {
Russell Kingda91a8f2014-04-25 13:00:12 +01001777 if (host->preset_enabled) {
Kevin Liu52983382013-01-31 11:31:37 +08001778 u16 pre_val;
1779
1780 clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL);
1781 pre_val = sdhci_get_preset_value(host);
Masahiro Yamadafa091012020-03-12 20:00:50 +09001782 div = FIELD_GET(SDHCI_PRESET_SDCLK_FREQ_MASK, pre_val);
Kevin Liu52983382013-01-31 11:31:37 +08001783 if (host->clk_mul &&
Masahiro Yamadafa091012020-03-12 20:00:50 +09001784 (pre_val & SDHCI_PRESET_CLKGEN_SEL)) {
Kevin Liu52983382013-01-31 11:31:37 +08001785 clk = SDHCI_PROG_CLOCK_MODE;
1786 real_div = div + 1;
1787 clk_mul = host->clk_mul;
1788 } else {
1789 real_div = max_t(int, 1, div << 1);
1790 }
1791 goto clock_set;
1792 }
1793
Arindam Nathc3ed3872011-05-05 12:19:06 +05301794 /*
1795 * Check if the Host Controller supports Programmable Clock
1796 * Mode.
1797 */
1798 if (host->clk_mul) {
Kevin Liu52983382013-01-31 11:31:37 +08001799 for (div = 1; div <= 1024; div++) {
1800 if ((host->max_clk * host->clk_mul / div)
1801 <= clock)
1802 break;
Zhangfei Gao85105c52010-08-06 07:10:01 +08001803 }
ludovic.desroches@atmel.com54971592015-07-29 16:22:46 +02001804 if ((host->max_clk * host->clk_mul / div) <= clock) {
1805 /*
1806 * Set Programmable Clock Mode in the Clock
1807 * Control register.
1808 */
1809 clk = SDHCI_PROG_CLOCK_MODE;
1810 real_div = div;
1811 clk_mul = host->clk_mul;
1812 div--;
1813 } else {
1814 /*
1815 * Divisor can be too small to reach clock
1816 * speed requirement. Then use the base clock.
1817 */
1818 switch_base_clk = true;
1819 }
1820 }
1821
1822 if (!host->clk_mul || switch_base_clk) {
Arindam Nathc3ed3872011-05-05 12:19:06 +05301823 /* Version 3.00 divisors must be a multiple of 2. */
1824 if (host->max_clk <= clock)
1825 div = 1;
1826 else {
1827 for (div = 2; div < SDHCI_MAX_DIV_SPEC_300;
1828 div += 2) {
1829 if ((host->max_clk / div) <= clock)
1830 break;
1831 }
1832 }
Giuseppe CAVALLAROdf162192011-11-04 13:53:19 +01001833 real_div = div;
Arindam Nathc3ed3872011-05-05 12:19:06 +05301834 div >>= 1;
Suneel Garapatid1955c32015-06-09 13:01:50 +05301835 if ((host->quirks2 & SDHCI_QUIRK2_CLOCK_DIV_ZERO_BROKEN)
1836 && !div && host->max_clk <= 25000000)
1837 div = 1;
Zhangfei Gao85105c52010-08-06 07:10:01 +08001838 }
1839 } else {
1840 /* Version 2.00 divisors must be a power of 2. */
Zhangfei Gao03975262010-09-20 15:15:18 -04001841 for (div = 1; div < SDHCI_MAX_DIV_SPEC_200; div *= 2) {
Zhangfei Gao85105c52010-08-06 07:10:01 +08001842 if ((host->max_clk / div) <= clock)
1843 break;
1844 }
Giuseppe CAVALLAROdf162192011-11-04 13:53:19 +01001845 real_div = div;
Arindam Nathc3ed3872011-05-05 12:19:06 +05301846 div >>= 1;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001847 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001848
Kevin Liu52983382013-01-31 11:31:37 +08001849clock_set:
Aisheng Dong03d6f5f2014-08-27 15:26:32 +08001850 if (real_div)
Ludovic Desrochesfb9ee042016-04-07 11:13:08 +02001851 *actual_clock = (host->max_clk * clk_mul) / real_div;
Arindam Nathc3ed3872011-05-05 12:19:06 +05301852 clk |= (div & SDHCI_DIV_MASK) << SDHCI_DIVIDER_SHIFT;
Zhangfei Gao85105c52010-08-06 07:10:01 +08001853 clk |= ((div & SDHCI_DIV_HI_MASK) >> SDHCI_DIV_MASK_LEN)
1854 << SDHCI_DIVIDER_HI_SHIFT;
Ludovic Desrochesfb9ee042016-04-07 11:13:08 +02001855
1856 return clk;
1857}
1858EXPORT_SYMBOL_GPL(sdhci_calc_clk);
1859
Ritesh Harjanifec79672016-11-21 12:07:19 +05301860void sdhci_enable_clk(struct sdhci_host *host, u16 clk)
Ludovic Desrochesfb9ee042016-04-07 11:13:08 +02001861{
Adrian Hunter5a436cc2017-03-20 19:50:31 +02001862 ktime_t timeout;
Ludovic Desrochesfb9ee042016-04-07 11:13:08 +02001863
Pierre Ossmand129bce2006-03-24 03:18:17 -08001864 clk |= SDHCI_CLOCK_INT_EN;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001865 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001866
Ben Chuang4a9e0d12019-08-27 08:32:42 +08001867 /* Wait max 150 ms */
1868 timeout = ktime_add_ms(ktime_get(), 150);
Alek Dub7044412018-12-06 17:24:59 +08001869 while (1) {
1870 bool timedout = ktime_after(ktime_get(), timeout);
1871
1872 clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL);
1873 if (clk & SDHCI_CLOCK_INT_STABLE)
1874 break;
1875 if (timedout) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01001876 pr_err("%s: Internal clock never stabilised.\n",
1877 mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -08001878 sdhci_dumpregs(host);
1879 return;
1880 }
Adrian Hunter5a436cc2017-03-20 19:50:31 +02001881 udelay(10);
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001882 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001883
Ben Chuang1beabbd2019-08-27 08:32:55 +08001884 if (host->version >= SDHCI_SPEC_410 && host->v4_mode) {
1885 clk |= SDHCI_CLOCK_PLL_EN;
1886 clk &= ~SDHCI_CLOCK_INT_STABLE;
1887 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
1888
1889 /* Wait max 150 ms */
1890 timeout = ktime_add_ms(ktime_get(), 150);
1891 while (1) {
1892 bool timedout = ktime_after(ktime_get(), timeout);
1893
1894 clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL);
1895 if (clk & SDHCI_CLOCK_INT_STABLE)
1896 break;
1897 if (timedout) {
1898 pr_err("%s: PLL clock never stabilised.\n",
1899 mmc_hostname(host->mmc));
1900 sdhci_dumpregs(host);
1901 return;
1902 }
1903 udelay(10);
1904 }
1905 }
1906
Pierre Ossmand129bce2006-03-24 03:18:17 -08001907 clk |= SDHCI_CLOCK_CARD_EN;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001908 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001909}
Ritesh Harjanifec79672016-11-21 12:07:19 +05301910EXPORT_SYMBOL_GPL(sdhci_enable_clk);
1911
1912void sdhci_set_clock(struct sdhci_host *host, unsigned int clock)
1913{
1914 u16 clk;
1915
1916 host->mmc->actual_clock = 0;
1917
1918 sdhci_writew(host, 0, SDHCI_CLOCK_CONTROL);
1919
1920 if (clock == 0)
1921 return;
1922
1923 clk = sdhci_calc_clk(host, clock, &host->mmc->actual_clock);
1924 sdhci_enable_clk(host, clk);
1925}
Russell King17710592014-04-25 12:58:55 +01001926EXPORT_SYMBOL_GPL(sdhci_set_clock);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001927
Adrian Hunter1dceb042016-03-29 12:45:43 +03001928static void sdhci_set_power_reg(struct sdhci_host *host, unsigned char mode,
1929 unsigned short vdd)
Pierre Ossman146ad662006-06-30 02:22:23 -07001930{
Tim Kryger3a48edc2014-06-13 10:13:56 -07001931 struct mmc_host *mmc = host->mmc;
Adrian Hunter1dceb042016-03-29 12:45:43 +03001932
Adrian Hunter1dceb042016-03-29 12:45:43 +03001933 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, vdd);
Adrian Hunter1dceb042016-03-29 12:45:43 +03001934
1935 if (mode != MMC_POWER_OFF)
1936 sdhci_writeb(host, SDHCI_POWER_ON, SDHCI_POWER_CONTROL);
1937 else
1938 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
1939}
1940
Adrian Hunter606d3132016-10-05 12:11:22 +03001941void sdhci_set_power_noreg(struct sdhci_host *host, unsigned char mode,
1942 unsigned short vdd)
Adrian Hunter1dceb042016-03-29 12:45:43 +03001943{
Giuseppe Cavallaro83642482010-09-28 10:41:28 +02001944 u8 pwr = 0;
Pierre Ossman146ad662006-06-30 02:22:23 -07001945
Russell King24fbb3c2014-04-25 13:00:06 +01001946 if (mode != MMC_POWER_OFF) {
1947 switch (1 << vdd) {
Pierre Ossmanae628902009-05-03 20:45:03 +02001948 case MMC_VDD_165_195:
Andy Shevchenko2a609ab2018-01-11 15:51:58 +02001949 /*
1950 * Without a regulator, SDHCI does not support 2.0v
1951 * so we only get here if the driver deliberately
1952 * added the 2.0v range to ocr_avail. Map it to 1.8v
1953 * for the purpose of turning on the power.
1954 */
1955 case MMC_VDD_20_21:
Pierre Ossmanae628902009-05-03 20:45:03 +02001956 pwr = SDHCI_POWER_180;
1957 break;
1958 case MMC_VDD_29_30:
1959 case MMC_VDD_30_31:
1960 pwr = SDHCI_POWER_300;
1961 break;
1962 case MMC_VDD_32_33:
1963 case MMC_VDD_33_34:
1964 pwr = SDHCI_POWER_330;
1965 break;
1966 default:
Adrian Hunter9d5de932015-11-26 14:00:46 +02001967 WARN(1, "%s: Invalid vdd %#x\n",
1968 mmc_hostname(host->mmc), vdd);
1969 break;
Pierre Ossmanae628902009-05-03 20:45:03 +02001970 }
1971 }
1972
1973 if (host->pwr == pwr)
Russell Kinge921a8b2014-04-25 13:00:01 +01001974 return;
Pierre Ossman146ad662006-06-30 02:22:23 -07001975
Pierre Ossmanae628902009-05-03 20:45:03 +02001976 host->pwr = pwr;
1977
1978 if (pwr == 0) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001979 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
Adrian Hunterf0710a52013-05-06 12:17:32 +03001980 if (host->quirks2 & SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON)
1981 sdhci_runtime_pm_bus_off(host);
Russell Kinge921a8b2014-04-25 13:00:01 +01001982 } else {
1983 /*
1984 * Spec says that we should clear the power reg before setting
1985 * a new value. Some controllers don't seem to like this though.
1986 */
1987 if (!(host->quirks & SDHCI_QUIRK_SINGLE_POWER_WRITE))
1988 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
Darren Salt9e9dc5f2007-01-27 15:32:31 +01001989
Russell Kinge921a8b2014-04-25 13:00:01 +01001990 /*
1991 * At least the Marvell CaFe chip gets confused if we set the
1992 * voltage and set turn on power at the same time, so set the
1993 * voltage first.
1994 */
1995 if (host->quirks & SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER)
1996 sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL);
Pierre Ossman146ad662006-06-30 02:22:23 -07001997
Russell Kinge921a8b2014-04-25 13:00:01 +01001998 pwr |= SDHCI_POWER_ON;
1999
Pierre Ossmanae628902009-05-03 20:45:03 +02002000 sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL);
2001
Russell Kinge921a8b2014-04-25 13:00:01 +01002002 if (host->quirks2 & SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON)
2003 sdhci_runtime_pm_bus_on(host);
Andres Salomone08c1692008-07-04 10:00:03 -07002004
Russell Kinge921a8b2014-04-25 13:00:01 +01002005 /*
2006 * Some controllers need an extra 10ms delay of 10ms before
2007 * they can apply clock after applying power
2008 */
2009 if (host->quirks & SDHCI_QUIRK_DELAY_AFTER_POWER)
2010 mdelay(10);
2011 }
Adrian Hunter1dceb042016-03-29 12:45:43 +03002012}
Adrian Hunter606d3132016-10-05 12:11:22 +03002013EXPORT_SYMBOL_GPL(sdhci_set_power_noreg);
Jisheng Zhang918f4cb2015-12-11 21:36:29 +08002014
Adrian Hunter606d3132016-10-05 12:11:22 +03002015void sdhci_set_power(struct sdhci_host *host, unsigned char mode,
2016 unsigned short vdd)
Adrian Hunter1dceb042016-03-29 12:45:43 +03002017{
Adrian Hunter606d3132016-10-05 12:11:22 +03002018 if (IS_ERR(host->mmc->supply.vmmc))
2019 sdhci_set_power_noreg(host, mode, vdd);
Adrian Hunter1dceb042016-03-29 12:45:43 +03002020 else
Adrian Hunter606d3132016-10-05 12:11:22 +03002021 sdhci_set_power_reg(host, mode, vdd);
Pierre Ossman146ad662006-06-30 02:22:23 -07002022}
Adrian Hunter606d3132016-10-05 12:11:22 +03002023EXPORT_SYMBOL_GPL(sdhci_set_power);
Pierre Ossman146ad662006-06-30 02:22:23 -07002024
Nicolas Saenz Julienne6c92ae12020-03-06 18:44:03 +01002025/*
2026 * Some controllers need to configure a valid bus voltage on their power
2027 * register regardless of whether an external regulator is taking care of power
2028 * supply. This helper function takes care of it if set as the controller's
2029 * sdhci_ops.set_power callback.
2030 */
2031void sdhci_set_power_and_bus_voltage(struct sdhci_host *host,
2032 unsigned char mode,
2033 unsigned short vdd)
2034{
2035 if (!IS_ERR(host->mmc->supply.vmmc)) {
2036 struct mmc_host *mmc = host->mmc;
2037
2038 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, vdd);
2039 }
2040 sdhci_set_power_noreg(host, mode, vdd);
2041}
2042EXPORT_SYMBOL_GPL(sdhci_set_power_and_bus_voltage);
2043
Pierre Ossmand129bce2006-03-24 03:18:17 -08002044/*****************************************************************************\
2045 * *
2046 * MMC callbacks *
2047 * *
2048\*****************************************************************************/
2049
Aapo Vienamod462c1b2018-08-20 12:23:32 +03002050void sdhci_request(struct mmc_host *mmc, struct mmc_request *mrq)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002051{
2052 struct sdhci_host *host;
Shawn Guo505a8682012-12-11 15:23:42 +08002053 int present;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002054 unsigned long flags;
2055
2056 host = mmc_priv(mmc);
2057
Scott Branden04e079cf2015-03-10 11:35:10 -07002058 /* Firstly check card presence */
Adrian Hunter8d28b7a2016-02-09 16:12:36 +02002059 present = mmc->ops->get_cd(mmc);
Krzysztof Kozlowski28367662015-01-05 10:50:15 +01002060
Pierre Ossmand129bce2006-03-24 03:18:17 -08002061 spin_lock_irqsave(&host->lock, flags);
2062
Adrian Hunter061d17a2016-04-12 14:25:09 +03002063 sdhci_led_activate(host);
Andrei Warkentine89d4562011-05-23 15:06:37 -05002064
Anton Vorontsov68d1fb72009-03-17 00:13:52 +03002065 if (!present || host->flags & SDHCI_DEVICE_DEAD) {
Adrian Huntera4c73ab2016-06-29 16:24:25 +03002066 mrq->cmd->error = -ENOMEDIUM;
Adrian Huntera6d3bdd2016-06-29 16:24:27 +03002067 sdhci_finish_mrq(host, mrq);
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05302068 } else {
Adrian Huntered633032020-04-12 12:03:45 +03002069 if (sdhci_manual_cmd23(host, mrq))
Andrei Warkentine89d4562011-05-23 15:06:37 -05002070 sdhci_send_command(host, mrq->sbc);
2071 else
2072 sdhci_send_command(host, mrq->cmd);
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05302073 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08002074
2075 spin_unlock_irqrestore(&host->lock, flags);
2076}
Aapo Vienamod462c1b2018-08-20 12:23:32 +03002077EXPORT_SYMBOL_GPL(sdhci_request);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002078
Russell King2317f562014-04-25 12:57:07 +01002079void sdhci_set_bus_width(struct sdhci_host *host, int width)
2080{
2081 u8 ctrl;
2082
2083 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
2084 if (width == MMC_BUS_WIDTH_8) {
2085 ctrl &= ~SDHCI_CTRL_4BITBUS;
Michał Mirosław98f94ea2017-08-14 22:00:24 +02002086 ctrl |= SDHCI_CTRL_8BITBUS;
Russell King2317f562014-04-25 12:57:07 +01002087 } else {
Michał Mirosław98f94ea2017-08-14 22:00:24 +02002088 if (host->mmc->caps & MMC_CAP_8_BIT_DATA)
Russell King2317f562014-04-25 12:57:07 +01002089 ctrl &= ~SDHCI_CTRL_8BITBUS;
2090 if (width == MMC_BUS_WIDTH_4)
2091 ctrl |= SDHCI_CTRL_4BITBUS;
2092 else
2093 ctrl &= ~SDHCI_CTRL_4BITBUS;
2094 }
2095 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
2096}
2097EXPORT_SYMBOL_GPL(sdhci_set_bus_width);
2098
Russell King96d7b782014-04-25 12:59:26 +01002099void sdhci_set_uhs_signaling(struct sdhci_host *host, unsigned timing)
2100{
2101 u16 ctrl_2;
2102
2103 ctrl_2 = sdhci_readw(host, SDHCI_HOST_CONTROL2);
2104 /* Select Bus Speed Mode for host */
2105 ctrl_2 &= ~SDHCI_CTRL_UHS_MASK;
2106 if ((timing == MMC_TIMING_MMC_HS200) ||
2107 (timing == MMC_TIMING_UHS_SDR104))
2108 ctrl_2 |= SDHCI_CTRL_UHS_SDR104;
2109 else if (timing == MMC_TIMING_UHS_SDR12)
2110 ctrl_2 |= SDHCI_CTRL_UHS_SDR12;
Faiz Abbas07bcc412019-11-28 16:34:22 +05302111 else if (timing == MMC_TIMING_UHS_SDR25)
Russell King96d7b782014-04-25 12:59:26 +01002112 ctrl_2 |= SDHCI_CTRL_UHS_SDR25;
2113 else if (timing == MMC_TIMING_UHS_SDR50)
2114 ctrl_2 |= SDHCI_CTRL_UHS_SDR50;
2115 else if ((timing == MMC_TIMING_UHS_DDR50) ||
2116 (timing == MMC_TIMING_MMC_DDR52))
2117 ctrl_2 |= SDHCI_CTRL_UHS_DDR50;
Adrian Huntere9fb05d2014-11-06 15:19:06 +02002118 else if (timing == MMC_TIMING_MMC_HS400)
2119 ctrl_2 |= SDHCI_CTRL_HS400; /* Non-standard */
Russell King96d7b782014-04-25 12:59:26 +01002120 sdhci_writew(host, ctrl_2, SDHCI_HOST_CONTROL2);
2121}
2122EXPORT_SYMBOL_GPL(sdhci_set_uhs_signaling);
2123
Hu Ziji6a6d4ce2017-03-30 17:22:55 +02002124void sdhci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002125{
Dong Aishengded97e02016-04-16 01:29:25 +08002126 struct sdhci_host *host = mmc_priv(mmc);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002127 u8 ctrl;
2128
Adrian Hunter84ec0482016-12-19 15:33:11 +02002129 if (ios->power_mode == MMC_POWER_UNDEFINED)
2130 return;
2131
Adrian Hunterceb61432011-12-27 15:48:41 +02002132 if (host->flags & SDHCI_DEVICE_DEAD) {
Tim Kryger3a48edc2014-06-13 10:13:56 -07002133 if (!IS_ERR(mmc->supply.vmmc) &&
2134 ios->power_mode == MMC_POWER_OFF)
Markus Mayer4e743f12014-07-03 13:27:42 -07002135 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, 0);
Adrian Hunterceb61432011-12-27 15:48:41 +02002136 return;
2137 }
Pierre Ossman1e728592008-04-16 19:13:13 +02002138
Pierre Ossmand129bce2006-03-24 03:18:17 -08002139 /*
2140 * Reset the chip on each power off.
2141 * Should clear out any weird states.
2142 */
2143 if (ios->power_mode == MMC_POWER_OFF) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03002144 sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE);
Anton Vorontsov7260cf52009-03-17 00:13:48 +03002145 sdhci_reinit(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002146 }
2147
Kevin Liu52983382013-01-31 11:31:37 +08002148 if (host->version >= SDHCI_SPEC_300 &&
Dong Aisheng372c4632013-10-18 19:48:50 +08002149 (ios->power_mode == MMC_POWER_UP) &&
2150 !(host->quirks2 & SDHCI_QUIRK2_PRESET_VALUE_BROKEN))
Kevin Liu52983382013-01-31 11:31:37 +08002151 sdhci_enable_preset_value(host, false);
2152
Russell King373073e2014-04-25 12:58:45 +01002153 if (!ios->clock || ios->clock != host->clock) {
Russell King17710592014-04-25 12:58:55 +01002154 host->ops->set_clock(host, ios->clock);
Russell King373073e2014-04-25 12:58:45 +01002155 host->clock = ios->clock;
Aisheng Dong03d6f5f2014-08-27 15:26:32 +08002156
2157 if (host->quirks & SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK &&
2158 host->clock) {
2159 host->timeout_clk = host->mmc->actual_clock ?
2160 host->mmc->actual_clock / 1000 :
2161 host->clock / 1000;
2162 host->mmc->max_busy_timeout =
2163 host->ops->get_max_timeout_count ?
2164 host->ops->get_max_timeout_count(host) :
2165 1 << 27;
2166 host->mmc->max_busy_timeout /= host->timeout_clk;
2167 }
Russell King373073e2014-04-25 12:58:45 +01002168 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08002169
Adrian Hunter606d3132016-10-05 12:11:22 +03002170 if (host->ops->set_power)
2171 host->ops->set_power(host, ios->power_mode, ios->vdd);
2172 else
2173 sdhci_set_power(host, ios->power_mode, ios->vdd);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002174
Philip Rakity643a81f2010-09-23 08:24:32 -07002175 if (host->ops->platform_send_init_74_clocks)
2176 host->ops->platform_send_init_74_clocks(host, ios->power_mode);
2177
Russell King2317f562014-04-25 12:57:07 +01002178 host->ops->set_bus_width(host, ios->bus_width);
Philip Rakity15ec4462010-11-19 16:48:39 -05002179
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03002180 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
Pierre Ossmancd9277c2007-02-18 12:07:47 +01002181
yangbo lu501639b2017-08-15 10:16:47 +08002182 if (!(host->quirks & SDHCI_QUIRK_NO_HISPD_BIT)) {
2183 if (ios->timing == MMC_TIMING_SD_HS ||
2184 ios->timing == MMC_TIMING_MMC_HS ||
2185 ios->timing == MMC_TIMING_MMC_HS400 ||
2186 ios->timing == MMC_TIMING_MMC_HS200 ||
2187 ios->timing == MMC_TIMING_MMC_DDR52 ||
2188 ios->timing == MMC_TIMING_UHS_SDR50 ||
2189 ios->timing == MMC_TIMING_UHS_SDR104 ||
2190 ios->timing == MMC_TIMING_UHS_DDR50 ||
2191 ios->timing == MMC_TIMING_UHS_SDR25)
2192 ctrl |= SDHCI_CTRL_HISPD;
2193 else
2194 ctrl &= ~SDHCI_CTRL_HISPD;
2195 }
Pierre Ossmancd9277c2007-02-18 12:07:47 +01002196
Arindam Nathd6d50a12011-05-05 12:18:59 +05302197 if (host->version >= SDHCI_SPEC_300) {
Arindam Nath49c468f2011-05-05 12:19:01 +05302198 u16 clk, ctrl_2;
Arindam Nath49c468f2011-05-05 12:19:01 +05302199
Russell Kingda91a8f2014-04-25 13:00:12 +01002200 if (!host->preset_enabled) {
Arindam Nath758535c2011-05-05 12:19:00 +05302201 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Arindam Nathd6d50a12011-05-05 12:18:59 +05302202 /*
2203 * We only need to set Driver Strength if the
2204 * preset value enable is not set.
2205 */
Russell Kingda91a8f2014-04-25 13:00:12 +01002206 ctrl_2 = sdhci_readw(host, SDHCI_HOST_CONTROL2);
Arindam Nathd6d50a12011-05-05 12:18:59 +05302207 ctrl_2 &= ~SDHCI_CTRL_DRV_TYPE_MASK;
2208 if (ios->drv_type == MMC_SET_DRIVER_TYPE_A)
2209 ctrl_2 |= SDHCI_CTRL_DRV_TYPE_A;
Petri Gynther43e943a2015-05-20 14:35:00 -07002210 else if (ios->drv_type == MMC_SET_DRIVER_TYPE_B)
2211 ctrl_2 |= SDHCI_CTRL_DRV_TYPE_B;
Arindam Nathd6d50a12011-05-05 12:18:59 +05302212 else if (ios->drv_type == MMC_SET_DRIVER_TYPE_C)
2213 ctrl_2 |= SDHCI_CTRL_DRV_TYPE_C;
Petri Gynther43e943a2015-05-20 14:35:00 -07002214 else if (ios->drv_type == MMC_SET_DRIVER_TYPE_D)
2215 ctrl_2 |= SDHCI_CTRL_DRV_TYPE_D;
2216 else {
Marek Vasut2e4456f2015-11-18 10:47:02 +01002217 pr_warn("%s: invalid driver type, default to driver type B\n",
2218 mmc_hostname(mmc));
Petri Gynther43e943a2015-05-20 14:35:00 -07002219 ctrl_2 |= SDHCI_CTRL_DRV_TYPE_B;
2220 }
Arindam Nathd6d50a12011-05-05 12:18:59 +05302221
2222 sdhci_writew(host, ctrl_2, SDHCI_HOST_CONTROL2);
Arindam Nath758535c2011-05-05 12:19:00 +05302223 } else {
2224 /*
2225 * According to SDHC Spec v3.00, if the Preset Value
2226 * Enable in the Host Control 2 register is set, we
2227 * need to reset SD Clock Enable before changing High
2228 * Speed Enable to avoid generating clock gliches.
2229 */
Arindam Nath758535c2011-05-05 12:19:00 +05302230
2231 /* Reset SD Clock Enable */
2232 clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL);
2233 clk &= ~SDHCI_CLOCK_CARD_EN;
2234 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
2235
2236 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
2237
2238 /* Re-enable SD Clock */
Russell King17710592014-04-25 12:58:55 +01002239 host->ops->set_clock(host, host->clock);
Arindam Nathd6d50a12011-05-05 12:18:59 +05302240 }
Arindam Nath49c468f2011-05-05 12:19:01 +05302241
Arindam Nath49c468f2011-05-05 12:19:01 +05302242 /* Reset SD Clock Enable */
2243 clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL);
2244 clk &= ~SDHCI_CLOCK_CARD_EN;
2245 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
2246
Russell King96d7b782014-04-25 12:59:26 +01002247 host->ops->set_uhs_signaling(host, ios->timing);
Russell Kingd975f122014-04-25 12:59:31 +01002248 host->timing = ios->timing;
Arindam Nath49c468f2011-05-05 12:19:01 +05302249
Kevin Liu52983382013-01-31 11:31:37 +08002250 if (!(host->quirks2 & SDHCI_QUIRK2_PRESET_VALUE_BROKEN) &&
2251 ((ios->timing == MMC_TIMING_UHS_SDR12) ||
2252 (ios->timing == MMC_TIMING_UHS_SDR25) ||
2253 (ios->timing == MMC_TIMING_UHS_SDR50) ||
2254 (ios->timing == MMC_TIMING_UHS_SDR104) ||
Jisheng Zhang0dafa602015-08-18 16:21:39 +08002255 (ios->timing == MMC_TIMING_UHS_DDR50) ||
2256 (ios->timing == MMC_TIMING_MMC_DDR52))) {
Kevin Liu52983382013-01-31 11:31:37 +08002257 u16 preset;
2258
2259 sdhci_enable_preset_value(host, true);
2260 preset = sdhci_get_preset_value(host);
Masahiro Yamadafa091012020-03-12 20:00:50 +09002261 ios->drv_type = FIELD_GET(SDHCI_PRESET_DRV_MASK,
2262 preset);
Kevin Liu52983382013-01-31 11:31:37 +08002263 }
2264
Arindam Nath49c468f2011-05-05 12:19:01 +05302265 /* Re-enable SD Clock */
Russell King17710592014-04-25 12:58:55 +01002266 host->ops->set_clock(host, host->clock);
Arindam Nath758535c2011-05-05 12:19:00 +05302267 } else
2268 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Arindam Nathd6d50a12011-05-05 12:18:59 +05302269
Leandro Dorileob8352262007-07-25 23:47:04 +02002270 /*
2271 * Some (ENE) controllers go apeshit on some ios operation,
2272 * signalling timeout and CRC errors even on CMD0. Resetting
2273 * it on each ios seems to solve the problem.
2274 */
Mohammad Jamalc63705e2015-01-13 20:47:24 +05302275 if (host->quirks & SDHCI_QUIRK_RESET_CMD_DATA_ON_IOS)
Russell King03231f92014-04-25 12:57:12 +01002276 sdhci_do_reset(host, SDHCI_RESET_CMD | SDHCI_RESET_DATA);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002277}
Hu Ziji6a6d4ce2017-03-30 17:22:55 +02002278EXPORT_SYMBOL_GPL(sdhci_set_ios);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002279
Dong Aishengded97e02016-04-16 01:29:25 +08002280static int sdhci_get_cd(struct mmc_host *mmc)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002281{
2282 struct sdhci_host *host = mmc_priv(mmc);
Dong Aishengded97e02016-04-16 01:29:25 +08002283 int gpio_cd = mmc_gpio_get_cd(mmc);
Kevin Liu94144a42013-02-28 17:35:53 +08002284
2285 if (host->flags & SDHCI_DEVICE_DEAD)
2286 return 0;
2287
Ivan T. Ivanov88af5652015-07-06 15:16:19 +03002288 /* If nonremovable, assume that the card is always present. */
Jaehoon Chung860951c2016-06-21 10:13:26 +09002289 if (!mmc_card_is_removable(host->mmc))
Kevin Liu94144a42013-02-28 17:35:53 +08002290 return 1;
2291
Ivan T. Ivanov88af5652015-07-06 15:16:19 +03002292 /*
2293 * Try slot gpio detect, if defined it take precedence
2294 * over build in controller functionality
2295 */
Arnd Bergmann287980e2016-05-27 23:23:25 +02002296 if (gpio_cd >= 0)
Kevin Liu94144a42013-02-28 17:35:53 +08002297 return !!gpio_cd;
2298
Ivan T. Ivanov88af5652015-07-06 15:16:19 +03002299 /* If polling, assume that the card is always present. */
2300 if (host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION)
2301 return 1;
2302
Kevin Liu94144a42013-02-28 17:35:53 +08002303 /* Host native card detect */
2304 return !!(sdhci_readl(host, SDHCI_PRESENT_STATE) & SDHCI_CARD_PRESENT);
2305}
2306
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002307static int sdhci_check_ro(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002308{
Pierre Ossmand129bce2006-03-24 03:18:17 -08002309 unsigned long flags;
Wolfram Sang2dfb5792010-10-15 12:21:01 +02002310 int is_readonly;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002311
Pierre Ossmand129bce2006-03-24 03:18:17 -08002312 spin_lock_irqsave(&host->lock, flags);
2313
Pierre Ossman1e728592008-04-16 19:13:13 +02002314 if (host->flags & SDHCI_DEVICE_DEAD)
Wolfram Sang2dfb5792010-10-15 12:21:01 +02002315 is_readonly = 0;
2316 else if (host->ops->get_ro)
2317 is_readonly = host->ops->get_ro(host);
Thomas Petazzoni6d5cd062019-02-12 15:07:35 +01002318 else if (mmc_can_gpio_ro(host->mmc))
2319 is_readonly = mmc_gpio_get_ro(host->mmc);
Pierre Ossman1e728592008-04-16 19:13:13 +02002320 else
Wolfram Sang2dfb5792010-10-15 12:21:01 +02002321 is_readonly = !(sdhci_readl(host, SDHCI_PRESENT_STATE)
2322 & SDHCI_WRITE_PROTECT);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002323
2324 spin_unlock_irqrestore(&host->lock, flags);
2325
Wolfram Sang2dfb5792010-10-15 12:21:01 +02002326 /* This quirk needs to be replaced by a callback-function later */
2327 return host->quirks & SDHCI_QUIRK_INVERTED_WRITE_PROTECT ?
2328 !is_readonly : is_readonly;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002329}
2330
Takashi Iwai82b0e232011-04-21 20:26:38 +02002331#define SAMPLE_COUNT 5
2332
Dong Aishengded97e02016-04-16 01:29:25 +08002333static int sdhci_get_ro(struct mmc_host *mmc)
Takashi Iwai82b0e232011-04-21 20:26:38 +02002334{
Dong Aishengded97e02016-04-16 01:29:25 +08002335 struct sdhci_host *host = mmc_priv(mmc);
Takashi Iwai82b0e232011-04-21 20:26:38 +02002336 int i, ro_count;
2337
Takashi Iwai82b0e232011-04-21 20:26:38 +02002338 if (!(host->quirks & SDHCI_QUIRK_UNSTABLE_RO_DETECT))
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002339 return sdhci_check_ro(host);
Takashi Iwai82b0e232011-04-21 20:26:38 +02002340
2341 ro_count = 0;
2342 for (i = 0; i < SAMPLE_COUNT; i++) {
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002343 if (sdhci_check_ro(host)) {
Takashi Iwai82b0e232011-04-21 20:26:38 +02002344 if (++ro_count > SAMPLE_COUNT / 2)
2345 return 1;
2346 }
2347 msleep(30);
2348 }
2349 return 0;
2350}
2351
Adrian Hunter20758b62011-08-29 16:42:12 +03002352static void sdhci_hw_reset(struct mmc_host *mmc)
2353{
2354 struct sdhci_host *host = mmc_priv(mmc);
2355
2356 if (host->ops && host->ops->hw_reset)
2357 host->ops->hw_reset(host);
2358}
2359
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002360static void sdhci_enable_sdio_irq_nolock(struct sdhci_host *host, int enable)
2361{
Russell Kingbe138552014-04-25 12:55:56 +01002362 if (!(host->flags & SDHCI_DEVICE_DEAD)) {
Russell Kingef104332014-04-25 12:55:41 +01002363 if (enable)
Russell Kingb537f942014-04-25 12:56:01 +01002364 host->ier |= SDHCI_INT_CARD_INT;
Russell Kingef104332014-04-25 12:55:41 +01002365 else
Russell Kingb537f942014-04-25 12:56:01 +01002366 host->ier &= ~SDHCI_INT_CARD_INT;
2367
2368 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
2369 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Russell Kingef104332014-04-25 12:55:41 +01002370 }
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002371}
Pierre Ossmanf75979b2007-09-04 07:59:18 +02002372
Hu Ziji2f05b6ab2017-03-30 17:22:57 +02002373void sdhci_enable_sdio_irq(struct mmc_host *mmc, int enable)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002374{
2375 struct sdhci_host *host = mmc_priv(mmc);
2376 unsigned long flags;
2377
Hans de Goede923713b2017-03-26 13:14:45 +02002378 if (enable)
2379 pm_runtime_get_noresume(host->mmc->parent);
2380
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002381 spin_lock_irqsave(&host->lock, flags);
2382 sdhci_enable_sdio_irq_nolock(host, enable);
Pierre Ossmanf75979b2007-09-04 07:59:18 +02002383 spin_unlock_irqrestore(&host->lock, flags);
Hans de Goede923713b2017-03-26 13:14:45 +02002384
2385 if (!enable)
2386 pm_runtime_put_noidle(host->mmc->parent);
Pierre Ossmanf75979b2007-09-04 07:59:18 +02002387}
Hu Ziji2f05b6ab2017-03-30 17:22:57 +02002388EXPORT_SYMBOL_GPL(sdhci_enable_sdio_irq);
Pierre Ossmanf75979b2007-09-04 07:59:18 +02002389
Adrian Hunter89f3c362019-05-27 14:45:55 +03002390static void sdhci_ack_sdio_irq(struct mmc_host *mmc)
2391{
2392 struct sdhci_host *host = mmc_priv(mmc);
2393 unsigned long flags;
2394
2395 spin_lock_irqsave(&host->lock, flags);
Ulf Hanssona84ad322019-09-08 12:12:34 +02002396 sdhci_enable_sdio_irq_nolock(host, true);
Adrian Hunter89f3c362019-05-27 14:45:55 +03002397 spin_unlock_irqrestore(&host->lock, flags);
2398}
2399
Hu Zijic376ea92017-03-30 17:22:56 +02002400int sdhci_start_signal_voltage_switch(struct mmc_host *mmc,
2401 struct mmc_ios *ios)
Philip Rakity6231f3d2012-07-23 15:56:23 -07002402{
Dong Aishengded97e02016-04-16 01:29:25 +08002403 struct sdhci_host *host = mmc_priv(mmc);
Philip Rakity6231f3d2012-07-23 15:56:23 -07002404 u16 ctrl;
Kevin Liu20b92a32012-12-17 19:29:26 +08002405 int ret;
Philip Rakity6231f3d2012-07-23 15:56:23 -07002406
2407 /*
2408 * Signal Voltage Switching is only applicable for Host Controllers
2409 * v3.00 and above.
2410 */
2411 if (host->version < SDHCI_SPEC_300)
2412 return 0;
2413
Philip Rakity6231f3d2012-07-23 15:56:23 -07002414 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
Kevin Liu20b92a32012-12-17 19:29:26 +08002415
Fabio Estevam21f59982013-02-14 10:35:03 -02002416 switch (ios->signal_voltage) {
Kevin Liu20b92a32012-12-17 19:29:26 +08002417 case MMC_SIGNAL_VOLTAGE_330:
Adrian Hunter8cb851a2016-06-29 16:24:16 +03002418 if (!(host->flags & SDHCI_SIGNALING_330))
2419 return -EINVAL;
Kevin Liu20b92a32012-12-17 19:29:26 +08002420 /* Set 1.8V Signal Enable in the Host Control2 register to 0 */
2421 ctrl &= ~SDHCI_CTRL_VDD_180;
2422 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
2423
Tim Kryger3a48edc2014-06-13 10:13:56 -07002424 if (!IS_ERR(mmc->supply.vqmmc)) {
Dong Aisheng761daa32016-07-12 15:46:10 +08002425 ret = mmc_regulator_set_vqmmc(mmc, ios);
Marek Vasut9cbe0fc2020-04-16 18:36:47 +02002426 if (ret < 0) {
Joe Perches66061102014-09-12 14:56:56 -07002427 pr_warn("%s: Switching to 3.3V signalling voltage failed\n",
2428 mmc_hostname(mmc));
Kevin Liu20b92a32012-12-17 19:29:26 +08002429 return -EIO;
2430 }
2431 }
2432 /* Wait for 5ms */
2433 usleep_range(5000, 5500);
2434
2435 /* 3.3V regulator output should be stable within 5 ms */
2436 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
2437 if (!(ctrl & SDHCI_CTRL_VDD_180))
2438 return 0;
2439
Fabio Estevamb0b19ce2019-11-19 12:55:03 -03002440 pr_warn("%s: 3.3V regulator output did not become stable\n",
Joe Perches66061102014-09-12 14:56:56 -07002441 mmc_hostname(mmc));
Kevin Liu20b92a32012-12-17 19:29:26 +08002442
2443 return -EAGAIN;
2444 case MMC_SIGNAL_VOLTAGE_180:
Adrian Hunter8cb851a2016-06-29 16:24:16 +03002445 if (!(host->flags & SDHCI_SIGNALING_180))
2446 return -EINVAL;
Tim Kryger3a48edc2014-06-13 10:13:56 -07002447 if (!IS_ERR(mmc->supply.vqmmc)) {
Dong Aisheng761daa32016-07-12 15:46:10 +08002448 ret = mmc_regulator_set_vqmmc(mmc, ios);
Marek Vasut9cbe0fc2020-04-16 18:36:47 +02002449 if (ret < 0) {
Joe Perches66061102014-09-12 14:56:56 -07002450 pr_warn("%s: Switching to 1.8V signalling voltage failed\n",
2451 mmc_hostname(mmc));
Kevin Liu20b92a32012-12-17 19:29:26 +08002452 return -EIO;
2453 }
2454 }
2455
2456 /*
2457 * Enable 1.8V Signal Enable in the Host Control2
2458 * register
2459 */
2460 ctrl |= SDHCI_CTRL_VDD_180;
2461 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
2462
Vincent Yang9d967a62015-01-20 16:05:15 +08002463 /* Some controller need to do more when switching */
2464 if (host->ops->voltage_switch)
2465 host->ops->voltage_switch(host);
2466
Kevin Liu20b92a32012-12-17 19:29:26 +08002467 /* 1.8V regulator output should be stable within 5 ms */
2468 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
2469 if (ctrl & SDHCI_CTRL_VDD_180)
2470 return 0;
2471
Fabio Estevamb0b19ce2019-11-19 12:55:03 -03002472 pr_warn("%s: 1.8V regulator output did not become stable\n",
Joe Perches66061102014-09-12 14:56:56 -07002473 mmc_hostname(mmc));
Kevin Liu20b92a32012-12-17 19:29:26 +08002474
2475 return -EAGAIN;
2476 case MMC_SIGNAL_VOLTAGE_120:
Adrian Hunter8cb851a2016-06-29 16:24:16 +03002477 if (!(host->flags & SDHCI_SIGNALING_120))
2478 return -EINVAL;
Tim Kryger3a48edc2014-06-13 10:13:56 -07002479 if (!IS_ERR(mmc->supply.vqmmc)) {
Dong Aisheng761daa32016-07-12 15:46:10 +08002480 ret = mmc_regulator_set_vqmmc(mmc, ios);
Marek Vasut9cbe0fc2020-04-16 18:36:47 +02002481 if (ret < 0) {
Joe Perches66061102014-09-12 14:56:56 -07002482 pr_warn("%s: Switching to 1.2V signalling voltage failed\n",
2483 mmc_hostname(mmc));
Kevin Liu20b92a32012-12-17 19:29:26 +08002484 return -EIO;
2485 }
2486 }
2487 return 0;
2488 default:
Arindam Nathf2119df2011-05-05 12:18:57 +05302489 /* No signal voltage switch required */
2490 return 0;
Kevin Liu20b92a32012-12-17 19:29:26 +08002491 }
Arindam Nathf2119df2011-05-05 12:18:57 +05302492}
Hu Zijic376ea92017-03-30 17:22:56 +02002493EXPORT_SYMBOL_GPL(sdhci_start_signal_voltage_switch);
Arindam Nathf2119df2011-05-05 12:18:57 +05302494
Kevin Liu20b92a32012-12-17 19:29:26 +08002495static int sdhci_card_busy(struct mmc_host *mmc)
2496{
2497 struct sdhci_host *host = mmc_priv(mmc);
2498 u32 present_state;
2499
Adrian Huntere613cc42016-06-23 14:00:58 +03002500 /* Check whether DAT[0] is 0 */
Kevin Liu20b92a32012-12-17 19:29:26 +08002501 present_state = sdhci_readl(host, SDHCI_PRESENT_STATE);
Kevin Liu20b92a32012-12-17 19:29:26 +08002502
Adrian Huntere613cc42016-06-23 14:00:58 +03002503 return !(present_state & SDHCI_DATA_0_LVL_MASK);
Kevin Liu20b92a32012-12-17 19:29:26 +08002504}
2505
Adrian Hunterb5540ce2014-12-05 19:25:31 +02002506static int sdhci_prepare_hs400_tuning(struct mmc_host *mmc, struct mmc_ios *ios)
2507{
2508 struct sdhci_host *host = mmc_priv(mmc);
2509 unsigned long flags;
2510
2511 spin_lock_irqsave(&host->lock, flags);
2512 host->flags |= SDHCI_HS400_TUNING;
2513 spin_unlock_irqrestore(&host->lock, flags);
2514
2515 return 0;
2516}
2517
ernest.zhang6663c412018-07-16 14:26:53 +08002518void sdhci_start_tuning(struct sdhci_host *host)
Adrian Hunterda4bc4f2016-12-02 15:59:23 +02002519{
2520 u16 ctrl;
2521
2522 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
2523 ctrl |= SDHCI_CTRL_EXEC_TUNING;
2524 if (host->quirks2 & SDHCI_QUIRK2_TUNING_WORK_AROUND)
2525 ctrl |= SDHCI_CTRL_TUNED_CLK;
2526 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
2527
2528 /*
2529 * As per the Host Controller spec v3.00, tuning command
2530 * generates Buffer Read Ready interrupt, so enable that.
2531 *
2532 * Note: The spec clearly says that when tuning sequence
2533 * is being performed, the controller does not generate
2534 * interrupts other than Buffer Read Ready interrupt. But
2535 * to make sure we don't hit a controller bug, we _only_
2536 * enable Buffer Read Ready interrupt here.
2537 */
2538 sdhci_writel(host, SDHCI_INT_DATA_AVAIL, SDHCI_INT_ENABLE);
2539 sdhci_writel(host, SDHCI_INT_DATA_AVAIL, SDHCI_SIGNAL_ENABLE);
2540}
ernest.zhang6663c412018-07-16 14:26:53 +08002541EXPORT_SYMBOL_GPL(sdhci_start_tuning);
Adrian Hunterda4bc4f2016-12-02 15:59:23 +02002542
ernest.zhang6663c412018-07-16 14:26:53 +08002543void sdhci_end_tuning(struct sdhci_host *host)
Adrian Hunterda4bc4f2016-12-02 15:59:23 +02002544{
2545 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
2546 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
2547}
ernest.zhang6663c412018-07-16 14:26:53 +08002548EXPORT_SYMBOL_GPL(sdhci_end_tuning);
Adrian Hunterda4bc4f2016-12-02 15:59:23 +02002549
ernest.zhang6663c412018-07-16 14:26:53 +08002550void sdhci_reset_tuning(struct sdhci_host *host)
Adrian Hunterda4bc4f2016-12-02 15:59:23 +02002551{
2552 u16 ctrl;
2553
2554 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
2555 ctrl &= ~SDHCI_CTRL_TUNED_CLK;
2556 ctrl &= ~SDHCI_CTRL_EXEC_TUNING;
2557 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
2558}
ernest.zhang6663c412018-07-16 14:26:53 +08002559EXPORT_SYMBOL_GPL(sdhci_reset_tuning);
Adrian Hunterda4bc4f2016-12-02 15:59:23 +02002560
Ben Chuang73537882019-08-27 08:33:22 +08002561void sdhci_abort_tuning(struct sdhci_host *host, u32 opcode)
Adrian Hunterda4bc4f2016-12-02 15:59:23 +02002562{
2563 sdhci_reset_tuning(host);
2564
2565 sdhci_do_reset(host, SDHCI_RESET_CMD);
2566 sdhci_do_reset(host, SDHCI_RESET_DATA);
2567
2568 sdhci_end_tuning(host);
2569
Adrian Hunterda4bc4f2016-12-02 15:59:23 +02002570 mmc_abort_tuning(host->mmc, opcode);
Adrian Hunterda4bc4f2016-12-02 15:59:23 +02002571}
Ben Chuang73537882019-08-27 08:33:22 +08002572EXPORT_SYMBOL_GPL(sdhci_abort_tuning);
Adrian Hunterda4bc4f2016-12-02 15:59:23 +02002573
2574/*
2575 * We use sdhci_send_tuning() because mmc_send_tuning() is not a good fit. SDHCI
2576 * tuning command does not have a data payload (or rather the hardware does it
2577 * automatically) so mmc_send_tuning() will return -EIO. Also the tuning command
2578 * interrupt setup is different to other commands and there is no timeout
2579 * interrupt so special handling is needed.
2580 */
ernest.zhang6663c412018-07-16 14:26:53 +08002581void sdhci_send_tuning(struct sdhci_host *host, u32 opcode)
Adrian Hunterda4bc4f2016-12-02 15:59:23 +02002582{
2583 struct mmc_host *mmc = host->mmc;
Masahiro Yamadac7836d12016-12-19 20:51:18 +09002584 struct mmc_command cmd = {};
2585 struct mmc_request mrq = {};
Adrian Hunter2a85ef22017-03-20 19:50:38 +02002586 unsigned long flags;
Srinivas Kandagatlac846a002017-08-03 14:46:13 +02002587 u32 b = host->sdma_boundary;
Adrian Hunter2a85ef22017-03-20 19:50:38 +02002588
2589 spin_lock_irqsave(&host->lock, flags);
Adrian Hunterda4bc4f2016-12-02 15:59:23 +02002590
2591 cmd.opcode = opcode;
2592 cmd.flags = MMC_RSP_R1 | MMC_CMD_ADTC;
2593 cmd.mrq = &mrq;
2594
2595 mrq.cmd = &cmd;
2596 /*
2597 * In response to CMD19, the card sends 64 bytes of tuning
2598 * block to the Host Controller. So we set the block size
2599 * to 64 here.
2600 */
Adrian Hunter85336102016-12-02 15:14:26 +02002601 if (cmd.opcode == MMC_SEND_TUNING_BLOCK_HS200 &&
2602 mmc->ios.bus_width == MMC_BUS_WIDTH_8)
Srinivas Kandagatlac846a002017-08-03 14:46:13 +02002603 sdhci_writew(host, SDHCI_MAKE_BLKSZ(b, 128), SDHCI_BLOCK_SIZE);
Adrian Hunter85336102016-12-02 15:14:26 +02002604 else
Srinivas Kandagatlac846a002017-08-03 14:46:13 +02002605 sdhci_writew(host, SDHCI_MAKE_BLKSZ(b, 64), SDHCI_BLOCK_SIZE);
Adrian Hunterda4bc4f2016-12-02 15:59:23 +02002606
2607 /*
2608 * The tuning block is sent by the card to the host controller.
2609 * So we set the TRNS_READ bit in the Transfer Mode register.
2610 * This also takes care of setting DMA Enable and Multi Block
2611 * Select in the same register to 0.
2612 */
2613 sdhci_writew(host, SDHCI_TRNS_READ, SDHCI_TRANSFER_MODE);
2614
2615 sdhci_send_command(host, &cmd);
2616
2617 host->cmd = NULL;
2618
2619 sdhci_del_timer(host, &mrq);
2620
2621 host->tuning_done = 0;
2622
2623 spin_unlock_irqrestore(&host->lock, flags);
2624
2625 /* Wait for Buffer Read Ready interrupt */
2626 wait_event_timeout(host->buf_ready_int, (host->tuning_done == 1),
2627 msecs_to_jiffies(50));
2628
Adrian Hunterda4bc4f2016-12-02 15:59:23 +02002629}
ernest.zhang6663c412018-07-16 14:26:53 +08002630EXPORT_SYMBOL_GPL(sdhci_send_tuning);
Adrian Hunterda4bc4f2016-12-02 15:59:23 +02002631
Yinbo Zhu7d8bb1f2018-08-23 16:48:31 +08002632static int __sdhci_execute_tuning(struct sdhci_host *host, u32 opcode)
Adrian Hunter6b11e702016-12-02 15:14:27 +02002633{
2634 int i;
2635
2636 /*
2637 * Issue opcode repeatedly till Execute Tuning is set to 0 or the number
Sowjanya Komatineni1d8cd0652019-03-23 21:45:19 -07002638 * of loops reaches tuning loop count.
Adrian Hunter6b11e702016-12-02 15:14:27 +02002639 */
Sowjanya Komatineni1d8cd0652019-03-23 21:45:19 -07002640 for (i = 0; i < host->tuning_loop_count; i++) {
Adrian Hunter6b11e702016-12-02 15:14:27 +02002641 u16 ctrl;
2642
Adrian Hunter2a85ef22017-03-20 19:50:38 +02002643 sdhci_send_tuning(host, opcode);
Adrian Hunter6b11e702016-12-02 15:14:27 +02002644
2645 if (!host->tuning_done) {
Faiz Abbas811ba672019-12-06 17:13:26 +05302646 pr_debug("%s: Tuning timeout, falling back to fixed sampling clock\n",
2647 mmc_hostname(host->mmc));
Adrian Hunter2a85ef22017-03-20 19:50:38 +02002648 sdhci_abort_tuning(host, opcode);
Yinbo Zhu7d8bb1f2018-08-23 16:48:31 +08002649 return -ETIMEDOUT;
Adrian Hunter6b11e702016-12-02 15:14:27 +02002650 }
2651
BOUGH CHEN2b06e152018-12-28 08:35:49 +00002652 /* Spec does not require a delay between tuning cycles */
2653 if (host->tuning_delay > 0)
2654 mdelay(host->tuning_delay);
2655
Adrian Hunter6b11e702016-12-02 15:14:27 +02002656 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
2657 if (!(ctrl & SDHCI_CTRL_EXEC_TUNING)) {
2658 if (ctrl & SDHCI_CTRL_TUNED_CLK)
Yinbo Zhu7d8bb1f2018-08-23 16:48:31 +08002659 return 0; /* Success! */
Adrian Hunter6b11e702016-12-02 15:14:27 +02002660 break;
2661 }
2662
Adrian Hunter6b11e702016-12-02 15:14:27 +02002663 }
2664
2665 pr_info("%s: Tuning failed, falling back to fixed sampling clock\n",
2666 mmc_hostname(host->mmc));
2667 sdhci_reset_tuning(host);
Yinbo Zhu7d8bb1f2018-08-23 16:48:31 +08002668 return -EAGAIN;
Adrian Hunter6b11e702016-12-02 15:14:27 +02002669}
2670
Masahiro Yamada85a882c2016-12-08 21:50:54 +09002671int sdhci_execute_tuning(struct mmc_host *mmc, u32 opcode)
Arindam Nathb513ea22011-05-05 12:19:04 +05302672{
Russell King4b6f37d2014-04-25 12:59:36 +01002673 struct sdhci_host *host = mmc_priv(mmc);
Arindam Nathb513ea22011-05-05 12:19:04 +05302674 int err = 0;
Adrian Hunter38e40bf2014-12-05 19:25:30 +02002675 unsigned int tuning_count = 0;
Adrian Hunterb5540ce2014-12-05 19:25:31 +02002676 bool hs400_tuning;
Arindam Nathb513ea22011-05-05 12:19:04 +05302677
Adrian Hunterb5540ce2014-12-05 19:25:31 +02002678 hs400_tuning = host->flags & SDHCI_HS400_TUNING;
Adrian Hunterb5540ce2014-12-05 19:25:31 +02002679
Adrian Hunter38e40bf2014-12-05 19:25:30 +02002680 if (host->tuning_mode == SDHCI_TUNING_MODE_1)
2681 tuning_count = host->tuning_count;
2682
Arindam Nathb513ea22011-05-05 12:19:04 +05302683 /*
Weijun Yang9faac7b2015-10-04 12:04:12 +00002684 * The Host Controller needs tuning in case of SDR104 and DDR50
2685 * mode, and for SDR50 mode when Use Tuning for SDR50 is set in
2686 * the Capabilities register.
Girish K S069c9f12012-01-06 09:56:39 +05302687 * If the Host Controller supports the HS200 mode then the
2688 * tuning function has to be executed.
Arindam Nathb513ea22011-05-05 12:19:04 +05302689 */
Russell King4b6f37d2014-04-25 12:59:36 +01002690 switch (host->timing) {
Adrian Hunterb5540ce2014-12-05 19:25:31 +02002691 /* HS400 tuning is done in HS200 mode */
Adrian Huntere9fb05d2014-11-06 15:19:06 +02002692 case MMC_TIMING_MMC_HS400:
Adrian Hunterb5540ce2014-12-05 19:25:31 +02002693 err = -EINVAL;
Adrian Hunter2a85ef22017-03-20 19:50:38 +02002694 goto out;
Adrian Hunterb5540ce2014-12-05 19:25:31 +02002695
Russell King4b6f37d2014-04-25 12:59:36 +01002696 case MMC_TIMING_MMC_HS200:
Adrian Hunterb5540ce2014-12-05 19:25:31 +02002697 /*
2698 * Periodic re-tuning for HS400 is not expected to be needed, so
2699 * disable it here.
2700 */
2701 if (hs400_tuning)
2702 tuning_count = 0;
2703 break;
2704
Russell King4b6f37d2014-04-25 12:59:36 +01002705 case MMC_TIMING_UHS_SDR104:
Weijun Yang9faac7b2015-10-04 12:04:12 +00002706 case MMC_TIMING_UHS_DDR50:
Russell King4b6f37d2014-04-25 12:59:36 +01002707 break;
Girish K S069c9f12012-01-06 09:56:39 +05302708
Russell King4b6f37d2014-04-25 12:59:36 +01002709 case MMC_TIMING_UHS_SDR50:
Adrian Hunter4228b212016-04-20 09:24:03 +03002710 if (host->flags & SDHCI_SDR50_NEEDS_TUNING)
Russell King4b6f37d2014-04-25 12:59:36 +01002711 break;
2712 /* FALLTHROUGH */
2713
2714 default:
Adrian Hunter2a85ef22017-03-20 19:50:38 +02002715 goto out;
Arindam Nathb513ea22011-05-05 12:19:04 +05302716 }
2717
Dong Aisheng45251812013-09-13 19:11:30 +08002718 if (host->ops->platform_execute_tuning) {
Ritesh Harjani8a8fa872017-01-10 12:30:50 +05302719 err = host->ops->platform_execute_tuning(host, opcode);
Adrian Hunter2a85ef22017-03-20 19:50:38 +02002720 goto out;
Dong Aisheng45251812013-09-13 19:11:30 +08002721 }
2722
Adrian Hunter6b11e702016-12-02 15:14:27 +02002723 host->mmc->retune_period = tuning_count;
2724
Adrian Hunter83b600b2017-04-20 16:14:43 +08002725 if (host->tuning_delay < 0)
2726 host->tuning_delay = opcode == MMC_SEND_TUNING_BLOCK;
2727
Adrian Hunterda4bc4f2016-12-02 15:59:23 +02002728 sdhci_start_tuning(host);
Arindam Nathb513ea22011-05-05 12:19:04 +05302729
Yinbo Zhu7d8bb1f2018-08-23 16:48:31 +08002730 host->tuning_err = __sdhci_execute_tuning(host, opcode);
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05302731
Adrian Hunterda4bc4f2016-12-02 15:59:23 +02002732 sdhci_end_tuning(host);
Adrian Hunter2a85ef22017-03-20 19:50:38 +02002733out:
Ritesh Harjani8a8fa872017-01-10 12:30:50 +05302734 host->flags &= ~SDHCI_HS400_TUNING;
Adrian Hunter6b11e702016-12-02 15:14:27 +02002735
Arindam Nathb513ea22011-05-05 12:19:04 +05302736 return err;
2737}
Masahiro Yamada85a882c2016-12-08 21:50:54 +09002738EXPORT_SYMBOL_GPL(sdhci_execute_tuning);
Arindam Nathb513ea22011-05-05 12:19:04 +05302739
Kevin Liu52983382013-01-31 11:31:37 +08002740static void sdhci_enable_preset_value(struct sdhci_host *host, bool enable)
Arindam Nath4d55c5a2011-05-05 12:19:05 +05302741{
Arindam Nath4d55c5a2011-05-05 12:19:05 +05302742 /* Host Controller v3.00 defines preset value registers */
2743 if (host->version < SDHCI_SPEC_300)
2744 return;
2745
Arindam Nath4d55c5a2011-05-05 12:19:05 +05302746 /*
2747 * We only enable or disable Preset Value if they are not already
2748 * enabled or disabled respectively. Otherwise, we bail out.
2749 */
Russell Kingda91a8f2014-04-25 13:00:12 +01002750 if (host->preset_enabled != enable) {
2751 u16 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
2752
2753 if (enable)
2754 ctrl |= SDHCI_CTRL_PRESET_VAL_ENABLE;
2755 else
2756 ctrl &= ~SDHCI_CTRL_PRESET_VAL_ENABLE;
2757
Arindam Nath4d55c5a2011-05-05 12:19:05 +05302758 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
Russell Kingda91a8f2014-04-25 13:00:12 +01002759
2760 if (enable)
2761 host->flags |= SDHCI_PV_ENABLED;
2762 else
2763 host->flags &= ~SDHCI_PV_ENABLED;
2764
2765 host->preset_enabled = enable;
Arindam Nath4d55c5a2011-05-05 12:19:05 +05302766 }
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002767}
2768
Haibo Chen348487c2014-12-09 17:04:05 +08002769static void sdhci_post_req(struct mmc_host *mmc, struct mmc_request *mrq,
2770 int err)
2771{
2772 struct sdhci_host *host = mmc_priv(mmc);
2773 struct mmc_data *data = mrq->data;
2774
Russell Kingf48f0392016-01-26 13:40:32 +00002775 if (data->host_cookie != COOKIE_UNMAPPED)
Russell King771a3dc2016-01-26 13:40:53 +00002776 dma_unmap_sg(mmc_dev(host->mmc), data->sg, data->sg_len,
Heiner Kallweitfeeef092017-03-26 20:45:56 +02002777 mmc_get_dma_dir(data));
Russell King771a3dc2016-01-26 13:40:53 +00002778
2779 data->host_cookie = COOKIE_UNMAPPED;
Haibo Chen348487c2014-12-09 17:04:05 +08002780}
2781
Linus Walleijd3c6aac2016-11-23 11:02:24 +01002782static void sdhci_pre_req(struct mmc_host *mmc, struct mmc_request *mrq)
Haibo Chen348487c2014-12-09 17:04:05 +08002783{
2784 struct sdhci_host *host = mmc_priv(mmc);
2785
Haibo Chend31911b2015-08-25 10:02:11 +08002786 mrq->data->host_cookie = COOKIE_UNMAPPED;
Haibo Chen348487c2014-12-09 17:04:05 +08002787
Linus Walleijbd9b9022018-01-29 00:44:53 +01002788 /*
2789 * No pre-mapping in the pre hook if we're using the bounce buffer,
2790 * for that we would need two bounce buffers since one buffer is
2791 * in flight when this is getting called.
2792 */
2793 if (host->flags & SDHCI_REQ_USE_DMA && !host->bounce_buffer)
Russell King94538e52016-01-26 13:40:37 +00002794 sdhci_pre_dma_transfer(host, mrq->data, COOKIE_PRE_MAPPED);
Haibo Chen348487c2014-12-09 17:04:05 +08002795}
2796
Adrian Hunter5d0d11c2016-06-29 16:24:31 +03002797static void sdhci_error_out_mrqs(struct sdhci_host *host, int err)
2798{
2799 if (host->data_cmd) {
2800 host->data_cmd->error = err;
2801 sdhci_finish_mrq(host, host->data_cmd->mrq);
2802 }
2803
2804 if (host->cmd) {
2805 host->cmd->error = err;
2806 sdhci_finish_mrq(host, host->cmd->mrq);
2807 }
2808}
2809
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002810static void sdhci_card_event(struct mmc_host *mmc)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002811{
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002812 struct sdhci_host *host = mmc_priv(mmc);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002813 unsigned long flags;
Krzysztof Kozlowski28367662015-01-05 10:50:15 +01002814 int present;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002815
Christian Daudt722e1282013-06-20 14:26:36 -07002816 /* First check if client has provided their own card event */
2817 if (host->ops->card_event)
2818 host->ops->card_event(host);
2819
Adrian Hunterd3940f22016-06-29 16:24:14 +03002820 present = mmc->ops->get_cd(mmc);
Krzysztof Kozlowski28367662015-01-05 10:50:15 +01002821
Pierre Ossmand129bce2006-03-24 03:18:17 -08002822 spin_lock_irqsave(&host->lock, flags);
2823
Adrian Hunter5d0d11c2016-06-29 16:24:31 +03002824 /* Check sdhci_has_requests() first in case we are runtime suspended */
2825 if (sdhci_has_requests(host) && !present) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05302826 pr_err("%s: Card removed during transfer!\n",
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002827 mmc_hostname(host->mmc));
Girish K Sa3c76eb2011-10-11 11:44:09 +05302828 pr_err("%s: Resetting controller.\n",
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002829 mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -08002830
Russell King03231f92014-04-25 12:57:12 +01002831 sdhci_do_reset(host, SDHCI_RESET_CMD);
2832 sdhci_do_reset(host, SDHCI_RESET_DATA);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002833
Adrian Hunter5d0d11c2016-06-29 16:24:31 +03002834 sdhci_error_out_mrqs(host, -ENOMEDIUM);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002835 }
2836
2837 spin_unlock_irqrestore(&host->lock, flags);
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002838}
2839
2840static const struct mmc_host_ops sdhci_ops = {
2841 .request = sdhci_request,
Haibo Chen348487c2014-12-09 17:04:05 +08002842 .post_req = sdhci_post_req,
2843 .pre_req = sdhci_pre_req,
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002844 .set_ios = sdhci_set_ios,
Kevin Liu94144a42013-02-28 17:35:53 +08002845 .get_cd = sdhci_get_cd,
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002846 .get_ro = sdhci_get_ro,
2847 .hw_reset = sdhci_hw_reset,
2848 .enable_sdio_irq = sdhci_enable_sdio_irq,
Adrian Hunter89f3c362019-05-27 14:45:55 +03002849 .ack_sdio_irq = sdhci_ack_sdio_irq,
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002850 .start_signal_voltage_switch = sdhci_start_signal_voltage_switch,
Adrian Hunterb5540ce2014-12-05 19:25:31 +02002851 .prepare_hs400_tuning = sdhci_prepare_hs400_tuning,
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002852 .execute_tuning = sdhci_execute_tuning,
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002853 .card_event = sdhci_card_event,
Kevin Liu20b92a32012-12-17 19:29:26 +08002854 .card_busy = sdhci_card_busy,
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002855};
2856
2857/*****************************************************************************\
2858 * *
Adrian Hunterc07a48c2019-04-05 15:40:20 +03002859 * Request done *
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002860 * *
2861\*****************************************************************************/
2862
Adrian Hunter4e9f8fe2016-06-29 16:24:34 +03002863static bool sdhci_request_done(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002864{
Pierre Ossmand129bce2006-03-24 03:18:17 -08002865 unsigned long flags;
2866 struct mmc_request *mrq;
Adrian Hunter4e9f8fe2016-06-29 16:24:34 +03002867 int i;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002868
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002869 spin_lock_irqsave(&host->lock, flags);
2870
Adrian Hunter4e9f8fe2016-06-29 16:24:34 +03002871 for (i = 0; i < SDHCI_MAX_MRQS; i++) {
2872 mrq = host->mrqs_done[i];
Adrian Hunter6ebebea2016-11-02 15:49:08 +02002873 if (mrq)
Adrian Hunter4e9f8fe2016-06-29 16:24:34 +03002874 break;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002875 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08002876
Adrian Hunter4e9f8fe2016-06-29 16:24:34 +03002877 if (!mrq) {
2878 spin_unlock_irqrestore(&host->lock, flags);
2879 return true;
2880 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08002881
Pierre Ossmand129bce2006-03-24 03:18:17 -08002882 /*
Russell King054cedf2016-01-26 13:40:42 +00002883 * Always unmap the data buffers if they were mapped by
2884 * sdhci_prepare_data() whenever we finish with a request.
2885 * This avoids leaking DMA mappings on error.
2886 */
2887 if (host->flags & SDHCI_REQ_USE_DMA) {
2888 struct mmc_data *data = mrq->data;
2889
Chunyan Zhang18e762e2020-01-16 16:21:47 +05302890 if (host->use_external_dma && data &&
2891 (mrq->cmd->error || data->error)) {
2892 struct dma_chan *chan = sdhci_external_dma_channel(host, data);
2893
2894 host->mrqs_done[i] = NULL;
2895 spin_unlock_irqrestore(&host->lock, flags);
2896 dmaengine_terminate_sync(chan);
2897 spin_lock_irqsave(&host->lock, flags);
2898 sdhci_set_mrq_done(host, mrq);
2899 }
2900
Russell King054cedf2016-01-26 13:40:42 +00002901 if (data && data->host_cookie == COOKIE_MAPPED) {
Linus Walleijbd9b9022018-01-29 00:44:53 +01002902 if (host->bounce_buffer) {
2903 /*
2904 * On reads, copy the bounced data into the
2905 * sglist
2906 */
2907 if (mmc_get_dma_dir(data) == DMA_FROM_DEVICE) {
2908 unsigned int length = data->bytes_xfered;
2909
2910 if (length > host->bounce_buffer_size) {
2911 pr_err("%s: bounce buffer is %u bytes but DMA claims to have transferred %u bytes\n",
2912 mmc_hostname(host->mmc),
2913 host->bounce_buffer_size,
2914 data->bytes_xfered);
2915 /* Cap it down and continue */
2916 length = host->bounce_buffer_size;
2917 }
2918 dma_sync_single_for_cpu(
2919 host->mmc->parent,
2920 host->bounce_addr,
2921 host->bounce_buffer_size,
2922 DMA_FROM_DEVICE);
2923 sg_copy_from_buffer(data->sg,
2924 data->sg_len,
2925 host->bounce_buffer,
2926 length);
2927 } else {
2928 /* No copying, just switch ownership */
2929 dma_sync_single_for_cpu(
2930 host->mmc->parent,
2931 host->bounce_addr,
2932 host->bounce_buffer_size,
2933 mmc_get_dma_dir(data));
2934 }
2935 } else {
2936 /* Unmap the raw data */
2937 dma_unmap_sg(mmc_dev(host->mmc), data->sg,
2938 data->sg_len,
2939 mmc_get_dma_dir(data));
2940 }
Russell King054cedf2016-01-26 13:40:42 +00002941 data->host_cookie = COOKIE_UNMAPPED;
2942 }
2943 }
2944
2945 /*
Pierre Ossmand129bce2006-03-24 03:18:17 -08002946 * The controller needs a reset of internal state machines
2947 * upon error conditions.
2948 */
Adrian Hunter0cc563c2016-06-29 16:24:28 +03002949 if (sdhci_needs_reset(host, mrq)) {
Adrian Hunter6ebebea2016-11-02 15:49:08 +02002950 /*
2951 * Do not finish until command and data lines are available for
2952 * reset. Note there can only be one other mrq, so it cannot
2953 * also be in mrqs_done, otherwise host->cmd and host->data_cmd
2954 * would both be null.
2955 */
2956 if (host->cmd || host->data_cmd) {
2957 spin_unlock_irqrestore(&host->lock, flags);
2958 return true;
2959 }
2960
Pierre Ossman645289d2006-06-30 02:22:33 -07002961 /* Some controllers need this kick or reset won't work here */
Andy Shevchenko8213af32013-01-07 16:31:08 +02002962 if (host->quirks & SDHCI_QUIRK_CLOCK_BEFORE_RESET)
Pierre Ossman645289d2006-06-30 02:22:33 -07002963 /* This is to force an update */
Russell King17710592014-04-25 12:58:55 +01002964 host->ops->set_clock(host, host->clock);
Pierre Ossman645289d2006-06-30 02:22:33 -07002965
2966 /* Spec says we should do both at the same time, but Ricoh
2967 controllers do not like that. */
Adrian Hunter6ebebea2016-11-02 15:49:08 +02002968 sdhci_do_reset(host, SDHCI_RESET_CMD);
2969 sdhci_do_reset(host, SDHCI_RESET_DATA);
Adrian Huntered1563d2016-06-29 16:24:29 +03002970
2971 host->pending_reset = false;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002972 }
2973
Adrian Hunter6ebebea2016-11-02 15:49:08 +02002974 host->mrqs_done[i] = NULL;
2975
Pierre Ossmand129bce2006-03-24 03:18:17 -08002976 spin_unlock_irqrestore(&host->lock, flags);
2977
Baolin Wang1774b002020-02-12 12:12:58 +08002978 if (host->ops->request_done)
2979 host->ops->request_done(host, mrq);
2980 else
2981 mmc_request_done(host->mmc, mrq);
Adrian Hunter4e9f8fe2016-06-29 16:24:34 +03002982
2983 return false;
2984}
2985
Adrian Hunterc07a48c2019-04-05 15:40:20 +03002986static void sdhci_complete_work(struct work_struct *work)
Adrian Hunter4e9f8fe2016-06-29 16:24:34 +03002987{
Adrian Hunterc07a48c2019-04-05 15:40:20 +03002988 struct sdhci_host *host = container_of(work, struct sdhci_host,
2989 complete_work);
Adrian Hunter4e9f8fe2016-06-29 16:24:34 +03002990
2991 while (!sdhci_request_done(host))
2992 ;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002993}
2994
Kees Cook2ee4f622017-10-24 08:03:45 -07002995static void sdhci_timeout_timer(struct timer_list *t)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002996{
2997 struct sdhci_host *host;
2998 unsigned long flags;
2999
Kees Cook2ee4f622017-10-24 08:03:45 -07003000 host = from_timer(host, t, timer);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003001
3002 spin_lock_irqsave(&host->lock, flags);
3003
Adrian Hunterd7422fb2016-06-29 16:24:33 +03003004 if (host->cmd && !sdhci_data_line_cmd(host->cmd)) {
3005 pr_err("%s: Timeout waiting for hardware cmd interrupt.\n",
3006 mmc_hostname(host->mmc));
3007 sdhci_dumpregs(host);
3008
3009 host->cmd->error = -ETIMEDOUT;
3010 sdhci_finish_mrq(host, host->cmd->mrq);
3011 }
3012
Adrian Hunterd7422fb2016-06-29 16:24:33 +03003013 spin_unlock_irqrestore(&host->lock, flags);
3014}
3015
Kees Cook2ee4f622017-10-24 08:03:45 -07003016static void sdhci_timeout_data_timer(struct timer_list *t)
Adrian Hunterd7422fb2016-06-29 16:24:33 +03003017{
3018 struct sdhci_host *host;
3019 unsigned long flags;
3020
Kees Cook2ee4f622017-10-24 08:03:45 -07003021 host = from_timer(host, t, data_timer);
Adrian Hunterd7422fb2016-06-29 16:24:33 +03003022
3023 spin_lock_irqsave(&host->lock, flags);
3024
3025 if (host->data || host->data_cmd ||
3026 (host->cmd && sdhci_data_line_cmd(host->cmd))) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01003027 pr_err("%s: Timeout waiting for hardware interrupt.\n",
3028 mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -08003029 sdhci_dumpregs(host);
3030
3031 if (host->data) {
Pierre Ossman17b04292007-07-22 22:18:46 +02003032 host->data->error = -ETIMEDOUT;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003033 sdhci_finish_data(host);
Adrian Hunterc07a48c2019-04-05 15:40:20 +03003034 queue_work(host->complete_wq, &host->complete_work);
Adrian Hunterd7422fb2016-06-29 16:24:33 +03003035 } else if (host->data_cmd) {
3036 host->data_cmd->error = -ETIMEDOUT;
3037 sdhci_finish_mrq(host, host->data_cmd->mrq);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003038 } else {
Adrian Hunterd7422fb2016-06-29 16:24:33 +03003039 host->cmd->error = -ETIMEDOUT;
3040 sdhci_finish_mrq(host, host->cmd->mrq);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003041 }
3042 }
3043
3044 spin_unlock_irqrestore(&host->lock, flags);
3045}
3046
3047/*****************************************************************************\
3048 * *
3049 * Interrupt handling *
3050 * *
3051\*****************************************************************************/
3052
Adrian Hunter4bf78092018-11-15 15:53:41 +02003053static void sdhci_cmd_irq(struct sdhci_host *host, u32 intmask, u32 *intmask_p)
Pierre Ossmand129bce2006-03-24 03:18:17 -08003054{
Adrian Hunteraf849c82018-11-15 15:53:43 +02003055 /* Handle auto-CMD12 error */
3056 if (intmask & SDHCI_INT_AUTO_CMD_ERR && host->data_cmd) {
3057 struct mmc_request *mrq = host->data_cmd->mrq;
3058 u16 auto_cmd_status = sdhci_readw(host, SDHCI_AUTO_CMD_STATUS);
3059 int data_err_bit = (auto_cmd_status & SDHCI_AUTO_CMD_TIMEOUT) ?
3060 SDHCI_INT_DATA_TIMEOUT :
3061 SDHCI_INT_DATA_CRC;
3062
3063 /* Treat auto-CMD12 error the same as data error */
3064 if (!mrq->sbc && (host->flags & SDHCI_AUTO_CMD12)) {
3065 *intmask_p |= data_err_bit;
3066 return;
3067 }
3068 }
3069
Pierre Ossmand129bce2006-03-24 03:18:17 -08003070 if (!host->cmd) {
Adrian Huntered1563d2016-06-29 16:24:29 +03003071 /*
3072 * SDHCI recovers from errors by resetting the cmd and data
3073 * circuits. Until that is done, there very well might be more
3074 * interrupts, so ignore them in that case.
3075 */
3076 if (host->pending_reset)
3077 return;
Marek Vasut2e4456f2015-11-18 10:47:02 +01003078 pr_err("%s: Got command interrupt 0x%08x even though no command operation was in progress.\n",
3079 mmc_hostname(host->mmc), (unsigned)intmask);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003080 sdhci_dumpregs(host);
3081 return;
3082 }
3083
Russell Kingec014cb2016-01-26 13:39:39 +00003084 if (intmask & (SDHCI_INT_TIMEOUT | SDHCI_INT_CRC |
3085 SDHCI_INT_END_BIT | SDHCI_INT_INDEX)) {
3086 if (intmask & SDHCI_INT_TIMEOUT)
3087 host->cmd->error = -ETIMEDOUT;
3088 else
3089 host->cmd->error = -EILSEQ;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003090
Adrian Hunter4bf78092018-11-15 15:53:41 +02003091 /* Treat data command CRC error the same as data CRC error */
Russell King71fcbda2016-01-26 13:39:45 +00003092 if (host->cmd->data &&
3093 (intmask & (SDHCI_INT_CRC | SDHCI_INT_TIMEOUT)) ==
3094 SDHCI_INT_CRC) {
3095 host->cmd = NULL;
Adrian Hunter4bf78092018-11-15 15:53:41 +02003096 *intmask_p |= SDHCI_INT_DATA_CRC;
Russell King71fcbda2016-01-26 13:39:45 +00003097 return;
3098 }
3099
Adrian Hunter19d2f692019-04-05 15:40:19 +03003100 __sdhci_finish_mrq(host, host->cmd->mrq);
Pierre Ossmane8095172008-07-25 01:09:08 +02003101 return;
3102 }
3103
Adrian Hunteraf849c82018-11-15 15:53:43 +02003104 /* Handle auto-CMD23 error */
3105 if (intmask & SDHCI_INT_AUTO_CMD_ERR) {
3106 struct mmc_request *mrq = host->cmd->mrq;
3107 u16 auto_cmd_status = sdhci_readw(host, SDHCI_AUTO_CMD_STATUS);
3108 int err = (auto_cmd_status & SDHCI_AUTO_CMD_TIMEOUT) ?
3109 -ETIMEDOUT :
3110 -EILSEQ;
3111
3112 if (mrq->sbc && (host->flags & SDHCI_AUTO_CMD23)) {
3113 mrq->sbc->error = err;
Adrian Hunter19d2f692019-04-05 15:40:19 +03003114 __sdhci_finish_mrq(host, mrq);
Adrian Hunteraf849c82018-11-15 15:53:43 +02003115 return;
3116 }
3117 }
3118
Pierre Ossmane8095172008-07-25 01:09:08 +02003119 if (intmask & SDHCI_INT_RESPONSE)
Pierre Ossman43b58b32007-07-25 23:15:27 +02003120 sdhci_finish_command(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003121}
3122
Adrian Hunter08621b12014-11-04 12:42:38 +02003123static void sdhci_adma_show_error(struct sdhci_host *host)
Ben Dooks6882a8c2009-06-14 13:52:38 +01003124{
Adrian Hunter1c3d5f62014-11-04 12:42:41 +02003125 void *desc = host->adma_table;
Russell Kingd1c536e2019-09-22 11:26:53 +01003126 dma_addr_t dma = host->adma_addr;
Ben Dooks6882a8c2009-06-14 13:52:38 +01003127
3128 sdhci_dumpregs(host);
3129
3130 while (true) {
Adrian Huntere57a5f62014-11-04 12:42:46 +02003131 struct sdhci_adma2_64_desc *dma_desc = desc;
Ben Dooks6882a8c2009-06-14 13:52:38 +01003132
Adrian Huntere57a5f62014-11-04 12:42:46 +02003133 if (host->flags & SDHCI_USE_64_BIT_DMA)
Russell Kingd1c536e2019-09-22 11:26:53 +01003134 SDHCI_DUMP("%08llx: DMA 0x%08x%08x, LEN 0x%04x, Attr=0x%02x\n",
3135 (unsigned long long)dma,
3136 le32_to_cpu(dma_desc->addr_hi),
Adrian Huntere57a5f62014-11-04 12:42:46 +02003137 le32_to_cpu(dma_desc->addr_lo),
3138 le16_to_cpu(dma_desc->len),
3139 le16_to_cpu(dma_desc->cmd));
3140 else
Russell Kingd1c536e2019-09-22 11:26:53 +01003141 SDHCI_DUMP("%08llx: DMA 0x%08x, LEN 0x%04x, Attr=0x%02x\n",
3142 (unsigned long long)dma,
3143 le32_to_cpu(dma_desc->addr_lo),
Adrian Huntere57a5f62014-11-04 12:42:46 +02003144 le16_to_cpu(dma_desc->len),
3145 le16_to_cpu(dma_desc->cmd));
Ben Dooks6882a8c2009-06-14 13:52:38 +01003146
Adrian Hunter76fe3792014-11-04 12:42:42 +02003147 desc += host->desc_sz;
Russell Kingd1c536e2019-09-22 11:26:53 +01003148 dma += host->desc_sz;
Ben Dooks6882a8c2009-06-14 13:52:38 +01003149
Adrian Hunter05452302014-11-04 12:42:45 +02003150 if (dma_desc->cmd & cpu_to_le16(ADMA2_END))
Ben Dooks6882a8c2009-06-14 13:52:38 +01003151 break;
3152 }
3153}
Ben Dooks6882a8c2009-06-14 13:52:38 +01003154
Pierre Ossmand129bce2006-03-24 03:18:17 -08003155static void sdhci_data_irq(struct sdhci_host *host, u32 intmask)
3156{
Girish K S069c9f12012-01-06 09:56:39 +05303157 u32 command;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003158
Arindam Nathb513ea22011-05-05 12:19:04 +05303159 /* CMD19 generates _only_ Buffer Read Ready interrupt */
3160 if (intmask & SDHCI_INT_DATA_AVAIL) {
Girish K S069c9f12012-01-06 09:56:39 +05303161 command = SDHCI_GET_CMD(sdhci_readw(host, SDHCI_COMMAND));
3162 if (command == MMC_SEND_TUNING_BLOCK ||
3163 command == MMC_SEND_TUNING_BLOCK_HS200) {
Arindam Nathb513ea22011-05-05 12:19:04 +05303164 host->tuning_done = 1;
3165 wake_up(&host->buf_ready_int);
3166 return;
3167 }
3168 }
3169
Pierre Ossmand129bce2006-03-24 03:18:17 -08003170 if (!host->data) {
Adrian Hunter7c89a3d2016-06-29 16:24:23 +03003171 struct mmc_command *data_cmd = host->data_cmd;
3172
Pierre Ossmand129bce2006-03-24 03:18:17 -08003173 /*
Pierre Ossmane8095172008-07-25 01:09:08 +02003174 * The "data complete" interrupt is also used to
3175 * indicate that a busy state has ended. See comment
3176 * above in sdhci_cmd_irq().
Pierre Ossmand129bce2006-03-24 03:18:17 -08003177 */
Adrian Hunter7c89a3d2016-06-29 16:24:23 +03003178 if (data_cmd && (data_cmd->flags & MMC_RSP_BUSY)) {
Matthieu CASTETc5abd5e2014-08-14 16:03:17 +02003179 if (intmask & SDHCI_INT_DATA_TIMEOUT) {
Adrian Hunter69b962a2016-11-02 15:49:09 +02003180 host->data_cmd = NULL;
Adrian Hunter7c89a3d2016-06-29 16:24:23 +03003181 data_cmd->error = -ETIMEDOUT;
Adrian Hunter19d2f692019-04-05 15:40:19 +03003182 __sdhci_finish_mrq(host, data_cmd->mrq);
Matthieu CASTETc5abd5e2014-08-14 16:03:17 +02003183 return;
3184 }
Pierre Ossmane8095172008-07-25 01:09:08 +02003185 if (intmask & SDHCI_INT_DATA_END) {
Adrian Hunter69b962a2016-11-02 15:49:09 +02003186 host->data_cmd = NULL;
Chanho Mine99783a2014-08-30 12:40:40 +09003187 /*
3188 * Some cards handle busy-end interrupt
3189 * before the command completed, so make
3190 * sure we do things in the proper order.
3191 */
Adrian Hunterea968022016-06-29 16:24:24 +03003192 if (host->cmd == data_cmd)
3193 return;
3194
Adrian Hunter19d2f692019-04-05 15:40:19 +03003195 __sdhci_finish_mrq(host, data_cmd->mrq);
Pierre Ossmane8095172008-07-25 01:09:08 +02003196 return;
3197 }
3198 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08003199
Adrian Huntered1563d2016-06-29 16:24:29 +03003200 /*
3201 * SDHCI recovers from errors by resetting the cmd and data
3202 * circuits. Until that is done, there very well might be more
3203 * interrupts, so ignore them in that case.
3204 */
3205 if (host->pending_reset)
3206 return;
3207
Marek Vasut2e4456f2015-11-18 10:47:02 +01003208 pr_err("%s: Got data interrupt 0x%08x even though no data operation was in progress.\n",
3209 mmc_hostname(host->mmc), (unsigned)intmask);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003210 sdhci_dumpregs(host);
3211
3212 return;
3213 }
3214
3215 if (intmask & SDHCI_INT_DATA_TIMEOUT)
Pierre Ossman17b04292007-07-22 22:18:46 +02003216 host->data->error = -ETIMEDOUT;
Aries Lee22113ef2010-12-15 08:14:24 +01003217 else if (intmask & SDHCI_INT_DATA_END_BIT)
3218 host->data->error = -EILSEQ;
3219 else if ((intmask & SDHCI_INT_DATA_CRC) &&
3220 SDHCI_GET_CMD(sdhci_readw(host, SDHCI_COMMAND))
3221 != MMC_BUS_TEST_R)
Pierre Ossman17b04292007-07-22 22:18:46 +02003222 host->data->error = -EILSEQ;
Ben Dooks6882a8c2009-06-14 13:52:38 +01003223 else if (intmask & SDHCI_INT_ADMA_ERROR) {
Russell Kingd1c536e2019-09-22 11:26:53 +01003224 pr_err("%s: ADMA error: 0x%08x\n", mmc_hostname(host->mmc),
3225 intmask);
Adrian Hunter08621b12014-11-04 12:42:38 +02003226 sdhci_adma_show_error(host);
Pierre Ossman2134a922008-06-28 18:28:51 +02003227 host->data->error = -EIO;
Haijun Zhanga4071fb2012-12-04 10:41:28 +08003228 if (host->ops->adma_workaround)
3229 host->ops->adma_workaround(host, intmask);
Ben Dooks6882a8c2009-06-14 13:52:38 +01003230 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08003231
Pierre Ossman17b04292007-07-22 22:18:46 +02003232 if (host->data->error)
Pierre Ossmand129bce2006-03-24 03:18:17 -08003233 sdhci_finish_data(host);
3234 else {
Pierre Ossmana406f5a2006-07-02 16:50:59 +01003235 if (intmask & (SDHCI_INT_DATA_AVAIL | SDHCI_INT_SPACE_AVAIL))
Pierre Ossmand129bce2006-03-24 03:18:17 -08003236 sdhci_transfer_pio(host);
3237
Pierre Ossman6ba736a2007-05-13 22:39:23 +02003238 /*
3239 * We currently don't do anything fancy with DMA
3240 * boundaries, but as we can't disable the feature
3241 * we need to at least restart the transfer.
Mikko Vinnif6a03cb2011-04-12 09:36:18 -04003242 *
3243 * According to the spec sdhci_readl(host, SDHCI_DMA_ADDRESS)
3244 * should return a valid address to continue from, but as
3245 * some controllers are faulty, don't trust them.
Pierre Ossman6ba736a2007-05-13 22:39:23 +02003246 */
Mikko Vinnif6a03cb2011-04-12 09:36:18 -04003247 if (intmask & SDHCI_INT_DMA_END) {
Chunyan Zhang917a0c52018-08-30 16:21:39 +08003248 dma_addr_t dmastart, dmanow;
Linus Walleijbd9b9022018-01-29 00:44:53 +01003249
3250 dmastart = sdhci_sdma_address(host);
Mikko Vinnif6a03cb2011-04-12 09:36:18 -04003251 dmanow = dmastart + host->data->bytes_xfered;
3252 /*
3253 * Force update to the next DMA block boundary.
3254 */
3255 dmanow = (dmanow &
Chunyan Zhang917a0c52018-08-30 16:21:39 +08003256 ~((dma_addr_t)SDHCI_DEFAULT_BOUNDARY_SIZE - 1)) +
Mikko Vinnif6a03cb2011-04-12 09:36:18 -04003257 SDHCI_DEFAULT_BOUNDARY_SIZE;
3258 host->data->bytes_xfered = dmanow - dmastart;
Chunyan Zhang917a0c52018-08-30 16:21:39 +08003259 DBG("DMA base %pad, transferred 0x%06x bytes, next %pad\n",
3260 &dmastart, host->data->bytes_xfered, &dmanow);
3261 sdhci_set_sdma_addr(host, dmanow);
Mikko Vinnif6a03cb2011-04-12 09:36:18 -04003262 }
Pierre Ossman6ba736a2007-05-13 22:39:23 +02003263
Pierre Ossmane538fbe2007-08-12 16:46:32 +02003264 if (intmask & SDHCI_INT_DATA_END) {
Adrian Hunter7c89a3d2016-06-29 16:24:23 +03003265 if (host->cmd == host->data_cmd) {
Pierre Ossmane538fbe2007-08-12 16:46:32 +02003266 /*
3267 * Data managed to finish before the
3268 * command completed. Make sure we do
3269 * things in the proper order.
3270 */
3271 host->data_early = 1;
3272 } else {
3273 sdhci_finish_data(host);
3274 }
3275 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08003276 }
3277}
3278
Adrian Hunter19d2f692019-04-05 15:40:19 +03003279static inline bool sdhci_defer_done(struct sdhci_host *host,
3280 struct mmc_request *mrq)
3281{
3282 struct mmc_data *data = mrq->data;
3283
Baolin Wang47308312020-02-12 12:12:59 +08003284 return host->pending_reset || host->always_defer_done ||
Adrian Hunter19d2f692019-04-05 15:40:19 +03003285 ((host->flags & SDHCI_REQ_USE_DMA) && data &&
3286 data->host_cookie == COOKIE_MAPPED);
3287}
3288
David Howells7d12e782006-10-05 14:55:46 +01003289static irqreturn_t sdhci_irq(int irq, void *dev_id)
Pierre Ossmand129bce2006-03-24 03:18:17 -08003290{
Adrian Hunter19d2f692019-04-05 15:40:19 +03003291 struct mmc_request *mrqs_done[SDHCI_MAX_MRQS] = {0};
Russell King781e9892014-04-25 12:55:46 +01003292 irqreturn_t result = IRQ_NONE;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003293 struct sdhci_host *host = dev_id;
Russell King41005002014-04-25 12:55:36 +01003294 u32 intmask, mask, unexpected = 0;
Russell King781e9892014-04-25 12:55:46 +01003295 int max_loops = 16;
Adrian Hunter19d2f692019-04-05 15:40:19 +03003296 int i;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003297
3298 spin_lock(&host->lock);
3299
Ulf Hanssonaf5d2b72019-09-08 12:12:35 +02003300 if (host->runtime_suspended) {
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003301 spin_unlock(&host->lock);
Adrian Hunter655bca72014-03-11 10:09:36 +02003302 return IRQ_NONE;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003303 }
3304
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03003305 intmask = sdhci_readl(host, SDHCI_INT_STATUS);
Mark Lord62df67a52007-03-06 13:30:13 +01003306 if (!intmask || intmask == 0xffffffff) {
Pierre Ossmand129bce2006-03-24 03:18:17 -08003307 result = IRQ_NONE;
3308 goto out;
3309 }
3310
Russell King41005002014-04-25 12:55:36 +01003311 do {
Adrian Hunterf12e39d2017-03-20 19:50:47 +02003312 DBG("IRQ status 0x%08x\n", intmask);
3313
3314 if (host->ops->irq) {
3315 intmask = host->ops->irq(host, intmask);
3316 if (!intmask)
3317 goto cont;
3318 }
3319
Russell King41005002014-04-25 12:55:36 +01003320 /* Clear selected interrupts. */
3321 mask = intmask & (SDHCI_INT_CMD_MASK | SDHCI_INT_DATA_MASK |
3322 SDHCI_INT_BUS_POWER);
3323 sdhci_writel(host, mask, SDHCI_INT_STATUS);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003324
Russell King41005002014-04-25 12:55:36 +01003325 if (intmask & (SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE)) {
3326 u32 present = sdhci_readl(host, SDHCI_PRESENT_STATE) &
3327 SDHCI_CARD_PRESENT;
3328
3329 /*
3330 * There is a observation on i.mx esdhc. INSERT
3331 * bit will be immediately set again when it gets
3332 * cleared, if a card is inserted. We have to mask
3333 * the irq to prevent interrupt storm which will
3334 * freeze the system. And the REMOVE gets the
3335 * same situation.
3336 *
3337 * More testing are needed here to ensure it works
3338 * for other platforms though.
3339 */
Russell Kingb537f942014-04-25 12:56:01 +01003340 host->ier &= ~(SDHCI_INT_CARD_INSERT |
3341 SDHCI_INT_CARD_REMOVE);
3342 host->ier |= present ? SDHCI_INT_CARD_REMOVE :
3343 SDHCI_INT_CARD_INSERT;
3344 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
3345 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Russell King41005002014-04-25 12:55:36 +01003346
3347 sdhci_writel(host, intmask & (SDHCI_INT_CARD_INSERT |
3348 SDHCI_INT_CARD_REMOVE), SDHCI_INT_STATUS);
Russell King3560db82014-04-25 12:55:51 +01003349
3350 host->thread_isr |= intmask & (SDHCI_INT_CARD_INSERT |
3351 SDHCI_INT_CARD_REMOVE);
3352 result = IRQ_WAKE_THREAD;
Russell King41005002014-04-25 12:55:36 +01003353 }
3354
3355 if (intmask & SDHCI_INT_CMD_MASK)
Adrian Hunter4bf78092018-11-15 15:53:41 +02003356 sdhci_cmd_irq(host, intmask & SDHCI_INT_CMD_MASK, &intmask);
Russell King41005002014-04-25 12:55:36 +01003357
3358 if (intmask & SDHCI_INT_DATA_MASK)
3359 sdhci_data_irq(host, intmask & SDHCI_INT_DATA_MASK);
3360
3361 if (intmask & SDHCI_INT_BUS_POWER)
3362 pr_err("%s: Card is consuming too much power!\n",
3363 mmc_hostname(host->mmc));
3364
Dong Aishengf37b20e2016-07-12 15:46:17 +08003365 if (intmask & SDHCI_INT_RETUNE)
3366 mmc_retune_needed(host->mmc);
3367
Gabriel Krisman Bertazi161e6d42017-01-16 12:23:42 -02003368 if ((intmask & SDHCI_INT_CARD_INT) &&
3369 (host->ier & SDHCI_INT_CARD_INT)) {
Russell King781e9892014-04-25 12:55:46 +01003370 sdhci_enable_sdio_irq_nolock(host, false);
Adrian Hunter89f3c362019-05-27 14:45:55 +03003371 sdio_signal_irq(host->mmc);
Russell King781e9892014-04-25 12:55:46 +01003372 }
Russell King41005002014-04-25 12:55:36 +01003373
3374 intmask &= ~(SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE |
3375 SDHCI_INT_CMD_MASK | SDHCI_INT_DATA_MASK |
3376 SDHCI_INT_ERROR | SDHCI_INT_BUS_POWER |
Dong Aishengf37b20e2016-07-12 15:46:17 +08003377 SDHCI_INT_RETUNE | SDHCI_INT_CARD_INT);
Russell King41005002014-04-25 12:55:36 +01003378
3379 if (intmask) {
3380 unexpected |= intmask;
3381 sdhci_writel(host, intmask, SDHCI_INT_STATUS);
3382 }
Adrian Hunterf12e39d2017-03-20 19:50:47 +02003383cont:
Russell King781e9892014-04-25 12:55:46 +01003384 if (result == IRQ_NONE)
3385 result = IRQ_HANDLED;
Russell King41005002014-04-25 12:55:36 +01003386
3387 intmask = sdhci_readl(host, SDHCI_INT_STATUS);
Russell King41005002014-04-25 12:55:36 +01003388 } while (intmask && --max_loops);
Adrian Hunter19d2f692019-04-05 15:40:19 +03003389
3390 /* Determine if mrqs can be completed immediately */
3391 for (i = 0; i < SDHCI_MAX_MRQS; i++) {
3392 struct mmc_request *mrq = host->mrqs_done[i];
3393
3394 if (!mrq)
3395 continue;
3396
3397 if (sdhci_defer_done(host, mrq)) {
Adrian Hunterc07a48c2019-04-05 15:40:20 +03003398 result = IRQ_WAKE_THREAD;
Adrian Hunter19d2f692019-04-05 15:40:19 +03003399 } else {
3400 mrqs_done[i] = mrq;
3401 host->mrqs_done[i] = NULL;
3402 }
3403 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08003404out:
3405 spin_unlock(&host->lock);
3406
Adrian Hunter19d2f692019-04-05 15:40:19 +03003407 /* Process mrqs ready for immediate completion */
3408 for (i = 0; i < SDHCI_MAX_MRQS; i++) {
Baolin Wang1774b002020-02-12 12:12:58 +08003409 if (!mrqs_done[i])
3410 continue;
3411
3412 if (host->ops->request_done)
3413 host->ops->request_done(host, mrqs_done[i]);
3414 else
Adrian Hunter19d2f692019-04-05 15:40:19 +03003415 mmc_request_done(host->mmc, mrqs_done[i]);
3416 }
3417
Alexander Stein6379b232012-03-14 09:52:10 +01003418 if (unexpected) {
3419 pr_err("%s: Unexpected interrupt 0x%08x.\n",
3420 mmc_hostname(host->mmc), unexpected);
3421 sdhci_dumpregs(host);
3422 }
Pierre Ossmanf75979b2007-09-04 07:59:18 +02003423
Pierre Ossmand129bce2006-03-24 03:18:17 -08003424 return result;
3425}
3426
Russell King781e9892014-04-25 12:55:46 +01003427static irqreturn_t sdhci_thread_irq(int irq, void *dev_id)
3428{
3429 struct sdhci_host *host = dev_id;
3430 unsigned long flags;
3431 u32 isr;
3432
Adrian Hunterc07a48c2019-04-05 15:40:20 +03003433 while (!sdhci_request_done(host))
3434 ;
3435
Russell King781e9892014-04-25 12:55:46 +01003436 spin_lock_irqsave(&host->lock, flags);
3437 isr = host->thread_isr;
3438 host->thread_isr = 0;
3439 spin_unlock_irqrestore(&host->lock, flags);
3440
Russell King3560db82014-04-25 12:55:51 +01003441 if (isr & (SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE)) {
Adrian Hunterd3940f22016-06-29 16:24:14 +03003442 struct mmc_host *mmc = host->mmc;
3443
3444 mmc->ops->card_event(mmc);
3445 mmc_detect_change(mmc, msecs_to_jiffies(200));
Russell King3560db82014-04-25 12:55:51 +01003446 }
3447
Adrian Hunterc07a48c2019-04-05 15:40:20 +03003448 return IRQ_HANDLED;
Russell King781e9892014-04-25 12:55:46 +01003449}
3450
Pierre Ossmand129bce2006-03-24 03:18:17 -08003451/*****************************************************************************\
3452 * *
3453 * Suspend/resume *
3454 * *
3455\*****************************************************************************/
3456
3457#ifdef CONFIG_PM
Adrian Hunter9c316b32018-02-27 14:51:23 +02003458
3459static bool sdhci_cd_irq_can_wakeup(struct sdhci_host *host)
3460{
3461 return mmc_card_is_removable(host->mmc) &&
3462 !(host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION) &&
3463 !mmc_can_gpio_cd(host->mmc);
3464}
3465
Ludovic Desroches84d62602016-05-13 15:16:02 +02003466/*
3467 * To enable wakeup events, the corresponding events have to be enabled in
3468 * the Interrupt Status Enable register too. See 'Table 1-6: Wakeup Signal
3469 * Table' in the SD Host Controller Standard Specification.
3470 * It is useless to restore SDHCI_INT_ENABLE state in
3471 * sdhci_disable_irq_wakeups() since it will be set by
3472 * sdhci_enable_card_detection() or sdhci_init().
3473 */
Adrian Hunter58e79b62018-01-09 09:52:21 +02003474static bool sdhci_enable_irq_wakeups(struct sdhci_host *host)
Kevin Liuad080d72013-01-05 17:21:33 +08003475{
Adrian Hunter81b14542018-01-09 09:52:22 +02003476 u8 mask = SDHCI_WAKE_ON_INSERT | SDHCI_WAKE_ON_REMOVE |
3477 SDHCI_WAKE_ON_INT;
3478 u32 irq_val = 0;
3479 u8 wake_val = 0;
Kevin Liuad080d72013-01-05 17:21:33 +08003480 u8 val;
Adrian Hunter81b14542018-01-09 09:52:22 +02003481
Adrian Hunter9c316b32018-02-27 14:51:23 +02003482 if (sdhci_cd_irq_can_wakeup(host)) {
Adrian Hunter81b14542018-01-09 09:52:22 +02003483 wake_val |= SDHCI_WAKE_ON_INSERT | SDHCI_WAKE_ON_REMOVE;
3484 irq_val |= SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE;
3485 }
3486
Adrian Hunterd5d568f2018-02-27 14:51:24 +02003487 if (mmc_card_wake_sdio_irq(host->mmc)) {
3488 wake_val |= SDHCI_WAKE_ON_INT;
3489 irq_val |= SDHCI_INT_CARD_INT;
3490 }
3491
3492 if (!irq_val)
3493 return false;
Kevin Liuad080d72013-01-05 17:21:33 +08003494
3495 val = sdhci_readb(host, SDHCI_WAKE_UP_CONTROL);
Adrian Hunter81b14542018-01-09 09:52:22 +02003496 val &= ~mask;
3497 val |= wake_val;
Kevin Liuad080d72013-01-05 17:21:33 +08003498 sdhci_writeb(host, val, SDHCI_WAKE_UP_CONTROL);
Adrian Hunter81b14542018-01-09 09:52:22 +02003499
Ludovic Desroches84d62602016-05-13 15:16:02 +02003500 sdhci_writel(host, irq_val, SDHCI_INT_ENABLE);
Adrian Hunter58e79b62018-01-09 09:52:21 +02003501
3502 host->irq_wake_enabled = !enable_irq_wake(host->irq);
3503
3504 return host->irq_wake_enabled;
Kevin Liuad080d72013-01-05 17:21:33 +08003505}
Kevin Liuad080d72013-01-05 17:21:33 +08003506
Fabio Estevam0b10f472014-08-30 14:53:13 -03003507static void sdhci_disable_irq_wakeups(struct sdhci_host *host)
Kevin Liuad080d72013-01-05 17:21:33 +08003508{
3509 u8 val;
3510 u8 mask = SDHCI_WAKE_ON_INSERT | SDHCI_WAKE_ON_REMOVE
3511 | SDHCI_WAKE_ON_INT;
3512
3513 val = sdhci_readb(host, SDHCI_WAKE_UP_CONTROL);
3514 val &= ~mask;
3515 sdhci_writeb(host, val, SDHCI_WAKE_UP_CONTROL);
Adrian Hunter58e79b62018-01-09 09:52:21 +02003516
3517 disable_irq_wake(host->irq);
3518
3519 host->irq_wake_enabled = false;
Kevin Liuad080d72013-01-05 17:21:33 +08003520}
Pierre Ossmand129bce2006-03-24 03:18:17 -08003521
Manuel Lauss29495aa2011-11-03 11:09:45 +01003522int sdhci_suspend_host(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -08003523{
Anton Vorontsov7260cf52009-03-17 00:13:48 +03003524 sdhci_disable_card_detection(host);
3525
Adrian Hunter66c39dfc2015-05-07 13:10:21 +03003526 mmc_retune_timer_stop(host->mmc);
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05303527
Adrian Hunter58e79b62018-01-09 09:52:21 +02003528 if (!device_may_wakeup(mmc_dev(host->mmc)) ||
3529 !sdhci_enable_irq_wakeups(host)) {
Russell Kingb537f942014-04-25 12:56:01 +01003530 host->ier = 0;
3531 sdhci_writel(host, 0, SDHCI_INT_ENABLE);
3532 sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE);
Kevin Liuad080d72013-01-05 17:21:33 +08003533 free_irq(host->irq, host);
Kevin Liuad080d72013-01-05 17:21:33 +08003534 }
Adrian Hunter58e79b62018-01-09 09:52:21 +02003535
Ulf Hansson4ee14ec2013-09-25 14:15:24 +02003536 return 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003537}
3538
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003539EXPORT_SYMBOL_GPL(sdhci_suspend_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003540
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003541int sdhci_resume_host(struct sdhci_host *host)
3542{
Adrian Hunterd3940f22016-06-29 16:24:14 +03003543 struct mmc_host *mmc = host->mmc;
Ulf Hansson4ee14ec2013-09-25 14:15:24 +02003544 int ret = 0;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003545
Richard Röjforsa13abc72009-09-22 16:45:30 -07003546 if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003547 if (host->ops->enable_dma)
3548 host->ops->enable_dma(host);
3549 }
3550
Adrian Hunter6308d292012-02-07 14:48:54 +02003551 if ((host->mmc->pm_flags & MMC_PM_KEEP_POWER) &&
3552 (host->quirks2 & SDHCI_QUIRK2_HOST_OFF_CARD_ON)) {
3553 /* Card keeps power but host controller does not */
3554 sdhci_init(host, 0);
3555 host->pwr = 0;
3556 host->clock = 0;
Adrian Hunterd3940f22016-06-29 16:24:14 +03003557 mmc->ops->set_ios(mmc, &mmc->ios);
Adrian Hunter6308d292012-02-07 14:48:54 +02003558 } else {
3559 sdhci_init(host, (host->mmc->pm_flags & MMC_PM_KEEP_POWER));
Adrian Hunter6308d292012-02-07 14:48:54 +02003560 }
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003561
Adrian Hunter58e79b62018-01-09 09:52:21 +02003562 if (host->irq_wake_enabled) {
3563 sdhci_disable_irq_wakeups(host);
3564 } else {
Haibo Chen14a7b41642015-09-15 18:32:58 +08003565 ret = request_threaded_irq(host->irq, sdhci_irq,
3566 sdhci_thread_irq, IRQF_SHARED,
3567 mmc_hostname(host->mmc), host);
3568 if (ret)
3569 return ret;
Haibo Chen14a7b41642015-09-15 18:32:58 +08003570 }
3571
Anton Vorontsov7260cf52009-03-17 00:13:48 +03003572 sdhci_enable_card_detection(host);
3573
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08003574 return ret;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003575}
3576
3577EXPORT_SYMBOL_GPL(sdhci_resume_host);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003578
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003579int sdhci_runtime_suspend_host(struct sdhci_host *host)
3580{
3581 unsigned long flags;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003582
Adrian Hunter66c39dfc2015-05-07 13:10:21 +03003583 mmc_retune_timer_stop(host->mmc);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003584
3585 spin_lock_irqsave(&host->lock, flags);
Russell Kingb537f942014-04-25 12:56:01 +01003586 host->ier &= SDHCI_INT_CARD_INT;
3587 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
3588 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003589 spin_unlock_irqrestore(&host->lock, flags);
3590
Russell King781e9892014-04-25 12:55:46 +01003591 synchronize_hardirq(host->irq);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003592
3593 spin_lock_irqsave(&host->lock, flags);
3594 host->runtime_suspended = true;
3595 spin_unlock_irqrestore(&host->lock, flags);
3596
Markus Pargmann8a125ba2014-06-04 15:24:29 +02003597 return 0;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003598}
3599EXPORT_SYMBOL_GPL(sdhci_runtime_suspend_host);
3600
Baolin Wangc6303c52019-07-25 11:14:22 +08003601int sdhci_runtime_resume_host(struct sdhci_host *host, int soft_reset)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003602{
Adrian Hunterd3940f22016-06-29 16:24:14 +03003603 struct mmc_host *mmc = host->mmc;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003604 unsigned long flags;
Markus Pargmann8a125ba2014-06-04 15:24:29 +02003605 int host_flags = host->flags;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003606
3607 if (host_flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
3608 if (host->ops->enable_dma)
3609 host->ops->enable_dma(host);
3610 }
3611
Baolin Wangc6303c52019-07-25 11:14:22 +08003612 sdhci_init(host, soft_reset);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003613
Zhoujie Wu70bc85a2017-08-03 12:28:40 -07003614 if (mmc->ios.power_mode != MMC_POWER_UNDEFINED &&
3615 mmc->ios.power_mode != MMC_POWER_OFF) {
Adrian Hunter84ec0482016-12-19 15:33:11 +02003616 /* Force clock and power re-program */
3617 host->pwr = 0;
3618 host->clock = 0;
3619 mmc->ops->start_signal_voltage_switch(mmc, &mmc->ios);
3620 mmc->ops->set_ios(mmc, &mmc->ios);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003621
Adrian Hunter84ec0482016-12-19 15:33:11 +02003622 if ((host_flags & SDHCI_PV_ENABLED) &&
3623 !(host->quirks2 & SDHCI_QUIRK2_PRESET_VALUE_BROKEN)) {
3624 spin_lock_irqsave(&host->lock, flags);
3625 sdhci_enable_preset_value(host, true);
3626 spin_unlock_irqrestore(&host->lock, flags);
3627 }
3628
3629 if ((mmc->caps2 & MMC_CAP2_HS400_ES) &&
3630 mmc->ops->hs400_enhanced_strobe)
3631 mmc->ops->hs400_enhanced_strobe(mmc, &mmc->ios);
Kevin Liu52983382013-01-31 11:31:37 +08003632 }
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003633
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003634 spin_lock_irqsave(&host->lock, flags);
3635
3636 host->runtime_suspended = false;
3637
3638 /* Enable SDIO IRQ */
Ulf Hansson0e626142019-09-08 12:12:36 +02003639 if (sdio_irq_claimed(mmc))
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003640 sdhci_enable_sdio_irq_nolock(host, true);
3641
3642 /* Enable Card Detection */
3643 sdhci_enable_card_detection(host);
3644
3645 spin_unlock_irqrestore(&host->lock, flags);
3646
Markus Pargmann8a125ba2014-06-04 15:24:29 +02003647 return 0;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003648}
3649EXPORT_SYMBOL_GPL(sdhci_runtime_resume_host);
3650
Rafael J. Wysocki162d6f92014-12-05 03:05:33 +01003651#endif /* CONFIG_PM */
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003652
Pierre Ossmand129bce2006-03-24 03:18:17 -08003653/*****************************************************************************\
3654 * *
Adrian Hunterf12e39d2017-03-20 19:50:47 +02003655 * Command Queue Engine (CQE) helpers *
3656 * *
3657\*****************************************************************************/
3658
3659void sdhci_cqe_enable(struct mmc_host *mmc)
3660{
3661 struct sdhci_host *host = mmc_priv(mmc);
3662 unsigned long flags;
3663 u8 ctrl;
3664
3665 spin_lock_irqsave(&host->lock, flags);
3666
3667 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
3668 ctrl &= ~SDHCI_CTRL_DMA_MASK;
Sowjanya Komatineni4c4faff2019-01-23 11:30:53 -08003669 /*
3670 * Host from V4.10 supports ADMA3 DMA type.
3671 * ADMA3 performs integrated descriptor which is more suitable
3672 * for cmd queuing to fetch both command and transfer descriptors.
3673 */
3674 if (host->v4_mode && (host->caps1 & SDHCI_CAN_DO_ADMA3))
3675 ctrl |= SDHCI_CTRL_ADMA3;
3676 else if (host->flags & SDHCI_USE_64_BIT_DMA)
Adrian Hunterf12e39d2017-03-20 19:50:47 +02003677 ctrl |= SDHCI_CTRL_ADMA64;
3678 else
3679 ctrl |= SDHCI_CTRL_ADMA32;
3680 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
3681
Srinivas Kandagatlac846a002017-08-03 14:46:13 +02003682 sdhci_writew(host, SDHCI_MAKE_BLKSZ(host->sdma_boundary, 512),
Adrian Hunterf12e39d2017-03-20 19:50:47 +02003683 SDHCI_BLOCK_SIZE);
3684
3685 /* Set maximum timeout */
BOUGH CHEN401059d2019-01-07 10:11:36 +00003686 sdhci_set_timeout(host, NULL);
Adrian Hunterf12e39d2017-03-20 19:50:47 +02003687
3688 host->ier = host->cqe_ier;
3689
3690 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
3691 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
3692
3693 host->cqe_on = true;
3694
3695 pr_debug("%s: sdhci: CQE on, IRQ mask %#x, IRQ status %#x\n",
3696 mmc_hostname(mmc), host->ier,
3697 sdhci_readl(host, SDHCI_INT_STATUS));
3698
Adrian Hunterf12e39d2017-03-20 19:50:47 +02003699 spin_unlock_irqrestore(&host->lock, flags);
3700}
3701EXPORT_SYMBOL_GPL(sdhci_cqe_enable);
3702
3703void sdhci_cqe_disable(struct mmc_host *mmc, bool recovery)
3704{
3705 struct sdhci_host *host = mmc_priv(mmc);
3706 unsigned long flags;
3707
3708 spin_lock_irqsave(&host->lock, flags);
3709
3710 sdhci_set_default_irqs(host);
3711
3712 host->cqe_on = false;
3713
3714 if (recovery) {
3715 sdhci_do_reset(host, SDHCI_RESET_CMD);
3716 sdhci_do_reset(host, SDHCI_RESET_DATA);
3717 }
3718
3719 pr_debug("%s: sdhci: CQE off, IRQ mask %#x, IRQ status %#x\n",
3720 mmc_hostname(mmc), host->ier,
3721 sdhci_readl(host, SDHCI_INT_STATUS));
3722
Adrian Hunterf12e39d2017-03-20 19:50:47 +02003723 spin_unlock_irqrestore(&host->lock, flags);
3724}
3725EXPORT_SYMBOL_GPL(sdhci_cqe_disable);
3726
3727bool sdhci_cqe_irq(struct sdhci_host *host, u32 intmask, int *cmd_error,
3728 int *data_error)
3729{
3730 u32 mask;
3731
3732 if (!host->cqe_on)
3733 return false;
3734
3735 if (intmask & (SDHCI_INT_INDEX | SDHCI_INT_END_BIT | SDHCI_INT_CRC))
3736 *cmd_error = -EILSEQ;
3737 else if (intmask & SDHCI_INT_TIMEOUT)
3738 *cmd_error = -ETIMEDOUT;
3739 else
3740 *cmd_error = 0;
3741
3742 if (intmask & (SDHCI_INT_DATA_END_BIT | SDHCI_INT_DATA_CRC))
3743 *data_error = -EILSEQ;
3744 else if (intmask & SDHCI_INT_DATA_TIMEOUT)
3745 *data_error = -ETIMEDOUT;
3746 else if (intmask & SDHCI_INT_ADMA_ERROR)
3747 *data_error = -EIO;
3748 else
3749 *data_error = 0;
3750
3751 /* Clear selected interrupts. */
3752 mask = intmask & host->cqe_ier;
3753 sdhci_writel(host, mask, SDHCI_INT_STATUS);
3754
3755 if (intmask & SDHCI_INT_BUS_POWER)
3756 pr_err("%s: Card is consuming too much power!\n",
3757 mmc_hostname(host->mmc));
3758
3759 intmask &= ~(host->cqe_ier | SDHCI_INT_ERROR);
3760 if (intmask) {
3761 sdhci_writel(host, intmask, SDHCI_INT_STATUS);
3762 pr_err("%s: CQE: Unexpected interrupt 0x%08x.\n",
3763 mmc_hostname(host->mmc), intmask);
3764 sdhci_dumpregs(host);
3765 }
3766
3767 return true;
3768}
3769EXPORT_SYMBOL_GPL(sdhci_cqe_irq);
3770
3771/*****************************************************************************\
3772 * *
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003773 * Device allocation/registration *
Pierre Ossmand129bce2006-03-24 03:18:17 -08003774 * *
3775\*****************************************************************************/
3776
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003777struct sdhci_host *sdhci_alloc_host(struct device *dev,
3778 size_t priv_size)
Pierre Ossmand129bce2006-03-24 03:18:17 -08003779{
Pierre Ossmand129bce2006-03-24 03:18:17 -08003780 struct mmc_host *mmc;
3781 struct sdhci_host *host;
3782
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003783 WARN_ON(dev == NULL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003784
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003785 mmc = mmc_alloc_host(sizeof(struct sdhci_host) + priv_size, dev);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003786 if (!mmc)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003787 return ERR_PTR(-ENOMEM);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003788
3789 host = mmc_priv(mmc);
3790 host->mmc = mmc;
Adrian Hunterbf60e592016-02-09 16:12:35 +02003791 host->mmc_host_ops = sdhci_ops;
3792 mmc->ops = &host->mmc_host_ops;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003793
Adrian Hunter8cb851a2016-06-29 16:24:16 +03003794 host->flags = SDHCI_SIGNALING_330;
3795
Adrian Hunterf12e39d2017-03-20 19:50:47 +02003796 host->cqe_ier = SDHCI_CQE_INT_MASK;
3797 host->cqe_err_ier = SDHCI_CQE_INT_ERR_MASK;
3798
Adrian Hunter83b600b2017-04-20 16:14:43 +08003799 host->tuning_delay = -1;
Sowjanya Komatineni1d8cd0652019-03-23 21:45:19 -07003800 host->tuning_loop_count = MAX_TUNING_LOOP;
Adrian Hunter83b600b2017-04-20 16:14:43 +08003801
Srinivas Kandagatlac846a002017-08-03 14:46:13 +02003802 host->sdma_boundary = SDHCI_DEFAULT_BOUNDARY_ARG;
3803
Jisheng Zhange93be382018-08-28 17:46:35 +08003804 /*
3805 * The DMA table descriptor count is calculated as the maximum
3806 * number of segments times 2, to allow for an alignment
3807 * descriptor for each segment, plus 1 for a nop end descriptor.
3808 */
3809 host->adma_table_cnt = SDHCI_MAX_SEGS * 2 + 1;
3810
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003811 return host;
3812}
Pierre Ossman8a4da142006-10-04 02:15:40 -07003813
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003814EXPORT_SYMBOL_GPL(sdhci_alloc_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003815
Alexandre Courbot7b913692016-03-07 11:07:55 +09003816static int sdhci_set_dma_mask(struct sdhci_host *host)
3817{
3818 struct mmc_host *mmc = host->mmc;
3819 struct device *dev = mmc_dev(mmc);
3820 int ret = -EINVAL;
3821
3822 if (host->quirks2 & SDHCI_QUIRK2_BROKEN_64_BIT_DMA)
3823 host->flags &= ~SDHCI_USE_64_BIT_DMA;
3824
3825 /* Try 64-bit mask if hardware is capable of it */
3826 if (host->flags & SDHCI_USE_64_BIT_DMA) {
3827 ret = dma_set_mask_and_coherent(dev, DMA_BIT_MASK(64));
3828 if (ret) {
3829 pr_warn("%s: Failed to set 64-bit DMA mask.\n",
3830 mmc_hostname(mmc));
3831 host->flags &= ~SDHCI_USE_64_BIT_DMA;
3832 }
3833 }
3834
3835 /* 32-bit mask as default & fallback */
3836 if (ret) {
3837 ret = dma_set_mask_and_coherent(dev, DMA_BIT_MASK(32));
3838 if (ret)
3839 pr_warn("%s: Failed to set 32-bit DMA mask.\n",
3840 mmc_hostname(mmc));
3841 }
3842
3843 return ret;
3844}
3845
Masahiro Yamada8784edc2019-08-29 19:49:27 +09003846void __sdhci_read_caps(struct sdhci_host *host, const u16 *ver,
3847 const u32 *caps, const u32 *caps1)
Adrian Hunter6132a3b2016-06-29 16:24:18 +03003848{
3849 u16 v;
Zach Brown92e0c442016-11-02 10:26:16 -05003850 u64 dt_caps_mask = 0;
3851 u64 dt_caps = 0;
Adrian Hunter6132a3b2016-06-29 16:24:18 +03003852
3853 if (host->read_caps)
3854 return;
3855
3856 host->read_caps = true;
3857
3858 if (debug_quirks)
3859 host->quirks = debug_quirks;
3860
3861 if (debug_quirks2)
3862 host->quirks2 = debug_quirks2;
3863
3864 sdhci_do_reset(host, SDHCI_RESET_ALL);
3865
Chunyan Zhangb3f80b42018-08-30 16:21:38 +08003866 if (host->v4_mode)
3867 sdhci_do_enable_v4_mode(host);
3868
Zach Brown92e0c442016-11-02 10:26:16 -05003869 of_property_read_u64(mmc_dev(host->mmc)->of_node,
3870 "sdhci-caps-mask", &dt_caps_mask);
3871 of_property_read_u64(mmc_dev(host->mmc)->of_node,
3872 "sdhci-caps", &dt_caps);
3873
Adrian Hunter6132a3b2016-06-29 16:24:18 +03003874 v = ver ? *ver : sdhci_readw(host, SDHCI_HOST_VERSION);
3875 host->version = (v & SDHCI_SPEC_VER_MASK) >> SDHCI_SPEC_VER_SHIFT;
3876
3877 if (host->quirks & SDHCI_QUIRK_MISSING_CAPS)
3878 return;
3879
Zach Brown92e0c442016-11-02 10:26:16 -05003880 if (caps) {
3881 host->caps = *caps;
3882 } else {
3883 host->caps = sdhci_readl(host, SDHCI_CAPABILITIES);
3884 host->caps &= ~lower_32_bits(dt_caps_mask);
3885 host->caps |= lower_32_bits(dt_caps);
3886 }
Adrian Hunter6132a3b2016-06-29 16:24:18 +03003887
3888 if (host->version < SDHCI_SPEC_300)
3889 return;
3890
Zach Brown92e0c442016-11-02 10:26:16 -05003891 if (caps1) {
3892 host->caps1 = *caps1;
3893 } else {
3894 host->caps1 = sdhci_readl(host, SDHCI_CAPABILITIES_1);
3895 host->caps1 &= ~upper_32_bits(dt_caps_mask);
3896 host->caps1 |= upper_32_bits(dt_caps);
3897 }
Adrian Hunter6132a3b2016-06-29 16:24:18 +03003898}
3899EXPORT_SYMBOL_GPL(__sdhci_read_caps);
3900
Chunyan Zhanga68dd9a2018-10-25 10:12:36 +08003901static void sdhci_allocate_bounce_buffer(struct sdhci_host *host)
Linus Walleijbd9b9022018-01-29 00:44:53 +01003902{
3903 struct mmc_host *mmc = host->mmc;
3904 unsigned int max_blocks;
3905 unsigned int bounce_size;
3906 int ret;
3907
3908 /*
3909 * Cap the bounce buffer at 64KB. Using a bigger bounce buffer
3910 * has diminishing returns, this is probably because SD/MMC
3911 * cards are usually optimized to handle this size of requests.
3912 */
3913 bounce_size = SZ_64K;
3914 /*
3915 * Adjust downwards to maximum request size if this is less
3916 * than our segment size, else hammer down the maximum
3917 * request size to the maximum buffer size.
3918 */
3919 if (mmc->max_req_size < bounce_size)
3920 bounce_size = mmc->max_req_size;
3921 max_blocks = bounce_size / 512;
3922
3923 /*
3924 * When we just support one segment, we can get significant
3925 * speedups by the help of a bounce buffer to group scattered
3926 * reads/writes together.
3927 */
3928 host->bounce_buffer = devm_kmalloc(mmc->parent,
3929 bounce_size,
3930 GFP_KERNEL);
3931 if (!host->bounce_buffer) {
3932 pr_err("%s: failed to allocate %u bytes for bounce buffer, falling back to single segments\n",
3933 mmc_hostname(mmc),
3934 bounce_size);
3935 /*
3936 * Exiting with zero here makes sure we proceed with
3937 * mmc->max_segs == 1.
3938 */
Chunyan Zhanga68dd9a2018-10-25 10:12:36 +08003939 return;
Linus Walleijbd9b9022018-01-29 00:44:53 +01003940 }
3941
3942 host->bounce_addr = dma_map_single(mmc->parent,
3943 host->bounce_buffer,
3944 bounce_size,
3945 DMA_BIDIRECTIONAL);
3946 ret = dma_mapping_error(mmc->parent, host->bounce_addr);
3947 if (ret)
3948 /* Again fall back to max_segs == 1 */
Chunyan Zhanga68dd9a2018-10-25 10:12:36 +08003949 return;
Linus Walleijbd9b9022018-01-29 00:44:53 +01003950 host->bounce_buffer_size = bounce_size;
3951
3952 /* Lie about this since we're bouncing */
3953 mmc->max_segs = max_blocks;
3954 mmc->max_seg_size = bounce_size;
3955 mmc->max_req_size = bounce_size;
3956
3957 pr_info("%s bounce up to %u segments into one, max segment size %u bytes\n",
3958 mmc_hostname(mmc), max_blocks, bounce_size);
Linus Walleijbd9b9022018-01-29 00:44:53 +01003959}
3960
Chunyan Zhang685e4442018-08-30 16:21:40 +08003961static inline bool sdhci_can_64bit_dma(struct sdhci_host *host)
3962{
3963 /*
3964 * According to SD Host Controller spec v4.10, bit[27] added from
3965 * version 4.10 in Capabilities Register is used as 64-bit System
3966 * Address support for V4 mode.
3967 */
3968 if (host->version >= SDHCI_SPEC_410 && host->v4_mode)
3969 return host->caps & SDHCI_CAN_64BIT_V4;
3970
3971 return host->caps & SDHCI_CAN_64BIT;
3972}
3973
Adrian Hunter52f53362016-06-29 16:24:15 +03003974int sdhci_setup_host(struct sdhci_host *host)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003975{
3976 struct mmc_host *mmc;
Arindam Nathf2119df2011-05-05 12:18:57 +05303977 u32 max_current_caps;
3978 unsigned int ocr_avail;
Adrian Hunterf5fa92e2014-09-24 10:27:32 +03003979 unsigned int override_timeout_clk;
Dong Aisheng59241752015-07-22 20:53:07 +08003980 u32 max_clk;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003981 int ret;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003982
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003983 WARN_ON(host == NULL);
3984 if (host == NULL)
3985 return -EINVAL;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003986
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003987 mmc = host->mmc;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003988
Jon Hunterefba1422016-07-12 14:53:36 +01003989 /*
3990 * If there are external regulators, get them. Note this must be done
3991 * early before resetting the host and reading the capabilities so that
3992 * the host can take the appropriate action if regulators are not
3993 * available.
3994 */
3995 ret = mmc_regulator_get_supply(mmc);
Wolfram Sang2a633032017-10-14 21:17:18 +02003996 if (ret)
Jon Hunterefba1422016-07-12 14:53:36 +01003997 return ret;
3998
Shawn Lin06ebc602017-07-19 15:55:49 +08003999 DBG("Version: 0x%08x | Present: 0x%08x\n",
4000 sdhci_readw(host, SDHCI_HOST_VERSION),
4001 sdhci_readl(host, SDHCI_PRESENT_STATE));
4002 DBG("Caps: 0x%08x | Caps_1: 0x%08x\n",
4003 sdhci_readl(host, SDHCI_CAPABILITIES),
4004 sdhci_readl(host, SDHCI_CAPABILITIES_1));
4005
Adrian Hunter6132a3b2016-06-29 16:24:18 +03004006 sdhci_read_caps(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08004007
Adrian Hunterf5fa92e2014-09-24 10:27:32 +03004008 override_timeout_clk = host->timeout_clk;
4009
Chunyan Zhang18da1992018-08-30 16:21:37 +08004010 if (host->version > SDHCI_SPEC_420) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01004011 pr_err("%s: Unknown controller version (%d). You may experience problems.\n",
4012 mmc_hostname(mmc), host->version);
Pierre Ossman4a965502006-06-30 02:22:29 -07004013 }
4014
Adrian Hunter75d27ea2019-12-17 11:53:49 +02004015 if (host->quirks & SDHCI_QUIRK_BROKEN_CQE)
4016 mmc->caps2 &= ~MMC_CAP2_CQE;
4017
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01004018 if (host->quirks & SDHCI_QUIRK_FORCE_DMA)
Richard Röjforsa13abc72009-09-22 16:45:30 -07004019 host->flags |= SDHCI_USE_SDMA;
Adrian Hunter28da3582016-06-29 16:24:17 +03004020 else if (!(host->caps & SDHCI_CAN_DO_SDMA))
Richard Röjforsa13abc72009-09-22 16:45:30 -07004021 DBG("Controller doesn't have SDMA capability\n");
Pierre Ossman67435272006-06-30 02:22:31 -07004022 else
Richard Röjforsa13abc72009-09-22 16:45:30 -07004023 host->flags |= SDHCI_USE_SDMA;
Pierre Ossmand129bce2006-03-24 03:18:17 -08004024
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01004025 if ((host->quirks & SDHCI_QUIRK_BROKEN_DMA) &&
Richard Röjforsa13abc72009-09-22 16:45:30 -07004026 (host->flags & SDHCI_USE_SDMA)) {
Rolf Eike Beercee687c2007-11-02 15:22:30 +01004027 DBG("Disabling DMA as it is marked broken\n");
Richard Röjforsa13abc72009-09-22 16:45:30 -07004028 host->flags &= ~SDHCI_USE_SDMA;
Feng Tang7c168e32007-09-30 12:44:18 +02004029 }
4030
Arindam Nathf2119df2011-05-05 12:18:57 +05304031 if ((host->version >= SDHCI_SPEC_200) &&
Adrian Hunter28da3582016-06-29 16:24:17 +03004032 (host->caps & SDHCI_CAN_DO_ADMA2))
Richard Röjforsa13abc72009-09-22 16:45:30 -07004033 host->flags |= SDHCI_USE_ADMA;
Pierre Ossman2134a922008-06-28 18:28:51 +02004034
4035 if ((host->quirks & SDHCI_QUIRK_BROKEN_ADMA) &&
4036 (host->flags & SDHCI_USE_ADMA)) {
4037 DBG("Disabling ADMA as it is marked broken\n");
4038 host->flags &= ~SDHCI_USE_ADMA;
4039 }
4040
Chunyan Zhang685e4442018-08-30 16:21:40 +08004041 if (sdhci_can_64bit_dma(host))
Adrian Huntere57a5f62014-11-04 12:42:46 +02004042 host->flags |= SDHCI_USE_64_BIT_DMA;
4043
Chunyan Zhang18e762e2020-01-16 16:21:47 +05304044 if (host->use_external_dma) {
4045 ret = sdhci_external_dma_init(host);
4046 if (ret == -EPROBE_DEFER)
4047 goto unreg;
4048 /*
4049 * Fall back to use the DMA/PIO integrated in standard SDHCI
4050 * instead of external DMA devices.
4051 */
4052 else if (ret)
4053 sdhci_switch_external_dma(host, false);
4054 /* Disable internal DMA sources */
4055 else
4056 host->flags &= ~(SDHCI_USE_SDMA | SDHCI_USE_ADMA);
4057 }
4058
Richard Röjforsa13abc72009-09-22 16:45:30 -07004059 if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
Adrian Hunter4ee7dde2019-09-23 12:08:09 +02004060 if (host->ops->set_dma_mask)
4061 ret = host->ops->set_dma_mask(host);
4062 else
4063 ret = sdhci_set_dma_mask(host);
Alexandre Courbot7b913692016-03-07 11:07:55 +09004064
4065 if (!ret && host->ops->enable_dma)
4066 ret = host->ops->enable_dma(host);
4067
4068 if (ret) {
4069 pr_warn("%s: No suitable DMA available - falling back to PIO\n",
4070 mmc_hostname(mmc));
4071 host->flags &= ~(SDHCI_USE_SDMA | SDHCI_USE_ADMA);
4072
4073 ret = 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -08004074 }
4075 }
4076
Chunyan Zhang917a0c52018-08-30 16:21:39 +08004077 /* SDMA does not support 64-bit DMA if v4 mode not set */
4078 if ((host->flags & SDHCI_USE_64_BIT_DMA) && !host->v4_mode)
Adrian Huntere57a5f62014-11-04 12:42:46 +02004079 host->flags &= ~SDHCI_USE_SDMA;
4080
Pierre Ossman2134a922008-06-28 18:28:51 +02004081 if (host->flags & SDHCI_USE_ADMA) {
Russell Kinge66e61c2016-01-26 13:39:55 +00004082 dma_addr_t dma;
4083 void *buf;
4084
Veerabhadrarao Badigantia663f642020-01-20 20:08:38 +05304085 if (!(host->flags & SDHCI_USE_64_BIT_DMA))
4086 host->alloc_desc_sz = SDHCI_ADMA2_32_DESC_SZ;
4087 else if (!host->alloc_desc_sz)
4088 host->alloc_desc_sz = SDHCI_ADMA2_64_DESC_SZ(host);
4089
4090 host->desc_sz = host->alloc_desc_sz;
4091 host->adma_table_sz = host->adma_table_cnt * host->desc_sz;
Russell Kinge66e61c2016-01-26 13:39:55 +00004092
Adrian Hunter04a5ae62015-11-26 14:00:49 +02004093 host->align_buffer_sz = SDHCI_MAX_SEGS * SDHCI_ADMA2_ALIGN;
Chunyan Zhang685e4442018-08-30 16:21:40 +08004094 /*
4095 * Use zalloc to zero the reserved high 32-bits of 128-bit
4096 * descriptors so that they never need to be written.
4097 */
Luis Chamberlain750afb02019-01-04 09:23:09 +01004098 buf = dma_alloc_coherent(mmc_dev(mmc),
4099 host->align_buffer_sz + host->adma_table_sz,
4100 &dma, GFP_KERNEL);
Russell Kinge66e61c2016-01-26 13:39:55 +00004101 if (!buf) {
Joe Perches66061102014-09-12 14:56:56 -07004102 pr_warn("%s: Unable to allocate ADMA buffers - falling back to standard DMA\n",
Pierre Ossman2134a922008-06-28 18:28:51 +02004103 mmc_hostname(mmc));
4104 host->flags &= ~SDHCI_USE_ADMA;
Russell Kinge66e61c2016-01-26 13:39:55 +00004105 } else if ((dma + host->align_buffer_sz) &
4106 (SDHCI_ADMA2_DESC_ALIGN - 1)) {
Joe Perches66061102014-09-12 14:56:56 -07004107 pr_warn("%s: unable to allocate aligned ADMA descriptor\n",
4108 mmc_hostname(mmc));
Russell Kingd1e49f72014-04-25 12:58:34 +01004109 host->flags &= ~SDHCI_USE_ADMA;
Russell Kinge66e61c2016-01-26 13:39:55 +00004110 dma_free_coherent(mmc_dev(mmc), host->align_buffer_sz +
4111 host->adma_table_sz, buf, dma);
4112 } else {
4113 host->align_buffer = buf;
4114 host->align_addr = dma;
Russell Kingedd63fc2016-01-26 13:39:50 +00004115
Russell Kinge66e61c2016-01-26 13:39:55 +00004116 host->adma_table = buf + host->align_buffer_sz;
4117 host->adma_addr = dma + host->align_buffer_sz;
4118 }
Pierre Ossman2134a922008-06-28 18:28:51 +02004119 }
4120
Pierre Ossman76591502008-07-21 00:32:11 +02004121 /*
4122 * If we use DMA, then it's up to the caller to set the DMA
4123 * mask, but PIO does not need the hw shim so we set a new
4124 * mask here in that case.
4125 */
Richard Röjforsa13abc72009-09-22 16:45:30 -07004126 if (!(host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA))) {
Pierre Ossman76591502008-07-21 00:32:11 +02004127 host->dma_mask = DMA_BIT_MASK(64);
Markus Mayer4e743f12014-07-03 13:27:42 -07004128 mmc_dev(mmc)->dma_mask = &host->dma_mask;
Pierre Ossman76591502008-07-21 00:32:11 +02004129 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08004130
Zhangfei Gaoc4687d52010-08-20 14:02:36 -04004131 if (host->version >= SDHCI_SPEC_300)
Masahiro Yamadaa8e809e2020-04-08 16:21:05 +09004132 host->max_clk = FIELD_GET(SDHCI_CLOCK_V3_BASE_MASK, host->caps);
Zhangfei Gaoc4687d52010-08-20 14:02:36 -04004133 else
Masahiro Yamadaa8e809e2020-04-08 16:21:05 +09004134 host->max_clk = FIELD_GET(SDHCI_CLOCK_BASE_MASK, host->caps);
Zhangfei Gaoc4687d52010-08-20 14:02:36 -04004135
Pierre Ossmand129bce2006-03-24 03:18:17 -08004136 host->max_clk *= 1000000;
Anton Vorontsovf27f47e2010-05-26 14:41:53 -07004137 if (host->max_clk == 0 || host->quirks &
4138 SDHCI_QUIRK_CAP_CLOCK_BASE_BROKEN) {
Ben Dooks4240ff02009-03-17 00:13:57 +03004139 if (!host->ops->get_max_clock) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01004140 pr_err("%s: Hardware doesn't specify base clock frequency.\n",
4141 mmc_hostname(mmc));
Adrian Huntereb5c20d2016-04-12 14:25:08 +03004142 ret = -ENODEV;
4143 goto undma;
Ben Dooks4240ff02009-03-17 00:13:57 +03004144 }
4145 host->max_clk = host->ops->get_max_clock(host);
4146 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08004147
4148 /*
Arindam Nathc3ed3872011-05-05 12:19:06 +05304149 * In case of Host Controller v3.00, find out whether clock
4150 * multiplier is supported.
4151 */
Masahiro Yamadaa8e809e2020-04-08 16:21:05 +09004152 host->clk_mul = FIELD_GET(SDHCI_CLOCK_MUL_MASK, host->caps1);
Arindam Nathc3ed3872011-05-05 12:19:06 +05304153
4154 /*
4155 * In case the value in Clock Multiplier is 0, then programmable
4156 * clock mode is not supported, otherwise the actual clock
4157 * multiplier is one more than the value of Clock Multiplier
4158 * in the Capabilities Register.
4159 */
4160 if (host->clk_mul)
4161 host->clk_mul += 1;
4162
4163 /*
Pierre Ossmand129bce2006-03-24 03:18:17 -08004164 * Set host parameters.
4165 */
Dong Aisheng59241752015-07-22 20:53:07 +08004166 max_clk = host->max_clk;
4167
Marek Szyprowskice5f0362010-08-10 18:01:56 -07004168 if (host->ops->get_min_clock)
Anton Vorontsova9e58f22009-07-29 15:04:16 -07004169 mmc->f_min = host->ops->get_min_clock(host);
Arindam Nathc3ed3872011-05-05 12:19:06 +05304170 else if (host->version >= SDHCI_SPEC_300) {
Michał Mirosław2a187d02020-01-15 10:54:35 +01004171 if (host->clk_mul)
Dong Aisheng59241752015-07-22 20:53:07 +08004172 max_clk = host->max_clk * host->clk_mul;
Michał Mirosław2a187d02020-01-15 10:54:35 +01004173 /*
4174 * Divided Clock Mode minimum clock rate is always less than
4175 * Programmable Clock Mode minimum clock rate.
4176 */
4177 mmc->f_min = host->max_clk / SDHCI_MAX_DIV_SPEC_300;
Arindam Nathc3ed3872011-05-05 12:19:06 +05304178 } else
Zhangfei Gao03975262010-09-20 15:15:18 -04004179 mmc->f_min = host->max_clk / SDHCI_MAX_DIV_SPEC_200;
Philip Rakity15ec4462010-11-19 16:48:39 -05004180
Adrian Hunterd310ae42016-04-12 14:25:07 +03004181 if (!mmc->f_max || mmc->f_max > max_clk)
Dong Aisheng59241752015-07-22 20:53:07 +08004182 mmc->f_max = max_clk;
4183
Aisheng Dong28aab052014-08-27 15:26:31 +08004184 if (!(host->quirks & SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK)) {
Masahiro Yamadaa8e809e2020-04-08 16:21:05 +09004185 host->timeout_clk = FIELD_GET(SDHCI_TIMEOUT_CLK_MASK, host->caps);
Shawn Lin8cc35282017-03-24 15:50:12 +08004186
4187 if (host->caps & SDHCI_TIMEOUT_CLK_UNIT)
4188 host->timeout_clk *= 1000;
4189
Aisheng Dong28aab052014-08-27 15:26:31 +08004190 if (host->timeout_clk == 0) {
Shawn Lin8cc35282017-03-24 15:50:12 +08004191 if (!host->ops->get_timeout_clock) {
Aisheng Dong28aab052014-08-27 15:26:31 +08004192 pr_err("%s: Hardware doesn't specify timeout clock frequency.\n",
4193 mmc_hostname(mmc));
Adrian Huntereb5c20d2016-04-12 14:25:08 +03004194 ret = -ENODEV;
4195 goto undma;
Aisheng Dong28aab052014-08-27 15:26:31 +08004196 }
Andy Shevchenko272308c2011-08-03 18:36:00 +03004197
Shawn Lin8cc35282017-03-24 15:50:12 +08004198 host->timeout_clk =
4199 DIV_ROUND_UP(host->ops->get_timeout_clock(host),
4200 1000);
4201 }
Andy Shevchenko272308c2011-08-03 18:36:00 +03004202
Adrian Hunter99513622016-03-07 13:33:55 +02004203 if (override_timeout_clk)
4204 host->timeout_clk = override_timeout_clk;
4205
Aisheng Dong28aab052014-08-27 15:26:31 +08004206 mmc->max_busy_timeout = host->ops->get_max_timeout_count ?
Aisheng Donga6ff5ae2014-08-27 15:26:27 +08004207 host->ops->get_max_timeout_count(host) : 1 << 27;
Aisheng Dong28aab052014-08-27 15:26:31 +08004208 mmc->max_busy_timeout /= host->timeout_clk;
4209 }
Adrian Hunter58d12462011-06-28 17:16:03 +03004210
Adrian Huntera999fd92018-04-27 17:17:15 +05304211 if (host->quirks2 & SDHCI_QUIRK2_DISABLE_HW_TIMEOUT &&
4212 !host->ops->get_max_timeout_count)
4213 mmc->max_busy_timeout = 0;
4214
Andrei Warkentine89d4562011-05-23 15:06:37 -05004215 mmc->caps |= MMC_CAP_SDIO_IRQ | MMC_CAP_ERASE | MMC_CAP_CMD23;
Russell King781e9892014-04-25 12:55:46 +01004216 mmc->caps2 |= MMC_CAP2_SDIO_IRQ_NOTHREAD;
Andrei Warkentine89d4562011-05-23 15:06:37 -05004217
4218 if (host->quirks & SDHCI_QUIRK_MULTIBLOCK_READ_ACMD12)
4219 host->flags |= SDHCI_AUTO_CMD12;
Anton Vorontsov5fe23c72009-06-18 00:14:08 +04004220
Chunyan Zhang7ed71a92018-08-30 16:21:43 +08004221 /*
4222 * For v3 mode, Auto-CMD23 stuff only works in ADMA or PIO.
4223 * For v4 mode, SDMA may use Auto-CMD23 as well.
4224 */
Andrei Warkentin4f3d3e92011-05-25 10:42:50 -04004225 if ((host->version >= SDHCI_SPEC_300) &&
Andrei Warkentin8edf63712011-05-23 15:06:39 -05004226 ((host->flags & SDHCI_USE_ADMA) ||
Chunyan Zhang7ed71a92018-08-30 16:21:43 +08004227 !(host->flags & SDHCI_USE_SDMA) || host->v4_mode) &&
Scott Branden3bfa6f02015-02-09 16:06:28 -08004228 !(host->quirks2 & SDHCI_QUIRK2_ACMD23_BROKEN)) {
Andrei Warkentin8edf63712011-05-23 15:06:39 -05004229 host->flags |= SDHCI_AUTO_CMD23;
Adrian Hunterf4218652017-03-20 19:50:39 +02004230 DBG("Auto-CMD23 available\n");
Andrei Warkentin8edf63712011-05-23 15:06:39 -05004231 } else {
Adrian Hunterf4218652017-03-20 19:50:39 +02004232 DBG("Auto-CMD23 unavailable\n");
Andrei Warkentin8edf63712011-05-23 15:06:39 -05004233 }
4234
Philip Rakity15ec4462010-11-19 16:48:39 -05004235 /*
4236 * A controller may support 8-bit width, but the board itself
4237 * might not have the pins brought out. Boards that support
4238 * 8-bit width must set "mmc->caps |= MMC_CAP_8_BIT_DATA;" in
4239 * their platform code before calling sdhci_add_host(), and we
4240 * won't assume 8-bit width for hosts without that CAP.
4241 */
Anton Vorontsov5fe23c72009-06-18 00:14:08 +04004242 if (!(host->quirks & SDHCI_QUIRK_FORCE_1_BIT_DATA))
Philip Rakity15ec4462010-11-19 16:48:39 -05004243 mmc->caps |= MMC_CAP_4_BIT_DATA;
Pierre Ossmand129bce2006-03-24 03:18:17 -08004244
Jerry Huang63ef5d82012-10-25 13:47:19 +08004245 if (host->quirks2 & SDHCI_QUIRK2_HOST_NO_CMD23)
4246 mmc->caps &= ~MMC_CAP_CMD23;
4247
Adrian Hunter28da3582016-06-29 16:24:17 +03004248 if (host->caps & SDHCI_CAN_DO_HISPD)
Zhangfei Gaoa29e7e12010-08-16 21:15:32 -04004249 mmc->caps |= MMC_CAP_SD_HIGHSPEED | MMC_CAP_MMC_HIGHSPEED;
Pierre Ossmancd9277c2007-02-18 12:07:47 +01004250
Jaehoon Chung176d1ed2010-09-27 09:42:20 +01004251 if ((host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION) &&
Jaehoon Chung860951c2016-06-21 10:13:26 +09004252 mmc_card_is_removable(mmc) &&
Arnd Bergmann287980e2016-05-27 23:23:25 +02004253 mmc_gpio_get_cd(host->mmc) < 0)
Anton Vorontsov68d1fb72009-03-17 00:13:52 +03004254 mmc->caps |= MMC_CAP_NEEDS_POLL;
4255
Tim Kryger3a48edc2014-06-13 10:13:56 -07004256 if (!IS_ERR(mmc->supply.vqmmc)) {
4257 ret = regulator_enable(mmc->supply.vqmmc);
Stefan Agner1b5190c2018-07-05 14:18:19 +02004258
4259 /* If vqmmc provides no 1.8V signalling, then there's no UHS */
Tim Kryger3a48edc2014-06-13 10:13:56 -07004260 if (!regulator_is_supported_voltage(mmc->supply.vqmmc, 1700000,
4261 1950000))
Adrian Hunter28da3582016-06-29 16:24:17 +03004262 host->caps1 &= ~(SDHCI_SUPPORT_SDR104 |
4263 SDHCI_SUPPORT_SDR50 |
4264 SDHCI_SUPPORT_DDR50);
Stefan Agner1b5190c2018-07-05 14:18:19 +02004265
4266 /* In eMMC case vqmmc might be a fixed 1.8V regulator */
4267 if (!regulator_is_supported_voltage(mmc->supply.vqmmc, 2700000,
4268 3600000))
4269 host->flags &= ~SDHCI_SIGNALING_330;
4270
Chris Balla3361ab2013-03-11 17:51:53 -04004271 if (ret) {
4272 pr_warn("%s: Failed to enable vqmmc regulator: %d\n",
4273 mmc_hostname(mmc), ret);
Adrian Hunter4bb74312014-11-06 15:19:04 +02004274 mmc->supply.vqmmc = ERR_PTR(-EINVAL);
Chris Balla3361ab2013-03-11 17:51:53 -04004275 }
Kevin Liu8363c372012-11-17 17:55:51 -05004276 }
Philip Rakity6231f3d2012-07-23 15:56:23 -07004277
Adrian Hunter28da3582016-06-29 16:24:17 +03004278 if (host->quirks2 & SDHCI_QUIRK2_NO_1_8_V) {
4279 host->caps1 &= ~(SDHCI_SUPPORT_SDR104 | SDHCI_SUPPORT_SDR50 |
4280 SDHCI_SUPPORT_DDR50);
Kishon Vijay Abraham Ic16bc9a2018-04-27 17:17:14 +05304281 /*
4282 * The SDHCI controller in a SoC might support HS200/HS400
4283 * (indicated using mmc-hs200-1_8v/mmc-hs400-1_8v dt property),
4284 * but if the board is modeled such that the IO lines are not
4285 * connected to 1.8v then HS200/HS400 cannot be supported.
4286 * Disable HS200/HS400 if the board does not have 1.8v connected
4287 * to the IO lines. (Applicable for other modes in 1.8v)
4288 */
4289 mmc->caps2 &= ~(MMC_CAP2_HSX00_1_8V | MMC_CAP2_HS400_ES);
4290 mmc->caps &= ~(MMC_CAP_1_8V_DDR | MMC_CAP_UHS);
Adrian Hunter28da3582016-06-29 16:24:17 +03004291 }
Daniel Drake6a661802012-11-25 13:01:19 -05004292
Al Cooper4188bba2012-03-16 15:54:17 -04004293 /* Any UHS-I mode in caps implies SDR12 and SDR25 support. */
Adrian Hunter28da3582016-06-29 16:24:17 +03004294 if (host->caps1 & (SDHCI_SUPPORT_SDR104 | SDHCI_SUPPORT_SDR50 |
4295 SDHCI_SUPPORT_DDR50))
Arindam Nathf2119df2011-05-05 12:18:57 +05304296 mmc->caps |= MMC_CAP_UHS_SDR12 | MMC_CAP_UHS_SDR25;
4297
4298 /* SDR104 supports also implies SDR50 support */
Adrian Hunter28da3582016-06-29 16:24:17 +03004299 if (host->caps1 & SDHCI_SUPPORT_SDR104) {
Arindam Nathf2119df2011-05-05 12:18:57 +05304300 mmc->caps |= MMC_CAP_UHS_SDR104 | MMC_CAP_UHS_SDR50;
Giuseppe CAVALLARO156e14b2013-06-12 08:16:38 +02004301 /* SD3.0: SDR104 is supported so (for eMMC) the caps2
4302 * field can be promoted to support HS200.
4303 */
Adrian Hunter549c0b12014-11-06 15:19:05 +02004304 if (!(host->quirks2 & SDHCI_QUIRK2_BROKEN_HS200))
David Cohen13868bf2013-10-29 10:58:26 -07004305 mmc->caps2 |= MMC_CAP2_HS200;
Adrian Hunter28da3582016-06-29 16:24:17 +03004306 } else if (host->caps1 & SDHCI_SUPPORT_SDR50) {
Arindam Nathf2119df2011-05-05 12:18:57 +05304307 mmc->caps |= MMC_CAP_UHS_SDR50;
Adrian Hunter28da3582016-06-29 16:24:17 +03004308 }
Arindam Nathf2119df2011-05-05 12:18:57 +05304309
Adrian Huntere9fb05d2014-11-06 15:19:06 +02004310 if (host->quirks2 & SDHCI_QUIRK2_CAPS_BIT63_FOR_HS400 &&
Adrian Hunter28da3582016-06-29 16:24:17 +03004311 (host->caps1 & SDHCI_SUPPORT_HS400))
Adrian Huntere9fb05d2014-11-06 15:19:06 +02004312 mmc->caps2 |= MMC_CAP2_HS400;
4313
Adrian Hunter549c0b12014-11-06 15:19:05 +02004314 if ((mmc->caps2 & MMC_CAP2_HSX00_1_2V) &&
4315 (IS_ERR(mmc->supply.vqmmc) ||
4316 !regulator_is_supported_voltage(mmc->supply.vqmmc, 1100000,
4317 1300000)))
4318 mmc->caps2 &= ~MMC_CAP2_HSX00_1_2V;
4319
Adrian Hunter28da3582016-06-29 16:24:17 +03004320 if ((host->caps1 & SDHCI_SUPPORT_DDR50) &&
4321 !(host->quirks2 & SDHCI_QUIRK2_BROKEN_DDR50))
Arindam Nathf2119df2011-05-05 12:18:57 +05304322 mmc->caps |= MMC_CAP_UHS_DDR50;
4323
Girish K S069c9f12012-01-06 09:56:39 +05304324 /* Does the host need tuning for SDR50? */
Adrian Hunter28da3582016-06-29 16:24:17 +03004325 if (host->caps1 & SDHCI_USE_SDR50_TUNING)
Arindam Nathb513ea22011-05-05 12:19:04 +05304326 host->flags |= SDHCI_SDR50_NEEDS_TUNING;
4327
Arindam Nathd6d50a12011-05-05 12:18:59 +05304328 /* Driver Type(s) (A, C, D) supported by the host */
Adrian Hunter28da3582016-06-29 16:24:17 +03004329 if (host->caps1 & SDHCI_DRIVER_TYPE_A)
Arindam Nathd6d50a12011-05-05 12:18:59 +05304330 mmc->caps |= MMC_CAP_DRIVER_TYPE_A;
Adrian Hunter28da3582016-06-29 16:24:17 +03004331 if (host->caps1 & SDHCI_DRIVER_TYPE_C)
Arindam Nathd6d50a12011-05-05 12:18:59 +05304332 mmc->caps |= MMC_CAP_DRIVER_TYPE_C;
Adrian Hunter28da3582016-06-29 16:24:17 +03004333 if (host->caps1 & SDHCI_DRIVER_TYPE_D)
Arindam Nathd6d50a12011-05-05 12:18:59 +05304334 mmc->caps |= MMC_CAP_DRIVER_TYPE_D;
4335
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05304336 /* Initial value for re-tuning timer count */
Masahiro Yamadaa8e809e2020-04-08 16:21:05 +09004337 host->tuning_count = FIELD_GET(SDHCI_RETUNING_TIMER_COUNT_MASK,
4338 host->caps1);
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05304339
4340 /*
4341 * In case Re-tuning Timer is not disabled, the actual value of
4342 * re-tuning timer will be 2 ^ (n - 1).
4343 */
4344 if (host->tuning_count)
4345 host->tuning_count = 1 << (host->tuning_count - 1);
4346
4347 /* Re-tuning mode supported by the Host Controller */
Masahiro Yamadaa8e809e2020-04-08 16:21:05 +09004348 host->tuning_mode = FIELD_GET(SDHCI_RETUNING_MODE_MASK, host->caps1);
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05304349
Takashi Iwai8f230f42010-12-08 10:04:30 +01004350 ocr_avail = 0;
Philip Rakitybad37e12012-05-27 18:36:44 -07004351
Arindam Nathf2119df2011-05-05 12:18:57 +05304352 /*
4353 * According to SD Host Controller spec v3.00, if the Host System
4354 * can afford more than 150mA, Host Driver should set XPC to 1. Also
4355 * the value is meaningful only if Voltage Support in the Capabilities
4356 * register is set. The actual current value is 4 times the register
4357 * value.
4358 */
4359 max_current_caps = sdhci_readl(host, SDHCI_MAX_CURRENT);
Tim Kryger3a48edc2014-06-13 10:13:56 -07004360 if (!max_current_caps && !IS_ERR(mmc->supply.vmmc)) {
Chuanxiao.Dongae906032014-08-01 14:00:13 +08004361 int curr = regulator_get_current_limit(mmc->supply.vmmc);
Philip Rakitybad37e12012-05-27 18:36:44 -07004362 if (curr > 0) {
4363
4364 /* convert to SDHCI_MAX_CURRENT format */
4365 curr = curr/1000; /* convert to mA */
4366 curr = curr/SDHCI_MAX_CURRENT_MULTIPLIER;
4367
4368 curr = min_t(u32, curr, SDHCI_MAX_CURRENT_LIMIT);
4369 max_current_caps =
4370 (curr << SDHCI_MAX_CURRENT_330_SHIFT) |
4371 (curr << SDHCI_MAX_CURRENT_300_SHIFT) |
4372 (curr << SDHCI_MAX_CURRENT_180_SHIFT);
4373 }
4374 }
Arindam Nathf2119df2011-05-05 12:18:57 +05304375
Adrian Hunter28da3582016-06-29 16:24:17 +03004376 if (host->caps & SDHCI_CAN_VDD_330) {
Takashi Iwai8f230f42010-12-08 10:04:30 +01004377 ocr_avail |= MMC_VDD_32_33 | MMC_VDD_33_34;
Arindam Nathf2119df2011-05-05 12:18:57 +05304378
Aaron Lu55c46652012-07-04 13:31:48 +08004379 mmc->max_current_330 = ((max_current_caps &
Arindam Nathf2119df2011-05-05 12:18:57 +05304380 SDHCI_MAX_CURRENT_330_MASK) >>
4381 SDHCI_MAX_CURRENT_330_SHIFT) *
4382 SDHCI_MAX_CURRENT_MULTIPLIER;
Arindam Nathf2119df2011-05-05 12:18:57 +05304383 }
Adrian Hunter28da3582016-06-29 16:24:17 +03004384 if (host->caps & SDHCI_CAN_VDD_300) {
Takashi Iwai8f230f42010-12-08 10:04:30 +01004385 ocr_avail |= MMC_VDD_29_30 | MMC_VDD_30_31;
Arindam Nathf2119df2011-05-05 12:18:57 +05304386
Aaron Lu55c46652012-07-04 13:31:48 +08004387 mmc->max_current_300 = ((max_current_caps &
Arindam Nathf2119df2011-05-05 12:18:57 +05304388 SDHCI_MAX_CURRENT_300_MASK) >>
4389 SDHCI_MAX_CURRENT_300_SHIFT) *
4390 SDHCI_MAX_CURRENT_MULTIPLIER;
Arindam Nathf2119df2011-05-05 12:18:57 +05304391 }
Adrian Hunter28da3582016-06-29 16:24:17 +03004392 if (host->caps & SDHCI_CAN_VDD_180) {
Takashi Iwai8f230f42010-12-08 10:04:30 +01004393 ocr_avail |= MMC_VDD_165_195;
4394
Aaron Lu55c46652012-07-04 13:31:48 +08004395 mmc->max_current_180 = ((max_current_caps &
Arindam Nathf2119df2011-05-05 12:18:57 +05304396 SDHCI_MAX_CURRENT_180_MASK) >>
4397 SDHCI_MAX_CURRENT_180_SHIFT) *
4398 SDHCI_MAX_CURRENT_MULTIPLIER;
Arindam Nathf2119df2011-05-05 12:18:57 +05304399 }
4400
Ulf Hansson5fd26c72015-06-05 11:40:08 +02004401 /* If OCR set by host, use it instead. */
4402 if (host->ocr_mask)
4403 ocr_avail = host->ocr_mask;
4404
4405 /* If OCR set by external regulators, give it highest prio. */
Tim Kryger3a48edc2014-06-13 10:13:56 -07004406 if (mmc->ocr_avail)
Tim Kryger52221612014-06-25 00:25:34 -07004407 ocr_avail = mmc->ocr_avail;
Tim Kryger3a48edc2014-06-13 10:13:56 -07004408
Takashi Iwai8f230f42010-12-08 10:04:30 +01004409 mmc->ocr_avail = ocr_avail;
4410 mmc->ocr_avail_sdio = ocr_avail;
4411 if (host->ocr_avail_sdio)
4412 mmc->ocr_avail_sdio &= host->ocr_avail_sdio;
4413 mmc->ocr_avail_sd = ocr_avail;
4414 if (host->ocr_avail_sd)
4415 mmc->ocr_avail_sd &= host->ocr_avail_sd;
4416 else /* normal SD controllers don't support 1.8V */
4417 mmc->ocr_avail_sd &= ~MMC_VDD_165_195;
4418 mmc->ocr_avail_mmc = ocr_avail;
4419 if (host->ocr_avail_mmc)
4420 mmc->ocr_avail_mmc &= host->ocr_avail_mmc;
Pierre Ossman146ad662006-06-30 02:22:23 -07004421
4422 if (mmc->ocr_avail == 0) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01004423 pr_err("%s: Hardware doesn't report any support voltages.\n",
4424 mmc_hostname(mmc));
Adrian Huntereb5c20d2016-04-12 14:25:08 +03004425 ret = -ENODEV;
4426 goto unreg;
Pierre Ossman146ad662006-06-30 02:22:23 -07004427 }
4428
Adrian Hunter8cb851a2016-06-29 16:24:16 +03004429 if ((mmc->caps & (MMC_CAP_UHS_SDR12 | MMC_CAP_UHS_SDR25 |
4430 MMC_CAP_UHS_SDR50 | MMC_CAP_UHS_SDR104 |
4431 MMC_CAP_UHS_DDR50 | MMC_CAP_1_8V_DDR)) ||
4432 (mmc->caps2 & (MMC_CAP2_HS200_1_8V_SDR | MMC_CAP2_HS400_1_8V)))
4433 host->flags |= SDHCI_SIGNALING_180;
4434
4435 if (mmc->caps2 & MMC_CAP2_HSX00_1_2V)
4436 host->flags |= SDHCI_SIGNALING_120;
4437
Pierre Ossmand129bce2006-03-24 03:18:17 -08004438 spin_lock_init(&host->lock);
4439
4440 /*
Adrian Hunterac005312014-12-05 19:25:28 +02004441 * Maximum number of sectors in one transfer. Limited by SDMA boundary
4442 * size (512KiB). Note some tuning modes impose a 4MiB limit, but this
4443 * is less anyway.
Pierre Ossmand129bce2006-03-24 03:18:17 -08004444 */
Pierre Ossman55db8902006-11-21 17:55:45 +01004445 mmc->max_req_size = 524288;
Pierre Ossmand129bce2006-03-24 03:18:17 -08004446
4447 /*
Ulf Hansson250dcd12017-11-27 11:28:50 +01004448 * Maximum number of segments. Depends on if the hardware
4449 * can do scatter/gather or not.
4450 */
4451 if (host->flags & SDHCI_USE_ADMA) {
4452 mmc->max_segs = SDHCI_MAX_SEGS;
4453 } else if (host->flags & SDHCI_USE_SDMA) {
4454 mmc->max_segs = 1;
4455 if (swiotlb_max_segment()) {
4456 unsigned int max_req_size = (1 << IO_TLB_SHIFT) *
4457 IO_TLB_SEGSIZE;
4458 mmc->max_req_size = min(mmc->max_req_size,
4459 max_req_size);
4460 }
4461 } else { /* PIO */
4462 mmc->max_segs = SDHCI_MAX_SEGS;
4463 }
4464
4465 /*
Pierre Ossmand129bce2006-03-24 03:18:17 -08004466 * Maximum segment size. Could be one segment with the maximum number
Pierre Ossman2134a922008-06-28 18:28:51 +02004467 * of bytes. When doing hardware scatter/gather, each entry cannot
4468 * be larger than 64 KiB though.
Pierre Ossmand129bce2006-03-24 03:18:17 -08004469 */
Olof Johansson30652aa2011-01-01 18:37:32 -06004470 if (host->flags & SDHCI_USE_ADMA) {
4471 if (host->quirks & SDHCI_QUIRK_BROKEN_ADMA_ZEROLEN_DESC)
4472 mmc->max_seg_size = 65535;
4473 else
4474 mmc->max_seg_size = 65536;
4475 } else {
Pierre Ossman2134a922008-06-28 18:28:51 +02004476 mmc->max_seg_size = mmc->max_req_size;
Olof Johansson30652aa2011-01-01 18:37:32 -06004477 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08004478
4479 /*
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +01004480 * Maximum block size. This varies from controller to controller and
4481 * is specified in the capabilities register.
4482 */
Anton Vorontsov0633f652009-03-17 00:14:03 +03004483 if (host->quirks & SDHCI_QUIRK_FORCE_BLK_SZ_2048) {
4484 mmc->max_blk_size = 2;
4485 } else {
Adrian Hunter28da3582016-06-29 16:24:17 +03004486 mmc->max_blk_size = (host->caps & SDHCI_MAX_BLOCK_MASK) >>
Anton Vorontsov0633f652009-03-17 00:14:03 +03004487 SDHCI_MAX_BLOCK_SHIFT;
4488 if (mmc->max_blk_size >= 3) {
Joe Perches66061102014-09-12 14:56:56 -07004489 pr_warn("%s: Invalid maximum block size, assuming 512 bytes\n",
4490 mmc_hostname(mmc));
Anton Vorontsov0633f652009-03-17 00:14:03 +03004491 mmc->max_blk_size = 0;
4492 }
4493 }
4494
4495 mmc->max_blk_size = 512 << mmc->max_blk_size;
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +01004496
4497 /*
Pierre Ossman55db8902006-11-21 17:55:45 +01004498 * Maximum block count.
4499 */
Ben Dooks1388eef2009-06-14 12:40:53 +01004500 mmc->max_blk_count = (host->quirks & SDHCI_QUIRK_NO_MULTIBLOCK) ? 1 : 65535;
Pierre Ossman55db8902006-11-21 17:55:45 +01004501
Chunyan Zhanga68dd9a2018-10-25 10:12:36 +08004502 if (mmc->max_segs == 1)
Linus Walleijbd9b9022018-01-29 00:44:53 +01004503 /* This may alter mmc->*_blk_* parameters */
Chunyan Zhanga68dd9a2018-10-25 10:12:36 +08004504 sdhci_allocate_bounce_buffer(host);
Linus Walleijbd9b9022018-01-29 00:44:53 +01004505
Adrian Hunter52f53362016-06-29 16:24:15 +03004506 return 0;
4507
4508unreg:
4509 if (!IS_ERR(mmc->supply.vqmmc))
4510 regulator_disable(mmc->supply.vqmmc);
4511undma:
4512 if (host->align_buffer)
4513 dma_free_coherent(mmc_dev(mmc), host->align_buffer_sz +
4514 host->adma_table_sz, host->align_buffer,
4515 host->align_addr);
4516 host->adma_table = NULL;
4517 host->align_buffer = NULL;
4518
4519 return ret;
4520}
4521EXPORT_SYMBOL_GPL(sdhci_setup_host);
4522
Adrian Hunter4180ffa2017-03-20 19:50:45 +02004523void sdhci_cleanup_host(struct sdhci_host *host)
4524{
4525 struct mmc_host *mmc = host->mmc;
4526
4527 if (!IS_ERR(mmc->supply.vqmmc))
4528 regulator_disable(mmc->supply.vqmmc);
4529
4530 if (host->align_buffer)
4531 dma_free_coherent(mmc_dev(mmc), host->align_buffer_sz +
4532 host->adma_table_sz, host->align_buffer,
4533 host->align_addr);
Chunyan Zhang18e762e2020-01-16 16:21:47 +05304534
4535 if (host->use_external_dma)
4536 sdhci_external_dma_release(host);
4537
Adrian Hunter4180ffa2017-03-20 19:50:45 +02004538 host->adma_table = NULL;
4539 host->align_buffer = NULL;
4540}
4541EXPORT_SYMBOL_GPL(sdhci_cleanup_host);
4542
Adrian Hunter52f53362016-06-29 16:24:15 +03004543int __sdhci_add_host(struct sdhci_host *host)
4544{
Adrian Hunterc07a48c2019-04-05 15:40:20 +03004545 unsigned int flags = WQ_UNBOUND | WQ_MEM_RECLAIM | WQ_HIGHPRI;
Adrian Hunter52f53362016-06-29 16:24:15 +03004546 struct mmc_host *mmc = host->mmc;
4547 int ret;
4548
Adrian Hunterc07a48c2019-04-05 15:40:20 +03004549 host->complete_wq = alloc_workqueue("sdhci", flags, 0);
4550 if (!host->complete_wq)
4551 return -ENOMEM;
4552
4553 INIT_WORK(&host->complete_work, sdhci_complete_work);
Pierre Ossmand129bce2006-03-24 03:18:17 -08004554
Kees Cook2ee4f622017-10-24 08:03:45 -07004555 timer_setup(&host->timer, sdhci_timeout_timer, 0);
4556 timer_setup(&host->data_timer, sdhci_timeout_data_timer, 0);
Pierre Ossmand129bce2006-03-24 03:18:17 -08004557
Adrian Hunter250fb7b42014-12-05 19:41:10 +02004558 init_waitqueue_head(&host->buf_ready_int);
Arindam Nathb513ea22011-05-05 12:19:04 +05304559
Shawn Guo2af502c2013-07-05 14:38:55 +08004560 sdhci_init(host, 0);
4561
Russell King781e9892014-04-25 12:55:46 +01004562 ret = request_threaded_irq(host->irq, sdhci_irq, sdhci_thread_irq,
4563 IRQF_SHARED, mmc_hostname(mmc), host);
Mark Brown0fc81ee2012-07-02 14:26:15 +01004564 if (ret) {
4565 pr_err("%s: Failed to request IRQ %d: %d\n",
4566 mmc_hostname(mmc), host->irq, ret);
Adrian Hunterc07a48c2019-04-05 15:40:20 +03004567 goto unwq;
Mark Brown0fc81ee2012-07-02 14:26:15 +01004568 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08004569
Adrian Hunter061d17a2016-04-12 14:25:09 +03004570 ret = sdhci_led_register(host);
Mark Brown0fc81ee2012-07-02 14:26:15 +01004571 if (ret) {
4572 pr_err("%s: Failed to register LED device: %d\n",
4573 mmc_hostname(mmc), ret);
Adrian Huntereb5c20d2016-04-12 14:25:08 +03004574 goto unirq;
Mark Brown0fc81ee2012-07-02 14:26:15 +01004575 }
Pierre Ossman2f730fe2008-03-17 10:29:38 +01004576
Adrian Huntereb5c20d2016-04-12 14:25:08 +03004577 ret = mmc_add_host(mmc);
4578 if (ret)
4579 goto unled;
Pierre Ossmand129bce2006-03-24 03:18:17 -08004580
Girish K Sa3c76eb2011-10-11 11:44:09 +05304581 pr_info("%s: SDHCI controller on %s [%s] using %s\n",
Kay Sieversd1b26862008-11-08 21:37:46 +01004582 mmc_hostname(mmc), host->hw_name, dev_name(mmc_dev(mmc)),
Chunyan Zhang18e762e2020-01-16 16:21:47 +05304583 host->use_external_dma ? "External DMA" :
Adrian Huntere57a5f62014-11-04 12:42:46 +02004584 (host->flags & SDHCI_USE_ADMA) ?
4585 (host->flags & SDHCI_USE_64_BIT_DMA) ? "ADMA 64-bit" : "ADMA" :
Richard Röjforsa13abc72009-09-22 16:45:30 -07004586 (host->flags & SDHCI_USE_SDMA) ? "DMA" : "PIO");
Pierre Ossmand129bce2006-03-24 03:18:17 -08004587
Anton Vorontsov7260cf52009-03-17 00:13:48 +03004588 sdhci_enable_card_detection(host);
4589
Pierre Ossmand129bce2006-03-24 03:18:17 -08004590 return 0;
4591
Adrian Huntereb5c20d2016-04-12 14:25:08 +03004592unled:
Adrian Hunter061d17a2016-04-12 14:25:09 +03004593 sdhci_led_unregister(host);
Adrian Huntereb5c20d2016-04-12 14:25:08 +03004594unirq:
Russell King03231f92014-04-25 12:57:12 +01004595 sdhci_do_reset(host, SDHCI_RESET_ALL);
Russell Kingb537f942014-04-25 12:56:01 +01004596 sdhci_writel(host, 0, SDHCI_INT_ENABLE);
4597 sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE);
Pierre Ossman2f730fe2008-03-17 10:29:38 +01004598 free_irq(host->irq, host);
Adrian Hunterc07a48c2019-04-05 15:40:20 +03004599unwq:
4600 destroy_workqueue(host->complete_wq);
Adrian Hunter52f53362016-06-29 16:24:15 +03004601
Pierre Ossmand129bce2006-03-24 03:18:17 -08004602 return ret;
4603}
Adrian Hunter52f53362016-06-29 16:24:15 +03004604EXPORT_SYMBOL_GPL(__sdhci_add_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08004605
Adrian Hunter52f53362016-06-29 16:24:15 +03004606int sdhci_add_host(struct sdhci_host *host)
4607{
4608 int ret;
4609
4610 ret = sdhci_setup_host(host);
4611 if (ret)
4612 return ret;
4613
Adrian Hunter4180ffa2017-03-20 19:50:45 +02004614 ret = __sdhci_add_host(host);
4615 if (ret)
4616 goto cleanup;
4617
4618 return 0;
4619
4620cleanup:
4621 sdhci_cleanup_host(host);
4622
4623 return ret;
Adrian Hunter52f53362016-06-29 16:24:15 +03004624}
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01004625EXPORT_SYMBOL_GPL(sdhci_add_host);
4626
Pierre Ossman1e728592008-04-16 19:13:13 +02004627void sdhci_remove_host(struct sdhci_host *host, int dead)
Pierre Ossmand129bce2006-03-24 03:18:17 -08004628{
Tim Kryger3a48edc2014-06-13 10:13:56 -07004629 struct mmc_host *mmc = host->mmc;
Pierre Ossman1e728592008-04-16 19:13:13 +02004630 unsigned long flags;
4631
4632 if (dead) {
4633 spin_lock_irqsave(&host->lock, flags);
4634
4635 host->flags |= SDHCI_DEVICE_DEAD;
4636
Adrian Hunter5d0d11c2016-06-29 16:24:31 +03004637 if (sdhci_has_requests(host)) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05304638 pr_err("%s: Controller removed during "
Markus Mayer4e743f12014-07-03 13:27:42 -07004639 " transfer!\n", mmc_hostname(mmc));
Adrian Hunter5d0d11c2016-06-29 16:24:31 +03004640 sdhci_error_out_mrqs(host, -ENOMEDIUM);
Pierre Ossman1e728592008-04-16 19:13:13 +02004641 }
4642
4643 spin_unlock_irqrestore(&host->lock, flags);
4644 }
4645
Anton Vorontsov7260cf52009-03-17 00:13:48 +03004646 sdhci_disable_card_detection(host);
4647
Markus Mayer4e743f12014-07-03 13:27:42 -07004648 mmc_remove_host(mmc);
Pierre Ossmand129bce2006-03-24 03:18:17 -08004649
Adrian Hunter061d17a2016-04-12 14:25:09 +03004650 sdhci_led_unregister(host);
Pierre Ossman2f730fe2008-03-17 10:29:38 +01004651
Pierre Ossman1e728592008-04-16 19:13:13 +02004652 if (!dead)
Russell King03231f92014-04-25 12:57:12 +01004653 sdhci_do_reset(host, SDHCI_RESET_ALL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08004654
Russell Kingb537f942014-04-25 12:56:01 +01004655 sdhci_writel(host, 0, SDHCI_INT_ENABLE);
4656 sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE);
Pierre Ossmand129bce2006-03-24 03:18:17 -08004657 free_irq(host->irq, host);
4658
4659 del_timer_sync(&host->timer);
Adrian Hunterd7422fb2016-06-29 16:24:33 +03004660 del_timer_sync(&host->data_timer);
Pierre Ossmand129bce2006-03-24 03:18:17 -08004661
Adrian Hunterc07a48c2019-04-05 15:40:20 +03004662 destroy_workqueue(host->complete_wq);
Pierre Ossman2134a922008-06-28 18:28:51 +02004663
Tim Kryger3a48edc2014-06-13 10:13:56 -07004664 if (!IS_ERR(mmc->supply.vqmmc))
4665 regulator_disable(mmc->supply.vqmmc);
Philip Rakity6231f3d2012-07-23 15:56:23 -07004666
Russell Kingedd63fc2016-01-26 13:39:50 +00004667 if (host->align_buffer)
Russell Kinge66e61c2016-01-26 13:39:55 +00004668 dma_free_coherent(mmc_dev(mmc), host->align_buffer_sz +
4669 host->adma_table_sz, host->align_buffer,
4670 host->align_addr);
Pierre Ossman2134a922008-06-28 18:28:51 +02004671
Chunyan Zhang18e762e2020-01-16 16:21:47 +05304672 if (host->use_external_dma)
4673 sdhci_external_dma_release(host);
4674
Adrian Hunter4efaa6f2014-11-04 12:42:39 +02004675 host->adma_table = NULL;
Pierre Ossman2134a922008-06-28 18:28:51 +02004676 host->align_buffer = NULL;
Pierre Ossmand129bce2006-03-24 03:18:17 -08004677}
4678
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01004679EXPORT_SYMBOL_GPL(sdhci_remove_host);
4680
4681void sdhci_free_host(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -08004682{
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01004683 mmc_free_host(host->mmc);
Pierre Ossmand129bce2006-03-24 03:18:17 -08004684}
4685
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01004686EXPORT_SYMBOL_GPL(sdhci_free_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08004687
4688/*****************************************************************************\
4689 * *
4690 * Driver init/exit *
4691 * *
4692\*****************************************************************************/
4693
4694static int __init sdhci_drv_init(void)
4695{
Girish K Sa3c76eb2011-10-11 11:44:09 +05304696 pr_info(DRIVER_NAME
Pierre Ossman52fbf9c2007-02-09 08:23:41 +01004697 ": Secure Digital Host Controller Interface driver\n");
Girish K Sa3c76eb2011-10-11 11:44:09 +05304698 pr_info(DRIVER_NAME ": Copyright(c) Pierre Ossman\n");
Pierre Ossmand129bce2006-03-24 03:18:17 -08004699
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01004700 return 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -08004701}
4702
4703static void __exit sdhci_drv_exit(void)
4704{
Pierre Ossmand129bce2006-03-24 03:18:17 -08004705}
4706
4707module_init(sdhci_drv_init);
4708module_exit(sdhci_drv_exit);
4709
Pierre Ossmandf673b22006-06-30 02:22:31 -07004710module_param(debug_quirks, uint, 0444);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03004711module_param(debug_quirks2, uint, 0444);
Pierre Ossman67435272006-06-30 02:22:31 -07004712
Pierre Ossman32710e82009-04-08 20:14:54 +02004713MODULE_AUTHOR("Pierre Ossman <pierre@ossman.eu>");
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01004714MODULE_DESCRIPTION("Secure Digital Host Controller Interface core driver");
Pierre Ossmand129bce2006-03-24 03:18:17 -08004715MODULE_LICENSE("GPL");
Pierre Ossman67435272006-06-30 02:22:31 -07004716
Pierre Ossmandf673b22006-06-30 02:22:31 -07004717MODULE_PARM_DESC(debug_quirks, "Force certain quirks.");
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03004718MODULE_PARM_DESC(debug_quirks2, "Force certain other quirks.");