sdhci-internal.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341
  1. /*
  2. * SD Association Host Standard Specification v2.0 controller emulation
  3. *
  4. * Copyright (c) 2011 Samsung Electronics Co., Ltd.
  5. * Mitsyanko Igor <i.mitsyanko@samsung.com>
  6. * Peter A.G. Crosthwaite <peter.crosthwaite@petalogix.com>
  7. *
  8. * Based on MMC controller for Samsung S5PC1xx-based board emulation
  9. * by Alexey Merkulov and Vladimir Monakhov.
  10. *
  11. * This program is free software; you can redistribute it and/or modify it
  12. * under the terms of the GNU General Public License as published by the
  13. * Free Software Foundation; either version 2 of the License, or (at your
  14. * option) any later version.
  15. *
  16. * This program is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  19. * See the GNU General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU General Public License along
  22. * with this program; if not, see <http://www.gnu.org/licenses/>.
  23. */
  24. #ifndef SDHCI_INTERNAL_H
  25. #define SDHCI_INTERNAL_H
  26. #include "hw/registerfields.h"
  27. /* R/W SDMA System Address register 0x0 */
  28. #define SDHC_SYSAD 0x00
  29. /* R/W Host DMA Buffer Boundary and Transfer Block Size Register 0x0 */
  30. #define SDHC_BLKSIZE 0x04
  31. /* R/W Blocks count for current transfer 0x0 */
  32. #define SDHC_BLKCNT 0x06
  33. /* R/W Command Argument Register 0x0 */
  34. #define SDHC_ARGUMENT 0x08
  35. /* R/W Transfer Mode Setting Register 0x0 */
  36. #define SDHC_TRNMOD 0x0C
  37. #define SDHC_TRNS_DMA 0x0001
  38. #define SDHC_TRNS_BLK_CNT_EN 0x0002
  39. #define SDHC_TRNS_ACMD12 0x0004
  40. #define SDHC_TRNS_ACMD23 0x0008 /* since v3 */
  41. #define SDHC_TRNS_READ 0x0010
  42. #define SDHC_TRNS_MULTI 0x0020
  43. #define SDHC_TRNMOD_MASK 0x0037
  44. /* R/W Command Register 0x0 */
  45. #define SDHC_CMDREG 0x0E
  46. #define SDHC_CMD_RSP_WITH_BUSY (3 << 0)
  47. #define SDHC_CMD_DATA_PRESENT (1 << 5)
  48. #define SDHC_CMD_SUSPEND (1 << 6)
  49. #define SDHC_CMD_RESUME (1 << 7)
  50. #define SDHC_CMD_ABORT ((1 << 6)|(1 << 7))
  51. #define SDHC_CMD_TYPE_MASK ((1 << 6)|(1 << 7))
  52. #define SDHC_COMMAND_TYPE(x) ((x) & SDHC_CMD_TYPE_MASK)
  53. /* ROC Response Register 0 0x0 */
  54. #define SDHC_RSPREG0 0x10
  55. /* ROC Response Register 1 0x0 */
  56. #define SDHC_RSPREG1 0x14
  57. /* ROC Response Register 2 0x0 */
  58. #define SDHC_RSPREG2 0x18
  59. /* ROC Response Register 3 0x0 */
  60. #define SDHC_RSPREG3 0x1C
  61. /* R/W Buffer Data Register 0x0 */
  62. #define SDHC_BDATA 0x20
  63. /* R/ROC Present State Register 0x000A0000 */
  64. #define SDHC_PRNSTS 0x24
  65. #define SDHC_CMD_INHIBIT 0x00000001
  66. #define SDHC_DATA_INHIBIT 0x00000002
  67. #define SDHC_DAT_LINE_ACTIVE 0x00000004
  68. #define SDHC_DOING_WRITE 0x00000100
  69. #define SDHC_DOING_READ 0x00000200
  70. #define SDHC_SPACE_AVAILABLE 0x00000400
  71. #define SDHC_DATA_AVAILABLE 0x00000800
  72. #define SDHC_CARD_PRESENT 0x00010000
  73. #define SDHC_CARD_DETECT 0x00040000
  74. #define SDHC_WRITE_PROTECT 0x00080000
  75. FIELD(SDHC_PRNSTS, DAT_LVL, 20, 4);
  76. FIELD(SDHC_PRNSTS, CMD_LVL, 24, 1);
  77. #define TRANSFERRING_DATA(x) \
  78. ((x) & (SDHC_DOING_READ | SDHC_DOING_WRITE))
  79. /* R/W Host control Register 0x0 */
  80. #define SDHC_HOSTCTL 0x28
  81. #define SDHC_CTRL_LED 0x01
  82. #define SDHC_CTRL_DATATRANSFERWIDTH 0x02 /* SD mode only */
  83. #define SDHC_CTRL_HIGH_SPEED 0x04
  84. #define SDHC_CTRL_DMA_CHECK_MASK 0x18
  85. #define SDHC_CTRL_SDMA 0x00
  86. #define SDHC_CTRL_ADMA1_32 0x08 /* NOT ALLOWED since v2 */
  87. #define SDHC_CTRL_ADMA2_32 0x10
  88. #define SDHC_CTRL_ADMA2_64 0x18
  89. #define SDHC_DMA_TYPE(x) ((x) & SDHC_CTRL_DMA_CHECK_MASK)
  90. #define SDHC_CTRL_4BITBUS 0x02
  91. #define SDHC_CTRL_8BITBUS 0x20
  92. #define SDHC_CTRL_CDTEST_INS 0x40
  93. #define SDHC_CTRL_CDTEST_EN 0x80
  94. /* R/W Power Control Register 0x0 */
  95. #define SDHC_PWRCON 0x29
  96. #define SDHC_POWER_ON (1 << 0)
  97. FIELD(SDHC_PWRCON, BUS_VOLTAGE, 1, 3);
  98. /* R/W Block Gap Control Register 0x0 */
  99. #define SDHC_BLKGAP 0x2A
  100. #define SDHC_STOP_AT_GAP_REQ 0x01
  101. #define SDHC_CONTINUE_REQ 0x02
  102. /* R/W WakeUp Control Register 0x0 */
  103. #define SDHC_WAKCON 0x2B
  104. #define SDHC_WKUP_ON_INS (1 << 1)
  105. #define SDHC_WKUP_ON_RMV (1 << 2)
  106. /* CLKCON */
  107. #define SDHC_CLKCON 0x2C
  108. #define SDHC_CLOCK_INT_STABLE 0x0002
  109. #define SDHC_CLOCK_INT_EN 0x0001
  110. #define SDHC_CLOCK_SDCLK_EN (1 << 2)
  111. #define SDHC_CLOCK_CHK_MASK 0x0007
  112. #define SDHC_CLOCK_IS_ON(x) \
  113. (((x) & SDHC_CLOCK_CHK_MASK) == SDHC_CLOCK_CHK_MASK)
  114. /* R/W Timeout Control Register 0x0 */
  115. #define SDHC_TIMEOUTCON 0x2E
  116. FIELD(SDHC_TIMEOUTCON, COUNTER, 0, 4);
  117. /* R/W Software Reset Register 0x0 */
  118. #define SDHC_SWRST 0x2F
  119. #define SDHC_RESET_ALL 0x01
  120. #define SDHC_RESET_CMD 0x02
  121. #define SDHC_RESET_DATA 0x04
  122. /* ROC/RW1C Normal Interrupt Status Register 0x0 */
  123. #define SDHC_NORINTSTS 0x30
  124. #define SDHC_NIS_ERR 0x8000
  125. #define SDHC_NIS_CMDCMP 0x0001
  126. #define SDHC_NIS_TRSCMP 0x0002
  127. #define SDHC_NIS_BLKGAP 0x0004
  128. #define SDHC_NIS_DMA 0x0008
  129. #define SDHC_NIS_WBUFRDY 0x0010
  130. #define SDHC_NIS_RBUFRDY 0x0020
  131. #define SDHC_NIS_INSERT 0x0040
  132. #define SDHC_NIS_REMOVE 0x0080
  133. #define SDHC_NIS_CARDINT 0x0100
  134. /* ROC/RW1C Error Interrupt Status Register 0x0 */
  135. #define SDHC_ERRINTSTS 0x32
  136. #define SDHC_EIS_CMDTIMEOUT 0x0001
  137. #define SDHC_EIS_BLKGAP 0x0004
  138. #define SDHC_EIS_CMDIDX 0x0008
  139. #define SDHC_EIS_CMD12ERR 0x0100
  140. #define SDHC_EIS_ADMAERR 0x0200
  141. /* R/W Normal Interrupt Status Enable Register 0x0 */
  142. #define SDHC_NORINTSTSEN 0x34
  143. #define SDHC_NISEN_CMDCMP 0x0001
  144. #define SDHC_NISEN_TRSCMP 0x0002
  145. #define SDHC_NISEN_DMA 0x0008
  146. #define SDHC_NISEN_WBUFRDY 0x0010
  147. #define SDHC_NISEN_RBUFRDY 0x0020
  148. #define SDHC_NISEN_INSERT 0x0040
  149. #define SDHC_NISEN_REMOVE 0x0080
  150. #define SDHC_NISEN_CARDINT 0x0100
  151. /* R/W Error Interrupt Status Enable Register 0x0 */
  152. #define SDHC_ERRINTSTSEN 0x36
  153. #define SDHC_EISEN_CMDTIMEOUT 0x0001
  154. #define SDHC_EISEN_BLKGAP 0x0004
  155. #define SDHC_EISEN_CMDIDX 0x0008
  156. #define SDHC_EISEN_ADMAERR 0x0200
  157. /* R/W Normal Interrupt Signal Enable Register 0x0 */
  158. #define SDHC_NORINTSIGEN 0x38
  159. #define SDHC_NORINTSIG_INSERT (1 << 6)
  160. #define SDHC_NORINTSIG_REMOVE (1 << 7)
  161. /* R/W Error Interrupt Signal Enable Register 0x0 */
  162. #define SDHC_ERRINTSIGEN 0x3A
  163. /* ROC Auto CMD12 error status register 0x0 */
  164. #define SDHC_ACMD12ERRSTS 0x3C
  165. FIELD(SDHC_ACMD12ERRSTS, TIMEOUT_ERR, 1, 1);
  166. FIELD(SDHC_ACMD12ERRSTS, CRC_ERR, 2, 1);
  167. FIELD(SDHC_ACMD12ERRSTS, INDEX_ERR, 4, 1);
  168. /* Host Control Register 2 (since v3) */
  169. #define SDHC_HOSTCTL2 0x3E
  170. FIELD(SDHC_HOSTCTL2, UHS_MODE_SEL, 0, 3);
  171. FIELD(SDHC_HOSTCTL2, V18_ENA, 3, 1); /* UHS-I only */
  172. FIELD(SDHC_HOSTCTL2, DRIVER_STRENGTH, 4, 2); /* UHS-I only */
  173. FIELD(SDHC_HOSTCTL2, EXECUTE_TUNING, 6, 1); /* UHS-I only */
  174. FIELD(SDHC_HOSTCTL2, SAMPLING_CLKSEL, 7, 1); /* UHS-I only */
  175. FIELD(SDHC_HOSTCTL2, UHS_II_ENA, 8, 1); /* since v4 */
  176. FIELD(SDHC_HOSTCTL2, ADMA2_LENGTH, 10, 1); /* since v4 */
  177. FIELD(SDHC_HOSTCTL2, CMD23_ENA, 11, 1); /* since v4 */
  178. FIELD(SDHC_HOSTCTL2, VERSION4, 12, 1); /* since v4 */
  179. FIELD(SDHC_HOSTCTL2, ASYNC_INT, 14, 1);
  180. FIELD(SDHC_HOSTCTL2, PRESET_ENA, 15, 1);
  181. /* HWInit Capabilities Register 0x05E80080 */
  182. #define SDHC_CAPAB 0x40
  183. FIELD(SDHC_CAPAB, TOCLKFREQ, 0, 6);
  184. FIELD(SDHC_CAPAB, TOUNIT, 7, 1);
  185. FIELD(SDHC_CAPAB, BASECLKFREQ, 8, 8);
  186. FIELD(SDHC_CAPAB, MAXBLOCKLENGTH, 16, 2);
  187. FIELD(SDHC_CAPAB, EMBEDDED_8BIT, 18, 1); /* since v3 */
  188. FIELD(SDHC_CAPAB, ADMA2, 19, 1); /* since v2 */
  189. FIELD(SDHC_CAPAB, ADMA1, 20, 1); /* v1 only? */
  190. FIELD(SDHC_CAPAB, HIGHSPEED, 21, 1);
  191. FIELD(SDHC_CAPAB, SDMA, 22, 1);
  192. FIELD(SDHC_CAPAB, SUSPRESUME, 23, 1);
  193. FIELD(SDHC_CAPAB, V33, 24, 1);
  194. FIELD(SDHC_CAPAB, V30, 25, 1);
  195. FIELD(SDHC_CAPAB, V18, 26, 1);
  196. FIELD(SDHC_CAPAB, BUS64BIT_V4, 27, 1); /* since v4.10 */
  197. FIELD(SDHC_CAPAB, BUS64BIT, 28, 1); /* since v2 */
  198. FIELD(SDHC_CAPAB, ASYNC_INT, 29, 1); /* since v3 */
  199. FIELD(SDHC_CAPAB, SLOT_TYPE, 30, 2); /* since v3 */
  200. FIELD(SDHC_CAPAB, BUS_SPEED, 32, 3); /* since v3 */
  201. FIELD(SDHC_CAPAB, UHS_II, 35, 8); /* since v4.20 */
  202. FIELD(SDHC_CAPAB, DRIVER_STRENGTH, 36, 3); /* since v3 */
  203. FIELD(SDHC_CAPAB, DRIVER_TYPE_A, 36, 1); /* since v3 */
  204. FIELD(SDHC_CAPAB, DRIVER_TYPE_C, 37, 1); /* since v3 */
  205. FIELD(SDHC_CAPAB, DRIVER_TYPE_D, 38, 1); /* since v3 */
  206. FIELD(SDHC_CAPAB, TIMER_RETUNING, 40, 4); /* since v3 */
  207. FIELD(SDHC_CAPAB, SDR50_TUNING, 45, 1); /* since v3 */
  208. FIELD(SDHC_CAPAB, RETUNING_MODE, 46, 2); /* since v3 */
  209. FIELD(SDHC_CAPAB, CLOCK_MULT, 48, 8); /* since v3 */
  210. FIELD(SDHC_CAPAB, ADMA3, 59, 1); /* since v4.20 */
  211. FIELD(SDHC_CAPAB, V18_VDD2, 60, 1); /* since v4.20 */
  212. /* HWInit Maximum Current Capabilities Register 0x0 */
  213. #define SDHC_MAXCURR 0x48
  214. FIELD(SDHC_MAXCURR, V33_VDD1, 0, 8);
  215. FIELD(SDHC_MAXCURR, V30_VDD1, 8, 8);
  216. FIELD(SDHC_MAXCURR, V18_VDD1, 16, 8);
  217. FIELD(SDHC_MAXCURR, V18_VDD2, 32, 8); /* since v4.20 */
  218. /* W Force Event Auto CMD12 Error Interrupt Register 0x0000 */
  219. #define SDHC_FEAER 0x50
  220. /* W Force Event Error Interrupt Register Error Interrupt 0x0000 */
  221. #define SDHC_FEERR 0x52
  222. /* R/W ADMA Error Status Register 0x00 */
  223. #define SDHC_ADMAERR 0x54
  224. #define SDHC_ADMAERR_LENGTH_MISMATCH (1 << 2)
  225. #define SDHC_ADMAERR_STATE_ST_STOP (0 << 0)
  226. #define SDHC_ADMAERR_STATE_ST_FDS (1 << 0)
  227. #define SDHC_ADMAERR_STATE_ST_TFR (3 << 0)
  228. #define SDHC_ADMAERR_STATE_MASK (3 << 0)
  229. /* R/W ADMA System Address Register 0x00 */
  230. #define SDHC_ADMASYSADDR 0x58
  231. #define SDHC_ADMA_ATTR_SET_LEN (1 << 4)
  232. #define SDHC_ADMA_ATTR_ACT_TRAN (1 << 5)
  233. #define SDHC_ADMA_ATTR_ACT_LINK (3 << 4)
  234. #define SDHC_ADMA_ATTR_INT (1 << 2)
  235. #define SDHC_ADMA_ATTR_END (1 << 1)
  236. #define SDHC_ADMA_ATTR_VALID (1 << 0)
  237. #define SDHC_ADMA_ATTR_ACT_MASK ((1 << 4)|(1 << 5))
  238. /* Slot interrupt status */
  239. #define SDHC_SLOT_INT_STATUS 0xFC
  240. /* HWInit Host Controller Version Register */
  241. #define SDHC_HCVER 0xFE
  242. #define SDHC_HCVER_VENDOR 0x24
  243. #define SDHC_REGISTERS_MAP_SIZE 0x100
  244. #define SDHC_INSERTION_DELAY (NANOSECONDS_PER_SECOND)
  245. #define SDHC_TRANSFER_DELAY 100
  246. #define SDHC_ADMA_DESCS_PER_DELAY 5
  247. #define SDHC_CMD_RESPONSE (3 << 0)
  248. enum {
  249. sdhc_not_stopped = 0, /* normal SDHC state */
  250. sdhc_gap_read = 1, /* SDHC stopped at block gap during read operation */
  251. sdhc_gap_write = 2 /* SDHC stopped at block gap during write operation */
  252. };
  253. extern const VMStateDescription sdhci_vmstate;
  254. #define ESDHC_MIX_CTRL 0x48
  255. #define ESDHC_VENDOR_SPEC 0xc0
  256. #define ESDHC_DLL_CTRL 0x60
  257. #define ESDHC_TUNING_CTRL 0xcc
  258. #define ESDHC_TUNE_CTRL_STATUS 0x68
  259. #define ESDHC_WTMK_LVL 0x44
  260. /* Undocumented register used by guests working around erratum ERR004536 */
  261. #define ESDHC_UNDOCUMENTED_REG27 0x6c
  262. #define ESDHC_CTRL_4BITBUS (0x1 << 1)
  263. #define ESDHC_CTRL_8BITBUS (0x2 << 1)
  264. #define ESDHC_PRNSTS_SDSTB (1 << 3)
  265. /*
  266. * Default SD/MMC host controller features information, which will be
  267. * presented in CAPABILITIES register of generic SD host controller at reset.
  268. *
  269. * support:
  270. * - 3.3v and 1.8v voltages
  271. * - SDMA/ADMA1/ADMA2
  272. * - high-speed
  273. * max host controller R/W buffers size: 512B
  274. * max clock frequency for SDclock: 52 MHz
  275. * timeout clock frequency: 52 MHz
  276. *
  277. * does not support:
  278. * - 3.0v voltage
  279. * - 64-bit system bus
  280. * - suspend/resume
  281. */
  282. #define SDHC_CAPAB_REG_DEFAULT 0x057834b4
  283. #define DEFINE_SDHCI_COMMON_PROPERTIES(_state) \
  284. DEFINE_PROP_UINT8("sd-spec-version", _state, sd_spec_version, 2), \
  285. DEFINE_PROP_UINT8("uhs", _state, uhs_mode, UHS_NOT_SUPPORTED), \
  286. \
  287. /* Capabilities registers provide information on supported
  288. * features of this specific host controller implementation */ \
  289. DEFINE_PROP_UINT64("capareg", _state, capareg, SDHC_CAPAB_REG_DEFAULT), \
  290. DEFINE_PROP_UINT64("maxcurr", _state, maxcurr, 0)
  291. void sdhci_initfn(SDHCIState *s);
  292. void sdhci_uninitfn(SDHCIState *s);
  293. void sdhci_common_realize(SDHCIState *s, Error **errp);
  294. void sdhci_common_unrealize(SDHCIState *s, Error **errp);
  295. void sdhci_common_class_init(ObjectClass *klass, void *data);
  296. #endif