diff options
author | Srinivas Kandagatla <srinivas.kandagatla@linaro.org> | 2014-06-02 05:08:48 -0400 |
---|---|---|
committer | Ulf Hansson <ulf.hansson@linaro.org> | 2014-07-09 05:25:53 -0400 |
commit | 9681a4e88207bca452c39fdbf070fa7a8eea9a8a (patch) | |
tree | 818e278945eeed27da18d7a68c8468c40168a5ac | |
parent | c4a357691693776f5f941f29bdce704b29b156ba (diff) |
mmc: mmci: Add Qualcomm specific register defines.
This patch adds a Qualcomm SD Card controller specific register variations
to header file. Qualcomm SDCC controller is pl180, with slight changes in
the register layout from standard pl180 register set.
Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
-rw-r--r-- | drivers/mmc/host/mmci.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/drivers/mmc/host/mmci.h b/drivers/mmc/host/mmci.h index 347d942d740b..d38a99df1820 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 |