summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorStephen Carlson <[email protected]>2021-08-17 12:46:41 -0700
committerJaehoon Chung <[email protected]>2021-10-29 18:22:32 +0900
commit40e6f52454fc9adb6269ef8089c1fd2ded85fee8 (patch)
treec2d7718ebb946d038f36d78b553be00d1fa7f900 /include
parentee02543561d4d776b15ad1ad2f6430b361414102 (diff)
drivers: mmc: Add wait_dat0 support for sdhci driver
Adds an implementation of the wait_dat0 MMC operation for the DM SDHCI driver, allowing the driver to continue when the card is ready rather than waiting for the worst case time on each MMC switch operation. Signed-off-by: Stephen Carlson <[email protected]> Signed-off-by: Jaehoon Chung <[email protected]>
Diffstat (limited to 'include')
-rw-r--r--include/sdhci.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/sdhci.h b/include/sdhci.h
index 44a0d84e5ab..c718dd7206c 100644
--- a/include/sdhci.h
+++ b/include/sdhci.h
@@ -65,6 +65,8 @@
#define SDHCI_CARD_STATE_STABLE BIT(17)
#define SDHCI_CARD_DETECT_PIN_LEVEL BIT(18)
#define SDHCI_WRITE_PROTECT BIT(19)
+#define SDHCI_DATA_LVL_MASK 0x00F00000
+#define SDHCI_DATA_0_LVL_MASK BIT(20)
#define SDHCI_HOST_CONTROL 0x28
#define SDHCI_CTRL_LED BIT(0)