dibusb-common.c 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403
  1. /* Common methods for dibusb-based-receivers.
  2. *
  3. * Copyright (C) 2004-5 Patrick Boettcher (patrick.boettcher@posteo.de)
  4. *
  5. * This program is free software; you can redistribute it and/or modify it
  6. * under the terms of the GNU General Public License as published by the Free
  7. * Software Foundation, version 2.
  8. *
  9. * see Documentation/dvb/README.dvb-usb for more information
  10. */
  11. #include "dibusb.h"
  12. /* Max transfer size done by I2C transfer functions */
  13. #define MAX_XFER_SIZE 64
  14. static int debug;
  15. module_param(debug, int, 0644);
  16. MODULE_PARM_DESC(debug, "set debugging level (1=info (|-able))." DVB_USB_DEBUG_STATUS);
  17. MODULE_LICENSE("GPL");
  18. #define deb_info(args...) dprintk(debug,0x01,args)
  19. /* common stuff used by the different dibusb modules */
  20. int dibusb_streaming_ctrl(struct dvb_usb_adapter *adap, int onoff)
  21. {
  22. if (adap->priv != NULL) {
  23. struct dibusb_state *st = adap->priv;
  24. if (st->ops.fifo_ctrl != NULL)
  25. if (st->ops.fifo_ctrl(adap->fe_adap[0].fe, onoff)) {
  26. err("error while controlling the fifo of the demod.");
  27. return -ENODEV;
  28. }
  29. }
  30. return 0;
  31. }
  32. EXPORT_SYMBOL(dibusb_streaming_ctrl);
  33. int dibusb_pid_filter(struct dvb_usb_adapter *adap, int index, u16 pid, int onoff)
  34. {
  35. if (adap->priv != NULL) {
  36. struct dibusb_state *st = adap->priv;
  37. if (st->ops.pid_ctrl != NULL)
  38. st->ops.pid_ctrl(adap->fe_adap[0].fe,
  39. index, pid, onoff);
  40. }
  41. return 0;
  42. }
  43. EXPORT_SYMBOL(dibusb_pid_filter);
  44. int dibusb_pid_filter_ctrl(struct dvb_usb_adapter *adap, int onoff)
  45. {
  46. if (adap->priv != NULL) {
  47. struct dibusb_state *st = adap->priv;
  48. if (st->ops.pid_parse != NULL)
  49. if (st->ops.pid_parse(adap->fe_adap[0].fe, onoff) < 0)
  50. err("could not handle pid_parser");
  51. }
  52. return 0;
  53. }
  54. EXPORT_SYMBOL(dibusb_pid_filter_ctrl);
  55. int dibusb_power_ctrl(struct dvb_usb_device *d, int onoff)
  56. {
  57. u8 *b;
  58. int ret;
  59. b = kmalloc(3, GFP_KERNEL);
  60. if (!b)
  61. return -ENOMEM;
  62. b[0] = DIBUSB_REQ_SET_IOCTL;
  63. b[1] = DIBUSB_IOCTL_CMD_POWER_MODE;
  64. b[2] = onoff ? DIBUSB_IOCTL_POWER_WAKEUP : DIBUSB_IOCTL_POWER_SLEEP;
  65. ret = dvb_usb_generic_write(d, b, 3);
  66. kfree(b);
  67. msleep(10);
  68. return ret;
  69. }
  70. EXPORT_SYMBOL(dibusb_power_ctrl);
  71. int dibusb2_0_streaming_ctrl(struct dvb_usb_adapter *adap, int onoff)
  72. {
  73. int ret;
  74. u8 *b;
  75. b = kmalloc(3, GFP_KERNEL);
  76. if (!b)
  77. return -ENOMEM;
  78. if ((ret = dibusb_streaming_ctrl(adap,onoff)) < 0)
  79. goto ret;
  80. if (onoff) {
  81. b[0] = DIBUSB_REQ_SET_STREAMING_MODE;
  82. b[1] = 0x00;
  83. ret = dvb_usb_generic_write(adap->dev, b, 2);
  84. if (ret < 0)
  85. goto ret;
  86. }
  87. b[0] = DIBUSB_REQ_SET_IOCTL;
  88. b[1] = onoff ? DIBUSB_IOCTL_CMD_ENABLE_STREAM : DIBUSB_IOCTL_CMD_DISABLE_STREAM;
  89. ret = dvb_usb_generic_write(adap->dev, b, 3);
  90. ret:
  91. kfree(b);
  92. return ret;
  93. }
  94. EXPORT_SYMBOL(dibusb2_0_streaming_ctrl);
  95. int dibusb2_0_power_ctrl(struct dvb_usb_device *d, int onoff)
  96. {
  97. u8 *b;
  98. int ret;
  99. if (!onoff)
  100. return 0;
  101. b = kmalloc(3, GFP_KERNEL);
  102. if (!b)
  103. return -ENOMEM;
  104. b[0] = DIBUSB_REQ_SET_IOCTL;
  105. b[1] = DIBUSB_IOCTL_CMD_POWER_MODE;
  106. b[2] = DIBUSB_IOCTL_POWER_WAKEUP;
  107. ret = dvb_usb_generic_write(d, b, 3);
  108. kfree(b);
  109. return ret;
  110. }
  111. EXPORT_SYMBOL(dibusb2_0_power_ctrl);
  112. static int dibusb_i2c_msg(struct dvb_usb_device *d, u8 addr,
  113. u8 *wbuf, u16 wlen, u8 *rbuf, u16 rlen)
  114. {
  115. u8 *sndbuf;
  116. int ret, wo, len;
  117. /* write only ? */
  118. wo = (rbuf == NULL || rlen == 0);
  119. len = 2 + wlen + (wo ? 0 : 2);
  120. sndbuf = kmalloc(MAX_XFER_SIZE, GFP_KERNEL);
  121. if (!sndbuf)
  122. return -ENOMEM;
  123. if (4 + wlen > MAX_XFER_SIZE) {
  124. warn("i2c wr: len=%d is too big!\n", wlen);
  125. ret = -EOPNOTSUPP;
  126. goto ret;
  127. }
  128. sndbuf[0] = wo ? DIBUSB_REQ_I2C_WRITE : DIBUSB_REQ_I2C_READ;
  129. sndbuf[1] = (addr << 1) | (wo ? 0 : 1);
  130. memcpy(&sndbuf[2], wbuf, wlen);
  131. if (!wo) {
  132. sndbuf[wlen + 2] = (rlen >> 8) & 0xff;
  133. sndbuf[wlen + 3] = rlen & 0xff;
  134. }
  135. ret = dvb_usb_generic_rw(d, sndbuf, len, rbuf, rlen, 0);
  136. ret:
  137. kfree(sndbuf);
  138. return ret;
  139. }
  140. /*
  141. * I2C master xfer function
  142. */
  143. static int dibusb_i2c_xfer(struct i2c_adapter *adap,struct i2c_msg msg[],int num)
  144. {
  145. struct dvb_usb_device *d = i2c_get_adapdata(adap);
  146. int i;
  147. if (mutex_lock_interruptible(&d->i2c_mutex) < 0)
  148. return -EAGAIN;
  149. for (i = 0; i < num; i++) {
  150. /* write/read request */
  151. if (i+1 < num && (msg[i].flags & I2C_M_RD) == 0
  152. && (msg[i+1].flags & I2C_M_RD)) {
  153. if (dibusb_i2c_msg(d, msg[i].addr, msg[i].buf,msg[i].len,
  154. msg[i+1].buf,msg[i+1].len) < 0)
  155. break;
  156. i++;
  157. } else if ((msg[i].flags & I2C_M_RD) == 0) {
  158. if (dibusb_i2c_msg(d, msg[i].addr, msg[i].buf,msg[i].len,NULL,0) < 0)
  159. break;
  160. } else if (msg[i].addr != 0x50) {
  161. /* 0x50 is the address of the eeprom - we need to protect it
  162. * from dibusb's bad i2c implementation: reads without
  163. * writing the offset before are forbidden */
  164. if (dibusb_i2c_msg(d, msg[i].addr, NULL, 0, msg[i].buf, msg[i].len) < 0)
  165. break;
  166. }
  167. }
  168. mutex_unlock(&d->i2c_mutex);
  169. return i;
  170. }
  171. static u32 dibusb_i2c_func(struct i2c_adapter *adapter)
  172. {
  173. return I2C_FUNC_I2C;
  174. }
  175. struct i2c_algorithm dibusb_i2c_algo = {
  176. .master_xfer = dibusb_i2c_xfer,
  177. .functionality = dibusb_i2c_func,
  178. };
  179. EXPORT_SYMBOL(dibusb_i2c_algo);
  180. int dibusb_read_eeprom_byte(struct dvb_usb_device *d, u8 offs, u8 *val)
  181. {
  182. u8 *buf;
  183. int rc;
  184. buf = kmalloc(2, GFP_KERNEL);
  185. if (!buf)
  186. return -ENOMEM;
  187. buf[0] = offs;
  188. rc = dibusb_i2c_msg(d, 0x50, &buf[0], 1, &buf[1], 1);
  189. *val = buf[1];
  190. kfree(buf);
  191. return rc;
  192. }
  193. EXPORT_SYMBOL(dibusb_read_eeprom_byte);
  194. /*
  195. * common remote control stuff
  196. */
  197. struct rc_map_table rc_map_dibusb_table[] = {
  198. /* Key codes for the little Artec T1/Twinhan/HAMA/ remote. */
  199. { 0x0016, KEY_POWER },
  200. { 0x0010, KEY_MUTE },
  201. { 0x0003, KEY_1 },
  202. { 0x0001, KEY_2 },
  203. { 0x0006, KEY_3 },
  204. { 0x0009, KEY_4 },
  205. { 0x001d, KEY_5 },
  206. { 0x001f, KEY_6 },
  207. { 0x000d, KEY_7 },
  208. { 0x0019, KEY_8 },
  209. { 0x001b, KEY_9 },
  210. { 0x0015, KEY_0 },
  211. { 0x0005, KEY_CHANNELUP },
  212. { 0x0002, KEY_CHANNELDOWN },
  213. { 0x001e, KEY_VOLUMEUP },
  214. { 0x000a, KEY_VOLUMEDOWN },
  215. { 0x0011, KEY_RECORD },
  216. { 0x0017, KEY_FAVORITES }, /* Heart symbol - Channel list. */
  217. { 0x0014, KEY_PLAY },
  218. { 0x001a, KEY_STOP },
  219. { 0x0040, KEY_REWIND },
  220. { 0x0012, KEY_FASTFORWARD },
  221. { 0x000e, KEY_PREVIOUS }, /* Recall - Previous channel. */
  222. { 0x004c, KEY_PAUSE },
  223. { 0x004d, KEY_SCREEN }, /* Full screen mode. */
  224. { 0x0054, KEY_AUDIO }, /* MTS - Switch to secondary audio. */
  225. /* additional keys TwinHan VisionPlus, the Artec seemingly not have */
  226. { 0x000c, KEY_CANCEL }, /* Cancel */
  227. { 0x001c, KEY_EPG }, /* EPG */
  228. { 0x0000, KEY_TAB }, /* Tab */
  229. { 0x0048, KEY_INFO }, /* Preview */
  230. { 0x0004, KEY_LIST }, /* RecordList */
  231. { 0x000f, KEY_TEXT }, /* Teletext */
  232. /* Key codes for the KWorld/ADSTech/JetWay remote. */
  233. { 0x8612, KEY_POWER },
  234. { 0x860f, KEY_SELECT }, /* source */
  235. { 0x860c, KEY_UNKNOWN }, /* scan */
  236. { 0x860b, KEY_EPG },
  237. { 0x8610, KEY_MUTE },
  238. { 0x8601, KEY_1 },
  239. { 0x8602, KEY_2 },
  240. { 0x8603, KEY_3 },
  241. { 0x8604, KEY_4 },
  242. { 0x8605, KEY_5 },
  243. { 0x8606, KEY_6 },
  244. { 0x8607, KEY_7 },
  245. { 0x8608, KEY_8 },
  246. { 0x8609, KEY_9 },
  247. { 0x860a, KEY_0 },
  248. { 0x8618, KEY_ZOOM },
  249. { 0x861c, KEY_UNKNOWN }, /* preview */
  250. { 0x8613, KEY_UNKNOWN }, /* snap */
  251. { 0x8600, KEY_UNDO },
  252. { 0x861d, KEY_RECORD },
  253. { 0x860d, KEY_STOP },
  254. { 0x860e, KEY_PAUSE },
  255. { 0x8616, KEY_PLAY },
  256. { 0x8611, KEY_BACK },
  257. { 0x8619, KEY_FORWARD },
  258. { 0x8614, KEY_UNKNOWN }, /* pip */
  259. { 0x8615, KEY_ESC },
  260. { 0x861a, KEY_UP },
  261. { 0x861e, KEY_DOWN },
  262. { 0x861f, KEY_LEFT },
  263. { 0x861b, KEY_RIGHT },
  264. /* Key codes for the DiBcom MOD3000 remote. */
  265. { 0x8000, KEY_MUTE },
  266. { 0x8001, KEY_TEXT },
  267. { 0x8002, KEY_HOME },
  268. { 0x8003, KEY_POWER },
  269. { 0x8004, KEY_RED },
  270. { 0x8005, KEY_GREEN },
  271. { 0x8006, KEY_YELLOW },
  272. { 0x8007, KEY_BLUE },
  273. { 0x8008, KEY_DVD },
  274. { 0x8009, KEY_AUDIO },
  275. { 0x800a, KEY_IMAGES }, /* Pictures */
  276. { 0x800b, KEY_VIDEO },
  277. { 0x800c, KEY_BACK },
  278. { 0x800d, KEY_UP },
  279. { 0x800e, KEY_RADIO },
  280. { 0x800f, KEY_EPG },
  281. { 0x8010, KEY_LEFT },
  282. { 0x8011, KEY_OK },
  283. { 0x8012, KEY_RIGHT },
  284. { 0x8013, KEY_UNKNOWN }, /* SAP */
  285. { 0x8014, KEY_TV },
  286. { 0x8015, KEY_DOWN },
  287. { 0x8016, KEY_MENU }, /* DVD Menu */
  288. { 0x8017, KEY_LAST },
  289. { 0x8018, KEY_RECORD },
  290. { 0x8019, KEY_STOP },
  291. { 0x801a, KEY_PAUSE },
  292. { 0x801b, KEY_PLAY },
  293. { 0x801c, KEY_PREVIOUS },
  294. { 0x801d, KEY_REWIND },
  295. { 0x801e, KEY_FASTFORWARD },
  296. { 0x801f, KEY_NEXT},
  297. { 0x8040, KEY_1 },
  298. { 0x8041, KEY_2 },
  299. { 0x8042, KEY_3 },
  300. { 0x8043, KEY_CHANNELUP },
  301. { 0x8044, KEY_4 },
  302. { 0x8045, KEY_5 },
  303. { 0x8046, KEY_6 },
  304. { 0x8047, KEY_CHANNELDOWN },
  305. { 0x8048, KEY_7 },
  306. { 0x8049, KEY_8 },
  307. { 0x804a, KEY_9 },
  308. { 0x804b, KEY_VOLUMEUP },
  309. { 0x804c, KEY_CLEAR },
  310. { 0x804d, KEY_0 },
  311. { 0x804e, KEY_ENTER },
  312. { 0x804f, KEY_VOLUMEDOWN },
  313. };
  314. EXPORT_SYMBOL(rc_map_dibusb_table);
  315. int dibusb_rc_query(struct dvb_usb_device *d, u32 *event, int *state)
  316. {
  317. u8 *buf;
  318. int ret;
  319. buf = kmalloc(5, GFP_KERNEL);
  320. if (!buf)
  321. return -ENOMEM;
  322. buf[0] = DIBUSB_REQ_POLL_REMOTE;
  323. ret = dvb_usb_generic_rw(d, buf, 1, buf, 5, 0);
  324. if (ret < 0)
  325. goto ret;
  326. dvb_usb_nec_rc_key_to_event(d, buf, event, state);
  327. if (buf[0] != 0)
  328. deb_info("key: %*ph\n", 5, buf);
  329. ret:
  330. kfree(buf);
  331. return ret;
  332. }
  333. EXPORT_SYMBOL(dibusb_rc_query);