blob: 896390147453fc85ea976166dc64f129562b447c [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
Kevin Liu52983382013-01-31 11:31:37 +080051static void sdhci_enable_preset_value(struct sdhci_host *host, bool enable);
Pierre Ossmand129bce2006-03-24 03:18:17 -080052
Adrian Huntera374a722020-04-12 12:03:46 +030053static void sdhci_send_command(struct sdhci_host *host, struct mmc_command *cmd);
54
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
Adrian Huntera374a722020-04-12 12:03:46 +03001561static void 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}
1661
Adrian Huntere872f1e2020-04-12 12:03:48 +03001662static bool sdhci_present_error(struct sdhci_host *host,
1663 struct mmc_command *cmd, bool present)
1664{
1665 if (!present || host->flags & SDHCI_DEVICE_DEAD) {
1666 cmd->error = -ENOMEDIUM;
1667 return true;
1668 }
1669
1670 return false;
1671}
1672
Adrian Hunter4a5fc112017-08-21 13:11:28 +05301673static void sdhci_read_rsp_136(struct sdhci_host *host, struct mmc_command *cmd)
1674{
1675 int i, reg;
1676
1677 for (i = 0; i < 4; i++) {
1678 reg = SDHCI_RESPONSE + (3 - i) * 4;
1679 cmd->resp[i] = sdhci_readl(host, reg);
1680 }
1681
Kishon Vijay Abraham I1284c242017-08-21 13:11:29 +05301682 if (host->quirks2 & SDHCI_QUIRK2_RSP_136_HAS_CRC)
1683 return;
1684
Adrian Hunter4a5fc112017-08-21 13:11:28 +05301685 /* CRC is stripped so we need to do some shifting */
1686 for (i = 0; i < 4; i++) {
1687 cmd->resp[i] <<= 8;
1688 if (i != 3)
1689 cmd->resp[i] |= cmd->resp[i + 1] >> 24;
1690 }
1691}
1692
Pierre Ossmand129bce2006-03-24 03:18:17 -08001693static void sdhci_finish_command(struct sdhci_host *host)
1694{
Adrian Huntere0a56402016-06-29 16:24:22 +03001695 struct mmc_command *cmd = host->cmd;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001696
Adrian Huntere0a56402016-06-29 16:24:22 +03001697 host->cmd = NULL;
1698
1699 if (cmd->flags & MMC_RSP_PRESENT) {
1700 if (cmd->flags & MMC_RSP_136) {
Adrian Hunter4a5fc112017-08-21 13:11:28 +05301701 sdhci_read_rsp_136(host, cmd);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001702 } else {
Adrian Huntere0a56402016-06-29 16:24:22 +03001703 cmd->resp[0] = sdhci_readl(host, SDHCI_RESPONSE);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001704 }
1705 }
1706
Adrian Hunter20845be2016-08-16 13:44:13 +03001707 if (cmd->mrq->cap_cmd_during_tfr && cmd == cmd->mrq->cmd)
1708 mmc_command_done(host->mmc, cmd->mrq);
1709
Adrian Hunter6bde8682016-06-29 16:24:20 +03001710 /*
1711 * The host can send and interrupt when the busy state has
1712 * ended, allowing us to wait without wasting CPU cycles.
1713 * The busy signal uses DAT0 so this is similar to waiting
1714 * for data to complete.
1715 *
1716 * Note: The 1.0 specification is a bit ambiguous about this
1717 * feature so there might be some problems with older
1718 * controllers.
1719 */
Adrian Huntere0a56402016-06-29 16:24:22 +03001720 if (cmd->flags & MMC_RSP_BUSY) {
1721 if (cmd->data) {
Adrian Hunter6bde8682016-06-29 16:24:20 +03001722 DBG("Cannot wait for busy signal when also doing a data transfer");
1723 } else if (!(host->quirks & SDHCI_QUIRK_NO_BUSY_IRQ) &&
Adrian Hunterea968022016-06-29 16:24:24 +03001724 cmd == host->data_cmd) {
1725 /* Command complete before busy is ended */
Adrian Hunter6bde8682016-06-29 16:24:20 +03001726 return;
1727 }
1728 }
1729
Andrei Warkentine89d4562011-05-23 15:06:37 -05001730 /* Finished CMD23, now send actual command. */
Adrian Huntera4c73ab2016-06-29 16:24:25 +03001731 if (cmd == cmd->mrq->sbc) {
1732 sdhci_send_command(host, cmd->mrq->cmd);
Andrei Warkentine89d4562011-05-23 15:06:37 -05001733 } else {
Pierre Ossmane538fbe2007-08-12 16:46:32 +02001734
Andrei Warkentine89d4562011-05-23 15:06:37 -05001735 /* Processed actual command. */
1736 if (host->data && host->data_early)
1737 sdhci_finish_data(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001738
Adrian Huntere0a56402016-06-29 16:24:22 +03001739 if (!cmd->data)
Adrian Hunter19d2f692019-04-05 15:40:19 +03001740 __sdhci_finish_mrq(host, cmd->mrq);
Andrei Warkentine89d4562011-05-23 15:06:37 -05001741 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001742}
1743
Kevin Liu52983382013-01-31 11:31:37 +08001744static u16 sdhci_get_preset_value(struct sdhci_host *host)
1745{
Russell Kingd975f122014-04-25 12:59:31 +01001746 u16 preset = 0;
Kevin Liu52983382013-01-31 11:31:37 +08001747
Russell Kingd975f122014-04-25 12:59:31 +01001748 switch (host->timing) {
1749 case MMC_TIMING_UHS_SDR12:
Kevin Liu52983382013-01-31 11:31:37 +08001750 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR12);
1751 break;
Russell Kingd975f122014-04-25 12:59:31 +01001752 case MMC_TIMING_UHS_SDR25:
Kevin Liu52983382013-01-31 11:31:37 +08001753 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR25);
1754 break;
Russell Kingd975f122014-04-25 12:59:31 +01001755 case MMC_TIMING_UHS_SDR50:
Kevin Liu52983382013-01-31 11:31:37 +08001756 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR50);
1757 break;
Russell Kingd975f122014-04-25 12:59:31 +01001758 case MMC_TIMING_UHS_SDR104:
1759 case MMC_TIMING_MMC_HS200:
Kevin Liu52983382013-01-31 11:31:37 +08001760 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR104);
1761 break;
Russell Kingd975f122014-04-25 12:59:31 +01001762 case MMC_TIMING_UHS_DDR50:
Jisheng Zhang0dafa602015-08-18 16:21:39 +08001763 case MMC_TIMING_MMC_DDR52:
Kevin Liu52983382013-01-31 11:31:37 +08001764 preset = sdhci_readw(host, SDHCI_PRESET_FOR_DDR50);
1765 break;
Adrian Huntere9fb05d2014-11-06 15:19:06 +02001766 case MMC_TIMING_MMC_HS400:
1767 preset = sdhci_readw(host, SDHCI_PRESET_FOR_HS400);
1768 break;
Kevin Liu52983382013-01-31 11:31:37 +08001769 default:
1770 pr_warn("%s: Invalid UHS-I mode selected\n",
1771 mmc_hostname(host->mmc));
1772 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR12);
1773 break;
1774 }
1775 return preset;
1776}
1777
Ludovic Desrochesfb9ee042016-04-07 11:13:08 +02001778u16 sdhci_calc_clk(struct sdhci_host *host, unsigned int clock,
1779 unsigned int *actual_clock)
Pierre Ossmand129bce2006-03-24 03:18:17 -08001780{
Arindam Nathc3ed3872011-05-05 12:19:06 +05301781 int div = 0; /* Initialized for compiler warning */
Giuseppe CAVALLAROdf162192011-11-04 13:53:19 +01001782 int real_div = div, clk_mul = 1;
Arindam Nathc3ed3872011-05-05 12:19:06 +05301783 u16 clk = 0;
ludovic.desroches@atmel.com54971592015-07-29 16:22:46 +02001784 bool switch_base_clk = false;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001785
Zhangfei Gao85105c52010-08-06 07:10:01 +08001786 if (host->version >= SDHCI_SPEC_300) {
Russell Kingda91a8f2014-04-25 13:00:12 +01001787 if (host->preset_enabled) {
Kevin Liu52983382013-01-31 11:31:37 +08001788 u16 pre_val;
1789
1790 clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL);
1791 pre_val = sdhci_get_preset_value(host);
Masahiro Yamadafa091012020-03-12 20:00:50 +09001792 div = FIELD_GET(SDHCI_PRESET_SDCLK_FREQ_MASK, pre_val);
Kevin Liu52983382013-01-31 11:31:37 +08001793 if (host->clk_mul &&
Masahiro Yamadafa091012020-03-12 20:00:50 +09001794 (pre_val & SDHCI_PRESET_CLKGEN_SEL)) {
Kevin Liu52983382013-01-31 11:31:37 +08001795 clk = SDHCI_PROG_CLOCK_MODE;
1796 real_div = div + 1;
1797 clk_mul = host->clk_mul;
1798 } else {
1799 real_div = max_t(int, 1, div << 1);
1800 }
1801 goto clock_set;
1802 }
1803
Arindam Nathc3ed3872011-05-05 12:19:06 +05301804 /*
1805 * Check if the Host Controller supports Programmable Clock
1806 * Mode.
1807 */
1808 if (host->clk_mul) {
Kevin Liu52983382013-01-31 11:31:37 +08001809 for (div = 1; div <= 1024; div++) {
1810 if ((host->max_clk * host->clk_mul / div)
1811 <= clock)
1812 break;
Zhangfei Gao85105c52010-08-06 07:10:01 +08001813 }
ludovic.desroches@atmel.com54971592015-07-29 16:22:46 +02001814 if ((host->max_clk * host->clk_mul / div) <= clock) {
1815 /*
1816 * Set Programmable Clock Mode in the Clock
1817 * Control register.
1818 */
1819 clk = SDHCI_PROG_CLOCK_MODE;
1820 real_div = div;
1821 clk_mul = host->clk_mul;
1822 div--;
1823 } else {
1824 /*
1825 * Divisor can be too small to reach clock
1826 * speed requirement. Then use the base clock.
1827 */
1828 switch_base_clk = true;
1829 }
1830 }
1831
1832 if (!host->clk_mul || switch_base_clk) {
Arindam Nathc3ed3872011-05-05 12:19:06 +05301833 /* Version 3.00 divisors must be a multiple of 2. */
1834 if (host->max_clk <= clock)
1835 div = 1;
1836 else {
1837 for (div = 2; div < SDHCI_MAX_DIV_SPEC_300;
1838 div += 2) {
1839 if ((host->max_clk / div) <= clock)
1840 break;
1841 }
1842 }
Giuseppe CAVALLAROdf162192011-11-04 13:53:19 +01001843 real_div = div;
Arindam Nathc3ed3872011-05-05 12:19:06 +05301844 div >>= 1;
Suneel Garapatid1955c32015-06-09 13:01:50 +05301845 if ((host->quirks2 & SDHCI_QUIRK2_CLOCK_DIV_ZERO_BROKEN)
1846 && !div && host->max_clk <= 25000000)
1847 div = 1;
Zhangfei Gao85105c52010-08-06 07:10:01 +08001848 }
1849 } else {
1850 /* Version 2.00 divisors must be a power of 2. */
Zhangfei Gao03975262010-09-20 15:15:18 -04001851 for (div = 1; div < SDHCI_MAX_DIV_SPEC_200; div *= 2) {
Zhangfei Gao85105c52010-08-06 07:10:01 +08001852 if ((host->max_clk / div) <= clock)
1853 break;
1854 }
Giuseppe CAVALLAROdf162192011-11-04 13:53:19 +01001855 real_div = div;
Arindam Nathc3ed3872011-05-05 12:19:06 +05301856 div >>= 1;
Pierre Ossmand129bce2006-03-24 03:18:17 -08001857 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001858
Kevin Liu52983382013-01-31 11:31:37 +08001859clock_set:
Aisheng Dong03d6f5f2014-08-27 15:26:32 +08001860 if (real_div)
Ludovic Desrochesfb9ee042016-04-07 11:13:08 +02001861 *actual_clock = (host->max_clk * clk_mul) / real_div;
Arindam Nathc3ed3872011-05-05 12:19:06 +05301862 clk |= (div & SDHCI_DIV_MASK) << SDHCI_DIVIDER_SHIFT;
Zhangfei Gao85105c52010-08-06 07:10:01 +08001863 clk |= ((div & SDHCI_DIV_HI_MASK) >> SDHCI_DIV_MASK_LEN)
1864 << SDHCI_DIVIDER_HI_SHIFT;
Ludovic Desrochesfb9ee042016-04-07 11:13:08 +02001865
1866 return clk;
1867}
1868EXPORT_SYMBOL_GPL(sdhci_calc_clk);
1869
Ritesh Harjanifec79672016-11-21 12:07:19 +05301870void sdhci_enable_clk(struct sdhci_host *host, u16 clk)
Ludovic Desrochesfb9ee042016-04-07 11:13:08 +02001871{
Adrian Hunter5a436cc2017-03-20 19:50:31 +02001872 ktime_t timeout;
Ludovic Desrochesfb9ee042016-04-07 11:13:08 +02001873
Pierre Ossmand129bce2006-03-24 03:18:17 -08001874 clk |= SDHCI_CLOCK_INT_EN;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001875 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001876
Ben Chuang4a9e0d12019-08-27 08:32:42 +08001877 /* Wait max 150 ms */
1878 timeout = ktime_add_ms(ktime_get(), 150);
Alek Dub7044412018-12-06 17:24:59 +08001879 while (1) {
1880 bool timedout = ktime_after(ktime_get(), timeout);
1881
1882 clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL);
1883 if (clk & SDHCI_CLOCK_INT_STABLE)
1884 break;
1885 if (timedout) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01001886 pr_err("%s: Internal clock never stabilised.\n",
1887 mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -08001888 sdhci_dumpregs(host);
1889 return;
1890 }
Adrian Hunter5a436cc2017-03-20 19:50:31 +02001891 udelay(10);
Pierre Ossman7cb2c762006-06-30 02:22:23 -07001892 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08001893
Ben Chuang1beabbd2019-08-27 08:32:55 +08001894 if (host->version >= SDHCI_SPEC_410 && host->v4_mode) {
1895 clk |= SDHCI_CLOCK_PLL_EN;
1896 clk &= ~SDHCI_CLOCK_INT_STABLE;
1897 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
1898
1899 /* Wait max 150 ms */
1900 timeout = ktime_add_ms(ktime_get(), 150);
1901 while (1) {
1902 bool timedout = ktime_after(ktime_get(), timeout);
1903
1904 clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL);
1905 if (clk & SDHCI_CLOCK_INT_STABLE)
1906 break;
1907 if (timedout) {
1908 pr_err("%s: PLL clock never stabilised.\n",
1909 mmc_hostname(host->mmc));
1910 sdhci_dumpregs(host);
1911 return;
1912 }
1913 udelay(10);
1914 }
1915 }
1916
Pierre Ossmand129bce2006-03-24 03:18:17 -08001917 clk |= SDHCI_CLOCK_CARD_EN;
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001918 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001919}
Ritesh Harjanifec79672016-11-21 12:07:19 +05301920EXPORT_SYMBOL_GPL(sdhci_enable_clk);
1921
1922void sdhci_set_clock(struct sdhci_host *host, unsigned int clock)
1923{
1924 u16 clk;
1925
1926 host->mmc->actual_clock = 0;
1927
1928 sdhci_writew(host, 0, SDHCI_CLOCK_CONTROL);
1929
1930 if (clock == 0)
1931 return;
1932
1933 clk = sdhci_calc_clk(host, clock, &host->mmc->actual_clock);
1934 sdhci_enable_clk(host, clk);
1935}
Russell King17710592014-04-25 12:58:55 +01001936EXPORT_SYMBOL_GPL(sdhci_set_clock);
Pierre Ossmand129bce2006-03-24 03:18:17 -08001937
Adrian Hunter1dceb042016-03-29 12:45:43 +03001938static void sdhci_set_power_reg(struct sdhci_host *host, unsigned char mode,
1939 unsigned short vdd)
Pierre Ossman146ad662006-06-30 02:22:23 -07001940{
Tim Kryger3a48edc2014-06-13 10:13:56 -07001941 struct mmc_host *mmc = host->mmc;
Adrian Hunter1dceb042016-03-29 12:45:43 +03001942
Adrian Hunter1dceb042016-03-29 12:45:43 +03001943 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, vdd);
Adrian Hunter1dceb042016-03-29 12:45:43 +03001944
1945 if (mode != MMC_POWER_OFF)
1946 sdhci_writeb(host, SDHCI_POWER_ON, SDHCI_POWER_CONTROL);
1947 else
1948 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
1949}
1950
Adrian Hunter606d3132016-10-05 12:11:22 +03001951void sdhci_set_power_noreg(struct sdhci_host *host, unsigned char mode,
1952 unsigned short vdd)
Adrian Hunter1dceb042016-03-29 12:45:43 +03001953{
Giuseppe Cavallaro83642482010-09-28 10:41:28 +02001954 u8 pwr = 0;
Pierre Ossman146ad662006-06-30 02:22:23 -07001955
Russell King24fbb3c2014-04-25 13:00:06 +01001956 if (mode != MMC_POWER_OFF) {
1957 switch (1 << vdd) {
Pierre Ossmanae628902009-05-03 20:45:03 +02001958 case MMC_VDD_165_195:
Andy Shevchenko2a609ab2018-01-11 15:51:58 +02001959 /*
1960 * Without a regulator, SDHCI does not support 2.0v
1961 * so we only get here if the driver deliberately
1962 * added the 2.0v range to ocr_avail. Map it to 1.8v
1963 * for the purpose of turning on the power.
1964 */
1965 case MMC_VDD_20_21:
Pierre Ossmanae628902009-05-03 20:45:03 +02001966 pwr = SDHCI_POWER_180;
1967 break;
1968 case MMC_VDD_29_30:
1969 case MMC_VDD_30_31:
1970 pwr = SDHCI_POWER_300;
1971 break;
1972 case MMC_VDD_32_33:
1973 case MMC_VDD_33_34:
1974 pwr = SDHCI_POWER_330;
1975 break;
1976 default:
Adrian Hunter9d5de932015-11-26 14:00:46 +02001977 WARN(1, "%s: Invalid vdd %#x\n",
1978 mmc_hostname(host->mmc), vdd);
1979 break;
Pierre Ossmanae628902009-05-03 20:45:03 +02001980 }
1981 }
1982
1983 if (host->pwr == pwr)
Russell Kinge921a8b2014-04-25 13:00:01 +01001984 return;
Pierre Ossman146ad662006-06-30 02:22:23 -07001985
Pierre Ossmanae628902009-05-03 20:45:03 +02001986 host->pwr = pwr;
1987
1988 if (pwr == 0) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03001989 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
Adrian Hunterf0710a52013-05-06 12:17:32 +03001990 if (host->quirks2 & SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON)
1991 sdhci_runtime_pm_bus_off(host);
Russell Kinge921a8b2014-04-25 13:00:01 +01001992 } else {
1993 /*
1994 * Spec says that we should clear the power reg before setting
1995 * a new value. Some controllers don't seem to like this though.
1996 */
1997 if (!(host->quirks & SDHCI_QUIRK_SINGLE_POWER_WRITE))
1998 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
Darren Salt9e9dc5f2007-01-27 15:32:31 +01001999
Russell Kinge921a8b2014-04-25 13:00:01 +01002000 /*
2001 * At least the Marvell CaFe chip gets confused if we set the
2002 * voltage and set turn on power at the same time, so set the
2003 * voltage first.
2004 */
2005 if (host->quirks & SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER)
2006 sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL);
Pierre Ossman146ad662006-06-30 02:22:23 -07002007
Russell Kinge921a8b2014-04-25 13:00:01 +01002008 pwr |= SDHCI_POWER_ON;
2009
Pierre Ossmanae628902009-05-03 20:45:03 +02002010 sdhci_writeb(host, pwr, SDHCI_POWER_CONTROL);
2011
Russell Kinge921a8b2014-04-25 13:00:01 +01002012 if (host->quirks2 & SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON)
2013 sdhci_runtime_pm_bus_on(host);
Andres Salomone08c1692008-07-04 10:00:03 -07002014
Russell Kinge921a8b2014-04-25 13:00:01 +01002015 /*
2016 * Some controllers need an extra 10ms delay of 10ms before
2017 * they can apply clock after applying power
2018 */
2019 if (host->quirks & SDHCI_QUIRK_DELAY_AFTER_POWER)
2020 mdelay(10);
2021 }
Adrian Hunter1dceb042016-03-29 12:45:43 +03002022}
Adrian Hunter606d3132016-10-05 12:11:22 +03002023EXPORT_SYMBOL_GPL(sdhci_set_power_noreg);
Jisheng Zhang918f4cb2015-12-11 21:36:29 +08002024
Adrian Hunter606d3132016-10-05 12:11:22 +03002025void sdhci_set_power(struct sdhci_host *host, unsigned char mode,
2026 unsigned short vdd)
Adrian Hunter1dceb042016-03-29 12:45:43 +03002027{
Adrian Hunter606d3132016-10-05 12:11:22 +03002028 if (IS_ERR(host->mmc->supply.vmmc))
2029 sdhci_set_power_noreg(host, mode, vdd);
Adrian Hunter1dceb042016-03-29 12:45:43 +03002030 else
Adrian Hunter606d3132016-10-05 12:11:22 +03002031 sdhci_set_power_reg(host, mode, vdd);
Pierre Ossman146ad662006-06-30 02:22:23 -07002032}
Adrian Hunter606d3132016-10-05 12:11:22 +03002033EXPORT_SYMBOL_GPL(sdhci_set_power);
Pierre Ossman146ad662006-06-30 02:22:23 -07002034
Nicolas Saenz Julienne6c92ae12020-03-06 18:44:03 +01002035/*
2036 * Some controllers need to configure a valid bus voltage on their power
2037 * register regardless of whether an external regulator is taking care of power
2038 * supply. This helper function takes care of it if set as the controller's
2039 * sdhci_ops.set_power callback.
2040 */
2041void sdhci_set_power_and_bus_voltage(struct sdhci_host *host,
2042 unsigned char mode,
2043 unsigned short vdd)
2044{
2045 if (!IS_ERR(host->mmc->supply.vmmc)) {
2046 struct mmc_host *mmc = host->mmc;
2047
2048 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, vdd);
2049 }
2050 sdhci_set_power_noreg(host, mode, vdd);
2051}
2052EXPORT_SYMBOL_GPL(sdhci_set_power_and_bus_voltage);
2053
Pierre Ossmand129bce2006-03-24 03:18:17 -08002054/*****************************************************************************\
2055 * *
2056 * MMC callbacks *
2057 * *
2058\*****************************************************************************/
2059
Aapo Vienamod462c1b2018-08-20 12:23:32 +03002060void sdhci_request(struct mmc_host *mmc, struct mmc_request *mrq)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002061{
Adrian Huntere872f1e2020-04-12 12:03:48 +03002062 struct sdhci_host *host = mmc_priv(mmc);
2063 struct mmc_command *cmd;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002064 unsigned long flags;
Adrian Huntere872f1e2020-04-12 12:03:48 +03002065 bool present;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002066
Scott Branden04e079cf2015-03-10 11:35:10 -07002067 /* Firstly check card presence */
Adrian Hunter8d28b7a2016-02-09 16:12:36 +02002068 present = mmc->ops->get_cd(mmc);
Krzysztof Kozlowski28367662015-01-05 10:50:15 +01002069
Pierre Ossmand129bce2006-03-24 03:18:17 -08002070 spin_lock_irqsave(&host->lock, flags);
2071
Adrian Hunter061d17a2016-04-12 14:25:09 +03002072 sdhci_led_activate(host);
Andrei Warkentine89d4562011-05-23 15:06:37 -05002073
Adrian Huntere872f1e2020-04-12 12:03:48 +03002074 if (sdhci_present_error(host, mrq->cmd, present))
2075 goto out_finish;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002076
Adrian Huntere872f1e2020-04-12 12:03:48 +03002077 cmd = sdhci_manual_cmd23(host, mrq) ? mrq->sbc : mrq->cmd;
2078
2079 sdhci_send_command(host, cmd);
2080
2081 spin_unlock_irqrestore(&host->lock, flags);
2082
2083 return;
2084
2085out_finish:
2086 sdhci_finish_mrq(host, mrq);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002087 spin_unlock_irqrestore(&host->lock, flags);
2088}
Aapo Vienamod462c1b2018-08-20 12:23:32 +03002089EXPORT_SYMBOL_GPL(sdhci_request);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002090
Russell King2317f562014-04-25 12:57:07 +01002091void sdhci_set_bus_width(struct sdhci_host *host, int width)
2092{
2093 u8 ctrl;
2094
2095 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
2096 if (width == MMC_BUS_WIDTH_8) {
2097 ctrl &= ~SDHCI_CTRL_4BITBUS;
Michał Mirosław98f94ea2017-08-14 22:00:24 +02002098 ctrl |= SDHCI_CTRL_8BITBUS;
Russell King2317f562014-04-25 12:57:07 +01002099 } else {
Michał Mirosław98f94ea2017-08-14 22:00:24 +02002100 if (host->mmc->caps & MMC_CAP_8_BIT_DATA)
Russell King2317f562014-04-25 12:57:07 +01002101 ctrl &= ~SDHCI_CTRL_8BITBUS;
2102 if (width == MMC_BUS_WIDTH_4)
2103 ctrl |= SDHCI_CTRL_4BITBUS;
2104 else
2105 ctrl &= ~SDHCI_CTRL_4BITBUS;
2106 }
2107 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
2108}
2109EXPORT_SYMBOL_GPL(sdhci_set_bus_width);
2110
Russell King96d7b782014-04-25 12:59:26 +01002111void sdhci_set_uhs_signaling(struct sdhci_host *host, unsigned timing)
2112{
2113 u16 ctrl_2;
2114
2115 ctrl_2 = sdhci_readw(host, SDHCI_HOST_CONTROL2);
2116 /* Select Bus Speed Mode for host */
2117 ctrl_2 &= ~SDHCI_CTRL_UHS_MASK;
2118 if ((timing == MMC_TIMING_MMC_HS200) ||
2119 (timing == MMC_TIMING_UHS_SDR104))
2120 ctrl_2 |= SDHCI_CTRL_UHS_SDR104;
2121 else if (timing == MMC_TIMING_UHS_SDR12)
2122 ctrl_2 |= SDHCI_CTRL_UHS_SDR12;
Faiz Abbas07bcc412019-11-28 16:34:22 +05302123 else if (timing == MMC_TIMING_UHS_SDR25)
Russell King96d7b782014-04-25 12:59:26 +01002124 ctrl_2 |= SDHCI_CTRL_UHS_SDR25;
2125 else if (timing == MMC_TIMING_UHS_SDR50)
2126 ctrl_2 |= SDHCI_CTRL_UHS_SDR50;
2127 else if ((timing == MMC_TIMING_UHS_DDR50) ||
2128 (timing == MMC_TIMING_MMC_DDR52))
2129 ctrl_2 |= SDHCI_CTRL_UHS_DDR50;
Adrian Huntere9fb05d2014-11-06 15:19:06 +02002130 else if (timing == MMC_TIMING_MMC_HS400)
2131 ctrl_2 |= SDHCI_CTRL_HS400; /* Non-standard */
Russell King96d7b782014-04-25 12:59:26 +01002132 sdhci_writew(host, ctrl_2, SDHCI_HOST_CONTROL2);
2133}
2134EXPORT_SYMBOL_GPL(sdhci_set_uhs_signaling);
2135
Hu Ziji6a6d4ce2017-03-30 17:22:55 +02002136void sdhci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002137{
Dong Aishengded97e02016-04-16 01:29:25 +08002138 struct sdhci_host *host = mmc_priv(mmc);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002139 u8 ctrl;
2140
Adrian Hunter84ec0482016-12-19 15:33:11 +02002141 if (ios->power_mode == MMC_POWER_UNDEFINED)
2142 return;
2143
Adrian Hunterceb61432011-12-27 15:48:41 +02002144 if (host->flags & SDHCI_DEVICE_DEAD) {
Tim Kryger3a48edc2014-06-13 10:13:56 -07002145 if (!IS_ERR(mmc->supply.vmmc) &&
2146 ios->power_mode == MMC_POWER_OFF)
Markus Mayer4e743f12014-07-03 13:27:42 -07002147 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, 0);
Adrian Hunterceb61432011-12-27 15:48:41 +02002148 return;
2149 }
Pierre Ossman1e728592008-04-16 19:13:13 +02002150
Pierre Ossmand129bce2006-03-24 03:18:17 -08002151 /*
2152 * Reset the chip on each power off.
2153 * Should clear out any weird states.
2154 */
2155 if (ios->power_mode == MMC_POWER_OFF) {
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03002156 sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE);
Anton Vorontsov7260cf52009-03-17 00:13:48 +03002157 sdhci_reinit(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002158 }
2159
Kevin Liu52983382013-01-31 11:31:37 +08002160 if (host->version >= SDHCI_SPEC_300 &&
Dong Aisheng372c4632013-10-18 19:48:50 +08002161 (ios->power_mode == MMC_POWER_UP) &&
2162 !(host->quirks2 & SDHCI_QUIRK2_PRESET_VALUE_BROKEN))
Kevin Liu52983382013-01-31 11:31:37 +08002163 sdhci_enable_preset_value(host, false);
2164
Russell King373073e2014-04-25 12:58:45 +01002165 if (!ios->clock || ios->clock != host->clock) {
Russell King17710592014-04-25 12:58:55 +01002166 host->ops->set_clock(host, ios->clock);
Russell King373073e2014-04-25 12:58:45 +01002167 host->clock = ios->clock;
Aisheng Dong03d6f5f2014-08-27 15:26:32 +08002168
2169 if (host->quirks & SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK &&
2170 host->clock) {
2171 host->timeout_clk = host->mmc->actual_clock ?
2172 host->mmc->actual_clock / 1000 :
2173 host->clock / 1000;
2174 host->mmc->max_busy_timeout =
2175 host->ops->get_max_timeout_count ?
2176 host->ops->get_max_timeout_count(host) :
2177 1 << 27;
2178 host->mmc->max_busy_timeout /= host->timeout_clk;
2179 }
Russell King373073e2014-04-25 12:58:45 +01002180 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08002181
Adrian Hunter606d3132016-10-05 12:11:22 +03002182 if (host->ops->set_power)
2183 host->ops->set_power(host, ios->power_mode, ios->vdd);
2184 else
2185 sdhci_set_power(host, ios->power_mode, ios->vdd);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002186
Philip Rakity643a81f2010-09-23 08:24:32 -07002187 if (host->ops->platform_send_init_74_clocks)
2188 host->ops->platform_send_init_74_clocks(host, ios->power_mode);
2189
Russell King2317f562014-04-25 12:57:07 +01002190 host->ops->set_bus_width(host, ios->bus_width);
Philip Rakity15ec4462010-11-19 16:48:39 -05002191
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03002192 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
Pierre Ossmancd9277c2007-02-18 12:07:47 +01002193
yangbo lu501639b2017-08-15 10:16:47 +08002194 if (!(host->quirks & SDHCI_QUIRK_NO_HISPD_BIT)) {
2195 if (ios->timing == MMC_TIMING_SD_HS ||
2196 ios->timing == MMC_TIMING_MMC_HS ||
2197 ios->timing == MMC_TIMING_MMC_HS400 ||
2198 ios->timing == MMC_TIMING_MMC_HS200 ||
2199 ios->timing == MMC_TIMING_MMC_DDR52 ||
2200 ios->timing == MMC_TIMING_UHS_SDR50 ||
2201 ios->timing == MMC_TIMING_UHS_SDR104 ||
2202 ios->timing == MMC_TIMING_UHS_DDR50 ||
2203 ios->timing == MMC_TIMING_UHS_SDR25)
2204 ctrl |= SDHCI_CTRL_HISPD;
2205 else
2206 ctrl &= ~SDHCI_CTRL_HISPD;
2207 }
Pierre Ossmancd9277c2007-02-18 12:07:47 +01002208
Arindam Nathd6d50a12011-05-05 12:18:59 +05302209 if (host->version >= SDHCI_SPEC_300) {
Arindam Nath49c468f2011-05-05 12:19:01 +05302210 u16 clk, ctrl_2;
Arindam Nath49c468f2011-05-05 12:19:01 +05302211
Russell Kingda91a8f2014-04-25 13:00:12 +01002212 if (!host->preset_enabled) {
Arindam Nath758535c2011-05-05 12:19:00 +05302213 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Arindam Nathd6d50a12011-05-05 12:18:59 +05302214 /*
2215 * We only need to set Driver Strength if the
2216 * preset value enable is not set.
2217 */
Russell Kingda91a8f2014-04-25 13:00:12 +01002218 ctrl_2 = sdhci_readw(host, SDHCI_HOST_CONTROL2);
Arindam Nathd6d50a12011-05-05 12:18:59 +05302219 ctrl_2 &= ~SDHCI_CTRL_DRV_TYPE_MASK;
2220 if (ios->drv_type == MMC_SET_DRIVER_TYPE_A)
2221 ctrl_2 |= SDHCI_CTRL_DRV_TYPE_A;
Petri Gynther43e943a2015-05-20 14:35:00 -07002222 else if (ios->drv_type == MMC_SET_DRIVER_TYPE_B)
2223 ctrl_2 |= SDHCI_CTRL_DRV_TYPE_B;
Arindam Nathd6d50a12011-05-05 12:18:59 +05302224 else if (ios->drv_type == MMC_SET_DRIVER_TYPE_C)
2225 ctrl_2 |= SDHCI_CTRL_DRV_TYPE_C;
Petri Gynther43e943a2015-05-20 14:35:00 -07002226 else if (ios->drv_type == MMC_SET_DRIVER_TYPE_D)
2227 ctrl_2 |= SDHCI_CTRL_DRV_TYPE_D;
2228 else {
Marek Vasut2e4456f2015-11-18 10:47:02 +01002229 pr_warn("%s: invalid driver type, default to driver type B\n",
2230 mmc_hostname(mmc));
Petri Gynther43e943a2015-05-20 14:35:00 -07002231 ctrl_2 |= SDHCI_CTRL_DRV_TYPE_B;
2232 }
Arindam Nathd6d50a12011-05-05 12:18:59 +05302233
2234 sdhci_writew(host, ctrl_2, SDHCI_HOST_CONTROL2);
Arindam Nath758535c2011-05-05 12:19:00 +05302235 } else {
2236 /*
2237 * According to SDHC Spec v3.00, if the Preset Value
2238 * Enable in the Host Control 2 register is set, we
2239 * need to reset SD Clock Enable before changing High
2240 * Speed Enable to avoid generating clock gliches.
2241 */
Arindam Nath758535c2011-05-05 12:19:00 +05302242
2243 /* Reset SD Clock Enable */
2244 clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL);
2245 clk &= ~SDHCI_CLOCK_CARD_EN;
2246 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
2247
2248 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
2249
2250 /* Re-enable SD Clock */
Russell King17710592014-04-25 12:58:55 +01002251 host->ops->set_clock(host, host->clock);
Arindam Nathd6d50a12011-05-05 12:18:59 +05302252 }
Arindam Nath49c468f2011-05-05 12:19:01 +05302253
Arindam Nath49c468f2011-05-05 12:19:01 +05302254 /* Reset SD Clock Enable */
2255 clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL);
2256 clk &= ~SDHCI_CLOCK_CARD_EN;
2257 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
2258
Russell King96d7b782014-04-25 12:59:26 +01002259 host->ops->set_uhs_signaling(host, ios->timing);
Russell Kingd975f122014-04-25 12:59:31 +01002260 host->timing = ios->timing;
Arindam Nath49c468f2011-05-05 12:19:01 +05302261
Kevin Liu52983382013-01-31 11:31:37 +08002262 if (!(host->quirks2 & SDHCI_QUIRK2_PRESET_VALUE_BROKEN) &&
2263 ((ios->timing == MMC_TIMING_UHS_SDR12) ||
2264 (ios->timing == MMC_TIMING_UHS_SDR25) ||
2265 (ios->timing == MMC_TIMING_UHS_SDR50) ||
2266 (ios->timing == MMC_TIMING_UHS_SDR104) ||
Jisheng Zhang0dafa602015-08-18 16:21:39 +08002267 (ios->timing == MMC_TIMING_UHS_DDR50) ||
2268 (ios->timing == MMC_TIMING_MMC_DDR52))) {
Kevin Liu52983382013-01-31 11:31:37 +08002269 u16 preset;
2270
2271 sdhci_enable_preset_value(host, true);
2272 preset = sdhci_get_preset_value(host);
Masahiro Yamadafa091012020-03-12 20:00:50 +09002273 ios->drv_type = FIELD_GET(SDHCI_PRESET_DRV_MASK,
2274 preset);
Kevin Liu52983382013-01-31 11:31:37 +08002275 }
2276
Arindam Nath49c468f2011-05-05 12:19:01 +05302277 /* Re-enable SD Clock */
Russell King17710592014-04-25 12:58:55 +01002278 host->ops->set_clock(host, host->clock);
Arindam Nath758535c2011-05-05 12:19:00 +05302279 } else
2280 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Arindam Nathd6d50a12011-05-05 12:18:59 +05302281
Leandro Dorileob8352262007-07-25 23:47:04 +02002282 /*
2283 * Some (ENE) controllers go apeshit on some ios operation,
2284 * signalling timeout and CRC errors even on CMD0. Resetting
2285 * it on each ios seems to solve the problem.
2286 */
Mohammad Jamalc63705e2015-01-13 20:47:24 +05302287 if (host->quirks & SDHCI_QUIRK_RESET_CMD_DATA_ON_IOS)
Russell King03231f92014-04-25 12:57:12 +01002288 sdhci_do_reset(host, SDHCI_RESET_CMD | SDHCI_RESET_DATA);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002289}
Hu Ziji6a6d4ce2017-03-30 17:22:55 +02002290EXPORT_SYMBOL_GPL(sdhci_set_ios);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002291
Dong Aishengded97e02016-04-16 01:29:25 +08002292static int sdhci_get_cd(struct mmc_host *mmc)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002293{
2294 struct sdhci_host *host = mmc_priv(mmc);
Dong Aishengded97e02016-04-16 01:29:25 +08002295 int gpio_cd = mmc_gpio_get_cd(mmc);
Kevin Liu94144a42013-02-28 17:35:53 +08002296
2297 if (host->flags & SDHCI_DEVICE_DEAD)
2298 return 0;
2299
Ivan T. Ivanov88af5652015-07-06 15:16:19 +03002300 /* If nonremovable, assume that the card is always present. */
Jaehoon Chung860951c2016-06-21 10:13:26 +09002301 if (!mmc_card_is_removable(host->mmc))
Kevin Liu94144a42013-02-28 17:35:53 +08002302 return 1;
2303
Ivan T. Ivanov88af5652015-07-06 15:16:19 +03002304 /*
2305 * Try slot gpio detect, if defined it take precedence
2306 * over build in controller functionality
2307 */
Arnd Bergmann287980e2016-05-27 23:23:25 +02002308 if (gpio_cd >= 0)
Kevin Liu94144a42013-02-28 17:35:53 +08002309 return !!gpio_cd;
2310
Ivan T. Ivanov88af5652015-07-06 15:16:19 +03002311 /* If polling, assume that the card is always present. */
2312 if (host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION)
2313 return 1;
2314
Kevin Liu94144a42013-02-28 17:35:53 +08002315 /* Host native card detect */
2316 return !!(sdhci_readl(host, SDHCI_PRESENT_STATE) & SDHCI_CARD_PRESENT);
2317}
2318
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002319static int sdhci_check_ro(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002320{
Pierre Ossmand129bce2006-03-24 03:18:17 -08002321 unsigned long flags;
Wolfram Sang2dfb5792010-10-15 12:21:01 +02002322 int is_readonly;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002323
Pierre Ossmand129bce2006-03-24 03:18:17 -08002324 spin_lock_irqsave(&host->lock, flags);
2325
Pierre Ossman1e728592008-04-16 19:13:13 +02002326 if (host->flags & SDHCI_DEVICE_DEAD)
Wolfram Sang2dfb5792010-10-15 12:21:01 +02002327 is_readonly = 0;
2328 else if (host->ops->get_ro)
2329 is_readonly = host->ops->get_ro(host);
Thomas Petazzoni6d5cd062019-02-12 15:07:35 +01002330 else if (mmc_can_gpio_ro(host->mmc))
2331 is_readonly = mmc_gpio_get_ro(host->mmc);
Pierre Ossman1e728592008-04-16 19:13:13 +02002332 else
Wolfram Sang2dfb5792010-10-15 12:21:01 +02002333 is_readonly = !(sdhci_readl(host, SDHCI_PRESENT_STATE)
2334 & SDHCI_WRITE_PROTECT);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002335
2336 spin_unlock_irqrestore(&host->lock, flags);
2337
Wolfram Sang2dfb5792010-10-15 12:21:01 +02002338 /* This quirk needs to be replaced by a callback-function later */
2339 return host->quirks & SDHCI_QUIRK_INVERTED_WRITE_PROTECT ?
2340 !is_readonly : is_readonly;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002341}
2342
Takashi Iwai82b0e232011-04-21 20:26:38 +02002343#define SAMPLE_COUNT 5
2344
Dong Aishengded97e02016-04-16 01:29:25 +08002345static int sdhci_get_ro(struct mmc_host *mmc)
Takashi Iwai82b0e232011-04-21 20:26:38 +02002346{
Dong Aishengded97e02016-04-16 01:29:25 +08002347 struct sdhci_host *host = mmc_priv(mmc);
Takashi Iwai82b0e232011-04-21 20:26:38 +02002348 int i, ro_count;
2349
Takashi Iwai82b0e232011-04-21 20:26:38 +02002350 if (!(host->quirks & SDHCI_QUIRK_UNSTABLE_RO_DETECT))
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002351 return sdhci_check_ro(host);
Takashi Iwai82b0e232011-04-21 20:26:38 +02002352
2353 ro_count = 0;
2354 for (i = 0; i < SAMPLE_COUNT; i++) {
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002355 if (sdhci_check_ro(host)) {
Takashi Iwai82b0e232011-04-21 20:26:38 +02002356 if (++ro_count > SAMPLE_COUNT / 2)
2357 return 1;
2358 }
2359 msleep(30);
2360 }
2361 return 0;
2362}
2363
Adrian Hunter20758b62011-08-29 16:42:12 +03002364static void sdhci_hw_reset(struct mmc_host *mmc)
2365{
2366 struct sdhci_host *host = mmc_priv(mmc);
2367
2368 if (host->ops && host->ops->hw_reset)
2369 host->ops->hw_reset(host);
2370}
2371
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002372static void sdhci_enable_sdio_irq_nolock(struct sdhci_host *host, int enable)
2373{
Russell Kingbe138552014-04-25 12:55:56 +01002374 if (!(host->flags & SDHCI_DEVICE_DEAD)) {
Russell Kingef104332014-04-25 12:55:41 +01002375 if (enable)
Russell Kingb537f942014-04-25 12:56:01 +01002376 host->ier |= SDHCI_INT_CARD_INT;
Russell Kingef104332014-04-25 12:55:41 +01002377 else
Russell Kingb537f942014-04-25 12:56:01 +01002378 host->ier &= ~SDHCI_INT_CARD_INT;
2379
2380 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
2381 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Russell Kingef104332014-04-25 12:55:41 +01002382 }
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002383}
Pierre Ossmanf75979b2007-09-04 07:59:18 +02002384
Hu Ziji2f05b6ab2017-03-30 17:22:57 +02002385void sdhci_enable_sdio_irq(struct mmc_host *mmc, int enable)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002386{
2387 struct sdhci_host *host = mmc_priv(mmc);
2388 unsigned long flags;
2389
Hans de Goede923713b2017-03-26 13:14:45 +02002390 if (enable)
2391 pm_runtime_get_noresume(host->mmc->parent);
2392
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002393 spin_lock_irqsave(&host->lock, flags);
2394 sdhci_enable_sdio_irq_nolock(host, enable);
Pierre Ossmanf75979b2007-09-04 07:59:18 +02002395 spin_unlock_irqrestore(&host->lock, flags);
Hans de Goede923713b2017-03-26 13:14:45 +02002396
2397 if (!enable)
2398 pm_runtime_put_noidle(host->mmc->parent);
Pierre Ossmanf75979b2007-09-04 07:59:18 +02002399}
Hu Ziji2f05b6ab2017-03-30 17:22:57 +02002400EXPORT_SYMBOL_GPL(sdhci_enable_sdio_irq);
Pierre Ossmanf75979b2007-09-04 07:59:18 +02002401
Adrian Hunter89f3c362019-05-27 14:45:55 +03002402static void sdhci_ack_sdio_irq(struct mmc_host *mmc)
2403{
2404 struct sdhci_host *host = mmc_priv(mmc);
2405 unsigned long flags;
2406
2407 spin_lock_irqsave(&host->lock, flags);
Ulf Hanssona84ad322019-09-08 12:12:34 +02002408 sdhci_enable_sdio_irq_nolock(host, true);
Adrian Hunter89f3c362019-05-27 14:45:55 +03002409 spin_unlock_irqrestore(&host->lock, flags);
2410}
2411
Hu Zijic376ea92017-03-30 17:22:56 +02002412int sdhci_start_signal_voltage_switch(struct mmc_host *mmc,
2413 struct mmc_ios *ios)
Philip Rakity6231f3d2012-07-23 15:56:23 -07002414{
Dong Aishengded97e02016-04-16 01:29:25 +08002415 struct sdhci_host *host = mmc_priv(mmc);
Philip Rakity6231f3d2012-07-23 15:56:23 -07002416 u16 ctrl;
Kevin Liu20b92a32012-12-17 19:29:26 +08002417 int ret;
Philip Rakity6231f3d2012-07-23 15:56:23 -07002418
2419 /*
2420 * Signal Voltage Switching is only applicable for Host Controllers
2421 * v3.00 and above.
2422 */
2423 if (host->version < SDHCI_SPEC_300)
2424 return 0;
2425
Philip Rakity6231f3d2012-07-23 15:56:23 -07002426 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
Kevin Liu20b92a32012-12-17 19:29:26 +08002427
Fabio Estevam21f59982013-02-14 10:35:03 -02002428 switch (ios->signal_voltage) {
Kevin Liu20b92a32012-12-17 19:29:26 +08002429 case MMC_SIGNAL_VOLTAGE_330:
Adrian Hunter8cb851a2016-06-29 16:24:16 +03002430 if (!(host->flags & SDHCI_SIGNALING_330))
2431 return -EINVAL;
Kevin Liu20b92a32012-12-17 19:29:26 +08002432 /* Set 1.8V Signal Enable in the Host Control2 register to 0 */
2433 ctrl &= ~SDHCI_CTRL_VDD_180;
2434 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
2435
Tim Kryger3a48edc2014-06-13 10:13:56 -07002436 if (!IS_ERR(mmc->supply.vqmmc)) {
Dong Aisheng761daa32016-07-12 15:46:10 +08002437 ret = mmc_regulator_set_vqmmc(mmc, ios);
Marek Vasut9cbe0fc2020-04-16 18:36:47 +02002438 if (ret < 0) {
Joe Perches66061102014-09-12 14:56:56 -07002439 pr_warn("%s: Switching to 3.3V signalling voltage failed\n",
2440 mmc_hostname(mmc));
Kevin Liu20b92a32012-12-17 19:29:26 +08002441 return -EIO;
2442 }
2443 }
2444 /* Wait for 5ms */
2445 usleep_range(5000, 5500);
2446
2447 /* 3.3V regulator output should be stable within 5 ms */
2448 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
2449 if (!(ctrl & SDHCI_CTRL_VDD_180))
2450 return 0;
2451
Fabio Estevamb0b19ce2019-11-19 12:55:03 -03002452 pr_warn("%s: 3.3V regulator output did not become stable\n",
Joe Perches66061102014-09-12 14:56:56 -07002453 mmc_hostname(mmc));
Kevin Liu20b92a32012-12-17 19:29:26 +08002454
2455 return -EAGAIN;
2456 case MMC_SIGNAL_VOLTAGE_180:
Adrian Hunter8cb851a2016-06-29 16:24:16 +03002457 if (!(host->flags & SDHCI_SIGNALING_180))
2458 return -EINVAL;
Tim Kryger3a48edc2014-06-13 10:13:56 -07002459 if (!IS_ERR(mmc->supply.vqmmc)) {
Dong Aisheng761daa32016-07-12 15:46:10 +08002460 ret = mmc_regulator_set_vqmmc(mmc, ios);
Marek Vasut9cbe0fc2020-04-16 18:36:47 +02002461 if (ret < 0) {
Joe Perches66061102014-09-12 14:56:56 -07002462 pr_warn("%s: Switching to 1.8V signalling voltage failed\n",
2463 mmc_hostname(mmc));
Kevin Liu20b92a32012-12-17 19:29:26 +08002464 return -EIO;
2465 }
2466 }
2467
2468 /*
2469 * Enable 1.8V Signal Enable in the Host Control2
2470 * register
2471 */
2472 ctrl |= SDHCI_CTRL_VDD_180;
2473 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
2474
Vincent Yang9d967a62015-01-20 16:05:15 +08002475 /* Some controller need to do more when switching */
2476 if (host->ops->voltage_switch)
2477 host->ops->voltage_switch(host);
2478
Kevin Liu20b92a32012-12-17 19:29:26 +08002479 /* 1.8V regulator output should be stable within 5 ms */
2480 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
2481 if (ctrl & SDHCI_CTRL_VDD_180)
2482 return 0;
2483
Fabio Estevamb0b19ce2019-11-19 12:55:03 -03002484 pr_warn("%s: 1.8V regulator output did not become stable\n",
Joe Perches66061102014-09-12 14:56:56 -07002485 mmc_hostname(mmc));
Kevin Liu20b92a32012-12-17 19:29:26 +08002486
2487 return -EAGAIN;
2488 case MMC_SIGNAL_VOLTAGE_120:
Adrian Hunter8cb851a2016-06-29 16:24:16 +03002489 if (!(host->flags & SDHCI_SIGNALING_120))
2490 return -EINVAL;
Tim Kryger3a48edc2014-06-13 10:13:56 -07002491 if (!IS_ERR(mmc->supply.vqmmc)) {
Dong Aisheng761daa32016-07-12 15:46:10 +08002492 ret = mmc_regulator_set_vqmmc(mmc, ios);
Marek Vasut9cbe0fc2020-04-16 18:36:47 +02002493 if (ret < 0) {
Joe Perches66061102014-09-12 14:56:56 -07002494 pr_warn("%s: Switching to 1.2V signalling voltage failed\n",
2495 mmc_hostname(mmc));
Kevin Liu20b92a32012-12-17 19:29:26 +08002496 return -EIO;
2497 }
2498 }
2499 return 0;
2500 default:
Arindam Nathf2119df2011-05-05 12:18:57 +05302501 /* No signal voltage switch required */
2502 return 0;
Kevin Liu20b92a32012-12-17 19:29:26 +08002503 }
Arindam Nathf2119df2011-05-05 12:18:57 +05302504}
Hu Zijic376ea92017-03-30 17:22:56 +02002505EXPORT_SYMBOL_GPL(sdhci_start_signal_voltage_switch);
Arindam Nathf2119df2011-05-05 12:18:57 +05302506
Kevin Liu20b92a32012-12-17 19:29:26 +08002507static int sdhci_card_busy(struct mmc_host *mmc)
2508{
2509 struct sdhci_host *host = mmc_priv(mmc);
2510 u32 present_state;
2511
Adrian Huntere613cc42016-06-23 14:00:58 +03002512 /* Check whether DAT[0] is 0 */
Kevin Liu20b92a32012-12-17 19:29:26 +08002513 present_state = sdhci_readl(host, SDHCI_PRESENT_STATE);
Kevin Liu20b92a32012-12-17 19:29:26 +08002514
Adrian Huntere613cc42016-06-23 14:00:58 +03002515 return !(present_state & SDHCI_DATA_0_LVL_MASK);
Kevin Liu20b92a32012-12-17 19:29:26 +08002516}
2517
Adrian Hunterb5540ce2014-12-05 19:25:31 +02002518static int sdhci_prepare_hs400_tuning(struct mmc_host *mmc, struct mmc_ios *ios)
2519{
2520 struct sdhci_host *host = mmc_priv(mmc);
2521 unsigned long flags;
2522
2523 spin_lock_irqsave(&host->lock, flags);
2524 host->flags |= SDHCI_HS400_TUNING;
2525 spin_unlock_irqrestore(&host->lock, flags);
2526
2527 return 0;
2528}
2529
ernest.zhang6663c412018-07-16 14:26:53 +08002530void sdhci_start_tuning(struct sdhci_host *host)
Adrian Hunterda4bc4f2016-12-02 15:59:23 +02002531{
2532 u16 ctrl;
2533
2534 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
2535 ctrl |= SDHCI_CTRL_EXEC_TUNING;
2536 if (host->quirks2 & SDHCI_QUIRK2_TUNING_WORK_AROUND)
2537 ctrl |= SDHCI_CTRL_TUNED_CLK;
2538 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
2539
2540 /*
2541 * As per the Host Controller spec v3.00, tuning command
2542 * generates Buffer Read Ready interrupt, so enable that.
2543 *
2544 * Note: The spec clearly says that when tuning sequence
2545 * is being performed, the controller does not generate
2546 * interrupts other than Buffer Read Ready interrupt. But
2547 * to make sure we don't hit a controller bug, we _only_
2548 * enable Buffer Read Ready interrupt here.
2549 */
2550 sdhci_writel(host, SDHCI_INT_DATA_AVAIL, SDHCI_INT_ENABLE);
2551 sdhci_writel(host, SDHCI_INT_DATA_AVAIL, SDHCI_SIGNAL_ENABLE);
2552}
ernest.zhang6663c412018-07-16 14:26:53 +08002553EXPORT_SYMBOL_GPL(sdhci_start_tuning);
Adrian Hunterda4bc4f2016-12-02 15:59:23 +02002554
ernest.zhang6663c412018-07-16 14:26:53 +08002555void sdhci_end_tuning(struct sdhci_host *host)
Adrian Hunterda4bc4f2016-12-02 15:59:23 +02002556{
2557 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
2558 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
2559}
ernest.zhang6663c412018-07-16 14:26:53 +08002560EXPORT_SYMBOL_GPL(sdhci_end_tuning);
Adrian Hunterda4bc4f2016-12-02 15:59:23 +02002561
ernest.zhang6663c412018-07-16 14:26:53 +08002562void sdhci_reset_tuning(struct sdhci_host *host)
Adrian Hunterda4bc4f2016-12-02 15:59:23 +02002563{
2564 u16 ctrl;
2565
2566 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
2567 ctrl &= ~SDHCI_CTRL_TUNED_CLK;
2568 ctrl &= ~SDHCI_CTRL_EXEC_TUNING;
2569 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
2570}
ernest.zhang6663c412018-07-16 14:26:53 +08002571EXPORT_SYMBOL_GPL(sdhci_reset_tuning);
Adrian Hunterda4bc4f2016-12-02 15:59:23 +02002572
Ben Chuang73537882019-08-27 08:33:22 +08002573void sdhci_abort_tuning(struct sdhci_host *host, u32 opcode)
Adrian Hunterda4bc4f2016-12-02 15:59:23 +02002574{
2575 sdhci_reset_tuning(host);
2576
2577 sdhci_do_reset(host, SDHCI_RESET_CMD);
2578 sdhci_do_reset(host, SDHCI_RESET_DATA);
2579
2580 sdhci_end_tuning(host);
2581
Adrian Hunterda4bc4f2016-12-02 15:59:23 +02002582 mmc_abort_tuning(host->mmc, opcode);
Adrian Hunterda4bc4f2016-12-02 15:59:23 +02002583}
Ben Chuang73537882019-08-27 08:33:22 +08002584EXPORT_SYMBOL_GPL(sdhci_abort_tuning);
Adrian Hunterda4bc4f2016-12-02 15:59:23 +02002585
2586/*
2587 * We use sdhci_send_tuning() because mmc_send_tuning() is not a good fit. SDHCI
2588 * tuning command does not have a data payload (or rather the hardware does it
2589 * automatically) so mmc_send_tuning() will return -EIO. Also the tuning command
2590 * interrupt setup is different to other commands and there is no timeout
2591 * interrupt so special handling is needed.
2592 */
ernest.zhang6663c412018-07-16 14:26:53 +08002593void sdhci_send_tuning(struct sdhci_host *host, u32 opcode)
Adrian Hunterda4bc4f2016-12-02 15:59:23 +02002594{
2595 struct mmc_host *mmc = host->mmc;
Masahiro Yamadac7836d12016-12-19 20:51:18 +09002596 struct mmc_command cmd = {};
2597 struct mmc_request mrq = {};
Adrian Hunter2a85ef22017-03-20 19:50:38 +02002598 unsigned long flags;
Srinivas Kandagatlac846a002017-08-03 14:46:13 +02002599 u32 b = host->sdma_boundary;
Adrian Hunter2a85ef22017-03-20 19:50:38 +02002600
2601 spin_lock_irqsave(&host->lock, flags);
Adrian Hunterda4bc4f2016-12-02 15:59:23 +02002602
2603 cmd.opcode = opcode;
2604 cmd.flags = MMC_RSP_R1 | MMC_CMD_ADTC;
2605 cmd.mrq = &mrq;
2606
2607 mrq.cmd = &cmd;
2608 /*
2609 * In response to CMD19, the card sends 64 bytes of tuning
2610 * block to the Host Controller. So we set the block size
2611 * to 64 here.
2612 */
Adrian Hunter85336102016-12-02 15:14:26 +02002613 if (cmd.opcode == MMC_SEND_TUNING_BLOCK_HS200 &&
2614 mmc->ios.bus_width == MMC_BUS_WIDTH_8)
Srinivas Kandagatlac846a002017-08-03 14:46:13 +02002615 sdhci_writew(host, SDHCI_MAKE_BLKSZ(b, 128), SDHCI_BLOCK_SIZE);
Adrian Hunter85336102016-12-02 15:14:26 +02002616 else
Srinivas Kandagatlac846a002017-08-03 14:46:13 +02002617 sdhci_writew(host, SDHCI_MAKE_BLKSZ(b, 64), SDHCI_BLOCK_SIZE);
Adrian Hunterda4bc4f2016-12-02 15:59:23 +02002618
2619 /*
2620 * The tuning block is sent by the card to the host controller.
2621 * So we set the TRNS_READ bit in the Transfer Mode register.
2622 * This also takes care of setting DMA Enable and Multi Block
2623 * Select in the same register to 0.
2624 */
2625 sdhci_writew(host, SDHCI_TRNS_READ, SDHCI_TRANSFER_MODE);
2626
2627 sdhci_send_command(host, &cmd);
2628
2629 host->cmd = NULL;
2630
2631 sdhci_del_timer(host, &mrq);
2632
2633 host->tuning_done = 0;
2634
2635 spin_unlock_irqrestore(&host->lock, flags);
2636
2637 /* Wait for Buffer Read Ready interrupt */
2638 wait_event_timeout(host->buf_ready_int, (host->tuning_done == 1),
2639 msecs_to_jiffies(50));
2640
Adrian Hunterda4bc4f2016-12-02 15:59:23 +02002641}
ernest.zhang6663c412018-07-16 14:26:53 +08002642EXPORT_SYMBOL_GPL(sdhci_send_tuning);
Adrian Hunterda4bc4f2016-12-02 15:59:23 +02002643
Yinbo Zhu7d8bb1f2018-08-23 16:48:31 +08002644static int __sdhci_execute_tuning(struct sdhci_host *host, u32 opcode)
Adrian Hunter6b11e702016-12-02 15:14:27 +02002645{
2646 int i;
2647
2648 /*
2649 * Issue opcode repeatedly till Execute Tuning is set to 0 or the number
Sowjanya Komatineni1d8cd0652019-03-23 21:45:19 -07002650 * of loops reaches tuning loop count.
Adrian Hunter6b11e702016-12-02 15:14:27 +02002651 */
Sowjanya Komatineni1d8cd0652019-03-23 21:45:19 -07002652 for (i = 0; i < host->tuning_loop_count; i++) {
Adrian Hunter6b11e702016-12-02 15:14:27 +02002653 u16 ctrl;
2654
Adrian Hunter2a85ef22017-03-20 19:50:38 +02002655 sdhci_send_tuning(host, opcode);
Adrian Hunter6b11e702016-12-02 15:14:27 +02002656
2657 if (!host->tuning_done) {
Faiz Abbas811ba672019-12-06 17:13:26 +05302658 pr_debug("%s: Tuning timeout, falling back to fixed sampling clock\n",
2659 mmc_hostname(host->mmc));
Adrian Hunter2a85ef22017-03-20 19:50:38 +02002660 sdhci_abort_tuning(host, opcode);
Yinbo Zhu7d8bb1f2018-08-23 16:48:31 +08002661 return -ETIMEDOUT;
Adrian Hunter6b11e702016-12-02 15:14:27 +02002662 }
2663
BOUGH CHEN2b06e152018-12-28 08:35:49 +00002664 /* Spec does not require a delay between tuning cycles */
2665 if (host->tuning_delay > 0)
2666 mdelay(host->tuning_delay);
2667
Adrian Hunter6b11e702016-12-02 15:14:27 +02002668 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
2669 if (!(ctrl & SDHCI_CTRL_EXEC_TUNING)) {
2670 if (ctrl & SDHCI_CTRL_TUNED_CLK)
Yinbo Zhu7d8bb1f2018-08-23 16:48:31 +08002671 return 0; /* Success! */
Adrian Hunter6b11e702016-12-02 15:14:27 +02002672 break;
2673 }
2674
Adrian Hunter6b11e702016-12-02 15:14:27 +02002675 }
2676
2677 pr_info("%s: Tuning failed, falling back to fixed sampling clock\n",
2678 mmc_hostname(host->mmc));
2679 sdhci_reset_tuning(host);
Yinbo Zhu7d8bb1f2018-08-23 16:48:31 +08002680 return -EAGAIN;
Adrian Hunter6b11e702016-12-02 15:14:27 +02002681}
2682
Masahiro Yamada85a882c2016-12-08 21:50:54 +09002683int sdhci_execute_tuning(struct mmc_host *mmc, u32 opcode)
Arindam Nathb513ea22011-05-05 12:19:04 +05302684{
Russell King4b6f37d2014-04-25 12:59:36 +01002685 struct sdhci_host *host = mmc_priv(mmc);
Arindam Nathb513ea22011-05-05 12:19:04 +05302686 int err = 0;
Adrian Hunter38e40bf2014-12-05 19:25:30 +02002687 unsigned int tuning_count = 0;
Adrian Hunterb5540ce2014-12-05 19:25:31 +02002688 bool hs400_tuning;
Arindam Nathb513ea22011-05-05 12:19:04 +05302689
Adrian Hunterb5540ce2014-12-05 19:25:31 +02002690 hs400_tuning = host->flags & SDHCI_HS400_TUNING;
Adrian Hunterb5540ce2014-12-05 19:25:31 +02002691
Adrian Hunter38e40bf2014-12-05 19:25:30 +02002692 if (host->tuning_mode == SDHCI_TUNING_MODE_1)
2693 tuning_count = host->tuning_count;
2694
Arindam Nathb513ea22011-05-05 12:19:04 +05302695 /*
Weijun Yang9faac7b2015-10-04 12:04:12 +00002696 * The Host Controller needs tuning in case of SDR104 and DDR50
2697 * mode, and for SDR50 mode when Use Tuning for SDR50 is set in
2698 * the Capabilities register.
Girish K S069c9f12012-01-06 09:56:39 +05302699 * If the Host Controller supports the HS200 mode then the
2700 * tuning function has to be executed.
Arindam Nathb513ea22011-05-05 12:19:04 +05302701 */
Russell King4b6f37d2014-04-25 12:59:36 +01002702 switch (host->timing) {
Adrian Hunterb5540ce2014-12-05 19:25:31 +02002703 /* HS400 tuning is done in HS200 mode */
Adrian Huntere9fb05d2014-11-06 15:19:06 +02002704 case MMC_TIMING_MMC_HS400:
Adrian Hunterb5540ce2014-12-05 19:25:31 +02002705 err = -EINVAL;
Adrian Hunter2a85ef22017-03-20 19:50:38 +02002706 goto out;
Adrian Hunterb5540ce2014-12-05 19:25:31 +02002707
Russell King4b6f37d2014-04-25 12:59:36 +01002708 case MMC_TIMING_MMC_HS200:
Adrian Hunterb5540ce2014-12-05 19:25:31 +02002709 /*
2710 * Periodic re-tuning for HS400 is not expected to be needed, so
2711 * disable it here.
2712 */
2713 if (hs400_tuning)
2714 tuning_count = 0;
2715 break;
2716
Russell King4b6f37d2014-04-25 12:59:36 +01002717 case MMC_TIMING_UHS_SDR104:
Weijun Yang9faac7b2015-10-04 12:04:12 +00002718 case MMC_TIMING_UHS_DDR50:
Russell King4b6f37d2014-04-25 12:59:36 +01002719 break;
Girish K S069c9f12012-01-06 09:56:39 +05302720
Russell King4b6f37d2014-04-25 12:59:36 +01002721 case MMC_TIMING_UHS_SDR50:
Adrian Hunter4228b212016-04-20 09:24:03 +03002722 if (host->flags & SDHCI_SDR50_NEEDS_TUNING)
Russell King4b6f37d2014-04-25 12:59:36 +01002723 break;
2724 /* FALLTHROUGH */
2725
2726 default:
Adrian Hunter2a85ef22017-03-20 19:50:38 +02002727 goto out;
Arindam Nathb513ea22011-05-05 12:19:04 +05302728 }
2729
Dong Aisheng45251812013-09-13 19:11:30 +08002730 if (host->ops->platform_execute_tuning) {
Ritesh Harjani8a8fa872017-01-10 12:30:50 +05302731 err = host->ops->platform_execute_tuning(host, opcode);
Adrian Hunter2a85ef22017-03-20 19:50:38 +02002732 goto out;
Dong Aisheng45251812013-09-13 19:11:30 +08002733 }
2734
Adrian Hunter6b11e702016-12-02 15:14:27 +02002735 host->mmc->retune_period = tuning_count;
2736
Adrian Hunter83b600b2017-04-20 16:14:43 +08002737 if (host->tuning_delay < 0)
2738 host->tuning_delay = opcode == MMC_SEND_TUNING_BLOCK;
2739
Adrian Hunterda4bc4f2016-12-02 15:59:23 +02002740 sdhci_start_tuning(host);
Arindam Nathb513ea22011-05-05 12:19:04 +05302741
Yinbo Zhu7d8bb1f2018-08-23 16:48:31 +08002742 host->tuning_err = __sdhci_execute_tuning(host, opcode);
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05302743
Adrian Hunterda4bc4f2016-12-02 15:59:23 +02002744 sdhci_end_tuning(host);
Adrian Hunter2a85ef22017-03-20 19:50:38 +02002745out:
Ritesh Harjani8a8fa872017-01-10 12:30:50 +05302746 host->flags &= ~SDHCI_HS400_TUNING;
Adrian Hunter6b11e702016-12-02 15:14:27 +02002747
Arindam Nathb513ea22011-05-05 12:19:04 +05302748 return err;
2749}
Masahiro Yamada85a882c2016-12-08 21:50:54 +09002750EXPORT_SYMBOL_GPL(sdhci_execute_tuning);
Arindam Nathb513ea22011-05-05 12:19:04 +05302751
Kevin Liu52983382013-01-31 11:31:37 +08002752static void sdhci_enable_preset_value(struct sdhci_host *host, bool enable)
Arindam Nath4d55c5a2011-05-05 12:19:05 +05302753{
Arindam Nath4d55c5a2011-05-05 12:19:05 +05302754 /* Host Controller v3.00 defines preset value registers */
2755 if (host->version < SDHCI_SPEC_300)
2756 return;
2757
Arindam Nath4d55c5a2011-05-05 12:19:05 +05302758 /*
2759 * We only enable or disable Preset Value if they are not already
2760 * enabled or disabled respectively. Otherwise, we bail out.
2761 */
Russell Kingda91a8f2014-04-25 13:00:12 +01002762 if (host->preset_enabled != enable) {
2763 u16 ctrl = sdhci_readw(host, SDHCI_HOST_CONTROL2);
2764
2765 if (enable)
2766 ctrl |= SDHCI_CTRL_PRESET_VAL_ENABLE;
2767 else
2768 ctrl &= ~SDHCI_CTRL_PRESET_VAL_ENABLE;
2769
Arindam Nath4d55c5a2011-05-05 12:19:05 +05302770 sdhci_writew(host, ctrl, SDHCI_HOST_CONTROL2);
Russell Kingda91a8f2014-04-25 13:00:12 +01002771
2772 if (enable)
2773 host->flags |= SDHCI_PV_ENABLED;
2774 else
2775 host->flags &= ~SDHCI_PV_ENABLED;
2776
2777 host->preset_enabled = enable;
Arindam Nath4d55c5a2011-05-05 12:19:05 +05302778 }
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002779}
2780
Haibo Chen348487c2014-12-09 17:04:05 +08002781static void sdhci_post_req(struct mmc_host *mmc, struct mmc_request *mrq,
2782 int err)
2783{
2784 struct sdhci_host *host = mmc_priv(mmc);
2785 struct mmc_data *data = mrq->data;
2786
Russell Kingf48f0392016-01-26 13:40:32 +00002787 if (data->host_cookie != COOKIE_UNMAPPED)
Russell King771a3dc2016-01-26 13:40:53 +00002788 dma_unmap_sg(mmc_dev(host->mmc), data->sg, data->sg_len,
Heiner Kallweitfeeef092017-03-26 20:45:56 +02002789 mmc_get_dma_dir(data));
Russell King771a3dc2016-01-26 13:40:53 +00002790
2791 data->host_cookie = COOKIE_UNMAPPED;
Haibo Chen348487c2014-12-09 17:04:05 +08002792}
2793
Linus Walleijd3c6aac2016-11-23 11:02:24 +01002794static void sdhci_pre_req(struct mmc_host *mmc, struct mmc_request *mrq)
Haibo Chen348487c2014-12-09 17:04:05 +08002795{
2796 struct sdhci_host *host = mmc_priv(mmc);
2797
Haibo Chend31911b2015-08-25 10:02:11 +08002798 mrq->data->host_cookie = COOKIE_UNMAPPED;
Haibo Chen348487c2014-12-09 17:04:05 +08002799
Linus Walleijbd9b9022018-01-29 00:44:53 +01002800 /*
2801 * No pre-mapping in the pre hook if we're using the bounce buffer,
2802 * for that we would need two bounce buffers since one buffer is
2803 * in flight when this is getting called.
2804 */
2805 if (host->flags & SDHCI_REQ_USE_DMA && !host->bounce_buffer)
Russell King94538e52016-01-26 13:40:37 +00002806 sdhci_pre_dma_transfer(host, mrq->data, COOKIE_PRE_MAPPED);
Haibo Chen348487c2014-12-09 17:04:05 +08002807}
2808
Adrian Hunter5d0d11c2016-06-29 16:24:31 +03002809static void sdhci_error_out_mrqs(struct sdhci_host *host, int err)
2810{
2811 if (host->data_cmd) {
2812 host->data_cmd->error = err;
2813 sdhci_finish_mrq(host, host->data_cmd->mrq);
2814 }
2815
2816 if (host->cmd) {
2817 host->cmd->error = err;
2818 sdhci_finish_mrq(host, host->cmd->mrq);
2819 }
2820}
2821
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002822static void sdhci_card_event(struct mmc_host *mmc)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002823{
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002824 struct sdhci_host *host = mmc_priv(mmc);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002825 unsigned long flags;
Krzysztof Kozlowski28367662015-01-05 10:50:15 +01002826 int present;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002827
Christian Daudt722e1282013-06-20 14:26:36 -07002828 /* First check if client has provided their own card event */
2829 if (host->ops->card_event)
2830 host->ops->card_event(host);
2831
Adrian Hunterd3940f22016-06-29 16:24:14 +03002832 present = mmc->ops->get_cd(mmc);
Krzysztof Kozlowski28367662015-01-05 10:50:15 +01002833
Pierre Ossmand129bce2006-03-24 03:18:17 -08002834 spin_lock_irqsave(&host->lock, flags);
2835
Adrian Hunter5d0d11c2016-06-29 16:24:31 +03002836 /* Check sdhci_has_requests() first in case we are runtime suspended */
2837 if (sdhci_has_requests(host) && !present) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05302838 pr_err("%s: Card removed during transfer!\n",
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002839 mmc_hostname(host->mmc));
Girish K Sa3c76eb2011-10-11 11:44:09 +05302840 pr_err("%s: Resetting controller.\n",
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002841 mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -08002842
Russell King03231f92014-04-25 12:57:12 +01002843 sdhci_do_reset(host, SDHCI_RESET_CMD);
2844 sdhci_do_reset(host, SDHCI_RESET_DATA);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002845
Adrian Hunter5d0d11c2016-06-29 16:24:31 +03002846 sdhci_error_out_mrqs(host, -ENOMEDIUM);
Pierre Ossmand129bce2006-03-24 03:18:17 -08002847 }
2848
2849 spin_unlock_irqrestore(&host->lock, flags);
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002850}
2851
2852static const struct mmc_host_ops sdhci_ops = {
2853 .request = sdhci_request,
Haibo Chen348487c2014-12-09 17:04:05 +08002854 .post_req = sdhci_post_req,
2855 .pre_req = sdhci_pre_req,
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002856 .set_ios = sdhci_set_ios,
Kevin Liu94144a42013-02-28 17:35:53 +08002857 .get_cd = sdhci_get_cd,
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002858 .get_ro = sdhci_get_ro,
2859 .hw_reset = sdhci_hw_reset,
2860 .enable_sdio_irq = sdhci_enable_sdio_irq,
Adrian Hunter89f3c362019-05-27 14:45:55 +03002861 .ack_sdio_irq = sdhci_ack_sdio_irq,
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002862 .start_signal_voltage_switch = sdhci_start_signal_voltage_switch,
Adrian Hunterb5540ce2014-12-05 19:25:31 +02002863 .prepare_hs400_tuning = sdhci_prepare_hs400_tuning,
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002864 .execute_tuning = sdhci_execute_tuning,
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002865 .card_event = sdhci_card_event,
Kevin Liu20b92a32012-12-17 19:29:26 +08002866 .card_busy = sdhci_card_busy,
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002867};
2868
2869/*****************************************************************************\
2870 * *
Adrian Hunterc07a48c2019-04-05 15:40:20 +03002871 * Request done *
Guennadi Liakhovetski71e69212012-12-04 16:51:40 +01002872 * *
2873\*****************************************************************************/
2874
Adrian Hunter4e9f8fe2016-06-29 16:24:34 +03002875static bool sdhci_request_done(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -08002876{
Pierre Ossmand129bce2006-03-24 03:18:17 -08002877 unsigned long flags;
2878 struct mmc_request *mrq;
Adrian Hunter4e9f8fe2016-06-29 16:24:34 +03002879 int i;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002880
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002881 spin_lock_irqsave(&host->lock, flags);
2882
Adrian Hunter4e9f8fe2016-06-29 16:24:34 +03002883 for (i = 0; i < SDHCI_MAX_MRQS; i++) {
2884 mrq = host->mrqs_done[i];
Adrian Hunter6ebebea2016-11-02 15:49:08 +02002885 if (mrq)
Adrian Hunter4e9f8fe2016-06-29 16:24:34 +03002886 break;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03002887 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08002888
Adrian Hunter4e9f8fe2016-06-29 16:24:34 +03002889 if (!mrq) {
2890 spin_unlock_irqrestore(&host->lock, flags);
2891 return true;
2892 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08002893
Pierre Ossmand129bce2006-03-24 03:18:17 -08002894 /*
Russell King054cedf2016-01-26 13:40:42 +00002895 * Always unmap the data buffers if they were mapped by
2896 * sdhci_prepare_data() whenever we finish with a request.
2897 * This avoids leaking DMA mappings on error.
2898 */
2899 if (host->flags & SDHCI_REQ_USE_DMA) {
2900 struct mmc_data *data = mrq->data;
2901
Chunyan Zhang18e762e2020-01-16 16:21:47 +05302902 if (host->use_external_dma && data &&
2903 (mrq->cmd->error || data->error)) {
2904 struct dma_chan *chan = sdhci_external_dma_channel(host, data);
2905
2906 host->mrqs_done[i] = NULL;
2907 spin_unlock_irqrestore(&host->lock, flags);
2908 dmaengine_terminate_sync(chan);
2909 spin_lock_irqsave(&host->lock, flags);
2910 sdhci_set_mrq_done(host, mrq);
2911 }
2912
Russell King054cedf2016-01-26 13:40:42 +00002913 if (data && data->host_cookie == COOKIE_MAPPED) {
Linus Walleijbd9b9022018-01-29 00:44:53 +01002914 if (host->bounce_buffer) {
2915 /*
2916 * On reads, copy the bounced data into the
2917 * sglist
2918 */
2919 if (mmc_get_dma_dir(data) == DMA_FROM_DEVICE) {
2920 unsigned int length = data->bytes_xfered;
2921
2922 if (length > host->bounce_buffer_size) {
2923 pr_err("%s: bounce buffer is %u bytes but DMA claims to have transferred %u bytes\n",
2924 mmc_hostname(host->mmc),
2925 host->bounce_buffer_size,
2926 data->bytes_xfered);
2927 /* Cap it down and continue */
2928 length = host->bounce_buffer_size;
2929 }
2930 dma_sync_single_for_cpu(
2931 host->mmc->parent,
2932 host->bounce_addr,
2933 host->bounce_buffer_size,
2934 DMA_FROM_DEVICE);
2935 sg_copy_from_buffer(data->sg,
2936 data->sg_len,
2937 host->bounce_buffer,
2938 length);
2939 } else {
2940 /* No copying, just switch ownership */
2941 dma_sync_single_for_cpu(
2942 host->mmc->parent,
2943 host->bounce_addr,
2944 host->bounce_buffer_size,
2945 mmc_get_dma_dir(data));
2946 }
2947 } else {
2948 /* Unmap the raw data */
2949 dma_unmap_sg(mmc_dev(host->mmc), data->sg,
2950 data->sg_len,
2951 mmc_get_dma_dir(data));
2952 }
Russell King054cedf2016-01-26 13:40:42 +00002953 data->host_cookie = COOKIE_UNMAPPED;
2954 }
2955 }
2956
2957 /*
Pierre Ossmand129bce2006-03-24 03:18:17 -08002958 * The controller needs a reset of internal state machines
2959 * upon error conditions.
2960 */
Adrian Hunter0cc563c2016-06-29 16:24:28 +03002961 if (sdhci_needs_reset(host, mrq)) {
Adrian Hunter6ebebea2016-11-02 15:49:08 +02002962 /*
2963 * Do not finish until command and data lines are available for
2964 * reset. Note there can only be one other mrq, so it cannot
2965 * also be in mrqs_done, otherwise host->cmd and host->data_cmd
2966 * would both be null.
2967 */
2968 if (host->cmd || host->data_cmd) {
2969 spin_unlock_irqrestore(&host->lock, flags);
2970 return true;
2971 }
2972
Pierre Ossman645289d2006-06-30 02:22:33 -07002973 /* Some controllers need this kick or reset won't work here */
Andy Shevchenko8213af32013-01-07 16:31:08 +02002974 if (host->quirks & SDHCI_QUIRK_CLOCK_BEFORE_RESET)
Pierre Ossman645289d2006-06-30 02:22:33 -07002975 /* This is to force an update */
Russell King17710592014-04-25 12:58:55 +01002976 host->ops->set_clock(host, host->clock);
Pierre Ossman645289d2006-06-30 02:22:33 -07002977
2978 /* Spec says we should do both at the same time, but Ricoh
2979 controllers do not like that. */
Adrian Hunter6ebebea2016-11-02 15:49:08 +02002980 sdhci_do_reset(host, SDHCI_RESET_CMD);
2981 sdhci_do_reset(host, SDHCI_RESET_DATA);
Adrian Huntered1563d2016-06-29 16:24:29 +03002982
2983 host->pending_reset = false;
Pierre Ossmand129bce2006-03-24 03:18:17 -08002984 }
2985
Adrian Hunter6ebebea2016-11-02 15:49:08 +02002986 host->mrqs_done[i] = NULL;
2987
Pierre Ossmand129bce2006-03-24 03:18:17 -08002988 spin_unlock_irqrestore(&host->lock, flags);
2989
Baolin Wang1774b002020-02-12 12:12:58 +08002990 if (host->ops->request_done)
2991 host->ops->request_done(host, mrq);
2992 else
2993 mmc_request_done(host->mmc, mrq);
Adrian Hunter4e9f8fe2016-06-29 16:24:34 +03002994
2995 return false;
2996}
2997
Adrian Hunterc07a48c2019-04-05 15:40:20 +03002998static void sdhci_complete_work(struct work_struct *work)
Adrian Hunter4e9f8fe2016-06-29 16:24:34 +03002999{
Adrian Hunterc07a48c2019-04-05 15:40:20 +03003000 struct sdhci_host *host = container_of(work, struct sdhci_host,
3001 complete_work);
Adrian Hunter4e9f8fe2016-06-29 16:24:34 +03003002
3003 while (!sdhci_request_done(host))
3004 ;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003005}
3006
Kees Cook2ee4f622017-10-24 08:03:45 -07003007static void sdhci_timeout_timer(struct timer_list *t)
Pierre Ossmand129bce2006-03-24 03:18:17 -08003008{
3009 struct sdhci_host *host;
3010 unsigned long flags;
3011
Kees Cook2ee4f622017-10-24 08:03:45 -07003012 host = from_timer(host, t, timer);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003013
3014 spin_lock_irqsave(&host->lock, flags);
3015
Adrian Hunterd7422fb2016-06-29 16:24:33 +03003016 if (host->cmd && !sdhci_data_line_cmd(host->cmd)) {
3017 pr_err("%s: Timeout waiting for hardware cmd interrupt.\n",
3018 mmc_hostname(host->mmc));
3019 sdhci_dumpregs(host);
3020
3021 host->cmd->error = -ETIMEDOUT;
3022 sdhci_finish_mrq(host, host->cmd->mrq);
3023 }
3024
Adrian Hunterd7422fb2016-06-29 16:24:33 +03003025 spin_unlock_irqrestore(&host->lock, flags);
3026}
3027
Kees Cook2ee4f622017-10-24 08:03:45 -07003028static void sdhci_timeout_data_timer(struct timer_list *t)
Adrian Hunterd7422fb2016-06-29 16:24:33 +03003029{
3030 struct sdhci_host *host;
3031 unsigned long flags;
3032
Kees Cook2ee4f622017-10-24 08:03:45 -07003033 host = from_timer(host, t, data_timer);
Adrian Hunterd7422fb2016-06-29 16:24:33 +03003034
3035 spin_lock_irqsave(&host->lock, flags);
3036
3037 if (host->data || host->data_cmd ||
3038 (host->cmd && sdhci_data_line_cmd(host->cmd))) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01003039 pr_err("%s: Timeout waiting for hardware interrupt.\n",
3040 mmc_hostname(host->mmc));
Pierre Ossmand129bce2006-03-24 03:18:17 -08003041 sdhci_dumpregs(host);
3042
3043 if (host->data) {
Pierre Ossman17b04292007-07-22 22:18:46 +02003044 host->data->error = -ETIMEDOUT;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003045 sdhci_finish_data(host);
Adrian Hunterc07a48c2019-04-05 15:40:20 +03003046 queue_work(host->complete_wq, &host->complete_work);
Adrian Hunterd7422fb2016-06-29 16:24:33 +03003047 } else if (host->data_cmd) {
3048 host->data_cmd->error = -ETIMEDOUT;
3049 sdhci_finish_mrq(host, host->data_cmd->mrq);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003050 } else {
Adrian Hunterd7422fb2016-06-29 16:24:33 +03003051 host->cmd->error = -ETIMEDOUT;
3052 sdhci_finish_mrq(host, host->cmd->mrq);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003053 }
3054 }
3055
3056 spin_unlock_irqrestore(&host->lock, flags);
3057}
3058
3059/*****************************************************************************\
3060 * *
3061 * Interrupt handling *
3062 * *
3063\*****************************************************************************/
3064
Adrian Hunter4bf78092018-11-15 15:53:41 +02003065static void sdhci_cmd_irq(struct sdhci_host *host, u32 intmask, u32 *intmask_p)
Pierre Ossmand129bce2006-03-24 03:18:17 -08003066{
Adrian Hunteraf849c82018-11-15 15:53:43 +02003067 /* Handle auto-CMD12 error */
3068 if (intmask & SDHCI_INT_AUTO_CMD_ERR && host->data_cmd) {
3069 struct mmc_request *mrq = host->data_cmd->mrq;
3070 u16 auto_cmd_status = sdhci_readw(host, SDHCI_AUTO_CMD_STATUS);
3071 int data_err_bit = (auto_cmd_status & SDHCI_AUTO_CMD_TIMEOUT) ?
3072 SDHCI_INT_DATA_TIMEOUT :
3073 SDHCI_INT_DATA_CRC;
3074
3075 /* Treat auto-CMD12 error the same as data error */
3076 if (!mrq->sbc && (host->flags & SDHCI_AUTO_CMD12)) {
3077 *intmask_p |= data_err_bit;
3078 return;
3079 }
3080 }
3081
Pierre Ossmand129bce2006-03-24 03:18:17 -08003082 if (!host->cmd) {
Adrian Huntered1563d2016-06-29 16:24:29 +03003083 /*
3084 * SDHCI recovers from errors by resetting the cmd and data
3085 * circuits. Until that is done, there very well might be more
3086 * interrupts, so ignore them in that case.
3087 */
3088 if (host->pending_reset)
3089 return;
Marek Vasut2e4456f2015-11-18 10:47:02 +01003090 pr_err("%s: Got command interrupt 0x%08x even though no command operation was in progress.\n",
3091 mmc_hostname(host->mmc), (unsigned)intmask);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003092 sdhci_dumpregs(host);
3093 return;
3094 }
3095
Russell Kingec014cb2016-01-26 13:39:39 +00003096 if (intmask & (SDHCI_INT_TIMEOUT | SDHCI_INT_CRC |
3097 SDHCI_INT_END_BIT | SDHCI_INT_INDEX)) {
3098 if (intmask & SDHCI_INT_TIMEOUT)
3099 host->cmd->error = -ETIMEDOUT;
3100 else
3101 host->cmd->error = -EILSEQ;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003102
Adrian Hunter4bf78092018-11-15 15:53:41 +02003103 /* Treat data command CRC error the same as data CRC error */
Russell King71fcbda2016-01-26 13:39:45 +00003104 if (host->cmd->data &&
3105 (intmask & (SDHCI_INT_CRC | SDHCI_INT_TIMEOUT)) ==
3106 SDHCI_INT_CRC) {
3107 host->cmd = NULL;
Adrian Hunter4bf78092018-11-15 15:53:41 +02003108 *intmask_p |= SDHCI_INT_DATA_CRC;
Russell King71fcbda2016-01-26 13:39:45 +00003109 return;
3110 }
3111
Adrian Hunter19d2f692019-04-05 15:40:19 +03003112 __sdhci_finish_mrq(host, host->cmd->mrq);
Pierre Ossmane8095172008-07-25 01:09:08 +02003113 return;
3114 }
3115
Adrian Hunteraf849c82018-11-15 15:53:43 +02003116 /* Handle auto-CMD23 error */
3117 if (intmask & SDHCI_INT_AUTO_CMD_ERR) {
3118 struct mmc_request *mrq = host->cmd->mrq;
3119 u16 auto_cmd_status = sdhci_readw(host, SDHCI_AUTO_CMD_STATUS);
3120 int err = (auto_cmd_status & SDHCI_AUTO_CMD_TIMEOUT) ?
3121 -ETIMEDOUT :
3122 -EILSEQ;
3123
3124 if (mrq->sbc && (host->flags & SDHCI_AUTO_CMD23)) {
3125 mrq->sbc->error = err;
Adrian Hunter19d2f692019-04-05 15:40:19 +03003126 __sdhci_finish_mrq(host, mrq);
Adrian Hunteraf849c82018-11-15 15:53:43 +02003127 return;
3128 }
3129 }
3130
Pierre Ossmane8095172008-07-25 01:09:08 +02003131 if (intmask & SDHCI_INT_RESPONSE)
Pierre Ossman43b58b32007-07-25 23:15:27 +02003132 sdhci_finish_command(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003133}
3134
Adrian Hunter08621b12014-11-04 12:42:38 +02003135static void sdhci_adma_show_error(struct sdhci_host *host)
Ben Dooks6882a8c2009-06-14 13:52:38 +01003136{
Adrian Hunter1c3d5f62014-11-04 12:42:41 +02003137 void *desc = host->adma_table;
Russell Kingd1c536e2019-09-22 11:26:53 +01003138 dma_addr_t dma = host->adma_addr;
Ben Dooks6882a8c2009-06-14 13:52:38 +01003139
3140 sdhci_dumpregs(host);
3141
3142 while (true) {
Adrian Huntere57a5f62014-11-04 12:42:46 +02003143 struct sdhci_adma2_64_desc *dma_desc = desc;
Ben Dooks6882a8c2009-06-14 13:52:38 +01003144
Adrian Huntere57a5f62014-11-04 12:42:46 +02003145 if (host->flags & SDHCI_USE_64_BIT_DMA)
Russell Kingd1c536e2019-09-22 11:26:53 +01003146 SDHCI_DUMP("%08llx: DMA 0x%08x%08x, LEN 0x%04x, Attr=0x%02x\n",
3147 (unsigned long long)dma,
3148 le32_to_cpu(dma_desc->addr_hi),
Adrian Huntere57a5f62014-11-04 12:42:46 +02003149 le32_to_cpu(dma_desc->addr_lo),
3150 le16_to_cpu(dma_desc->len),
3151 le16_to_cpu(dma_desc->cmd));
3152 else
Russell Kingd1c536e2019-09-22 11:26:53 +01003153 SDHCI_DUMP("%08llx: DMA 0x%08x, LEN 0x%04x, Attr=0x%02x\n",
3154 (unsigned long long)dma,
3155 le32_to_cpu(dma_desc->addr_lo),
Adrian Huntere57a5f62014-11-04 12:42:46 +02003156 le16_to_cpu(dma_desc->len),
3157 le16_to_cpu(dma_desc->cmd));
Ben Dooks6882a8c2009-06-14 13:52:38 +01003158
Adrian Hunter76fe3792014-11-04 12:42:42 +02003159 desc += host->desc_sz;
Russell Kingd1c536e2019-09-22 11:26:53 +01003160 dma += host->desc_sz;
Ben Dooks6882a8c2009-06-14 13:52:38 +01003161
Adrian Hunter05452302014-11-04 12:42:45 +02003162 if (dma_desc->cmd & cpu_to_le16(ADMA2_END))
Ben Dooks6882a8c2009-06-14 13:52:38 +01003163 break;
3164 }
3165}
Ben Dooks6882a8c2009-06-14 13:52:38 +01003166
Pierre Ossmand129bce2006-03-24 03:18:17 -08003167static void sdhci_data_irq(struct sdhci_host *host, u32 intmask)
3168{
Girish K S069c9f12012-01-06 09:56:39 +05303169 u32 command;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003170
Arindam Nathb513ea22011-05-05 12:19:04 +05303171 /* CMD19 generates _only_ Buffer Read Ready interrupt */
3172 if (intmask & SDHCI_INT_DATA_AVAIL) {
Girish K S069c9f12012-01-06 09:56:39 +05303173 command = SDHCI_GET_CMD(sdhci_readw(host, SDHCI_COMMAND));
3174 if (command == MMC_SEND_TUNING_BLOCK ||
3175 command == MMC_SEND_TUNING_BLOCK_HS200) {
Arindam Nathb513ea22011-05-05 12:19:04 +05303176 host->tuning_done = 1;
3177 wake_up(&host->buf_ready_int);
3178 return;
3179 }
3180 }
3181
Pierre Ossmand129bce2006-03-24 03:18:17 -08003182 if (!host->data) {
Adrian Hunter7c89a3d2016-06-29 16:24:23 +03003183 struct mmc_command *data_cmd = host->data_cmd;
3184
Pierre Ossmand129bce2006-03-24 03:18:17 -08003185 /*
Pierre Ossmane8095172008-07-25 01:09:08 +02003186 * The "data complete" interrupt is also used to
3187 * indicate that a busy state has ended. See comment
3188 * above in sdhci_cmd_irq().
Pierre Ossmand129bce2006-03-24 03:18:17 -08003189 */
Adrian Hunter7c89a3d2016-06-29 16:24:23 +03003190 if (data_cmd && (data_cmd->flags & MMC_RSP_BUSY)) {
Matthieu CASTETc5abd5e2014-08-14 16:03:17 +02003191 if (intmask & SDHCI_INT_DATA_TIMEOUT) {
Adrian Hunter69b962a2016-11-02 15:49:09 +02003192 host->data_cmd = NULL;
Adrian Hunter7c89a3d2016-06-29 16:24:23 +03003193 data_cmd->error = -ETIMEDOUT;
Adrian Hunter19d2f692019-04-05 15:40:19 +03003194 __sdhci_finish_mrq(host, data_cmd->mrq);
Matthieu CASTETc5abd5e2014-08-14 16:03:17 +02003195 return;
3196 }
Pierre Ossmane8095172008-07-25 01:09:08 +02003197 if (intmask & SDHCI_INT_DATA_END) {
Adrian Hunter69b962a2016-11-02 15:49:09 +02003198 host->data_cmd = NULL;
Chanho Mine99783a2014-08-30 12:40:40 +09003199 /*
3200 * Some cards handle busy-end interrupt
3201 * before the command completed, so make
3202 * sure we do things in the proper order.
3203 */
Adrian Hunterea968022016-06-29 16:24:24 +03003204 if (host->cmd == data_cmd)
3205 return;
3206
Adrian Hunter19d2f692019-04-05 15:40:19 +03003207 __sdhci_finish_mrq(host, data_cmd->mrq);
Pierre Ossmane8095172008-07-25 01:09:08 +02003208 return;
3209 }
3210 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08003211
Adrian Huntered1563d2016-06-29 16:24:29 +03003212 /*
3213 * SDHCI recovers from errors by resetting the cmd and data
3214 * circuits. Until that is done, there very well might be more
3215 * interrupts, so ignore them in that case.
3216 */
3217 if (host->pending_reset)
3218 return;
3219
Marek Vasut2e4456f2015-11-18 10:47:02 +01003220 pr_err("%s: Got data interrupt 0x%08x even though no data operation was in progress.\n",
3221 mmc_hostname(host->mmc), (unsigned)intmask);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003222 sdhci_dumpregs(host);
3223
3224 return;
3225 }
3226
3227 if (intmask & SDHCI_INT_DATA_TIMEOUT)
Pierre Ossman17b04292007-07-22 22:18:46 +02003228 host->data->error = -ETIMEDOUT;
Aries Lee22113ef2010-12-15 08:14:24 +01003229 else if (intmask & SDHCI_INT_DATA_END_BIT)
3230 host->data->error = -EILSEQ;
3231 else if ((intmask & SDHCI_INT_DATA_CRC) &&
3232 SDHCI_GET_CMD(sdhci_readw(host, SDHCI_COMMAND))
3233 != MMC_BUS_TEST_R)
Pierre Ossman17b04292007-07-22 22:18:46 +02003234 host->data->error = -EILSEQ;
Ben Dooks6882a8c2009-06-14 13:52:38 +01003235 else if (intmask & SDHCI_INT_ADMA_ERROR) {
Russell Kingd1c536e2019-09-22 11:26:53 +01003236 pr_err("%s: ADMA error: 0x%08x\n", mmc_hostname(host->mmc),
3237 intmask);
Adrian Hunter08621b12014-11-04 12:42:38 +02003238 sdhci_adma_show_error(host);
Pierre Ossman2134a922008-06-28 18:28:51 +02003239 host->data->error = -EIO;
Haijun Zhanga4071fb2012-12-04 10:41:28 +08003240 if (host->ops->adma_workaround)
3241 host->ops->adma_workaround(host, intmask);
Ben Dooks6882a8c2009-06-14 13:52:38 +01003242 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08003243
Pierre Ossman17b04292007-07-22 22:18:46 +02003244 if (host->data->error)
Pierre Ossmand129bce2006-03-24 03:18:17 -08003245 sdhci_finish_data(host);
3246 else {
Pierre Ossmana406f5a2006-07-02 16:50:59 +01003247 if (intmask & (SDHCI_INT_DATA_AVAIL | SDHCI_INT_SPACE_AVAIL))
Pierre Ossmand129bce2006-03-24 03:18:17 -08003248 sdhci_transfer_pio(host);
3249
Pierre Ossman6ba736a2007-05-13 22:39:23 +02003250 /*
3251 * We currently don't do anything fancy with DMA
3252 * boundaries, but as we can't disable the feature
3253 * we need to at least restart the transfer.
Mikko Vinnif6a03cb2011-04-12 09:36:18 -04003254 *
3255 * According to the spec sdhci_readl(host, SDHCI_DMA_ADDRESS)
3256 * should return a valid address to continue from, but as
3257 * some controllers are faulty, don't trust them.
Pierre Ossman6ba736a2007-05-13 22:39:23 +02003258 */
Mikko Vinnif6a03cb2011-04-12 09:36:18 -04003259 if (intmask & SDHCI_INT_DMA_END) {
Chunyan Zhang917a0c52018-08-30 16:21:39 +08003260 dma_addr_t dmastart, dmanow;
Linus Walleijbd9b9022018-01-29 00:44:53 +01003261
3262 dmastart = sdhci_sdma_address(host);
Mikko Vinnif6a03cb2011-04-12 09:36:18 -04003263 dmanow = dmastart + host->data->bytes_xfered;
3264 /*
3265 * Force update to the next DMA block boundary.
3266 */
3267 dmanow = (dmanow &
Chunyan Zhang917a0c52018-08-30 16:21:39 +08003268 ~((dma_addr_t)SDHCI_DEFAULT_BOUNDARY_SIZE - 1)) +
Mikko Vinnif6a03cb2011-04-12 09:36:18 -04003269 SDHCI_DEFAULT_BOUNDARY_SIZE;
3270 host->data->bytes_xfered = dmanow - dmastart;
Chunyan Zhang917a0c52018-08-30 16:21:39 +08003271 DBG("DMA base %pad, transferred 0x%06x bytes, next %pad\n",
3272 &dmastart, host->data->bytes_xfered, &dmanow);
3273 sdhci_set_sdma_addr(host, dmanow);
Mikko Vinnif6a03cb2011-04-12 09:36:18 -04003274 }
Pierre Ossman6ba736a2007-05-13 22:39:23 +02003275
Pierre Ossmane538fbe2007-08-12 16:46:32 +02003276 if (intmask & SDHCI_INT_DATA_END) {
Adrian Hunter7c89a3d2016-06-29 16:24:23 +03003277 if (host->cmd == host->data_cmd) {
Pierre Ossmane538fbe2007-08-12 16:46:32 +02003278 /*
3279 * Data managed to finish before the
3280 * command completed. Make sure we do
3281 * things in the proper order.
3282 */
3283 host->data_early = 1;
3284 } else {
3285 sdhci_finish_data(host);
3286 }
3287 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08003288 }
3289}
3290
Adrian Hunter19d2f692019-04-05 15:40:19 +03003291static inline bool sdhci_defer_done(struct sdhci_host *host,
3292 struct mmc_request *mrq)
3293{
3294 struct mmc_data *data = mrq->data;
3295
Baolin Wang47308312020-02-12 12:12:59 +08003296 return host->pending_reset || host->always_defer_done ||
Adrian Hunter19d2f692019-04-05 15:40:19 +03003297 ((host->flags & SDHCI_REQ_USE_DMA) && data &&
3298 data->host_cookie == COOKIE_MAPPED);
3299}
3300
David Howells7d12e782006-10-05 14:55:46 +01003301static irqreturn_t sdhci_irq(int irq, void *dev_id)
Pierre Ossmand129bce2006-03-24 03:18:17 -08003302{
Adrian Hunter19d2f692019-04-05 15:40:19 +03003303 struct mmc_request *mrqs_done[SDHCI_MAX_MRQS] = {0};
Russell King781e9892014-04-25 12:55:46 +01003304 irqreturn_t result = IRQ_NONE;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003305 struct sdhci_host *host = dev_id;
Russell King41005002014-04-25 12:55:36 +01003306 u32 intmask, mask, unexpected = 0;
Russell King781e9892014-04-25 12:55:46 +01003307 int max_loops = 16;
Adrian Hunter19d2f692019-04-05 15:40:19 +03003308 int i;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003309
3310 spin_lock(&host->lock);
3311
Ulf Hanssonaf5d2b72019-09-08 12:12:35 +02003312 if (host->runtime_suspended) {
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003313 spin_unlock(&host->lock);
Adrian Hunter655bca72014-03-11 10:09:36 +02003314 return IRQ_NONE;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003315 }
3316
Anton Vorontsov4e4141a2009-03-17 00:13:46 +03003317 intmask = sdhci_readl(host, SDHCI_INT_STATUS);
Mark Lord62df67a52007-03-06 13:30:13 +01003318 if (!intmask || intmask == 0xffffffff) {
Pierre Ossmand129bce2006-03-24 03:18:17 -08003319 result = IRQ_NONE;
3320 goto out;
3321 }
3322
Russell King41005002014-04-25 12:55:36 +01003323 do {
Adrian Hunterf12e39d2017-03-20 19:50:47 +02003324 DBG("IRQ status 0x%08x\n", intmask);
3325
3326 if (host->ops->irq) {
3327 intmask = host->ops->irq(host, intmask);
3328 if (!intmask)
3329 goto cont;
3330 }
3331
Russell King41005002014-04-25 12:55:36 +01003332 /* Clear selected interrupts. */
3333 mask = intmask & (SDHCI_INT_CMD_MASK | SDHCI_INT_DATA_MASK |
3334 SDHCI_INT_BUS_POWER);
3335 sdhci_writel(host, mask, SDHCI_INT_STATUS);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003336
Russell King41005002014-04-25 12:55:36 +01003337 if (intmask & (SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE)) {
3338 u32 present = sdhci_readl(host, SDHCI_PRESENT_STATE) &
3339 SDHCI_CARD_PRESENT;
3340
3341 /*
3342 * There is a observation on i.mx esdhc. INSERT
3343 * bit will be immediately set again when it gets
3344 * cleared, if a card is inserted. We have to mask
3345 * the irq to prevent interrupt storm which will
3346 * freeze the system. And the REMOVE gets the
3347 * same situation.
3348 *
3349 * More testing are needed here to ensure it works
3350 * for other platforms though.
3351 */
Russell Kingb537f942014-04-25 12:56:01 +01003352 host->ier &= ~(SDHCI_INT_CARD_INSERT |
3353 SDHCI_INT_CARD_REMOVE);
3354 host->ier |= present ? SDHCI_INT_CARD_REMOVE :
3355 SDHCI_INT_CARD_INSERT;
3356 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
3357 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Russell King41005002014-04-25 12:55:36 +01003358
3359 sdhci_writel(host, intmask & (SDHCI_INT_CARD_INSERT |
3360 SDHCI_INT_CARD_REMOVE), SDHCI_INT_STATUS);
Russell King3560db82014-04-25 12:55:51 +01003361
3362 host->thread_isr |= intmask & (SDHCI_INT_CARD_INSERT |
3363 SDHCI_INT_CARD_REMOVE);
3364 result = IRQ_WAKE_THREAD;
Russell King41005002014-04-25 12:55:36 +01003365 }
3366
3367 if (intmask & SDHCI_INT_CMD_MASK)
Adrian Hunter4bf78092018-11-15 15:53:41 +02003368 sdhci_cmd_irq(host, intmask & SDHCI_INT_CMD_MASK, &intmask);
Russell King41005002014-04-25 12:55:36 +01003369
3370 if (intmask & SDHCI_INT_DATA_MASK)
3371 sdhci_data_irq(host, intmask & SDHCI_INT_DATA_MASK);
3372
3373 if (intmask & SDHCI_INT_BUS_POWER)
3374 pr_err("%s: Card is consuming too much power!\n",
3375 mmc_hostname(host->mmc));
3376
Dong Aishengf37b20e2016-07-12 15:46:17 +08003377 if (intmask & SDHCI_INT_RETUNE)
3378 mmc_retune_needed(host->mmc);
3379
Gabriel Krisman Bertazi161e6d42017-01-16 12:23:42 -02003380 if ((intmask & SDHCI_INT_CARD_INT) &&
3381 (host->ier & SDHCI_INT_CARD_INT)) {
Russell King781e9892014-04-25 12:55:46 +01003382 sdhci_enable_sdio_irq_nolock(host, false);
Adrian Hunter89f3c362019-05-27 14:45:55 +03003383 sdio_signal_irq(host->mmc);
Russell King781e9892014-04-25 12:55:46 +01003384 }
Russell King41005002014-04-25 12:55:36 +01003385
3386 intmask &= ~(SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE |
3387 SDHCI_INT_CMD_MASK | SDHCI_INT_DATA_MASK |
3388 SDHCI_INT_ERROR | SDHCI_INT_BUS_POWER |
Dong Aishengf37b20e2016-07-12 15:46:17 +08003389 SDHCI_INT_RETUNE | SDHCI_INT_CARD_INT);
Russell King41005002014-04-25 12:55:36 +01003390
3391 if (intmask) {
3392 unexpected |= intmask;
3393 sdhci_writel(host, intmask, SDHCI_INT_STATUS);
3394 }
Adrian Hunterf12e39d2017-03-20 19:50:47 +02003395cont:
Russell King781e9892014-04-25 12:55:46 +01003396 if (result == IRQ_NONE)
3397 result = IRQ_HANDLED;
Russell King41005002014-04-25 12:55:36 +01003398
3399 intmask = sdhci_readl(host, SDHCI_INT_STATUS);
Russell King41005002014-04-25 12:55:36 +01003400 } while (intmask && --max_loops);
Adrian Hunter19d2f692019-04-05 15:40:19 +03003401
3402 /* Determine if mrqs can be completed immediately */
3403 for (i = 0; i < SDHCI_MAX_MRQS; i++) {
3404 struct mmc_request *mrq = host->mrqs_done[i];
3405
3406 if (!mrq)
3407 continue;
3408
3409 if (sdhci_defer_done(host, mrq)) {
Adrian Hunterc07a48c2019-04-05 15:40:20 +03003410 result = IRQ_WAKE_THREAD;
Adrian Hunter19d2f692019-04-05 15:40:19 +03003411 } else {
3412 mrqs_done[i] = mrq;
3413 host->mrqs_done[i] = NULL;
3414 }
3415 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08003416out:
3417 spin_unlock(&host->lock);
3418
Adrian Hunter19d2f692019-04-05 15:40:19 +03003419 /* Process mrqs ready for immediate completion */
3420 for (i = 0; i < SDHCI_MAX_MRQS; i++) {
Baolin Wang1774b002020-02-12 12:12:58 +08003421 if (!mrqs_done[i])
3422 continue;
3423
3424 if (host->ops->request_done)
3425 host->ops->request_done(host, mrqs_done[i]);
3426 else
Adrian Hunter19d2f692019-04-05 15:40:19 +03003427 mmc_request_done(host->mmc, mrqs_done[i]);
3428 }
3429
Alexander Stein6379b232012-03-14 09:52:10 +01003430 if (unexpected) {
3431 pr_err("%s: Unexpected interrupt 0x%08x.\n",
3432 mmc_hostname(host->mmc), unexpected);
3433 sdhci_dumpregs(host);
3434 }
Pierre Ossmanf75979b2007-09-04 07:59:18 +02003435
Pierre Ossmand129bce2006-03-24 03:18:17 -08003436 return result;
3437}
3438
Russell King781e9892014-04-25 12:55:46 +01003439static irqreturn_t sdhci_thread_irq(int irq, void *dev_id)
3440{
3441 struct sdhci_host *host = dev_id;
3442 unsigned long flags;
3443 u32 isr;
3444
Adrian Hunterc07a48c2019-04-05 15:40:20 +03003445 while (!sdhci_request_done(host))
3446 ;
3447
Russell King781e9892014-04-25 12:55:46 +01003448 spin_lock_irqsave(&host->lock, flags);
3449 isr = host->thread_isr;
3450 host->thread_isr = 0;
3451 spin_unlock_irqrestore(&host->lock, flags);
3452
Russell King3560db82014-04-25 12:55:51 +01003453 if (isr & (SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE)) {
Adrian Hunterd3940f22016-06-29 16:24:14 +03003454 struct mmc_host *mmc = host->mmc;
3455
3456 mmc->ops->card_event(mmc);
3457 mmc_detect_change(mmc, msecs_to_jiffies(200));
Russell King3560db82014-04-25 12:55:51 +01003458 }
3459
Adrian Hunterc07a48c2019-04-05 15:40:20 +03003460 return IRQ_HANDLED;
Russell King781e9892014-04-25 12:55:46 +01003461}
3462
Pierre Ossmand129bce2006-03-24 03:18:17 -08003463/*****************************************************************************\
3464 * *
3465 * Suspend/resume *
3466 * *
3467\*****************************************************************************/
3468
3469#ifdef CONFIG_PM
Adrian Hunter9c316b32018-02-27 14:51:23 +02003470
3471static bool sdhci_cd_irq_can_wakeup(struct sdhci_host *host)
3472{
3473 return mmc_card_is_removable(host->mmc) &&
3474 !(host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION) &&
3475 !mmc_can_gpio_cd(host->mmc);
3476}
3477
Ludovic Desroches84d62602016-05-13 15:16:02 +02003478/*
3479 * To enable wakeup events, the corresponding events have to be enabled in
3480 * the Interrupt Status Enable register too. See 'Table 1-6: Wakeup Signal
3481 * Table' in the SD Host Controller Standard Specification.
3482 * It is useless to restore SDHCI_INT_ENABLE state in
3483 * sdhci_disable_irq_wakeups() since it will be set by
3484 * sdhci_enable_card_detection() or sdhci_init().
3485 */
Adrian Hunter58e79b62018-01-09 09:52:21 +02003486static bool sdhci_enable_irq_wakeups(struct sdhci_host *host)
Kevin Liuad080d72013-01-05 17:21:33 +08003487{
Adrian Hunter81b14542018-01-09 09:52:22 +02003488 u8 mask = SDHCI_WAKE_ON_INSERT | SDHCI_WAKE_ON_REMOVE |
3489 SDHCI_WAKE_ON_INT;
3490 u32 irq_val = 0;
3491 u8 wake_val = 0;
Kevin Liuad080d72013-01-05 17:21:33 +08003492 u8 val;
Adrian Hunter81b14542018-01-09 09:52:22 +02003493
Adrian Hunter9c316b32018-02-27 14:51:23 +02003494 if (sdhci_cd_irq_can_wakeup(host)) {
Adrian Hunter81b14542018-01-09 09:52:22 +02003495 wake_val |= SDHCI_WAKE_ON_INSERT | SDHCI_WAKE_ON_REMOVE;
3496 irq_val |= SDHCI_INT_CARD_INSERT | SDHCI_INT_CARD_REMOVE;
3497 }
3498
Adrian Hunterd5d568f2018-02-27 14:51:24 +02003499 if (mmc_card_wake_sdio_irq(host->mmc)) {
3500 wake_val |= SDHCI_WAKE_ON_INT;
3501 irq_val |= SDHCI_INT_CARD_INT;
3502 }
3503
3504 if (!irq_val)
3505 return false;
Kevin Liuad080d72013-01-05 17:21:33 +08003506
3507 val = sdhci_readb(host, SDHCI_WAKE_UP_CONTROL);
Adrian Hunter81b14542018-01-09 09:52:22 +02003508 val &= ~mask;
3509 val |= wake_val;
Kevin Liuad080d72013-01-05 17:21:33 +08003510 sdhci_writeb(host, val, SDHCI_WAKE_UP_CONTROL);
Adrian Hunter81b14542018-01-09 09:52:22 +02003511
Ludovic Desroches84d62602016-05-13 15:16:02 +02003512 sdhci_writel(host, irq_val, SDHCI_INT_ENABLE);
Adrian Hunter58e79b62018-01-09 09:52:21 +02003513
3514 host->irq_wake_enabled = !enable_irq_wake(host->irq);
3515
3516 return host->irq_wake_enabled;
Kevin Liuad080d72013-01-05 17:21:33 +08003517}
Kevin Liuad080d72013-01-05 17:21:33 +08003518
Fabio Estevam0b10f472014-08-30 14:53:13 -03003519static void sdhci_disable_irq_wakeups(struct sdhci_host *host)
Kevin Liuad080d72013-01-05 17:21:33 +08003520{
3521 u8 val;
3522 u8 mask = SDHCI_WAKE_ON_INSERT | SDHCI_WAKE_ON_REMOVE
3523 | SDHCI_WAKE_ON_INT;
3524
3525 val = sdhci_readb(host, SDHCI_WAKE_UP_CONTROL);
3526 val &= ~mask;
3527 sdhci_writeb(host, val, SDHCI_WAKE_UP_CONTROL);
Adrian Hunter58e79b62018-01-09 09:52:21 +02003528
3529 disable_irq_wake(host->irq);
3530
3531 host->irq_wake_enabled = false;
Kevin Liuad080d72013-01-05 17:21:33 +08003532}
Pierre Ossmand129bce2006-03-24 03:18:17 -08003533
Manuel Lauss29495aa2011-11-03 11:09:45 +01003534int sdhci_suspend_host(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -08003535{
Anton Vorontsov7260cf52009-03-17 00:13:48 +03003536 sdhci_disable_card_detection(host);
3537
Adrian Hunter66c39dfc2015-05-07 13:10:21 +03003538 mmc_retune_timer_stop(host->mmc);
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05303539
Adrian Hunter58e79b62018-01-09 09:52:21 +02003540 if (!device_may_wakeup(mmc_dev(host->mmc)) ||
3541 !sdhci_enable_irq_wakeups(host)) {
Russell Kingb537f942014-04-25 12:56:01 +01003542 host->ier = 0;
3543 sdhci_writel(host, 0, SDHCI_INT_ENABLE);
3544 sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE);
Kevin Liuad080d72013-01-05 17:21:33 +08003545 free_irq(host->irq, host);
Kevin Liuad080d72013-01-05 17:21:33 +08003546 }
Adrian Hunter58e79b62018-01-09 09:52:21 +02003547
Ulf Hansson4ee14ec2013-09-25 14:15:24 +02003548 return 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003549}
3550
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003551EXPORT_SYMBOL_GPL(sdhci_suspend_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003552
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003553int sdhci_resume_host(struct sdhci_host *host)
3554{
Adrian Hunterd3940f22016-06-29 16:24:14 +03003555 struct mmc_host *mmc = host->mmc;
Ulf Hansson4ee14ec2013-09-25 14:15:24 +02003556 int ret = 0;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003557
Richard Röjforsa13abc72009-09-22 16:45:30 -07003558 if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003559 if (host->ops->enable_dma)
3560 host->ops->enable_dma(host);
3561 }
3562
Adrian Hunter6308d292012-02-07 14:48:54 +02003563 if ((host->mmc->pm_flags & MMC_PM_KEEP_POWER) &&
3564 (host->quirks2 & SDHCI_QUIRK2_HOST_OFF_CARD_ON)) {
3565 /* Card keeps power but host controller does not */
3566 sdhci_init(host, 0);
3567 host->pwr = 0;
3568 host->clock = 0;
Adrian Hunterd3940f22016-06-29 16:24:14 +03003569 mmc->ops->set_ios(mmc, &mmc->ios);
Adrian Hunter6308d292012-02-07 14:48:54 +02003570 } else {
3571 sdhci_init(host, (host->mmc->pm_flags & MMC_PM_KEEP_POWER));
Adrian Hunter6308d292012-02-07 14:48:54 +02003572 }
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003573
Adrian Hunter58e79b62018-01-09 09:52:21 +02003574 if (host->irq_wake_enabled) {
3575 sdhci_disable_irq_wakeups(host);
3576 } else {
Haibo Chen14a7b41642015-09-15 18:32:58 +08003577 ret = request_threaded_irq(host->irq, sdhci_irq,
3578 sdhci_thread_irq, IRQF_SHARED,
3579 mmc_hostname(host->mmc), host);
3580 if (ret)
3581 return ret;
Haibo Chen14a7b41642015-09-15 18:32:58 +08003582 }
3583
Anton Vorontsov7260cf52009-03-17 00:13:48 +03003584 sdhci_enable_card_detection(host);
3585
Nicolas Pitre2f4cbb32010-03-05 13:43:32 -08003586 return ret;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003587}
3588
3589EXPORT_SYMBOL_GPL(sdhci_resume_host);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003590
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003591int sdhci_runtime_suspend_host(struct sdhci_host *host)
3592{
3593 unsigned long flags;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003594
Adrian Hunter66c39dfc2015-05-07 13:10:21 +03003595 mmc_retune_timer_stop(host->mmc);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003596
3597 spin_lock_irqsave(&host->lock, flags);
Russell Kingb537f942014-04-25 12:56:01 +01003598 host->ier &= SDHCI_INT_CARD_INT;
3599 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
3600 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003601 spin_unlock_irqrestore(&host->lock, flags);
3602
Russell King781e9892014-04-25 12:55:46 +01003603 synchronize_hardirq(host->irq);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003604
3605 spin_lock_irqsave(&host->lock, flags);
3606 host->runtime_suspended = true;
3607 spin_unlock_irqrestore(&host->lock, flags);
3608
Markus Pargmann8a125ba2014-06-04 15:24:29 +02003609 return 0;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003610}
3611EXPORT_SYMBOL_GPL(sdhci_runtime_suspend_host);
3612
Baolin Wangc6303c52019-07-25 11:14:22 +08003613int sdhci_runtime_resume_host(struct sdhci_host *host, int soft_reset)
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003614{
Adrian Hunterd3940f22016-06-29 16:24:14 +03003615 struct mmc_host *mmc = host->mmc;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003616 unsigned long flags;
Markus Pargmann8a125ba2014-06-04 15:24:29 +02003617 int host_flags = host->flags;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003618
3619 if (host_flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
3620 if (host->ops->enable_dma)
3621 host->ops->enable_dma(host);
3622 }
3623
Baolin Wangc6303c52019-07-25 11:14:22 +08003624 sdhci_init(host, soft_reset);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003625
Zhoujie Wu70bc85a2017-08-03 12:28:40 -07003626 if (mmc->ios.power_mode != MMC_POWER_UNDEFINED &&
3627 mmc->ios.power_mode != MMC_POWER_OFF) {
Adrian Hunter84ec0482016-12-19 15:33:11 +02003628 /* Force clock and power re-program */
3629 host->pwr = 0;
3630 host->clock = 0;
3631 mmc->ops->start_signal_voltage_switch(mmc, &mmc->ios);
3632 mmc->ops->set_ios(mmc, &mmc->ios);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003633
Adrian Hunter84ec0482016-12-19 15:33:11 +02003634 if ((host_flags & SDHCI_PV_ENABLED) &&
3635 !(host->quirks2 & SDHCI_QUIRK2_PRESET_VALUE_BROKEN)) {
3636 spin_lock_irqsave(&host->lock, flags);
3637 sdhci_enable_preset_value(host, true);
3638 spin_unlock_irqrestore(&host->lock, flags);
3639 }
3640
3641 if ((mmc->caps2 & MMC_CAP2_HS400_ES) &&
3642 mmc->ops->hs400_enhanced_strobe)
3643 mmc->ops->hs400_enhanced_strobe(mmc, &mmc->ios);
Kevin Liu52983382013-01-31 11:31:37 +08003644 }
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003645
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003646 spin_lock_irqsave(&host->lock, flags);
3647
3648 host->runtime_suspended = false;
3649
3650 /* Enable SDIO IRQ */
Ulf Hansson0e626142019-09-08 12:12:36 +02003651 if (sdio_irq_claimed(mmc))
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003652 sdhci_enable_sdio_irq_nolock(host, true);
3653
3654 /* Enable Card Detection */
3655 sdhci_enable_card_detection(host);
3656
3657 spin_unlock_irqrestore(&host->lock, flags);
3658
Markus Pargmann8a125ba2014-06-04 15:24:29 +02003659 return 0;
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003660}
3661EXPORT_SYMBOL_GPL(sdhci_runtime_resume_host);
3662
Rafael J. Wysocki162d6f92014-12-05 03:05:33 +01003663#endif /* CONFIG_PM */
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03003664
Pierre Ossmand129bce2006-03-24 03:18:17 -08003665/*****************************************************************************\
3666 * *
Adrian Hunterf12e39d2017-03-20 19:50:47 +02003667 * Command Queue Engine (CQE) helpers *
3668 * *
3669\*****************************************************************************/
3670
3671void sdhci_cqe_enable(struct mmc_host *mmc)
3672{
3673 struct sdhci_host *host = mmc_priv(mmc);
3674 unsigned long flags;
3675 u8 ctrl;
3676
3677 spin_lock_irqsave(&host->lock, flags);
3678
3679 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
3680 ctrl &= ~SDHCI_CTRL_DMA_MASK;
Sowjanya Komatineni4c4faff2019-01-23 11:30:53 -08003681 /*
3682 * Host from V4.10 supports ADMA3 DMA type.
3683 * ADMA3 performs integrated descriptor which is more suitable
3684 * for cmd queuing to fetch both command and transfer descriptors.
3685 */
3686 if (host->v4_mode && (host->caps1 & SDHCI_CAN_DO_ADMA3))
3687 ctrl |= SDHCI_CTRL_ADMA3;
3688 else if (host->flags & SDHCI_USE_64_BIT_DMA)
Adrian Hunterf12e39d2017-03-20 19:50:47 +02003689 ctrl |= SDHCI_CTRL_ADMA64;
3690 else
3691 ctrl |= SDHCI_CTRL_ADMA32;
3692 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
3693
Srinivas Kandagatlac846a002017-08-03 14:46:13 +02003694 sdhci_writew(host, SDHCI_MAKE_BLKSZ(host->sdma_boundary, 512),
Adrian Hunterf12e39d2017-03-20 19:50:47 +02003695 SDHCI_BLOCK_SIZE);
3696
3697 /* Set maximum timeout */
BOUGH CHEN401059d2019-01-07 10:11:36 +00003698 sdhci_set_timeout(host, NULL);
Adrian Hunterf12e39d2017-03-20 19:50:47 +02003699
3700 host->ier = host->cqe_ier;
3701
3702 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
3703 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
3704
3705 host->cqe_on = true;
3706
3707 pr_debug("%s: sdhci: CQE on, IRQ mask %#x, IRQ status %#x\n",
3708 mmc_hostname(mmc), host->ier,
3709 sdhci_readl(host, SDHCI_INT_STATUS));
3710
Adrian Hunterf12e39d2017-03-20 19:50:47 +02003711 spin_unlock_irqrestore(&host->lock, flags);
3712}
3713EXPORT_SYMBOL_GPL(sdhci_cqe_enable);
3714
3715void sdhci_cqe_disable(struct mmc_host *mmc, bool recovery)
3716{
3717 struct sdhci_host *host = mmc_priv(mmc);
3718 unsigned long flags;
3719
3720 spin_lock_irqsave(&host->lock, flags);
3721
3722 sdhci_set_default_irqs(host);
3723
3724 host->cqe_on = false;
3725
3726 if (recovery) {
3727 sdhci_do_reset(host, SDHCI_RESET_CMD);
3728 sdhci_do_reset(host, SDHCI_RESET_DATA);
3729 }
3730
3731 pr_debug("%s: sdhci: CQE off, IRQ mask %#x, IRQ status %#x\n",
3732 mmc_hostname(mmc), host->ier,
3733 sdhci_readl(host, SDHCI_INT_STATUS));
3734
Adrian Hunterf12e39d2017-03-20 19:50:47 +02003735 spin_unlock_irqrestore(&host->lock, flags);
3736}
3737EXPORT_SYMBOL_GPL(sdhci_cqe_disable);
3738
3739bool sdhci_cqe_irq(struct sdhci_host *host, u32 intmask, int *cmd_error,
3740 int *data_error)
3741{
3742 u32 mask;
3743
3744 if (!host->cqe_on)
3745 return false;
3746
3747 if (intmask & (SDHCI_INT_INDEX | SDHCI_INT_END_BIT | SDHCI_INT_CRC))
3748 *cmd_error = -EILSEQ;
3749 else if (intmask & SDHCI_INT_TIMEOUT)
3750 *cmd_error = -ETIMEDOUT;
3751 else
3752 *cmd_error = 0;
3753
3754 if (intmask & (SDHCI_INT_DATA_END_BIT | SDHCI_INT_DATA_CRC))
3755 *data_error = -EILSEQ;
3756 else if (intmask & SDHCI_INT_DATA_TIMEOUT)
3757 *data_error = -ETIMEDOUT;
3758 else if (intmask & SDHCI_INT_ADMA_ERROR)
3759 *data_error = -EIO;
3760 else
3761 *data_error = 0;
3762
3763 /* Clear selected interrupts. */
3764 mask = intmask & host->cqe_ier;
3765 sdhci_writel(host, mask, SDHCI_INT_STATUS);
3766
3767 if (intmask & SDHCI_INT_BUS_POWER)
3768 pr_err("%s: Card is consuming too much power!\n",
3769 mmc_hostname(host->mmc));
3770
3771 intmask &= ~(host->cqe_ier | SDHCI_INT_ERROR);
3772 if (intmask) {
3773 sdhci_writel(host, intmask, SDHCI_INT_STATUS);
3774 pr_err("%s: CQE: Unexpected interrupt 0x%08x.\n",
3775 mmc_hostname(host->mmc), intmask);
3776 sdhci_dumpregs(host);
3777 }
3778
3779 return true;
3780}
3781EXPORT_SYMBOL_GPL(sdhci_cqe_irq);
3782
3783/*****************************************************************************\
3784 * *
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003785 * Device allocation/registration *
Pierre Ossmand129bce2006-03-24 03:18:17 -08003786 * *
3787\*****************************************************************************/
3788
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003789struct sdhci_host *sdhci_alloc_host(struct device *dev,
3790 size_t priv_size)
Pierre Ossmand129bce2006-03-24 03:18:17 -08003791{
Pierre Ossmand129bce2006-03-24 03:18:17 -08003792 struct mmc_host *mmc;
3793 struct sdhci_host *host;
3794
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003795 WARN_ON(dev == NULL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003796
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003797 mmc = mmc_alloc_host(sizeof(struct sdhci_host) + priv_size, dev);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003798 if (!mmc)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003799 return ERR_PTR(-ENOMEM);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003800
3801 host = mmc_priv(mmc);
3802 host->mmc = mmc;
Adrian Hunterbf60e592016-02-09 16:12:35 +02003803 host->mmc_host_ops = sdhci_ops;
3804 mmc->ops = &host->mmc_host_ops;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003805
Adrian Hunter8cb851a2016-06-29 16:24:16 +03003806 host->flags = SDHCI_SIGNALING_330;
3807
Adrian Hunterf12e39d2017-03-20 19:50:47 +02003808 host->cqe_ier = SDHCI_CQE_INT_MASK;
3809 host->cqe_err_ier = SDHCI_CQE_INT_ERR_MASK;
3810
Adrian Hunter83b600b2017-04-20 16:14:43 +08003811 host->tuning_delay = -1;
Sowjanya Komatineni1d8cd0652019-03-23 21:45:19 -07003812 host->tuning_loop_count = MAX_TUNING_LOOP;
Adrian Hunter83b600b2017-04-20 16:14:43 +08003813
Srinivas Kandagatlac846a002017-08-03 14:46:13 +02003814 host->sdma_boundary = SDHCI_DEFAULT_BOUNDARY_ARG;
3815
Jisheng Zhange93be382018-08-28 17:46:35 +08003816 /*
3817 * The DMA table descriptor count is calculated as the maximum
3818 * number of segments times 2, to allow for an alignment
3819 * descriptor for each segment, plus 1 for a nop end descriptor.
3820 */
3821 host->adma_table_cnt = SDHCI_MAX_SEGS * 2 + 1;
3822
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003823 return host;
3824}
Pierre Ossman8a4da142006-10-04 02:15:40 -07003825
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003826EXPORT_SYMBOL_GPL(sdhci_alloc_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08003827
Alexandre Courbot7b913692016-03-07 11:07:55 +09003828static int sdhci_set_dma_mask(struct sdhci_host *host)
3829{
3830 struct mmc_host *mmc = host->mmc;
3831 struct device *dev = mmc_dev(mmc);
3832 int ret = -EINVAL;
3833
3834 if (host->quirks2 & SDHCI_QUIRK2_BROKEN_64_BIT_DMA)
3835 host->flags &= ~SDHCI_USE_64_BIT_DMA;
3836
3837 /* Try 64-bit mask if hardware is capable of it */
3838 if (host->flags & SDHCI_USE_64_BIT_DMA) {
3839 ret = dma_set_mask_and_coherent(dev, DMA_BIT_MASK(64));
3840 if (ret) {
3841 pr_warn("%s: Failed to set 64-bit DMA mask.\n",
3842 mmc_hostname(mmc));
3843 host->flags &= ~SDHCI_USE_64_BIT_DMA;
3844 }
3845 }
3846
3847 /* 32-bit mask as default & fallback */
3848 if (ret) {
3849 ret = dma_set_mask_and_coherent(dev, DMA_BIT_MASK(32));
3850 if (ret)
3851 pr_warn("%s: Failed to set 32-bit DMA mask.\n",
3852 mmc_hostname(mmc));
3853 }
3854
3855 return ret;
3856}
3857
Masahiro Yamada8784edc2019-08-29 19:49:27 +09003858void __sdhci_read_caps(struct sdhci_host *host, const u16 *ver,
3859 const u32 *caps, const u32 *caps1)
Adrian Hunter6132a3b2016-06-29 16:24:18 +03003860{
3861 u16 v;
Zach Brown92e0c442016-11-02 10:26:16 -05003862 u64 dt_caps_mask = 0;
3863 u64 dt_caps = 0;
Adrian Hunter6132a3b2016-06-29 16:24:18 +03003864
3865 if (host->read_caps)
3866 return;
3867
3868 host->read_caps = true;
3869
3870 if (debug_quirks)
3871 host->quirks = debug_quirks;
3872
3873 if (debug_quirks2)
3874 host->quirks2 = debug_quirks2;
3875
3876 sdhci_do_reset(host, SDHCI_RESET_ALL);
3877
Chunyan Zhangb3f80b42018-08-30 16:21:38 +08003878 if (host->v4_mode)
3879 sdhci_do_enable_v4_mode(host);
3880
Zach Brown92e0c442016-11-02 10:26:16 -05003881 of_property_read_u64(mmc_dev(host->mmc)->of_node,
3882 "sdhci-caps-mask", &dt_caps_mask);
3883 of_property_read_u64(mmc_dev(host->mmc)->of_node,
3884 "sdhci-caps", &dt_caps);
3885
Adrian Hunter6132a3b2016-06-29 16:24:18 +03003886 v = ver ? *ver : sdhci_readw(host, SDHCI_HOST_VERSION);
3887 host->version = (v & SDHCI_SPEC_VER_MASK) >> SDHCI_SPEC_VER_SHIFT;
3888
3889 if (host->quirks & SDHCI_QUIRK_MISSING_CAPS)
3890 return;
3891
Zach Brown92e0c442016-11-02 10:26:16 -05003892 if (caps) {
3893 host->caps = *caps;
3894 } else {
3895 host->caps = sdhci_readl(host, SDHCI_CAPABILITIES);
3896 host->caps &= ~lower_32_bits(dt_caps_mask);
3897 host->caps |= lower_32_bits(dt_caps);
3898 }
Adrian Hunter6132a3b2016-06-29 16:24:18 +03003899
3900 if (host->version < SDHCI_SPEC_300)
3901 return;
3902
Zach Brown92e0c442016-11-02 10:26:16 -05003903 if (caps1) {
3904 host->caps1 = *caps1;
3905 } else {
3906 host->caps1 = sdhci_readl(host, SDHCI_CAPABILITIES_1);
3907 host->caps1 &= ~upper_32_bits(dt_caps_mask);
3908 host->caps1 |= upper_32_bits(dt_caps);
3909 }
Adrian Hunter6132a3b2016-06-29 16:24:18 +03003910}
3911EXPORT_SYMBOL_GPL(__sdhci_read_caps);
3912
Chunyan Zhanga68dd9a2018-10-25 10:12:36 +08003913static void sdhci_allocate_bounce_buffer(struct sdhci_host *host)
Linus Walleijbd9b9022018-01-29 00:44:53 +01003914{
3915 struct mmc_host *mmc = host->mmc;
3916 unsigned int max_blocks;
3917 unsigned int bounce_size;
3918 int ret;
3919
3920 /*
3921 * Cap the bounce buffer at 64KB. Using a bigger bounce buffer
3922 * has diminishing returns, this is probably because SD/MMC
3923 * cards are usually optimized to handle this size of requests.
3924 */
3925 bounce_size = SZ_64K;
3926 /*
3927 * Adjust downwards to maximum request size if this is less
3928 * than our segment size, else hammer down the maximum
3929 * request size to the maximum buffer size.
3930 */
3931 if (mmc->max_req_size < bounce_size)
3932 bounce_size = mmc->max_req_size;
3933 max_blocks = bounce_size / 512;
3934
3935 /*
3936 * When we just support one segment, we can get significant
3937 * speedups by the help of a bounce buffer to group scattered
3938 * reads/writes together.
3939 */
3940 host->bounce_buffer = devm_kmalloc(mmc->parent,
3941 bounce_size,
3942 GFP_KERNEL);
3943 if (!host->bounce_buffer) {
3944 pr_err("%s: failed to allocate %u bytes for bounce buffer, falling back to single segments\n",
3945 mmc_hostname(mmc),
3946 bounce_size);
3947 /*
3948 * Exiting with zero here makes sure we proceed with
3949 * mmc->max_segs == 1.
3950 */
Chunyan Zhanga68dd9a2018-10-25 10:12:36 +08003951 return;
Linus Walleijbd9b9022018-01-29 00:44:53 +01003952 }
3953
3954 host->bounce_addr = dma_map_single(mmc->parent,
3955 host->bounce_buffer,
3956 bounce_size,
3957 DMA_BIDIRECTIONAL);
3958 ret = dma_mapping_error(mmc->parent, host->bounce_addr);
3959 if (ret)
3960 /* Again fall back to max_segs == 1 */
Chunyan Zhanga68dd9a2018-10-25 10:12:36 +08003961 return;
Linus Walleijbd9b9022018-01-29 00:44:53 +01003962 host->bounce_buffer_size = bounce_size;
3963
3964 /* Lie about this since we're bouncing */
3965 mmc->max_segs = max_blocks;
3966 mmc->max_seg_size = bounce_size;
3967 mmc->max_req_size = bounce_size;
3968
3969 pr_info("%s bounce up to %u segments into one, max segment size %u bytes\n",
3970 mmc_hostname(mmc), max_blocks, bounce_size);
Linus Walleijbd9b9022018-01-29 00:44:53 +01003971}
3972
Chunyan Zhang685e4442018-08-30 16:21:40 +08003973static inline bool sdhci_can_64bit_dma(struct sdhci_host *host)
3974{
3975 /*
3976 * According to SD Host Controller spec v4.10, bit[27] added from
3977 * version 4.10 in Capabilities Register is used as 64-bit System
3978 * Address support for V4 mode.
3979 */
3980 if (host->version >= SDHCI_SPEC_410 && host->v4_mode)
3981 return host->caps & SDHCI_CAN_64BIT_V4;
3982
3983 return host->caps & SDHCI_CAN_64BIT;
3984}
3985
Adrian Hunter52f53362016-06-29 16:24:15 +03003986int sdhci_setup_host(struct sdhci_host *host)
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003987{
3988 struct mmc_host *mmc;
Arindam Nathf2119df2011-05-05 12:18:57 +05303989 u32 max_current_caps;
3990 unsigned int ocr_avail;
Adrian Hunterf5fa92e2014-09-24 10:27:32 +03003991 unsigned int override_timeout_clk;
Dong Aisheng59241752015-07-22 20:53:07 +08003992 u32 max_clk;
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003993 int ret;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003994
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003995 WARN_ON(host == NULL);
3996 if (host == NULL)
3997 return -EINVAL;
Pierre Ossmand129bce2006-03-24 03:18:17 -08003998
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01003999 mmc = host->mmc;
Pierre Ossmand129bce2006-03-24 03:18:17 -08004000
Jon Hunterefba1422016-07-12 14:53:36 +01004001 /*
4002 * If there are external regulators, get them. Note this must be done
4003 * early before resetting the host and reading the capabilities so that
4004 * the host can take the appropriate action if regulators are not
4005 * available.
4006 */
4007 ret = mmc_regulator_get_supply(mmc);
Wolfram Sang2a633032017-10-14 21:17:18 +02004008 if (ret)
Jon Hunterefba1422016-07-12 14:53:36 +01004009 return ret;
4010
Shawn Lin06ebc602017-07-19 15:55:49 +08004011 DBG("Version: 0x%08x | Present: 0x%08x\n",
4012 sdhci_readw(host, SDHCI_HOST_VERSION),
4013 sdhci_readl(host, SDHCI_PRESENT_STATE));
4014 DBG("Caps: 0x%08x | Caps_1: 0x%08x\n",
4015 sdhci_readl(host, SDHCI_CAPABILITIES),
4016 sdhci_readl(host, SDHCI_CAPABILITIES_1));
4017
Adrian Hunter6132a3b2016-06-29 16:24:18 +03004018 sdhci_read_caps(host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08004019
Adrian Hunterf5fa92e2014-09-24 10:27:32 +03004020 override_timeout_clk = host->timeout_clk;
4021
Chunyan Zhang18da1992018-08-30 16:21:37 +08004022 if (host->version > SDHCI_SPEC_420) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01004023 pr_err("%s: Unknown controller version (%d). You may experience problems.\n",
4024 mmc_hostname(mmc), host->version);
Pierre Ossman4a965502006-06-30 02:22:29 -07004025 }
4026
Adrian Hunter75d27ea2019-12-17 11:53:49 +02004027 if (host->quirks & SDHCI_QUIRK_BROKEN_CQE)
4028 mmc->caps2 &= ~MMC_CAP2_CQE;
4029
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01004030 if (host->quirks & SDHCI_QUIRK_FORCE_DMA)
Richard Röjforsa13abc72009-09-22 16:45:30 -07004031 host->flags |= SDHCI_USE_SDMA;
Adrian Hunter28da3582016-06-29 16:24:17 +03004032 else if (!(host->caps & SDHCI_CAN_DO_SDMA))
Richard Röjforsa13abc72009-09-22 16:45:30 -07004033 DBG("Controller doesn't have SDMA capability\n");
Pierre Ossman67435272006-06-30 02:22:31 -07004034 else
Richard Röjforsa13abc72009-09-22 16:45:30 -07004035 host->flags |= SDHCI_USE_SDMA;
Pierre Ossmand129bce2006-03-24 03:18:17 -08004036
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01004037 if ((host->quirks & SDHCI_QUIRK_BROKEN_DMA) &&
Richard Röjforsa13abc72009-09-22 16:45:30 -07004038 (host->flags & SDHCI_USE_SDMA)) {
Rolf Eike Beercee687c2007-11-02 15:22:30 +01004039 DBG("Disabling DMA as it is marked broken\n");
Richard Röjforsa13abc72009-09-22 16:45:30 -07004040 host->flags &= ~SDHCI_USE_SDMA;
Feng Tang7c168e32007-09-30 12:44:18 +02004041 }
4042
Arindam Nathf2119df2011-05-05 12:18:57 +05304043 if ((host->version >= SDHCI_SPEC_200) &&
Adrian Hunter28da3582016-06-29 16:24:17 +03004044 (host->caps & SDHCI_CAN_DO_ADMA2))
Richard Röjforsa13abc72009-09-22 16:45:30 -07004045 host->flags |= SDHCI_USE_ADMA;
Pierre Ossman2134a922008-06-28 18:28:51 +02004046
4047 if ((host->quirks & SDHCI_QUIRK_BROKEN_ADMA) &&
4048 (host->flags & SDHCI_USE_ADMA)) {
4049 DBG("Disabling ADMA as it is marked broken\n");
4050 host->flags &= ~SDHCI_USE_ADMA;
4051 }
4052
Chunyan Zhang685e4442018-08-30 16:21:40 +08004053 if (sdhci_can_64bit_dma(host))
Adrian Huntere57a5f62014-11-04 12:42:46 +02004054 host->flags |= SDHCI_USE_64_BIT_DMA;
4055
Chunyan Zhang18e762e2020-01-16 16:21:47 +05304056 if (host->use_external_dma) {
4057 ret = sdhci_external_dma_init(host);
4058 if (ret == -EPROBE_DEFER)
4059 goto unreg;
4060 /*
4061 * Fall back to use the DMA/PIO integrated in standard SDHCI
4062 * instead of external DMA devices.
4063 */
4064 else if (ret)
4065 sdhci_switch_external_dma(host, false);
4066 /* Disable internal DMA sources */
4067 else
4068 host->flags &= ~(SDHCI_USE_SDMA | SDHCI_USE_ADMA);
4069 }
4070
Richard Röjforsa13abc72009-09-22 16:45:30 -07004071 if (host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA)) {
Adrian Hunter4ee7dde2019-09-23 12:08:09 +02004072 if (host->ops->set_dma_mask)
4073 ret = host->ops->set_dma_mask(host);
4074 else
4075 ret = sdhci_set_dma_mask(host);
Alexandre Courbot7b913692016-03-07 11:07:55 +09004076
4077 if (!ret && host->ops->enable_dma)
4078 ret = host->ops->enable_dma(host);
4079
4080 if (ret) {
4081 pr_warn("%s: No suitable DMA available - falling back to PIO\n",
4082 mmc_hostname(mmc));
4083 host->flags &= ~(SDHCI_USE_SDMA | SDHCI_USE_ADMA);
4084
4085 ret = 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -08004086 }
4087 }
4088
Chunyan Zhang917a0c52018-08-30 16:21:39 +08004089 /* SDMA does not support 64-bit DMA if v4 mode not set */
4090 if ((host->flags & SDHCI_USE_64_BIT_DMA) && !host->v4_mode)
Adrian Huntere57a5f62014-11-04 12:42:46 +02004091 host->flags &= ~SDHCI_USE_SDMA;
4092
Pierre Ossman2134a922008-06-28 18:28:51 +02004093 if (host->flags & SDHCI_USE_ADMA) {
Russell Kinge66e61c2016-01-26 13:39:55 +00004094 dma_addr_t dma;
4095 void *buf;
4096
Veerabhadrarao Badigantia663f642020-01-20 20:08:38 +05304097 if (!(host->flags & SDHCI_USE_64_BIT_DMA))
4098 host->alloc_desc_sz = SDHCI_ADMA2_32_DESC_SZ;
4099 else if (!host->alloc_desc_sz)
4100 host->alloc_desc_sz = SDHCI_ADMA2_64_DESC_SZ(host);
4101
4102 host->desc_sz = host->alloc_desc_sz;
4103 host->adma_table_sz = host->adma_table_cnt * host->desc_sz;
Russell Kinge66e61c2016-01-26 13:39:55 +00004104
Adrian Hunter04a5ae62015-11-26 14:00:49 +02004105 host->align_buffer_sz = SDHCI_MAX_SEGS * SDHCI_ADMA2_ALIGN;
Chunyan Zhang685e4442018-08-30 16:21:40 +08004106 /*
4107 * Use zalloc to zero the reserved high 32-bits of 128-bit
4108 * descriptors so that they never need to be written.
4109 */
Luis Chamberlain750afb02019-01-04 09:23:09 +01004110 buf = dma_alloc_coherent(mmc_dev(mmc),
4111 host->align_buffer_sz + host->adma_table_sz,
4112 &dma, GFP_KERNEL);
Russell Kinge66e61c2016-01-26 13:39:55 +00004113 if (!buf) {
Joe Perches66061102014-09-12 14:56:56 -07004114 pr_warn("%s: Unable to allocate ADMA buffers - falling back to standard DMA\n",
Pierre Ossman2134a922008-06-28 18:28:51 +02004115 mmc_hostname(mmc));
4116 host->flags &= ~SDHCI_USE_ADMA;
Russell Kinge66e61c2016-01-26 13:39:55 +00004117 } else if ((dma + host->align_buffer_sz) &
4118 (SDHCI_ADMA2_DESC_ALIGN - 1)) {
Joe Perches66061102014-09-12 14:56:56 -07004119 pr_warn("%s: unable to allocate aligned ADMA descriptor\n",
4120 mmc_hostname(mmc));
Russell Kingd1e49f72014-04-25 12:58:34 +01004121 host->flags &= ~SDHCI_USE_ADMA;
Russell Kinge66e61c2016-01-26 13:39:55 +00004122 dma_free_coherent(mmc_dev(mmc), host->align_buffer_sz +
4123 host->adma_table_sz, buf, dma);
4124 } else {
4125 host->align_buffer = buf;
4126 host->align_addr = dma;
Russell Kingedd63fc2016-01-26 13:39:50 +00004127
Russell Kinge66e61c2016-01-26 13:39:55 +00004128 host->adma_table = buf + host->align_buffer_sz;
4129 host->adma_addr = dma + host->align_buffer_sz;
4130 }
Pierre Ossman2134a922008-06-28 18:28:51 +02004131 }
4132
Pierre Ossman76591502008-07-21 00:32:11 +02004133 /*
4134 * If we use DMA, then it's up to the caller to set the DMA
4135 * mask, but PIO does not need the hw shim so we set a new
4136 * mask here in that case.
4137 */
Richard Röjforsa13abc72009-09-22 16:45:30 -07004138 if (!(host->flags & (SDHCI_USE_SDMA | SDHCI_USE_ADMA))) {
Pierre Ossman76591502008-07-21 00:32:11 +02004139 host->dma_mask = DMA_BIT_MASK(64);
Markus Mayer4e743f12014-07-03 13:27:42 -07004140 mmc_dev(mmc)->dma_mask = &host->dma_mask;
Pierre Ossman76591502008-07-21 00:32:11 +02004141 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08004142
Zhangfei Gaoc4687d52010-08-20 14:02:36 -04004143 if (host->version >= SDHCI_SPEC_300)
Masahiro Yamadaa8e809e2020-04-08 16:21:05 +09004144 host->max_clk = FIELD_GET(SDHCI_CLOCK_V3_BASE_MASK, host->caps);
Zhangfei Gaoc4687d52010-08-20 14:02:36 -04004145 else
Masahiro Yamadaa8e809e2020-04-08 16:21:05 +09004146 host->max_clk = FIELD_GET(SDHCI_CLOCK_BASE_MASK, host->caps);
Zhangfei Gaoc4687d52010-08-20 14:02:36 -04004147
Pierre Ossmand129bce2006-03-24 03:18:17 -08004148 host->max_clk *= 1000000;
Anton Vorontsovf27f47e2010-05-26 14:41:53 -07004149 if (host->max_clk == 0 || host->quirks &
4150 SDHCI_QUIRK_CAP_CLOCK_BASE_BROKEN) {
Ben Dooks4240ff02009-03-17 00:13:57 +03004151 if (!host->ops->get_max_clock) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01004152 pr_err("%s: Hardware doesn't specify base clock frequency.\n",
4153 mmc_hostname(mmc));
Adrian Huntereb5c20d2016-04-12 14:25:08 +03004154 ret = -ENODEV;
4155 goto undma;
Ben Dooks4240ff02009-03-17 00:13:57 +03004156 }
4157 host->max_clk = host->ops->get_max_clock(host);
4158 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08004159
4160 /*
Arindam Nathc3ed3872011-05-05 12:19:06 +05304161 * In case of Host Controller v3.00, find out whether clock
4162 * multiplier is supported.
4163 */
Masahiro Yamadaa8e809e2020-04-08 16:21:05 +09004164 host->clk_mul = FIELD_GET(SDHCI_CLOCK_MUL_MASK, host->caps1);
Arindam Nathc3ed3872011-05-05 12:19:06 +05304165
4166 /*
4167 * In case the value in Clock Multiplier is 0, then programmable
4168 * clock mode is not supported, otherwise the actual clock
4169 * multiplier is one more than the value of Clock Multiplier
4170 * in the Capabilities Register.
4171 */
4172 if (host->clk_mul)
4173 host->clk_mul += 1;
4174
4175 /*
Pierre Ossmand129bce2006-03-24 03:18:17 -08004176 * Set host parameters.
4177 */
Dong Aisheng59241752015-07-22 20:53:07 +08004178 max_clk = host->max_clk;
4179
Marek Szyprowskice5f0362010-08-10 18:01:56 -07004180 if (host->ops->get_min_clock)
Anton Vorontsova9e58f22009-07-29 15:04:16 -07004181 mmc->f_min = host->ops->get_min_clock(host);
Arindam Nathc3ed3872011-05-05 12:19:06 +05304182 else if (host->version >= SDHCI_SPEC_300) {
Michał Mirosław2a187d02020-01-15 10:54:35 +01004183 if (host->clk_mul)
Dong Aisheng59241752015-07-22 20:53:07 +08004184 max_clk = host->max_clk * host->clk_mul;
Michał Mirosław2a187d02020-01-15 10:54:35 +01004185 /*
4186 * Divided Clock Mode minimum clock rate is always less than
4187 * Programmable Clock Mode minimum clock rate.
4188 */
4189 mmc->f_min = host->max_clk / SDHCI_MAX_DIV_SPEC_300;
Arindam Nathc3ed3872011-05-05 12:19:06 +05304190 } else
Zhangfei Gao03975262010-09-20 15:15:18 -04004191 mmc->f_min = host->max_clk / SDHCI_MAX_DIV_SPEC_200;
Philip Rakity15ec4462010-11-19 16:48:39 -05004192
Adrian Hunterd310ae42016-04-12 14:25:07 +03004193 if (!mmc->f_max || mmc->f_max > max_clk)
Dong Aisheng59241752015-07-22 20:53:07 +08004194 mmc->f_max = max_clk;
4195
Aisheng Dong28aab052014-08-27 15:26:31 +08004196 if (!(host->quirks & SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK)) {
Masahiro Yamadaa8e809e2020-04-08 16:21:05 +09004197 host->timeout_clk = FIELD_GET(SDHCI_TIMEOUT_CLK_MASK, host->caps);
Shawn Lin8cc35282017-03-24 15:50:12 +08004198
4199 if (host->caps & SDHCI_TIMEOUT_CLK_UNIT)
4200 host->timeout_clk *= 1000;
4201
Aisheng Dong28aab052014-08-27 15:26:31 +08004202 if (host->timeout_clk == 0) {
Shawn Lin8cc35282017-03-24 15:50:12 +08004203 if (!host->ops->get_timeout_clock) {
Aisheng Dong28aab052014-08-27 15:26:31 +08004204 pr_err("%s: Hardware doesn't specify timeout clock frequency.\n",
4205 mmc_hostname(mmc));
Adrian Huntereb5c20d2016-04-12 14:25:08 +03004206 ret = -ENODEV;
4207 goto undma;
Aisheng Dong28aab052014-08-27 15:26:31 +08004208 }
Andy Shevchenko272308c2011-08-03 18:36:00 +03004209
Shawn Lin8cc35282017-03-24 15:50:12 +08004210 host->timeout_clk =
4211 DIV_ROUND_UP(host->ops->get_timeout_clock(host),
4212 1000);
4213 }
Andy Shevchenko272308c2011-08-03 18:36:00 +03004214
Adrian Hunter99513622016-03-07 13:33:55 +02004215 if (override_timeout_clk)
4216 host->timeout_clk = override_timeout_clk;
4217
Aisheng Dong28aab052014-08-27 15:26:31 +08004218 mmc->max_busy_timeout = host->ops->get_max_timeout_count ?
Aisheng Donga6ff5ae2014-08-27 15:26:27 +08004219 host->ops->get_max_timeout_count(host) : 1 << 27;
Aisheng Dong28aab052014-08-27 15:26:31 +08004220 mmc->max_busy_timeout /= host->timeout_clk;
4221 }
Adrian Hunter58d12462011-06-28 17:16:03 +03004222
Adrian Huntera999fd92018-04-27 17:17:15 +05304223 if (host->quirks2 & SDHCI_QUIRK2_DISABLE_HW_TIMEOUT &&
4224 !host->ops->get_max_timeout_count)
4225 mmc->max_busy_timeout = 0;
4226
Andrei Warkentine89d4562011-05-23 15:06:37 -05004227 mmc->caps |= MMC_CAP_SDIO_IRQ | MMC_CAP_ERASE | MMC_CAP_CMD23;
Russell King781e9892014-04-25 12:55:46 +01004228 mmc->caps2 |= MMC_CAP2_SDIO_IRQ_NOTHREAD;
Andrei Warkentine89d4562011-05-23 15:06:37 -05004229
4230 if (host->quirks & SDHCI_QUIRK_MULTIBLOCK_READ_ACMD12)
4231 host->flags |= SDHCI_AUTO_CMD12;
Anton Vorontsov5fe23c72009-06-18 00:14:08 +04004232
Chunyan Zhang7ed71a92018-08-30 16:21:43 +08004233 /*
4234 * For v3 mode, Auto-CMD23 stuff only works in ADMA or PIO.
4235 * For v4 mode, SDMA may use Auto-CMD23 as well.
4236 */
Andrei Warkentin4f3d3e92011-05-25 10:42:50 -04004237 if ((host->version >= SDHCI_SPEC_300) &&
Andrei Warkentin8edf63712011-05-23 15:06:39 -05004238 ((host->flags & SDHCI_USE_ADMA) ||
Chunyan Zhang7ed71a92018-08-30 16:21:43 +08004239 !(host->flags & SDHCI_USE_SDMA) || host->v4_mode) &&
Scott Branden3bfa6f02015-02-09 16:06:28 -08004240 !(host->quirks2 & SDHCI_QUIRK2_ACMD23_BROKEN)) {
Andrei Warkentin8edf63712011-05-23 15:06:39 -05004241 host->flags |= SDHCI_AUTO_CMD23;
Adrian Hunterf4218652017-03-20 19:50:39 +02004242 DBG("Auto-CMD23 available\n");
Andrei Warkentin8edf63712011-05-23 15:06:39 -05004243 } else {
Adrian Hunterf4218652017-03-20 19:50:39 +02004244 DBG("Auto-CMD23 unavailable\n");
Andrei Warkentin8edf63712011-05-23 15:06:39 -05004245 }
4246
Philip Rakity15ec4462010-11-19 16:48:39 -05004247 /*
4248 * A controller may support 8-bit width, but the board itself
4249 * might not have the pins brought out. Boards that support
4250 * 8-bit width must set "mmc->caps |= MMC_CAP_8_BIT_DATA;" in
4251 * their platform code before calling sdhci_add_host(), and we
4252 * won't assume 8-bit width for hosts without that CAP.
4253 */
Anton Vorontsov5fe23c72009-06-18 00:14:08 +04004254 if (!(host->quirks & SDHCI_QUIRK_FORCE_1_BIT_DATA))
Philip Rakity15ec4462010-11-19 16:48:39 -05004255 mmc->caps |= MMC_CAP_4_BIT_DATA;
Pierre Ossmand129bce2006-03-24 03:18:17 -08004256
Jerry Huang63ef5d82012-10-25 13:47:19 +08004257 if (host->quirks2 & SDHCI_QUIRK2_HOST_NO_CMD23)
4258 mmc->caps &= ~MMC_CAP_CMD23;
4259
Adrian Hunter28da3582016-06-29 16:24:17 +03004260 if (host->caps & SDHCI_CAN_DO_HISPD)
Zhangfei Gaoa29e7e12010-08-16 21:15:32 -04004261 mmc->caps |= MMC_CAP_SD_HIGHSPEED | MMC_CAP_MMC_HIGHSPEED;
Pierre Ossmancd9277c2007-02-18 12:07:47 +01004262
Jaehoon Chung176d1ed2010-09-27 09:42:20 +01004263 if ((host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION) &&
Jaehoon Chung860951c2016-06-21 10:13:26 +09004264 mmc_card_is_removable(mmc) &&
Arnd Bergmann287980e2016-05-27 23:23:25 +02004265 mmc_gpio_get_cd(host->mmc) < 0)
Anton Vorontsov68d1fb72009-03-17 00:13:52 +03004266 mmc->caps |= MMC_CAP_NEEDS_POLL;
4267
Tim Kryger3a48edc2014-06-13 10:13:56 -07004268 if (!IS_ERR(mmc->supply.vqmmc)) {
4269 ret = regulator_enable(mmc->supply.vqmmc);
Stefan Agner1b5190c2018-07-05 14:18:19 +02004270
4271 /* If vqmmc provides no 1.8V signalling, then there's no UHS */
Tim Kryger3a48edc2014-06-13 10:13:56 -07004272 if (!regulator_is_supported_voltage(mmc->supply.vqmmc, 1700000,
4273 1950000))
Adrian Hunter28da3582016-06-29 16:24:17 +03004274 host->caps1 &= ~(SDHCI_SUPPORT_SDR104 |
4275 SDHCI_SUPPORT_SDR50 |
4276 SDHCI_SUPPORT_DDR50);
Stefan Agner1b5190c2018-07-05 14:18:19 +02004277
4278 /* In eMMC case vqmmc might be a fixed 1.8V regulator */
4279 if (!regulator_is_supported_voltage(mmc->supply.vqmmc, 2700000,
4280 3600000))
4281 host->flags &= ~SDHCI_SIGNALING_330;
4282
Chris Balla3361ab2013-03-11 17:51:53 -04004283 if (ret) {
4284 pr_warn("%s: Failed to enable vqmmc regulator: %d\n",
4285 mmc_hostname(mmc), ret);
Adrian Hunter4bb74312014-11-06 15:19:04 +02004286 mmc->supply.vqmmc = ERR_PTR(-EINVAL);
Chris Balla3361ab2013-03-11 17:51:53 -04004287 }
Kevin Liu8363c372012-11-17 17:55:51 -05004288 }
Philip Rakity6231f3d2012-07-23 15:56:23 -07004289
Adrian Hunter28da3582016-06-29 16:24:17 +03004290 if (host->quirks2 & SDHCI_QUIRK2_NO_1_8_V) {
4291 host->caps1 &= ~(SDHCI_SUPPORT_SDR104 | SDHCI_SUPPORT_SDR50 |
4292 SDHCI_SUPPORT_DDR50);
Kishon Vijay Abraham Ic16bc9a2018-04-27 17:17:14 +05304293 /*
4294 * The SDHCI controller in a SoC might support HS200/HS400
4295 * (indicated using mmc-hs200-1_8v/mmc-hs400-1_8v dt property),
4296 * but if the board is modeled such that the IO lines are not
4297 * connected to 1.8v then HS200/HS400 cannot be supported.
4298 * Disable HS200/HS400 if the board does not have 1.8v connected
4299 * to the IO lines. (Applicable for other modes in 1.8v)
4300 */
4301 mmc->caps2 &= ~(MMC_CAP2_HSX00_1_8V | MMC_CAP2_HS400_ES);
4302 mmc->caps &= ~(MMC_CAP_1_8V_DDR | MMC_CAP_UHS);
Adrian Hunter28da3582016-06-29 16:24:17 +03004303 }
Daniel Drake6a661802012-11-25 13:01:19 -05004304
Al Cooper4188bba2012-03-16 15:54:17 -04004305 /* Any UHS-I mode in caps implies SDR12 and SDR25 support. */
Adrian Hunter28da3582016-06-29 16:24:17 +03004306 if (host->caps1 & (SDHCI_SUPPORT_SDR104 | SDHCI_SUPPORT_SDR50 |
4307 SDHCI_SUPPORT_DDR50))
Arindam Nathf2119df2011-05-05 12:18:57 +05304308 mmc->caps |= MMC_CAP_UHS_SDR12 | MMC_CAP_UHS_SDR25;
4309
4310 /* SDR104 supports also implies SDR50 support */
Adrian Hunter28da3582016-06-29 16:24:17 +03004311 if (host->caps1 & SDHCI_SUPPORT_SDR104) {
Arindam Nathf2119df2011-05-05 12:18:57 +05304312 mmc->caps |= MMC_CAP_UHS_SDR104 | MMC_CAP_UHS_SDR50;
Giuseppe CAVALLARO156e14b2013-06-12 08:16:38 +02004313 /* SD3.0: SDR104 is supported so (for eMMC) the caps2
4314 * field can be promoted to support HS200.
4315 */
Adrian Hunter549c0b12014-11-06 15:19:05 +02004316 if (!(host->quirks2 & SDHCI_QUIRK2_BROKEN_HS200))
David Cohen13868bf2013-10-29 10:58:26 -07004317 mmc->caps2 |= MMC_CAP2_HS200;
Adrian Hunter28da3582016-06-29 16:24:17 +03004318 } else if (host->caps1 & SDHCI_SUPPORT_SDR50) {
Arindam Nathf2119df2011-05-05 12:18:57 +05304319 mmc->caps |= MMC_CAP_UHS_SDR50;
Adrian Hunter28da3582016-06-29 16:24:17 +03004320 }
Arindam Nathf2119df2011-05-05 12:18:57 +05304321
Adrian Huntere9fb05d2014-11-06 15:19:06 +02004322 if (host->quirks2 & SDHCI_QUIRK2_CAPS_BIT63_FOR_HS400 &&
Adrian Hunter28da3582016-06-29 16:24:17 +03004323 (host->caps1 & SDHCI_SUPPORT_HS400))
Adrian Huntere9fb05d2014-11-06 15:19:06 +02004324 mmc->caps2 |= MMC_CAP2_HS400;
4325
Adrian Hunter549c0b12014-11-06 15:19:05 +02004326 if ((mmc->caps2 & MMC_CAP2_HSX00_1_2V) &&
4327 (IS_ERR(mmc->supply.vqmmc) ||
4328 !regulator_is_supported_voltage(mmc->supply.vqmmc, 1100000,
4329 1300000)))
4330 mmc->caps2 &= ~MMC_CAP2_HSX00_1_2V;
4331
Adrian Hunter28da3582016-06-29 16:24:17 +03004332 if ((host->caps1 & SDHCI_SUPPORT_DDR50) &&
4333 !(host->quirks2 & SDHCI_QUIRK2_BROKEN_DDR50))
Arindam Nathf2119df2011-05-05 12:18:57 +05304334 mmc->caps |= MMC_CAP_UHS_DDR50;
4335
Girish K S069c9f12012-01-06 09:56:39 +05304336 /* Does the host need tuning for SDR50? */
Adrian Hunter28da3582016-06-29 16:24:17 +03004337 if (host->caps1 & SDHCI_USE_SDR50_TUNING)
Arindam Nathb513ea22011-05-05 12:19:04 +05304338 host->flags |= SDHCI_SDR50_NEEDS_TUNING;
4339
Arindam Nathd6d50a12011-05-05 12:18:59 +05304340 /* Driver Type(s) (A, C, D) supported by the host */
Adrian Hunter28da3582016-06-29 16:24:17 +03004341 if (host->caps1 & SDHCI_DRIVER_TYPE_A)
Arindam Nathd6d50a12011-05-05 12:18:59 +05304342 mmc->caps |= MMC_CAP_DRIVER_TYPE_A;
Adrian Hunter28da3582016-06-29 16:24:17 +03004343 if (host->caps1 & SDHCI_DRIVER_TYPE_C)
Arindam Nathd6d50a12011-05-05 12:18:59 +05304344 mmc->caps |= MMC_CAP_DRIVER_TYPE_C;
Adrian Hunter28da3582016-06-29 16:24:17 +03004345 if (host->caps1 & SDHCI_DRIVER_TYPE_D)
Arindam Nathd6d50a12011-05-05 12:18:59 +05304346 mmc->caps |= MMC_CAP_DRIVER_TYPE_D;
4347
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05304348 /* Initial value for re-tuning timer count */
Masahiro Yamadaa8e809e2020-04-08 16:21:05 +09004349 host->tuning_count = FIELD_GET(SDHCI_RETUNING_TIMER_COUNT_MASK,
4350 host->caps1);
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05304351
4352 /*
4353 * In case Re-tuning Timer is not disabled, the actual value of
4354 * re-tuning timer will be 2 ^ (n - 1).
4355 */
4356 if (host->tuning_count)
4357 host->tuning_count = 1 << (host->tuning_count - 1);
4358
4359 /* Re-tuning mode supported by the Host Controller */
Masahiro Yamadaa8e809e2020-04-08 16:21:05 +09004360 host->tuning_mode = FIELD_GET(SDHCI_RETUNING_MODE_MASK, host->caps1);
Arindam Nathcf2b5ee2011-05-05 12:19:07 +05304361
Takashi Iwai8f230f42010-12-08 10:04:30 +01004362 ocr_avail = 0;
Philip Rakitybad37e12012-05-27 18:36:44 -07004363
Arindam Nathf2119df2011-05-05 12:18:57 +05304364 /*
4365 * According to SD Host Controller spec v3.00, if the Host System
4366 * can afford more than 150mA, Host Driver should set XPC to 1. Also
4367 * the value is meaningful only if Voltage Support in the Capabilities
4368 * register is set. The actual current value is 4 times the register
4369 * value.
4370 */
4371 max_current_caps = sdhci_readl(host, SDHCI_MAX_CURRENT);
Tim Kryger3a48edc2014-06-13 10:13:56 -07004372 if (!max_current_caps && !IS_ERR(mmc->supply.vmmc)) {
Chuanxiao.Dongae906032014-08-01 14:00:13 +08004373 int curr = regulator_get_current_limit(mmc->supply.vmmc);
Philip Rakitybad37e12012-05-27 18:36:44 -07004374 if (curr > 0) {
4375
4376 /* convert to SDHCI_MAX_CURRENT format */
4377 curr = curr/1000; /* convert to mA */
4378 curr = curr/SDHCI_MAX_CURRENT_MULTIPLIER;
4379
4380 curr = min_t(u32, curr, SDHCI_MAX_CURRENT_LIMIT);
4381 max_current_caps =
4382 (curr << SDHCI_MAX_CURRENT_330_SHIFT) |
4383 (curr << SDHCI_MAX_CURRENT_300_SHIFT) |
4384 (curr << SDHCI_MAX_CURRENT_180_SHIFT);
4385 }
4386 }
Arindam Nathf2119df2011-05-05 12:18:57 +05304387
Adrian Hunter28da3582016-06-29 16:24:17 +03004388 if (host->caps & SDHCI_CAN_VDD_330) {
Takashi Iwai8f230f42010-12-08 10:04:30 +01004389 ocr_avail |= MMC_VDD_32_33 | MMC_VDD_33_34;
Arindam Nathf2119df2011-05-05 12:18:57 +05304390
Aaron Lu55c46652012-07-04 13:31:48 +08004391 mmc->max_current_330 = ((max_current_caps &
Arindam Nathf2119df2011-05-05 12:18:57 +05304392 SDHCI_MAX_CURRENT_330_MASK) >>
4393 SDHCI_MAX_CURRENT_330_SHIFT) *
4394 SDHCI_MAX_CURRENT_MULTIPLIER;
Arindam Nathf2119df2011-05-05 12:18:57 +05304395 }
Adrian Hunter28da3582016-06-29 16:24:17 +03004396 if (host->caps & SDHCI_CAN_VDD_300) {
Takashi Iwai8f230f42010-12-08 10:04:30 +01004397 ocr_avail |= MMC_VDD_29_30 | MMC_VDD_30_31;
Arindam Nathf2119df2011-05-05 12:18:57 +05304398
Aaron Lu55c46652012-07-04 13:31:48 +08004399 mmc->max_current_300 = ((max_current_caps &
Arindam Nathf2119df2011-05-05 12:18:57 +05304400 SDHCI_MAX_CURRENT_300_MASK) >>
4401 SDHCI_MAX_CURRENT_300_SHIFT) *
4402 SDHCI_MAX_CURRENT_MULTIPLIER;
Arindam Nathf2119df2011-05-05 12:18:57 +05304403 }
Adrian Hunter28da3582016-06-29 16:24:17 +03004404 if (host->caps & SDHCI_CAN_VDD_180) {
Takashi Iwai8f230f42010-12-08 10:04:30 +01004405 ocr_avail |= MMC_VDD_165_195;
4406
Aaron Lu55c46652012-07-04 13:31:48 +08004407 mmc->max_current_180 = ((max_current_caps &
Arindam Nathf2119df2011-05-05 12:18:57 +05304408 SDHCI_MAX_CURRENT_180_MASK) >>
4409 SDHCI_MAX_CURRENT_180_SHIFT) *
4410 SDHCI_MAX_CURRENT_MULTIPLIER;
Arindam Nathf2119df2011-05-05 12:18:57 +05304411 }
4412
Ulf Hansson5fd26c72015-06-05 11:40:08 +02004413 /* If OCR set by host, use it instead. */
4414 if (host->ocr_mask)
4415 ocr_avail = host->ocr_mask;
4416
4417 /* If OCR set by external regulators, give it highest prio. */
Tim Kryger3a48edc2014-06-13 10:13:56 -07004418 if (mmc->ocr_avail)
Tim Kryger52221612014-06-25 00:25:34 -07004419 ocr_avail = mmc->ocr_avail;
Tim Kryger3a48edc2014-06-13 10:13:56 -07004420
Takashi Iwai8f230f42010-12-08 10:04:30 +01004421 mmc->ocr_avail = ocr_avail;
4422 mmc->ocr_avail_sdio = ocr_avail;
4423 if (host->ocr_avail_sdio)
4424 mmc->ocr_avail_sdio &= host->ocr_avail_sdio;
4425 mmc->ocr_avail_sd = ocr_avail;
4426 if (host->ocr_avail_sd)
4427 mmc->ocr_avail_sd &= host->ocr_avail_sd;
4428 else /* normal SD controllers don't support 1.8V */
4429 mmc->ocr_avail_sd &= ~MMC_VDD_165_195;
4430 mmc->ocr_avail_mmc = ocr_avail;
4431 if (host->ocr_avail_mmc)
4432 mmc->ocr_avail_mmc &= host->ocr_avail_mmc;
Pierre Ossman146ad662006-06-30 02:22:23 -07004433
4434 if (mmc->ocr_avail == 0) {
Marek Vasut2e4456f2015-11-18 10:47:02 +01004435 pr_err("%s: Hardware doesn't report any support voltages.\n",
4436 mmc_hostname(mmc));
Adrian Huntereb5c20d2016-04-12 14:25:08 +03004437 ret = -ENODEV;
4438 goto unreg;
Pierre Ossman146ad662006-06-30 02:22:23 -07004439 }
4440
Adrian Hunter8cb851a2016-06-29 16:24:16 +03004441 if ((mmc->caps & (MMC_CAP_UHS_SDR12 | MMC_CAP_UHS_SDR25 |
4442 MMC_CAP_UHS_SDR50 | MMC_CAP_UHS_SDR104 |
4443 MMC_CAP_UHS_DDR50 | MMC_CAP_1_8V_DDR)) ||
4444 (mmc->caps2 & (MMC_CAP2_HS200_1_8V_SDR | MMC_CAP2_HS400_1_8V)))
4445 host->flags |= SDHCI_SIGNALING_180;
4446
4447 if (mmc->caps2 & MMC_CAP2_HSX00_1_2V)
4448 host->flags |= SDHCI_SIGNALING_120;
4449
Pierre Ossmand129bce2006-03-24 03:18:17 -08004450 spin_lock_init(&host->lock);
4451
4452 /*
Adrian Hunterac005312014-12-05 19:25:28 +02004453 * Maximum number of sectors in one transfer. Limited by SDMA boundary
4454 * size (512KiB). Note some tuning modes impose a 4MiB limit, but this
4455 * is less anyway.
Pierre Ossmand129bce2006-03-24 03:18:17 -08004456 */
Pierre Ossman55db8902006-11-21 17:55:45 +01004457 mmc->max_req_size = 524288;
Pierre Ossmand129bce2006-03-24 03:18:17 -08004458
4459 /*
Ulf Hansson250dcd12017-11-27 11:28:50 +01004460 * Maximum number of segments. Depends on if the hardware
4461 * can do scatter/gather or not.
4462 */
4463 if (host->flags & SDHCI_USE_ADMA) {
4464 mmc->max_segs = SDHCI_MAX_SEGS;
4465 } else if (host->flags & SDHCI_USE_SDMA) {
4466 mmc->max_segs = 1;
4467 if (swiotlb_max_segment()) {
4468 unsigned int max_req_size = (1 << IO_TLB_SHIFT) *
4469 IO_TLB_SEGSIZE;
4470 mmc->max_req_size = min(mmc->max_req_size,
4471 max_req_size);
4472 }
4473 } else { /* PIO */
4474 mmc->max_segs = SDHCI_MAX_SEGS;
4475 }
4476
4477 /*
Pierre Ossmand129bce2006-03-24 03:18:17 -08004478 * Maximum segment size. Could be one segment with the maximum number
Pierre Ossman2134a922008-06-28 18:28:51 +02004479 * of bytes. When doing hardware scatter/gather, each entry cannot
4480 * be larger than 64 KiB though.
Pierre Ossmand129bce2006-03-24 03:18:17 -08004481 */
Olof Johansson30652aa2011-01-01 18:37:32 -06004482 if (host->flags & SDHCI_USE_ADMA) {
4483 if (host->quirks & SDHCI_QUIRK_BROKEN_ADMA_ZEROLEN_DESC)
4484 mmc->max_seg_size = 65535;
4485 else
4486 mmc->max_seg_size = 65536;
4487 } else {
Pierre Ossman2134a922008-06-28 18:28:51 +02004488 mmc->max_seg_size = mmc->max_req_size;
Olof Johansson30652aa2011-01-01 18:37:32 -06004489 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08004490
4491 /*
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +01004492 * Maximum block size. This varies from controller to controller and
4493 * is specified in the capabilities register.
4494 */
Anton Vorontsov0633f652009-03-17 00:14:03 +03004495 if (host->quirks & SDHCI_QUIRK_FORCE_BLK_SZ_2048) {
4496 mmc->max_blk_size = 2;
4497 } else {
Adrian Hunter28da3582016-06-29 16:24:17 +03004498 mmc->max_blk_size = (host->caps & SDHCI_MAX_BLOCK_MASK) >>
Anton Vorontsov0633f652009-03-17 00:14:03 +03004499 SDHCI_MAX_BLOCK_SHIFT;
4500 if (mmc->max_blk_size >= 3) {
Joe Perches66061102014-09-12 14:56:56 -07004501 pr_warn("%s: Invalid maximum block size, assuming 512 bytes\n",
4502 mmc_hostname(mmc));
Anton Vorontsov0633f652009-03-17 00:14:03 +03004503 mmc->max_blk_size = 0;
4504 }
4505 }
4506
4507 mmc->max_blk_size = 512 << mmc->max_blk_size;
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +01004508
4509 /*
Pierre Ossman55db8902006-11-21 17:55:45 +01004510 * Maximum block count.
4511 */
Ben Dooks1388eef2009-06-14 12:40:53 +01004512 mmc->max_blk_count = (host->quirks & SDHCI_QUIRK_NO_MULTIBLOCK) ? 1 : 65535;
Pierre Ossman55db8902006-11-21 17:55:45 +01004513
Chunyan Zhanga68dd9a2018-10-25 10:12:36 +08004514 if (mmc->max_segs == 1)
Linus Walleijbd9b9022018-01-29 00:44:53 +01004515 /* This may alter mmc->*_blk_* parameters */
Chunyan Zhanga68dd9a2018-10-25 10:12:36 +08004516 sdhci_allocate_bounce_buffer(host);
Linus Walleijbd9b9022018-01-29 00:44:53 +01004517
Adrian Hunter52f53362016-06-29 16:24:15 +03004518 return 0;
4519
4520unreg:
4521 if (!IS_ERR(mmc->supply.vqmmc))
4522 regulator_disable(mmc->supply.vqmmc);
4523undma:
4524 if (host->align_buffer)
4525 dma_free_coherent(mmc_dev(mmc), host->align_buffer_sz +
4526 host->adma_table_sz, host->align_buffer,
4527 host->align_addr);
4528 host->adma_table = NULL;
4529 host->align_buffer = NULL;
4530
4531 return ret;
4532}
4533EXPORT_SYMBOL_GPL(sdhci_setup_host);
4534
Adrian Hunter4180ffa2017-03-20 19:50:45 +02004535void sdhci_cleanup_host(struct sdhci_host *host)
4536{
4537 struct mmc_host *mmc = host->mmc;
4538
4539 if (!IS_ERR(mmc->supply.vqmmc))
4540 regulator_disable(mmc->supply.vqmmc);
4541
4542 if (host->align_buffer)
4543 dma_free_coherent(mmc_dev(mmc), host->align_buffer_sz +
4544 host->adma_table_sz, host->align_buffer,
4545 host->align_addr);
Chunyan Zhang18e762e2020-01-16 16:21:47 +05304546
4547 if (host->use_external_dma)
4548 sdhci_external_dma_release(host);
4549
Adrian Hunter4180ffa2017-03-20 19:50:45 +02004550 host->adma_table = NULL;
4551 host->align_buffer = NULL;
4552}
4553EXPORT_SYMBOL_GPL(sdhci_cleanup_host);
4554
Adrian Hunter52f53362016-06-29 16:24:15 +03004555int __sdhci_add_host(struct sdhci_host *host)
4556{
Adrian Hunterc07a48c2019-04-05 15:40:20 +03004557 unsigned int flags = WQ_UNBOUND | WQ_MEM_RECLAIM | WQ_HIGHPRI;
Adrian Hunter52f53362016-06-29 16:24:15 +03004558 struct mmc_host *mmc = host->mmc;
4559 int ret;
4560
Adrian Hunterc07a48c2019-04-05 15:40:20 +03004561 host->complete_wq = alloc_workqueue("sdhci", flags, 0);
4562 if (!host->complete_wq)
4563 return -ENOMEM;
4564
4565 INIT_WORK(&host->complete_work, sdhci_complete_work);
Pierre Ossmand129bce2006-03-24 03:18:17 -08004566
Kees Cook2ee4f622017-10-24 08:03:45 -07004567 timer_setup(&host->timer, sdhci_timeout_timer, 0);
4568 timer_setup(&host->data_timer, sdhci_timeout_data_timer, 0);
Pierre Ossmand129bce2006-03-24 03:18:17 -08004569
Adrian Hunter250fb7b42014-12-05 19:41:10 +02004570 init_waitqueue_head(&host->buf_ready_int);
Arindam Nathb513ea22011-05-05 12:19:04 +05304571
Shawn Guo2af502c2013-07-05 14:38:55 +08004572 sdhci_init(host, 0);
4573
Russell King781e9892014-04-25 12:55:46 +01004574 ret = request_threaded_irq(host->irq, sdhci_irq, sdhci_thread_irq,
4575 IRQF_SHARED, mmc_hostname(mmc), host);
Mark Brown0fc81ee2012-07-02 14:26:15 +01004576 if (ret) {
4577 pr_err("%s: Failed to request IRQ %d: %d\n",
4578 mmc_hostname(mmc), host->irq, ret);
Adrian Hunterc07a48c2019-04-05 15:40:20 +03004579 goto unwq;
Mark Brown0fc81ee2012-07-02 14:26:15 +01004580 }
Pierre Ossmand129bce2006-03-24 03:18:17 -08004581
Adrian Hunter061d17a2016-04-12 14:25:09 +03004582 ret = sdhci_led_register(host);
Mark Brown0fc81ee2012-07-02 14:26:15 +01004583 if (ret) {
4584 pr_err("%s: Failed to register LED device: %d\n",
4585 mmc_hostname(mmc), ret);
Adrian Huntereb5c20d2016-04-12 14:25:08 +03004586 goto unirq;
Mark Brown0fc81ee2012-07-02 14:26:15 +01004587 }
Pierre Ossman2f730fe2008-03-17 10:29:38 +01004588
Adrian Huntereb5c20d2016-04-12 14:25:08 +03004589 ret = mmc_add_host(mmc);
4590 if (ret)
4591 goto unled;
Pierre Ossmand129bce2006-03-24 03:18:17 -08004592
Girish K Sa3c76eb2011-10-11 11:44:09 +05304593 pr_info("%s: SDHCI controller on %s [%s] using %s\n",
Kay Sieversd1b26862008-11-08 21:37:46 +01004594 mmc_hostname(mmc), host->hw_name, dev_name(mmc_dev(mmc)),
Chunyan Zhang18e762e2020-01-16 16:21:47 +05304595 host->use_external_dma ? "External DMA" :
Adrian Huntere57a5f62014-11-04 12:42:46 +02004596 (host->flags & SDHCI_USE_ADMA) ?
4597 (host->flags & SDHCI_USE_64_BIT_DMA) ? "ADMA 64-bit" : "ADMA" :
Richard Röjforsa13abc72009-09-22 16:45:30 -07004598 (host->flags & SDHCI_USE_SDMA) ? "DMA" : "PIO");
Pierre Ossmand129bce2006-03-24 03:18:17 -08004599
Anton Vorontsov7260cf52009-03-17 00:13:48 +03004600 sdhci_enable_card_detection(host);
4601
Pierre Ossmand129bce2006-03-24 03:18:17 -08004602 return 0;
4603
Adrian Huntereb5c20d2016-04-12 14:25:08 +03004604unled:
Adrian Hunter061d17a2016-04-12 14:25:09 +03004605 sdhci_led_unregister(host);
Adrian Huntereb5c20d2016-04-12 14:25:08 +03004606unirq:
Russell King03231f92014-04-25 12:57:12 +01004607 sdhci_do_reset(host, SDHCI_RESET_ALL);
Russell Kingb537f942014-04-25 12:56:01 +01004608 sdhci_writel(host, 0, SDHCI_INT_ENABLE);
4609 sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE);
Pierre Ossman2f730fe2008-03-17 10:29:38 +01004610 free_irq(host->irq, host);
Adrian Hunterc07a48c2019-04-05 15:40:20 +03004611unwq:
4612 destroy_workqueue(host->complete_wq);
Adrian Hunter52f53362016-06-29 16:24:15 +03004613
Pierre Ossmand129bce2006-03-24 03:18:17 -08004614 return ret;
4615}
Adrian Hunter52f53362016-06-29 16:24:15 +03004616EXPORT_SYMBOL_GPL(__sdhci_add_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08004617
Adrian Hunter52f53362016-06-29 16:24:15 +03004618int sdhci_add_host(struct sdhci_host *host)
4619{
4620 int ret;
4621
4622 ret = sdhci_setup_host(host);
4623 if (ret)
4624 return ret;
4625
Adrian Hunter4180ffa2017-03-20 19:50:45 +02004626 ret = __sdhci_add_host(host);
4627 if (ret)
4628 goto cleanup;
4629
4630 return 0;
4631
4632cleanup:
4633 sdhci_cleanup_host(host);
4634
4635 return ret;
Adrian Hunter52f53362016-06-29 16:24:15 +03004636}
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01004637EXPORT_SYMBOL_GPL(sdhci_add_host);
4638
Pierre Ossman1e728592008-04-16 19:13:13 +02004639void sdhci_remove_host(struct sdhci_host *host, int dead)
Pierre Ossmand129bce2006-03-24 03:18:17 -08004640{
Tim Kryger3a48edc2014-06-13 10:13:56 -07004641 struct mmc_host *mmc = host->mmc;
Pierre Ossman1e728592008-04-16 19:13:13 +02004642 unsigned long flags;
4643
4644 if (dead) {
4645 spin_lock_irqsave(&host->lock, flags);
4646
4647 host->flags |= SDHCI_DEVICE_DEAD;
4648
Adrian Hunter5d0d11c2016-06-29 16:24:31 +03004649 if (sdhci_has_requests(host)) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05304650 pr_err("%s: Controller removed during "
Markus Mayer4e743f12014-07-03 13:27:42 -07004651 " transfer!\n", mmc_hostname(mmc));
Adrian Hunter5d0d11c2016-06-29 16:24:31 +03004652 sdhci_error_out_mrqs(host, -ENOMEDIUM);
Pierre Ossman1e728592008-04-16 19:13:13 +02004653 }
4654
4655 spin_unlock_irqrestore(&host->lock, flags);
4656 }
4657
Anton Vorontsov7260cf52009-03-17 00:13:48 +03004658 sdhci_disable_card_detection(host);
4659
Markus Mayer4e743f12014-07-03 13:27:42 -07004660 mmc_remove_host(mmc);
Pierre Ossmand129bce2006-03-24 03:18:17 -08004661
Adrian Hunter061d17a2016-04-12 14:25:09 +03004662 sdhci_led_unregister(host);
Pierre Ossman2f730fe2008-03-17 10:29:38 +01004663
Pierre Ossman1e728592008-04-16 19:13:13 +02004664 if (!dead)
Russell King03231f92014-04-25 12:57:12 +01004665 sdhci_do_reset(host, SDHCI_RESET_ALL);
Pierre Ossmand129bce2006-03-24 03:18:17 -08004666
Russell Kingb537f942014-04-25 12:56:01 +01004667 sdhci_writel(host, 0, SDHCI_INT_ENABLE);
4668 sdhci_writel(host, 0, SDHCI_SIGNAL_ENABLE);
Pierre Ossmand129bce2006-03-24 03:18:17 -08004669 free_irq(host->irq, host);
4670
4671 del_timer_sync(&host->timer);
Adrian Hunterd7422fb2016-06-29 16:24:33 +03004672 del_timer_sync(&host->data_timer);
Pierre Ossmand129bce2006-03-24 03:18:17 -08004673
Adrian Hunterc07a48c2019-04-05 15:40:20 +03004674 destroy_workqueue(host->complete_wq);
Pierre Ossman2134a922008-06-28 18:28:51 +02004675
Tim Kryger3a48edc2014-06-13 10:13:56 -07004676 if (!IS_ERR(mmc->supply.vqmmc))
4677 regulator_disable(mmc->supply.vqmmc);
Philip Rakity6231f3d2012-07-23 15:56:23 -07004678
Russell Kingedd63fc2016-01-26 13:39:50 +00004679 if (host->align_buffer)
Russell Kinge66e61c2016-01-26 13:39:55 +00004680 dma_free_coherent(mmc_dev(mmc), host->align_buffer_sz +
4681 host->adma_table_sz, host->align_buffer,
4682 host->align_addr);
Pierre Ossman2134a922008-06-28 18:28:51 +02004683
Chunyan Zhang18e762e2020-01-16 16:21:47 +05304684 if (host->use_external_dma)
4685 sdhci_external_dma_release(host);
4686
Adrian Hunter4efaa6f2014-11-04 12:42:39 +02004687 host->adma_table = NULL;
Pierre Ossman2134a922008-06-28 18:28:51 +02004688 host->align_buffer = NULL;
Pierre Ossmand129bce2006-03-24 03:18:17 -08004689}
4690
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01004691EXPORT_SYMBOL_GPL(sdhci_remove_host);
4692
4693void sdhci_free_host(struct sdhci_host *host)
Pierre Ossmand129bce2006-03-24 03:18:17 -08004694{
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01004695 mmc_free_host(host->mmc);
Pierre Ossmand129bce2006-03-24 03:18:17 -08004696}
4697
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01004698EXPORT_SYMBOL_GPL(sdhci_free_host);
Pierre Ossmand129bce2006-03-24 03:18:17 -08004699
4700/*****************************************************************************\
4701 * *
4702 * Driver init/exit *
4703 * *
4704\*****************************************************************************/
4705
4706static int __init sdhci_drv_init(void)
4707{
Girish K Sa3c76eb2011-10-11 11:44:09 +05304708 pr_info(DRIVER_NAME
Pierre Ossman52fbf9c2007-02-09 08:23:41 +01004709 ": Secure Digital Host Controller Interface driver\n");
Girish K Sa3c76eb2011-10-11 11:44:09 +05304710 pr_info(DRIVER_NAME ": Copyright(c) Pierre Ossman\n");
Pierre Ossmand129bce2006-03-24 03:18:17 -08004711
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01004712 return 0;
Pierre Ossmand129bce2006-03-24 03:18:17 -08004713}
4714
4715static void __exit sdhci_drv_exit(void)
4716{
Pierre Ossmand129bce2006-03-24 03:18:17 -08004717}
4718
4719module_init(sdhci_drv_init);
4720module_exit(sdhci_drv_exit);
4721
Pierre Ossmandf673b22006-06-30 02:22:31 -07004722module_param(debug_quirks, uint, 0444);
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03004723module_param(debug_quirks2, uint, 0444);
Pierre Ossman67435272006-06-30 02:22:31 -07004724
Pierre Ossman32710e82009-04-08 20:14:54 +02004725MODULE_AUTHOR("Pierre Ossman <pierre@ossman.eu>");
Pierre Ossmanb8c86fc2008-03-18 17:35:49 +01004726MODULE_DESCRIPTION("Secure Digital Host Controller Interface core driver");
Pierre Ossmand129bce2006-03-24 03:18:17 -08004727MODULE_LICENSE("GPL");
Pierre Ossman67435272006-06-30 02:22:31 -07004728
Pierre Ossmandf673b22006-06-30 02:22:31 -07004729MODULE_PARM_DESC(debug_quirks, "Force certain quirks.");
Adrian Hunter66fd8ad2011-10-03 15:33:34 +03004730MODULE_PARM_DESC(debug_quirks2, "Force certain other quirks.");