V4L/DVB (3811): Cxusb: lgh064f: set auxiliary byte in pll_set
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / media / dvb / dvb-usb / cxusb.c
blob5151fb4172df1dc5dc8a15befb0cfe2aaedcf9ff
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
12 * appear at all).
14 * TODO: Use the cx25840-driver for the analogue part
16 * Copyright (C) 2005 Patrick Boettcher (patrick.boettcher@desy.de)
17 * Copyright (C) 2005 Michael Krufky (mkrufky@m1k.net)
18 * Copyright (C) 2006 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 "cxusb.h"
28 #include "cx22702.h"
29 #include "lgdt330x.h"
30 #include "mt352.h"
31 #include "mt352_priv.h"
33 /* debug */
34 int dvb_usb_cxusb_debug;
35 module_param_named(debug,dvb_usb_cxusb_debug, int, 0644);
36 MODULE_PARM_DESC(debug, "set debugging level (1=rc (or-able))." DVB_USB_DEBUG_STATUS);
38 static int cxusb_ctrl_msg(struct dvb_usb_device *d,
39 u8 cmd, u8 *wbuf, int wlen, u8 *rbuf, int rlen)
41 int wo = (rbuf == NULL || rlen == 0); /* write-only */
42 u8 sndbuf[1+wlen];
43 memset(sndbuf,0,1+wlen);
45 sndbuf[0] = cmd;
46 memcpy(&sndbuf[1],wbuf,wlen);
47 if (wo)
48 dvb_usb_generic_write(d,sndbuf,1+wlen);
49 else
50 dvb_usb_generic_rw(d,sndbuf,1+wlen,rbuf,rlen,0);
52 return 0;
55 /* GPIO */
56 static void cxusb_gpio_tuner(struct dvb_usb_device *d, int onoff)
58 struct cxusb_state *st = d->priv;
59 u8 o[2],i;
61 if (st->gpio_write_state[GPIO_TUNER] == onoff)
62 return;
64 o[0] = GPIO_TUNER;
65 o[1] = onoff;
66 cxusb_ctrl_msg(d,CMD_GPIO_WRITE,o,2,&i,1);
68 if (i != 0x01)
69 deb_info("gpio_write failed.\n");
71 st->gpio_write_state[GPIO_TUNER] = onoff;
74 /* I2C */
75 static int cxusb_i2c_xfer(struct i2c_adapter *adap,struct i2c_msg msg[],int num)
77 struct dvb_usb_device *d = i2c_get_adapdata(adap);
78 int i;
80 if (mutex_lock_interruptible(&d->i2c_mutex) < 0)
81 return -EAGAIN;
83 if (num > 2)
84 warn("more than two i2c messages at a time is not handled yet. TODO.");
86 for (i = 0; i < num; i++) {
88 if (d->udev->descriptor.idVendor == USB_VID_MEDION)
89 switch (msg[i].addr) {
90 case 0x63:
91 cxusb_gpio_tuner(d,0);
92 break;
93 default:
94 cxusb_gpio_tuner(d,1);
95 break;
98 /* read request */
99 if (i+1 < num && (msg[i+1].flags & I2C_M_RD)) {
100 u8 obuf[3+msg[i].len], ibuf[1+msg[i+1].len];
101 obuf[0] = msg[i].len;
102 obuf[1] = msg[i+1].len;
103 obuf[2] = msg[i].addr;
104 memcpy(&obuf[3],msg[i].buf,msg[i].len);
106 if (cxusb_ctrl_msg(d, CMD_I2C_READ,
107 obuf, 3+msg[i].len,
108 ibuf, 1+msg[i+1].len) < 0)
109 break;
111 if (ibuf[0] != 0x08)
112 deb_i2c("i2c read may have failed\n");
114 memcpy(msg[i+1].buf,&ibuf[1],msg[i+1].len);
116 i++;
117 } else { /* write */
118 u8 obuf[2+msg[i].len], ibuf;
119 obuf[0] = msg[i].addr;
120 obuf[1] = msg[i].len;
121 memcpy(&obuf[2],msg[i].buf,msg[i].len);
123 if (cxusb_ctrl_msg(d,CMD_I2C_WRITE, obuf, 2+msg[i].len, &ibuf,1) < 0)
124 break;
125 if (ibuf != 0x08)
126 deb_i2c("i2c write may have failed\n");
130 mutex_unlock(&d->i2c_mutex);
131 return i;
134 static u32 cxusb_i2c_func(struct i2c_adapter *adapter)
136 return I2C_FUNC_I2C;
139 static struct i2c_algorithm cxusb_i2c_algo = {
140 .master_xfer = cxusb_i2c_xfer,
141 .functionality = cxusb_i2c_func,
144 static int cxusb_power_ctrl(struct dvb_usb_device *d, int onoff)
146 u8 b = 0;
147 if (onoff)
148 return cxusb_ctrl_msg(d, CMD_POWER_ON, &b, 1, NULL, 0);
149 else
150 return cxusb_ctrl_msg(d, CMD_POWER_OFF, &b, 1, NULL, 0);
153 static int cxusb_bluebird_power_ctrl(struct dvb_usb_device *d, int onoff)
155 u8 b = 0;
156 if (onoff)
157 return cxusb_ctrl_msg(d, CMD_POWER_ON, &b, 1, NULL, 0);
158 else
159 return 0;
162 static int cxusb_streaming_ctrl(struct dvb_usb_device *d, int onoff)
164 u8 buf[2] = { 0x03, 0x00 };
165 if (onoff)
166 cxusb_ctrl_msg(d,CMD_STREAMING_ON, buf, 2, NULL, 0);
167 else
168 cxusb_ctrl_msg(d,CMD_STREAMING_OFF, NULL, 0, NULL, 0);
170 return 0;
173 static int cxusb_rc_query(struct dvb_usb_device *d, u32 *event, int *state)
175 struct dvb_usb_rc_key *keymap = d->props.rc_key_map;
176 u8 ircode[4];
177 int i;
179 cxusb_ctrl_msg(d, CMD_GET_IR_CODE, NULL, 0, ircode, 4);
181 *event = 0;
182 *state = REMOTE_NO_KEY_PRESSED;
184 for (i = 0; i < d->props.rc_key_map_size; i++) {
185 if (keymap[i].custom == ircode[2] &&
186 keymap[i].data == ircode[3]) {
187 *event = keymap[i].event;
188 *state = REMOTE_KEY_PRESSED;
190 return 0;
194 return 0;
197 static struct dvb_usb_rc_key dvico_mce_rc_keys[] = {
198 { 0xfe, 0x02, KEY_TV },
199 { 0xfe, 0x0e, KEY_MP3 },
200 { 0xfe, 0x1a, KEY_DVD },
201 { 0xfe, 0x1e, KEY_FAVORITES },
202 { 0xfe, 0x16, KEY_SETUP },
203 { 0xfe, 0x46, KEY_POWER2 },
204 { 0xfe, 0x0a, KEY_EPG },
205 { 0xfe, 0x49, KEY_BACK },
206 { 0xfe, 0x4d, KEY_MENU },
207 { 0xfe, 0x51, KEY_UP },
208 { 0xfe, 0x5b, KEY_LEFT },
209 { 0xfe, 0x5f, KEY_RIGHT },
210 { 0xfe, 0x53, KEY_DOWN },
211 { 0xfe, 0x5e, KEY_OK },
212 { 0xfe, 0x59, KEY_INFO },
213 { 0xfe, 0x55, KEY_TAB },
214 { 0xfe, 0x0f, KEY_PREVIOUSSONG },/* Replay */
215 { 0xfe, 0x12, KEY_NEXTSONG }, /* Skip */
216 { 0xfe, 0x42, KEY_ENTER }, /* Windows/Start */
217 { 0xfe, 0x15, KEY_VOLUMEUP },
218 { 0xfe, 0x05, KEY_VOLUMEDOWN },
219 { 0xfe, 0x11, KEY_CHANNELUP },
220 { 0xfe, 0x09, KEY_CHANNELDOWN },
221 { 0xfe, 0x52, KEY_CAMERA },
222 { 0xfe, 0x5a, KEY_TUNER }, /* Live */
223 { 0xfe, 0x19, KEY_OPEN },
224 { 0xfe, 0x0b, KEY_1 },
225 { 0xfe, 0x17, KEY_2 },
226 { 0xfe, 0x1b, KEY_3 },
227 { 0xfe, 0x07, KEY_4 },
228 { 0xfe, 0x50, KEY_5 },
229 { 0xfe, 0x54, KEY_6 },
230 { 0xfe, 0x48, KEY_7 },
231 { 0xfe, 0x4c, KEY_8 },
232 { 0xfe, 0x58, KEY_9 },
233 { 0xfe, 0x13, KEY_ANGLE }, /* Aspect */
234 { 0xfe, 0x03, KEY_0 },
235 { 0xfe, 0x1f, KEY_ZOOM },
236 { 0xfe, 0x43, KEY_REWIND },
237 { 0xfe, 0x47, KEY_PLAYPAUSE },
238 { 0xfe, 0x4f, KEY_FASTFORWARD },
239 { 0xfe, 0x57, KEY_MUTE },
240 { 0xfe, 0x0d, KEY_STOP },
241 { 0xfe, 0x01, KEY_RECORD },
242 { 0xfe, 0x4e, KEY_POWER },
245 static struct dvb_usb_rc_key dvico_portable_rc_keys[] = {
246 { 0xfc, 0x02, KEY_SETUP }, /* Profile */
247 { 0xfc, 0x43, KEY_POWER2 },
248 { 0xfc, 0x06, KEY_EPG },
249 { 0xfc, 0x5a, KEY_BACK },
250 { 0xfc, 0x05, KEY_MENU },
251 { 0xfc, 0x47, KEY_INFO },
252 { 0xfc, 0x01, KEY_TAB },
253 { 0xfc, 0x42, KEY_PREVIOUSSONG },/* Replay */
254 { 0xfc, 0x49, KEY_VOLUMEUP },
255 { 0xfc, 0x09, KEY_VOLUMEDOWN },
256 { 0xfc, 0x54, KEY_CHANNELUP },
257 { 0xfc, 0x0b, KEY_CHANNELDOWN },
258 { 0xfc, 0x16, KEY_CAMERA },
259 { 0xfc, 0x40, KEY_TUNER }, /* ATV/DTV */
260 { 0xfc, 0x45, KEY_OPEN },
261 { 0xfc, 0x19, KEY_1 },
262 { 0xfc, 0x18, KEY_2 },
263 { 0xfc, 0x1b, KEY_3 },
264 { 0xfc, 0x1a, KEY_4 },
265 { 0xfc, 0x58, KEY_5 },
266 { 0xfc, 0x59, KEY_6 },
267 { 0xfc, 0x15, KEY_7 },
268 { 0xfc, 0x14, KEY_8 },
269 { 0xfc, 0x17, KEY_9 },
270 { 0xfc, 0x44, KEY_ANGLE }, /* Aspect */
271 { 0xfc, 0x55, KEY_0 },
272 { 0xfc, 0x07, KEY_ZOOM },
273 { 0xfc, 0x0a, KEY_REWIND },
274 { 0xfc, 0x08, KEY_PLAYPAUSE },
275 { 0xfc, 0x4b, KEY_FASTFORWARD },
276 { 0xfc, 0x5b, KEY_MUTE },
277 { 0xfc, 0x04, KEY_STOP },
278 { 0xfc, 0x56, KEY_RECORD },
279 { 0xfc, 0x57, KEY_POWER },
280 { 0xfc, 0x41, KEY_UNKNOWN }, /* INPUT */
281 { 0xfc, 0x00, KEY_UNKNOWN }, /* HD */
284 static int cxusb_dee1601_demod_init(struct dvb_frontend* fe)
286 static u8 clock_config [] = { CLOCK_CTL, 0x38, 0x28 };
287 static u8 reset [] = { RESET, 0x80 };
288 static u8 adc_ctl_1_cfg [] = { ADC_CTL_1, 0x40 };
289 static u8 agc_cfg [] = { AGC_TARGET, 0x28, 0x20 };
290 static u8 gpp_ctl_cfg [] = { GPP_CTL, 0x33 };
291 static u8 capt_range_cfg[] = { CAPT_RANGE, 0x32 };
293 mt352_write(fe, clock_config, sizeof(clock_config));
294 udelay(200);
295 mt352_write(fe, reset, sizeof(reset));
296 mt352_write(fe, adc_ctl_1_cfg, sizeof(adc_ctl_1_cfg));
298 mt352_write(fe, agc_cfg, sizeof(agc_cfg));
299 mt352_write(fe, gpp_ctl_cfg, sizeof(gpp_ctl_cfg));
300 mt352_write(fe, capt_range_cfg, sizeof(capt_range_cfg));
302 return 0;
305 static int cxusb_mt352_demod_init(struct dvb_frontend* fe)
306 { /* used in both lgz201 and th7579 */
307 static u8 clock_config [] = { CLOCK_CTL, 0x38, 0x29 };
308 static u8 reset [] = { RESET, 0x80 };
309 static u8 adc_ctl_1_cfg [] = { ADC_CTL_1, 0x40 };
310 static u8 agc_cfg [] = { AGC_TARGET, 0x24, 0x20 };
311 static u8 gpp_ctl_cfg [] = { GPP_CTL, 0x33 };
312 static u8 capt_range_cfg[] = { CAPT_RANGE, 0x32 };
314 mt352_write(fe, clock_config, sizeof(clock_config));
315 udelay(200);
316 mt352_write(fe, reset, sizeof(reset));
317 mt352_write(fe, adc_ctl_1_cfg, sizeof(adc_ctl_1_cfg));
319 mt352_write(fe, agc_cfg, sizeof(agc_cfg));
320 mt352_write(fe, gpp_ctl_cfg, sizeof(gpp_ctl_cfg));
321 mt352_write(fe, capt_range_cfg, sizeof(capt_range_cfg));
322 return 0;
325 static int cxusb_lgh064f_pll_set_i2c(struct dvb_frontend *fe,
326 struct dvb_frontend_parameters *fep)
328 struct dvb_usb_device *d = fe->dvb->priv;
329 int ret = 0;
330 u8 b[5];
331 struct i2c_msg msg = { .addr = d->pll_addr, .flags = 0,
332 .buf = &b[1], .len = 4 };
334 dvb_usb_pll_set(fe,fep,b);
336 if (i2c_transfer (&d->i2c_adap, &msg, 1) != 1) {
337 err("tuner i2c write failed for pll_set.");
338 ret = -EREMOTEIO;
340 msleep(1);
342 /* Set the Auxiliary Byte. */
343 b[3] &= ~0x20;
344 b[3] |= 0x18;
345 b[4] = 0x50;
346 if (i2c_transfer(&d->i2c_adap, &msg, 1) != 1) {
347 err("tuner i2c write failed writing auxiliary byte.");
348 ret = -EREMOTEIO;
350 msleep(1);
352 return ret;
355 static struct cx22702_config cxusb_cx22702_config = {
356 .demod_address = 0x63,
358 .output_mode = CX22702_PARALLEL_OUTPUT,
360 .pll_init = dvb_usb_pll_init_i2c,
361 .pll_set = dvb_usb_pll_set_i2c,
364 static struct lgdt330x_config cxusb_lgdt3303_config = {
365 .demod_address = 0x0e,
366 .demod_chip = LGDT3303,
367 .pll_set = cxusb_lgh064f_pll_set_i2c,
370 static struct mt352_config cxusb_dee1601_config = {
371 .demod_address = 0x0f,
372 .demod_init = cxusb_dee1601_demod_init,
373 .pll_set = dvb_usb_pll_set,
376 struct mt352_config cxusb_mt352_config = {
377 /* used in both lgz201 and th7579 */
378 .demod_address = 0x0f,
379 .demod_init = cxusb_mt352_demod_init,
380 .pll_set = dvb_usb_pll_set,
383 /* Callbacks for DVB USB */
384 static int cxusb_fmd1216me_tuner_attach(struct dvb_usb_device *d)
386 u8 bpll[4] = { 0x0b, 0xdc, 0x9c, 0xa0 };
387 d->pll_addr = 0x61;
388 memcpy(d->pll_init, bpll, 4);
389 d->pll_desc = &dvb_pll_fmd1216me;
390 return 0;
393 static int cxusb_lgh064f_tuner_attach(struct dvb_usb_device *d)
395 d->pll_addr = 0x61;
396 d->pll_desc = &dvb_pll_tdvs_tua6034;
397 return 0;
400 static int cxusb_dee1601_tuner_attach(struct dvb_usb_device *d)
402 d->pll_addr = 0x61;
403 d->pll_desc = &dvb_pll_thomson_dtt7579;
404 return 0;
407 static int cxusb_lgz201_tuner_attach(struct dvb_usb_device *d)
409 d->pll_addr = 0x61;
410 d->pll_desc = &dvb_pll_lg_z201;
411 return 0;
414 static int cxusb_dtt7579_tuner_attach(struct dvb_usb_device *d)
416 d->pll_addr = 0x60;
417 d->pll_desc = &dvb_pll_thomson_dtt7579;
418 return 0;
421 static int cxusb_cx22702_frontend_attach(struct dvb_usb_device *d)
423 u8 b;
424 if (usb_set_interface(d->udev,0,6) < 0)
425 err("set interface failed");
427 cxusb_ctrl_msg(d,CMD_DIGITAL, NULL, 0, &b, 1);
429 if ((d->fe = cx22702_attach(&cxusb_cx22702_config, &d->i2c_adap)) != NULL)
430 return 0;
432 return -EIO;
435 static int cxusb_lgdt3303_frontend_attach(struct dvb_usb_device *d)
437 if (usb_set_interface(d->udev,0,7) < 0)
438 err("set interface failed");
440 cxusb_ctrl_msg(d,CMD_DIGITAL, NULL, 0, NULL, 0);
442 if ((d->fe = lgdt330x_attach(&cxusb_lgdt3303_config, &d->i2c_adap)) != NULL)
443 return 0;
445 return -EIO;
448 static int cxusb_mt352_frontend_attach(struct dvb_usb_device *d)
449 { /* used in both lgz201 and th7579 */
450 if (usb_set_interface(d->udev,0,0) < 0)
451 err("set interface failed");
453 cxusb_ctrl_msg(d,CMD_DIGITAL, NULL, 0, NULL, 0);
455 if ((d->fe = mt352_attach(&cxusb_mt352_config, &d->i2c_adap)) != NULL)
456 return 0;
458 return -EIO;
461 static int cxusb_dee1601_frontend_attach(struct dvb_usb_device *d)
463 if (usb_set_interface(d->udev,0,0) < 0)
464 err("set interface failed");
466 cxusb_ctrl_msg(d,CMD_DIGITAL, NULL, 0, NULL, 0);
468 if ((d->fe = mt352_attach(&cxusb_dee1601_config, &d->i2c_adap)) != NULL)
469 return 0;
471 return -EIO;
475 * DViCO bluebird firmware needs the "warm" product ID to be patched into the
476 * firmware file before download.
479 #define BLUEBIRD_01_ID_OFFSET 6638
480 static int bluebird_patch_dvico_firmware_download(struct usb_device *udev, const struct firmware *fw)
482 if (fw->size < BLUEBIRD_01_ID_OFFSET + 4)
483 return -EINVAL;
485 if (fw->data[BLUEBIRD_01_ID_OFFSET] == (USB_VID_DVICO & 0xff) &&
486 fw->data[BLUEBIRD_01_ID_OFFSET + 1] == USB_VID_DVICO >> 8) {
488 fw->data[BLUEBIRD_01_ID_OFFSET + 2] = udev->descriptor.idProduct + 1;
489 fw->data[BLUEBIRD_01_ID_OFFSET + 3] = udev->descriptor.idProduct >> 8;
491 return usb_cypress_load_firmware(udev,fw,CYPRESS_FX2);
494 return -EINVAL;
497 /* DVB USB Driver stuff */
498 static struct dvb_usb_properties cxusb_medion_properties;
499 static struct dvb_usb_properties cxusb_bluebird_lgh064f_properties;
500 static struct dvb_usb_properties cxusb_bluebird_dee1601_properties;
501 static struct dvb_usb_properties cxusb_bluebird_lgz201_properties;
502 static struct dvb_usb_properties cxusb_bluebird_dtt7579_properties;
504 static int cxusb_probe(struct usb_interface *intf,
505 const struct usb_device_id *id)
507 if (dvb_usb_device_init(intf,&cxusb_medion_properties,THIS_MODULE,NULL) == 0 ||
508 dvb_usb_device_init(intf,&cxusb_bluebird_lgh064f_properties,THIS_MODULE,NULL) == 0 ||
509 dvb_usb_device_init(intf,&cxusb_bluebird_dee1601_properties,THIS_MODULE,NULL) == 0 ||
510 dvb_usb_device_init(intf,&cxusb_bluebird_lgz201_properties,THIS_MODULE,NULL) == 0 ||
511 dvb_usb_device_init(intf,&cxusb_bluebird_dtt7579_properties,THIS_MODULE,NULL) == 0) {
512 return 0;
515 return -EINVAL;
518 static struct usb_device_id cxusb_table [] = {
519 { USB_DEVICE(USB_VID_MEDION, USB_PID_MEDION_MD95700) },
520 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LG064F_COLD) },
521 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LG064F_WARM) },
522 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_DEE1601_COLD) },
523 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_DEE1601_WARM) },
524 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LGZ201_COLD) },
525 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LGZ201_WARM) },
526 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_TH7579_COLD) },
527 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_TH7579_WARM) },
528 { USB_DEVICE(USB_VID_DVICO, USB_PID_DIGITALNOW_BLUEBIRD_DEE1601_COLD) },
529 { USB_DEVICE(USB_VID_DVICO, USB_PID_DIGITALNOW_BLUEBIRD_DEE1601_WARM) },
530 {} /* Terminating entry */
532 MODULE_DEVICE_TABLE (usb, cxusb_table);
534 static struct dvb_usb_properties cxusb_medion_properties = {
535 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
537 .usb_ctrl = CYPRESS_FX2,
539 .size_of_priv = sizeof(struct cxusb_state),
541 .streaming_ctrl = cxusb_streaming_ctrl,
542 .power_ctrl = cxusb_power_ctrl,
543 .frontend_attach = cxusb_cx22702_frontend_attach,
544 .tuner_attach = cxusb_fmd1216me_tuner_attach,
546 .i2c_algo = &cxusb_i2c_algo,
548 .generic_bulk_ctrl_endpoint = 0x01,
549 /* parameter for the MPEG2-data transfer */
550 .urb = {
551 .type = DVB_USB_BULK,
552 .count = 5,
553 .endpoint = 0x02,
554 .u = {
555 .bulk = {
556 .buffersize = 8192,
561 .num_device_descs = 1,
562 .devices = {
563 { "Medion MD95700 (MDUSBTV-HYBRID)",
564 { NULL },
565 { &cxusb_table[0], NULL },
570 static struct dvb_usb_properties cxusb_bluebird_lgh064f_properties = {
571 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
573 .usb_ctrl = DEVICE_SPECIFIC,
574 .firmware = "dvb-usb-bluebird-01.fw",
575 .download_firmware = bluebird_patch_dvico_firmware_download,
576 /* use usb alt setting 0 for EP4 transfer (dvb-t),
577 use usb alt setting 7 for EP2 transfer (atsc) */
579 .size_of_priv = sizeof(struct cxusb_state),
581 .streaming_ctrl = cxusb_streaming_ctrl,
582 .power_ctrl = cxusb_bluebird_power_ctrl,
583 .frontend_attach = cxusb_lgdt3303_frontend_attach,
584 .tuner_attach = cxusb_lgh064f_tuner_attach,
586 .i2c_algo = &cxusb_i2c_algo,
588 .rc_interval = 100,
589 .rc_key_map = dvico_portable_rc_keys,
590 .rc_key_map_size = ARRAY_SIZE(dvico_portable_rc_keys),
591 .rc_query = cxusb_rc_query,
593 .generic_bulk_ctrl_endpoint = 0x01,
594 /* parameter for the MPEG2-data transfer */
595 .urb = {
596 .type = DVB_USB_BULK,
597 .count = 5,
598 .endpoint = 0x02,
599 .u = {
600 .bulk = {
601 .buffersize = 8192,
606 .num_device_descs = 1,
607 .devices = {
608 { "DViCO FusionHDTV5 USB Gold",
609 { &cxusb_table[1], NULL },
610 { &cxusb_table[2], NULL },
615 static struct dvb_usb_properties cxusb_bluebird_dee1601_properties = {
616 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
618 .usb_ctrl = DEVICE_SPECIFIC,
619 .firmware = "dvb-usb-bluebird-01.fw",
620 .download_firmware = bluebird_patch_dvico_firmware_download,
621 /* use usb alt setting 0 for EP4 transfer (dvb-t),
622 use usb alt setting 7 for EP2 transfer (atsc) */
624 .size_of_priv = sizeof(struct cxusb_state),
626 .streaming_ctrl = cxusb_streaming_ctrl,
627 .power_ctrl = cxusb_bluebird_power_ctrl,
628 .frontend_attach = cxusb_dee1601_frontend_attach,
629 .tuner_attach = cxusb_dee1601_tuner_attach,
631 .i2c_algo = &cxusb_i2c_algo,
633 .rc_interval = 150,
634 .rc_key_map = dvico_mce_rc_keys,
635 .rc_key_map_size = ARRAY_SIZE(dvico_mce_rc_keys),
636 .rc_query = cxusb_rc_query,
638 .generic_bulk_ctrl_endpoint = 0x01,
639 /* parameter for the MPEG2-data transfer */
640 .urb = {
641 .type = DVB_USB_BULK,
642 .count = 5,
643 .endpoint = 0x04,
644 .u = {
645 .bulk = {
646 .buffersize = 8192,
651 .num_device_descs = 2,
652 .devices = {
653 { "DViCO FusionHDTV DVB-T Dual USB",
654 { &cxusb_table[3], NULL },
655 { &cxusb_table[4], NULL },
657 { "DigitalNow DVB-T Dual USB",
658 { &cxusb_table[9], NULL },
659 { &cxusb_table[10], NULL },
664 static struct dvb_usb_properties cxusb_bluebird_lgz201_properties = {
665 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
667 .usb_ctrl = DEVICE_SPECIFIC,
668 .firmware = "dvb-usb-bluebird-01.fw",
669 .download_firmware = bluebird_patch_dvico_firmware_download,
670 /* use usb alt setting 0 for EP4 transfer (dvb-t),
671 use usb alt setting 7 for EP2 transfer (atsc) */
673 .size_of_priv = sizeof(struct cxusb_state),
675 .streaming_ctrl = cxusb_streaming_ctrl,
676 .power_ctrl = cxusb_bluebird_power_ctrl,
677 .frontend_attach = cxusb_mt352_frontend_attach,
678 .tuner_attach = cxusb_lgz201_tuner_attach,
680 .i2c_algo = &cxusb_i2c_algo,
682 .rc_interval = 100,
683 .rc_key_map = dvico_portable_rc_keys,
684 .rc_key_map_size = ARRAY_SIZE(dvico_portable_rc_keys),
685 .rc_query = cxusb_rc_query,
687 .generic_bulk_ctrl_endpoint = 0x01,
688 /* parameter for the MPEG2-data transfer */
689 .urb = {
690 .type = DVB_USB_BULK,
691 .count = 5,
692 .endpoint = 0x04,
693 .u = {
694 .bulk = {
695 .buffersize = 8192,
700 .num_device_descs = 1,
701 .devices = {
702 { "DViCO FusionHDTV DVB-T USB (LGZ201)",
703 { &cxusb_table[5], NULL },
704 { &cxusb_table[6], NULL },
709 static struct dvb_usb_properties cxusb_bluebird_dtt7579_properties = {
710 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
712 .usb_ctrl = DEVICE_SPECIFIC,
713 .firmware = "dvb-usb-bluebird-01.fw",
714 .download_firmware = bluebird_patch_dvico_firmware_download,
715 /* use usb alt setting 0 for EP4 transfer (dvb-t),
716 use usb alt setting 7 for EP2 transfer (atsc) */
718 .size_of_priv = sizeof(struct cxusb_state),
720 .streaming_ctrl = cxusb_streaming_ctrl,
721 .power_ctrl = cxusb_bluebird_power_ctrl,
722 .frontend_attach = cxusb_mt352_frontend_attach,
723 .tuner_attach = cxusb_dtt7579_tuner_attach,
725 .i2c_algo = &cxusb_i2c_algo,
727 .rc_interval = 100,
728 .rc_key_map = dvico_portable_rc_keys,
729 .rc_key_map_size = ARRAY_SIZE(dvico_portable_rc_keys),
730 .rc_query = cxusb_rc_query,
732 .generic_bulk_ctrl_endpoint = 0x01,
733 /* parameter for the MPEG2-data transfer */
734 .urb = {
735 .type = DVB_USB_BULK,
736 .count = 5,
737 .endpoint = 0x04,
738 .u = {
739 .bulk = {
740 .buffersize = 8192,
745 .num_device_descs = 1,
746 .devices = {
747 { "DViCO FusionHDTV DVB-T USB (TH7579)",
748 { &cxusb_table[7], NULL },
749 { &cxusb_table[8], NULL },
754 static struct usb_driver cxusb_driver = {
755 .name = "dvb_usb_cxusb",
756 .probe = cxusb_probe,
757 .disconnect = dvb_usb_device_exit,
758 .id_table = cxusb_table,
761 /* module stuff */
762 static int __init cxusb_module_init(void)
764 int result;
765 if ((result = usb_register(&cxusb_driver))) {
766 err("usb_register failed. Error number %d",result);
767 return result;
770 return 0;
773 static void __exit cxusb_module_exit(void)
775 /* deregister this driver from the USB subsystem */
776 usb_deregister(&cxusb_driver);
779 module_init (cxusb_module_init);
780 module_exit (cxusb_module_exit);
782 MODULE_AUTHOR("Patrick Boettcher <patrick.boettcher@desy.de>");
783 MODULE_AUTHOR("Michael Krufky <mkrufky@m1k.net>");
784 MODULE_AUTHOR("Chris Pascoe <c.pascoe@itee.uq.edu.au>");
785 MODULE_DESCRIPTION("Driver for Conexant USB2.0 hybrid reference design");
786 MODULE_VERSION("1.0-alpha");
787 MODULE_LICENSE("GPL");