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