rtl28xxu.h 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. /*
  2. * Realtek RTL28xxU DVB USB driver
  3. *
  4. * Copyright (C) 2009 Antti Palosaari <crope@iki.fi>
  5. * Copyright (C) 2011 Antti Palosaari <crope@iki.fi>
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License along
  18. * with this program; if not, write to the Free Software Foundation, Inc.,
  19. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  20. */
  21. #ifndef RTL28XXU_H
  22. #define RTL28XXU_H
  23. #define DVB_USB_LOG_PREFIX "rtl28xxu"
  24. #include "dvb-usb.h"
  25. #define deb_info(args...) dprintk(dvb_usb_rtl28xxu_debug, 0x01, args)
  26. #define deb_rc(args...) dprintk(dvb_usb_rtl28xxu_debug, 0x02, args)
  27. #define deb_xfer(args...) dprintk(dvb_usb_rtl28xxu_debug, 0x04, args)
  28. #define deb_reg(args...) dprintk(dvb_usb_rtl28xxu_debug, 0x08, args)
  29. #define deb_i2c(args...) dprintk(dvb_usb_rtl28xxu_debug, 0x10, args)
  30. #define deb_fw(args...) dprintk(dvb_usb_rtl28xxu_debug, 0x20, args)
  31. #define deb_dump(r, t, v, i, b, l, func) { \
  32. int loop_; \
  33. func("%02x %02x %02x %02x %02x %02x %02x %02x", \
  34. t, r, v & 0xff, v >> 8, i & 0xff, i >> 8, l & 0xff, l >> 8); \
  35. if (t == (USB_TYPE_VENDOR | USB_DIR_OUT)) \
  36. func(" >>> "); \
  37. else \
  38. func(" <<< "); \
  39. for (loop_ = 0; loop_ < l; loop_++) \
  40. func("%02x ", b[loop_]); \
  41. func("\n");\
  42. }
  43. /*
  44. * USB commands
  45. * (usb_control_msg() index parameter)
  46. */
  47. #define DEMOD (0x00 << 8)
  48. #define USB (0x01 << 8)
  49. #define SYS (0x02 << 8)
  50. #define I2C (0x03 << 8)
  51. #define CMD_WR_FLAG 0x10
  52. #define CMD_DEMOD_RD (DEMOD)
  53. #define CMD_DEMOD_WR (DEMOD | CMD_WR_FLAG)
  54. #define CMD_USB_RD (USB)
  55. #define CMD_USB_WR (USB | CMD_WR_FLAG)
  56. #define CMD_SYS_RD (SYS)
  57. #define CMD_SYS_WR (SYS | CMD_WR_FLAG)
  58. #define CMD_I2C_RD (I2C)
  59. #define CMD_I2C_WR (I2C | CMD_WR_FLAG)
  60. struct rtl28xxu_priv {
  61. u8 chip_id;
  62. u8 tuner;
  63. };
  64. enum rtl28xxu_chip_id {
  65. CHIP_ID_NONE = 0,
  66. CHIP_ID_RTL2831U,
  67. CHIP_ID_RTL2832U,
  68. };
  69. enum rtl28xxu_tuner {
  70. TUNER_NONE = 0,
  71. TUNER_RTL2830_QT1010,
  72. TUNER_RTL2830_MT2060,
  73. TUNER_RTL2830_MXL5005S,
  74. };
  75. struct rtl28xxu_req {
  76. u16 value;
  77. u16 index;
  78. u16 size;
  79. u8 *data;
  80. };
  81. struct rtl28xxu_reg_val {
  82. u16 reg;
  83. u8 val;
  84. };
  85. /*
  86. * memory map
  87. *
  88. * 0x0000 DEMOD : demodulator
  89. * 0x2000 USB : SIE, USB endpoint, debug, DMA
  90. * 0x3000 SYS : system
  91. * 0xfc00 RC : remote controller (not RTL2831U)
  92. */
  93. /*
  94. * USB registers
  95. */
  96. /* SIE Control Registers */
  97. #define USB_SYSCTL 0x2000 /* USB system control */
  98. #define USB_SYSCTL_0 0x2000 /* USB system control */
  99. #define USB_SYSCTL_1 0x2001 /* USB system control */
  100. #define USB_SYSCTL_2 0x2002 /* USB system control */
  101. #define USB_SYSCTL_3 0x2003 /* USB system control */
  102. #define USB_IRQSTAT 0x2008 /* SIE interrupt status */
  103. #define USB_IRQEN 0x200C /* SIE interrupt enable */
  104. #define USB_CTRL 0x2010 /* USB control */
  105. #define USB_STAT 0x2014 /* USB status */
  106. #define USB_DEVADDR 0x2018 /* USB device address */
  107. #define USB_TEST 0x201C /* USB test mode */
  108. #define USB_FRAME_NUMBER 0x2020 /* frame number */
  109. #define USB_FIFO_ADDR 0x2028 /* address of SIE FIFO RAM */
  110. #define USB_FIFO_CMD 0x202A /* SIE FIFO RAM access command */
  111. #define USB_FIFO_DATA 0x2030 /* SIE FIFO RAM data */
  112. /* Endpoint Registers */
  113. #define EP0_SETUPA 0x20F8 /* EP 0 setup packet lower byte */
  114. #define EP0_SETUPB 0x20FC /* EP 0 setup packet higher byte */
  115. #define USB_EP0_CFG 0x2104 /* EP 0 configure */
  116. #define USB_EP0_CTL 0x2108 /* EP 0 control */
  117. #define USB_EP0_STAT 0x210C /* EP 0 status */
  118. #define USB_EP0_IRQSTAT 0x2110 /* EP 0 interrupt status */
  119. #define USB_EP0_IRQEN 0x2114 /* EP 0 interrupt enable */
  120. #define USB_EP0_MAXPKT 0x2118 /* EP 0 max packet size */
  121. #define USB_EP0_BC 0x2120 /* EP 0 FIFO byte counter */
  122. #define USB_EPA_CFG 0x2144 /* EP A configure */
  123. #define USB_EPA_CFG_0 0x2144 /* EP A configure */
  124. #define USB_EPA_CFG_1 0x2145 /* EP A configure */
  125. #define USB_EPA_CFG_2 0x2146 /* EP A configure */
  126. #define USB_EPA_CFG_3 0x2147 /* EP A configure */
  127. #define USB_EPA_CTL 0x2148 /* EP A control */
  128. #define USB_EPA_CTL_0 0x2148 /* EP A control */
  129. #define USB_EPA_CTL_1 0x2149 /* EP A control */
  130. #define USB_EPA_CTL_2 0x214A /* EP A control */
  131. #define USB_EPA_CTL_3 0x214B /* EP A control */
  132. #define USB_EPA_STAT 0x214C /* EP A status */
  133. #define USB_EPA_IRQSTAT 0x2150 /* EP A interrupt status */
  134. #define USB_EPA_IRQEN 0x2154 /* EP A interrupt enable */
  135. #define USB_EPA_MAXPKT 0x2158 /* EP A max packet size */
  136. #define USB_EPA_MAXPKT_0 0x2158 /* EP A max packet size */
  137. #define USB_EPA_MAXPKT_1 0x2159 /* EP A max packet size */
  138. #define USB_EPA_MAXPKT_2 0x215A /* EP A max packet size */
  139. #define USB_EPA_MAXPKT_3 0x215B /* EP A max packet size */
  140. #define USB_EPA_FIFO_CFG 0x2160 /* EP A FIFO configure */
  141. #define USB_EPA_FIFO_CFG_0 0x2160 /* EP A FIFO configure */
  142. #define USB_EPA_FIFO_CFG_1 0x2161 /* EP A FIFO configure */
  143. #define USB_EPA_FIFO_CFG_2 0x2162 /* EP A FIFO configure */
  144. #define USB_EPA_FIFO_CFG_3 0x2163 /* EP A FIFO configure */
  145. /* Debug Registers */
  146. #define USB_PHYTSTDIS 0x2F04 /* PHY test disable */
  147. #define USB_TOUT_VAL 0x2F08 /* USB time-out time */
  148. #define USB_VDRCTRL 0x2F10 /* UTMI vendor signal control */
  149. #define USB_VSTAIN 0x2F14 /* UTMI vendor signal status in */
  150. #define USB_VLOADM 0x2F18 /* UTMI load vendor signal status in */
  151. #define USB_VSTAOUT 0x2F1C /* UTMI vendor signal status out */
  152. #define USB_UTMI_TST 0x2F80 /* UTMI test */
  153. #define USB_UTMI_STATUS 0x2F84 /* UTMI status */
  154. #define USB_TSTCTL 0x2F88 /* test control */
  155. #define USB_TSTCTL2 0x2F8C /* test control 2 */
  156. #define USB_PID_FORCE 0x2F90 /* force PID */
  157. #define USB_PKTERR_CNT 0x2F94 /* packet error counter */
  158. #define USB_RXERR_CNT 0x2F98 /* RX error counter */
  159. #define USB_MEM_BIST 0x2F9C /* MEM BIST test */
  160. #define USB_SLBBIST 0x2FA0 /* self-loop-back BIST */
  161. #define USB_CNTTEST 0x2FA4 /* counter test */
  162. #define USB_PHYTST 0x2FC0 /* USB PHY test */
  163. #define USB_DBGIDX 0x2FF0 /* select individual block debug signal */
  164. #define USB_DBGMUX 0x2FF4 /* debug signal module mux */
  165. /*
  166. * SYS registers
  167. */
  168. /* demod control registers */
  169. #define SYS_SYS0 0x3000 /* include DEMOD_CTL, GPO, GPI, GPOE */
  170. #define SYS_DEMOD_CTL 0x3000 /* control register for DVB-T demodulator */
  171. /* GPIO registers */
  172. #define SYS_GPIO_OUT_VAL 0x3001 /* output value of GPIO */
  173. #define SYS_GPIO_IN_VAL 0x3002 /* input value of GPIO */
  174. #define SYS_GPIO_OUT_EN 0x3003 /* output enable of GPIO */
  175. #define SYS_SYS1 0x3004 /* include GPD, SYSINTE, SYSINTS, GP_CFG0 */
  176. #define SYS_GPIO_DIR 0x3004 /* direction control for GPIO */
  177. #define SYS_SYSINTE 0x3005 /* system interrupt enable */
  178. #define SYS_SYSINTS 0x3006 /* system interrupt status */
  179. #define SYS_GPIO_CFG0 0x3007 /* PAD configuration for GPIO0-GPIO3 */
  180. #define SYS_SYS2 0x3008 /* include GP_CFG1 and 3 reserved bytes */
  181. #define SYS_GPIO_CFG1 0x3008 /* PAD configuration for GPIO4 */
  182. /* IrDA registers */
  183. #define SYS_IRRC_PSR 0x3020 /* IR protocol selection */
  184. #define SYS_IRRC_PER 0x3024 /* IR protocol extension */
  185. #define SYS_IRRC_SF 0x3028 /* IR sampling frequency */
  186. #define SYS_IRRC_DPIR 0x302C /* IR data package interval */
  187. #define SYS_IRRC_CR 0x3030 /* IR control */
  188. #define SYS_IRRC_RP 0x3034 /* IR read port */
  189. #define SYS_IRRC_SR 0x3038 /* IR status */
  190. /* I2C master registers */
  191. #define SYS_I2CCR 0x3040 /* I2C clock */
  192. #define SYS_I2CMCR 0x3044 /* I2C master control */
  193. #define SYS_I2CMSTR 0x3048 /* I2C master SCL timing */
  194. #define SYS_I2CMSR 0x304C /* I2C master status */
  195. #define SYS_I2CMFR 0x3050 /* I2C master FIFO */
  196. #endif