Skip to content

Commit

Permalink
sdhci-bcm2807: Increase sync_after_dma timeout
Browse files Browse the repository at this point in the history
The current timeout is being hit with some cards that complete successfully with a longer timeout.
The timeout is not handled well, and is believed to be a code path that causes corruption.
872a8ff suggests that crappy cards can take up to 3 seconds to respond
  • Loading branch information
popcornmix committed Jul 10, 2013
1 parent 53f7e0b commit 245f716
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/mmc/host/sdhci-bcm2708.c
Original file line number Diff line number Diff line change
Expand Up @@ -842,7 +842,7 @@ static void sdhci_bcm2708_dma_complete_irq(struct sdhci_host *host,
We get CRC and DEND errors unless we wait for
the SD controller to finish reading/writing to the card. */
u32 state_mask;
int timeout=30*5000;
int timeout=3*1000*1000;

DBG("PDMA over - sync card\n");
if (data->flags & MMC_DATA_READ)
Expand Down

0 comments on commit 245f716

Please sign in to comment.