MOXA linux-2.6.x / linux-2.6.9-uc0 from sdlinux-moxaart.tgz
[linux-2.6.9-moxart.git] / drivers / mmc / core / mmc.c
blob92749673d844702beaaafb163d31963c216ed081
1 /*
2 * linux/drivers/mmc/core/mmc.c
4 * Copyright (C) 2003-2004 Russell King, All Rights Reserved.
5 * Copyright (C) 2005-2007 Pierre Ossman, All Rights Reserved.
6 * MMCv4 support Copyright (C) 2006 Philip Langdale, 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>
19 #include "core.h"
20 #include "sysfs.h"
21 #include "bus.h"
22 #include "mmc_ops.h"
24 static const unsigned int tran_exp[] = {
25 10000, 100000, 1000000, 10000000,
26 0, 0, 0, 0
29 static const unsigned char tran_mant[] = {
30 0, 10, 12, 13, 15, 20, 25, 30,
31 35, 40, 45, 50, 55, 60, 70, 80,
34 static const unsigned int tacc_exp[] = {
35 1, 10, 100, 1000, 10000, 100000, 1000000, 10000000,
38 static const unsigned int tacc_mant[] = {
39 0, 10, 12, 13, 15, 20, 25, 30,
40 35, 40, 45, 50, 55, 60, 70, 80,
43 #if 0 // mask by Victor Yu. 12-02-2008
44 #define UNSTUFF_BITS(resp,start,size) \
45 ({ \
46 const int __size = size; \
47 const u32 __mask = (__size < 32 ? 1 << __size : 0) - 1; \
48 const int __off = 3 - ((start) / 32); \
49 const int __shft = (start) & 31; \
50 u32 __res; \
52 __res = resp[__off] >> __shft; \
53 if (__size + __shft > 32) \
54 __res |= resp[__off-1] << ((32 - __shft) % 32); \
55 __res & __mask; \
57 #else
58 #define UNSTUFF_BITS(resp,start,size) \
59 ({ \
60 const int __size = size; \
61 const u32 __mask = (__size < 32 ? 1 << __size : 0) - 1; \
62 const int __off = ((start) / 32); \
63 const int __shft = (start) & 31; \
64 u32 __res; \
66 __res = resp[__off] >> __shft; \
67 if (__size + __shft > 32) \
68 __res |= resp[__off+1] << ((32 - __shft) % 32); \
69 __res & __mask; \
71 #endif
74 * Given the decoded CSD structure, decode the raw CID to our CID structure.
76 static int mmc_decode_cid(struct mmc_card *card)
78 u32 *resp = card->raw_cid;
81 * The selection of the format here is based upon published
82 * specs from sandisk and from what people have reported.
84 switch (card->csd.mmca_vsn) {
85 case 0: /* MMC v1.0 - v1.2 */
86 case 1: /* MMC v1.4 */
87 card->cid.manfid = UNSTUFF_BITS(resp, 104, 24);
88 card->cid.prod_name[0] = UNSTUFF_BITS(resp, 96, 8);
89 card->cid.prod_name[1] = UNSTUFF_BITS(resp, 88, 8);
90 card->cid.prod_name[2] = UNSTUFF_BITS(resp, 80, 8);
91 card->cid.prod_name[3] = UNSTUFF_BITS(resp, 72, 8);
92 card->cid.prod_name[4] = UNSTUFF_BITS(resp, 64, 8);
93 card->cid.prod_name[5] = UNSTUFF_BITS(resp, 56, 8);
94 card->cid.prod_name[6] = UNSTUFF_BITS(resp, 48, 8);
95 card->cid.hwrev = UNSTUFF_BITS(resp, 44, 4);
96 card->cid.fwrev = UNSTUFF_BITS(resp, 40, 4);
97 card->cid.serial = UNSTUFF_BITS(resp, 16, 24);
98 card->cid.month = UNSTUFF_BITS(resp, 12, 4);
99 card->cid.year = UNSTUFF_BITS(resp, 8, 4) + 1997;
100 break;
102 case 2: /* MMC v2.0 - v2.2 */
103 case 3: /* MMC v3.1 - v3.3 */
104 case 4: /* MMC v4 */
105 card->cid.manfid = UNSTUFF_BITS(resp, 120, 8);
106 card->cid.oemid = UNSTUFF_BITS(resp, 104, 16);
107 card->cid.prod_name[0] = UNSTUFF_BITS(resp, 96, 8);
108 card->cid.prod_name[1] = UNSTUFF_BITS(resp, 88, 8);
109 card->cid.prod_name[2] = UNSTUFF_BITS(resp, 80, 8);
110 card->cid.prod_name[3] = UNSTUFF_BITS(resp, 72, 8);
111 card->cid.prod_name[4] = UNSTUFF_BITS(resp, 64, 8);
112 card->cid.prod_name[5] = UNSTUFF_BITS(resp, 56, 8);
113 card->cid.serial = UNSTUFF_BITS(resp, 16, 32);
114 card->cid.month = UNSTUFF_BITS(resp, 12, 4);
115 card->cid.year = UNSTUFF_BITS(resp, 8, 4) + 1997;
116 break;
118 default:
119 printk(KERN_ERR "%s: card has unknown MMCA version %d\n",
120 mmc_hostname(card->host), card->csd.mmca_vsn);
121 return -EINVAL;
124 return 0;
128 * Given a 128-bit response, decode to our card CSD structure.
130 static int mmc_decode_csd(struct mmc_card *card)
132 struct mmc_csd *csd = &card->csd;
133 unsigned int e, m, csd_struct;
134 u32 *resp = card->raw_csd;
137 * We only understand CSD structure v1.1 and v1.2.
138 * v1.2 has extra information in bits 15, 11 and 10.
140 csd_struct = UNSTUFF_BITS(resp, 126, 2);
141 if (csd_struct != 1 && csd_struct != 2) {
142 printk(KERN_ERR "%s: unrecognised CSD structure version %d\n",
143 mmc_hostname(card->host), csd_struct);
144 return -EINVAL;
147 csd->mmca_vsn = UNSTUFF_BITS(resp, 122, 4);
148 m = UNSTUFF_BITS(resp, 115, 4);
149 e = UNSTUFF_BITS(resp, 112, 3);
150 csd->tacc_ns = (tacc_exp[e] * tacc_mant[m] + 9) / 10;
151 csd->tacc_clks = UNSTUFF_BITS(resp, 104, 8) * 100;
153 m = UNSTUFF_BITS(resp, 99, 4);
154 e = UNSTUFF_BITS(resp, 96, 3);
155 csd->max_dtr = tran_exp[e] * tran_mant[m];
156 csd->cmdclass = UNSTUFF_BITS(resp, 84, 12);
158 e = UNSTUFF_BITS(resp, 47, 3);
159 m = UNSTUFF_BITS(resp, 62, 12);
160 csd->capacity = (1 + m) << (e + 2);
162 csd->read_blkbits = UNSTUFF_BITS(resp, 80, 4);
163 csd->read_partial = UNSTUFF_BITS(resp, 79, 1);
164 csd->write_misalign = UNSTUFF_BITS(resp, 78, 1);
165 csd->read_misalign = UNSTUFF_BITS(resp, 77, 1);
166 csd->r2w_factor = UNSTUFF_BITS(resp, 26, 3);
167 csd->write_blkbits = UNSTUFF_BITS(resp, 22, 4);
168 csd->write_partial = UNSTUFF_BITS(resp, 21, 1);
170 return 0;
174 * Read and decode extended CSD.
176 static int mmc_read_ext_csd(struct mmc_card *card)
178 int err;
179 u8 *ext_csd;
181 BUG_ON(!card);
183 err = MMC_ERR_FAILED;
185 if (card->csd.mmca_vsn < CSD_SPEC_VER_4)
186 return MMC_ERR_NONE;
189 * As the ext_csd is so large and mostly unused, we don't store the
190 * raw block in mmc_card.
192 ext_csd = kmalloc(512, GFP_KERNEL);
193 if (!ext_csd) {
194 printk(KERN_ERR "%s: could not allocate a buffer to "
195 "receive the ext_csd. mmc v4 cards will be "
196 "treated as v3.\n", mmc_hostname(card->host));
197 return MMC_ERR_FAILED;
200 err = mmc_send_ext_csd(card, ext_csd);
201 if (err != MMC_ERR_NONE) {
203 * High capacity cards should have this "magic" size
204 * stored in their CSD.
206 if (card->csd.capacity == (4096 * 512)) {
207 printk(KERN_ERR "%s: unable to read EXT_CSD "
208 "on a possible high capacity card. "
209 "Card will be ignored.\n",
210 mmc_hostname(card->host));
211 } else {
212 printk(KERN_WARNING "%s: unable to read "
213 "EXT_CSD, performance might "
214 "suffer.\n",
215 mmc_hostname(card->host));
216 err = MMC_ERR_NONE;
218 goto out;
221 card->ext_csd.sectors =
222 ext_csd[EXT_CSD_SEC_CNT + 0] << 0 |
223 ext_csd[EXT_CSD_SEC_CNT + 1] << 8 |
224 ext_csd[EXT_CSD_SEC_CNT + 2] << 16 |
225 ext_csd[EXT_CSD_SEC_CNT + 3] << 24;
226 if (card->ext_csd.sectors)
227 mmc_card_set_blockaddr(card);
229 switch (ext_csd[EXT_CSD_CARD_TYPE]) {
230 case EXT_CSD_CARD_TYPE_52 | EXT_CSD_CARD_TYPE_26:
231 card->ext_csd.hs_max_dtr = 52000000;
232 break;
233 case EXT_CSD_CARD_TYPE_26:
234 card->ext_csd.hs_max_dtr = 26000000;
235 break;
236 default:
237 /* MMC v4 spec says this cannot happen */
238 printk(KERN_WARNING "%s: card is mmc v4 but doesn't "
239 "support any high-speed modes.\n",
240 mmc_hostname(card->host));
241 goto out;
244 out:
245 kfree(ext_csd);
247 return err;
251 * Handle the detection and initialisation of a card.
253 * In the case of a resume, "curcard" will contain the card
254 * we're trying to reinitialise.
256 static int mmc_init_card(struct mmc_host *host, u32 ocr,
257 struct mmc_card *oldcard)
259 struct mmc_card *card;
260 int err;
261 u32 cid[4];
262 unsigned int max_dtr;
264 BUG_ON(!host);
265 BUG_ON(!host->claimed);
268 * Since we're changing the OCR value, we seem to
269 * need to tell some cards to go back to the idle
270 * state. We wait 1ms to give cards time to
271 * respond.
273 mmc_go_idle(host);
275 /* The extra bit indicates that we support high capacity */
276 err = mmc_send_op_cond(host, ocr | (1 << 30), NULL);
277 if (err != MMC_ERR_NONE)
278 goto err;
281 * Fetch CID from card.
283 err = mmc_all_send_cid(host, cid);
284 if (err != MMC_ERR_NONE)
285 goto err;
287 if (oldcard) {
288 if (memcmp(cid, oldcard->raw_cid, sizeof(cid)) != 0)
289 goto err;
291 card = oldcard;
292 } else {
294 * Allocate card structure.
296 card = mmc_alloc_card(host);
297 if (IS_ERR(card))
298 goto err;
300 card->type = MMC_TYPE_MMC;
301 card->rca = 1;
302 memcpy(card->raw_cid, cid, sizeof(card->raw_cid));
306 * Set card RCA.
308 err = mmc_set_relative_addr(card);
309 if (err != MMC_ERR_NONE)
310 goto free_card;
312 mmc_set_bus_mode(host, MMC_BUSMODE_PUSHPULL);
314 if (!oldcard) {
316 * Fetch CSD from card.
318 err = mmc_send_csd(card, card->raw_csd);
319 if (err != MMC_ERR_NONE)
320 goto free_card;
322 err = mmc_decode_csd(card);
323 if (err < 0)
324 goto free_card;
325 err = mmc_decode_cid(card);
326 if (err < 0)
327 goto free_card;
331 * Select card, as all following commands rely on that.
333 err = mmc_select_card(card);
334 if (err != MMC_ERR_NONE)
335 goto free_card;
337 if (!oldcard) {
339 * Fetch and process extened CSD.
341 err = mmc_read_ext_csd(card);
342 if (err != MMC_ERR_NONE)
343 goto free_card;
347 * Activate high speed (if supported)
349 if ((card->ext_csd.hs_max_dtr != 0) &&
350 (host->caps & MMC_CAP_MMC_HIGHSPEED)) {
351 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
352 EXT_CSD_HS_TIMING, 1);
353 if (err != MMC_ERR_NONE)
354 goto free_card;
356 mmc_card_set_highspeed(card);
358 mmc_set_timing(card->host, MMC_TIMING_MMC_HS);
362 * Compute bus speed.
364 max_dtr = (unsigned int)-1;
366 if (mmc_card_highspeed(card)) {
367 if (max_dtr > card->ext_csd.hs_max_dtr)
368 max_dtr = card->ext_csd.hs_max_dtr;
369 } else if (max_dtr > card->csd.max_dtr) {
370 max_dtr = card->csd.max_dtr;
373 mmc_set_clock(host, max_dtr);
376 * Activate wide bus (if supported).
378 if ((card->csd.mmca_vsn >= CSD_SPEC_VER_4) &&
379 (host->caps & MMC_CAP_4_BIT_DATA)) {
380 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
381 EXT_CSD_BUS_WIDTH, EXT_CSD_BUS_WIDTH_4);
382 if (err != MMC_ERR_NONE)
383 goto free_card;
385 mmc_set_bus_width(card->host, MMC_BUS_WIDTH_4);
388 if (!oldcard)
389 host->card = card;
391 return MMC_ERR_NONE;
393 free_card:
394 if (!oldcard)
395 mmc_remove_card(card);
396 err:
398 return MMC_ERR_FAILED;
402 * Host is being removed. Free up the current card.
404 static void mmc_remove(struct mmc_host *host)
406 BUG_ON(!host);
407 BUG_ON(!host->card);
409 mmc_remove_card(host->card);
410 host->card = NULL;
414 * Card detection callback from host.
416 static void mmc_detect(struct mmc_host *host)
418 int err;
420 BUG_ON(!host);
421 BUG_ON(!host->card);
423 mmc_claim_host(host);
426 * Just check if our card has been removed.
428 err = mmc_send_status(host->card, NULL);
430 mmc_release_host(host);
432 if (err != MMC_ERR_NONE) {
433 mmc_remove(host);
435 mmc_claim_host(host);
436 mmc_detach_bus(host);
437 mmc_release_host(host);
441 MMC_ATTR_FN(cid, "%08x%08x%08x%08x\n", card->raw_cid[0], card->raw_cid[1],
442 card->raw_cid[2], card->raw_cid[3]);
443 MMC_ATTR_FN(csd, "%08x%08x%08x%08x\n", card->raw_csd[0], card->raw_csd[1],
444 card->raw_csd[2], card->raw_csd[3]);
445 MMC_ATTR_FN(date, "%02d/%04d\n", card->cid.month, card->cid.year);
446 MMC_ATTR_FN(fwrev, "0x%x\n", card->cid.fwrev);
447 MMC_ATTR_FN(hwrev, "0x%x\n", card->cid.hwrev);
448 MMC_ATTR_FN(manfid, "0x%06x\n", card->cid.manfid);
449 MMC_ATTR_FN(name, "%s\n", card->cid.prod_name);
450 MMC_ATTR_FN(oemid, "0x%04x\n", card->cid.oemid);
451 MMC_ATTR_FN(serial, "0x%08x\n", card->cid.serial);
453 static struct device_attribute mmc_dev_attrs[] = {
454 MMC_ATTR_RO(cid),
455 MMC_ATTR_RO(csd),
456 MMC_ATTR_RO(date),
457 MMC_ATTR_RO(fwrev),
458 MMC_ATTR_RO(hwrev),
459 MMC_ATTR_RO(manfid),
460 MMC_ATTR_RO(name),
461 MMC_ATTR_RO(oemid),
462 MMC_ATTR_RO(serial),
463 __ATTR_NULL,
467 * Adds sysfs entries as relevant.
469 static int mmc_sysfs_add(struct mmc_host *host, struct mmc_card *card)
471 int ret;
473 ret = mmc_add_attrs(card, mmc_dev_attrs);
474 if (ret < 0)
475 return ret;
477 return 0;
481 * Removes the sysfs entries added by mmc_sysfs_add().
483 static void mmc_sysfs_remove(struct mmc_host *host, struct mmc_card *card)
485 mmc_remove_attrs(card, mmc_dev_attrs);
488 #ifdef CONFIG_MMC_UNSAFE_RESUME
491 * Suspend callback from host.
493 static void mmc_suspend(struct mmc_host *host)
495 BUG_ON(!host);
496 BUG_ON(!host->card);
498 mmc_claim_host(host);
499 mmc_deselect_cards(host);
500 host->card->state &= ~MMC_STATE_HIGHSPEED;
501 mmc_release_host(host);
505 * Resume callback from host.
507 * This function tries to determine if the same card is still present
508 * and, if so, restore all state to it.
510 static void mmc_resume(struct mmc_host *host)
512 int err;
514 BUG_ON(!host);
515 BUG_ON(!host->card);
517 mmc_claim_host(host);
518 err = mmc_init_card(host, host->ocr, host->card);
519 mmc_release_host(host);
521 if (err != MMC_ERR_NONE) {
522 mmc_remove(host);
524 mmc_claim_host(host);
525 mmc_detach_bus(host);
526 mmc_release_host(host);
531 #else
533 #define mmc_suspend NULL
534 #define mmc_resume NULL
536 #endif
538 static const struct mmc_bus_ops mmc_ops = {
539 .remove = mmc_remove,
540 .detect = mmc_detect,
541 .sysfs_add = mmc_sysfs_add,
542 .sysfs_remove = mmc_sysfs_remove,
543 .suspend = mmc_suspend,
544 .resume = mmc_resume,
548 * Starting point for MMC card init.
550 int mmc_attach_mmc(struct mmc_host *host, u32 ocr)
552 int err;
554 BUG_ON(!host);
555 BUG_ON(!host->claimed);
557 mmc_attach_bus(host, &mmc_ops);
560 * Sanity check the voltages that the card claims to
561 * support.
563 if (ocr & 0x7F) {
564 printk(KERN_WARNING "%s: card claims to support voltages "
565 "below the defined range. These will be ignored.\n",
566 mmc_hostname(host));
567 ocr &= ~0x7F;
570 host->ocr = mmc_select_voltage(host, ocr);
573 * Can we support the voltage of the card?
575 if (!host->ocr) {
576 err = -EINVAL;
577 goto err;
581 * Detect and init the card.
583 err = mmc_init_card(host, host->ocr, NULL);
584 if (err != MMC_ERR_NONE)
585 goto err;
587 mmc_release_host(host);
589 err = mmc_add_card(host->card);
590 if (err)
591 goto remove_card;
593 return 0;
595 remove_card:
596 mmc_remove_card(host->card);
597 host->card = NULL;
598 mmc_claim_host(host);
599 err:
600 mmc_detach_bus(host);
601 mmc_release_host(host);
603 printk(KERN_ERR "%s: error %d whilst initialising MMC card\n",
604 mmc_hostname(host), err);
606 return 0;