d9836e5a4e5917a6a4f300ad8e113822aff923d9
[deliverable/linux.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/suspend.h>
27 #include <linux/fault-inject.h>
28 #include <linux/random.h>
29
30 #include <linux/mmc/card.h>
31 #include <linux/mmc/host.h>
32 #include <linux/mmc/mmc.h>
33 #include <linux/mmc/sd.h>
34
35 #include "core.h"
36 #include "bus.h"
37 #include "host.h"
38 #include "sdio_bus.h"
39
40 #include "mmc_ops.h"
41 #include "sd_ops.h"
42 #include "sdio_ops.h"
43
44 static struct workqueue_struct *workqueue;
45
46 /*
47 * Enabling software CRCs on the data blocks can be a significant (30%)
48 * performance cost, and for other reasons may not always be desired.
49 * So we allow it it to be disabled.
50 */
51 int use_spi_crc = 1;
52 module_param(use_spi_crc, bool, 0);
53
54 /*
55 * We normally treat cards as removed during suspend if they are not
56 * known to be on a non-removable bus, to avoid the risk of writing
57 * back data to a different card after resume. Allow this to be
58 * overridden if necessary.
59 */
60 #ifdef CONFIG_MMC_UNSAFE_RESUME
61 int mmc_assume_removable;
62 #else
63 int mmc_assume_removable = 1;
64 #endif
65 EXPORT_SYMBOL(mmc_assume_removable);
66 module_param_named(removable, mmc_assume_removable, bool, 0644);
67 MODULE_PARM_DESC(
68 removable,
69 "MMC/SD cards are removable and may be removed during suspend");
70
71 /*
72 * Internal function. Schedule delayed work in the MMC work queue.
73 */
74 static int mmc_schedule_delayed_work(struct delayed_work *work,
75 unsigned long delay)
76 {
77 return queue_delayed_work(workqueue, work, delay);
78 }
79
80 /*
81 * Internal function. Flush all scheduled work from the MMC work queue.
82 */
83 static void mmc_flush_scheduled_work(void)
84 {
85 flush_workqueue(workqueue);
86 }
87
88 #ifdef CONFIG_FAIL_MMC_REQUEST
89
90 /*
91 * Internal function. Inject random data errors.
92 * If mmc_data is NULL no errors are injected.
93 */
94 static void mmc_should_fail_request(struct mmc_host *host,
95 struct mmc_request *mrq)
96 {
97 struct mmc_command *cmd = mrq->cmd;
98 struct mmc_data *data = mrq->data;
99 static const int data_errors[] = {
100 -ETIMEDOUT,
101 -EILSEQ,
102 -EIO,
103 };
104
105 if (!data)
106 return;
107
108 if (cmd->error || data->error ||
109 !should_fail(&host->fail_mmc_request, data->blksz * data->blocks))
110 return;
111
112 data->error = data_errors[random32() % ARRAY_SIZE(data_errors)];
113 data->bytes_xfered = (random32() % (data->bytes_xfered >> 9)) << 9;
114 }
115
116 #else /* CONFIG_FAIL_MMC_REQUEST */
117
118 static inline void mmc_should_fail_request(struct mmc_host *host,
119 struct mmc_request *mrq)
120 {
121 }
122
123 #endif /* CONFIG_FAIL_MMC_REQUEST */
124
125 /**
126 * mmc_request_done - finish processing an MMC request
127 * @host: MMC host which completed request
128 * @mrq: MMC request which request
129 *
130 * MMC drivers should call this function when they have completed
131 * their processing of a request.
132 */
133 void mmc_request_done(struct mmc_host *host, struct mmc_request *mrq)
134 {
135 struct mmc_command *cmd = mrq->cmd;
136 int err = cmd->error;
137
138 if (err && cmd->retries && mmc_host_is_spi(host)) {
139 if (cmd->resp[0] & R1_SPI_ILLEGAL_COMMAND)
140 cmd->retries = 0;
141 }
142
143 if (err && cmd->retries) {
144 /*
145 * Request starter must handle retries - see
146 * mmc_wait_for_req_done().
147 */
148 if (mrq->done)
149 mrq->done(mrq);
150 } else {
151 mmc_should_fail_request(host, mrq);
152
153 led_trigger_event(host->led, LED_OFF);
154
155 pr_debug("%s: req done (CMD%u): %d: %08x %08x %08x %08x\n",
156 mmc_hostname(host), cmd->opcode, err,
157 cmd->resp[0], cmd->resp[1],
158 cmd->resp[2], cmd->resp[3]);
159
160 if (mrq->data) {
161 pr_debug("%s: %d bytes transferred: %d\n",
162 mmc_hostname(host),
163 mrq->data->bytes_xfered, mrq->data->error);
164 }
165
166 if (mrq->stop) {
167 pr_debug("%s: (CMD%u): %d: %08x %08x %08x %08x\n",
168 mmc_hostname(host), mrq->stop->opcode,
169 mrq->stop->error,
170 mrq->stop->resp[0], mrq->stop->resp[1],
171 mrq->stop->resp[2], mrq->stop->resp[3]);
172 }
173
174 if (mrq->done)
175 mrq->done(mrq);
176
177 mmc_host_clk_release(host);
178 }
179 }
180
181 EXPORT_SYMBOL(mmc_request_done);
182
183 static void
184 mmc_start_request(struct mmc_host *host, struct mmc_request *mrq)
185 {
186 #ifdef CONFIG_MMC_DEBUG
187 unsigned int i, sz;
188 struct scatterlist *sg;
189 #endif
190
191 pr_debug("%s: starting CMD%u arg %08x flags %08x\n",
192 mmc_hostname(host), mrq->cmd->opcode,
193 mrq->cmd->arg, mrq->cmd->flags);
194
195 if (mrq->data) {
196 pr_debug("%s: blksz %d blocks %d flags %08x "
197 "tsac %d ms nsac %d\n",
198 mmc_hostname(host), mrq->data->blksz,
199 mrq->data->blocks, mrq->data->flags,
200 mrq->data->timeout_ns / 1000000,
201 mrq->data->timeout_clks);
202 }
203
204 if (mrq->stop) {
205 pr_debug("%s: CMD%u arg %08x flags %08x\n",
206 mmc_hostname(host), mrq->stop->opcode,
207 mrq->stop->arg, mrq->stop->flags);
208 }
209
210 WARN_ON(!host->claimed);
211
212 mrq->cmd->error = 0;
213 mrq->cmd->mrq = mrq;
214 if (mrq->data) {
215 BUG_ON(mrq->data->blksz > host->max_blk_size);
216 BUG_ON(mrq->data->blocks > host->max_blk_count);
217 BUG_ON(mrq->data->blocks * mrq->data->blksz >
218 host->max_req_size);
219
220 #ifdef CONFIG_MMC_DEBUG
221 sz = 0;
222 for_each_sg(mrq->data->sg, sg, mrq->data->sg_len, i)
223 sz += sg->length;
224 BUG_ON(sz != mrq->data->blocks * mrq->data->blksz);
225 #endif
226
227 mrq->cmd->data = mrq->data;
228 mrq->data->error = 0;
229 mrq->data->mrq = mrq;
230 if (mrq->stop) {
231 mrq->data->stop = mrq->stop;
232 mrq->stop->error = 0;
233 mrq->stop->mrq = mrq;
234 }
235 }
236 mmc_host_clk_hold(host);
237 led_trigger_event(host->led, LED_FULL);
238 host->ops->request(host, mrq);
239 }
240
241 static void mmc_wait_done(struct mmc_request *mrq)
242 {
243 complete(&mrq->completion);
244 }
245
246 static void __mmc_start_req(struct mmc_host *host, struct mmc_request *mrq)
247 {
248 init_completion(&mrq->completion);
249 mrq->done = mmc_wait_done;
250 mmc_start_request(host, mrq);
251 }
252
253 static void mmc_wait_for_req_done(struct mmc_host *host,
254 struct mmc_request *mrq)
255 {
256 struct mmc_command *cmd;
257
258 while (1) {
259 wait_for_completion(&mrq->completion);
260
261 cmd = mrq->cmd;
262 if (!cmd->error || !cmd->retries)
263 break;
264
265 pr_debug("%s: req failed (CMD%u): %d, retrying...\n",
266 mmc_hostname(host), cmd->opcode, cmd->error);
267 cmd->retries--;
268 cmd->error = 0;
269 host->ops->request(host, mrq);
270 }
271 }
272
273 /**
274 * mmc_pre_req - Prepare for a new request
275 * @host: MMC host to prepare command
276 * @mrq: MMC request to prepare for
277 * @is_first_req: true if there is no previous started request
278 * that may run in parellel to this call, otherwise false
279 *
280 * mmc_pre_req() is called in prior to mmc_start_req() to let
281 * host prepare for the new request. Preparation of a request may be
282 * performed while another request is running on the host.
283 */
284 static void mmc_pre_req(struct mmc_host *host, struct mmc_request *mrq,
285 bool is_first_req)
286 {
287 if (host->ops->pre_req)
288 host->ops->pre_req(host, mrq, is_first_req);
289 }
290
291 /**
292 * mmc_post_req - Post process a completed request
293 * @host: MMC host to post process command
294 * @mrq: MMC request to post process for
295 * @err: Error, if non zero, clean up any resources made in pre_req
296 *
297 * Let the host post process a completed request. Post processing of
298 * a request may be performed while another reuqest is running.
299 */
300 static void mmc_post_req(struct mmc_host *host, struct mmc_request *mrq,
301 int err)
302 {
303 if (host->ops->post_req)
304 host->ops->post_req(host, mrq, err);
305 }
306
307 /**
308 * mmc_start_req - start a non-blocking request
309 * @host: MMC host to start command
310 * @areq: async request to start
311 * @error: out parameter returns 0 for success, otherwise non zero
312 *
313 * Start a new MMC custom command request for a host.
314 * If there is on ongoing async request wait for completion
315 * of that request and start the new one and return.
316 * Does not wait for the new request to complete.
317 *
318 * Returns the completed request, NULL in case of none completed.
319 * Wait for the an ongoing request (previoulsy started) to complete and
320 * return the completed request. If there is no ongoing request, NULL
321 * is returned without waiting. NULL is not an error condition.
322 */
323 struct mmc_async_req *mmc_start_req(struct mmc_host *host,
324 struct mmc_async_req *areq, int *error)
325 {
326 int err = 0;
327 struct mmc_async_req *data = host->areq;
328
329 /* Prepare a new request */
330 if (areq)
331 mmc_pre_req(host, areq->mrq, !host->areq);
332
333 if (host->areq) {
334 mmc_wait_for_req_done(host, host->areq->mrq);
335 err = host->areq->err_check(host->card, host->areq);
336 if (err) {
337 /* post process the completed failed request */
338 mmc_post_req(host, host->areq->mrq, 0);
339 if (areq)
340 /*
341 * Cancel the new prepared request, because
342 * it can't run until the failed
343 * request has been properly handled.
344 */
345 mmc_post_req(host, areq->mrq, -EINVAL);
346
347 host->areq = NULL;
348 goto out;
349 }
350 }
351
352 if (areq)
353 __mmc_start_req(host, areq->mrq);
354
355 if (host->areq)
356 mmc_post_req(host, host->areq->mrq, 0);
357
358 host->areq = areq;
359 out:
360 if (error)
361 *error = err;
362 return data;
363 }
364 EXPORT_SYMBOL(mmc_start_req);
365
366 /**
367 * mmc_wait_for_req - start a request and wait for completion
368 * @host: MMC host to start command
369 * @mrq: MMC request to start
370 *
371 * Start a new MMC custom command request for a host, and wait
372 * for the command to complete. Does not attempt to parse the
373 * response.
374 */
375 void mmc_wait_for_req(struct mmc_host *host, struct mmc_request *mrq)
376 {
377 __mmc_start_req(host, mrq);
378 mmc_wait_for_req_done(host, mrq);
379 }
380 EXPORT_SYMBOL(mmc_wait_for_req);
381
382 /**
383 * mmc_wait_for_cmd - start a command and wait for completion
384 * @host: MMC host to start command
385 * @cmd: MMC command to start
386 * @retries: maximum number of retries
387 *
388 * Start a new MMC command for a host, and wait for the command
389 * to complete. Return any error that occurred while the command
390 * was executing. Do not attempt to parse the response.
391 */
392 int mmc_wait_for_cmd(struct mmc_host *host, struct mmc_command *cmd, int retries)
393 {
394 struct mmc_request mrq = {NULL};
395
396 WARN_ON(!host->claimed);
397
398 memset(cmd->resp, 0, sizeof(cmd->resp));
399 cmd->retries = retries;
400
401 mrq.cmd = cmd;
402 cmd->data = NULL;
403
404 mmc_wait_for_req(host, &mrq);
405
406 return cmd->error;
407 }
408
409 EXPORT_SYMBOL(mmc_wait_for_cmd);
410
411 /**
412 * mmc_set_data_timeout - set the timeout for a data command
413 * @data: data phase for command
414 * @card: the MMC card associated with the data transfer
415 *
416 * Computes the data timeout parameters according to the
417 * correct algorithm given the card type.
418 */
419 void mmc_set_data_timeout(struct mmc_data *data, const struct mmc_card *card)
420 {
421 unsigned int mult;
422
423 /*
424 * SDIO cards only define an upper 1 s limit on access.
425 */
426 if (mmc_card_sdio(card)) {
427 data->timeout_ns = 1000000000;
428 data->timeout_clks = 0;
429 return;
430 }
431
432 /*
433 * SD cards use a 100 multiplier rather than 10
434 */
435 mult = mmc_card_sd(card) ? 100 : 10;
436
437 /*
438 * Scale up the multiplier (and therefore the timeout) by
439 * the r2w factor for writes.
440 */
441 if (data->flags & MMC_DATA_WRITE)
442 mult <<= card->csd.r2w_factor;
443
444 data->timeout_ns = card->csd.tacc_ns * mult;
445 data->timeout_clks = card->csd.tacc_clks * mult;
446
447 /*
448 * SD cards also have an upper limit on the timeout.
449 */
450 if (mmc_card_sd(card)) {
451 unsigned int timeout_us, limit_us;
452
453 timeout_us = data->timeout_ns / 1000;
454 if (mmc_host_clk_rate(card->host))
455 timeout_us += data->timeout_clks * 1000 /
456 (mmc_host_clk_rate(card->host) / 1000);
457
458 if (data->flags & MMC_DATA_WRITE)
459 /*
460 * The limit is really 250 ms, but that is
461 * insufficient for some crappy cards.
462 */
463 limit_us = 300000;
464 else
465 limit_us = 100000;
466
467 /*
468 * SDHC cards always use these fixed values.
469 */
470 if (timeout_us > limit_us || mmc_card_blockaddr(card)) {
471 data->timeout_ns = limit_us * 1000;
472 data->timeout_clks = 0;
473 }
474 }
475 /*
476 * Some cards need very high timeouts if driven in SPI mode.
477 * The worst observed timeout was 900ms after writing a
478 * continuous stream of data until the internal logic
479 * overflowed.
480 */
481 if (mmc_host_is_spi(card->host)) {
482 if (data->flags & MMC_DATA_WRITE) {
483 if (data->timeout_ns < 1000000000)
484 data->timeout_ns = 1000000000; /* 1s */
485 } else {
486 if (data->timeout_ns < 100000000)
487 data->timeout_ns = 100000000; /* 100ms */
488 }
489 }
490 }
491 EXPORT_SYMBOL(mmc_set_data_timeout);
492
493 /**
494 * mmc_align_data_size - pads a transfer size to a more optimal value
495 * @card: the MMC card associated with the data transfer
496 * @sz: original transfer size
497 *
498 * Pads the original data size with a number of extra bytes in
499 * order to avoid controller bugs and/or performance hits
500 * (e.g. some controllers revert to PIO for certain sizes).
501 *
502 * Returns the improved size, which might be unmodified.
503 *
504 * Note that this function is only relevant when issuing a
505 * single scatter gather entry.
506 */
507 unsigned int mmc_align_data_size(struct mmc_card *card, unsigned int sz)
508 {
509 /*
510 * FIXME: We don't have a system for the controller to tell
511 * the core about its problems yet, so for now we just 32-bit
512 * align the size.
513 */
514 sz = ((sz + 3) / 4) * 4;
515
516 return sz;
517 }
518 EXPORT_SYMBOL(mmc_align_data_size);
519
520 /**
521 * mmc_host_enable - enable a host.
522 * @host: mmc host to enable
523 *
524 * Hosts that support power saving can use the 'enable' and 'disable'
525 * methods to exit and enter power saving states. For more information
526 * see comments for struct mmc_host_ops.
527 */
528 int mmc_host_enable(struct mmc_host *host)
529 {
530 if (!(host->caps & MMC_CAP_DISABLE))
531 return 0;
532
533 if (host->en_dis_recurs)
534 return 0;
535
536 if (host->nesting_cnt++)
537 return 0;
538
539 cancel_delayed_work_sync(&host->disable);
540
541 if (host->enabled)
542 return 0;
543
544 if (host->ops->enable) {
545 int err;
546
547 host->en_dis_recurs = 1;
548 err = host->ops->enable(host);
549 host->en_dis_recurs = 0;
550
551 if (err) {
552 pr_debug("%s: enable error %d\n",
553 mmc_hostname(host), err);
554 return err;
555 }
556 }
557 host->enabled = 1;
558 return 0;
559 }
560 EXPORT_SYMBOL(mmc_host_enable);
561
562 static int mmc_host_do_disable(struct mmc_host *host, int lazy)
563 {
564 if (host->ops->disable) {
565 int err;
566
567 host->en_dis_recurs = 1;
568 err = host->ops->disable(host, lazy);
569 host->en_dis_recurs = 0;
570
571 if (err < 0) {
572 pr_debug("%s: disable error %d\n",
573 mmc_hostname(host), err);
574 return err;
575 }
576 if (err > 0) {
577 unsigned long delay = msecs_to_jiffies(err);
578
579 mmc_schedule_delayed_work(&host->disable, delay);
580 }
581 }
582 host->enabled = 0;
583 return 0;
584 }
585
586 /**
587 * mmc_host_disable - disable a host.
588 * @host: mmc host to disable
589 *
590 * Hosts that support power saving can use the 'enable' and 'disable'
591 * methods to exit and enter power saving states. For more information
592 * see comments for struct mmc_host_ops.
593 */
594 int mmc_host_disable(struct mmc_host *host)
595 {
596 int err;
597
598 if (!(host->caps & MMC_CAP_DISABLE))
599 return 0;
600
601 if (host->en_dis_recurs)
602 return 0;
603
604 if (--host->nesting_cnt)
605 return 0;
606
607 if (!host->enabled)
608 return 0;
609
610 err = mmc_host_do_disable(host, 0);
611 return err;
612 }
613 EXPORT_SYMBOL(mmc_host_disable);
614
615 /**
616 * __mmc_claim_host - exclusively claim a host
617 * @host: mmc host to claim
618 * @abort: whether or not the operation should be aborted
619 *
620 * Claim a host for a set of operations. If @abort is non null and
621 * dereference a non-zero value then this will return prematurely with
622 * that non-zero value without acquiring the lock. Returns zero
623 * with the lock held otherwise.
624 */
625 int __mmc_claim_host(struct mmc_host *host, atomic_t *abort)
626 {
627 DECLARE_WAITQUEUE(wait, current);
628 unsigned long flags;
629 int stop;
630
631 might_sleep();
632
633 add_wait_queue(&host->wq, &wait);
634 spin_lock_irqsave(&host->lock, flags);
635 while (1) {
636 set_current_state(TASK_UNINTERRUPTIBLE);
637 stop = abort ? atomic_read(abort) : 0;
638 if (stop || !host->claimed || host->claimer == current)
639 break;
640 spin_unlock_irqrestore(&host->lock, flags);
641 schedule();
642 spin_lock_irqsave(&host->lock, flags);
643 }
644 set_current_state(TASK_RUNNING);
645 if (!stop) {
646 host->claimed = 1;
647 host->claimer = current;
648 host->claim_cnt += 1;
649 } else
650 wake_up(&host->wq);
651 spin_unlock_irqrestore(&host->lock, flags);
652 remove_wait_queue(&host->wq, &wait);
653 if (!stop)
654 mmc_host_enable(host);
655 return stop;
656 }
657
658 EXPORT_SYMBOL(__mmc_claim_host);
659
660 /**
661 * mmc_try_claim_host - try exclusively to claim a host
662 * @host: mmc host to claim
663 *
664 * Returns %1 if the host is claimed, %0 otherwise.
665 */
666 int mmc_try_claim_host(struct mmc_host *host)
667 {
668 int claimed_host = 0;
669 unsigned long flags;
670
671 spin_lock_irqsave(&host->lock, flags);
672 if (!host->claimed || host->claimer == current) {
673 host->claimed = 1;
674 host->claimer = current;
675 host->claim_cnt += 1;
676 claimed_host = 1;
677 }
678 spin_unlock_irqrestore(&host->lock, flags);
679 return claimed_host;
680 }
681 EXPORT_SYMBOL(mmc_try_claim_host);
682
683 /**
684 * mmc_do_release_host - release a claimed host
685 * @host: mmc host to release
686 *
687 * If you successfully claimed a host, this function will
688 * release it again.
689 */
690 void mmc_do_release_host(struct mmc_host *host)
691 {
692 unsigned long flags;
693
694 spin_lock_irqsave(&host->lock, flags);
695 if (--host->claim_cnt) {
696 /* Release for nested claim */
697 spin_unlock_irqrestore(&host->lock, flags);
698 } else {
699 host->claimed = 0;
700 host->claimer = NULL;
701 spin_unlock_irqrestore(&host->lock, flags);
702 wake_up(&host->wq);
703 }
704 }
705 EXPORT_SYMBOL(mmc_do_release_host);
706
707 void mmc_host_deeper_disable(struct work_struct *work)
708 {
709 struct mmc_host *host =
710 container_of(work, struct mmc_host, disable.work);
711
712 /* If the host is claimed then we do not want to disable it anymore */
713 if (!mmc_try_claim_host(host))
714 return;
715 mmc_host_do_disable(host, 1);
716 mmc_do_release_host(host);
717 }
718
719 /**
720 * mmc_host_lazy_disable - lazily disable a host.
721 * @host: mmc host to disable
722 *
723 * Hosts that support power saving can use the 'enable' and 'disable'
724 * methods to exit and enter power saving states. For more information
725 * see comments for struct mmc_host_ops.
726 */
727 int mmc_host_lazy_disable(struct mmc_host *host)
728 {
729 if (!(host->caps & MMC_CAP_DISABLE))
730 return 0;
731
732 if (host->en_dis_recurs)
733 return 0;
734
735 if (--host->nesting_cnt)
736 return 0;
737
738 if (!host->enabled)
739 return 0;
740
741 if (host->disable_delay) {
742 mmc_schedule_delayed_work(&host->disable,
743 msecs_to_jiffies(host->disable_delay));
744 return 0;
745 } else
746 return mmc_host_do_disable(host, 1);
747 }
748 EXPORT_SYMBOL(mmc_host_lazy_disable);
749
750 /**
751 * mmc_release_host - release a host
752 * @host: mmc host to release
753 *
754 * Release a MMC host, allowing others to claim the host
755 * for their operations.
756 */
757 void mmc_release_host(struct mmc_host *host)
758 {
759 WARN_ON(!host->claimed);
760
761 mmc_host_lazy_disable(host);
762
763 mmc_do_release_host(host);
764 }
765
766 EXPORT_SYMBOL(mmc_release_host);
767
768 /*
769 * Internal function that does the actual ios call to the host driver,
770 * optionally printing some debug output.
771 */
772 static inline void mmc_set_ios(struct mmc_host *host)
773 {
774 struct mmc_ios *ios = &host->ios;
775
776 pr_debug("%s: clock %uHz busmode %u powermode %u cs %u Vdd %u "
777 "width %u timing %u\n",
778 mmc_hostname(host), ios->clock, ios->bus_mode,
779 ios->power_mode, ios->chip_select, ios->vdd,
780 ios->bus_width, ios->timing);
781
782 if (ios->clock > 0)
783 mmc_set_ungated(host);
784 host->ops->set_ios(host, ios);
785 }
786
787 /*
788 * Control chip select pin on a host.
789 */
790 void mmc_set_chip_select(struct mmc_host *host, int mode)
791 {
792 mmc_host_clk_hold(host);
793 host->ios.chip_select = mode;
794 mmc_set_ios(host);
795 mmc_host_clk_release(host);
796 }
797
798 /*
799 * Sets the host clock to the highest possible frequency that
800 * is below "hz".
801 */
802 static void __mmc_set_clock(struct mmc_host *host, unsigned int hz)
803 {
804 WARN_ON(hz < host->f_min);
805
806 if (hz > host->f_max)
807 hz = host->f_max;
808
809 host->ios.clock = hz;
810 mmc_set_ios(host);
811 }
812
813 void mmc_set_clock(struct mmc_host *host, unsigned int hz)
814 {
815 mmc_host_clk_hold(host);
816 __mmc_set_clock(host, hz);
817 mmc_host_clk_release(host);
818 }
819
820 #ifdef CONFIG_MMC_CLKGATE
821 /*
822 * This gates the clock by setting it to 0 Hz.
823 */
824 void mmc_gate_clock(struct mmc_host *host)
825 {
826 unsigned long flags;
827
828 spin_lock_irqsave(&host->clk_lock, flags);
829 host->clk_old = host->ios.clock;
830 host->ios.clock = 0;
831 host->clk_gated = true;
832 spin_unlock_irqrestore(&host->clk_lock, flags);
833 mmc_set_ios(host);
834 }
835
836 /*
837 * This restores the clock from gating by using the cached
838 * clock value.
839 */
840 void mmc_ungate_clock(struct mmc_host *host)
841 {
842 /*
843 * We should previously have gated the clock, so the clock shall
844 * be 0 here! The clock may however be 0 during initialization,
845 * when some request operations are performed before setting
846 * the frequency. When ungate is requested in that situation
847 * we just ignore the call.
848 */
849 if (host->clk_old) {
850 BUG_ON(host->ios.clock);
851 /* This call will also set host->clk_gated to false */
852 __mmc_set_clock(host, host->clk_old);
853 }
854 }
855
856 void mmc_set_ungated(struct mmc_host *host)
857 {
858 unsigned long flags;
859
860 /*
861 * We've been given a new frequency while the clock is gated,
862 * so make sure we regard this as ungating it.
863 */
864 spin_lock_irqsave(&host->clk_lock, flags);
865 host->clk_gated = false;
866 spin_unlock_irqrestore(&host->clk_lock, flags);
867 }
868
869 #else
870 void mmc_set_ungated(struct mmc_host *host)
871 {
872 }
873 #endif
874
875 /*
876 * Change the bus mode (open drain/push-pull) of a host.
877 */
878 void mmc_set_bus_mode(struct mmc_host *host, unsigned int mode)
879 {
880 mmc_host_clk_hold(host);
881 host->ios.bus_mode = mode;
882 mmc_set_ios(host);
883 mmc_host_clk_release(host);
884 }
885
886 /*
887 * Change data bus width of a host.
888 */
889 void mmc_set_bus_width(struct mmc_host *host, unsigned int width)
890 {
891 mmc_host_clk_hold(host);
892 host->ios.bus_width = width;
893 mmc_set_ios(host);
894 mmc_host_clk_release(host);
895 }
896
897 /**
898 * mmc_vdd_to_ocrbitnum - Convert a voltage to the OCR bit number
899 * @vdd: voltage (mV)
900 * @low_bits: prefer low bits in boundary cases
901 *
902 * This function returns the OCR bit number according to the provided @vdd
903 * value. If conversion is not possible a negative errno value returned.
904 *
905 * Depending on the @low_bits flag the function prefers low or high OCR bits
906 * on boundary voltages. For example,
907 * with @low_bits = true, 3300 mV translates to ilog2(MMC_VDD_32_33);
908 * with @low_bits = false, 3300 mV translates to ilog2(MMC_VDD_33_34);
909 *
910 * Any value in the [1951:1999] range translates to the ilog2(MMC_VDD_20_21).
911 */
912 static int mmc_vdd_to_ocrbitnum(int vdd, bool low_bits)
913 {
914 const int max_bit = ilog2(MMC_VDD_35_36);
915 int bit;
916
917 if (vdd < 1650 || vdd > 3600)
918 return -EINVAL;
919
920 if (vdd >= 1650 && vdd <= 1950)
921 return ilog2(MMC_VDD_165_195);
922
923 if (low_bits)
924 vdd -= 1;
925
926 /* Base 2000 mV, step 100 mV, bit's base 8. */
927 bit = (vdd - 2000) / 100 + 8;
928 if (bit > max_bit)
929 return max_bit;
930 return bit;
931 }
932
933 /**
934 * mmc_vddrange_to_ocrmask - Convert a voltage range to the OCR mask
935 * @vdd_min: minimum voltage value (mV)
936 * @vdd_max: maximum voltage value (mV)
937 *
938 * This function returns the OCR mask bits according to the provided @vdd_min
939 * and @vdd_max values. If conversion is not possible the function returns 0.
940 *
941 * Notes wrt boundary cases:
942 * This function sets the OCR bits for all boundary voltages, for example
943 * [3300:3400] range is translated to MMC_VDD_32_33 | MMC_VDD_33_34 |
944 * MMC_VDD_34_35 mask.
945 */
946 u32 mmc_vddrange_to_ocrmask(int vdd_min, int vdd_max)
947 {
948 u32 mask = 0;
949
950 if (vdd_max < vdd_min)
951 return 0;
952
953 /* Prefer high bits for the boundary vdd_max values. */
954 vdd_max = mmc_vdd_to_ocrbitnum(vdd_max, false);
955 if (vdd_max < 0)
956 return 0;
957
958 /* Prefer low bits for the boundary vdd_min values. */
959 vdd_min = mmc_vdd_to_ocrbitnum(vdd_min, true);
960 if (vdd_min < 0)
961 return 0;
962
963 /* Fill the mask, from max bit to min bit. */
964 while (vdd_max >= vdd_min)
965 mask |= 1 << vdd_max--;
966
967 return mask;
968 }
969 EXPORT_SYMBOL(mmc_vddrange_to_ocrmask);
970
971 #ifdef CONFIG_REGULATOR
972
973 /**
974 * mmc_regulator_get_ocrmask - return mask of supported voltages
975 * @supply: regulator to use
976 *
977 * This returns either a negative errno, or a mask of voltages that
978 * can be provided to MMC/SD/SDIO devices using the specified voltage
979 * regulator. This would normally be called before registering the
980 * MMC host adapter.
981 */
982 int mmc_regulator_get_ocrmask(struct regulator *supply)
983 {
984 int result = 0;
985 int count;
986 int i;
987
988 count = regulator_count_voltages(supply);
989 if (count < 0)
990 return count;
991
992 for (i = 0; i < count; i++) {
993 int vdd_uV;
994 int vdd_mV;
995
996 vdd_uV = regulator_list_voltage(supply, i);
997 if (vdd_uV <= 0)
998 continue;
999
1000 vdd_mV = vdd_uV / 1000;
1001 result |= mmc_vddrange_to_ocrmask(vdd_mV, vdd_mV);
1002 }
1003
1004 return result;
1005 }
1006 EXPORT_SYMBOL(mmc_regulator_get_ocrmask);
1007
1008 /**
1009 * mmc_regulator_set_ocr - set regulator to match host->ios voltage
1010 * @mmc: the host to regulate
1011 * @supply: regulator to use
1012 * @vdd_bit: zero for power off, else a bit number (host->ios.vdd)
1013 *
1014 * Returns zero on success, else negative errno.
1015 *
1016 * MMC host drivers may use this to enable or disable a regulator using
1017 * a particular supply voltage. This would normally be called from the
1018 * set_ios() method.
1019 */
1020 int mmc_regulator_set_ocr(struct mmc_host *mmc,
1021 struct regulator *supply,
1022 unsigned short vdd_bit)
1023 {
1024 int result = 0;
1025 int min_uV, max_uV;
1026
1027 if (vdd_bit) {
1028 int tmp;
1029 int voltage;
1030
1031 /* REVISIT mmc_vddrange_to_ocrmask() may have set some
1032 * bits this regulator doesn't quite support ... don't
1033 * be too picky, most cards and regulators are OK with
1034 * a 0.1V range goof (it's a small error percentage).
1035 */
1036 tmp = vdd_bit - ilog2(MMC_VDD_165_195);
1037 if (tmp == 0) {
1038 min_uV = 1650 * 1000;
1039 max_uV = 1950 * 1000;
1040 } else {
1041 min_uV = 1900 * 1000 + tmp * 100 * 1000;
1042 max_uV = min_uV + 100 * 1000;
1043 }
1044
1045 /* avoid needless changes to this voltage; the regulator
1046 * might not allow this operation
1047 */
1048 voltage = regulator_get_voltage(supply);
1049 if (voltage < 0)
1050 result = voltage;
1051 else if (voltage < min_uV || voltage > max_uV)
1052 result = regulator_set_voltage(supply, min_uV, max_uV);
1053 else
1054 result = 0;
1055
1056 if (result == 0 && !mmc->regulator_enabled) {
1057 result = regulator_enable(supply);
1058 if (!result)
1059 mmc->regulator_enabled = true;
1060 }
1061 } else if (mmc->regulator_enabled) {
1062 result = regulator_disable(supply);
1063 if (result == 0)
1064 mmc->regulator_enabled = false;
1065 }
1066
1067 if (result)
1068 dev_err(mmc_dev(mmc),
1069 "could not set regulator OCR (%d)\n", result);
1070 return result;
1071 }
1072 EXPORT_SYMBOL(mmc_regulator_set_ocr);
1073
1074 #endif /* CONFIG_REGULATOR */
1075
1076 /*
1077 * Mask off any voltages we don't support and select
1078 * the lowest voltage
1079 */
1080 u32 mmc_select_voltage(struct mmc_host *host, u32 ocr)
1081 {
1082 int bit;
1083
1084 ocr &= host->ocr_avail;
1085
1086 bit = ffs(ocr);
1087 if (bit) {
1088 bit -= 1;
1089
1090 ocr &= 3 << bit;
1091
1092 mmc_host_clk_hold(host);
1093 host->ios.vdd = bit;
1094 mmc_set_ios(host);
1095 mmc_host_clk_release(host);
1096 } else {
1097 pr_warning("%s: host doesn't support card's voltages\n",
1098 mmc_hostname(host));
1099 ocr = 0;
1100 }
1101
1102 return ocr;
1103 }
1104
1105 int mmc_set_signal_voltage(struct mmc_host *host, int signal_voltage, bool cmd11)
1106 {
1107 struct mmc_command cmd = {0};
1108 int err = 0;
1109
1110 BUG_ON(!host);
1111
1112 /*
1113 * Send CMD11 only if the request is to switch the card to
1114 * 1.8V signalling.
1115 */
1116 if ((signal_voltage != MMC_SIGNAL_VOLTAGE_330) && cmd11) {
1117 cmd.opcode = SD_SWITCH_VOLTAGE;
1118 cmd.arg = 0;
1119 cmd.flags = MMC_RSP_R1 | MMC_CMD_AC;
1120
1121 err = mmc_wait_for_cmd(host, &cmd, 0);
1122 if (err)
1123 return err;
1124
1125 if (!mmc_host_is_spi(host) && (cmd.resp[0] & R1_ERROR))
1126 return -EIO;
1127 }
1128
1129 host->ios.signal_voltage = signal_voltage;
1130
1131 if (host->ops->start_signal_voltage_switch)
1132 err = host->ops->start_signal_voltage_switch(host, &host->ios);
1133
1134 return err;
1135 }
1136
1137 /*
1138 * Select timing parameters for host.
1139 */
1140 void mmc_set_timing(struct mmc_host *host, unsigned int timing)
1141 {
1142 mmc_host_clk_hold(host);
1143 host->ios.timing = timing;
1144 mmc_set_ios(host);
1145 mmc_host_clk_release(host);
1146 }
1147
1148 /*
1149 * Select appropriate driver type for host.
1150 */
1151 void mmc_set_driver_type(struct mmc_host *host, unsigned int drv_type)
1152 {
1153 mmc_host_clk_hold(host);
1154 host->ios.drv_type = drv_type;
1155 mmc_set_ios(host);
1156 mmc_host_clk_release(host);
1157 }
1158
1159 /*
1160 * Apply power to the MMC stack. This is a two-stage process.
1161 * First, we enable power to the card without the clock running.
1162 * We then wait a bit for the power to stabilise. Finally,
1163 * enable the bus drivers and clock to the card.
1164 *
1165 * We must _NOT_ enable the clock prior to power stablising.
1166 *
1167 * If a host does all the power sequencing itself, ignore the
1168 * initial MMC_POWER_UP stage.
1169 */
1170 static void mmc_power_up(struct mmc_host *host)
1171 {
1172 int bit;
1173
1174 mmc_host_clk_hold(host);
1175
1176 /* If ocr is set, we use it */
1177 if (host->ocr)
1178 bit = ffs(host->ocr) - 1;
1179 else
1180 bit = fls(host->ocr_avail) - 1;
1181
1182 host->ios.vdd = bit;
1183 if (mmc_host_is_spi(host))
1184 host->ios.chip_select = MMC_CS_HIGH;
1185 else
1186 host->ios.chip_select = MMC_CS_DONTCARE;
1187 host->ios.bus_mode = MMC_BUSMODE_PUSHPULL;
1188 host->ios.power_mode = MMC_POWER_UP;
1189 host->ios.bus_width = MMC_BUS_WIDTH_1;
1190 host->ios.timing = MMC_TIMING_LEGACY;
1191 mmc_set_ios(host);
1192
1193 /*
1194 * This delay should be sufficient to allow the power supply
1195 * to reach the minimum voltage.
1196 */
1197 mmc_delay(10);
1198
1199 host->ios.clock = host->f_init;
1200
1201 host->ios.power_mode = MMC_POWER_ON;
1202 mmc_set_ios(host);
1203
1204 /*
1205 * This delay must be at least 74 clock sizes, or 1 ms, or the
1206 * time required to reach a stable voltage.
1207 */
1208 mmc_delay(10);
1209
1210 mmc_host_clk_release(host);
1211 }
1212
1213 void mmc_power_off(struct mmc_host *host)
1214 {
1215 struct mmc_card *card;
1216 unsigned int notify_type;
1217 unsigned int timeout;
1218 int err;
1219
1220 mmc_host_clk_hold(host);
1221
1222 card = host->card;
1223 host->ios.clock = 0;
1224 host->ios.vdd = 0;
1225
1226 if (card && mmc_card_mmc(card) &&
1227 (card->poweroff_notify_state == MMC_POWERED_ON)) {
1228
1229 if (host->power_notify_type == MMC_HOST_PW_NOTIFY_SHORT) {
1230 notify_type = EXT_CSD_POWER_OFF_SHORT;
1231 timeout = card->ext_csd.generic_cmd6_time;
1232 card->poweroff_notify_state = MMC_POWEROFF_SHORT;
1233 } else {
1234 notify_type = EXT_CSD_POWER_OFF_LONG;
1235 timeout = card->ext_csd.power_off_longtime;
1236 card->poweroff_notify_state = MMC_POWEROFF_LONG;
1237 }
1238
1239 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
1240 EXT_CSD_POWER_OFF_NOTIFICATION,
1241 notify_type, timeout);
1242
1243 if (err && err != -EBADMSG)
1244 pr_err("Device failed to respond within %d poweroff "
1245 "time. Forcefully powering down the device\n",
1246 timeout);
1247
1248 /* Set the card state to no notification after the poweroff */
1249 card->poweroff_notify_state = MMC_NO_POWER_NOTIFICATION;
1250 }
1251
1252 /*
1253 * Reset ocr mask to be the highest possible voltage supported for
1254 * this mmc host. This value will be used at next power up.
1255 */
1256 host->ocr = 1 << (fls(host->ocr_avail) - 1);
1257
1258 if (!mmc_host_is_spi(host)) {
1259 host->ios.bus_mode = MMC_BUSMODE_OPENDRAIN;
1260 host->ios.chip_select = MMC_CS_DONTCARE;
1261 }
1262 host->ios.power_mode = MMC_POWER_OFF;
1263 host->ios.bus_width = MMC_BUS_WIDTH_1;
1264 host->ios.timing = MMC_TIMING_LEGACY;
1265 mmc_set_ios(host);
1266
1267 /*
1268 * Some configurations, such as the 802.11 SDIO card in the OLPC
1269 * XO-1.5, require a short delay after poweroff before the card
1270 * can be successfully turned on again.
1271 */
1272 mmc_delay(1);
1273
1274 mmc_host_clk_release(host);
1275 }
1276
1277 /*
1278 * Cleanup when the last reference to the bus operator is dropped.
1279 */
1280 static void __mmc_release_bus(struct mmc_host *host)
1281 {
1282 BUG_ON(!host);
1283 BUG_ON(host->bus_refs);
1284 BUG_ON(!host->bus_dead);
1285
1286 host->bus_ops = NULL;
1287 }
1288
1289 /*
1290 * Increase reference count of bus operator
1291 */
1292 static inline void mmc_bus_get(struct mmc_host *host)
1293 {
1294 unsigned long flags;
1295
1296 spin_lock_irqsave(&host->lock, flags);
1297 host->bus_refs++;
1298 spin_unlock_irqrestore(&host->lock, flags);
1299 }
1300
1301 /*
1302 * Decrease reference count of bus operator and free it if
1303 * it is the last reference.
1304 */
1305 static inline void mmc_bus_put(struct mmc_host *host)
1306 {
1307 unsigned long flags;
1308
1309 spin_lock_irqsave(&host->lock, flags);
1310 host->bus_refs--;
1311 if ((host->bus_refs == 0) && host->bus_ops)
1312 __mmc_release_bus(host);
1313 spin_unlock_irqrestore(&host->lock, flags);
1314 }
1315
1316 /*
1317 * Assign a mmc bus handler to a host. Only one bus handler may control a
1318 * host at any given time.
1319 */
1320 void mmc_attach_bus(struct mmc_host *host, const struct mmc_bus_ops *ops)
1321 {
1322 unsigned long flags;
1323
1324 BUG_ON(!host);
1325 BUG_ON(!ops);
1326
1327 WARN_ON(!host->claimed);
1328
1329 spin_lock_irqsave(&host->lock, flags);
1330
1331 BUG_ON(host->bus_ops);
1332 BUG_ON(host->bus_refs);
1333
1334 host->bus_ops = ops;
1335 host->bus_refs = 1;
1336 host->bus_dead = 0;
1337
1338 spin_unlock_irqrestore(&host->lock, flags);
1339 }
1340
1341 /*
1342 * Remove the current bus handler from a host.
1343 */
1344 void mmc_detach_bus(struct mmc_host *host)
1345 {
1346 unsigned long flags;
1347
1348 BUG_ON(!host);
1349
1350 WARN_ON(!host->claimed);
1351 WARN_ON(!host->bus_ops);
1352
1353 spin_lock_irqsave(&host->lock, flags);
1354
1355 host->bus_dead = 1;
1356
1357 spin_unlock_irqrestore(&host->lock, flags);
1358
1359 mmc_bus_put(host);
1360 }
1361
1362 /**
1363 * mmc_detect_change - process change of state on a MMC socket
1364 * @host: host which changed state.
1365 * @delay: optional delay to wait before detection (jiffies)
1366 *
1367 * MMC drivers should call this when they detect a card has been
1368 * inserted or removed. The MMC layer will confirm that any
1369 * present card is still functional, and initialize any newly
1370 * inserted.
1371 */
1372 void mmc_detect_change(struct mmc_host *host, unsigned long delay)
1373 {
1374 #ifdef CONFIG_MMC_DEBUG
1375 unsigned long flags;
1376 spin_lock_irqsave(&host->lock, flags);
1377 WARN_ON(host->removed);
1378 spin_unlock_irqrestore(&host->lock, flags);
1379 #endif
1380
1381 mmc_schedule_delayed_work(&host->detect, delay);
1382 }
1383
1384 EXPORT_SYMBOL(mmc_detect_change);
1385
1386 void mmc_init_erase(struct mmc_card *card)
1387 {
1388 unsigned int sz;
1389
1390 if (is_power_of_2(card->erase_size))
1391 card->erase_shift = ffs(card->erase_size) - 1;
1392 else
1393 card->erase_shift = 0;
1394
1395 /*
1396 * It is possible to erase an arbitrarily large area of an SD or MMC
1397 * card. That is not desirable because it can take a long time
1398 * (minutes) potentially delaying more important I/O, and also the
1399 * timeout calculations become increasingly hugely over-estimated.
1400 * Consequently, 'pref_erase' is defined as a guide to limit erases
1401 * to that size and alignment.
1402 *
1403 * For SD cards that define Allocation Unit size, limit erases to one
1404 * Allocation Unit at a time. For MMC cards that define High Capacity
1405 * Erase Size, whether it is switched on or not, limit to that size.
1406 * Otherwise just have a stab at a good value. For modern cards it
1407 * will end up being 4MiB. Note that if the value is too small, it
1408 * can end up taking longer to erase.
1409 */
1410 if (mmc_card_sd(card) && card->ssr.au) {
1411 card->pref_erase = card->ssr.au;
1412 card->erase_shift = ffs(card->ssr.au) - 1;
1413 } else if (card->ext_csd.hc_erase_size) {
1414 card->pref_erase = card->ext_csd.hc_erase_size;
1415 } else {
1416 sz = (card->csd.capacity << (card->csd.read_blkbits - 9)) >> 11;
1417 if (sz < 128)
1418 card->pref_erase = 512 * 1024 / 512;
1419 else if (sz < 512)
1420 card->pref_erase = 1024 * 1024 / 512;
1421 else if (sz < 1024)
1422 card->pref_erase = 2 * 1024 * 1024 / 512;
1423 else
1424 card->pref_erase = 4 * 1024 * 1024 / 512;
1425 if (card->pref_erase < card->erase_size)
1426 card->pref_erase = card->erase_size;
1427 else {
1428 sz = card->pref_erase % card->erase_size;
1429 if (sz)
1430 card->pref_erase += card->erase_size - sz;
1431 }
1432 }
1433 }
1434
1435 static unsigned int mmc_mmc_erase_timeout(struct mmc_card *card,
1436 unsigned int arg, unsigned int qty)
1437 {
1438 unsigned int erase_timeout;
1439
1440 if (card->ext_csd.erase_group_def & 1) {
1441 /* High Capacity Erase Group Size uses HC timeouts */
1442 if (arg == MMC_TRIM_ARG)
1443 erase_timeout = card->ext_csd.trim_timeout;
1444 else
1445 erase_timeout = card->ext_csd.hc_erase_timeout;
1446 } else {
1447 /* CSD Erase Group Size uses write timeout */
1448 unsigned int mult = (10 << card->csd.r2w_factor);
1449 unsigned int timeout_clks = card->csd.tacc_clks * mult;
1450 unsigned int timeout_us;
1451
1452 /* Avoid overflow: e.g. tacc_ns=80000000 mult=1280 */
1453 if (card->csd.tacc_ns < 1000000)
1454 timeout_us = (card->csd.tacc_ns * mult) / 1000;
1455 else
1456 timeout_us = (card->csd.tacc_ns / 1000) * mult;
1457
1458 /*
1459 * ios.clock is only a target. The real clock rate might be
1460 * less but not that much less, so fudge it by multiplying by 2.
1461 */
1462 timeout_clks <<= 1;
1463 timeout_us += (timeout_clks * 1000) /
1464 (mmc_host_clk_rate(card->host) / 1000);
1465
1466 erase_timeout = timeout_us / 1000;
1467
1468 /*
1469 * Theoretically, the calculation could underflow so round up
1470 * to 1ms in that case.
1471 */
1472 if (!erase_timeout)
1473 erase_timeout = 1;
1474 }
1475
1476 /* Multiplier for secure operations */
1477 if (arg & MMC_SECURE_ARGS) {
1478 if (arg == MMC_SECURE_ERASE_ARG)
1479 erase_timeout *= card->ext_csd.sec_erase_mult;
1480 else
1481 erase_timeout *= card->ext_csd.sec_trim_mult;
1482 }
1483
1484 erase_timeout *= qty;
1485
1486 /*
1487 * Ensure at least a 1 second timeout for SPI as per
1488 * 'mmc_set_data_timeout()'
1489 */
1490 if (mmc_host_is_spi(card->host) && erase_timeout < 1000)
1491 erase_timeout = 1000;
1492
1493 return erase_timeout;
1494 }
1495
1496 static unsigned int mmc_sd_erase_timeout(struct mmc_card *card,
1497 unsigned int arg,
1498 unsigned int qty)
1499 {
1500 unsigned int erase_timeout;
1501
1502 if (card->ssr.erase_timeout) {
1503 /* Erase timeout specified in SD Status Register (SSR) */
1504 erase_timeout = card->ssr.erase_timeout * qty +
1505 card->ssr.erase_offset;
1506 } else {
1507 /*
1508 * Erase timeout not specified in SD Status Register (SSR) so
1509 * use 250ms per write block.
1510 */
1511 erase_timeout = 250 * qty;
1512 }
1513
1514 /* Must not be less than 1 second */
1515 if (erase_timeout < 1000)
1516 erase_timeout = 1000;
1517
1518 return erase_timeout;
1519 }
1520
1521 static unsigned int mmc_erase_timeout(struct mmc_card *card,
1522 unsigned int arg,
1523 unsigned int qty)
1524 {
1525 if (mmc_card_sd(card))
1526 return mmc_sd_erase_timeout(card, arg, qty);
1527 else
1528 return mmc_mmc_erase_timeout(card, arg, qty);
1529 }
1530
1531 static int mmc_do_erase(struct mmc_card *card, unsigned int from,
1532 unsigned int to, unsigned int arg)
1533 {
1534 struct mmc_command cmd = {0};
1535 unsigned int qty = 0;
1536 int err;
1537
1538 /*
1539 * qty is used to calculate the erase timeout which depends on how many
1540 * erase groups (or allocation units in SD terminology) are affected.
1541 * We count erasing part of an erase group as one erase group.
1542 * For SD, the allocation units are always a power of 2. For MMC, the
1543 * erase group size is almost certainly also power of 2, but it does not
1544 * seem to insist on that in the JEDEC standard, so we fall back to
1545 * division in that case. SD may not specify an allocation unit size,
1546 * in which case the timeout is based on the number of write blocks.
1547 *
1548 * Note that the timeout for secure trim 2 will only be correct if the
1549 * number of erase groups specified is the same as the total of all
1550 * preceding secure trim 1 commands. Since the power may have been
1551 * lost since the secure trim 1 commands occurred, it is generally
1552 * impossible to calculate the secure trim 2 timeout correctly.
1553 */
1554 if (card->erase_shift)
1555 qty += ((to >> card->erase_shift) -
1556 (from >> card->erase_shift)) + 1;
1557 else if (mmc_card_sd(card))
1558 qty += to - from + 1;
1559 else
1560 qty += ((to / card->erase_size) -
1561 (from / card->erase_size)) + 1;
1562
1563 if (!mmc_card_blockaddr(card)) {
1564 from <<= 9;
1565 to <<= 9;
1566 }
1567
1568 if (mmc_card_sd(card))
1569 cmd.opcode = SD_ERASE_WR_BLK_START;
1570 else
1571 cmd.opcode = MMC_ERASE_GROUP_START;
1572 cmd.arg = from;
1573 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
1574 err = mmc_wait_for_cmd(card->host, &cmd, 0);
1575 if (err) {
1576 pr_err("mmc_erase: group start error %d, "
1577 "status %#x\n", err, cmd.resp[0]);
1578 err = -EIO;
1579 goto out;
1580 }
1581
1582 memset(&cmd, 0, sizeof(struct mmc_command));
1583 if (mmc_card_sd(card))
1584 cmd.opcode = SD_ERASE_WR_BLK_END;
1585 else
1586 cmd.opcode = MMC_ERASE_GROUP_END;
1587 cmd.arg = to;
1588 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
1589 err = mmc_wait_for_cmd(card->host, &cmd, 0);
1590 if (err) {
1591 pr_err("mmc_erase: group end error %d, status %#x\n",
1592 err, cmd.resp[0]);
1593 err = -EIO;
1594 goto out;
1595 }
1596
1597 memset(&cmd, 0, sizeof(struct mmc_command));
1598 cmd.opcode = MMC_ERASE;
1599 cmd.arg = arg;
1600 cmd.flags = MMC_RSP_SPI_R1B | MMC_RSP_R1B | MMC_CMD_AC;
1601 cmd.cmd_timeout_ms = mmc_erase_timeout(card, arg, qty);
1602 err = mmc_wait_for_cmd(card->host, &cmd, 0);
1603 if (err) {
1604 pr_err("mmc_erase: erase error %d, status %#x\n",
1605 err, cmd.resp[0]);
1606 err = -EIO;
1607 goto out;
1608 }
1609
1610 if (mmc_host_is_spi(card->host))
1611 goto out;
1612
1613 do {
1614 memset(&cmd, 0, sizeof(struct mmc_command));
1615 cmd.opcode = MMC_SEND_STATUS;
1616 cmd.arg = card->rca << 16;
1617 cmd.flags = MMC_RSP_R1 | MMC_CMD_AC;
1618 /* Do not retry else we can't see errors */
1619 err = mmc_wait_for_cmd(card->host, &cmd, 0);
1620 if (err || (cmd.resp[0] & 0xFDF92000)) {
1621 pr_err("error %d requesting status %#x\n",
1622 err, cmd.resp[0]);
1623 err = -EIO;
1624 goto out;
1625 }
1626 } while (!(cmd.resp[0] & R1_READY_FOR_DATA) ||
1627 R1_CURRENT_STATE(cmd.resp[0]) == R1_STATE_PRG);
1628 out:
1629 return err;
1630 }
1631
1632 /**
1633 * mmc_erase - erase sectors.
1634 * @card: card to erase
1635 * @from: first sector to erase
1636 * @nr: number of sectors to erase
1637 * @arg: erase command argument (SD supports only %MMC_ERASE_ARG)
1638 *
1639 * Caller must claim host before calling this function.
1640 */
1641 int mmc_erase(struct mmc_card *card, unsigned int from, unsigned int nr,
1642 unsigned int arg)
1643 {
1644 unsigned int rem, to = from + nr;
1645
1646 if (!(card->host->caps & MMC_CAP_ERASE) ||
1647 !(card->csd.cmdclass & CCC_ERASE))
1648 return -EOPNOTSUPP;
1649
1650 if (!card->erase_size)
1651 return -EOPNOTSUPP;
1652
1653 if (mmc_card_sd(card) && arg != MMC_ERASE_ARG)
1654 return -EOPNOTSUPP;
1655
1656 if ((arg & MMC_SECURE_ARGS) &&
1657 !(card->ext_csd.sec_feature_support & EXT_CSD_SEC_ER_EN))
1658 return -EOPNOTSUPP;
1659
1660 if ((arg & MMC_TRIM_ARGS) &&
1661 !(card->ext_csd.sec_feature_support & EXT_CSD_SEC_GB_CL_EN))
1662 return -EOPNOTSUPP;
1663
1664 if (arg == MMC_SECURE_ERASE_ARG) {
1665 if (from % card->erase_size || nr % card->erase_size)
1666 return -EINVAL;
1667 }
1668
1669 if (arg == MMC_ERASE_ARG) {
1670 rem = from % card->erase_size;
1671 if (rem) {
1672 rem = card->erase_size - rem;
1673 from += rem;
1674 if (nr > rem)
1675 nr -= rem;
1676 else
1677 return 0;
1678 }
1679 rem = nr % card->erase_size;
1680 if (rem)
1681 nr -= rem;
1682 }
1683
1684 if (nr == 0)
1685 return 0;
1686
1687 to = from + nr;
1688
1689 if (to <= from)
1690 return -EINVAL;
1691
1692 /* 'from' and 'to' are inclusive */
1693 to -= 1;
1694
1695 return mmc_do_erase(card, from, to, arg);
1696 }
1697 EXPORT_SYMBOL(mmc_erase);
1698
1699 int mmc_can_erase(struct mmc_card *card)
1700 {
1701 if ((card->host->caps & MMC_CAP_ERASE) &&
1702 (card->csd.cmdclass & CCC_ERASE) && card->erase_size)
1703 return 1;
1704 return 0;
1705 }
1706 EXPORT_SYMBOL(mmc_can_erase);
1707
1708 int mmc_can_trim(struct mmc_card *card)
1709 {
1710 if (card->ext_csd.sec_feature_support & EXT_CSD_SEC_GB_CL_EN)
1711 return 1;
1712 return 0;
1713 }
1714 EXPORT_SYMBOL(mmc_can_trim);
1715
1716 int mmc_can_sanitize(struct mmc_card *card)
1717 {
1718 if (card->ext_csd.sec_feature_support & EXT_CSD_SEC_SANITIZE)
1719 return 1;
1720 return 0;
1721 }
1722 EXPORT_SYMBOL(mmc_can_sanitize);
1723
1724 int mmc_can_secure_erase_trim(struct mmc_card *card)
1725 {
1726 if (card->ext_csd.sec_feature_support & EXT_CSD_SEC_ER_EN)
1727 return 1;
1728 return 0;
1729 }
1730 EXPORT_SYMBOL(mmc_can_secure_erase_trim);
1731
1732 int mmc_erase_group_aligned(struct mmc_card *card, unsigned int from,
1733 unsigned int nr)
1734 {
1735 if (!card->erase_size)
1736 return 0;
1737 if (from % card->erase_size || nr % card->erase_size)
1738 return 0;
1739 return 1;
1740 }
1741 EXPORT_SYMBOL(mmc_erase_group_aligned);
1742
1743 static unsigned int mmc_do_calc_max_discard(struct mmc_card *card,
1744 unsigned int arg)
1745 {
1746 struct mmc_host *host = card->host;
1747 unsigned int max_discard, x, y, qty = 0, max_qty, timeout;
1748 unsigned int last_timeout = 0;
1749
1750 if (card->erase_shift)
1751 max_qty = UINT_MAX >> card->erase_shift;
1752 else if (mmc_card_sd(card))
1753 max_qty = UINT_MAX;
1754 else
1755 max_qty = UINT_MAX / card->erase_size;
1756
1757 /* Find the largest qty with an OK timeout */
1758 do {
1759 y = 0;
1760 for (x = 1; x && x <= max_qty && max_qty - x >= qty; x <<= 1) {
1761 timeout = mmc_erase_timeout(card, arg, qty + x);
1762 if (timeout > host->max_discard_to)
1763 break;
1764 if (timeout < last_timeout)
1765 break;
1766 last_timeout = timeout;
1767 y = x;
1768 }
1769 qty += y;
1770 } while (y);
1771
1772 if (!qty)
1773 return 0;
1774
1775 if (qty == 1)
1776 return 1;
1777
1778 /* Convert qty to sectors */
1779 if (card->erase_shift)
1780 max_discard = --qty << card->erase_shift;
1781 else if (mmc_card_sd(card))
1782 max_discard = qty;
1783 else
1784 max_discard = --qty * card->erase_size;
1785
1786 return max_discard;
1787 }
1788
1789 unsigned int mmc_calc_max_discard(struct mmc_card *card)
1790 {
1791 struct mmc_host *host = card->host;
1792 unsigned int max_discard, max_trim;
1793
1794 if (!host->max_discard_to)
1795 return UINT_MAX;
1796
1797 /*
1798 * Without erase_group_def set, MMC erase timeout depends on clock
1799 * frequence which can change. In that case, the best choice is
1800 * just the preferred erase size.
1801 */
1802 if (mmc_card_mmc(card) && !(card->ext_csd.erase_group_def & 1))
1803 return card->pref_erase;
1804
1805 max_discard = mmc_do_calc_max_discard(card, MMC_ERASE_ARG);
1806 if (mmc_can_trim(card)) {
1807 max_trim = mmc_do_calc_max_discard(card, MMC_TRIM_ARG);
1808 if (max_trim < max_discard)
1809 max_discard = max_trim;
1810 } else if (max_discard < card->erase_size) {
1811 max_discard = 0;
1812 }
1813 pr_debug("%s: calculated max. discard sectors %u for timeout %u ms\n",
1814 mmc_hostname(host), max_discard, host->max_discard_to);
1815 return max_discard;
1816 }
1817 EXPORT_SYMBOL(mmc_calc_max_discard);
1818
1819 int mmc_set_blocklen(struct mmc_card *card, unsigned int blocklen)
1820 {
1821 struct mmc_command cmd = {0};
1822
1823 if (mmc_card_blockaddr(card) || mmc_card_ddr_mode(card))
1824 return 0;
1825
1826 cmd.opcode = MMC_SET_BLOCKLEN;
1827 cmd.arg = blocklen;
1828 cmd.flags = MMC_RSP_SPI_R1 | MMC_RSP_R1 | MMC_CMD_AC;
1829 return mmc_wait_for_cmd(card->host, &cmd, 5);
1830 }
1831 EXPORT_SYMBOL(mmc_set_blocklen);
1832
1833 static void mmc_hw_reset_for_init(struct mmc_host *host)
1834 {
1835 if (!(host->caps & MMC_CAP_HW_RESET) || !host->ops->hw_reset)
1836 return;
1837 mmc_host_clk_hold(host);
1838 host->ops->hw_reset(host);
1839 mmc_host_clk_release(host);
1840 }
1841
1842 int mmc_can_reset(struct mmc_card *card)
1843 {
1844 u8 rst_n_function;
1845
1846 if (!mmc_card_mmc(card))
1847 return 0;
1848 rst_n_function = card->ext_csd.rst_n_function;
1849 if ((rst_n_function & EXT_CSD_RST_N_EN_MASK) != EXT_CSD_RST_N_ENABLED)
1850 return 0;
1851 return 1;
1852 }
1853 EXPORT_SYMBOL(mmc_can_reset);
1854
1855 static int mmc_do_hw_reset(struct mmc_host *host, int check)
1856 {
1857 struct mmc_card *card = host->card;
1858
1859 if (!host->bus_ops->power_restore)
1860 return -EOPNOTSUPP;
1861
1862 if (!(host->caps & MMC_CAP_HW_RESET) || !host->ops->hw_reset)
1863 return -EOPNOTSUPP;
1864
1865 if (!card)
1866 return -EINVAL;
1867
1868 if (!mmc_can_reset(card))
1869 return -EOPNOTSUPP;
1870
1871 mmc_host_clk_hold(host);
1872 mmc_set_clock(host, host->f_init);
1873
1874 host->ops->hw_reset(host);
1875
1876 /* If the reset has happened, then a status command will fail */
1877 if (check) {
1878 struct mmc_command cmd = {0};
1879 int err;
1880
1881 cmd.opcode = MMC_SEND_STATUS;
1882 if (!mmc_host_is_spi(card->host))
1883 cmd.arg = card->rca << 16;
1884 cmd.flags = MMC_RSP_SPI_R2 | MMC_RSP_R1 | MMC_CMD_AC;
1885 err = mmc_wait_for_cmd(card->host, &cmd, 0);
1886 if (!err) {
1887 mmc_host_clk_release(host);
1888 return -ENOSYS;
1889 }
1890 }
1891
1892 host->card->state &= ~(MMC_STATE_HIGHSPEED | MMC_STATE_HIGHSPEED_DDR);
1893 if (mmc_host_is_spi(host)) {
1894 host->ios.chip_select = MMC_CS_HIGH;
1895 host->ios.bus_mode = MMC_BUSMODE_PUSHPULL;
1896 } else {
1897 host->ios.chip_select = MMC_CS_DONTCARE;
1898 host->ios.bus_mode = MMC_BUSMODE_OPENDRAIN;
1899 }
1900 host->ios.bus_width = MMC_BUS_WIDTH_1;
1901 host->ios.timing = MMC_TIMING_LEGACY;
1902 mmc_set_ios(host);
1903
1904 mmc_host_clk_release(host);
1905
1906 return host->bus_ops->power_restore(host);
1907 }
1908
1909 int mmc_hw_reset(struct mmc_host *host)
1910 {
1911 return mmc_do_hw_reset(host, 0);
1912 }
1913 EXPORT_SYMBOL(mmc_hw_reset);
1914
1915 int mmc_hw_reset_check(struct mmc_host *host)
1916 {
1917 return mmc_do_hw_reset(host, 1);
1918 }
1919 EXPORT_SYMBOL(mmc_hw_reset_check);
1920
1921 static int mmc_rescan_try_freq(struct mmc_host *host, unsigned freq)
1922 {
1923 host->f_init = freq;
1924
1925 #ifdef CONFIG_MMC_DEBUG
1926 pr_info("%s: %s: trying to init card at %u Hz\n",
1927 mmc_hostname(host), __func__, host->f_init);
1928 #endif
1929 mmc_power_up(host);
1930
1931 /*
1932 * Some eMMCs (with VCCQ always on) may not be reset after power up, so
1933 * do a hardware reset if possible.
1934 */
1935 mmc_hw_reset_for_init(host);
1936
1937 /*
1938 * sdio_reset sends CMD52 to reset card. Since we do not know
1939 * if the card is being re-initialized, just send it. CMD52
1940 * should be ignored by SD/eMMC cards.
1941 */
1942 sdio_reset(host);
1943 mmc_go_idle(host);
1944
1945 mmc_send_if_cond(host, host->ocr_avail);
1946
1947 /* Order's important: probe SDIO, then SD, then MMC */
1948 if (!mmc_attach_sdio(host))
1949 return 0;
1950 if (!mmc_attach_sd(host))
1951 return 0;
1952 if (!mmc_attach_mmc(host))
1953 return 0;
1954
1955 mmc_power_off(host);
1956 return -EIO;
1957 }
1958
1959 void mmc_rescan(struct work_struct *work)
1960 {
1961 static const unsigned freqs[] = { 400000, 300000, 200000, 100000 };
1962 struct mmc_host *host =
1963 container_of(work, struct mmc_host, detect.work);
1964 int i;
1965
1966 if (host->rescan_disable)
1967 return;
1968
1969 mmc_bus_get(host);
1970
1971 /*
1972 * if there is a _removable_ card registered, check whether it is
1973 * still present
1974 */
1975 if (host->bus_ops && host->bus_ops->detect && !host->bus_dead
1976 && !(host->caps & MMC_CAP_NONREMOVABLE))
1977 host->bus_ops->detect(host);
1978
1979 /*
1980 * Let mmc_bus_put() free the bus/bus_ops if we've found that
1981 * the card is no longer present.
1982 */
1983 mmc_bus_put(host);
1984 mmc_bus_get(host);
1985
1986 /* if there still is a card present, stop here */
1987 if (host->bus_ops != NULL) {
1988 mmc_bus_put(host);
1989 goto out;
1990 }
1991
1992 /*
1993 * Only we can add a new handler, so it's safe to
1994 * release the lock here.
1995 */
1996 mmc_bus_put(host);
1997
1998 if (host->ops->get_cd && host->ops->get_cd(host) == 0)
1999 goto out;
2000
2001 mmc_claim_host(host);
2002 for (i = 0; i < ARRAY_SIZE(freqs); i++) {
2003 if (!mmc_rescan_try_freq(host, max(freqs[i], host->f_min)))
2004 break;
2005 if (freqs[i] <= host->f_min)
2006 break;
2007 }
2008 mmc_release_host(host);
2009
2010 out:
2011 if (host->caps & MMC_CAP_NEEDS_POLL)
2012 mmc_schedule_delayed_work(&host->detect, HZ);
2013 }
2014
2015 void mmc_start_host(struct mmc_host *host)
2016 {
2017 mmc_power_off(host);
2018 mmc_detect_change(host, 0);
2019 }
2020
2021 void mmc_stop_host(struct mmc_host *host)
2022 {
2023 #ifdef CONFIG_MMC_DEBUG
2024 unsigned long flags;
2025 spin_lock_irqsave(&host->lock, flags);
2026 host->removed = 1;
2027 spin_unlock_irqrestore(&host->lock, flags);
2028 #endif
2029
2030 if (host->caps & MMC_CAP_DISABLE)
2031 cancel_delayed_work(&host->disable);
2032 cancel_delayed_work_sync(&host->detect);
2033 mmc_flush_scheduled_work();
2034
2035 /* clear pm flags now and let card drivers set them as needed */
2036 host->pm_flags = 0;
2037
2038 mmc_bus_get(host);
2039 if (host->bus_ops && !host->bus_dead) {
2040 if (host->bus_ops->remove)
2041 host->bus_ops->remove(host);
2042
2043 mmc_claim_host(host);
2044 mmc_detach_bus(host);
2045 mmc_power_off(host);
2046 mmc_release_host(host);
2047 mmc_bus_put(host);
2048 return;
2049 }
2050 mmc_bus_put(host);
2051
2052 BUG_ON(host->card);
2053
2054 mmc_power_off(host);
2055 }
2056
2057 int mmc_power_save_host(struct mmc_host *host)
2058 {
2059 int ret = 0;
2060
2061 #ifdef CONFIG_MMC_DEBUG
2062 pr_info("%s: %s: powering down\n", mmc_hostname(host), __func__);
2063 #endif
2064
2065 mmc_bus_get(host);
2066
2067 if (!host->bus_ops || host->bus_dead || !host->bus_ops->power_restore) {
2068 mmc_bus_put(host);
2069 return -EINVAL;
2070 }
2071
2072 if (host->bus_ops->power_save)
2073 ret = host->bus_ops->power_save(host);
2074
2075 mmc_bus_put(host);
2076
2077 mmc_power_off(host);
2078
2079 return ret;
2080 }
2081 EXPORT_SYMBOL(mmc_power_save_host);
2082
2083 int mmc_power_restore_host(struct mmc_host *host)
2084 {
2085 int ret;
2086
2087 #ifdef CONFIG_MMC_DEBUG
2088 pr_info("%s: %s: powering up\n", mmc_hostname(host), __func__);
2089 #endif
2090
2091 mmc_bus_get(host);
2092
2093 if (!host->bus_ops || host->bus_dead || !host->bus_ops->power_restore) {
2094 mmc_bus_put(host);
2095 return -EINVAL;
2096 }
2097
2098 mmc_power_up(host);
2099 ret = host->bus_ops->power_restore(host);
2100
2101 mmc_bus_put(host);
2102
2103 return ret;
2104 }
2105 EXPORT_SYMBOL(mmc_power_restore_host);
2106
2107 int mmc_card_awake(struct mmc_host *host)
2108 {
2109 int err = -ENOSYS;
2110
2111 mmc_bus_get(host);
2112
2113 if (host->bus_ops && !host->bus_dead && host->bus_ops->awake)
2114 err = host->bus_ops->awake(host);
2115
2116 mmc_bus_put(host);
2117
2118 return err;
2119 }
2120 EXPORT_SYMBOL(mmc_card_awake);
2121
2122 int mmc_card_sleep(struct mmc_host *host)
2123 {
2124 int err = -ENOSYS;
2125
2126 mmc_bus_get(host);
2127
2128 if (host->bus_ops && !host->bus_dead && host->bus_ops->awake)
2129 err = host->bus_ops->sleep(host);
2130
2131 mmc_bus_put(host);
2132
2133 return err;
2134 }
2135 EXPORT_SYMBOL(mmc_card_sleep);
2136
2137 int mmc_card_can_sleep(struct mmc_host *host)
2138 {
2139 struct mmc_card *card = host->card;
2140
2141 if (card && mmc_card_mmc(card) && card->ext_csd.rev >= 3)
2142 return 1;
2143 return 0;
2144 }
2145 EXPORT_SYMBOL(mmc_card_can_sleep);
2146
2147 #ifdef CONFIG_PM
2148
2149 /**
2150 * mmc_suspend_host - suspend a host
2151 * @host: mmc host
2152 */
2153 int mmc_suspend_host(struct mmc_host *host)
2154 {
2155 int err = 0;
2156
2157 if (host->caps & MMC_CAP_DISABLE)
2158 cancel_delayed_work(&host->disable);
2159 cancel_delayed_work(&host->detect);
2160 mmc_flush_scheduled_work();
2161
2162 mmc_bus_get(host);
2163 if (host->bus_ops && !host->bus_dead) {
2164 if (host->bus_ops->suspend)
2165 err = host->bus_ops->suspend(host);
2166 if (err == -ENOSYS || !host->bus_ops->resume) {
2167 /*
2168 * We simply "remove" the card in this case.
2169 * It will be redetected on resume.
2170 */
2171 if (host->bus_ops->remove)
2172 host->bus_ops->remove(host);
2173 mmc_claim_host(host);
2174 mmc_detach_bus(host);
2175 mmc_power_off(host);
2176 mmc_release_host(host);
2177 host->pm_flags = 0;
2178 err = 0;
2179 }
2180 }
2181 mmc_bus_put(host);
2182
2183 if (!err && !mmc_card_keep_power(host))
2184 mmc_power_off(host);
2185
2186 return err;
2187 }
2188
2189 EXPORT_SYMBOL(mmc_suspend_host);
2190
2191 /**
2192 * mmc_resume_host - resume a previously suspended host
2193 * @host: mmc host
2194 */
2195 int mmc_resume_host(struct mmc_host *host)
2196 {
2197 int err = 0;
2198
2199 mmc_bus_get(host);
2200 if (host->bus_ops && !host->bus_dead) {
2201 if (!mmc_card_keep_power(host)) {
2202 mmc_power_up(host);
2203 mmc_select_voltage(host, host->ocr);
2204 /*
2205 * Tell runtime PM core we just powered up the card,
2206 * since it still believes the card is powered off.
2207 * Note that currently runtime PM is only enabled
2208 * for SDIO cards that are MMC_CAP_POWER_OFF_CARD
2209 */
2210 if (mmc_card_sdio(host->card) &&
2211 (host->caps & MMC_CAP_POWER_OFF_CARD)) {
2212 pm_runtime_disable(&host->card->dev);
2213 pm_runtime_set_active(&host->card->dev);
2214 pm_runtime_enable(&host->card->dev);
2215 }
2216 }
2217 BUG_ON(!host->bus_ops->resume);
2218 err = host->bus_ops->resume(host);
2219 if (err) {
2220 pr_warning("%s: error %d during resume "
2221 "(card was removed?)\n",
2222 mmc_hostname(host), err);
2223 err = 0;
2224 }
2225 }
2226 host->pm_flags &= ~MMC_PM_KEEP_POWER;
2227 mmc_bus_put(host);
2228
2229 return err;
2230 }
2231 EXPORT_SYMBOL(mmc_resume_host);
2232
2233 /* Do the card removal on suspend if card is assumed removeable
2234 * Do that in pm notifier while userspace isn't yet frozen, so we will be able
2235 to sync the card.
2236 */
2237 int mmc_pm_notify(struct notifier_block *notify_block,
2238 unsigned long mode, void *unused)
2239 {
2240 struct mmc_host *host = container_of(
2241 notify_block, struct mmc_host, pm_notify);
2242 unsigned long flags;
2243
2244
2245 switch (mode) {
2246 case PM_HIBERNATION_PREPARE:
2247 case PM_SUSPEND_PREPARE:
2248
2249 spin_lock_irqsave(&host->lock, flags);
2250 host->rescan_disable = 1;
2251 host->power_notify_type = MMC_HOST_PW_NOTIFY_SHORT;
2252 spin_unlock_irqrestore(&host->lock, flags);
2253 cancel_delayed_work_sync(&host->detect);
2254
2255 if (!host->bus_ops || host->bus_ops->suspend)
2256 break;
2257
2258 mmc_claim_host(host);
2259
2260 if (host->bus_ops->remove)
2261 host->bus_ops->remove(host);
2262
2263 mmc_detach_bus(host);
2264 mmc_power_off(host);
2265 mmc_release_host(host);
2266 host->pm_flags = 0;
2267 break;
2268
2269 case PM_POST_SUSPEND:
2270 case PM_POST_HIBERNATION:
2271 case PM_POST_RESTORE:
2272
2273 spin_lock_irqsave(&host->lock, flags);
2274 host->rescan_disable = 0;
2275 host->power_notify_type = MMC_HOST_PW_NOTIFY_LONG;
2276 spin_unlock_irqrestore(&host->lock, flags);
2277 mmc_detect_change(host, 0);
2278
2279 }
2280
2281 return 0;
2282 }
2283 #endif
2284
2285 static int __init mmc_init(void)
2286 {
2287 int ret;
2288
2289 workqueue = alloc_ordered_workqueue("kmmcd", 0);
2290 if (!workqueue)
2291 return -ENOMEM;
2292
2293 ret = mmc_register_bus();
2294 if (ret)
2295 goto destroy_workqueue;
2296
2297 ret = mmc_register_host_class();
2298 if (ret)
2299 goto unregister_bus;
2300
2301 ret = sdio_register_bus();
2302 if (ret)
2303 goto unregister_host_class;
2304
2305 return 0;
2306
2307 unregister_host_class:
2308 mmc_unregister_host_class();
2309 unregister_bus:
2310 mmc_unregister_bus();
2311 destroy_workqueue:
2312 destroy_workqueue(workqueue);
2313
2314 return ret;
2315 }
2316
2317 static void __exit mmc_exit(void)
2318 {
2319 sdio_unregister_bus();
2320 mmc_unregister_host_class();
2321 mmc_unregister_bus();
2322 destroy_workqueue(workqueue);
2323 }
2324
2325 subsys_initcall(mmc_init);
2326 module_exit(mmc_exit);
2327
2328 MODULE_LICENSE("GPL");
This page took 0.108569 seconds and 4 git commands to generate.