blob: 163b69405b9554dfb1f0bdd8542b9c337c3f653d [file] [log] [blame]
Patrick Boettcher22c6d932005-07-07 17:58:10 -07001/* 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: check if the cx25840-driver (from ivtv) can be used for the analogue
15 * part
16 *
Patrick Boettcher22c6d932005-07-07 17:58:10 -070017 * Copyright (C) 2005 Patrick Boettcher (patrick.boettcher@desy.de)
Chris Pascoe7c239702006-01-09 18:21:29 -020018 * Copyright (C) 2006 Chris Pascoe (c.pascoe@itee.uq.edu.au)
Patrick Boettcher22c6d932005-07-07 17:58:10 -070019 *
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"
Michael Krufkyeffee032006-01-09 15:25:47 -020029#include "lgdt330x.h"
Chris Pascoe0029ee12006-01-09 18:21:28 -020030#include "mt352.h"
31#include "mt352_priv.h"
Patrick Boettcher22c6d932005-07-07 17:58:10 -070032
33/* debug */
34int dvb_usb_cxusb_debug;
35module_param_named(debug,dvb_usb_cxusb_debug, int, 0644);
36MODULE_PARM_DESC(debug, "set debugging level (1=rc (or-able))." DVB_USB_DEBUG_STATUS);
37
38static int cxusb_ctrl_msg(struct dvb_usb_device *d,
39 u8 cmd, u8 *wbuf, int wlen, u8 *rbuf, int rlen)
40{
41 int wo = (rbuf == NULL || rlen == 0); /* write-only */
42 u8 sndbuf[1+wlen];
43 memset(sndbuf,0,1+wlen);
44
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);
51
52 return 0;
53}
54
Patrick Boettchere2efeab2005-09-09 13:02:51 -070055/* GPIO */
56static void cxusb_gpio_tuner(struct dvb_usb_device *d, int onoff)
Patrick Boettcher22c6d932005-07-07 17:58:10 -070057{
58 struct cxusb_state *st = d->priv;
59 u8 o[2],i;
60
Patrick Boettchere2efeab2005-09-09 13:02:51 -070061 if (st->gpio_write_state[GPIO_TUNER] == onoff)
Patrick Boettcher22c6d932005-07-07 17:58:10 -070062 return;
63
Patrick Boettchere2efeab2005-09-09 13:02:51 -070064 o[0] = GPIO_TUNER;
65 o[1] = onoff;
66 cxusb_ctrl_msg(d,CMD_GPIO_WRITE,o,2,&i,1);
Patrick Boettcher22c6d932005-07-07 17:58:10 -070067
68 if (i != 0x01)
Patrick Boettchere2efeab2005-09-09 13:02:51 -070069 deb_info("gpio_write failed.\n");
Patrick Boettcher22c6d932005-07-07 17:58:10 -070070
Patrick Boettchere2efeab2005-09-09 13:02:51 -070071 st->gpio_write_state[GPIO_TUNER] = onoff;
Patrick Boettcher22c6d932005-07-07 17:58:10 -070072}
73
Patrick Boettchere2efeab2005-09-09 13:02:51 -070074/* I2C */
Patrick Boettcher22c6d932005-07-07 17:58:10 -070075static int cxusb_i2c_xfer(struct i2c_adapter *adap,struct i2c_msg msg[],int num)
76{
77 struct dvb_usb_device *d = i2c_get_adapdata(adap);
78 int i;
79
80 if (down_interruptible(&d->i2c_sem) < 0)
81 return -EAGAIN;
82
83 if (num > 2)
84 warn("more than 2 i2c messages at a time is not handled yet. TODO.");
85
86 for (i = 0; i < num; i++) {
87
88 switch (msg[i].addr) {
89 case 0x63:
Patrick Boettchere2efeab2005-09-09 13:02:51 -070090 cxusb_gpio_tuner(d,0);
Patrick Boettcher22c6d932005-07-07 17:58:10 -070091 break;
92 default:
Patrick Boettchere2efeab2005-09-09 13:02:51 -070093 cxusb_gpio_tuner(d,1);
Patrick Boettcher22c6d932005-07-07 17:58:10 -070094 break;
95 }
96
97 /* read request */
98 if (i+1 < num && (msg[i+1].flags & I2C_M_RD)) {
99 u8 obuf[3+msg[i].len], ibuf[1+msg[i+1].len];
100 obuf[0] = msg[i].len;
101 obuf[1] = msg[i+1].len;
102 obuf[2] = msg[i].addr;
103 memcpy(&obuf[3],msg[i].buf,msg[i].len);
104
105 if (cxusb_ctrl_msg(d, CMD_I2C_READ,
106 obuf, 3+msg[i].len,
107 ibuf, 1+msg[i+1].len) < 0)
108 break;
109
110 if (ibuf[0] != 0x08)
111 deb_info("i2c read could have been failed\n");
112
113 memcpy(msg[i+1].buf,&ibuf[1],msg[i+1].len);
114
115 i++;
116 } else { /* write */
117 u8 obuf[2+msg[i].len], ibuf;
118 obuf[0] = msg[i].addr;
119 obuf[1] = msg[i].len;
120 memcpy(&obuf[2],msg[i].buf,msg[i].len);
121
122 if (cxusb_ctrl_msg(d,CMD_I2C_WRITE, obuf, 2+msg[i].len, &ibuf,1) < 0)
123 break;
124 if (ibuf != 0x08)
125 deb_info("i2c write could have been failed\n");
126 }
127 }
128
129 up(&d->i2c_sem);
130 return i;
131}
132
133static u32 cxusb_i2c_func(struct i2c_adapter *adapter)
134{
135 return I2C_FUNC_I2C;
136}
137
138static struct i2c_algorithm cxusb_i2c_algo = {
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700139 .master_xfer = cxusb_i2c_xfer,
140 .functionality = cxusb_i2c_func,
141};
142
143static int cxusb_power_ctrl(struct dvb_usb_device *d, int onoff)
144{
Patrick Boettchere2efeab2005-09-09 13:02:51 -0700145 u8 b = 0;
146 if (onoff)
147 return cxusb_ctrl_msg(d, CMD_POWER_ON, &b, 1, NULL, 0);
148 else
149 return cxusb_ctrl_msg(d, CMD_POWER_OFF, &b, 1, NULL, 0);
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700150}
151
152static int cxusb_streaming_ctrl(struct dvb_usb_device *d, int onoff)
153{
Patrick Boettcher8257e8a2005-07-07 17:58:15 -0700154 u8 buf[2] = { 0x03, 0x00 };
155 if (onoff)
Patrick Boettchere2efeab2005-09-09 13:02:51 -0700156 cxusb_ctrl_msg(d,CMD_STREAMING_ON, buf, 2, NULL, 0);
Patrick Boettcher8257e8a2005-07-07 17:58:15 -0700157 else
Patrick Boettchere2efeab2005-09-09 13:02:51 -0700158 cxusb_ctrl_msg(d,CMD_STREAMING_OFF, NULL, 0, NULL, 0);
Patrick Boettcher8257e8a2005-07-07 17:58:15 -0700159
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700160 return 0;
161}
162
Chris Pascoe7c239702006-01-09 18:21:29 -0200163static int cxusb_rc_query(struct dvb_usb_device *d, u32 *event, int *state)
164{
165 struct dvb_usb_rc_key *keymap = d->props.rc_key_map;
166 u8 irCode[4];
167 int i;
168
169 cxusb_ctrl_msg(d, CMD_GET_IR_CODE, NULL, 0, irCode, 4);
170
171 *event = 0;
172 *state = REMOTE_NO_KEY_PRESSED;
173
174 for (i = 0; i < d->props.rc_key_map_size; i++) {
175 if (keymap[i].custom == irCode[2] &&
176 keymap[i].data == irCode[3]) {
177 *event = keymap[i].event;
178 *state = REMOTE_KEY_PRESSED;
179
180 return 0;
181 }
182 }
183
184 return 0;
185}
186
Chris Pascoe0029ee12006-01-09 18:21:28 -0200187static int cxusb_dee1601_demod_init(struct dvb_frontend* fe)
188{
189 static u8 clock_config [] = { CLOCK_CTL, 0x38, 0x38 };
190 static u8 reset [] = { RESET, 0x80 };
191 static u8 adc_ctl_1_cfg [] = { ADC_CTL_1, 0x40 };
192 static u8 agc_cfg [] = { AGC_TARGET, 0x28, 0x20 };
193 static u8 gpp_ctl_cfg [] = { GPP_CTL, 0x33 };
194 static u8 capt_range_cfg[] = { CAPT_RANGE, 0x32 };
195
196 mt352_write(fe, clock_config, sizeof(clock_config));
197 udelay(200);
198 mt352_write(fe, reset, sizeof(reset));
199 mt352_write(fe, adc_ctl_1_cfg, sizeof(adc_ctl_1_cfg));
200
201 mt352_write(fe, agc_cfg, sizeof(agc_cfg));
202 mt352_write(fe, gpp_ctl_cfg, sizeof(gpp_ctl_cfg));
203 mt352_write(fe, capt_range_cfg, sizeof(capt_range_cfg));
204
205 return 0;
206}
207
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700208struct cx22702_config cxusb_cx22702_config = {
209 .demod_address = 0x63,
210
Patrick Boettcher8257e8a2005-07-07 17:58:15 -0700211 .output_mode = CX22702_PARALLEL_OUTPUT,
212
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700213 .pll_init = dvb_usb_pll_init_i2c,
214 .pll_set = dvb_usb_pll_set_i2c,
215};
216
Michael Krufkyeffee032006-01-09 15:25:47 -0200217struct lgdt330x_config cxusb_lgdt330x_config = {
218 .demod_address = 0x0e,
219 .demod_chip = LGDT3303,
220 .pll_set = dvb_usb_pll_set_i2c,
221};
222
Chris Pascoe0029ee12006-01-09 18:21:28 -0200223struct mt352_config cxusb_dee1601_config = {
224 .demod_address = 0x0f,
225 .demod_init = cxusb_dee1601_demod_init,
226 .pll_set = dvb_usb_pll_set,
227};
228
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700229/* Callbacks for DVB USB */
Michael Krufkyeffee032006-01-09 15:25:47 -0200230static int cxusb_fmd1216me_tuner_attach(struct dvb_usb_device *d)
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700231{
232 u8 bpll[4] = { 0x0b, 0xdc, 0x9c, 0xa0 };
233 d->pll_addr = 0x61;
Michael Krufkyeffee032006-01-09 15:25:47 -0200234 memcpy(d->pll_init, bpll, 4);
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700235 d->pll_desc = &dvb_pll_fmd1216me;
236 return 0;
237}
238
Michael Krufkyeffee032006-01-09 15:25:47 -0200239static int cxusb_lgh064f_tuner_attach(struct dvb_usb_device *d)
240{
241 u8 bpll[4] = { 0x00, 0x00, 0x18, 0x50 };
242 /* bpll[2] : unset bit 3, set bits 4&5
243 bpll[3] : 0x50 - digital, 0x20 - analog */
244 d->pll_addr = 0x61;
245 memcpy(d->pll_init, bpll, 4);
246 d->pll_desc = &dvb_pll_tdvs_tua6034;
247 return 0;
248}
249
Chris Pascoe0029ee12006-01-09 18:21:28 -0200250static int cxusb_dee1601_tuner_attach(struct dvb_usb_device *d)
251{
252 d->pll_addr = 0x61;
253 d->pll_desc = &dvb_pll_thomson_dtt7579;
254 return 0;
255}
256
Michael Krufkyeffee032006-01-09 15:25:47 -0200257static int cxusb_cx22702_frontend_attach(struct dvb_usb_device *d)
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700258{
Patrick Boettchere2efeab2005-09-09 13:02:51 -0700259 u8 b;
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700260 if (usb_set_interface(d->udev,0,6) < 0)
Patrick Boettcher8257e8a2005-07-07 17:58:15 -0700261 err("set interface failed");
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700262
Patrick Boettchere2efeab2005-09-09 13:02:51 -0700263 cxusb_ctrl_msg(d,CMD_DIGITAL, NULL, 0, &b, 1);
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700264
265 if ((d->fe = cx22702_attach(&cxusb_cx22702_config, &d->i2c_adap)) != NULL)
266 return 0;
267
268 return -EIO;
269}
270
Michael Krufkyeffee032006-01-09 15:25:47 -0200271static int cxusb_lgdt330x_frontend_attach(struct dvb_usb_device *d)
272{
Michael Krufky37bdfa02006-01-09 15:25:47 -0200273 if (usb_set_interface(d->udev,0,7) < 0)
Michael Krufkyeffee032006-01-09 15:25:47 -0200274 err("set interface failed");
275
276 cxusb_ctrl_msg(d,CMD_DIGITAL, NULL, 0, NULL, 0);
277
278 if ((d->fe = lgdt330x_attach(&cxusb_lgdt330x_config, &d->i2c_adap)) != NULL)
279 return 0;
280
281 return -EIO;
282}
283
Chris Pascoe0029ee12006-01-09 18:21:28 -0200284static int cxusb_dee1601_frontend_attach(struct dvb_usb_device *d)
285{
286 if (usb_set_interface(d->udev,0,0) < 0)
287 err("set interface failed");
288
289 cxusb_ctrl_msg(d,CMD_DIGITAL, NULL, 0, NULL, 0);
290
291 if ((d->fe = mt352_attach(&cxusb_dee1601_config, &d->i2c_adap)) != NULL)
292 return 0;
293
294 return -EIO;
295}
296
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700297/* DVB USB Driver stuff */
Michael Krufkyeffee032006-01-09 15:25:47 -0200298static struct dvb_usb_properties cxusb_medion_properties;
Michael Krufkye71bb542006-01-09 15:32:42 -0200299static struct dvb_usb_properties cxusb_bluebird_lgh064f_properties;
Chris Pascoe0029ee12006-01-09 18:21:28 -0200300static struct dvb_usb_properties cxusb_bluebird_dee1601_properties;
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700301
302static int cxusb_probe(struct usb_interface *intf,
303 const struct usb_device_id *id)
304{
Michael Krufkyeffee032006-01-09 15:25:47 -0200305 if (dvb_usb_device_init(intf,&cxusb_medion_properties,THIS_MODULE,NULL) == 0 ||
Chris Pascoe0029ee12006-01-09 18:21:28 -0200306 dvb_usb_device_init(intf,&cxusb_bluebird_lgh064f_properties,THIS_MODULE,NULL) == 0 ||
307 dvb_usb_device_init(intf,&cxusb_bluebird_dee1601_properties,THIS_MODULE,NULL) == 0
308 ){
Michael Krufkyeffee032006-01-09 15:25:47 -0200309 return 0;
310 }
311
312 return -EINVAL;
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700313}
314
315static struct usb_device_id cxusb_table [] = {
316 { USB_DEVICE(USB_VID_MEDION, USB_PID_MEDION_MD95700) },
Michael Krufkyeffee032006-01-09 15:25:47 -0200317 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LG064F_COLD) },
318 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LG064F_WARM) },
Chris Pascoe0029ee12006-01-09 18:21:28 -0200319 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_DEE1601_COLD) },
320 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_DEE1601_WARM) },
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700321 {} /* Terminating entry */
322};
323MODULE_DEVICE_TABLE (usb, cxusb_table);
324
Michael Krufkyeffee032006-01-09 15:25:47 -0200325static struct dvb_usb_properties cxusb_medion_properties = {
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700326 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
327
328 .usb_ctrl = CYPRESS_FX2,
329
330 .size_of_priv = sizeof(struct cxusb_state),
331
332 .streaming_ctrl = cxusb_streaming_ctrl,
333 .power_ctrl = cxusb_power_ctrl,
Michael Krufkyeffee032006-01-09 15:25:47 -0200334 .frontend_attach = cxusb_cx22702_frontend_attach,
335 .tuner_attach = cxusb_fmd1216me_tuner_attach,
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700336
337 .i2c_algo = &cxusb_i2c_algo,
338
339 .generic_bulk_ctrl_endpoint = 0x01,
340 /* parameter for the MPEG2-data transfer */
341 .urb = {
Patrick Boettchere2efeab2005-09-09 13:02:51 -0700342 .type = DVB_USB_BULK,
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700343 .count = 5,
344 .endpoint = 0x02,
345 .u = {
Patrick Boettchere2efeab2005-09-09 13:02:51 -0700346 .bulk = {
347 .buffersize = 8192,
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700348 }
349 }
350 },
351
352 .num_device_descs = 1,
353 .devices = {
354 { "Medion MD95700 (MDUSBTV-HYBRID)",
355 { NULL },
356 { &cxusb_table[0], NULL },
357 },
358 }
359};
360
Michael Krufkye71bb542006-01-09 15:32:42 -0200361static struct dvb_usb_properties cxusb_bluebird_lgh064f_properties = {
Michael Krufkyeffee032006-01-09 15:25:47 -0200362 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
363
364 .usb_ctrl = CYPRESS_FX2,
Michael Krufky37bdfa02006-01-09 15:25:47 -0200365 .firmware = "dvb-usb-bluebird-01.fw",
366 /* use usb alt setting 0 for EP4 transfer (dvb-t),
367 use usb alt setting 7 for EP2 transfer (atsc) */
Michael Krufkyeffee032006-01-09 15:25:47 -0200368
369 .size_of_priv = sizeof(struct cxusb_state),
370
371 .streaming_ctrl = cxusb_streaming_ctrl,
372 .power_ctrl = cxusb_power_ctrl,
373 .frontend_attach = cxusb_lgdt330x_frontend_attach,
374 .tuner_attach = cxusb_lgh064f_tuner_attach,
375
376 .i2c_algo = &cxusb_i2c_algo,
377
378 .generic_bulk_ctrl_endpoint = 0x01,
379 /* parameter for the MPEG2-data transfer */
380 .urb = {
381 .type = DVB_USB_BULK,
382 .count = 5,
383 .endpoint = 0x02,
384 .u = {
385 .bulk = {
386 .buffersize = 8192,
387 }
388 }
389 },
390
391 .num_device_descs = 1,
392 .devices = {
393 { "DViCO FusionHDTV5 USB Gold",
394 { &cxusb_table[1], NULL },
395 { &cxusb_table[2], NULL },
396 },
397 }
398};
399
Chris Pascoe7c239702006-01-09 18:21:29 -0200400struct dvb_usb_rc_key dvico_mce_rc_keys[] = {
401 { 0xfe, 0x02, KEY_TV },
402 { 0xfe, 0x0e, KEY_MP3 },
403 { 0xfe, 0x1a, KEY_DVD },
404 { 0xfe, 0x1e, KEY_FAVORITES },
405 { 0xfe, 0x16, KEY_SETUP },
406 { 0xfe, 0x46, KEY_POWER2 },
407 { 0xfe, 0x0a, KEY_EPG },
408 { 0xfe, 0x49, KEY_BACK },
409 { 0xfe, 0x4d, KEY_MENU },
410 { 0xfe, 0x51, KEY_UP },
411 { 0xfe, 0x5b, KEY_LEFT },
412 { 0xfe, 0x5f, KEY_RIGHT },
413 { 0xfe, 0x53, KEY_DOWN },
414 { 0xfe, 0x5e, KEY_OK },
415 { 0xfe, 0x59, KEY_INFO },
416 { 0xfe, 0x55, KEY_TAB },
417 { 0xfe, 0x0f, KEY_PREVIOUSSONG },/* Replay */
418 { 0xfe, 0x12, KEY_NEXTSONG }, /* Skip */
419 { 0xfe, 0x42, KEY_ENTER }, /* Windows/Start */
420 { 0xfe, 0x15, KEY_VOLUMEUP },
421 { 0xfe, 0x05, KEY_VOLUMEDOWN },
422 { 0xfe, 0x11, KEY_CHANNELUP },
423 { 0xfe, 0x09, KEY_CHANNELDOWN },
424 { 0xfe, 0x52, KEY_CAMERA },
425 { 0xfe, 0x5a, KEY_TUNER }, /* Live */
426 { 0xfe, 0x19, KEY_OPEN },
427 { 0xfe, 0x0b, KEY_1 },
428 { 0xfe, 0x17, KEY_2 },
429 { 0xfe, 0x1b, KEY_3 },
430 { 0xfe, 0x07, KEY_4 },
431 { 0xfe, 0x50, KEY_5 },
432 { 0xfe, 0x54, KEY_6 },
433 { 0xfe, 0x48, KEY_7 },
434 { 0xfe, 0x4c, KEY_8 },
435 { 0xfe, 0x58, KEY_9 },
436 { 0xfe, 0x13, KEY_ANGLE }, /* Aspect */
437 { 0xfe, 0x03, KEY_0 },
438 { 0xfe, 0x1f, KEY_ZOOM },
439 { 0xfe, 0x43, KEY_REWIND },
440 { 0xfe, 0x47, KEY_PLAYPAUSE },
441 { 0xfe, 0x4f, KEY_FASTFORWARD },
442 { 0xfe, 0x57, KEY_MUTE },
443 { 0xfe, 0x0d, KEY_STOP },
444 { 0xfe, 0x01, KEY_RECORD },
445 { 0xfe, 0x4e, KEY_POWER },
446};
447
Chris Pascoe0029ee12006-01-09 18:21:28 -0200448static struct dvb_usb_properties cxusb_bluebird_dee1601_properties = {
449 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
450
451 .usb_ctrl = CYPRESS_FX2,
452 .firmware = "dvb-usb-bluebird-01.fw",
453 /* use usb alt setting 0 for EP4 transfer (dvb-t),
454 use usb alt setting 7 for EP2 transfer (atsc) */
455
456 .size_of_priv = sizeof(struct cxusb_state),
457
458 .streaming_ctrl = cxusb_streaming_ctrl,
459 .power_ctrl = cxusb_power_ctrl,
460 .frontend_attach = cxusb_dee1601_frontend_attach,
461 .tuner_attach = cxusb_dee1601_tuner_attach,
462
463 .i2c_algo = &cxusb_i2c_algo,
464
Chris Pascoe7c239702006-01-09 18:21:29 -0200465 .rc_interval = 150,
466 .rc_key_map = dvico_mce_rc_keys,
467 .rc_key_map_size = ARRAY_SIZE(dvico_mce_rc_keys),
468 .rc_query = cxusb_rc_query,
469
Chris Pascoe0029ee12006-01-09 18:21:28 -0200470 .generic_bulk_ctrl_endpoint = 0x01,
471 /* parameter for the MPEG2-data transfer */
472 .urb = {
473 .type = DVB_USB_BULK,
474 .count = 5,
475 .endpoint = 0x04,
476 .u = {
477 .bulk = {
478 .buffersize = 8192,
479 }
480 }
481 },
482
483 .num_device_descs = 1,
484 .devices = {
485 { "DViCO FusionHDTV DVB-T Dual USB",
486 { &cxusb_table[3], NULL },
487 { &cxusb_table[4], NULL },
488 },
489 }
490};
491
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700492static struct usb_driver cxusb_driver = {
Patrick Boettcher63b5c1c2005-07-07 17:58:30 -0700493 .name = "dvb_usb_cxusb",
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700494 .probe = cxusb_probe,
495 .disconnect = dvb_usb_device_exit,
496 .id_table = cxusb_table,
497};
498
499/* module stuff */
500static int __init cxusb_module_init(void)
501{
502 int result;
503 if ((result = usb_register(&cxusb_driver))) {
504 err("usb_register failed. Error number %d",result);
505 return result;
506 }
507
508 return 0;
509}
510
511static void __exit cxusb_module_exit(void)
512{
513 /* deregister this driver from the USB subsystem */
514 usb_deregister(&cxusb_driver);
515}
516
517module_init (cxusb_module_init);
518module_exit (cxusb_module_exit);
519
520MODULE_AUTHOR("Patrick Boettcher <patrick.boettcher@desy.de>");
521MODULE_DESCRIPTION("Driver for Conexant USB2.0 hybrid reference design");
522MODULE_VERSION("1.0-alpha");
523MODULE_LICENSE("GPL");