1 /* DVB USB compliant linux driver for Conexant USB reference design.
3 * The Conexant reference design I saw on their website was only for analogue
4 * capturing (using the cx25842). The box I took to write this driver (reverse
5 * engineered) is the one labeled Medion MD95700. In addition to the cx25842
6 * for analogue capturing it also has a cx22702 DVB-T demodulator on the main
7 * board. Besides it has a atiremote (X10) and a USB2.0 hub onboard.
9 * Maybe it is a little bit premature to call this driver cxusb, but I assume
10 * the USB protocol is identical or at least inherited from the reference
11 * design, so it can be reused for the "analogue-only" device (if it will
14 * TODO: Use the cx25840-driver for the analogue part
16 * Copyright (C) 2005 Patrick Boettcher (patrick.boettcher@desy.de)
17 * Copyright (C) 2006 Michael Krufky (mkrufky@linuxtv.org)
18 * Copyright (C) 2006, 2007 Chris Pascoe (c.pascoe@itee.uq.edu.au)
20 * This program is free software; you can redistribute it and/or modify it
21 * under the terms of the GNU General Public License as published by the Free
22 * Software Foundation, version 2.
24 * see Documentation/dvb/README.dvb-usb for more information
26 #include <media/tuner.h>
27 #include <linux/vmalloc.h>
28 #include <linux/slab.h>
35 #include "mt352_priv.h"
37 #include "tuner-xc2028.h"
38 #include "tuner-simple.h"
47 static int dvb_usb_cxusb_debug
;
48 module_param_named(debug
, dvb_usb_cxusb_debug
, int, 0644);
49 MODULE_PARM_DESC(debug
, "set debugging level (1=rc (or-able))." DVB_USB_DEBUG_STATUS
);
51 DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr
);
53 #define deb_info(args...) dprintk(dvb_usb_cxusb_debug, 0x03, args)
54 #define deb_i2c(args...) dprintk(dvb_usb_cxusb_debug, 0x02, args)
56 static int cxusb_ctrl_msg(struct dvb_usb_device
*d
,
57 u8 cmd
, u8
*wbuf
, int wlen
, u8
*rbuf
, int rlen
)
59 int wo
= (rbuf
== NULL
|| rlen
== 0); /* write-only */
61 memset(sndbuf
, 0, 1+wlen
);
64 memcpy(&sndbuf
[1], wbuf
, wlen
);
66 return dvb_usb_generic_write(d
, sndbuf
, 1+wlen
);
68 return dvb_usb_generic_rw(d
, sndbuf
, 1+wlen
, rbuf
, rlen
, 0);
72 static void cxusb_gpio_tuner(struct dvb_usb_device
*d
, int onoff
)
74 struct cxusb_state
*st
= d
->priv
;
77 if (st
->gpio_write_state
[GPIO_TUNER
] == onoff
)
82 cxusb_ctrl_msg(d
, CMD_GPIO_WRITE
, o
, 2, &i
, 1);
85 deb_info("gpio_write failed.\n");
87 st
->gpio_write_state
[GPIO_TUNER
] = onoff
;
90 static int cxusb_bluebird_gpio_rw(struct dvb_usb_device
*d
, u8 changemask
,
96 o
[0] = 0xff & ~changemask
; /* mask of bits to keep */
97 o
[1] = newval
& changemask
; /* new values for bits */
99 rc
= cxusb_ctrl_msg(d
, CMD_BLUEBIRD_GPIO_RW
, o
, 2, &gpio_state
, 1);
100 if (rc
< 0 || (gpio_state
& changemask
) != (newval
& changemask
))
101 deb_info("bluebird_gpio_write failed.\n");
103 return rc
< 0 ? rc
: gpio_state
;
106 static void cxusb_bluebird_gpio_pulse(struct dvb_usb_device
*d
, u8 pin
, int low
)
108 cxusb_bluebird_gpio_rw(d
, pin
, low
? 0 : pin
);
110 cxusb_bluebird_gpio_rw(d
, pin
, low
? pin
: 0);
113 static void cxusb_nano2_led(struct dvb_usb_device
*d
, int onoff
)
115 cxusb_bluebird_gpio_rw(d
, 0x40, onoff
? 0 : 0x40);
118 static int cxusb_d680_dmb_gpio_tuner(struct dvb_usb_device
*d
,
121 u8 o
[2] = {addr
, onoff
};
125 rc
= cxusb_ctrl_msg(d
, CMD_GPIO_WRITE
, o
, 2, &i
, 1);
132 deb_info("gpio_write failed.\n");
138 static int cxusb_i2c_xfer(struct i2c_adapter
*adap
, struct i2c_msg msg
[],
141 struct dvb_usb_device
*d
= i2c_get_adapdata(adap
);
144 if (mutex_lock_interruptible(&d
->i2c_mutex
) < 0)
147 for (i
= 0; i
< num
; i
++) {
149 if (d
->udev
->descriptor
.idVendor
== USB_VID_MEDION
)
150 switch (msg
[i
].addr
) {
152 cxusb_gpio_tuner(d
, 0);
155 cxusb_gpio_tuner(d
, 1);
159 if (msg
[i
].flags
& I2C_M_RD
) {
161 u8 obuf
[3], ibuf
[1+msg
[i
].len
];
163 obuf
[1] = msg
[i
].len
;
164 obuf
[2] = msg
[i
].addr
;
165 if (cxusb_ctrl_msg(d
, CMD_I2C_READ
,
167 ibuf
, 1+msg
[i
].len
) < 0) {
168 warn("i2c read failed");
171 memcpy(msg
[i
].buf
, &ibuf
[1], msg
[i
].len
);
172 } else if (i
+1 < num
&& (msg
[i
+1].flags
& I2C_M_RD
) &&
173 msg
[i
].addr
== msg
[i
+1].addr
) {
174 /* write to then read from same address */
175 u8 obuf
[3+msg
[i
].len
], ibuf
[1+msg
[i
+1].len
];
176 obuf
[0] = msg
[i
].len
;
177 obuf
[1] = msg
[i
+1].len
;
178 obuf
[2] = msg
[i
].addr
;
179 memcpy(&obuf
[3], msg
[i
].buf
, msg
[i
].len
);
181 if (cxusb_ctrl_msg(d
, CMD_I2C_READ
,
183 ibuf
, 1+msg
[i
+1].len
) < 0)
187 deb_i2c("i2c read may have failed\n");
189 memcpy(msg
[i
+1].buf
, &ibuf
[1], msg
[i
+1].len
);
194 u8 obuf
[2+msg
[i
].len
], ibuf
;
195 obuf
[0] = msg
[i
].addr
;
196 obuf
[1] = msg
[i
].len
;
197 memcpy(&obuf
[2], msg
[i
].buf
, msg
[i
].len
);
199 if (cxusb_ctrl_msg(d
, CMD_I2C_WRITE
, obuf
,
200 2+msg
[i
].len
, &ibuf
,1) < 0)
203 deb_i2c("i2c write may have failed\n");
207 mutex_unlock(&d
->i2c_mutex
);
208 return i
== num
? num
: -EREMOTEIO
;
211 static u32
cxusb_i2c_func(struct i2c_adapter
*adapter
)
216 static struct i2c_algorithm cxusb_i2c_algo
= {
217 .master_xfer
= cxusb_i2c_xfer
,
218 .functionality
= cxusb_i2c_func
,
221 static int cxusb_power_ctrl(struct dvb_usb_device
*d
, int onoff
)
225 return cxusb_ctrl_msg(d
, CMD_POWER_ON
, &b
, 1, NULL
, 0);
227 return cxusb_ctrl_msg(d
, CMD_POWER_OFF
, &b
, 1, NULL
, 0);
230 static int cxusb_aver_power_ctrl(struct dvb_usb_device
*d
, int onoff
)
234 return cxusb_ctrl_msg(d
, CMD_POWER_OFF
, NULL
, 0, NULL
, 0);
235 if (d
->state
== DVB_USB_STATE_INIT
&&
236 usb_set_interface(d
->udev
, 0, 0) < 0)
237 err("set interface failed");
238 do {} while (!(ret
= cxusb_ctrl_msg(d
, CMD_POWER_ON
, NULL
, 0, NULL
, 0)) &&
239 !(ret
= cxusb_ctrl_msg(d
, 0x15, NULL
, 0, NULL
, 0)) &&
240 !(ret
= cxusb_ctrl_msg(d
, 0x17, NULL
, 0, NULL
, 0)) && 0);
242 /* FIXME: We don't know why, but we need to configure the
243 * lgdt3303 with the register settings below on resume */
246 0x0e, 0x2, 0x00, 0x7f,
247 0x0e, 0x2, 0x02, 0xfe,
248 0x0e, 0x2, 0x02, 0x01,
249 0x0e, 0x2, 0x00, 0x03,
250 0x0e, 0x2, 0x0d, 0x40,
251 0x0e, 0x2, 0x0e, 0x87,
252 0x0e, 0x2, 0x0f, 0x8e,
253 0x0e, 0x2, 0x10, 0x01,
254 0x0e, 0x2, 0x14, 0xd7,
255 0x0e, 0x2, 0x47, 0x88,
258 for (i
= 0; i
< sizeof(bufs
)/sizeof(u8
); i
+= 4/sizeof(u8
)) {
259 ret
= cxusb_ctrl_msg(d
, CMD_I2C_WRITE
,
270 static int cxusb_bluebird_power_ctrl(struct dvb_usb_device
*d
, int onoff
)
274 return cxusb_ctrl_msg(d
, CMD_POWER_ON
, &b
, 1, NULL
, 0);
279 static int cxusb_nano2_power_ctrl(struct dvb_usb_device
*d
, int onoff
)
283 rc
= cxusb_power_ctrl(d
, onoff
);
285 cxusb_nano2_led(d
, 0);
290 static int cxusb_d680_dmb_power_ctrl(struct dvb_usb_device
*d
, int onoff
)
294 ret
= cxusb_power_ctrl(d
, onoff
);
299 cxusb_ctrl_msg(d
, CMD_DIGITAL
, NULL
, 0, &b
, 1);
304 static int cxusb_streaming_ctrl(struct dvb_usb_adapter
*adap
, int onoff
)
306 u8 buf
[2] = { 0x03, 0x00 };
308 cxusb_ctrl_msg(adap
->dev
, CMD_STREAMING_ON
, buf
, 2, NULL
, 0);
310 cxusb_ctrl_msg(adap
->dev
, CMD_STREAMING_OFF
, NULL
, 0, NULL
, 0);
315 static int cxusb_aver_streaming_ctrl(struct dvb_usb_adapter
*adap
, int onoff
)
318 cxusb_ctrl_msg(adap
->dev
, CMD_AVER_STREAM_ON
, NULL
, 0, NULL
, 0);
320 cxusb_ctrl_msg(adap
->dev
, CMD_AVER_STREAM_OFF
,
325 static void cxusb_d680_dmb_drain_message(struct dvb_usb_device
*d
)
327 int ep
= d
->props
.generic_bulk_ctrl_endpoint
;
328 const int timeout
= 100;
329 const int junk_len
= 32;
333 /* Discard remaining data in video pipe */
334 junk
= kmalloc(junk_len
, GFP_KERNEL
);
338 if (usb_bulk_msg(d
->udev
,
339 usb_rcvbulkpipe(d
->udev
, ep
),
340 junk
, junk_len
, &rd_count
, timeout
) < 0)
348 static void cxusb_d680_dmb_drain_video(struct dvb_usb_device
*d
)
350 struct usb_data_stream_properties
*p
= &d
->props
.adapter
[0].stream
;
351 const int timeout
= 100;
352 const int junk_len
= p
->u
.bulk
.buffersize
;
356 /* Discard remaining data in video pipe */
357 junk
= kmalloc(junk_len
, GFP_KERNEL
);
361 if (usb_bulk_msg(d
->udev
,
362 usb_rcvbulkpipe(d
->udev
, p
->endpoint
),
363 junk
, junk_len
, &rd_count
, timeout
) < 0)
371 static int cxusb_d680_dmb_streaming_ctrl(
372 struct dvb_usb_adapter
*adap
, int onoff
)
375 u8 buf
[2] = { 0x03, 0x00 };
376 cxusb_d680_dmb_drain_video(adap
->dev
);
377 return cxusb_ctrl_msg(adap
->dev
, CMD_STREAMING_ON
,
378 buf
, sizeof(buf
), NULL
, 0);
380 int ret
= cxusb_ctrl_msg(adap
->dev
,
381 CMD_STREAMING_OFF
, NULL
, 0, NULL
, 0);
386 static int cxusb_rc_query(struct dvb_usb_device
*d
, u32
*event
, int *state
)
388 struct dvb_usb_rc_key
*keymap
= d
->props
.rc_key_map
;
392 cxusb_ctrl_msg(d
, CMD_GET_IR_CODE
, NULL
, 0, ircode
, 4);
395 *state
= REMOTE_NO_KEY_PRESSED
;
397 for (i
= 0; i
< d
->props
.rc_key_map_size
; i
++) {
398 if (rc5_custom(&keymap
[i
]) == ircode
[2] &&
399 rc5_data(&keymap
[i
]) == ircode
[3]) {
400 *event
= keymap
[i
].event
;
401 *state
= REMOTE_KEY_PRESSED
;
410 static int cxusb_bluebird2_rc_query(struct dvb_usb_device
*d
, u32
*event
,
413 struct dvb_usb_rc_key
*keymap
= d
->props
.rc_key_map
;
416 struct i2c_msg msg
= { .addr
= 0x6b, .flags
= I2C_M_RD
,
417 .buf
= ircode
, .len
= 4 };
420 *state
= REMOTE_NO_KEY_PRESSED
;
422 if (cxusb_i2c_xfer(&d
->i2c_adap
, &msg
, 1) != 1)
425 for (i
= 0; i
< d
->props
.rc_key_map_size
; i
++) {
426 if (rc5_custom(&keymap
[i
]) == ircode
[1] &&
427 rc5_data(&keymap
[i
]) == ircode
[2]) {
428 *event
= keymap
[i
].event
;
429 *state
= REMOTE_KEY_PRESSED
;
438 static int cxusb_d680_dmb_rc_query(struct dvb_usb_device
*d
, u32
*event
,
441 struct dvb_usb_rc_key
*keymap
= d
->props
.rc_key_map
;
446 *state
= REMOTE_NO_KEY_PRESSED
;
448 if (cxusb_ctrl_msg(d
, 0x10, NULL
, 0, ircode
, 2) < 0)
451 for (i
= 0; i
< d
->props
.rc_key_map_size
; i
++) {
452 if (rc5_custom(&keymap
[i
]) == ircode
[0] &&
453 rc5_data(&keymap
[i
]) == ircode
[1]) {
454 *event
= keymap
[i
].event
;
455 *state
= REMOTE_KEY_PRESSED
;
464 static struct dvb_usb_rc_key dvico_mce_rc_keys
[] = {
468 { 0xfe1e, KEY_FAVORITES
},
469 { 0xfe16, KEY_SETUP
},
470 { 0xfe46, KEY_POWER2
},
472 { 0xfe49, KEY_BACK
},
473 { 0xfe4d, KEY_MENU
},
475 { 0xfe5b, KEY_LEFT
},
476 { 0xfe5f, KEY_RIGHT
},
477 { 0xfe53, KEY_DOWN
},
479 { 0xfe59, KEY_INFO
},
481 { 0xfe0f, KEY_PREVIOUSSONG
},/* Replay */
482 { 0xfe12, KEY_NEXTSONG
}, /* Skip */
483 { 0xfe42, KEY_ENTER
}, /* Windows/Start */
484 { 0xfe15, KEY_VOLUMEUP
},
485 { 0xfe05, KEY_VOLUMEDOWN
},
486 { 0xfe11, KEY_CHANNELUP
},
487 { 0xfe09, KEY_CHANNELDOWN
},
488 { 0xfe52, KEY_CAMERA
},
489 { 0xfe5a, KEY_TUNER
}, /* Live */
490 { 0xfe19, KEY_OPEN
},
500 { 0xfe13, KEY_ANGLE
}, /* Aspect */
502 { 0xfe1f, KEY_ZOOM
},
503 { 0xfe43, KEY_REWIND
},
504 { 0xfe47, KEY_PLAYPAUSE
},
505 { 0xfe4f, KEY_FASTFORWARD
},
506 { 0xfe57, KEY_MUTE
},
507 { 0xfe0d, KEY_STOP
},
508 { 0xfe01, KEY_RECORD
},
509 { 0xfe4e, KEY_POWER
},
512 static struct dvb_usb_rc_key dvico_portable_rc_keys
[] = {
513 { 0xfc02, KEY_SETUP
}, /* Profile */
514 { 0xfc43, KEY_POWER2
},
516 { 0xfc5a, KEY_BACK
},
517 { 0xfc05, KEY_MENU
},
518 { 0xfc47, KEY_INFO
},
520 { 0xfc42, KEY_PREVIOUSSONG
},/* Replay */
521 { 0xfc49, KEY_VOLUMEUP
},
522 { 0xfc09, KEY_VOLUMEDOWN
},
523 { 0xfc54, KEY_CHANNELUP
},
524 { 0xfc0b, KEY_CHANNELDOWN
},
525 { 0xfc16, KEY_CAMERA
},
526 { 0xfc40, KEY_TUNER
}, /* ATV/DTV */
527 { 0xfc45, KEY_OPEN
},
537 { 0xfc44, KEY_ANGLE
}, /* Aspect */
539 { 0xfc07, KEY_ZOOM
},
540 { 0xfc0a, KEY_REWIND
},
541 { 0xfc08, KEY_PLAYPAUSE
},
542 { 0xfc4b, KEY_FASTFORWARD
},
543 { 0xfc5b, KEY_MUTE
},
544 { 0xfc04, KEY_STOP
},
545 { 0xfc56, KEY_RECORD
},
546 { 0xfc57, KEY_POWER
},
547 { 0xfc41, KEY_UNKNOWN
}, /* INPUT */
548 { 0xfc00, KEY_UNKNOWN
}, /* HD */
551 static struct dvb_usb_rc_key d680_dmb_rc_keys
[] = {
552 { 0x0038, KEY_UNKNOWN
}, /* TV/AV */
553 { 0x080c, KEY_ZOOM
},
564 { 0x000a, KEY_MUTE
},
565 { 0x0829, KEY_BACK
},
566 { 0x0012, KEY_CHANNELUP
},
567 { 0x0813, KEY_CHANNELDOWN
},
568 { 0x002b, KEY_VOLUMEUP
},
569 { 0x082c, KEY_VOLUMEDOWN
},
571 { 0x0821, KEY_DOWN
},
572 { 0x0011, KEY_LEFT
},
573 { 0x0810, KEY_RIGHT
},
575 { 0x081f, KEY_RECORD
},
576 { 0x0017, KEY_PLAYPAUSE
},
577 { 0x0816, KEY_PLAYPAUSE
},
578 { 0x000b, KEY_STOP
},
579 { 0x0827, KEY_FASTFORWARD
},
580 { 0x0026, KEY_REWIND
},
581 { 0x081e, KEY_UNKNOWN
}, /* Time Shift */
582 { 0x000e, KEY_UNKNOWN
}, /* Snapshot */
583 { 0x082d, KEY_UNKNOWN
}, /* Mouse Cursor */
584 { 0x000f, KEY_UNKNOWN
}, /* Minimize/Maximize */
585 { 0x0814, KEY_UNKNOWN
}, /* Shuffle */
586 { 0x0025, KEY_POWER
},
589 static int cxusb_dee1601_demod_init(struct dvb_frontend
* fe
)
591 static u8 clock_config
[] = { CLOCK_CTL
, 0x38, 0x28 };
592 static u8 reset
[] = { RESET
, 0x80 };
593 static u8 adc_ctl_1_cfg
[] = { ADC_CTL_1
, 0x40 };
594 static u8 agc_cfg
[] = { AGC_TARGET
, 0x28, 0x20 };
595 static u8 gpp_ctl_cfg
[] = { GPP_CTL
, 0x33 };
596 static u8 capt_range_cfg
[] = { CAPT_RANGE
, 0x32 };
598 mt352_write(fe
, clock_config
, sizeof(clock_config
));
600 mt352_write(fe
, reset
, sizeof(reset
));
601 mt352_write(fe
, adc_ctl_1_cfg
, sizeof(adc_ctl_1_cfg
));
603 mt352_write(fe
, agc_cfg
, sizeof(agc_cfg
));
604 mt352_write(fe
, gpp_ctl_cfg
, sizeof(gpp_ctl_cfg
));
605 mt352_write(fe
, capt_range_cfg
, sizeof(capt_range_cfg
));
610 static int cxusb_mt352_demod_init(struct dvb_frontend
* fe
)
611 { /* used in both lgz201 and th7579 */
612 static u8 clock_config
[] = { CLOCK_CTL
, 0x38, 0x29 };
613 static u8 reset
[] = { RESET
, 0x80 };
614 static u8 adc_ctl_1_cfg
[] = { ADC_CTL_1
, 0x40 };
615 static u8 agc_cfg
[] = { AGC_TARGET
, 0x24, 0x20 };
616 static u8 gpp_ctl_cfg
[] = { GPP_CTL
, 0x33 };
617 static u8 capt_range_cfg
[] = { CAPT_RANGE
, 0x32 };
619 mt352_write(fe
, clock_config
, sizeof(clock_config
));
621 mt352_write(fe
, reset
, sizeof(reset
));
622 mt352_write(fe
, adc_ctl_1_cfg
, sizeof(adc_ctl_1_cfg
));
624 mt352_write(fe
, agc_cfg
, sizeof(agc_cfg
));
625 mt352_write(fe
, gpp_ctl_cfg
, sizeof(gpp_ctl_cfg
));
626 mt352_write(fe
, capt_range_cfg
, sizeof(capt_range_cfg
));
630 static struct cx22702_config cxusb_cx22702_config
= {
631 .demod_address
= 0x63,
632 .output_mode
= CX22702_PARALLEL_OUTPUT
,
635 static struct lgdt330x_config cxusb_lgdt3303_config
= {
636 .demod_address
= 0x0e,
637 .demod_chip
= LGDT3303
,
640 static struct lgdt330x_config cxusb_aver_lgdt3303_config
= {
641 .demod_address
= 0x0e,
642 .demod_chip
= LGDT3303
,
643 .clock_polarity_flip
= 2,
646 static struct mt352_config cxusb_dee1601_config
= {
647 .demod_address
= 0x0f,
648 .demod_init
= cxusb_dee1601_demod_init
,
651 static struct zl10353_config cxusb_zl10353_dee1601_config
= {
652 .demod_address
= 0x0f,
656 static struct mt352_config cxusb_mt352_config
= {
657 /* used in both lgz201 and th7579 */
658 .demod_address
= 0x0f,
659 .demod_init
= cxusb_mt352_demod_init
,
662 static struct zl10353_config cxusb_zl10353_xc3028_config
= {
663 .demod_address
= 0x0f,
669 static struct zl10353_config cxusb_zl10353_xc3028_config_no_i2c_gate
= {
670 .demod_address
= 0x0f,
674 .disable_i2c_gate_ctrl
= 1,
677 static struct mt352_config cxusb_mt352_xc3028_config
= {
678 .demod_address
= 0x0f,
681 .demod_init
= cxusb_mt352_demod_init
,
684 /* FIXME: needs tweaking */
685 static struct mxl5005s_config aver_a868r_tuner
= {
687 .if_freq
= 6000000UL,
688 .xtal_freq
= CRYSTAL_FREQ_16000000HZ
,
689 .agc_mode
= MXL_SINGLE_AGC
,
690 .tracking_filter
= MXL_TF_C
,
691 .rssi_enable
= MXL_RSSI_ENABLE
,
692 .cap_select
= MXL_CAP_SEL_ENABLE
,
693 .div_out
= MXL_DIV_OUT_4
,
694 .clock_out
= MXL_CLOCK_OUT_DISABLE
,
695 .output_load
= MXL5005S_IF_OUTPUT_LOAD_200_OHM
,
696 .top
= MXL5005S_TOP_25P2
,
697 .mod_mode
= MXL_DIGITAL_MODE
,
698 .if_mode
= MXL_ZERO_IF
,
699 .AgcMasterByte
= 0x00,
702 /* FIXME: needs tweaking */
703 static struct mxl5005s_config d680_dmb_tuner
= {
705 .if_freq
= 36125000UL,
706 .xtal_freq
= CRYSTAL_FREQ_16000000HZ
,
707 .agc_mode
= MXL_SINGLE_AGC
,
708 .tracking_filter
= MXL_TF_C
,
709 .rssi_enable
= MXL_RSSI_ENABLE
,
710 .cap_select
= MXL_CAP_SEL_ENABLE
,
711 .div_out
= MXL_DIV_OUT_4
,
712 .clock_out
= MXL_CLOCK_OUT_DISABLE
,
713 .output_load
= MXL5005S_IF_OUTPUT_LOAD_200_OHM
,
714 .top
= MXL5005S_TOP_25P2
,
715 .mod_mode
= MXL_DIGITAL_MODE
,
716 .if_mode
= MXL_ZERO_IF
,
717 .AgcMasterByte
= 0x00,
720 static struct max2165_config mygica_d689_max2165_cfg
= {
725 /* Callbacks for DVB USB */
726 static int cxusb_fmd1216me_tuner_attach(struct dvb_usb_adapter
*adap
)
728 dvb_attach(simple_tuner_attach
, adap
->fe
,
729 &adap
->dev
->i2c_adap
, 0x61,
730 TUNER_PHILIPS_FMD1216ME_MK3
);
734 static int cxusb_dee1601_tuner_attach(struct dvb_usb_adapter
*adap
)
736 dvb_attach(dvb_pll_attach
, adap
->fe
, 0x61,
737 NULL
, DVB_PLL_THOMSON_DTT7579
);
741 static int cxusb_lgz201_tuner_attach(struct dvb_usb_adapter
*adap
)
743 dvb_attach(dvb_pll_attach
, adap
->fe
, 0x61, NULL
, DVB_PLL_LG_Z201
);
747 static int cxusb_dtt7579_tuner_attach(struct dvb_usb_adapter
*adap
)
749 dvb_attach(dvb_pll_attach
, adap
->fe
, 0x60,
750 NULL
, DVB_PLL_THOMSON_DTT7579
);
754 static int cxusb_lgh064f_tuner_attach(struct dvb_usb_adapter
*adap
)
756 dvb_attach(simple_tuner_attach
, adap
->fe
,
757 &adap
->dev
->i2c_adap
, 0x61, TUNER_LG_TDVS_H06XF
);
761 static int dvico_bluebird_xc2028_callback(void *ptr
, int component
,
762 int command
, int arg
)
764 struct dvb_usb_adapter
*adap
= ptr
;
765 struct dvb_usb_device
*d
= adap
->dev
;
768 case XC2028_TUNER_RESET
:
769 deb_info("%s: XC2028_TUNER_RESET %d\n", __func__
, arg
);
770 cxusb_bluebird_gpio_pulse(d
, 0x01, 1);
772 case XC2028_RESET_CLK
:
773 deb_info("%s: XC2028_RESET_CLK %d\n", __func__
, arg
);
776 deb_info("%s: unknown command %d, arg %d\n", __func__
,
784 static int cxusb_dvico_xc3028_tuner_attach(struct dvb_usb_adapter
*adap
)
786 struct dvb_frontend
*fe
;
787 struct xc2028_config cfg
= {
788 .i2c_adap
= &adap
->dev
->i2c_adap
,
791 static struct xc2028_ctrl ctl
= {
792 .fname
= XC2028_DEFAULT_FIRMWARE
,
794 .demod
= XC3028_FE_ZARLINK456
,
797 /* FIXME: generalize & move to common area */
798 adap
->fe
->callback
= dvico_bluebird_xc2028_callback
;
800 fe
= dvb_attach(xc2028_attach
, adap
->fe
, &cfg
);
801 if (fe
== NULL
|| fe
->ops
.tuner_ops
.set_config
== NULL
)
804 fe
->ops
.tuner_ops
.set_config(fe
, &ctl
);
809 static int cxusb_mxl5003s_tuner_attach(struct dvb_usb_adapter
*adap
)
811 dvb_attach(mxl5005s_attach
, adap
->fe
,
812 &adap
->dev
->i2c_adap
, &aver_a868r_tuner
);
816 static int cxusb_d680_dmb_tuner_attach(struct dvb_usb_adapter
*adap
)
818 struct dvb_frontend
*fe
;
819 fe
= dvb_attach(mxl5005s_attach
, adap
->fe
,
820 &adap
->dev
->i2c_adap
, &d680_dmb_tuner
);
821 return (fe
== NULL
) ? -EIO
: 0;
824 static int cxusb_mygica_d689_tuner_attach(struct dvb_usb_adapter
*adap
)
826 struct dvb_frontend
*fe
;
827 fe
= dvb_attach(max2165_attach
, adap
->fe
,
828 &adap
->dev
->i2c_adap
, &mygica_d689_max2165_cfg
);
829 return (fe
== NULL
) ? -EIO
: 0;
832 static int cxusb_cx22702_frontend_attach(struct dvb_usb_adapter
*adap
)
835 if (usb_set_interface(adap
->dev
->udev
, 0, 6) < 0)
836 err("set interface failed");
838 cxusb_ctrl_msg(adap
->dev
, CMD_DIGITAL
, NULL
, 0, &b
, 1);
840 if ((adap
->fe
= dvb_attach(cx22702_attach
, &cxusb_cx22702_config
,
841 &adap
->dev
->i2c_adap
)) != NULL
)
847 static int cxusb_lgdt3303_frontend_attach(struct dvb_usb_adapter
*adap
)
849 if (usb_set_interface(adap
->dev
->udev
, 0, 7) < 0)
850 err("set interface failed");
852 cxusb_ctrl_msg(adap
->dev
, CMD_DIGITAL
, NULL
, 0, NULL
, 0);
854 if ((adap
->fe
= dvb_attach(lgdt330x_attach
, &cxusb_lgdt3303_config
,
855 &adap
->dev
->i2c_adap
)) != NULL
)
861 static int cxusb_aver_lgdt3303_frontend_attach(struct dvb_usb_adapter
*adap
)
863 adap
->fe
= dvb_attach(lgdt330x_attach
, &cxusb_aver_lgdt3303_config
,
864 &adap
->dev
->i2c_adap
);
865 if (adap
->fe
!= NULL
)
871 static int cxusb_mt352_frontend_attach(struct dvb_usb_adapter
*adap
)
873 /* used in both lgz201 and th7579 */
874 if (usb_set_interface(adap
->dev
->udev
, 0, 0) < 0)
875 err("set interface failed");
877 cxusb_ctrl_msg(adap
->dev
, CMD_DIGITAL
, NULL
, 0, NULL
, 0);
879 if ((adap
->fe
= dvb_attach(mt352_attach
, &cxusb_mt352_config
,
880 &adap
->dev
->i2c_adap
)) != NULL
)
886 static int cxusb_dee1601_frontend_attach(struct dvb_usb_adapter
*adap
)
888 if (usb_set_interface(adap
->dev
->udev
, 0, 0) < 0)
889 err("set interface failed");
891 cxusb_ctrl_msg(adap
->dev
, CMD_DIGITAL
, NULL
, 0, NULL
, 0);
893 if (((adap
->fe
= dvb_attach(mt352_attach
, &cxusb_dee1601_config
,
894 &adap
->dev
->i2c_adap
)) != NULL
) ||
895 ((adap
->fe
= dvb_attach(zl10353_attach
,
896 &cxusb_zl10353_dee1601_config
,
897 &adap
->dev
->i2c_adap
)) != NULL
))
903 static int cxusb_dualdig4_frontend_attach(struct dvb_usb_adapter
*adap
)
907 struct i2c_msg msg
= { .addr
= 0x6b, .flags
= I2C_M_RD
,
908 .buf
= ircode
, .len
= 4 };
910 if (usb_set_interface(adap
->dev
->udev
, 0, 1) < 0)
911 err("set interface failed");
913 cxusb_ctrl_msg(adap
->dev
, CMD_DIGITAL
, NULL
, 0, NULL
, 0);
915 /* reset the tuner and demodulator */
916 cxusb_bluebird_gpio_rw(adap
->dev
, 0x04, 0);
917 cxusb_bluebird_gpio_pulse(adap
->dev
, 0x01, 1);
918 cxusb_bluebird_gpio_pulse(adap
->dev
, 0x02, 1);
920 if ((adap
->fe
= dvb_attach(zl10353_attach
,
921 &cxusb_zl10353_xc3028_config_no_i2c_gate
,
922 &adap
->dev
->i2c_adap
)) == NULL
)
925 /* try to determine if there is no IR decoder on the I2C bus */
926 for (i
= 0; adap
->dev
->props
.rc_key_map
!= NULL
&& i
< 5; i
++) {
928 if (cxusb_i2c_xfer(&adap
->dev
->i2c_adap
, &msg
, 1) != 1)
930 if (ircode
[0] == 0 && ircode
[1] == 0)
932 if (ircode
[2] + ircode
[3] != 0xff) {
934 adap
->dev
->props
.rc_key_map
= NULL
;
935 info("No IR receiver detected on this device.");
943 static struct dibx000_agc_config dib7070_agc_config
= {
944 .band_caps
= BAND_UHF
| BAND_VHF
| BAND_LBAND
| BAND_SBAND
,
947 * P_agc_use_sd_mod1=0, P_agc_use_sd_mod2=0, P_agc_freq_pwm_div=5,
948 * P_agc_inv_pwm1=0, P_agc_inv_pwm2=0, P_agc_inh_dc_rv_est=0,
949 * P_agc_time_est=3, P_agc_freeze=0, P_agc_nb_est=5, P_agc_write=0
951 .setup
= (0 << 15) | (0 << 14) | (5 << 11) | (0 << 10) | (0 << 9) |
952 (0 << 8) | (3 << 5) | (0 << 4) | (5 << 1) | (0 << 0),
978 .perform_agc_softsplit
= 0,
981 static struct dibx000_bandwidth_config dib7070_bw_config_12_mhz
= {
994 /* refsel, sel, freq_15k */
995 .sad_cfg
= (3 << 14) | (1 << 12) | (524 << 0),
996 .ifreq
= (0 << 25) | 0,
1001 static struct dib7000p_config cxusb_dualdig4_rev2_config
= {
1002 .output_mode
= OUTMODE_MPEG2_PAR_GATED_CLK
,
1003 .output_mpeg2_in_188_bytes
= 1,
1005 .agc_config_count
= 1,
1006 .agc
= &dib7070_agc_config
,
1007 .bw
= &dib7070_bw_config_12_mhz
,
1008 .tuner_is_baseband
= 1,
1014 .gpio_pwm_pos
= DIB7000P_GPIO_DEFAULT_PWM_POS
,
1016 .hostbus_diversity
= 1,
1019 static int cxusb_dualdig4_rev2_frontend_attach(struct dvb_usb_adapter
*adap
)
1021 if (usb_set_interface(adap
->dev
->udev
, 0, 1) < 0)
1022 err("set interface failed");
1024 cxusb_ctrl_msg(adap
->dev
, CMD_DIGITAL
, NULL
, 0, NULL
, 0);
1026 cxusb_bluebird_gpio_pulse(adap
->dev
, 0x02, 1);
1028 dib7000p_i2c_enumeration(&adap
->dev
->i2c_adap
, 1, 18,
1029 &cxusb_dualdig4_rev2_config
);
1031 adap
->fe
= dvb_attach(dib7000p_attach
, &adap
->dev
->i2c_adap
, 0x80,
1032 &cxusb_dualdig4_rev2_config
);
1033 if (adap
->fe
== NULL
)
1039 static int dib7070_tuner_reset(struct dvb_frontend
*fe
, int onoff
)
1041 return dib7000p_set_gpio(fe
, 8, 0, !onoff
);
1044 static int dib7070_tuner_sleep(struct dvb_frontend
*fe
, int onoff
)
1049 static struct dib0070_config dib7070p_dib0070_config
= {
1050 .i2c_address
= DEFAULT_DIB0070_I2C_ADDRESS
,
1051 .reset
= dib7070_tuner_reset
,
1052 .sleep
= dib7070_tuner_sleep
,
1056 struct dib0700_adapter_state
{
1057 int (*set_param_save
) (struct dvb_frontend
*,
1058 struct dvb_frontend_parameters
*);
1061 static int dib7070_set_param_override(struct dvb_frontend
*fe
,
1062 struct dvb_frontend_parameters
*fep
)
1064 struct dvb_usb_adapter
*adap
= fe
->dvb
->priv
;
1065 struct dib0700_adapter_state
*state
= adap
->priv
;
1068 u8 band
= BAND_OF_FREQUENCY(fep
->frequency
/1000);
1070 case BAND_VHF
: offset
= 950; break;
1072 case BAND_UHF
: offset
= 550; break;
1075 dib7000p_set_wbd_ref(fe
, offset
+ dib0070_wbd_offset(fe
));
1077 return state
->set_param_save(fe
, fep
);
1080 static int cxusb_dualdig4_rev2_tuner_attach(struct dvb_usb_adapter
*adap
)
1082 struct dib0700_adapter_state
*st
= adap
->priv
;
1083 struct i2c_adapter
*tun_i2c
=
1084 dib7000p_get_i2c_master(adap
->fe
,
1085 DIBX000_I2C_INTERFACE_TUNER
, 1);
1087 if (dvb_attach(dib0070_attach
, adap
->fe
, tun_i2c
,
1088 &dib7070p_dib0070_config
) == NULL
)
1091 st
->set_param_save
= adap
->fe
->ops
.tuner_ops
.set_params
;
1092 adap
->fe
->ops
.tuner_ops
.set_params
= dib7070_set_param_override
;
1096 static int cxusb_nano2_frontend_attach(struct dvb_usb_adapter
*adap
)
1098 if (usb_set_interface(adap
->dev
->udev
, 0, 1) < 0)
1099 err("set interface failed");
1101 cxusb_ctrl_msg(adap
->dev
, CMD_DIGITAL
, NULL
, 0, NULL
, 0);
1103 /* reset the tuner and demodulator */
1104 cxusb_bluebird_gpio_rw(adap
->dev
, 0x04, 0);
1105 cxusb_bluebird_gpio_pulse(adap
->dev
, 0x01, 1);
1106 cxusb_bluebird_gpio_pulse(adap
->dev
, 0x02, 1);
1108 if ((adap
->fe
= dvb_attach(zl10353_attach
,
1109 &cxusb_zl10353_xc3028_config
,
1110 &adap
->dev
->i2c_adap
)) != NULL
)
1113 if ((adap
->fe
= dvb_attach(mt352_attach
,
1114 &cxusb_mt352_xc3028_config
,
1115 &adap
->dev
->i2c_adap
)) != NULL
)
1121 static struct lgs8gxx_config d680_lgs8gl5_cfg
= {
1122 .prod
= LGS8GXX_PROD_LGS8GL5
,
1123 .demod_address
= 0x19,
1127 .if_clk_freq
= 30400, /* 30.4 MHz */
1128 .if_freq
= 5725, /* 5.725 MHz */
1135 static int cxusb_d680_dmb_frontend_attach(struct dvb_usb_adapter
*adap
)
1137 struct dvb_usb_device
*d
= adap
->dev
;
1140 /* Select required USB configuration */
1141 if (usb_set_interface(d
->udev
, 0, 0) < 0)
1142 err("set interface failed");
1144 /* Unblock all USB pipes */
1145 usb_clear_halt(d
->udev
,
1146 usb_sndbulkpipe(d
->udev
, d
->props
.generic_bulk_ctrl_endpoint
));
1147 usb_clear_halt(d
->udev
,
1148 usb_rcvbulkpipe(d
->udev
, d
->props
.generic_bulk_ctrl_endpoint
));
1149 usb_clear_halt(d
->udev
,
1150 usb_rcvbulkpipe(d
->udev
, d
->props
.adapter
[0].stream
.endpoint
));
1152 /* Drain USB pipes to avoid hang after reboot */
1153 for (n
= 0; n
< 5; n
++) {
1154 cxusb_d680_dmb_drain_message(d
);
1155 cxusb_d680_dmb_drain_video(d
);
1159 /* Reset the tuner */
1160 if (cxusb_d680_dmb_gpio_tuner(d
, 0x07, 0) < 0) {
1161 err("clear tuner gpio failed");
1165 if (cxusb_d680_dmb_gpio_tuner(d
, 0x07, 1) < 0) {
1166 err("set tuner gpio failed");
1171 /* Attach frontend */
1172 adap
->fe
= dvb_attach(lgs8gxx_attach
, &d680_lgs8gl5_cfg
, &d
->i2c_adap
);
1173 if (adap
->fe
== NULL
)
1179 static struct atbm8830_config mygica_d689_atbm8830_cfg
= {
1180 .prod
= ATBM8830_PROD_8830
,
1181 .demod_address
= 0x40,
1183 .ts_sampling_edge
= 1,
1185 .osc_clk_freq
= 30400, /* in kHz */
1186 .if_freq
= 0, /* zero IF */
1193 static int cxusb_mygica_d689_frontend_attach(struct dvb_usb_adapter
*adap
)
1195 struct dvb_usb_device
*d
= adap
->dev
;
1197 /* Select required USB configuration */
1198 if (usb_set_interface(d
->udev
, 0, 0) < 0)
1199 err("set interface failed");
1201 /* Unblock all USB pipes */
1202 usb_clear_halt(d
->udev
,
1203 usb_sndbulkpipe(d
->udev
, d
->props
.generic_bulk_ctrl_endpoint
));
1204 usb_clear_halt(d
->udev
,
1205 usb_rcvbulkpipe(d
->udev
, d
->props
.generic_bulk_ctrl_endpoint
));
1206 usb_clear_halt(d
->udev
,
1207 usb_rcvbulkpipe(d
->udev
, d
->props
.adapter
[0].stream
.endpoint
));
1210 /* Reset the tuner */
1211 if (cxusb_d680_dmb_gpio_tuner(d
, 0x07, 0) < 0) {
1212 err("clear tuner gpio failed");
1216 if (cxusb_d680_dmb_gpio_tuner(d
, 0x07, 1) < 0) {
1217 err("set tuner gpio failed");
1222 /* Attach frontend */
1223 adap
->fe
= dvb_attach(atbm8830_attach
, &mygica_d689_atbm8830_cfg
,
1225 if (adap
->fe
== NULL
)
1232 * DViCO has shipped two devices with the same USB ID, but only one of them
1233 * needs a firmware download. Check the device class details to see if they
1234 * have non-default values to decide whether the device is actually cold or
1235 * not, and forget a match if it turns out we selected the wrong device.
1237 static int bluebird_fx2_identify_state(struct usb_device
*udev
,
1238 struct dvb_usb_device_properties
*props
,
1239 struct dvb_usb_device_description
**desc
,
1242 int wascold
= *cold
;
1244 *cold
= udev
->descriptor
.bDeviceClass
== 0xff &&
1245 udev
->descriptor
.bDeviceSubClass
== 0xff &&
1246 udev
->descriptor
.bDeviceProtocol
== 0xff;
1248 if (*cold
&& !wascold
)
1255 * DViCO bluebird firmware needs the "warm" product ID to be patched into the
1256 * firmware file before download.
1259 static const int dvico_firmware_id_offsets
[] = { 6638, 3204 };
1260 static int bluebird_patch_dvico_firmware_download(struct usb_device
*udev
,
1261 const struct firmware
*fw
)
1265 for (pos
= 0; pos
< ARRAY_SIZE(dvico_firmware_id_offsets
); pos
++) {
1266 int idoff
= dvico_firmware_id_offsets
[pos
];
1268 if (fw
->size
< idoff
+ 4)
1271 if (fw
->data
[idoff
] == (USB_VID_DVICO
& 0xff) &&
1272 fw
->data
[idoff
+ 1] == USB_VID_DVICO
>> 8) {
1273 struct firmware new_fw
;
1274 u8
*new_fw_data
= vmalloc(fw
->size
);
1280 memcpy(new_fw_data
, fw
->data
, fw
->size
);
1281 new_fw
.size
= fw
->size
;
1282 new_fw
.data
= new_fw_data
;
1284 new_fw_data
[idoff
+ 2] =
1285 le16_to_cpu(udev
->descriptor
.idProduct
) + 1;
1286 new_fw_data
[idoff
+ 3] =
1287 le16_to_cpu(udev
->descriptor
.idProduct
) >> 8;
1289 ret
= usb_cypress_load_firmware(udev
, &new_fw
,
1299 /* DVB USB Driver stuff */
1300 static struct dvb_usb_device_properties cxusb_medion_properties
;
1301 static struct dvb_usb_device_properties cxusb_bluebird_lgh064f_properties
;
1302 static struct dvb_usb_device_properties cxusb_bluebird_dee1601_properties
;
1303 static struct dvb_usb_device_properties cxusb_bluebird_lgz201_properties
;
1304 static struct dvb_usb_device_properties cxusb_bluebird_dtt7579_properties
;
1305 static struct dvb_usb_device_properties cxusb_bluebird_dualdig4_properties
;
1306 static struct dvb_usb_device_properties cxusb_bluebird_dualdig4_rev2_properties
;
1307 static struct dvb_usb_device_properties cxusb_bluebird_nano2_properties
;
1308 static struct dvb_usb_device_properties cxusb_bluebird_nano2_needsfirmware_properties
;
1309 static struct dvb_usb_device_properties cxusb_aver_a868r_properties
;
1310 static struct dvb_usb_device_properties cxusb_d680_dmb_properties
;
1311 static struct dvb_usb_device_properties cxusb_mygica_d689_properties
;
1313 static int cxusb_probe(struct usb_interface
*intf
,
1314 const struct usb_device_id
*id
)
1316 if (0 == dvb_usb_device_init(intf
, &cxusb_medion_properties
,
1317 THIS_MODULE
, NULL
, adapter_nr
) ||
1318 0 == dvb_usb_device_init(intf
, &cxusb_bluebird_lgh064f_properties
,
1319 THIS_MODULE
, NULL
, adapter_nr
) ||
1320 0 == dvb_usb_device_init(intf
, &cxusb_bluebird_dee1601_properties
,
1321 THIS_MODULE
, NULL
, adapter_nr
) ||
1322 0 == dvb_usb_device_init(intf
, &cxusb_bluebird_lgz201_properties
,
1323 THIS_MODULE
, NULL
, adapter_nr
) ||
1324 0 == dvb_usb_device_init(intf
, &cxusb_bluebird_dtt7579_properties
,
1325 THIS_MODULE
, NULL
, adapter_nr
) ||
1326 0 == dvb_usb_device_init(intf
, &cxusb_bluebird_dualdig4_properties
,
1327 THIS_MODULE
, NULL
, adapter_nr
) ||
1328 0 == dvb_usb_device_init(intf
, &cxusb_bluebird_nano2_properties
,
1329 THIS_MODULE
, NULL
, adapter_nr
) ||
1330 0 == dvb_usb_device_init(intf
,
1331 &cxusb_bluebird_nano2_needsfirmware_properties
,
1332 THIS_MODULE
, NULL
, adapter_nr
) ||
1333 0 == dvb_usb_device_init(intf
, &cxusb_aver_a868r_properties
,
1334 THIS_MODULE
, NULL
, adapter_nr
) ||
1335 0 == dvb_usb_device_init(intf
,
1336 &cxusb_bluebird_dualdig4_rev2_properties
,
1337 THIS_MODULE
, NULL
, adapter_nr
) ||
1338 0 == dvb_usb_device_init(intf
, &cxusb_d680_dmb_properties
,
1339 THIS_MODULE
, NULL
, adapter_nr
) ||
1340 0 == dvb_usb_device_init(intf
, &cxusb_mygica_d689_properties
,
1341 THIS_MODULE
, NULL
, adapter_nr
) ||
1348 static struct usb_device_id cxusb_table
[] = {
1349 { USB_DEVICE(USB_VID_MEDION
, USB_PID_MEDION_MD95700
) },
1350 { USB_DEVICE(USB_VID_DVICO
, USB_PID_DVICO_BLUEBIRD_LG064F_COLD
) },
1351 { USB_DEVICE(USB_VID_DVICO
, USB_PID_DVICO_BLUEBIRD_LG064F_WARM
) },
1352 { USB_DEVICE(USB_VID_DVICO
, USB_PID_DVICO_BLUEBIRD_DUAL_1_COLD
) },
1353 { USB_DEVICE(USB_VID_DVICO
, USB_PID_DVICO_BLUEBIRD_DUAL_1_WARM
) },
1354 { USB_DEVICE(USB_VID_DVICO
, USB_PID_DVICO_BLUEBIRD_LGZ201_COLD
) },
1355 { USB_DEVICE(USB_VID_DVICO
, USB_PID_DVICO_BLUEBIRD_LGZ201_WARM
) },
1356 { USB_DEVICE(USB_VID_DVICO
, USB_PID_DVICO_BLUEBIRD_TH7579_COLD
) },
1357 { USB_DEVICE(USB_VID_DVICO
, USB_PID_DVICO_BLUEBIRD_TH7579_WARM
) },
1358 { USB_DEVICE(USB_VID_DVICO
, USB_PID_DIGITALNOW_BLUEBIRD_DUAL_1_COLD
) },
1359 { USB_DEVICE(USB_VID_DVICO
, USB_PID_DIGITALNOW_BLUEBIRD_DUAL_1_WARM
) },
1360 { USB_DEVICE(USB_VID_DVICO
, USB_PID_DVICO_BLUEBIRD_DUAL_2_COLD
) },
1361 { USB_DEVICE(USB_VID_DVICO
, USB_PID_DVICO_BLUEBIRD_DUAL_2_WARM
) },
1362 { USB_DEVICE(USB_VID_DVICO
, USB_PID_DVICO_BLUEBIRD_DUAL_4
) },
1363 { USB_DEVICE(USB_VID_DVICO
, USB_PID_DVICO_BLUEBIRD_DVB_T_NANO_2
) },
1364 { USB_DEVICE(USB_VID_DVICO
, USB_PID_DVICO_BLUEBIRD_DVB_T_NANO_2_NFW_WARM
) },
1365 { USB_DEVICE(USB_VID_AVERMEDIA
, USB_PID_AVERMEDIA_VOLAR_A868R
) },
1366 { USB_DEVICE(USB_VID_DVICO
, USB_PID_DVICO_BLUEBIRD_DUAL_4_REV_2
) },
1367 { USB_DEVICE(USB_VID_CONEXANT
, USB_PID_CONEXANT_D680_DMB
) },
1368 { USB_DEVICE(USB_VID_CONEXANT
, USB_PID_MYGICA_D689
) },
1369 {} /* Terminating entry */
1371 MODULE_DEVICE_TABLE (usb
, cxusb_table
);
1373 static struct dvb_usb_device_properties cxusb_medion_properties
= {
1374 .caps
= DVB_USB_IS_AN_I2C_ADAPTER
,
1376 .usb_ctrl
= CYPRESS_FX2
,
1378 .size_of_priv
= sizeof(struct cxusb_state
),
1383 .streaming_ctrl
= cxusb_streaming_ctrl
,
1384 .frontend_attach
= cxusb_cx22702_frontend_attach
,
1385 .tuner_attach
= cxusb_fmd1216me_tuner_attach
,
1386 /* parameter for the MPEG2-data transfer */
1400 .power_ctrl
= cxusb_power_ctrl
,
1402 .i2c_algo
= &cxusb_i2c_algo
,
1404 .generic_bulk_ctrl_endpoint
= 0x01,
1406 .num_device_descs
= 1,
1408 { "Medion MD95700 (MDUSBTV-HYBRID)",
1410 { &cxusb_table
[0], NULL
},
1415 static struct dvb_usb_device_properties cxusb_bluebird_lgh064f_properties
= {
1416 .caps
= DVB_USB_IS_AN_I2C_ADAPTER
,
1418 .usb_ctrl
= DEVICE_SPECIFIC
,
1419 .firmware
= "dvb-usb-bluebird-01.fw",
1420 .download_firmware
= bluebird_patch_dvico_firmware_download
,
1421 /* use usb alt setting 0 for EP4 transfer (dvb-t),
1422 use usb alt setting 7 for EP2 transfer (atsc) */
1424 .size_of_priv
= sizeof(struct cxusb_state
),
1429 .streaming_ctrl
= cxusb_streaming_ctrl
,
1430 .frontend_attach
= cxusb_lgdt3303_frontend_attach
,
1431 .tuner_attach
= cxusb_lgh064f_tuner_attach
,
1433 /* parameter for the MPEG2-data transfer */
1447 .power_ctrl
= cxusb_bluebird_power_ctrl
,
1449 .i2c_algo
= &cxusb_i2c_algo
,
1452 .rc_key_map
= dvico_portable_rc_keys
,
1453 .rc_key_map_size
= ARRAY_SIZE(dvico_portable_rc_keys
),
1454 .rc_query
= cxusb_rc_query
,
1456 .generic_bulk_ctrl_endpoint
= 0x01,
1458 .num_device_descs
= 1,
1460 { "DViCO FusionHDTV5 USB Gold",
1461 { &cxusb_table
[1], NULL
},
1462 { &cxusb_table
[2], NULL
},
1467 static struct dvb_usb_device_properties cxusb_bluebird_dee1601_properties
= {
1468 .caps
= DVB_USB_IS_AN_I2C_ADAPTER
,
1470 .usb_ctrl
= DEVICE_SPECIFIC
,
1471 .firmware
= "dvb-usb-bluebird-01.fw",
1472 .download_firmware
= bluebird_patch_dvico_firmware_download
,
1473 /* use usb alt setting 0 for EP4 transfer (dvb-t),
1474 use usb alt setting 7 for EP2 transfer (atsc) */
1476 .size_of_priv
= sizeof(struct cxusb_state
),
1481 .streaming_ctrl
= cxusb_streaming_ctrl
,
1482 .frontend_attach
= cxusb_dee1601_frontend_attach
,
1483 .tuner_attach
= cxusb_dee1601_tuner_attach
,
1484 /* parameter for the MPEG2-data transfer */
1498 .power_ctrl
= cxusb_bluebird_power_ctrl
,
1500 .i2c_algo
= &cxusb_i2c_algo
,
1503 .rc_key_map
= dvico_mce_rc_keys
,
1504 .rc_key_map_size
= ARRAY_SIZE(dvico_mce_rc_keys
),
1505 .rc_query
= cxusb_rc_query
,
1507 .generic_bulk_ctrl_endpoint
= 0x01,
1509 .num_device_descs
= 3,
1511 { "DViCO FusionHDTV DVB-T Dual USB",
1512 { &cxusb_table
[3], NULL
},
1513 { &cxusb_table
[4], NULL
},
1515 { "DigitalNow DVB-T Dual USB",
1516 { &cxusb_table
[9], NULL
},
1517 { &cxusb_table
[10], NULL
},
1519 { "DViCO FusionHDTV DVB-T Dual Digital 2",
1520 { &cxusb_table
[11], NULL
},
1521 { &cxusb_table
[12], NULL
},
1526 static struct dvb_usb_device_properties cxusb_bluebird_lgz201_properties
= {
1527 .caps
= DVB_USB_IS_AN_I2C_ADAPTER
,
1529 .usb_ctrl
= DEVICE_SPECIFIC
,
1530 .firmware
= "dvb-usb-bluebird-01.fw",
1531 .download_firmware
= bluebird_patch_dvico_firmware_download
,
1532 /* use usb alt setting 0 for EP4 transfer (dvb-t),
1533 use usb alt setting 7 for EP2 transfer (atsc) */
1535 .size_of_priv
= sizeof(struct cxusb_state
),
1540 .streaming_ctrl
= cxusb_streaming_ctrl
,
1541 .frontend_attach
= cxusb_mt352_frontend_attach
,
1542 .tuner_attach
= cxusb_lgz201_tuner_attach
,
1544 /* parameter for the MPEG2-data transfer */
1557 .power_ctrl
= cxusb_bluebird_power_ctrl
,
1559 .i2c_algo
= &cxusb_i2c_algo
,
1562 .rc_key_map
= dvico_portable_rc_keys
,
1563 .rc_key_map_size
= ARRAY_SIZE(dvico_portable_rc_keys
),
1564 .rc_query
= cxusb_rc_query
,
1566 .generic_bulk_ctrl_endpoint
= 0x01,
1567 .num_device_descs
= 1,
1569 { "DViCO FusionHDTV DVB-T USB (LGZ201)",
1570 { &cxusb_table
[5], NULL
},
1571 { &cxusb_table
[6], NULL
},
1576 static struct dvb_usb_device_properties cxusb_bluebird_dtt7579_properties
= {
1577 .caps
= DVB_USB_IS_AN_I2C_ADAPTER
,
1579 .usb_ctrl
= DEVICE_SPECIFIC
,
1580 .firmware
= "dvb-usb-bluebird-01.fw",
1581 .download_firmware
= bluebird_patch_dvico_firmware_download
,
1582 /* use usb alt setting 0 for EP4 transfer (dvb-t),
1583 use usb alt setting 7 for EP2 transfer (atsc) */
1585 .size_of_priv
= sizeof(struct cxusb_state
),
1590 .streaming_ctrl
= cxusb_streaming_ctrl
,
1591 .frontend_attach
= cxusb_mt352_frontend_attach
,
1592 .tuner_attach
= cxusb_dtt7579_tuner_attach
,
1594 /* parameter for the MPEG2-data transfer */
1607 .power_ctrl
= cxusb_bluebird_power_ctrl
,
1609 .i2c_algo
= &cxusb_i2c_algo
,
1612 .rc_key_map
= dvico_portable_rc_keys
,
1613 .rc_key_map_size
= ARRAY_SIZE(dvico_portable_rc_keys
),
1614 .rc_query
= cxusb_rc_query
,
1616 .generic_bulk_ctrl_endpoint
= 0x01,
1618 .num_device_descs
= 1,
1620 { "DViCO FusionHDTV DVB-T USB (TH7579)",
1621 { &cxusb_table
[7], NULL
},
1622 { &cxusb_table
[8], NULL
},
1627 static struct dvb_usb_device_properties cxusb_bluebird_dualdig4_properties
= {
1628 .caps
= DVB_USB_IS_AN_I2C_ADAPTER
,
1630 .usb_ctrl
= CYPRESS_FX2
,
1632 .size_of_priv
= sizeof(struct cxusb_state
),
1637 .streaming_ctrl
= cxusb_streaming_ctrl
,
1638 .frontend_attach
= cxusb_dualdig4_frontend_attach
,
1639 .tuner_attach
= cxusb_dvico_xc3028_tuner_attach
,
1640 /* parameter for the MPEG2-data transfer */
1654 .power_ctrl
= cxusb_power_ctrl
,
1656 .i2c_algo
= &cxusb_i2c_algo
,
1658 .generic_bulk_ctrl_endpoint
= 0x01,
1661 .rc_key_map
= dvico_mce_rc_keys
,
1662 .rc_key_map_size
= ARRAY_SIZE(dvico_mce_rc_keys
),
1663 .rc_query
= cxusb_bluebird2_rc_query
,
1665 .num_device_descs
= 1,
1667 { "DViCO FusionHDTV DVB-T Dual Digital 4",
1669 { &cxusb_table
[13], NULL
},
1674 static struct dvb_usb_device_properties cxusb_bluebird_nano2_properties
= {
1675 .caps
= DVB_USB_IS_AN_I2C_ADAPTER
,
1677 .usb_ctrl
= CYPRESS_FX2
,
1678 .identify_state
= bluebird_fx2_identify_state
,
1680 .size_of_priv
= sizeof(struct cxusb_state
),
1685 .streaming_ctrl
= cxusb_streaming_ctrl
,
1686 .frontend_attach
= cxusb_nano2_frontend_attach
,
1687 .tuner_attach
= cxusb_dvico_xc3028_tuner_attach
,
1688 /* parameter for the MPEG2-data transfer */
1702 .power_ctrl
= cxusb_nano2_power_ctrl
,
1704 .i2c_algo
= &cxusb_i2c_algo
,
1706 .generic_bulk_ctrl_endpoint
= 0x01,
1709 .rc_key_map
= dvico_portable_rc_keys
,
1710 .rc_key_map_size
= ARRAY_SIZE(dvico_portable_rc_keys
),
1711 .rc_query
= cxusb_bluebird2_rc_query
,
1713 .num_device_descs
= 1,
1715 { "DViCO FusionHDTV DVB-T NANO2",
1717 { &cxusb_table
[14], NULL
},
1722 static struct dvb_usb_device_properties cxusb_bluebird_nano2_needsfirmware_properties
= {
1723 .caps
= DVB_USB_IS_AN_I2C_ADAPTER
,
1725 .usb_ctrl
= DEVICE_SPECIFIC
,
1726 .firmware
= "dvb-usb-bluebird-02.fw",
1727 .download_firmware
= bluebird_patch_dvico_firmware_download
,
1728 .identify_state
= bluebird_fx2_identify_state
,
1730 .size_of_priv
= sizeof(struct cxusb_state
),
1735 .streaming_ctrl
= cxusb_streaming_ctrl
,
1736 .frontend_attach
= cxusb_nano2_frontend_attach
,
1737 .tuner_attach
= cxusb_dvico_xc3028_tuner_attach
,
1738 /* parameter for the MPEG2-data transfer */
1752 .power_ctrl
= cxusb_nano2_power_ctrl
,
1754 .i2c_algo
= &cxusb_i2c_algo
,
1756 .generic_bulk_ctrl_endpoint
= 0x01,
1759 .rc_key_map
= dvico_portable_rc_keys
,
1760 .rc_key_map_size
= ARRAY_SIZE(dvico_portable_rc_keys
),
1761 .rc_query
= cxusb_rc_query
,
1763 .num_device_descs
= 1,
1765 { "DViCO FusionHDTV DVB-T NANO2 w/o firmware",
1766 { &cxusb_table
[14], NULL
},
1767 { &cxusb_table
[15], NULL
},
1772 static struct dvb_usb_device_properties cxusb_aver_a868r_properties
= {
1773 .caps
= DVB_USB_IS_AN_I2C_ADAPTER
,
1775 .usb_ctrl
= CYPRESS_FX2
,
1777 .size_of_priv
= sizeof(struct cxusb_state
),
1782 .streaming_ctrl
= cxusb_aver_streaming_ctrl
,
1783 .frontend_attach
= cxusb_aver_lgdt3303_frontend_attach
,
1784 .tuner_attach
= cxusb_mxl5003s_tuner_attach
,
1785 /* parameter for the MPEG2-data transfer */
1799 .power_ctrl
= cxusb_aver_power_ctrl
,
1801 .i2c_algo
= &cxusb_i2c_algo
,
1803 .generic_bulk_ctrl_endpoint
= 0x01,
1805 .num_device_descs
= 1,
1807 { "AVerMedia AVerTVHD Volar (A868R)",
1809 { &cxusb_table
[16], NULL
},
1815 struct dvb_usb_device_properties cxusb_bluebird_dualdig4_rev2_properties
= {
1816 .caps
= DVB_USB_IS_AN_I2C_ADAPTER
,
1818 .usb_ctrl
= CYPRESS_FX2
,
1820 .size_of_priv
= sizeof(struct cxusb_state
),
1825 .streaming_ctrl
= cxusb_streaming_ctrl
,
1826 .frontend_attach
= cxusb_dualdig4_rev2_frontend_attach
,
1827 .tuner_attach
= cxusb_dualdig4_rev2_tuner_attach
,
1828 .size_of_priv
= sizeof(struct dib0700_adapter_state
),
1829 /* parameter for the MPEG2-data transfer */
1843 .power_ctrl
= cxusb_bluebird_power_ctrl
,
1845 .i2c_algo
= &cxusb_i2c_algo
,
1847 .generic_bulk_ctrl_endpoint
= 0x01,
1850 .rc_key_map
= dvico_mce_rc_keys
,
1851 .rc_key_map_size
= ARRAY_SIZE(dvico_mce_rc_keys
),
1852 .rc_query
= cxusb_rc_query
,
1854 .num_device_descs
= 1,
1856 { "DViCO FusionHDTV DVB-T Dual Digital 4 (rev 2)",
1858 { &cxusb_table
[17], NULL
},
1863 static struct dvb_usb_device_properties cxusb_d680_dmb_properties
= {
1864 .caps
= DVB_USB_IS_AN_I2C_ADAPTER
,
1866 .usb_ctrl
= CYPRESS_FX2
,
1868 .size_of_priv
= sizeof(struct cxusb_state
),
1873 .streaming_ctrl
= cxusb_d680_dmb_streaming_ctrl
,
1874 .frontend_attach
= cxusb_d680_dmb_frontend_attach
,
1875 .tuner_attach
= cxusb_d680_dmb_tuner_attach
,
1877 /* parameter for the MPEG2-data transfer */
1891 .power_ctrl
= cxusb_d680_dmb_power_ctrl
,
1893 .i2c_algo
= &cxusb_i2c_algo
,
1895 .generic_bulk_ctrl_endpoint
= 0x01,
1898 .rc_key_map
= d680_dmb_rc_keys
,
1899 .rc_key_map_size
= ARRAY_SIZE(d680_dmb_rc_keys
),
1900 .rc_query
= cxusb_d680_dmb_rc_query
,
1902 .num_device_descs
= 1,
1905 "Conexant DMB-TH Stick",
1907 { &cxusb_table
[18], NULL
},
1912 static struct dvb_usb_device_properties cxusb_mygica_d689_properties
= {
1913 .caps
= DVB_USB_IS_AN_I2C_ADAPTER
,
1915 .usb_ctrl
= CYPRESS_FX2
,
1917 .size_of_priv
= sizeof(struct cxusb_state
),
1922 .streaming_ctrl
= cxusb_d680_dmb_streaming_ctrl
,
1923 .frontend_attach
= cxusb_mygica_d689_frontend_attach
,
1924 .tuner_attach
= cxusb_mygica_d689_tuner_attach
,
1926 /* parameter for the MPEG2-data transfer */
1940 .power_ctrl
= cxusb_d680_dmb_power_ctrl
,
1942 .i2c_algo
= &cxusb_i2c_algo
,
1944 .generic_bulk_ctrl_endpoint
= 0x01,
1947 .rc_key_map
= d680_dmb_rc_keys
,
1948 .rc_key_map_size
= ARRAY_SIZE(d680_dmb_rc_keys
),
1949 .rc_query
= cxusb_d680_dmb_rc_query
,
1951 .num_device_descs
= 1,
1954 "Mygica D689 DMB-TH",
1956 { &cxusb_table
[19], NULL
},
1961 static struct usb_driver cxusb_driver
= {
1962 .name
= "dvb_usb_cxusb",
1963 .probe
= cxusb_probe
,
1964 .disconnect
= dvb_usb_device_exit
,
1965 .id_table
= cxusb_table
,
1969 static int __init
cxusb_module_init(void)
1972 if ((result
= usb_register(&cxusb_driver
))) {
1973 err("usb_register failed. Error number %d",result
);
1980 static void __exit
cxusb_module_exit(void)
1982 /* deregister this driver from the USB subsystem */
1983 usb_deregister(&cxusb_driver
);
1986 module_init (cxusb_module_init
);
1987 module_exit (cxusb_module_exit
);
1989 MODULE_AUTHOR("Patrick Boettcher <patrick.boettcher@desy.de>");
1990 MODULE_AUTHOR("Michael Krufky <mkrufky@linuxtv.org>");
1991 MODULE_AUTHOR("Chris Pascoe <c.pascoe@itee.uq.edu.au>");
1992 MODULE_DESCRIPTION("Driver for Conexant USB2.0 hybrid reference design");
1993 MODULE_VERSION("1.0-alpha");
1994 MODULE_LICENSE("GPL");