rtl28xxu.h 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285
  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. #include <linux/platform_device.h>
  24. #include "dvb_usb.h"
  25. #include "rtl2830.h"
  26. #include "rtl2832.h"
  27. #include "rtl2832_sdr.h"
  28. #include "mn88472.h"
  29. #include "mn88473.h"
  30. #include "qt1010.h"
  31. #include "mt2060.h"
  32. #include "mxl5005s.h"
  33. #include "fc0012.h"
  34. #include "fc0013.h"
  35. #include "e4000.h"
  36. #include "fc2580.h"
  37. #include "tua9001.h"
  38. #include "r820t.h"
  39. /*
  40. * USB commands
  41. * (usb_control_msg() index parameter)
  42. */
  43. #define DEMOD 0x0000
  44. #define USB 0x0100
  45. #define SYS 0x0200
  46. #define I2C 0x0300
  47. #define I2C_DA 0x0600
  48. #define CMD_WR_FLAG 0x0010
  49. #define CMD_DEMOD_RD 0x0000
  50. #define CMD_DEMOD_WR 0x0010
  51. #define CMD_USB_RD 0x0100
  52. #define CMD_USB_WR 0x0110
  53. #define CMD_SYS_RD 0x0200
  54. #define CMD_IR_RD 0x0201
  55. #define CMD_IR_WR 0x0211
  56. #define CMD_SYS_WR 0x0210
  57. #define CMD_I2C_RD 0x0300
  58. #define CMD_I2C_WR 0x0310
  59. #define CMD_I2C_DA_RD 0x0600
  60. #define CMD_I2C_DA_WR 0x0610
  61. struct rtl28xxu_dev {
  62. u8 buf[28];
  63. u8 chip_id;
  64. u8 tuner;
  65. char *tuner_name;
  66. u8 page; /* integrated demod active register page */
  67. struct i2c_adapter *demod_i2c_adapter;
  68. bool rc_active;
  69. struct i2c_client *i2c_client_demod;
  70. struct i2c_client *i2c_client_tuner;
  71. struct i2c_client *i2c_client_slave_demod;
  72. struct platform_device *platform_device_sdr;
  73. #define SLAVE_DEMOD_NONE 0
  74. #define SLAVE_DEMOD_MN88472 1
  75. #define SLAVE_DEMOD_MN88473 2
  76. unsigned int slave_demod:2;
  77. union {
  78. struct rtl2830_platform_data rtl2830_platform_data;
  79. struct rtl2832_platform_data rtl2832_platform_data;
  80. };
  81. };
  82. enum rtl28xxu_chip_id {
  83. CHIP_ID_NONE,
  84. CHIP_ID_RTL2831U,
  85. CHIP_ID_RTL2832U,
  86. };
  87. /* XXX: Hack. This must be keep sync with rtl2832 demod driver. */
  88. enum rtl28xxu_tuner {
  89. TUNER_NONE,
  90. TUNER_RTL2830_QT1010 = 0x10,
  91. TUNER_RTL2830_MT2060,
  92. TUNER_RTL2830_MXL5005S,
  93. TUNER_RTL2832_MT2266 = 0x20,
  94. TUNER_RTL2832_FC2580,
  95. TUNER_RTL2832_MT2063,
  96. TUNER_RTL2832_MAX3543,
  97. TUNER_RTL2832_TUA9001,
  98. TUNER_RTL2832_MXL5007T,
  99. TUNER_RTL2832_FC0012,
  100. TUNER_RTL2832_E4000,
  101. TUNER_RTL2832_TDA18272,
  102. TUNER_RTL2832_FC0013,
  103. TUNER_RTL2832_R820T,
  104. TUNER_RTL2832_R828D,
  105. };
  106. struct rtl28xxu_req {
  107. u16 value;
  108. u16 index;
  109. u16 size;
  110. u8 *data;
  111. };
  112. struct rtl28xxu_reg_val {
  113. u16 reg;
  114. u8 val;
  115. };
  116. struct rtl28xxu_reg_val_mask {
  117. u16 reg;
  118. u8 val;
  119. u8 mask;
  120. };
  121. /*
  122. * memory map
  123. *
  124. * 0x0000 DEMOD : demodulator
  125. * 0x2000 USB : SIE, USB endpoint, debug, DMA
  126. * 0x3000 SYS : system
  127. * 0xfc00 RC : remote controller (not RTL2831U)
  128. */
  129. /*
  130. * USB registers
  131. */
  132. /* SIE Control Registers */
  133. #define USB_SYSCTL 0x2000 /* USB system control */
  134. #define USB_SYSCTL_0 0x2000 /* USB system control */
  135. #define USB_SYSCTL_1 0x2001 /* USB system control */
  136. #define USB_SYSCTL_2 0x2002 /* USB system control */
  137. #define USB_SYSCTL_3 0x2003 /* USB system control */
  138. #define USB_IRQSTAT 0x2008 /* SIE interrupt status */
  139. #define USB_IRQEN 0x200C /* SIE interrupt enable */
  140. #define USB_CTRL 0x2010 /* USB control */
  141. #define USB_STAT 0x2014 /* USB status */
  142. #define USB_DEVADDR 0x2018 /* USB device address */
  143. #define USB_TEST 0x201C /* USB test mode */
  144. #define USB_FRAME_NUMBER 0x2020 /* frame number */
  145. #define USB_FIFO_ADDR 0x2028 /* address of SIE FIFO RAM */
  146. #define USB_FIFO_CMD 0x202A /* SIE FIFO RAM access command */
  147. #define USB_FIFO_DATA 0x2030 /* SIE FIFO RAM data */
  148. /* Endpoint Registers */
  149. #define EP0_SETUPA 0x20F8 /* EP 0 setup packet lower byte */
  150. #define EP0_SETUPB 0x20FC /* EP 0 setup packet higher byte */
  151. #define USB_EP0_CFG 0x2104 /* EP 0 configure */
  152. #define USB_EP0_CTL 0x2108 /* EP 0 control */
  153. #define USB_EP0_STAT 0x210C /* EP 0 status */
  154. #define USB_EP0_IRQSTAT 0x2110 /* EP 0 interrupt status */
  155. #define USB_EP0_IRQEN 0x2114 /* EP 0 interrupt enable */
  156. #define USB_EP0_MAXPKT 0x2118 /* EP 0 max packet size */
  157. #define USB_EP0_BC 0x2120 /* EP 0 FIFO byte counter */
  158. #define USB_EPA_CFG 0x2144 /* EP A configure */
  159. #define USB_EPA_CFG_0 0x2144 /* EP A configure */
  160. #define USB_EPA_CFG_1 0x2145 /* EP A configure */
  161. #define USB_EPA_CFG_2 0x2146 /* EP A configure */
  162. #define USB_EPA_CFG_3 0x2147 /* EP A configure */
  163. #define USB_EPA_CTL 0x2148 /* EP A control */
  164. #define USB_EPA_CTL_0 0x2148 /* EP A control */
  165. #define USB_EPA_CTL_1 0x2149 /* EP A control */
  166. #define USB_EPA_CTL_2 0x214A /* EP A control */
  167. #define USB_EPA_CTL_3 0x214B /* EP A control */
  168. #define USB_EPA_STAT 0x214C /* EP A status */
  169. #define USB_EPA_IRQSTAT 0x2150 /* EP A interrupt status */
  170. #define USB_EPA_IRQEN 0x2154 /* EP A interrupt enable */
  171. #define USB_EPA_MAXPKT 0x2158 /* EP A max packet size */
  172. #define USB_EPA_MAXPKT_0 0x2158 /* EP A max packet size */
  173. #define USB_EPA_MAXPKT_1 0x2159 /* EP A max packet size */
  174. #define USB_EPA_MAXPKT_2 0x215A /* EP A max packet size */
  175. #define USB_EPA_MAXPKT_3 0x215B /* EP A max packet size */
  176. #define USB_EPA_FIFO_CFG 0x2160 /* EP A FIFO configure */
  177. #define USB_EPA_FIFO_CFG_0 0x2160 /* EP A FIFO configure */
  178. #define USB_EPA_FIFO_CFG_1 0x2161 /* EP A FIFO configure */
  179. #define USB_EPA_FIFO_CFG_2 0x2162 /* EP A FIFO configure */
  180. #define USB_EPA_FIFO_CFG_3 0x2163 /* EP A FIFO configure */
  181. /* Debug Registers */
  182. #define USB_PHYTSTDIS 0x2F04 /* PHY test disable */
  183. #define USB_TOUT_VAL 0x2F08 /* USB time-out time */
  184. #define USB_VDRCTRL 0x2F10 /* UTMI vendor signal control */
  185. #define USB_VSTAIN 0x2F14 /* UTMI vendor signal status in */
  186. #define USB_VLOADM 0x2F18 /* UTMI load vendor signal status in */
  187. #define USB_VSTAOUT 0x2F1C /* UTMI vendor signal status out */
  188. #define USB_UTMI_TST 0x2F80 /* UTMI test */
  189. #define USB_UTMI_STATUS 0x2F84 /* UTMI status */
  190. #define USB_TSTCTL 0x2F88 /* test control */
  191. #define USB_TSTCTL2 0x2F8C /* test control 2 */
  192. #define USB_PID_FORCE 0x2F90 /* force PID */
  193. #define USB_PKTERR_CNT 0x2F94 /* packet error counter */
  194. #define USB_RXERR_CNT 0x2F98 /* RX error counter */
  195. #define USB_MEM_BIST 0x2F9C /* MEM BIST test */
  196. #define USB_SLBBIST 0x2FA0 /* self-loop-back BIST */
  197. #define USB_CNTTEST 0x2FA4 /* counter test */
  198. #define USB_PHYTST 0x2FC0 /* USB PHY test */
  199. #define USB_DBGIDX 0x2FF0 /* select individual block debug signal */
  200. #define USB_DBGMUX 0x2FF4 /* debug signal module mux */
  201. /*
  202. * SYS registers
  203. */
  204. /* demod control registers */
  205. #define SYS_SYS0 0x3000 /* include DEMOD_CTL, GPO, GPI, GPOE */
  206. #define SYS_DEMOD_CTL 0x3000 /* control register for DVB-T demodulator */
  207. /* GPIO registers */
  208. #define SYS_GPIO_OUT_VAL 0x3001 /* output value of GPIO */
  209. #define SYS_GPIO_IN_VAL 0x3002 /* input value of GPIO */
  210. #define SYS_GPIO_OUT_EN 0x3003 /* output enable of GPIO */
  211. #define SYS_SYS1 0x3004 /* include GPD, SYSINTE, SYSINTS, GP_CFG0 */
  212. #define SYS_GPIO_DIR 0x3004 /* direction control for GPIO */
  213. #define SYS_SYSINTE 0x3005 /* system interrupt enable */
  214. #define SYS_SYSINTS 0x3006 /* system interrupt status */
  215. #define SYS_GPIO_CFG0 0x3007 /* PAD configuration for GPIO0-GPIO3 */
  216. #define SYS_SYS2 0x3008 /* include GP_CFG1 and 3 reserved bytes */
  217. #define SYS_GPIO_CFG1 0x3008 /* PAD configuration for GPIO4 */
  218. #define SYS_DEMOD_CTL1 0x300B
  219. /* IrDA registers */
  220. #define SYS_IRRC_PSR 0x3020 /* IR protocol selection */
  221. #define SYS_IRRC_PER 0x3024 /* IR protocol extension */
  222. #define SYS_IRRC_SF 0x3028 /* IR sampling frequency */
  223. #define SYS_IRRC_DPIR 0x302C /* IR data package interval */
  224. #define SYS_IRRC_CR 0x3030 /* IR control */
  225. #define SYS_IRRC_RP 0x3034 /* IR read port */
  226. #define SYS_IRRC_SR 0x3038 /* IR status */
  227. /* I2C master registers */
  228. #define SYS_I2CCR 0x3040 /* I2C clock */
  229. #define SYS_I2CMCR 0x3044 /* I2C master control */
  230. #define SYS_I2CMSTR 0x3048 /* I2C master SCL timing */
  231. #define SYS_I2CMSR 0x304C /* I2C master status */
  232. #define SYS_I2CMFR 0x3050 /* I2C master FIFO */
  233. /*
  234. * IR registers
  235. */
  236. #define IR_RX_BUF 0xFC00
  237. #define IR_RX_IE 0xFD00
  238. #define IR_RX_IF 0xFD01
  239. #define IR_RX_CTRL 0xFD02
  240. #define IR_RX_CFG 0xFD03
  241. #define IR_MAX_DURATION0 0xFD04
  242. #define IR_MAX_DURATION1 0xFD05
  243. #define IR_IDLE_LEN0 0xFD06
  244. #define IR_IDLE_LEN1 0xFD07
  245. #define IR_GLITCH_LEN 0xFD08
  246. #define IR_RX_BUF_CTRL 0xFD09
  247. #define IR_RX_BUF_DATA 0xFD0A
  248. #define IR_RX_BC 0xFD0B
  249. #define IR_RX_CLK 0xFD0C
  250. #define IR_RX_C_COUNT_L 0xFD0D
  251. #define IR_RX_C_COUNT_H 0xFD0E
  252. #define IR_SUSPEND_CTRL 0xFD10
  253. #define IR_ERR_TOL_CTRL 0xFD11
  254. #define IR_UNIT_LEN 0xFD12
  255. #define IR_ERR_TOL_LEN 0xFD13
  256. #define IR_MAX_H_TOL_LEN 0xFD14
  257. #define IR_MAX_L_TOL_LEN 0xFD15
  258. #define IR_MASK_CTRL 0xFD16
  259. #define IR_MASK_DATA 0xFD17
  260. #define IR_RES_MASK_ADDR 0xFD18
  261. #define IR_RES_MASK_T_LEN 0xFD19
  262. #endif