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