hv_drv_UsbMusbRegs.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333
  1. /*
  2. * @file hv_drv_UsbMusbRegs.h
  3. * @brief Header file of MUSB OTG driver register defines
  4. *
  5. * @author HiView SoC Software Team
  6. * @version 1.0.0
  7. * @date 2022-06-15
  8. */
  9. #ifndef __HV_DRV_USB_MUSB_REGS_H
  10. #define __HV_DRV_USB_MUSB_REGS_H
  11. #ifdef CONFIG_USB_LOWSPEED
  12. #define MUSB_EP0_FIFOSIZE 8 /* This is non-configurable */
  13. #else
  14. #define MUSB_EP0_FIFOSIZE 64 /* This is non-configurable */
  15. #endif
  16. /*
  17. * MUSB Register bits
  18. */
  19. /* POWER */
  20. #define MUSB_POWER_ISOUPDATE 0x80
  21. #define MUSB_POWER_SOFTCONN 0x40
  22. #define MUSB_POWER_HSENAB 0x20
  23. #define MUSB_POWER_HSMODE 0x10
  24. #define MUSB_POWER_RESET 0x08
  25. #define MUSB_POWER_RESUME 0x04
  26. #define MUSB_POWER_SUSPENDM 0x02
  27. #define MUSB_POWER_ENSUSPEND 0x01
  28. /* INTRUSB */
  29. #define MUSB_INTR_SUSPEND 0x01
  30. #define MUSB_INTR_RESUME 0x02
  31. #define MUSB_INTR_RESET 0x04
  32. #define MUSB_INTR_BABBLE 0x04
  33. #define MUSB_INTR_SOF 0x08
  34. #define MUSB_INTR_CONNECT 0x10
  35. #define MUSB_INTR_DISCONNECT 0x20
  36. #define MUSB_INTR_SESSREQ 0x40
  37. #define MUSB_INTR_VBUSERROR 0x80 /* For SESSION end */
  38. /* DEVCTL */
  39. /*
  40. This Read-only bit indicates whether the MUSBHDRC is operating as the ��A�� device or the ��B��
  41. device. 0 => ��A�� device; 1 => ��B�� device. Only valid while a session is in progress.
  42. Note: If the core is in Force_Host mode (i.e. a session has been started with Testmode.D7 = 1), this
  43. bit will indicate the state of the HOSTDISCON input signal from the PHY.
  44. */
  45. #define MUSB_DEVCTL_BDEVICE 0x80
  46. /*
  47. This Read-only bit is set when a full-speed or high-speed device has been detected being connected
  48. to the port. (High-speed devices are distinguished from full-speed by checking for high-speed
  49. chirps when the device is reset.) Only valid in Host mode.
  50. */
  51. #define MUSB_DEVCTL_FSDEV 0x40
  52. /*
  53. This Read-only bit is set when a low-speed device has been detected being connected to the port.
  54. Only valid in Host mode.
  55. */
  56. #define MUSB_DEVCTL_LSDEV 0x20
  57. /*
  58. These Read-only bits encode the current VBus level as follows:
  59. D4 D3 Meaning
  60. 0 0 Below SessionEnd
  61. 0 1 Above SessionEnd, below AValid
  62. 1 0 Above AValid, below VBusValid
  63. 1 1 Above VBusValid
  64. */
  65. #define MUSB_DEVCTL_VBUS 0x18
  66. #define MUSB_DEVCTL_VBUS_SHIFT 3
  67. /* This Read-only bit is set when the MUSBHDRC is acting as a Host. */
  68. #define MUSB_DEVCTL_HM 0x04
  69. /*
  70. When set, the MUSBHDRC will initiate the Host Negotiation when Suspend mode is entered. It is
  71. cleared when Host Negotiation is completed. See Section 15. (��B�� device only)
  72. */
  73. #define MUSB_DEVCTL_HR 0x02
  74. /*
  75. When operating as an ��A�� device, this bit is set or cleared by the CPU to start or end a session.
  76. When operating as a ��B�� device, this bit is set/cleared by the MUSBHDRC when a session starts/ends.
  77. It is also set by the CPU to initiate the Session Request Protocol, or cleared by the CPU when in
  78. Suspend mode to perform a software disconnect. Note: Clearing this bit when the core is not
  79. suspended will result in undefined behavior.
  80. */
  81. #define MUSB_DEVCTL_SESSION 0x01
  82. /* MUSB ULPI VBUSCONTROL */
  83. #define MUSB_ULPI_USE_EXTVBUS 0x01
  84. #define MUSB_ULPI_USE_EXTVBUSIND 0x02
  85. /* ULPI_REG_CONTROL */
  86. #define MUSB_ULPI_REG_REQ (1 << 0)
  87. #define MUSB_ULPI_REG_CMPLT (1 << 1)
  88. #define MUSB_ULPI_RDN_WR (1 << 2)
  89. /* TESTMODE */
  90. #define MUSB_TEST_FORCE_HOST 0x80
  91. #define MUSB_TEST_FIFO_ACCESS 0x40
  92. #define MUSB_TEST_FORCE_FS 0x20
  93. #define MUSB_TEST_FORCE_HS 0x10
  94. #define MUSB_TEST_PACKET 0x08
  95. #define MUSB_TEST_K 0x04
  96. #define MUSB_TEST_J 0x02
  97. #define MUSB_TEST_SE0_NAK 0x01
  98. /* Allocate for double-packet buffering (effectively doubles assigned _SIZE) */
  99. #define MUSB_FIFOSZ_DPB 0x10
  100. /* Allocation size (8, 16, 32, ... 4096) */
  101. #define MUSB_FIFOSZ_SIZE 0x0f
  102. /* CSR0 */
  103. #define MUSB_CSR0_FLUSHFIFO 0x0100
  104. #define MUSB_CSR0_TXPKTRDY 0x0002
  105. #define MUSB_CSR0_RXPKTRDY 0x0001
  106. /* CSR0 in Peripheral mode */
  107. #define MUSB_CSR0_P_SVDSETUPEND 0x0080
  108. #define MUSB_CSR0_P_SVDRXPKTRDY 0x0040
  109. #define MUSB_CSR0_P_SENDSTALL 0x0020
  110. #define MUSB_CSR0_P_SETUPEND 0x0010
  111. #define MUSB_CSR0_P_DATAEND 0x0008
  112. #define MUSB_CSR0_P_SENTSTALL 0x0004
  113. /* CSR0 in Host mode */
  114. #define MUSB_CSR0_H_DIS_PING 0x0800
  115. #define MUSB_CSR0_H_WR_DATATOGGLE 0x0400 /* Set to allow setting: */
  116. #define MUSB_CSR0_H_DATATOGGLE 0x0200 /* Data toggle control */
  117. #define MUSB_CSR0_H_NAKTIMEOUT 0x0080
  118. #define MUSB_CSR0_H_STATUSPKT 0x0040
  119. #define MUSB_CSR0_H_REQPKT 0x0020
  120. #define MUSB_CSR0_H_ERROR 0x0010
  121. #define MUSB_CSR0_H_SETUPPKT 0x0008
  122. #define MUSB_CSR0_H_RXSTALL 0x0004
  123. /* CSR0 bits to avoid zeroing (write zero clears, write 1 ignored) */
  124. #define MUSB_CSR0_P_WZC_BITS (MUSB_CSR0_P_SENTSTALL)
  125. #define MUSB_CSR0_H_WZC_BITS (MUSB_CSR0_H_NAKTIMEOUT | MUSB_CSR0_H_RXSTALL | MUSB_CSR0_RXPKTRDY)
  126. #define MUSB_CSR0_H_ERR_BITS \
  127. (MUSB_CSR0_H_NAKTIMEOUT | MUSB_CSR0_H_ERROR \
  128. | MUSB_CSR0_H_RXSTALL)
  129. /* TxType/RxType */
  130. #define MUSB_TYPE_SPEED 0xc0
  131. #define MUSB_TYPE_SPEED_SHIFT 6
  132. #define MUSB_TYPE_PROTO 0x30 /* Implicitly zero for ep0 */
  133. #define MUSB_TYPE_PROTO_SHIFT 4
  134. #define MUSB_TYPE_REMOTE_END 0xf /* Implicitly zero for ep0 */
  135. /* CONFIGDATA */
  136. #define MUSB_CONFIGDATA_MPRXE 0x80 /* Auto bulk pkt combining */
  137. #define MUSB_CONFIGDATA_MPTXE 0x40 /* Auto bulk pkt splitting */
  138. #define MUSB_CONFIGDATA_BIGENDIAN 0x20
  139. #define MUSB_CONFIGDATA_HBRXE 0x10 /* HB-ISO for RX */
  140. #define MUSB_CONFIGDATA_HBTXE 0x08 /* HB-ISO for TX */
  141. #define MUSB_CONFIGDATA_DYNFIFO 0x04 /* Dynamic FIFO sizing */
  142. #define MUSB_CONFIGDATA_SOFTCONE 0x02 /* SoftConnect */
  143. #define MUSB_CONFIGDATA_UTMIDW 0x01 /* Data width 0/1 => 8/16bits */
  144. /* TXCSR in Peripheral and Host mode */
  145. #define MUSB_TXCSR_AUTOSET 0x8000
  146. #define MUSB_TXCSR_DMAENAB 0x1000
  147. #define MUSB_TXCSR_FRCDATATOG 0x0800
  148. #define MUSB_TXCSR_DMAMODE 0x0400
  149. #define MUSB_TXCSR_CLRDATATOG 0x0040
  150. #define MUSB_TXCSR_FLUSHFIFO 0x0008
  151. #define MUSB_TXCSR_FIFONOTEMPTY 0x0002
  152. #define MUSB_TXCSR_TXPKTRDY 0x0001
  153. /* TXCSR in Peripheral mode */
  154. #define MUSB_TXCSR_P_ISO 0x4000
  155. #define MUSB_TXCSR_P_INCOMPTX 0x0080
  156. #define MUSB_TXCSR_P_SENTSTALL 0x0020
  157. #define MUSB_TXCSR_P_SENDSTALL 0x0010
  158. #define MUSB_TXCSR_P_UNDERRUN 0x0004
  159. /* TXCSR in Host mode */
  160. #define MUSB_TXCSR_H_WR_DATATOGGLE 0x0200
  161. #define MUSB_TXCSR_H_DATATOGGLE 0x0100
  162. #define MUSB_TXCSR_H_NAKTIMEOUT 0x0080
  163. #define MUSB_TXCSR_H_RXSTALL 0x0020
  164. #define MUSB_TXCSR_H_ERROR 0x0004
  165. /* TXCSR bits to avoid zeroing (write zero clears, write 1 ignored) */
  166. #define MUSB_TXCSR_P_WZC_BITS \
  167. (MUSB_TXCSR_P_INCOMPTX | MUSB_TXCSR_P_SENTSTALL \
  168. | MUSB_TXCSR_P_UNDERRUN | MUSB_TXCSR_FIFONOTEMPTY)
  169. #define MUSB_TXCSR_H_WZC_BITS \
  170. (MUSB_TXCSR_H_NAKTIMEOUT | MUSB_TXCSR_H_RXSTALL \
  171. | MUSB_TXCSR_H_ERROR | MUSB_TXCSR_FIFONOTEMPTY)
  172. #define MUSB_TXCSR_H_ERR_BITS \
  173. (MUSB_TXCSR_H_NAKTIMEOUT | MUSB_TXCSR_H_RXSTALL \
  174. | MUSB_TXCSR_H_ERROR)
  175. /* RXCSR in Peripheral and Host mode */
  176. #define MUSB_RXCSR_AUTOCLEAR 0x8000
  177. #define MUSB_RXCSR_DMAENAB 0x2000
  178. #define MUSB_RXCSR_DISNYET 0x1000
  179. #define MUSB_RXCSR_PID_ERR 0x1000
  180. #define MUSB_RXCSR_DMAMODE 0x0800
  181. #define MUSB_RXCSR_INCOMPRX 0x0100
  182. #define MUSB_RXCSR_CLRDATATOG 0x0080
  183. #define MUSB_RXCSR_FLUSHFIFO 0x0010
  184. #define MUSB_RXCSR_DATAERROR 0x0008
  185. #define MUSB_RXCSR_FIFOFULL 0x0002
  186. #define MUSB_RXCSR_RXPKTRDY 0x0001
  187. /* RXCSR in Peripheral mode */
  188. #define MUSB_RXCSR_P_ISO 0x4000
  189. #define MUSB_RXCSR_P_SENTSTALL 0x0040
  190. #define MUSB_RXCSR_P_SENDSTALL 0x0020
  191. #define MUSB_RXCSR_P_OVERRUN 0x0004
  192. /* RXCSR in Host mode */
  193. #define MUSB_RXCSR_H_AUTOREQ 0x4000
  194. #define MUSB_RXCSR_H_WR_DATATOGGLE 0x0400
  195. #define MUSB_RXCSR_H_DATATOGGLE 0x0200
  196. #define MUSB_RXCSR_H_RXSTALL 0x0040
  197. #define MUSB_RXCSR_H_REQPKT 0x0020
  198. #define MUSB_RXCSR_H_ERROR 0x0004
  199. /* RXCSR bits to avoid zeroing (write zero clears, write 1 ignored) */
  200. #define MUSB_RXCSR_P_WZC_BITS \
  201. (MUSB_RXCSR_P_SENTSTALL | MUSB_RXCSR_P_OVERRUN \
  202. | MUSB_RXCSR_RXPKTRDY)
  203. #define MUSB_RXCSR_H_WZC_BITS \
  204. (MUSB_RXCSR_H_RXSTALL | MUSB_RXCSR_H_ERROR \
  205. | MUSB_RXCSR_DATAERROR | MUSB_RXCSR_RXPKTRDY)
  206. #define MUSB_RXCSR_H_ERR_BITS \
  207. (MUSB_RXCSR_H_RXSTALL | MUSB_RXCSR_H_ERROR \
  208. | MUSB_RXCSR_DATAERROR | MUSB_RXCSR_INCOMPRX)
  209. /* HUBADDR */
  210. #define MUSB_HUBADDR_MULTI_TT 0x80
  211. /* ANAREG2 */
  212. #define MUSB_ANAREG2_OTGAVFILTER 0x7000
  213. #define MUSB_ANAREG2_EXCHECKENABLE 0x200000
  214. /*
  215. * Common USB registers
  216. */
  217. #define MUSB_FADDR 0x00 /* 8-bit */
  218. #define MUSB_POWER 0x01 /* 8-bit */
  219. #define MUSB_INTRTX 0x02 /* 16-bit */
  220. #define MUSB_INTRRX 0x04
  221. #define MUSB_INTRTXE 0x06
  222. #define MUSB_INTRRXE 0x08
  223. #define MUSB_INTRUSB 0x0A /* 8 bit */
  224. #define MUSB_INTRUSBE 0x0B /* 8 bit */
  225. #define MUSB_FRAME 0x0C
  226. #define MUSB_INDEX 0x0E /* 8 bit */
  227. #define MUSB_TESTMODE 0x0F /* 8 bit */
  228. /* Get offset for a given FIFO from musb->mregs */
  229. #define MUSB_FIFO_OFFSET(epnum) (0x20 + ((epnum) * 4))
  230. /*
  231. * Additional Control Registers
  232. */
  233. #define MUSB_DEVCTL 0x60 /* 8 bit */
  234. /* These are always controlled through the INDEX register */
  235. #define MUSB_TXFIFOSZ 0x62 /* 8-bit (see masks) */
  236. #define MUSB_RXFIFOSZ 0x63 /* 8-bit (see masks) */
  237. #define MUSB_TXFIFOADD 0x64 /* 16-bit offset shifted right 3 */
  238. #define MUSB_RXFIFOADD 0x66 /* 16-bit offset shifted right 3 */
  239. /* REVISIT: vctrl/vstatus: optional vendor utmi+phy register at 0x68 */
  240. #define MUSB_HWVERS 0x6C /* 8 bit */
  241. #define MUSB_ULPI_BUSCONTROL 0x70 /* 8 bit */
  242. #define MUSB_ULPI_INT_MASK 0x72 /* 8 bit */
  243. #define MUSB_ULPI_INT_SRC 0x73 /* 8 bit */
  244. #define MUSB_ULPI_REG_DATA 0x74 /* 8 bit */
  245. #define MUSB_ULPI_REG_ADDR 0x75 /* 8 bit */
  246. #define MUSB_ULPI_REG_CONTROL 0x76 /* 8 bit */
  247. #define MUSB_ULPI_RAW_DATA 0x77 /* 8 bit */
  248. #define MUSB_EPINFO 0x78 /* 8 bit */
  249. #define MUSB_RAMINFO 0x79 /* 8 bit */
  250. #define MUSB_LINKINFO 0x7a /* 8 bit */
  251. #define MUSB_VPLEN 0x7b /* 8 bit */
  252. #define MUSB_HS_EOF1 0x7c /* 8 bit */
  253. #define MUSB_FS_EOF1 0x7d /* 8 bit */
  254. #define MUSB_LS_EOF1 0x7e /* 8 bit */
  255. #define MUSB_ANAREG2 0x90 /* 32 bit */
  256. /* Offsets to endpoint registers */
  257. #define MUSB_TXMAXP 0x10
  258. #define MUSB_TXCSR 0x12
  259. #define MUSB_CSR0 MUSB_TXCSR /* Re-used for EP0 */
  260. #define MUSB_RXMAXP 0x14
  261. #define MUSB_RXCSR 0x16
  262. #define MUSB_RXCOUNT 0x18
  263. #define MUSB_COUNT0 MUSB_RXCOUNT/* Re-used for EP0 */
  264. #define MUSB_TXTYPE 0x1A
  265. #define MUSB_TYPE0 MUSB_TXTYPE /* Re-used for EP0 */
  266. #define MUSB_TXINTERVAL 0x1B
  267. #define MUSB_NAKLIMIT0 MUSB_TXINTERVAL /* Re-used for EP0 */
  268. #define MUSB_RXTYPE 0x1C
  269. #define MUSB_RXINTERVAL 0x1D
  270. #define MUSB_FIFOSIZE 0x1F /* Endpoints 1 �C 15 only */
  271. #define MUSB_CONFIGDATA 0x1F /* Re-used for EP0 */
  272. /* Offsets to endpoint registers in indexed model (using INDEX register) */
  273. #define MUSB_INDEXED_OFFSET(_epnum, _offset) (_offset)
  274. /* Offsets to endpoint registers in flat models */
  275. #define MUSB_FLAT_OFFSET(_epnum, _offset) \
  276. (0x100 + (0x10*(_epnum)) + (_offset))
  277. #define MUSB_TXCSR_MODE 0x2000
  278. /* "bus control"/target registers, for host side multipoint (external hubs) */
  279. #define MUSB_TXFUNCADDR 0x00
  280. #define MUSB_TXHUBADDR 0x02
  281. #define MUSB_TXHUBPORT 0x03
  282. #define MUSB_RXFUNCADDR 0x04
  283. #define MUSB_RXHUBADDR 0x06
  284. #define MUSB_RXHUBPORT 0x07
  285. #define MUSB_BUSCTL_OFFSET(_epnum, _offset) \
  286. (0x80 + (8*(_epnum)) + (_offset))
  287. #endif /* __MUSB_REGS_H__ */