]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blob - drivers/media/dvb/dvb-usb/cxusb.c
V4L/DVB (4027): Fixes after dvb_tuner_ops-conversion
[mirror_ubuntu-jammy-kernel.git] / drivers / media / dvb / dvb-usb / cxusb.c
1 /* DVB USB compliant linux driver for Conexant USB reference design.
2 *
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.
8 *
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).
13 *
14 * TODO: Use the cx25840-driver for the analogue part
15 *
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)
19 *
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.
23 *
24 * see Documentation/dvb/README.dvb-usb for more information
25 */
26 #include "cxusb.h"
27
28 #include "cx22702.h"
29 #include "lgdt330x.h"
30 #include "lg_h06xf.h"
31 #include "mt352.h"
32 #include "mt352_priv.h"
33
34 /* debug */
35 int dvb_usb_cxusb_debug;
36 module_param_named(debug,dvb_usb_cxusb_debug, int, 0644);
37 MODULE_PARM_DESC(debug, "set debugging level (1=rc (or-able))." DVB_USB_DEBUG_STATUS);
38
39 static int cxusb_ctrl_msg(struct dvb_usb_device *d,
40 u8 cmd, u8 *wbuf, int wlen, u8 *rbuf, int rlen)
41 {
42 int wo = (rbuf == NULL || rlen == 0); /* write-only */
43 u8 sndbuf[1+wlen];
44 memset(sndbuf,0,1+wlen);
45
46 sndbuf[0] = cmd;
47 memcpy(&sndbuf[1],wbuf,wlen);
48 if (wo)
49 dvb_usb_generic_write(d,sndbuf,1+wlen);
50 else
51 dvb_usb_generic_rw(d,sndbuf,1+wlen,rbuf,rlen,0);
52
53 return 0;
54 }
55
56 /* GPIO */
57 static void cxusb_gpio_tuner(struct dvb_usb_device *d, int onoff)
58 {
59 struct cxusb_state *st = d->priv;
60 u8 o[2],i;
61
62 if (st->gpio_write_state[GPIO_TUNER] == onoff)
63 return;
64
65 o[0] = GPIO_TUNER;
66 o[1] = onoff;
67 cxusb_ctrl_msg(d,CMD_GPIO_WRITE,o,2,&i,1);
68
69 if (i != 0x01)
70 deb_info("gpio_write failed.\n");
71
72 st->gpio_write_state[GPIO_TUNER] = onoff;
73 }
74
75 /* I2C */
76 static int cxusb_i2c_xfer(struct i2c_adapter *adap,struct i2c_msg msg[],int num)
77 {
78 struct dvb_usb_device *d = i2c_get_adapdata(adap);
79 int i;
80
81 if (mutex_lock_interruptible(&d->i2c_mutex) < 0)
82 return -EAGAIN;
83
84 if (num > 2)
85 warn("more than two i2c messages at a time is not handled yet. TODO.");
86
87 for (i = 0; i < num; i++) {
88
89 if (d->udev->descriptor.idVendor == USB_VID_MEDION)
90 switch (msg[i].addr) {
91 case 0x63:
92 cxusb_gpio_tuner(d,0);
93 break;
94 default:
95 cxusb_gpio_tuner(d,1);
96 break;
97 }
98
99 /* read request */
100 if (i+1 < num && (msg[i+1].flags & I2C_M_RD)) {
101 u8 obuf[3+msg[i].len], ibuf[1+msg[i+1].len];
102 obuf[0] = msg[i].len;
103 obuf[1] = msg[i+1].len;
104 obuf[2] = msg[i].addr;
105 memcpy(&obuf[3],msg[i].buf,msg[i].len);
106
107 if (cxusb_ctrl_msg(d, CMD_I2C_READ,
108 obuf, 3+msg[i].len,
109 ibuf, 1+msg[i+1].len) < 0)
110 break;
111
112 if (ibuf[0] != 0x08)
113 deb_i2c("i2c read may have failed\n");
114
115 memcpy(msg[i+1].buf,&ibuf[1],msg[i+1].len);
116
117 i++;
118 } else { /* write */
119 u8 obuf[2+msg[i].len], ibuf;
120 obuf[0] = msg[i].addr;
121 obuf[1] = msg[i].len;
122 memcpy(&obuf[2],msg[i].buf,msg[i].len);
123
124 if (cxusb_ctrl_msg(d,CMD_I2C_WRITE, obuf, 2+msg[i].len, &ibuf,1) < 0)
125 break;
126 if (ibuf != 0x08)
127 deb_i2c("i2c write may have failed\n");
128 }
129 }
130
131 mutex_unlock(&d->i2c_mutex);
132 return i;
133 }
134
135 static u32 cxusb_i2c_func(struct i2c_adapter *adapter)
136 {
137 return I2C_FUNC_I2C;
138 }
139
140 static struct i2c_algorithm cxusb_i2c_algo = {
141 .master_xfer = cxusb_i2c_xfer,
142 .functionality = cxusb_i2c_func,
143 };
144
145 static int cxusb_power_ctrl(struct dvb_usb_device *d, int onoff)
146 {
147 u8 b = 0;
148 if (onoff)
149 return cxusb_ctrl_msg(d, CMD_POWER_ON, &b, 1, NULL, 0);
150 else
151 return cxusb_ctrl_msg(d, CMD_POWER_OFF, &b, 1, NULL, 0);
152 }
153
154 static int cxusb_bluebird_power_ctrl(struct dvb_usb_device *d, int onoff)
155 {
156 u8 b = 0;
157 if (onoff)
158 return cxusb_ctrl_msg(d, CMD_POWER_ON, &b, 1, NULL, 0);
159 else
160 return 0;
161 }
162
163 static int cxusb_streaming_ctrl(struct dvb_usb_device *d, int onoff)
164 {
165 u8 buf[2] = { 0x03, 0x00 };
166 if (onoff)
167 cxusb_ctrl_msg(d,CMD_STREAMING_ON, buf, 2, NULL, 0);
168 else
169 cxusb_ctrl_msg(d,CMD_STREAMING_OFF, NULL, 0, NULL, 0);
170
171 return 0;
172 }
173
174 static int cxusb_rc_query(struct dvb_usb_device *d, u32 *event, int *state)
175 {
176 struct dvb_usb_rc_key *keymap = d->props.rc_key_map;
177 u8 ircode[4];
178 int i;
179
180 cxusb_ctrl_msg(d, CMD_GET_IR_CODE, NULL, 0, ircode, 4);
181
182 *event = 0;
183 *state = REMOTE_NO_KEY_PRESSED;
184
185 for (i = 0; i < d->props.rc_key_map_size; i++) {
186 if (keymap[i].custom == ircode[2] &&
187 keymap[i].data == ircode[3]) {
188 *event = keymap[i].event;
189 *state = REMOTE_KEY_PRESSED;
190
191 return 0;
192 }
193 }
194
195 return 0;
196 }
197
198 static struct dvb_usb_rc_key dvico_mce_rc_keys[] = {
199 { 0xfe, 0x02, KEY_TV },
200 { 0xfe, 0x0e, KEY_MP3 },
201 { 0xfe, 0x1a, KEY_DVD },
202 { 0xfe, 0x1e, KEY_FAVORITES },
203 { 0xfe, 0x16, KEY_SETUP },
204 { 0xfe, 0x46, KEY_POWER2 },
205 { 0xfe, 0x0a, KEY_EPG },
206 { 0xfe, 0x49, KEY_BACK },
207 { 0xfe, 0x4d, KEY_MENU },
208 { 0xfe, 0x51, KEY_UP },
209 { 0xfe, 0x5b, KEY_LEFT },
210 { 0xfe, 0x5f, KEY_RIGHT },
211 { 0xfe, 0x53, KEY_DOWN },
212 { 0xfe, 0x5e, KEY_OK },
213 { 0xfe, 0x59, KEY_INFO },
214 { 0xfe, 0x55, KEY_TAB },
215 { 0xfe, 0x0f, KEY_PREVIOUSSONG },/* Replay */
216 { 0xfe, 0x12, KEY_NEXTSONG }, /* Skip */
217 { 0xfe, 0x42, KEY_ENTER }, /* Windows/Start */
218 { 0xfe, 0x15, KEY_VOLUMEUP },
219 { 0xfe, 0x05, KEY_VOLUMEDOWN },
220 { 0xfe, 0x11, KEY_CHANNELUP },
221 { 0xfe, 0x09, KEY_CHANNELDOWN },
222 { 0xfe, 0x52, KEY_CAMERA },
223 { 0xfe, 0x5a, KEY_TUNER }, /* Live */
224 { 0xfe, 0x19, KEY_OPEN },
225 { 0xfe, 0x0b, KEY_1 },
226 { 0xfe, 0x17, KEY_2 },
227 { 0xfe, 0x1b, KEY_3 },
228 { 0xfe, 0x07, KEY_4 },
229 { 0xfe, 0x50, KEY_5 },
230 { 0xfe, 0x54, KEY_6 },
231 { 0xfe, 0x48, KEY_7 },
232 { 0xfe, 0x4c, KEY_8 },
233 { 0xfe, 0x58, KEY_9 },
234 { 0xfe, 0x13, KEY_ANGLE }, /* Aspect */
235 { 0xfe, 0x03, KEY_0 },
236 { 0xfe, 0x1f, KEY_ZOOM },
237 { 0xfe, 0x43, KEY_REWIND },
238 { 0xfe, 0x47, KEY_PLAYPAUSE },
239 { 0xfe, 0x4f, KEY_FASTFORWARD },
240 { 0xfe, 0x57, KEY_MUTE },
241 { 0xfe, 0x0d, KEY_STOP },
242 { 0xfe, 0x01, KEY_RECORD },
243 { 0xfe, 0x4e, KEY_POWER },
244 };
245
246 static struct dvb_usb_rc_key dvico_portable_rc_keys[] = {
247 { 0xfc, 0x02, KEY_SETUP }, /* Profile */
248 { 0xfc, 0x43, KEY_POWER2 },
249 { 0xfc, 0x06, KEY_EPG },
250 { 0xfc, 0x5a, KEY_BACK },
251 { 0xfc, 0x05, KEY_MENU },
252 { 0xfc, 0x47, KEY_INFO },
253 { 0xfc, 0x01, KEY_TAB },
254 { 0xfc, 0x42, KEY_PREVIOUSSONG },/* Replay */
255 { 0xfc, 0x49, KEY_VOLUMEUP },
256 { 0xfc, 0x09, KEY_VOLUMEDOWN },
257 { 0xfc, 0x54, KEY_CHANNELUP },
258 { 0xfc, 0x0b, KEY_CHANNELDOWN },
259 { 0xfc, 0x16, KEY_CAMERA },
260 { 0xfc, 0x40, KEY_TUNER }, /* ATV/DTV */
261 { 0xfc, 0x45, KEY_OPEN },
262 { 0xfc, 0x19, KEY_1 },
263 { 0xfc, 0x18, KEY_2 },
264 { 0xfc, 0x1b, KEY_3 },
265 { 0xfc, 0x1a, KEY_4 },
266 { 0xfc, 0x58, KEY_5 },
267 { 0xfc, 0x59, KEY_6 },
268 { 0xfc, 0x15, KEY_7 },
269 { 0xfc, 0x14, KEY_8 },
270 { 0xfc, 0x17, KEY_9 },
271 { 0xfc, 0x44, KEY_ANGLE }, /* Aspect */
272 { 0xfc, 0x55, KEY_0 },
273 { 0xfc, 0x07, KEY_ZOOM },
274 { 0xfc, 0x0a, KEY_REWIND },
275 { 0xfc, 0x08, KEY_PLAYPAUSE },
276 { 0xfc, 0x4b, KEY_FASTFORWARD },
277 { 0xfc, 0x5b, KEY_MUTE },
278 { 0xfc, 0x04, KEY_STOP },
279 { 0xfc, 0x56, KEY_RECORD },
280 { 0xfc, 0x57, KEY_POWER },
281 { 0xfc, 0x41, KEY_UNKNOWN }, /* INPUT */
282 { 0xfc, 0x00, KEY_UNKNOWN }, /* HD */
283 };
284
285 static int cxusb_dee1601_demod_init(struct dvb_frontend* fe)
286 {
287 static u8 clock_config [] = { CLOCK_CTL, 0x38, 0x28 };
288 static u8 reset [] = { RESET, 0x80 };
289 static u8 adc_ctl_1_cfg [] = { ADC_CTL_1, 0x40 };
290 static u8 agc_cfg [] = { AGC_TARGET, 0x28, 0x20 };
291 static u8 gpp_ctl_cfg [] = { GPP_CTL, 0x33 };
292 static u8 capt_range_cfg[] = { CAPT_RANGE, 0x32 };
293
294 mt352_write(fe, clock_config, sizeof(clock_config));
295 udelay(200);
296 mt352_write(fe, reset, sizeof(reset));
297 mt352_write(fe, adc_ctl_1_cfg, sizeof(adc_ctl_1_cfg));
298
299 mt352_write(fe, agc_cfg, sizeof(agc_cfg));
300 mt352_write(fe, gpp_ctl_cfg, sizeof(gpp_ctl_cfg));
301 mt352_write(fe, capt_range_cfg, sizeof(capt_range_cfg));
302
303 return 0;
304 }
305
306 static int cxusb_mt352_demod_init(struct dvb_frontend* fe)
307 { /* used in both lgz201 and th7579 */
308 static u8 clock_config [] = { CLOCK_CTL, 0x38, 0x29 };
309 static u8 reset [] = { RESET, 0x80 };
310 static u8 adc_ctl_1_cfg [] = { ADC_CTL_1, 0x40 };
311 static u8 agc_cfg [] = { AGC_TARGET, 0x24, 0x20 };
312 static u8 gpp_ctl_cfg [] = { GPP_CTL, 0x33 };
313 static u8 capt_range_cfg[] = { CAPT_RANGE, 0x32 };
314
315 mt352_write(fe, clock_config, sizeof(clock_config));
316 udelay(200);
317 mt352_write(fe, reset, sizeof(reset));
318 mt352_write(fe, adc_ctl_1_cfg, sizeof(adc_ctl_1_cfg));
319
320 mt352_write(fe, agc_cfg, sizeof(agc_cfg));
321 mt352_write(fe, gpp_ctl_cfg, sizeof(gpp_ctl_cfg));
322 mt352_write(fe, capt_range_cfg, sizeof(capt_range_cfg));
323 return 0;
324 }
325
326 static int cxusb_lgh064f_tuner_set_params(struct dvb_frontend *fe,
327 struct dvb_frontend_parameters *fep)
328 {
329 struct dvb_usb_device *d = fe->dvb->priv;
330 return lg_h06xf_pll_set(fe, &d->i2c_adap, fep);
331 }
332
333 static struct cx22702_config cxusb_cx22702_config = {
334 .demod_address = 0x63,
335
336 .output_mode = CX22702_PARALLEL_OUTPUT,
337 };
338
339 static struct lgdt330x_config cxusb_lgdt3303_config = {
340 .demod_address = 0x0e,
341 .demod_chip = LGDT3303,
342 };
343
344 static struct mt352_config cxusb_dee1601_config = {
345 .demod_address = 0x0f,
346 .demod_init = cxusb_dee1601_demod_init,
347 };
348
349 static struct mt352_config cxusb_mt352_config = {
350 /* used in both lgz201 and th7579 */
351 .demod_address = 0x0f,
352 .demod_init = cxusb_mt352_demod_init,
353 };
354
355 /* Callbacks for DVB USB */
356 static int cxusb_fmd1216me_tuner_attach(struct dvb_usb_device *d)
357 {
358 u8 bpll[4] = { 0x0b, 0xdc, 0x9c, 0xa0 };
359 d->pll_addr = 0x61;
360 memcpy(d->pll_init, bpll, 4);
361 d->pll_desc = &dvb_pll_fmd1216me;
362
363 d->fe->ops->tuner_ops.init = dvb_usb_tuner_init_i2c;
364 d->fe->ops->tuner_ops.set_params = dvb_usb_tuner_set_params_i2c;
365
366 return 0;
367 }
368
369 static int cxusb_dee1601_tuner_attach(struct dvb_usb_device *d)
370 {
371 d->pll_addr = 0x61;
372 d->pll_desc = &dvb_pll_thomson_dtt7579;
373 d->fe->ops->tuner_ops.calc_regs = dvb_usb_tuner_calc_regs;
374 return 0;
375 }
376
377 static int cxusb_lgz201_tuner_attach(struct dvb_usb_device *d)
378 {
379 d->pll_addr = 0x61;
380 d->pll_desc = &dvb_pll_lg_z201;
381 d->fe->ops->tuner_ops.calc_regs = dvb_usb_tuner_calc_regs;
382 return 0;
383 }
384
385 static int cxusb_dtt7579_tuner_attach(struct dvb_usb_device *d)
386 {
387 d->pll_addr = 0x60;
388 d->pll_desc = &dvb_pll_thomson_dtt7579;
389 d->fe->ops->tuner_ops.calc_regs = dvb_usb_tuner_calc_regs;
390 return 0;
391 }
392
393 static int cxusb_lgdt3303_tuner_attach(struct dvb_usb_device *d)
394 {
395 d->fe->ops->tuner_ops.set_params = cxusb_lgh064f_tuner_set_params;
396 return 0;
397 }
398
399 static int cxusb_cx22702_frontend_attach(struct dvb_usb_device *d)
400 {
401 u8 b;
402 if (usb_set_interface(d->udev,0,6) < 0)
403 err("set interface failed");
404
405 cxusb_ctrl_msg(d,CMD_DIGITAL, NULL, 0, &b, 1);
406
407 if ((d->fe = cx22702_attach(&cxusb_cx22702_config, &d->i2c_adap)) != NULL)
408 return 0;
409
410 return -EIO;
411 }
412
413 static int cxusb_lgdt3303_frontend_attach(struct dvb_usb_device *d)
414 {
415 if (usb_set_interface(d->udev,0,7) < 0)
416 err("set interface failed");
417
418 cxusb_ctrl_msg(d,CMD_DIGITAL, NULL, 0, NULL, 0);
419
420 if ((d->fe = lgdt330x_attach(&cxusb_lgdt3303_config, &d->i2c_adap)) != NULL)
421 return 0;
422
423 return -EIO;
424 }
425
426 static int cxusb_mt352_frontend_attach(struct dvb_usb_device *d)
427 { /* used in both lgz201 and th7579 */
428 if (usb_set_interface(d->udev,0,0) < 0)
429 err("set interface failed");
430
431 cxusb_ctrl_msg(d,CMD_DIGITAL, NULL, 0, NULL, 0);
432
433 if ((d->fe = mt352_attach(&cxusb_mt352_config, &d->i2c_adap)) != NULL)
434 return 0;
435
436 return -EIO;
437 }
438
439 static int cxusb_dee1601_frontend_attach(struct dvb_usb_device *d)
440 {
441 if (usb_set_interface(d->udev,0,0) < 0)
442 err("set interface failed");
443
444 cxusb_ctrl_msg(d,CMD_DIGITAL, NULL, 0, NULL, 0);
445
446 if ((d->fe = mt352_attach(&cxusb_dee1601_config, &d->i2c_adap)) != NULL)
447 return 0;
448
449 return -EIO;
450 }
451
452 /*
453 * DViCO bluebird firmware needs the "warm" product ID to be patched into the
454 * firmware file before download.
455 */
456
457 #define BLUEBIRD_01_ID_OFFSET 6638
458 static int bluebird_patch_dvico_firmware_download(struct usb_device *udev, const struct firmware *fw)
459 {
460 if (fw->size < BLUEBIRD_01_ID_OFFSET + 4)
461 return -EINVAL;
462
463 if (fw->data[BLUEBIRD_01_ID_OFFSET] == (USB_VID_DVICO & 0xff) &&
464 fw->data[BLUEBIRD_01_ID_OFFSET + 1] == USB_VID_DVICO >> 8) {
465
466 fw->data[BLUEBIRD_01_ID_OFFSET + 2] = udev->descriptor.idProduct + 1;
467 fw->data[BLUEBIRD_01_ID_OFFSET + 3] = udev->descriptor.idProduct >> 8;
468
469 return usb_cypress_load_firmware(udev,fw,CYPRESS_FX2);
470 }
471
472 return -EINVAL;
473 }
474
475 /* DVB USB Driver stuff */
476 static struct dvb_usb_properties cxusb_medion_properties;
477 static struct dvb_usb_properties cxusb_bluebird_lgh064f_properties;
478 static struct dvb_usb_properties cxusb_bluebird_dee1601_properties;
479 static struct dvb_usb_properties cxusb_bluebird_lgz201_properties;
480 static struct dvb_usb_properties cxusb_bluebird_dtt7579_properties;
481
482 static int cxusb_probe(struct usb_interface *intf,
483 const struct usb_device_id *id)
484 {
485 if (dvb_usb_device_init(intf,&cxusb_medion_properties,THIS_MODULE,NULL) == 0 ||
486 dvb_usb_device_init(intf,&cxusb_bluebird_lgh064f_properties,THIS_MODULE,NULL) == 0 ||
487 dvb_usb_device_init(intf,&cxusb_bluebird_dee1601_properties,THIS_MODULE,NULL) == 0 ||
488 dvb_usb_device_init(intf,&cxusb_bluebird_lgz201_properties,THIS_MODULE,NULL) == 0 ||
489 dvb_usb_device_init(intf,&cxusb_bluebird_dtt7579_properties,THIS_MODULE,NULL) == 0) {
490 return 0;
491 }
492
493 return -EINVAL;
494 }
495
496 static struct usb_device_id cxusb_table [] = {
497 { USB_DEVICE(USB_VID_MEDION, USB_PID_MEDION_MD95700) },
498 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LG064F_COLD) },
499 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LG064F_WARM) },
500 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_DEE1601_COLD) },
501 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_DEE1601_WARM) },
502 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LGZ201_COLD) },
503 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LGZ201_WARM) },
504 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_TH7579_COLD) },
505 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_TH7579_WARM) },
506 { USB_DEVICE(USB_VID_DVICO, USB_PID_DIGITALNOW_BLUEBIRD_DEE1601_COLD) },
507 { USB_DEVICE(USB_VID_DVICO, USB_PID_DIGITALNOW_BLUEBIRD_DEE1601_WARM) },
508 {} /* Terminating entry */
509 };
510 MODULE_DEVICE_TABLE (usb, cxusb_table);
511
512 static struct dvb_usb_properties cxusb_medion_properties = {
513 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
514
515 .usb_ctrl = CYPRESS_FX2,
516
517 .size_of_priv = sizeof(struct cxusb_state),
518
519 .streaming_ctrl = cxusb_streaming_ctrl,
520 .power_ctrl = cxusb_power_ctrl,
521 .frontend_attach = cxusb_cx22702_frontend_attach,
522 .tuner_attach = cxusb_fmd1216me_tuner_attach,
523
524 .i2c_algo = &cxusb_i2c_algo,
525
526 .generic_bulk_ctrl_endpoint = 0x01,
527 /* parameter for the MPEG2-data transfer */
528 .urb = {
529 .type = DVB_USB_BULK,
530 .count = 5,
531 .endpoint = 0x02,
532 .u = {
533 .bulk = {
534 .buffersize = 8192,
535 }
536 }
537 },
538
539 .num_device_descs = 1,
540 .devices = {
541 { "Medion MD95700 (MDUSBTV-HYBRID)",
542 { NULL },
543 { &cxusb_table[0], NULL },
544 },
545 }
546 };
547
548 static struct dvb_usb_properties cxusb_bluebird_lgh064f_properties = {
549 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
550
551 .usb_ctrl = DEVICE_SPECIFIC,
552 .firmware = "dvb-usb-bluebird-01.fw",
553 .download_firmware = bluebird_patch_dvico_firmware_download,
554 /* use usb alt setting 0 for EP4 transfer (dvb-t),
555 use usb alt setting 7 for EP2 transfer (atsc) */
556
557 .size_of_priv = sizeof(struct cxusb_state),
558
559 .streaming_ctrl = cxusb_streaming_ctrl,
560 .power_ctrl = cxusb_bluebird_power_ctrl,
561 .frontend_attach = cxusb_lgdt3303_frontend_attach,
562 .tuner_attach = cxusb_lgdt3303_tuner_attach,
563
564 .i2c_algo = &cxusb_i2c_algo,
565
566 .rc_interval = 100,
567 .rc_key_map = dvico_portable_rc_keys,
568 .rc_key_map_size = ARRAY_SIZE(dvico_portable_rc_keys),
569 .rc_query = cxusb_rc_query,
570
571 .generic_bulk_ctrl_endpoint = 0x01,
572 /* parameter for the MPEG2-data transfer */
573 .urb = {
574 .type = DVB_USB_BULK,
575 .count = 5,
576 .endpoint = 0x02,
577 .u = {
578 .bulk = {
579 .buffersize = 8192,
580 }
581 }
582 },
583
584 .num_device_descs = 1,
585 .devices = {
586 { "DViCO FusionHDTV5 USB Gold",
587 { &cxusb_table[1], NULL },
588 { &cxusb_table[2], NULL },
589 },
590 }
591 };
592
593 static struct dvb_usb_properties cxusb_bluebird_dee1601_properties = {
594 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
595
596 .usb_ctrl = DEVICE_SPECIFIC,
597 .firmware = "dvb-usb-bluebird-01.fw",
598 .download_firmware = bluebird_patch_dvico_firmware_download,
599 /* use usb alt setting 0 for EP4 transfer (dvb-t),
600 use usb alt setting 7 for EP2 transfer (atsc) */
601
602 .size_of_priv = sizeof(struct cxusb_state),
603
604 .streaming_ctrl = cxusb_streaming_ctrl,
605 .power_ctrl = cxusb_bluebird_power_ctrl,
606 .frontend_attach = cxusb_dee1601_frontend_attach,
607 .tuner_attach = cxusb_dee1601_tuner_attach,
608
609 .i2c_algo = &cxusb_i2c_algo,
610
611 .rc_interval = 150,
612 .rc_key_map = dvico_mce_rc_keys,
613 .rc_key_map_size = ARRAY_SIZE(dvico_mce_rc_keys),
614 .rc_query = cxusb_rc_query,
615
616 .generic_bulk_ctrl_endpoint = 0x01,
617 /* parameter for the MPEG2-data transfer */
618 .urb = {
619 .type = DVB_USB_BULK,
620 .count = 5,
621 .endpoint = 0x04,
622 .u = {
623 .bulk = {
624 .buffersize = 8192,
625 }
626 }
627 },
628
629 .num_device_descs = 2,
630 .devices = {
631 { "DViCO FusionHDTV DVB-T Dual USB",
632 { &cxusb_table[3], NULL },
633 { &cxusb_table[4], NULL },
634 },
635 { "DigitalNow DVB-T Dual USB",
636 { &cxusb_table[9], NULL },
637 { &cxusb_table[10], NULL },
638 },
639 }
640 };
641
642 static struct dvb_usb_properties cxusb_bluebird_lgz201_properties = {
643 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
644
645 .usb_ctrl = DEVICE_SPECIFIC,
646 .firmware = "dvb-usb-bluebird-01.fw",
647 .download_firmware = bluebird_patch_dvico_firmware_download,
648 /* use usb alt setting 0 for EP4 transfer (dvb-t),
649 use usb alt setting 7 for EP2 transfer (atsc) */
650
651 .size_of_priv = sizeof(struct cxusb_state),
652
653 .streaming_ctrl = cxusb_streaming_ctrl,
654 .power_ctrl = cxusb_bluebird_power_ctrl,
655 .frontend_attach = cxusb_mt352_frontend_attach,
656 .tuner_attach = cxusb_lgz201_tuner_attach,
657
658 .i2c_algo = &cxusb_i2c_algo,
659
660 .rc_interval = 100,
661 .rc_key_map = dvico_portable_rc_keys,
662 .rc_key_map_size = ARRAY_SIZE(dvico_portable_rc_keys),
663 .rc_query = cxusb_rc_query,
664
665 .generic_bulk_ctrl_endpoint = 0x01,
666 /* parameter for the MPEG2-data transfer */
667 .urb = {
668 .type = DVB_USB_BULK,
669 .count = 5,
670 .endpoint = 0x04,
671 .u = {
672 .bulk = {
673 .buffersize = 8192,
674 }
675 }
676 },
677
678 .num_device_descs = 1,
679 .devices = {
680 { "DViCO FusionHDTV DVB-T USB (LGZ201)",
681 { &cxusb_table[5], NULL },
682 { &cxusb_table[6], NULL },
683 },
684 }
685 };
686
687 static struct dvb_usb_properties cxusb_bluebird_dtt7579_properties = {
688 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
689
690 .usb_ctrl = DEVICE_SPECIFIC,
691 .firmware = "dvb-usb-bluebird-01.fw",
692 .download_firmware = bluebird_patch_dvico_firmware_download,
693 /* use usb alt setting 0 for EP4 transfer (dvb-t),
694 use usb alt setting 7 for EP2 transfer (atsc) */
695
696 .size_of_priv = sizeof(struct cxusb_state),
697
698 .streaming_ctrl = cxusb_streaming_ctrl,
699 .power_ctrl = cxusb_bluebird_power_ctrl,
700 .frontend_attach = cxusb_mt352_frontend_attach,
701 .tuner_attach = cxusb_dtt7579_tuner_attach,
702
703 .i2c_algo = &cxusb_i2c_algo,
704
705 .rc_interval = 100,
706 .rc_key_map = dvico_portable_rc_keys,
707 .rc_key_map_size = ARRAY_SIZE(dvico_portable_rc_keys),
708 .rc_query = cxusb_rc_query,
709
710 .generic_bulk_ctrl_endpoint = 0x01,
711 /* parameter for the MPEG2-data transfer */
712 .urb = {
713 .type = DVB_USB_BULK,
714 .count = 5,
715 .endpoint = 0x04,
716 .u = {
717 .bulk = {
718 .buffersize = 8192,
719 }
720 }
721 },
722
723 .num_device_descs = 1,
724 .devices = {
725 { "DViCO FusionHDTV DVB-T USB (TH7579)",
726 { &cxusb_table[7], NULL },
727 { &cxusb_table[8], NULL },
728 },
729 }
730 };
731
732 static struct usb_driver cxusb_driver = {
733 .name = "dvb_usb_cxusb",
734 .probe = cxusb_probe,
735 .disconnect = dvb_usb_device_exit,
736 .id_table = cxusb_table,
737 };
738
739 /* module stuff */
740 static int __init cxusb_module_init(void)
741 {
742 int result;
743 if ((result = usb_register(&cxusb_driver))) {
744 err("usb_register failed. Error number %d",result);
745 return result;
746 }
747
748 return 0;
749 }
750
751 static void __exit cxusb_module_exit(void)
752 {
753 /* deregister this driver from the USB subsystem */
754 usb_deregister(&cxusb_driver);
755 }
756
757 module_init (cxusb_module_init);
758 module_exit (cxusb_module_exit);
759
760 MODULE_AUTHOR("Patrick Boettcher <patrick.boettcher@desy.de>");
761 MODULE_AUTHOR("Michael Krufky <mkrufky@m1k.net>");
762 MODULE_AUTHOR("Chris Pascoe <c.pascoe@itee.uq.edu.au>");
763 MODULE_DESCRIPTION("Driver for Conexant USB2.0 hybrid reference design");
764 MODULE_VERSION("1.0-alpha");
765 MODULE_LICENSE("GPL");