dtv5100.c 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  1. /*
  2. * DVB USB Linux driver for AME DTV-5100 USB2.0 DVB-T
  3. *
  4. * Copyright (C) 2008 Antoine Jacquet <royale@zerezo.com>
  5. * http://royale.zerezo.com/dtv5100/
  6. *
  7. * Inspired by gl861.c and au6610.c drivers
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License as published by
  11. * the Free Software Foundation; either version 2 of the License, or
  12. * (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. */
  19. #include "dtv5100.h"
  20. #include "zl10353.h"
  21. #include "qt1010.h"
  22. /* debug */
  23. static int dvb_usb_dtv5100_debug;
  24. module_param_named(debug, dvb_usb_dtv5100_debug, int, 0644);
  25. MODULE_PARM_DESC(debug, "set debugging level" DVB_USB_DEBUG_STATUS);
  26. DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr);
  27. struct dtv5100_state {
  28. unsigned char data[80];
  29. };
  30. static int dtv5100_i2c_msg(struct dvb_usb_device *d, u8 addr,
  31. u8 *wbuf, u16 wlen, u8 *rbuf, u16 rlen)
  32. {
  33. struct dtv5100_state *st = d->priv;
  34. u8 request;
  35. u8 type;
  36. u16 value;
  37. u16 index;
  38. switch (wlen) {
  39. case 1:
  40. /* write { reg }, read { value } */
  41. request = (addr == DTV5100_DEMOD_ADDR ? DTV5100_DEMOD_READ :
  42. DTV5100_TUNER_READ);
  43. type = USB_TYPE_VENDOR | USB_DIR_IN;
  44. value = 0;
  45. break;
  46. case 2:
  47. /* write { reg, value } */
  48. request = (addr == DTV5100_DEMOD_ADDR ? DTV5100_DEMOD_WRITE :
  49. DTV5100_TUNER_WRITE);
  50. type = USB_TYPE_VENDOR | USB_DIR_OUT;
  51. value = wbuf[1];
  52. break;
  53. default:
  54. warn("wlen = %x, aborting.", wlen);
  55. return -EINVAL;
  56. }
  57. index = (addr << 8) + wbuf[0];
  58. memcpy(st->data, rbuf, rlen);
  59. msleep(1); /* avoid I2C errors */
  60. return usb_control_msg(d->udev, usb_rcvctrlpipe(d->udev, 0), request,
  61. type, value, index, st->data, rlen,
  62. DTV5100_USB_TIMEOUT);
  63. }
  64. /* I2C */
  65. static int dtv5100_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msg[],
  66. int num)
  67. {
  68. struct dvb_usb_device *d = i2c_get_adapdata(adap);
  69. int i;
  70. if (num > 2)
  71. return -EINVAL;
  72. if (mutex_lock_interruptible(&d->i2c_mutex) < 0)
  73. return -EAGAIN;
  74. for (i = 0; i < num; i++) {
  75. /* write/read request */
  76. if (i+1 < num && (msg[i+1].flags & I2C_M_RD)) {
  77. if (dtv5100_i2c_msg(d, msg[i].addr, msg[i].buf,
  78. msg[i].len, msg[i+1].buf,
  79. msg[i+1].len) < 0)
  80. break;
  81. i++;
  82. } else if (dtv5100_i2c_msg(d, msg[i].addr, msg[i].buf,
  83. msg[i].len, NULL, 0) < 0)
  84. break;
  85. }
  86. mutex_unlock(&d->i2c_mutex);
  87. return i;
  88. }
  89. static u32 dtv5100_i2c_func(struct i2c_adapter *adapter)
  90. {
  91. return I2C_FUNC_I2C;
  92. }
  93. static struct i2c_algorithm dtv5100_i2c_algo = {
  94. .master_xfer = dtv5100_i2c_xfer,
  95. .functionality = dtv5100_i2c_func,
  96. };
  97. /* Callbacks for DVB USB */
  98. static struct zl10353_config dtv5100_zl10353_config = {
  99. .demod_address = DTV5100_DEMOD_ADDR,
  100. .no_tuner = 1,
  101. .parallel_ts = 1,
  102. };
  103. static int dtv5100_frontend_attach(struct dvb_usb_adapter *adap)
  104. {
  105. adap->fe_adap[0].fe = dvb_attach(zl10353_attach, &dtv5100_zl10353_config,
  106. &adap->dev->i2c_adap);
  107. if (adap->fe_adap[0].fe == NULL)
  108. return -EIO;
  109. /* disable i2c gate, or it won't work... is this safe? */
  110. adap->fe_adap[0].fe->ops.i2c_gate_ctrl = NULL;
  111. return 0;
  112. }
  113. static struct qt1010_config dtv5100_qt1010_config = {
  114. .i2c_address = DTV5100_TUNER_ADDR
  115. };
  116. static int dtv5100_tuner_attach(struct dvb_usb_adapter *adap)
  117. {
  118. return dvb_attach(qt1010_attach,
  119. adap->fe_adap[0].fe, &adap->dev->i2c_adap,
  120. &dtv5100_qt1010_config) == NULL ? -ENODEV : 0;
  121. }
  122. /* DVB USB Driver stuff */
  123. static struct dvb_usb_device_properties dtv5100_properties;
  124. static int dtv5100_probe(struct usb_interface *intf,
  125. const struct usb_device_id *id)
  126. {
  127. int i, ret;
  128. struct usb_device *udev = interface_to_usbdev(intf);
  129. /* initialize non qt1010/zl10353 part? */
  130. for (i = 0; dtv5100_init[i].request; i++) {
  131. ret = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0),
  132. dtv5100_init[i].request,
  133. USB_TYPE_VENDOR | USB_DIR_OUT,
  134. dtv5100_init[i].value,
  135. dtv5100_init[i].index, NULL, 0,
  136. DTV5100_USB_TIMEOUT);
  137. if (ret)
  138. return ret;
  139. }
  140. ret = dvb_usb_device_init(intf, &dtv5100_properties,
  141. THIS_MODULE, NULL, adapter_nr);
  142. if (ret)
  143. return ret;
  144. return 0;
  145. }
  146. static struct usb_device_id dtv5100_table[] = {
  147. { USB_DEVICE(0x06be, 0xa232) },
  148. { } /* Terminating entry */
  149. };
  150. MODULE_DEVICE_TABLE(usb, dtv5100_table);
  151. static struct dvb_usb_device_properties dtv5100_properties = {
  152. .caps = DVB_USB_IS_AN_I2C_ADAPTER,
  153. .usb_ctrl = DEVICE_SPECIFIC,
  154. .size_of_priv = sizeof(struct dtv5100_state),
  155. .num_adapters = 1,
  156. .adapter = {{
  157. .num_frontends = 1,
  158. .fe = {{
  159. .frontend_attach = dtv5100_frontend_attach,
  160. .tuner_attach = dtv5100_tuner_attach,
  161. .stream = {
  162. .type = USB_BULK,
  163. .count = 8,
  164. .endpoint = 0x82,
  165. .u = {
  166. .bulk = {
  167. .buffersize = 4096,
  168. }
  169. }
  170. },
  171. }},
  172. } },
  173. .i2c_algo = &dtv5100_i2c_algo,
  174. .num_device_descs = 1,
  175. .devices = {
  176. {
  177. .name = "AME DTV-5100 USB2.0 DVB-T",
  178. .cold_ids = { NULL },
  179. .warm_ids = { &dtv5100_table[0], NULL },
  180. },
  181. }
  182. };
  183. static struct usb_driver dtv5100_driver = {
  184. .name = "dvb_usb_dtv5100",
  185. .probe = dtv5100_probe,
  186. .disconnect = dvb_usb_device_exit,
  187. .id_table = dtv5100_table,
  188. };
  189. module_usb_driver(dtv5100_driver);
  190. MODULE_AUTHOR(DRIVER_AUTHOR);
  191. MODULE_DESCRIPTION(DRIVER_DESC);
  192. MODULE_LICENSE("GPL");