12b271c2a912247d8a03b56aed61596bf0b6b5e8
[sfrench/cifs-2.6.git] / drivers / mmc / core / core.c
1 /*
2  *  linux/drivers/mmc/core/core.c
3  *
4  *  Copyright (C) 2003-2004 Russell King, All Rights Reserved.
5  *  SD support Copyright (C) 2004 Ian Molton, All Rights Reserved.
6  *  Copyright (C) 2005-2008 Pierre Ossman, All Rights Reserved.
7  *  MMCv4 support Copyright (C) 2006 Philip Langdale, All Rights Reserved.
8  *
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  */
13 #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>
21 #include <linux/leds.h>
22 #include <linux/scatterlist.h>
23 #include <linux/log2.h>
24 #include <linux/regulator/consumer.h>
25 #include <linux/pm_runtime.h>
26 #include <linux/pm_wakeup.h>
27 #include <linux/suspend.h>
28 #include <linux/fault-inject.h>
29 #include <linux/random.h>
30 #include <linux/slab.h>
31 #include <linux/of.h>
32
33 #include <linux/mmc/card.h>
34 #include <linux/mmc/host.h>
35 #include <linux/mmc/mmc.h>
36 #include <linux/mmc/sd.h>
37 #include <linux/mmc/slot-gpio.h>
38
39 #define CREATE_TRACE_POINTS
40 #include <trace/events/mmc.h>
41
42 #include "core.h"
43 #include "card.h"
44 #include "bus.h"
45 #include "host.h"
46 #include "sdio_bus.h"
47 #include "pwrseq.h"
48
49 #include "mmc_ops.h"
50 #include "sd_ops.h"
51 #include "sdio_ops.h"
52
53 /* If the device is not responding */
54 #define MMC_CORE_TIMEOUT_MS     (10 * 60 * 1000) /* 10 minute timeout */
55
56 /* The max erase timeout, used when host->max_busy_timeout isn't specified */
57 #define MMC_ERASE_TIMEOUT_MS    (60 * 1000) /* 60 s */
58
59 static const unsigned freqs[] = { 400000, 300000, 200000, 100000 };
60
61 /*
62  * Enabling software CRCs on the data blocks can be a significant (30%)
63  * performance cost, and for other reasons may not always be desired.
64  * So we allow it it to be disabled.
65  */
66 bool use_spi_crc = 1;
67 module_param(use_spi_crc, bool, 0);
68
69 static int mmc_schedule_delayed_work(struct delayed_work *work,
70                                      unsigned long delay)
71 {
72         /*
73          * We use the system_freezable_wq, because of two reasons.
74          * First, it allows several works (not the same work item) to be
75          * executed simultaneously. Second, the queue becomes frozen when
76          * userspace becomes frozen during system PM.
77          */
78         return queue_delayed_work(system_freezable_wq, work, delay);
79 }
80
81 #ifdef CONFIG_FAIL_MMC_REQUEST
82
83 /*
84  * Internal function. Inject random data errors.
85  * If mmc_data is NULL no errors are injected.
86  */
87 static void mmc_should_fail_request(struct mmc_host *host,
88                                     struct mmc_request *mrq)
89 {
90         struct mmc_command *cmd = mrq->cmd;
91         struct mmc_data *data = mrq->data;
92         static const int data_errors[] = {
93                 -ETIMEDOUT,
94                 -EILSEQ,
95                 -EIO,
96         };
97
98         if (!data)
99                 return;
100
101         if (cmd->error || data->error ||
102             !should_fail(&host->fail_mmc_request, data->blksz * data->blocks))
103                 return;
104
105         data->error = data_errors[prandom_u32() % ARRAY_SIZE(data_errors)];
106         data->bytes_xfered = (prandom_u32() % (data->bytes_xfered >> 9)) << 9;
107 }
108
109 #else /* CONFIG_FAIL_MMC_REQUEST */
110
111 static inline void mmc_should_fail_request(struct mmc_host *host,
112                                            struct mmc_request *mrq)
113 {
114 }
115
116 #endif /* CONFIG_FAIL_MMC_REQUEST */
117
118 static inline void mmc_complete_cmd(struct mmc_request *mrq)
119 {
120         if (mrq->cap_cmd_during_tfr && !completion_done(&mrq->cmd_completion))
121                 complete_all(&mrq->cmd_completion);
122 }
123
124 void mmc_command_done(struct mmc_host *host, struct mmc_request *mrq)
125 {
126         if (!mrq->cap_cmd_during_tfr)
127                 return;
128
129         mmc_complete_cmd(mrq);
130
131         pr_debug("%s: cmd done, tfr ongoing (CMD%u)\n",
132                  mmc_hostname(host), mrq->cmd->opcode);
133 }
134 EXPORT_SYMBOL(mmc_command_done);
135
136 /**
137  *      mmc_request_done - finish processing an MMC request
138  *      @host: MMC host which completed request
139  *      @mrq: MMC request which request
140  *
141  *      MMC drivers should call this function when they have completed
142  *      their processing of a request.
143  */
144 void mmc_request_done(struct mmc_host *host, struct mmc_request *mrq)
145 {
146         struct mmc_command *cmd = mrq->cmd;
147         int err = cmd->error;
148
149         /* Flag re-tuning needed on CRC errors */
150         if ((cmd->opcode != MMC_SEND_TUNING_BLOCK &&
151             cmd->opcode != MMC_SEND_TUNING_BLOCK_HS200) &&
152             (err == -EILSEQ || (mrq->sbc && mrq->sbc->error == -EILSEQ) ||
153             (mrq->data && mrq->data->error == -EILSEQ) ||
154             (mrq->stop && mrq->stop->error == -EILSEQ)))
155                 mmc_retune_needed(host);
156
157         if (err && cmd->retries && mmc_host_is_spi(host)) {
158                 if (cmd->resp[0] & R1_SPI_ILLEGAL_COMMAND)
159                         cmd->retries = 0;
160         }
161
162         if (host->ongoing_mrq == mrq)
163                 host->ongoing_mrq = NULL;
164
165         mmc_complete_cmd(mrq);
166
167         trace_mmc_request_done(host, mrq);
168
169         /*
170          * We list various conditions for the command to be considered
171          * properly done:
172          *
173          * - There was no error, OK fine then
174          * - We are not doing some kind of retry
175          * - The card was removed (...so just complete everything no matter
176          *   if there are errors or retries)
177          */
178         if (!err || !cmd->retries || mmc_card_removed(host->card)) {
179                 mmc_should_fail_request(host, mrq);
180
181                 if (!host->ongoing_mrq)
182                         led_trigger_event(host->led, LED_OFF);
183
184                 if (mrq->sbc) {
185                         pr_debug("%s: req done <CMD%u>: %d: %08x %08x %08x %08x\n",
186                                 mmc_hostname(host), mrq->sbc->opcode,
187                                 mrq->sbc->error,
188                                 mrq->sbc->resp[0], mrq->sbc->resp[1],
189                                 mrq->sbc->resp[2], mrq->sbc->resp[3]);
190                 }
191
192                 pr_debug("%s: req done (CMD%u): %d: %08x %08x %08x %08x\n",
193                         mmc_hostname(host), cmd->opcode, err,
194                         cmd->resp[0], cmd->resp[1],
195                         cmd->resp[2], cmd->resp[3]);
196
197                 if (mrq->data) {
198                         pr_debug("%s:     %d bytes transferred: %d\n",
199                                 mmc_hostname(host),
200                                 mrq->data->bytes_xfered, mrq->data->error);
201                 }
202
203                 if (mrq->stop) {
204                         pr_debug("%s:     (CMD%u): %d: %08x %08x %08x %08x\n",
205                                 mmc_hostname(host), mrq->stop->opcode,
206                                 mrq->stop->error,
207                                 mrq->stop->resp[0], mrq->stop->resp[1],
208                                 mrq->stop->resp[2], mrq->stop->resp[3]);
209                 }
210         }
211         /*
212          * Request starter must handle retries - see
213          * mmc_wait_for_req_done().
214          */
215         if (mrq->done)
216                 mrq->done(mrq);
217 }
218
219 EXPORT_SYMBOL(mmc_request_done);
220
221 static 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
233         /*
234          * For sdio rw commands we must wait for card busy otherwise some
235          * sdio devices won't work properly.
236          * And bypass I/O abort, reset and bus suspend operations.
237          */
238         if (sdio_is_io_busy(mrq->cmd->opcode, mrq->cmd->arg) &&
239             host->ops->card_busy) {
240                 int tries = 500; /* Wait aprox 500ms at maximum */
241
242                 while (host->ops->card_busy(host) && --tries)
243                         mmc_delay(1);
244
245                 if (tries == 0) {
246                         mrq->cmd->error = -EBUSY;
247                         mmc_request_done(host, mrq);
248                         return;
249                 }
250         }
251
252         if (mrq->cap_cmd_during_tfr) {
253                 host->ongoing_mrq = mrq;
254                 /*
255                  * Retry path could come through here without having waiting on
256                  * cmd_completion, so ensure it is reinitialised.
257                  */
258                 reinit_completion(&mrq->cmd_completion);
259         }
260
261         trace_mmc_request_start(host, mrq);
262
263         if (host->cqe_on)
264                 host->cqe_ops->cqe_off(host);
265
266         host->ops->request(host, mrq);
267 }
268
269 static void mmc_mrq_pr_debug(struct mmc_host *host, struct mmc_request *mrq,
270                              bool cqe)
271 {
272         if (mrq->sbc) {
273                 pr_debug("<%s: starting CMD%u arg %08x flags %08x>\n",
274                          mmc_hostname(host), mrq->sbc->opcode,
275                          mrq->sbc->arg, mrq->sbc->flags);
276         }
277
278         if (mrq->cmd) {
279                 pr_debug("%s: starting %sCMD%u arg %08x flags %08x\n",
280                          mmc_hostname(host), cqe ? "CQE direct " : "",
281                          mrq->cmd->opcode, mrq->cmd->arg, mrq->cmd->flags);
282         } else if (cqe) {
283                 pr_debug("%s: starting CQE transfer for tag %d blkaddr %u\n",
284                          mmc_hostname(host), mrq->tag, mrq->data->blk_addr);
285         }
286
287         if (mrq->data) {
288                 pr_debug("%s:     blksz %d blocks %d flags %08x "
289                         "tsac %d ms nsac %d\n",
290                         mmc_hostname(host), mrq->data->blksz,
291                         mrq->data->blocks, mrq->data->flags,
292                         mrq->data->timeout_ns / 1000000,
293                         mrq->data->timeout_clks);
294         }
295
296         if (mrq->stop) {
297                 pr_debug("%s:     CMD%u arg %08x flags %08x\n",
298                          mmc_hostname(host), mrq->stop->opcode,
299                          mrq->stop->arg, mrq->stop->flags);
300         }
301 }
302
303 static int mmc_mrq_prep(struct mmc_host *host, struct mmc_request *mrq)
304 {
305         unsigned int i, sz = 0;
306         struct scatterlist *sg;
307
308         if (mrq->cmd) {
309                 mrq->cmd->error = 0;
310                 mrq->cmd->mrq = mrq;
311                 mrq->cmd->data = mrq->data;
312         }
313         if (mrq->sbc) {
314                 mrq->sbc->error = 0;
315                 mrq->sbc->mrq = mrq;
316         }
317         if (mrq->data) {
318                 if (mrq->data->blksz > host->max_blk_size ||
319                     mrq->data->blocks > host->max_blk_count ||
320                     mrq->data->blocks * mrq->data->blksz > host->max_req_size)
321                         return -EINVAL;
322
323                 for_each_sg(mrq->data->sg, sg, mrq->data->sg_len, i)
324                         sz += sg->length;
325                 if (sz != mrq->data->blocks * mrq->data->blksz)
326                         return -EINVAL;
327
328                 mrq->data->error = 0;
329                 mrq->data->mrq = mrq;
330                 if (mrq->stop) {
331                         mrq->data->stop = mrq->stop;
332                         mrq->stop->error = 0;
333                         mrq->stop->mrq = mrq;
334                 }
335         }
336
337         return 0;
338 }
339
340 int mmc_start_request(struct mmc_host *host, struct mmc_request *mrq)
341 {
342         int err;
343
344         mmc_retune_hold(host);
345
346         if (mmc_card_removed(host->card))
347                 return -ENOMEDIUM;
348
349         mmc_mrq_pr_debug(host, mrq, false);
350
351         WARN_ON(!host->claimed);
352
353         err = mmc_mrq_prep(host, mrq);
354         if (err)
355                 return err;
356
357         led_trigger_event(host->led, LED_FULL);
358         __mmc_start_request(host, mrq);
359
360         return 0;
361 }
362 EXPORT_SYMBOL(mmc_start_request);
363
364 /*
365  * mmc_wait_data_done() - done callback for data request
366  * @mrq: done data request
367  *
368  * Wakes up mmc context, passed as a callback to host controller driver
369  */
370 static void mmc_wait_data_done(struct mmc_request *mrq)
371 {
372         struct mmc_context_info *context_info = &mrq->host->context_info;
373
374         context_info->is_done_rcv = true;
375         wake_up_interruptible(&context_info->wait);
376 }
377
378 static void mmc_wait_done(struct mmc_request *mrq)
379 {
380         complete(&mrq->completion);
381 }
382
383 static inline void mmc_wait_ongoing_tfr_cmd(struct mmc_host *host)
384 {
385         struct mmc_request *ongoing_mrq = READ_ONCE(host->ongoing_mrq);
386
387         /*
388          * If there is an ongoing transfer, wait for the command line to become
389          * available.
390          */
391         if (ongoing_mrq && !completion_done(&ongoing_mrq->cmd_completion))
392                 wait_for_completion(&ongoing_mrq->cmd_completion);
393 }
394
395 /*
396  *__mmc_start_data_req() - starts data request
397  * @host: MMC host to start the request
398  * @mrq: data request to start
399  *
400  * Sets the done callback to be called when request is completed by the card.
401  * Starts data mmc request execution
402  * If an ongoing transfer is already in progress, wait for the command line
403  * to become available before sending another command.
404  */
405 static int __mmc_start_data_req(struct mmc_host *host, struct mmc_request *mrq)
406 {
407         int err;
408
409         mmc_wait_ongoing_tfr_cmd(host);
410
411         mrq->done = mmc_wait_data_done;
412         mrq->host = host;
413
414         init_completion(&mrq->cmd_completion);
415
416         err = mmc_start_request(host, mrq);
417         if (err) {
418                 mrq->cmd->error = err;
419                 mmc_complete_cmd(mrq);
420                 mmc_wait_data_done(mrq);
421         }
422
423         return err;
424 }
425
426 static int __mmc_start_req(struct mmc_host *host, struct mmc_request *mrq)
427 {
428         int err;
429
430         mmc_wait_ongoing_tfr_cmd(host);
431
432         init_completion(&mrq->completion);
433         mrq->done = mmc_wait_done;
434
435         init_completion(&mrq->cmd_completion);
436
437         err = mmc_start_request(host, mrq);
438         if (err) {
439                 mrq->cmd->error = err;
440                 mmc_complete_cmd(mrq);
441                 complete(&mrq->completion);
442         }
443
444         return err;
445 }
446
447 void mmc_wait_for_req_done(struct mmc_host *host, struct mmc_request *mrq)
448 {
449         struct mmc_command *cmd;
450
451         while (1) {
452                 wait_for_completion(&mrq->completion);
453
454                 cmd = mrq->cmd;
455
456                 /*
457                  * If host has timed out waiting for the sanitize
458                  * to complete, card might be still in programming state
459                  * so let's try to bring the card out of programming
460                  * state.
461                  */
462                 if (cmd->sanitize_busy && cmd->error == -ETIMEDOUT) {
463                         if (!mmc_interrupt_hpi(host->card)) {
464                                 pr_warn("%s: %s: Interrupted sanitize\n",
465                                         mmc_hostname(host), __func__);
466                                 cmd->error = 0;
467                                 break;
468                         } else {
469                                 pr_err("%s: %s: Failed to interrupt sanitize\n",
470                                        mmc_hostname(host), __func__);
471                         }
472                 }
473                 if (!cmd->error || !cmd->retries ||
474                     mmc_card_removed(host->card))
475                         break;
476
477                 mmc_retune_recheck(host);
478
479                 pr_debug("%s: req failed (CMD%u): %d, retrying...\n",
480                          mmc_hostname(host), cmd->opcode, cmd->error);
481                 cmd->retries--;
482                 cmd->error = 0;
483                 __mmc_start_request(host, mrq);
484         }
485
486         mmc_retune_release(host);
487 }
488 EXPORT_SYMBOL(mmc_wait_for_req_done);
489
490 /*
491  * mmc_cqe_start_req - Start a CQE request.
492  * @host: MMC host to start the request
493  * @mrq: request to start
494  *
495  * Start the request, re-tuning if needed and it is possible. Returns an error
496  * code if the request fails to start or -EBUSY if CQE is busy.
497  */
498 int mmc_cqe_start_req(struct mmc_host *host, struct mmc_request *mrq)
499 {
500         int err;
501
502         /*
503          * CQE cannot process re-tuning commands. Caller must hold retuning
504          * while CQE is in use.  Re-tuning can happen here only when CQE has no
505          * active requests i.e. this is the first.  Note, re-tuning will call
506          * ->cqe_off().
507          */
508         err = mmc_retune(host);
509         if (err)
510                 goto out_err;
511
512         mrq->host = host;
513
514         mmc_mrq_pr_debug(host, mrq, true);
515
516         err = mmc_mrq_prep(host, mrq);
517         if (err)
518                 goto out_err;
519
520         err = host->cqe_ops->cqe_request(host, mrq);
521         if (err)
522                 goto out_err;
523
524         trace_mmc_request_start(host, mrq);
525
526         return 0;
527
528 out_err:
529         if (mrq->cmd) {
530                 pr_debug("%s: failed to start CQE direct CMD%u, error %d\n",
531                          mmc_hostname(host), mrq->cmd->opcode, err);
532         } else {
533                 pr_debug("%s: failed to start CQE transfer for tag %d, error %d\n",
534                          mmc_hostname(host), mrq->tag, err);
535         }
536         return err;
537 }
538 EXPORT_SYMBOL(mmc_cqe_start_req);
539
540 /**
541  *      mmc_cqe_request_done - CQE has finished processing an MMC request
542  *      @host: MMC host which completed request
543  *      @mrq: MMC request which completed
544  *
545  *      CQE drivers should call this function when they have completed
546  *      their processing of a request.
547  */
548 void mmc_cqe_request_done(struct mmc_host *host, struct mmc_request *mrq)
549 {
550         mmc_should_fail_request(host, mrq);
551
552         /* Flag re-tuning needed on CRC errors */
553         if ((mrq->cmd && mrq->cmd->error == -EILSEQ) ||
554             (mrq->data && mrq->data->error == -EILSEQ))
555                 mmc_retune_needed(host);
556
557         trace_mmc_request_done(host, mrq);
558
559         if (mrq->cmd) {
560                 pr_debug("%s: CQE req done (direct CMD%u): %d\n",
561                          mmc_hostname(host), mrq->cmd->opcode, mrq->cmd->error);
562         } else {
563                 pr_debug("%s: CQE transfer done tag %d\n",
564                          mmc_hostname(host), mrq->tag);
565         }
566
567         if (mrq->data) {
568                 pr_debug("%s:     %d bytes transferred: %d\n",
569                          mmc_hostname(host),
570                          mrq->data->bytes_xfered, mrq->data->error);
571         }
572
573         mrq->done(mrq);
574 }
575 EXPORT_SYMBOL(mmc_cqe_request_done);
576
577 /**
578  *      mmc_cqe_post_req - CQE post process of a completed MMC request
579  *      @host: MMC host
580  *      @mrq: MMC request to be processed
581  */
582 void mmc_cqe_post_req(struct mmc_host *host, struct mmc_request *mrq)
583 {
584         if (host->cqe_ops->cqe_post_req)
585                 host->cqe_ops->cqe_post_req(host, mrq);
586 }
587 EXPORT_SYMBOL(mmc_cqe_post_req);
588
589 /* Arbitrary 1 second timeout */
590 #define MMC_CQE_RECOVERY_TIMEOUT        1000
591
592 /*
593  * mmc_cqe_recovery - Recover from CQE errors.
594  * @host: MMC host to recover
595  *
596  * Recovery consists of stopping CQE, stopping eMMC, discarding the queue in
597  * in eMMC, and discarding the queue in CQE. CQE must call
598  * mmc_cqe_request_done() on all requests. An error is returned if the eMMC
599  * fails to discard its queue.
600  */
601 int mmc_cqe_recovery(struct mmc_host *host)
602 {
603         struct mmc_command cmd;
604         int err;
605
606         mmc_retune_hold_now(host);
607
608         /*
609          * Recovery is expected seldom, if at all, but it reduces performance,
610          * so make sure it is not completely silent.
611          */
612         pr_warn("%s: running CQE recovery\n", mmc_hostname(host));
613
614         host->cqe_ops->cqe_recovery_start(host);
615
616         memset(&cmd, 0, sizeof(cmd));
617         cmd.opcode       = MMC_STOP_TRANSMISSION,
618         cmd.flags        = MMC_RSP_R1B | MMC_CMD_AC,
619         cmd.flags       &= ~MMC_RSP_CRC; /* Ignore CRC */
620         cmd.busy_timeout = MMC_CQE_RECOVERY_TIMEOUT,
621         mmc_wait_for_cmd(host, &cmd, 0);
622
623         memset(&cmd, 0, sizeof(cmd));
624         cmd.opcode       = MMC_CMDQ_TASK_MGMT;
625         cmd.arg          = 1; /* Discard entire queue */
626         cmd.flags        = MMC_RSP_R1B | MMC_CMD_AC;
627         cmd.flags       &= ~MMC_RSP_CRC; /* Ignore CRC */
628         cmd.busy_timeout = MMC_CQE_RECOVERY_TIMEOUT,
629         err = mmc_wait_for_cmd(host, &cmd, 0);
630
631         host->cqe_ops->cqe_recovery_finish(host);
632
633         mmc_retune_release(host);
634
635         return err;
636 }
637 EXPORT_SYMBOL(mmc_cqe_recovery);
638
639 /**
640  *      mmc_is_req_done - Determine if a 'cap_cmd_during_tfr' request is done
641  *      @host: MMC host
642  *      @mrq: MMC request
643  *
644  *      mmc_is_req_done() is used with requests that have
645  *      mrq->cap_cmd_during_tfr = true. mmc_is_req_done() must be called after
646  *      starting a request and before waiting for it to complete. That is,
647  *      either in between calls to mmc_start_req(), or after mmc_wait_for_req()
648  *      and before mmc_wait_for_req_done(). If it is called at other times the
649  *      result is not meaningful.
650  */
651 bool mmc_is_req_done(struct mmc_host *host, struct mmc_request *mrq)
652 {
653         if (host->areq)
654                 return host->context_info.is_done_rcv;
655         else
656                 return completion_done(&mrq->completion);
657 }
658 EXPORT_SYMBOL(mmc_is_req_done);
659
660 /**
661  *      mmc_pre_req - Prepare for a new request
662  *      @host: MMC host to prepare command
663  *      @mrq: MMC request to prepare for
664  *
665  *      mmc_pre_req() is called in prior to mmc_start_req() to let
666  *      host prepare for the new request. Preparation of a request may be
667  *      performed while another request is running on the host.
668  */
669 static void mmc_pre_req(struct mmc_host *host, struct mmc_request *mrq)
670 {
671         if (host->ops->pre_req)
672                 host->ops->pre_req(host, mrq);
673 }
674
675 /**
676  *      mmc_post_req - Post process a completed request
677  *      @host: MMC host to post process command
678  *      @mrq: MMC request to post process for
679  *      @err: Error, if non zero, clean up any resources made in pre_req
680  *
681  *      Let the host post process a completed request. Post processing of
682  *      a request may be performed while another reuqest is running.
683  */
684 static void mmc_post_req(struct mmc_host *host, struct mmc_request *mrq,
685                          int err)
686 {
687         if (host->ops->post_req)
688                 host->ops->post_req(host, mrq, err);
689 }
690
691 /**
692  * mmc_finalize_areq() - finalize an asynchronous request
693  * @host: MMC host to finalize any ongoing request on
694  *
695  * Returns the status of the ongoing asynchronous request, but
696  * MMC_BLK_SUCCESS if no request was going on.
697  */
698 static enum mmc_blk_status mmc_finalize_areq(struct mmc_host *host)
699 {
700         struct mmc_context_info *context_info = &host->context_info;
701         enum mmc_blk_status status;
702
703         if (!host->areq)
704                 return MMC_BLK_SUCCESS;
705
706         while (1) {
707                 wait_event_interruptible(context_info->wait,
708                                 (context_info->is_done_rcv ||
709                                  context_info->is_new_req));
710
711                 if (context_info->is_done_rcv) {
712                         struct mmc_command *cmd;
713
714                         context_info->is_done_rcv = false;
715                         cmd = host->areq->mrq->cmd;
716
717                         if (!cmd->error || !cmd->retries ||
718                             mmc_card_removed(host->card)) {
719                                 status = host->areq->err_check(host->card,
720                                                                host->areq);
721                                 break; /* return status */
722                         } else {
723                                 mmc_retune_recheck(host);
724                                 pr_info("%s: req failed (CMD%u): %d, retrying...\n",
725                                         mmc_hostname(host),
726                                         cmd->opcode, cmd->error);
727                                 cmd->retries--;
728                                 cmd->error = 0;
729                                 __mmc_start_request(host, host->areq->mrq);
730                                 continue; /* wait for done/new event again */
731                         }
732                 }
733
734                 return MMC_BLK_NEW_REQUEST;
735         }
736
737         mmc_retune_release(host);
738
739         /*
740          * Check BKOPS urgency for each R1 response
741          */
742         if (host->card && mmc_card_mmc(host->card) &&
743             ((mmc_resp_type(host->areq->mrq->cmd) == MMC_RSP_R1) ||
744              (mmc_resp_type(host->areq->mrq->cmd) == MMC_RSP_R1B)) &&
745             (host->areq->mrq->cmd->resp[0] & R1_EXCEPTION_EVENT)) {
746                 mmc_start_bkops(host->card, true);
747         }
748
749         return status;
750 }
751
752 /**
753  *      mmc_start_areq - start an asynchronous request
754  *      @host: MMC host to start command
755  *      @areq: asynchronous request to start
756  *      @ret_stat: out parameter for status
757  *
758  *      Start a new MMC custom command request for a host.
759  *      If there is on ongoing async request wait for completion
760  *      of that request and start the new one and return.
761  *      Does not wait for the new request to complete.
762  *
763  *      Returns the completed request, NULL in case of none completed.
764  *      Wait for the an ongoing request (previoulsy started) to complete and
765  *      return the completed request. If there is no ongoing request, NULL
766  *      is returned without waiting. NULL is not an error condition.
767  */
768 struct mmc_async_req *mmc_start_areq(struct mmc_host *host,
769                                      struct mmc_async_req *areq,
770                                      enum mmc_blk_status *ret_stat)
771 {
772         enum mmc_blk_status status;
773         int start_err = 0;
774         struct mmc_async_req *previous = host->areq;
775
776         /* Prepare a new request */
777         if (areq)
778                 mmc_pre_req(host, areq->mrq);
779
780         /* Finalize previous request */
781         status = mmc_finalize_areq(host);
782         if (ret_stat)
783                 *ret_stat = status;
784
785         /* The previous request is still going on... */
786         if (status == MMC_BLK_NEW_REQUEST)
787                 return NULL;
788
789         /* Fine so far, start the new request! */
790         if (status == MMC_BLK_SUCCESS && areq)
791                 start_err = __mmc_start_data_req(host, areq->mrq);
792
793         /* Postprocess the old request at this point */
794         if (host->areq)
795                 mmc_post_req(host, host->areq->mrq, 0);
796
797         /* Cancel a prepared request if it was not started. */
798         if ((status != MMC_BLK_SUCCESS || start_err) && areq)
799                 mmc_post_req(host, areq->mrq, -EINVAL);
800
801         if (status != MMC_BLK_SUCCESS)
802                 host->areq = NULL;
803         else
804                 host->areq = areq;
805
806         return previous;
807 }
808 EXPORT_SYMBOL(mmc_start_areq);
809
810 /**
811  *      mmc_wait_for_req - start a request and wait for completion
812  *      @host: MMC host to start command
813  *      @mrq: MMC request to start
814  *
815  *      Start a new MMC custom command request for a host, and wait
816  *      for the command to complete. In the case of 'cap_cmd_during_tfr'
817  *      requests, the transfer is ongoing and the caller can issue further
818  *      commands that do not use the data lines, and then wait by calling
819  *      mmc_wait_for_req_done().
820  *      Does not attempt to parse the response.
821  */
822 void mmc_wait_for_req(struct mmc_host *host, struct mmc_request *mrq)
823 {
824         __mmc_start_req(host, mrq);
825
826         if (!mrq->cap_cmd_during_tfr)
827                 mmc_wait_for_req_done(host, mrq);
828 }
829 EXPORT_SYMBOL(mmc_wait_for_req);
830
831 /**
832  *      mmc_wait_for_cmd - start a command and wait for completion
833  *      @host: MMC host to start command
834  *      @cmd: MMC command to start
835  *      @retries: maximum number of retries
836  *
837  *      Start a new MMC command for a host, and wait for the command
838  *      to complete.  Return any error that occurred while the command
839  *      was executing.  Do not attempt to parse the response.
840  */
841 int mmc_wait_for_cmd(struct mmc_host *host, struct mmc_command *cmd, int retries)
842 {
843         struct mmc_request mrq = {};
844
845         WARN_ON(!host->claimed);
846
847         memset(cmd->resp, 0, sizeof(cmd->resp));
848         cmd->retries = retries;
849
850         mrq.cmd = cmd;
851         cmd->data = NULL;
852
853         mmc_wait_for_req(host, &mrq);
854
855         return cmd->error;
856 }
857
858 EXPORT_SYMBOL(mmc_wait_for_cmd);
859
860 /**
861  *      mmc_set_data_timeout - set the timeout for a data command
862  *      @data: data phase for command
863  *      @card: the MMC card associated with the data transfer
864  *
865  *      Computes the data timeout parameters according to the
866  *      correct algorithm given the card type.
867  */
868 void mmc_set_data_timeout(struct mmc_data *data, const struct mmc_card *card)
869 {
870         unsigned int mult;
871
872         /*
873          * SDIO cards only define an upper 1 s limit on access.
874          */
875         if (mmc_card_sdio(card)) {
876                 data->timeout_ns = 1000000000;
877                 data->timeout_clks = 0;
878                 return;
879         }
880
881         /*
882          * SD cards use a 100 multiplier rather than 10
883          */
884         mult = mmc_card_sd(card) ? 100 : 10;
885
886         /*
887          * Scale up the multiplier (and therefore the timeout) by
888          * the r2w factor for writes.
889          */
890         if (data->flags & MMC_DATA_WRITE)
891                 mult <<= card->csd.r2w_factor;
892
893         data->timeout_ns = card->csd.taac_ns * mult;
894         data->timeout_clks = card->csd.taac_clks * mult;
895
896         /*
897          * SD cards also have an upper limit on the timeout.
898          */
899         if (mmc_card_sd(card)) {
900                 unsigned int timeout_us, limit_us;
901
902                 timeout_us = data->timeout_ns / 1000;
903                 if (card->host->ios.clock)
904                         timeout_us += data->timeout_clks * 1000 /
905                                 (card->host->ios.clock / 1000);
906
907                 if (data->flags & MMC_DATA_WRITE)
908                         /*
909                          * The MMC spec "It is strongly recommended
910                          * for hosts to implement more than 500ms
911                          * timeout value even if the card indicates
912                          * the 250ms maximum busy length."  Even the
913                          * previous value of 300ms is known to be
914                          * insufficient for some cards.
915                          */
916                         limit_us = 3000000;
917                 else
918                         limit_us = 100000;
919
920                 /*
921                  * SDHC cards always use these fixed values.
922                  */
923                 if (timeout_us > limit_us) {
924                         data->timeout_ns = limit_us * 1000;
925                         data->timeout_clks = 0;
926                 }
927
928                 /* assign limit value if invalid */
929                 if (timeout_us == 0)
930                         data->timeout_ns = limit_us * 1000;
931         }
932
933         /*
934          * Some cards require longer data read timeout than indicated in CSD.
935          * Address this by setting the read timeout to a "reasonably high"
936          * value. For the cards tested, 600ms has proven enough. If necessary,
937          * this value can be increased if other problematic cards require this.
938          */
939         if (mmc_card_long_read_time(card) && data->flags & MMC_DATA_READ) {
940                 data->timeout_ns = 600000000;
941                 data->timeout_clks = 0;
942         }
943
944         /*
945          * Some cards need very high timeouts if driven in SPI mode.
946          * The worst observed timeout was 900ms after writing a
947          * continuous stream of data until the internal logic
948          * overflowed.
949          */
950         if (mmc_host_is_spi(card->host)) {
951                 if (data->flags & MMC_DATA_WRITE) {
952                         if (data->timeout_ns < 1000000000)
953                                 data->timeout_ns = 1000000000;  /* 1s */
954                 } else {
955                         if (data->timeout_ns < 100000000)
956                                 data->timeout_ns =  100000000;  /* 100ms */
957                 }
958         }
959 }
960 EXPORT_SYMBOL(mmc_set_data_timeout);
961
962 /**
963  *      mmc_align_data_size - pads a transfer size to a more optimal value
964  *      @card: the MMC card associated with the data transfer
965  *      @sz: original transfer size
966  *
967  *      Pads the original data size with a number of extra bytes in
968  *      order to avoid controller bugs and/or performance hits
969  *      (e.g. some controllers revert to PIO for certain sizes).
970  *
971  *      Returns the improved size, which might be unmodified.
972  *
973  *      Note that this function is only relevant when issuing a
974  *      single scatter gather entry.
975  */
976 unsigned int mmc_align_data_size(struct mmc_card *card, unsigned int sz)
977 {
978         /*
979          * FIXME: We don't have a system for the controller to tell
980          * the core about its problems yet, so for now we just 32-bit
981          * align the size.
982          */
983         sz = ((sz + 3) / 4) * 4;
984
985         return sz;
986 }
987 EXPORT_SYMBOL(mmc_align_data_size);
988
989 /*
990  * Allow claiming an already claimed host if the context is the same or there is
991  * no context but the task is the same.
992  */
993 static inline bool mmc_ctx_matches(struct mmc_host *host, struct mmc_ctx *ctx,
994                                    struct task_struct *task)
995 {
996         return host->claimer == ctx ||
997                (!ctx && task && host->claimer->task == task);
998 }
999
1000 static inline void mmc_ctx_set_claimer(struct mmc_host *host,
1001                                        struct mmc_ctx *ctx,
1002                                        struct task_struct *task)
1003 {
1004         if (!host->claimer) {
1005                 if (ctx)
1006                         host->claimer = ctx;
1007                 else
1008                         host->claimer = &host->default_ctx;
1009         }
1010         if (task)
1011                 host->claimer->task = task;
1012 }
1013
1014 /**
1015  *      __mmc_claim_host - exclusively claim a host
1016  *      @host: mmc host to claim
1017  *      @ctx: context that claims the host or NULL in which case the default
1018  *      context will be used
1019  *      @abort: whether or not the operation should be aborted
1020  *
1021  *      Claim a host for a set of operations.  If @abort is non null and
1022  *      dereference a non-zero value then this will return prematurely with
1023  *      that non-zero value without acquiring the lock.  Returns zero
1024  *      with the lock held otherwise.
1025  */
1026 int __mmc_claim_host(struct mmc_host *host, struct mmc_ctx *ctx,
1027                      atomic_t *abort)
1028 {
1029         struct task_struct *task = ctx ? NULL : current;
1030         DECLARE_WAITQUEUE(wait, current);
1031         unsigned long flags;
1032         int stop;
1033         bool pm = false;
1034
1035         might_sleep();
1036
1037         add_wait_queue(&host->wq, &wait);
1038         spin_lock_irqsave(&host->lock, flags);
1039         while (1) {
1040                 set_current_state(TASK_UNINTERRUPTIBLE);
1041                 stop = abort ? atomic_read(abort) : 0;
1042                 if (stop || !host->claimed || mmc_ctx_matches(host, ctx, task))
1043                         break;
1044                 spin_unlock_irqrestore(&host->lock, flags);
1045                 schedule();
1046                 spin_lock_irqsave(&host->lock, flags);
1047         }
1048         set_current_state(TASK_RUNNING);
1049         if (!stop) {
1050                 host->claimed = 1;
1051                 mmc_ctx_set_claimer(host, ctx, task);
1052                 host->claim_cnt += 1;
1053                 if (host->claim_cnt == 1)
1054                         pm = true;
1055         } else
1056                 wake_up(&host->wq);
1057         spin_unlock_irqrestore(&host->lock, flags);
1058         remove_wait_queue(&host->wq, &wait);
1059
1060         if (pm)
1061                 pm_runtime_get_sync(mmc_dev(host));
1062
1063         return stop;
1064 }
1065 EXPORT_SYMBOL(__mmc_claim_host);
1066
1067 /**
1068  *      mmc_release_host - release a host
1069  *      @host: mmc host to release
1070  *
1071  *      Release a MMC host, allowing others to claim the host
1072  *      for their operations.
1073  */
1074 void mmc_release_host(struct mmc_host *host)
1075 {
1076         unsigned long flags;
1077
1078         WARN_ON(!host->claimed);
1079
1080         spin_lock_irqsave(&host->lock, flags);
1081         if (--host->claim_cnt) {
1082                 /* Release for nested claim */
1083                 spin_unlock_irqrestore(&host->lock, flags);
1084         } else {
1085                 host->claimed = 0;
1086                 host->claimer->task = NULL;
1087                 host->claimer = NULL;
1088                 spin_unlock_irqrestore(&host->lock, flags);
1089                 wake_up(&host->wq);
1090                 pm_runtime_mark_last_busy(mmc_dev(host));
1091                 pm_runtime_put_autosuspend(mmc_dev(host));
1092         }
1093 }
1094 EXPORT_SYMBOL(mmc_release_host);
1095
1096 /*
1097  * This is a helper function, which fetches a runtime pm reference for the
1098  * card device and also claims the host.
1099  */
1100 void mmc_get_card(struct mmc_card *card, struct mmc_ctx *ctx)
1101 {
1102         pm_runtime_get_sync(&card->dev);
1103         __mmc_claim_host(card->host, ctx, NULL);
1104 }
1105 EXPORT_SYMBOL(mmc_get_card);
1106
1107 /*
1108  * This is a helper function, which releases the host and drops the runtime
1109  * pm reference for the card device.
1110  */
1111 void mmc_put_card(struct mmc_card *card, struct mmc_ctx *ctx)
1112 {
1113         struct mmc_host *host = card->host;
1114
1115         WARN_ON(ctx && host->claimer != ctx);
1116
1117         mmc_release_host(host);
1118         pm_runtime_mark_last_busy(&card->dev);
1119         pm_runtime_put_autosuspend(&card->dev);
1120 }
1121 EXPORT_SYMBOL(mmc_put_card);
1122
1123 /*
1124  * Internal function that does the actual ios call to the host driver,
1125  * optionally printing some debug output.
1126  */
1127 static inline void mmc_set_ios(struct mmc_host *host)
1128 {
1129         struct mmc_ios *ios = &host->ios;
1130
1131         pr_debug("%s: clock %uHz busmode %u powermode %u cs %u Vdd %u "
1132                 "width %u timing %u\n",
1133                  mmc_hostname(host), ios->clock, ios->bus_mode,
1134                  ios->power_mode, ios->chip_select, ios->vdd,
1135                  1 << ios->bus_width, ios->timing);
1136
1137         host->ops->set_ios(host, ios);
1138 }
1139
1140 /*
1141  * Control chip select pin on a host.
1142  */
1143 void mmc_set_chip_select(struct mmc_host *host, int mode)
1144 {
1145         host->ios.chip_select = mode;
1146         mmc_set_ios(host);
1147 }
1148
1149 /*
1150  * Sets the host clock to the highest possible frequency that
1151  * is below "hz".
1152  */
1153 void mmc_set_clock(struct mmc_host *host, unsigned int hz)
1154 {
1155         WARN_ON(hz && hz < host->f_min);
1156
1157         if (hz > host->f_max)
1158                 hz = host->f_max;
1159
1160         host->ios.clock = hz;
1161         mmc_set_ios(host);
1162 }
1163
1164 int mmc_execute_tuning(struct mmc_card *card)
1165 {
1166         struct mmc_host *host = card->host;
1167         u32 opcode;
1168         int err;
1169
1170         if (!host->ops->execute_tuning)
1171                 return 0;
1172
1173         if (host->cqe_on)
1174                 host->cqe_ops->cqe_off(host);
1175
1176         if (mmc_card_mmc(card))
1177                 opcode = MMC_SEND_TUNING_BLOCK_HS200;
1178         else
1179                 opcode = MMC_SEND_TUNING_BLOCK;
1180
1181         err = host->ops->execute_tuning(host, opcode);
1182
1183         if (err)
1184                 pr_err("%s: tuning execution failed: %d\n",
1185                         mmc_hostname(host), err);
1186         else
1187                 mmc_retune_enable(host);
1188
1189         return err;
1190 }
1191
1192 /*
1193  * Change the bus mode (open drain/push-pull) of a host.
1194  */
1195 void mmc_set_bus_mode(struct mmc_host *host, unsigned int mode)
1196 {
1197         host->ios.bus_mode = mode;
1198         mmc_set_ios(host);
1199 }
1200
1201 /*
1202  * Change data bus width of a host.
1203  */
1204 void mmc_set_bus_width(struct mmc_host *host, unsigned int width)
1205 {
1206         host->ios.bus_width = width;
1207         mmc_set_ios(host);
1208 }
1209
1210 /*
1211  * Set initial state after a power cycle or a hw_reset.
1212  */
1213 void mmc_set_initial_state(struct mmc_host *host)
1214 {
1215         if (host->cqe_on)
1216                 host->cqe_ops->cqe_off(host);
1217
1218         mmc_retune_disable(host);
1219
1220         if (mmc_host_is_spi(host))
1221                 host->ios.chip_select = MMC_CS_HIGH;
1222         else
1223                 host->ios.chip_select = MMC_CS_DONTCARE;
1224         host->ios.bus_mode = MMC_BUSMODE_PUSHPULL;
1225         host->ios.bus_width = MMC_BUS_WIDTH_1;
1226         host->ios.timing = MMC_TIMING_LEGACY;
1227         host->ios.drv_type = 0;
1228         host->ios.enhanced_strobe = false;
1229
1230         /*
1231          * Make sure we are in non-enhanced strobe mode before we
1232          * actually enable it in ext_csd.
1233          */
1234         if ((host->caps2 & MMC_CAP2_HS400_ES) &&
1235              host->ops->hs400_enhanced_strobe)
1236                 host->ops->hs400_enhanced_strobe(host, &host->ios);
1237
1238         mmc_set_ios(host);
1239 }
1240
1241 /**
1242  * mmc_vdd_to_ocrbitnum - Convert a voltage to the OCR bit number
1243  * @vdd:        voltage (mV)
1244  * @low_bits:   prefer low bits in boundary cases
1245  *
1246  * This function returns the OCR bit number according to the provided @vdd
1247  * value. If conversion is not possible a negative errno value returned.
1248  *
1249  * Depending on the @low_bits flag the function prefers low or high OCR bits
1250  * on boundary voltages. For example,
1251  * with @low_bits = true, 3300 mV translates to ilog2(MMC_VDD_32_33);
1252  * with @low_bits = false, 3300 mV translates to ilog2(MMC_VDD_33_34);
1253  *
1254  * Any value in the [1951:1999] range translates to the ilog2(MMC_VDD_20_21).
1255  */
1256 static int mmc_vdd_to_ocrbitnum(int vdd, bool low_bits)
1257 {
1258         const int max_bit = ilog2(MMC_VDD_35_36);
1259         int bit;
1260
1261         if (vdd < 1650 || vdd > 3600)
1262                 return -EINVAL;
1263
1264         if (vdd >= 1650 && vdd <= 1950)
1265                 return ilog2(MMC_VDD_165_195);
1266
1267         if (low_bits)
1268                 vdd -= 1;
1269
1270         /* Base 2000 mV, step 100 mV, bit's base 8. */
1271         bit = (vdd - 2000) / 100 + 8;
1272         if (bit > max_bit)
1273                 return max_bit;
1274         return bit;
1275 }
1276
1277 /**
1278  * mmc_vddrange_to_ocrmask - Convert a voltage range to the OCR mask
1279  * @vdd_min:    minimum voltage value (mV)
1280  * @vdd_max:    maximum voltage value (mV)
1281  *
1282  * This function returns the OCR mask bits according to the provided @vdd_min
1283  * and @vdd_max values. If conversion is not possible the function returns 0.
1284  *
1285  * Notes wrt boundary cases:
1286  * This function sets the OCR bits for all boundary voltages, for example
1287  * [3300:3400] range is translated to MMC_VDD_32_33 | MMC_VDD_33_34 |
1288  * MMC_VDD_34_35 mask.
1289  */
1290 u32 mmc_vddrange_to_ocrmask(int vdd_min, int vdd_max)
1291 {
1292         u32 mask = 0;
1293
1294         if (vdd_max < vdd_min)
1295                 return 0;
1296
1297         /* Prefer high bits for the boundary vdd_max values. */
1298         vdd_max = mmc_vdd_to_ocrbitnum(vdd_max, false);
1299         if (vdd_max < 0)
1300                 return 0;
1301
1302         /* Prefer low bits for the boundary vdd_min values. */
1303         vdd_min = mmc_vdd_to_ocrbitnum(vdd_min, true);
1304         if (vdd_min < 0)
1305                 return 0;
1306
1307         /* Fill the mask, from max bit to min bit. */
1308         while (vdd_max >= vdd_min)
1309                 mask |= 1 << vdd_max--;
1310
1311         return mask;
1312 }
1313 EXPORT_SYMBOL(mmc_vddrange_to_ocrmask);
1314
1315 #ifdef CONFIG_OF
1316
1317 /**
1318  * mmc_of_parse_voltage - return mask of supported voltages
1319  * @np: The device node need to be parsed.
1320  * @mask: mask of voltages available for MMC/SD/SDIO
1321  *
1322  * Parse the "voltage-ranges" DT property, returning zero if it is not
1323  * found, negative errno if the voltage-range specification is invalid,
1324  * or one if the voltage-range is specified and successfully parsed.
1325  */
1326 int mmc_of_parse_voltage(struct device_node *np, u32 *mask)
1327 {
1328         const u32 *voltage_ranges;
1329         int num_ranges, i;
1330
1331         voltage_ranges = of_get_property(np, "voltage-ranges", &num_ranges);
1332         num_ranges = num_ranges / sizeof(*voltage_ranges) / 2;
1333         if (!voltage_ranges) {
1334                 pr_debug("%pOF: voltage-ranges unspecified\n", np);
1335                 return 0;
1336         }
1337         if (!num_ranges) {
1338                 pr_err("%pOF: voltage-ranges empty\n", np);
1339                 return -EINVAL;
1340         }
1341
1342         for (i = 0; i < num_ranges; i++) {
1343                 const int j = i * 2;
1344                 u32 ocr_mask;
1345
1346                 ocr_mask = mmc_vddrange_to_ocrmask(
1347                                 be32_to_cpu(voltage_ranges[j]),
1348                                 be32_to_cpu(voltage_ranges[j + 1]));
1349                 if (!ocr_mask) {
1350                         pr_err("%pOF: voltage-range #%d is invalid\n",
1351                                 np, i);
1352                         return -EINVAL;
1353                 }
1354                 *mask |= ocr_mask;
1355         }
1356
1357         return 1;
1358 }
1359 EXPORT_SYMBOL(mmc_of_parse_voltage);
1360
1361 #endif /* CONFIG_OF */
1362
1363 static int mmc_of_get_func_num(struct device_node *node)
1364 {
1365         u32 reg;
1366         int ret;
1367
1368         ret = of_property_read_u32(node, "reg", &reg);
1369         if (ret < 0)
1370                 return ret;
1371
1372         return reg;
1373 }
1374
1375 struct device_node *mmc_of_find_child_device(struct mmc_host *host,
1376                 unsigned func_num)
1377 {
1378         struct device_node *node;
1379
1380         if (!host->parent || !host->parent->of_node)
1381                 return NULL;
1382
1383         for_each_child_of_node(host->parent->of_node, node) {
1384                 if (mmc_of_get_func_num(node) == func_num)
1385                         return node;
1386         }
1387
1388         return NULL;
1389 }
1390
1391 #ifdef CONFIG_REGULATOR
1392
1393 /**
1394  * mmc_ocrbitnum_to_vdd - Convert a OCR bit number to its voltage
1395  * @vdd_bit:    OCR bit number
1396  * @min_uV:     minimum voltage value (mV)
1397  * @max_uV:     maximum voltage value (mV)
1398  *
1399  * This function returns the voltage range according to the provided OCR
1400  * bit number. If conversion is not possible a negative errno value returned.
1401  */
1402 static int mmc_ocrbitnum_to_vdd(int vdd_bit, int *min_uV, int *max_uV)
1403 {
1404         int             tmp;
1405
1406         if (!vdd_bit)
1407                 return -EINVAL;
1408
1409         /*
1410          * REVISIT mmc_vddrange_to_ocrmask() may have set some
1411          * bits this regulator doesn't quite support ... don't
1412          * be too picky, most cards and regulators are OK with
1413          * a 0.1V range goof (it's a small error percentage).
1414          */
1415         tmp = vdd_bit - ilog2(MMC_VDD_165_195);
1416         if (tmp == 0) {
1417                 *min_uV = 1650 * 1000;
1418                 *max_uV = 1950 * 1000;
1419         } else {
1420                 *min_uV = 1900 * 1000 + tmp * 100 * 1000;
1421                 *max_uV = *min_uV + 100 * 1000;
1422         }
1423
1424         return 0;
1425 }
1426
1427 /**
1428  * mmc_regulator_get_ocrmask - return mask of supported voltages
1429  * @supply: regulator to use
1430  *
1431  * This returns either a negative errno, or a mask of voltages that
1432  * can be provided to MMC/SD/SDIO devices using the specified voltage
1433  * regulator.  This would normally be called before registering the
1434  * MMC host adapter.
1435  */
1436 int mmc_regulator_get_ocrmask(struct regulator *supply)
1437 {
1438         int                     result = 0;
1439         int                     count;
1440         int                     i;
1441         int                     vdd_uV;
1442         int                     vdd_mV;
1443
1444         count = regulator_count_voltages(supply);
1445         if (count < 0)
1446                 return count;
1447
1448         for (i = 0; i < count; i++) {
1449                 vdd_uV = regulator_list_voltage(supply, i);
1450                 if (vdd_uV <= 0)
1451                         continue;
1452
1453                 vdd_mV = vdd_uV / 1000;
1454                 result |= mmc_vddrange_to_ocrmask(vdd_mV, vdd_mV);
1455         }
1456
1457         if (!result) {
1458                 vdd_uV = regulator_get_voltage(supply);
1459                 if (vdd_uV <= 0)
1460                         return vdd_uV;
1461
1462                 vdd_mV = vdd_uV / 1000;
1463                 result = mmc_vddrange_to_ocrmask(vdd_mV, vdd_mV);
1464         }
1465
1466         return result;
1467 }
1468 EXPORT_SYMBOL_GPL(mmc_regulator_get_ocrmask);
1469
1470 /**
1471  * mmc_regulator_set_ocr - set regulator to match host->ios voltage
1472  * @mmc: the host to regulate
1473  * @supply: regulator to use
1474  * @vdd_bit: zero for power off, else a bit number (host->ios.vdd)
1475  *
1476  * Returns zero on success, else negative errno.
1477  *
1478  * MMC host drivers may use this to enable or disable a regulator using
1479  * a particular supply voltage.  This would normally be called from the
1480  * set_ios() method.
1481  */
1482 int mmc_regulator_set_ocr(struct mmc_host *mmc,
1483                         struct regulator *supply,
1484                         unsigned short vdd_bit)
1485 {
1486         int                     result = 0;
1487         int                     min_uV, max_uV;
1488
1489         if (vdd_bit) {
1490                 mmc_ocrbitnum_to_vdd(vdd_bit, &min_uV, &max_uV);
1491
1492                 result = regulator_set_voltage(supply, min_uV, max_uV);
1493                 if (result == 0 && !mmc->regulator_enabled) {
1494                         result = regulator_enable(supply);
1495                         if (!result)
1496                                 mmc->regulator_enabled = true;
1497                 }
1498         } else if (mmc->regulator_enabled) {
1499                 result = regulator_disable(supply);
1500                 if (result == 0)
1501                         mmc->regulator_enabled = false;
1502         }
1503
1504         if (result)
1505                 dev_err(mmc_dev(mmc),
1506                         "could not set regulator OCR (%d)\n", result);
1507         return result;
1508 }
1509 EXPORT_SYMBOL_GPL(mmc_regulator_set_ocr);
1510
1511 static int mmc_regulator_set_voltage_if_supported(struct regulator *regulator,
1512                                                   int min_uV, int target_uV,
1513                                                   int max_uV)
1514 {
1515         /*
1516          * Check if supported first to avoid errors since we may try several
1517          * signal levels during power up and don't want to show errors.
1518          */
1519         if (!regulator_is_supported_voltage(regulator, min_uV, max_uV))
1520                 return -EINVAL;
1521
1522         return regulator_set_voltage_triplet(regulator, min_uV, target_uV,
1523                                              max_uV);
1524 }
1525
1526 /**
1527  * mmc_regulator_set_vqmmc - Set VQMMC as per the ios
1528  *
1529  * For 3.3V signaling, we try to match VQMMC to VMMC as closely as possible.
1530  * That will match the behavior of old boards where VQMMC and VMMC were supplied
1531  * by the same supply.  The Bus Operating conditions for 3.3V signaling in the
1532  * SD card spec also define VQMMC in terms of VMMC.
1533  * If this is not possible we'll try the full 2.7-3.6V of the spec.
1534  *
1535  * For 1.2V and 1.8V signaling we'll try to get as close as possible to the
1536  * requested voltage.  This is definitely a good idea for UHS where there's a
1537  * separate regulator on the card that's trying to make 1.8V and it's best if
1538  * we match.
1539  *
1540  * This function is expected to be used by a controller's
1541  * start_signal_voltage_switch() function.
1542  */
1543 int mmc_regulator_set_vqmmc(struct mmc_host *mmc, struct mmc_ios *ios)
1544 {
1545         struct device *dev = mmc_dev(mmc);
1546         int ret, volt, min_uV, max_uV;
1547
1548         /* If no vqmmc supply then we can't change the voltage */
1549         if (IS_ERR(mmc->supply.vqmmc))
1550                 return -EINVAL;
1551
1552         switch (ios->signal_voltage) {
1553         case MMC_SIGNAL_VOLTAGE_120:
1554                 return mmc_regulator_set_voltage_if_supported(mmc->supply.vqmmc,
1555                                                 1100000, 1200000, 1300000);
1556         case MMC_SIGNAL_VOLTAGE_180:
1557                 return mmc_regulator_set_voltage_if_supported(mmc->supply.vqmmc,
1558                                                 1700000, 1800000, 1950000);
1559         case MMC_SIGNAL_VOLTAGE_330:
1560                 ret = mmc_ocrbitnum_to_vdd(mmc->ios.vdd, &volt, &max_uV);
1561                 if (ret < 0)
1562                         return ret;
1563
1564                 dev_dbg(dev, "%s: found vmmc voltage range of %d-%duV\n",
1565                         __func__, volt, max_uV);
1566
1567                 min_uV = max(volt - 300000, 2700000);
1568                 max_uV = min(max_uV + 200000, 3600000);
1569
1570                 /*
1571                  * Due to a limitation in the current implementation of
1572                  * regulator_set_voltage_triplet() which is taking the lowest
1573                  * voltage possible if below the target, search for a suitable
1574                  * voltage in two steps and try to stay close to vmmc
1575                  * with a 0.3V tolerance at first.
1576                  */
1577                 if (!mmc_regulator_set_voltage_if_supported(mmc->supply.vqmmc,
1578                                                 min_uV, volt, max_uV))
1579                         return 0;
1580
1581                 return mmc_regulator_set_voltage_if_supported(mmc->supply.vqmmc,
1582                                                 2700000, volt, 3600000);
1583         default:
1584                 return -EINVAL;
1585         }
1586 }
1587 EXPORT_SYMBOL_GPL(mmc_regulator_set_vqmmc);
1588
1589 #endif /* CONFIG_REGULATOR */
1590
1591 int mmc_regulator_get_supply(struct mmc_host *mmc)
1592 {
1593         struct device *dev = mmc_dev(mmc);
1594         int ret;
1595
1596         mmc->supply.vmmc = devm_regulator_get_optional(dev, "vmmc");
1597         mmc->supply.vqmmc = devm_regulator_get_optional(dev, "vqmmc");
1598
1599         if (IS_ERR(mmc->supply.vmmc)) {
1600                 if (PTR_ERR(mmc->supply.vmmc) == -EPROBE_DEFER)
1601                         return -EPROBE_DEFER;
1602                 dev_dbg(dev, "No vmmc regulator found\n");
1603         } else {
1604                 ret = mmc_regulator_get_ocrmask(mmc->supply.vmmc);
1605                 if (ret > 0)
1606                         mmc->ocr_avail = ret;
1607                 else
1608                         dev_warn(dev, "Failed getting OCR mask: %d\n", ret);
1609         }
1610
1611         if (IS_ERR(mmc->supply.vqmmc)) {
1612                 if (PTR_ERR(mmc->supply.vqmmc) == -EPROBE_DEFER)
1613                         return -EPROBE_DEFER;
1614                 dev_dbg(dev, "No vqmmc regulator found\n");
1615         }
1616
1617         return 0;
1618 }
1619 EXPORT_SYMBOL_GPL(mmc_regulator_get_supply);
1620
1621 /*
1622  * Mask off any voltages we don't support and select
1623  * the lowest voltage
1624  */
1625 u32 mmc_select_voltage(struct mmc_host *host, u32 ocr)
1626 {
1627         int bit;
1628
1629         /*
1630          * Sanity check the voltages that the card claims to
1631          * support.
1632          */
1633         if (ocr & 0x7F) {
1634                 dev_warn(mmc_dev(host),
1635                 "card claims to support voltages below defined range\n");
1636                 ocr &= ~0x7F;
1637         }
1638
1639         ocr &= host->ocr_avail;
1640         if (!ocr) {
1641                 dev_warn(mmc_dev(host), "no support for card's volts\n");
1642                 return 0;
1643         }
1644
1645         if (host->caps2 & MMC_CAP2_FULL_PWR_CYCLE) {
1646                 bit = ffs(ocr) - 1;
1647                 ocr &= 3 << bit;
1648                 mmc_power_cycle(host, ocr);
1649         } else {
1650                 bit = fls(ocr) - 1;
1651                 ocr &= 3 << bit;
1652                 if (bit != host->ios.vdd)
1653                         dev_warn(mmc_dev(host), "exceeding card's volts\n");
1654         }
1655
1656         return ocr;
1657 }
1658
1659 int mmc_set_signal_voltage(struct mmc_host *host, int signal_voltage)
1660 {
1661         int err = 0;
1662         int old_signal_voltage = host->ios.signal_voltage;
1663
1664         host->ios.signal_voltage = signal_voltage;
1665         if (host->ops->start_signal_voltage_switch)
1666                 err = host->ops->start_signal_voltage_switch(host, &host->ios);
1667
1668         if (err)
1669                 host->ios.signal_voltage = old_signal_voltage;
1670
1671         return err;
1672
1673 }
1674
1675 int mmc_host_set_uhs_voltage(struct mmc_host *host)
1676 {
1677         u32 clock;
1678
1679         /*
1680          * During a signal voltage level switch, the clock must be gated
1681          * for 5 ms according to the SD spec
1682          */
1683         clock = host->ios.clock;
1684         host->ios.clock = 0;
1685         mmc_set_ios(host);
1686
1687         if (mmc_set_signal_voltage(host, MMC_SIGNAL_VOLTAGE_180))
1688                 return -EAGAIN;
1689
1690         /* Keep clock gated for at least 10 ms, though spec only says 5 ms */
1691         mmc_delay(10);
1692         host->ios.clock = clock;
1693         mmc_set_ios(host);
1694
1695         return 0;
1696 }
1697
1698 int mmc_set_uhs_voltage(struct mmc_host *host, u32 ocr)
1699 {
1700         struct mmc_command cmd = {};
1701         int err = 0;
1702
1703         /*
1704          * If we cannot switch voltages, return failure so the caller
1705          * can continue without UHS mode
1706          */
1707         if (!host->ops->start_signal_voltage_switch)
1708                 return -EPERM;
1709         if (!host->ops->card_busy)
1710                 pr_warn("%s: cannot verify signal voltage switch\n",
1711                         mmc_hostname(host));
1712
1713         cmd.opcode = SD_SWITCH_VOLTAGE;
1714         cmd.arg = 0;
1715         cmd.flags = MMC_RSP_R1 | MMC_CMD_AC;
1716
1717         err = mmc_wait_for_cmd(host, &cmd, 0);
1718         if (err)
1719                 return err;
1720
1721         if (!mmc_host_is_spi(host) && (cmd.resp[0] & R1_ERROR))
1722                 return -EIO;
1723
1724         /*
1725          * The card should drive cmd and dat[0:3] low immediately
1726          * after the response of cmd11, but wait 1 ms to be sure
1727          */
1728         mmc_delay(1);
1729         if (host->ops->card_busy && !host->ops->card_busy(host)) {
1730                 err = -EAGAIN;
1731                 goto power_cycle;
1732         }
1733
1734         if (mmc_host_set_uhs_voltage(host)) {
1735                 /*
1736                  * Voltages may not have been switched, but we've already
1737                  * sent CMD11, so a power cycle is required anyway
1738                  */
1739                 err = -EAGAIN;
1740                 goto power_cycle;
1741         }
1742
1743         /* Wait for at least 1 ms according to spec */
1744         mmc_delay(1);
1745
1746         /*
1747          * Failure to switch is indicated by the card holding
1748          * dat[0:3] low
1749          */
1750         if (host->ops->card_busy && host->ops->card_busy(host))
1751                 err = -EAGAIN;
1752
1753 power_cycle:
1754         if (err) {
1755                 pr_debug("%s: Signal voltage switch failed, "
1756                         "power cycling card\n", mmc_hostname(host));
1757                 mmc_power_cycle(host, ocr);
1758         }
1759
1760         return err;
1761 }
1762
1763 /*
1764  * Select timing parameters for host.
1765  */
1766 void mmc_set_timing(struct mmc_host *host, unsigned int timing)
1767 {
1768         host->ios.timing = timing;
1769         mmc_set_ios(host);
1770 }
1771
1772 /*
1773  * Select appropriate driver type for host.
1774  */
1775 void mmc_set_driver_type(struct mmc_host *host, unsigned int drv_type)
1776 {
1777         host->ios.drv_type = drv_type;
1778         mmc_set_ios(host);
1779 }
1780
1781 int mmc_select_drive_strength(struct mmc_card *card, unsigned int max_dtr,
1782                               int card_drv_type, int *drv_type)
1783 {
1784         struct mmc_host *host = card->host;
1785         int host_drv_type = SD_DRIVER_TYPE_B;
1786
1787         *drv_type = 0;
1788
1789         if (!host->ops->select_drive_strength)
1790                 return 0;
1791
1792         /* Use SD definition of driver strength for hosts */
1793         if (host->caps & MMC_CAP_DRIVER_TYPE_A)
1794                 host_drv_type |= SD_DRIVER_TYPE_A;
1795
1796         if (host->caps & MMC_CAP_DRIVER_TYPE_C)
1797                 host_drv_type |= SD_DRIVER_TYPE_C;
1798
1799         if (host->caps & MMC_CAP_DRIVER_TYPE_D)
1800                 host_drv_type |= SD_DRIVER_TYPE_D;
1801
1802         /*
1803          * The drive strength that the hardware can support
1804          * depends on the board design.  Pass the appropriate
1805          * information and let the hardware specific code
1806          * return what is possible given the options
1807          */
1808         return host->ops->select_drive_strength(card, max_dtr,
1809                                                 host_drv_type,
1810                                                 card_drv_type,
1811                                                 drv_type);
1812 }
1813
1814 /*
1815  * Apply power to the MMC stack.  This is a two-stage process.
1816  * First, we enable power to the card without the clock running.
1817  * We then wait a bit for the power to stabilise.  Finally,
1818  * enable the bus drivers and clock to the card.
1819  *
1820  * We must _NOT_ enable the clock prior to power stablising.
1821  *
1822  * If a host does all the power sequencing itself, ignore the
1823  * initial MMC_POWER_UP stage.
1824  */
1825 void mmc_power_up(struct mmc_host *host, u32 ocr)
1826 {
1827         if (host->ios.power_mode == MMC_POWER_ON)
1828                 return;
1829
1830         mmc_pwrseq_pre_power_on(host);
1831
1832         host->ios.vdd = fls(ocr) - 1;
1833         host->ios.power_mode = MMC_POWER_UP;
1834         /* Set initial state and call mmc_set_ios */
1835         mmc_set_initial_state(host);
1836
1837         /* Try to set signal voltage to 3.3V but fall back to 1.8v or 1.2v */
1838         if (!mmc_set_signal_voltage(host, MMC_SIGNAL_VOLTAGE_330))
1839                 dev_dbg(mmc_dev(host), "Initial signal voltage of 3.3v\n");
1840         else if (!mmc_set_signal_voltage(host, MMC_SIGNAL_VOLTAGE_180))
1841                 dev_dbg(mmc_dev(host), "Initial signal voltage of 1.8v\n");
1842         else if (!mmc_set_signal_voltage(host, MMC_SIGNAL_VOLTAGE_120))
1843                 dev_dbg(mmc_dev(host), "Initial signal voltage of 1.2v\n");
1844
1845         /*
1846          * This delay should be sufficient to allow the power supply
1847          * to reach the minimum voltage.
1848          */
1849         mmc_delay(10);
1850
1851         mmc_pwrseq_post_power_on(host);
1852
1853         host->ios.clock = host->f_init;
1854
1855         host->ios.power_mode = MMC_POWER_ON;
1856         mmc_set_ios(host);
1857
1858         /*
1859          * This delay must be at least 74 clock sizes, or 1 ms, or the
1860          * time required to reach a stable voltage.
1861          */
1862         mmc_delay(10);
1863 }
1864
1865 void mmc_power_off(struct mmc_host *host)
1866 {
1867         if (host->ios.power_mode == MMC_POWER_OFF)
1868                 return;
1869
1870         mmc_pwrseq_power_off(host);
1871
1872         host->ios.clock = 0;
1873         host->ios.vdd = 0;
1874
1875         host->ios.power_mode = MMC_POWER_OFF;
1876         /* Set initial state and call mmc_set_ios */
1877         mmc_set_initial_state(host);
1878
1879         /*
1880          * Some configurations, such as the 802.11 SDIO card in the OLPC
1881          * XO-1.5, require a short delay after poweroff before the card
1882          * can be successfully turned on again.
1883          */
1884         mmc_delay(1);
1885 }
1886
1887 void mmc_power_cycle(struct mmc_host *host, u32 ocr)
1888 {
1889         mmc_power_off(host);
1890         /* Wait at least 1 ms according to SD spec */
1891         mmc_delay(1);
1892         mmc_power_up(host, ocr);
1893 }
1894
1895 /*
1896  * Cleanup when the last reference to the bus operator is dropped.
1897  */
1898 static void __mmc_release_bus(struct mmc_host *host)
1899 {
1900         WARN_ON(!host->bus_dead);
1901
1902         host->bus_ops = NULL;
1903 }
1904
1905 /*
1906  * Increase reference count of bus operator
1907  */
1908 static inline void mmc_bus_get(struct mmc_host *host)
1909 {
1910         unsigned long flags;
1911
1912         spin_lock_irqsave(&host->lock, flags);
1913         host->bus_refs++;
1914         spin_unlock_irqrestore(&host->lock, flags);
1915 }
1916
1917 /*
1918  * Decrease reference count of bus operator and free it if
1919  * it is the last reference.
1920  */
1921 static inline void mmc_bus_put(struct mmc_host *host)
1922 {
1923         unsigned long flags;
1924
1925         spin_lock_irqsave(&host->lock, flags);
1926         host->bus_refs--;
1927         if ((host->bus_refs == 0) && host->bus_ops)
1928                 __mmc_release_bus(host);
1929         spin_unlock_irqrestore(&host->lock, flags);
1930 }
1931
1932 /*
1933  * Assign a mmc bus handler to a host. Only one bus handler may control a
1934  * host at any given time.
1935  */
1936 void mmc_attach_bus(struct mmc_host *host, const struct mmc_bus_ops *ops)
1937 {
1938         unsigned long flags;
1939
1940         WARN_ON(!host->claimed);
1941
1942         spin_lock_irqsave(&host->lock, flags);
1943
1944         WARN_ON(host->bus_ops);
1945         WARN_ON(host->bus_refs);
1946
1947         host->bus_ops = ops;
1948         host->bus_refs = 1;
1949         host->bus_dead = 0;
1950
1951         spin_unlock_irqrestore(&host->lock, flags);
1952 }
1953
1954 /*
1955  * Remove the current bus handler from a host.
1956  */
1957 void mmc_detach_bus(struct mmc_host *host)
1958 {
1959         unsigned long flags;
1960
1961         WARN_ON(!host->claimed);
1962         WARN_ON(!host->bus_ops);
1963
1964         spin_lock_irqsave(&host->lock, flags);
1965
1966         host->bus_dead = 1;
1967
1968         spin_unlock_irqrestore(&host->lock, flags);
1969
1970         mmc_bus_put(host);
1971 }
1972
1973 static void _mmc_detect_change(struct mmc_host *host, unsigned long delay,
1974                                 bool cd_irq)
1975 {
1976         /*
1977          * If the device is configured as wakeup, we prevent a new sleep for
1978          * 5 s to give provision for user space to consume the event.
1979          */
1980         if (cd_irq && !(host->caps & MMC_CAP_NEEDS_POLL) &&
1981                 device_can_wakeup(mmc_dev(host)))
1982                 pm_wakeup_event(mmc_dev(host), 5000);
1983
1984         host->detect_change = 1;
1985         mmc_schedule_delayed_work(&host->detect, delay);
1986 }
1987
1988 /**
1989  *      mmc_detect_change - process change of state on a MMC socket
1990  *      @host: host which changed state.
1991  *      @delay: optional delay to wait before detection (jiffies)
1992  *
1993  *      MMC drivers should call this when they detect a card has been
1994  *      inserted or removed. The MMC layer will confirm that any
1995  *      present card is still functional, and initialize any newly
1996  *      inserted.
1997  */
1998 void mmc_detect_change(struct mmc_host *host, unsigned long delay)
1999 {
2000         _mmc_detect_change(host, delay, true);
2001 }
2002 EXPORT_SYMBOL(mmc_detect_change);
2003
2004 void mmc_init_erase(struct mmc_card *card)
2005 {
2006         unsigned int sz;
2007
2008         if (is_power_of_2(card->erase_size))
2009                 card->erase_shift = ffs(card->erase_size) - 1;
2010         else
2011                 card->erase_shift = 0;
2012
2013         /*
2014          * It is possible to erase an arbitrarily large area of an SD or MMC
2015          * card.  That is not desirable because it can take a long time
2016          * (minutes) potentially delaying more important I/O, and also the
2017          * timeout calculations become increasingly hugely over-estimated.
2018          * Consequently, 'pref_erase' is defined as a guide to limit erases
2019          * to that size and alignment.
2020          *
2021          * For SD cards that define Allocation Unit size, limit erases to one
2022          * Allocation Unit at a time.
2023          * For MMC, have a stab at ai good value and for modern cards it will
2024          * end up being 4MiB. Note that if the value is too small, it can end
2025          * up taking longer to erase. Also note, erase_size is already set to
2026          * High Capacity Erase Size if available when this function is called.
2027          */
2028         if (mmc_card_sd(card) && card->ssr.au) {
2029                 card->pref_erase = card->ssr.au;
2030                 card->erase_shift = ffs(card->ssr.au) - 1;
2031         } else if (card->erase_size) {
2032                 sz = (card->csd.capacity << (card->csd.read_blkbits - 9)) >> 11;
2033                 if (sz < 128)
2034                         card->pref_erase = 512 * 1024 / 512;
2035                 else if (sz < 512)
2036                         card->pref_erase = 1024 * 1024 / 512;
2037                 else if (sz < 1024)
2038                         card->pref_erase = 2 * 1024 * 1024 / 512;
2039                 else
2040                         card->pref_erase = 4 * 1024 * 1024 / 512;
2041                 if (card->pref_erase < card->erase_size)
2042                         card->pref_erase = card->erase_size;
2043                 else {
2044                         sz = card->pref_erase % card->erase_size;
2045                         if (sz)
2046                                 card->pref_erase += card->erase_size - sz;
2047                 }
2048         } else
2049                 card->pref_erase = 0;
2050 }
2051
2052 static unsigned int mmc_mmc_erase_timeout(struct mmc_card *card,
2053                                           unsigned int arg, unsigned int qty)
2054 {
2055         unsigned int erase_timeout;
2056
2057         if (arg == MMC_DISCARD_ARG ||
2058             (arg == MMC_TRIM_ARG && card->ext_csd.rev >= 6)) {
2059                 erase_timeout = card->ext_csd.trim_timeout;
2060         } else if (card->ext_csd.erase_group_def & 1) {
2061                 /* High Capacity Erase Group Size uses HC timeouts */
2062                 if (arg == MMC_TRIM_ARG)
2063                         erase_timeout = card->ext_csd.trim_timeout;
2064                 else
2065                         erase_timeout = card->ext_csd.hc_erase_timeout;
2066         } else {
2067                 /* CSD Erase Group Size uses write timeout */
2068                 unsigned int mult = (10 << card->csd.r2w_factor);
2069                 unsigned int timeout_clks = card->csd.taac_clks * mult;
2070                 unsigned int timeout_us;
2071
2072                 /* Avoid overflow: e.g. taac_ns=80000000 mult=1280 */
2073                 if (card->csd.taac_ns < 1000000)
2074                         timeout_us = (card->csd.taac_ns * mult) / 1000;
2075                 else
2076                         timeout_us = (card->csd.taac_ns / 1000) * mult;
2077
2078                 /*
2079                  * ios.clock is only a target.  The real clock rate might be
2080                  * less but not that much less, so fudge it by multiplying by 2.
2081                  */
2082                 timeout_clks <<= 1;
2083                 timeout_us += (timeout_clks * 1000) /
2084                               (card->host->ios.clock / 1000);
2085
2086                 erase_timeout = timeout_us / 1000;
2087
2088                 /*
2089                  * Theoretically, the calculation could underflow so round up
2090                  * to 1ms in that case.
2091                  */
2092                 if (!erase_timeout)
2093                         erase_timeout = 1;
2094         }
2095
2096         /* Multiplier for secure operations */
2097         if (arg & MMC_SECURE_ARGS) {
2098                 if (arg == MMC_SECURE_ERASE_ARG)
2099                         erase_timeout *= card->ext_csd.sec_erase_mult;
2100                 else
2101                         erase_timeout *= card->ext_csd.sec_trim_mult;
2102         }
2103
2104         erase_timeout *= qty;
2105
2106         /*
2107          * Ensure at least a 1 second timeout for SPI as per
2108          * 'mmc_set_data_timeout()'
2109          */
2110         if (mmc_host_is_spi(card->host) && erase_timeout < 1000)
2111                 erase_timeout = 1000;
2112
2113         return erase_timeout;
2114 }
2115
2116 static unsigned int mmc_sd_erase_timeout(struct mmc_card *card,
2117                                          unsigned int arg,
2118                                          unsigned int qty)
2119 {
2120         unsigned int erase_timeout;
2121
2122         if (card->ssr.erase_timeout) {
2123                 /* Erase timeout specified in SD Status Register (SSR) */
2124                 erase_timeout = card->ssr.erase_timeout * qty +
2125                                 card->ssr.erase_offset;
2126         } else {
2127                 /*
2128                  * Erase timeout not specified in SD Status Register (SSR) so
2129                  * use 250ms per write block.
2130                  */
2131                 erase_timeout = 250 * qty;
2132         }
2133
2134         /* Must not be less than 1 second */
2135         if (erase_timeout < 1000)
2136                 erase_timeout = 1000;
2137
2138         return erase_timeout;
2139 }
2140
2141 static unsigned int mmc_erase_timeout(struct mmc_card *card,
2142                                       unsigned int arg,
2143                                       unsigned int qty)
2144 {
2145         if (mmc_card_sd(card))
2146                 return mmc_sd_erase_timeout(card, arg, qty);
2147         else
2148                 return mmc_mmc_erase_timeout(card, arg, qty);
2149 }
2150
2151 static int mmc_do_erase(struct mmc_card *card, unsigned int from,
2152                         unsigned int to, unsigned int arg)
2153 {
2154         struct mmc_command cmd = {};
2155         unsigned int qty = 0, busy_timeout = 0;
2156         bool use_r1b_resp = false;
2157         unsigned long timeout;
2158         int err;
2159
2160         mmc_retune_hold(card->host);
2161
2162         /*
2163          * qty is used to calculate the erase timeout which depends on how many
2164          * erase groups (or allocation units in SD terminology) are affected.
2165          * We count erasing part of an erase group as one erase group.
2166          * For SD, the allocation units are always a power of 2.  For MMC, the
2167          * erase group size is almost certainly also power of 2, but it does not
2168          * seem to insist on that in the JEDEC standard, so we fall back to
2169          * division in that case.  SD may not specify an allocation unit size,
2170          * in which case the timeout is based on the number of write blocks.
2171          *
2172          * Note that the timeout for secure trim 2 will only be correct if the
2173          * number of erase groups specified is the same as the total of all
2174          * preceding secure trim 1 commands.  Since the power may have been
2175          * lost since the secure trim 1 commands occurred, it is generally
2176          * impossible to calculate the secure trim 2 timeout correctly.
2177          */
2178         if (card->erase_shift)
2179                 qty += ((to >> card->erase_shift) -
2180                         (from >> card->erase_shift)) + 1;
2181         else if (mmc_card_sd(card))
2182                 qty += to - from + 1;
2183         else
2184                 qty += ((to / card->erase_size) -
2185                         (from / card->erase_size)) + 1;
2186
2187         if (!mmc_card_blockaddr(card)) {
2188                 from <<= 9;
2189                 to <<= 9;
2190         }
2191
2192         if (mmc_card_sd(card))
2193                 cmd.opcode = SD_ERASE_WR_BLK_START;
2194         else
2195                 cmd.opcode = MMC_ERASE_GROUP_START;
2196         cmd.arg = from;
2197         cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
2198         err = mmc_wait_for_cmd(card->host, &cmd, 0);
2199         if (err) {
2200                 pr_err("mmc_erase: group start error %d, "
2201                        "status %#x\n", err, cmd.resp[0]);
2202                 err = -EIO;
2203                 goto out;
2204         }
2205
2206         memset(&cmd, 0, sizeof(struct mmc_command));
2207         if (mmc_card_sd(card))
2208                 cmd.opcode = SD_ERASE_WR_BLK_END;
2209         else
2210                 cmd.opcode = MMC_ERASE_GROUP_END;
2211         cmd.arg = to;
2212         cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
2213         err = mmc_wait_for_cmd(card->host, &cmd, 0);
2214         if (err) {
2215                 pr_err("mmc_erase: group end error %d, status %#x\n",
2216                        err, cmd.resp[0]);
2217                 err = -EIO;
2218                 goto out;
2219         }
2220
2221         memset(&cmd, 0, sizeof(struct mmc_command));
2222         cmd.opcode = MMC_ERASE;
2223         cmd.arg = arg;
2224         busy_timeout = mmc_erase_timeout(card, arg, qty);
2225         /*
2226          * If the host controller supports busy signalling and the timeout for
2227          * the erase operation does not exceed the max_busy_timeout, we should
2228          * use R1B response. Or we need to prevent the host from doing hw busy
2229          * detection, which is done by converting to a R1 response instead.
2230          */
2231         if (card->host->max_busy_timeout &&
2232             busy_timeout > card->host->max_busy_timeout) {
2233                 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
2234         } else {
2235                 cmd.flags = MMC_RSP_SPI_R1B | MMC_RSP_R1B | MMC_CMD_AC;
2236                 cmd.busy_timeout = busy_timeout;
2237                 use_r1b_resp = true;
2238         }
2239
2240         err = mmc_wait_for_cmd(card->host, &cmd, 0);
2241         if (err) {
2242                 pr_err("mmc_erase: erase error %d, status %#x\n",
2243                        err, cmd.resp[0]);
2244                 err = -EIO;
2245                 goto out;
2246         }
2247
2248         if (mmc_host_is_spi(card->host))
2249                 goto out;
2250
2251         /*
2252          * In case of when R1B + MMC_CAP_WAIT_WHILE_BUSY is used, the polling
2253          * shall be avoided.
2254          */
2255         if ((card->host->caps & MMC_CAP_WAIT_WHILE_BUSY) && use_r1b_resp)
2256                 goto out;
2257
2258         timeout = jiffies + msecs_to_jiffies(busy_timeout);
2259         do {
2260                 memset(&cmd, 0, sizeof(struct mmc_command));
2261                 cmd.opcode = MMC_SEND_STATUS;
2262                 cmd.arg = card->rca << 16;
2263                 cmd.flags = MMC_RSP_R1 | MMC_CMD_AC;
2264                 /* Do not retry else we can't see errors */
2265                 err = mmc_wait_for_cmd(card->host, &cmd, 0);
2266                 if (err || (cmd.resp[0] & 0xFDF92000)) {
2267                         pr_err("error %d requesting status %#x\n",
2268                                 err, cmd.resp[0]);
2269                         err = -EIO;
2270                         goto out;
2271                 }
2272
2273                 /* Timeout if the device never becomes ready for data and
2274                  * never leaves the program state.
2275                  */
2276                 if (time_after(jiffies, timeout)) {
2277                         pr_err("%s: Card stuck in programming state! %s\n",
2278                                 mmc_hostname(card->host), __func__);
2279                         err =  -EIO;
2280                         goto out;
2281                 }
2282
2283         } while (!(cmd.resp[0] & R1_READY_FOR_DATA) ||
2284                  (R1_CURRENT_STATE(cmd.resp[0]) == R1_STATE_PRG));
2285 out:
2286         mmc_retune_release(card->host);
2287         return err;
2288 }
2289
2290 static unsigned int mmc_align_erase_size(struct mmc_card *card,
2291                                          unsigned int *from,
2292                                          unsigned int *to,
2293                                          unsigned int nr)
2294 {
2295         unsigned int from_new = *from, nr_new = nr, rem;
2296
2297         /*
2298          * When the 'card->erase_size' is power of 2, we can use round_up/down()
2299          * to align the erase size efficiently.
2300          */
2301         if (is_power_of_2(card->erase_size)) {
2302                 unsigned int temp = from_new;
2303
2304                 from_new = round_up(temp, card->erase_size);
2305                 rem = from_new - temp;
2306
2307                 if (nr_new > rem)
2308                         nr_new -= rem;
2309                 else
2310                         return 0;
2311
2312                 nr_new = round_down(nr_new, card->erase_size);
2313         } else {
2314                 rem = from_new % card->erase_size;
2315                 if (rem) {
2316                         rem = card->erase_size - rem;
2317                         from_new += rem;
2318                         if (nr_new > rem)
2319                                 nr_new -= rem;
2320                         else
2321                                 return 0;
2322                 }
2323
2324                 rem = nr_new % card->erase_size;
2325                 if (rem)
2326                         nr_new -= rem;
2327         }
2328
2329         if (nr_new == 0)
2330                 return 0;
2331
2332         *to = from_new + nr_new;
2333         *from = from_new;
2334
2335         return nr_new;
2336 }
2337
2338 /**
2339  * mmc_erase - erase sectors.
2340  * @card: card to erase
2341  * @from: first sector to erase
2342  * @nr: number of sectors to erase
2343  * @arg: erase command argument (SD supports only %MMC_ERASE_ARG)
2344  *
2345  * Caller must claim host before calling this function.
2346  */
2347 int mmc_erase(struct mmc_card *card, unsigned int from, unsigned int nr,
2348               unsigned int arg)
2349 {
2350         unsigned int rem, to = from + nr;
2351         int err;
2352
2353         if (!(card->host->caps & MMC_CAP_ERASE) ||
2354             !(card->csd.cmdclass & CCC_ERASE))
2355                 return -EOPNOTSUPP;
2356
2357         if (!card->erase_size)
2358                 return -EOPNOTSUPP;
2359
2360         if (mmc_card_sd(card) && arg != MMC_ERASE_ARG)
2361                 return -EOPNOTSUPP;
2362
2363         if ((arg & MMC_SECURE_ARGS) &&
2364             !(card->ext_csd.sec_feature_support & EXT_CSD_SEC_ER_EN))
2365                 return -EOPNOTSUPP;
2366
2367         if ((arg & MMC_TRIM_ARGS) &&
2368             !(card->ext_csd.sec_feature_support & EXT_CSD_SEC_GB_CL_EN))
2369                 return -EOPNOTSUPP;
2370
2371         if (arg == MMC_SECURE_ERASE_ARG) {
2372                 if (from % card->erase_size || nr % card->erase_size)
2373                         return -EINVAL;
2374         }
2375
2376         if (arg == MMC_ERASE_ARG)
2377                 nr = mmc_align_erase_size(card, &from, &to, nr);
2378
2379         if (nr == 0)
2380                 return 0;
2381
2382         if (to <= from)
2383                 return -EINVAL;
2384
2385         /* 'from' and 'to' are inclusive */
2386         to -= 1;
2387
2388         /*
2389          * Special case where only one erase-group fits in the timeout budget:
2390          * If the region crosses an erase-group boundary on this particular
2391          * case, we will be trimming more than one erase-group which, does not
2392          * fit in the timeout budget of the controller, so we need to split it
2393          * and call mmc_do_erase() twice if necessary. This special case is
2394          * identified by the card->eg_boundary flag.
2395          */
2396         rem = card->erase_size - (from % card->erase_size);
2397         if ((arg & MMC_TRIM_ARGS) && (card->eg_boundary) && (nr > rem)) {
2398                 err = mmc_do_erase(card, from, from + rem - 1, arg);
2399                 from += rem;
2400                 if ((err) || (to <= from))
2401                         return err;
2402         }
2403
2404         return mmc_do_erase(card, from, to, arg);
2405 }
2406 EXPORT_SYMBOL(mmc_erase);
2407
2408 int mmc_can_erase(struct mmc_card *card)
2409 {
2410         if ((card->host->caps & MMC_CAP_ERASE) &&
2411             (card->csd.cmdclass & CCC_ERASE) && card->erase_size)
2412                 return 1;
2413         return 0;
2414 }
2415 EXPORT_SYMBOL(mmc_can_erase);
2416
2417 int mmc_can_trim(struct mmc_card *card)
2418 {
2419         if ((card->ext_csd.sec_feature_support & EXT_CSD_SEC_GB_CL_EN) &&
2420             (!(card->quirks & MMC_QUIRK_TRIM_BROKEN)))
2421                 return 1;
2422         return 0;
2423 }
2424 EXPORT_SYMBOL(mmc_can_trim);
2425
2426 int mmc_can_discard(struct mmc_card *card)
2427 {
2428         /*
2429          * As there's no way to detect the discard support bit at v4.5
2430          * use the s/w feature support filed.
2431          */
2432         if (card->ext_csd.feature_support & MMC_DISCARD_FEATURE)
2433                 return 1;
2434         return 0;
2435 }
2436 EXPORT_SYMBOL(mmc_can_discard);
2437
2438 int mmc_can_sanitize(struct mmc_card *card)
2439 {
2440         if (!mmc_can_trim(card) && !mmc_can_erase(card))
2441                 return 0;
2442         if (card->ext_csd.sec_feature_support & EXT_CSD_SEC_SANITIZE)
2443                 return 1;
2444         return 0;
2445 }
2446 EXPORT_SYMBOL(mmc_can_sanitize);
2447
2448 int mmc_can_secure_erase_trim(struct mmc_card *card)
2449 {
2450         if ((card->ext_csd.sec_feature_support & EXT_CSD_SEC_ER_EN) &&
2451             !(card->quirks & MMC_QUIRK_SEC_ERASE_TRIM_BROKEN))
2452                 return 1;
2453         return 0;
2454 }
2455 EXPORT_SYMBOL(mmc_can_secure_erase_trim);
2456
2457 int mmc_erase_group_aligned(struct mmc_card *card, unsigned int from,
2458                             unsigned int nr)
2459 {
2460         if (!card->erase_size)
2461                 return 0;
2462         if (from % card->erase_size || nr % card->erase_size)
2463                 return 0;
2464         return 1;
2465 }
2466 EXPORT_SYMBOL(mmc_erase_group_aligned);
2467
2468 static unsigned int mmc_do_calc_max_discard(struct mmc_card *card,
2469                                             unsigned int arg)
2470 {
2471         struct mmc_host *host = card->host;
2472         unsigned int max_discard, x, y, qty = 0, max_qty, min_qty, timeout;
2473         unsigned int last_timeout = 0;
2474         unsigned int max_busy_timeout = host->max_busy_timeout ?
2475                         host->max_busy_timeout : MMC_ERASE_TIMEOUT_MS;
2476
2477         if (card->erase_shift) {
2478                 max_qty = UINT_MAX >> card->erase_shift;
2479                 min_qty = card->pref_erase >> card->erase_shift;
2480         } else if (mmc_card_sd(card)) {
2481                 max_qty = UINT_MAX;
2482                 min_qty = card->pref_erase;
2483         } else {
2484                 max_qty = UINT_MAX / card->erase_size;
2485                 min_qty = card->pref_erase / card->erase_size;
2486         }
2487
2488         /*
2489          * We should not only use 'host->max_busy_timeout' as the limitation
2490          * when deciding the max discard sectors. We should set a balance value
2491          * to improve the erase speed, and it can not get too long timeout at
2492          * the same time.
2493          *
2494          * Here we set 'card->pref_erase' as the minimal discard sectors no
2495          * matter what size of 'host->max_busy_timeout', but if the
2496          * 'host->max_busy_timeout' is large enough for more discard sectors,
2497          * then we can continue to increase the max discard sectors until we
2498          * get a balance value. In cases when the 'host->max_busy_timeout'
2499          * isn't specified, use the default max erase timeout.
2500          */
2501         do {
2502                 y = 0;
2503                 for (x = 1; x && x <= max_qty && max_qty - x >= qty; x <<= 1) {
2504                         timeout = mmc_erase_timeout(card, arg, qty + x);
2505
2506                         if (qty + x > min_qty && timeout > max_busy_timeout)
2507                                 break;
2508
2509                         if (timeout < last_timeout)
2510                                 break;
2511                         last_timeout = timeout;
2512                         y = x;
2513                 }
2514                 qty += y;
2515         } while (y);
2516
2517         if (!qty)
2518                 return 0;
2519
2520         /*
2521          * When specifying a sector range to trim, chances are we might cross
2522          * an erase-group boundary even if the amount of sectors is less than
2523          * one erase-group.
2524          * If we can only fit one erase-group in the controller timeout budget,
2525          * we have to care that erase-group boundaries are not crossed by a
2526          * single trim operation. We flag that special case with "eg_boundary".
2527          * In all other cases we can just decrement qty and pretend that we
2528          * always touch (qty + 1) erase-groups as a simple optimization.
2529          */
2530         if (qty == 1)
2531                 card->eg_boundary = 1;
2532         else
2533                 qty--;
2534
2535         /* Convert qty to sectors */
2536         if (card->erase_shift)
2537                 max_discard = qty << card->erase_shift;
2538         else if (mmc_card_sd(card))
2539                 max_discard = qty + 1;
2540         else
2541                 max_discard = qty * card->erase_size;
2542
2543         return max_discard;
2544 }
2545
2546 unsigned int mmc_calc_max_discard(struct mmc_card *card)
2547 {
2548         struct mmc_host *host = card->host;
2549         unsigned int max_discard, max_trim;
2550
2551         /*
2552          * Without erase_group_def set, MMC erase timeout depends on clock
2553          * frequence which can change.  In that case, the best choice is
2554          * just the preferred erase size.
2555          */
2556         if (mmc_card_mmc(card) && !(card->ext_csd.erase_group_def & 1))
2557                 return card->pref_erase;
2558
2559         max_discard = mmc_do_calc_max_discard(card, MMC_ERASE_ARG);
2560         if (mmc_can_trim(card)) {
2561                 max_trim = mmc_do_calc_max_discard(card, MMC_TRIM_ARG);
2562                 if (max_trim < max_discard)
2563                         max_discard = max_trim;
2564         } else if (max_discard < card->erase_size) {
2565                 max_discard = 0;
2566         }
2567         pr_debug("%s: calculated max. discard sectors %u for timeout %u ms\n",
2568                 mmc_hostname(host), max_discard, host->max_busy_timeout ?
2569                 host->max_busy_timeout : MMC_ERASE_TIMEOUT_MS);
2570         return max_discard;
2571 }
2572 EXPORT_SYMBOL(mmc_calc_max_discard);
2573
2574 bool mmc_card_is_blockaddr(struct mmc_card *card)
2575 {
2576         return card ? mmc_card_blockaddr(card) : false;
2577 }
2578 EXPORT_SYMBOL(mmc_card_is_blockaddr);
2579
2580 int mmc_set_blocklen(struct mmc_card *card, unsigned int blocklen)
2581 {
2582         struct mmc_command cmd = {};
2583
2584         if (mmc_card_blockaddr(card) || mmc_card_ddr52(card) ||
2585             mmc_card_hs400(card) || mmc_card_hs400es(card))
2586                 return 0;
2587
2588         cmd.opcode = MMC_SET_BLOCKLEN;
2589         cmd.arg = blocklen;
2590         cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
2591         return mmc_wait_for_cmd(card->host, &cmd, 5);
2592 }
2593 EXPORT_SYMBOL(mmc_set_blocklen);
2594
2595 int mmc_set_blockcount(struct mmc_card *card, unsigned int blockcount,
2596                         bool is_rel_write)
2597 {
2598         struct mmc_command cmd = {};
2599
2600         cmd.opcode = MMC_SET_BLOCK_COUNT;
2601         cmd.arg = blockcount & 0x0000FFFF;
2602         if (is_rel_write)
2603                 cmd.arg |= 1 << 31;
2604         cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
2605         return mmc_wait_for_cmd(card->host, &cmd, 5);
2606 }
2607 EXPORT_SYMBOL(mmc_set_blockcount);
2608
2609 static void mmc_hw_reset_for_init(struct mmc_host *host)
2610 {
2611         mmc_pwrseq_reset(host);
2612
2613         if (!(host->caps & MMC_CAP_HW_RESET) || !host->ops->hw_reset)
2614                 return;
2615         host->ops->hw_reset(host);
2616 }
2617
2618 int mmc_hw_reset(struct mmc_host *host)
2619 {
2620         int ret;
2621
2622         if (!host->card)
2623                 return -EINVAL;
2624
2625         mmc_bus_get(host);
2626         if (!host->bus_ops || host->bus_dead || !host->bus_ops->reset) {
2627                 mmc_bus_put(host);
2628                 return -EOPNOTSUPP;
2629         }
2630
2631         ret = host->bus_ops->reset(host);
2632         mmc_bus_put(host);
2633
2634         if (ret)
2635                 pr_warn("%s: tried to reset card, got error %d\n",
2636                         mmc_hostname(host), ret);
2637
2638         return ret;
2639 }
2640 EXPORT_SYMBOL(mmc_hw_reset);
2641
2642 static int mmc_rescan_try_freq(struct mmc_host *host, unsigned freq)
2643 {
2644         host->f_init = freq;
2645
2646         pr_debug("%s: %s: trying to init card at %u Hz\n",
2647                 mmc_hostname(host), __func__, host->f_init);
2648
2649         mmc_power_up(host, host->ocr_avail);
2650
2651         /*
2652          * Some eMMCs (with VCCQ always on) may not be reset after power up, so
2653          * do a hardware reset if possible.
2654          */
2655         mmc_hw_reset_for_init(host);
2656
2657         /*
2658          * sdio_reset sends CMD52 to reset card.  Since we do not know
2659          * if the card is being re-initialized, just send it.  CMD52
2660          * should be ignored by SD/eMMC cards.
2661          * Skip it if we already know that we do not support SDIO commands
2662          */
2663         if (!(host->caps2 & MMC_CAP2_NO_SDIO))
2664                 sdio_reset(host);
2665
2666         mmc_go_idle(host);
2667
2668         if (!(host->caps2 & MMC_CAP2_NO_SD))
2669                 mmc_send_if_cond(host, host->ocr_avail);
2670
2671         /* Order's important: probe SDIO, then SD, then MMC */
2672         if (!(host->caps2 & MMC_CAP2_NO_SDIO))
2673                 if (!mmc_attach_sdio(host))
2674                         return 0;
2675
2676         if (!(host->caps2 & MMC_CAP2_NO_SD))
2677                 if (!mmc_attach_sd(host))
2678                         return 0;
2679
2680         if (!(host->caps2 & MMC_CAP2_NO_MMC))
2681                 if (!mmc_attach_mmc(host))
2682                         return 0;
2683
2684         mmc_power_off(host);
2685         return -EIO;
2686 }
2687
2688 int _mmc_detect_card_removed(struct mmc_host *host)
2689 {
2690         int ret;
2691
2692         if (!host->card || mmc_card_removed(host->card))
2693                 return 1;
2694
2695         ret = host->bus_ops->alive(host);
2696
2697         /*
2698          * Card detect status and alive check may be out of sync if card is
2699          * removed slowly, when card detect switch changes while card/slot
2700          * pads are still contacted in hardware (refer to "SD Card Mechanical
2701          * Addendum, Appendix C: Card Detection Switch"). So reschedule a
2702          * detect work 200ms later for this case.
2703          */
2704         if (!ret && host->ops->get_cd && !host->ops->get_cd(host)) {
2705                 mmc_detect_change(host, msecs_to_jiffies(200));
2706                 pr_debug("%s: card removed too slowly\n", mmc_hostname(host));
2707         }
2708
2709         if (ret) {
2710                 mmc_card_set_removed(host->card);
2711                 pr_debug("%s: card remove detected\n", mmc_hostname(host));
2712         }
2713
2714         return ret;
2715 }
2716
2717 int mmc_detect_card_removed(struct mmc_host *host)
2718 {
2719         struct mmc_card *card = host->card;
2720         int ret;
2721
2722         WARN_ON(!host->claimed);
2723
2724         if (!card)
2725                 return 1;
2726
2727         if (!mmc_card_is_removable(host))
2728                 return 0;
2729
2730         ret = mmc_card_removed(card);
2731         /*
2732          * The card will be considered unchanged unless we have been asked to
2733          * detect a change or host requires polling to provide card detection.
2734          */
2735         if (!host->detect_change && !(host->caps & MMC_CAP_NEEDS_POLL))
2736                 return ret;
2737
2738         host->detect_change = 0;
2739         if (!ret) {
2740                 ret = _mmc_detect_card_removed(host);
2741                 if (ret && (host->caps & MMC_CAP_NEEDS_POLL)) {
2742                         /*
2743                          * Schedule a detect work as soon as possible to let a
2744                          * rescan handle the card removal.
2745                          */
2746                         cancel_delayed_work(&host->detect);
2747                         _mmc_detect_change(host, 0, false);
2748                 }
2749         }
2750
2751         return ret;
2752 }
2753 EXPORT_SYMBOL(mmc_detect_card_removed);
2754
2755 void mmc_rescan(struct work_struct *work)
2756 {
2757         struct mmc_host *host =
2758                 container_of(work, struct mmc_host, detect.work);
2759         int i;
2760
2761         if (host->rescan_disable)
2762                 return;
2763
2764         /* If there is a non-removable card registered, only scan once */
2765         if (!mmc_card_is_removable(host) && host->rescan_entered)
2766                 return;
2767         host->rescan_entered = 1;
2768
2769         if (host->trigger_card_event && host->ops->card_event) {
2770                 mmc_claim_host(host);
2771                 host->ops->card_event(host);
2772                 mmc_release_host(host);
2773                 host->trigger_card_event = false;
2774         }
2775
2776         mmc_bus_get(host);
2777
2778         /*
2779          * if there is a _removable_ card registered, check whether it is
2780          * still present
2781          */
2782         if (host->bus_ops && !host->bus_dead && mmc_card_is_removable(host))
2783                 host->bus_ops->detect(host);
2784
2785         host->detect_change = 0;
2786
2787         /*
2788          * Let mmc_bus_put() free the bus/bus_ops if we've found that
2789          * the card is no longer present.
2790          */
2791         mmc_bus_put(host);
2792         mmc_bus_get(host);
2793
2794         /* if there still is a card present, stop here */
2795         if (host->bus_ops != NULL) {
2796                 mmc_bus_put(host);
2797                 goto out;
2798         }
2799
2800         /*
2801          * Only we can add a new handler, so it's safe to
2802          * release the lock here.
2803          */
2804         mmc_bus_put(host);
2805
2806         mmc_claim_host(host);
2807         if (mmc_card_is_removable(host) && host->ops->get_cd &&
2808                         host->ops->get_cd(host) == 0) {
2809                 mmc_power_off(host);
2810                 mmc_release_host(host);
2811                 goto out;
2812         }
2813
2814         for (i = 0; i < ARRAY_SIZE(freqs); i++) {
2815                 if (!mmc_rescan_try_freq(host, max(freqs[i], host->f_min)))
2816                         break;
2817                 if (freqs[i] <= host->f_min)
2818                         break;
2819         }
2820         mmc_release_host(host);
2821
2822  out:
2823         if (host->caps & MMC_CAP_NEEDS_POLL)
2824                 mmc_schedule_delayed_work(&host->detect, HZ);
2825 }
2826
2827 void mmc_start_host(struct mmc_host *host)
2828 {
2829         host->f_init = max(freqs[0], host->f_min);
2830         host->rescan_disable = 0;
2831         host->ios.power_mode = MMC_POWER_UNDEFINED;
2832
2833         if (!(host->caps2 & MMC_CAP2_NO_PRESCAN_POWERUP)) {
2834                 mmc_claim_host(host);
2835                 mmc_power_up(host, host->ocr_avail);
2836                 mmc_release_host(host);
2837         }
2838
2839         mmc_gpiod_request_cd_irq(host);
2840         _mmc_detect_change(host, 0, false);
2841 }
2842
2843 void mmc_stop_host(struct mmc_host *host)
2844 {
2845         if (host->slot.cd_irq >= 0) {
2846                 if (host->slot.cd_wake_enabled)
2847                         disable_irq_wake(host->slot.cd_irq);
2848                 disable_irq(host->slot.cd_irq);
2849         }
2850
2851         host->rescan_disable = 1;
2852         cancel_delayed_work_sync(&host->detect);
2853
2854         /* clear pm flags now and let card drivers set them as needed */
2855         host->pm_flags = 0;
2856
2857         mmc_bus_get(host);
2858         if (host->bus_ops && !host->bus_dead) {
2859                 /* Calling bus_ops->remove() with a claimed host can deadlock */
2860                 host->bus_ops->remove(host);
2861                 mmc_claim_host(host);
2862                 mmc_detach_bus(host);
2863                 mmc_power_off(host);
2864                 mmc_release_host(host);
2865                 mmc_bus_put(host);
2866                 return;
2867         }
2868         mmc_bus_put(host);
2869
2870         mmc_claim_host(host);
2871         mmc_power_off(host);
2872         mmc_release_host(host);
2873 }
2874
2875 int mmc_power_save_host(struct mmc_host *host)
2876 {
2877         int ret = 0;
2878
2879         pr_debug("%s: %s: powering down\n", mmc_hostname(host), __func__);
2880
2881         mmc_bus_get(host);
2882
2883         if (!host->bus_ops || host->bus_dead) {
2884                 mmc_bus_put(host);
2885                 return -EINVAL;
2886         }
2887
2888         if (host->bus_ops->power_save)
2889                 ret = host->bus_ops->power_save(host);
2890
2891         mmc_bus_put(host);
2892
2893         mmc_power_off(host);
2894
2895         return ret;
2896 }
2897 EXPORT_SYMBOL(mmc_power_save_host);
2898
2899 int mmc_power_restore_host(struct mmc_host *host)
2900 {
2901         int ret;
2902
2903         pr_debug("%s: %s: powering up\n", mmc_hostname(host), __func__);
2904
2905         mmc_bus_get(host);
2906
2907         if (!host->bus_ops || host->bus_dead) {
2908                 mmc_bus_put(host);
2909                 return -EINVAL;
2910         }
2911
2912         mmc_power_up(host, host->card->ocr);
2913         ret = host->bus_ops->power_restore(host);
2914
2915         mmc_bus_put(host);
2916
2917         return ret;
2918 }
2919 EXPORT_SYMBOL(mmc_power_restore_host);
2920
2921 #ifdef CONFIG_PM_SLEEP
2922 /* Do the card removal on suspend if card is assumed removeable
2923  * Do that in pm notifier while userspace isn't yet frozen, so we will be able
2924    to sync the card.
2925 */
2926 static int mmc_pm_notify(struct notifier_block *notify_block,
2927                         unsigned long mode, void *unused)
2928 {
2929         struct mmc_host *host = container_of(
2930                 notify_block, struct mmc_host, pm_notify);
2931         unsigned long flags;
2932         int err = 0;
2933
2934         switch (mode) {
2935         case PM_HIBERNATION_PREPARE:
2936         case PM_SUSPEND_PREPARE:
2937         case PM_RESTORE_PREPARE:
2938                 spin_lock_irqsave(&host->lock, flags);
2939                 host->rescan_disable = 1;
2940                 spin_unlock_irqrestore(&host->lock, flags);
2941                 cancel_delayed_work_sync(&host->detect);
2942
2943                 if (!host->bus_ops)
2944                         break;
2945
2946                 /* Validate prerequisites for suspend */
2947                 if (host->bus_ops->pre_suspend)
2948                         err = host->bus_ops->pre_suspend(host);
2949                 if (!err)
2950                         break;
2951
2952                 /* Calling bus_ops->remove() with a claimed host can deadlock */
2953                 host->bus_ops->remove(host);
2954                 mmc_claim_host(host);
2955                 mmc_detach_bus(host);
2956                 mmc_power_off(host);
2957                 mmc_release_host(host);
2958                 host->pm_flags = 0;
2959                 break;
2960
2961         case PM_POST_SUSPEND:
2962         case PM_POST_HIBERNATION:
2963         case PM_POST_RESTORE:
2964
2965                 spin_lock_irqsave(&host->lock, flags);
2966                 host->rescan_disable = 0;
2967                 spin_unlock_irqrestore(&host->lock, flags);
2968                 _mmc_detect_change(host, 0, false);
2969
2970         }
2971
2972         return 0;
2973 }
2974
2975 void mmc_register_pm_notifier(struct mmc_host *host)
2976 {
2977         host->pm_notify.notifier_call = mmc_pm_notify;
2978         register_pm_notifier(&host->pm_notify);
2979 }
2980
2981 void mmc_unregister_pm_notifier(struct mmc_host *host)
2982 {
2983         unregister_pm_notifier(&host->pm_notify);
2984 }
2985 #endif
2986
2987 /**
2988  * mmc_init_context_info() - init synchronization context
2989  * @host: mmc host
2990  *
2991  * Init struct context_info needed to implement asynchronous
2992  * request mechanism, used by mmc core, host driver and mmc requests
2993  * supplier.
2994  */
2995 void mmc_init_context_info(struct mmc_host *host)
2996 {
2997         host->context_info.is_new_req = false;
2998         host->context_info.is_done_rcv = false;
2999         host->context_info.is_waiting_last_req = false;
3000         init_waitqueue_head(&host->context_info.wait);
3001 }
3002
3003 static int __init mmc_init(void)
3004 {
3005         int ret;
3006
3007         ret = mmc_register_bus();
3008         if (ret)
3009                 return ret;
3010
3011         ret = mmc_register_host_class();
3012         if (ret)
3013                 goto unregister_bus;
3014
3015         ret = sdio_register_bus();
3016         if (ret)
3017                 goto unregister_host_class;
3018
3019         return 0;
3020
3021 unregister_host_class:
3022         mmc_unregister_host_class();
3023 unregister_bus:
3024         mmc_unregister_bus();
3025         return ret;
3026 }
3027
3028 static void __exit mmc_exit(void)
3029 {
3030         sdio_unregister_bus();
3031         mmc_unregister_host_class();
3032         mmc_unregister_bus();
3033 }
3034
3035 subsys_initcall(mmc_init);
3036 module_exit(mmc_exit);
3037
3038 MODULE_LICENSE("GPL");