Skip to content
Snippets Groups Projects
Commit 1a3619cf authored by Stefan Wahren's avatar Stefan Wahren Committed by Tom Rini
Browse files

mmc: add MMC_VERSION_5_1

parent 333463d6
No related branches found
No related tags found
No related merge requests found
......@@ -1227,6 +1227,9 @@ static int mmc_startup(struct mmc *mmc)
case 7:
mmc->version = MMC_VERSION_5_0;
break;
case 8:
mmc->version = MMC_VERSION_5_1;
break;
}
/* The partition data may be non-zero but it is only
......
......@@ -49,6 +49,7 @@
#define MMC_VERSION_4_41 MAKE_MMC_VERSION(4, 4, 1)
#define MMC_VERSION_4_5 MAKE_MMC_VERSION(4, 5, 0)
#define MMC_VERSION_5_0 MAKE_MMC_VERSION(5, 0, 0)
#define MMC_VERSION_5_1 MAKE_MMC_VERSION(5, 1, 0)
#define MMC_MODE_HS (1 << 0)
#define MMC_MODE_HS_52MHz (1 << 1)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment