提交 2c511375 编写于 作者: P Philippe Mathieu-Daudé 提交者: Peter Maydell

sdcard: Reflect when the Spec v3 is supported in the Config Register (SCR)

Signed-off-by: NPhilippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: NAlistair Francis <alistair.francis@wdc.com>
Message-id: 20180607180641.874-6-f4bug@amsat.org
Signed-off-by: NPeter Maydell <peter.maydell@linaro.org>
上级 d1b32218
...@@ -316,11 +316,14 @@ static void sd_set_scr(SDState *sd) ...@@ -316,11 +316,14 @@ static void sd_set_scr(SDState *sd)
if (sd->spec_version == SD_PHY_SPECv1_10_VERS) { if (sd->spec_version == SD_PHY_SPECv1_10_VERS) {
sd->scr[0] |= 1; /* Spec Version 1.10 */ sd->scr[0] |= 1; /* Spec Version 1.10 */
} else { } else {
sd->scr[0] |= 2; /* Spec Version 2.00 */ sd->scr[0] |= 2; /* Spec Version 2.00 or Version 3.0X */
} }
sd->scr[1] = (2 << 4) /* SDSC Card (Security Version 1.01) */ sd->scr[1] = (2 << 4) /* SDSC Card (Security Version 1.01) */
| 0b0101; /* 1-bit or 4-bit width bus modes */ | 0b0101; /* 1-bit or 4-bit width bus modes */
sd->scr[2] = 0x00; /* Extended Security is not supported. */ sd->scr[2] = 0x00; /* Extended Security is not supported. */
if (sd->spec_version >= SD_PHY_SPECv3_01_VERS) {
sd->scr[2] |= 1 << 7; /* Spec Version 3.0X */
}
sd->scr[3] = 0x00; sd->scr[3] = 0x00;
/* reserved for manufacturer usage */ /* reserved for manufacturer usage */
sd->scr[4] = 0x00; sd->scr[4] = 0x00;
...@@ -2068,7 +2071,7 @@ static void sd_realize(DeviceState *dev, Error **errp) ...@@ -2068,7 +2071,7 @@ static void sd_realize(DeviceState *dev, Error **errp)
switch (sd->spec_version) { switch (sd->spec_version) {
case SD_PHY_SPECv1_10_VERS case SD_PHY_SPECv1_10_VERS
... SD_PHY_SPECv2_00_VERS: ... SD_PHY_SPECv3_01_VERS:
break; break;
default: default:
error_setg(errp, "Invalid SD card Spec version: %u", sd->spec_version); error_setg(errp, "Invalid SD card Spec version: %u", sd->spec_version);
......
...@@ -57,6 +57,7 @@ ...@@ -57,6 +57,7 @@
enum SDPhySpecificationVersion { enum SDPhySpecificationVersion {
SD_PHY_SPECv1_10_VERS = 1, SD_PHY_SPECv1_10_VERS = 1,
SD_PHY_SPECv2_00_VERS = 2, SD_PHY_SPECv2_00_VERS = 2,
SD_PHY_SPECv3_01_VERS = 3,
}; };
typedef enum { typedef enum {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册