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>
14 #include <linux/slab.h>
15 #include <linux/stat.h>
17 #include <linux/mmc/host.h>
18 #include <linux/mmc/card.h>
19 #include <linux/mmc/mmc.h>
20 #include <linux/mmc/sd.h>
28 static const unsigned int tran_exp
[] = {
29 10000, 100000, 1000000, 10000000,
33 static const unsigned char tran_mant
[] = {
34 0, 10, 12, 13, 15, 20, 25, 30,
35 35, 40, 45, 50, 55, 60, 70, 80,
38 static const unsigned int tacc_exp
[] = {
39 1, 10, 100, 1000, 10000, 100000, 1000000, 10000000,
42 static const unsigned int tacc_mant
[] = {
43 0, 10, 12, 13, 15, 20, 25, 30,
44 35, 40, 45, 50, 55, 60, 70, 80,
47 #define UNSTUFF_BITS(resp,start,size) \
49 const int __size = size; \
50 const u32 __mask = (__size < 32 ? 1 << __size : 0) - 1; \
51 const int __off = 3 - ((start) / 32); \
52 const int __shft = (start) & 31; \
55 __res = resp[__off] >> __shft; \
56 if (__size + __shft > 32) \
57 __res |= resp[__off-1] << ((32 - __shft) % 32); \
62 * Given the decoded CSD structure, decode the raw CID to our CID structure.
64 void mmc_decode_cid(struct mmc_card
*card
)
66 u32
*resp
= card
->raw_cid
;
68 memset(&card
->cid
, 0, sizeof(struct mmc_cid
));
71 * SD doesn't currently have a version field so we will
72 * have to assume we can parse this.
74 card
->cid
.manfid
= UNSTUFF_BITS(resp
, 120, 8);
75 card
->cid
.oemid
= UNSTUFF_BITS(resp
, 104, 16);
76 card
->cid
.prod_name
[0] = UNSTUFF_BITS(resp
, 96, 8);
77 card
->cid
.prod_name
[1] = UNSTUFF_BITS(resp
, 88, 8);
78 card
->cid
.prod_name
[2] = UNSTUFF_BITS(resp
, 80, 8);
79 card
->cid
.prod_name
[3] = UNSTUFF_BITS(resp
, 72, 8);
80 card
->cid
.prod_name
[4] = UNSTUFF_BITS(resp
, 64, 8);
81 card
->cid
.hwrev
= UNSTUFF_BITS(resp
, 60, 4);
82 card
->cid
.fwrev
= UNSTUFF_BITS(resp
, 56, 4);
83 card
->cid
.serial
= UNSTUFF_BITS(resp
, 24, 32);
84 card
->cid
.year
= UNSTUFF_BITS(resp
, 12, 8);
85 card
->cid
.month
= UNSTUFF_BITS(resp
, 8, 4);
87 card
->cid
.year
+= 2000; /* SD cards year offset */
91 * Given a 128-bit response, decode to our card CSD structure.
93 static int mmc_decode_csd(struct mmc_card
*card
)
95 struct mmc_csd
*csd
= &card
->csd
;
96 unsigned int e
, m
, csd_struct
;
97 u32
*resp
= card
->raw_csd
;
99 csd_struct
= UNSTUFF_BITS(resp
, 126, 2);
101 switch (csd_struct
) {
103 m
= UNSTUFF_BITS(resp
, 115, 4);
104 e
= UNSTUFF_BITS(resp
, 112, 3);
105 csd
->tacc_ns
= (tacc_exp
[e
] * tacc_mant
[m
] + 9) / 10;
106 csd
->tacc_clks
= UNSTUFF_BITS(resp
, 104, 8) * 100;
108 m
= UNSTUFF_BITS(resp
, 99, 4);
109 e
= UNSTUFF_BITS(resp
, 96, 3);
110 csd
->max_dtr
= tran_exp
[e
] * tran_mant
[m
];
111 csd
->cmdclass
= UNSTUFF_BITS(resp
, 84, 12);
113 e
= UNSTUFF_BITS(resp
, 47, 3);
114 m
= UNSTUFF_BITS(resp
, 62, 12);
115 csd
->capacity
= (1 + m
) << (e
+ 2);
117 csd
->read_blkbits
= UNSTUFF_BITS(resp
, 80, 4);
118 csd
->read_partial
= UNSTUFF_BITS(resp
, 79, 1);
119 csd
->write_misalign
= UNSTUFF_BITS(resp
, 78, 1);
120 csd
->read_misalign
= UNSTUFF_BITS(resp
, 77, 1);
121 csd
->r2w_factor
= UNSTUFF_BITS(resp
, 26, 3);
122 csd
->write_blkbits
= UNSTUFF_BITS(resp
, 22, 4);
123 csd
->write_partial
= UNSTUFF_BITS(resp
, 21, 1);
125 if (UNSTUFF_BITS(resp
, 46, 1)) {
127 } else if (csd
->write_blkbits
>= 9) {
128 csd
->erase_size
= UNSTUFF_BITS(resp
, 39, 7) + 1;
129 csd
->erase_size
<<= csd
->write_blkbits
- 9;
134 * This is a block-addressed SDHC or SDXC card. Most
135 * interesting fields are unused and have fixed
136 * values. To avoid getting tripped by buggy cards,
137 * we assume those fixed values ourselves.
139 mmc_card_set_blockaddr(card
);
141 csd
->tacc_ns
= 0; /* Unused */
142 csd
->tacc_clks
= 0; /* Unused */
144 m
= UNSTUFF_BITS(resp
, 99, 4);
145 e
= UNSTUFF_BITS(resp
, 96, 3);
146 csd
->max_dtr
= tran_exp
[e
] * tran_mant
[m
];
147 csd
->cmdclass
= UNSTUFF_BITS(resp
, 84, 12);
148 csd
->c_size
= UNSTUFF_BITS(resp
, 48, 22);
150 /* SDXC cards have a minimum C_SIZE of 0x00FFFF */
151 if (csd
->c_size
>= 0xFFFF)
152 mmc_card_set_ext_capacity(card
);
154 m
= UNSTUFF_BITS(resp
, 48, 22);
155 csd
->capacity
= (1 + m
) << 10;
157 csd
->read_blkbits
= 9;
158 csd
->read_partial
= 0;
159 csd
->write_misalign
= 0;
160 csd
->read_misalign
= 0;
161 csd
->r2w_factor
= 4; /* Unused */
162 csd
->write_blkbits
= 9;
163 csd
->write_partial
= 0;
167 printk(KERN_ERR
"%s: unrecognised CSD structure version %d\n",
168 mmc_hostname(card
->host
), csd_struct
);
172 card
->erase_size
= csd
->erase_size
;
178 * Given a 64-bit response, decode to our card SCR structure.
180 static int mmc_decode_scr(struct mmc_card
*card
)
182 struct sd_scr
*scr
= &card
->scr
;
183 unsigned int scr_struct
;
186 resp
[3] = card
->raw_scr
[1];
187 resp
[2] = card
->raw_scr
[0];
189 scr_struct
= UNSTUFF_BITS(resp
, 60, 4);
190 if (scr_struct
!= 0) {
191 printk(KERN_ERR
"%s: unrecognised SCR structure version %d\n",
192 mmc_hostname(card
->host
), scr_struct
);
196 scr
->sda_vsn
= UNSTUFF_BITS(resp
, 56, 4);
197 scr
->bus_widths
= UNSTUFF_BITS(resp
, 48, 4);
198 if (scr
->sda_vsn
== SCR_SPEC_VER_2
)
199 /* Check if Physical Layer Spec v3.0 is supported */
200 scr
->sda_spec3
= UNSTUFF_BITS(resp
, 47, 1);
202 if (UNSTUFF_BITS(resp
, 55, 1))
203 card
->erased_byte
= 0xFF;
205 card
->erased_byte
= 0x0;
208 scr
->cmds
= UNSTUFF_BITS(resp
, 32, 2);
213 * Fetch and process SD Status register.
215 static int mmc_read_ssr(struct mmc_card
*card
)
217 unsigned int au
, es
, et
, eo
;
221 if (!(card
->csd
.cmdclass
& CCC_APP_SPEC
)) {
222 printk(KERN_WARNING
"%s: card lacks mandatory SD Status "
223 "function.\n", mmc_hostname(card
->host
));
227 ssr
= kmalloc(64, GFP_KERNEL
);
231 err
= mmc_app_sd_status(card
, ssr
);
233 printk(KERN_WARNING
"%s: problem reading SD Status "
234 "register.\n", mmc_hostname(card
->host
));
239 for (i
= 0; i
< 16; i
++)
240 ssr
[i
] = be32_to_cpu(ssr
[i
]);
243 * UNSTUFF_BITS only works with four u32s so we have to offset the
244 * bitfield positions accordingly.
246 au
= UNSTUFF_BITS(ssr
, 428 - 384, 4);
247 if (au
> 0 || au
<= 9) {
248 card
->ssr
.au
= 1 << (au
+ 4);
249 es
= UNSTUFF_BITS(ssr
, 408 - 384, 16);
250 et
= UNSTUFF_BITS(ssr
, 402 - 384, 6);
251 eo
= UNSTUFF_BITS(ssr
, 400 - 384, 2);
253 card
->ssr
.erase_timeout
= (et
* 1000) / es
;
254 card
->ssr
.erase_offset
= eo
* 1000;
257 printk(KERN_WARNING
"%s: SD Status: Invalid Allocation Unit "
258 "size.\n", mmc_hostname(card
->host
));
266 * Fetches and decodes switch information
268 static int mmc_read_switch(struct mmc_card
*card
)
273 if (card
->scr
.sda_vsn
< SCR_SPEC_VER_1
)
276 if (!(card
->csd
.cmdclass
& CCC_SWITCH
)) {
277 printk(KERN_WARNING
"%s: card lacks mandatory switch "
278 "function, performance might suffer.\n",
279 mmc_hostname(card
->host
));
285 status
= kmalloc(64, GFP_KERNEL
);
287 printk(KERN_ERR
"%s: could not allocate a buffer for "
288 "switch capabilities.\n",
289 mmc_hostname(card
->host
));
293 /* Find out the supported Bus Speed Modes. */
294 err
= mmc_sd_switch(card
, 0, 0, 1, status
);
297 * If the host or the card can't do the switch,
298 * fail more gracefully.
300 if (err
!= -EINVAL
&& err
!= -ENOSYS
&& err
!= -EFAULT
)
303 printk(KERN_WARNING
"%s: problem reading Bus Speed modes.\n",
304 mmc_hostname(card
->host
));
310 if (card
->scr
.sda_spec3
) {
311 card
->sw_caps
.sd3_bus_mode
= status
[13];
313 /* Find out Driver Strengths supported by the card */
314 err
= mmc_sd_switch(card
, 0, 2, 1, status
);
317 * If the host or the card can't do the switch,
318 * fail more gracefully.
320 if (err
!= -EINVAL
&& err
!= -ENOSYS
&& err
!= -EFAULT
)
323 printk(KERN_WARNING
"%s: problem reading "
324 "Driver Strength.\n",
325 mmc_hostname(card
->host
));
331 card
->sw_caps
.sd3_drv_type
= status
[9];
333 /* Find out Current Limits supported by the card */
334 err
= mmc_sd_switch(card
, 0, 3, 1, status
);
337 * If the host or the card can't do the switch,
338 * fail more gracefully.
340 if (err
!= -EINVAL
&& err
!= -ENOSYS
&& err
!= -EFAULT
)
343 printk(KERN_WARNING
"%s: problem reading "
345 mmc_hostname(card
->host
));
351 card
->sw_caps
.sd3_curr_limit
= status
[7];
353 if (status
[13] & 0x02)
354 card
->sw_caps
.hs_max_dtr
= 50000000;
364 * Test if the card supports high-speed mode and, if so, switch to it.
366 int mmc_sd_switch_hs(struct mmc_card
*card
)
371 if (card
->scr
.sda_vsn
< SCR_SPEC_VER_1
)
374 if (!(card
->csd
.cmdclass
& CCC_SWITCH
))
377 if (!(card
->host
->caps
& MMC_CAP_SD_HIGHSPEED
))
380 if (card
->sw_caps
.hs_max_dtr
== 0)
385 status
= kmalloc(64, GFP_KERNEL
);
387 printk(KERN_ERR
"%s: could not allocate a buffer for "
388 "switch capabilities.\n", mmc_hostname(card
->host
));
392 err
= mmc_sd_switch(card
, 1, 0, 1, status
);
396 if ((status
[16] & 0xF) != 1) {
397 printk(KERN_WARNING
"%s: Problem switching card "
398 "into high-speed mode!\n",
399 mmc_hostname(card
->host
));
411 static int sd_select_driver_type(struct mmc_card
*card
, u8
*status
)
413 int host_drv_type
= SD_DRIVER_TYPE_B
;
414 int card_drv_type
= SD_DRIVER_TYPE_B
;
419 * If the host doesn't support any of the Driver Types A,C or D,
420 * or there is no board specific handler then default Driver
423 if (!(card
->host
->caps
& (MMC_CAP_DRIVER_TYPE_A
| MMC_CAP_DRIVER_TYPE_C
424 | MMC_CAP_DRIVER_TYPE_D
)))
427 if (!card
->host
->ops
->select_drive_strength
)
430 if (card
->host
->caps
& MMC_CAP_DRIVER_TYPE_A
)
431 host_drv_type
|= SD_DRIVER_TYPE_A
;
433 if (card
->host
->caps
& MMC_CAP_DRIVER_TYPE_C
)
434 host_drv_type
|= SD_DRIVER_TYPE_C
;
436 if (card
->host
->caps
& MMC_CAP_DRIVER_TYPE_D
)
437 host_drv_type
|= SD_DRIVER_TYPE_D
;
439 if (card
->sw_caps
.sd3_drv_type
& SD_DRIVER_TYPE_A
)
440 card_drv_type
|= SD_DRIVER_TYPE_A
;
442 if (card
->sw_caps
.sd3_drv_type
& SD_DRIVER_TYPE_C
)
443 card_drv_type
|= SD_DRIVER_TYPE_C
;
445 if (card
->sw_caps
.sd3_drv_type
& SD_DRIVER_TYPE_D
)
446 card_drv_type
|= SD_DRIVER_TYPE_D
;
449 * The drive strength that the hardware can support
450 * depends on the board design. Pass the appropriate
451 * information and let the hardware specific code
452 * return what is possible given the options
454 drive_strength
= card
->host
->ops
->select_drive_strength(
455 card
->sw_caps
.uhs_max_dtr
,
456 host_drv_type
, card_drv_type
);
458 err
= mmc_sd_switch(card
, 1, 2, drive_strength
, status
);
462 if ((status
[15] & 0xF) != drive_strength
) {
463 printk(KERN_WARNING
"%s: Problem setting drive strength!\n",
464 mmc_hostname(card
->host
));
468 mmc_set_driver_type(card
->host
, drive_strength
);
473 static void sd_update_bus_speed_mode(struct mmc_card
*card
)
476 * If the host doesn't support any of the UHS-I modes, fallback on
479 if (!(card
->host
->caps
& (MMC_CAP_UHS_SDR12
| MMC_CAP_UHS_SDR25
|
480 MMC_CAP_UHS_SDR50
| MMC_CAP_UHS_SDR104
| MMC_CAP_UHS_DDR50
))) {
481 card
->sd_bus_speed
= 0;
485 if ((card
->host
->caps
& MMC_CAP_UHS_SDR104
) &&
486 (card
->sw_caps
.sd3_bus_mode
& SD_MODE_UHS_SDR104
)) {
487 card
->sd_bus_speed
= UHS_SDR104_BUS_SPEED
;
488 } else if ((card
->host
->caps
& MMC_CAP_UHS_DDR50
) &&
489 (card
->sw_caps
.sd3_bus_mode
& SD_MODE_UHS_DDR50
)) {
490 card
->sd_bus_speed
= UHS_DDR50_BUS_SPEED
;
491 } else if ((card
->host
->caps
& (MMC_CAP_UHS_SDR104
|
492 MMC_CAP_UHS_SDR50
)) && (card
->sw_caps
.sd3_bus_mode
&
493 SD_MODE_UHS_SDR50
)) {
494 card
->sd_bus_speed
= UHS_SDR50_BUS_SPEED
;
495 } else if ((card
->host
->caps
& (MMC_CAP_UHS_SDR104
|
496 MMC_CAP_UHS_SDR50
| MMC_CAP_UHS_SDR25
)) &&
497 (card
->sw_caps
.sd3_bus_mode
& SD_MODE_UHS_SDR25
)) {
498 card
->sd_bus_speed
= UHS_SDR25_BUS_SPEED
;
499 } else if ((card
->host
->caps
& (MMC_CAP_UHS_SDR104
|
500 MMC_CAP_UHS_SDR50
| MMC_CAP_UHS_SDR25
|
501 MMC_CAP_UHS_SDR12
)) && (card
->sw_caps
.sd3_bus_mode
&
502 SD_MODE_UHS_SDR12
)) {
503 card
->sd_bus_speed
= UHS_SDR12_BUS_SPEED
;
507 static int sd_set_bus_speed_mode(struct mmc_card
*card
, u8
*status
)
510 unsigned int timing
= 0;
512 switch (card
->sd_bus_speed
) {
513 case UHS_SDR104_BUS_SPEED
:
514 timing
= MMC_TIMING_UHS_SDR104
;
515 card
->sw_caps
.uhs_max_dtr
= UHS_SDR104_MAX_DTR
;
517 case UHS_DDR50_BUS_SPEED
:
518 timing
= MMC_TIMING_UHS_DDR50
;
519 card
->sw_caps
.uhs_max_dtr
= UHS_DDR50_MAX_DTR
;
521 case UHS_SDR50_BUS_SPEED
:
522 timing
= MMC_TIMING_UHS_SDR50
;
523 card
->sw_caps
.uhs_max_dtr
= UHS_SDR50_MAX_DTR
;
525 case UHS_SDR25_BUS_SPEED
:
526 timing
= MMC_TIMING_UHS_SDR25
;
527 card
->sw_caps
.uhs_max_dtr
= UHS_SDR25_MAX_DTR
;
529 case UHS_SDR12_BUS_SPEED
:
530 timing
= MMC_TIMING_UHS_SDR12
;
531 card
->sw_caps
.uhs_max_dtr
= UHS_SDR12_MAX_DTR
;
537 err
= mmc_sd_switch(card
, 1, 0, card
->sd_bus_speed
, status
);
541 if ((status
[16] & 0xF) != card
->sd_bus_speed
)
542 printk(KERN_WARNING
"%s: Problem setting bus speed mode!\n",
543 mmc_hostname(card
->host
));
545 mmc_set_timing(card
->host
, timing
);
546 mmc_set_clock(card
->host
, card
->sw_caps
.uhs_max_dtr
);
552 static int sd_set_current_limit(struct mmc_card
*card
, u8
*status
)
554 int current_limit
= 0;
558 * Current limit switch is only defined for SDR50, SDR104, and DDR50
559 * bus speed modes. For other bus speed modes, we set the default
560 * current limit of 200mA.
562 if ((card
->sd_bus_speed
== UHS_SDR50_BUS_SPEED
) ||
563 (card
->sd_bus_speed
== UHS_SDR104_BUS_SPEED
) ||
564 (card
->sd_bus_speed
== UHS_DDR50_BUS_SPEED
)) {
565 if (card
->host
->caps
& MMC_CAP_MAX_CURRENT_800
) {
566 if (card
->sw_caps
.sd3_curr_limit
& SD_MAX_CURRENT_800
)
567 current_limit
= SD_SET_CURRENT_LIMIT_800
;
568 else if (card
->sw_caps
.sd3_curr_limit
&
570 current_limit
= SD_SET_CURRENT_LIMIT_600
;
571 else if (card
->sw_caps
.sd3_curr_limit
&
573 current_limit
= SD_SET_CURRENT_LIMIT_400
;
574 else if (card
->sw_caps
.sd3_curr_limit
&
576 current_limit
= SD_SET_CURRENT_LIMIT_200
;
577 } else if (card
->host
->caps
& MMC_CAP_MAX_CURRENT_600
) {
578 if (card
->sw_caps
.sd3_curr_limit
& SD_MAX_CURRENT_600
)
579 current_limit
= SD_SET_CURRENT_LIMIT_600
;
580 else if (card
->sw_caps
.sd3_curr_limit
&
582 current_limit
= SD_SET_CURRENT_LIMIT_400
;
583 else if (card
->sw_caps
.sd3_curr_limit
&
585 current_limit
= SD_SET_CURRENT_LIMIT_200
;
586 } else if (card
->host
->caps
& MMC_CAP_MAX_CURRENT_400
) {
587 if (card
->sw_caps
.sd3_curr_limit
& SD_MAX_CURRENT_400
)
588 current_limit
= SD_SET_CURRENT_LIMIT_400
;
589 else if (card
->sw_caps
.sd3_curr_limit
&
591 current_limit
= SD_SET_CURRENT_LIMIT_200
;
592 } else if (card
->host
->caps
& MMC_CAP_MAX_CURRENT_200
) {
593 if (card
->sw_caps
.sd3_curr_limit
& SD_MAX_CURRENT_200
)
594 current_limit
= SD_SET_CURRENT_LIMIT_200
;
597 current_limit
= SD_SET_CURRENT_LIMIT_200
;
599 err
= mmc_sd_switch(card
, 1, 3, current_limit
, status
);
603 if (((status
[15] >> 4) & 0x0F) != current_limit
)
604 printk(KERN_WARNING
"%s: Problem setting current limit!\n",
605 mmc_hostname(card
->host
));
611 * UHS-I specific initialization procedure
613 static int mmc_sd_init_uhs_card(struct mmc_card
*card
)
618 if (!card
->scr
.sda_spec3
)
621 if (!(card
->csd
.cmdclass
& CCC_SWITCH
))
624 status
= kmalloc(64, GFP_KERNEL
);
626 printk(KERN_ERR
"%s: could not allocate a buffer for "
627 "switch capabilities.\n", mmc_hostname(card
->host
));
631 /* Set 4-bit bus width */
632 if ((card
->host
->caps
& MMC_CAP_4_BIT_DATA
) &&
633 (card
->scr
.bus_widths
& SD_SCR_BUS_WIDTH_4
)) {
634 err
= mmc_app_set_bus_width(card
, MMC_BUS_WIDTH_4
);
638 mmc_set_bus_width(card
->host
, MMC_BUS_WIDTH_4
);
642 * Select the bus speed mode depending on host
643 * and card capability.
645 sd_update_bus_speed_mode(card
);
647 /* Set the driver strength for the card */
648 err
= sd_select_driver_type(card
, status
);
652 /* Set current limit for the card */
653 err
= sd_set_current_limit(card
, status
);
657 /* Set bus speed mode of the card */
658 err
= sd_set_bus_speed_mode(card
, status
);
662 /* SPI mode doesn't define CMD19 */
663 if (!mmc_host_is_spi(card
->host
) && card
->host
->ops
->execute_tuning
)
664 err
= card
->host
->ops
->execute_tuning(card
->host
);
672 MMC_DEV_ATTR(cid
, "%08x%08x%08x%08x\n", card
->raw_cid
[0], card
->raw_cid
[1],
673 card
->raw_cid
[2], card
->raw_cid
[3]);
674 MMC_DEV_ATTR(csd
, "%08x%08x%08x%08x\n", card
->raw_csd
[0], card
->raw_csd
[1],
675 card
->raw_csd
[2], card
->raw_csd
[3]);
676 MMC_DEV_ATTR(scr
, "%08x%08x\n", card
->raw_scr
[0], card
->raw_scr
[1]);
677 MMC_DEV_ATTR(date
, "%02d/%04d\n", card
->cid
.month
, card
->cid
.year
);
678 MMC_DEV_ATTR(erase_size
, "%u\n", card
->erase_size
<< 9);
679 MMC_DEV_ATTR(preferred_erase_size
, "%u\n", card
->pref_erase
<< 9);
680 MMC_DEV_ATTR(fwrev
, "0x%x\n", card
->cid
.fwrev
);
681 MMC_DEV_ATTR(hwrev
, "0x%x\n", card
->cid
.hwrev
);
682 MMC_DEV_ATTR(manfid
, "0x%06x\n", card
->cid
.manfid
);
683 MMC_DEV_ATTR(name
, "%s\n", card
->cid
.prod_name
);
684 MMC_DEV_ATTR(oemid
, "0x%04x\n", card
->cid
.oemid
);
685 MMC_DEV_ATTR(serial
, "0x%08x\n", card
->cid
.serial
);
688 static struct attribute
*sd_std_attrs
[] = {
693 &dev_attr_erase_size
.attr
,
694 &dev_attr_preferred_erase_size
.attr
,
695 &dev_attr_fwrev
.attr
,
696 &dev_attr_hwrev
.attr
,
697 &dev_attr_manfid
.attr
,
699 &dev_attr_oemid
.attr
,
700 &dev_attr_serial
.attr
,
704 static struct attribute_group sd_std_attr_group
= {
705 .attrs
= sd_std_attrs
,
708 static const struct attribute_group
*sd_attr_groups
[] = {
713 struct device_type sd_type
= {
714 .groups
= sd_attr_groups
,
718 * Fetch CID from card.
720 int mmc_sd_get_cid(struct mmc_host
*host
, u32 ocr
, u32
*cid
, u32
*rocr
)
725 * Since we're changing the OCR value, we seem to
726 * need to tell some cards to go back to the idle
727 * state. We wait 1ms to give cards time to
733 * If SD_SEND_IF_COND indicates an SD 2.0
734 * compliant card and we should set bit 30
735 * of the ocr to indicate that we can handle
736 * block-addressed SDHC cards.
738 err
= mmc_send_if_cond(host
, ocr
);
743 * If the host supports one of UHS-I modes, request the card
744 * to switch to 1.8V signaling level.
746 if (host
->caps
& (MMC_CAP_UHS_SDR12
| MMC_CAP_UHS_SDR25
|
747 MMC_CAP_UHS_SDR50
| MMC_CAP_UHS_SDR104
| MMC_CAP_UHS_DDR50
))
750 /* If the host can supply more than 150mA, XPC should be set to 1. */
751 if (host
->caps
& (MMC_CAP_SET_XPC_330
| MMC_CAP_SET_XPC_300
|
752 MMC_CAP_SET_XPC_180
))
756 err
= mmc_send_app_op_cond(host
, ocr
, rocr
);
761 * In case CCS and S18A in the response is set, start Signal Voltage
762 * Switch procedure. SPI mode doesn't support CMD11.
764 if (!mmc_host_is_spi(host
) && rocr
&&
765 ((*rocr
& 0x41000000) == 0x41000000)) {
766 err
= mmc_set_signal_voltage(host
, MMC_SIGNAL_VOLTAGE_180
, true);
773 if (mmc_host_is_spi(host
))
774 err
= mmc_send_cid(host
, cid
);
776 err
= mmc_all_send_cid(host
, cid
);
781 int mmc_sd_get_csd(struct mmc_host
*host
, struct mmc_card
*card
)
786 * Fetch CSD from card.
788 err
= mmc_send_csd(card
, card
->raw_csd
);
792 err
= mmc_decode_csd(card
);
799 int mmc_sd_setup_card(struct mmc_host
*host
, struct mmc_card
*card
,
806 * Fetch SCR from card.
808 err
= mmc_app_send_scr(card
, card
->raw_scr
);
812 err
= mmc_decode_scr(card
);
817 * Fetch and process SD Status register.
819 err
= mmc_read_ssr(card
);
823 /* Erase init depends on CSD and SSR */
824 mmc_init_erase(card
);
827 * Fetch switch information from card.
829 err
= mmc_read_switch(card
);
835 * For SPI, enable CRC as appropriate.
836 * This CRC enable is located AFTER the reading of the
837 * card registers because some SDHC cards are not able
838 * to provide valid CRCs for non-512-byte blocks.
840 if (mmc_host_is_spi(host
)) {
841 err
= mmc_spi_set_crc(host
, use_spi_crc
);
847 * Check if read-only switch is active.
852 if (host
->ops
->get_ro
)
853 ro
= host
->ops
->get_ro(host
);
856 printk(KERN_WARNING
"%s: host does not "
857 "support reading read-only "
858 "switch. assuming write-enable.\n",
861 mmc_card_set_readonly(card
);
868 unsigned mmc_sd_get_max_clock(struct mmc_card
*card
)
870 unsigned max_dtr
= (unsigned int)-1;
872 if (mmc_card_highspeed(card
)) {
873 if (max_dtr
> card
->sw_caps
.hs_max_dtr
)
874 max_dtr
= card
->sw_caps
.hs_max_dtr
;
875 } else if (max_dtr
> card
->csd
.max_dtr
) {
876 max_dtr
= card
->csd
.max_dtr
;
882 void mmc_sd_go_highspeed(struct mmc_card
*card
)
884 mmc_card_set_highspeed(card
);
885 mmc_set_timing(card
->host
, MMC_TIMING_SD_HS
);
889 * Handle the detection and initialisation of a card.
891 * In the case of a resume, "oldcard" will contain the card
892 * we're trying to reinitialise.
894 static int mmc_sd_init_card(struct mmc_host
*host
, u32 ocr
,
895 struct mmc_card
*oldcard
)
897 struct mmc_card
*card
;
903 WARN_ON(!host
->claimed
);
905 err
= mmc_sd_get_cid(host
, ocr
, cid
, &rocr
);
910 if (memcmp(cid
, oldcard
->raw_cid
, sizeof(cid
)) != 0)
916 * Allocate card structure.
918 card
= mmc_alloc_card(host
, &sd_type
);
920 return PTR_ERR(card
);
922 card
->type
= MMC_TYPE_SD
;
923 memcpy(card
->raw_cid
, cid
, sizeof(card
->raw_cid
));
927 * For native busses: get card RCA and quit open drain mode.
929 if (!mmc_host_is_spi(host
)) {
930 err
= mmc_send_relative_addr(host
, &card
->rca
);
934 mmc_set_bus_mode(host
, MMC_BUSMODE_PUSHPULL
);
938 err
= mmc_sd_get_csd(host
, card
);
942 mmc_decode_cid(card
);
946 * Select card, as all following commands rely on that.
948 if (!mmc_host_is_spi(host
)) {
949 err
= mmc_select_card(card
);
954 err
= mmc_sd_setup_card(host
, card
, oldcard
!= NULL
);
958 /* Initialization sequence for UHS-I cards */
959 if (rocr
& SD_ROCR_S18A
) {
960 err
= mmc_sd_init_uhs_card(card
);
964 /* Card is an ultra-high-speed card */
965 mmc_sd_card_set_uhs(card
);
968 * Since initialization is now complete, enable preset
969 * value registers for UHS-I cards.
971 if (host
->ops
->enable_preset_value
)
972 host
->ops
->enable_preset_value(host
, true);
975 * Attempt to change to high-speed (if supported)
977 err
= mmc_sd_switch_hs(card
);
979 mmc_sd_go_highspeed(card
);
986 mmc_set_clock(host
, mmc_sd_get_max_clock(card
));
989 * Switch to wider bus (if supported).
991 if ((host
->caps
& MMC_CAP_4_BIT_DATA
) &&
992 (card
->scr
.bus_widths
& SD_SCR_BUS_WIDTH_4
)) {
993 err
= mmc_app_set_bus_width(card
, MMC_BUS_WIDTH_4
);
997 mmc_set_bus_width(host
, MMC_BUS_WIDTH_4
);
1006 mmc_remove_card(card
);
1012 * Host is being removed. Free up the current card.
1014 static void mmc_sd_remove(struct mmc_host
*host
)
1017 BUG_ON(!host
->card
);
1019 mmc_remove_card(host
->card
);
1024 * Card detection callback from host.
1026 static void mmc_sd_detect(struct mmc_host
*host
)
1031 BUG_ON(!host
->card
);
1033 mmc_claim_host(host
);
1036 * Just check if our card has been removed.
1038 err
= mmc_send_status(host
->card
, NULL
);
1040 mmc_release_host(host
);
1043 mmc_sd_remove(host
);
1045 mmc_claim_host(host
);
1046 mmc_detach_bus(host
);
1047 mmc_release_host(host
);
1052 * Suspend callback from host.
1054 static int mmc_sd_suspend(struct mmc_host
*host
)
1057 BUG_ON(!host
->card
);
1059 mmc_claim_host(host
);
1060 if (!mmc_host_is_spi(host
))
1061 mmc_deselect_cards(host
);
1062 host
->card
->state
&= ~MMC_STATE_HIGHSPEED
;
1063 mmc_release_host(host
);
1069 * Resume callback from host.
1071 * This function tries to determine if the same card is still present
1072 * and, if so, restore all state to it.
1074 static int mmc_sd_resume(struct mmc_host
*host
)
1079 BUG_ON(!host
->card
);
1081 mmc_claim_host(host
);
1082 err
= mmc_sd_init_card(host
, host
->ocr
, host
->card
);
1083 mmc_release_host(host
);
1088 static int mmc_sd_power_restore(struct mmc_host
*host
)
1092 host
->card
->state
&= ~MMC_STATE_HIGHSPEED
;
1093 mmc_claim_host(host
);
1094 ret
= mmc_sd_init_card(host
, host
->ocr
, host
->card
);
1095 mmc_release_host(host
);
1100 static const struct mmc_bus_ops mmc_sd_ops
= {
1101 .remove
= mmc_sd_remove
,
1102 .detect
= mmc_sd_detect
,
1105 .power_restore
= mmc_sd_power_restore
,
1108 static const struct mmc_bus_ops mmc_sd_ops_unsafe
= {
1109 .remove
= mmc_sd_remove
,
1110 .detect
= mmc_sd_detect
,
1111 .suspend
= mmc_sd_suspend
,
1112 .resume
= mmc_sd_resume
,
1113 .power_restore
= mmc_sd_power_restore
,
1116 static void mmc_sd_attach_bus_ops(struct mmc_host
*host
)
1118 const struct mmc_bus_ops
*bus_ops
;
1120 if (!mmc_card_is_removable(host
))
1121 bus_ops
= &mmc_sd_ops_unsafe
;
1123 bus_ops
= &mmc_sd_ops
;
1124 mmc_attach_bus(host
, bus_ops
);
1128 * Starting point for SD card init.
1130 int mmc_attach_sd(struct mmc_host
*host
)
1136 WARN_ON(!host
->claimed
);
1138 /* Make sure we are at 3.3V signalling voltage */
1139 err
= mmc_set_signal_voltage(host
, MMC_SIGNAL_VOLTAGE_330
, false);
1143 /* Disable preset value enable if already set since last time */
1144 if (host
->ops
->enable_preset_value
)
1145 host
->ops
->enable_preset_value(host
, false);
1147 err
= mmc_send_app_op_cond(host
, 0, &ocr
);
1151 mmc_sd_attach_bus_ops(host
);
1152 if (host
->ocr_avail_sd
)
1153 host
->ocr_avail
= host
->ocr_avail_sd
;
1156 * We need to get OCR a different way for SPI.
1158 if (mmc_host_is_spi(host
)) {
1161 err
= mmc_spi_read_ocr(host
, 0, &ocr
);
1167 * Sanity check the voltages that the card claims to
1171 printk(KERN_WARNING
"%s: card claims to support voltages "
1172 "below the defined range. These will be ignored.\n",
1173 mmc_hostname(host
));
1177 if ((ocr
& MMC_VDD_165_195
) &&
1178 !(host
->ocr_avail_sd
& MMC_VDD_165_195
)) {
1179 printk(KERN_WARNING
"%s: SD card claims to support the "
1180 "incompletely defined 'low voltage range'. This "
1181 "will be ignored.\n", mmc_hostname(host
));
1182 ocr
&= ~MMC_VDD_165_195
;
1185 host
->ocr
= mmc_select_voltage(host
, ocr
);
1188 * Can we support the voltage(s) of the card(s)?
1196 * Detect and init the card.
1198 err
= mmc_sd_init_card(host
, host
->ocr
, NULL
);
1202 mmc_release_host(host
);
1203 err
= mmc_add_card(host
->card
);
1204 mmc_claim_host(host
);
1211 mmc_release_host(host
);
1212 mmc_remove_card(host
->card
);
1214 mmc_claim_host(host
);
1216 mmc_detach_bus(host
);
1218 printk(KERN_ERR
"%s: error %d whilst initialising SD card\n",
1219 mmc_hostname(host
), err
);