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