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