diff options
author | James <> | 2013-03-17 12:16:37 +0000 |
---|---|---|
committer | James <> | 2013-03-17 12:16:37 +0000 |
commit | 27b76ab0671089c47506615a796a261e993896a7 (patch) | |
tree | 61213d67e7fa87b20356b23798558e2c4212c42f /target/linux/kirkwood/patches/.svn/text-base/002-mvsdio_delay.patch.svn-base | |
download | trunk-36060-master.tar.gz trunk-36060-master.tar.bz2 trunk-36060-master.zip |
Diffstat (limited to 'target/linux/kirkwood/patches/.svn/text-base/002-mvsdio_delay.patch.svn-base')
-rw-r--r-- | target/linux/kirkwood/patches/.svn/text-base/002-mvsdio_delay.patch.svn-base | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/target/linux/kirkwood/patches/.svn/text-base/002-mvsdio_delay.patch.svn-base b/target/linux/kirkwood/patches/.svn/text-base/002-mvsdio_delay.patch.svn-base new file mode 100644 index 0000000..46e2a56 --- /dev/null +++ b/target/linux/kirkwood/patches/.svn/text-base/002-mvsdio_delay.patch.svn-base @@ -0,0 +1,32 @@ +--- a/drivers/mmc/core/sd.c ++++ b/drivers/mmc/core/sd.c +@@ -389,6 +389,15 @@ int mmc_sd_switch_hs(struct mmc_card *ca + return -ENOMEM; + } + ++ /* ++ * Some SDHC cards, notably those with a Sandisk SD controller ++ * (also found in Kingston products) need a bit of slack ++ * before successfully handling the SWITCH command. So far, ++ * cards identifying themselves as "SD04G" and "SD08G" are ++ * affected ++ */ ++ udelay(1000); ++ + err = mmc_sd_switch(card, 1, 0, 1, status); + if (err) + goto out; +--- a/drivers/mmc/core/core.c ++++ b/drivers/mmc/core/core.c +@@ -529,9 +529,9 @@ void mmc_set_data_timeout(struct mmc_dat + * The limit is really 250 ms, but that is + * insufficient for some crappy cards. + */ +- limit_us = 300000; ++ limit_us = 500000; + else +- limit_us = 100000; ++ limit_us = 200000; + + /* + * SDHC cards always use these fixed values. |