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