]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/mmc/core/core.c
mmc: separate out reading EXT_CSD
[net-next-2.6.git] / drivers / mmc / core / core.c
CommitLineData
1da177e4 1/*
aaac1b47 2 * linux/drivers/mmc/core/core.c
1da177e4
LT
3 *
4 * Copyright (C) 2003-2004 Russell King, All Rights Reserved.
5b4fd9ae 5 * SD support Copyright (C) 2004 Ian Molton, All Rights Reserved.
b855885e 6 * Copyright (C) 2005-2007 Pierre Ossman, All Rights Reserved.
bce40a36 7 * MMCv4 support Copyright (C) 2006 Philip Langdale, All Rights Reserved.
1da177e4
LT
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 */
1da177e4
LT
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>
b57c43ad
PO
21#include <asm/scatterlist.h>
22#include <linux/scatterlist.h>
1da177e4
LT
23
24#include <linux/mmc/card.h>
25#include <linux/mmc/host.h>
da7fbe58
PO
26#include <linux/mmc/mmc.h>
27#include <linux/mmc/sd.h>
1da177e4 28
aaac1b47 29#include "core.h"
da7fbe58
PO
30#include "sysfs.h"
31
32#include "mmc_ops.h"
33#include "sd_ops.h"
1da177e4 34
7ea239d9
PO
35extern int mmc_attach_mmc(struct mmc_host *host, u32 ocr);
36extern int mmc_attach_sd(struct mmc_host *host, u32 ocr);
1da177e4
LT
37
38/**
fe10c6ab
RK
39 * mmc_request_done - finish processing an MMC request
40 * @host: MMC host which completed request
41 * @mrq: MMC request which request
1da177e4
LT
42 *
43 * MMC drivers should call this function when they have completed
fe10c6ab 44 * their processing of a request.
1da177e4
LT
45 */
46void mmc_request_done(struct mmc_host *host, struct mmc_request *mrq)
47{
48 struct mmc_command *cmd = mrq->cmd;
920e70c5
RK
49 int err = cmd->error;
50
51 pr_debug("%s: req done (CMD%u): %d/%d/%d: %08x %08x %08x %08x\n",
52 mmc_hostname(host), cmd->opcode, err,
53 mrq->data ? mrq->data->error : 0,
54 mrq->stop ? mrq->stop->error : 0,
55 cmd->resp[0], cmd->resp[1], cmd->resp[2], cmd->resp[3]);
1da177e4
LT
56
57 if (err && cmd->retries) {
58 cmd->retries--;
59 cmd->error = 0;
60 host->ops->request(host, mrq);
61 } else if (mrq->done) {
62 mrq->done(mrq);
63 }
64}
65
66EXPORT_SYMBOL(mmc_request_done);
67
68/**
69 * mmc_start_request - start a command on a host
70 * @host: MMC host to start command on
71 * @mrq: MMC request to start
72 *
73 * Queue a command on the specified host. We expect the
74 * caller to be holding the host lock with interrupts disabled.
75 */
76void
77mmc_start_request(struct mmc_host *host, struct mmc_request *mrq)
78{
976d9276
PO
79#ifdef CONFIG_MMC_DEBUG
80 unsigned int i, sz;
81#endif
82
920e70c5
RK
83 pr_debug("%s: starting CMD%u arg %08x flags %08x\n",
84 mmc_hostname(host), mrq->cmd->opcode,
85 mrq->cmd->arg, mrq->cmd->flags);
1da177e4 86
f22ee4ed 87 WARN_ON(!host->claimed);
1da177e4
LT
88
89 mrq->cmd->error = 0;
90 mrq->cmd->mrq = mrq;
91 if (mrq->data) {
fe4a3c7a 92 BUG_ON(mrq->data->blksz > host->max_blk_size);
55db890a
PO
93 BUG_ON(mrq->data->blocks > host->max_blk_count);
94 BUG_ON(mrq->data->blocks * mrq->data->blksz >
95 host->max_req_size);
fe4a3c7a 96
976d9276
PO
97#ifdef CONFIG_MMC_DEBUG
98 sz = 0;
99 for (i = 0;i < mrq->data->sg_len;i++)
100 sz += mrq->data->sg[i].length;
101 BUG_ON(sz != mrq->data->blocks * mrq->data->blksz);
102#endif
103
1da177e4
LT
104 mrq->cmd->data = mrq->data;
105 mrq->data->error = 0;
106 mrq->data->mrq = mrq;
107 if (mrq->stop) {
108 mrq->data->stop = mrq->stop;
109 mrq->stop->error = 0;
110 mrq->stop->mrq = mrq;
111 }
112 }
113 host->ops->request(host, mrq);
114}
115
116EXPORT_SYMBOL(mmc_start_request);
117
118static void mmc_wait_done(struct mmc_request *mrq)
119{
120 complete(mrq->done_data);
121}
122
123int mmc_wait_for_req(struct mmc_host *host, struct mmc_request *mrq)
124{
0afffc72 125 DECLARE_COMPLETION_ONSTACK(complete);
1da177e4
LT
126
127 mrq->done_data = &complete;
128 mrq->done = mmc_wait_done;
129
130 mmc_start_request(host, mrq);
131
132 wait_for_completion(&complete);
133
134 return 0;
135}
136
137EXPORT_SYMBOL(mmc_wait_for_req);
138
139/**
140 * mmc_wait_for_cmd - start a command and wait for completion
141 * @host: MMC host to start command
142 * @cmd: MMC command to start
143 * @retries: maximum number of retries
144 *
145 * Start a new MMC command for a host, and wait for the command
146 * to complete. Return any error that occurred while the command
147 * was executing. Do not attempt to parse the response.
148 */
149int mmc_wait_for_cmd(struct mmc_host *host, struct mmc_command *cmd, int retries)
150{
151 struct mmc_request mrq;
152
f22ee4ed 153 BUG_ON(!host->claimed);
1da177e4
LT
154
155 memset(&mrq, 0, sizeof(struct mmc_request));
156
157 memset(cmd->resp, 0, sizeof(cmd->resp));
158 cmd->retries = retries;
159
160 mrq.cmd = cmd;
161 cmd->data = NULL;
162
163 mmc_wait_for_req(host, &mrq);
164
165 return cmd->error;
166}
167
168EXPORT_SYMBOL(mmc_wait_for_cmd);
169
d773d725
RK
170/**
171 * mmc_set_data_timeout - set the timeout for a data command
172 * @data: data phase for command
173 * @card: the MMC card associated with the data transfer
174 * @write: flag to differentiate reads from writes
175 */
176void mmc_set_data_timeout(struct mmc_data *data, const struct mmc_card *card,
177 int write)
178{
179 unsigned int mult;
180
181 /*
182 * SD cards use a 100 multiplier rather than 10
183 */
184 mult = mmc_card_sd(card) ? 100 : 10;
185
186 /*
187 * Scale up the multiplier (and therefore the timeout) by
188 * the r2w factor for writes.
189 */
190 if (write)
191 mult <<= card->csd.r2w_factor;
192
193 data->timeout_ns = card->csd.tacc_ns * mult;
194 data->timeout_clks = card->csd.tacc_clks * mult;
195
196 /*
197 * SD cards also have an upper limit on the timeout.
198 */
199 if (mmc_card_sd(card)) {
200 unsigned int timeout_us, limit_us;
201
202 timeout_us = data->timeout_ns / 1000;
203 timeout_us += data->timeout_clks * 1000 /
204 (card->host->ios.clock / 1000);
205
206 if (write)
207 limit_us = 250000;
208 else
209 limit_us = 100000;
210
fba68bd2
PL
211 /*
212 * SDHC cards always use these fixed values.
213 */
214 if (timeout_us > limit_us || mmc_card_blockaddr(card)) {
d773d725
RK
215 data->timeout_ns = limit_us * 1000;
216 data->timeout_clks = 0;
217 }
218 }
219}
220EXPORT_SYMBOL(mmc_set_data_timeout);
221
1da177e4
LT
222/**
223 * __mmc_claim_host - exclusively claim a host
224 * @host: mmc host to claim
225 * @card: mmc card to claim host for
226 *
227 * Claim a host for a set of operations. If a valid card
228 * is passed and this wasn't the last card selected, select
229 * the card before returning.
230 *
231 * Note: you should use mmc_card_claim_host or mmc_claim_host.
232 */
b855885e 233void mmc_claim_host(struct mmc_host *host)
1da177e4
LT
234{
235 DECLARE_WAITQUEUE(wait, current);
236 unsigned long flags;
1da177e4
LT
237
238 add_wait_queue(&host->wq, &wait);
239 spin_lock_irqsave(&host->lock, flags);
240 while (1) {
241 set_current_state(TASK_UNINTERRUPTIBLE);
f22ee4ed 242 if (!host->claimed)
1da177e4
LT
243 break;
244 spin_unlock_irqrestore(&host->lock, flags);
245 schedule();
246 spin_lock_irqsave(&host->lock, flags);
247 }
248 set_current_state(TASK_RUNNING);
f22ee4ed 249 host->claimed = 1;
1da177e4
LT
250 spin_unlock_irqrestore(&host->lock, flags);
251 remove_wait_queue(&host->wq, &wait);
1da177e4
LT
252}
253
b855885e 254EXPORT_SYMBOL(mmc_claim_host);
1da177e4
LT
255
256/**
257 * mmc_release_host - release a host
258 * @host: mmc host to release
259 *
260 * Release a MMC host, allowing others to claim the host
261 * for their operations.
262 */
263void mmc_release_host(struct mmc_host *host)
264{
265 unsigned long flags;
266
f22ee4ed 267 BUG_ON(!host->claimed);
1da177e4
LT
268
269 spin_lock_irqsave(&host->lock, flags);
f22ee4ed 270 host->claimed = 0;
1da177e4
LT
271 spin_unlock_irqrestore(&host->lock, flags);
272
273 wake_up(&host->wq);
274}
275
276EXPORT_SYMBOL(mmc_release_host);
277
7ea239d9
PO
278/*
279 * Internal function that does the actual ios call to the host driver,
280 * optionally printing some debug output.
281 */
920e70c5
RK
282static inline void mmc_set_ios(struct mmc_host *host)
283{
284 struct mmc_ios *ios = &host->ios;
285
cd9277c0
PO
286 pr_debug("%s: clock %uHz busmode %u powermode %u cs %u Vdd %u "
287 "width %u timing %u\n",
920e70c5
RK
288 mmc_hostname(host), ios->clock, ios->bus_mode,
289 ios->power_mode, ios->chip_select, ios->vdd,
cd9277c0 290 ios->bus_width, ios->timing);
fba68bd2 291
920e70c5
RK
292 host->ops->set_ios(host, ios);
293}
294
7ea239d9
PO
295/*
296 * Control chip select pin on a host.
297 */
da7fbe58 298void mmc_set_chip_select(struct mmc_host *host, int mode)
1da177e4 299{
da7fbe58
PO
300 host->ios.chip_select = mode;
301 mmc_set_ios(host);
1da177e4
LT
302}
303
7ea239d9
PO
304/*
305 * Sets the host clock to the highest possible frequency that
306 * is below "hz".
307 */
308void mmc_set_clock(struct mmc_host *host, unsigned int hz)
309{
310 WARN_ON(hz < host->f_min);
311
312 if (hz > host->f_max)
313 hz = host->f_max;
314
315 host->ios.clock = hz;
316 mmc_set_ios(host);
317}
318
319/*
320 * Change the bus mode (open drain/push-pull) of a host.
321 */
322void mmc_set_bus_mode(struct mmc_host *host, unsigned int mode)
323{
324 host->ios.bus_mode = mode;
325 mmc_set_ios(host);
326}
327
328/*
329 * Change data bus width of a host.
330 */
331void mmc_set_bus_width(struct mmc_host *host, unsigned int width)
332{
333 host->ios.bus_width = width;
334 mmc_set_ios(host);
335}
336
1da177e4
LT
337/*
338 * Mask off any voltages we don't support and select
339 * the lowest voltage
340 */
7ea239d9 341u32 mmc_select_voltage(struct mmc_host *host, u32 ocr)
1da177e4
LT
342{
343 int bit;
344
345 ocr &= host->ocr_avail;
346
347 bit = ffs(ocr);
348 if (bit) {
349 bit -= 1;
350
63ef731a 351 ocr &= 3 << bit;
1da177e4
LT
352
353 host->ios.vdd = bit;
920e70c5 354 mmc_set_ios(host);
1da177e4
LT
355 } else {
356 ocr = 0;
357 }
358
359 return ocr;
360}
361
b57c43ad 362/*
7ea239d9 363 * Select timing parameters for host.
b57c43ad 364 */
7ea239d9 365void mmc_set_timing(struct mmc_host *host, unsigned int timing)
b57c43ad 366{
7ea239d9
PO
367 host->ios.timing = timing;
368 mmc_set_ios(host);
b57c43ad
PO
369}
370
1da177e4 371/*
b855885e 372 * Allocate a new MMC card
1da177e4 373 */
7ea239d9 374struct mmc_card *mmc_alloc_card(struct mmc_host *host)
1da177e4 375{
b855885e 376 struct mmc_card *card;
1da177e4
LT
377
378 card = kmalloc(sizeof(struct mmc_card), GFP_KERNEL);
379 if (!card)
380 return ERR_PTR(-ENOMEM);
381
382 mmc_init_card(card, host);
1da177e4 383
1da177e4
LT
384 return card;
385}
386
1da177e4 387/*
45f8245b
RK
388 * Apply power to the MMC stack. This is a two-stage process.
389 * First, we enable power to the card without the clock running.
390 * We then wait a bit for the power to stabilise. Finally,
391 * enable the bus drivers and clock to the card.
392 *
393 * We must _NOT_ enable the clock prior to power stablising.
394 *
395 * If a host does all the power sequencing itself, ignore the
396 * initial MMC_POWER_UP stage.
1da177e4
LT
397 */
398static void mmc_power_up(struct mmc_host *host)
399{
400 int bit = fls(host->ocr_avail) - 1;
401
402 host->ios.vdd = bit;
403 host->ios.bus_mode = MMC_BUSMODE_OPENDRAIN;
865e9f13 404 host->ios.chip_select = MMC_CS_DONTCARE;
1da177e4 405 host->ios.power_mode = MMC_POWER_UP;
f218278a 406 host->ios.bus_width = MMC_BUS_WIDTH_1;
cd9277c0 407 host->ios.timing = MMC_TIMING_LEGACY;
920e70c5 408 mmc_set_ios(host);
1da177e4
LT
409
410 mmc_delay(1);
411
412 host->ios.clock = host->f_min;
413 host->ios.power_mode = MMC_POWER_ON;
920e70c5 414 mmc_set_ios(host);
1da177e4
LT
415
416 mmc_delay(2);
417}
418
419static void mmc_power_off(struct mmc_host *host)
420{
421 host->ios.clock = 0;
422 host->ios.vdd = 0;
423 host->ios.bus_mode = MMC_BUSMODE_OPENDRAIN;
865e9f13 424 host->ios.chip_select = MMC_CS_DONTCARE;
1da177e4 425 host->ios.power_mode = MMC_POWER_OFF;
f218278a 426 host->ios.bus_width = MMC_BUS_WIDTH_1;
cd9277c0 427 host->ios.timing = MMC_TIMING_LEGACY;
920e70c5 428 mmc_set_ios(host);
1da177e4
LT
429}
430
1da177e4 431/*
7ea239d9
PO
432 * Assign a mmc bus handler to a host. Only one bus handler may control a
433 * host at any given time.
1da177e4 434 */
7ea239d9 435void mmc_attach_bus(struct mmc_host *host, const struct mmc_bus_ops *ops)
1da177e4 436{
7ea239d9 437 unsigned long flags;
e45a1bd2 438
7ea239d9
PO
439 BUG_ON(!host);
440 BUG_ON(!ops);
b855885e 441
7ea239d9 442 BUG_ON(!host->claimed);
bce40a36 443
7ea239d9 444 spin_lock_irqsave(&host->lock, flags);
bce40a36 445
7ea239d9
PO
446 BUG_ON(host->bus_ops);
447 BUG_ON(host->bus_refs);
b57c43ad 448
7ea239d9
PO
449 host->bus_ops = ops;
450 host->bus_refs = 1;
451 host->bus_dead = 0;
b57c43ad 452
7ea239d9 453 spin_unlock_irqrestore(&host->lock, flags);
b57c43ad
PO
454}
455
7ea239d9
PO
456/*
457 * Remove the current bus handler from a host. Assumes that there are
458 * no interesting cards left, so the bus is powered down.
459 */
460void mmc_detach_bus(struct mmc_host *host)
7ccd266e 461{
7ea239d9 462 unsigned long flags;
7ccd266e 463
7ea239d9 464 BUG_ON(!host);
7ccd266e 465
7ea239d9
PO
466 BUG_ON(!host->claimed);
467 BUG_ON(!host->bus_ops);
cd9277c0 468
7ea239d9 469 spin_lock_irqsave(&host->lock, flags);
7ccd266e 470
7ea239d9 471 host->bus_dead = 1;
7ccd266e 472
7ea239d9 473 spin_unlock_irqrestore(&host->lock, flags);
1da177e4 474
7ea239d9 475 mmc_power_off(host);
1da177e4 476
7ea239d9 477 mmc_bus_put(host);
1da177e4
LT
478}
479
480/*
7ea239d9 481 * Cleanup when the last reference to the bus operator is dropped.
1da177e4 482 */
7ea239d9 483void __mmc_release_bus(struct mmc_host *host)
1da177e4 484{
7ea239d9
PO
485 BUG_ON(!host);
486 BUG_ON(host->bus_refs);
487 BUG_ON(!host->bus_dead);
1da177e4 488
7ea239d9 489 host->bus_ops = NULL;
1da177e4
LT
490}
491
1da177e4
LT
492/**
493 * mmc_detect_change - process change of state on a MMC socket
494 * @host: host which changed state.
8dc00335 495 * @delay: optional delay to wait before detection (jiffies)
1da177e4
LT
496 *
497 * All we know is that card(s) have been inserted or removed
498 * from the socket(s). We don't know which socket or cards.
499 */
8dc00335 500void mmc_detect_change(struct mmc_host *host, unsigned long delay)
1da177e4 501{
3b91e550
PO
502#ifdef CONFIG_MMC_DEBUG
503 mmc_claim_host(host);
504 BUG_ON(host->removed);
505 mmc_release_host(host);
506#endif
507
c4028958 508 mmc_schedule_delayed_work(&host->detect, delay);
1da177e4
LT
509}
510
511EXPORT_SYMBOL(mmc_detect_change);
512
513
c4028958 514static void mmc_rescan(struct work_struct *work)
1da177e4 515{
c4028958
DH
516 struct mmc_host *host =
517 container_of(work, struct mmc_host, detect.work);
7ea239d9
PO
518 u32 ocr;
519 int err;
1da177e4 520
7ea239d9 521 mmc_bus_get(host);
b855885e 522
7ea239d9 523 if (host->bus_ops == NULL) {
1da177e4 524 /*
7ea239d9
PO
525 * Only we can add a new handler, so it's safe to
526 * release the lock here.
1da177e4 527 */
7ea239d9 528 mmc_bus_put(host);
1da177e4 529
7ea239d9 530 mmc_claim_host(host);
1da177e4 531
7ea239d9
PO
532 mmc_power_up(host);
533 mmc_go_idle(host);
1da177e4 534
7ea239d9 535 mmc_send_if_cond(host, host->ocr_avail);
1da177e4 536
7ea239d9
PO
537 err = mmc_send_app_op_cond(host, 0, &ocr);
538 if (err == MMC_ERR_NONE) {
539 if (mmc_attach_sd(host, ocr))
540 mmc_power_off(host);
541 } else {
542 /*
543 * If we fail to detect any SD cards then try
544 * searching for MMC cards.
545 */
546 err = mmc_send_op_cond(host, 0, &ocr);
547 if (err == MMC_ERR_NONE) {
548 if (mmc_attach_mmc(host, ocr))
549 mmc_power_off(host);
550 } else {
551 mmc_power_off(host);
552 mmc_release_host(host);
553 }
554 }
555 } else {
556 if (host->bus_ops->detect && !host->bus_dead)
557 host->bus_ops->detect(host);
558
559 mmc_bus_put(host);
560 }
1da177e4
LT
561}
562
563
564/**
565 * mmc_alloc_host - initialise the per-host structure.
566 * @extra: sizeof private data structure
567 * @dev: pointer to host device model structure
568 *
569 * Initialise the per-host structure.
570 */
571struct mmc_host *mmc_alloc_host(int extra, struct device *dev)
572{
573 struct mmc_host *host;
574
00b137cf 575 host = mmc_alloc_host_sysfs(extra, dev);
1da177e4 576 if (host) {
1da177e4
LT
577 spin_lock_init(&host->lock);
578 init_waitqueue_head(&host->wq);
c4028958 579 INIT_DELAYED_WORK(&host->detect, mmc_rescan);
1da177e4 580
1da177e4
LT
581 /*
582 * By default, hosts do not support SGIO or large requests.
583 * They have to set these according to their abilities.
584 */
585 host->max_hw_segs = 1;
586 host->max_phys_segs = 1;
1da177e4 587 host->max_seg_size = PAGE_CACHE_SIZE;
fe4a3c7a 588
55db890a 589 host->max_req_size = PAGE_CACHE_SIZE;
fe4a3c7a 590 host->max_blk_size = 512;
55db890a 591 host->max_blk_count = PAGE_CACHE_SIZE / 512;
1da177e4
LT
592 }
593
594 return host;
595}
596
597EXPORT_SYMBOL(mmc_alloc_host);
598
599/**
600 * mmc_add_host - initialise host hardware
601 * @host: mmc host
602 */
603int mmc_add_host(struct mmc_host *host)
604{
00b137cf 605 int ret;
1da177e4 606
00b137cf
RK
607 ret = mmc_add_host_sysfs(host);
608 if (ret == 0) {
609 mmc_power_off(host);
8dc00335 610 mmc_detect_change(host, 0);
00b137cf 611 }
1da177e4 612
00b137cf 613 return ret;
1da177e4
LT
614}
615
616EXPORT_SYMBOL(mmc_add_host);
617
618/**
619 * mmc_remove_host - remove host hardware
620 * @host: mmc host
621 *
622 * Unregister and remove all cards associated with this host,
623 * and power down the MMC bus.
624 */
625void mmc_remove_host(struct mmc_host *host)
626{
3b91e550
PO
627#ifdef CONFIG_MMC_DEBUG
628 mmc_claim_host(host);
629 host->removed = 1;
630 mmc_release_host(host);
631#endif
632
633 mmc_flush_scheduled_work();
634
7ea239d9
PO
635 mmc_bus_get(host);
636 if (host->bus_ops && !host->bus_dead) {
637 if (host->bus_ops->remove)
638 host->bus_ops->remove(host);
639
640 mmc_claim_host(host);
641 mmc_detach_bus(host);
642 mmc_release_host(host);
1da177e4 643 }
7ea239d9
PO
644 mmc_bus_put(host);
645
646 BUG_ON(host->card);
1da177e4
LT
647
648 mmc_power_off(host);
00b137cf 649 mmc_remove_host_sysfs(host);
1da177e4
LT
650}
651
652EXPORT_SYMBOL(mmc_remove_host);
653
654/**
655 * mmc_free_host - free the host structure
656 * @host: mmc host
657 *
658 * Free the host once all references to it have been dropped.
659 */
660void mmc_free_host(struct mmc_host *host)
661{
00b137cf 662 mmc_free_host_sysfs(host);
1da177e4
LT
663}
664
665EXPORT_SYMBOL(mmc_free_host);
666
667#ifdef CONFIG_PM
668
669/**
670 * mmc_suspend_host - suspend a host
671 * @host: mmc host
672 * @state: suspend mode (PM_SUSPEND_xxx)
673 */
e5378ca8 674int mmc_suspend_host(struct mmc_host *host, pm_message_t state)
1da177e4 675{
b5af25be
PO
676 mmc_flush_scheduled_work();
677
7ea239d9
PO
678 mmc_bus_get(host);
679 if (host->bus_ops && !host->bus_dead) {
680 if (host->bus_ops->remove)
681 host->bus_ops->remove(host);
682 mmc_detach_bus(host);
b5af25be 683 }
7ea239d9
PO
684 mmc_bus_put(host);
685
686 BUG_ON(host->card);
b5af25be 687
1da177e4 688 mmc_power_off(host);
1da177e4
LT
689
690 return 0;
691}
692
693EXPORT_SYMBOL(mmc_suspend_host);
694
695/**
696 * mmc_resume_host - resume a previously suspended host
697 * @host: mmc host
698 */
699int mmc_resume_host(struct mmc_host *host)
700{
c4028958 701 mmc_rescan(&host->detect.work);
1da177e4
LT
702
703 return 0;
704}
705
706EXPORT_SYMBOL(mmc_resume_host);
707
708#endif
709
710MODULE_LICENSE("GPL");