diff options
Diffstat (limited to 'src/commonlib')
-rw-r--r-- | src/commonlib/include/commonlib/sd_mmc_ctrlr.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/commonlib/include/commonlib/sd_mmc_ctrlr.h b/src/commonlib/include/commonlib/sd_mmc_ctrlr.h index 1b1dd51479..6ac274090f 100644 --- a/src/commonlib/include/commonlib/sd_mmc_ctrlr.h +++ b/src/commonlib/include/commonlib/sd_mmc_ctrlr.h @@ -13,6 +13,14 @@ #define CARD_TIMEOUT -19 #define CARD_IN_PROGRESS -20 /* operation is in progress */ +/* MMC status in CBMEM_ID_MMC_STATUS */ +enum { + MMC_STATUS_NEED_RESET = 0, + MMC_STATUS_CMD1_READY_OR_IN_PROGRESS, + MMC_STATUS_CMD1_READY, + MMC_STATUS_CMD1_IN_PROGRESS, +}; + struct mmc_command { uint16_t cmdidx; |