musb_regs.h 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723
  1. /*
  2. * MUSB OTG driver register defines
  3. *
  4. * Copyright 2005 Mentor Graphics Corporation
  5. * Copyright (C) 2005-2006 by Texas Instruments
  6. * Copyright (C) 2006-2007 Nokia Corporation
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License
  10. * version 2 as published by the Free Software Foundation.
  11. *
  12. * This program is distributed in the hope that it will be useful, but
  13. * WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  20. * 02110-1301 USA
  21. *
  22. * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
  23. * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  24. * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
  25. * NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  26. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  27. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  28. * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
  29. * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  30. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  31. * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  32. *
  33. */
  34. #ifndef __MUSB_REGS_H__
  35. #define __MUSB_REGS_H__
  36. #define MUSB_REG_BASE (0x02100000)
  37. #define MUSB_EP0_FIFOSIZE 64 /* This is non-configurable */
  38. /*
  39. * MUSB Register bits
  40. */
  41. /* POWER */
  42. #define MUSB_POWER_ISOUPDATE 0x80
  43. #define MUSB_POWER_SOFTCONN 0x40
  44. #define MUSB_POWER_HSENAB 0x20
  45. #define MUSB_POWER_HSMODE 0x10
  46. #define MUSB_POWER_RESET 0x08
  47. #define MUSB_POWER_RESUME 0x04
  48. #define MUSB_POWER_SUSPENDM 0x02
  49. #define MUSB_POWER_ENSUSPEND 0x01
  50. /* INTRUSB */
  51. #define MUSB_INTR_SUSPEND 0x01
  52. #define MUSB_INTR_RESUME 0x02
  53. #define MUSB_INTR_RESET 0x04
  54. #define MUSB_INTR_BABBLE 0x04
  55. #define MUSB_INTR_SOF 0x08
  56. #define MUSB_INTR_CONNECT 0x10
  57. #define MUSB_INTR_DISCONNECT 0x20
  58. #define MUSB_INTR_SESSREQ 0x40
  59. #define MUSB_INTR_VBUSERROR 0x80 /* For SESSION end */
  60. /* EPTXEN */
  61. #define EPTXEN(n) (1 << n)
  62. /* EPRXEN */
  63. #define EPTXEN(n) (1 << n)
  64. /* EP0EN */
  65. #define EP0EN (1 << 0)
  66. /* EP0 interrupt */
  67. #define MUSB_EP0_INTERRUPT 0x0001
  68. /* DEVCTL */
  69. #define MUSB_DEVCTL_BDEVICE 0x80
  70. #define MUSB_DEVCTL_FSDEV 0x40
  71. #define MUSB_DEVCTL_LSDEV 0x20
  72. #define MUSB_DEVCTL_VBUS 0x18
  73. #define MUSB_DEVCTL_VBUS_SHIFT 3
  74. #define MUSB_DEVCTL_HM 0x04
  75. #define MUSB_DEVCTL_HR 0x02
  76. #define MUSB_DEVCTL_SESSION 0x01
  77. /* BABBLE_CTL */
  78. #define MUSB_BABBLE_FORCE_TXIDLE 0x80
  79. #define MUSB_BABBLE_SW_SESSION_CTRL 0x40
  80. #define MUSB_BABBLE_STUCK_J 0x20
  81. #define MUSB_BABBLE_RCV_DISABLE 0x04
  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. #define MUSB_FIFOSZ_SIZE_8BYTE 0x00
  103. #define MUSB_FIFOSZ_SIZE_16BYTE 0x01
  104. #define MUSB_FIFOSZ_SIZE_32BYTE 0x02
  105. #define MUSB_FIFOSZ_SIZE_64BYTE 0x03
  106. #define MUSB_FIFOSZ_SIZE_128BYTE 0x04
  107. #define MUSB_FIFOSZ_SIZE_256BYTE 0x05
  108. #define MUSB_FIFOSZ_SIZE_512BYTE 0x06
  109. #define MUSB_FIFOSZ_SIZE_1024BYTE 0x07
  110. #define MUSB_FIFOSZ_SIZE_2048BYTE 0x08
  111. #define MUSB_FIFOSZ_SIZE_4096BYTE 0x09
  112. /* CSR0 */
  113. #define MUSB_CSR0_FLUSHFIFO 0x0100
  114. #define MUSB_CSR0_TXPKTRDY 0x0002
  115. #define MUSB_CSR0_RXPKTRDY 0x0001
  116. /* CSR0 in Peripheral mode */
  117. #define MUSB_CSR0_P_SVDSETUPEND 0x0080
  118. #define MUSB_CSR0_P_SVDRXPKTRDY 0x0040
  119. #define MUSB_CSR0_P_SENDSTALL 0x0020
  120. #define MUSB_CSR0_P_SETUPEND 0x0010
  121. #define MUSB_CSR0_P_DATAEND 0x0008
  122. #define MUSB_CSR0_P_SENTSTALL 0x0004
  123. /* CSR0 in Host mode */
  124. #define MUSB_CSR0_H_DIS_PING 0x0800
  125. #define MUSB_CSR0_H_WR_DATATOGGLE 0x0400 /* Set to allow setting: */
  126. #define MUSB_CSR0_H_DATATOGGLE 0x0200 /* Data toggle control */
  127. #define MUSB_CSR0_H_NAKTIMEOUT 0x0080
  128. #define MUSB_CSR0_H_STATUSPKT 0x0040
  129. #define MUSB_CSR0_H_REQPKT 0x0020
  130. #define MUSB_CSR0_H_ERROR 0x0010
  131. #define MUSB_CSR0_H_SETUPPKT 0x0008
  132. #define MUSB_CSR0_H_RXSTALL 0x0004
  133. /* CSR0 bits to avoid zeroing (write zero clears, write 1 ignored) */
  134. #define MUSB_CSR0_P_WZC_BITS \
  135. (MUSB_CSR0_P_SENTSTALL)
  136. #define MUSB_CSR0_H_WZC_BITS \
  137. (MUSB_CSR0_H_NAKTIMEOUT | MUSB_CSR0_H_RXSTALL | MUSB_CSR0_RXPKTRDY)
  138. /* TxType/RxType */
  139. #define MUSB_TYPE_SPEED 0xc0
  140. #define MUSB_TYPE_SPEED_SHIFT 6
  141. #define MUSB_TYPE_PROTO 0x30 /* Implicitly zero for ep0 */
  142. #define MUSB_TYPE_PROTO_SHIFT 4
  143. #define MUSB_TYPE_REMOTE_END 0xf /* Implicitly zero for ep0 */
  144. /* CONFIGDATA */
  145. #define MUSB_CONFIGDATA_MPRXE 0x80 /* Auto bulk pkt combining */
  146. #define MUSB_CONFIGDATA_MPTXE 0x40 /* Auto bulk pkt splitting */
  147. #define MUSB_CONFIGDATA_BIGENDIAN 0x20
  148. #define MUSB_CONFIGDATA_HBRXE 0x10 /* HB-ISO for RX */
  149. #define MUSB_CONFIGDATA_HBTXE 0x08 /* HB-ISO for TX */
  150. #define MUSB_CONFIGDATA_DYNFIFO 0x04 /* Dynamic FIFO sizing */
  151. #define MUSB_CONFIGDATA_SOFTCONE 0x02 /* SoftConnect */
  152. #define MUSB_CONFIGDATA_UTMIDW 0x01 /* Data width 0/1 => 8/16bits */
  153. /* TXCSR in Peripheral and Host mode */
  154. #define MUSB_TXCSR_AUTOSET 0x8000
  155. #define MUSB_TXCSR_DMAENAB 0x1000
  156. #define MUSB_TXCSR_FRCDATATOG 0x0800
  157. #define MUSB_TXCSR_DMAMODE 0x0400
  158. #define MUSB_TXCSR_CLRDATATOG 0x0040
  159. #define MUSB_TXCSR_FLUSHFIFO 0x0008
  160. #define MUSB_TXCSR_FIFONOTEMPTY 0x0002
  161. #define MUSB_TXCSR_TXPKTRDY 0x0001
  162. /* TXCSR in Peripheral mode */
  163. #define MUSB_TXCSR_P_ISO 0x4000
  164. #define MUSB_TXCSR_P_INCOMPTX 0x0080
  165. #define MUSB_TXCSR_P_SENTSTALL 0x0020
  166. #define MUSB_TXCSR_P_SENDSTALL 0x0010
  167. #define MUSB_TXCSR_P_UNDERRUN 0x0004
  168. /* TXCSR in Host mode */
  169. #define MUSB_TXCSR_H_WR_DATATOGGLE 0x0200
  170. #define MUSB_TXCSR_H_DATATOGGLE 0x0100
  171. #define MUSB_TXCSR_H_NAKTIMEOUT 0x0080
  172. #define MUSB_TXCSR_H_RXSTALL 0x0020
  173. #define MUSB_TXCSR_H_ERROR 0x0004
  174. /* TXCSR bits to avoid zeroing (write zero clears, write 1 ignored) */
  175. #define MUSB_TXCSR_P_WZC_BITS \
  176. (MUSB_TXCSR_P_INCOMPTX | MUSB_TXCSR_P_SENTSTALL | MUSB_TXCSR_P_UNDERRUN | MUSB_TXCSR_FIFONOTEMPTY)
  177. #define MUSB_TXCSR_H_WZC_BITS \
  178. (MUSB_TXCSR_H_NAKTIMEOUT | MUSB_TXCSR_H_RXSTALL | MUSB_TXCSR_H_ERROR | MUSB_TXCSR_FIFONOTEMPTY)
  179. /* RXCSR in Peripheral and Host mode */
  180. #define MUSB_RXCSR_AUTOCLEAR 0x8000
  181. #define MUSB_RXCSR_DMAENAB 0x2000
  182. #define MUSB_RXCSR_DISNYET 0x1000
  183. #define MUSB_RXCSR_PID_ERR 0x1000
  184. #define MUSB_RXCSR_DMAMODE 0x0800
  185. #define MUSB_RXCSR_INCOMPRX 0x0100
  186. #define MUSB_RXCSR_CLRDATATOG 0x0080
  187. #define MUSB_RXCSR_FLUSHFIFO 0x0010
  188. #define MUSB_RXCSR_DATAERROR 0x0008
  189. #define MUSB_RXCSR_FIFOFULL 0x0002
  190. #define MUSB_RXCSR_RXPKTRDY 0x0001
  191. #define MUSB_FIFO_TIMEOUT 0x01
  192. /* RXCSR in Peripheral mode */
  193. #define MUSB_RXCSR_P_ISO 0x4000
  194. #define MUSB_RXCSR_P_SENTSTALL 0x0040
  195. #define MUSB_RXCSR_P_SENDSTALL 0x0020
  196. #define MUSB_RXCSR_P_OVERRUN 0x0004
  197. /* RXCSR in Host mode */
  198. #define MUSB_RXCSR_H_AUTOREQ 0x4000
  199. #define MUSB_RXCSR_H_WR_DATATOGGLE 0x0400
  200. #define MUSB_RXCSR_H_DATATOGGLE 0x0200
  201. #define MUSB_RXCSR_H_RXSTALL 0x0040
  202. #define MUSB_RXCSR_H_REQPKT 0x0020
  203. #define MUSB_RXCSR_H_ERROR 0x0004
  204. /* RXCSR bits to avoid zeroing (write zero clears, write 1 ignored) */
  205. #define MUSB_RXCSR_P_WZC_BITS \
  206. (MUSB_RXCSR_P_SENTSTALL | MUSB_RXCSR_P_OVERRUN | MUSB_RXCSR_RXPKTRDY)
  207. #define MUSB_RXCSR_H_WZC_BITS \
  208. (MUSB_RXCSR_H_RXSTALL | MUSB_RXCSR_H_ERROR | MUSB_RXCSR_DATAERROR | MUSB_RXCSR_RXPKTRDY)
  209. /* HUBADDR */
  210. #define MUSB_HUBADDR_MULTI_TT 0x80
  211. #ifndef CONFIG_BLACKFIN
  212. /*
  213. * Common USB registers
  214. */
  215. #define MUSB_FADDR 0x00 /* 8-bit */
  216. #define MUSB_POWER 0x01 /* 8-bit */
  217. #define MUSB_INTRTX 0x02 /* 16-bit */
  218. #define MUSB_INTRRX 0x04
  219. #define MUSB_INTRTXE 0x06
  220. #define MUSB_INTRRXE 0x08
  221. #define MUSB_INTRUSB 0x0A /* 8 bit */
  222. #define MUSB_INTRUSBE 0x0B /* 8 bit */
  223. #define MUSB_FRAME 0x0C
  224. #define MUSB_INDEX 0x0E /* 8 bit */
  225. #define MUSB_TESTMODE 0x0F /* 8 bit */
  226. /*
  227. * Additional Control Registers
  228. */
  229. #define MUSB_DEVCTL 0x60 /* 8 bit */
  230. #define MUSB_BABBLE_CTL 0x61 /* 8 bit */
  231. ////FIFOx (Addresses 20h-5Fh)
  232. #define MUSB_EP0_FIFO (0x20)
  233. #define Mentor_USB_EP0_FIFO (MUSB_REG_BASE + 0x20)
  234. #define MUSB_TXFIFO_STARTADD(n) (8 + 256 * n + 128)
  235. #define MUSB_RXFIFO_STARTADD(n) (8 + 256 * n)
  236. /* These are always controlled through the INDEX register */
  237. #define MUSB_TXFIFOSZ 0x62 /* 8-bit (see masks) */
  238. #define MUSB_RXFIFOSZ 0x63 /* 8-bit (see masks) */
  239. #define MUSB_TXFIFOADD 0x64 /* 16-bit offset shifted right 3 */
  240. #define MUSB_RXFIFOADD 0x66 /* 16-bit offset shifted right 3 */
  241. /* REVISIT: vctrl/vstatus: optional vendor utmi+phy register at 0x68 */
  242. #define MUSB_HWVERS 0x6C /* 8 bit */
  243. #define MUSB_ULPI_BUSCONTROL 0x70 /* 8 bit */
  244. #define MUSB_ULPI_INT_MASK 0x72 /* 8 bit */
  245. #define MUSB_ULPI_INT_SRC 0x73 /* 8 bit */
  246. #define MUSB_ULPI_REG_DATA 0x74 /* 8 bit */
  247. #define MUSB_ULPI_REG_ADDR 0x75 /* 8 bit */
  248. #define MUSB_ULPI_REG_CONTROL 0x76 /* 8 bit */
  249. #define MUSB_ULPI_RAW_DATA 0x77 /* 8 bit */
  250. #define MUSB_EPINFO 0x78 /* 8 bit */
  251. #define MUSB_RAMINFO 0x79 /* 8 bit */
  252. #define MUSB_LINKINFO 0x7a /* 8 bit */
  253. #define MUSB_VPLEN 0x7b /* 8 bit */
  254. #define MUSB_HS_EOF1 0x7c /* 8 bit */
  255. #define MUSB_FS_EOF1 0x7d /* 8 bit */
  256. #define MUSB_LS_EOF1 0x7e /* 8 bit */
  257. #define MUSB_RX_DPKTBUFDIS 0x340 /* 16 bit */
  258. #define MUSB_TX_DPKTBUFDIS 0x342 /* 16 bit */
  259. /* Offsets to endpoint registers */
  260. #define MUSB_TXMAXP 0x00
  261. #define MUSB_TXCSR 0x02
  262. #define MUSB_CSR0 MUSB_TXCSR /* Re-used for EP0 */
  263. #define MUSB_RXMAXP 0x04
  264. #define MUSB_RXCSR 0x06
  265. #define MUSB_RXCOUNT 0x08
  266. #define MUSB_COUNT0 MUSB_RXCOUNT /* Re-used for EP0 */
  267. #define MUSB_TXTYPE 0x0A
  268. #define MUSB_TYPE0 MUSB_TXTYPE /* Re-used for EP0 */
  269. #define MUSB_TXINTERVAL 0x0B
  270. #define MUSB_NAKLIMIT0 MUSB_TXINTERVAL /* Re-used for EP0 */
  271. #define MUSB_RXTYPE 0x0C
  272. #define MUSB_RXINTERVAL 0x0D
  273. #define MUSB_FIFOSIZE 0x0F
  274. #define MUSB_CONFIGDATA MUSB_FIFOSIZE /* Re-used for EP0 */
  275. #define MUSB_OTG_EXT_CSR 0x34b
  276. #define MUSB_OTG_FIFO_CHECK 0x349
  277. #define MUSB_OTG_RXPKTCNT(n) (0x300 + 0x4 * n)
  278. #define MUSB_CSRL_EP0 (0x102) //8
  279. #define MUSB_CSR_EP0 (0x102) //16
  280. #define MUSB_COUNT_EP0 (0x108) //16
  281. #define MUSB_TXMAXP_EPN(n) (0x100 + n * 0x10) //16
  282. #define MUSB_TXCSR_EPN(n) (0x102 + n * 0x10) //16
  283. #define MUSB_TXCSRL_EPN(n) (0x102 + n * 0x10) //8
  284. #define MUSB_TXCSRH_EPN(n) (0x103 + n * 0x10) //8
  285. #define MUSB_RXMAXP_EPN(n) (0x104 + n * 0x10) //16
  286. #define MUSB_RXCSR_EPN(n) (0x106 + n * 0x10) //16
  287. #define MUSB_RXCSRL_EPN(n) (0x106 + n * 0x10) //8
  288. #define MUSB_RXCSRH_EPN(n) (0x107 + n * 0x10) //8
  289. #define MUSB_RXCOUNT_EPN(n) (0x108 + n * 0x10) //8
  290. /* RESET */
  291. #define MUSB_CSR0RESET (0x0000) //16
  292. #define MUSB_COUNT0RESET (0x0000) //16
  293. #define MUSB_TXMAXPRESET (0x0000) //16
  294. #define MUSB_TXCSRRESET (0x0000) //16
  295. #define MUSB_TXCSRLRESET (0x00) //8
  296. #define MUSB_TXCSRHRESET (0x00) //8
  297. #define MUSB_RXMAXPRESET (0x0000) //16
  298. #define MUSB_RXCSRRESET (0x0000) //16
  299. #define MUSB_RXCSRLRESET (0x00) //8
  300. #define MUSB_RXCSRHRESET (0x00) //8
  301. #define MUSB_RXCOUNTRESET (0x00) //8s
  302. // #include "tusb6010.h" /* Needed "only" for TUSB_EP0_CONF */
  303. #define MUSB_TXCSR_MODE 0x2000
  304. /* "bus control"/target registers, for host side multipoint (external hubs) */
  305. #define MUSB_TXFUNCADDR 0x00
  306. #define MUSB_TXHUBADDR 0x02
  307. #define MUSB_TXHUBPORT 0x03
  308. #define MUSB_RXFUNCADDR 0x04
  309. #define MUSB_RXHUBADDR 0x06
  310. #define MUSB_RXHUBPORT 0x07
  311. #define MUSB_HOST_FORCE_EN 0x01
  312. #define MUSB_CLEAR_TXBUFF 0x10
  313. #define MUSB_CLEAR_RXBUFF 0x20
  314. #define MUSB_TX_CMPL_MODE 0x40
  315. /* DMA */
  316. /*channel configure*/
  317. #define CHN_EN (0x00000001)
  318. #define CHN_LLIST_END (0x00000002)
  319. #define CHN_LLIST_NODE_VLD (0x00000004)
  320. #define CHN_SP_FLAG (0x00000100)
  321. /*channel interrupt*/
  322. #define CHN_FRAGMENT_INT_EN (0x00000001)
  323. #define CHN_BLK_INT_EN (0x00000002)
  324. #define CHN_LLIST_INT_EN (0x00000004)
  325. #define CHN_START_INT_EN (0x00000008)
  326. #define CHN_USBRX_INT_EN (0x00000010)
  327. #define CHN_FRAGMENT_INT_RAW_STATUS (0x00000100)
  328. #define CHN_BLK_INT_RAW_STATUS (0x00000200)
  329. #define CHN_LLIST_INT_RAW_STATUS (0x00000400)
  330. #define CHN_START_INT_RAW_STATUS (0x00000800)
  331. #define CHN_USBRX_INT_RAW_STATUS (0x00001000)
  332. #define CHN_FRAGMENT_INT_MASK_STATUS (0x00010000)
  333. #define CHN_BLK_INT_MASK_STATUS (0x00020000)
  334. #define CHN_LLISTINT_MASK_STATUS (0x00040000)
  335. #define CHN_START_INT_MASK_STATUS (0x00080000)
  336. #define CHN_USBRX_INT_MASK_STATUS (0x00100000)
  337. #define CHN_FRAGMENT_INT_CLR (0x01000000)
  338. #define CHN_BLK_INT_CLR (0x02000000)
  339. #define CHN_LLIST_INT_CLR (0x04000000)
  340. #define CHN_START_INT_CLR (0x08000000)
  341. #define CHN_USBRX_LAST_INT_CLR (0x10000000)
  342. #define MUSB_DMA_CHN_PAUSE(n) (0x1C00 + ((n)-1) * 0x20)
  343. #define MUSB_DMA_CHN_CFG(n) (0x1C04 + ((n)-1) * 0x20)
  344. #define MUSB_DMA_CHN_INTR(n) (0x1C08 + ((n)-1) * 0x20)
  345. #define MUSB_DMA_CHN_ADDR(n) (0x1C0C + ((n)-1) * 0x20)
  346. #define MUSB_DMA_CHN_LEN(n) (0x1C10 + ((n)-1) * 0x20)
  347. #define MUSB_DMA_CHN_LLIST_PTR(n) (0x1C14 + ((n)-1) * 0x20)
  348. #define MUSB_DMA_CHN_BYTE_CNT(n) (0x1C18 + ((n)-1) * 0x20)
  349. #define MUSB_DMA_CHN_REQ(n) (0x1C1C + ((n)-1) * 0x20)
  350. // static inline void musb_write_txfifosz(void __iomem *mbase, u8 c_size)
  351. // {
  352. // musb_writeb(mbase, MUSB_TXFIFOSZ, c_size);
  353. // }
  354. // static inline void musb_write_txfifoadd(void __iomem *mbase, u16 c_off)
  355. // {
  356. // musb_writew(mbase, MUSB_TXFIFOADD, c_off);
  357. // }
  358. // static inline void musb_write_rxfifosz(void __iomem *mbase, u8 c_size)
  359. // {
  360. // musb_writeb(mbase, MUSB_RXFIFOSZ, c_size);
  361. // }
  362. // static inline void musb_write_rxfifoadd(void __iomem *mbase, u16 c_off)
  363. // {
  364. // musb_writew(mbase, MUSB_RXFIFOADD, c_off);
  365. // }
  366. // static inline void musb_write_ulpi_buscontrol(void __iomem *mbase, u8 val)
  367. // {
  368. // musb_writeb(mbase, MUSB_ULPI_BUSCONTROL, val);
  369. // }
  370. // static inline u8 musb_read_txfifosz(void __iomem *mbase)
  371. // {
  372. // return musb_readb(mbase, MUSB_TXFIFOSZ);
  373. // }
  374. // static inline u16 musb_read_txfifoadd(void __iomem *mbase)
  375. // {
  376. // return musb_readw(mbase, MUSB_TXFIFOADD);
  377. // }
  378. // static inline u8 musb_read_rxfifosz(void __iomem *mbase)
  379. // {
  380. // return musb_readb(mbase, MUSB_RXFIFOSZ);
  381. // }
  382. // static inline u16 musb_read_rxfifoadd(void __iomem *mbase)
  383. // {
  384. // return musb_readw(mbase, MUSB_RXFIFOADD);
  385. // }
  386. // static inline u8 musb_read_ulpi_buscontrol(void __iomem *mbase)
  387. // {
  388. // return musb_readb(mbase, MUSB_ULPI_BUSCONTROL);
  389. // }
  390. // static inline u8 musb_read_configdata(void __iomem *mbase)
  391. // {
  392. // musb_writeb(mbase, MUSB_INDEX, 0);
  393. // return musb_readb(mbase, 0x10 + MUSB_CONFIGDATA);
  394. // }
  395. // static inline u16 musb_read_hwvers(void __iomem *mbase)
  396. // {
  397. // return musb_readw(mbase, MUSB_HWVERS);
  398. // }
  399. // static inline void musb_write_rxfunaddr(struct musb *musb, u8 epnum,
  400. // u8 qh_addr_reg)
  401. // {
  402. // musb_writeb(musb->mregs,
  403. // musb->io.busctl_offset(epnum, MUSB_RXFUNCADDR),
  404. // qh_addr_reg);
  405. // }
  406. // static inline void musb_write_rxhubaddr(struct musb *musb, u8 epnum,
  407. // u8 qh_h_addr_reg)
  408. // {
  409. // musb_writeb(musb->mregs, musb->io.busctl_offset(epnum, MUSB_RXHUBADDR),
  410. // qh_h_addr_reg);
  411. // }
  412. // static inline void musb_write_rxhubport(struct musb *musb, u8 epnum,
  413. // u8 qh_h_port_reg)
  414. // {
  415. // musb_writeb(musb->mregs, musb->io.busctl_offset(epnum, MUSB_RXHUBPORT),
  416. // qh_h_port_reg);
  417. // }
  418. // static inline void musb_write_txfunaddr(struct musb *musb, u8 epnum,
  419. // u8 qh_addr_reg)
  420. // {
  421. // musb_writeb(musb->mregs,
  422. // musb->io.busctl_offset(epnum, MUSB_TXFUNCADDR),
  423. // qh_addr_reg);
  424. // }
  425. // static inline void musb_write_txhubaddr(struct musb *musb, u8 epnum,
  426. // u8 qh_addr_reg)
  427. // {
  428. // musb_writeb(musb->mregs, musb->io.busctl_offset(epnum, MUSB_TXHUBADDR),
  429. // qh_addr_reg);
  430. // }
  431. // static inline void musb_write_txhubport(struct musb *musb, u8 epnum,
  432. // u8 qh_h_port_reg)
  433. // {
  434. // musb_writeb(musb->mregs, musb->io.busctl_offset(epnum, MUSB_TXHUBPORT),
  435. // qh_h_port_reg);
  436. // }
  437. // static inline u8 musb_read_rxfunaddr(struct musb *musb, u8 epnum)
  438. // {
  439. // return musb_readb(musb->mregs,
  440. // musb->io.busctl_offset(epnum, MUSB_RXFUNCADDR));
  441. // }
  442. // static inline u8 musb_read_rxhubaddr(struct musb *musb, u8 epnum)
  443. // {
  444. // return musb_readb(musb->mregs,
  445. // musb->io.busctl_offset(epnum, MUSB_RXHUBADDR));
  446. // }
  447. // static inline u8 musb_read_rxhubport(struct musb *musb, u8 epnum)
  448. // {
  449. // return musb_readb(musb->mregs,
  450. // musb->io.busctl_offset(epnum, MUSB_RXHUBPORT));
  451. // }
  452. // static inline u8 musb_read_txfunaddr(struct musb *musb, u8 epnum)
  453. // {
  454. // return musb_readb(musb->mregs,
  455. // musb->io.busctl_offset(epnum, MUSB_TXFUNCADDR));
  456. // }
  457. // static inline u8 musb_read_txhubaddr(struct musb *musb, u8 epnum)
  458. // {
  459. // return musb_readb(musb->mregs,
  460. // musb->io.busctl_offset(epnum, MUSB_TXHUBADDR));
  461. // }
  462. // static inline u8 musb_read_txhubport(struct musb *musb, u8 epnum)
  463. // {
  464. // return musb_readb(musb->mregs,
  465. // musb->io.busctl_offset(epnum, MUSB_TXHUBPORT));
  466. // }
  467. #else /* CONFIG_BLACKFIN */
  468. #define USB_BASE USB_FADDR
  469. #define USB_OFFSET(reg) (reg - USB_BASE)
  470. /*
  471. * Common USB registers
  472. */
  473. #define MUSB_FADDR USB_OFFSET(USB_FADDR) /* 8-bit */
  474. #define MUSB_POWER USB_OFFSET(USB_POWER) /* 8-bit */
  475. #define MUSB_INTRTX USB_OFFSET(USB_INTRTX) /* 16-bit */
  476. #define MUSB_INTRRX USB_OFFSET(USB_INTRRX)
  477. #define MUSB_INTRTXE USB_OFFSET(USB_INTRTXE)
  478. #define MUSB_INTRRXE USB_OFFSET(USB_INTRRXE)
  479. #define MUSB_INTRUSB USB_OFFSET(USB_INTRUSB) /* 8 bit */
  480. #define MUSB_INTRUSBE USB_OFFSET(USB_INTRUSBE) /* 8 bit */
  481. #define MUSB_FRAME USB_OFFSET(USB_FRAME)
  482. #define MUSB_INDEX USB_OFFSET(USB_INDEX) /* 8 bit */
  483. #define MUSB_TESTMODE USB_OFFSET(USB_TESTMODE) /* 8 bit */
  484. /*
  485. * Additional Control Registers
  486. */
  487. #define MUSB_DEVCTL USB_OFFSET(USB_OTG_DEV_CTL) /* 8 bit */
  488. #define MUSB_LINKINFO USB_OFFSET(USB_LINKINFO) /* 8 bit */
  489. #define MUSB_VPLEN USB_OFFSET(USB_VPLEN) /* 8 bit */
  490. #define MUSB_HS_EOF1 USB_OFFSET(USB_HS_EOF1) /* 8 bit */
  491. #define MUSB_FS_EOF1 USB_OFFSET(USB_FS_EOF1) /* 8 bit */
  492. #define MUSB_LS_EOF1 USB_OFFSET(USB_LS_EOF1) /* 8 bit */
  493. /* Offsets to endpoint registers */
  494. #define MUSB_TXMAXP 0x00
  495. #define MUSB_TXCSR 0x04
  496. #define MUSB_CSR0 MUSB_TXCSR /* Re-used for EP0 */
  497. #define MUSB_RXMAXP 0x08
  498. #define MUSB_RXCSR 0x0C
  499. #define MUSB_RXCOUNT 0x10
  500. #define MUSB_COUNT0 MUSB_RXCOUNT /* Re-used for EP0 */
  501. #define MUSB_TXTYPE 0x14
  502. #define MUSB_TYPE0 MUSB_TXTYPE /* Re-used for EP0 */
  503. #define MUSB_TXINTERVAL 0x18
  504. #define MUSB_NAKLIMIT0 MUSB_TXINTERVAL /* Re-used for EP0 */
  505. #define MUSB_RXTYPE 0x1C
  506. #define MUSB_RXINTERVAL 0x20
  507. #define MUSB_TXCOUNT 0x28
  508. /* Offsets to endpoint registers in indexed model (using INDEX register) */
  509. #define MUSB_INDEXED_OFFSET(_epnum, _offset) \
  510. (0x40 + (_offset))
  511. /* Offsets to endpoint registers in flat models */
  512. #define MUSB_FLAT_OFFSET(_epnum, _offset) \
  513. (USB_OFFSET(USB_EP_NI0_TXMAXP) + (0x40 * (_epnum)) + (_offset))
  514. /* Not implemented - HW has separate Tx/Rx FIFO */
  515. #define MUSB_TXCSR_MODE 0x0000
  516. static inline void musb_write_txfifosz(void __iomem *mbase, u8 c_size)
  517. {
  518. }
  519. static inline void musb_write_txfifoadd(void __iomem *mbase, u16 c_off)
  520. {
  521. }
  522. static inline void musb_write_rxfifosz(void __iomem *mbase, u8 c_size)
  523. {
  524. }
  525. static inline void musb_write_rxfifoadd(void __iomem *mbase, u16 c_off)
  526. {
  527. }
  528. static inline void musb_write_ulpi_buscontrol(void __iomem *mbase, u8 val)
  529. {
  530. }
  531. static inline u8 musb_read_txfifosz(void __iomem *mbase)
  532. {
  533. return 0;
  534. }
  535. static inline u16 musb_read_txfifoadd(void __iomem *mbase)
  536. {
  537. return 0;
  538. }
  539. static inline u8 musb_read_rxfifosz(void __iomem *mbase)
  540. {
  541. return 0;
  542. }
  543. static inline u16 musb_read_rxfifoadd(void __iomem *mbase)
  544. {
  545. return 0;
  546. }
  547. static inline u8 musb_read_ulpi_buscontrol(void __iomem *mbase)
  548. {
  549. return 0;
  550. }
  551. static inline u8 musb_read_configdata(void __iomem *mbase)
  552. {
  553. return 0;
  554. }
  555. static inline u16 musb_read_hwvers(void __iomem *mbase)
  556. {
  557. /*
  558. * This register is invisible on Blackfin, actually the MUSB
  559. * RTL version of Blackfin is 1.9, so just hardcode its value.
  560. */
  561. return MUSB_HWVERS_1900;
  562. }
  563. static inline void musb_write_rxfunaddr(void __iomem *mbase, u8 epnum,
  564. u8 qh_addr_req)
  565. {
  566. }
  567. static inline void musb_write_rxhubaddr(void __iomem *mbase, u8 epnum,
  568. u8 qh_h_addr_reg)
  569. {
  570. }
  571. static inline void musb_write_rxhubport(void __iomem *mbase, u8 epnum,
  572. u8 qh_h_port_reg)
  573. {
  574. }
  575. static inline void musb_write_txfunaddr(void __iomem *mbase, u8 epnum,
  576. u8 qh_addr_reg)
  577. {
  578. }
  579. static inline void musb_write_txhubaddr(void __iomem *mbase, u8 epnum,
  580. u8 qh_addr_reg)
  581. {
  582. }
  583. static inline void musb_write_txhubport(void __iomem *mbase, u8 epnum,
  584. u8 qh_h_port_reg)
  585. {
  586. }
  587. static inline u8 musb_read_rxfunaddr(void __iomem *mbase, u8 epnum)
  588. {
  589. return 0;
  590. }
  591. static inline u8 musb_read_rxhubaddr(void __iomem *mbase, u8 epnum)
  592. {
  593. return 0;
  594. }
  595. static inline u8 musb_read_rxhubport(void __iomem *mbase, u8 epnum)
  596. {
  597. return 0;
  598. }
  599. static inline u8 musb_read_txfunaddr(void __iomem *mbase, u8 epnum)
  600. {
  601. return 0;
  602. }
  603. static inline u8 musb_read_txhubaddr(void __iomem *mbase, u8 epnum)
  604. {
  605. return 0;
  606. }
  607. static inline u8 musb_read_txhubport(void __iomem *mbase, u8 epnum)
  608. {
  609. return 0;
  610. }
  611. #endif /* CONFIG_BLACKFIN */
  612. #endif /* __MUSB_REGS_H__ */