From: Philippe Mathieu-Daudé Date: Thu, 22 Feb 2018 15:12:53 +0000 (+0000) Subject: sdcard: update the CSD CRC register regardless the CSD structure version X-Git-Tag: v2.12.0-rc0~71^2~14 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e8feec808e96163dd82754521383a203b8fe7bce;p=thirdparty%2Fqemu.git sdcard: update the CSD CRC register regardless the CSD structure version Signed-off-by: Philippe Mathieu-Daudé Reviewed-by: Alistair Francis Message-id: 20180215221325.7611-3-f4bug@amsat.org Signed-off-by: Peter Maydell --- diff --git a/hw/sd/sd.c b/hw/sd/sd.c index cc347ff782a..110f2f1d0a8 100644 --- a/hw/sd/sd.c +++ b/hw/sd/sd.c @@ -378,7 +378,6 @@ static void sd_set_csd(SDState *sd, uint64_t size) sd->csd[13] = 0x20 | /* Max. write data block length */ ((HWBLOCK_SHIFT << 6) & 0xc0); sd->csd[14] = 0x00; /* File format group */ - sd->csd[15] = (sd_crc7(sd->csd, 15) << 1) | 1; } else { /* SDHC */ size /= 512 * 1024; size -= 1; @@ -397,8 +396,8 @@ static void sd_set_csd(SDState *sd, uint64_t size) sd->csd[12] = 0x0a; sd->csd[13] = 0x40; sd->csd[14] = 0x00; - sd->csd[15] = 0x00; } + sd->csd[15] = (sd_crc7(sd->csd, 15) << 1) | 1; } static void sd_set_rca(SDState *sd)