blob: 3a32c65ee04c402635076b97e222d32fdbcb0ddf [file] [log] [blame]
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -03001/* DVB USB compliant linux driver for
2 *
3 * DM04/QQBOX DVB-S USB BOX LME2510C + SHARP:BS2F7HZ7395
Malcolm Priestleyab599a62010-10-16 16:44:43 -03004 * LME2510C + LG TDQY-P001F
5 * LME2510 + LG TDQY-P001F
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -03006 *
7 * MVB7395 (LME2510C+SHARP:BS2F7HZ7395)
8 * SHARP:BS2F7HZ7395 = (STV0288+Sharp IX2505V)
9 *
Malcolm Priestleyab599a62010-10-16 16:44:43 -030010 * MV001F (LME2510+LGTDQY-P001F)
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -030011 * LG TDQY - P001F =(TDA8263 + TDA10086H)
12 *
Malcolm Priestleyab599a62010-10-16 16:44:43 -030013 * MVB0001F (LME2510C+LGTDQT-P001F)
14 *
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -030015 * For firmware see Documentation/dvb/lmedm04.txt
16 *
17 * I2C addresses:
18 * 0xd0 - STV0288 - Demodulator
19 * 0xc0 - Sharp IX2505V - Tuner
20 * --or--
21 * 0x1c - TDA10086 - Demodulator
22 * 0xc0 - TDA8263 - Tuner
23 *
24 * ***Please Note***
25 * There are other variants of the DM04
26 * ***NOT SUPPORTED***
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -030027 * MV0194 (LME2510+SHARP0194)
28 * MVB0194 (LME2510C+SHARP0194)
29 *
30 *
31 * VID = 3344 PID LME2510=1122 LME2510C=1120
32 *
33 * Copyright (C) 2010 Malcolm Priestley (tvboxspy@gmail.com)
34 * LME2510(C)(C) Leaguerme (Shenzhen) MicroElectronics Co., Ltd.
35 *
36 * This program is free software; you can redistribute it and/or modify
37 * it under the terms of the GNU General Public License Version 2, as
38 * published by the Free Software Foundation.
39 *
40 * This program is distributed in the hope that it will be useful,
41 * but WITHOUT ANY WARRANTY; without even the implied warranty of
42 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
43 * GNU General Public License for more details.
44 *
45 * You should have received a copy of the GNU General Public License
46 * along with this program; if not, write to the Free Software
47 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
48 *
49 *
50 * see Documentation/dvb/README.dvb-usb for more information
51 *
52 * Known Issues :
53 * LME2510: Non Intel USB chipsets fail to maintain High Speed on
54 * Boot or Hot Plug.
55 *
Malcolm Priestleyab599a62010-10-16 16:44:43 -030056 * QQbox suffers from noise on LNB voltage.
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -030057 *
58 * PID functions have been removed from this driver version due to
59 * problems with different firmware and application versions.
60 */
61#define DVB_USB_LOG_PREFIX "LME2510(C)"
62#include <linux/usb.h>
63#include <linux/usb/input.h>
64#include <media/ir-core.h>
65
66#include "dvb-usb.h"
67#include "lmedm04.h"
68#include "tda826x.h"
69#include "tda10086.h"
70#include "stv0288.h"
71#include "ix2505v.h"
72
73
74
75/* debug */
76static int dvb_usb_lme2510_debug;
77#define l_dprintk(var, level, args...) do { \
78 if ((var >= level)) \
79 printk(KERN_DEBUG DVB_USB_LOG_PREFIX ": " args); \
80} while (0)
81
82#define deb_info(level, args...) l_dprintk(dvb_usb_lme2510_debug, level, args)
83#define debug_data_snipet(level, name, p) \
84 deb_info(level, name" (%02x%02x%02x%02x%02x%02x%02x%02x)", \
85 *p, *(p+1), *(p+2), *(p+3), *(p+4), \
86 *(p+5), *(p+6), *(p+7));
87
88
89module_param_named(debug, dvb_usb_lme2510_debug, int, 0644);
90MODULE_PARM_DESC(debug, "set debugging level (1=info (or-able))."
91 DVB_USB_DEBUG_STATUS);
92
Malcolm Priestleyab599a62010-10-16 16:44:43 -030093static int dvb_usb_lme2510_firmware;
94module_param_named(firmware, dvb_usb_lme2510_firmware, int, 0644);
95MODULE_PARM_DESC(firmware, "set default firmware 0=Sharp7395 1=LG");
96
97
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -030098DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr);
Malcolm Priestleyab599a62010-10-16 16:44:43 -030099#define TUNER_LG 0x1
100#define TUNER_S7395 0x2
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300101
102struct lme2510_state {
103 u8 id;
104 u8 tuner_config;
105 u8 signal_lock;
106 u8 signal_level;
107 u8 signal_sn;
108 u8 time_key;
109 u8 i2c_talk_onoff;
110 u8 i2c_gate;
111 u8 i2c_tuner_gate_w;
112 u8 i2c_tuner_gate_r;
113 u8 i2c_tuner_addr;
Malcolm Priestleyab599a62010-10-16 16:44:43 -0300114 u8 stream_on;
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300115 void *buffer;
116 struct urb *lme_urb;
117 void *usb_buffer;
118
119};
120
121static int lme2510_bulk_write(struct usb_device *dev,
122 u8 *snd, int len, u8 pipe)
123{
124 int ret, actual_l;
Malcolm Priestleyab599a62010-10-16 16:44:43 -0300125
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300126 ret = usb_bulk_msg(dev, usb_sndbulkpipe(dev, pipe),
127 snd, len , &actual_l, 500);
128 return ret;
129}
130
131static int lme2510_bulk_read(struct usb_device *dev,
132 u8 *rev, int len, u8 pipe)
133{
134 int ret, actual_l;
135
136 ret = usb_bulk_msg(dev, usb_rcvbulkpipe(dev, pipe),
137 rev, len , &actual_l, 500);
138 return ret;
139}
140
141static int lme2510_usb_talk(struct dvb_usb_device *d,
142 u8 *wbuf, int wlen, u8 *rbuf, int rlen)
143{
144 struct lme2510_state *st = d->priv;
145 u8 *buff;
146 int ret = 0;
147
148 if (st->usb_buffer == NULL) {
149 st->usb_buffer = kmalloc(512, GFP_KERNEL);
150 if (st->usb_buffer == NULL) {
151 info("MEM Error no memory");
152 return -ENOMEM;
153 }
154 }
155 buff = st->usb_buffer;
156
157 /* the read/write capped at 512 */
158 memcpy(buff, wbuf, (wlen > 512) ? 512 : wlen);
159
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300160 ret = mutex_lock_interruptible(&d->usb_mutex);
161
162 if (ret < 0)
163 return -EAGAIN;
164
165 ret |= usb_clear_halt(d->udev, usb_sndbulkpipe(d->udev, 0x01));
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300166
Malcolm Priestleyab599a62010-10-16 16:44:43 -0300167 ret |= lme2510_bulk_write(d->udev, buff, wlen , 0x01);
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300168
Malcolm Priestleyab599a62010-10-16 16:44:43 -0300169 msleep(12);
170
171 ret |= usb_clear_halt(d->udev, usb_rcvbulkpipe(d->udev, 0x01));
172
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300173 ret |= lme2510_bulk_read(d->udev, buff, (rlen > 512) ?
Malcolm Priestleyab599a62010-10-16 16:44:43 -0300174 512 : rlen , 0x01);
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300175
176 if (rlen > 0)
177 memcpy(rbuf, buff, rlen);
178
179 mutex_unlock(&d->usb_mutex);
180
181 return (ret < 0) ? -ENODEV : 0;
182}
183
Malcolm Priestleyf23e6612010-10-27 19:50:36 -0300184static int lme2510_stream_restart(struct dvb_usb_device *d)
185{
Malcolm Priestleyab599a62010-10-16 16:44:43 -0300186 static u8 stream_on[] = LME_ST_ON_W;
187 int ret;
188 u8 rbuff[10];
Malcolm Priestleyab599a62010-10-16 16:44:43 -0300189 /*Restart Stream Command*/
Malcolm Priestleyf23e6612010-10-27 19:50:36 -0300190 ret = lme2510_usb_talk(d, stream_on, sizeof(stream_on),
Malcolm Priestleyab599a62010-10-16 16:44:43 -0300191 rbuff, sizeof(rbuff));
192 return ret;
193}
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300194static int lme2510_remote_keypress(struct dvb_usb_adapter *adap, u16 keypress)
195{
196 struct dvb_usb_device *d = adap->dev;
197
198 deb_info(1, "INT Key Keypress =%04x", keypress);
199
200 if (keypress > 0)
201 ir_keydown(d->rc_input_dev, keypress, 0);
202
203 return 0;
204}
205
206static void lme2510_int_response(struct urb *lme_urb)
207{
208 struct dvb_usb_adapter *adap = lme_urb->context;
209 struct lme2510_state *st = adap->dev->priv;
210 static u8 *ibuf, *rbuf;
211 int i = 0, offset;
212
213 switch (lme_urb->status) {
214 case 0:
215 case -ETIMEDOUT:
216 break;
217 case -ECONNRESET:
218 case -ENOENT:
219 case -ESHUTDOWN:
220 return;
221 default:
222 info("Error %x", lme_urb->status);
223 break;
224 }
225
226 rbuf = (u8 *) lme_urb->transfer_buffer;
227
228 offset = ((lme_urb->actual_length/8) > 4)
229 ? 4 : (lme_urb->actual_length/8) ;
230
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300231 for (i = 0; i < offset; ++i) {
232 ibuf = (u8 *)&rbuf[i*8];
233 deb_info(5, "INT O/S C =%02x C/O=%02x Type =%02x%02x",
234 offset, i, ibuf[0], ibuf[1]);
235
236 switch (ibuf[0]) {
237 case 0xaa:
238 debug_data_snipet(1, "INT Remote data snipet in", ibuf);
239 lme2510_remote_keypress(adap,
240 (u16)(ibuf[4]<<8)+ibuf[5]);
241 break;
242 case 0xbb:
243 switch (st->tuner_config) {
244 case TUNER_LG:
Malcolm Priestleyab599a62010-10-16 16:44:43 -0300245 if (ibuf[2] > 0)
246 st->signal_lock = ibuf[2];
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300247 st->signal_level = ibuf[4];
248 st->signal_sn = ibuf[3];
249 st->time_key = ibuf[7];
250 break;
251 case TUNER_S7395:
252 /* Tweak for earlier firmware*/
253 if (ibuf[1] == 0x03) {
Malcolm Priestleyf23e6612010-10-27 19:50:36 -0300254 if (ibuf[2] > 1)
255 st->signal_lock = ibuf[2];
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300256 st->signal_level = ibuf[3];
Malcolm Priestleyab599a62010-10-16 16:44:43 -0300257 st->signal_sn = ibuf[4];
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300258 } else {
259 st->signal_level = ibuf[4];
260 st->signal_sn = ibuf[5];
Malcolm Priestleyf23e6612010-10-27 19:50:36 -0300261 st->signal_lock =
262 (st->signal_lock & 0xf7) +
263 ((ibuf[2] & 0x01) << 0x03);
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300264 }
265 break;
266 default:
267 break;
268 }
269 debug_data_snipet(5, "INT Remote data snipet in", ibuf);
270 break;
271 case 0xcc:
272 debug_data_snipet(1, "INT Control data snipet", ibuf);
273 break;
274 default:
275 debug_data_snipet(1, "INT Unknown data snipet", ibuf);
276 break;
277 }
278 }
279 usb_submit_urb(lme_urb, GFP_ATOMIC);
280}
281
282static int lme2510_int_read(struct dvb_usb_adapter *adap)
283{
284 struct lme2510_state *lme_int = adap->dev->priv;
285
286 lme_int->lme_urb = usb_alloc_urb(0, GFP_ATOMIC);
287
288 if (lme_int->lme_urb == NULL)
289 return -ENOMEM;
290
291 lme_int->buffer = usb_alloc_coherent(adap->dev->udev, 5000, GFP_ATOMIC,
292 &lme_int->lme_urb->transfer_dma);
293
294 if (lme_int->buffer == NULL)
295 return -ENOMEM;
296
297 usb_fill_int_urb(lme_int->lme_urb,
298 adap->dev->udev,
299 usb_rcvintpipe(adap->dev->udev, 0xa),
300 lme_int->buffer,
301 4096,
302 lme2510_int_response,
303 adap,
304 11);
305
306 lme_int->lme_urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
307
308 usb_submit_urb(lme_int->lme_urb, GFP_ATOMIC);
309 info("INT Interupt Service Started");
310
311 return 0;
312}
313
314static int lme2510_return_status(struct usb_device *dev)
315{
316 int ret = 0;
317 u8 data[10] = {0};
Malcolm Priestleyab599a62010-10-16 16:44:43 -0300318
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300319 ret |= usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
320 0x06, 0x80, 0x0302, 0x00, data, 0x0006, 200);
321 info("Firmware Status: %x (%x)", ret , data[2]);
322
323 return (ret < 0) ? -ENODEV : data[2];
324}
325
326static int lme2510_msg(struct dvb_usb_device *d,
327 u8 *wbuf, int wlen, u8 *rbuf, int rlen)
328{
329 int ret = 0;
330 struct lme2510_state *st = d->priv;
331
Malcolm Priestleyab599a62010-10-16 16:44:43 -0300332 if (mutex_lock_interruptible(&d->i2c_mutex) < 0)
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300333 return -EAGAIN;
334
Malcolm Priestleyab599a62010-10-16 16:44:43 -0300335 if (st->i2c_talk_onoff == 1) {
336
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300337 ret = lme2510_usb_talk(d, wbuf, wlen, rbuf, rlen);
338
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300339 switch (st->tuner_config) {
Malcolm Priestleyab599a62010-10-16 16:44:43 -0300340 case TUNER_LG:
341 if (wbuf[2] == 0x1c) {
342 if (wbuf[3] == 0x0e) {
343 st->signal_lock = rbuf[1];
344 if ((st->stream_on & 1) &&
345 (st->signal_lock & 0x10)) {
Malcolm Priestleyf23e6612010-10-27 19:50:36 -0300346 lme2510_stream_restart(d);
Malcolm Priestleyab599a62010-10-16 16:44:43 -0300347 st->i2c_talk_onoff = 0;
348 }
Malcolm Priestleyf23e6612010-10-27 19:50:36 -0300349 msleep(80);
Malcolm Priestleyab599a62010-10-16 16:44:43 -0300350 }
351 }
352 break;
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300353 case TUNER_S7395:
Malcolm Priestleyab599a62010-10-16 16:44:43 -0300354 if (wbuf[2] == 0xd0) {
355 if (wbuf[3] == 0x24) {
356 st->signal_lock = rbuf[1];
357 if ((st->stream_on & 1) &&
358 (st->signal_lock & 0x8)) {
Malcolm Priestleyf23e6612010-10-27 19:50:36 -0300359 lme2510_stream_restart(d);
Malcolm Priestleyab599a62010-10-16 16:44:43 -0300360 st->i2c_talk_onoff = 0;
361 }
362 }
363 if ((wbuf[3] != 0x6) & (wbuf[3] != 0x5))
364 msleep(5);
Malcolm Priestleyab599a62010-10-16 16:44:43 -0300365 }
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300366 break;
367 default:
368 break;
369 }
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300370 } else {
371 switch (st->tuner_config) {
372 case TUNER_LG:
373 switch (wbuf[3]) {
374 case 0x0e:
375 rbuf[0] = 0x55;
376 rbuf[1] = st->signal_lock;
377 break;
378 case 0x43:
379 rbuf[0] = 0x55;
380 rbuf[1] = st->signal_level;
381 break;
382 case 0x1c:
383 rbuf[0] = 0x55;
384 rbuf[1] = st->signal_sn;
385 break;
Malcolm Priestleyf23e6612010-10-27 19:50:36 -0300386 case 0x15:
387 case 0x16:
388 case 0x17:
389 case 0x18:
390 rbuf[0] = 0x55;
391 rbuf[1] = 0x00;
392 break;
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300393 default:
Malcolm Priestleyf23e6612010-10-27 19:50:36 -0300394 lme2510_usb_talk(d, wbuf, wlen, rbuf, rlen);
395 st->i2c_talk_onoff = 1;
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300396 break;
397 }
398 break;
399 case TUNER_S7395:
400 switch (wbuf[3]) {
401 case 0x10:
402 rbuf[0] = 0x55;
403 rbuf[1] = (st->signal_level & 0x80)
404 ? 0 : (st->signal_level * 2);
405 break;
406 case 0x2d:
407 rbuf[0] = 0x55;
408 rbuf[1] = st->signal_sn;
409 break;
410 case 0x24:
411 rbuf[0] = 0x55;
Malcolm Priestleyf23e6612010-10-27 19:50:36 -0300412 rbuf[1] = st->signal_lock;
Malcolm Priestleyab599a62010-10-16 16:44:43 -0300413 break;
Malcolm Priestleyf23e6612010-10-27 19:50:36 -0300414 case 0x2e:
415 case 0x26:
416 case 0x27:
Malcolm Priestleyab599a62010-10-16 16:44:43 -0300417 rbuf[0] = 0x55;
418 rbuf[1] = 0x00;
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300419 break;
Malcolm Priestleyf23e6612010-10-27 19:50:36 -0300420 default:
421 lme2510_usb_talk(d, wbuf, wlen, rbuf, rlen);
422 st->i2c_talk_onoff = 1;
423 break;
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300424 }
425 break;
426 default:
427 break;
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300428 }
429
430 deb_info(4, "I2C From Interupt Message out(%02x) in(%02x)",
431 wbuf[3], rbuf[1]);
432
433 }
434
Malcolm Priestleyab599a62010-10-16 16:44:43 -0300435 mutex_unlock(&d->i2c_mutex);
436
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300437 return ret;
438}
439
440
441static int lme2510_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msg[],
442 int num)
443{
444 struct dvb_usb_device *d = i2c_get_adapdata(adap);
445 struct lme2510_state *st = d->priv;
446 static u8 obuf[64], ibuf[512];
447 int i, read, read_o;
448 u16 len;
449 u8 gate = st->i2c_gate;
450
451 if (gate == 0)
452 gate = 5;
453
454 if (num > 2)
455 warn("more than 2 i2c messages"
456 "at a time is not handled yet. TODO.");
457
458 for (i = 0; i < num; i++) {
459 read_o = 1 & (msg[i].flags & I2C_M_RD);
460 read = i+1 < num && (msg[i+1].flags & I2C_M_RD);
461 read |= read_o;
462 gate = (msg[i].addr == st->i2c_tuner_addr)
463 ? (read) ? st->i2c_tuner_gate_r
464 : st->i2c_tuner_gate_w
465 : st->i2c_gate;
466 obuf[0] = gate | (read << 7);
467
468 if (gate == 5)
469 obuf[1] = (read) ? 2 : msg[i].len + 1;
470 else
471 obuf[1] = msg[i].len + read + 1;
472
473 obuf[2] = msg[i].addr;
474 if (read) {
475 if (read_o)
476 len = 3;
477 else {
478 memcpy(&obuf[3], msg[i].buf, msg[i].len);
479 obuf[msg[i].len+3] = msg[i+1].len;
480 len = msg[i].len+4;
481 }
482 } else {
483 memcpy(&obuf[3], msg[i].buf, msg[i].len);
484 len = msg[i].len+3;
485 }
486
487 if (lme2510_msg(d, obuf, len, ibuf, 512) < 0) {
488 deb_info(1, "i2c transfer failed.");
489 return -EAGAIN;
490 }
491
492 if (read) {
493 if (read_o)
494 memcpy(msg[i].buf, &ibuf[1], msg[i].len);
495 else {
496 memcpy(msg[i+1].buf, &ibuf[1], msg[i+1].len);
497 i++;
498 }
499 }
500 }
501 return i;
502}
503
504static u32 lme2510_i2c_func(struct i2c_adapter *adapter)
505{
506 return I2C_FUNC_I2C;
507}
508
509static struct i2c_algorithm lme2510_i2c_algo = {
510 .master_xfer = lme2510_i2c_xfer,
511 .functionality = lme2510_i2c_func,
512};
513
514/* Callbacks for DVB USB */
515static int lme2510_identify_state(struct usb_device *udev,
516 struct dvb_usb_device_properties *props,
517 struct dvb_usb_device_description **desc,
518 int *cold)
519{
520 if (lme2510_return_status(udev) == 0x44)
521 *cold = 1;
522 else
523 *cold = 0;
524 return 0;
525}
526
527static int lme2510_streaming_ctrl(struct dvb_usb_adapter *adap, int onoff)
528{
529 struct lme2510_state *st = adap->dev->priv;
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300530 static u8 clear_reg_3[] = LME_CLEAR_PID;
531 static u8 rbuf[1];
Malcolm Priestleyf23e6612010-10-27 19:50:36 -0300532 int ret = 0, rlen = sizeof(rbuf);
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300533
534 deb_info(1, "STM (%02x)", onoff);
535
Malcolm Priestleyf23e6612010-10-27 19:50:36 -0300536 /* Streaming is started by FE_HAS_LOCK */
537 if (onoff == 1)
Malcolm Priestleyab599a62010-10-16 16:44:43 -0300538 st->stream_on = 1;
Malcolm Priestleyf23e6612010-10-27 19:50:36 -0300539 else {
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300540 deb_info(1, "STM Steam Off");
Malcolm Priestleyf23e6612010-10-27 19:50:36 -0300541 /* mutex is here only to avoid collision with I2C */
542 ret = mutex_lock_interruptible(&adap->dev->i2c_mutex);
543
Malcolm Priestleyab599a62010-10-16 16:44:43 -0300544 ret |= lme2510_usb_talk(adap->dev, clear_reg_3,
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300545 sizeof(clear_reg_3), rbuf, rlen);
Malcolm Priestleyab599a62010-10-16 16:44:43 -0300546 st->stream_on = 0;
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300547 st->i2c_talk_onoff = 1;
Malcolm Priestleyf23e6612010-10-27 19:50:36 -0300548
549 mutex_unlock(&adap->dev->i2c_mutex);
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300550 }
551
552 return (ret < 0) ? -ENODEV : 0;
553}
554
555static int lme2510_int_service(struct dvb_usb_adapter *adap)
556{
557 struct dvb_usb_device *d = adap->dev;
558 struct input_dev *input_dev;
559 char *ir_codes = RC_MAP_LME2510;
560 int ret = 0;
561
562 info("STA Configuring Remote");
563
564 usb_make_path(d->udev, d->rc_phys, sizeof(d->rc_phys));
565
566 strlcat(d->rc_phys, "/ir0", sizeof(d->rc_phys));
567
568 input_dev = input_allocate_device();
569 if (!input_dev)
570 return -ENOMEM;
571
572 input_dev->name = "LME2510 Remote Control";
573 input_dev->phys = d->rc_phys;
574
575 usb_to_input_id(d->udev, &input_dev->id);
576
577 ret |= ir_input_register(input_dev, ir_codes, NULL, "LME 2510");
578
579 if (ret) {
580 input_free_device(input_dev);
581 return ret;
582 }
583
584 d->rc_input_dev = input_dev;
585 /* Start the Interupt */
586 ret = lme2510_int_read(adap);
587
588 if (ret < 0) {
589 ir_input_unregister(input_dev);
590 input_free_device(input_dev);
591 }
Malcolm Priestleyf23e6612010-10-27 19:50:36 -0300592
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300593 return (ret < 0) ? -ENODEV : 0;
594}
595
596static u8 check_sum(u8 *p, u8 len)
597{
598 u8 sum = 0;
599 while (len--)
600 sum += *p++;
601 return sum;
602}
603
604static int lme2510_download_firmware(struct usb_device *dev,
605 const struct firmware *fw)
606{
607 int ret = 0;
608 u8 data[512] = {0};
609 u16 j, wlen, len_in, start, end;
610 u8 packet_size, dlen, i;
611 u8 *fw_data;
612
613 packet_size = 0x31;
614 len_in = 1;
615
616
617 info("FRM Starting Firmware Download");
618
619 for (i = 1; i < 3; i++) {
620 start = (i == 1) ? 0 : 512;
621 end = (i == 1) ? 512 : fw->size;
622 for (j = start; j < end; j += (packet_size+1)) {
623 fw_data = (u8 *)(fw->data + j);
624 if ((end - j) > packet_size) {
625 data[0] = i;
626 dlen = packet_size;
627 } else {
628 data[0] = i | 0x80;
629 dlen = (u8)(end - j)-1;
630 }
631 data[1] = dlen;
632 memcpy(&data[2], fw_data, dlen+1);
633 wlen = (u8) dlen + 4;
634 data[wlen-1] = check_sum(fw_data, dlen+1);
635 deb_info(1, "Data S=%02x:E=%02x CS= %02x", data[3],
636 data[dlen+2], data[dlen+3]);
637 ret |= lme2510_bulk_write(dev, data, wlen, 1);
638 ret |= lme2510_bulk_read(dev, data, len_in , 1);
639 ret |= (data[0] == 0x88) ? 0 : -1;
640 }
641 }
Malcolm Priestleyf23e6612010-10-27 19:50:36 -0300642
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300643 usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
644 0x06, 0x80, 0x0200, 0x00, data, 0x0109, 1000);
645
646
647 data[0] = 0x8a;
648 len_in = 1;
649 msleep(2000);
650 ret |= lme2510_bulk_write(dev, data , len_in, 1); /*Resetting*/
651 ret |= lme2510_bulk_read(dev, data, len_in, 1);
652 msleep(400);
653
654 if (ret < 0)
655 info("FRM Firmware Download Failed (%04x)" , ret);
656 else
657 info("FRM Firmware Download Completed - Resetting Device");
658
659
660 return (ret < 0) ? -ENODEV : 0;
661}
662
Malcolm Priestleyab599a62010-10-16 16:44:43 -0300663/* Default firmware for LME2510C */
664const char lme_firmware[50] = "dvb-usb-lme2510c-s7395.fw";
665
666static void lme_coldreset(struct usb_device *dev)
667{
668 int ret = 0, len_in;
669 u8 data[512] = {0};
670
671 data[0] = 0x0a;
672 len_in = 1;
673 info("FRM Firmware Cold Reset");
674 ret |= lme2510_bulk_write(dev, data , len_in, 1); /*Cold Resetting*/
675 ret |= lme2510_bulk_read(dev, data, len_in, 1);
Malcolm Priestleyf23e6612010-10-27 19:50:36 -0300676
Malcolm Priestleyab599a62010-10-16 16:44:43 -0300677 return;
678}
679
680static void lme_firmware_switch(struct usb_device *udev, int cold)
681{
682 const struct firmware *fw = NULL;
683 char lme2510c_s7395[] = "dvb-usb-lme2510c-s7395.fw";
684 char lme2510c_lg[] = "dvb-usb-lme2510c-lg.fw";
685 char *firm_msg[] = {"Loading", "Switching to"};
686 int ret;
687
Malcolm Priestleyf23e6612010-10-27 19:50:36 -0300688 cold = (cold > 0) ? (cold & 1) : 0;
689
Malcolm Priestleyab599a62010-10-16 16:44:43 -0300690 if (udev->descriptor.idProduct == 0x1122)
691 return;
692
693 switch (dvb_usb_lme2510_firmware) {
694 case 0:
695 default:
696 memcpy(&lme_firmware, lme2510c_s7395, sizeof(lme2510c_s7395));
697 ret = request_firmware(&fw, lme_firmware, &udev->dev);
698 if (ret == 0) {
699 info("FRM %s S7395 Firmware", firm_msg[cold]);
700 break;
701 }
702 if (cold == 0)
703 dvb_usb_lme2510_firmware = 1;
704 else
705 cold = 0;
706 case 1:
707 memcpy(&lme_firmware, lme2510c_lg, sizeof(lme2510c_lg));
708 ret = request_firmware(&fw, lme_firmware, &udev->dev);
709 if (ret == 0) {
710 info("FRM %s LG Firmware", firm_msg[cold]);
711 break;
712 }
713 info("FRM No Firmware Found - please install");
714 dvb_usb_lme2510_firmware = 0;
715 cold = 0;
716 break;
717 }
Malcolm Priestleyf23e6612010-10-27 19:50:36 -0300718
Malcolm Priestleyab599a62010-10-16 16:44:43 -0300719 release_firmware(fw);
Malcolm Priestleyf23e6612010-10-27 19:50:36 -0300720
Malcolm Priestleyab599a62010-10-16 16:44:43 -0300721 if (cold)
722 lme_coldreset(udev);
Malcolm Priestleyf23e6612010-10-27 19:50:36 -0300723
Malcolm Priestleyab599a62010-10-16 16:44:43 -0300724 return;
725}
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300726
727static int lme2510_kill_urb(struct usb_data_stream *stream)
728{
729 int i;
Malcolm Priestleyf23e6612010-10-27 19:50:36 -0300730
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300731 for (i = 0; i < stream->urbs_submitted; i++) {
732 deb_info(3, "killing URB no. %d.", i);
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300733 /* stop the URB */
734 usb_kill_urb(stream->urb_list[i]);
735 }
736 stream->urbs_submitted = 0;
Malcolm Priestleyf23e6612010-10-27 19:50:36 -0300737
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300738 return 0;
739}
740
741static struct tda10086_config tda10086_config = {
742 .demod_address = 0x1c,
743 .invert = 0,
744 .diseqc_tone = 1,
745 .xtal_freq = TDA10086_XTAL_16M,
746};
747
748static struct stv0288_config lme_config = {
749 .demod_address = 0xd0,
750 .min_delay_ms = 15,
751 .inittab = s7395_inittab,
752};
753
754static struct ix2505v_config lme_tuner = {
755 .tuner_address = 0xc0,
756 .min_delay_ms = 100,
757 .tuner_gain = 0x0,
758 .tuner_chargepump = 0x3,
759};
760
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300761static int dm04_lme2510_set_voltage(struct dvb_frontend *fe,
762 fe_sec_voltage_t voltage)
763{
764 struct dvb_usb_adapter *adap = fe->dvb->priv;
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300765 static u8 voltage_low[] = LME_VOLTAGE_L;
766 static u8 voltage_high[] = LME_VOLTAGE_H;
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300767 static u8 rbuf[1];
768 int ret = 0, len = 3, rlen = 1;
769
Malcolm Priestleyf23e6612010-10-27 19:50:36 -0300770 if (mutex_lock_interruptible(&adap->dev->i2c_mutex) < 0)
771 return -EAGAIN;
Malcolm Priestleyab599a62010-10-16 16:44:43 -0300772
773 switch (voltage) {
774 case SEC_VOLTAGE_18:
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300775 ret |= lme2510_usb_talk(adap->dev,
Malcolm Priestleyab599a62010-10-16 16:44:43 -0300776 voltage_high, len, rbuf, rlen);
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300777 break;
778
Malcolm Priestleyab599a62010-10-16 16:44:43 -0300779 case SEC_VOLTAGE_OFF:
Malcolm Priestleyab599a62010-10-16 16:44:43 -0300780 case SEC_VOLTAGE_13:
781 default:
782 ret |= lme2510_usb_talk(adap->dev,
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300783 voltage_low, len, rbuf, rlen);
784 break;
Malcolm Priestleyf23e6612010-10-27 19:50:36 -0300785 }
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300786
Malcolm Priestleyf23e6612010-10-27 19:50:36 -0300787 mutex_unlock(&adap->dev->i2c_mutex);
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300788
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300789 return (ret < 0) ? -ENODEV : 0;
790}
791
792static int dm04_lme2510_frontend_attach(struct dvb_usb_adapter *adap)
793{
794 int ret = 0;
795 struct lme2510_state *st = adap->dev->priv;
796
797 /* Interupt Start */
798 ret = lme2510_int_service(adap);
799 if (ret < 0) {
800 info("INT Unable to start Interupt Service");
801 return -ENODEV;
802 }
803
804 st->i2c_talk_onoff = 1;
805 st->i2c_gate = 4;
806
807 adap->fe = dvb_attach(tda10086_attach, &tda10086_config,
808 &adap->dev->i2c_adap);
809
810 if (adap->fe) {
811 info("TUN Found Frontend TDA10086");
812 memcpy(&adap->fe->ops.info.name,
813 &"DM04_LG_TDQY-P001F DVB-S", 24);
814 adap->fe->ops.set_voltage = dm04_lme2510_set_voltage;
815 st->i2c_tuner_gate_w = 4;
816 st->i2c_tuner_gate_r = 4;
817 st->i2c_tuner_addr = 0xc0;
818 if (dvb_attach(tda826x_attach, adap->fe, 0xc0,
819 &adap->dev->i2c_adap, 1)) {
820 info("TUN TDA8263 Found");
821 st->tuner_config = TUNER_LG;
Malcolm Priestleyab599a62010-10-16 16:44:43 -0300822 if (dvb_usb_lme2510_firmware != 1) {
823 dvb_usb_lme2510_firmware = 1;
824 lme_firmware_switch(adap->dev->udev, 1);
Malcolm Priestleyf23e6612010-10-27 19:50:36 -0300825 } else /*stops LG/Sharp multi tuner problems*/
826 dvb_usb_lme2510_firmware = 0;
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300827 return 0;
828 }
829 kfree(adap->fe);
830 adap->fe = NULL;
831 }
Malcolm Priestleyf23e6612010-10-27 19:50:36 -0300832
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300833 st->i2c_gate = 5;
834 adap->fe = dvb_attach(stv0288_attach, &lme_config,
835 &adap->dev->i2c_adap);
836
837 if (adap->fe) {
838 info("FE Found Stv0288");
839 memcpy(&adap->fe->ops.info.name,
840 &"DM04_SHARP:BS2F7HZ7395", 22);
841 adap->fe->ops.set_voltage = dm04_lme2510_set_voltage;
842 st->i2c_tuner_gate_w = 4;
843 st->i2c_tuner_gate_r = 5;
844 st->i2c_tuner_addr = 0xc0;
845 if (dvb_attach(ix2505v_attach , adap->fe, &lme_tuner,
846 &adap->dev->i2c_adap)) {
847 st->tuner_config = TUNER_S7395;
848 info("TUN Sharp IX2505V silicon tuner");
Malcolm Priestleyab599a62010-10-16 16:44:43 -0300849 if (dvb_usb_lme2510_firmware != 0) {
850 dvb_usb_lme2510_firmware = 0;
851 lme_firmware_switch(adap->dev->udev, 1);
852 }
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300853 return 0;
854 }
855 kfree(adap->fe);
856 adap->fe = NULL;
857 }
858
859 info("DM04 Not Supported");
860 return -ENODEV;
861}
862
863static int lme2510_powerup(struct dvb_usb_device *d, int onoff)
864{
865 struct lme2510_state *st = d->priv;
Malcolm Priestleyf23e6612010-10-27 19:50:36 -0300866 static u8 lnb_on[] = LNB_ON;
867 static u8 lnb_off[] = LNB_OFF;
868 static u8 rbuf[1];
869 int ret, len = 3, rlen = 1;
870
871 ret = mutex_lock_interruptible(&d->i2c_mutex);
872
873 if (onoff)
874 ret |= lme2510_usb_talk(d, lnb_on, len, rbuf, rlen);
875 else
876 ret |= lme2510_usb_talk(d, lnb_off, len, rbuf, rlen);
877
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300878 st->i2c_talk_onoff = 1;
Malcolm Priestleyf23e6612010-10-27 19:50:36 -0300879
880 mutex_unlock(&d->i2c_mutex);
881
882 return ret;
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300883}
884
885/* DVB USB Driver stuff */
886static struct dvb_usb_device_properties lme2510_properties;
887static struct dvb_usb_device_properties lme2510c_properties;
888
889static int lme2510_probe(struct usb_interface *intf,
890 const struct usb_device_id *id)
891{
892 struct usb_device *udev = interface_to_usbdev(intf);
893 int ret = 0;
894
895 usb_reset_configuration(udev);
896
897 usb_set_interface(udev, intf->cur_altsetting->desc.bInterfaceNumber, 1);
898
899 if (udev->speed != USB_SPEED_HIGH) {
900 ret = usb_reset_device(udev);
901 info("DEV Failed to connect in HIGH SPEED mode");
902 return -ENODEV;
903 }
904
Malcolm Priestleyab599a62010-10-16 16:44:43 -0300905 lme_firmware_switch(udev, 0);
906
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300907 if (0 == dvb_usb_device_init(intf, &lme2510_properties,
908 THIS_MODULE, NULL, adapter_nr)) {
909 info("DEV registering device driver");
910 return 0;
911 }
912 if (0 == dvb_usb_device_init(intf, &lme2510c_properties,
913 THIS_MODULE, NULL, adapter_nr)) {
914 info("DEV registering device driver");
915 return 0;
916 }
917
918 info("DEV lme2510 Error");
919 return -ENODEV;
920
921}
922
923static struct usb_device_id lme2510_table[] = {
924 { USB_DEVICE(0x3344, 0x1122) }, /* LME2510 */
925 { USB_DEVICE(0x3344, 0x1120) }, /* LME2510C */
926 {} /* Terminating entry */
927};
928
929MODULE_DEVICE_TABLE(usb, lme2510_table);
930
931static struct dvb_usb_device_properties lme2510_properties = {
932 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
933 .usb_ctrl = DEVICE_SPECIFIC,
934 .download_firmware = lme2510_download_firmware,
935 .firmware = "dvb-usb-lme2510-lg.fw",
936
937 .size_of_priv = sizeof(struct lme2510_state),
938 .num_adapters = 1,
939 .adapter = {
940 {
941 .streaming_ctrl = lme2510_streaming_ctrl,
942 .frontend_attach = dm04_lme2510_frontend_attach,
943 /* parameter for the MPEG2-data transfer */
944 .stream = {
945 .type = USB_BULK,
946 .count = 10,
947 .endpoint = 0x06,
948 .u = {
949 .bulk = {
950 .buffersize = 4096,
951
952 }
953 }
954 }
955 }
956 },
957 .power_ctrl = lme2510_powerup,
958 .identify_state = lme2510_identify_state,
959 .i2c_algo = &lme2510_i2c_algo,
960 .generic_bulk_ctrl_endpoint = 0,
961 .num_device_descs = 1,
962 .devices = {
963 { "DM04 LME2510 DVB-S USB 2.0",
964 { &lme2510_table[0], NULL },
965 },
966
967 }
968};
969
970static struct dvb_usb_device_properties lme2510c_properties = {
971 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
972 .usb_ctrl = DEVICE_SPECIFIC,
973 .download_firmware = lme2510_download_firmware,
Malcolm Priestleyab599a62010-10-16 16:44:43 -0300974 .firmware = lme_firmware,
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300975 .size_of_priv = sizeof(struct lme2510_state),
976 .num_adapters = 1,
977 .adapter = {
978 {
979 .streaming_ctrl = lme2510_streaming_ctrl,
980 .frontend_attach = dm04_lme2510_frontend_attach,
981 /* parameter for the MPEG2-data transfer */
982 .stream = {
983 .type = USB_BULK,
Malcolm Priestleyab599a62010-10-16 16:44:43 -0300984 .count = 10,
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -0300985 .endpoint = 0x8,
986 .u = {
987 .bulk = {
988 .buffersize = 4096,
989
990 }
991 }
992 }
993 }
994 },
995 .power_ctrl = lme2510_powerup,
996 .identify_state = lme2510_identify_state,
997 .i2c_algo = &lme2510_i2c_algo,
998 .generic_bulk_ctrl_endpoint = 0,
999 .num_device_descs = 1,
1000 .devices = {
1001 { "DM04 LME2510C USB2.0",
1002 { &lme2510_table[1], NULL },
1003 },
1004 }
1005};
1006
Malcolm Priestleyab599a62010-10-16 16:44:43 -03001007void *lme2510_exit_int(struct dvb_usb_device *d)
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -03001008{
1009 struct lme2510_state *st = d->priv;
Malcolm Priestleyab599a62010-10-16 16:44:43 -03001010 struct dvb_usb_adapter *adap = &d->adapter[0];
1011 void *buffer = NULL;
1012
1013 if (adap != NULL) {
1014 lme2510_kill_urb(&adap->stream);
1015 adap->feedcount = 0;
1016 }
1017
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -03001018 if (st->lme_urb != NULL) {
Malcolm Priestleyab599a62010-10-16 16:44:43 -03001019 st->i2c_talk_onoff = 1;
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -03001020 st->signal_lock = 0;
1021 st->signal_level = 0;
1022 st->signal_sn = 0;
Malcolm Priestleyab599a62010-10-16 16:44:43 -03001023 buffer = st->usb_buffer;
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -03001024 usb_kill_urb(st->lme_urb);
1025 usb_free_coherent(d->udev, 5000, st->buffer,
1026 st->lme_urb->transfer_dma);
1027 info("Interupt Service Stopped");
1028 ir_input_unregister(d->rc_input_dev);
1029 info("Remote Stopped");
1030 }
Malcolm Priestleyab599a62010-10-16 16:44:43 -03001031 return buffer;
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -03001032}
1033
1034void lme2510_exit(struct usb_interface *intf)
1035{
1036 struct dvb_usb_device *d = usb_get_intfdata(intf);
Malcolm Priestleyab599a62010-10-16 16:44:43 -03001037 void *usb_buffer;
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -03001038
Malcolm Priestleyab599a62010-10-16 16:44:43 -03001039 if (d != NULL) {
1040 usb_buffer = lme2510_exit_int(d);
1041 dvb_usb_device_exit(intf);
1042 kfree(usb_buffer);
1043 }
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -03001044}
1045
1046static struct usb_driver lme2510_driver = {
1047 .name = "LME2510C_DVBS",
1048 .probe = lme2510_probe,
1049 .disconnect = lme2510_exit,
1050 .id_table = lme2510_table,
1051};
1052
1053/* module stuff */
1054static int __init lme2510_module_init(void)
1055{
1056 int result = usb_register(&lme2510_driver);
1057 if (result) {
1058 err("usb_register failed. Error number %d", result);
1059 return result;
1060 }
1061
1062 return 0;
1063}
1064
1065static void __exit lme2510_module_exit(void)
1066{
1067 /* deregister this driver from the USB subsystem */
1068 usb_deregister(&lme2510_driver);
1069}
1070
1071module_init(lme2510_module_init);
1072module_exit(lme2510_module_exit);
1073
1074MODULE_AUTHOR("Malcolm Priestley <tvboxspy@gmail.com>");
1075MODULE_DESCRIPTION("LM2510(C) DVB-S USB2.0");
Malcolm Priestleyf23e6612010-10-27 19:50:36 -03001076MODULE_VERSION("1.70");
Malcolm Priestleyd2f918b2010-09-02 17:29:30 -03001077MODULE_LICENSE("GPL");