aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Gumbel <matthew.k.gumbel@intel.com>2016-05-20 03:33:46 -0400
committerUlf Hansson <ulf.hansson@linaro.org>2016-05-23 05:52:40 -0400
commit32ecd320db39bcb007679ed42f283740641b81ea (patch)
tree482fb695dcc4aad5cd1ac1f939bf4e2e2659bc96
parentd4aa908c7978f60557a799ca53b5ae4166fd8355 (diff)
mmc: longer timeout for long read time quirk
008GE0 Toshiba mmc in some Intel Baytrail tablets responds to MMC_SEND_EXT_CSD in 450-600ms. This patch will... () Increase the long read time quirk timeout from 300ms to 600ms. Original author of that quirk says 300ms was only a guess and that the number may need to be raised in the future. () Add this specific MMC to the quirk Signed-off-by: Matt Gumbel <matthew.k.gumbel@intel.com> Signed-off-by: Adrian Hunter <adrian.hunter@intel.com> Cc: stable@vger.kernel.org Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
-rw-r--r--drivers/mmc/card/block.c5
-rw-r--r--drivers/mmc/core/core.c4
2 files changed, 5 insertions, 4 deletions
diff --git a/drivers/mmc/card/block.c b/drivers/mmc/card/block.c
index 33b98595d8d7..a92d183907ed 100644
--- a/drivers/mmc/card/block.c
+++ b/drivers/mmc/card/block.c
@@ -2536,11 +2536,12 @@ static const struct mmc_fixup blk_fixups[] =
2536 MMC_QUIRK_BLK_NO_CMD23), 2536 MMC_QUIRK_BLK_NO_CMD23),
2537 2537
2538 /* 2538 /*
2539 * Some Micron MMC cards needs longer data read timeout than 2539 * Some MMC cards need longer data read timeout than indicated in CSD.
2540 * indicated in CSD.
2541 */ 2540 */
2542 MMC_FIXUP(CID_NAME_ANY, CID_MANFID_MICRON, 0x200, add_quirk_mmc, 2541 MMC_FIXUP(CID_NAME_ANY, CID_MANFID_MICRON, 0x200, add_quirk_mmc,
2543 MMC_QUIRK_LONG_READ_TIME), 2542 MMC_QUIRK_LONG_READ_TIME),
2543 MMC_FIXUP("008GE0", CID_MANFID_TOSHIBA, CID_OEMID_ANY, add_quirk_mmc,
2544 MMC_QUIRK_LONG_READ_TIME),
2544 2545
2545 /* 2546 /*
2546 * On these Samsung MoviNAND parts, performing secure erase or 2547 * On these Samsung MoviNAND parts, performing secure erase or
diff --git a/drivers/mmc/core/core.c b/drivers/mmc/core/core.c
index 99275e40bf2f..8b4dfd45433b 100644
--- a/drivers/mmc/core/core.c
+++ b/drivers/mmc/core/core.c
@@ -875,11 +875,11 @@ void mmc_set_data_timeout(struct mmc_data *data, const struct mmc_card *card)
875 /* 875 /*
876 * Some cards require longer data read timeout than indicated in CSD. 876 * Some cards require longer data read timeout than indicated in CSD.
877 * Address this by setting the read timeout to a "reasonably high" 877 * Address this by setting the read timeout to a "reasonably high"
878 * value. For the cards tested, 300ms has proven enough. If necessary, 878 * value. For the cards tested, 600ms has proven enough. If necessary,
879 * this value can be increased if other problematic cards require this. 879 * this value can be increased if other problematic cards require this.
880 */ 880 */
881 if (mmc_card_long_read_time(card) && data->flags & MMC_DATA_READ) { 881 if (mmc_card_long_read_time(card) && data->flags & MMC_DATA_READ) {
882 data->timeout_ns = 300000000; 882 data->timeout_ns = 600000000;
883 data->timeout_clks = 0; 883 data->timeout_clks = 0;
884 } 884 }
885 885