Integrae the XBW-version of SDMMC-drver into RK29SDK, and the xbw-version is set...
[firefly-linux-kernel-4.4.55.git] / drivers / mmc / core / mmc.c
1 /*
2  *  linux/drivers/mmc/core/mmc.c
3  *
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.
7  *
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.
11  */
12
13 #include <linux/err.h>
14
15 #include <linux/mmc/host.h>
16 #include <linux/mmc/card.h>
17 #include <linux/mmc/mmc.h>
18
19 #include "core.h"
20 #include "bus.h"
21 #include "mmc_ops.h"
22
23 static const unsigned int tran_exp[] = {
24         10000,          100000,         1000000,        10000000,
25         0,              0,              0,              0
26 };
27
28 static const unsigned char tran_mant[] = {
29         0,      10,     12,     13,     15,     20,     25,     30,
30         35,     40,     45,     50,     55,     60,     70,     80,
31 };
32
33 static const unsigned int tacc_exp[] = {
34         1,      10,     100,    1000,   10000,  100000, 1000000, 10000000,
35 };
36
37 static const unsigned int tacc_mant[] = {
38         0,      10,     12,     13,     15,     20,     25,     30,
39         35,     40,     45,     50,     55,     60,     70,     80,
40 };
41
42 #define UNSTUFF_BITS(resp,start,size)                                   \
43         ({                                                              \
44                 const int __size = size;                                \
45                 const u32 __mask = (__size < 32 ? 1 << __size : 0) - 1; \
46                 const int __off = 3 - ((start) / 32);                   \
47                 const int __shft = (start) & 31;                        \
48                 u32 __res;                                              \
49                                                                         \
50                 __res = resp[__off] >> __shft;                          \
51                 if (__size + __shft > 32)                               \
52                         __res |= resp[__off-1] << ((32 - __shft) % 32); \
53                 __res & __mask;                                         \
54         })
55
56 /*
57  * Given the decoded CSD structure, decode the raw CID to our CID structure.
58  */
59 static int mmc_decode_cid(struct mmc_card *card)
60 {
61         u32 *resp = card->raw_cid;
62
63         /*
64          * The selection of the format here is based upon published
65          * specs from sandisk and from what people have reported.
66          */
67         switch (card->csd.mmca_vsn) {
68         case 0: /* MMC v1.0 - v1.2 */
69         case 1: /* MMC v1.4 */
70                 card->cid.manfid        = UNSTUFF_BITS(resp, 104, 24);
71                 card->cid.prod_name[0]  = UNSTUFF_BITS(resp, 96, 8);
72                 card->cid.prod_name[1]  = UNSTUFF_BITS(resp, 88, 8);
73                 card->cid.prod_name[2]  = UNSTUFF_BITS(resp, 80, 8);
74                 card->cid.prod_name[3]  = UNSTUFF_BITS(resp, 72, 8);
75                 card->cid.prod_name[4]  = UNSTUFF_BITS(resp, 64, 8);
76                 card->cid.prod_name[5]  = UNSTUFF_BITS(resp, 56, 8);
77                 card->cid.prod_name[6]  = UNSTUFF_BITS(resp, 48, 8);
78                 card->cid.hwrev         = UNSTUFF_BITS(resp, 44, 4);
79                 card->cid.fwrev         = UNSTUFF_BITS(resp, 40, 4);
80                 card->cid.serial        = UNSTUFF_BITS(resp, 16, 24);
81                 card->cid.month         = UNSTUFF_BITS(resp, 12, 4);
82                 card->cid.year          = UNSTUFF_BITS(resp, 8, 4) + 1997;
83                 break;
84
85         case 2: /* MMC v2.0 - v2.2 */
86         case 3: /* MMC v3.1 - v3.3 */
87         case 4: /* MMC v4 */
88                 card->cid.manfid        = UNSTUFF_BITS(resp, 120, 8);
89                 card->cid.oemid         = UNSTUFF_BITS(resp, 104, 16);
90                 card->cid.prod_name[0]  = UNSTUFF_BITS(resp, 96, 8);
91                 card->cid.prod_name[1]  = UNSTUFF_BITS(resp, 88, 8);
92                 card->cid.prod_name[2]  = UNSTUFF_BITS(resp, 80, 8);
93                 card->cid.prod_name[3]  = UNSTUFF_BITS(resp, 72, 8);
94                 card->cid.prod_name[4]  = UNSTUFF_BITS(resp, 64, 8);
95                 card->cid.prod_name[5]  = UNSTUFF_BITS(resp, 56, 8);
96                 card->cid.serial        = UNSTUFF_BITS(resp, 16, 32);
97                 card->cid.month         = UNSTUFF_BITS(resp, 12, 4);
98                 card->cid.year          = UNSTUFF_BITS(resp, 8, 4) + 1997;
99                 break;
100
101         default:
102                 printk(KERN_ERR "%s: card has unknown MMCA version %d\n",
103                         mmc_hostname(card->host), card->csd.mmca_vsn);
104                 return -EINVAL;
105         }
106
107         return 0;
108 }
109
110 /*
111  * Given a 128-bit response, decode to our card CSD structure.
112  */
113 static int mmc_decode_csd(struct mmc_card *card)
114 {
115         struct mmc_csd *csd = &card->csd;
116         unsigned int e, m, csd_struct;
117         u32 *resp = card->raw_csd;
118
119         /*
120          * We only understand CSD structure v1.1 and v1.2.
121          * v1.2 has extra information in bits 15, 11 and 10.
122          */
123         csd_struct = UNSTUFF_BITS(resp, 126, 2);
124         if (csd_struct != 1 && csd_struct != 2) {
125                 printk(KERN_ERR "%s: unrecognised CSD structure version %d\n",
126                         mmc_hostname(card->host), csd_struct);
127                 return -EINVAL;
128         }
129
130         csd->mmca_vsn    = UNSTUFF_BITS(resp, 122, 4);
131         m = UNSTUFF_BITS(resp, 115, 4);
132         e = UNSTUFF_BITS(resp, 112, 3);
133         csd->tacc_ns     = (tacc_exp[e] * tacc_mant[m] + 9) / 10;
134         csd->tacc_clks   = UNSTUFF_BITS(resp, 104, 8) * 100;
135
136         m = UNSTUFF_BITS(resp, 99, 4);
137         e = UNSTUFF_BITS(resp, 96, 3);
138         csd->max_dtr      = tran_exp[e] * tran_mant[m];
139         csd->cmdclass     = UNSTUFF_BITS(resp, 84, 12);
140
141         e = UNSTUFF_BITS(resp, 47, 3);
142         m = UNSTUFF_BITS(resp, 62, 12);
143         csd->capacity     = (1 + m) << (e + 2);
144
145         csd->read_blkbits = UNSTUFF_BITS(resp, 80, 4);
146         csd->read_partial = UNSTUFF_BITS(resp, 79, 1);
147         csd->write_misalign = UNSTUFF_BITS(resp, 78, 1);
148         csd->read_misalign = UNSTUFF_BITS(resp, 77, 1);
149         csd->r2w_factor = UNSTUFF_BITS(resp, 26, 3);
150         csd->write_blkbits = UNSTUFF_BITS(resp, 22, 4);
151         csd->write_partial = UNSTUFF_BITS(resp, 21, 1);
152
153         return 0;
154 }
155
156 /*
157  * Read and decode extended CSD.
158  */
159 static int mmc_read_ext_csd(struct mmc_card *card)
160 {
161         int err;
162         u8 *ext_csd;
163
164         BUG_ON(!card);
165
166         if (card->csd.mmca_vsn < CSD_SPEC_VER_4)
167                 return 0;
168
169         /*
170          * As the ext_csd is so large and mostly unused, we don't store the
171          * raw block in mmc_card.
172          */
173         ext_csd = kmalloc(512, GFP_KERNEL);
174         if (!ext_csd) {
175                 printk(KERN_ERR "%s: could not allocate a buffer to "
176                         "receive the ext_csd.\n", mmc_hostname(card->host));
177                 return -ENOMEM;
178         }
179
180         err = mmc_send_ext_csd(card, ext_csd);
181         if (err) {
182                 /* If the host or the card can't do the switch,
183                  * fail more gracefully. */
184                 if ((err != -EINVAL)
185                  && (err != -ENOSYS)
186                  && (err != -EFAULT))
187                         goto out;
188
189                 /*
190                  * High capacity cards should have this "magic" size
191                  * stored in their CSD.
192                  */
193                 if (card->csd.capacity == (4096 * 512)) {
194                         printk(KERN_ERR "%s: unable to read EXT_CSD "
195                                 "on a possible high capacity card. "
196                                 "Card will be ignored.\n",
197                                 mmc_hostname(card->host));
198                 } else {
199                         printk(KERN_WARNING "%s: unable to read "
200                                 "EXT_CSD, performance might "
201                                 "suffer.\n",
202                                 mmc_hostname(card->host));
203                         err = 0;
204                 }
205
206                 goto out;
207         }
208
209         card->ext_csd.rev = ext_csd[EXT_CSD_REV];
210         if (card->ext_csd.rev > 5) {
211                 printk(KERN_ERR "%s: unrecognised EXT_CSD structure "
212                         "version %d\n", mmc_hostname(card->host),
213                         card->ext_csd.rev);
214                 err = -EINVAL;
215                 goto out;
216         }
217
218         if (card->ext_csd.rev >= 2) {
219                 card->ext_csd.sectors =
220                         ext_csd[EXT_CSD_SEC_CNT + 0] << 0 |
221                         ext_csd[EXT_CSD_SEC_CNT + 1] << 8 |
222                         ext_csd[EXT_CSD_SEC_CNT + 2] << 16 |
223                         ext_csd[EXT_CSD_SEC_CNT + 3] << 24;
224                 if (card->ext_csd.sectors)
225                         mmc_card_set_blockaddr(card);
226         }
227
228         switch (ext_csd[EXT_CSD_CARD_TYPE]) {
229         case EXT_CSD_CARD_TYPE_52 | EXT_CSD_CARD_TYPE_26:
230                 card->ext_csd.hs_max_dtr = 52000000;
231                 break;
232         case EXT_CSD_CARD_TYPE_26:
233                 card->ext_csd.hs_max_dtr = 26000000;
234                 break;
235         default:
236                 /* MMC v4 spec says this cannot happen */
237                 printk(KERN_WARNING "%s: card is mmc v4 but doesn't "
238                         "support any high-speed modes.\n",
239                         mmc_hostname(card->host));
240                 goto out;
241         }
242
243         if (card->ext_csd.rev >= 3) {
244                 u8 sa_shift = ext_csd[EXT_CSD_S_A_TIMEOUT];
245
246                 /* Sleep / awake timeout in 100ns units */
247                 if (sa_shift > 0 && sa_shift <= 0x17)
248                         card->ext_csd.sa_timeout =
249                                         1 << ext_csd[EXT_CSD_S_A_TIMEOUT];
250         }
251
252 out:
253         kfree(ext_csd);
254
255         return err;
256 }
257
258 MMC_DEV_ATTR(cid, "%08x%08x%08x%08x\n", card->raw_cid[0], card->raw_cid[1],
259         card->raw_cid[2], card->raw_cid[3]);
260 MMC_DEV_ATTR(csd, "%08x%08x%08x%08x\n", card->raw_csd[0], card->raw_csd[1],
261         card->raw_csd[2], card->raw_csd[3]);
262 MMC_DEV_ATTR(date, "%02d/%04d\n", card->cid.month, card->cid.year);
263 MMC_DEV_ATTR(fwrev, "0x%x\n", card->cid.fwrev);
264 MMC_DEV_ATTR(hwrev, "0x%x\n", card->cid.hwrev);
265 MMC_DEV_ATTR(manfid, "0x%06x\n", card->cid.manfid);
266 MMC_DEV_ATTR(name, "%s\n", card->cid.prod_name);
267 MMC_DEV_ATTR(oemid, "0x%04x\n", card->cid.oemid);
268 MMC_DEV_ATTR(serial, "0x%08x\n", card->cid.serial);
269
270 static struct attribute *mmc_std_attrs[] = {
271         &dev_attr_cid.attr,
272         &dev_attr_csd.attr,
273         &dev_attr_date.attr,
274         &dev_attr_fwrev.attr,
275         &dev_attr_hwrev.attr,
276         &dev_attr_manfid.attr,
277         &dev_attr_name.attr,
278         &dev_attr_oemid.attr,
279         &dev_attr_serial.attr,
280         NULL,
281 };
282
283 static struct attribute_group mmc_std_attr_group = {
284         .attrs = mmc_std_attrs,
285 };
286
287 static const struct attribute_group *mmc_attr_groups[] = {
288         &mmc_std_attr_group,
289         NULL,
290 };
291
292 static struct device_type mmc_type = {
293         .groups = mmc_attr_groups,
294 };
295
296 /*
297  * Handle the detection and initialisation of a card.
298  *
299  * In the case of a resume, "oldcard" will contain the card
300  * we're trying to reinitialise.
301  */
302 static int mmc_init_card(struct mmc_host *host, u32 ocr,
303         struct mmc_card *oldcard)
304 {
305         struct mmc_card *card;
306         int err;
307         u32 cid[4];
308         unsigned int max_dtr;
309
310         BUG_ON(!host);
311         WARN_ON(!host->claimed);
312
313         /*
314          * Since we're changing the OCR value, we seem to
315          * need to tell some cards to go back to the idle
316          * state.  We wait 1ms to give cards time to
317          * respond.
318          */
319         mmc_go_idle(host);
320
321         /* The extra bit indicates that we support high capacity */
322         err = mmc_send_op_cond(host, ocr | (1 << 30), NULL);
323         if (err)
324         {
325 #if defined(CONFIG_SDMMC_RK29) && !defined(CONFIG_SDMMC_RK29_OLD) 
326             printk("%s..%d..  ====*Identify the card as MMC , but OCR error, so fail to initialize.===xbw[%s]===\n",\
327                 __FUNCTION__, __LINE__, mmc_hostname(host));
328 #endif          
329                 goto err;
330         }
331
332         /*
333          * For SPI, enable CRC as appropriate.
334          */
335         if (mmc_host_is_spi(host)) {
336                 err = mmc_spi_set_crc(host, use_spi_crc);
337                 if (err)
338                         goto err;
339         }
340
341         /*
342          * Fetch CID from card.
343          */
344         if (mmc_host_is_spi(host))
345                 err = mmc_send_cid(host, cid);
346         else
347                 err = mmc_all_send_cid(host, cid);
348         if (err)
349                 goto err;
350
351         if (oldcard) {
352                 if (memcmp(cid, oldcard->raw_cid, sizeof(cid)) != 0) {
353                         err = -ENOENT;
354                         goto err;
355                 }
356
357                 card = oldcard;
358         } else {
359                 /*
360                  * Allocate card structure.
361                  */
362                 card = mmc_alloc_card(host, &mmc_type);
363                 if (IS_ERR(card)) {
364                         err = PTR_ERR(card);
365                         goto err;
366                 }
367
368                 card->type = MMC_TYPE_MMC;
369                 card->rca = 1;
370                 memcpy(card->raw_cid, cid, sizeof(card->raw_cid));
371         }
372
373         /*
374          * For native busses:  set card RCA and quit open drain mode.
375          */
376         if (!mmc_host_is_spi(host)) {
377                 err = mmc_set_relative_addr(card);
378                 if (err)
379                         goto free_card;
380
381                 mmc_set_bus_mode(host, MMC_BUSMODE_PUSHPULL);
382         }
383
384         if (!oldcard) {
385                 /*
386                  * Fetch CSD from card.
387                  */
388                 err = mmc_send_csd(card, card->raw_csd);
389                 if (err)
390                         goto free_card;
391
392                 err = mmc_decode_csd(card);
393                 if (err)
394                         goto free_card;
395                 err = mmc_decode_cid(card);
396                 if (err)
397                         goto free_card;
398         }
399
400         /*
401          * Select card, as all following commands rely on that.
402          */
403         if (!mmc_host_is_spi(host)) {
404                 err = mmc_select_card(card);
405                 if (err)
406                         goto free_card;
407         }
408
409         if (!oldcard) {
410                 /*
411                  * Fetch and process extended CSD.
412                  */
413                 err = mmc_read_ext_csd(card);
414                 if (err)
415                         goto free_card;
416         }
417
418         /*
419          * Activate high speed (if supported)
420          */
421         if ((card->ext_csd.hs_max_dtr != 0) &&
422                 (host->caps & MMC_CAP_MMC_HIGHSPEED)) {
423                 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
424                         EXT_CSD_HS_TIMING, 1);
425                 if (err && err != -EBADMSG)
426                         goto free_card;
427
428                 if (err) {
429                         printk(KERN_WARNING "%s: switch to highspeed failed\n",
430                                mmc_hostname(card->host));
431                         err = 0;
432                 } else {
433                         mmc_card_set_highspeed(card);
434                         mmc_set_timing(card->host, MMC_TIMING_MMC_HS);
435                 }
436         }
437
438         /*
439          * Compute bus speed.
440          */
441         max_dtr = (unsigned int)-1;
442
443         if (mmc_card_highspeed(card)) {
444                 if (max_dtr > card->ext_csd.hs_max_dtr)
445                         max_dtr = card->ext_csd.hs_max_dtr;
446         } else if (max_dtr > card->csd.max_dtr) {
447 #if defined(CONFIG_SDMMC_RK29) && !defined(CONFIG_SDMMC_RK29_OLD)
448         //in order to expand the compatibility of card. Added by xbw@2011-03-21
449                 card->csd.max_dtr = (card->csd.max_dtr > MMC_FPP_FREQ) ? MMC_FPP_FREQ : (card->csd.max_dtr); 
450 #endif
451                 max_dtr = card->csd.max_dtr;
452         }
453
454         mmc_set_clock(host, max_dtr);
455
456         /*
457          * Activate wide bus (if supported).
458          */
459         if ((card->csd.mmca_vsn >= CSD_SPEC_VER_4) &&
460             (host->caps & (MMC_CAP_4_BIT_DATA | MMC_CAP_8_BIT_DATA))) {
461                 unsigned ext_csd_bit, bus_width;
462
463                 if (host->caps & MMC_CAP_8_BIT_DATA) {
464                         ext_csd_bit = EXT_CSD_BUS_WIDTH_8;
465                         bus_width = MMC_BUS_WIDTH_8;
466                 } else {
467                         ext_csd_bit = EXT_CSD_BUS_WIDTH_4;
468                         bus_width = MMC_BUS_WIDTH_4;
469                 }
470
471                 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
472                                  EXT_CSD_BUS_WIDTH, ext_csd_bit);
473
474                 if (err && err != -EBADMSG)
475                         goto free_card;
476
477                 if (err) {
478                         printk(KERN_WARNING "%s: switch to bus width %d "
479                                "failed\n", mmc_hostname(card->host),
480                                1 << bus_width);
481                         err = 0;
482                 } else {
483                         mmc_set_bus_width(card->host, bus_width);
484                 }
485         }
486
487         if (!oldcard)
488                 host->card = card;
489
490         return 0;
491
492 free_card:
493         if (!oldcard)
494                 mmc_remove_card(card);
495 err:
496
497         return err;
498 }
499
500 /*
501  * Host is being removed. Free up the current card.
502  */
503 static void mmc_remove(struct mmc_host *host)
504 {
505         BUG_ON(!host);
506         BUG_ON(!host->card);
507
508         mmc_remove_card(host->card);
509         host->card = NULL;
510 }
511
512 /*
513  * Card detection callback from host.
514  */
515 static void mmc_detect(struct mmc_host *host)
516 {
517         int err;
518
519         BUG_ON(!host);
520         BUG_ON(!host->card);
521
522         mmc_claim_host(host);
523
524         /*
525          * Just check if our card has been removed.
526          */
527         err = mmc_send_status(host->card, NULL);
528
529         mmc_release_host(host);
530
531         if (err) {
532                 mmc_remove(host);
533
534                 mmc_claim_host(host);
535                 mmc_detach_bus(host);
536                 mmc_release_host(host);
537         }
538 }
539
540 /*
541  * Suspend callback from host.
542  */
543 static int mmc_suspend(struct mmc_host *host)
544 {
545         BUG_ON(!host);
546         BUG_ON(!host->card);
547
548         mmc_claim_host(host);
549         if (!mmc_host_is_spi(host))
550                 mmc_deselect_cards(host);
551         host->card->state &= ~MMC_STATE_HIGHSPEED;
552         mmc_release_host(host);
553
554         return 0;
555 }
556
557 /*
558  * Resume callback from host.
559  *
560  * This function tries to determine if the same card is still present
561  * and, if so, restore all state to it.
562  */
563 static int mmc_resume(struct mmc_host *host)
564 {
565         int err;
566
567         BUG_ON(!host);
568         BUG_ON(!host->card);
569
570         mmc_claim_host(host);
571         err = mmc_init_card(host, host->ocr, host->card);
572         mmc_release_host(host);
573
574         return err;
575 }
576
577 static void mmc_power_restore(struct mmc_host *host)
578 {
579         host->card->state &= ~MMC_STATE_HIGHSPEED;
580         mmc_claim_host(host);
581         mmc_init_card(host, host->ocr, host->card);
582         mmc_release_host(host);
583 }
584
585 static int mmc_sleep(struct mmc_host *host)
586 {
587         struct mmc_card *card = host->card;
588         int err = -ENOSYS;
589
590         if (card && card->ext_csd.rev >= 3) {
591                 err = mmc_card_sleepawake(host, 1);
592                 if (err < 0)
593                         pr_debug("%s: Error %d while putting card into sleep",
594                                  mmc_hostname(host), err);
595         }
596
597         return err;
598 }
599
600 static int mmc_awake(struct mmc_host *host)
601 {
602         struct mmc_card *card = host->card;
603         int err = -ENOSYS;
604
605         if (card && card->ext_csd.rev >= 3) {
606                 err = mmc_card_sleepawake(host, 0);
607                 if (err < 0)
608                         pr_debug("%s: Error %d while awaking sleeping card",
609                                  mmc_hostname(host), err);
610         }
611
612         return err;
613 }
614
615 #ifdef CONFIG_MMC_UNSAFE_RESUME
616
617 static const struct mmc_bus_ops mmc_ops = {
618         .awake = mmc_awake,
619         .sleep = mmc_sleep,
620         .remove = mmc_remove,
621         .detect = mmc_detect,
622         .suspend = mmc_suspend,
623         .resume = mmc_resume,
624         .power_restore = mmc_power_restore,
625 };
626
627 static void mmc_attach_bus_ops(struct mmc_host *host)
628 {
629         mmc_attach_bus(host, &mmc_ops);
630 }
631
632 #else
633
634 static const struct mmc_bus_ops mmc_ops = {
635         .awake = mmc_awake,
636         .sleep = mmc_sleep,
637         .remove = mmc_remove,
638         .detect = mmc_detect,
639         .suspend = NULL,
640         .resume = NULL,
641         .power_restore = mmc_power_restore,
642 };
643
644 static const struct mmc_bus_ops mmc_ops_unsafe = {
645         .awake = mmc_awake,
646         .sleep = mmc_sleep,
647         .remove = mmc_remove,
648         .detect = mmc_detect,
649         .suspend = mmc_suspend,
650         .resume = mmc_resume,
651         .power_restore = mmc_power_restore,
652 };
653
654 static void mmc_attach_bus_ops(struct mmc_host *host)
655 {
656         const struct mmc_bus_ops *bus_ops;
657
658         if (host->caps & MMC_CAP_NONREMOVABLE)
659                 bus_ops = &mmc_ops_unsafe;
660         else
661                 bus_ops = &mmc_ops;
662         mmc_attach_bus(host, bus_ops);
663 }
664
665 #endif
666
667 /*
668  * Starting point for MMC card init.
669  */
670 int mmc_attach_mmc(struct mmc_host *host, u32 ocr)
671 {
672         int err;
673 #if defined(CONFIG_SDMMC_RK29) && !defined(CONFIG_SDMMC_RK29_OLD)       
674         int retry_times = 3;
675 #endif  
676
677         BUG_ON(!host);
678         WARN_ON(!host->claimed);
679
680         mmc_attach_bus_ops(host);
681
682         /*
683          * We need to get OCR a different way for SPI.
684          */
685         if (mmc_host_is_spi(host)) {
686                 err = mmc_spi_read_ocr(host, 1, &ocr);
687                 if (err)
688                         goto err;
689         }
690
691         /*
692          * Sanity check the voltages that the card claims to
693          * support.
694          */
695         if (ocr & 0x7F) {
696                 printk(KERN_WARNING "%s: card claims to support voltages "
697                        "below the defined range. These will be ignored.\n",
698                        mmc_hostname(host));
699                 ocr &= ~0x7F;
700         }
701
702         host->ocr = mmc_select_voltage(host, ocr);
703
704         /*
705          * Can we support the voltage of the card?
706          */
707         if (!host->ocr) {
708                 err = -EINVAL;
709                 goto err;
710         }
711
712         /*
713          * Detect and init the card.
714          */
715         err = mmc_init_card(host, host->ocr, NULL);
716         if (err)
717                 goto err;
718
719         mmc_release_host(host);
720  
721 #if defined(CONFIG_SDMMC_RK29) && !defined(CONFIG_SDMMC_RK29_OLD)
722 //modifyed by xbw at 2011--04-11
723 Retry_add:
724         err = mmc_add_card(host->card);
725         if (err)
726         {
727             //retry add the card; Added by xbw
728         if((--retry_times >= 0))
729         {        
730             printk("\n%s..%s..%d   ****error in add partition, so retry.  ===xbw[%s]===\n",__FUNCTION__,__FILE__,__LINE__, mmc_hostname(host));   
731             /* sleep some time */
732             set_current_state(TASK_INTERRUPTIBLE);
733             schedule_timeout(HZ/2);
734             
735             goto Retry_add;
736         }
737
738                 goto remove_card;
739     
740         }
741 #else
742     err = mmc_add_card(host->card);
743         if (err)
744                 goto remove_card;
745 #endif
746                 
747
748         return 0;
749
750 remove_card:
751         mmc_remove_card(host->card);
752         host->card = NULL;
753         mmc_claim_host(host);
754 err:
755         mmc_detach_bus(host);
756         mmc_release_host(host);
757
758         printk(KERN_ERR "%s: error %d whilst initialising MMC card\n",
759                 mmc_hostname(host), err);
760
761         return err;
762 }