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 Nov 16, 2013
1 parent fab2304 commit 53011c1
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 Original file line 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 We get CRC and DEND errors unless we wait for
the SD controller to finish reading/writing to the card. */ the SD controller to finish reading/writing to the card. */
u32 state_mask; u32 state_mask;
int timeout=30*5000; int timeout=3*1000*1000;


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

0 comments on commit 53011c1

Please sign in to comment.