digitv.c 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347
  1. /* DVB USB compliant linux driver for Nebula Electronics uDigiTV DVB-T USB2.0
  2. * receiver
  3. *
  4. * Copyright (C) 2005 Patrick Boettcher (patrick.boettcher@desy.de)
  5. *
  6. * partly based on the SDK published by Nebula Electronics
  7. *
  8. * This program is free software; you can redistribute it and/or modify it
  9. * under the terms of the GNU General Public License as published by the Free
  10. * Software Foundation, version 2.
  11. *
  12. * see Documentation/dvb/README.dvb-usb for more information
  13. */
  14. #include "digitv.h"
  15. #include "mt352.h"
  16. #include "nxt6000.h"
  17. /* debug */
  18. int dvb_usb_digitv_debug;
  19. module_param_named(debug,dvb_usb_digitv_debug, int, 0644);
  20. MODULE_PARM_DESC(debug, "set debugging level (1=rc (or-able))." DVB_USB_DEBUG_STATUS);
  21. static int digitv_ctrl_msg(struct dvb_usb_device *d,
  22. u8 cmd, u8 vv, u8 *wbuf, int wlen, u8 *rbuf, int rlen)
  23. {
  24. int wo = (rbuf == NULL || rlen == 0); /* write-only */
  25. u8 sndbuf[7],rcvbuf[7];
  26. memset(sndbuf,0,7); memset(rcvbuf,0,7);
  27. sndbuf[0] = cmd;
  28. sndbuf[1] = vv;
  29. sndbuf[2] = wo ? wlen : rlen;
  30. if (wo) {
  31. memcpy(&sndbuf[3],wbuf,wlen);
  32. dvb_usb_generic_write(d,sndbuf,7);
  33. } else {
  34. dvb_usb_generic_rw(d,sndbuf,7,rcvbuf,7,10);
  35. memcpy(rbuf,&rcvbuf[3],rlen);
  36. }
  37. return 0;
  38. }
  39. /* I2C */
  40. static int digitv_i2c_xfer(struct i2c_adapter *adap,struct i2c_msg msg[],int num)
  41. {
  42. struct dvb_usb_device *d = i2c_get_adapdata(adap);
  43. int i;
  44. if (mutex_lock_interruptible(&d->i2c_mutex) < 0)
  45. return -EAGAIN;
  46. if (num > 2)
  47. warn("more than 2 i2c messages at a time is not handled yet. TODO.");
  48. for (i = 0; i < num; i++) {
  49. /* write/read request */
  50. if (i+1 < num && (msg[i+1].flags & I2C_M_RD)) {
  51. if (digitv_ctrl_msg(d, USB_READ_COFDM, msg[i].buf[0], NULL, 0,
  52. msg[i+1].buf,msg[i+1].len) < 0)
  53. break;
  54. i++;
  55. } else
  56. if (digitv_ctrl_msg(d,USB_WRITE_COFDM, msg[i].buf[0],
  57. &msg[i].buf[1],msg[i].len-1,NULL,0) < 0)
  58. break;
  59. }
  60. mutex_unlock(&d->i2c_mutex);
  61. return i;
  62. }
  63. static u32 digitv_i2c_func(struct i2c_adapter *adapter)
  64. {
  65. return I2C_FUNC_I2C;
  66. }
  67. static struct i2c_algorithm digitv_i2c_algo = {
  68. .master_xfer = digitv_i2c_xfer,
  69. .functionality = digitv_i2c_func,
  70. };
  71. /* Callbacks for DVB USB */
  72. static int digitv_identify_state (struct usb_device *udev, struct
  73. dvb_usb_device_properties *props, struct dvb_usb_device_description **desc,
  74. int *cold)
  75. {
  76. *cold = udev->descriptor.iManufacturer == 0 && udev->descriptor.iProduct == 0;
  77. return 0;
  78. }
  79. static int digitv_mt352_demod_init(struct dvb_frontend *fe)
  80. {
  81. static u8 reset_buf[] = { 0x89, 0x38, 0x8a, 0x2d, 0x50, 0x80 };
  82. static u8 init_buf[] = { 0x68, 0xa0, 0x8e, 0x40, 0x53, 0x50,
  83. 0x67, 0x20, 0x7d, 0x01, 0x7c, 0x00, 0x7a, 0x00,
  84. 0x79, 0x20, 0x57, 0x05, 0x56, 0x31, 0x88, 0x0f,
  85. 0x75, 0x32 };
  86. int i;
  87. for (i = 0; i < ARRAY_SIZE(reset_buf); i += 2)
  88. mt352_write(fe, &reset_buf[i], 2);
  89. msleep(1);
  90. for (i = 0; i < ARRAY_SIZE(init_buf); i += 2)
  91. mt352_write(fe, &init_buf[i], 2);
  92. return 0;
  93. }
  94. static struct mt352_config digitv_mt352_config = {
  95. .demod_init = digitv_mt352_demod_init,
  96. };
  97. static int digitv_nxt6000_tuner_set_params(struct dvb_frontend *fe, struct dvb_frontend_parameters *fep)
  98. {
  99. struct dvb_usb_adapter *adap = fe->dvb->priv;
  100. u8 b[5];
  101. dvb_usb_tuner_calc_regs(fe,fep,b, 5);
  102. if (fe->ops.i2c_gate_ctrl)
  103. fe->ops.i2c_gate_ctrl(fe, 1);
  104. return digitv_ctrl_msg(adap->dev, USB_WRITE_TUNER, 0, &b[1], 4, NULL, 0);
  105. }
  106. static struct nxt6000_config digitv_nxt6000_config = {
  107. .clock_inversion = 1,
  108. };
  109. static int digitv_frontend_attach(struct dvb_usb_adapter *adap)
  110. {
  111. if ((adap->fe = dvb_attach(mt352_attach, &digitv_mt352_config, &adap->dev->i2c_adap)) != NULL) {
  112. adap->fe->ops.tuner_ops.calc_regs = dvb_usb_tuner_calc_regs;
  113. return 0;
  114. }
  115. if ((adap->fe = dvb_attach(nxt6000_attach, &digitv_nxt6000_config, &adap->dev->i2c_adap)) != NULL) {
  116. adap->fe->ops.tuner_ops.set_params = digitv_nxt6000_tuner_set_params;
  117. return 0;
  118. }
  119. return -EIO;
  120. }
  121. static int digitv_tuner_attach(struct dvb_usb_adapter *adap)
  122. {
  123. adap->pll_addr = 0x60;
  124. adap->pll_desc = &dvb_pll_tded4;
  125. return 0;
  126. }
  127. static struct dvb_usb_rc_key digitv_rc_keys[] = {
  128. { 0x5f, 0x55, KEY_0 },
  129. { 0x6f, 0x55, KEY_1 },
  130. { 0x9f, 0x55, KEY_2 },
  131. { 0xaf, 0x55, KEY_3 },
  132. { 0x5f, 0x56, KEY_4 },
  133. { 0x6f, 0x56, KEY_5 },
  134. { 0x9f, 0x56, KEY_6 },
  135. { 0xaf, 0x56, KEY_7 },
  136. { 0x5f, 0x59, KEY_8 },
  137. { 0x6f, 0x59, KEY_9 },
  138. { 0x9f, 0x59, KEY_TV },
  139. { 0xaf, 0x59, KEY_AUX },
  140. { 0x5f, 0x5a, KEY_DVD },
  141. { 0x6f, 0x5a, KEY_POWER },
  142. { 0x9f, 0x5a, KEY_MHP }, /* labelled 'Picture' */
  143. { 0xaf, 0x5a, KEY_AUDIO },
  144. { 0x5f, 0x65, KEY_INFO },
  145. { 0x6f, 0x65, KEY_F13 }, /* 16:9 */
  146. { 0x9f, 0x65, KEY_F14 }, /* 14:9 */
  147. { 0xaf, 0x65, KEY_EPG },
  148. { 0x5f, 0x66, KEY_EXIT },
  149. { 0x6f, 0x66, KEY_MENU },
  150. { 0x9f, 0x66, KEY_UP },
  151. { 0xaf, 0x66, KEY_DOWN },
  152. { 0x5f, 0x69, KEY_LEFT },
  153. { 0x6f, 0x69, KEY_RIGHT },
  154. { 0x9f, 0x69, KEY_ENTER },
  155. { 0xaf, 0x69, KEY_CHANNELUP },
  156. { 0x5f, 0x6a, KEY_CHANNELDOWN },
  157. { 0x6f, 0x6a, KEY_VOLUMEUP },
  158. { 0x9f, 0x6a, KEY_VOLUMEDOWN },
  159. { 0xaf, 0x6a, KEY_RED },
  160. { 0x5f, 0x95, KEY_GREEN },
  161. { 0x6f, 0x95, KEY_YELLOW },
  162. { 0x9f, 0x95, KEY_BLUE },
  163. { 0xaf, 0x95, KEY_SUBTITLE },
  164. { 0x5f, 0x96, KEY_F15 }, /* AD */
  165. { 0x6f, 0x96, KEY_TEXT },
  166. { 0x9f, 0x96, KEY_MUTE },
  167. { 0xaf, 0x96, KEY_REWIND },
  168. { 0x5f, 0x99, KEY_STOP },
  169. { 0x6f, 0x99, KEY_PLAY },
  170. { 0x9f, 0x99, KEY_FASTFORWARD },
  171. { 0xaf, 0x99, KEY_F16 }, /* chapter */
  172. { 0x5f, 0x9a, KEY_PAUSE },
  173. { 0x6f, 0x9a, KEY_PLAY },
  174. { 0x9f, 0x9a, KEY_RECORD },
  175. { 0xaf, 0x9a, KEY_F17 }, /* picture in picture */
  176. { 0x5f, 0xa5, KEY_KPPLUS }, /* zoom in */
  177. { 0x6f, 0xa5, KEY_KPMINUS }, /* zoom out */
  178. { 0x9f, 0xa5, KEY_F18 }, /* capture */
  179. { 0xaf, 0xa5, KEY_F19 }, /* web */
  180. { 0x5f, 0xa6, KEY_EMAIL },
  181. { 0x6f, 0xa6, KEY_PHONE },
  182. { 0x9f, 0xa6, KEY_PC },
  183. };
  184. static int digitv_rc_query(struct dvb_usb_device *d, u32 *event, int *state)
  185. {
  186. int i;
  187. u8 key[5];
  188. u8 b[4] = { 0 };
  189. *event = 0;
  190. *state = REMOTE_NO_KEY_PRESSED;
  191. digitv_ctrl_msg(d,USB_READ_REMOTE,0,NULL,0,&key[1],4);
  192. /* Tell the device we've read the remote. Not sure how necessary
  193. this is, but the Nebula SDK does it. */
  194. digitv_ctrl_msg(d,USB_WRITE_REMOTE,0,b,4,NULL,0);
  195. /* if something is inside the buffer, simulate key press */
  196. if (key[1] != 0)
  197. {
  198. for (i = 0; i < d->props.rc_key_map_size; i++) {
  199. if (d->props.rc_key_map[i].custom == key[1] &&
  200. d->props.rc_key_map[i].data == key[2]) {
  201. *event = d->props.rc_key_map[i].event;
  202. *state = REMOTE_KEY_PRESSED;
  203. return 0;
  204. }
  205. }
  206. }
  207. if (key[0] != 0)
  208. deb_rc("key: %x %x %x %x %x\n",key[0],key[1],key[2],key[3],key[4]);
  209. return 0;
  210. }
  211. /* DVB USB Driver stuff */
  212. static struct dvb_usb_device_properties digitv_properties;
  213. static int digitv_probe(struct usb_interface *intf,
  214. const struct usb_device_id *id)
  215. {
  216. struct dvb_usb_device *d;
  217. int ret;
  218. if ((ret = dvb_usb_device_init(intf,&digitv_properties,THIS_MODULE,&d)) == 0) {
  219. u8 b[4] = { 0 };
  220. if (d != NULL) { /* do that only when the firmware is loaded */
  221. b[0] = 1;
  222. digitv_ctrl_msg(d,USB_WRITE_REMOTE_TYPE,0,b,4,NULL,0);
  223. b[0] = 0;
  224. digitv_ctrl_msg(d,USB_WRITE_REMOTE,0,b,4,NULL,0);
  225. }
  226. }
  227. return ret;
  228. }
  229. static struct usb_device_id digitv_table [] = {
  230. { USB_DEVICE(USB_VID_ANCHOR, USB_PID_NEBULA_DIGITV) },
  231. { } /* Terminating entry */
  232. };
  233. MODULE_DEVICE_TABLE (usb, digitv_table);
  234. static struct dvb_usb_device_properties digitv_properties = {
  235. .caps = DVB_USB_IS_AN_I2C_ADAPTER,
  236. .usb_ctrl = CYPRESS_FX2,
  237. .firmware = "dvb-usb-digitv-02.fw",
  238. .num_adapters = 1,
  239. .adapter = {
  240. {
  241. .frontend_attach = digitv_frontend_attach,
  242. .tuner_attach = digitv_tuner_attach,
  243. /* parameter for the MPEG2-data transfer */
  244. .stream = {
  245. .type = USB_BULK,
  246. .count = 7,
  247. .endpoint = 0x02,
  248. .u = {
  249. .bulk = {
  250. .buffersize = 4096,
  251. }
  252. }
  253. },
  254. }
  255. },
  256. .identify_state = digitv_identify_state,
  257. .rc_interval = 1000,
  258. .rc_key_map = digitv_rc_keys,
  259. .rc_key_map_size = ARRAY_SIZE(digitv_rc_keys),
  260. .rc_query = digitv_rc_query,
  261. .i2c_algo = &digitv_i2c_algo,
  262. .generic_bulk_ctrl_endpoint = 0x01,
  263. .num_device_descs = 1,
  264. .devices = {
  265. { "Nebula Electronics uDigiTV DVB-T USB2.0)",
  266. { &digitv_table[0], NULL },
  267. { NULL },
  268. },
  269. { NULL },
  270. }
  271. };
  272. static struct usb_driver digitv_driver = {
  273. .name = "dvb_usb_digitv",
  274. .probe = digitv_probe,
  275. .disconnect = dvb_usb_device_exit,
  276. .id_table = digitv_table,
  277. };
  278. /* module stuff */
  279. static int __init digitv_module_init(void)
  280. {
  281. int result;
  282. if ((result = usb_register(&digitv_driver))) {
  283. err("usb_register failed. Error number %d",result);
  284. return result;
  285. }
  286. return 0;
  287. }
  288. static void __exit digitv_module_exit(void)
  289. {
  290. /* deregister this driver from the USB subsystem */
  291. usb_deregister(&digitv_driver);
  292. }
  293. module_init (digitv_module_init);
  294. module_exit (digitv_module_exit);
  295. MODULE_AUTHOR("Patrick Boettcher <patrick.boettcher@desy.de>");
  296. MODULE_DESCRIPTION("Driver for Nebula Electronics uDigiTV DVB-T USB2.0");
  297. MODULE_VERSION("1.0-alpha");
  298. MODULE_LICENSE("GPL");