blob: bac2ae3b4a1f86972934b946f4168c5da8d109db [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 *
Michael Krufky81481e92006-01-09 18:21:38 -020014 * TODO: Use the cx25840-driver for the analogue part
Patrick Boettcher22c6d932005-07-07 17:58:10 -070015 *
Patrick Boettcher22c6d932005-07-07 17:58:10 -070016 * Copyright (C) 2005 Patrick Boettcher (patrick.boettcher@desy.de)
Michael Krufky5b9ed282006-10-15 14:51:08 -030017 * Copyright (C) 2006 Michael Krufky (mkrufky@linuxtv.org)
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 *
Michael Krufkyf35db232006-12-05 14:53:39 -030020 * 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.
Patrick Boettcher22c6d932005-07-07 17:58:10 -070023 *
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"
Michael Krufkyc9ce3942006-06-11 04:24:31 -030032#include "zl10353.h"
Patrick Boettcher22c6d932005-07-07 17:58:10 -070033
34/* debug */
35int dvb_usb_cxusb_debug;
Michael Krufkyf35db232006-12-05 14:53:39 -030036module_param_named(debug, dvb_usb_cxusb_debug, int, 0644);
Patrick Boettcher22c6d932005-07-07 17:58:10 -070037MODULE_PARM_DESC(debug, "set debugging level (1=rc (or-able))." DVB_USB_DEBUG_STATUS);
38
39static int cxusb_ctrl_msg(struct dvb_usb_device *d,
Michael Krufkyf35db232006-12-05 14:53:39 -030040 u8 cmd, u8 *wbuf, int wlen, u8 *rbuf, int rlen)
Patrick Boettcher22c6d932005-07-07 17:58:10 -070041{
42 int wo = (rbuf == NULL || rlen == 0); /* write-only */
43 u8 sndbuf[1+wlen];
Michael Krufkyf35db232006-12-05 14:53:39 -030044 memset(sndbuf, 0, 1+wlen);
Patrick Boettcher22c6d932005-07-07 17:58:10 -070045
46 sndbuf[0] = cmd;
Michael Krufkyf35db232006-12-05 14:53:39 -030047 memcpy(&sndbuf[1], wbuf, wlen);
Patrick Boettcher22c6d932005-07-07 17:58:10 -070048 if (wo)
Michael Krufkyf35db232006-12-05 14:53:39 -030049 dvb_usb_generic_write(d, sndbuf, 1+wlen);
Patrick Boettcher22c6d932005-07-07 17:58:10 -070050 else
Michael Krufkyf35db232006-12-05 14:53:39 -030051 dvb_usb_generic_rw(d, sndbuf, 1+wlen, rbuf, rlen, 0);
Patrick Boettcher22c6d932005-07-07 17:58:10 -070052
53 return 0;
54}
55
Patrick Boettchere2efeab2005-09-09 13:02:51 -070056/* GPIO */
57static void cxusb_gpio_tuner(struct dvb_usb_device *d, int onoff)
Patrick Boettcher22c6d932005-07-07 17:58:10 -070058{
59 struct cxusb_state *st = d->priv;
Michael Krufkyf35db232006-12-05 14:53:39 -030060 u8 o[2], i;
Patrick Boettcher22c6d932005-07-07 17:58:10 -070061
Patrick Boettchere2efeab2005-09-09 13:02:51 -070062 if (st->gpio_write_state[GPIO_TUNER] == onoff)
Patrick Boettcher22c6d932005-07-07 17:58:10 -070063 return;
64
Patrick Boettchere2efeab2005-09-09 13:02:51 -070065 o[0] = GPIO_TUNER;
66 o[1] = onoff;
Michael Krufkyf35db232006-12-05 14:53:39 -030067 cxusb_ctrl_msg(d, CMD_GPIO_WRITE, o, 2, &i, 1);
Patrick Boettcher22c6d932005-07-07 17:58:10 -070068
69 if (i != 0x01)
Patrick Boettchere2efeab2005-09-09 13:02:51 -070070 deb_info("gpio_write failed.\n");
Patrick Boettcher22c6d932005-07-07 17:58:10 -070071
Patrick Boettchere2efeab2005-09-09 13:02:51 -070072 st->gpio_write_state[GPIO_TUNER] = onoff;
Patrick Boettcher22c6d932005-07-07 17:58:10 -070073}
74
Patrick Boettchere2efeab2005-09-09 13:02:51 -070075/* I2C */
Michael Krufkyf35db232006-12-05 14:53:39 -030076static int cxusb_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msg[],
77 int num)
Patrick Boettcher22c6d932005-07-07 17:58:10 -070078{
79 struct dvb_usb_device *d = i2c_get_adapdata(adap);
80 int i;
81
Ingo Molnar3593cab2006-02-07 06:49:14 -020082 if (mutex_lock_interruptible(&d->i2c_mutex) < 0)
Patrick Boettcher22c6d932005-07-07 17:58:10 -070083 return -EAGAIN;
84
85 if (num > 2)
Michael Krufky4d6e7722006-03-23 00:55:23 -030086 warn("more than two i2c messages at a time is not handled yet. TODO.");
Patrick Boettcher22c6d932005-07-07 17:58:10 -070087
88 for (i = 0; i < num; i++) {
89
Michael Krufky5e805ef2006-03-23 00:01:34 -030090 if (d->udev->descriptor.idVendor == USB_VID_MEDION)
91 switch (msg[i].addr) {
Michael Krufkyf35db232006-12-05 14:53:39 -030092 case 0x63:
93 cxusb_gpio_tuner(d, 0);
94 break;
95 default:
96 cxusb_gpio_tuner(d, 1);
97 break;
Michael Krufky5e805ef2006-03-23 00:01:34 -030098 }
Patrick Boettcher22c6d932005-07-07 17:58:10 -070099
100 /* read request */
101 if (i+1 < num && (msg[i+1].flags & I2C_M_RD)) {
102 u8 obuf[3+msg[i].len], ibuf[1+msg[i+1].len];
103 obuf[0] = msg[i].len;
104 obuf[1] = msg[i+1].len;
105 obuf[2] = msg[i].addr;
Michael Krufkyf35db232006-12-05 14:53:39 -0300106 memcpy(&obuf[3], msg[i].buf, msg[i].len);
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700107
108 if (cxusb_ctrl_msg(d, CMD_I2C_READ,
Michael Krufkyf35db232006-12-05 14:53:39 -0300109 obuf, 3+msg[i].len,
110 ibuf, 1+msg[i+1].len) < 0)
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700111 break;
112
113 if (ibuf[0] != 0x08)
Michael Krufkyae62e3d2006-03-23 01:11:18 -0300114 deb_i2c("i2c read may have failed\n");
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700115
Michael Krufkyf35db232006-12-05 14:53:39 -0300116 memcpy(msg[i+1].buf, &ibuf[1], msg[i+1].len);
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700117
118 i++;
119 } else { /* write */
120 u8 obuf[2+msg[i].len], ibuf;
121 obuf[0] = msg[i].addr;
122 obuf[1] = msg[i].len;
Michael Krufkyf35db232006-12-05 14:53:39 -0300123 memcpy(&obuf[2], msg[i].buf, msg[i].len);
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700124
Michael Krufkyf35db232006-12-05 14:53:39 -0300125 if (cxusb_ctrl_msg(d, CMD_I2C_WRITE, obuf,
126 2+msg[i].len, &ibuf,1) < 0)
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700127 break;
128 if (ibuf != 0x08)
Michael Krufkyae62e3d2006-03-23 01:11:18 -0300129 deb_i2c("i2c write may have failed\n");
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700130 }
131 }
132
Ingo Molnar3593cab2006-02-07 06:49:14 -0200133 mutex_unlock(&d->i2c_mutex);
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700134 return i;
135}
136
137static u32 cxusb_i2c_func(struct i2c_adapter *adapter)
138{
139 return I2C_FUNC_I2C;
140}
141
142static struct i2c_algorithm cxusb_i2c_algo = {
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700143 .master_xfer = cxusb_i2c_xfer,
144 .functionality = cxusb_i2c_func,
145};
146
147static int cxusb_power_ctrl(struct dvb_usb_device *d, int onoff)
148{
Patrick Boettchere2efeab2005-09-09 13:02:51 -0700149 u8 b = 0;
150 if (onoff)
151 return cxusb_ctrl_msg(d, CMD_POWER_ON, &b, 1, NULL, 0);
152 else
153 return cxusb_ctrl_msg(d, CMD_POWER_OFF, &b, 1, NULL, 0);
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700154}
155
Michael Krufky5691c842006-04-19 20:40:01 -0300156static int cxusb_bluebird_power_ctrl(struct dvb_usb_device *d, int onoff)
157{
158 u8 b = 0;
159 if (onoff)
160 return cxusb_ctrl_msg(d, CMD_POWER_ON, &b, 1, NULL, 0);
161 else
162 return 0;
163}
164
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300165static int cxusb_streaming_ctrl(struct dvb_usb_adapter *adap, int onoff)
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700166{
Patrick Boettcher8257e8a2005-07-07 17:58:15 -0700167 u8 buf[2] = { 0x03, 0x00 };
168 if (onoff)
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300169 cxusb_ctrl_msg(adap->dev, CMD_STREAMING_ON, buf, 2, NULL, 0);
Patrick Boettcher8257e8a2005-07-07 17:58:15 -0700170 else
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300171 cxusb_ctrl_msg(adap->dev, CMD_STREAMING_OFF, NULL, 0, NULL, 0);
Patrick Boettcher8257e8a2005-07-07 17:58:15 -0700172
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700173 return 0;
174}
175
Chris Pascoe7c239702006-01-09 18:21:29 -0200176static int cxusb_rc_query(struct dvb_usb_device *d, u32 *event, int *state)
177{
178 struct dvb_usb_rc_key *keymap = d->props.rc_key_map;
Michael Krufkya07e6092006-01-09 18:21:31 -0200179 u8 ircode[4];
Chris Pascoe7c239702006-01-09 18:21:29 -0200180 int i;
181
Michael Krufkya07e6092006-01-09 18:21:31 -0200182 cxusb_ctrl_msg(d, CMD_GET_IR_CODE, NULL, 0, ircode, 4);
Chris Pascoe7c239702006-01-09 18:21:29 -0200183
184 *event = 0;
185 *state = REMOTE_NO_KEY_PRESSED;
186
187 for (i = 0; i < d->props.rc_key_map_size; i++) {
Michael Krufkya07e6092006-01-09 18:21:31 -0200188 if (keymap[i].custom == ircode[2] &&
189 keymap[i].data == ircode[3]) {
Chris Pascoe7c239702006-01-09 18:21:29 -0200190 *event = keymap[i].event;
191 *state = REMOTE_KEY_PRESSED;
192
193 return 0;
194 }
195 }
196
197 return 0;
198}
199
Adrian Bunk703cb2c2006-01-23 17:11:09 -0200200static struct dvb_usb_rc_key dvico_mce_rc_keys[] = {
Michael Krufkya07e6092006-01-09 18:21:31 -0200201 { 0xfe, 0x02, KEY_TV },
202 { 0xfe, 0x0e, KEY_MP3 },
203 { 0xfe, 0x1a, KEY_DVD },
204 { 0xfe, 0x1e, KEY_FAVORITES },
205 { 0xfe, 0x16, KEY_SETUP },
206 { 0xfe, 0x46, KEY_POWER2 },
207 { 0xfe, 0x0a, KEY_EPG },
208 { 0xfe, 0x49, KEY_BACK },
209 { 0xfe, 0x4d, KEY_MENU },
210 { 0xfe, 0x51, KEY_UP },
211 { 0xfe, 0x5b, KEY_LEFT },
212 { 0xfe, 0x5f, KEY_RIGHT },
213 { 0xfe, 0x53, KEY_DOWN },
214 { 0xfe, 0x5e, KEY_OK },
215 { 0xfe, 0x59, KEY_INFO },
216 { 0xfe, 0x55, KEY_TAB },
217 { 0xfe, 0x0f, KEY_PREVIOUSSONG },/* Replay */
218 { 0xfe, 0x12, KEY_NEXTSONG }, /* Skip */
219 { 0xfe, 0x42, KEY_ENTER }, /* Windows/Start */
220 { 0xfe, 0x15, KEY_VOLUMEUP },
221 { 0xfe, 0x05, KEY_VOLUMEDOWN },
222 { 0xfe, 0x11, KEY_CHANNELUP },
223 { 0xfe, 0x09, KEY_CHANNELDOWN },
224 { 0xfe, 0x52, KEY_CAMERA },
225 { 0xfe, 0x5a, KEY_TUNER }, /* Live */
226 { 0xfe, 0x19, KEY_OPEN },
227 { 0xfe, 0x0b, KEY_1 },
228 { 0xfe, 0x17, KEY_2 },
229 { 0xfe, 0x1b, KEY_3 },
230 { 0xfe, 0x07, KEY_4 },
231 { 0xfe, 0x50, KEY_5 },
232 { 0xfe, 0x54, KEY_6 },
233 { 0xfe, 0x48, KEY_7 },
234 { 0xfe, 0x4c, KEY_8 },
235 { 0xfe, 0x58, KEY_9 },
236 { 0xfe, 0x13, KEY_ANGLE }, /* Aspect */
237 { 0xfe, 0x03, KEY_0 },
238 { 0xfe, 0x1f, KEY_ZOOM },
239 { 0xfe, 0x43, KEY_REWIND },
240 { 0xfe, 0x47, KEY_PLAYPAUSE },
241 { 0xfe, 0x4f, KEY_FASTFORWARD },
242 { 0xfe, 0x57, KEY_MUTE },
243 { 0xfe, 0x0d, KEY_STOP },
244 { 0xfe, 0x01, KEY_RECORD },
245 { 0xfe, 0x4e, KEY_POWER },
246};
247
Michael Krufkyc1501782006-03-26 05:43:36 -0300248static struct dvb_usb_rc_key dvico_portable_rc_keys[] = {
249 { 0xfc, 0x02, KEY_SETUP }, /* Profile */
250 { 0xfc, 0x43, KEY_POWER2 },
251 { 0xfc, 0x06, KEY_EPG },
252 { 0xfc, 0x5a, KEY_BACK },
253 { 0xfc, 0x05, KEY_MENU },
254 { 0xfc, 0x47, KEY_INFO },
255 { 0xfc, 0x01, KEY_TAB },
256 { 0xfc, 0x42, KEY_PREVIOUSSONG },/* Replay */
257 { 0xfc, 0x49, KEY_VOLUMEUP },
258 { 0xfc, 0x09, KEY_VOLUMEDOWN },
259 { 0xfc, 0x54, KEY_CHANNELUP },
260 { 0xfc, 0x0b, KEY_CHANNELDOWN },
Michael Krufkydbcb86e2006-03-26 18:59:45 -0300261 { 0xfc, 0x16, KEY_CAMERA },
Michael Krufkyc1501782006-03-26 05:43:36 -0300262 { 0xfc, 0x40, KEY_TUNER }, /* ATV/DTV */
263 { 0xfc, 0x45, KEY_OPEN },
264 { 0xfc, 0x19, KEY_1 },
265 { 0xfc, 0x18, KEY_2 },
266 { 0xfc, 0x1b, KEY_3 },
267 { 0xfc, 0x1a, KEY_4 },
268 { 0xfc, 0x58, KEY_5 },
269 { 0xfc, 0x59, KEY_6 },
270 { 0xfc, 0x15, KEY_7 },
271 { 0xfc, 0x14, KEY_8 },
272 { 0xfc, 0x17, KEY_9 },
273 { 0xfc, 0x44, KEY_ANGLE }, /* Aspect */
274 { 0xfc, 0x55, KEY_0 },
275 { 0xfc, 0x07, KEY_ZOOM },
276 { 0xfc, 0x0a, KEY_REWIND },
277 { 0xfc, 0x08, KEY_PLAYPAUSE },
278 { 0xfc, 0x4b, KEY_FASTFORWARD },
279 { 0xfc, 0x5b, KEY_MUTE },
280 { 0xfc, 0x04, KEY_STOP },
281 { 0xfc, 0x56, KEY_RECORD },
282 { 0xfc, 0x57, KEY_POWER },
283 { 0xfc, 0x41, KEY_UNKNOWN }, /* INPUT */
284 { 0xfc, 0x00, KEY_UNKNOWN }, /* HD */
285};
286
Chris Pascoe0029ee12006-01-09 18:21:28 -0200287static int cxusb_dee1601_demod_init(struct dvb_frontend* fe)
288{
Chris Pascoed9ed8812006-02-07 06:49:11 -0200289 static u8 clock_config [] = { CLOCK_CTL, 0x38, 0x28 };
Chris Pascoe0029ee12006-01-09 18:21:28 -0200290 static u8 reset [] = { RESET, 0x80 };
291 static u8 adc_ctl_1_cfg [] = { ADC_CTL_1, 0x40 };
292 static u8 agc_cfg [] = { AGC_TARGET, 0x28, 0x20 };
293 static u8 gpp_ctl_cfg [] = { GPP_CTL, 0x33 };
294 static u8 capt_range_cfg[] = { CAPT_RANGE, 0x32 };
295
296 mt352_write(fe, clock_config, sizeof(clock_config));
297 udelay(200);
298 mt352_write(fe, reset, sizeof(reset));
299 mt352_write(fe, adc_ctl_1_cfg, sizeof(adc_ctl_1_cfg));
300
301 mt352_write(fe, agc_cfg, sizeof(agc_cfg));
302 mt352_write(fe, gpp_ctl_cfg, sizeof(gpp_ctl_cfg));
303 mt352_write(fe, capt_range_cfg, sizeof(capt_range_cfg));
304
305 return 0;
306}
307
Michael Krufky6f447252006-01-11 19:40:33 -0200308static int cxusb_mt352_demod_init(struct dvb_frontend* fe)
309{ /* used in both lgz201 and th7579 */
Michael Krufkyfb51fd22006-02-07 06:49:12 -0200310 static u8 clock_config [] = { CLOCK_CTL, 0x38, 0x29 };
Michael Krufky6f447252006-01-11 19:40:33 -0200311 static u8 reset [] = { RESET, 0x80 };
312 static u8 adc_ctl_1_cfg [] = { ADC_CTL_1, 0x40 };
313 static u8 agc_cfg [] = { AGC_TARGET, 0x24, 0x20 };
314 static u8 gpp_ctl_cfg [] = { GPP_CTL, 0x33 };
315 static u8 capt_range_cfg[] = { CAPT_RANGE, 0x32 };
316
317 mt352_write(fe, clock_config, sizeof(clock_config));
318 udelay(200);
319 mt352_write(fe, reset, sizeof(reset));
320 mt352_write(fe, adc_ctl_1_cfg, sizeof(adc_ctl_1_cfg));
321
322 mt352_write(fe, agc_cfg, sizeof(agc_cfg));
323 mt352_write(fe, gpp_ctl_cfg, sizeof(gpp_ctl_cfg));
324 mt352_write(fe, capt_range_cfg, sizeof(capt_range_cfg));
325 return 0;
326}
327
Adrian Bunk703cb2c2006-01-23 17:11:09 -0200328static struct cx22702_config cxusb_cx22702_config = {
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700329 .demod_address = 0x63,
Patrick Boettcher8257e8a2005-07-07 17:58:15 -0700330 .output_mode = CX22702_PARALLEL_OUTPUT,
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700331};
332
Michael Krufkyfddd6322006-02-27 00:08:17 -0300333static struct lgdt330x_config cxusb_lgdt3303_config = {
Michael Krufkyeffee032006-01-09 15:25:47 -0200334 .demod_address = 0x0e,
335 .demod_chip = LGDT3303,
Michael Krufkyeffee032006-01-09 15:25:47 -0200336};
337
Adrian Bunk703cb2c2006-01-23 17:11:09 -0200338static struct mt352_config cxusb_dee1601_config = {
Chris Pascoe0029ee12006-01-09 18:21:28 -0200339 .demod_address = 0x0f,
340 .demod_init = cxusb_dee1601_demod_init,
Chris Pascoe0029ee12006-01-09 18:21:28 -0200341};
342
Michael Krufkyc9ce3942006-06-11 04:24:31 -0300343static struct zl10353_config cxusb_zl10353_dee1601_config = {
344 .demod_address = 0x0f,
Chris Pascoe8fb95782006-08-10 03:17:16 -0300345 .parallel_ts = 1,
Michael Krufkyc9ce3942006-06-11 04:24:31 -0300346};
347
Adrian Bunk6fe00b02006-04-19 20:49:28 -0300348static struct mt352_config cxusb_mt352_config = {
Michael Krufky6f447252006-01-11 19:40:33 -0200349 /* used in both lgz201 and th7579 */
350 .demod_address = 0x0f,
351 .demod_init = cxusb_mt352_demod_init,
Michael Krufky6f447252006-01-11 19:40:33 -0200352};
353
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700354/* Callbacks for DVB USB */
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300355static int cxusb_fmd1216me_tuner_attach(struct dvb_usb_adapter *adap)
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700356{
357 u8 bpll[4] = { 0x0b, 0xdc, 0x9c, 0xa0 };
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300358 adap->pll_addr = 0x61;
359 memcpy(adap->pll_init, bpll, 4);
360 adap->pll_desc = &dvb_pll_fmd1216me;
Patrick Boettcher332bed52006-05-14 04:49:00 -0300361
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300362 adap->fe->ops.tuner_ops.init = dvb_usb_tuner_init_i2c;
363 adap->fe->ops.tuner_ops.set_params = dvb_usb_tuner_set_params_i2c;
Patrick Boettcher332bed52006-05-14 04:49:00 -0300364
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700365 return 0;
366}
367
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300368static int cxusb_dee1601_tuner_attach(struct dvb_usb_adapter *adap)
Chris Pascoe0029ee12006-01-09 18:21:28 -0200369{
Michael Krufky79a54cb2006-12-05 14:20:06 -0300370 dvb_attach(dvb_pll_attach, adap->fe, 0x61,
371 NULL, &dvb_pll_thomson_dtt7579);
Chris Pascoe0029ee12006-01-09 18:21:28 -0200372 return 0;
373}
374
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300375static int cxusb_lgz201_tuner_attach(struct dvb_usb_adapter *adap)
Michael Krufky6f447252006-01-11 19:40:33 -0200376{
Michael Krufky79a54cb2006-12-05 14:20:06 -0300377 dvb_attach(dvb_pll_attach, adap->fe, 0x61, NULL, &dvb_pll_lg_z201);
Michael Krufky6f447252006-01-11 19:40:33 -0200378 return 0;
379}
380
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300381static int cxusb_dtt7579_tuner_attach(struct dvb_usb_adapter *adap)
Michael Krufky6f447252006-01-11 19:40:33 -0200382{
Michael Krufky79a54cb2006-12-05 14:20:06 -0300383 dvb_attach(dvb_pll_attach, adap->fe, 0x60,
384 NULL, &dvb_pll_thomson_dtt7579);
Patrick Boettcher332bed52006-05-14 04:49:00 -0300385 return 0;
386}
387
Michael Krufkyf71a56c2006-10-13 21:55:57 -0300388static int cxusb_lgh064f_tuner_attach(struct dvb_usb_adapter *adap)
Patrick Boettcher332bed52006-05-14 04:49:00 -0300389{
Trent Piepho6bdcc6e2007-04-27 12:31:30 -0300390 dvb_attach(dvb_pll_attach, adap->fe, 0x61, &adap->dev->i2c_adap,
391 &dvb_pll_lg_tdvs_h06xf);
Michael Krufky6f447252006-01-11 19:40:33 -0200392 return 0;
393}
394
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300395static int cxusb_cx22702_frontend_attach(struct dvb_usb_adapter *adap)
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700396{
Patrick Boettchere2efeab2005-09-09 13:02:51 -0700397 u8 b;
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300398 if (usb_set_interface(adap->dev->udev, 0, 6) < 0)
Patrick Boettcher8257e8a2005-07-07 17:58:15 -0700399 err("set interface failed");
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700400
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300401 cxusb_ctrl_msg(adap->dev, CMD_DIGITAL, NULL, 0, &b, 1);
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700402
Michael Krufkyf35db232006-12-05 14:53:39 -0300403 if ((adap->fe = dvb_attach(cx22702_attach, &cxusb_cx22702_config,
404 &adap->dev->i2c_adap)) != NULL)
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700405 return 0;
406
407 return -EIO;
408}
409
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300410static int cxusb_lgdt3303_frontend_attach(struct dvb_usb_adapter *adap)
Michael Krufkyeffee032006-01-09 15:25:47 -0200411{
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300412 if (usb_set_interface(adap->dev->udev, 0, 7) < 0)
Michael Krufkyeffee032006-01-09 15:25:47 -0200413 err("set interface failed");
414
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300415 cxusb_ctrl_msg(adap->dev, CMD_DIGITAL, NULL, 0, NULL, 0);
Michael Krufkyeffee032006-01-09 15:25:47 -0200416
Michael Krufkyf35db232006-12-05 14:53:39 -0300417 if ((adap->fe = dvb_attach(lgdt330x_attach, &cxusb_lgdt3303_config,
418 &adap->dev->i2c_adap)) != NULL)
Michael Krufkyeffee032006-01-09 15:25:47 -0200419 return 0;
420
421 return -EIO;
422}
423
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300424static int cxusb_mt352_frontend_attach(struct dvb_usb_adapter *adap)
Chris Pascoe0029ee12006-01-09 18:21:28 -0200425{
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300426 /* used in both lgz201 and th7579 */
427 if (usb_set_interface(adap->dev->udev, 0, 0) < 0)
Chris Pascoe0029ee12006-01-09 18:21:28 -0200428 err("set interface failed");
429
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300430 cxusb_ctrl_msg(adap->dev, CMD_DIGITAL, NULL, 0, NULL, 0);
Chris Pascoe0029ee12006-01-09 18:21:28 -0200431
Michael Krufkyf35db232006-12-05 14:53:39 -0300432 if ((adap->fe = dvb_attach(mt352_attach, &cxusb_mt352_config,
433 &adap->dev->i2c_adap)) != NULL)
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300434 return 0;
435
436 return -EIO;
437}
438
439static int cxusb_dee1601_frontend_attach(struct dvb_usb_adapter *adap)
440{
441 if (usb_set_interface(adap->dev->udev, 0, 0) < 0)
442 err("set interface failed");
443
444 cxusb_ctrl_msg(adap->dev, CMD_DIGITAL, NULL, 0, NULL, 0);
445
Michael Krufkyf35db232006-12-05 14:53:39 -0300446 if (((adap->fe = dvb_attach(mt352_attach, &cxusb_dee1601_config,
447 &adap->dev->i2c_adap)) != NULL) ||
448 ((adap->fe = dvb_attach(zl10353_attach,
449 &cxusb_zl10353_dee1601_config,
450 &adap->dev->i2c_adap)) != NULL))
Chris Pascoe0029ee12006-01-09 18:21:28 -0200451 return 0;
452
453 return -EIO;
454}
455
Patrick Boettcherf5373782006-01-09 18:21:38 -0200456/*
457 * DViCO bluebird firmware needs the "warm" product ID to be patched into the
458 * firmware file before download.
459 */
460
461#define BLUEBIRD_01_ID_OFFSET 6638
Michael Krufkyf35db232006-12-05 14:53:39 -0300462static int bluebird_patch_dvico_firmware_download(struct usb_device *udev,
463 const struct firmware *fw)
Patrick Boettcherf5373782006-01-09 18:21:38 -0200464{
465 if (fw->size < BLUEBIRD_01_ID_OFFSET + 4)
466 return -EINVAL;
467
468 if (fw->data[BLUEBIRD_01_ID_OFFSET] == (USB_VID_DVICO & 0xff) &&
469 fw->data[BLUEBIRD_01_ID_OFFSET + 1] == USB_VID_DVICO >> 8) {
470
Michael Krufkyf35db232006-12-05 14:53:39 -0300471 fw->data[BLUEBIRD_01_ID_OFFSET + 2] =
Jin-Bong lee1d1370a2007-02-20 23:10:34 -0300472 le16_to_cpu(udev->descriptor.idProduct) + 1;
Michael Krufkyf35db232006-12-05 14:53:39 -0300473 fw->data[BLUEBIRD_01_ID_OFFSET + 3] =
Jin-Bong lee1d1370a2007-02-20 23:10:34 -0300474 le16_to_cpu(udev->descriptor.idProduct) >> 8;
Patrick Boettcherf5373782006-01-09 18:21:38 -0200475
Michael Krufkyf35db232006-12-05 14:53:39 -0300476 return usb_cypress_load_firmware(udev, fw, CYPRESS_FX2);
Patrick Boettcherf5373782006-01-09 18:21:38 -0200477 }
478
479 return -EINVAL;
480}
481
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700482/* DVB USB Driver stuff */
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300483static struct dvb_usb_device_properties cxusb_medion_properties;
484static struct dvb_usb_device_properties cxusb_bluebird_lgh064f_properties;
485static struct dvb_usb_device_properties cxusb_bluebird_dee1601_properties;
486static struct dvb_usb_device_properties cxusb_bluebird_lgz201_properties;
487static struct dvb_usb_device_properties cxusb_bluebird_dtt7579_properties;
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700488
489static int cxusb_probe(struct usb_interface *intf,
Michael Krufkyf35db232006-12-05 14:53:39 -0300490 const struct usb_device_id *id)
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700491{
Michael Krufkyeffee032006-01-09 15:25:47 -0200492 if (dvb_usb_device_init(intf,&cxusb_medion_properties,THIS_MODULE,NULL) == 0 ||
Chris Pascoe0029ee12006-01-09 18:21:28 -0200493 dvb_usb_device_init(intf,&cxusb_bluebird_lgh064f_properties,THIS_MODULE,NULL) == 0 ||
Michael Krufky6f447252006-01-11 19:40:33 -0200494 dvb_usb_device_init(intf,&cxusb_bluebird_dee1601_properties,THIS_MODULE,NULL) == 0 ||
495 dvb_usb_device_init(intf,&cxusb_bluebird_lgz201_properties,THIS_MODULE,NULL) == 0 ||
496 dvb_usb_device_init(intf,&cxusb_bluebird_dtt7579_properties,THIS_MODULE,NULL) == 0) {
Michael Krufkyeffee032006-01-09 15:25:47 -0200497 return 0;
498 }
499
500 return -EINVAL;
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700501}
502
503static struct usb_device_id cxusb_table [] = {
Michael Krufkyf35db232006-12-05 14:53:39 -0300504 { USB_DEVICE(USB_VID_MEDION, USB_PID_MEDION_MD95700) },
505 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LG064F_COLD) },
506 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LG064F_WARM) },
507 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_DUAL_1_COLD) },
508 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_DUAL_1_WARM) },
509 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LGZ201_COLD) },
510 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LGZ201_WARM) },
511 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_TH7579_COLD) },
512 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_TH7579_WARM) },
513 { USB_DEVICE(USB_VID_DVICO, USB_PID_DIGITALNOW_BLUEBIRD_DUAL_1_COLD) },
514 { USB_DEVICE(USB_VID_DVICO, USB_PID_DIGITALNOW_BLUEBIRD_DUAL_1_WARM) },
515 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_DUAL_2_COLD) },
516 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_DUAL_2_WARM) },
517 {} /* Terminating entry */
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700518};
519MODULE_DEVICE_TABLE (usb, cxusb_table);
520
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300521static struct dvb_usb_device_properties cxusb_medion_properties = {
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700522 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
523
524 .usb_ctrl = CYPRESS_FX2,
525
526 .size_of_priv = sizeof(struct cxusb_state),
527
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300528 .num_adapters = 1,
529 .adapter = {
530 {
Patrick Boettcher01451e72006-10-13 11:34:46 -0300531 .streaming_ctrl = cxusb_streaming_ctrl,
532 .frontend_attach = cxusb_cx22702_frontend_attach,
533 .tuner_attach = cxusb_fmd1216me_tuner_attach,
534 /* parameter for the MPEG2-data transfer */
535 .stream = {
536 .type = USB_BULK,
537 .count = 5,
538 .endpoint = 0x02,
539 .u = {
540 .bulk = {
541 .buffersize = 8192,
542 }
543 }
544 },
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700545
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300546 },
547 },
548 .power_ctrl = cxusb_power_ctrl,
549
550 .i2c_algo = &cxusb_i2c_algo,
551
552 .generic_bulk_ctrl_endpoint = 0x01,
553
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700554 .num_device_descs = 1,
555 .devices = {
556 { "Medion MD95700 (MDUSBTV-HYBRID)",
557 { NULL },
558 { &cxusb_table[0], NULL },
559 },
560 }
561};
562
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300563static struct dvb_usb_device_properties cxusb_bluebird_lgh064f_properties = {
Michael Krufkyeffee032006-01-09 15:25:47 -0200564 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
565
Patrick Boettcherf5373782006-01-09 18:21:38 -0200566 .usb_ctrl = DEVICE_SPECIFIC,
567 .firmware = "dvb-usb-bluebird-01.fw",
568 .download_firmware = bluebird_patch_dvico_firmware_download,
Michael Krufky37bdfa02006-01-09 15:25:47 -0200569 /* use usb alt setting 0 for EP4 transfer (dvb-t),
570 use usb alt setting 7 for EP2 transfer (atsc) */
Michael Krufkyeffee032006-01-09 15:25:47 -0200571
572 .size_of_priv = sizeof(struct cxusb_state),
573
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300574 .num_adapters = 1,
575 .adapter = {
576 {
Patrick Boettcher01451e72006-10-13 11:34:46 -0300577 .streaming_ctrl = cxusb_streaming_ctrl,
578 .frontend_attach = cxusb_lgdt3303_frontend_attach,
Michael Krufkyf71a56c2006-10-13 21:55:57 -0300579 .tuner_attach = cxusb_lgh064f_tuner_attach,
Michael Krufkyeffee032006-01-09 15:25:47 -0200580
Patrick Boettcher01451e72006-10-13 11:34:46 -0300581 /* parameter for the MPEG2-data transfer */
582 .stream = {
583 .type = USB_BULK,
584 .count = 5,
585 .endpoint = 0x02,
586 .u = {
587 .bulk = {
588 .buffersize = 8192,
589 }
590 }
591 },
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300592 },
593 },
594
595 .power_ctrl = cxusb_bluebird_power_ctrl,
596
Michael Krufkyeffee032006-01-09 15:25:47 -0200597 .i2c_algo = &cxusb_i2c_algo,
598
Michael Krufkyc1501782006-03-26 05:43:36 -0300599 .rc_interval = 100,
600 .rc_key_map = dvico_portable_rc_keys,
601 .rc_key_map_size = ARRAY_SIZE(dvico_portable_rc_keys),
602 .rc_query = cxusb_rc_query,
603
Michael Krufkyeffee032006-01-09 15:25:47 -0200604 .generic_bulk_ctrl_endpoint = 0x01,
Michael Krufkyeffee032006-01-09 15:25:47 -0200605
606 .num_device_descs = 1,
607 .devices = {
608 { "DViCO FusionHDTV5 USB Gold",
609 { &cxusb_table[1], NULL },
610 { &cxusb_table[2], NULL },
611 },
612 }
613};
614
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300615static struct dvb_usb_device_properties cxusb_bluebird_dee1601_properties = {
Chris Pascoe0029ee12006-01-09 18:21:28 -0200616 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
617
Patrick Boettcherf5373782006-01-09 18:21:38 -0200618 .usb_ctrl = DEVICE_SPECIFIC,
619 .firmware = "dvb-usb-bluebird-01.fw",
620 .download_firmware = bluebird_patch_dvico_firmware_download,
Chris Pascoe0029ee12006-01-09 18:21:28 -0200621 /* use usb alt setting 0 for EP4 transfer (dvb-t),
622 use usb alt setting 7 for EP2 transfer (atsc) */
623
624 .size_of_priv = sizeof(struct cxusb_state),
625
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300626 .num_adapters = 1,
627 .adapter = {
628 {
Patrick Boettcher01451e72006-10-13 11:34:46 -0300629 .streaming_ctrl = cxusb_streaming_ctrl,
630 .frontend_attach = cxusb_dee1601_frontend_attach,
631 .tuner_attach = cxusb_dee1601_tuner_attach,
632 /* parameter for the MPEG2-data transfer */
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300633 .stream = {
634 .type = USB_BULK,
Patrick Boettcher01451e72006-10-13 11:34:46 -0300635 .count = 5,
636 .endpoint = 0x04,
637 .u = {
638 .bulk = {
639 .buffersize = 8192,
640 }
641 }
642 },
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300643 },
644 },
645
646 .power_ctrl = cxusb_bluebird_power_ctrl,
Chris Pascoe0029ee12006-01-09 18:21:28 -0200647
648 .i2c_algo = &cxusb_i2c_algo,
649
Chris Pascoe7c239702006-01-09 18:21:29 -0200650 .rc_interval = 150,
651 .rc_key_map = dvico_mce_rc_keys,
652 .rc_key_map_size = ARRAY_SIZE(dvico_mce_rc_keys),
653 .rc_query = cxusb_rc_query,
654
Chris Pascoe0029ee12006-01-09 18:21:28 -0200655 .generic_bulk_ctrl_endpoint = 0x01,
Chris Pascoe0029ee12006-01-09 18:21:28 -0200656
Michael Krufky587c03d2006-09-28 02:16:01 -0300657 .num_device_descs = 3,
Chris Pascoe0029ee12006-01-09 18:21:28 -0200658 .devices = {
659 { "DViCO FusionHDTV DVB-T Dual USB",
660 { &cxusb_table[3], NULL },
661 { &cxusb_table[4], NULL },
662 },
Michael Krufkyac9ffb92006-01-11 23:21:00 -0200663 { "DigitalNow DVB-T Dual USB",
664 { &cxusb_table[9], NULL },
665 { &cxusb_table[10], NULL },
666 },
Michael Krufky587c03d2006-09-28 02:16:01 -0300667 { "DViCO FusionHDTV DVB-T Dual Digital 2",
668 { &cxusb_table[11], NULL },
669 { &cxusb_table[12], NULL },
670 },
Chris Pascoe0029ee12006-01-09 18:21:28 -0200671 }
672};
673
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300674static struct dvb_usb_device_properties cxusb_bluebird_lgz201_properties = {
Michael Krufky6f447252006-01-11 19:40:33 -0200675 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
676
677 .usb_ctrl = DEVICE_SPECIFIC,
678 .firmware = "dvb-usb-bluebird-01.fw",
679 .download_firmware = bluebird_patch_dvico_firmware_download,
680 /* use usb alt setting 0 for EP4 transfer (dvb-t),
681 use usb alt setting 7 for EP2 transfer (atsc) */
682
683 .size_of_priv = sizeof(struct cxusb_state),
684
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300685 .num_adapters = 2,
686 .adapter = {
687 {
Patrick Boettcher01451e72006-10-13 11:34:46 -0300688 .streaming_ctrl = cxusb_streaming_ctrl,
689 .frontend_attach = cxusb_mt352_frontend_attach,
690 .tuner_attach = cxusb_lgz201_tuner_attach,
Michael Krufky6f447252006-01-11 19:40:33 -0200691
Patrick Boettcher01451e72006-10-13 11:34:46 -0300692 /* parameter for the MPEG2-data transfer */
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300693 .stream = {
694 .type = USB_BULK,
Patrick Boettcher01451e72006-10-13 11:34:46 -0300695 .count = 5,
696 .endpoint = 0x04,
697 .u = {
698 .bulk = {
699 .buffersize = 8192,
700 }
701 }
702 },
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300703 },
704 },
705 .power_ctrl = cxusb_bluebird_power_ctrl,
706
Michael Krufky6f447252006-01-11 19:40:33 -0200707 .i2c_algo = &cxusb_i2c_algo,
708
Michael Krufkyc1501782006-03-26 05:43:36 -0300709 .rc_interval = 100,
710 .rc_key_map = dvico_portable_rc_keys,
711 .rc_key_map_size = ARRAY_SIZE(dvico_portable_rc_keys),
712 .rc_query = cxusb_rc_query,
713
Michael Krufky6f447252006-01-11 19:40:33 -0200714 .generic_bulk_ctrl_endpoint = 0x01,
Michael Krufky6f447252006-01-11 19:40:33 -0200715 .num_device_descs = 1,
716 .devices = {
717 { "DViCO FusionHDTV DVB-T USB (LGZ201)",
718 { &cxusb_table[5], NULL },
719 { &cxusb_table[6], NULL },
720 },
721 }
722};
723
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300724static struct dvb_usb_device_properties cxusb_bluebird_dtt7579_properties = {
Michael Krufky6f447252006-01-11 19:40:33 -0200725 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
726
727 .usb_ctrl = DEVICE_SPECIFIC,
728 .firmware = "dvb-usb-bluebird-01.fw",
729 .download_firmware = bluebird_patch_dvico_firmware_download,
730 /* use usb alt setting 0 for EP4 transfer (dvb-t),
731 use usb alt setting 7 for EP2 transfer (atsc) */
732
733 .size_of_priv = sizeof(struct cxusb_state),
734
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300735 .num_adapters = 1,
736 .adapter = {
737 {
Patrick Boettcher01451e72006-10-13 11:34:46 -0300738 .streaming_ctrl = cxusb_streaming_ctrl,
739 .frontend_attach = cxusb_mt352_frontend_attach,
740 .tuner_attach = cxusb_dtt7579_tuner_attach,
Michael Krufky6f447252006-01-11 19:40:33 -0200741
Patrick Boettcher01451e72006-10-13 11:34:46 -0300742 /* parameter for the MPEG2-data transfer */
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300743 .stream = {
744 .type = USB_BULK,
Patrick Boettcher01451e72006-10-13 11:34:46 -0300745 .count = 5,
746 .endpoint = 0x04,
747 .u = {
748 .bulk = {
749 .buffersize = 8192,
750 }
751 }
752 },
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300753 },
754 },
755 .power_ctrl = cxusb_bluebird_power_ctrl,
756
Michael Krufky6f447252006-01-11 19:40:33 -0200757 .i2c_algo = &cxusb_i2c_algo,
758
Michael Krufkyc1501782006-03-26 05:43:36 -0300759 .rc_interval = 100,
760 .rc_key_map = dvico_portable_rc_keys,
761 .rc_key_map_size = ARRAY_SIZE(dvico_portable_rc_keys),
762 .rc_query = cxusb_rc_query,
763
Michael Krufky6f447252006-01-11 19:40:33 -0200764 .generic_bulk_ctrl_endpoint = 0x01,
Michael Krufky6f447252006-01-11 19:40:33 -0200765
766 .num_device_descs = 1,
767 .devices = {
768 { "DViCO FusionHDTV DVB-T USB (TH7579)",
769 { &cxusb_table[7], NULL },
770 { &cxusb_table[8], NULL },
771 },
772 }
773};
774
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700775static struct usb_driver cxusb_driver = {
Patrick Boettcher63b5c1c2005-07-07 17:58:30 -0700776 .name = "dvb_usb_cxusb",
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700777 .probe = cxusb_probe,
Michael Krufkyf35db232006-12-05 14:53:39 -0300778 .disconnect = dvb_usb_device_exit,
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700779 .id_table = cxusb_table,
780};
781
782/* module stuff */
783static int __init cxusb_module_init(void)
784{
785 int result;
786 if ((result = usb_register(&cxusb_driver))) {
787 err("usb_register failed. Error number %d",result);
788 return result;
789 }
790
791 return 0;
792}
793
794static void __exit cxusb_module_exit(void)
795{
796 /* deregister this driver from the USB subsystem */
797 usb_deregister(&cxusb_driver);
798}
799
800module_init (cxusb_module_init);
801module_exit (cxusb_module_exit);
802
803MODULE_AUTHOR("Patrick Boettcher <patrick.boettcher@desy.de>");
Michael Krufky5b9ed282006-10-15 14:51:08 -0300804MODULE_AUTHOR("Michael Krufky <mkrufky@linuxtv.org>");
Michael Krufkyf4efb4d2006-01-13 14:10:25 -0200805MODULE_AUTHOR("Chris Pascoe <c.pascoe@itee.uq.edu.au>");
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700806MODULE_DESCRIPTION("Driver for Conexant USB2.0 hybrid reference design");
807MODULE_VERSION("1.0-alpha");
808MODULE_LICENSE("GPL");