dibusb-mb.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469
  1. /* DVB USB compliant linux driver for mobile DVB-T USB devices based on
  2. * reference designs made by DiBcom (http://www.dibcom.fr/) (DiB3000M-B)
  3. *
  4. * Copyright (C) 2004-5 Patrick Boettcher (patrick.boettcher@desy.de)
  5. *
  6. * based on GPL code from DiBcom, which has
  7. * Copyright (C) 2004 Amaury Demol for DiBcom (ademol@dibcom.fr)
  8. *
  9. * This program is free software; you can redistribute it and/or modify it
  10. * under the terms of the GNU General Public License as published by the Free
  11. * Software Foundation, version 2.
  12. *
  13. * see Documentation/dvb/README.dvb-usb for more information
  14. */
  15. #include "dibusb.h"
  16. DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr);
  17. static int dib3000mb_i2c_gate_ctrl(struct dvb_frontend* fe, int enable)
  18. {
  19. struct dvb_usb_adapter *adap = fe->dvb->priv;
  20. struct dibusb_state *st = adap->priv;
  21. return st->ops.tuner_pass_ctrl(fe, enable, st->tuner_addr);
  22. }
  23. static int dibusb_dib3000mb_frontend_attach(struct dvb_usb_adapter *adap)
  24. {
  25. struct dib3000_config demod_cfg;
  26. struct dibusb_state *st = adap->priv;
  27. demod_cfg.demod_address = 0x8;
  28. if ((adap->fe = dvb_attach(dib3000mb_attach, &demod_cfg,
  29. &adap->dev->i2c_adap, &st->ops)) == NULL)
  30. return -ENODEV;
  31. adap->fe->ops.i2c_gate_ctrl = dib3000mb_i2c_gate_ctrl;
  32. return 0;
  33. }
  34. static int dibusb_thomson_tuner_attach(struct dvb_usb_adapter *adap)
  35. {
  36. struct dibusb_state *st = adap->priv;
  37. st->tuner_addr = 0x61;
  38. dvb_attach(dvb_pll_attach, adap->fe, 0x61, &adap->dev->i2c_adap,
  39. DVB_PLL_TUA6010XS);
  40. return 0;
  41. }
  42. static int dibusb_panasonic_tuner_attach(struct dvb_usb_adapter *adap)
  43. {
  44. struct dibusb_state *st = adap->priv;
  45. st->tuner_addr = 0x60;
  46. dvb_attach(dvb_pll_attach, adap->fe, 0x60, &adap->dev->i2c_adap,
  47. DVB_PLL_TDA665X);
  48. return 0;
  49. }
  50. /* Some of the Artec 1.1 device aren't equipped with the default tuner
  51. * (Thomson Cable), but with a Panasonic ENV77H11D5. This function figures
  52. * this out. */
  53. static int dibusb_tuner_probe_and_attach(struct dvb_usb_adapter *adap)
  54. {
  55. u8 b[2] = { 0,0 }, b2[1];
  56. int ret = 0;
  57. struct i2c_msg msg[2] = {
  58. { .flags = 0, .buf = b, .len = 2 },
  59. { .flags = I2C_M_RD, .buf = b2, .len = 1 },
  60. };
  61. struct dibusb_state *st = adap->priv;
  62. /* the Panasonic sits on I2C addrass 0x60, the Thomson on 0x61 */
  63. msg[0].addr = msg[1].addr = st->tuner_addr = 0x60;
  64. if (adap->fe->ops.i2c_gate_ctrl)
  65. adap->fe->ops.i2c_gate_ctrl(adap->fe,1);
  66. if (i2c_transfer(&adap->dev->i2c_adap, msg, 2) != 2) {
  67. err("tuner i2c write failed.");
  68. ret = -EREMOTEIO;
  69. }
  70. if (adap->fe->ops.i2c_gate_ctrl)
  71. adap->fe->ops.i2c_gate_ctrl(adap->fe,0);
  72. if (b2[0] == 0xfe) {
  73. info("This device has the Thomson Cable onboard. Which is default.");
  74. ret = dibusb_thomson_tuner_attach(adap);
  75. } else {
  76. info("This device has the Panasonic ENV77H11D5 onboard.");
  77. ret = dibusb_panasonic_tuner_attach(adap);
  78. }
  79. return ret;
  80. }
  81. /* USB Driver stuff */
  82. static struct dvb_usb_device_properties dibusb1_1_properties;
  83. static struct dvb_usb_device_properties dibusb1_1_an2235_properties;
  84. static struct dvb_usb_device_properties dibusb2_0b_properties;
  85. static struct dvb_usb_device_properties artec_t1_usb2_properties;
  86. static int dibusb_probe(struct usb_interface *intf,
  87. const struct usb_device_id *id)
  88. {
  89. if (0 == dvb_usb_device_init(intf, &dibusb1_1_properties,
  90. THIS_MODULE, NULL, adapter_nr) ||
  91. 0 == dvb_usb_device_init(intf, &dibusb1_1_an2235_properties,
  92. THIS_MODULE, NULL, adapter_nr) ||
  93. 0 == dvb_usb_device_init(intf, &dibusb2_0b_properties,
  94. THIS_MODULE, NULL, adapter_nr) ||
  95. 0 == dvb_usb_device_init(intf, &artec_t1_usb2_properties,
  96. THIS_MODULE, NULL, adapter_nr))
  97. return 0;
  98. return -EINVAL;
  99. }
  100. /* do not change the order of the ID table */
  101. static struct usb_device_id dibusb_dib3000mb_table [] = {
  102. /* 00 */ { USB_DEVICE(USB_VID_WIDEVIEW, USB_PID_AVERMEDIA_DVBT_USB_COLD) },
  103. /* 01 */ { USB_DEVICE(USB_VID_WIDEVIEW, USB_PID_AVERMEDIA_DVBT_USB_WARM) },
  104. /* 02 */ { USB_DEVICE(USB_VID_COMPRO, USB_PID_COMPRO_DVBU2000_COLD) },
  105. /* 03 */ { USB_DEVICE(USB_VID_COMPRO, USB_PID_COMPRO_DVBU2000_WARM) },
  106. /* 04 */ { USB_DEVICE(USB_VID_COMPRO_UNK, USB_PID_COMPRO_DVBU2000_UNK_COLD) },
  107. /* 05 */ { USB_DEVICE(USB_VID_DIBCOM, USB_PID_DIBCOM_MOD3000_COLD) },
  108. /* 06 */ { USB_DEVICE(USB_VID_DIBCOM, USB_PID_DIBCOM_MOD3000_WARM) },
  109. /* 07 */ { USB_DEVICE(USB_VID_EMPIA, USB_PID_KWORLD_VSTREAM_COLD) },
  110. /* 08 */ { USB_DEVICE(USB_VID_EMPIA, USB_PID_KWORLD_VSTREAM_WARM) },
  111. /* 09 */ { USB_DEVICE(USB_VID_GRANDTEC, USB_PID_GRANDTEC_DVBT_USB_COLD) },
  112. /* 10 */ { USB_DEVICE(USB_VID_GRANDTEC, USB_PID_GRANDTEC_DVBT_USB_WARM) },
  113. /* 11 */ { USB_DEVICE(USB_VID_GRANDTEC, USB_PID_DIBCOM_MOD3000_COLD) },
  114. /* 12 */ { USB_DEVICE(USB_VID_GRANDTEC, USB_PID_DIBCOM_MOD3000_WARM) },
  115. /* 13 */ { USB_DEVICE(USB_VID_HYPER_PALTEK, USB_PID_UNK_HYPER_PALTEK_COLD) },
  116. /* 14 */ { USB_DEVICE(USB_VID_HYPER_PALTEK, USB_PID_UNK_HYPER_PALTEK_WARM) },
  117. /* 15 */ { USB_DEVICE(USB_VID_VISIONPLUS, USB_PID_TWINHAN_VP7041_COLD) },
  118. /* 16 */ { USB_DEVICE(USB_VID_VISIONPLUS, USB_PID_TWINHAN_VP7041_WARM) },
  119. /* 17 */ { USB_DEVICE(USB_VID_TWINHAN, USB_PID_TWINHAN_VP7041_COLD) },
  120. /* 18 */ { USB_DEVICE(USB_VID_TWINHAN, USB_PID_TWINHAN_VP7041_WARM) },
  121. /* 19 */ { USB_DEVICE(USB_VID_ULTIMA_ELECTRONIC, USB_PID_ULTIMA_TVBOX_COLD) },
  122. /* 20 */ { USB_DEVICE(USB_VID_ULTIMA_ELECTRONIC, USB_PID_ULTIMA_TVBOX_WARM) },
  123. /* 21 */ { USB_DEVICE(USB_VID_ULTIMA_ELECTRONIC, USB_PID_ULTIMA_TVBOX_AN2235_COLD) },
  124. /* 22 */ { USB_DEVICE(USB_VID_ULTIMA_ELECTRONIC, USB_PID_ULTIMA_TVBOX_AN2235_WARM) },
  125. /* 23 */ { USB_DEVICE(USB_VID_ADSTECH, USB_PID_ADSTECH_USB2_COLD) },
  126. /* device ID with default DIBUSB2_0-firmware and with the hacked firmware */
  127. /* 24 */ { USB_DEVICE(USB_VID_ADSTECH, USB_PID_ADSTECH_USB2_WARM) },
  128. /* 25 */ { USB_DEVICE(USB_VID_KYE, USB_PID_KYE_DVB_T_COLD) },
  129. /* 26 */ { USB_DEVICE(USB_VID_KYE, USB_PID_KYE_DVB_T_WARM) },
  130. /* 27 */ { USB_DEVICE(USB_VID_KWORLD, USB_PID_KWORLD_VSTREAM_COLD) },
  131. /* 28 */ { USB_DEVICE(USB_VID_ULTIMA_ELECTRONIC, USB_PID_ULTIMA_TVBOX_USB2_COLD) },
  132. /* 29 */ { USB_DEVICE(USB_VID_ULTIMA_ELECTRONIC, USB_PID_ULTIMA_TVBOX_USB2_WARM) },
  133. /*
  134. * XXX: As Artec just 'forgot' to program the EEPROM on some Artec T1 devices
  135. * we don't catch these faulty IDs (namely 'Cypress FX1 USB controller') that
  136. * have been left on the device. If you don't have such a device but an Artec
  137. * device that's supposed to work with this driver but is not detected by it,
  138. * free to enable CONFIG_DVB_USB_DIBUSB_MB_FAULTY via your kernel config.
  139. */
  140. #ifdef CONFIG_DVB_USB_DIBUSB_MB_FAULTY
  141. /* 30 */ { USB_DEVICE(USB_VID_ANCHOR, USB_PID_ULTIMA_TVBOX_ANCHOR_COLD) },
  142. #endif
  143. { } /* Terminating entry */
  144. };
  145. MODULE_DEVICE_TABLE (usb, dibusb_dib3000mb_table);
  146. static struct dvb_usb_device_properties dibusb1_1_properties = {
  147. .caps = DVB_USB_IS_AN_I2C_ADAPTER,
  148. .usb_ctrl = CYPRESS_AN2135,
  149. .firmware = "dvb-usb-dibusb-5.0.0.11.fw",
  150. .num_adapters = 1,
  151. .adapter = {
  152. {
  153. .caps = DVB_USB_ADAP_HAS_PID_FILTER | DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,
  154. .pid_filter_count = 16,
  155. .streaming_ctrl = dibusb_streaming_ctrl,
  156. .pid_filter = dibusb_pid_filter,
  157. .pid_filter_ctrl = dibusb_pid_filter_ctrl,
  158. .frontend_attach = dibusb_dib3000mb_frontend_attach,
  159. .tuner_attach = dibusb_tuner_probe_and_attach,
  160. /* parameter for the MPEG2-data transfer */
  161. .stream = {
  162. .type = USB_BULK,
  163. .count = 7,
  164. .endpoint = 0x02,
  165. .u = {
  166. .bulk = {
  167. .buffersize = 4096,
  168. }
  169. }
  170. },
  171. .size_of_priv = sizeof(struct dibusb_state),
  172. }
  173. },
  174. .power_ctrl = dibusb_power_ctrl,
  175. .rc_interval = DEFAULT_RC_INTERVAL,
  176. .rc_key_map = dibusb_rc_keys,
  177. .rc_key_map_size = 111, /* wow, that is ugly ... I want to load it to the driver dynamically */
  178. .rc_query = dibusb_rc_query,
  179. .i2c_algo = &dibusb_i2c_algo,
  180. .generic_bulk_ctrl_endpoint = 0x01,
  181. .num_device_descs = 9,
  182. .devices = {
  183. { "AVerMedia AverTV DVBT USB1.1",
  184. { &dibusb_dib3000mb_table[0], NULL },
  185. { &dibusb_dib3000mb_table[1], NULL },
  186. },
  187. { "Compro Videomate DVB-U2000 - DVB-T USB1.1 (please confirm to linux-dvb)",
  188. { &dibusb_dib3000mb_table[2], &dibusb_dib3000mb_table[4], NULL},
  189. { &dibusb_dib3000mb_table[3], NULL },
  190. },
  191. { "DiBcom USB1.1 DVB-T reference design (MOD3000)",
  192. { &dibusb_dib3000mb_table[5], NULL },
  193. { &dibusb_dib3000mb_table[6], NULL },
  194. },
  195. { "KWorld V-Stream XPERT DTV - DVB-T USB1.1",
  196. { &dibusb_dib3000mb_table[7], NULL },
  197. { &dibusb_dib3000mb_table[8], NULL },
  198. },
  199. { "Grandtec USB1.1 DVB-T",
  200. { &dibusb_dib3000mb_table[9], &dibusb_dib3000mb_table[11], NULL },
  201. { &dibusb_dib3000mb_table[10], &dibusb_dib3000mb_table[12], NULL },
  202. },
  203. { "Unknown USB1.1 DVB-T device ???? please report the name to the author",
  204. { &dibusb_dib3000mb_table[13], NULL },
  205. { &dibusb_dib3000mb_table[14], NULL },
  206. },
  207. { "TwinhanDTV USB-Ter USB1.1 / Magic Box I / HAMA USB1.1 DVB-T device",
  208. { &dibusb_dib3000mb_table[15], &dibusb_dib3000mb_table[17], NULL},
  209. { &dibusb_dib3000mb_table[16], &dibusb_dib3000mb_table[18], NULL},
  210. },
  211. { "Artec T1 USB1.1 TVBOX with AN2135",
  212. { &dibusb_dib3000mb_table[19], NULL },
  213. { &dibusb_dib3000mb_table[20], NULL },
  214. },
  215. { "VideoWalker DVB-T USB",
  216. { &dibusb_dib3000mb_table[25], NULL },
  217. { &dibusb_dib3000mb_table[26], NULL },
  218. },
  219. }
  220. };
  221. static struct dvb_usb_device_properties dibusb1_1_an2235_properties = {
  222. .caps = DVB_USB_IS_AN_I2C_ADAPTER,
  223. .usb_ctrl = CYPRESS_AN2235,
  224. .firmware = "dvb-usb-dibusb-an2235-01.fw",
  225. .num_adapters = 1,
  226. .adapter = {
  227. {
  228. .caps = DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF | DVB_USB_ADAP_HAS_PID_FILTER,
  229. .pid_filter_count = 16,
  230. .streaming_ctrl = dibusb_streaming_ctrl,
  231. .pid_filter = dibusb_pid_filter,
  232. .pid_filter_ctrl = dibusb_pid_filter_ctrl,
  233. .frontend_attach = dibusb_dib3000mb_frontend_attach,
  234. .tuner_attach = dibusb_tuner_probe_and_attach,
  235. /* parameter for the MPEG2-data transfer */
  236. .stream = {
  237. .type = USB_BULK,
  238. .count = 7,
  239. .endpoint = 0x02,
  240. .u = {
  241. .bulk = {
  242. .buffersize = 4096,
  243. }
  244. }
  245. },
  246. .size_of_priv = sizeof(struct dibusb_state),
  247. },
  248. },
  249. .power_ctrl = dibusb_power_ctrl,
  250. .rc_interval = DEFAULT_RC_INTERVAL,
  251. .rc_key_map = dibusb_rc_keys,
  252. .rc_key_map_size = 111, /* wow, that is ugly ... I want to load it to the driver dynamically */
  253. .rc_query = dibusb_rc_query,
  254. .i2c_algo = &dibusb_i2c_algo,
  255. .generic_bulk_ctrl_endpoint = 0x01,
  256. #ifdef CONFIG_DVB_USB_DIBUSB_MB_FAULTY
  257. .num_device_descs = 2,
  258. #else
  259. .num_device_descs = 1,
  260. #endif
  261. .devices = {
  262. { "Artec T1 USB1.1 TVBOX with AN2235",
  263. { &dibusb_dib3000mb_table[21], NULL },
  264. { &dibusb_dib3000mb_table[22], NULL },
  265. },
  266. #ifdef CONFIG_DVB_USB_DIBUSB_MB_FAULTY
  267. { "Artec T1 USB1.1 TVBOX with AN2235 (faulty USB IDs)",
  268. { &dibusb_dib3000mb_table[30], NULL },
  269. { NULL },
  270. },
  271. { NULL },
  272. #endif
  273. }
  274. };
  275. static struct dvb_usb_device_properties dibusb2_0b_properties = {
  276. .caps = DVB_USB_IS_AN_I2C_ADAPTER,
  277. .usb_ctrl = CYPRESS_FX2,
  278. .firmware = "dvb-usb-adstech-usb2-02.fw",
  279. .num_adapters = 1,
  280. .adapter = {
  281. {
  282. .caps = DVB_USB_ADAP_HAS_PID_FILTER | DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,
  283. .pid_filter_count = 16,
  284. .streaming_ctrl = dibusb2_0_streaming_ctrl,
  285. .pid_filter = dibusb_pid_filter,
  286. .pid_filter_ctrl = dibusb_pid_filter_ctrl,
  287. .frontend_attach = dibusb_dib3000mb_frontend_attach,
  288. .tuner_attach = dibusb_thomson_tuner_attach,
  289. /* parameter for the MPEG2-data transfer */
  290. .stream = {
  291. .type = USB_BULK,
  292. .count = 7,
  293. .endpoint = 0x06,
  294. .u = {
  295. .bulk = {
  296. .buffersize = 4096,
  297. }
  298. }
  299. },
  300. .size_of_priv = sizeof(struct dibusb_state),
  301. }
  302. },
  303. .power_ctrl = dibusb2_0_power_ctrl,
  304. .rc_interval = DEFAULT_RC_INTERVAL,
  305. .rc_key_map = dibusb_rc_keys,
  306. .rc_key_map_size = 111, /* wow, that is ugly ... I want to load it to the driver dynamically */
  307. .rc_query = dibusb_rc_query,
  308. .i2c_algo = &dibusb_i2c_algo,
  309. .generic_bulk_ctrl_endpoint = 0x01,
  310. .num_device_descs = 2,
  311. .devices = {
  312. { "KWorld/ADSTech Instant DVB-T USB2.0",
  313. { &dibusb_dib3000mb_table[23], NULL },
  314. { &dibusb_dib3000mb_table[24], NULL },
  315. },
  316. { "KWorld Xpert DVB-T USB2.0",
  317. { &dibusb_dib3000mb_table[27], NULL },
  318. { NULL }
  319. },
  320. { NULL },
  321. }
  322. };
  323. static struct dvb_usb_device_properties artec_t1_usb2_properties = {
  324. .caps = DVB_USB_IS_AN_I2C_ADAPTER,
  325. .usb_ctrl = CYPRESS_FX2,
  326. .firmware = "dvb-usb-dibusb-6.0.0.8.fw",
  327. .num_adapters = 1,
  328. .adapter = {
  329. {
  330. .caps = DVB_USB_ADAP_HAS_PID_FILTER | DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,
  331. .pid_filter_count = 16,
  332. .streaming_ctrl = dibusb2_0_streaming_ctrl,
  333. .pid_filter = dibusb_pid_filter,
  334. .pid_filter_ctrl = dibusb_pid_filter_ctrl,
  335. .frontend_attach = dibusb_dib3000mb_frontend_attach,
  336. .tuner_attach = dibusb_tuner_probe_and_attach,
  337. /* parameter for the MPEG2-data transfer */
  338. .stream = {
  339. .type = USB_BULK,
  340. .count = 7,
  341. .endpoint = 0x06,
  342. .u = {
  343. .bulk = {
  344. .buffersize = 4096,
  345. }
  346. }
  347. },
  348. .size_of_priv = sizeof(struct dibusb_state),
  349. }
  350. },
  351. .power_ctrl = dibusb2_0_power_ctrl,
  352. .rc_interval = DEFAULT_RC_INTERVAL,
  353. .rc_key_map = dibusb_rc_keys,
  354. .rc_key_map_size = 111, /* wow, that is ugly ... I want to load it to the driver dynamically */
  355. .rc_query = dibusb_rc_query,
  356. .i2c_algo = &dibusb_i2c_algo,
  357. .generic_bulk_ctrl_endpoint = 0x01,
  358. .num_device_descs = 1,
  359. .devices = {
  360. { "Artec T1 USB2.0",
  361. { &dibusb_dib3000mb_table[28], NULL },
  362. { &dibusb_dib3000mb_table[29], NULL },
  363. },
  364. { NULL },
  365. }
  366. };
  367. static struct usb_driver dibusb_driver = {
  368. .name = "dvb_usb_dibusb_mb",
  369. .probe = dibusb_probe,
  370. .disconnect = dvb_usb_device_exit,
  371. .id_table = dibusb_dib3000mb_table,
  372. };
  373. /* module stuff */
  374. static int __init dibusb_module_init(void)
  375. {
  376. int result;
  377. if ((result = usb_register(&dibusb_driver))) {
  378. err("usb_register failed. Error number %d",result);
  379. return result;
  380. }
  381. return 0;
  382. }
  383. static void __exit dibusb_module_exit(void)
  384. {
  385. /* deregister this driver from the USB subsystem */
  386. usb_deregister(&dibusb_driver);
  387. }
  388. module_init (dibusb_module_init);
  389. module_exit (dibusb_module_exit);
  390. MODULE_AUTHOR("Patrick Boettcher <patrick.boettcher@desy.de>");
  391. MODULE_DESCRIPTION("Driver for DiBcom USB DVB-T devices (DiB3000M-B based)");
  392. MODULE_VERSION("1.0");
  393. MODULE_LICENSE("GPL");