projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9273ea6
)
sdcard: update the CSD CRC register regardless the CSD structure version
author
Philippe Mathieu-Daudé
<f4bug@amsat.org>
Thu, 22 Feb 2018 15:12:53 +0000
(15:12 +0000)
committer
Peter Maydell
<peter.maydell@linaro.org>
Thu, 22 Feb 2018 15:12:53 +0000
(15:12 +0000)
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Alistair Francis <alistair.francis@xilinx.com>
Message-id:
20180215221325
.7611-3-f4bug@amsat.org
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
hw/sd/sd.c
patch
|
blob
|
history
diff --git
a/hw/sd/sd.c
b/hw/sd/sd.c
index cc347ff782af0b190c1cf71e9236f91588f0db2c..110f2f1d0a8f2d9bc959daf052ce8a6f13bb3795 100644
(file)
--- 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)