mmc: refactor bus operations
[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-2007 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 <asm/scatterlist.h>
22 #include <linux/scatterlist.h>
23
24 #include <linux/mmc/card.h>
25 #include <linux/mmc/host.h>
26 #include <linux/mmc/mmc.h>
27 #include <linux/mmc/sd.h>
28
29 #include "core.h"
30 #include "sysfs.h"
31
32 #include "mmc_ops.h"
33 #include "sd_ops.h"
34
35 extern int mmc_attach_mmc(struct mmc_host *host, u32 ocr);
36 extern int mmc_attach_sd(struct mmc_host *host, u32 ocr);
37
38 /**
39 * mmc_request_done - finish processing an MMC request
40 * @host: MMC host which completed request
41 * @mrq: MMC request which request
42 *
43 * MMC drivers should call this function when they have completed
44 * their processing of a request.
45 */
46 void mmc_request_done(struct mmc_host *host, struct mmc_request *mrq)
47 {
48 struct mmc_command *cmd = mrq->cmd;
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]);
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
66 EXPORT_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 */
76 void
77 mmc_start_request(struct mmc_host *host, struct mmc_request *mrq)
78 {
79 #ifdef CONFIG_MMC_DEBUG
80 unsigned int i, sz;
81 #endif
82
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);
86
87 WARN_ON(!host->claimed);
88
89 mrq->cmd->error = 0;
90 mrq->cmd->mrq = mrq;
91 if (mrq->data) {
92 BUG_ON(mrq->data->blksz > host->max_blk_size);
93 BUG_ON(mrq->data->blocks > host->max_blk_count);
94 BUG_ON(mrq->data->blocks * mrq->data->blksz >
95 host->max_req_size);
96
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
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
116 EXPORT_SYMBOL(mmc_start_request);
117
118 static void mmc_wait_done(struct mmc_request *mrq)
119 {
120 complete(mrq->done_data);
121 }
122
123 int mmc_wait_for_req(struct mmc_host *host, struct mmc_request *mrq)
124 {
125 DECLARE_COMPLETION_ONSTACK(complete);
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
137 EXPORT_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 */
149 int mmc_wait_for_cmd(struct mmc_host *host, struct mmc_command *cmd, int retries)
150 {
151 struct mmc_request mrq;
152
153 BUG_ON(!host->claimed);
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
168 EXPORT_SYMBOL(mmc_wait_for_cmd);
169
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 */
176 void 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
211 /*
212 * SDHC cards always use these fixed values.
213 */
214 if (timeout_us > limit_us || mmc_card_blockaddr(card)) {
215 data->timeout_ns = limit_us * 1000;
216 data->timeout_clks = 0;
217 }
218 }
219 }
220 EXPORT_SYMBOL(mmc_set_data_timeout);
221
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 */
233 void mmc_claim_host(struct mmc_host *host)
234 {
235 DECLARE_WAITQUEUE(wait, current);
236 unsigned long flags;
237
238 add_wait_queue(&host->wq, &wait);
239 spin_lock_irqsave(&host->lock, flags);
240 while (1) {
241 set_current_state(TASK_UNINTERRUPTIBLE);
242 if (!host->claimed)
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);
249 host->claimed = 1;
250 spin_unlock_irqrestore(&host->lock, flags);
251 remove_wait_queue(&host->wq, &wait);
252 }
253
254 EXPORT_SYMBOL(mmc_claim_host);
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 */
263 void mmc_release_host(struct mmc_host *host)
264 {
265 unsigned long flags;
266
267 BUG_ON(!host->claimed);
268
269 spin_lock_irqsave(&host->lock, flags);
270 host->claimed = 0;
271 spin_unlock_irqrestore(&host->lock, flags);
272
273 wake_up(&host->wq);
274 }
275
276 EXPORT_SYMBOL(mmc_release_host);
277
278 /*
279 * Internal function that does the actual ios call to the host driver,
280 * optionally printing some debug output.
281 */
282 static inline void mmc_set_ios(struct mmc_host *host)
283 {
284 struct mmc_ios *ios = &host->ios;
285
286 pr_debug("%s: clock %uHz busmode %u powermode %u cs %u Vdd %u "
287 "width %u timing %u\n",
288 mmc_hostname(host), ios->clock, ios->bus_mode,
289 ios->power_mode, ios->chip_select, ios->vdd,
290 ios->bus_width, ios->timing);
291
292 host->ops->set_ios(host, ios);
293 }
294
295 /*
296 * Control chip select pin on a host.
297 */
298 void mmc_set_chip_select(struct mmc_host *host, int mode)
299 {
300 host->ios.chip_select = mode;
301 mmc_set_ios(host);
302 }
303
304 /*
305 * Sets the host clock to the highest possible frequency that
306 * is below "hz".
307 */
308 void 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 */
322 void 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 */
331 void 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
337 /*
338 * Mask off any voltages we don't support and select
339 * the lowest voltage
340 */
341 u32 mmc_select_voltage(struct mmc_host *host, u32 ocr)
342 {
343 int bit;
344
345 ocr &= host->ocr_avail;
346
347 bit = ffs(ocr);
348 if (bit) {
349 bit -= 1;
350
351 ocr &= 3 << bit;
352
353 host->ios.vdd = bit;
354 mmc_set_ios(host);
355 } else {
356 ocr = 0;
357 }
358
359 return ocr;
360 }
361
362 /*
363 * Select timing parameters for host.
364 */
365 void mmc_set_timing(struct mmc_host *host, unsigned int timing)
366 {
367 host->ios.timing = timing;
368 mmc_set_ios(host);
369 }
370
371 /*
372 * Apply power to the MMC stack. This is a two-stage process.
373 * First, we enable power to the card without the clock running.
374 * We then wait a bit for the power to stabilise. Finally,
375 * enable the bus drivers and clock to the card.
376 *
377 * We must _NOT_ enable the clock prior to power stablising.
378 *
379 * If a host does all the power sequencing itself, ignore the
380 * initial MMC_POWER_UP stage.
381 */
382 static void mmc_power_up(struct mmc_host *host)
383 {
384 int bit = fls(host->ocr_avail) - 1;
385
386 host->ios.vdd = bit;
387 host->ios.bus_mode = MMC_BUSMODE_OPENDRAIN;
388 host->ios.chip_select = MMC_CS_DONTCARE;
389 host->ios.power_mode = MMC_POWER_UP;
390 host->ios.bus_width = MMC_BUS_WIDTH_1;
391 host->ios.timing = MMC_TIMING_LEGACY;
392 mmc_set_ios(host);
393
394 mmc_delay(1);
395
396 host->ios.clock = host->f_min;
397 host->ios.power_mode = MMC_POWER_ON;
398 mmc_set_ios(host);
399
400 mmc_delay(2);
401 }
402
403 static void mmc_power_off(struct mmc_host *host)
404 {
405 host->ios.clock = 0;
406 host->ios.vdd = 0;
407 host->ios.bus_mode = MMC_BUSMODE_OPENDRAIN;
408 host->ios.chip_select = MMC_CS_DONTCARE;
409 host->ios.power_mode = MMC_POWER_OFF;
410 host->ios.bus_width = MMC_BUS_WIDTH_1;
411 host->ios.timing = MMC_TIMING_LEGACY;
412 mmc_set_ios(host);
413 }
414
415 /*
416 * Assign a mmc bus handler to a host. Only one bus handler may control a
417 * host at any given time.
418 */
419 void mmc_attach_bus(struct mmc_host *host, const struct mmc_bus_ops *ops)
420 {
421 unsigned long flags;
422
423 BUG_ON(!host);
424 BUG_ON(!ops);
425
426 BUG_ON(!host->claimed);
427
428 spin_lock_irqsave(&host->lock, flags);
429
430 BUG_ON(host->bus_ops);
431 BUG_ON(host->bus_refs);
432
433 host->bus_ops = ops;
434 host->bus_refs = 1;
435 host->bus_dead = 0;
436
437 spin_unlock_irqrestore(&host->lock, flags);
438 }
439
440 /*
441 * Remove the current bus handler from a host. Assumes that there are
442 * no interesting cards left, so the bus is powered down.
443 */
444 void mmc_detach_bus(struct mmc_host *host)
445 {
446 unsigned long flags;
447
448 BUG_ON(!host);
449
450 BUG_ON(!host->claimed);
451 BUG_ON(!host->bus_ops);
452
453 spin_lock_irqsave(&host->lock, flags);
454
455 host->bus_dead = 1;
456
457 spin_unlock_irqrestore(&host->lock, flags);
458
459 mmc_power_off(host);
460
461 mmc_bus_put(host);
462 }
463
464 /*
465 * Cleanup when the last reference to the bus operator is dropped.
466 */
467 void __mmc_release_bus(struct mmc_host *host)
468 {
469 BUG_ON(!host);
470 BUG_ON(host->bus_refs);
471 BUG_ON(!host->bus_dead);
472
473 host->bus_ops = NULL;
474 }
475
476 /**
477 * mmc_detect_change - process change of state on a MMC socket
478 * @host: host which changed state.
479 * @delay: optional delay to wait before detection (jiffies)
480 *
481 * All we know is that card(s) have been inserted or removed
482 * from the socket(s). We don't know which socket or cards.
483 */
484 void mmc_detect_change(struct mmc_host *host, unsigned long delay)
485 {
486 #ifdef CONFIG_MMC_DEBUG
487 unsigned long flags;
488 spin_lock_irqsave(&host->lock, flags);
489 BUG_ON(host->removed);
490 spin_unlock_irqrestore(&host->lock, flags);
491 #endif
492
493 mmc_schedule_delayed_work(&host->detect, delay);
494 }
495
496 EXPORT_SYMBOL(mmc_detect_change);
497
498
499 static void mmc_rescan(struct work_struct *work)
500 {
501 struct mmc_host *host =
502 container_of(work, struct mmc_host, detect.work);
503 u32 ocr;
504 int err;
505
506 mmc_bus_get(host);
507
508 if (host->bus_ops == NULL) {
509 /*
510 * Only we can add a new handler, so it's safe to
511 * release the lock here.
512 */
513 mmc_bus_put(host);
514
515 mmc_claim_host(host);
516
517 mmc_power_up(host);
518 mmc_go_idle(host);
519
520 mmc_send_if_cond(host, host->ocr_avail);
521
522 err = mmc_send_app_op_cond(host, 0, &ocr);
523 if (err == MMC_ERR_NONE) {
524 if (mmc_attach_sd(host, ocr))
525 mmc_power_off(host);
526 } else {
527 /*
528 * If we fail to detect any SD cards then try
529 * searching for MMC cards.
530 */
531 err = mmc_send_op_cond(host, 0, &ocr);
532 if (err == MMC_ERR_NONE) {
533 if (mmc_attach_mmc(host, ocr))
534 mmc_power_off(host);
535 } else {
536 mmc_power_off(host);
537 mmc_release_host(host);
538 }
539 }
540 } else {
541 if (host->bus_ops->detect && !host->bus_dead)
542 host->bus_ops->detect(host);
543
544 mmc_bus_put(host);
545 }
546 }
547
548
549 /**
550 * mmc_alloc_host - initialise the per-host structure.
551 * @extra: sizeof private data structure
552 * @dev: pointer to host device model structure
553 *
554 * Initialise the per-host structure.
555 */
556 struct mmc_host *mmc_alloc_host(int extra, struct device *dev)
557 {
558 struct mmc_host *host;
559
560 host = mmc_alloc_host_sysfs(extra, dev);
561 if (host) {
562 spin_lock_init(&host->lock);
563 init_waitqueue_head(&host->wq);
564 INIT_DELAYED_WORK(&host->detect, mmc_rescan);
565
566 /*
567 * By default, hosts do not support SGIO or large requests.
568 * They have to set these according to their abilities.
569 */
570 host->max_hw_segs = 1;
571 host->max_phys_segs = 1;
572 host->max_seg_size = PAGE_CACHE_SIZE;
573
574 host->max_req_size = PAGE_CACHE_SIZE;
575 host->max_blk_size = 512;
576 host->max_blk_count = PAGE_CACHE_SIZE / 512;
577 }
578
579 return host;
580 }
581
582 EXPORT_SYMBOL(mmc_alloc_host);
583
584 /**
585 * mmc_add_host - initialise host hardware
586 * @host: mmc host
587 */
588 int mmc_add_host(struct mmc_host *host)
589 {
590 int ret;
591
592 ret = mmc_add_host_sysfs(host);
593 if (ret == 0) {
594 mmc_power_off(host);
595 mmc_detect_change(host, 0);
596 }
597
598 return ret;
599 }
600
601 EXPORT_SYMBOL(mmc_add_host);
602
603 /**
604 * mmc_remove_host - remove host hardware
605 * @host: mmc host
606 *
607 * Unregister and remove all cards associated with this host,
608 * and power down the MMC bus.
609 */
610 void mmc_remove_host(struct mmc_host *host)
611 {
612 #ifdef CONFIG_MMC_DEBUG
613 unsigned long flags;
614 spin_lock_irqsave(&host->lock, flags);
615 host->removed = 1;
616 spin_unlock_irqrestore(&host->lock, flags);
617 #endif
618
619 mmc_flush_scheduled_work();
620
621 mmc_bus_get(host);
622 if (host->bus_ops && !host->bus_dead) {
623 if (host->bus_ops->remove)
624 host->bus_ops->remove(host);
625
626 mmc_claim_host(host);
627 mmc_detach_bus(host);
628 mmc_release_host(host);
629 }
630 mmc_bus_put(host);
631
632 BUG_ON(host->card);
633
634 mmc_power_off(host);
635 mmc_remove_host_sysfs(host);
636 }
637
638 EXPORT_SYMBOL(mmc_remove_host);
639
640 /**
641 * mmc_free_host - free the host structure
642 * @host: mmc host
643 *
644 * Free the host once all references to it have been dropped.
645 */
646 void mmc_free_host(struct mmc_host *host)
647 {
648 mmc_free_host_sysfs(host);
649 }
650
651 EXPORT_SYMBOL(mmc_free_host);
652
653 #ifdef CONFIG_PM
654
655 /**
656 * mmc_suspend_host - suspend a host
657 * @host: mmc host
658 * @state: suspend mode (PM_SUSPEND_xxx)
659 */
660 int mmc_suspend_host(struct mmc_host *host, pm_message_t state)
661 {
662 mmc_flush_scheduled_work();
663
664 mmc_bus_get(host);
665 if (host->bus_ops && !host->bus_dead) {
666 if (host->bus_ops->suspend)
667 host->bus_ops->suspend(host);
668 if (!host->bus_ops->resume) {
669 if (host->bus_ops->remove)
670 host->bus_ops->remove(host);
671
672 mmc_claim_host(host);
673 mmc_detach_bus(host);
674 mmc_release_host(host);
675 }
676 }
677 mmc_bus_put(host);
678
679 mmc_power_off(host);
680
681 return 0;
682 }
683
684 EXPORT_SYMBOL(mmc_suspend_host);
685
686 /**
687 * mmc_resume_host - resume a previously suspended host
688 * @host: mmc host
689 */
690 int mmc_resume_host(struct mmc_host *host)
691 {
692 mmc_bus_get(host);
693 if (host->bus_ops && !host->bus_dead) {
694 mmc_power_up(host);
695 BUG_ON(!host->bus_ops->resume);
696 host->bus_ops->resume(host);
697 }
698 mmc_bus_put(host);
699
700 /*
701 * We add a slight delay here so that resume can progress
702 * in parallel.
703 */
704 mmc_detect_change(host, 1);
705
706 return 0;
707 }
708
709 EXPORT_SYMBOL(mmc_resume_host);
710
711 #endif
712
713 MODULE_LICENSE("GPL");
This page took 0.044477 seconds and 5 git commands to generate.