ext4: Don't use ext4_dec_count() if not needed
[linux-2.6/mini2440.git] / drivers / mmc / core / sd.c
blobd1c1e0f592f19d56f1b200aa4233f1c95e125054
1 /*
2 * linux/drivers/mmc/core/sd.c
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.
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
13 #include <linux/err.h>
15 #include <linux/mmc/host.h>
16 #include <linux/mmc/card.h>
17 #include <linux/mmc/mmc.h>
18 #include <linux/mmc/sd.h>
20 #include "core.h"
21 #include "sysfs.h"
22 #include "bus.h"
23 #include "mmc_ops.h"
24 #include "sd_ops.h"
26 static const unsigned int tran_exp[] = {
27 10000, 100000, 1000000, 10000000,
28 0, 0, 0, 0
31 static const unsigned char tran_mant[] = {
32 0, 10, 12, 13, 15, 20, 25, 30,
33 35, 40, 45, 50, 55, 60, 70, 80,
36 static const unsigned int tacc_exp[] = {
37 1, 10, 100, 1000, 10000, 100000, 1000000, 10000000,
40 static const unsigned int tacc_mant[] = {
41 0, 10, 12, 13, 15, 20, 25, 30,
42 35, 40, 45, 50, 55, 60, 70, 80,
45 #define UNSTUFF_BITS(resp,start,size) \
46 ({ \
47 const int __size = size; \
48 const u32 __mask = (__size < 32 ? 1 << __size : 0) - 1; \
49 const int __off = 3 - ((start) / 32); \
50 const int __shft = (start) & 31; \
51 u32 __res; \
53 __res = resp[__off] >> __shft; \
54 if (__size + __shft > 32) \
55 __res |= resp[__off-1] << ((32 - __shft) % 32); \
56 __res & __mask; \
60 * Given the decoded CSD structure, decode the raw CID to our CID structure.
62 static void mmc_decode_cid(struct mmc_card *card)
64 u32 *resp = card->raw_cid;
66 memset(&card->cid, 0, sizeof(struct mmc_cid));
69 * SD doesn't currently have a version field so we will
70 * have to assume we can parse this.
72 card->cid.manfid = UNSTUFF_BITS(resp, 120, 8);
73 card->cid.oemid = UNSTUFF_BITS(resp, 104, 16);
74 card->cid.prod_name[0] = UNSTUFF_BITS(resp, 96, 8);
75 card->cid.prod_name[1] = UNSTUFF_BITS(resp, 88, 8);
76 card->cid.prod_name[2] = UNSTUFF_BITS(resp, 80, 8);
77 card->cid.prod_name[3] = UNSTUFF_BITS(resp, 72, 8);
78 card->cid.prod_name[4] = UNSTUFF_BITS(resp, 64, 8);
79 card->cid.hwrev = UNSTUFF_BITS(resp, 60, 4);
80 card->cid.fwrev = UNSTUFF_BITS(resp, 56, 4);
81 card->cid.serial = UNSTUFF_BITS(resp, 24, 32);
82 card->cid.year = UNSTUFF_BITS(resp, 12, 8);
83 card->cid.month = UNSTUFF_BITS(resp, 8, 4);
85 card->cid.year += 2000; /* SD cards year offset */
89 * Given a 128-bit response, decode to our card CSD structure.
91 static int mmc_decode_csd(struct mmc_card *card)
93 struct mmc_csd *csd = &card->csd;
94 unsigned int e, m, csd_struct;
95 u32 *resp = card->raw_csd;
97 csd_struct = UNSTUFF_BITS(resp, 126, 2);
99 switch (csd_struct) {
100 case 0:
101 m = UNSTUFF_BITS(resp, 115, 4);
102 e = UNSTUFF_BITS(resp, 112, 3);
103 csd->tacc_ns = (tacc_exp[e] * tacc_mant[m] + 9) / 10;
104 csd->tacc_clks = UNSTUFF_BITS(resp, 104, 8) * 100;
106 m = UNSTUFF_BITS(resp, 99, 4);
107 e = UNSTUFF_BITS(resp, 96, 3);
108 csd->max_dtr = tran_exp[e] * tran_mant[m];
109 csd->cmdclass = UNSTUFF_BITS(resp, 84, 12);
111 e = UNSTUFF_BITS(resp, 47, 3);
112 m = UNSTUFF_BITS(resp, 62, 12);
113 csd->capacity = (1 + m) << (e + 2);
115 csd->read_blkbits = UNSTUFF_BITS(resp, 80, 4);
116 csd->read_partial = UNSTUFF_BITS(resp, 79, 1);
117 csd->write_misalign = UNSTUFF_BITS(resp, 78, 1);
118 csd->read_misalign = UNSTUFF_BITS(resp, 77, 1);
119 csd->r2w_factor = UNSTUFF_BITS(resp, 26, 3);
120 csd->write_blkbits = UNSTUFF_BITS(resp, 22, 4);
121 csd->write_partial = UNSTUFF_BITS(resp, 21, 1);
122 break;
123 case 1:
125 * This is a block-addressed SDHC card. Most
126 * interesting fields are unused and have fixed
127 * values. To avoid getting tripped by buggy cards,
128 * we assume those fixed values ourselves.
130 mmc_card_set_blockaddr(card);
132 csd->tacc_ns = 0; /* Unused */
133 csd->tacc_clks = 0; /* Unused */
135 m = UNSTUFF_BITS(resp, 99, 4);
136 e = UNSTUFF_BITS(resp, 96, 3);
137 csd->max_dtr = tran_exp[e] * tran_mant[m];
138 csd->cmdclass = UNSTUFF_BITS(resp, 84, 12);
140 m = UNSTUFF_BITS(resp, 48, 22);
141 csd->capacity = (1 + m) << 10;
143 csd->read_blkbits = 9;
144 csd->read_partial = 0;
145 csd->write_misalign = 0;
146 csd->read_misalign = 0;
147 csd->r2w_factor = 4; /* Unused */
148 csd->write_blkbits = 9;
149 csd->write_partial = 0;
150 break;
151 default:
152 printk(KERN_ERR "%s: unrecognised CSD structure version %d\n",
153 mmc_hostname(card->host), csd_struct);
154 return -EINVAL;
157 return 0;
161 * Given a 64-bit response, decode to our card SCR structure.
163 static int mmc_decode_scr(struct mmc_card *card)
165 struct sd_scr *scr = &card->scr;
166 unsigned int scr_struct;
167 u32 resp[4];
169 resp[3] = card->raw_scr[1];
170 resp[2] = card->raw_scr[0];
172 scr_struct = UNSTUFF_BITS(resp, 60, 4);
173 if (scr_struct != 0) {
174 printk(KERN_ERR "%s: unrecognised SCR structure version %d\n",
175 mmc_hostname(card->host), scr_struct);
176 return -EINVAL;
179 scr->sda_vsn = UNSTUFF_BITS(resp, 56, 4);
180 scr->bus_widths = UNSTUFF_BITS(resp, 48, 4);
182 return 0;
186 * Fetches and decodes switch information
188 static int mmc_read_switch(struct mmc_card *card)
190 int err;
191 u8 *status;
193 if (card->scr.sda_vsn < SCR_SPEC_VER_1)
194 return 0;
196 if (!(card->csd.cmdclass & CCC_SWITCH)) {
197 printk(KERN_WARNING "%s: card lacks mandatory switch "
198 "function, performance might suffer.\n",
199 mmc_hostname(card->host));
200 return 0;
203 err = -EIO;
205 status = kmalloc(64, GFP_KERNEL);
206 if (!status) {
207 printk(KERN_ERR "%s: could not allocate a buffer for "
208 "switch capabilities.\n", mmc_hostname(card->host));
209 return -ENOMEM;
212 err = mmc_sd_switch(card, 0, 0, 1, status);
213 if (err) {
215 * We all hosts that cannot perform the command
216 * to fail more gracefully
218 if (err != -EINVAL)
219 goto out;
221 printk(KERN_WARNING "%s: problem reading switch "
222 "capabilities, performance might suffer.\n",
223 mmc_hostname(card->host));
224 err = 0;
226 goto out;
229 if (status[13] & 0x02)
230 card->sw_caps.hs_max_dtr = 50000000;
232 out:
233 kfree(status);
235 return err;
239 * Test if the card supports high-speed mode and, if so, switch to it.
241 static int mmc_switch_hs(struct mmc_card *card)
243 int err;
244 u8 *status;
246 if (card->scr.sda_vsn < SCR_SPEC_VER_1)
247 return 0;
249 if (!(card->csd.cmdclass & CCC_SWITCH))
250 return 0;
252 if (!(card->host->caps & MMC_CAP_SD_HIGHSPEED))
253 return 0;
255 if (card->sw_caps.hs_max_dtr == 0)
256 return 0;
258 err = -EIO;
260 status = kmalloc(64, GFP_KERNEL);
261 if (!status) {
262 printk(KERN_ERR "%s: could not allocate a buffer for "
263 "switch capabilities.\n", mmc_hostname(card->host));
264 return -ENOMEM;
267 err = mmc_sd_switch(card, 1, 0, 1, status);
268 if (err)
269 goto out;
271 if ((status[16] & 0xF) != 1) {
272 printk(KERN_WARNING "%s: Problem switching card "
273 "into high-speed mode!\n",
274 mmc_hostname(card->host));
275 } else {
276 mmc_card_set_highspeed(card);
277 mmc_set_timing(card->host, MMC_TIMING_SD_HS);
280 out:
281 kfree(status);
283 return err;
287 * Handle the detection and initialisation of a card.
289 * In the case of a resume, "curcard" will contain the card
290 * we're trying to reinitialise.
292 static int mmc_sd_init_card(struct mmc_host *host, u32 ocr,
293 struct mmc_card *oldcard)
295 struct mmc_card *card;
296 int err;
297 u32 cid[4];
298 unsigned int max_dtr;
300 BUG_ON(!host);
301 WARN_ON(!host->claimed);
304 * Since we're changing the OCR value, we seem to
305 * need to tell some cards to go back to the idle
306 * state. We wait 1ms to give cards time to
307 * respond.
309 mmc_go_idle(host);
312 * If SD_SEND_IF_COND indicates an SD 2.0
313 * compliant card and we should set bit 30
314 * of the ocr to indicate that we can handle
315 * block-addressed SDHC cards.
317 err = mmc_send_if_cond(host, ocr);
318 if (!err)
319 ocr |= 1 << 30;
321 err = mmc_send_app_op_cond(host, ocr, NULL);
322 if (err)
323 goto err;
326 * For SPI, enable CRC as appropriate.
328 if (mmc_host_is_spi(host)) {
329 err = mmc_spi_set_crc(host, use_spi_crc);
330 if (err)
331 goto err;
335 * Fetch CID from card.
337 if (mmc_host_is_spi(host))
338 err = mmc_send_cid(host, cid);
339 else
340 err = mmc_all_send_cid(host, cid);
341 if (err)
342 goto err;
344 if (oldcard) {
345 if (memcmp(cid, oldcard->raw_cid, sizeof(cid)) != 0) {
346 err = -ENOENT;
347 goto err;
350 card = oldcard;
351 } else {
353 * Allocate card structure.
355 card = mmc_alloc_card(host);
356 if (IS_ERR(card)) {
357 err = PTR_ERR(card);
358 goto err;
361 card->type = MMC_TYPE_SD;
362 memcpy(card->raw_cid, cid, sizeof(card->raw_cid));
366 * For native busses: get card RCA and quit open drain mode.
368 if (!mmc_host_is_spi(host)) {
369 err = mmc_send_relative_addr(host, &card->rca);
370 if (err)
371 goto free_card;
373 mmc_set_bus_mode(host, MMC_BUSMODE_PUSHPULL);
376 if (!oldcard) {
378 * Fetch CSD from card.
380 err = mmc_send_csd(card, card->raw_csd);
381 if (err)
382 goto free_card;
384 err = mmc_decode_csd(card);
385 if (err)
386 goto free_card;
388 mmc_decode_cid(card);
392 * Select card, as all following commands rely on that.
394 if (!mmc_host_is_spi(host)) {
395 err = mmc_select_card(card);
396 if (err)
397 goto free_card;
400 if (!oldcard) {
402 * Fetch SCR from card.
404 err = mmc_app_send_scr(card, card->raw_scr);
405 if (err)
406 goto free_card;
408 err = mmc_decode_scr(card);
409 if (err < 0)
410 goto free_card;
413 * Fetch switch information from card.
415 err = mmc_read_switch(card);
416 if (err)
417 goto free_card;
421 * Attempt to change to high-speed (if supported)
423 err = mmc_switch_hs(card);
424 if (err)
425 goto free_card;
428 * Compute bus speed.
430 max_dtr = (unsigned int)-1;
432 if (mmc_card_highspeed(card)) {
433 if (max_dtr > card->sw_caps.hs_max_dtr)
434 max_dtr = card->sw_caps.hs_max_dtr;
435 } else if (max_dtr > card->csd.max_dtr) {
436 max_dtr = card->csd.max_dtr;
439 mmc_set_clock(host, max_dtr);
442 * Switch to wider bus (if supported).
444 if ((host->caps & MMC_CAP_4_BIT_DATA) &&
445 (card->scr.bus_widths & SD_SCR_BUS_WIDTH_4)) {
446 err = mmc_app_set_bus_width(card, MMC_BUS_WIDTH_4);
447 if (err)
448 goto free_card;
450 mmc_set_bus_width(host, MMC_BUS_WIDTH_4);
454 * Check if read-only switch is active.
456 if (!oldcard) {
457 if (!host->ops->get_ro) {
458 printk(KERN_WARNING "%s: host does not "
459 "support reading read-only "
460 "switch. assuming write-enable.\n",
461 mmc_hostname(host));
462 } else {
463 if (host->ops->get_ro(host))
464 mmc_card_set_readonly(card);
468 if (!oldcard)
469 host->card = card;
471 return 0;
473 free_card:
474 if (!oldcard)
475 mmc_remove_card(card);
476 err:
478 return err;
482 * Host is being removed. Free up the current card.
484 static void mmc_sd_remove(struct mmc_host *host)
486 BUG_ON(!host);
487 BUG_ON(!host->card);
489 mmc_remove_card(host->card);
490 host->card = NULL;
494 * Card detection callback from host.
496 static void mmc_sd_detect(struct mmc_host *host)
498 int err;
500 BUG_ON(!host);
501 BUG_ON(!host->card);
503 mmc_claim_host(host);
506 * Just check if our card has been removed.
508 err = mmc_send_status(host->card, NULL);
510 mmc_release_host(host);
512 if (err) {
513 mmc_sd_remove(host);
515 mmc_claim_host(host);
516 mmc_detach_bus(host);
517 mmc_release_host(host);
521 MMC_ATTR_FN(cid, "%08x%08x%08x%08x\n", card->raw_cid[0], card->raw_cid[1],
522 card->raw_cid[2], card->raw_cid[3]);
523 MMC_ATTR_FN(csd, "%08x%08x%08x%08x\n", card->raw_csd[0], card->raw_csd[1],
524 card->raw_csd[2], card->raw_csd[3]);
525 MMC_ATTR_FN(scr, "%08x%08x\n", card->raw_scr[0], card->raw_scr[1]);
526 MMC_ATTR_FN(date, "%02d/%04d\n", card->cid.month, card->cid.year);
527 MMC_ATTR_FN(fwrev, "0x%x\n", card->cid.fwrev);
528 MMC_ATTR_FN(hwrev, "0x%x\n", card->cid.hwrev);
529 MMC_ATTR_FN(manfid, "0x%06x\n", card->cid.manfid);
530 MMC_ATTR_FN(name, "%s\n", card->cid.prod_name);
531 MMC_ATTR_FN(oemid, "0x%04x\n", card->cid.oemid);
532 MMC_ATTR_FN(serial, "0x%08x\n", card->cid.serial);
534 static struct device_attribute mmc_sd_dev_attrs[] = {
535 MMC_ATTR_RO(cid),
536 MMC_ATTR_RO(csd),
537 MMC_ATTR_RO(scr),
538 MMC_ATTR_RO(date),
539 MMC_ATTR_RO(fwrev),
540 MMC_ATTR_RO(hwrev),
541 MMC_ATTR_RO(manfid),
542 MMC_ATTR_RO(name),
543 MMC_ATTR_RO(oemid),
544 MMC_ATTR_RO(serial),
545 __ATTR_NULL,
549 * Adds sysfs entries as relevant.
551 static int mmc_sd_sysfs_add(struct mmc_host *host, struct mmc_card *card)
553 int ret;
555 ret = mmc_add_attrs(card, mmc_sd_dev_attrs);
556 if (ret < 0)
557 return ret;
559 return 0;
563 * Removes the sysfs entries added by mmc_sysfs_add().
565 static void mmc_sd_sysfs_remove(struct mmc_host *host, struct mmc_card *card)
567 mmc_remove_attrs(card, mmc_sd_dev_attrs);
570 #ifdef CONFIG_MMC_UNSAFE_RESUME
573 * Suspend callback from host.
575 static void mmc_sd_suspend(struct mmc_host *host)
577 BUG_ON(!host);
578 BUG_ON(!host->card);
580 mmc_claim_host(host);
581 if (!mmc_host_is_spi(host))
582 mmc_deselect_cards(host);
583 host->card->state &= ~MMC_STATE_HIGHSPEED;
584 mmc_release_host(host);
588 * Resume callback from host.
590 * This function tries to determine if the same card is still present
591 * and, if so, restore all state to it.
593 static void mmc_sd_resume(struct mmc_host *host)
595 int err;
597 BUG_ON(!host);
598 BUG_ON(!host->card);
600 mmc_claim_host(host);
601 err = mmc_sd_init_card(host, host->ocr, host->card);
602 mmc_release_host(host);
604 if (err) {
605 mmc_sd_remove(host);
607 mmc_claim_host(host);
608 mmc_detach_bus(host);
609 mmc_release_host(host);
614 #else
616 #define mmc_sd_suspend NULL
617 #define mmc_sd_resume NULL
619 #endif
621 static const struct mmc_bus_ops mmc_sd_ops = {
622 .remove = mmc_sd_remove,
623 .detect = mmc_sd_detect,
624 .sysfs_add = mmc_sd_sysfs_add,
625 .sysfs_remove = mmc_sd_sysfs_remove,
626 .suspend = mmc_sd_suspend,
627 .resume = mmc_sd_resume,
631 * Starting point for SD card init.
633 int mmc_attach_sd(struct mmc_host *host, u32 ocr)
635 int err;
637 BUG_ON(!host);
638 WARN_ON(!host->claimed);
640 mmc_attach_bus(host, &mmc_sd_ops);
643 * We need to get OCR a different way for SPI.
645 if (mmc_host_is_spi(host)) {
646 mmc_go_idle(host);
648 err = mmc_spi_read_ocr(host, 0, &ocr);
649 if (err)
650 goto err;
654 * Sanity check the voltages that the card claims to
655 * support.
657 if (ocr & 0x7F) {
658 printk(KERN_WARNING "%s: card claims to support voltages "
659 "below the defined range. These will be ignored.\n",
660 mmc_hostname(host));
661 ocr &= ~0x7F;
664 if (ocr & MMC_VDD_165_195) {
665 printk(KERN_WARNING "%s: SD card claims to support the "
666 "incompletely defined 'low voltage range'. This "
667 "will be ignored.\n", mmc_hostname(host));
668 ocr &= ~MMC_VDD_165_195;
671 host->ocr = mmc_select_voltage(host, ocr);
674 * Can we support the voltage(s) of the card(s)?
676 if (!host->ocr) {
677 err = -EINVAL;
678 goto err;
682 * Detect and init the card.
684 err = mmc_sd_init_card(host, host->ocr, NULL);
685 if (err)
686 goto err;
688 mmc_release_host(host);
690 err = mmc_add_card(host->card);
691 if (err)
692 goto remove_card;
694 return 0;
696 remove_card:
697 mmc_remove_card(host->card);
698 host->card = NULL;
699 mmc_claim_host(host);
700 err:
701 mmc_detach_bus(host);
702 mmc_release_host(host);
704 printk(KERN_ERR "%s: error %d whilst initialising SD card\n",
705 mmc_hostname(host), err);
707 return err;