Merge tag 'lsk-v4.4-16.06-android'
[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 #define CREATE_TRACE_POINTS
34 #include <trace/events/mmc.h>
35
36 #include <linux/mmc/card.h>
37 #include <linux/mmc/host.h>
38 #include <linux/mmc/mmc.h>
39 #include <linux/mmc/sd.h>
40 #include <linux/mmc/slot-gpio.h>
41
42 #include "core.h"
43 #include "bus.h"
44 #include "host.h"
45 #include "sdio_bus.h"
46 #include "pwrseq.h"
47
48 #include "mmc_ops.h"
49 #include "sd_ops.h"
50 #include "sdio_ops.h"
51
52 EXPORT_TRACEPOINT_SYMBOL_GPL(mmc_blk_erase_start);
53 EXPORT_TRACEPOINT_SYMBOL_GPL(mmc_blk_erase_end);
54 EXPORT_TRACEPOINT_SYMBOL_GPL(mmc_blk_rw_start);
55 EXPORT_TRACEPOINT_SYMBOL_GPL(mmc_blk_rw_end);
56
57 /* If the device is not responding */
58 #define MMC_CORE_TIMEOUT_MS     (10 * 60 * 1000) /* 10 minute timeout */
59
60 /*
61  * Background operations can take a long time, depending on the housekeeping
62  * operations the card has to perform.
63  */
64 #define MMC_BKOPS_MAX_TIMEOUT   (4 * 60 * 1000) /* max time to wait in ms */
65
66 static const unsigned freqs[] = { 400000, 300000, 200000, 100000 };
67
68 /*
69  * Enabling software CRCs on the data blocks can be a significant (30%)
70  * performance cost, and for other reasons may not always be desired.
71  * So we allow it it to be disabled.
72  */
73 bool use_spi_crc = 1;
74 module_param(use_spi_crc, bool, 0);
75
76 static int mmc_schedule_delayed_work(struct delayed_work *work,
77                                      unsigned long delay)
78 {
79         /*
80          * We use the system_freezable_wq, because of two reasons.
81          * First, it allows several works (not the same work item) to be
82          * executed simultaneously. Second, the queue becomes frozen when
83          * userspace becomes frozen during system PM.
84          */
85         return queue_delayed_work(system_freezable_wq, work, delay);
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, 600ms 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 = 600000000;
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         host->ios.enhanced_strobe = false;
1136
1137         if ((host->caps2 & MMC_CAP2_HS400_ES) &&
1138                 host->ops->hs400_enhanced_strobe)
1139                 host->ops->hs400_enhanced_strobe(host, &host->ios);
1140
1141         mmc_set_ios(host);
1142 }
1143
1144 /**
1145  * mmc_vdd_to_ocrbitnum - Convert a voltage to the OCR bit number
1146  * @vdd:        voltage (mV)
1147  * @low_bits:   prefer low bits in boundary cases
1148  *
1149  * This function returns the OCR bit number according to the provided @vdd
1150  * value. If conversion is not possible a negative errno value returned.
1151  *
1152  * Depending on the @low_bits flag the function prefers low or high OCR bits
1153  * on boundary voltages. For example,
1154  * with @low_bits = true, 3300 mV translates to ilog2(MMC_VDD_32_33);
1155  * with @low_bits = false, 3300 mV translates to ilog2(MMC_VDD_33_34);
1156  *
1157  * Any value in the [1951:1999] range translates to the ilog2(MMC_VDD_20_21).
1158  */
1159 static int mmc_vdd_to_ocrbitnum(int vdd, bool low_bits)
1160 {
1161         const int max_bit = ilog2(MMC_VDD_35_36);
1162         int bit;
1163
1164         if (vdd < 1650 || vdd > 3600)
1165                 return -EINVAL;
1166
1167         if (vdd >= 1650 && vdd <= 1950)
1168                 return ilog2(MMC_VDD_165_195);
1169
1170         if (low_bits)
1171                 vdd -= 1;
1172
1173         /* Base 2000 mV, step 100 mV, bit's base 8. */
1174         bit = (vdd - 2000) / 100 + 8;
1175         if (bit > max_bit)
1176                 return max_bit;
1177         return bit;
1178 }
1179
1180 /**
1181  * mmc_vddrange_to_ocrmask - Convert a voltage range to the OCR mask
1182  * @vdd_min:    minimum voltage value (mV)
1183  * @vdd_max:    maximum voltage value (mV)
1184  *
1185  * This function returns the OCR mask bits according to the provided @vdd_min
1186  * and @vdd_max values. If conversion is not possible the function returns 0.
1187  *
1188  * Notes wrt boundary cases:
1189  * This function sets the OCR bits for all boundary voltages, for example
1190  * [3300:3400] range is translated to MMC_VDD_32_33 | MMC_VDD_33_34 |
1191  * MMC_VDD_34_35 mask.
1192  */
1193 u32 mmc_vddrange_to_ocrmask(int vdd_min, int vdd_max)
1194 {
1195         u32 mask = 0;
1196
1197         if (vdd_max < vdd_min)
1198                 return 0;
1199
1200         /* Prefer high bits for the boundary vdd_max values. */
1201         vdd_max = mmc_vdd_to_ocrbitnum(vdd_max, false);
1202         if (vdd_max < 0)
1203                 return 0;
1204
1205         /* Prefer low bits for the boundary vdd_min values. */
1206         vdd_min = mmc_vdd_to_ocrbitnum(vdd_min, true);
1207         if (vdd_min < 0)
1208                 return 0;
1209
1210         /* Fill the mask, from max bit to min bit. */
1211         while (vdd_max >= vdd_min)
1212                 mask |= 1 << vdd_max--;
1213
1214         return mask;
1215 }
1216 EXPORT_SYMBOL(mmc_vddrange_to_ocrmask);
1217
1218 #ifdef CONFIG_OF
1219
1220 /**
1221  * mmc_of_parse_voltage - return mask of supported voltages
1222  * @np: The device node need to be parsed.
1223  * @mask: mask of voltages available for MMC/SD/SDIO
1224  *
1225  * 1. Return zero on success.
1226  * 2. Return negative errno: voltage-range is invalid.
1227  */
1228 int mmc_of_parse_voltage(struct device_node *np, u32 *mask)
1229 {
1230         const u32 *voltage_ranges;
1231         int num_ranges, i;
1232
1233         voltage_ranges = of_get_property(np, "voltage-ranges", &num_ranges);
1234         num_ranges = num_ranges / sizeof(*voltage_ranges) / 2;
1235         if (!voltage_ranges || !num_ranges) {
1236                 pr_info("%s: voltage-ranges unspecified\n", np->full_name);
1237                 return -EINVAL;
1238         }
1239
1240         for (i = 0; i < num_ranges; i++) {
1241                 const int j = i * 2;
1242                 u32 ocr_mask;
1243
1244                 ocr_mask = mmc_vddrange_to_ocrmask(
1245                                 be32_to_cpu(voltage_ranges[j]),
1246                                 be32_to_cpu(voltage_ranges[j + 1]));
1247                 if (!ocr_mask) {
1248                         pr_err("%s: voltage-range #%d is invalid\n",
1249                                 np->full_name, i);
1250                         return -EINVAL;
1251                 }
1252                 *mask |= ocr_mask;
1253         }
1254
1255         return 0;
1256 }
1257 EXPORT_SYMBOL(mmc_of_parse_voltage);
1258
1259 #endif /* CONFIG_OF */
1260
1261 static int mmc_of_get_func_num(struct device_node *node)
1262 {
1263         u32 reg;
1264         int ret;
1265
1266         ret = of_property_read_u32(node, "reg", &reg);
1267         if (ret < 0)
1268                 return ret;
1269
1270         return reg;
1271 }
1272
1273 struct device_node *mmc_of_find_child_device(struct mmc_host *host,
1274                 unsigned func_num)
1275 {
1276         struct device_node *node;
1277
1278         if (!host->parent || !host->parent->of_node)
1279                 return NULL;
1280
1281         for_each_child_of_node(host->parent->of_node, node) {
1282                 if (mmc_of_get_func_num(node) == func_num)
1283                         return node;
1284         }
1285
1286         return NULL;
1287 }
1288
1289 #ifdef CONFIG_REGULATOR
1290
1291 /**
1292  * mmc_ocrbitnum_to_vdd - Convert a OCR bit number to its voltage
1293  * @vdd_bit:    OCR bit number
1294  * @min_uV:     minimum voltage value (mV)
1295  * @max_uV:     maximum voltage value (mV)
1296  *
1297  * This function returns the voltage range according to the provided OCR
1298  * bit number. If conversion is not possible a negative errno value returned.
1299  */
1300 static int mmc_ocrbitnum_to_vdd(int vdd_bit, int *min_uV, int *max_uV)
1301 {
1302         int             tmp;
1303
1304         if (!vdd_bit)
1305                 return -EINVAL;
1306
1307         /*
1308          * REVISIT mmc_vddrange_to_ocrmask() may have set some
1309          * bits this regulator doesn't quite support ... don't
1310          * be too picky, most cards and regulators are OK with
1311          * a 0.1V range goof (it's a small error percentage).
1312          */
1313         tmp = vdd_bit - ilog2(MMC_VDD_165_195);
1314         if (tmp == 0) {
1315                 *min_uV = 1650 * 1000;
1316                 *max_uV = 1950 * 1000;
1317         } else {
1318                 *min_uV = 1900 * 1000 + tmp * 100 * 1000;
1319                 *max_uV = *min_uV + 100 * 1000;
1320         }
1321
1322         return 0;
1323 }
1324
1325 /**
1326  * mmc_regulator_get_ocrmask - return mask of supported voltages
1327  * @supply: regulator to use
1328  *
1329  * This returns either a negative errno, or a mask of voltages that
1330  * can be provided to MMC/SD/SDIO devices using the specified voltage
1331  * regulator.  This would normally be called before registering the
1332  * MMC host adapter.
1333  */
1334 int mmc_regulator_get_ocrmask(struct regulator *supply)
1335 {
1336         int                     result = 0;
1337         int                     count;
1338         int                     i;
1339         int                     vdd_uV;
1340         int                     vdd_mV;
1341
1342         count = regulator_count_voltages(supply);
1343         if (count < 0)
1344                 return count;
1345
1346         for (i = 0; i < count; i++) {
1347                 vdd_uV = regulator_list_voltage(supply, i);
1348                 if (vdd_uV <= 0)
1349                         continue;
1350
1351                 vdd_mV = vdd_uV / 1000;
1352                 result |= mmc_vddrange_to_ocrmask(vdd_mV, vdd_mV);
1353         }
1354
1355         if (!result) {
1356                 vdd_uV = regulator_get_voltage(supply);
1357                 if (vdd_uV <= 0)
1358                         return vdd_uV;
1359
1360                 vdd_mV = vdd_uV / 1000;
1361                 result = mmc_vddrange_to_ocrmask(vdd_mV, vdd_mV);
1362         }
1363
1364         return result;
1365 }
1366 EXPORT_SYMBOL_GPL(mmc_regulator_get_ocrmask);
1367
1368 /**
1369  * mmc_regulator_set_ocr - set regulator to match host->ios voltage
1370  * @mmc: the host to regulate
1371  * @supply: regulator to use
1372  * @vdd_bit: zero for power off, else a bit number (host->ios.vdd)
1373  *
1374  * Returns zero on success, else negative errno.
1375  *
1376  * MMC host drivers may use this to enable or disable a regulator using
1377  * a particular supply voltage.  This would normally be called from the
1378  * set_ios() method.
1379  */
1380 int mmc_regulator_set_ocr(struct mmc_host *mmc,
1381                         struct regulator *supply,
1382                         unsigned short vdd_bit)
1383 {
1384         int                     result = 0;
1385         int                     min_uV, max_uV;
1386
1387         if (vdd_bit) {
1388                 mmc_ocrbitnum_to_vdd(vdd_bit, &min_uV, &max_uV);
1389
1390                 result = regulator_set_voltage(supply, min_uV, max_uV);
1391                 if (result == 0 && !mmc->regulator_enabled) {
1392                         result = regulator_enable(supply);
1393                         if (!result)
1394                                 mmc->regulator_enabled = true;
1395                 }
1396         } else if (mmc->regulator_enabled) {
1397                 result = regulator_disable(supply);
1398                 if (result == 0)
1399                         mmc->regulator_enabled = false;
1400         }
1401
1402         if (result)
1403                 dev_err(mmc_dev(mmc),
1404                         "could not set regulator OCR (%d)\n", result);
1405         return result;
1406 }
1407 EXPORT_SYMBOL_GPL(mmc_regulator_set_ocr);
1408
1409 static int mmc_regulator_set_voltage_if_supported(struct regulator *regulator,
1410                                                   int min_uV, int target_uV,
1411                                                   int max_uV)
1412 {
1413         /*
1414          * Check if supported first to avoid errors since we may try several
1415          * signal levels during power up and don't want to show errors.
1416          */
1417         if (!regulator_is_supported_voltage(regulator, min_uV, max_uV))
1418                 return -EINVAL;
1419
1420         return regulator_set_voltage_triplet(regulator, min_uV, target_uV,
1421                                              max_uV);
1422 }
1423
1424 /**
1425  * mmc_regulator_set_vqmmc - Set VQMMC as per the ios
1426  *
1427  * For 3.3V signaling, we try to match VQMMC to VMMC as closely as possible.
1428  * That will match the behavior of old boards where VQMMC and VMMC were supplied
1429  * by the same supply.  The Bus Operating conditions for 3.3V signaling in the
1430  * SD card spec also define VQMMC in terms of VMMC.
1431  * If this is not possible we'll try the full 2.7-3.6V of the spec.
1432  *
1433  * For 1.2V and 1.8V signaling we'll try to get as close as possible to the
1434  * requested voltage.  This is definitely a good idea for UHS where there's a
1435  * separate regulator on the card that's trying to make 1.8V and it's best if
1436  * we match.
1437  *
1438  * This function is expected to be used by a controller's
1439  * start_signal_voltage_switch() function.
1440  */
1441 int mmc_regulator_set_vqmmc(struct mmc_host *mmc, struct mmc_ios *ios)
1442 {
1443         struct device *dev = mmc_dev(mmc);
1444         int ret, volt, min_uV, max_uV;
1445
1446         /* If no vqmmc supply then we can't change the voltage */
1447         if (IS_ERR(mmc->supply.vqmmc))
1448                 return -EINVAL;
1449
1450         switch (ios->signal_voltage) {
1451         case MMC_SIGNAL_VOLTAGE_120:
1452                 return mmc_regulator_set_voltage_if_supported(mmc->supply.vqmmc,
1453                                                 1100000, 1200000, 1300000);
1454         case MMC_SIGNAL_VOLTAGE_180:
1455                 return mmc_regulator_set_voltage_if_supported(mmc->supply.vqmmc,
1456                                                 1700000, 1800000, 1950000);
1457         case MMC_SIGNAL_VOLTAGE_330:
1458                 ret = mmc_ocrbitnum_to_vdd(mmc->ios.vdd, &volt, &max_uV);
1459                 if (ret < 0)
1460                         return ret;
1461
1462                 dev_dbg(dev, "%s: found vmmc voltage range of %d-%duV\n",
1463                         __func__, volt, max_uV);
1464
1465                 min_uV = max(volt - 300000, 2700000);
1466                 max_uV = min(max_uV + 200000, 3600000);
1467
1468                 /*
1469                  * Due to a limitation in the current implementation of
1470                  * regulator_set_voltage_triplet() which is taking the lowest
1471                  * voltage possible if below the target, search for a suitable
1472                  * voltage in two steps and try to stay close to vmmc
1473                  * with a 0.3V tolerance at first.
1474                  */
1475                 if (!mmc_regulator_set_voltage_if_supported(mmc->supply.vqmmc,
1476                                                 min_uV, volt, max_uV))
1477                         return 0;
1478
1479                 return mmc_regulator_set_voltage_if_supported(mmc->supply.vqmmc,
1480                                                 2700000, volt, 3600000);
1481         default:
1482                 return -EINVAL;
1483         }
1484 }
1485 EXPORT_SYMBOL_GPL(mmc_regulator_set_vqmmc);
1486
1487 #endif /* CONFIG_REGULATOR */
1488
1489 int mmc_regulator_get_supply(struct mmc_host *mmc)
1490 {
1491         struct device *dev = mmc_dev(mmc);
1492         int ret;
1493
1494         mmc->supply.vmmc = devm_regulator_get_optional(dev, "vmmc");
1495         mmc->supply.vqmmc = devm_regulator_get_optional(dev, "vqmmc");
1496
1497         if (IS_ERR(mmc->supply.vmmc)) {
1498                 if (PTR_ERR(mmc->supply.vmmc) == -EPROBE_DEFER)
1499                         return -EPROBE_DEFER;
1500                 dev_info(dev, "No vmmc regulator found\n");
1501         } else {
1502                 ret = mmc_regulator_get_ocrmask(mmc->supply.vmmc);
1503                 if (ret > 0)
1504                         mmc->ocr_avail = ret;
1505                 else
1506                         dev_warn(dev, "Failed getting OCR mask: %d\n", ret);
1507         }
1508
1509         if (IS_ERR(mmc->supply.vqmmc)) {
1510                 if (PTR_ERR(mmc->supply.vqmmc) == -EPROBE_DEFER)
1511                         return -EPROBE_DEFER;
1512                 dev_info(dev, "No vqmmc regulator found\n");
1513         }
1514
1515         return 0;
1516 }
1517 EXPORT_SYMBOL_GPL(mmc_regulator_get_supply);
1518
1519 /*
1520  * Mask off any voltages we don't support and select
1521  * the lowest voltage
1522  */
1523 u32 mmc_select_voltage(struct mmc_host *host, u32 ocr)
1524 {
1525         int bit;
1526
1527         /*
1528          * Sanity check the voltages that the card claims to
1529          * support.
1530          */
1531         if (ocr & 0x7F) {
1532                 dev_warn(mmc_dev(host),
1533                 "card claims to support voltages below defined range\n");
1534                 ocr &= ~0x7F;
1535         }
1536
1537         ocr &= host->ocr_avail;
1538         if (!ocr) {
1539                 dev_warn(mmc_dev(host), "no support for card's volts\n");
1540                 return 0;
1541         }
1542
1543         if (host->caps2 & MMC_CAP2_FULL_PWR_CYCLE) {
1544                 bit = ffs(ocr) - 1;
1545                 ocr &= 3 << bit;
1546                 mmc_power_cycle(host, ocr);
1547         } else {
1548                 bit = fls(ocr) - 1;
1549                 ocr &= 3 << bit;
1550                 if (bit != host->ios.vdd)
1551                         dev_warn(mmc_dev(host), "exceeding card's volts\n");
1552         }
1553
1554         return ocr;
1555 }
1556
1557 int __mmc_set_signal_voltage(struct mmc_host *host, int signal_voltage)
1558 {
1559         int err = 0;
1560         int old_signal_voltage = host->ios.signal_voltage;
1561
1562         host->ios.signal_voltage = signal_voltage;
1563         if (host->ops->start_signal_voltage_switch)
1564                 err = host->ops->start_signal_voltage_switch(host, &host->ios);
1565
1566         if (err)
1567                 host->ios.signal_voltage = old_signal_voltage;
1568
1569         return err;
1570
1571 }
1572
1573 int mmc_set_signal_voltage(struct mmc_host *host, int signal_voltage, u32 ocr)
1574 {
1575         struct mmc_command cmd = {0};
1576         int err = 0;
1577         u32 clock;
1578
1579         BUG_ON(!host);
1580
1581         /*
1582          * Send CMD11 only if the request is to switch the card to
1583          * 1.8V signalling.
1584          */
1585         if (signal_voltage == MMC_SIGNAL_VOLTAGE_330)
1586                 return __mmc_set_signal_voltage(host, signal_voltage);
1587
1588         /*
1589          * If we cannot switch voltages, return failure so the caller
1590          * can continue without UHS mode
1591          */
1592         if (!host->ops->start_signal_voltage_switch)
1593                 return -EPERM;
1594         if (!host->ops->card_busy)
1595                 pr_warn("%s: cannot verify signal voltage switch\n",
1596                         mmc_hostname(host));
1597
1598         cmd.opcode = SD_SWITCH_VOLTAGE;
1599         cmd.arg = 0;
1600         cmd.flags = MMC_RSP_R1 | MMC_CMD_AC;
1601
1602         err = mmc_wait_for_cmd(host, &cmd, 0);
1603         if (err)
1604                 return err;
1605
1606         if (!mmc_host_is_spi(host) && (cmd.resp[0] & R1_ERROR))
1607                 return -EIO;
1608
1609         /*
1610          * The card should drive cmd and dat[0:3] low immediately
1611          * after the response of cmd11, but wait 1 ms to be sure
1612          */
1613         mmc_delay(1);
1614         if (host->ops->card_busy && !host->ops->card_busy(host)) {
1615                 err = -EAGAIN;
1616                 goto power_cycle;
1617         }
1618         /*
1619          * During a signal voltage level switch, the clock must be gated
1620          * for 5 ms according to the SD spec
1621          */
1622         clock = host->ios.clock;
1623         host->ios.clock = 0;
1624         mmc_set_ios(host);
1625
1626         if (__mmc_set_signal_voltage(host, signal_voltage)) {
1627                 /*
1628                  * Voltages may not have been switched, but we've already
1629                  * sent CMD11, so a power cycle is required anyway
1630                  */
1631                 err = -EAGAIN;
1632                 goto power_cycle;
1633         }
1634
1635         /* Keep clock gated for at least 10 ms, though spec only says 5 ms */
1636         mmc_delay(10);
1637         host->ios.clock = clock;
1638         mmc_set_ios(host);
1639
1640         /* Wait for at least 1 ms according to spec */
1641         mmc_delay(1);
1642
1643         /*
1644          * Failure to switch is indicated by the card holding
1645          * dat[0:3] low
1646          */
1647         if (host->ops->card_busy && host->ops->card_busy(host))
1648                 err = -EAGAIN;
1649
1650 power_cycle:
1651         if (err) {
1652                 pr_debug("%s: Signal voltage switch failed, "
1653                         "power cycling card\n", mmc_hostname(host));
1654                 mmc_power_cycle(host, ocr);
1655         }
1656
1657         return err;
1658 }
1659
1660 /*
1661  * Select timing parameters for host.
1662  */
1663 void mmc_set_timing(struct mmc_host *host, unsigned int timing)
1664 {
1665         host->ios.timing = timing;
1666         mmc_set_ios(host);
1667 }
1668
1669 /*
1670  * Select appropriate driver type for host.
1671  */
1672 void mmc_set_driver_type(struct mmc_host *host, unsigned int drv_type)
1673 {
1674         host->ios.drv_type = drv_type;
1675         mmc_set_ios(host);
1676 }
1677
1678 int mmc_select_drive_strength(struct mmc_card *card, unsigned int max_dtr,
1679                               int card_drv_type, int *drv_type)
1680 {
1681         struct mmc_host *host = card->host;
1682         int host_drv_type = SD_DRIVER_TYPE_B;
1683
1684         *drv_type = 0;
1685
1686         if (!host->ops->select_drive_strength)
1687                 return 0;
1688
1689         /* Use SD definition of driver strength for hosts */
1690         if (host->caps & MMC_CAP_DRIVER_TYPE_A)
1691                 host_drv_type |= SD_DRIVER_TYPE_A;
1692
1693         if (host->caps & MMC_CAP_DRIVER_TYPE_C)
1694                 host_drv_type |= SD_DRIVER_TYPE_C;
1695
1696         if (host->caps & MMC_CAP_DRIVER_TYPE_D)
1697                 host_drv_type |= SD_DRIVER_TYPE_D;
1698
1699         /*
1700          * The drive strength that the hardware can support
1701          * depends on the board design.  Pass the appropriate
1702          * information and let the hardware specific code
1703          * return what is possible given the options
1704          */
1705         return host->ops->select_drive_strength(card, max_dtr,
1706                                                 host_drv_type,
1707                                                 card_drv_type,
1708                                                 drv_type);
1709 }
1710
1711 /*
1712  * Apply power to the MMC stack.  This is a two-stage process.
1713  * First, we enable power to the card without the clock running.
1714  * We then wait a bit for the power to stabilise.  Finally,
1715  * enable the bus drivers and clock to the card.
1716  *
1717  * We must _NOT_ enable the clock prior to power stablising.
1718  *
1719  * If a host does all the power sequencing itself, ignore the
1720  * initial MMC_POWER_UP stage.
1721  */
1722 void mmc_power_up(struct mmc_host *host, u32 ocr)
1723 {
1724         if (host->ios.power_mode == MMC_POWER_ON)
1725                 return;
1726
1727         mmc_pwrseq_pre_power_on(host);
1728
1729         host->ios.vdd = fls(ocr) - 1;
1730         host->ios.power_mode = MMC_POWER_UP;
1731         /* Set initial state and call mmc_set_ios */
1732         mmc_set_initial_state(host);
1733
1734         /* Try to set signal voltage to 3.3V but fall back to 1.8v or 1.2v */
1735         if (__mmc_set_signal_voltage(host, MMC_SIGNAL_VOLTAGE_330) == 0)
1736                 dev_dbg(mmc_dev(host), "Initial signal voltage of 3.3v\n");
1737         else if (__mmc_set_signal_voltage(host, MMC_SIGNAL_VOLTAGE_180) == 0)
1738                 dev_dbg(mmc_dev(host), "Initial signal voltage of 1.8v\n");
1739         else if (__mmc_set_signal_voltage(host, MMC_SIGNAL_VOLTAGE_120) == 0)
1740                 dev_dbg(mmc_dev(host), "Initial signal voltage of 1.2v\n");
1741
1742         /*
1743          * This delay should be sufficient to allow the power supply
1744          * to reach the minimum voltage.
1745          */
1746         mmc_delay(10);
1747
1748         mmc_pwrseq_post_power_on(host);
1749
1750         host->ios.clock = host->f_init;
1751
1752         host->ios.power_mode = MMC_POWER_ON;
1753         mmc_set_ios(host);
1754
1755         /*
1756          * This delay must be at least 74 clock sizes, or 1 ms, or the
1757          * time required to reach a stable voltage.
1758          */
1759         mmc_delay(10);
1760 }
1761
1762 void mmc_power_off(struct mmc_host *host)
1763 {
1764         if (host->ios.power_mode == MMC_POWER_OFF)
1765                 return;
1766
1767         mmc_pwrseq_power_off(host);
1768
1769         host->ios.clock = 0;
1770         host->ios.vdd = 0;
1771
1772         host->ios.power_mode = MMC_POWER_OFF;
1773         /* Set initial state and call mmc_set_ios */
1774         mmc_set_initial_state(host);
1775
1776         /*
1777          * Some configurations, such as the 802.11 SDIO card in the OLPC
1778          * XO-1.5, require a short delay after poweroff before the card
1779          * can be successfully turned on again.
1780          */
1781         mmc_delay(1);
1782 }
1783
1784 void mmc_power_cycle(struct mmc_host *host, u32 ocr)
1785 {
1786         mmc_power_off(host);
1787         /* Wait at least 1 ms according to SD spec */
1788         mmc_delay(1);
1789         mmc_power_up(host, ocr);
1790 }
1791
1792 /*
1793  * Cleanup when the last reference to the bus operator is dropped.
1794  */
1795 static void __mmc_release_bus(struct mmc_host *host)
1796 {
1797         BUG_ON(!host);
1798         BUG_ON(host->bus_refs);
1799         BUG_ON(!host->bus_dead);
1800
1801         host->bus_ops = NULL;
1802 }
1803
1804 /*
1805  * Increase reference count of bus operator
1806  */
1807 static inline void mmc_bus_get(struct mmc_host *host)
1808 {
1809         unsigned long flags;
1810
1811         spin_lock_irqsave(&host->lock, flags);
1812         host->bus_refs++;
1813         spin_unlock_irqrestore(&host->lock, flags);
1814 }
1815
1816 /*
1817  * Decrease reference count of bus operator and free it if
1818  * it is the last reference.
1819  */
1820 static inline void mmc_bus_put(struct mmc_host *host)
1821 {
1822         unsigned long flags;
1823
1824         spin_lock_irqsave(&host->lock, flags);
1825         host->bus_refs--;
1826         if ((host->bus_refs == 0) && host->bus_ops)
1827                 __mmc_release_bus(host);
1828         spin_unlock_irqrestore(&host->lock, flags);
1829 }
1830
1831 /*
1832  * Assign a mmc bus handler to a host. Only one bus handler may control a
1833  * host at any given time.
1834  */
1835 void mmc_attach_bus(struct mmc_host *host, const struct mmc_bus_ops *ops)
1836 {
1837         unsigned long flags;
1838
1839         BUG_ON(!host);
1840         BUG_ON(!ops);
1841
1842         WARN_ON(!host->claimed);
1843
1844         spin_lock_irqsave(&host->lock, flags);
1845
1846         BUG_ON(host->bus_ops);
1847         BUG_ON(host->bus_refs);
1848
1849         host->bus_ops = ops;
1850         host->bus_refs = 1;
1851         host->bus_dead = 0;
1852
1853         spin_unlock_irqrestore(&host->lock, flags);
1854 }
1855
1856 /*
1857  * Remove the current bus handler from a host.
1858  */
1859 void mmc_detach_bus(struct mmc_host *host)
1860 {
1861         unsigned long flags;
1862
1863         BUG_ON(!host);
1864
1865         WARN_ON(!host->claimed);
1866         WARN_ON(!host->bus_ops);
1867
1868         spin_lock_irqsave(&host->lock, flags);
1869
1870         host->bus_dead = 1;
1871
1872         spin_unlock_irqrestore(&host->lock, flags);
1873
1874         mmc_bus_put(host);
1875 }
1876
1877 static void _mmc_detect_change(struct mmc_host *host, unsigned long delay,
1878                                 bool cd_irq)
1879 {
1880 #ifdef CONFIG_MMC_DEBUG
1881         unsigned long flags;
1882         spin_lock_irqsave(&host->lock, flags);
1883         WARN_ON(host->removed);
1884         spin_unlock_irqrestore(&host->lock, flags);
1885 #endif
1886
1887         /*
1888          * If the device is configured as wakeup, we prevent a new sleep for
1889          * 5 s to give provision for user space to consume the event.
1890          */
1891         if (cd_irq && !(host->caps & MMC_CAP_NEEDS_POLL) &&
1892                 device_can_wakeup(mmc_dev(host)))
1893                 pm_wakeup_event(mmc_dev(host), 5000);
1894
1895         host->detect_change = 1;
1896         mmc_schedule_delayed_work(&host->detect, delay);
1897 }
1898
1899 /**
1900  *      mmc_detect_change - process change of state on a MMC socket
1901  *      @host: host which changed state.
1902  *      @delay: optional delay to wait before detection (jiffies)
1903  *
1904  *      MMC drivers should call this when they detect a card has been
1905  *      inserted or removed. The MMC layer will confirm that any
1906  *      present card is still functional, and initialize any newly
1907  *      inserted.
1908  */
1909 void mmc_detect_change(struct mmc_host *host, unsigned long delay)
1910 {
1911         _mmc_detect_change(host, delay, true);
1912 }
1913 EXPORT_SYMBOL(mmc_detect_change);
1914
1915 void mmc_init_erase(struct mmc_card *card)
1916 {
1917         unsigned int sz;
1918
1919         if (is_power_of_2(card->erase_size))
1920                 card->erase_shift = ffs(card->erase_size) - 1;
1921         else
1922                 card->erase_shift = 0;
1923
1924         /*
1925          * It is possible to erase an arbitrarily large area of an SD or MMC
1926          * card.  That is not desirable because it can take a long time
1927          * (minutes) potentially delaying more important I/O, and also the
1928          * timeout calculations become increasingly hugely over-estimated.
1929          * Consequently, 'pref_erase' is defined as a guide to limit erases
1930          * to that size and alignment.
1931          *
1932          * For SD cards that define Allocation Unit size, limit erases to one
1933          * Allocation Unit at a time.  For MMC cards that define High Capacity
1934          * Erase Size, whether it is switched on or not, limit to that size.
1935          * Otherwise just have a stab at a good value.  For modern cards it
1936          * will end up being 4MiB.  Note that if the value is too small, it
1937          * can end up taking longer to erase.
1938          */
1939         if (mmc_card_sd(card) && card->ssr.au) {
1940                 card->pref_erase = card->ssr.au;
1941                 card->erase_shift = ffs(card->ssr.au) - 1;
1942         } else if (card->ext_csd.hc_erase_size) {
1943                 card->pref_erase = card->ext_csd.hc_erase_size;
1944         } else if (card->erase_size) {
1945                 sz = (card->csd.capacity << (card->csd.read_blkbits - 9)) >> 11;
1946                 if (sz < 128)
1947                         card->pref_erase = 512 * 1024 / 512;
1948                 else if (sz < 512)
1949                         card->pref_erase = 1024 * 1024 / 512;
1950                 else if (sz < 1024)
1951                         card->pref_erase = 2 * 1024 * 1024 / 512;
1952                 else
1953                         card->pref_erase = 4 * 1024 * 1024 / 512;
1954                 if (card->pref_erase < card->erase_size)
1955                         card->pref_erase = card->erase_size;
1956                 else {
1957                         sz = card->pref_erase % card->erase_size;
1958                         if (sz)
1959                                 card->pref_erase += card->erase_size - sz;
1960                 }
1961         } else
1962                 card->pref_erase = 0;
1963 }
1964
1965 static unsigned int mmc_mmc_erase_timeout(struct mmc_card *card,
1966                                           unsigned int arg, unsigned int qty)
1967 {
1968         unsigned int erase_timeout;
1969
1970         if (arg == MMC_DISCARD_ARG ||
1971             (arg == MMC_TRIM_ARG && card->ext_csd.rev >= 6)) {
1972                 erase_timeout = card->ext_csd.trim_timeout;
1973         } else if (card->ext_csd.erase_group_def & 1) {
1974                 /* High Capacity Erase Group Size uses HC timeouts */
1975                 if (arg == MMC_TRIM_ARG)
1976                         erase_timeout = card->ext_csd.trim_timeout;
1977                 else
1978                         erase_timeout = card->ext_csd.hc_erase_timeout;
1979         } else {
1980                 /* CSD Erase Group Size uses write timeout */
1981                 unsigned int mult = (10 << card->csd.r2w_factor);
1982                 unsigned int timeout_clks = card->csd.tacc_clks * mult;
1983                 unsigned int timeout_us;
1984
1985                 /* Avoid overflow: e.g. tacc_ns=80000000 mult=1280 */
1986                 if (card->csd.tacc_ns < 1000000)
1987                         timeout_us = (card->csd.tacc_ns * mult) / 1000;
1988                 else
1989                         timeout_us = (card->csd.tacc_ns / 1000) * mult;
1990
1991                 /*
1992                  * ios.clock is only a target.  The real clock rate might be
1993                  * less but not that much less, so fudge it by multiplying by 2.
1994                  */
1995                 timeout_clks <<= 1;
1996                 timeout_us += (timeout_clks * 1000) /
1997                               (card->host->ios.clock / 1000);
1998
1999                 erase_timeout = timeout_us / 1000;
2000
2001                 /*
2002                  * Theoretically, the calculation could underflow so round up
2003                  * to 1ms in that case.
2004                  */
2005                 if (!erase_timeout)
2006                         erase_timeout = 1;
2007         }
2008
2009         /* Multiplier for secure operations */
2010         if (arg & MMC_SECURE_ARGS) {
2011                 if (arg == MMC_SECURE_ERASE_ARG)
2012                         erase_timeout *= card->ext_csd.sec_erase_mult;
2013                 else
2014                         erase_timeout *= card->ext_csd.sec_trim_mult;
2015         }
2016
2017         erase_timeout *= qty;
2018
2019         /*
2020          * Ensure at least a 1 second timeout for SPI as per
2021          * 'mmc_set_data_timeout()'
2022          */
2023         if (mmc_host_is_spi(card->host) && erase_timeout < 1000)
2024                 erase_timeout = 1000;
2025
2026         return erase_timeout;
2027 }
2028
2029 static unsigned int mmc_sd_erase_timeout(struct mmc_card *card,
2030                                          unsigned int arg,
2031                                          unsigned int qty)
2032 {
2033         unsigned int erase_timeout;
2034
2035         if (card->ssr.erase_timeout) {
2036                 /* Erase timeout specified in SD Status Register (SSR) */
2037                 erase_timeout = card->ssr.erase_timeout * qty +
2038                                 card->ssr.erase_offset;
2039         } else {
2040                 /*
2041                  * Erase timeout not specified in SD Status Register (SSR) so
2042                  * use 250ms per write block.
2043                  */
2044                 erase_timeout = 250 * qty;
2045         }
2046
2047         /* Must not be less than 1 second */
2048         if (erase_timeout < 1000)
2049                 erase_timeout = 1000;
2050
2051         return erase_timeout;
2052 }
2053
2054 static unsigned int mmc_erase_timeout(struct mmc_card *card,
2055                                       unsigned int arg,
2056                                       unsigned int qty)
2057 {
2058         if (mmc_card_sd(card))
2059                 return mmc_sd_erase_timeout(card, arg, qty);
2060         else
2061                 return mmc_mmc_erase_timeout(card, arg, qty);
2062 }
2063
2064 static int mmc_do_erase(struct mmc_card *card, unsigned int from,
2065                         unsigned int to, unsigned int arg)
2066 {
2067         struct mmc_command cmd = {0};
2068         unsigned int qty = 0;
2069         unsigned long timeout;
2070         unsigned int fr, nr;
2071         int err;
2072
2073         fr = from;
2074         nr = to - from + 1;
2075         trace_mmc_blk_erase_start(arg, fr, nr);
2076
2077         mmc_retune_hold(card->host);
2078
2079         /*
2080          * qty is used to calculate the erase timeout which depends on how many
2081          * erase groups (or allocation units in SD terminology) are affected.
2082          * We count erasing part of an erase group as one erase group.
2083          * For SD, the allocation units are always a power of 2.  For MMC, the
2084          * erase group size is almost certainly also power of 2, but it does not
2085          * seem to insist on that in the JEDEC standard, so we fall back to
2086          * division in that case.  SD may not specify an allocation unit size,
2087          * in which case the timeout is based on the number of write blocks.
2088          *
2089          * Note that the timeout for secure trim 2 will only be correct if the
2090          * number of erase groups specified is the same as the total of all
2091          * preceding secure trim 1 commands.  Since the power may have been
2092          * lost since the secure trim 1 commands occurred, it is generally
2093          * impossible to calculate the secure trim 2 timeout correctly.
2094          */
2095         if (card->erase_shift)
2096                 qty += ((to >> card->erase_shift) -
2097                         (from >> card->erase_shift)) + 1;
2098         else if (mmc_card_sd(card))
2099                 qty += to - from + 1;
2100         else
2101                 qty += ((to / card->erase_size) -
2102                         (from / card->erase_size)) + 1;
2103
2104         if (!mmc_card_blockaddr(card)) {
2105                 from <<= 9;
2106                 to <<= 9;
2107         }
2108
2109         if (mmc_card_sd(card))
2110                 cmd.opcode = SD_ERASE_WR_BLK_START;
2111         else
2112                 cmd.opcode = MMC_ERASE_GROUP_START;
2113         cmd.arg = from;
2114         cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
2115         err = mmc_wait_for_cmd(card->host, &cmd, 0);
2116         if (err) {
2117                 pr_err("mmc_erase: group start error %d, "
2118                        "status %#x\n", err, cmd.resp[0]);
2119                 err = -EIO;
2120                 goto out;
2121         }
2122
2123         memset(&cmd, 0, sizeof(struct mmc_command));
2124         if (mmc_card_sd(card))
2125                 cmd.opcode = SD_ERASE_WR_BLK_END;
2126         else
2127                 cmd.opcode = MMC_ERASE_GROUP_END;
2128         cmd.arg = to;
2129         cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
2130         err = mmc_wait_for_cmd(card->host, &cmd, 0);
2131         if (err) {
2132                 pr_err("mmc_erase: group end error %d, status %#x\n",
2133                        err, cmd.resp[0]);
2134                 err = -EIO;
2135                 goto out;
2136         }
2137
2138         memset(&cmd, 0, sizeof(struct mmc_command));
2139         cmd.opcode = MMC_ERASE;
2140         cmd.arg = arg;
2141         cmd.flags = MMC_RSP_SPI_R1B | MMC_RSP_R1B | MMC_CMD_AC;
2142         cmd.busy_timeout = mmc_erase_timeout(card, arg, qty);
2143         err = mmc_wait_for_cmd(card->host, &cmd, 0);
2144         if (err) {
2145                 pr_err("mmc_erase: erase error %d, status %#x\n",
2146                        err, cmd.resp[0]);
2147                 err = -EIO;
2148                 goto out;
2149         }
2150
2151         if (mmc_host_is_spi(card->host))
2152                 goto out;
2153
2154         timeout = jiffies + msecs_to_jiffies(MMC_CORE_TIMEOUT_MS);
2155         do {
2156                 memset(&cmd, 0, sizeof(struct mmc_command));
2157                 cmd.opcode = MMC_SEND_STATUS;
2158                 cmd.arg = card->rca << 16;
2159                 cmd.flags = MMC_RSP_R1 | MMC_CMD_AC;
2160                 /* Do not retry else we can't see errors */
2161                 err = mmc_wait_for_cmd(card->host, &cmd, 0);
2162                 if (err || (cmd.resp[0] & 0xFDF92000)) {
2163                         pr_err("error %d requesting status %#x\n",
2164                                 err, cmd.resp[0]);
2165                         err = -EIO;
2166                         goto out;
2167                 }
2168
2169                 /* Timeout if the device never becomes ready for data and
2170                  * never leaves the program state.
2171                  */
2172                 if (time_after(jiffies, timeout)) {
2173                         pr_err("%s: Card stuck in programming state! %s\n",
2174                                 mmc_hostname(card->host), __func__);
2175                         err =  -EIO;
2176                         goto out;
2177                 }
2178
2179         } while (!(cmd.resp[0] & R1_READY_FOR_DATA) ||
2180                  (R1_CURRENT_STATE(cmd.resp[0]) == R1_STATE_PRG));
2181 out:
2182         mmc_retune_release(card->host);
2183         trace_mmc_blk_erase_end(arg, fr, nr);
2184         return err;
2185 }
2186
2187 /**
2188  * mmc_erase - erase sectors.
2189  * @card: card to erase
2190  * @from: first sector to erase
2191  * @nr: number of sectors to erase
2192  * @arg: erase command argument (SD supports only %MMC_ERASE_ARG)
2193  *
2194  * Caller must claim host before calling this function.
2195  */
2196 int mmc_erase(struct mmc_card *card, unsigned int from, unsigned int nr,
2197               unsigned int arg)
2198 {
2199         unsigned int rem, to = from + nr;
2200         int err;
2201
2202         if (!(card->host->caps & MMC_CAP_ERASE) ||
2203             !(card->csd.cmdclass & CCC_ERASE))
2204                 return -EOPNOTSUPP;
2205
2206         if (!card->erase_size)
2207                 return -EOPNOTSUPP;
2208
2209         if (mmc_card_sd(card) && arg != MMC_ERASE_ARG)
2210                 return -EOPNOTSUPP;
2211
2212         if ((arg & MMC_SECURE_ARGS) &&
2213             !(card->ext_csd.sec_feature_support & EXT_CSD_SEC_ER_EN))
2214                 return -EOPNOTSUPP;
2215
2216         if ((arg & MMC_TRIM_ARGS) &&
2217             !(card->ext_csd.sec_feature_support & EXT_CSD_SEC_GB_CL_EN))
2218                 return -EOPNOTSUPP;
2219
2220         if (arg == MMC_SECURE_ERASE_ARG) {
2221                 if (from % card->erase_size || nr % card->erase_size)
2222                         return -EINVAL;
2223         }
2224
2225         if (arg == MMC_ERASE_ARG) {
2226                 rem = from % card->erase_size;
2227                 if (rem) {
2228                         rem = card->erase_size - rem;
2229                         from += rem;
2230                         if (nr > rem)
2231                                 nr -= rem;
2232                         else
2233                                 return 0;
2234                 }
2235                 rem = nr % card->erase_size;
2236                 if (rem)
2237                         nr -= rem;
2238         }
2239
2240         if (nr == 0)
2241                 return 0;
2242
2243         to = from + nr;
2244
2245         if (to <= from)
2246                 return -EINVAL;
2247
2248         /* 'from' and 'to' are inclusive */
2249         to -= 1;
2250
2251         /*
2252          * Special case where only one erase-group fits in the timeout budget:
2253          * If the region crosses an erase-group boundary on this particular
2254          * case, we will be trimming more than one erase-group which, does not
2255          * fit in the timeout budget of the controller, so we need to split it
2256          * and call mmc_do_erase() twice if necessary. This special case is
2257          * identified by the card->eg_boundary flag.
2258          */
2259         rem = card->erase_size - (from % card->erase_size);
2260         if ((arg & MMC_TRIM_ARGS) && (card->eg_boundary) && (nr > rem)) {
2261                 err = mmc_do_erase(card, from, from + rem - 1, arg);
2262                 from += rem;
2263                 if ((err) || (to <= from))
2264                         return err;
2265         }
2266
2267         return mmc_do_erase(card, from, to, arg);
2268 }
2269 EXPORT_SYMBOL(mmc_erase);
2270
2271 int mmc_can_erase(struct mmc_card *card)
2272 {
2273         if ((card->host->caps & MMC_CAP_ERASE) &&
2274             (card->csd.cmdclass & CCC_ERASE) && card->erase_size)
2275                 return 1;
2276         return 0;
2277 }
2278 EXPORT_SYMBOL(mmc_can_erase);
2279
2280 int mmc_can_trim(struct mmc_card *card)
2281 {
2282         if ((card->ext_csd.sec_feature_support & EXT_CSD_SEC_GB_CL_EN) &&
2283             (!(card->quirks & MMC_QUIRK_TRIM_BROKEN)))
2284                 return 1;
2285         return 0;
2286 }
2287 EXPORT_SYMBOL(mmc_can_trim);
2288
2289 int mmc_can_discard(struct mmc_card *card)
2290 {
2291         /*
2292          * As there's no way to detect the discard support bit at v4.5
2293          * use the s/w feature support filed.
2294          */
2295         if (card->ext_csd.feature_support & MMC_DISCARD_FEATURE)
2296                 return 1;
2297         return 0;
2298 }
2299 EXPORT_SYMBOL(mmc_can_discard);
2300
2301 int mmc_can_sanitize(struct mmc_card *card)
2302 {
2303         if (!mmc_can_trim(card) && !mmc_can_erase(card))
2304                 return 0;
2305         if (card->ext_csd.sec_feature_support & EXT_CSD_SEC_SANITIZE)
2306                 return 1;
2307         return 0;
2308 }
2309 EXPORT_SYMBOL(mmc_can_sanitize);
2310
2311 int mmc_can_secure_erase_trim(struct mmc_card *card)
2312 {
2313         if ((card->ext_csd.sec_feature_support & EXT_CSD_SEC_ER_EN) &&
2314             !(card->quirks & MMC_QUIRK_SEC_ERASE_TRIM_BROKEN))
2315                 return 1;
2316         return 0;
2317 }
2318 EXPORT_SYMBOL(mmc_can_secure_erase_trim);
2319
2320 int mmc_erase_group_aligned(struct mmc_card *card, unsigned int from,
2321                             unsigned int nr)
2322 {
2323         if (!card->erase_size)
2324                 return 0;
2325         if (from % card->erase_size || nr % card->erase_size)
2326                 return 0;
2327         return 1;
2328 }
2329 EXPORT_SYMBOL(mmc_erase_group_aligned);
2330
2331 static unsigned int mmc_do_calc_max_discard(struct mmc_card *card,
2332                                             unsigned int arg)
2333 {
2334         struct mmc_host *host = card->host;
2335         unsigned int max_discard, x, y, qty = 0, max_qty, timeout;
2336         unsigned int last_timeout = 0;
2337
2338         if (card->erase_shift)
2339                 max_qty = UINT_MAX >> card->erase_shift;
2340         else if (mmc_card_sd(card))
2341                 max_qty = UINT_MAX;
2342         else
2343                 max_qty = UINT_MAX / card->erase_size;
2344
2345         /* Find the largest qty with an OK timeout */
2346         do {
2347                 y = 0;
2348                 for (x = 1; x && x <= max_qty && max_qty - x >= qty; x <<= 1) {
2349                         timeout = mmc_erase_timeout(card, arg, qty + x);
2350                         if (timeout > host->max_busy_timeout)
2351                                 break;
2352                         if (timeout < last_timeout)
2353                                 break;
2354                         last_timeout = timeout;
2355                         y = x;
2356                 }
2357                 qty += y;
2358         } while (y);
2359
2360         if (!qty)
2361                 return 0;
2362
2363         /*
2364          * When specifying a sector range to trim, chances are we might cross
2365          * an erase-group boundary even if the amount of sectors is less than
2366          * one erase-group.
2367          * If we can only fit one erase-group in the controller timeout budget,
2368          * we have to care that erase-group boundaries are not crossed by a
2369          * single trim operation. We flag that special case with "eg_boundary".
2370          * In all other cases we can just decrement qty and pretend that we
2371          * always touch (qty + 1) erase-groups as a simple optimization.
2372          */
2373         if (qty == 1)
2374                 card->eg_boundary = 1;
2375         else
2376                 qty--;
2377
2378         /* Convert qty to sectors */
2379         if (card->erase_shift)
2380                 max_discard = qty << card->erase_shift;
2381         else if (mmc_card_sd(card))
2382                 max_discard = qty + 1;
2383         else
2384                 max_discard = qty * card->erase_size;
2385
2386         return max_discard;
2387 }
2388
2389 unsigned int mmc_calc_max_discard(struct mmc_card *card)
2390 {
2391         struct mmc_host *host = card->host;
2392         unsigned int max_discard, max_trim;
2393
2394         if (!host->max_busy_timeout)
2395                 return UINT_MAX;
2396
2397         /*
2398          * Without erase_group_def set, MMC erase timeout depends on clock
2399          * frequence which can change.  In that case, the best choice is
2400          * just the preferred erase size.
2401          */
2402         if (mmc_card_mmc(card) && !(card->ext_csd.erase_group_def & 1))
2403                 return card->pref_erase;
2404
2405         max_discard = mmc_do_calc_max_discard(card, MMC_ERASE_ARG);
2406         if (mmc_can_trim(card)) {
2407                 max_trim = mmc_do_calc_max_discard(card, MMC_TRIM_ARG);
2408                 if (max_trim < max_discard)
2409                         max_discard = max_trim;
2410         } else if (max_discard < card->erase_size) {
2411                 max_discard = 0;
2412         }
2413         pr_debug("%s: calculated max. discard sectors %u for timeout %u ms\n",
2414                  mmc_hostname(host), max_discard, host->max_busy_timeout);
2415         return max_discard;
2416 }
2417 EXPORT_SYMBOL(mmc_calc_max_discard);
2418
2419 int mmc_set_blocklen(struct mmc_card *card, unsigned int blocklen)
2420 {
2421         struct mmc_command cmd = {0};
2422
2423         if (mmc_card_blockaddr(card) || mmc_card_ddr52(card))
2424                 return 0;
2425
2426         cmd.opcode = MMC_SET_BLOCKLEN;
2427         cmd.arg = blocklen;
2428         cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
2429         return mmc_wait_for_cmd(card->host, &cmd, 5);
2430 }
2431 EXPORT_SYMBOL(mmc_set_blocklen);
2432
2433 int mmc_set_blockcount(struct mmc_card *card, unsigned int blockcount,
2434                         bool is_rel_write)
2435 {
2436         struct mmc_command cmd = {0};
2437
2438         cmd.opcode = MMC_SET_BLOCK_COUNT;
2439         cmd.arg = blockcount & 0x0000FFFF;
2440         if (is_rel_write)
2441                 cmd.arg |= 1 << 31;
2442         cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
2443         return mmc_wait_for_cmd(card->host, &cmd, 5);
2444 }
2445 EXPORT_SYMBOL(mmc_set_blockcount);
2446
2447 static void mmc_hw_reset_for_init(struct mmc_host *host)
2448 {
2449         if (!(host->caps & MMC_CAP_HW_RESET) || !host->ops->hw_reset)
2450                 return;
2451         host->ops->hw_reset(host);
2452 }
2453
2454 int mmc_hw_reset(struct mmc_host *host)
2455 {
2456         int ret;
2457
2458         if (!host->card)
2459                 return -EINVAL;
2460
2461         mmc_bus_get(host);
2462         if (!host->bus_ops || host->bus_dead || !host->bus_ops->reset) {
2463                 mmc_bus_put(host);
2464                 return -EOPNOTSUPP;
2465         }
2466
2467         ret = host->bus_ops->reset(host);
2468         mmc_bus_put(host);
2469
2470         if (ret != -EOPNOTSUPP)
2471                 pr_warn("%s: tried to reset card\n", mmc_hostname(host));
2472
2473         return ret;
2474 }
2475 EXPORT_SYMBOL(mmc_hw_reset);
2476
2477 static int mmc_rescan_try_freq(struct mmc_host *host, unsigned freq)
2478 {
2479         host->f_init = freq;
2480
2481 #ifdef CONFIG_MMC_DEBUG
2482         pr_info("%s: %s: trying to init card at %u Hz\n",
2483                 mmc_hostname(host), __func__, host->f_init);
2484 #endif
2485         mmc_power_up(host, host->ocr_avail);
2486
2487         /*
2488          * Some eMMCs (with VCCQ always on) may not be reset after power up, so
2489          * do a hardware reset if possible.
2490          */
2491         mmc_hw_reset_for_init(host);
2492
2493         /*
2494          * sdio_reset sends CMD52 to reset card.  Since we do not know
2495          * if the card is being re-initialized, just send it.  CMD52
2496          * should be ignored by SD/eMMC cards.
2497          */
2498 #ifdef MMC_STANDARD_PROBE
2499         sdio_reset(host);
2500         mmc_go_idle(host);
2501
2502         mmc_send_if_cond(host, host->ocr_avail);
2503
2504         /* Order's important: probe SDIO, then SD, then MMC */
2505         if (!mmc_attach_sdio(host))
2506                 return 0;
2507         if (!mmc_attach_sd(host))
2508                 return 0;
2509         if (!mmc_attach_mmc(host))
2510                 return 0;
2511 #else
2512         if (host->restrict_caps & RESTRICT_CARD_TYPE_SDIO)
2513                 sdio_reset(host);
2514
2515         mmc_go_idle(host);
2516
2517         if (host->restrict_caps &
2518             (RESTRICT_CARD_TYPE_SDIO | RESTRICT_CARD_TYPE_SD))
2519                 mmc_send_if_cond(host, host->ocr_avail);
2520         /* Order's important: probe SDIO, then SD, then MMC */
2521         if ((host->restrict_caps & RESTRICT_CARD_TYPE_SDIO) &&
2522             !mmc_attach_sdio(host))
2523                 return 0;
2524         if ((host->restrict_caps & RESTRICT_CARD_TYPE_SD) &&
2525              !mmc_attach_sd(host))
2526                 return 0;
2527         if ((host->restrict_caps & RESTRICT_CARD_TYPE_EMMC) &&
2528              !mmc_attach_mmc(host))
2529                 return 0;
2530 #endif
2531         mmc_power_off(host);
2532         return -EIO;
2533 }
2534
2535 int _mmc_detect_card_removed(struct mmc_host *host)
2536 {
2537         int ret;
2538
2539         if (host->caps & MMC_CAP_NONREMOVABLE)
2540                 return 0;
2541
2542         if (!host->card || mmc_card_removed(host->card))
2543                 return 1;
2544
2545         ret = host->bus_ops->alive(host);
2546
2547         /*
2548          * Card detect status and alive check may be out of sync if card is
2549          * removed slowly, when card detect switch changes while card/slot
2550          * pads are still contacted in hardware (refer to "SD Card Mechanical
2551          * Addendum, Appendix C: Card Detection Switch"). So reschedule a
2552          * detect work 200ms later for this case.
2553          */
2554         if (!ret && host->ops->get_cd && !host->ops->get_cd(host)) {
2555                 mmc_detect_change(host, msecs_to_jiffies(200));
2556                 pr_debug("%s: card removed too slowly\n", mmc_hostname(host));
2557         }
2558
2559         if (ret) {
2560                 mmc_card_set_removed(host->card);
2561                 pr_debug("%s: card remove detected\n", mmc_hostname(host));
2562         }
2563
2564         return ret;
2565 }
2566
2567 int mmc_detect_card_removed(struct mmc_host *host)
2568 {
2569         struct mmc_card *card = host->card;
2570         int ret;
2571
2572         WARN_ON(!host->claimed);
2573
2574         if (!card)
2575                 return 1;
2576
2577         ret = mmc_card_removed(card);
2578         /*
2579          * The card will be considered unchanged unless we have been asked to
2580          * detect a change or host requires polling to provide card detection.
2581          */
2582         if (!host->detect_change && !(host->caps & MMC_CAP_NEEDS_POLL))
2583                 return ret;
2584
2585         host->detect_change = 0;
2586         if (!ret) {
2587                 ret = _mmc_detect_card_removed(host);
2588                 if (ret && (host->caps & MMC_CAP_NEEDS_POLL)) {
2589                         /*
2590                          * Schedule a detect work as soon as possible to let a
2591                          * rescan handle the card removal.
2592                          */
2593                         cancel_delayed_work(&host->detect);
2594                         _mmc_detect_change(host, 0, false);
2595                 }
2596         }
2597
2598         return ret;
2599 }
2600 EXPORT_SYMBOL(mmc_detect_card_removed);
2601
2602 void mmc_rescan(struct work_struct *work)
2603 {
2604         struct mmc_host *host =
2605                 container_of(work, struct mmc_host, detect.work);
2606         int i;
2607
2608         if (host->trigger_card_event && host->ops->card_event) {
2609                 host->ops->card_event(host);
2610                 host->trigger_card_event = false;
2611         }
2612
2613         if (host->rescan_disable)
2614                 return;
2615
2616         /* If there is a non-removable card registered, only scan once */
2617         if ((host->caps & MMC_CAP_NONREMOVABLE) && host->rescan_entered)
2618                 return;
2619         host->rescan_entered = 1;
2620
2621         mmc_bus_get(host);
2622
2623         /*
2624          * if there is a _removable_ card registered, check whether it is
2625          * still present
2626          */
2627         if (host->bus_ops && !host->bus_dead
2628             && !(host->caps & MMC_CAP_NONREMOVABLE))
2629                 host->bus_ops->detect(host);
2630
2631         host->detect_change = 0;
2632
2633         /*
2634          * Let mmc_bus_put() free the bus/bus_ops if we've found that
2635          * the card is no longer present.
2636          */
2637         mmc_bus_put(host);
2638         mmc_bus_get(host);
2639
2640         /* if there still is a card present, stop here */
2641         if (host->bus_ops != NULL) {
2642                 mmc_bus_put(host);
2643                 goto out;
2644         }
2645
2646         /*
2647          * Only we can add a new handler, so it's safe to
2648          * release the lock here.
2649          */
2650         mmc_bus_put(host);
2651
2652         if (!(host->caps & MMC_CAP_NONREMOVABLE) && host->ops->get_cd &&
2653                         host->ops->get_cd(host) == 0) {
2654                 mmc_claim_host(host);
2655                 mmc_power_off(host);
2656                 mmc_release_host(host);
2657                 goto out;
2658         }
2659
2660         mmc_claim_host(host);
2661         for (i = 0; i < ARRAY_SIZE(freqs); i++) {
2662                 if (!mmc_rescan_try_freq(host, max(freqs[i], host->f_min)))
2663                         break;
2664                 if (freqs[i] <= host->f_min)
2665                         break;
2666         }
2667         mmc_release_host(host);
2668
2669  out:
2670         if (host->caps & MMC_CAP_NEEDS_POLL)
2671                 mmc_schedule_delayed_work(&host->detect, HZ);
2672 }
2673
2674 void mmc_start_host(struct mmc_host *host)
2675 {
2676         host->f_init = max(freqs[0], host->f_min);
2677         host->rescan_disable = 0;
2678         host->ios.power_mode = MMC_POWER_UNDEFINED;
2679
2680         mmc_claim_host(host);
2681         if (host->caps2 & MMC_CAP2_NO_PRESCAN_POWERUP)
2682                 mmc_power_off(host);
2683         else
2684                 mmc_power_up(host, host->ocr_avail);
2685         mmc_release_host(host);
2686
2687         mmc_gpiod_request_cd_irq(host);
2688         _mmc_detect_change(host, 0, false);
2689 }
2690
2691 void mmc_stop_host(struct mmc_host *host)
2692 {
2693 #ifdef CONFIG_MMC_DEBUG
2694         unsigned long flags;
2695         spin_lock_irqsave(&host->lock, flags);
2696         host->removed = 1;
2697         spin_unlock_irqrestore(&host->lock, flags);
2698 #endif
2699         if (host->slot.cd_irq >= 0)
2700                 disable_irq(host->slot.cd_irq);
2701
2702         host->rescan_disable = 1;
2703         cancel_delayed_work_sync(&host->detect);
2704
2705         /* clear pm flags now and let card drivers set them as needed */
2706         host->pm_flags = 0;
2707
2708         mmc_bus_get(host);
2709         if (host->bus_ops && !host->bus_dead) {
2710                 /* Calling bus_ops->remove() with a claimed host can deadlock */
2711                 host->bus_ops->remove(host);
2712                 mmc_claim_host(host);
2713                 mmc_detach_bus(host);
2714                 mmc_power_off(host);
2715                 mmc_release_host(host);
2716                 mmc_bus_put(host);
2717                 return;
2718         }
2719         mmc_bus_put(host);
2720
2721         BUG_ON(host->card);
2722
2723         mmc_claim_host(host);
2724         mmc_power_off(host);
2725         mmc_release_host(host);
2726 }
2727
2728 int mmc_power_save_host(struct mmc_host *host)
2729 {
2730         int ret = 0;
2731
2732 #ifdef CONFIG_MMC_DEBUG
2733         pr_info("%s: %s: powering down\n", mmc_hostname(host), __func__);
2734 #endif
2735
2736         mmc_bus_get(host);
2737
2738         if (!host->bus_ops || host->bus_dead) {
2739                 mmc_bus_put(host);
2740                 return -EINVAL;
2741         }
2742
2743         if (host->bus_ops->power_save)
2744                 ret = host->bus_ops->power_save(host);
2745
2746         mmc_bus_put(host);
2747
2748         mmc_power_off(host);
2749
2750         return ret;
2751 }
2752 EXPORT_SYMBOL(mmc_power_save_host);
2753
2754 int mmc_power_restore_host(struct mmc_host *host)
2755 {
2756         int ret;
2757
2758 #ifdef CONFIG_MMC_DEBUG
2759         pr_info("%s: %s: powering up\n", mmc_hostname(host), __func__);
2760 #endif
2761
2762         mmc_bus_get(host);
2763
2764         if (!host->bus_ops || host->bus_dead) {
2765                 mmc_bus_put(host);
2766                 return -EINVAL;
2767         }
2768
2769         mmc_power_up(host, host->card->ocr);
2770         ret = host->bus_ops->power_restore(host);
2771
2772         mmc_bus_put(host);
2773
2774         return ret;
2775 }
2776 EXPORT_SYMBOL(mmc_power_restore_host);
2777
2778 /*
2779  * Flush the cache to the non-volatile storage.
2780  */
2781 int mmc_flush_cache(struct mmc_card *card)
2782 {
2783         int err = 0;
2784
2785         if (mmc_card_mmc(card) &&
2786                         (card->ext_csd.cache_size > 0) &&
2787                         (card->ext_csd.cache_ctrl & 1)) {
2788                 err = __mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
2789                                    EXT_CSD_FLUSH_CACHE, 1, 1,
2790                                    true, false, false);
2791                 if (err)
2792                         pr_err("%s: cache flush error %d\n",
2793                                         mmc_hostname(card->host), err);
2794         }
2795
2796         return err;
2797 }
2798 EXPORT_SYMBOL(mmc_flush_cache);
2799
2800 #ifdef CONFIG_PM
2801
2802 /* Do the card removal on suspend if card is assumed removeable
2803  * Do that in pm notifier while userspace isn't yet frozen, so we will be able
2804    to sync the card.
2805 */
2806 int mmc_pm_notify(struct notifier_block *notify_block,
2807                                         unsigned long mode, void *unused)
2808 {
2809         struct mmc_host *host = container_of(
2810                 notify_block, struct mmc_host, pm_notify);
2811         unsigned long flags;
2812         int err = 0;
2813
2814         switch (mode) {
2815         case PM_HIBERNATION_PREPARE:
2816         case PM_SUSPEND_PREPARE:
2817         case PM_RESTORE_PREPARE:
2818                 spin_lock_irqsave(&host->lock, flags);
2819                 host->rescan_disable = 1;
2820                 spin_unlock_irqrestore(&host->lock, flags);
2821                 cancel_delayed_work_sync(&host->detect);
2822
2823                 if (!host->bus_ops)
2824                         break;
2825
2826                 /* Validate prerequisites for suspend */
2827                 if (host->bus_ops->pre_suspend)
2828                         err = host->bus_ops->pre_suspend(host);
2829                 if (!err)
2830                         break;
2831
2832                 /* Calling bus_ops->remove() with a claimed host can deadlock */
2833                 host->bus_ops->remove(host);
2834                 mmc_claim_host(host);
2835                 mmc_detach_bus(host);
2836                 mmc_power_off(host);
2837                 mmc_release_host(host);
2838                 host->pm_flags = 0;
2839                 break;
2840
2841         case PM_POST_SUSPEND:
2842         case PM_POST_HIBERNATION:
2843         case PM_POST_RESTORE:
2844
2845                 spin_lock_irqsave(&host->lock, flags);
2846                 host->rescan_disable = 0;
2847                 spin_unlock_irqrestore(&host->lock, flags);
2848                 _mmc_detect_change(host, 0, false);
2849
2850         }
2851
2852         return 0;
2853 }
2854 #endif
2855
2856 /**
2857  * mmc_init_context_info() - init synchronization context
2858  * @host: mmc host
2859  *
2860  * Init struct context_info needed to implement asynchronous
2861  * request mechanism, used by mmc core, host driver and mmc requests
2862  * supplier.
2863  */
2864 void mmc_init_context_info(struct mmc_host *host)
2865 {
2866         spin_lock_init(&host->context_info.lock);
2867         host->context_info.is_new_req = false;
2868         host->context_info.is_done_rcv = false;
2869         host->context_info.is_waiting_last_req = false;
2870         init_waitqueue_head(&host->context_info.wait);
2871 }
2872
2873 #ifdef CONFIG_MMC_EMBEDDED_SDIO
2874 void mmc_set_embedded_sdio_data(struct mmc_host *host,
2875                                 struct sdio_cis *cis,
2876                                 struct sdio_cccr *cccr,
2877                                 struct sdio_embedded_func *funcs,
2878                                 int num_funcs)
2879 {
2880         host->embedded_sdio_data.cis = cis;
2881         host->embedded_sdio_data.cccr = cccr;
2882         host->embedded_sdio_data.funcs = funcs;
2883         host->embedded_sdio_data.num_funcs = num_funcs;
2884 }
2885
2886 EXPORT_SYMBOL(mmc_set_embedded_sdio_data);
2887 #endif
2888
2889 static int __init mmc_init(void)
2890 {
2891         int ret;
2892
2893         ret = mmc_register_bus();
2894         if (ret)
2895                 return ret;
2896
2897         ret = mmc_register_host_class();
2898         if (ret)
2899                 goto unregister_bus;
2900
2901         ret = sdio_register_bus();
2902         if (ret)
2903                 goto unregister_host_class;
2904
2905         return 0;
2906
2907 unregister_host_class:
2908         mmc_unregister_host_class();
2909 unregister_bus:
2910         mmc_unregister_bus();
2911         return ret;
2912 }
2913
2914 static void __exit mmc_exit(void)
2915 {
2916         sdio_unregister_bus();
2917         mmc_unregister_host_class();
2918         mmc_unregister_bus();
2919 }
2920
2921 subsys_initcall(mmc_init);
2922 module_exit(mmc_exit);
2923
2924 MODULE_LICENSE("GPL");