Commit b6891679 authored by Ulf Hansson's avatar Ulf Hansson Committed by Chris Ball

mmc: core: Re-use code for MMC_CAP2_DETECT_ON_ERR in polling mode

Previously the MMC_CAP2_DETECT_ON_ERR was invented for detecting
slow card removal. In was never a realy good solution and a proper
fix has been merged using gpio debouncing instead. We remove this
cap in this patch.

Although when using polling card detect mode, the code invented for
MMC_CAP2_DETECT_ON_ERR is re-used to complete card removal in an
earlier phase. There are no need waiting for the polling timeout to
elapse in this case.
Signed-off-by: default avatarUlf Hansson <ulf.hansson@linaro.org>
Reviewed-by: default avatarKevin Liu <kliu5@marvell.com>
Signed-off-by: default avatarChris Ball <cjb@laptop.org>
parent 810e08ee
...@@ -2325,14 +2325,13 @@ int mmc_detect_card_removed(struct mmc_host *host) ...@@ -2325,14 +2325,13 @@ int mmc_detect_card_removed(struct mmc_host *host)
* The card will be considered unchanged unless we have been asked to * The card will be considered unchanged unless we have been asked to
* detect a change or host requires polling to provide card detection. * detect a change or host requires polling to provide card detection.
*/ */
if (!host->detect_change && !(host->caps & MMC_CAP_NEEDS_POLL) && if (!host->detect_change && !(host->caps & MMC_CAP_NEEDS_POLL))
!(host->caps2 & MMC_CAP2_DETECT_ON_ERR))
return ret; return ret;
host->detect_change = 0; host->detect_change = 0;
if (!ret) { if (!ret) {
ret = _mmc_detect_card_removed(host); ret = _mmc_detect_card_removed(host);
if (ret && (host->caps2 & MMC_CAP2_DETECT_ON_ERR)) { if (ret && (host->caps & MMC_CAP_NEEDS_POLL)) {
/* /*
* Schedule a detect work as soon as possible to let a * Schedule a detect work as soon as possible to let a
* rescan handle the card removal. * rescan handle the card removal.
......
...@@ -272,7 +272,6 @@ struct mmc_host { ...@@ -272,7 +272,6 @@ struct mmc_host {
#define MMC_CAP2_HS200 (MMC_CAP2_HS200_1_8V_SDR | \ #define MMC_CAP2_HS200 (MMC_CAP2_HS200_1_8V_SDR | \
MMC_CAP2_HS200_1_2V_SDR) MMC_CAP2_HS200_1_2V_SDR)
#define MMC_CAP2_BROKEN_VOLTAGE (1 << 7) /* Use the broken voltage */ #define MMC_CAP2_BROKEN_VOLTAGE (1 << 7) /* Use the broken voltage */
#define MMC_CAP2_DETECT_ON_ERR (1 << 8) /* On I/O err check card removal */
#define MMC_CAP2_HC_ERASE_SZ (1 << 9) /* High-capacity erase size */ #define MMC_CAP2_HC_ERASE_SZ (1 << 9) /* High-capacity erase size */
#define MMC_CAP2_CD_ACTIVE_HIGH (1 << 10) /* Card-detect signal active high */ #define MMC_CAP2_CD_ACTIVE_HIGH (1 << 10) /* Card-detect signal active high */
#define MMC_CAP2_RO_ACTIVE_HIGH (1 << 11) /* Write-protect signal active high */ #define MMC_CAP2_RO_ACTIVE_HIGH (1 << 11) /* Write-protect signal active high */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment