mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-05 18:41:58 +09:00
Revert "mmc: Add quirk MMC_QUIRK_BROKEN_CACHE_FLUSH for Micron eMMC Q2J54A"
This reverts commit 51dcd20a4a which is
commit ed9009ad300c0f15a3ecfe9613547b1962bde02c upstream.
It breaks the current Android ABI, and if needed, can be brought back in an
abi-safe way in the future.
Bug: 161946584
Change-Id: I3ad21a32875dc77bd655c6a788ca1e2dee924f93
Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
This commit is contained in:
@@ -2408,10 +2408,8 @@ enum mmc_issued mmc_blk_mq_issue_rq(struct mmc_queue *mq, struct request *req)
|
|||||||
}
|
}
|
||||||
ret = mmc_blk_cqe_issue_flush(mq, req);
|
ret = mmc_blk_cqe_issue_flush(mq, req);
|
||||||
break;
|
break;
|
||||||
case REQ_OP_WRITE:
|
|
||||||
card->written_flag = true;
|
|
||||||
fallthrough;
|
|
||||||
case REQ_OP_READ:
|
case REQ_OP_READ:
|
||||||
|
case REQ_OP_WRITE:
|
||||||
if (host->cqe_enabled)
|
if (host->cqe_enabled)
|
||||||
ret = mmc_blk_cqe_issue_rw_rq(mq, req);
|
ret = mmc_blk_cqe_issue_rw_rq(mq, req);
|
||||||
else
|
else
|
||||||
|
|||||||
@@ -280,8 +280,4 @@ static inline int mmc_card_broken_sd_cache(const struct mmc_card *c)
|
|||||||
return c->quirks & MMC_QUIRK_BROKEN_SD_CACHE;
|
return c->quirks & MMC_QUIRK_BROKEN_SD_CACHE;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline int mmc_card_broken_cache_flush(const struct mmc_card *c)
|
|
||||||
{
|
|
||||||
return c->quirks & MMC_QUIRK_BROKEN_CACHE_FLUSH;
|
|
||||||
}
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -2088,17 +2088,13 @@ static int _mmc_flush_cache(struct mmc_host *host)
|
|||||||
{
|
{
|
||||||
int err = 0;
|
int err = 0;
|
||||||
|
|
||||||
if (mmc_card_broken_cache_flush(host->card) && !host->card->written_flag)
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
if (_mmc_cache_enabled(host)) {
|
if (_mmc_cache_enabled(host)) {
|
||||||
err = mmc_switch(host->card, EXT_CSD_CMD_SET_NORMAL,
|
err = mmc_switch(host->card, EXT_CSD_CMD_SET_NORMAL,
|
||||||
EXT_CSD_FLUSH_CACHE, 1,
|
EXT_CSD_FLUSH_CACHE, 1,
|
||||||
CACHE_FLUSH_TIMEOUT_MS);
|
CACHE_FLUSH_TIMEOUT_MS);
|
||||||
if (err)
|
if (err)
|
||||||
pr_err("%s: cache flush error %d\n", mmc_hostname(host), err);
|
pr_err("%s: cache flush error %d\n",
|
||||||
else
|
mmc_hostname(host), err);
|
||||||
host->card->written_flag = false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return err;
|
return err;
|
||||||
|
|||||||
@@ -117,12 +117,11 @@ static const struct mmc_fixup __maybe_unused mmc_blk_fixups[] = {
|
|||||||
MMC_QUIRK_TRIM_BROKEN),
|
MMC_QUIRK_TRIM_BROKEN),
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Micron MTFC4GACAJCN-1M supports TRIM but does not appear to support
|
* Micron MTFC4GACAJCN-1M advertises TRIM but it does not seems to
|
||||||
* WRITE_ZEROES offloading. It also supports caching, but the cache can
|
* support being used to offload WRITE_ZEROES.
|
||||||
* only be flushed after a write has occurred.
|
|
||||||
*/
|
*/
|
||||||
MMC_FIXUP("Q2J54A", CID_MANFID_MICRON, 0x014e, add_quirk_mmc,
|
MMC_FIXUP("Q2J54A", CID_MANFID_MICRON, 0x014e, add_quirk_mmc,
|
||||||
MMC_QUIRK_TRIM_BROKEN | MMC_QUIRK_BROKEN_CACHE_FLUSH),
|
MMC_QUIRK_TRIM_BROKEN),
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Some SD cards reports discard support while they don't
|
* Some SD cards reports discard support while they don't
|
||||||
|
|||||||
@@ -298,9 +298,7 @@ struct mmc_card {
|
|||||||
#define MMC_QUIRK_BROKEN_HPI (1<<13) /* Disable broken HPI support */
|
#define MMC_QUIRK_BROKEN_HPI (1<<13) /* Disable broken HPI support */
|
||||||
#define MMC_QUIRK_BROKEN_SD_DISCARD (1<<14) /* Disable broken SD discard support */
|
#define MMC_QUIRK_BROKEN_SD_DISCARD (1<<14) /* Disable broken SD discard support */
|
||||||
#define MMC_QUIRK_BROKEN_SD_CACHE (1<<15) /* Disable broken SD cache support */
|
#define MMC_QUIRK_BROKEN_SD_CACHE (1<<15) /* Disable broken SD cache support */
|
||||||
#define MMC_QUIRK_BROKEN_CACHE_FLUSH (1<<16) /* Don't flush cache until the write has occurred */
|
|
||||||
|
|
||||||
bool written_flag; /* Indicates eMMC has been written since power on */
|
|
||||||
bool reenable_cmdq; /* Re-enable Command Queue */
|
bool reenable_cmdq; /* Re-enable Command Queue */
|
||||||
|
|
||||||
unsigned int erase_size; /* erase size in sectors */
|
unsigned int erase_size; /* erase size in sectors */
|
||||||
|
|||||||
Reference in New Issue
Block a user