blob: 86fbd6c73ea93c834bc661a2705ad049efbb894d [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 */
Adrian Bunk53133af2007-11-05 14:07:06 -030035static int 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);
Adrian Bunk53133af2007-11-05 14:07:06 -030038#define deb_info(args...) dprintk(dvb_usb_cxusb_debug,0x01,args)
39#define deb_i2c(args...) if (d->udev->descriptor.idVendor == USB_VID_MEDION) \
40 dprintk(dvb_usb_cxusb_debug,0x01,args)
Patrick Boettcher22c6d932005-07-07 17:58:10 -070041
42static int cxusb_ctrl_msg(struct dvb_usb_device *d,
Michael Krufkyf35db232006-12-05 14:53:39 -030043 u8 cmd, u8 *wbuf, int wlen, u8 *rbuf, int rlen)
Patrick Boettcher22c6d932005-07-07 17:58:10 -070044{
45 int wo = (rbuf == NULL || rlen == 0); /* write-only */
46 u8 sndbuf[1+wlen];
Michael Krufkyf35db232006-12-05 14:53:39 -030047 memset(sndbuf, 0, 1+wlen);
Patrick Boettcher22c6d932005-07-07 17:58:10 -070048
49 sndbuf[0] = cmd;
Michael Krufkyf35db232006-12-05 14:53:39 -030050 memcpy(&sndbuf[1], wbuf, wlen);
Patrick Boettcher22c6d932005-07-07 17:58:10 -070051 if (wo)
Chris Pascoeb17f1092007-11-19 02:42:44 -030052 return dvb_usb_generic_write(d, sndbuf, 1+wlen);
Patrick Boettcher22c6d932005-07-07 17:58:10 -070053 else
Chris Pascoeb17f1092007-11-19 02:42:44 -030054 return dvb_usb_generic_rw(d, sndbuf, 1+wlen, rbuf, rlen, 0);
Patrick Boettcher22c6d932005-07-07 17:58:10 -070055}
56
Patrick Boettchere2efeab2005-09-09 13:02:51 -070057/* GPIO */
58static void cxusb_gpio_tuner(struct dvb_usb_device *d, int onoff)
Patrick Boettcher22c6d932005-07-07 17:58:10 -070059{
60 struct cxusb_state *st = d->priv;
Michael Krufkyf35db232006-12-05 14:53:39 -030061 u8 o[2], i;
Patrick Boettcher22c6d932005-07-07 17:58:10 -070062
Patrick Boettchere2efeab2005-09-09 13:02:51 -070063 if (st->gpio_write_state[GPIO_TUNER] == onoff)
Patrick Boettcher22c6d932005-07-07 17:58:10 -070064 return;
65
Patrick Boettchere2efeab2005-09-09 13:02:51 -070066 o[0] = GPIO_TUNER;
67 o[1] = onoff;
Michael Krufkyf35db232006-12-05 14:53:39 -030068 cxusb_ctrl_msg(d, CMD_GPIO_WRITE, o, 2, &i, 1);
Patrick Boettcher22c6d932005-07-07 17:58:10 -070069
70 if (i != 0x01)
Patrick Boettchere2efeab2005-09-09 13:02:51 -070071 deb_info("gpio_write failed.\n");
Patrick Boettcher22c6d932005-07-07 17:58:10 -070072
Patrick Boettchere2efeab2005-09-09 13:02:51 -070073 st->gpio_write_state[GPIO_TUNER] = onoff;
Patrick Boettcher22c6d932005-07-07 17:58:10 -070074}
75
Patrick Boettchere2efeab2005-09-09 13:02:51 -070076/* I2C */
Michael Krufkyf35db232006-12-05 14:53:39 -030077static int cxusb_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msg[],
78 int num)
Patrick Boettcher22c6d932005-07-07 17:58:10 -070079{
80 struct dvb_usb_device *d = i2c_get_adapdata(adap);
81 int i;
82
Ingo Molnar3593cab2006-02-07 06:49:14 -020083 if (mutex_lock_interruptible(&d->i2c_mutex) < 0)
Patrick Boettcher22c6d932005-07-07 17:58:10 -070084 return -EAGAIN;
85
86 if (num > 2)
Michael Krufky4d6e7722006-03-23 00:55:23 -030087 warn("more than two i2c messages at a time is not handled yet. TODO.");
Patrick Boettcher22c6d932005-07-07 17:58:10 -070088
89 for (i = 0; i < num; i++) {
90
Michael Krufky5e805ef2006-03-23 00:01:34 -030091 if (d->udev->descriptor.idVendor == USB_VID_MEDION)
92 switch (msg[i].addr) {
Michael Krufkyf35db232006-12-05 14:53:39 -030093 case 0x63:
94 cxusb_gpio_tuner(d, 0);
95 break;
96 default:
97 cxusb_gpio_tuner(d, 1);
98 break;
Michael Krufky5e805ef2006-03-23 00:01:34 -030099 }
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700100
101 /* read request */
102 if (i+1 < num && (msg[i+1].flags & I2C_M_RD)) {
103 u8 obuf[3+msg[i].len], ibuf[1+msg[i+1].len];
104 obuf[0] = msg[i].len;
105 obuf[1] = msg[i+1].len;
106 obuf[2] = msg[i].addr;
Michael Krufkyf35db232006-12-05 14:53:39 -0300107 memcpy(&obuf[3], msg[i].buf, msg[i].len);
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700108
109 if (cxusb_ctrl_msg(d, CMD_I2C_READ,
Michael Krufkyf35db232006-12-05 14:53:39 -0300110 obuf, 3+msg[i].len,
111 ibuf, 1+msg[i+1].len) < 0)
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700112 break;
113
114 if (ibuf[0] != 0x08)
Michael Krufkyae62e3d2006-03-23 01:11:18 -0300115 deb_i2c("i2c read may have failed\n");
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700116
Michael Krufkyf35db232006-12-05 14:53:39 -0300117 memcpy(msg[i+1].buf, &ibuf[1], msg[i+1].len);
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700118
119 i++;
120 } else { /* write */
121 u8 obuf[2+msg[i].len], ibuf;
122 obuf[0] = msg[i].addr;
123 obuf[1] = msg[i].len;
Michael Krufkyf35db232006-12-05 14:53:39 -0300124 memcpy(&obuf[2], msg[i].buf, msg[i].len);
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700125
Michael Krufkyf35db232006-12-05 14:53:39 -0300126 if (cxusb_ctrl_msg(d, CMD_I2C_WRITE, obuf,
127 2+msg[i].len, &ibuf,1) < 0)
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700128 break;
129 if (ibuf != 0x08)
Michael Krufkyae62e3d2006-03-23 01:11:18 -0300130 deb_i2c("i2c write may have failed\n");
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700131 }
132 }
133
Ingo Molnar3593cab2006-02-07 06:49:14 -0200134 mutex_unlock(&d->i2c_mutex);
Chris Pascoe13e001d2007-11-19 02:48:27 -0300135 return i == num ? num : -EREMOTEIO;
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700136}
137
138static u32 cxusb_i2c_func(struct i2c_adapter *adapter)
139{
140 return I2C_FUNC_I2C;
141}
142
143static struct i2c_algorithm cxusb_i2c_algo = {
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700144 .master_xfer = cxusb_i2c_xfer,
145 .functionality = cxusb_i2c_func,
146};
147
148static int cxusb_power_ctrl(struct dvb_usb_device *d, int onoff)
149{
Patrick Boettchere2efeab2005-09-09 13:02:51 -0700150 u8 b = 0;
151 if (onoff)
152 return cxusb_ctrl_msg(d, CMD_POWER_ON, &b, 1, NULL, 0);
153 else
154 return cxusb_ctrl_msg(d, CMD_POWER_OFF, &b, 1, NULL, 0);
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700155}
156
Michael Krufky5691c842006-04-19 20:40:01 -0300157static int cxusb_bluebird_power_ctrl(struct dvb_usb_device *d, int onoff)
158{
159 u8 b = 0;
160 if (onoff)
161 return cxusb_ctrl_msg(d, CMD_POWER_ON, &b, 1, NULL, 0);
162 else
163 return 0;
164}
165
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300166static int cxusb_streaming_ctrl(struct dvb_usb_adapter *adap, int onoff)
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700167{
Patrick Boettcher8257e8a2005-07-07 17:58:15 -0700168 u8 buf[2] = { 0x03, 0x00 };
169 if (onoff)
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300170 cxusb_ctrl_msg(adap->dev, CMD_STREAMING_ON, buf, 2, NULL, 0);
Patrick Boettcher8257e8a2005-07-07 17:58:15 -0700171 else
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300172 cxusb_ctrl_msg(adap->dev, CMD_STREAMING_OFF, NULL, 0, NULL, 0);
Patrick Boettcher8257e8a2005-07-07 17:58:15 -0700173
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700174 return 0;
175}
176
Chris Pascoe7c239702006-01-09 18:21:29 -0200177static int cxusb_rc_query(struct dvb_usb_device *d, u32 *event, int *state)
178{
179 struct dvb_usb_rc_key *keymap = d->props.rc_key_map;
Michael Krufkya07e6092006-01-09 18:21:31 -0200180 u8 ircode[4];
Chris Pascoe7c239702006-01-09 18:21:29 -0200181 int i;
182
Michael Krufkya07e6092006-01-09 18:21:31 -0200183 cxusb_ctrl_msg(d, CMD_GET_IR_CODE, NULL, 0, ircode, 4);
Chris Pascoe7c239702006-01-09 18:21:29 -0200184
185 *event = 0;
186 *state = REMOTE_NO_KEY_PRESSED;
187
188 for (i = 0; i < d->props.rc_key_map_size; i++) {
Michael Krufkya07e6092006-01-09 18:21:31 -0200189 if (keymap[i].custom == ircode[2] &&
190 keymap[i].data == ircode[3]) {
Chris Pascoe7c239702006-01-09 18:21:29 -0200191 *event = keymap[i].event;
192 *state = REMOTE_KEY_PRESSED;
193
194 return 0;
195 }
196 }
197
198 return 0;
199}
200
Adrian Bunk703cb2c2006-01-23 17:11:09 -0200201static struct dvb_usb_rc_key dvico_mce_rc_keys[] = {
Michael Krufkya07e6092006-01-09 18:21:31 -0200202 { 0xfe, 0x02, KEY_TV },
203 { 0xfe, 0x0e, KEY_MP3 },
204 { 0xfe, 0x1a, KEY_DVD },
205 { 0xfe, 0x1e, KEY_FAVORITES },
206 { 0xfe, 0x16, KEY_SETUP },
207 { 0xfe, 0x46, KEY_POWER2 },
208 { 0xfe, 0x0a, KEY_EPG },
209 { 0xfe, 0x49, KEY_BACK },
210 { 0xfe, 0x4d, KEY_MENU },
211 { 0xfe, 0x51, KEY_UP },
212 { 0xfe, 0x5b, KEY_LEFT },
213 { 0xfe, 0x5f, KEY_RIGHT },
214 { 0xfe, 0x53, KEY_DOWN },
215 { 0xfe, 0x5e, KEY_OK },
216 { 0xfe, 0x59, KEY_INFO },
217 { 0xfe, 0x55, KEY_TAB },
218 { 0xfe, 0x0f, KEY_PREVIOUSSONG },/* Replay */
219 { 0xfe, 0x12, KEY_NEXTSONG }, /* Skip */
220 { 0xfe, 0x42, KEY_ENTER }, /* Windows/Start */
221 { 0xfe, 0x15, KEY_VOLUMEUP },
222 { 0xfe, 0x05, KEY_VOLUMEDOWN },
223 { 0xfe, 0x11, KEY_CHANNELUP },
224 { 0xfe, 0x09, KEY_CHANNELDOWN },
225 { 0xfe, 0x52, KEY_CAMERA },
226 { 0xfe, 0x5a, KEY_TUNER }, /* Live */
227 { 0xfe, 0x19, KEY_OPEN },
228 { 0xfe, 0x0b, KEY_1 },
229 { 0xfe, 0x17, KEY_2 },
230 { 0xfe, 0x1b, KEY_3 },
231 { 0xfe, 0x07, KEY_4 },
232 { 0xfe, 0x50, KEY_5 },
233 { 0xfe, 0x54, KEY_6 },
234 { 0xfe, 0x48, KEY_7 },
235 { 0xfe, 0x4c, KEY_8 },
236 { 0xfe, 0x58, KEY_9 },
237 { 0xfe, 0x13, KEY_ANGLE }, /* Aspect */
238 { 0xfe, 0x03, KEY_0 },
239 { 0xfe, 0x1f, KEY_ZOOM },
240 { 0xfe, 0x43, KEY_REWIND },
241 { 0xfe, 0x47, KEY_PLAYPAUSE },
242 { 0xfe, 0x4f, KEY_FASTFORWARD },
243 { 0xfe, 0x57, KEY_MUTE },
244 { 0xfe, 0x0d, KEY_STOP },
245 { 0xfe, 0x01, KEY_RECORD },
246 { 0xfe, 0x4e, KEY_POWER },
247};
248
Michael Krufkyc1501782006-03-26 05:43:36 -0300249static struct dvb_usb_rc_key dvico_portable_rc_keys[] = {
250 { 0xfc, 0x02, KEY_SETUP }, /* Profile */
251 { 0xfc, 0x43, KEY_POWER2 },
252 { 0xfc, 0x06, KEY_EPG },
253 { 0xfc, 0x5a, KEY_BACK },
254 { 0xfc, 0x05, KEY_MENU },
255 { 0xfc, 0x47, KEY_INFO },
256 { 0xfc, 0x01, KEY_TAB },
257 { 0xfc, 0x42, KEY_PREVIOUSSONG },/* Replay */
258 { 0xfc, 0x49, KEY_VOLUMEUP },
259 { 0xfc, 0x09, KEY_VOLUMEDOWN },
260 { 0xfc, 0x54, KEY_CHANNELUP },
261 { 0xfc, 0x0b, KEY_CHANNELDOWN },
Michael Krufkydbcb86e2006-03-26 18:59:45 -0300262 { 0xfc, 0x16, KEY_CAMERA },
Michael Krufkyc1501782006-03-26 05:43:36 -0300263 { 0xfc, 0x40, KEY_TUNER }, /* ATV/DTV */
264 { 0xfc, 0x45, KEY_OPEN },
265 { 0xfc, 0x19, KEY_1 },
266 { 0xfc, 0x18, KEY_2 },
267 { 0xfc, 0x1b, KEY_3 },
268 { 0xfc, 0x1a, KEY_4 },
269 { 0xfc, 0x58, KEY_5 },
270 { 0xfc, 0x59, KEY_6 },
271 { 0xfc, 0x15, KEY_7 },
272 { 0xfc, 0x14, KEY_8 },
273 { 0xfc, 0x17, KEY_9 },
274 { 0xfc, 0x44, KEY_ANGLE }, /* Aspect */
275 { 0xfc, 0x55, KEY_0 },
276 { 0xfc, 0x07, KEY_ZOOM },
277 { 0xfc, 0x0a, KEY_REWIND },
278 { 0xfc, 0x08, KEY_PLAYPAUSE },
279 { 0xfc, 0x4b, KEY_FASTFORWARD },
280 { 0xfc, 0x5b, KEY_MUTE },
281 { 0xfc, 0x04, KEY_STOP },
282 { 0xfc, 0x56, KEY_RECORD },
283 { 0xfc, 0x57, KEY_POWER },
284 { 0xfc, 0x41, KEY_UNKNOWN }, /* INPUT */
285 { 0xfc, 0x00, KEY_UNKNOWN }, /* HD */
286};
287
Chris Pascoe0029ee12006-01-09 18:21:28 -0200288static int cxusb_dee1601_demod_init(struct dvb_frontend* fe)
289{
Chris Pascoed9ed8812006-02-07 06:49:11 -0200290 static u8 clock_config [] = { CLOCK_CTL, 0x38, 0x28 };
Chris Pascoe0029ee12006-01-09 18:21:28 -0200291 static u8 reset [] = { RESET, 0x80 };
292 static u8 adc_ctl_1_cfg [] = { ADC_CTL_1, 0x40 };
293 static u8 agc_cfg [] = { AGC_TARGET, 0x28, 0x20 };
294 static u8 gpp_ctl_cfg [] = { GPP_CTL, 0x33 };
295 static u8 capt_range_cfg[] = { CAPT_RANGE, 0x32 };
296
297 mt352_write(fe, clock_config, sizeof(clock_config));
298 udelay(200);
299 mt352_write(fe, reset, sizeof(reset));
300 mt352_write(fe, adc_ctl_1_cfg, sizeof(adc_ctl_1_cfg));
301
302 mt352_write(fe, agc_cfg, sizeof(agc_cfg));
303 mt352_write(fe, gpp_ctl_cfg, sizeof(gpp_ctl_cfg));
304 mt352_write(fe, capt_range_cfg, sizeof(capt_range_cfg));
305
306 return 0;
307}
308
Michael Krufky6f447252006-01-11 19:40:33 -0200309static int cxusb_mt352_demod_init(struct dvb_frontend* fe)
310{ /* used in both lgz201 and th7579 */
Michael Krufkyfb51fd22006-02-07 06:49:12 -0200311 static u8 clock_config [] = { CLOCK_CTL, 0x38, 0x29 };
Michael Krufky6f447252006-01-11 19:40:33 -0200312 static u8 reset [] = { RESET, 0x80 };
313 static u8 adc_ctl_1_cfg [] = { ADC_CTL_1, 0x40 };
314 static u8 agc_cfg [] = { AGC_TARGET, 0x24, 0x20 };
315 static u8 gpp_ctl_cfg [] = { GPP_CTL, 0x33 };
316 static u8 capt_range_cfg[] = { CAPT_RANGE, 0x32 };
317
318 mt352_write(fe, clock_config, sizeof(clock_config));
319 udelay(200);
320 mt352_write(fe, reset, sizeof(reset));
321 mt352_write(fe, adc_ctl_1_cfg, sizeof(adc_ctl_1_cfg));
322
323 mt352_write(fe, agc_cfg, sizeof(agc_cfg));
324 mt352_write(fe, gpp_ctl_cfg, sizeof(gpp_ctl_cfg));
325 mt352_write(fe, capt_range_cfg, sizeof(capt_range_cfg));
326 return 0;
327}
328
Adrian Bunk703cb2c2006-01-23 17:11:09 -0200329static struct cx22702_config cxusb_cx22702_config = {
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700330 .demod_address = 0x63,
Patrick Boettcher8257e8a2005-07-07 17:58:15 -0700331 .output_mode = CX22702_PARALLEL_OUTPUT,
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700332};
333
Michael Krufkyfddd6322006-02-27 00:08:17 -0300334static struct lgdt330x_config cxusb_lgdt3303_config = {
Michael Krufkyeffee032006-01-09 15:25:47 -0200335 .demod_address = 0x0e,
336 .demod_chip = LGDT3303,
Michael Krufkyeffee032006-01-09 15:25:47 -0200337};
338
Adrian Bunk703cb2c2006-01-23 17:11:09 -0200339static struct mt352_config cxusb_dee1601_config = {
Chris Pascoe0029ee12006-01-09 18:21:28 -0200340 .demod_address = 0x0f,
341 .demod_init = cxusb_dee1601_demod_init,
Chris Pascoe0029ee12006-01-09 18:21:28 -0200342};
343
Michael Krufkyc9ce3942006-06-11 04:24:31 -0300344static struct zl10353_config cxusb_zl10353_dee1601_config = {
345 .demod_address = 0x0f,
Chris Pascoe8fb95782006-08-10 03:17:16 -0300346 .parallel_ts = 1,
Michael Krufkyc9ce3942006-06-11 04:24:31 -0300347};
348
Adrian Bunk6fe00b02006-04-19 20:49:28 -0300349static struct mt352_config cxusb_mt352_config = {
Michael Krufky6f447252006-01-11 19:40:33 -0200350 /* used in both lgz201 and th7579 */
351 .demod_address = 0x0f,
352 .demod_init = cxusb_mt352_demod_init,
Michael Krufky6f447252006-01-11 19:40:33 -0200353};
354
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700355/* Callbacks for DVB USB */
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300356static int cxusb_fmd1216me_tuner_attach(struct dvb_usb_adapter *adap)
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700357{
Trent Piephob7754d72007-05-08 18:05:16 -0300358 dvb_attach(dvb_pll_attach, adap->fe, 0x61, &adap->dev->i2c_adap,
Michael Krufky47a99912007-06-12 16:10:51 -0300359 DVB_PLL_FMD1216ME);
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700360 return 0;
361}
362
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300363static int cxusb_dee1601_tuner_attach(struct dvb_usb_adapter *adap)
Chris Pascoe0029ee12006-01-09 18:21:28 -0200364{
Michael Krufky79a54cb2006-12-05 14:20:06 -0300365 dvb_attach(dvb_pll_attach, adap->fe, 0x61,
Michael Krufky47a99912007-06-12 16:10:51 -0300366 NULL, DVB_PLL_THOMSON_DTT7579);
Chris Pascoe0029ee12006-01-09 18:21:28 -0200367 return 0;
368}
369
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300370static int cxusb_lgz201_tuner_attach(struct dvb_usb_adapter *adap)
Michael Krufky6f447252006-01-11 19:40:33 -0200371{
Michael Krufky47a99912007-06-12 16:10:51 -0300372 dvb_attach(dvb_pll_attach, adap->fe, 0x61, NULL, DVB_PLL_LG_Z201);
Michael Krufky6f447252006-01-11 19:40:33 -0200373 return 0;
374}
375
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300376static int cxusb_dtt7579_tuner_attach(struct dvb_usb_adapter *adap)
Michael Krufky6f447252006-01-11 19:40:33 -0200377{
Michael Krufky79a54cb2006-12-05 14:20:06 -0300378 dvb_attach(dvb_pll_attach, adap->fe, 0x60,
Michael Krufky47a99912007-06-12 16:10:51 -0300379 NULL, DVB_PLL_THOMSON_DTT7579);
Patrick Boettcher332bed52006-05-14 04:49:00 -0300380 return 0;
381}
382
Michael Krufkyf71a56c2006-10-13 21:55:57 -0300383static int cxusb_lgh064f_tuner_attach(struct dvb_usb_adapter *adap)
Patrick Boettcher332bed52006-05-14 04:49:00 -0300384{
Trent Piepho6bdcc6e2007-04-27 12:31:30 -0300385 dvb_attach(dvb_pll_attach, adap->fe, 0x61, &adap->dev->i2c_adap,
Michael Krufky47a99912007-06-12 16:10:51 -0300386 DVB_PLL_LG_TDVS_H06XF);
Michael Krufky6f447252006-01-11 19:40:33 -0200387 return 0;
388}
389
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300390static int cxusb_cx22702_frontend_attach(struct dvb_usb_adapter *adap)
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700391{
Patrick Boettchere2efeab2005-09-09 13:02:51 -0700392 u8 b;
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300393 if (usb_set_interface(adap->dev->udev, 0, 6) < 0)
Patrick Boettcher8257e8a2005-07-07 17:58:15 -0700394 err("set interface failed");
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700395
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300396 cxusb_ctrl_msg(adap->dev, CMD_DIGITAL, NULL, 0, &b, 1);
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700397
Michael Krufkyf35db232006-12-05 14:53:39 -0300398 if ((adap->fe = dvb_attach(cx22702_attach, &cxusb_cx22702_config,
399 &adap->dev->i2c_adap)) != NULL)
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700400 return 0;
401
402 return -EIO;
403}
404
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300405static int cxusb_lgdt3303_frontend_attach(struct dvb_usb_adapter *adap)
Michael Krufkyeffee032006-01-09 15:25:47 -0200406{
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300407 if (usb_set_interface(adap->dev->udev, 0, 7) < 0)
Michael Krufkyeffee032006-01-09 15:25:47 -0200408 err("set interface failed");
409
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300410 cxusb_ctrl_msg(adap->dev, CMD_DIGITAL, NULL, 0, NULL, 0);
Michael Krufkyeffee032006-01-09 15:25:47 -0200411
Michael Krufkyf35db232006-12-05 14:53:39 -0300412 if ((adap->fe = dvb_attach(lgdt330x_attach, &cxusb_lgdt3303_config,
413 &adap->dev->i2c_adap)) != NULL)
Michael Krufkyeffee032006-01-09 15:25:47 -0200414 return 0;
415
416 return -EIO;
417}
418
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300419static int cxusb_mt352_frontend_attach(struct dvb_usb_adapter *adap)
Chris Pascoe0029ee12006-01-09 18:21:28 -0200420{
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300421 /* used in both lgz201 and th7579 */
422 if (usb_set_interface(adap->dev->udev, 0, 0) < 0)
Chris Pascoe0029ee12006-01-09 18:21:28 -0200423 err("set interface failed");
424
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300425 cxusb_ctrl_msg(adap->dev, CMD_DIGITAL, NULL, 0, NULL, 0);
Chris Pascoe0029ee12006-01-09 18:21:28 -0200426
Michael Krufkyf35db232006-12-05 14:53:39 -0300427 if ((adap->fe = dvb_attach(mt352_attach, &cxusb_mt352_config,
428 &adap->dev->i2c_adap)) != NULL)
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300429 return 0;
430
431 return -EIO;
432}
433
434static int cxusb_dee1601_frontend_attach(struct dvb_usb_adapter *adap)
435{
436 if (usb_set_interface(adap->dev->udev, 0, 0) < 0)
437 err("set interface failed");
438
439 cxusb_ctrl_msg(adap->dev, CMD_DIGITAL, NULL, 0, NULL, 0);
440
Michael Krufkyf35db232006-12-05 14:53:39 -0300441 if (((adap->fe = dvb_attach(mt352_attach, &cxusb_dee1601_config,
442 &adap->dev->i2c_adap)) != NULL) ||
443 ((adap->fe = dvb_attach(zl10353_attach,
444 &cxusb_zl10353_dee1601_config,
445 &adap->dev->i2c_adap)) != NULL))
Chris Pascoe0029ee12006-01-09 18:21:28 -0200446 return 0;
447
448 return -EIO;
449}
450
Patrick Boettcherf5373782006-01-09 18:21:38 -0200451/*
452 * DViCO bluebird firmware needs the "warm" product ID to be patched into the
453 * firmware file before download.
454 */
455
456#define BLUEBIRD_01_ID_OFFSET 6638
Michael Krufkyf35db232006-12-05 14:53:39 -0300457static int bluebird_patch_dvico_firmware_download(struct usb_device *udev,
458 const struct firmware *fw)
Patrick Boettcherf5373782006-01-09 18:21:38 -0200459{
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
Michael Krufkyf35db232006-12-05 14:53:39 -0300466 fw->data[BLUEBIRD_01_ID_OFFSET + 2] =
Jin-Bong lee1d1370a2007-02-20 23:10:34 -0300467 le16_to_cpu(udev->descriptor.idProduct) + 1;
Michael Krufkyf35db232006-12-05 14:53:39 -0300468 fw->data[BLUEBIRD_01_ID_OFFSET + 3] =
Jin-Bong lee1d1370a2007-02-20 23:10:34 -0300469 le16_to_cpu(udev->descriptor.idProduct) >> 8;
Patrick Boettcherf5373782006-01-09 18:21:38 -0200470
Michael Krufkyf35db232006-12-05 14:53:39 -0300471 return usb_cypress_load_firmware(udev, fw, CYPRESS_FX2);
Patrick Boettcherf5373782006-01-09 18:21:38 -0200472 }
473
474 return -EINVAL;
475}
476
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700477/* DVB USB Driver stuff */
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300478static struct dvb_usb_device_properties cxusb_medion_properties;
479static struct dvb_usb_device_properties cxusb_bluebird_lgh064f_properties;
480static struct dvb_usb_device_properties cxusb_bluebird_dee1601_properties;
481static struct dvb_usb_device_properties cxusb_bluebird_lgz201_properties;
482static struct dvb_usb_device_properties cxusb_bluebird_dtt7579_properties;
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700483
484static int cxusb_probe(struct usb_interface *intf,
Michael Krufkyf35db232006-12-05 14:53:39 -0300485 const struct usb_device_id *id)
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700486{
Michael Krufkyeffee032006-01-09 15:25:47 -0200487 if (dvb_usb_device_init(intf,&cxusb_medion_properties,THIS_MODULE,NULL) == 0 ||
Chris Pascoe0029ee12006-01-09 18:21:28 -0200488 dvb_usb_device_init(intf,&cxusb_bluebird_lgh064f_properties,THIS_MODULE,NULL) == 0 ||
Michael Krufky6f447252006-01-11 19:40:33 -0200489 dvb_usb_device_init(intf,&cxusb_bluebird_dee1601_properties,THIS_MODULE,NULL) == 0 ||
490 dvb_usb_device_init(intf,&cxusb_bluebird_lgz201_properties,THIS_MODULE,NULL) == 0 ||
491 dvb_usb_device_init(intf,&cxusb_bluebird_dtt7579_properties,THIS_MODULE,NULL) == 0) {
Michael Krufkyeffee032006-01-09 15:25:47 -0200492 return 0;
493 }
494
495 return -EINVAL;
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700496}
497
498static struct usb_device_id cxusb_table [] = {
Michael Krufkyf35db232006-12-05 14:53:39 -0300499 { USB_DEVICE(USB_VID_MEDION, USB_PID_MEDION_MD95700) },
500 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LG064F_COLD) },
501 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LG064F_WARM) },
502 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_DUAL_1_COLD) },
503 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_DUAL_1_WARM) },
504 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LGZ201_COLD) },
505 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LGZ201_WARM) },
506 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_TH7579_COLD) },
507 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_TH7579_WARM) },
508 { USB_DEVICE(USB_VID_DVICO, USB_PID_DIGITALNOW_BLUEBIRD_DUAL_1_COLD) },
509 { USB_DEVICE(USB_VID_DVICO, USB_PID_DIGITALNOW_BLUEBIRD_DUAL_1_WARM) },
510 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_DUAL_2_COLD) },
511 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_DUAL_2_WARM) },
512 {} /* Terminating entry */
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700513};
514MODULE_DEVICE_TABLE (usb, cxusb_table);
515
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300516static struct dvb_usb_device_properties cxusb_medion_properties = {
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700517 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
518
519 .usb_ctrl = CYPRESS_FX2,
520
521 .size_of_priv = sizeof(struct cxusb_state),
522
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300523 .num_adapters = 1,
524 .adapter = {
525 {
Patrick Boettcher01451e72006-10-13 11:34:46 -0300526 .streaming_ctrl = cxusb_streaming_ctrl,
527 .frontend_attach = cxusb_cx22702_frontend_attach,
528 .tuner_attach = cxusb_fmd1216me_tuner_attach,
529 /* parameter for the MPEG2-data transfer */
530 .stream = {
531 .type = USB_BULK,
532 .count = 5,
533 .endpoint = 0x02,
534 .u = {
535 .bulk = {
536 .buffersize = 8192,
537 }
538 }
539 },
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700540
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300541 },
542 },
543 .power_ctrl = cxusb_power_ctrl,
544
545 .i2c_algo = &cxusb_i2c_algo,
546
547 .generic_bulk_ctrl_endpoint = 0x01,
548
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700549 .num_device_descs = 1,
550 .devices = {
551 { "Medion MD95700 (MDUSBTV-HYBRID)",
552 { NULL },
553 { &cxusb_table[0], NULL },
554 },
555 }
556};
557
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300558static struct dvb_usb_device_properties cxusb_bluebird_lgh064f_properties = {
Michael Krufkyeffee032006-01-09 15:25:47 -0200559 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
560
Patrick Boettcherf5373782006-01-09 18:21:38 -0200561 .usb_ctrl = DEVICE_SPECIFIC,
562 .firmware = "dvb-usb-bluebird-01.fw",
563 .download_firmware = bluebird_patch_dvico_firmware_download,
Michael Krufky37bdfa02006-01-09 15:25:47 -0200564 /* use usb alt setting 0 for EP4 transfer (dvb-t),
565 use usb alt setting 7 for EP2 transfer (atsc) */
Michael Krufkyeffee032006-01-09 15:25:47 -0200566
567 .size_of_priv = sizeof(struct cxusb_state),
568
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300569 .num_adapters = 1,
570 .adapter = {
571 {
Patrick Boettcher01451e72006-10-13 11:34:46 -0300572 .streaming_ctrl = cxusb_streaming_ctrl,
573 .frontend_attach = cxusb_lgdt3303_frontend_attach,
Michael Krufkyf71a56c2006-10-13 21:55:57 -0300574 .tuner_attach = cxusb_lgh064f_tuner_attach,
Michael Krufkyeffee032006-01-09 15:25:47 -0200575
Patrick Boettcher01451e72006-10-13 11:34:46 -0300576 /* parameter for the MPEG2-data transfer */
577 .stream = {
578 .type = USB_BULK,
579 .count = 5,
580 .endpoint = 0x02,
581 .u = {
582 .bulk = {
583 .buffersize = 8192,
584 }
585 }
586 },
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300587 },
588 },
589
590 .power_ctrl = cxusb_bluebird_power_ctrl,
591
Michael Krufkyeffee032006-01-09 15:25:47 -0200592 .i2c_algo = &cxusb_i2c_algo,
593
Michael Krufkyc1501782006-03-26 05:43:36 -0300594 .rc_interval = 100,
595 .rc_key_map = dvico_portable_rc_keys,
596 .rc_key_map_size = ARRAY_SIZE(dvico_portable_rc_keys),
597 .rc_query = cxusb_rc_query,
598
Michael Krufkyeffee032006-01-09 15:25:47 -0200599 .generic_bulk_ctrl_endpoint = 0x01,
Michael Krufkyeffee032006-01-09 15:25:47 -0200600
601 .num_device_descs = 1,
602 .devices = {
603 { "DViCO FusionHDTV5 USB Gold",
604 { &cxusb_table[1], NULL },
605 { &cxusb_table[2], NULL },
606 },
607 }
608};
609
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300610static struct dvb_usb_device_properties cxusb_bluebird_dee1601_properties = {
Chris Pascoe0029ee12006-01-09 18:21:28 -0200611 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
612
Patrick Boettcherf5373782006-01-09 18:21:38 -0200613 .usb_ctrl = DEVICE_SPECIFIC,
614 .firmware = "dvb-usb-bluebird-01.fw",
615 .download_firmware = bluebird_patch_dvico_firmware_download,
Chris Pascoe0029ee12006-01-09 18:21:28 -0200616 /* use usb alt setting 0 for EP4 transfer (dvb-t),
617 use usb alt setting 7 for EP2 transfer (atsc) */
618
619 .size_of_priv = sizeof(struct cxusb_state),
620
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300621 .num_adapters = 1,
622 .adapter = {
623 {
Patrick Boettcher01451e72006-10-13 11:34:46 -0300624 .streaming_ctrl = cxusb_streaming_ctrl,
625 .frontend_attach = cxusb_dee1601_frontend_attach,
626 .tuner_attach = cxusb_dee1601_tuner_attach,
627 /* parameter for the MPEG2-data transfer */
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300628 .stream = {
629 .type = USB_BULK,
Patrick Boettcher01451e72006-10-13 11:34:46 -0300630 .count = 5,
631 .endpoint = 0x04,
632 .u = {
633 .bulk = {
634 .buffersize = 8192,
635 }
636 }
637 },
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300638 },
639 },
640
641 .power_ctrl = cxusb_bluebird_power_ctrl,
Chris Pascoe0029ee12006-01-09 18:21:28 -0200642
643 .i2c_algo = &cxusb_i2c_algo,
644
Chris Pascoe7c239702006-01-09 18:21:29 -0200645 .rc_interval = 150,
646 .rc_key_map = dvico_mce_rc_keys,
647 .rc_key_map_size = ARRAY_SIZE(dvico_mce_rc_keys),
648 .rc_query = cxusb_rc_query,
649
Chris Pascoe0029ee12006-01-09 18:21:28 -0200650 .generic_bulk_ctrl_endpoint = 0x01,
Chris Pascoe0029ee12006-01-09 18:21:28 -0200651
Michael Krufky587c03d2006-09-28 02:16:01 -0300652 .num_device_descs = 3,
Chris Pascoe0029ee12006-01-09 18:21:28 -0200653 .devices = {
654 { "DViCO FusionHDTV DVB-T Dual USB",
655 { &cxusb_table[3], NULL },
656 { &cxusb_table[4], NULL },
657 },
Michael Krufkyac9ffb92006-01-11 23:21:00 -0200658 { "DigitalNow DVB-T Dual USB",
659 { &cxusb_table[9], NULL },
660 { &cxusb_table[10], NULL },
661 },
Michael Krufky587c03d2006-09-28 02:16:01 -0300662 { "DViCO FusionHDTV DVB-T Dual Digital 2",
663 { &cxusb_table[11], NULL },
664 { &cxusb_table[12], NULL },
665 },
Chris Pascoe0029ee12006-01-09 18:21:28 -0200666 }
667};
668
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300669static struct dvb_usb_device_properties cxusb_bluebird_lgz201_properties = {
Michael Krufky6f447252006-01-11 19:40:33 -0200670 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
671
672 .usb_ctrl = DEVICE_SPECIFIC,
673 .firmware = "dvb-usb-bluebird-01.fw",
674 .download_firmware = bluebird_patch_dvico_firmware_download,
675 /* use usb alt setting 0 for EP4 transfer (dvb-t),
676 use usb alt setting 7 for EP2 transfer (atsc) */
677
678 .size_of_priv = sizeof(struct cxusb_state),
679
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300680 .num_adapters = 2,
681 .adapter = {
682 {
Patrick Boettcher01451e72006-10-13 11:34:46 -0300683 .streaming_ctrl = cxusb_streaming_ctrl,
684 .frontend_attach = cxusb_mt352_frontend_attach,
685 .tuner_attach = cxusb_lgz201_tuner_attach,
Michael Krufky6f447252006-01-11 19:40:33 -0200686
Patrick Boettcher01451e72006-10-13 11:34:46 -0300687 /* parameter for the MPEG2-data transfer */
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300688 .stream = {
689 .type = USB_BULK,
Patrick Boettcher01451e72006-10-13 11:34:46 -0300690 .count = 5,
691 .endpoint = 0x04,
692 .u = {
693 .bulk = {
694 .buffersize = 8192,
695 }
696 }
697 },
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300698 },
699 },
700 .power_ctrl = cxusb_bluebird_power_ctrl,
701
Michael Krufky6f447252006-01-11 19:40:33 -0200702 .i2c_algo = &cxusb_i2c_algo,
703
Michael Krufkyc1501782006-03-26 05:43:36 -0300704 .rc_interval = 100,
705 .rc_key_map = dvico_portable_rc_keys,
706 .rc_key_map_size = ARRAY_SIZE(dvico_portable_rc_keys),
707 .rc_query = cxusb_rc_query,
708
Michael Krufky6f447252006-01-11 19:40:33 -0200709 .generic_bulk_ctrl_endpoint = 0x01,
Michael Krufky6f447252006-01-11 19:40:33 -0200710 .num_device_descs = 1,
711 .devices = {
712 { "DViCO FusionHDTV DVB-T USB (LGZ201)",
713 { &cxusb_table[5], NULL },
714 { &cxusb_table[6], NULL },
715 },
716 }
717};
718
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300719static struct dvb_usb_device_properties cxusb_bluebird_dtt7579_properties = {
Michael Krufky6f447252006-01-11 19:40:33 -0200720 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
721
722 .usb_ctrl = DEVICE_SPECIFIC,
723 .firmware = "dvb-usb-bluebird-01.fw",
724 .download_firmware = bluebird_patch_dvico_firmware_download,
725 /* use usb alt setting 0 for EP4 transfer (dvb-t),
726 use usb alt setting 7 for EP2 transfer (atsc) */
727
728 .size_of_priv = sizeof(struct cxusb_state),
729
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300730 .num_adapters = 1,
731 .adapter = {
732 {
Patrick Boettcher01451e72006-10-13 11:34:46 -0300733 .streaming_ctrl = cxusb_streaming_ctrl,
734 .frontend_attach = cxusb_mt352_frontend_attach,
735 .tuner_attach = cxusb_dtt7579_tuner_attach,
Michael Krufky6f447252006-01-11 19:40:33 -0200736
Patrick Boettcher01451e72006-10-13 11:34:46 -0300737 /* parameter for the MPEG2-data transfer */
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300738 .stream = {
739 .type = USB_BULK,
Patrick Boettcher01451e72006-10-13 11:34:46 -0300740 .count = 5,
741 .endpoint = 0x04,
742 .u = {
743 .bulk = {
744 .buffersize = 8192,
745 }
746 }
747 },
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300748 },
749 },
750 .power_ctrl = cxusb_bluebird_power_ctrl,
751
Michael Krufky6f447252006-01-11 19:40:33 -0200752 .i2c_algo = &cxusb_i2c_algo,
753
Michael Krufkyc1501782006-03-26 05:43:36 -0300754 .rc_interval = 100,
755 .rc_key_map = dvico_portable_rc_keys,
756 .rc_key_map_size = ARRAY_SIZE(dvico_portable_rc_keys),
757 .rc_query = cxusb_rc_query,
758
Michael Krufky6f447252006-01-11 19:40:33 -0200759 .generic_bulk_ctrl_endpoint = 0x01,
Michael Krufky6f447252006-01-11 19:40:33 -0200760
761 .num_device_descs = 1,
762 .devices = {
763 { "DViCO FusionHDTV DVB-T USB (TH7579)",
764 { &cxusb_table[7], NULL },
765 { &cxusb_table[8], NULL },
766 },
767 }
768};
769
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700770static struct usb_driver cxusb_driver = {
Patrick Boettcher63b5c1c2005-07-07 17:58:30 -0700771 .name = "dvb_usb_cxusb",
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700772 .probe = cxusb_probe,
Michael Krufkyf35db232006-12-05 14:53:39 -0300773 .disconnect = dvb_usb_device_exit,
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700774 .id_table = cxusb_table,
775};
776
777/* module stuff */
778static int __init cxusb_module_init(void)
779{
780 int result;
781 if ((result = usb_register(&cxusb_driver))) {
782 err("usb_register failed. Error number %d",result);
783 return result;
784 }
785
786 return 0;
787}
788
789static void __exit cxusb_module_exit(void)
790{
791 /* deregister this driver from the USB subsystem */
792 usb_deregister(&cxusb_driver);
793}
794
795module_init (cxusb_module_init);
796module_exit (cxusb_module_exit);
797
798MODULE_AUTHOR("Patrick Boettcher <patrick.boettcher@desy.de>");
Michael Krufky5b9ed282006-10-15 14:51:08 -0300799MODULE_AUTHOR("Michael Krufky <mkrufky@linuxtv.org>");
Michael Krufkyf4efb4d2006-01-13 14:10:25 -0200800MODULE_AUTHOR("Chris Pascoe <c.pascoe@itee.uq.edu.au>");
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700801MODULE_DESCRIPTION("Driver for Conexant USB2.0 hybrid reference design");
802MODULE_VERSION("1.0-alpha");
803MODULE_LICENSE("GPL");