blob: cff5829790c9e4f2b795d8ea712bdce6e1bbb558 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Pierre Ossmanaaac1b42007-02-28 15:33:10 +01002 * linux/drivers/mmc/core/core.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Copyright (C) 2003-2004 Russell King, All Rights Reserved.
Pierre Ossman5b4fd9a2005-09-06 15:18:56 -07005 * SD support Copyright (C) 2004 Ian Molton, All Rights Reserved.
Pierre Ossmanad3868b2008-06-28 12:52:45 +02006 * Copyright (C) 2005-2008 Pierre Ossman, All Rights Reserved.
Philip Langdalebce40a32006-10-21 12:35:02 +02007 * MMCv4 support Copyright (C) 2006 Philip Langdale, All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/module.h>
14#include <linux/init.h>
15#include <linux/interrupt.h>
16#include <linux/completion.h>
17#include <linux/device.h>
18#include <linux/delay.h>
19#include <linux/pagemap.h>
20#include <linux/err.h>
Pierre Ossmanaf8350c2007-09-24 07:15:48 +020021#include <linux/leds.h>
Pierre Ossmanb57c43a2005-09-06 15:18:53 -070022#include <linux/scatterlist.h>
Anton Vorontsov86e82862008-11-26 22:54:17 +030023#include <linux/log2.h>
David Brownell5c139412009-03-11 03:30:43 -080024#include <linux/regulator/consumer.h>
Ohad Ben-Cohene5945732010-11-28 07:21:30 +020025#include <linux/pm_runtime.h>
Ulf Hanssonbbd43682013-09-20 11:02:35 +020026#include <linux/pm_wakeup.h>
Amerigo Wang35eb6db2011-07-25 17:13:11 -070027#include <linux/suspend.h>
Per Forlin1b676f72011-08-19 14:52:37 +020028#include <linux/fault-inject.h>
29#include <linux/random.h>
Jaehoon Chung950d56a2012-09-17 08:42:02 +000030#include <linux/slab.h>
Haijun Zhang6e9e3182013-08-26 09:19:22 +080031#include <linux/of.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33#include <linux/mmc/card.h>
34#include <linux/mmc/host.h>
Pierre Ossmanda7fbe52006-12-24 22:46:55 +010035#include <linux/mmc/mmc.h>
36#include <linux/mmc/sd.h>
Adrian Hunter740a2212014-03-10 15:02:41 +020037#include <linux/mmc/slot-gpio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Baolin Wang7962fc32016-03-31 11:16:27 +080039#define CREATE_TRACE_POINTS
40#include <trace/events/mmc.h>
41
Pierre Ossmanaaac1b42007-02-28 15:33:10 +010042#include "core.h"
Pierre Ossmanffce2e72007-05-19 14:32:22 +020043#include "bus.h"
44#include "host.h"
Pierre Ossmane29a7d72007-05-26 13:48:18 +020045#include "sdio_bus.h"
Ulf Hansson3aa87932014-11-28 14:38:36 +010046#include "pwrseq.h"
Pierre Ossmanda7fbe52006-12-24 22:46:55 +010047
48#include "mmc_ops.h"
49#include "sd_ops.h"
Pierre Ossman5c4e6f12007-05-21 20:23:20 +020050#include "sdio_ops.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Trey Ramsay8fee4762012-11-16 09:31:41 -060052/* If the device is not responding */
53#define MMC_CORE_TIMEOUT_MS (10 * 60 * 1000) /* 10 minute timeout */
54
Jaehoon Chung950d56a2012-09-17 08:42:02 +000055/*
56 * Background operations can take a long time, depending on the housekeeping
57 * operations the card has to perform.
58 */
59#define MMC_BKOPS_MAX_TIMEOUT (4 * 60 * 1000) /* max time to wait in ms */
60
Ulf Hansson12182af2016-07-27 00:04:03 +020061/* The max erase timeout, used when host->max_busy_timeout isn't specified */
62#define MMC_ERASE_TIMEOUT_MS (60 * 1000) /* 60 s */
63
Ulf Hanssonfa550182012-05-09 16:15:26 +020064static const unsigned freqs[] = { 400000, 300000, 200000, 100000 };
Pierre Ossmanffce2e72007-05-19 14:32:22 +020065
66/*
David Brownellaf517152007-08-08 09:11:32 -070067 * Enabling software CRCs on the data blocks can be a significant (30%)
68 * performance cost, and for other reasons may not always be desired.
69 * So we allow it it to be disabled.
70 */
Rusty Russell90ab5ee2012-01-13 09:32:20 +103071bool use_spi_crc = 1;
David Brownellaf517152007-08-08 09:11:32 -070072module_param(use_spi_crc, bool, 0);
73
Pierre Ossmanffce2e72007-05-19 14:32:22 +020074static int mmc_schedule_delayed_work(struct delayed_work *work,
75 unsigned long delay)
76{
Ulf Hansson520bd7a2015-12-01 10:35:29 +010077 /*
78 * We use the system_freezable_wq, because of two reasons.
79 * First, it allows several works (not the same work item) to be
80 * executed simultaneously. Second, the queue becomes frozen when
81 * userspace becomes frozen during system PM.
82 */
83 return queue_delayed_work(system_freezable_wq, work, delay);
Pierre Ossmanffce2e72007-05-19 14:32:22 +020084}
85
Per Forlin1b676f72011-08-19 14:52:37 +020086#ifdef CONFIG_FAIL_MMC_REQUEST
87
88/*
89 * Internal function. Inject random data errors.
90 * If mmc_data is NULL no errors are injected.
91 */
92static void mmc_should_fail_request(struct mmc_host *host,
93 struct mmc_request *mrq)
94{
95 struct mmc_command *cmd = mrq->cmd;
96 struct mmc_data *data = mrq->data;
97 static const int data_errors[] = {
98 -ETIMEDOUT,
99 -EILSEQ,
100 -EIO,
101 };
102
103 if (!data)
104 return;
105
106 if (cmd->error || data->error ||
107 !should_fail(&host->fail_mmc_request, data->blksz * data->blocks))
108 return;
109
Akinobu Mita2e744fc2013-04-29 16:21:31 -0700110 data->error = data_errors[prandom_u32() % ARRAY_SIZE(data_errors)];
111 data->bytes_xfered = (prandom_u32() % (data->bytes_xfered >> 9)) << 9;
Per Forlin1b676f72011-08-19 14:52:37 +0200112}
113
114#else /* CONFIG_FAIL_MMC_REQUEST */
115
116static inline void mmc_should_fail_request(struct mmc_host *host,
117 struct mmc_request *mrq)
118{
119}
120
121#endif /* CONFIG_FAIL_MMC_REQUEST */
122
Adrian Hunter5163af52016-08-16 13:44:11 +0300123static inline void mmc_complete_cmd(struct mmc_request *mrq)
124{
125 if (mrq->cap_cmd_during_tfr && !completion_done(&mrq->cmd_completion))
126 complete_all(&mrq->cmd_completion);
127}
128
129void mmc_command_done(struct mmc_host *host, struct mmc_request *mrq)
130{
131 if (!mrq->cap_cmd_during_tfr)
132 return;
133
134 mmc_complete_cmd(mrq);
135
136 pr_debug("%s: cmd done, tfr ongoing (CMD%u)\n",
137 mmc_hostname(host), mrq->cmd->opcode);
138}
139EXPORT_SYMBOL(mmc_command_done);
140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141/**
Russell Kingfe10c6a2006-05-04 13:51:45 +0100142 * mmc_request_done - finish processing an MMC request
143 * @host: MMC host which completed request
144 * @mrq: MMC request which request
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 *
146 * MMC drivers should call this function when they have completed
Russell Kingfe10c6a2006-05-04 13:51:45 +0100147 * their processing of a request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 */
149void mmc_request_done(struct mmc_host *host, struct mmc_request *mrq)
150{
151 struct mmc_command *cmd = mrq->cmd;
Russell King920e70c2006-05-04 18:22:51 +0100152 int err = cmd->error;
153
Adrian Hunterbd11e8b2015-05-07 13:10:22 +0300154 /* Flag re-tuning needed on CRC errors */
Chaotian Jing031277d2015-09-30 17:37:18 +0800155 if ((cmd->opcode != MMC_SEND_TUNING_BLOCK &&
156 cmd->opcode != MMC_SEND_TUNING_BLOCK_HS200) &&
157 (err == -EILSEQ || (mrq->sbc && mrq->sbc->error == -EILSEQ) ||
Adrian Hunterbd11e8b2015-05-07 13:10:22 +0300158 (mrq->data && mrq->data->error == -EILSEQ) ||
Chaotian Jing031277d2015-09-30 17:37:18 +0800159 (mrq->stop && mrq->stop->error == -EILSEQ)))
Adrian Hunterbd11e8b2015-05-07 13:10:22 +0300160 mmc_retune_needed(host);
161
David Brownellaf517152007-08-08 09:11:32 -0700162 if (err && cmd->retries && mmc_host_is_spi(host)) {
163 if (cmd->resp[0] & R1_SPI_ILLEGAL_COMMAND)
164 cmd->retries = 0;
165 }
166
Adrian Hunter5163af52016-08-16 13:44:11 +0300167 if (host->ongoing_mrq == mrq)
168 host->ongoing_mrq = NULL;
169
170 mmc_complete_cmd(mrq);
171
Baolin Wang7962fc32016-03-31 11:16:27 +0800172 trace_mmc_request_done(host, mrq);
173
Adrian Hunterd3049502011-11-28 16:22:00 +0200174 if (err && cmd->retries && !mmc_card_removed(host->card)) {
Adrian Hunter08a7e1d2011-10-03 15:33:33 +0300175 /*
176 * Request starter must handle retries - see
177 * mmc_wait_for_req_done().
178 */
179 if (mrq->done)
180 mrq->done(mrq);
Pierre Ossmane4d21702007-07-24 21:46:49 +0200181 } else {
Per Forlin1b676f72011-08-19 14:52:37 +0200182 mmc_should_fail_request(host, mrq);
183
Adrian Hunter5163af52016-08-16 13:44:11 +0300184 if (!host->ongoing_mrq)
185 led_trigger_event(host->led, LED_OFF);
Pierre Ossmanaf8350c2007-09-24 07:15:48 +0200186
Andrew Gabbasovfc75b702014-10-01 07:14:10 -0500187 if (mrq->sbc) {
188 pr_debug("%s: req done <CMD%u>: %d: %08x %08x %08x %08x\n",
189 mmc_hostname(host), mrq->sbc->opcode,
190 mrq->sbc->error,
191 mrq->sbc->resp[0], mrq->sbc->resp[1],
192 mrq->sbc->resp[2], mrq->sbc->resp[3]);
193 }
194
Pierre Ossmane4d21702007-07-24 21:46:49 +0200195 pr_debug("%s: req done (CMD%u): %d: %08x %08x %08x %08x\n",
196 mmc_hostname(host), cmd->opcode, err,
197 cmd->resp[0], cmd->resp[1],
198 cmd->resp[2], cmd->resp[3]);
199
200 if (mrq->data) {
201 pr_debug("%s: %d bytes transferred: %d\n",
202 mmc_hostname(host),
203 mrq->data->bytes_xfered, mrq->data->error);
204 }
205
206 if (mrq->stop) {
207 pr_debug("%s: (CMD%u): %d: %08x %08x %08x %08x\n",
208 mmc_hostname(host), mrq->stop->opcode,
209 mrq->stop->error,
210 mrq->stop->resp[0], mrq->stop->resp[1],
211 mrq->stop->resp[2], mrq->stop->resp[3]);
212 }
213
214 if (mrq->done)
215 mrq->done(mrq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 }
217}
218
219EXPORT_SYMBOL(mmc_request_done);
220
Adrian Hunter90a81482015-05-07 13:10:14 +0300221static void __mmc_start_request(struct mmc_host *host, struct mmc_request *mrq)
222{
223 int err;
224
225 /* Assumes host controller has been runtime resumed by mmc_claim_host */
226 err = mmc_retune(host);
227 if (err) {
228 mrq->cmd->error = err;
229 mmc_request_done(host, mrq);
230 return;
231 }
232
Hans de Goede5d3f6ef2015-09-22 17:30:25 +0200233 /*
234 * For sdio rw commands we must wait for card busy otherwise some
235 * sdio devices won't work properly.
236 */
237 if (mmc_is_io_op(mrq->cmd->opcode) && host->ops->card_busy) {
238 int tries = 500; /* Wait aprox 500ms at maximum */
239
240 while (host->ops->card_busy(host) && --tries)
241 mmc_delay(1);
242
243 if (tries == 0) {
244 mrq->cmd->error = -EBUSY;
245 mmc_request_done(host, mrq);
246 return;
247 }
248 }
249
Adrian Hunter5163af52016-08-16 13:44:11 +0300250 if (mrq->cap_cmd_during_tfr) {
251 host->ongoing_mrq = mrq;
252 /*
253 * Retry path could come through here without having waiting on
254 * cmd_completion, so ensure it is reinitialised.
255 */
256 reinit_completion(&mrq->cmd_completion);
257 }
258
Baolin Wang7962fc32016-03-31 11:16:27 +0800259 trace_mmc_request_start(host, mrq);
260
Adrian Hunter90a81482015-05-07 13:10:14 +0300261 host->ops->request(host, mrq);
262}
263
Adrian Hunterf100c1c2014-12-05 19:41:02 +0200264static int mmc_start_request(struct mmc_host *host, struct mmc_request *mrq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265{
Pierre Ossman976d9272007-04-13 22:47:01 +0200266#ifdef CONFIG_MMC_DEBUG
267 unsigned int i, sz;
Pierre Ossmana84756c2008-07-29 01:09:37 +0200268 struct scatterlist *sg;
Pierre Ossman976d9272007-04-13 22:47:01 +0200269#endif
Adrian Hunter90a81482015-05-07 13:10:14 +0300270 mmc_retune_hold(host);
271
Adrian Hunterf100c1c2014-12-05 19:41:02 +0200272 if (mmc_card_removed(host->card))
273 return -ENOMEDIUM;
Pierre Ossman976d9272007-04-13 22:47:01 +0200274
Jaehoon Chung7b2fd4f2012-02-07 14:13:10 +0900275 if (mrq->sbc) {
276 pr_debug("<%s: starting CMD%u arg %08x flags %08x>\n",
277 mmc_hostname(host), mrq->sbc->opcode,
278 mrq->sbc->arg, mrq->sbc->flags);
279 }
280
Russell King920e70c2006-05-04 18:22:51 +0100281 pr_debug("%s: starting CMD%u arg %08x flags %08x\n",
282 mmc_hostname(host), mrq->cmd->opcode,
283 mrq->cmd->arg, mrq->cmd->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
Pierre Ossmane4d21702007-07-24 21:46:49 +0200285 if (mrq->data) {
286 pr_debug("%s: blksz %d blocks %d flags %08x "
287 "tsac %d ms nsac %d\n",
288 mmc_hostname(host), mrq->data->blksz,
289 mrq->data->blocks, mrq->data->flags,
Pierre Ossmance252ed2007-08-07 14:06:18 +0200290 mrq->data->timeout_ns / 1000000,
Pierre Ossmane4d21702007-07-24 21:46:49 +0200291 mrq->data->timeout_clks);
292 }
293
294 if (mrq->stop) {
295 pr_debug("%s: CMD%u arg %08x flags %08x\n",
296 mmc_hostname(host), mrq->stop->opcode,
297 mrq->stop->arg, mrq->stop->flags);
298 }
299
Pierre Ossmanf22ee4e2006-12-26 15:11:23 +0100300 WARN_ON(!host->claimed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
302 mrq->cmd->error = 0;
303 mrq->cmd->mrq = mrq;
Andrew Gabbasovcce411e2014-10-01 07:14:09 -0500304 if (mrq->sbc) {
305 mrq->sbc->error = 0;
306 mrq->sbc->mrq = mrq;
307 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 if (mrq->data) {
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +0100309 BUG_ON(mrq->data->blksz > host->max_blk_size);
Pierre Ossman55db8902006-11-21 17:55:45 +0100310 BUG_ON(mrq->data->blocks > host->max_blk_count);
311 BUG_ON(mrq->data->blocks * mrq->data->blksz >
312 host->max_req_size);
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +0100313
Pierre Ossman976d9272007-04-13 22:47:01 +0200314#ifdef CONFIG_MMC_DEBUG
315 sz = 0;
Pierre Ossmana84756c2008-07-29 01:09:37 +0200316 for_each_sg(mrq->data->sg, sg, mrq->data->sg_len, i)
317 sz += sg->length;
Pierre Ossman976d9272007-04-13 22:47:01 +0200318 BUG_ON(sz != mrq->data->blocks * mrq->data->blksz);
319#endif
320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 mrq->cmd->data = mrq->data;
322 mrq->data->error = 0;
323 mrq->data->mrq = mrq;
324 if (mrq->stop) {
325 mrq->data->stop = mrq->stop;
326 mrq->stop->error = 0;
327 mrq->stop->mrq = mrq;
328 }
329 }
Pierre Tardy66c036e2011-02-06 19:02:48 +0100330 led_trigger_event(host->led, LED_FULL);
Adrian Hunter90a81482015-05-07 13:10:14 +0300331 __mmc_start_request(host, mrq);
Adrian Hunterf100c1c2014-12-05 19:41:02 +0200332
333 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334}
335
Jaehoon Chung950d56a2012-09-17 08:42:02 +0000336/**
337 * mmc_start_bkops - start BKOPS for supported cards
338 * @card: MMC card to start BKOPS
339 * @form_exception: A flag to indicate if this function was
340 * called due to an exception raised by the card
341 *
342 * Start background operations whenever requested.
343 * When the urgent BKOPS bit is set in a R1 command response
344 * then background operations should be started immediately.
345*/
346void mmc_start_bkops(struct mmc_card *card, bool from_exception)
347{
348 int err;
349 int timeout;
350 bool use_busy_signal;
351
352 BUG_ON(!card);
353
Alexey Skidanov0501be62015-01-29 10:49:43 +0200354 if (!card->ext_csd.man_bkops_en || mmc_card_doing_bkops(card))
Jaehoon Chung950d56a2012-09-17 08:42:02 +0000355 return;
356
357 err = mmc_read_bkops_status(card);
358 if (err) {
359 pr_err("%s: Failed to read bkops status: %d\n",
360 mmc_hostname(card->host), err);
361 return;
362 }
363
364 if (!card->ext_csd.raw_bkops_status)
365 return;
366
367 if (card->ext_csd.raw_bkops_status < EXT_CSD_BKOPS_LEVEL_2 &&
368 from_exception)
369 return;
370
371 mmc_claim_host(card->host);
372 if (card->ext_csd.raw_bkops_status >= EXT_CSD_BKOPS_LEVEL_2) {
373 timeout = MMC_BKOPS_MAX_TIMEOUT;
374 use_busy_signal = true;
375 } else {
376 timeout = 0;
377 use_busy_signal = false;
378 }
379
Adrian Hunter66073d82015-05-07 13:10:17 +0300380 mmc_retune_hold(card->host);
381
Jaehoon Chung950d56a2012-09-17 08:42:02 +0000382 err = __mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
Ulf Hansson4509f84772014-01-08 16:09:33 +0100383 EXT_CSD_BKOPS_START, 1, timeout,
384 use_busy_signal, true, false);
Jaehoon Chung950d56a2012-09-17 08:42:02 +0000385 if (err) {
386 pr_warn("%s: Error %d starting bkops\n",
387 mmc_hostname(card->host), err);
Adrian Hunter66073d82015-05-07 13:10:17 +0300388 mmc_retune_release(card->host);
Jaehoon Chung950d56a2012-09-17 08:42:02 +0000389 goto out;
390 }
391
392 /*
393 * For urgent bkops status (LEVEL_2 and more)
394 * bkops executed synchronously, otherwise
395 * the operation is in progress
396 */
397 if (!use_busy_signal)
398 mmc_card_set_doing_bkops(card);
Adrian Hunter66073d82015-05-07 13:10:17 +0300399 else
400 mmc_retune_release(card->host);
Jaehoon Chung950d56a2012-09-17 08:42:02 +0000401out:
402 mmc_release_host(card->host);
403}
404EXPORT_SYMBOL(mmc_start_bkops);
405
Konstantin Dorfman2220eed2013-01-14 14:28:17 -0500406/*
407 * mmc_wait_data_done() - done callback for data request
408 * @mrq: done data request
409 *
410 * Wakes up mmc context, passed as a callback to host controller driver
411 */
412static void mmc_wait_data_done(struct mmc_request *mrq)
413{
Jialing Fu71f8a4b2015-08-28 11:13:09 +0800414 struct mmc_context_info *context_info = &mrq->host->context_info;
415
416 context_info->is_done_rcv = true;
417 wake_up_interruptible(&context_info->wait);
Konstantin Dorfman2220eed2013-01-14 14:28:17 -0500418}
419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420static void mmc_wait_done(struct mmc_request *mrq)
421{
Per Forlinaa8b6832011-07-01 18:55:22 +0200422 complete(&mrq->completion);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423}
424
Adrian Hunter5163af52016-08-16 13:44:11 +0300425static inline void mmc_wait_ongoing_tfr_cmd(struct mmc_host *host)
426{
427 struct mmc_request *ongoing_mrq = READ_ONCE(host->ongoing_mrq);
428
429 /*
430 * If there is an ongoing transfer, wait for the command line to become
431 * available.
432 */
433 if (ongoing_mrq && !completion_done(&ongoing_mrq->cmd_completion))
434 wait_for_completion(&ongoing_mrq->cmd_completion);
435}
436
Konstantin Dorfman2220eed2013-01-14 14:28:17 -0500437/*
438 *__mmc_start_data_req() - starts data request
439 * @host: MMC host to start the request
440 * @mrq: data request to start
441 *
442 * Sets the done callback to be called when request is completed by the card.
443 * Starts data mmc request execution
Adrian Hunter5163af52016-08-16 13:44:11 +0300444 * If an ongoing transfer is already in progress, wait for the command line
445 * to become available before sending another command.
Konstantin Dorfman2220eed2013-01-14 14:28:17 -0500446 */
447static int __mmc_start_data_req(struct mmc_host *host, struct mmc_request *mrq)
448{
Adrian Hunterf100c1c2014-12-05 19:41:02 +0200449 int err;
450
Adrian Hunter5163af52016-08-16 13:44:11 +0300451 mmc_wait_ongoing_tfr_cmd(host);
452
Konstantin Dorfman2220eed2013-01-14 14:28:17 -0500453 mrq->done = mmc_wait_data_done;
454 mrq->host = host;
Konstantin Dorfman2220eed2013-01-14 14:28:17 -0500455
Adrian Hunter5163af52016-08-16 13:44:11 +0300456 init_completion(&mrq->cmd_completion);
457
Adrian Hunterf100c1c2014-12-05 19:41:02 +0200458 err = mmc_start_request(host, mrq);
459 if (err) {
460 mrq->cmd->error = err;
Adrian Hunter5163af52016-08-16 13:44:11 +0300461 mmc_complete_cmd(mrq);
Adrian Hunterf100c1c2014-12-05 19:41:02 +0200462 mmc_wait_data_done(mrq);
463 }
464
465 return err;
Konstantin Dorfman2220eed2013-01-14 14:28:17 -0500466}
467
Ulf Hansson956d9fd2012-03-05 15:52:43 +0100468static int __mmc_start_req(struct mmc_host *host, struct mmc_request *mrq)
Per Forlinaa8b6832011-07-01 18:55:22 +0200469{
Adrian Hunterf100c1c2014-12-05 19:41:02 +0200470 int err;
471
Adrian Hunter5163af52016-08-16 13:44:11 +0300472 mmc_wait_ongoing_tfr_cmd(host);
473
Per Forlinaa8b6832011-07-01 18:55:22 +0200474 init_completion(&mrq->completion);
475 mrq->done = mmc_wait_done;
Adrian Hunterf100c1c2014-12-05 19:41:02 +0200476
Adrian Hunter5163af52016-08-16 13:44:11 +0300477 init_completion(&mrq->cmd_completion);
478
Adrian Hunterf100c1c2014-12-05 19:41:02 +0200479 err = mmc_start_request(host, mrq);
480 if (err) {
481 mrq->cmd->error = err;
Adrian Hunter5163af52016-08-16 13:44:11 +0300482 mmc_complete_cmd(mrq);
Adrian Hunterd3049502011-11-28 16:22:00 +0200483 complete(&mrq->completion);
Adrian Hunterd3049502011-11-28 16:22:00 +0200484 }
Adrian Hunterf100c1c2014-12-05 19:41:02 +0200485
486 return err;
Per Forlinaa8b6832011-07-01 18:55:22 +0200487}
488
Konstantin Dorfman2220eed2013-01-14 14:28:17 -0500489/*
490 * mmc_wait_for_data_req_done() - wait for request completed
491 * @host: MMC host to prepare the command.
492 * @mrq: MMC request to wait for
493 *
494 * Blocks MMC context till host controller will ack end of data request
495 * execution or new request notification arrives from the block layer.
496 * Handles command retries.
497 *
498 * Returns enum mmc_blk_status after checking errors.
499 */
500static int mmc_wait_for_data_req_done(struct mmc_host *host,
501 struct mmc_request *mrq,
502 struct mmc_async_req *next_req)
503{
504 struct mmc_command *cmd;
505 struct mmc_context_info *context_info = &host->context_info;
506 int err;
507 unsigned long flags;
508
509 while (1) {
510 wait_event_interruptible(context_info->wait,
511 (context_info->is_done_rcv ||
512 context_info->is_new_req));
513 spin_lock_irqsave(&context_info->lock, flags);
514 context_info->is_waiting_last_req = false;
515 spin_unlock_irqrestore(&context_info->lock, flags);
516 if (context_info->is_done_rcv) {
517 context_info->is_done_rcv = false;
518 context_info->is_new_req = false;
519 cmd = mrq->cmd;
Maya Erez775a9362013-04-18 15:41:55 +0300520
Konstantin Dorfman2220eed2013-01-14 14:28:17 -0500521 if (!cmd->error || !cmd->retries ||
522 mmc_card_removed(host->card)) {
523 err = host->areq->err_check(host->card,
524 host->areq);
525 break; /* return err */
526 } else {
Adrian Hunter90a81482015-05-07 13:10:14 +0300527 mmc_retune_recheck(host);
Konstantin Dorfman2220eed2013-01-14 14:28:17 -0500528 pr_info("%s: req failed (CMD%u): %d, retrying...\n",
529 mmc_hostname(host),
530 cmd->opcode, cmd->error);
531 cmd->retries--;
532 cmd->error = 0;
Adrian Hunter90a81482015-05-07 13:10:14 +0300533 __mmc_start_request(host, mrq);
Konstantin Dorfman2220eed2013-01-14 14:28:17 -0500534 continue; /* wait for done/new event again */
535 }
536 } else if (context_info->is_new_req) {
537 context_info->is_new_req = false;
Adrian Hunter90a81482015-05-07 13:10:14 +0300538 if (!next_req)
539 return MMC_BLK_NEW_REQUEST;
Konstantin Dorfman2220eed2013-01-14 14:28:17 -0500540 }
541 }
Adrian Hunter90a81482015-05-07 13:10:14 +0300542 mmc_retune_release(host);
Konstantin Dorfman2220eed2013-01-14 14:28:17 -0500543 return err;
544}
545
Adrian Hunter5163af52016-08-16 13:44:11 +0300546void mmc_wait_for_req_done(struct mmc_host *host, struct mmc_request *mrq)
Per Forlinaa8b6832011-07-01 18:55:22 +0200547{
Adrian Hunter08a7e1d2011-10-03 15:33:33 +0300548 struct mmc_command *cmd;
549
550 while (1) {
551 wait_for_completion(&mrq->completion);
552
553 cmd = mrq->cmd;
Maya Erez775a9362013-04-18 15:41:55 +0300554
555 /*
556 * If host has timed out waiting for the sanitize
557 * to complete, card might be still in programming state
558 * so let's try to bring the card out of programming
559 * state.
560 */
561 if (cmd->sanitize_busy && cmd->error == -ETIMEDOUT) {
562 if (!mmc_interrupt_hpi(host->card)) {
Joe Perches66061102014-09-12 14:56:56 -0700563 pr_warn("%s: %s: Interrupted sanitize\n",
564 mmc_hostname(host), __func__);
Maya Erez775a9362013-04-18 15:41:55 +0300565 cmd->error = 0;
566 break;
567 } else {
568 pr_err("%s: %s: Failed to interrupt sanitize\n",
569 mmc_hostname(host), __func__);
570 }
571 }
Adrian Hunterd3049502011-11-28 16:22:00 +0200572 if (!cmd->error || !cmd->retries ||
573 mmc_card_removed(host->card))
Adrian Hunter08a7e1d2011-10-03 15:33:33 +0300574 break;
575
Adrian Hunter90a81482015-05-07 13:10:14 +0300576 mmc_retune_recheck(host);
577
Adrian Hunter08a7e1d2011-10-03 15:33:33 +0300578 pr_debug("%s: req failed (CMD%u): %d, retrying...\n",
579 mmc_hostname(host), cmd->opcode, cmd->error);
580 cmd->retries--;
581 cmd->error = 0;
Adrian Hunter90a81482015-05-07 13:10:14 +0300582 __mmc_start_request(host, mrq);
Adrian Hunter08a7e1d2011-10-03 15:33:33 +0300583 }
Adrian Hunter90a81482015-05-07 13:10:14 +0300584
585 mmc_retune_release(host);
Per Forlinaa8b6832011-07-01 18:55:22 +0200586}
Adrian Hunter5163af52016-08-16 13:44:11 +0300587EXPORT_SYMBOL(mmc_wait_for_req_done);
588
589/**
590 * mmc_is_req_done - Determine if a 'cap_cmd_during_tfr' request is done
591 * @host: MMC host
592 * @mrq: MMC request
593 *
594 * mmc_is_req_done() is used with requests that have
595 * mrq->cap_cmd_during_tfr = true. mmc_is_req_done() must be called after
596 * starting a request and before waiting for it to complete. That is,
597 * either in between calls to mmc_start_req(), or after mmc_wait_for_req()
598 * and before mmc_wait_for_req_done(). If it is called at other times the
599 * result is not meaningful.
600 */
601bool mmc_is_req_done(struct mmc_host *host, struct mmc_request *mrq)
602{
603 if (host->areq)
604 return host->context_info.is_done_rcv;
605 else
606 return completion_done(&mrq->completion);
607}
608EXPORT_SYMBOL(mmc_is_req_done);
Per Forlinaa8b6832011-07-01 18:55:22 +0200609
610/**
611 * mmc_pre_req - Prepare for a new request
612 * @host: MMC host to prepare command
613 * @mrq: MMC request to prepare for
614 * @is_first_req: true if there is no previous started request
615 * that may run in parellel to this call, otherwise false
616 *
617 * mmc_pre_req() is called in prior to mmc_start_req() to let
618 * host prepare for the new request. Preparation of a request may be
619 * performed while another request is running on the host.
620 */
621static void mmc_pre_req(struct mmc_host *host, struct mmc_request *mrq,
622 bool is_first_req)
623{
Ulf Hansson9eadcc02015-10-02 10:56:11 +0200624 if (host->ops->pre_req)
Per Forlinaa8b6832011-07-01 18:55:22 +0200625 host->ops->pre_req(host, mrq, is_first_req);
626}
627
628/**
629 * mmc_post_req - Post process a completed request
630 * @host: MMC host to post process command
631 * @mrq: MMC request to post process for
632 * @err: Error, if non zero, clean up any resources made in pre_req
633 *
634 * Let the host post process a completed request. Post processing of
635 * a request may be performed while another reuqest is running.
636 */
637static void mmc_post_req(struct mmc_host *host, struct mmc_request *mrq,
638 int err)
639{
Ulf Hansson9eadcc02015-10-02 10:56:11 +0200640 if (host->ops->post_req)
Per Forlinaa8b6832011-07-01 18:55:22 +0200641 host->ops->post_req(host, mrq, err);
642}
643
644/**
645 * mmc_start_req - start a non-blocking request
646 * @host: MMC host to start command
647 * @areq: async request to start
648 * @error: out parameter returns 0 for success, otherwise non zero
649 *
650 * Start a new MMC custom command request for a host.
651 * If there is on ongoing async request wait for completion
652 * of that request and start the new one and return.
653 * Does not wait for the new request to complete.
654 *
655 * Returns the completed request, NULL in case of none completed.
656 * Wait for the an ongoing request (previoulsy started) to complete and
657 * return the completed request. If there is no ongoing request, NULL
658 * is returned without waiting. NULL is not an error condition.
659 */
660struct mmc_async_req *mmc_start_req(struct mmc_host *host,
661 struct mmc_async_req *areq, int *error)
662{
663 int err = 0;
Ulf Hansson956d9fd2012-03-05 15:52:43 +0100664 int start_err = 0;
Per Forlinaa8b6832011-07-01 18:55:22 +0200665 struct mmc_async_req *data = host->areq;
666
667 /* Prepare a new request */
668 if (areq)
669 mmc_pre_req(host, areq->mrq, !host->areq);
670
671 if (host->areq) {
Jaehoon Chungf5c27582013-02-01 14:32:22 +0900672 err = mmc_wait_for_data_req_done(host, host->areq->mrq, areq);
673 if (err == MMC_BLK_NEW_REQUEST) {
674 if (error)
675 *error = err;
676 /*
677 * The previous request was not completed,
678 * nothing to return
679 */
680 return NULL;
681 }
Jaehoon Chung950d56a2012-09-17 08:42:02 +0000682 /*
683 * Check BKOPS urgency for each R1 response
684 */
685 if (host->card && mmc_card_mmc(host->card) &&
686 ((mmc_resp_type(host->areq->mrq->cmd) == MMC_RSP_R1) ||
687 (mmc_resp_type(host->areq->mrq->cmd) == MMC_RSP_R1B)) &&
Srinivas Kandagatla64b12a62014-10-08 12:24:24 +0100688 (host->areq->mrq->cmd->resp[0] & R1_EXCEPTION_EVENT)) {
689
690 /* Cancel the prepared request */
691 if (areq)
692 mmc_post_req(host, areq->mrq, -EINVAL);
693
Jaehoon Chung950d56a2012-09-17 08:42:02 +0000694 mmc_start_bkops(host->card, true);
Srinivas Kandagatla64b12a62014-10-08 12:24:24 +0100695
696 /* prepare the request again */
697 if (areq)
698 mmc_pre_req(host, areq->mrq, !host->areq);
699 }
Per Forlinaa8b6832011-07-01 18:55:22 +0200700 }
701
Ulf Hansson956d9fd2012-03-05 15:52:43 +0100702 if (!err && areq)
Konstantin Dorfman2220eed2013-01-14 14:28:17 -0500703 start_err = __mmc_start_data_req(host, areq->mrq);
Per Forlinaa8b6832011-07-01 18:55:22 +0200704
705 if (host->areq)
706 mmc_post_req(host, host->areq->mrq, 0);
707
Ulf Hansson956d9fd2012-03-05 15:52:43 +0100708 /* Cancel a prepared request if it was not started. */
709 if ((err || start_err) && areq)
Jaehoon Chungf5c27582013-02-01 14:32:22 +0900710 mmc_post_req(host, areq->mrq, -EINVAL);
Ulf Hansson956d9fd2012-03-05 15:52:43 +0100711
712 if (err)
713 host->areq = NULL;
714 else
715 host->areq = areq;
716
Per Forlinaa8b6832011-07-01 18:55:22 +0200717 if (error)
718 *error = err;
719 return data;
720}
721EXPORT_SYMBOL(mmc_start_req);
722
Pierre Ossman67a61c42007-07-11 20:22:11 +0200723/**
724 * mmc_wait_for_req - start a request and wait for completion
725 * @host: MMC host to start command
726 * @mrq: MMC request to start
727 *
728 * Start a new MMC custom command request for a host, and wait
Adrian Hunter5163af52016-08-16 13:44:11 +0300729 * for the command to complete. In the case of 'cap_cmd_during_tfr'
730 * requests, the transfer is ongoing and the caller can issue further
731 * commands that do not use the data lines, and then wait by calling
732 * mmc_wait_for_req_done().
733 * Does not attempt to parse the response.
Pierre Ossman67a61c42007-07-11 20:22:11 +0200734 */
735void mmc_wait_for_req(struct mmc_host *host, struct mmc_request *mrq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736{
Per Forlinaa8b6832011-07-01 18:55:22 +0200737 __mmc_start_req(host, mrq);
Adrian Hunter5163af52016-08-16 13:44:11 +0300738
739 if (!mrq->cap_cmd_during_tfr)
740 mmc_wait_for_req_done(host, mrq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742EXPORT_SYMBOL(mmc_wait_for_req);
743
744/**
Jaehoon Chungeb0d8f12011-10-18 01:26:42 -0400745 * mmc_interrupt_hpi - Issue for High priority Interrupt
746 * @card: the MMC card associated with the HPI transfer
747 *
748 * Issued High Priority Interrupt, and check for card status
Jaehoon Chung950d56a2012-09-17 08:42:02 +0000749 * until out-of prg-state.
Jaehoon Chungeb0d8f12011-10-18 01:26:42 -0400750 */
751int mmc_interrupt_hpi(struct mmc_card *card)
752{
753 int err;
754 u32 status;
Venkatraman S6af9e962012-06-22 11:42:36 +0530755 unsigned long prg_wait;
Jaehoon Chungeb0d8f12011-10-18 01:26:42 -0400756
757 BUG_ON(!card);
758
759 if (!card->ext_csd.hpi_en) {
760 pr_info("%s: HPI enable bit unset\n", mmc_hostname(card->host));
761 return 1;
762 }
763
764 mmc_claim_host(card->host);
765 err = mmc_send_status(card, &status);
766 if (err) {
767 pr_err("%s: Get card status fail\n", mmc_hostname(card->host));
768 goto out;
769 }
770
Venkatraman S6af9e962012-06-22 11:42:36 +0530771 switch (R1_CURRENT_STATE(status)) {
772 case R1_STATE_IDLE:
773 case R1_STATE_READY:
774 case R1_STATE_STBY:
Venkatraman S211d4fe2012-08-07 19:24:45 +0530775 case R1_STATE_TRAN:
Venkatraman S6af9e962012-06-22 11:42:36 +0530776 /*
Venkatraman S211d4fe2012-08-07 19:24:45 +0530777 * In idle and transfer states, HPI is not needed and the caller
Venkatraman S6af9e962012-06-22 11:42:36 +0530778 * can issue the next intended command immediately
779 */
780 goto out;
781 case R1_STATE_PRG:
782 break;
783 default:
784 /* In all other states, it's illegal to issue HPI */
785 pr_debug("%s: HPI cannot be sent. Card state=%d\n",
786 mmc_hostname(card->host), R1_CURRENT_STATE(status));
787 err = -EINVAL;
788 goto out;
789 }
Jaehoon Chungeb0d8f12011-10-18 01:26:42 -0400790
Venkatraman S6af9e962012-06-22 11:42:36 +0530791 err = mmc_send_hpi_cmd(card, &status);
792 if (err)
793 goto out;
794
795 prg_wait = jiffies + msecs_to_jiffies(card->ext_csd.out_of_int_time);
796 do {
797 err = mmc_send_status(card, &status);
798
799 if (!err && R1_CURRENT_STATE(status) == R1_STATE_TRAN)
800 break;
801 if (time_after(jiffies, prg_wait))
802 err = -ETIMEDOUT;
803 } while (!err);
Jaehoon Chungeb0d8f12011-10-18 01:26:42 -0400804
805out:
806 mmc_release_host(card->host);
807 return err;
808}
809EXPORT_SYMBOL(mmc_interrupt_hpi);
810
811/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 * mmc_wait_for_cmd - start a command and wait for completion
813 * @host: MMC host to start command
814 * @cmd: MMC command to start
815 * @retries: maximum number of retries
816 *
817 * Start a new MMC command for a host, and wait for the command
818 * to complete. Return any error that occurred while the command
819 * was executing. Do not attempt to parse the response.
820 */
821int mmc_wait_for_cmd(struct mmc_host *host, struct mmc_command *cmd, int retries)
822{
Venkatraman Sad5fd972011-08-25 00:30:50 +0530823 struct mmc_request mrq = {NULL};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
Pierre Ossmand84075c82007-08-09 13:23:56 +0200825 WARN_ON(!host->claimed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 memset(cmd->resp, 0, sizeof(cmd->resp));
828 cmd->retries = retries;
829
830 mrq.cmd = cmd;
831 cmd->data = NULL;
832
833 mmc_wait_for_req(host, &mrq);
834
835 return cmd->error;
836}
837
838EXPORT_SYMBOL(mmc_wait_for_cmd);
839
Pierre Ossman335eadf2005-09-06 15:18:50 -0700840/**
Jaehoon Chung950d56a2012-09-17 08:42:02 +0000841 * mmc_stop_bkops - stop ongoing BKOPS
842 * @card: MMC card to check BKOPS
843 *
844 * Send HPI command to stop ongoing background operations to
845 * allow rapid servicing of foreground operations, e.g. read/
846 * writes. Wait until the card comes out of the programming state
847 * to avoid errors in servicing read/write requests.
848 */
849int mmc_stop_bkops(struct mmc_card *card)
850{
851 int err = 0;
852
853 BUG_ON(!card);
854 err = mmc_interrupt_hpi(card);
855
856 /*
857 * If err is EINVAL, we can't issue an HPI.
858 * It should complete the BKOPS.
859 */
860 if (!err || (err == -EINVAL)) {
861 mmc_card_clr_doing_bkops(card);
Adrian Hunter66073d82015-05-07 13:10:17 +0300862 mmc_retune_release(card->host);
Jaehoon Chung950d56a2012-09-17 08:42:02 +0000863 err = 0;
864 }
865
866 return err;
867}
868EXPORT_SYMBOL(mmc_stop_bkops);
869
870int mmc_read_bkops_status(struct mmc_card *card)
871{
872 int err;
873 u8 *ext_csd;
874
Jaehoon Chung950d56a2012-09-17 08:42:02 +0000875 mmc_claim_host(card->host);
Ulf Hanssonb2cada72014-10-17 11:48:23 +0200876 err = mmc_get_ext_csd(card, &ext_csd);
Jaehoon Chung950d56a2012-09-17 08:42:02 +0000877 mmc_release_host(card->host);
878 if (err)
Ulf Hanssonb2cada72014-10-17 11:48:23 +0200879 return err;
Jaehoon Chung950d56a2012-09-17 08:42:02 +0000880
881 card->ext_csd.raw_bkops_status = ext_csd[EXT_CSD_BKOPS_STATUS];
882 card->ext_csd.raw_exception_status = ext_csd[EXT_CSD_EXP_EVENTS_STATUS];
Jaehoon Chung950d56a2012-09-17 08:42:02 +0000883 kfree(ext_csd);
Ulf Hanssonb2cada72014-10-17 11:48:23 +0200884 return 0;
Jaehoon Chung950d56a2012-09-17 08:42:02 +0000885}
886EXPORT_SYMBOL(mmc_read_bkops_status);
887
888/**
Russell Kingd773d722006-09-07 15:57:12 +0100889 * mmc_set_data_timeout - set the timeout for a data command
890 * @data: data phase for command
891 * @card: the MMC card associated with the data transfer
Pierre Ossman67a61c42007-07-11 20:22:11 +0200892 *
893 * Computes the data timeout parameters according to the
894 * correct algorithm given the card type.
Russell Kingd773d722006-09-07 15:57:12 +0100895 */
Pierre Ossmanb146d262007-07-24 19:16:54 +0200896void mmc_set_data_timeout(struct mmc_data *data, const struct mmc_card *card)
Russell Kingd773d722006-09-07 15:57:12 +0100897{
898 unsigned int mult;
899
900 /*
Pierre Ossmane6f918b2007-08-07 14:11:55 +0200901 * SDIO cards only define an upper 1 s limit on access.
902 */
903 if (mmc_card_sdio(card)) {
904 data->timeout_ns = 1000000000;
905 data->timeout_clks = 0;
906 return;
907 }
908
909 /*
Russell Kingd773d722006-09-07 15:57:12 +0100910 * SD cards use a 100 multiplier rather than 10
911 */
912 mult = mmc_card_sd(card) ? 100 : 10;
913
914 /*
915 * Scale up the multiplier (and therefore the timeout) by
916 * the r2w factor for writes.
917 */
Pierre Ossmanb146d262007-07-24 19:16:54 +0200918 if (data->flags & MMC_DATA_WRITE)
Russell Kingd773d722006-09-07 15:57:12 +0100919 mult <<= card->csd.r2w_factor;
920
921 data->timeout_ns = card->csd.tacc_ns * mult;
922 data->timeout_clks = card->csd.tacc_clks * mult;
923
924 /*
925 * SD cards also have an upper limit on the timeout.
926 */
927 if (mmc_card_sd(card)) {
928 unsigned int timeout_us, limit_us;
929
930 timeout_us = data->timeout_ns / 1000;
Ulf Hansson9eadcc02015-10-02 10:56:11 +0200931 if (card->host->ios.clock)
Linus Walleije9b86842011-01-05 00:44:32 +0100932 timeout_us += data->timeout_clks * 1000 /
Ulf Hansson9eadcc02015-10-02 10:56:11 +0200933 (card->host->ios.clock / 1000);
Russell Kingd773d722006-09-07 15:57:12 +0100934
Pierre Ossmanb146d262007-07-24 19:16:54 +0200935 if (data->flags & MMC_DATA_WRITE)
Pierre Ossman493890e2008-10-26 12:37:25 +0100936 /*
Paul Walmsley3bdc9ba2012-03-12 04:58:00 -0600937 * The MMC spec "It is strongly recommended
938 * for hosts to implement more than 500ms
939 * timeout value even if the card indicates
940 * the 250ms maximum busy length." Even the
941 * previous value of 300ms is known to be
942 * insufficient for some cards.
Pierre Ossman493890e2008-10-26 12:37:25 +0100943 */
Paul Walmsley3bdc9ba2012-03-12 04:58:00 -0600944 limit_us = 3000000;
Russell Kingd773d722006-09-07 15:57:12 +0100945 else
946 limit_us = 100000;
947
Philip Langdalefba68bd2007-01-04 06:57:32 -0800948 /*
949 * SDHC cards always use these fixed values.
950 */
951 if (timeout_us > limit_us || mmc_card_blockaddr(card)) {
Russell Kingd773d722006-09-07 15:57:12 +0100952 data->timeout_ns = limit_us * 1000;
953 data->timeout_clks = 0;
954 }
Stefan Wahrenf7bf11a2014-04-03 17:32:05 +0200955
956 /* assign limit value if invalid */
957 if (timeout_us == 0)
958 data->timeout_ns = limit_us * 1000;
Russell Kingd773d722006-09-07 15:57:12 +0100959 }
Stefan Nilsson XK6de5fc92011-11-03 09:44:12 +0100960
961 /*
962 * Some cards require longer data read timeout than indicated in CSD.
963 * Address this by setting the read timeout to a "reasonably high"
Matt Gumbel32ecd322016-05-20 10:33:46 +0300964 * value. For the cards tested, 600ms has proven enough. If necessary,
Stefan Nilsson XK6de5fc92011-11-03 09:44:12 +0100965 * this value can be increased if other problematic cards require this.
966 */
967 if (mmc_card_long_read_time(card) && data->flags & MMC_DATA_READ) {
Matt Gumbel32ecd322016-05-20 10:33:46 +0300968 data->timeout_ns = 600000000;
Stefan Nilsson XK6de5fc92011-11-03 09:44:12 +0100969 data->timeout_clks = 0;
970 }
971
Wolfgang Mueesc0c88872009-03-11 14:28:39 +0100972 /*
973 * Some cards need very high timeouts if driven in SPI mode.
974 * The worst observed timeout was 900ms after writing a
975 * continuous stream of data until the internal logic
976 * overflowed.
977 */
978 if (mmc_host_is_spi(card->host)) {
979 if (data->flags & MMC_DATA_WRITE) {
980 if (data->timeout_ns < 1000000000)
981 data->timeout_ns = 1000000000; /* 1s */
982 } else {
983 if (data->timeout_ns < 100000000)
984 data->timeout_ns = 100000000; /* 100ms */
985 }
986 }
Russell Kingd773d722006-09-07 15:57:12 +0100987}
988EXPORT_SYMBOL(mmc_set_data_timeout);
989
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990/**
Pierre Ossmanad3868b2008-06-28 12:52:45 +0200991 * mmc_align_data_size - pads a transfer size to a more optimal value
992 * @card: the MMC card associated with the data transfer
993 * @sz: original transfer size
994 *
995 * Pads the original data size with a number of extra bytes in
996 * order to avoid controller bugs and/or performance hits
997 * (e.g. some controllers revert to PIO for certain sizes).
998 *
999 * Returns the improved size, which might be unmodified.
1000 *
1001 * Note that this function is only relevant when issuing a
1002 * single scatter gather entry.
1003 */
1004unsigned int mmc_align_data_size(struct mmc_card *card, unsigned int sz)
1005{
1006 /*
1007 * FIXME: We don't have a system for the controller to tell
1008 * the core about its problems yet, so for now we just 32-bit
1009 * align the size.
1010 */
1011 sz = ((sz + 3) / 4) * 4;
1012
1013 return sz;
1014}
1015EXPORT_SYMBOL(mmc_align_data_size);
1016
1017/**
Nicolas Pitre2342f332007-06-30 16:21:52 +02001018 * __mmc_claim_host - exclusively claim a host
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 * @host: mmc host to claim
Nicolas Pitre2342f332007-06-30 16:21:52 +02001020 * @abort: whether or not the operation should be aborted
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 *
Nicolas Pitre2342f332007-06-30 16:21:52 +02001022 * Claim a host for a set of operations. If @abort is non null and
1023 * dereference a non-zero value then this will return prematurely with
1024 * that non-zero value without acquiring the lock. Returns zero
1025 * with the lock held otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 */
Nicolas Pitre2342f332007-06-30 16:21:52 +02001027int __mmc_claim_host(struct mmc_host *host, atomic_t *abort)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028{
1029 DECLARE_WAITQUEUE(wait, current);
1030 unsigned long flags;
Nicolas Pitre2342f332007-06-30 16:21:52 +02001031 int stop;
Ulf Hansson9250aea2015-03-27 12:15:15 +01001032 bool pm = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
Pierre Ossmancf795bf2007-07-11 20:28:02 +02001034 might_sleep();
1035
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 add_wait_queue(&host->wq, &wait);
1037 spin_lock_irqsave(&host->lock, flags);
1038 while (1) {
1039 set_current_state(TASK_UNINTERRUPTIBLE);
Nicolas Pitre2342f332007-06-30 16:21:52 +02001040 stop = abort ? atomic_read(abort) : 0;
Adrian Hunter319a3f12009-09-22 16:44:30 -07001041 if (stop || !host->claimed || host->claimer == current)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 break;
1043 spin_unlock_irqrestore(&host->lock, flags);
1044 schedule();
1045 spin_lock_irqsave(&host->lock, flags);
1046 }
1047 set_current_state(TASK_RUNNING);
Adrian Hunter319a3f12009-09-22 16:44:30 -07001048 if (!stop) {
Nicolas Pitre2342f332007-06-30 16:21:52 +02001049 host->claimed = 1;
Adrian Hunter319a3f12009-09-22 16:44:30 -07001050 host->claimer = current;
1051 host->claim_cnt += 1;
Ulf Hansson9250aea2015-03-27 12:15:15 +01001052 if (host->claim_cnt == 1)
1053 pm = true;
Adrian Hunter319a3f12009-09-22 16:44:30 -07001054 } else
Nicolas Pitre2342f332007-06-30 16:21:52 +02001055 wake_up(&host->wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 spin_unlock_irqrestore(&host->lock, flags);
1057 remove_wait_queue(&host->wq, &wait);
Ulf Hansson9250aea2015-03-27 12:15:15 +01001058
1059 if (pm)
1060 pm_runtime_get_sync(mmc_dev(host));
1061
Nicolas Pitre2342f332007-06-30 16:21:52 +02001062 return stop;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063}
Nicolas Pitre2342f332007-06-30 16:21:52 +02001064EXPORT_SYMBOL(__mmc_claim_host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065
Adrian Hunter319a3f12009-09-22 16:44:30 -07001066/**
Adrian Hunter907d2e72012-02-29 09:17:21 +02001067 * mmc_release_host - release a host
Ulf Hanssonab1efd22011-03-09 09:11:02 +01001068 * @host: mmc host to release
1069 *
Adrian Hunter907d2e72012-02-29 09:17:21 +02001070 * Release a MMC host, allowing others to claim the host
1071 * for their operations.
Ulf Hanssonab1efd22011-03-09 09:11:02 +01001072 */
Adrian Hunter907d2e72012-02-29 09:17:21 +02001073void mmc_release_host(struct mmc_host *host)
Adrian Hunter8ea926b2009-09-22 16:44:29 -07001074{
1075 unsigned long flags;
1076
Adrian Hunter907d2e72012-02-29 09:17:21 +02001077 WARN_ON(!host->claimed);
1078
Adrian Hunter8ea926b2009-09-22 16:44:29 -07001079 spin_lock_irqsave(&host->lock, flags);
Adrian Hunter319a3f12009-09-22 16:44:30 -07001080 if (--host->claim_cnt) {
1081 /* Release for nested claim */
1082 spin_unlock_irqrestore(&host->lock, flags);
1083 } else {
1084 host->claimed = 0;
1085 host->claimer = NULL;
1086 spin_unlock_irqrestore(&host->lock, flags);
1087 wake_up(&host->wq);
Ulf Hansson9250aea2015-03-27 12:15:15 +01001088 pm_runtime_mark_last_busy(mmc_dev(host));
1089 pm_runtime_put_autosuspend(mmc_dev(host));
Adrian Hunter319a3f12009-09-22 16:44:30 -07001090 }
Adrian Hunter8ea926b2009-09-22 16:44:29 -07001091}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092EXPORT_SYMBOL(mmc_release_host);
1093
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001094/*
Ulf Hanssone94cfef2013-05-02 14:02:38 +02001095 * This is a helper function, which fetches a runtime pm reference for the
1096 * card device and also claims the host.
1097 */
1098void mmc_get_card(struct mmc_card *card)
1099{
1100 pm_runtime_get_sync(&card->dev);
1101 mmc_claim_host(card->host);
1102}
1103EXPORT_SYMBOL(mmc_get_card);
1104
1105/*
1106 * This is a helper function, which releases the host and drops the runtime
1107 * pm reference for the card device.
1108 */
1109void mmc_put_card(struct mmc_card *card)
1110{
1111 mmc_release_host(card->host);
1112 pm_runtime_mark_last_busy(&card->dev);
1113 pm_runtime_put_autosuspend(&card->dev);
1114}
1115EXPORT_SYMBOL(mmc_put_card);
1116
1117/*
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001118 * Internal function that does the actual ios call to the host driver,
1119 * optionally printing some debug output.
1120 */
Russell King920e70c2006-05-04 18:22:51 +01001121static inline void mmc_set_ios(struct mmc_host *host)
1122{
1123 struct mmc_ios *ios = &host->ios;
1124
Pierre Ossmancd9277c2007-02-18 12:07:47 +01001125 pr_debug("%s: clock %uHz busmode %u powermode %u cs %u Vdd %u "
1126 "width %u timing %u\n",
Russell King920e70c2006-05-04 18:22:51 +01001127 mmc_hostname(host), ios->clock, ios->bus_mode,
1128 ios->power_mode, ios->chip_select, ios->vdd,
Wolfram Sanged9feec2016-01-29 09:27:50 +01001129 1 << ios->bus_width, ios->timing);
Philip Langdalefba68bd2007-01-04 06:57:32 -08001130
Russell King920e70c2006-05-04 18:22:51 +01001131 host->ops->set_ios(host, ios);
1132}
1133
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001134/*
1135 * Control chip select pin on a host.
1136 */
Pierre Ossmanda7fbe52006-12-24 22:46:55 +01001137void mmc_set_chip_select(struct mmc_host *host, int mode)
Pierre Ossmanb57c43a2005-09-06 15:18:53 -07001138{
Pierre Ossmanda7fbe52006-12-24 22:46:55 +01001139 host->ios.chip_select = mode;
1140 mmc_set_ios(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141}
1142
1143/*
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001144 * Sets the host clock to the highest possible frequency that
1145 * is below "hz".
1146 */
Ulf Hansson9eadcc02015-10-02 10:56:11 +02001147void mmc_set_clock(struct mmc_host *host, unsigned int hz)
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001148{
Adrian Hunter6a98f1e2014-09-23 23:00:26 +03001149 WARN_ON(hz && hz < host->f_min);
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001150
1151 if (hz > host->f_max)
1152 hz = host->f_max;
1153
1154 host->ios.clock = hz;
1155 mmc_set_ios(host);
1156}
1157
Adrian Hunter63e415c2014-12-05 19:40:59 +02001158int mmc_execute_tuning(struct mmc_card *card)
1159{
1160 struct mmc_host *host = card->host;
1161 u32 opcode;
1162 int err;
1163
1164 if (!host->ops->execute_tuning)
1165 return 0;
1166
1167 if (mmc_card_mmc(card))
1168 opcode = MMC_SEND_TUNING_BLOCK_HS200;
1169 else
1170 opcode = MMC_SEND_TUNING_BLOCK;
1171
Adrian Hunter63e415c2014-12-05 19:40:59 +02001172 err = host->ops->execute_tuning(host, opcode);
Adrian Hunter63e415c2014-12-05 19:40:59 +02001173
1174 if (err)
Russell King07d97d82016-01-29 09:44:05 +00001175 pr_err("%s: tuning execution failed: %d\n",
1176 mmc_hostname(host), err);
Adrian Hunter79d5a652015-05-07 13:10:13 +03001177 else
1178 mmc_retune_enable(host);
Adrian Hunter63e415c2014-12-05 19:40:59 +02001179
1180 return err;
1181}
1182
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001183/*
1184 * Change the bus mode (open drain/push-pull) of a host.
1185 */
1186void mmc_set_bus_mode(struct mmc_host *host, unsigned int mode)
1187{
1188 host->ios.bus_mode = mode;
1189 mmc_set_ios(host);
1190}
1191
1192/*
1193 * Change data bus width of a host.
1194 */
1195void mmc_set_bus_width(struct mmc_host *host, unsigned int width)
1196{
Philip Rakity4c4cb172011-05-13 11:17:18 +05301197 host->ios.bus_width = width;
1198 mmc_set_ios(host);
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001199}
1200
Johan Rudholm2d079c42014-11-06 14:46:54 +01001201/*
1202 * Set initial state after a power cycle or a hw_reset.
1203 */
1204void mmc_set_initial_state(struct mmc_host *host)
1205{
Adrian Hunter79d5a652015-05-07 13:10:13 +03001206 mmc_retune_disable(host);
1207
Johan Rudholm2d079c42014-11-06 14:46:54 +01001208 if (mmc_host_is_spi(host))
1209 host->ios.chip_select = MMC_CS_HIGH;
1210 else
1211 host->ios.chip_select = MMC_CS_DONTCARE;
1212 host->ios.bus_mode = MMC_BUSMODE_PUSHPULL;
1213 host->ios.bus_width = MMC_BUS_WIDTH_1;
1214 host->ios.timing = MMC_TIMING_LEGACY;
Adrian Hunter75e8a222015-02-06 14:12:51 +02001215 host->ios.drv_type = 0;
Shawn Lin81ac2af2016-05-26 09:56:22 +08001216 host->ios.enhanced_strobe = false;
1217
1218 /*
1219 * Make sure we are in non-enhanced strobe mode before we
1220 * actually enable it in ext_csd.
1221 */
1222 if ((host->caps2 & MMC_CAP2_HS400_ES) &&
1223 host->ops->hs400_enhanced_strobe)
1224 host->ops->hs400_enhanced_strobe(host, &host->ios);
Johan Rudholm2d079c42014-11-06 14:46:54 +01001225
1226 mmc_set_ios(host);
1227}
1228
Anton Vorontsov86e82862008-11-26 22:54:17 +03001229/**
1230 * mmc_vdd_to_ocrbitnum - Convert a voltage to the OCR bit number
1231 * @vdd: voltage (mV)
1232 * @low_bits: prefer low bits in boundary cases
1233 *
1234 * This function returns the OCR bit number according to the provided @vdd
1235 * value. If conversion is not possible a negative errno value returned.
1236 *
1237 * Depending on the @low_bits flag the function prefers low or high OCR bits
1238 * on boundary voltages. For example,
1239 * with @low_bits = true, 3300 mV translates to ilog2(MMC_VDD_32_33);
1240 * with @low_bits = false, 3300 mV translates to ilog2(MMC_VDD_33_34);
1241 *
1242 * Any value in the [1951:1999] range translates to the ilog2(MMC_VDD_20_21).
1243 */
1244static int mmc_vdd_to_ocrbitnum(int vdd, bool low_bits)
1245{
1246 const int max_bit = ilog2(MMC_VDD_35_36);
1247 int bit;
1248
1249 if (vdd < 1650 || vdd > 3600)
1250 return -EINVAL;
1251
1252 if (vdd >= 1650 && vdd <= 1950)
1253 return ilog2(MMC_VDD_165_195);
1254
1255 if (low_bits)
1256 vdd -= 1;
1257
1258 /* Base 2000 mV, step 100 mV, bit's base 8. */
1259 bit = (vdd - 2000) / 100 + 8;
1260 if (bit > max_bit)
1261 return max_bit;
1262 return bit;
1263}
1264
1265/**
1266 * mmc_vddrange_to_ocrmask - Convert a voltage range to the OCR mask
1267 * @vdd_min: minimum voltage value (mV)
1268 * @vdd_max: maximum voltage value (mV)
1269 *
1270 * This function returns the OCR mask bits according to the provided @vdd_min
1271 * and @vdd_max values. If conversion is not possible the function returns 0.
1272 *
1273 * Notes wrt boundary cases:
1274 * This function sets the OCR bits for all boundary voltages, for example
1275 * [3300:3400] range is translated to MMC_VDD_32_33 | MMC_VDD_33_34 |
1276 * MMC_VDD_34_35 mask.
1277 */
1278u32 mmc_vddrange_to_ocrmask(int vdd_min, int vdd_max)
1279{
1280 u32 mask = 0;
1281
1282 if (vdd_max < vdd_min)
1283 return 0;
1284
1285 /* Prefer high bits for the boundary vdd_max values. */
1286 vdd_max = mmc_vdd_to_ocrbitnum(vdd_max, false);
1287 if (vdd_max < 0)
1288 return 0;
1289
1290 /* Prefer low bits for the boundary vdd_min values. */
1291 vdd_min = mmc_vdd_to_ocrbitnum(vdd_min, true);
1292 if (vdd_min < 0)
1293 return 0;
1294
1295 /* Fill the mask, from max bit to min bit. */
1296 while (vdd_max >= vdd_min)
1297 mask |= 1 << vdd_max--;
1298
1299 return mask;
1300}
1301EXPORT_SYMBOL(mmc_vddrange_to_ocrmask);
1302
Haijun Zhang6e9e3182013-08-26 09:19:22 +08001303#ifdef CONFIG_OF
1304
1305/**
1306 * mmc_of_parse_voltage - return mask of supported voltages
1307 * @np: The device node need to be parsed.
1308 * @mask: mask of voltages available for MMC/SD/SDIO
1309 *
Russell Kingcf925742016-01-29 09:43:55 +00001310 * Parse the "voltage-ranges" DT property, returning zero if it is not
1311 * found, negative errno if the voltage-range specification is invalid,
1312 * or one if the voltage-range is specified and successfully parsed.
Haijun Zhang6e9e3182013-08-26 09:19:22 +08001313 */
1314int mmc_of_parse_voltage(struct device_node *np, u32 *mask)
1315{
1316 const u32 *voltage_ranges;
1317 int num_ranges, i;
1318
1319 voltage_ranges = of_get_property(np, "voltage-ranges", &num_ranges);
1320 num_ranges = num_ranges / sizeof(*voltage_ranges) / 2;
Russell King10a16a02016-01-29 09:43:50 +00001321 if (!voltage_ranges) {
1322 pr_debug("%s: voltage-ranges unspecified\n", np->full_name);
Russell Kingcf925742016-01-29 09:43:55 +00001323 return 0;
Russell King10a16a02016-01-29 09:43:50 +00001324 }
1325 if (!num_ranges) {
1326 pr_err("%s: voltage-ranges empty\n", np->full_name);
Haijun Zhang6e9e3182013-08-26 09:19:22 +08001327 return -EINVAL;
1328 }
1329
1330 for (i = 0; i < num_ranges; i++) {
1331 const int j = i * 2;
1332 u32 ocr_mask;
1333
1334 ocr_mask = mmc_vddrange_to_ocrmask(
1335 be32_to_cpu(voltage_ranges[j]),
1336 be32_to_cpu(voltage_ranges[j + 1]));
1337 if (!ocr_mask) {
1338 pr_err("%s: voltage-range #%d is invalid\n",
1339 np->full_name, i);
1340 return -EINVAL;
1341 }
1342 *mask |= ocr_mask;
1343 }
1344
Russell Kingcf925742016-01-29 09:43:55 +00001345 return 1;
Haijun Zhang6e9e3182013-08-26 09:19:22 +08001346}
1347EXPORT_SYMBOL(mmc_of_parse_voltage);
1348
1349#endif /* CONFIG_OF */
1350
Sascha Hauer25185f32014-06-30 11:07:25 +02001351static int mmc_of_get_func_num(struct device_node *node)
1352{
1353 u32 reg;
1354 int ret;
1355
1356 ret = of_property_read_u32(node, "reg", &reg);
1357 if (ret < 0)
1358 return ret;
1359
1360 return reg;
1361}
1362
1363struct device_node *mmc_of_find_child_device(struct mmc_host *host,
1364 unsigned func_num)
1365{
1366 struct device_node *node;
1367
1368 if (!host->parent || !host->parent->of_node)
1369 return NULL;
1370
1371 for_each_child_of_node(host->parent->of_node, node) {
1372 if (mmc_of_get_func_num(node) == func_num)
1373 return node;
1374 }
1375
1376 return NULL;
1377}
1378
David Brownell5c139412009-03-11 03:30:43 -08001379#ifdef CONFIG_REGULATOR
1380
1381/**
Heiko Stuebner310c8052015-10-12 18:00:54 +02001382 * mmc_ocrbitnum_to_vdd - Convert a OCR bit number to its voltage
1383 * @vdd_bit: OCR bit number
1384 * @min_uV: minimum voltage value (mV)
1385 * @max_uV: maximum voltage value (mV)
1386 *
1387 * This function returns the voltage range according to the provided OCR
1388 * bit number. If conversion is not possible a negative errno value returned.
1389 */
1390static int mmc_ocrbitnum_to_vdd(int vdd_bit, int *min_uV, int *max_uV)
1391{
1392 int tmp;
1393
1394 if (!vdd_bit)
1395 return -EINVAL;
1396
1397 /*
1398 * REVISIT mmc_vddrange_to_ocrmask() may have set some
1399 * bits this regulator doesn't quite support ... don't
1400 * be too picky, most cards and regulators are OK with
1401 * a 0.1V range goof (it's a small error percentage).
1402 */
1403 tmp = vdd_bit - ilog2(MMC_VDD_165_195);
1404 if (tmp == 0) {
1405 *min_uV = 1650 * 1000;
1406 *max_uV = 1950 * 1000;
1407 } else {
1408 *min_uV = 1900 * 1000 + tmp * 100 * 1000;
1409 *max_uV = *min_uV + 100 * 1000;
1410 }
1411
1412 return 0;
1413}
1414
1415/**
David Brownell5c139412009-03-11 03:30:43 -08001416 * mmc_regulator_get_ocrmask - return mask of supported voltages
1417 * @supply: regulator to use
1418 *
1419 * This returns either a negative errno, or a mask of voltages that
1420 * can be provided to MMC/SD/SDIO devices using the specified voltage
1421 * regulator. This would normally be called before registering the
1422 * MMC host adapter.
1423 */
1424int mmc_regulator_get_ocrmask(struct regulator *supply)
1425{
1426 int result = 0;
1427 int count;
1428 int i;
Javier Martinez Canillas9ed7ca82014-08-14 14:39:00 +02001429 int vdd_uV;
1430 int vdd_mV;
David Brownell5c139412009-03-11 03:30:43 -08001431
1432 count = regulator_count_voltages(supply);
1433 if (count < 0)
1434 return count;
1435
1436 for (i = 0; i < count; i++) {
David Brownell5c139412009-03-11 03:30:43 -08001437 vdd_uV = regulator_list_voltage(supply, i);
1438 if (vdd_uV <= 0)
1439 continue;
1440
1441 vdd_mV = vdd_uV / 1000;
1442 result |= mmc_vddrange_to_ocrmask(vdd_mV, vdd_mV);
1443 }
1444
Javier Martinez Canillas9ed7ca82014-08-14 14:39:00 +02001445 if (!result) {
1446 vdd_uV = regulator_get_voltage(supply);
1447 if (vdd_uV <= 0)
1448 return vdd_uV;
1449
1450 vdd_mV = vdd_uV / 1000;
1451 result = mmc_vddrange_to_ocrmask(vdd_mV, vdd_mV);
1452 }
1453
David Brownell5c139412009-03-11 03:30:43 -08001454 return result;
1455}
Chris Ball45a6b322012-06-11 09:39:12 -04001456EXPORT_SYMBOL_GPL(mmc_regulator_get_ocrmask);
David Brownell5c139412009-03-11 03:30:43 -08001457
1458/**
1459 * mmc_regulator_set_ocr - set regulator to match host->ios voltage
Linus Walleij99fc5132010-09-29 01:08:27 -04001460 * @mmc: the host to regulate
David Brownell5c139412009-03-11 03:30:43 -08001461 * @supply: regulator to use
Linus Walleij99fc5132010-09-29 01:08:27 -04001462 * @vdd_bit: zero for power off, else a bit number (host->ios.vdd)
David Brownell5c139412009-03-11 03:30:43 -08001463 *
1464 * Returns zero on success, else negative errno.
1465 *
1466 * MMC host drivers may use this to enable or disable a regulator using
1467 * a particular supply voltage. This would normally be called from the
1468 * set_ios() method.
1469 */
Linus Walleij99fc5132010-09-29 01:08:27 -04001470int mmc_regulator_set_ocr(struct mmc_host *mmc,
1471 struct regulator *supply,
1472 unsigned short vdd_bit)
David Brownell5c139412009-03-11 03:30:43 -08001473{
1474 int result = 0;
1475 int min_uV, max_uV;
David Brownell5c139412009-03-11 03:30:43 -08001476
1477 if (vdd_bit) {
Heiko Stuebner310c8052015-10-12 18:00:54 +02001478 mmc_ocrbitnum_to_vdd(vdd_bit, &min_uV, &max_uV);
David Brownell5c139412009-03-11 03:30:43 -08001479
Tim Krygerca6429d2014-08-11 22:05:12 -07001480 result = regulator_set_voltage(supply, min_uV, max_uV);
Linus Walleij99fc5132010-09-29 01:08:27 -04001481 if (result == 0 && !mmc->regulator_enabled) {
David Brownell5c139412009-03-11 03:30:43 -08001482 result = regulator_enable(supply);
Linus Walleij99fc5132010-09-29 01:08:27 -04001483 if (!result)
1484 mmc->regulator_enabled = true;
1485 }
1486 } else if (mmc->regulator_enabled) {
David Brownell5c139412009-03-11 03:30:43 -08001487 result = regulator_disable(supply);
Linus Walleij99fc5132010-09-29 01:08:27 -04001488 if (result == 0)
1489 mmc->regulator_enabled = false;
David Brownell5c139412009-03-11 03:30:43 -08001490 }
1491
Linus Walleij99fc5132010-09-29 01:08:27 -04001492 if (result)
1493 dev_err(mmc_dev(mmc),
1494 "could not set regulator OCR (%d)\n", result);
David Brownell5c139412009-03-11 03:30:43 -08001495 return result;
1496}
Chris Ball45a6b322012-06-11 09:39:12 -04001497EXPORT_SYMBOL_GPL(mmc_regulator_set_ocr);
David Brownell5c139412009-03-11 03:30:43 -08001498
Douglas Anderson2086f802015-10-12 14:48:25 +02001499static int mmc_regulator_set_voltage_if_supported(struct regulator *regulator,
1500 int min_uV, int target_uV,
1501 int max_uV)
1502{
1503 /*
1504 * Check if supported first to avoid errors since we may try several
1505 * signal levels during power up and don't want to show errors.
1506 */
1507 if (!regulator_is_supported_voltage(regulator, min_uV, max_uV))
1508 return -EINVAL;
1509
1510 return regulator_set_voltage_triplet(regulator, min_uV, target_uV,
1511 max_uV);
1512}
1513
1514/**
1515 * mmc_regulator_set_vqmmc - Set VQMMC as per the ios
1516 *
1517 * For 3.3V signaling, we try to match VQMMC to VMMC as closely as possible.
1518 * That will match the behavior of old boards where VQMMC and VMMC were supplied
1519 * by the same supply. The Bus Operating conditions for 3.3V signaling in the
1520 * SD card spec also define VQMMC in terms of VMMC.
1521 * If this is not possible we'll try the full 2.7-3.6V of the spec.
1522 *
1523 * For 1.2V and 1.8V signaling we'll try to get as close as possible to the
1524 * requested voltage. This is definitely a good idea for UHS where there's a
1525 * separate regulator on the card that's trying to make 1.8V and it's best if
1526 * we match.
1527 *
1528 * This function is expected to be used by a controller's
1529 * start_signal_voltage_switch() function.
1530 */
1531int mmc_regulator_set_vqmmc(struct mmc_host *mmc, struct mmc_ios *ios)
1532{
1533 struct device *dev = mmc_dev(mmc);
1534 int ret, volt, min_uV, max_uV;
1535
1536 /* If no vqmmc supply then we can't change the voltage */
1537 if (IS_ERR(mmc->supply.vqmmc))
1538 return -EINVAL;
1539
1540 switch (ios->signal_voltage) {
1541 case MMC_SIGNAL_VOLTAGE_120:
1542 return mmc_regulator_set_voltage_if_supported(mmc->supply.vqmmc,
1543 1100000, 1200000, 1300000);
1544 case MMC_SIGNAL_VOLTAGE_180:
1545 return mmc_regulator_set_voltage_if_supported(mmc->supply.vqmmc,
1546 1700000, 1800000, 1950000);
1547 case MMC_SIGNAL_VOLTAGE_330:
1548 ret = mmc_ocrbitnum_to_vdd(mmc->ios.vdd, &volt, &max_uV);
1549 if (ret < 0)
1550 return ret;
1551
1552 dev_dbg(dev, "%s: found vmmc voltage range of %d-%duV\n",
1553 __func__, volt, max_uV);
1554
1555 min_uV = max(volt - 300000, 2700000);
1556 max_uV = min(max_uV + 200000, 3600000);
1557
1558 /*
1559 * Due to a limitation in the current implementation of
1560 * regulator_set_voltage_triplet() which is taking the lowest
1561 * voltage possible if below the target, search for a suitable
1562 * voltage in two steps and try to stay close to vmmc
1563 * with a 0.3V tolerance at first.
1564 */
1565 if (!mmc_regulator_set_voltage_if_supported(mmc->supply.vqmmc,
1566 min_uV, volt, max_uV))
1567 return 0;
1568
1569 return mmc_regulator_set_voltage_if_supported(mmc->supply.vqmmc,
1570 2700000, volt, 3600000);
1571 default:
1572 return -EINVAL;
1573 }
1574}
1575EXPORT_SYMBOL_GPL(mmc_regulator_set_vqmmc);
1576
Tim Kryger4d1f52f2014-05-06 15:57:01 -07001577#endif /* CONFIG_REGULATOR */
1578
Guennadi Liakhovetskie1377882012-06-20 02:28:43 -04001579int mmc_regulator_get_supply(struct mmc_host *mmc)
1580{
1581 struct device *dev = mmc_dev(mmc);
Guennadi Liakhovetskie1377882012-06-20 02:28:43 -04001582 int ret;
1583
Tim Kryger4d1f52f2014-05-06 15:57:01 -07001584 mmc->supply.vmmc = devm_regulator_get_optional(dev, "vmmc");
Mark Brownbc35d5e2013-07-29 21:58:01 +01001585 mmc->supply.vqmmc = devm_regulator_get_optional(dev, "vqmmc");
Guennadi Liakhovetskie1377882012-06-20 02:28:43 -04001586
Tim Kryger4d1f52f2014-05-06 15:57:01 -07001587 if (IS_ERR(mmc->supply.vmmc)) {
1588 if (PTR_ERR(mmc->supply.vmmc) == -EPROBE_DEFER)
1589 return -EPROBE_DEFER;
ludovic.desroches@atmel.com6e1bbc52015-11-09 15:03:59 +01001590 dev_dbg(dev, "No vmmc regulator found\n");
Tim Kryger4d1f52f2014-05-06 15:57:01 -07001591 } else {
1592 ret = mmc_regulator_get_ocrmask(mmc->supply.vmmc);
1593 if (ret > 0)
1594 mmc->ocr_avail = ret;
1595 else
1596 dev_warn(dev, "Failed getting OCR mask: %d\n", ret);
1597 }
Guennadi Liakhovetskie1377882012-06-20 02:28:43 -04001598
Tim Kryger4d1f52f2014-05-06 15:57:01 -07001599 if (IS_ERR(mmc->supply.vqmmc)) {
1600 if (PTR_ERR(mmc->supply.vqmmc) == -EPROBE_DEFER)
1601 return -EPROBE_DEFER;
ludovic.desroches@atmel.com6e1bbc52015-11-09 15:03:59 +01001602 dev_dbg(dev, "No vqmmc regulator found\n");
Tim Kryger4d1f52f2014-05-06 15:57:01 -07001603 }
Guennadi Liakhovetskie1377882012-06-20 02:28:43 -04001604
1605 return 0;
1606}
1607EXPORT_SYMBOL_GPL(mmc_regulator_get_supply);
1608
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001609/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 * Mask off any voltages we don't support and select
1611 * the lowest voltage
1612 */
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001613u32 mmc_select_voltage(struct mmc_host *host, u32 ocr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614{
1615 int bit;
1616
Ulf Hansson726d6f22013-09-16 12:06:15 +02001617 /*
1618 * Sanity check the voltages that the card claims to
1619 * support.
1620 */
1621 if (ocr & 0x7F) {
1622 dev_warn(mmc_dev(host),
1623 "card claims to support voltages below defined range\n");
1624 ocr &= ~0x7F;
1625 }
1626
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 ocr &= host->ocr_avail;
Ulf Hanssonce69d372013-09-16 11:28:42 +02001628 if (!ocr) {
1629 dev_warn(mmc_dev(host), "no support for card's volts\n");
1630 return 0;
1631 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
Ulf Hanssonce69d372013-09-16 11:28:42 +02001633 if (host->caps2 & MMC_CAP2_FULL_PWR_CYCLE) {
1634 bit = ffs(ocr) - 1;
Timo Teras63ef7312006-11-02 19:43:27 +01001635 ocr &= 3 << bit;
Ulf Hanssonce69d372013-09-16 11:28:42 +02001636 mmc_power_cycle(host, ocr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 } else {
Ulf Hanssonce69d372013-09-16 11:28:42 +02001638 bit = fls(ocr) - 1;
1639 ocr &= 3 << bit;
1640 if (bit != host->ios.vdd)
1641 dev_warn(mmc_dev(host), "exceeding card's volts\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 }
1643
1644 return ocr;
1645}
1646
Johan Rudholm567c8902013-01-28 15:08:27 +01001647int __mmc_set_signal_voltage(struct mmc_host *host, int signal_voltage)
1648{
1649 int err = 0;
1650 int old_signal_voltage = host->ios.signal_voltage;
1651
1652 host->ios.signal_voltage = signal_voltage;
Ulf Hansson9eadcc02015-10-02 10:56:11 +02001653 if (host->ops->start_signal_voltage_switch)
Johan Rudholm567c8902013-01-28 15:08:27 +01001654 err = host->ops->start_signal_voltage_switch(host, &host->ios);
Johan Rudholm567c8902013-01-28 15:08:27 +01001655
1656 if (err)
1657 host->ios.signal_voltage = old_signal_voltage;
1658
1659 return err;
1660
1661}
1662
Ulf Hansson0f791fd2013-09-12 15:36:34 +02001663int mmc_set_signal_voltage(struct mmc_host *host, int signal_voltage, u32 ocr)
Arindam Nathf2119df2011-05-05 12:18:57 +05301664{
1665 struct mmc_command cmd = {0};
1666 int err = 0;
Johan Rudholm0797e5f2013-01-28 15:08:28 +01001667 u32 clock;
Arindam Nathf2119df2011-05-05 12:18:57 +05301668
1669 BUG_ON(!host);
1670
1671 /*
1672 * Send CMD11 only if the request is to switch the card to
1673 * 1.8V signalling.
1674 */
Johan Rudholm0797e5f2013-01-28 15:08:28 +01001675 if (signal_voltage == MMC_SIGNAL_VOLTAGE_330)
1676 return __mmc_set_signal_voltage(host, signal_voltage);
Arindam Nathf2119df2011-05-05 12:18:57 +05301677
Johan Rudholm0797e5f2013-01-28 15:08:28 +01001678 /*
1679 * If we cannot switch voltages, return failure so the caller
1680 * can continue without UHS mode
1681 */
1682 if (!host->ops->start_signal_voltage_switch)
1683 return -EPERM;
1684 if (!host->ops->card_busy)
Joe Perches66061102014-09-12 14:56:56 -07001685 pr_warn("%s: cannot verify signal voltage switch\n",
1686 mmc_hostname(host));
Arindam Nathf2119df2011-05-05 12:18:57 +05301687
Johan Rudholm0797e5f2013-01-28 15:08:28 +01001688 cmd.opcode = SD_SWITCH_VOLTAGE;
1689 cmd.arg = 0;
1690 cmd.flags = MMC_RSP_R1 | MMC_CMD_AC;
1691
1692 err = mmc_wait_for_cmd(host, &cmd, 0);
1693 if (err)
Ulf Hansson9eadcc02015-10-02 10:56:11 +02001694 return err;
Johan Rudholm0797e5f2013-01-28 15:08:28 +01001695
Ulf Hansson9eadcc02015-10-02 10:56:11 +02001696 if (!mmc_host_is_spi(host) && (cmd.resp[0] & R1_ERROR))
1697 return -EIO;
1698
Johan Rudholm0797e5f2013-01-28 15:08:28 +01001699 /*
1700 * The card should drive cmd and dat[0:3] low immediately
1701 * after the response of cmd11, but wait 1 ms to be sure
1702 */
1703 mmc_delay(1);
1704 if (host->ops->card_busy && !host->ops->card_busy(host)) {
1705 err = -EAGAIN;
1706 goto power_cycle;
1707 }
1708 /*
1709 * During a signal voltage level switch, the clock must be gated
1710 * for 5 ms according to the SD spec
1711 */
1712 clock = host->ios.clock;
1713 host->ios.clock = 0;
1714 mmc_set_ios(host);
1715
1716 if (__mmc_set_signal_voltage(host, signal_voltage)) {
1717 /*
1718 * Voltages may not have been switched, but we've already
1719 * sent CMD11, so a power cycle is required anyway
1720 */
1721 err = -EAGAIN;
1722 goto power_cycle;
Arindam Nathf2119df2011-05-05 12:18:57 +05301723 }
1724
Doug Anderson7c5209c2015-05-12 14:46:11 -07001725 /* Keep clock gated for at least 10 ms, though spec only says 5 ms */
1726 mmc_delay(10);
Johan Rudholm0797e5f2013-01-28 15:08:28 +01001727 host->ios.clock = clock;
1728 mmc_set_ios(host);
1729
1730 /* Wait for at least 1 ms according to spec */
1731 mmc_delay(1);
1732
1733 /*
1734 * Failure to switch is indicated by the card holding
1735 * dat[0:3] low
1736 */
1737 if (host->ops->card_busy && host->ops->card_busy(host))
1738 err = -EAGAIN;
1739
1740power_cycle:
1741 if (err) {
1742 pr_debug("%s: Signal voltage switch failed, "
1743 "power cycling card\n", mmc_hostname(host));
Ulf Hansson0f791fd2013-09-12 15:36:34 +02001744 mmc_power_cycle(host, ocr);
Johan Rudholm0797e5f2013-01-28 15:08:28 +01001745 }
1746
Johan Rudholm0797e5f2013-01-28 15:08:28 +01001747 return err;
Arindam Nathf2119df2011-05-05 12:18:57 +05301748}
1749
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750/*
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001751 * Select timing parameters for host.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 */
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001753void mmc_set_timing(struct mmc_host *host, unsigned int timing)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754{
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001755 host->ios.timing = timing;
1756 mmc_set_ios(host);
Pierre Ossmanb57c43a2005-09-06 15:18:53 -07001757}
1758
1759/*
Arindam Nathd6d50a12011-05-05 12:18:59 +05301760 * Select appropriate driver type for host.
1761 */
1762void mmc_set_driver_type(struct mmc_host *host, unsigned int drv_type)
1763{
1764 host->ios.drv_type = drv_type;
1765 mmc_set_ios(host);
1766}
1767
Adrian Huntere23350b2015-02-06 14:12:55 +02001768int mmc_select_drive_strength(struct mmc_card *card, unsigned int max_dtr,
1769 int card_drv_type, int *drv_type)
1770{
1771 struct mmc_host *host = card->host;
1772 int host_drv_type = SD_DRIVER_TYPE_B;
Adrian Huntere23350b2015-02-06 14:12:55 +02001773
1774 *drv_type = 0;
1775
1776 if (!host->ops->select_drive_strength)
1777 return 0;
1778
1779 /* Use SD definition of driver strength for hosts */
1780 if (host->caps & MMC_CAP_DRIVER_TYPE_A)
1781 host_drv_type |= SD_DRIVER_TYPE_A;
1782
1783 if (host->caps & MMC_CAP_DRIVER_TYPE_C)
1784 host_drv_type |= SD_DRIVER_TYPE_C;
1785
1786 if (host->caps & MMC_CAP_DRIVER_TYPE_D)
1787 host_drv_type |= SD_DRIVER_TYPE_D;
1788
1789 /*
1790 * The drive strength that the hardware can support
1791 * depends on the board design. Pass the appropriate
1792 * information and let the hardware specific code
1793 * return what is possible given the options
1794 */
Ulf Hansson9eadcc02015-10-02 10:56:11 +02001795 return host->ops->select_drive_strength(card, max_dtr,
1796 host_drv_type,
1797 card_drv_type,
1798 drv_type);
Adrian Huntere23350b2015-02-06 14:12:55 +02001799}
1800
Arindam Nathd6d50a12011-05-05 12:18:59 +05301801/*
Russell King45f82452005-12-14 14:57:35 +00001802 * Apply power to the MMC stack. This is a two-stage process.
1803 * First, we enable power to the card without the clock running.
1804 * We then wait a bit for the power to stabilise. Finally,
1805 * enable the bus drivers and clock to the card.
1806 *
1807 * We must _NOT_ enable the clock prior to power stablising.
1808 *
1809 * If a host does all the power sequencing itself, ignore the
1810 * initial MMC_POWER_UP stage.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 */
Ulf Hansson4a065192013-09-12 14:36:53 +02001812void mmc_power_up(struct mmc_host *host, u32 ocr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813{
Ulf Hanssonfa550182012-05-09 16:15:26 +02001814 if (host->ios.power_mode == MMC_POWER_ON)
1815 return;
1816
Ulf Hansson3aa87932014-11-28 14:38:36 +01001817 mmc_pwrseq_pre_power_on(host);
1818
Ulf Hansson4a065192013-09-12 14:36:53 +02001819 host->ios.vdd = fls(ocr) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 host->ios.power_mode = MMC_POWER_UP;
Johan Rudholm2d079c42014-11-06 14:46:54 +01001821 /* Set initial state and call mmc_set_ios */
1822 mmc_set_initial_state(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823
Tim Krygerceae98f2014-04-24 14:44:26 -07001824 /* Try to set signal voltage to 3.3V but fall back to 1.8v or 1.2v */
1825 if (__mmc_set_signal_voltage(host, MMC_SIGNAL_VOLTAGE_330) == 0)
1826 dev_dbg(mmc_dev(host), "Initial signal voltage of 3.3v\n");
1827 else if (__mmc_set_signal_voltage(host, MMC_SIGNAL_VOLTAGE_180) == 0)
1828 dev_dbg(mmc_dev(host), "Initial signal voltage of 1.8v\n");
1829 else if (__mmc_set_signal_voltage(host, MMC_SIGNAL_VOLTAGE_120) == 0)
1830 dev_dbg(mmc_dev(host), "Initial signal voltage of 1.2v\n");
Aaron Lu108ecc42012-07-10 16:55:37 +08001831
Pierre Ossmanf9996ae2007-09-19 18:38:50 +02001832 /*
1833 * This delay should be sufficient to allow the power supply
1834 * to reach the minimum voltage.
1835 */
José M. Fernández79bccc52009-03-10 02:21:21 +01001836 mmc_delay(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837
Ulf Hansson4febb7e2015-02-02 16:01:14 +01001838 mmc_pwrseq_post_power_on(host);
1839
Hein Tibosch88ae8b82010-09-06 09:37:19 +08001840 host->ios.clock = host->f_init;
Sascha Hauer8dfd0372009-04-09 08:32:02 +02001841
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 host->ios.power_mode = MMC_POWER_ON;
Russell King920e70c2006-05-04 18:22:51 +01001843 mmc_set_ios(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844
Pierre Ossmanf9996ae2007-09-19 18:38:50 +02001845 /*
1846 * This delay must be at least 74 clock sizes, or 1 ms, or the
1847 * time required to reach a stable voltage.
1848 */
José M. Fernández79bccc52009-03-10 02:21:21 +01001849 mmc_delay(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850}
1851
Ulf Hansson7f7e4122011-09-21 14:08:13 -04001852void mmc_power_off(struct mmc_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853{
Ulf Hanssonfa550182012-05-09 16:15:26 +02001854 if (host->ios.power_mode == MMC_POWER_OFF)
1855 return;
1856
Ulf Hansson3aa87932014-11-28 14:38:36 +01001857 mmc_pwrseq_power_off(host);
1858
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 host->ios.clock = 0;
1860 host->ios.vdd = 0;
Ulf Hanssonb33d46c2011-03-05 14:36:24 +01001861
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 host->ios.power_mode = MMC_POWER_OFF;
Johan Rudholm2d079c42014-11-06 14:46:54 +01001863 /* Set initial state and call mmc_set_ios */
1864 mmc_set_initial_state(host);
Mika Westerberg778e2772011-08-18 15:23:48 +03001865
Daniel Drake041beb12011-09-07 10:22:09 +01001866 /*
1867 * Some configurations, such as the 802.11 SDIO card in the OLPC
1868 * XO-1.5, require a short delay after poweroff before the card
1869 * can be successfully turned on again.
1870 */
1871 mmc_delay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872}
1873
Ulf Hansson4a065192013-09-12 14:36:53 +02001874void mmc_power_cycle(struct mmc_host *host, u32 ocr)
Johan Rudholm276e0902013-01-28 15:08:25 +01001875{
1876 mmc_power_off(host);
1877 /* Wait at least 1 ms according to SD spec */
1878 mmc_delay(1);
Ulf Hansson4a065192013-09-12 14:36:53 +02001879 mmc_power_up(host, ocr);
Johan Rudholm276e0902013-01-28 15:08:25 +01001880}
1881
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882/*
Adrian Bunk39361852007-07-25 00:40:58 +02001883 * Cleanup when the last reference to the bus operator is dropped.
1884 */
Adrian Bunk261172f2008-04-13 21:15:47 +03001885static void __mmc_release_bus(struct mmc_host *host)
Adrian Bunk39361852007-07-25 00:40:58 +02001886{
1887 BUG_ON(!host);
1888 BUG_ON(host->bus_refs);
1889 BUG_ON(!host->bus_dead);
1890
1891 host->bus_ops = NULL;
1892}
1893
1894/*
1895 * Increase reference count of bus operator
1896 */
1897static inline void mmc_bus_get(struct mmc_host *host)
1898{
1899 unsigned long flags;
1900
1901 spin_lock_irqsave(&host->lock, flags);
1902 host->bus_refs++;
1903 spin_unlock_irqrestore(&host->lock, flags);
1904}
1905
1906/*
1907 * Decrease reference count of bus operator and free it if
1908 * it is the last reference.
1909 */
1910static inline void mmc_bus_put(struct mmc_host *host)
1911{
1912 unsigned long flags;
1913
1914 spin_lock_irqsave(&host->lock, flags);
1915 host->bus_refs--;
1916 if ((host->bus_refs == 0) && host->bus_ops)
1917 __mmc_release_bus(host);
1918 spin_unlock_irqrestore(&host->lock, flags);
1919}
1920
1921/*
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001922 * Assign a mmc bus handler to a host. Only one bus handler may control a
1923 * host at any given time.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 */
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001925void mmc_attach_bus(struct mmc_host *host, const struct mmc_bus_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926{
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001927 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001929 BUG_ON(!host);
1930 BUG_ON(!ops);
Pierre Ossmanb8558852007-01-03 19:47:29 +01001931
Pierre Ossmand84075c82007-08-09 13:23:56 +02001932 WARN_ON(!host->claimed);
Pierre Ossmanb8558852007-01-03 19:47:29 +01001933
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001934 spin_lock_irqsave(&host->lock, flags);
Pierre Ossmanb8558852007-01-03 19:47:29 +01001935
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001936 BUG_ON(host->bus_ops);
1937 BUG_ON(host->bus_refs);
Pierre Ossmanb8558852007-01-03 19:47:29 +01001938
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001939 host->bus_ops = ops;
1940 host->bus_refs = 1;
1941 host->bus_dead = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001943 spin_unlock_irqrestore(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944}
1945
1946/*
Ulf Hansson7f7e4122011-09-21 14:08:13 -04001947 * Remove the current bus handler from a host.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 */
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001949void mmc_detach_bus(struct mmc_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950{
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001951 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001953 BUG_ON(!host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954
Pierre Ossmand84075c82007-08-09 13:23:56 +02001955 WARN_ON(!host->claimed);
1956 WARN_ON(!host->bus_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001958 spin_lock_irqsave(&host->lock, flags);
1959
1960 host->bus_dead = 1;
1961
1962 spin_unlock_irqrestore(&host->lock, flags);
1963
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001964 mmc_bus_put(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965}
1966
Ulf Hanssonbbd43682013-09-20 11:02:35 +02001967static void _mmc_detect_change(struct mmc_host *host, unsigned long delay,
1968 bool cd_irq)
1969{
1970#ifdef CONFIG_MMC_DEBUG
1971 unsigned long flags;
1972 spin_lock_irqsave(&host->lock, flags);
1973 WARN_ON(host->removed);
1974 spin_unlock_irqrestore(&host->lock, flags);
1975#endif
1976
1977 /*
1978 * If the device is configured as wakeup, we prevent a new sleep for
1979 * 5 s to give provision for user space to consume the event.
1980 */
1981 if (cd_irq && !(host->caps & MMC_CAP_NEEDS_POLL) &&
1982 device_can_wakeup(mmc_dev(host)))
1983 pm_wakeup_event(mmc_dev(host), 5000);
1984
1985 host->detect_change = 1;
1986 mmc_schedule_delayed_work(&host->detect, delay);
1987}
1988
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989/**
1990 * mmc_detect_change - process change of state on a MMC socket
1991 * @host: host which changed state.
Richard Purdie8dc00332005-09-08 17:53:01 +01001992 * @delay: optional delay to wait before detection (jiffies)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 *
Pierre Ossman67a61c42007-07-11 20:22:11 +02001994 * MMC drivers should call this when they detect a card has been
1995 * inserted or removed. The MMC layer will confirm that any
1996 * present card is still functional, and initialize any newly
1997 * inserted.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 */
Richard Purdie8dc00332005-09-08 17:53:01 +01001999void mmc_detect_change(struct mmc_host *host, unsigned long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000{
Ulf Hanssonbbd43682013-09-20 11:02:35 +02002001 _mmc_detect_change(host, delay, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003EXPORT_SYMBOL(mmc_detect_change);
2004
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07002005void mmc_init_erase(struct mmc_card *card)
2006{
2007 unsigned int sz;
2008
2009 if (is_power_of_2(card->erase_size))
2010 card->erase_shift = ffs(card->erase_size) - 1;
2011 else
2012 card->erase_shift = 0;
2013
2014 /*
2015 * It is possible to erase an arbitrarily large area of an SD or MMC
2016 * card. That is not desirable because it can take a long time
2017 * (minutes) potentially delaying more important I/O, and also the
2018 * timeout calculations become increasingly hugely over-estimated.
2019 * Consequently, 'pref_erase' is defined as a guide to limit erases
2020 * to that size and alignment.
2021 *
2022 * For SD cards that define Allocation Unit size, limit erases to one
Gwendal Grignouc6d8fd62016-06-03 09:08:52 -07002023 * Allocation Unit at a time.
2024 * For MMC, have a stab at ai good value and for modern cards it will
2025 * end up being 4MiB. Note that if the value is too small, it can end
2026 * up taking longer to erase. Also note, erase_size is already set to
2027 * High Capacity Erase Size if available when this function is called.
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07002028 */
2029 if (mmc_card_sd(card) && card->ssr.au) {
2030 card->pref_erase = card->ssr.au;
2031 card->erase_shift = ffs(card->ssr.au) - 1;
Chuanxiao Dongcc8aa7d2014-08-14 18:29:24 +08002032 } else if (card->erase_size) {
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07002033 sz = (card->csd.capacity << (card->csd.read_blkbits - 9)) >> 11;
2034 if (sz < 128)
2035 card->pref_erase = 512 * 1024 / 512;
2036 else if (sz < 512)
2037 card->pref_erase = 1024 * 1024 / 512;
2038 else if (sz < 1024)
2039 card->pref_erase = 2 * 1024 * 1024 / 512;
2040 else
2041 card->pref_erase = 4 * 1024 * 1024 / 512;
2042 if (card->pref_erase < card->erase_size)
2043 card->pref_erase = card->erase_size;
2044 else {
2045 sz = card->pref_erase % card->erase_size;
2046 if (sz)
2047 card->pref_erase += card->erase_size - sz;
2048 }
Chuanxiao Dongcc8aa7d2014-08-14 18:29:24 +08002049 } else
2050 card->pref_erase = 0;
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07002051}
2052
Andrei Warkentineaa02f72011-04-11 16:13:41 -05002053static unsigned int mmc_mmc_erase_timeout(struct mmc_card *card,
2054 unsigned int arg, unsigned int qty)
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07002055{
2056 unsigned int erase_timeout;
2057
Adrian Hunter7194efb2012-04-05 14:45:47 +03002058 if (arg == MMC_DISCARD_ARG ||
2059 (arg == MMC_TRIM_ARG && card->ext_csd.rev >= 6)) {
2060 erase_timeout = card->ext_csd.trim_timeout;
2061 } else if (card->ext_csd.erase_group_def & 1) {
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07002062 /* High Capacity Erase Group Size uses HC timeouts */
2063 if (arg == MMC_TRIM_ARG)
2064 erase_timeout = card->ext_csd.trim_timeout;
2065 else
2066 erase_timeout = card->ext_csd.hc_erase_timeout;
2067 } else {
2068 /* CSD Erase Group Size uses write timeout */
2069 unsigned int mult = (10 << card->csd.r2w_factor);
2070 unsigned int timeout_clks = card->csd.tacc_clks * mult;
2071 unsigned int timeout_us;
2072
2073 /* Avoid overflow: e.g. tacc_ns=80000000 mult=1280 */
2074 if (card->csd.tacc_ns < 1000000)
2075 timeout_us = (card->csd.tacc_ns * mult) / 1000;
2076 else
2077 timeout_us = (card->csd.tacc_ns / 1000) * mult;
2078
2079 /*
2080 * ios.clock is only a target. The real clock rate might be
2081 * less but not that much less, so fudge it by multiplying by 2.
2082 */
2083 timeout_clks <<= 1;
2084 timeout_us += (timeout_clks * 1000) /
Ulf Hansson9eadcc02015-10-02 10:56:11 +02002085 (card->host->ios.clock / 1000);
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07002086
2087 erase_timeout = timeout_us / 1000;
2088
2089 /*
2090 * Theoretically, the calculation could underflow so round up
2091 * to 1ms in that case.
2092 */
2093 if (!erase_timeout)
2094 erase_timeout = 1;
2095 }
2096
2097 /* Multiplier for secure operations */
2098 if (arg & MMC_SECURE_ARGS) {
2099 if (arg == MMC_SECURE_ERASE_ARG)
2100 erase_timeout *= card->ext_csd.sec_erase_mult;
2101 else
2102 erase_timeout *= card->ext_csd.sec_trim_mult;
2103 }
2104
2105 erase_timeout *= qty;
2106
2107 /*
2108 * Ensure at least a 1 second timeout for SPI as per
2109 * 'mmc_set_data_timeout()'
2110 */
2111 if (mmc_host_is_spi(card->host) && erase_timeout < 1000)
2112 erase_timeout = 1000;
2113
Andrei Warkentineaa02f72011-04-11 16:13:41 -05002114 return erase_timeout;
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07002115}
2116
Andrei Warkentineaa02f72011-04-11 16:13:41 -05002117static unsigned int mmc_sd_erase_timeout(struct mmc_card *card,
2118 unsigned int arg,
2119 unsigned int qty)
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07002120{
Andrei Warkentineaa02f72011-04-11 16:13:41 -05002121 unsigned int erase_timeout;
2122
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07002123 if (card->ssr.erase_timeout) {
2124 /* Erase timeout specified in SD Status Register (SSR) */
Andrei Warkentineaa02f72011-04-11 16:13:41 -05002125 erase_timeout = card->ssr.erase_timeout * qty +
2126 card->ssr.erase_offset;
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07002127 } else {
2128 /*
2129 * Erase timeout not specified in SD Status Register (SSR) so
2130 * use 250ms per write block.
2131 */
Andrei Warkentineaa02f72011-04-11 16:13:41 -05002132 erase_timeout = 250 * qty;
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07002133 }
2134
2135 /* Must not be less than 1 second */
Andrei Warkentineaa02f72011-04-11 16:13:41 -05002136 if (erase_timeout < 1000)
2137 erase_timeout = 1000;
2138
2139 return erase_timeout;
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07002140}
2141
Andrei Warkentineaa02f72011-04-11 16:13:41 -05002142static unsigned int mmc_erase_timeout(struct mmc_card *card,
2143 unsigned int arg,
2144 unsigned int qty)
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07002145{
2146 if (mmc_card_sd(card))
Andrei Warkentineaa02f72011-04-11 16:13:41 -05002147 return mmc_sd_erase_timeout(card, arg, qty);
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07002148 else
Andrei Warkentineaa02f72011-04-11 16:13:41 -05002149 return mmc_mmc_erase_timeout(card, arg, qty);
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07002150}
2151
2152static int mmc_do_erase(struct mmc_card *card, unsigned int from,
2153 unsigned int to, unsigned int arg)
2154{
Chris Ball1278dba2011-04-13 23:40:30 -04002155 struct mmc_command cmd = {0};
Baolin Wangbb4eecf2016-07-25 16:48:39 +08002156 unsigned int qty = 0, busy_timeout = 0;
2157 bool use_r1b_resp = false;
Trey Ramsay8fee4762012-11-16 09:31:41 -06002158 unsigned long timeout;
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07002159 int err;
2160
Adrian Hunter8f11d102015-05-07 13:10:16 +03002161 mmc_retune_hold(card->host);
2162
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07002163 /*
2164 * qty is used to calculate the erase timeout which depends on how many
2165 * erase groups (or allocation units in SD terminology) are affected.
2166 * We count erasing part of an erase group as one erase group.
2167 * For SD, the allocation units are always a power of 2. For MMC, the
2168 * erase group size is almost certainly also power of 2, but it does not
2169 * seem to insist on that in the JEDEC standard, so we fall back to
2170 * division in that case. SD may not specify an allocation unit size,
2171 * in which case the timeout is based on the number of write blocks.
2172 *
2173 * Note that the timeout for secure trim 2 will only be correct if the
2174 * number of erase groups specified is the same as the total of all
2175 * preceding secure trim 1 commands. Since the power may have been
2176 * lost since the secure trim 1 commands occurred, it is generally
2177 * impossible to calculate the secure trim 2 timeout correctly.
2178 */
2179 if (card->erase_shift)
2180 qty += ((to >> card->erase_shift) -
2181 (from >> card->erase_shift)) + 1;
2182 else if (mmc_card_sd(card))
2183 qty += to - from + 1;
2184 else
2185 qty += ((to / card->erase_size) -
2186 (from / card->erase_size)) + 1;
2187
2188 if (!mmc_card_blockaddr(card)) {
2189 from <<= 9;
2190 to <<= 9;
2191 }
2192
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07002193 if (mmc_card_sd(card))
2194 cmd.opcode = SD_ERASE_WR_BLK_START;
2195 else
2196 cmd.opcode = MMC_ERASE_GROUP_START;
2197 cmd.arg = from;
2198 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
2199 err = mmc_wait_for_cmd(card->host, &cmd, 0);
2200 if (err) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05302201 pr_err("mmc_erase: group start error %d, "
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07002202 "status %#x\n", err, cmd.resp[0]);
Adrian Hunter67716322011-08-29 16:42:15 +03002203 err = -EIO;
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07002204 goto out;
2205 }
2206
2207 memset(&cmd, 0, sizeof(struct mmc_command));
2208 if (mmc_card_sd(card))
2209 cmd.opcode = SD_ERASE_WR_BLK_END;
2210 else
2211 cmd.opcode = MMC_ERASE_GROUP_END;
2212 cmd.arg = to;
2213 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
2214 err = mmc_wait_for_cmd(card->host, &cmd, 0);
2215 if (err) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05302216 pr_err("mmc_erase: group end error %d, status %#x\n",
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07002217 err, cmd.resp[0]);
Adrian Hunter67716322011-08-29 16:42:15 +03002218 err = -EIO;
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07002219 goto out;
2220 }
2221
2222 memset(&cmd, 0, sizeof(struct mmc_command));
2223 cmd.opcode = MMC_ERASE;
2224 cmd.arg = arg;
Baolin Wangbb4eecf2016-07-25 16:48:39 +08002225 busy_timeout = mmc_erase_timeout(card, arg, qty);
2226 /*
2227 * If the host controller supports busy signalling and the timeout for
2228 * the erase operation does not exceed the max_busy_timeout, we should
2229 * use R1B response. Or we need to prevent the host from doing hw busy
2230 * detection, which is done by converting to a R1 response instead.
2231 */
2232 if (card->host->max_busy_timeout &&
2233 busy_timeout > card->host->max_busy_timeout) {
2234 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
2235 } else {
2236 cmd.flags = MMC_RSP_SPI_R1B | MMC_RSP_R1B | MMC_CMD_AC;
2237 cmd.busy_timeout = busy_timeout;
2238 use_r1b_resp = true;
2239 }
2240
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07002241 err = mmc_wait_for_cmd(card->host, &cmd, 0);
2242 if (err) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05302243 pr_err("mmc_erase: erase error %d, status %#x\n",
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07002244 err, cmd.resp[0]);
2245 err = -EIO;
2246 goto out;
2247 }
2248
2249 if (mmc_host_is_spi(card->host))
2250 goto out;
2251
Baolin Wangbb4eecf2016-07-25 16:48:39 +08002252 /*
2253 * In case of when R1B + MMC_CAP_WAIT_WHILE_BUSY is used, the polling
2254 * shall be avoided.
2255 */
2256 if ((card->host->caps & MMC_CAP_WAIT_WHILE_BUSY) && use_r1b_resp)
2257 goto out;
2258
2259 timeout = jiffies + msecs_to_jiffies(busy_timeout);
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07002260 do {
2261 memset(&cmd, 0, sizeof(struct mmc_command));
2262 cmd.opcode = MMC_SEND_STATUS;
2263 cmd.arg = card->rca << 16;
2264 cmd.flags = MMC_RSP_R1 | MMC_CMD_AC;
2265 /* Do not retry else we can't see errors */
2266 err = mmc_wait_for_cmd(card->host, &cmd, 0);
2267 if (err || (cmd.resp[0] & 0xFDF92000)) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05302268 pr_err("error %d requesting status %#x\n",
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07002269 err, cmd.resp[0]);
2270 err = -EIO;
2271 goto out;
2272 }
Trey Ramsay8fee4762012-11-16 09:31:41 -06002273
2274 /* Timeout if the device never becomes ready for data and
2275 * never leaves the program state.
2276 */
2277 if (time_after(jiffies, timeout)) {
2278 pr_err("%s: Card stuck in programming state! %s\n",
2279 mmc_hostname(card->host), __func__);
2280 err = -EIO;
2281 goto out;
2282 }
2283
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07002284 } while (!(cmd.resp[0] & R1_READY_FOR_DATA) ||
Trey Ramsay8fee4762012-11-16 09:31:41 -06002285 (R1_CURRENT_STATE(cmd.resp[0]) == R1_STATE_PRG));
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07002286out:
Adrian Hunter8f11d102015-05-07 13:10:16 +03002287 mmc_retune_release(card->host);
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07002288 return err;
2289}
2290
Baolin Wang71085122016-09-07 10:38:24 +08002291static unsigned int mmc_align_erase_size(struct mmc_card *card,
2292 unsigned int *from,
2293 unsigned int *to,
2294 unsigned int nr)
2295{
2296 unsigned int from_new = *from, nr_new = nr, rem;
2297
Baolin Wang6c689882016-09-07 10:38:25 +08002298 /*
2299 * When the 'card->erase_size' is power of 2, we can use round_up/down()
2300 * to align the erase size efficiently.
2301 */
2302 if (is_power_of_2(card->erase_size)) {
2303 unsigned int temp = from_new;
2304
2305 from_new = round_up(temp, card->erase_size);
2306 rem = from_new - temp;
2307
Baolin Wang71085122016-09-07 10:38:24 +08002308 if (nr_new > rem)
2309 nr_new -= rem;
2310 else
2311 return 0;
Baolin Wang71085122016-09-07 10:38:24 +08002312
Baolin Wang6c689882016-09-07 10:38:25 +08002313 nr_new = round_down(nr_new, card->erase_size);
2314 } else {
2315 rem = from_new % card->erase_size;
2316 if (rem) {
2317 rem = card->erase_size - rem;
2318 from_new += rem;
2319 if (nr_new > rem)
2320 nr_new -= rem;
2321 else
2322 return 0;
2323 }
2324
2325 rem = nr_new % card->erase_size;
2326 if (rem)
2327 nr_new -= rem;
2328 }
Baolin Wang71085122016-09-07 10:38:24 +08002329
2330 if (nr_new == 0)
2331 return 0;
2332
2333 *to = from_new + nr_new;
2334 *from = from_new;
2335
2336 return nr_new;
2337}
2338
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07002339/**
2340 * mmc_erase - erase sectors.
2341 * @card: card to erase
2342 * @from: first sector to erase
2343 * @nr: number of sectors to erase
2344 * @arg: erase command argument (SD supports only %MMC_ERASE_ARG)
2345 *
2346 * Caller must claim host before calling this function.
2347 */
2348int mmc_erase(struct mmc_card *card, unsigned int from, unsigned int nr,
2349 unsigned int arg)
2350{
2351 unsigned int rem, to = from + nr;
David Jander642c28a2015-06-23 11:43:52 +02002352 int err;
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07002353
2354 if (!(card->host->caps & MMC_CAP_ERASE) ||
2355 !(card->csd.cmdclass & CCC_ERASE))
2356 return -EOPNOTSUPP;
2357
2358 if (!card->erase_size)
2359 return -EOPNOTSUPP;
2360
2361 if (mmc_card_sd(card) && arg != MMC_ERASE_ARG)
2362 return -EOPNOTSUPP;
2363
2364 if ((arg & MMC_SECURE_ARGS) &&
2365 !(card->ext_csd.sec_feature_support & EXT_CSD_SEC_ER_EN))
2366 return -EOPNOTSUPP;
2367
2368 if ((arg & MMC_TRIM_ARGS) &&
2369 !(card->ext_csd.sec_feature_support & EXT_CSD_SEC_GB_CL_EN))
2370 return -EOPNOTSUPP;
2371
2372 if (arg == MMC_SECURE_ERASE_ARG) {
2373 if (from % card->erase_size || nr % card->erase_size)
2374 return -EINVAL;
2375 }
2376
Baolin Wang71085122016-09-07 10:38:24 +08002377 if (arg == MMC_ERASE_ARG)
2378 nr = mmc_align_erase_size(card, &from, &to, nr);
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07002379
2380 if (nr == 0)
2381 return 0;
2382
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07002383 if (to <= from)
2384 return -EINVAL;
2385
2386 /* 'from' and 'to' are inclusive */
2387 to -= 1;
2388
David Jander642c28a2015-06-23 11:43:52 +02002389 /*
2390 * Special case where only one erase-group fits in the timeout budget:
2391 * If the region crosses an erase-group boundary on this particular
2392 * case, we will be trimming more than one erase-group which, does not
2393 * fit in the timeout budget of the controller, so we need to split it
2394 * and call mmc_do_erase() twice if necessary. This special case is
2395 * identified by the card->eg_boundary flag.
2396 */
Robin van der Gracht22d7e852015-08-04 08:58:33 +02002397 rem = card->erase_size - (from % card->erase_size);
2398 if ((arg & MMC_TRIM_ARGS) && (card->eg_boundary) && (nr > rem)) {
David Jander642c28a2015-06-23 11:43:52 +02002399 err = mmc_do_erase(card, from, from + rem - 1, arg);
2400 from += rem;
2401 if ((err) || (to <= from))
2402 return err;
2403 }
2404
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07002405 return mmc_do_erase(card, from, to, arg);
2406}
2407EXPORT_SYMBOL(mmc_erase);
2408
2409int mmc_can_erase(struct mmc_card *card)
2410{
2411 if ((card->host->caps & MMC_CAP_ERASE) &&
2412 (card->csd.cmdclass & CCC_ERASE) && card->erase_size)
2413 return 1;
2414 return 0;
2415}
2416EXPORT_SYMBOL(mmc_can_erase);
2417
2418int mmc_can_trim(struct mmc_card *card)
2419{
Shawn Linb5b4ff02015-08-12 13:08:32 +08002420 if ((card->ext_csd.sec_feature_support & EXT_CSD_SEC_GB_CL_EN) &&
2421 (!(card->quirks & MMC_QUIRK_TRIM_BROKEN)))
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07002422 return 1;
2423 return 0;
2424}
2425EXPORT_SYMBOL(mmc_can_trim);
2426
Kyungmin Parkb3bf9152011-10-18 09:34:04 +09002427int mmc_can_discard(struct mmc_card *card)
2428{
2429 /*
2430 * As there's no way to detect the discard support bit at v4.5
2431 * use the s/w feature support filed.
2432 */
2433 if (card->ext_csd.feature_support & MMC_DISCARD_FEATURE)
2434 return 1;
2435 return 0;
2436}
2437EXPORT_SYMBOL(mmc_can_discard);
2438
Kyungmin Parkd9ddd622011-10-14 14:15:48 +09002439int mmc_can_sanitize(struct mmc_card *card)
2440{
Adrian Hunter28302812012-04-05 14:45:48 +03002441 if (!mmc_can_trim(card) && !mmc_can_erase(card))
2442 return 0;
Kyungmin Parkd9ddd622011-10-14 14:15:48 +09002443 if (card->ext_csd.sec_feature_support & EXT_CSD_SEC_SANITIZE)
2444 return 1;
2445 return 0;
2446}
2447EXPORT_SYMBOL(mmc_can_sanitize);
2448
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07002449int mmc_can_secure_erase_trim(struct mmc_card *card)
2450{
Lukas Czerner5204d002014-06-18 13:18:07 +02002451 if ((card->ext_csd.sec_feature_support & EXT_CSD_SEC_ER_EN) &&
2452 !(card->quirks & MMC_QUIRK_SEC_ERASE_TRIM_BROKEN))
Adrian Hunterdfe86cb2010-08-11 14:17:46 -07002453 return 1;
2454 return 0;
2455}
2456EXPORT_SYMBOL(mmc_can_secure_erase_trim);
2457
2458int mmc_erase_group_aligned(struct mmc_card *card, unsigned int from,
2459 unsigned int nr)
2460{
2461 if (!card->erase_size)
2462 return 0;
2463 if (from % card->erase_size || nr % card->erase_size)
2464 return 0;
2465 return 1;
2466}
2467EXPORT_SYMBOL(mmc_erase_group_aligned);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468
Adrian Huntere056a1b2011-06-28 17:16:02 +03002469static unsigned int mmc_do_calc_max_discard(struct mmc_card *card,
2470 unsigned int arg)
2471{
2472 struct mmc_host *host = card->host;
Baolin Wangbb4eecf2016-07-25 16:48:39 +08002473 unsigned int max_discard, x, y, qty = 0, max_qty, min_qty, timeout;
Adrian Huntere056a1b2011-06-28 17:16:02 +03002474 unsigned int last_timeout = 0;
Ulf Hansson12182af2016-07-27 00:04:03 +02002475 unsigned int max_busy_timeout = host->max_busy_timeout ?
2476 host->max_busy_timeout : MMC_ERASE_TIMEOUT_MS;
Adrian Huntere056a1b2011-06-28 17:16:02 +03002477
Baolin Wangbb4eecf2016-07-25 16:48:39 +08002478 if (card->erase_shift) {
Adrian Huntere056a1b2011-06-28 17:16:02 +03002479 max_qty = UINT_MAX >> card->erase_shift;
Baolin Wangbb4eecf2016-07-25 16:48:39 +08002480 min_qty = card->pref_erase >> card->erase_shift;
2481 } else if (mmc_card_sd(card)) {
Adrian Huntere056a1b2011-06-28 17:16:02 +03002482 max_qty = UINT_MAX;
Baolin Wangbb4eecf2016-07-25 16:48:39 +08002483 min_qty = card->pref_erase;
2484 } else {
Adrian Huntere056a1b2011-06-28 17:16:02 +03002485 max_qty = UINT_MAX / card->erase_size;
Baolin Wangbb4eecf2016-07-25 16:48:39 +08002486 min_qty = card->pref_erase / card->erase_size;
2487 }
Adrian Huntere056a1b2011-06-28 17:16:02 +03002488
Baolin Wangbb4eecf2016-07-25 16:48:39 +08002489 /*
2490 * We should not only use 'host->max_busy_timeout' as the limitation
2491 * when deciding the max discard sectors. We should set a balance value
2492 * to improve the erase speed, and it can not get too long timeout at
2493 * the same time.
2494 *
2495 * Here we set 'card->pref_erase' as the minimal discard sectors no
2496 * matter what size of 'host->max_busy_timeout', but if the
2497 * 'host->max_busy_timeout' is large enough for more discard sectors,
2498 * then we can continue to increase the max discard sectors until we
Ulf Hansson12182af2016-07-27 00:04:03 +02002499 * get a balance value. In cases when the 'host->max_busy_timeout'
2500 * isn't specified, use the default max erase timeout.
Baolin Wangbb4eecf2016-07-25 16:48:39 +08002501 */
Adrian Huntere056a1b2011-06-28 17:16:02 +03002502 do {
2503 y = 0;
2504 for (x = 1; x && x <= max_qty && max_qty - x >= qty; x <<= 1) {
2505 timeout = mmc_erase_timeout(card, arg, qty + x);
Baolin Wangbb4eecf2016-07-25 16:48:39 +08002506
Ulf Hansson12182af2016-07-27 00:04:03 +02002507 if (qty + x > min_qty && timeout > max_busy_timeout)
Adrian Huntere056a1b2011-06-28 17:16:02 +03002508 break;
Baolin Wangbb4eecf2016-07-25 16:48:39 +08002509
Adrian Huntere056a1b2011-06-28 17:16:02 +03002510 if (timeout < last_timeout)
2511 break;
2512 last_timeout = timeout;
2513 y = x;
2514 }
2515 qty += y;
2516 } while (y);
2517
2518 if (!qty)
2519 return 0;
2520
David Jander642c28a2015-06-23 11:43:52 +02002521 /*
2522 * When specifying a sector range to trim, chances are we might cross
2523 * an erase-group boundary even if the amount of sectors is less than
2524 * one erase-group.
2525 * If we can only fit one erase-group in the controller timeout budget,
2526 * we have to care that erase-group boundaries are not crossed by a
2527 * single trim operation. We flag that special case with "eg_boundary".
2528 * In all other cases we can just decrement qty and pretend that we
2529 * always touch (qty + 1) erase-groups as a simple optimization.
2530 */
Adrian Huntere056a1b2011-06-28 17:16:02 +03002531 if (qty == 1)
David Jander642c28a2015-06-23 11:43:52 +02002532 card->eg_boundary = 1;
2533 else
2534 qty--;
Adrian Huntere056a1b2011-06-28 17:16:02 +03002535
2536 /* Convert qty to sectors */
2537 if (card->erase_shift)
David Jander642c28a2015-06-23 11:43:52 +02002538 max_discard = qty << card->erase_shift;
Adrian Huntere056a1b2011-06-28 17:16:02 +03002539 else if (mmc_card_sd(card))
David Jander642c28a2015-06-23 11:43:52 +02002540 max_discard = qty + 1;
Adrian Huntere056a1b2011-06-28 17:16:02 +03002541 else
David Jander642c28a2015-06-23 11:43:52 +02002542 max_discard = qty * card->erase_size;
Adrian Huntere056a1b2011-06-28 17:16:02 +03002543
2544 return max_discard;
2545}
2546
2547unsigned int mmc_calc_max_discard(struct mmc_card *card)
2548{
2549 struct mmc_host *host = card->host;
2550 unsigned int max_discard, max_trim;
2551
Adrian Huntere056a1b2011-06-28 17:16:02 +03002552 /*
2553 * Without erase_group_def set, MMC erase timeout depends on clock
2554 * frequence which can change. In that case, the best choice is
2555 * just the preferred erase size.
2556 */
2557 if (mmc_card_mmc(card) && !(card->ext_csd.erase_group_def & 1))
2558 return card->pref_erase;
2559
2560 max_discard = mmc_do_calc_max_discard(card, MMC_ERASE_ARG);
2561 if (mmc_can_trim(card)) {
2562 max_trim = mmc_do_calc_max_discard(card, MMC_TRIM_ARG);
2563 if (max_trim < max_discard)
2564 max_discard = max_trim;
2565 } else if (max_discard < card->erase_size) {
2566 max_discard = 0;
2567 }
2568 pr_debug("%s: calculated max. discard sectors %u for timeout %u ms\n",
Ulf Hansson12182af2016-07-27 00:04:03 +02002569 mmc_hostname(host), max_discard, host->max_busy_timeout ?
2570 host->max_busy_timeout : MMC_ERASE_TIMEOUT_MS);
Adrian Huntere056a1b2011-06-28 17:16:02 +03002571 return max_discard;
2572}
2573EXPORT_SYMBOL(mmc_calc_max_discard);
2574
Adrian Hunter0f8d8ea2010-08-24 13:20:26 +03002575int mmc_set_blocklen(struct mmc_card *card, unsigned int blocklen)
2576{
Chris Ball1278dba2011-04-13 23:40:30 -04002577 struct mmc_command cmd = {0};
Adrian Hunter0f8d8ea2010-08-24 13:20:26 +03002578
Ziyuan Xu1712c932016-09-21 09:43:49 +08002579 if (mmc_card_blockaddr(card) || mmc_card_ddr52(card) ||
2580 mmc_card_hs400(card) || mmc_card_hs400es(card))
Adrian Hunter0f8d8ea2010-08-24 13:20:26 +03002581 return 0;
2582
Adrian Hunter0f8d8ea2010-08-24 13:20:26 +03002583 cmd.opcode = MMC_SET_BLOCKLEN;
2584 cmd.arg = blocklen;
2585 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
2586 return mmc_wait_for_cmd(card->host, &cmd, 5);
2587}
2588EXPORT_SYMBOL(mmc_set_blocklen);
2589
Loic Pallardy67c79db2012-08-06 17:12:30 +02002590int mmc_set_blockcount(struct mmc_card *card, unsigned int blockcount,
2591 bool is_rel_write)
2592{
2593 struct mmc_command cmd = {0};
2594
2595 cmd.opcode = MMC_SET_BLOCK_COUNT;
2596 cmd.arg = blockcount & 0x0000FFFF;
2597 if (is_rel_write)
2598 cmd.arg |= 1 << 31;
2599 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
2600 return mmc_wait_for_cmd(card->host, &cmd, 5);
2601}
2602EXPORT_SYMBOL(mmc_set_blockcount);
2603
Adrian Hunterb2499512011-08-29 16:42:11 +03002604static void mmc_hw_reset_for_init(struct mmc_host *host)
2605{
2606 if (!(host->caps & MMC_CAP_HW_RESET) || !host->ops->hw_reset)
2607 return;
Adrian Hunterb2499512011-08-29 16:42:11 +03002608 host->ops->hw_reset(host);
Adrian Hunterb2499512011-08-29 16:42:11 +03002609}
2610
Johan Rudholm83533ab2015-01-12 15:38:04 +01002611int mmc_hw_reset(struct mmc_host *host)
Adrian Hunterb2499512011-08-29 16:42:11 +03002612{
Johan Rudholmf855a372015-01-12 15:38:05 +01002613 int ret;
Adrian Hunterb2499512011-08-29 16:42:11 +03002614
Johan Rudholmf855a372015-01-12 15:38:05 +01002615 if (!host->card)
Adrian Hunterb2499512011-08-29 16:42:11 +03002616 return -EINVAL;
2617
Johan Rudholmf855a372015-01-12 15:38:05 +01002618 mmc_bus_get(host);
2619 if (!host->bus_ops || host->bus_dead || !host->bus_ops->reset) {
2620 mmc_bus_put(host);
Adrian Hunterb2499512011-08-29 16:42:11 +03002621 return -EOPNOTSUPP;
Adrian Hunterb2499512011-08-29 16:42:11 +03002622 }
2623
Johan Rudholmf855a372015-01-12 15:38:05 +01002624 ret = host->bus_ops->reset(host);
2625 mmc_bus_put(host);
Adrian Hunterb2499512011-08-29 16:42:11 +03002626
Gwendal Grignou4e6c7172016-04-01 16:04:22 -07002627 if (ret)
2628 pr_warn("%s: tried to reset card, got error %d\n",
2629 mmc_hostname(host), ret);
Adrian Hunterb2499512011-08-29 16:42:11 +03002630
Johan Rudholmf855a372015-01-12 15:38:05 +01002631 return ret;
Adrian Hunterb2499512011-08-29 16:42:11 +03002632}
Adrian Hunterb2499512011-08-29 16:42:11 +03002633EXPORT_SYMBOL(mmc_hw_reset);
2634
Andy Ross807e8e42011-01-03 10:36:56 -08002635static int mmc_rescan_try_freq(struct mmc_host *host, unsigned freq)
2636{
2637 host->f_init = freq;
2638
2639#ifdef CONFIG_MMC_DEBUG
2640 pr_info("%s: %s: trying to init card at %u Hz\n",
2641 mmc_hostname(host), __func__, host->f_init);
2642#endif
Ulf Hansson4a065192013-09-12 14:36:53 +02002643 mmc_power_up(host, host->ocr_avail);
Philip Rakity2f94e552011-02-13 23:12:28 -08002644
2645 /*
Adrian Hunterb2499512011-08-29 16:42:11 +03002646 * Some eMMCs (with VCCQ always on) may not be reset after power up, so
2647 * do a hardware reset if possible.
2648 */
2649 mmc_hw_reset_for_init(host);
2650
2651 /*
Philip Rakity2f94e552011-02-13 23:12:28 -08002652 * sdio_reset sends CMD52 to reset card. Since we do not know
2653 * if the card is being re-initialized, just send it. CMD52
2654 * should be ignored by SD/eMMC cards.
Carlo Caione100a6062015-11-25 15:39:51 +01002655 * Skip it if we already know that we do not support SDIO commands
Philip Rakity2f94e552011-02-13 23:12:28 -08002656 */
Carlo Caione100a6062015-11-25 15:39:51 +01002657 if (!(host->caps2 & MMC_CAP2_NO_SDIO))
2658 sdio_reset(host);
2659
Andy Ross807e8e42011-01-03 10:36:56 -08002660 mmc_go_idle(host);
2661
Ulf Hansson1b8d79c2016-06-21 15:12:46 +02002662 if (!(host->caps2 & MMC_CAP2_NO_SD))
2663 mmc_send_if_cond(host, host->ocr_avail);
Andy Ross807e8e42011-01-03 10:36:56 -08002664
2665 /* Order's important: probe SDIO, then SD, then MMC */
Carlo Caione100a6062015-11-25 15:39:51 +01002666 if (!(host->caps2 & MMC_CAP2_NO_SDIO))
2667 if (!mmc_attach_sdio(host))
2668 return 0;
2669
Ulf Hansson1b8d79c2016-06-21 15:12:46 +02002670 if (!(host->caps2 & MMC_CAP2_NO_SD))
2671 if (!mmc_attach_sd(host))
2672 return 0;
2673
Shawn Lina0c3b682016-07-01 15:45:28 +08002674 if (!(host->caps2 & MMC_CAP2_NO_MMC))
2675 if (!mmc_attach_mmc(host))
2676 return 0;
Andy Ross807e8e42011-01-03 10:36:56 -08002677
2678 mmc_power_off(host);
2679 return -EIO;
2680}
2681
Adrian Hunterd3049502011-11-28 16:22:00 +02002682int _mmc_detect_card_removed(struct mmc_host *host)
2683{
2684 int ret;
2685
Adrian Hunterd3049502011-11-28 16:22:00 +02002686 if (!host->card || mmc_card_removed(host->card))
2687 return 1;
2688
2689 ret = host->bus_ops->alive(host);
Kevin Liu14507342013-02-28 15:29:29 +08002690
2691 /*
2692 * Card detect status and alive check may be out of sync if card is
2693 * removed slowly, when card detect switch changes while card/slot
2694 * pads are still contacted in hardware (refer to "SD Card Mechanical
2695 * Addendum, Appendix C: Card Detection Switch"). So reschedule a
2696 * detect work 200ms later for this case.
2697 */
2698 if (!ret && host->ops->get_cd && !host->ops->get_cd(host)) {
2699 mmc_detect_change(host, msecs_to_jiffies(200));
2700 pr_debug("%s: card removed too slowly\n", mmc_hostname(host));
2701 }
2702
Adrian Hunterd3049502011-11-28 16:22:00 +02002703 if (ret) {
2704 mmc_card_set_removed(host->card);
2705 pr_debug("%s: card remove detected\n", mmc_hostname(host));
2706 }
2707
2708 return ret;
2709}
2710
2711int mmc_detect_card_removed(struct mmc_host *host)
2712{
2713 struct mmc_card *card = host->card;
Ulf Hanssonf0cc9cf2012-02-06 10:42:39 +01002714 int ret;
Adrian Hunterd3049502011-11-28 16:22:00 +02002715
2716 WARN_ON(!host->claimed);
Ulf Hanssonf0cc9cf2012-02-06 10:42:39 +01002717
2718 if (!card)
2719 return 1;
2720
Jaehoon Chung6067baf2016-01-29 08:52:57 +09002721 if (!mmc_card_is_removable(host))
Ulf Hansson1ff25752015-11-05 16:21:39 +01002722 return 0;
2723
Ulf Hanssonf0cc9cf2012-02-06 10:42:39 +01002724 ret = mmc_card_removed(card);
Adrian Hunterd3049502011-11-28 16:22:00 +02002725 /*
2726 * The card will be considered unchanged unless we have been asked to
2727 * detect a change or host requires polling to provide card detection.
2728 */
Ulf Hanssonb6891672013-04-18 11:02:07 +02002729 if (!host->detect_change && !(host->caps & MMC_CAP_NEEDS_POLL))
Ulf Hanssonf0cc9cf2012-02-06 10:42:39 +01002730 return ret;
Adrian Hunterd3049502011-11-28 16:22:00 +02002731
2732 host->detect_change = 0;
Ulf Hanssonf0cc9cf2012-02-06 10:42:39 +01002733 if (!ret) {
2734 ret = _mmc_detect_card_removed(host);
Ulf Hanssonb6891672013-04-18 11:02:07 +02002735 if (ret && (host->caps & MMC_CAP_NEEDS_POLL)) {
Ulf Hanssonf0cc9cf2012-02-06 10:42:39 +01002736 /*
2737 * Schedule a detect work as soon as possible to let a
2738 * rescan handle the card removal.
2739 */
2740 cancel_delayed_work(&host->detect);
Ulf Hanssonbbd43682013-09-20 11:02:35 +02002741 _mmc_detect_change(host, 0, false);
Ulf Hanssonf0cc9cf2012-02-06 10:42:39 +01002742 }
2743 }
Adrian Hunterd3049502011-11-28 16:22:00 +02002744
Ulf Hanssonf0cc9cf2012-02-06 10:42:39 +01002745 return ret;
Adrian Hunterd3049502011-11-28 16:22:00 +02002746}
2747EXPORT_SYMBOL(mmc_detect_card_removed);
2748
Pierre Ossmanb93931a2007-05-19 14:06:24 +02002749void mmc_rescan(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750{
David Howellsc4028952006-11-22 14:57:56 +00002751 struct mmc_host *host =
2752 container_of(work, struct mmc_host, detect.work);
Hein Tibosch88ae8b82010-09-06 09:37:19 +08002753 int i;
Maxim Levitsky4c2ef252010-08-10 18:01:41 -07002754
Andy Ross807e8e42011-01-03 10:36:56 -08002755 if (host->rescan_disable)
Maxim Levitsky4c2ef252010-08-10 18:01:41 -07002756 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757
Johan Rudholm3339d1e2012-08-23 13:40:55 +02002758 /* If there is a non-removable card registered, only scan once */
Jaehoon Chung6067baf2016-01-29 08:52:57 +09002759 if (!mmc_card_is_removable(host) && host->rescan_entered)
Johan Rudholm3339d1e2012-08-23 13:40:55 +02002760 return;
2761 host->rescan_entered = 1;
2762
Ulf Hansson86236812015-11-05 16:08:07 +01002763 if (host->trigger_card_event && host->ops->card_event) {
Ulf Hanssond234d212015-11-05 16:08:08 +01002764 mmc_claim_host(host);
Ulf Hansson86236812015-11-05 16:08:07 +01002765 host->ops->card_event(host);
Ulf Hanssond234d212015-11-05 16:08:08 +01002766 mmc_release_host(host);
Ulf Hansson86236812015-11-05 16:08:07 +01002767 host->trigger_card_event = false;
2768 }
2769
Pierre Ossman7ea239d2006-12-31 00:11:32 +01002770 mmc_bus_get(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771
Ohad Ben-Cohen30201e72010-11-28 07:21:28 +02002772 /*
2773 * if there is a _removable_ card registered, check whether it is
2774 * still present
2775 */
Jaehoon Chung6067baf2016-01-29 08:52:57 +09002776 if (host->bus_ops && !host->bus_dead && mmc_card_is_removable(host))
Jorg Schummer94d89ef2009-03-31 17:51:21 +03002777 host->bus_ops->detect(host);
2778
Adrian Hunterd3049502011-11-28 16:22:00 +02002779 host->detect_change = 0;
2780
Chris Ballc5841792011-01-04 12:20:22 -05002781 /*
2782 * Let mmc_bus_put() free the bus/bus_ops if we've found that
2783 * the card is no longer present.
2784 */
Jorg Schummer94d89ef2009-03-31 17:51:21 +03002785 mmc_bus_put(host);
Jorg Schummer94d89ef2009-03-31 17:51:21 +03002786 mmc_bus_get(host);
2787
2788 /* if there still is a card present, stop here */
2789 if (host->bus_ops != NULL) {
Pierre Ossman7ea239d2006-12-31 00:11:32 +01002790 mmc_bus_put(host);
Jorg Schummer94d89ef2009-03-31 17:51:21 +03002791 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792 }
Jorg Schummer94d89ef2009-03-31 17:51:21 +03002793
Jorg Schummer94d89ef2009-03-31 17:51:21 +03002794 /*
2795 * Only we can add a new handler, so it's safe to
2796 * release the lock here.
2797 */
2798 mmc_bus_put(host);
2799
Ulf Hanssond234d212015-11-05 16:08:08 +01002800 mmc_claim_host(host);
Jaehoon Chung6067baf2016-01-29 08:52:57 +09002801 if (mmc_card_is_removable(host) && host->ops->get_cd &&
Sascha Hauerc1b55bf2013-12-05 14:34:46 +01002802 host->ops->get_cd(host) == 0) {
Ulf Hanssonfa550182012-05-09 16:15:26 +02002803 mmc_power_off(host);
2804 mmc_release_host(host);
Jorg Schummer94d89ef2009-03-31 17:51:21 +03002805 goto out;
Ulf Hanssonfa550182012-05-09 16:15:26 +02002806 }
Jorg Schummer94d89ef2009-03-31 17:51:21 +03002807
Hein Tibosch88ae8b82010-09-06 09:37:19 +08002808 for (i = 0; i < ARRAY_SIZE(freqs); i++) {
Andy Ross807e8e42011-01-03 10:36:56 -08002809 if (!mmc_rescan_try_freq(host, max(freqs[i], host->f_min)))
2810 break;
Jaehoon Chung06b22332011-05-12 17:18:59 +09002811 if (freqs[i] <= host->f_min)
Andy Ross807e8e42011-01-03 10:36:56 -08002812 break;
Hein Tibosch88ae8b82010-09-06 09:37:19 +08002813 }
Andy Ross807e8e42011-01-03 10:36:56 -08002814 mmc_release_host(host);
2815
2816 out:
Anton Vorontsov28f52482008-06-17 18:17:15 +04002817 if (host->caps & MMC_CAP_NEEDS_POLL)
2818 mmc_schedule_delayed_work(&host->detect, HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819}
2820
Pierre Ossmanb93931a2007-05-19 14:06:24 +02002821void mmc_start_host(struct mmc_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822{
Ulf Hanssonfa550182012-05-09 16:15:26 +02002823 host->f_init = max(freqs[0], host->f_min);
Guennadi Liakhovetskid9adcc12012-06-14 10:17:39 +02002824 host->rescan_disable = 0;
Roger Tseng8af465d2014-09-24 17:07:13 +08002825 host->ios.power_mode = MMC_POWER_UNDEFINED;
Ulf Hansson8d1ffc8c2015-09-11 14:41:55 +02002826
2827 mmc_claim_host(host);
Adrian Huntera08b17b2013-04-15 11:27:25 -04002828 if (host->caps2 & MMC_CAP2_NO_PRESCAN_POWERUP)
2829 mmc_power_off(host);
2830 else
Ulf Hansson4a065192013-09-12 14:36:53 +02002831 mmc_power_up(host, host->ocr_avail);
Ulf Hansson8d1ffc8c2015-09-11 14:41:55 +02002832 mmc_release_host(host);
2833
Adrian Hunter740a2212014-03-10 15:02:41 +02002834 mmc_gpiod_request_cd_irq(host);
Ulf Hanssonbbd43682013-09-20 11:02:35 +02002835 _mmc_detect_change(host, 0, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836}
2837
Pierre Ossmanb93931a2007-05-19 14:06:24 +02002838void mmc_stop_host(struct mmc_host *host)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839{
Pierre Ossman3b91e552007-02-11 20:43:19 +01002840#ifdef CONFIG_MMC_DEBUG
Pierre Ossman1efd48b2007-05-08 22:35:17 +02002841 unsigned long flags;
2842 spin_lock_irqsave(&host->lock, flags);
Pierre Ossman3b91e552007-02-11 20:43:19 +01002843 host->removed = 1;
Pierre Ossman1efd48b2007-05-08 22:35:17 +02002844 spin_unlock_irqrestore(&host->lock, flags);
Pierre Ossman3b91e552007-02-11 20:43:19 +01002845#endif
Adrian Hunter740a2212014-03-10 15:02:41 +02002846 if (host->slot.cd_irq >= 0)
2847 disable_irq(host->slot.cd_irq);
Pierre Ossman3b91e552007-02-11 20:43:19 +01002848
Guennadi Liakhovetskid9adcc12012-06-14 10:17:39 +02002849 host->rescan_disable = 1;
Guennadi Liakhovetskid9bcbf32010-11-11 17:32:25 +01002850 cancel_delayed_work_sync(&host->detect);
Pierre Ossman3b91e552007-02-11 20:43:19 +01002851
Nicolas Pitreda68c4e2010-03-05 13:43:31 -08002852 /* clear pm flags now and let card drivers set them as needed */
2853 host->pm_flags = 0;
2854
Pierre Ossman7ea239d2006-12-31 00:11:32 +01002855 mmc_bus_get(host);
2856 if (host->bus_ops && !host->bus_dead) {
Guennadi Liakhovetski0db13fc2012-01-04 15:28:45 +01002857 /* Calling bus_ops->remove() with a claimed host can deadlock */
Ulf Hansson58a8a4a2013-06-10 17:03:36 +02002858 host->bus_ops->remove(host);
Pierre Ossman7ea239d2006-12-31 00:11:32 +01002859 mmc_claim_host(host);
2860 mmc_detach_bus(host);
Ulf Hansson7f7e4122011-09-21 14:08:13 -04002861 mmc_power_off(host);
Pierre Ossman7ea239d2006-12-31 00:11:32 +01002862 mmc_release_host(host);
Denis Karpov53509f02009-09-22 16:44:36 -07002863 mmc_bus_put(host);
2864 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865 }
Pierre Ossman7ea239d2006-12-31 00:11:32 +01002866 mmc_bus_put(host);
2867
2868 BUG_ON(host->card);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869
Ulf Hansson8d1ffc8c2015-09-11 14:41:55 +02002870 mmc_claim_host(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871 mmc_power_off(host);
Ulf Hansson8d1ffc8c2015-09-11 14:41:55 +02002872 mmc_release_host(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873}
2874
Ohad Ben-Cohen12ae6372010-10-02 13:54:06 +02002875int mmc_power_save_host(struct mmc_host *host)
Adrian Huntereae1aee2009-09-22 16:44:33 -07002876{
Ohad Ben-Cohen12ae6372010-10-02 13:54:06 +02002877 int ret = 0;
2878
Daniel Drakebb9cab92011-07-17 16:38:41 +01002879#ifdef CONFIG_MMC_DEBUG
2880 pr_info("%s: %s: powering down\n", mmc_hostname(host), __func__);
2881#endif
2882
Adrian Huntereae1aee2009-09-22 16:44:33 -07002883 mmc_bus_get(host);
2884
Ulf Hansson5601aaf2013-10-30 23:15:30 +01002885 if (!host->bus_ops || host->bus_dead) {
Adrian Huntereae1aee2009-09-22 16:44:33 -07002886 mmc_bus_put(host);
Ohad Ben-Cohen12ae6372010-10-02 13:54:06 +02002887 return -EINVAL;
Adrian Huntereae1aee2009-09-22 16:44:33 -07002888 }
2889
2890 if (host->bus_ops->power_save)
Ohad Ben-Cohen12ae6372010-10-02 13:54:06 +02002891 ret = host->bus_ops->power_save(host);
Adrian Huntereae1aee2009-09-22 16:44:33 -07002892
2893 mmc_bus_put(host);
2894
2895 mmc_power_off(host);
Ohad Ben-Cohen12ae6372010-10-02 13:54:06 +02002896
2897 return ret;
Adrian Huntereae1aee2009-09-22 16:44:33 -07002898}
2899EXPORT_SYMBOL(mmc_power_save_host);
2900
Ohad Ben-Cohen12ae6372010-10-02 13:54:06 +02002901int mmc_power_restore_host(struct mmc_host *host)
Adrian Huntereae1aee2009-09-22 16:44:33 -07002902{
Ohad Ben-Cohen12ae6372010-10-02 13:54:06 +02002903 int ret;
2904
Daniel Drakebb9cab92011-07-17 16:38:41 +01002905#ifdef CONFIG_MMC_DEBUG
2906 pr_info("%s: %s: powering up\n", mmc_hostname(host), __func__);
2907#endif
2908
Adrian Huntereae1aee2009-09-22 16:44:33 -07002909 mmc_bus_get(host);
2910
Ulf Hansson5601aaf2013-10-30 23:15:30 +01002911 if (!host->bus_ops || host->bus_dead) {
Adrian Huntereae1aee2009-09-22 16:44:33 -07002912 mmc_bus_put(host);
Ohad Ben-Cohen12ae6372010-10-02 13:54:06 +02002913 return -EINVAL;
Adrian Huntereae1aee2009-09-22 16:44:33 -07002914 }
2915
Ulf Hansson69041152013-09-13 11:31:33 +02002916 mmc_power_up(host, host->card->ocr);
Ohad Ben-Cohen12ae6372010-10-02 13:54:06 +02002917 ret = host->bus_ops->power_restore(host);
Adrian Huntereae1aee2009-09-22 16:44:33 -07002918
2919 mmc_bus_put(host);
Ohad Ben-Cohen12ae6372010-10-02 13:54:06 +02002920
2921 return ret;
Adrian Huntereae1aee2009-09-22 16:44:33 -07002922}
2923EXPORT_SYMBOL(mmc_power_restore_host);
2924
Seungwon Jeon881d1c22011-10-14 14:03:21 +09002925/*
2926 * Flush the cache to the non-volatile storage.
2927 */
2928int mmc_flush_cache(struct mmc_card *card)
2929{
Seungwon Jeon881d1c22011-10-14 14:03:21 +09002930 int err = 0;
2931
Seungwon Jeon881d1c22011-10-14 14:03:21 +09002932 if (mmc_card_mmc(card) &&
2933 (card->ext_csd.cache_size > 0) &&
2934 (card->ext_csd.cache_ctrl & 1)) {
2935 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
2936 EXT_CSD_FLUSH_CACHE, 1, 0);
2937 if (err)
2938 pr_err("%s: cache flush error %d\n",
2939 mmc_hostname(card->host), err);
2940 }
2941
2942 return err;
2943}
2944EXPORT_SYMBOL(mmc_flush_cache);
2945
Ulf Hansson8dede182015-11-05 16:11:12 +01002946#ifdef CONFIG_PM_SLEEP
Maxim Levitsky4c2ef252010-08-10 18:01:41 -07002947/* Do the card removal on suspend if card is assumed removeable
2948 * Do that in pm notifier while userspace isn't yet frozen, so we will be able
2949 to sync the card.
2950*/
Ulf Hansson8dede182015-11-05 16:11:12 +01002951static int mmc_pm_notify(struct notifier_block *notify_block,
2952 unsigned long mode, void *unused)
Maxim Levitsky4c2ef252010-08-10 18:01:41 -07002953{
2954 struct mmc_host *host = container_of(
2955 notify_block, struct mmc_host, pm_notify);
2956 unsigned long flags;
Ulf Hansson810cadd2013-06-10 17:03:37 +02002957 int err = 0;
Maxim Levitsky4c2ef252010-08-10 18:01:41 -07002958
2959 switch (mode) {
2960 case PM_HIBERNATION_PREPARE:
2961 case PM_SUSPEND_PREPARE:
Grygorii Strashko184af162015-04-23 13:43:43 +03002962 case PM_RESTORE_PREPARE:
Maxim Levitsky4c2ef252010-08-10 18:01:41 -07002963 spin_lock_irqsave(&host->lock, flags);
2964 host->rescan_disable = 1;
2965 spin_unlock_irqrestore(&host->lock, flags);
2966 cancel_delayed_work_sync(&host->detect);
2967
Ulf Hansson810cadd2013-06-10 17:03:37 +02002968 if (!host->bus_ops)
2969 break;
2970
2971 /* Validate prerequisites for suspend */
2972 if (host->bus_ops->pre_suspend)
2973 err = host->bus_ops->pre_suspend(host);
Ulf Hansson5601aaf2013-10-30 23:15:30 +01002974 if (!err)
Maxim Levitsky4c2ef252010-08-10 18:01:41 -07002975 break;
2976
Daniel Drake963f3122017-12-12 10:49:02 +00002977 if (!mmc_card_is_removable(host)) {
2978 dev_warn(mmc_dev(host),
2979 "pre_suspend failed for non-removable host: "
2980 "%d\n", err);
2981 /* Avoid removing non-removable hosts */
2982 break;
2983 }
2984
Guennadi Liakhovetski0db13fc2012-01-04 15:28:45 +01002985 /* Calling bus_ops->remove() with a claimed host can deadlock */
Ulf Hansson58a8a4a2013-06-10 17:03:36 +02002986 host->bus_ops->remove(host);
Guennadi Liakhovetski0db13fc2012-01-04 15:28:45 +01002987 mmc_claim_host(host);
Maxim Levitsky4c2ef252010-08-10 18:01:41 -07002988 mmc_detach_bus(host);
Ulf Hansson7f7e4122011-09-21 14:08:13 -04002989 mmc_power_off(host);
Maxim Levitsky4c2ef252010-08-10 18:01:41 -07002990 mmc_release_host(host);
2991 host->pm_flags = 0;
2992 break;
2993
2994 case PM_POST_SUSPEND:
2995 case PM_POST_HIBERNATION:
Takashi Iwai274476f2010-12-10 08:40:31 +01002996 case PM_POST_RESTORE:
Maxim Levitsky4c2ef252010-08-10 18:01:41 -07002997
2998 spin_lock_irqsave(&host->lock, flags);
2999 host->rescan_disable = 0;
3000 spin_unlock_irqrestore(&host->lock, flags);
Ulf Hanssonbbd43682013-09-20 11:02:35 +02003001 _mmc_detect_change(host, 0, false);
Maxim Levitsky4c2ef252010-08-10 18:01:41 -07003002
3003 }
3004
3005 return 0;
3006}
Ulf Hansson8dede182015-11-05 16:11:12 +01003007
3008void mmc_register_pm_notifier(struct mmc_host *host)
3009{
3010 host->pm_notify.notifier_call = mmc_pm_notify;
3011 register_pm_notifier(&host->pm_notify);
3012}
3013
3014void mmc_unregister_pm_notifier(struct mmc_host *host)
3015{
3016 unregister_pm_notifier(&host->pm_notify);
3017}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018#endif
3019
Konstantin Dorfman2220eed2013-01-14 14:28:17 -05003020/**
3021 * mmc_init_context_info() - init synchronization context
3022 * @host: mmc host
3023 *
3024 * Init struct context_info needed to implement asynchronous
3025 * request mechanism, used by mmc core, host driver and mmc requests
3026 * supplier.
3027 */
3028void mmc_init_context_info(struct mmc_host *host)
3029{
3030 spin_lock_init(&host->context_info.lock);
3031 host->context_info.is_new_req = false;
3032 host->context_info.is_done_rcv = false;
3033 host->context_info.is_waiting_last_req = false;
3034 init_waitqueue_head(&host->context_info.wait);
3035}
3036
Pierre Ossmanffce2e72007-05-19 14:32:22 +02003037static int __init mmc_init(void)
3038{
3039 int ret;
3040
Pierre Ossmanffce2e72007-05-19 14:32:22 +02003041 ret = mmc_register_bus();
Pierre Ossmane29a7d72007-05-26 13:48:18 +02003042 if (ret)
Ulf Hansson520bd7a2015-12-01 10:35:29 +01003043 return ret;
Pierre Ossmane29a7d72007-05-26 13:48:18 +02003044
3045 ret = mmc_register_host_class();
3046 if (ret)
3047 goto unregister_bus;
3048
3049 ret = sdio_register_bus();
3050 if (ret)
3051 goto unregister_host_class;
3052
3053 return 0;
3054
3055unregister_host_class:
3056 mmc_unregister_host_class();
3057unregister_bus:
3058 mmc_unregister_bus();
Pierre Ossmanffce2e72007-05-19 14:32:22 +02003059 return ret;
3060}
3061
3062static void __exit mmc_exit(void)
3063{
Pierre Ossmane29a7d72007-05-26 13:48:18 +02003064 sdio_unregister_bus();
Pierre Ossmanffce2e72007-05-19 14:32:22 +02003065 mmc_unregister_host_class();
3066 mmc_unregister_bus();
Pierre Ossmanffce2e72007-05-19 14:32:22 +02003067}
3068
Nicolas Pitre26074962007-06-16 02:07:53 -04003069subsys_initcall(mmc_init);
Pierre Ossmanffce2e72007-05-19 14:32:22 +02003070module_exit(mmc_exit);
3071
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072MODULE_LICENSE("GPL");