summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorPeter Seiderer <ps.report@gmx.net>2017-05-18 14:01:13 +0200
committerLucas Stach <l.stach@pengutronix.de>2017-07-06 14:42:59 +0200
commit34bfb60fc8a0ad54a4409ff02a999569028ab60f (patch)
tree49579f143b08a4968f2d7d8a9b34938120d0e210 /include
parent0d28a59cd1d8bd3e84f6e3b413717e35dcc2cea2 (diff)
downloadbarebox-34bfb60fc8a0ad54a4409ff02a999569028ab60f.tar.gz
barebox-34bfb60fc8a0ad54a4409ff02a999569028ab60f.tar.xz
mmc: add eMMC v5 and V5.1 detection support
Just add the defines. Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
Diffstat (limited to 'include')
-rw-r--r--include/mci.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/mci.h b/include/mci.h
index eb942e62b8..bc7d9c95b2 100644
--- a/include/mci.h
+++ b/include/mci.h
@@ -54,6 +54,8 @@
#define MMC_VERSION_4_3 (MMC_VERSION_MMC | 0x430)
#define MMC_VERSION_4_41 (MMC_VERSION_MMC | 0x441)
#define MMC_VERSION_4_5 (MMC_VERSION_MMC | 0x450)
+#define MMC_VERSION_5_0 (MMC_VERSION_MMC | 0x500)
+#define MMC_VERSION_5_1 (MMC_VERSION_MMC | 0x510)
#define MMC_CAP_SPI (1 << 0)
#define MMC_CAP_4_BIT_DATA (1 << 1)