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