aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/mmc/sdhci.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/mmc/sdhci.h')
-rw-r--r--include/linux/mmc/sdhci.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/mmc/sdhci.h b/include/linux/mmc/sdhci.h
index 92e1c9ad126c..b74c8530e959 100644
--- a/include/linux/mmc/sdhci.h
+++ b/include/linux/mmc/sdhci.h
@@ -111,6 +111,7 @@ struct sdhci_host {
111#define SDHCI_USE_ADMA (1<<1) /* Host is ADMA capable */ 111#define SDHCI_USE_ADMA (1<<1) /* Host is ADMA capable */
112#define SDHCI_REQ_USE_DMA (1<<2) /* Use DMA for this req. */ 112#define SDHCI_REQ_USE_DMA (1<<2) /* Use DMA for this req. */
113#define SDHCI_DEVICE_DEAD (1<<3) /* Device unresponsive */ 113#define SDHCI_DEVICE_DEAD (1<<3) /* Device unresponsive */
114#define SDHCI_SDR50_NEEDS_TUNING (1<<4) /* SDR50 needs tuning */
114 115
115 unsigned int version; /* SDHCI spec. version */ 116 unsigned int version; /* SDHCI spec. version */
116 117
@@ -147,6 +148,9 @@ struct sdhci_host {
147 unsigned int ocr_avail_sd; 148 unsigned int ocr_avail_sd;
148 unsigned int ocr_avail_mmc; 149 unsigned int ocr_avail_mmc;
149 150
151 wait_queue_head_t buf_ready_int; /* Waitqueue for Buffer Read Ready interrupt */
152 unsigned int tuning_done; /* Condition flag set when CMD19 succeeds */
153
150 unsigned long private[0] ____cacheline_aligned; 154 unsigned long private[0] ____cacheline_aligned;
151}; 155};
152#endif /* __SDHCI_H */ 156#endif /* __SDHCI_H */