aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mmc/host/mmci.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/mmc/host/mmci.h')
-rw-r--r--drivers/mmc/host/mmci.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/drivers/mmc/host/mmci.h b/drivers/mmc/host/mmci.h
index 347d942d740b..a1f5e4f49e2a 100644
--- a/drivers/mmc/host/mmci.h
+++ b/drivers/mmc/host/mmci.h
@@ -41,6 +41,15 @@
41/* Modified PL180 on Versatile Express platform */ 41/* Modified PL180 on Versatile Express platform */
42#define MCI_ARM_HWFCEN (1 << 12) 42#define MCI_ARM_HWFCEN (1 << 12)
43 43
44/* Modified on Qualcomm Integrations */
45#define MCI_QCOM_CLK_WIDEBUS_8 (BIT(10) | BIT(11))
46#define MCI_QCOM_CLK_FLOWENA BIT(12)
47#define MCI_QCOM_CLK_INVERTOUT BIT(13)
48
49/* select in latch data and command in */
50#define MCI_QCOM_CLK_SELECT_IN_FBCLK BIT(15)
51#define MCI_QCOM_CLK_SELECT_IN_DDR_MODE (BIT(14) | BIT(15))
52
44#define MMCIARGUMENT 0x008 53#define MMCIARGUMENT 0x008
45#define MMCICOMMAND 0x00c 54#define MMCICOMMAND 0x00c
46#define MCI_CPSM_RESPONSE (1 << 6) 55#define MCI_CPSM_RESPONSE (1 << 6)
@@ -54,6 +63,14 @@
54#define MCI_ST_NIEN (1 << 13) 63#define MCI_ST_NIEN (1 << 13)
55#define MCI_ST_CE_ATACMD (1 << 14) 64#define MCI_ST_CE_ATACMD (1 << 14)
56 65
66/* Modified on Qualcomm Integrations */
67#define MCI_QCOM_CSPM_DATCMD BIT(12)
68#define MCI_QCOM_CSPM_MCIABORT BIT(13)
69#define MCI_QCOM_CSPM_CCSENABLE BIT(14)
70#define MCI_QCOM_CSPM_CCSDISABLE BIT(15)
71#define MCI_QCOM_CSPM_AUTO_CMD19 BIT(16)
72#define MCI_QCOM_CSPM_AUTO_CMD21 BIT(21)
73
57#define MMCIRESPCMD 0x010 74#define MMCIRESPCMD 0x010
58#define MMCIRESPONSE0 0x014 75#define MMCIRESPONSE0 0x014
59#define MMCIRESPONSE1 0x018 76#define MMCIRESPONSE1 0x018
@@ -191,6 +208,8 @@ struct mmci_host {
191 spinlock_t lock; 208 spinlock_t lock;
192 209
193 unsigned int mclk; 210 unsigned int mclk;
211 /* cached value of requested clk in set_ios */
212 unsigned int clock_cache;
194 unsigned int cclk; 213 unsigned int cclk;
195 u32 pwr_reg; 214 u32 pwr_reg;
196 u32 pwr_reg_add; 215 u32 pwr_reg_add;
@@ -210,6 +229,7 @@ struct mmci_host {
210 /* pio stuff */ 229 /* pio stuff */
211 struct sg_mapping_iter sg_miter; 230 struct sg_mapping_iter sg_miter;
212 unsigned int size; 231 unsigned int size;
232 int (*get_rx_fifocnt)(struct mmci_host *h, u32 status, int remain);
213 233
214#ifdef CONFIG_DMA_ENGINE 234#ifdef CONFIG_DMA_ENGINE
215 /* DMA stuff */ 235 /* DMA stuff */