[coreboot-gerrit] Change in coreboot[master]: drivers/storage: Delay after SD SWITCH operations

Lee Leahy (Code Review) gerrit at coreboot.org
Fri May 12 00:45:21 CEST 2017


Lee Leahy has uploaded a new change for review. ( https://review.coreboot.org/19671 )

Change subject: drivers/storage: Delay after SD SWITCH operations
......................................................................

drivers/storage: Delay after SD SWITCH operations

Delay for a while after the switch operations to let the card recover.

TEST=Build and run on Galileo Gen2

Change-Id: I938e227a142e43ed6afda80d56af90df0bae1b05
Signed-off-by: Lee Leahy <Leroy.P.Leahy at intel.com>
---
M src/drivers/storage/sd.c
1 file changed, 13 insertions(+), 0 deletions(-)


  git pull ssh://review.coreboot.org:29418/coreboot refs/changes/71/19671/1

diff --git a/src/drivers/storage/sd.c b/src/drivers/storage/sd.c
index 18d2c0e..6f4887a 100644
--- a/src/drivers/storage/sd.c
+++ b/src/drivers/storage/sd.c
@@ -136,6 +136,7 @@
 
 int sd_change_freq(struct storage_media *media)
 {
+	int delay;
 	int err, timeout;
 	struct mmc_command cmd;
 	struct sd_mmc_ctrlr *ctrlr = media->ctrlr;
@@ -225,11 +226,23 @@
 	if (!((ctrlr->caps & DRVR_CAP_HS52) && (ctrlr->caps & DRVR_CAP_HS)))
 		goto out;
 
+	/* Give the card time to recover afer the switch operation.  Wait for
+	 * 9 (>= 8) clock cycles receiving the switch status.
+	 */
+	delay = (9000000 + ctrlr->bus_hz - 1) / ctrlr->bus_hz;
+	udelay(delay);
+
+	/* Switch to high speed */
 	err = sd_switch(ctrlr, SD_SWITCH_SWITCH, 0, 1,
 			(uint8_t *)switch_status);
 	if (err)
 		return err;
 
+	/* Give the card time to perform the switch operation.  Wait for 9
+	 * (>= 8) clock cycles receiving the switch status.
+	 */
+	udelay(delay);
+
 	if ((ntohl(switch_status[4]) & 0x0f000000) == 0x01000000) {
 		media->caps |= DRVR_CAP_HS;
 		SET_TIMING(ctrlr, BUS_TIMING_SD_HS);

-- 
To view, visit https://review.coreboot.org/19671
To unsubscribe, visit https://review.coreboot.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I938e227a142e43ed6afda80d56af90df0bae1b05
Gerrit-PatchSet: 1
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Owner: Lee Leahy <leroy.p.leahy at intel.com>



More information about the coreboot-gerrit mailing list