]> git.baikalelectronics.ru Git - kernel.git/commit
mmc: mmc: Use 500ms as the default generic CMD6 timeout
authorUlf Hansson <ulf.hansson@linaro.org>
Fri, 4 Nov 2016 17:32:33 +0000 (18:32 +0100)
committerUlf Hansson <ulf.hansson@linaro.org>
Mon, 7 Nov 2016 12:29:52 +0000 (13:29 +0100)
commitf448706d247b52d46a19e46d34ecf6afb08e5ff3
treec26198d698150787d08e02c343789e40ad4799c2
parenta81300c8e3653f7351af3a4f5d7bbcf8e6e86041
mmc: mmc: Use 500ms as the default generic CMD6 timeout

In the eMMC 4.51 version of the spec, an EXT_CSD field called
GENERIC_CMD6_TIME[248] was added. This allows cards to specify the maximum
time it may need to move out from its busy state, when a CMD6 command has
been sent.

In cases when the card is compliant to versions < 4.51 of the eMMC spec,
obviously the core needs to use a fall-back value for this timeout, which
currently is set to 10 minutes. This value is completely in the wrong range
and importantly in some cases it causes a card initialization to take more
than 10 minute to complete.

Earlier this scenario was avoided as the mmc core used CMD13 to poll the
card, to find out when it stopped signaling busy. Commit c77c9f1a3c14
("mmc: mmc: do not use CMD13 to get status after speed mode switch")
changed this behavior.

Instead of reverting that commit, which would cause other issues, let's
instead start by picking a simple solution for the problem, by using a
500ms default generic CMD6 timeout.

The reason for using exactly 500ms, comes from observations that shows it's
quite common for cards to specify 250ms. 500ms is two times that value so
likely it should be enough for most cards.

Cc: <stable@vger.kernel.org> # v4.8+
Fixes: c77c9f1a3c14 ("mmc: mmc: do not use CMD13 to get status after speed
mode switch")
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Tested-by: Stephen Boyd <sboyd@codeaurora.org>
Tested-by: Linus Walleij <linus.walleij@linaro.org>
drivers/mmc/core/mmc.c