aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorAvri Altman <avri.altman@wdc.com>2019-02-26 17:10:24 +0200
committerUlf Hansson <ulf.hansson@linaro.org>2019-02-28 09:16:12 +0100
commitbc47e2f6f9e261ea07c678c3cad76eb5590c0fea (patch)
treee92d2e8012ac4753e98ad828a9d8d6f96fb969c8 /include
parentmmc: sdhci-esdhc-imx: clear the HALT bit when enable CQE (diff)
downloadlinux-dev-bc47e2f6f9e261ea07c678c3cad76eb5590c0fea.tar.xz
linux-dev-bc47e2f6f9e261ea07c678c3cad76eb5590c0fea.zip
mmc: core: Add discard support to sd
SD spec v5.1 adds discard support. The flows and commands are similar to mmc, so just set the discard arg in CMD38. A host which supports DISCARD shall check if the DISCARD_SUPPORT (b313) is set in the SD_STATUS register. If the card does not support discard, the host shall not issue DISCARD command, but ERASE command instead. Post the DISCARD operation, the card may de-allocate the discarded blocks partially or completely. So the host mustn't make any assumptions concerning the content of the discarded region. This is unlike ERASE command, in which the region is guaranteed to contain either '0's or '1's, depends on the content of DATA_STAT_AFTER_ERASE (b55) in the scr register. One more important difference compared to ERASE is the busy timeout which we will address on the next patch. Signed-off-by: Avri Altman <avri.altman@wdc.com> Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Diffstat (limited to 'include')
-rw-r--r--include/linux/mmc/sd.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/mmc/sd.h b/include/linux/mmc/sd.h
index 1a6d10fdf682..ec94a5aa02bb 100644
--- a/include/linux/mmc/sd.h
+++ b/include/linux/mmc/sd.h
@@ -95,5 +95,6 @@
* Erase/discard
*/
#define SD_ERASE_ARG 0x00000000
+#define SD_DISCARD_ARG 0x00000001
#endif /* LINUX_MMC_SD_H */