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