|
@@ -2582,44 +2582,6 @@ int mmc_flush_cache(struct mmc_card *card)
|
|
|
}
|
|
|
EXPORT_SYMBOL(mmc_flush_cache);
|
|
|
|
|
|
-/*
|
|
|
- * Turn the cache ON/OFF.
|
|
|
- * Turning the cache OFF shall trigger flushing of the data
|
|
|
- * to the non-volatile storage.
|
|
|
- * This function should be called with host claimed
|
|
|
- */
|
|
|
-int mmc_cache_ctrl(struct mmc_host *host, u8 enable)
|
|
|
-{
|
|
|
- struct mmc_card *card = host->card;
|
|
|
- unsigned int timeout;
|
|
|
- int err = 0;
|
|
|
-
|
|
|
- if (!(host->caps2 & MMC_CAP2_CACHE_CTRL) ||
|
|
|
- mmc_card_is_removable(host))
|
|
|
- return err;
|
|
|
-
|
|
|
- if (card && mmc_card_mmc(card) &&
|
|
|
- (card->ext_csd.cache_size > 0)) {
|
|
|
- enable = !!enable;
|
|
|
-
|
|
|
- if (card->ext_csd.cache_ctrl ^ enable) {
|
|
|
- timeout = enable ? card->ext_csd.generic_cmd6_time : 0;
|
|
|
- err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
|
|
|
- EXT_CSD_CACHE_CTRL, enable, timeout);
|
|
|
- if (err)
|
|
|
- pr_err("%s: cache %s error %d\n",
|
|
|
- mmc_hostname(card->host),
|
|
|
- enable ? "on" : "off",
|
|
|
- err);
|
|
|
- else
|
|
|
- card->ext_csd.cache_ctrl = enable;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- return err;
|
|
|
-}
|
|
|
-EXPORT_SYMBOL(mmc_cache_ctrl);
|
|
|
-
|
|
|
#ifdef CONFIG_PM
|
|
|
|
|
|
/* Do the card removal on suspend if card is assumed removeable
|