blob: 74eeb168f24175f2a47e3d45884431b2e1d8950c [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
Patrick Boettcher22c6d932005-07-07 17:58:10 -070086 for (i = 0; i < num; i++) {
87
Michael Krufky5e805ef2006-03-23 00:01:34 -030088 if (d->udev->descriptor.idVendor == USB_VID_MEDION)
89 switch (msg[i].addr) {
Michael Krufkyf35db232006-12-05 14:53:39 -030090 case 0x63:
91 cxusb_gpio_tuner(d, 0);
92 break;
93 default:
94 cxusb_gpio_tuner(d, 1);
95 break;
Michael Krufky5e805ef2006-03-23 00:01:34 -030096 }
Patrick Boettcher22c6d932005-07-07 17:58:10 -070097
Chris Pascoe272479d72007-11-19 03:01:22 -030098 if (msg[i].flags & I2C_M_RD) {
99 /* read only */
100 u8 obuf[3], ibuf[1+msg[i].len];
101 obuf[0] = 0;
102 obuf[1] = msg[i].len;
103 obuf[2] = msg[i].addr;
104 if (cxusb_ctrl_msg(d, CMD_I2C_READ,
105 obuf, 3,
106 ibuf, 1+msg[i].len) < 0) {
107 warn("i2c read failed");
108 break;
109 }
110 memcpy(msg[i].buf, &ibuf[1], msg[i].len);
Chris Pascoea644e4a2007-11-19 03:05:09 -0300111 } else if (i+1 < num && (msg[i+1].flags & I2C_M_RD) &&
112 msg[i].addr == msg[i+1].addr) {
113 /* write to then read from same address */
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700114 u8 obuf[3+msg[i].len], ibuf[1+msg[i+1].len];
115 obuf[0] = msg[i].len;
116 obuf[1] = msg[i+1].len;
117 obuf[2] = msg[i].addr;
Michael Krufkyf35db232006-12-05 14:53:39 -0300118 memcpy(&obuf[3], msg[i].buf, msg[i].len);
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700119
120 if (cxusb_ctrl_msg(d, CMD_I2C_READ,
Michael Krufkyf35db232006-12-05 14:53:39 -0300121 obuf, 3+msg[i].len,
122 ibuf, 1+msg[i+1].len) < 0)
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700123 break;
124
125 if (ibuf[0] != 0x08)
Michael Krufkyae62e3d2006-03-23 01:11:18 -0300126 deb_i2c("i2c read may have failed\n");
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700127
Michael Krufkyf35db232006-12-05 14:53:39 -0300128 memcpy(msg[i+1].buf, &ibuf[1], msg[i+1].len);
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700129
130 i++;
Chris Pascoe272479d72007-11-19 03:01:22 -0300131 } else {
132 /* write only */
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700133 u8 obuf[2+msg[i].len], ibuf;
134 obuf[0] = msg[i].addr;
135 obuf[1] = msg[i].len;
Michael Krufkyf35db232006-12-05 14:53:39 -0300136 memcpy(&obuf[2], msg[i].buf, msg[i].len);
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700137
Michael Krufkyf35db232006-12-05 14:53:39 -0300138 if (cxusb_ctrl_msg(d, CMD_I2C_WRITE, obuf,
139 2+msg[i].len, &ibuf,1) < 0)
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700140 break;
141 if (ibuf != 0x08)
Michael Krufkyae62e3d2006-03-23 01:11:18 -0300142 deb_i2c("i2c write may have failed\n");
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700143 }
144 }
145
Ingo Molnar3593cab2006-02-07 06:49:14 -0200146 mutex_unlock(&d->i2c_mutex);
Chris Pascoe13e001d2007-11-19 02:48:27 -0300147 return i == num ? num : -EREMOTEIO;
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700148}
149
150static u32 cxusb_i2c_func(struct i2c_adapter *adapter)
151{
152 return I2C_FUNC_I2C;
153}
154
155static struct i2c_algorithm cxusb_i2c_algo = {
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700156 .master_xfer = cxusb_i2c_xfer,
157 .functionality = cxusb_i2c_func,
158};
159
160static int cxusb_power_ctrl(struct dvb_usb_device *d, int onoff)
161{
Patrick Boettchere2efeab2005-09-09 13:02:51 -0700162 u8 b = 0;
163 if (onoff)
164 return cxusb_ctrl_msg(d, CMD_POWER_ON, &b, 1, NULL, 0);
165 else
166 return cxusb_ctrl_msg(d, CMD_POWER_OFF, &b, 1, NULL, 0);
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700167}
168
Michael Krufky5691c842006-04-19 20:40:01 -0300169static int cxusb_bluebird_power_ctrl(struct dvb_usb_device *d, int onoff)
170{
171 u8 b = 0;
172 if (onoff)
173 return cxusb_ctrl_msg(d, CMD_POWER_ON, &b, 1, NULL, 0);
174 else
175 return 0;
176}
177
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300178static int cxusb_streaming_ctrl(struct dvb_usb_adapter *adap, int onoff)
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700179{
Patrick Boettcher8257e8a2005-07-07 17:58:15 -0700180 u8 buf[2] = { 0x03, 0x00 };
181 if (onoff)
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300182 cxusb_ctrl_msg(adap->dev, CMD_STREAMING_ON, buf, 2, NULL, 0);
Patrick Boettcher8257e8a2005-07-07 17:58:15 -0700183 else
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300184 cxusb_ctrl_msg(adap->dev, CMD_STREAMING_OFF, NULL, 0, NULL, 0);
Patrick Boettcher8257e8a2005-07-07 17:58:15 -0700185
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700186 return 0;
187}
188
Chris Pascoe7c239702006-01-09 18:21:29 -0200189static int cxusb_rc_query(struct dvb_usb_device *d, u32 *event, int *state)
190{
191 struct dvb_usb_rc_key *keymap = d->props.rc_key_map;
Michael Krufkya07e6092006-01-09 18:21:31 -0200192 u8 ircode[4];
Chris Pascoe7c239702006-01-09 18:21:29 -0200193 int i;
194
Michael Krufkya07e6092006-01-09 18:21:31 -0200195 cxusb_ctrl_msg(d, CMD_GET_IR_CODE, NULL, 0, ircode, 4);
Chris Pascoe7c239702006-01-09 18:21:29 -0200196
197 *event = 0;
198 *state = REMOTE_NO_KEY_PRESSED;
199
200 for (i = 0; i < d->props.rc_key_map_size; i++) {
Michael Krufkya07e6092006-01-09 18:21:31 -0200201 if (keymap[i].custom == ircode[2] &&
202 keymap[i].data == ircode[3]) {
Chris Pascoe7c239702006-01-09 18:21:29 -0200203 *event = keymap[i].event;
204 *state = REMOTE_KEY_PRESSED;
205
206 return 0;
207 }
208 }
209
210 return 0;
211}
212
Adrian Bunk703cb2c2006-01-23 17:11:09 -0200213static struct dvb_usb_rc_key dvico_mce_rc_keys[] = {
Michael Krufkya07e6092006-01-09 18:21:31 -0200214 { 0xfe, 0x02, KEY_TV },
215 { 0xfe, 0x0e, KEY_MP3 },
216 { 0xfe, 0x1a, KEY_DVD },
217 { 0xfe, 0x1e, KEY_FAVORITES },
218 { 0xfe, 0x16, KEY_SETUP },
219 { 0xfe, 0x46, KEY_POWER2 },
220 { 0xfe, 0x0a, KEY_EPG },
221 { 0xfe, 0x49, KEY_BACK },
222 { 0xfe, 0x4d, KEY_MENU },
223 { 0xfe, 0x51, KEY_UP },
224 { 0xfe, 0x5b, KEY_LEFT },
225 { 0xfe, 0x5f, KEY_RIGHT },
226 { 0xfe, 0x53, KEY_DOWN },
227 { 0xfe, 0x5e, KEY_OK },
228 { 0xfe, 0x59, KEY_INFO },
229 { 0xfe, 0x55, KEY_TAB },
230 { 0xfe, 0x0f, KEY_PREVIOUSSONG },/* Replay */
231 { 0xfe, 0x12, KEY_NEXTSONG }, /* Skip */
232 { 0xfe, 0x42, KEY_ENTER }, /* Windows/Start */
233 { 0xfe, 0x15, KEY_VOLUMEUP },
234 { 0xfe, 0x05, KEY_VOLUMEDOWN },
235 { 0xfe, 0x11, KEY_CHANNELUP },
236 { 0xfe, 0x09, KEY_CHANNELDOWN },
237 { 0xfe, 0x52, KEY_CAMERA },
238 { 0xfe, 0x5a, KEY_TUNER }, /* Live */
239 { 0xfe, 0x19, KEY_OPEN },
240 { 0xfe, 0x0b, KEY_1 },
241 { 0xfe, 0x17, KEY_2 },
242 { 0xfe, 0x1b, KEY_3 },
243 { 0xfe, 0x07, KEY_4 },
244 { 0xfe, 0x50, KEY_5 },
245 { 0xfe, 0x54, KEY_6 },
246 { 0xfe, 0x48, KEY_7 },
247 { 0xfe, 0x4c, KEY_8 },
248 { 0xfe, 0x58, KEY_9 },
249 { 0xfe, 0x13, KEY_ANGLE }, /* Aspect */
250 { 0xfe, 0x03, KEY_0 },
251 { 0xfe, 0x1f, KEY_ZOOM },
252 { 0xfe, 0x43, KEY_REWIND },
253 { 0xfe, 0x47, KEY_PLAYPAUSE },
254 { 0xfe, 0x4f, KEY_FASTFORWARD },
255 { 0xfe, 0x57, KEY_MUTE },
256 { 0xfe, 0x0d, KEY_STOP },
257 { 0xfe, 0x01, KEY_RECORD },
258 { 0xfe, 0x4e, KEY_POWER },
259};
260
Michael Krufkyc1501782006-03-26 05:43:36 -0300261static struct dvb_usb_rc_key dvico_portable_rc_keys[] = {
262 { 0xfc, 0x02, KEY_SETUP }, /* Profile */
263 { 0xfc, 0x43, KEY_POWER2 },
264 { 0xfc, 0x06, KEY_EPG },
265 { 0xfc, 0x5a, KEY_BACK },
266 { 0xfc, 0x05, KEY_MENU },
267 { 0xfc, 0x47, KEY_INFO },
268 { 0xfc, 0x01, KEY_TAB },
269 { 0xfc, 0x42, KEY_PREVIOUSSONG },/* Replay */
270 { 0xfc, 0x49, KEY_VOLUMEUP },
271 { 0xfc, 0x09, KEY_VOLUMEDOWN },
272 { 0xfc, 0x54, KEY_CHANNELUP },
273 { 0xfc, 0x0b, KEY_CHANNELDOWN },
Michael Krufkydbcb86e2006-03-26 18:59:45 -0300274 { 0xfc, 0x16, KEY_CAMERA },
Michael Krufkyc1501782006-03-26 05:43:36 -0300275 { 0xfc, 0x40, KEY_TUNER }, /* ATV/DTV */
276 { 0xfc, 0x45, KEY_OPEN },
277 { 0xfc, 0x19, KEY_1 },
278 { 0xfc, 0x18, KEY_2 },
279 { 0xfc, 0x1b, KEY_3 },
280 { 0xfc, 0x1a, KEY_4 },
281 { 0xfc, 0x58, KEY_5 },
282 { 0xfc, 0x59, KEY_6 },
283 { 0xfc, 0x15, KEY_7 },
284 { 0xfc, 0x14, KEY_8 },
285 { 0xfc, 0x17, KEY_9 },
286 { 0xfc, 0x44, KEY_ANGLE }, /* Aspect */
287 { 0xfc, 0x55, KEY_0 },
288 { 0xfc, 0x07, KEY_ZOOM },
289 { 0xfc, 0x0a, KEY_REWIND },
290 { 0xfc, 0x08, KEY_PLAYPAUSE },
291 { 0xfc, 0x4b, KEY_FASTFORWARD },
292 { 0xfc, 0x5b, KEY_MUTE },
293 { 0xfc, 0x04, KEY_STOP },
294 { 0xfc, 0x56, KEY_RECORD },
295 { 0xfc, 0x57, KEY_POWER },
296 { 0xfc, 0x41, KEY_UNKNOWN }, /* INPUT */
297 { 0xfc, 0x00, KEY_UNKNOWN }, /* HD */
298};
299
Chris Pascoe0029ee12006-01-09 18:21:28 -0200300static int cxusb_dee1601_demod_init(struct dvb_frontend* fe)
301{
Chris Pascoed9ed8812006-02-07 06:49:11 -0200302 static u8 clock_config [] = { CLOCK_CTL, 0x38, 0x28 };
Chris Pascoe0029ee12006-01-09 18:21:28 -0200303 static u8 reset [] = { RESET, 0x80 };
304 static u8 adc_ctl_1_cfg [] = { ADC_CTL_1, 0x40 };
305 static u8 agc_cfg [] = { AGC_TARGET, 0x28, 0x20 };
306 static u8 gpp_ctl_cfg [] = { GPP_CTL, 0x33 };
307 static u8 capt_range_cfg[] = { CAPT_RANGE, 0x32 };
308
309 mt352_write(fe, clock_config, sizeof(clock_config));
310 udelay(200);
311 mt352_write(fe, reset, sizeof(reset));
312 mt352_write(fe, adc_ctl_1_cfg, sizeof(adc_ctl_1_cfg));
313
314 mt352_write(fe, agc_cfg, sizeof(agc_cfg));
315 mt352_write(fe, gpp_ctl_cfg, sizeof(gpp_ctl_cfg));
316 mt352_write(fe, capt_range_cfg, sizeof(capt_range_cfg));
317
318 return 0;
319}
320
Michael Krufky6f447252006-01-11 19:40:33 -0200321static int cxusb_mt352_demod_init(struct dvb_frontend* fe)
322{ /* used in both lgz201 and th7579 */
Michael Krufkyfb51fd22006-02-07 06:49:12 -0200323 static u8 clock_config [] = { CLOCK_CTL, 0x38, 0x29 };
Michael Krufky6f447252006-01-11 19:40:33 -0200324 static u8 reset [] = { RESET, 0x80 };
325 static u8 adc_ctl_1_cfg [] = { ADC_CTL_1, 0x40 };
326 static u8 agc_cfg [] = { AGC_TARGET, 0x24, 0x20 };
327 static u8 gpp_ctl_cfg [] = { GPP_CTL, 0x33 };
328 static u8 capt_range_cfg[] = { CAPT_RANGE, 0x32 };
329
330 mt352_write(fe, clock_config, sizeof(clock_config));
331 udelay(200);
332 mt352_write(fe, reset, sizeof(reset));
333 mt352_write(fe, adc_ctl_1_cfg, sizeof(adc_ctl_1_cfg));
334
335 mt352_write(fe, agc_cfg, sizeof(agc_cfg));
336 mt352_write(fe, gpp_ctl_cfg, sizeof(gpp_ctl_cfg));
337 mt352_write(fe, capt_range_cfg, sizeof(capt_range_cfg));
338 return 0;
339}
340
Adrian Bunk703cb2c2006-01-23 17:11:09 -0200341static struct cx22702_config cxusb_cx22702_config = {
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700342 .demod_address = 0x63,
Patrick Boettcher8257e8a2005-07-07 17:58:15 -0700343 .output_mode = CX22702_PARALLEL_OUTPUT,
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700344};
345
Michael Krufkyfddd6322006-02-27 00:08:17 -0300346static struct lgdt330x_config cxusb_lgdt3303_config = {
Michael Krufkyeffee032006-01-09 15:25:47 -0200347 .demod_address = 0x0e,
348 .demod_chip = LGDT3303,
Michael Krufkyeffee032006-01-09 15:25:47 -0200349};
350
Adrian Bunk703cb2c2006-01-23 17:11:09 -0200351static struct mt352_config cxusb_dee1601_config = {
Chris Pascoe0029ee12006-01-09 18:21:28 -0200352 .demod_address = 0x0f,
353 .demod_init = cxusb_dee1601_demod_init,
Chris Pascoe0029ee12006-01-09 18:21:28 -0200354};
355
Michael Krufkyc9ce3942006-06-11 04:24:31 -0300356static struct zl10353_config cxusb_zl10353_dee1601_config = {
357 .demod_address = 0x0f,
Chris Pascoe8fb95782006-08-10 03:17:16 -0300358 .parallel_ts = 1,
Michael Krufkyc9ce3942006-06-11 04:24:31 -0300359};
360
Adrian Bunk6fe00b02006-04-19 20:49:28 -0300361static struct mt352_config cxusb_mt352_config = {
Michael Krufky6f447252006-01-11 19:40:33 -0200362 /* used in both lgz201 and th7579 */
363 .demod_address = 0x0f,
364 .demod_init = cxusb_mt352_demod_init,
Michael Krufky6f447252006-01-11 19:40:33 -0200365};
366
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700367/* Callbacks for DVB USB */
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300368static int cxusb_fmd1216me_tuner_attach(struct dvb_usb_adapter *adap)
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700369{
Trent Piephob7754d72007-05-08 18:05:16 -0300370 dvb_attach(dvb_pll_attach, adap->fe, 0x61, &adap->dev->i2c_adap,
Michael Krufky47a99912007-06-12 16:10:51 -0300371 DVB_PLL_FMD1216ME);
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700372 return 0;
373}
374
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300375static int cxusb_dee1601_tuner_attach(struct dvb_usb_adapter *adap)
Chris Pascoe0029ee12006-01-09 18:21:28 -0200376{
Michael Krufky79a54cb2006-12-05 14:20:06 -0300377 dvb_attach(dvb_pll_attach, adap->fe, 0x61,
Michael Krufky47a99912007-06-12 16:10:51 -0300378 NULL, DVB_PLL_THOMSON_DTT7579);
Chris Pascoe0029ee12006-01-09 18:21:28 -0200379 return 0;
380}
381
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300382static int cxusb_lgz201_tuner_attach(struct dvb_usb_adapter *adap)
Michael Krufky6f447252006-01-11 19:40:33 -0200383{
Michael Krufky47a99912007-06-12 16:10:51 -0300384 dvb_attach(dvb_pll_attach, adap->fe, 0x61, NULL, DVB_PLL_LG_Z201);
Michael Krufky6f447252006-01-11 19:40:33 -0200385 return 0;
386}
387
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300388static int cxusb_dtt7579_tuner_attach(struct dvb_usb_adapter *adap)
Michael Krufky6f447252006-01-11 19:40:33 -0200389{
Michael Krufky79a54cb2006-12-05 14:20:06 -0300390 dvb_attach(dvb_pll_attach, adap->fe, 0x60,
Michael Krufky47a99912007-06-12 16:10:51 -0300391 NULL, DVB_PLL_THOMSON_DTT7579);
Patrick Boettcher332bed52006-05-14 04:49:00 -0300392 return 0;
393}
394
Michael Krufkyf71a56c2006-10-13 21:55:57 -0300395static int cxusb_lgh064f_tuner_attach(struct dvb_usb_adapter *adap)
Patrick Boettcher332bed52006-05-14 04:49:00 -0300396{
Trent Piepho6bdcc6e2007-04-27 12:31:30 -0300397 dvb_attach(dvb_pll_attach, adap->fe, 0x61, &adap->dev->i2c_adap,
Michael Krufky47a99912007-06-12 16:10:51 -0300398 DVB_PLL_LG_TDVS_H06XF);
Michael Krufky6f447252006-01-11 19:40:33 -0200399 return 0;
400}
401
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300402static int cxusb_cx22702_frontend_attach(struct dvb_usb_adapter *adap)
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700403{
Patrick Boettchere2efeab2005-09-09 13:02:51 -0700404 u8 b;
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300405 if (usb_set_interface(adap->dev->udev, 0, 6) < 0)
Patrick Boettcher8257e8a2005-07-07 17:58:15 -0700406 err("set interface failed");
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700407
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300408 cxusb_ctrl_msg(adap->dev, CMD_DIGITAL, NULL, 0, &b, 1);
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700409
Michael Krufkyf35db232006-12-05 14:53:39 -0300410 if ((adap->fe = dvb_attach(cx22702_attach, &cxusb_cx22702_config,
411 &adap->dev->i2c_adap)) != NULL)
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700412 return 0;
413
414 return -EIO;
415}
416
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300417static int cxusb_lgdt3303_frontend_attach(struct dvb_usb_adapter *adap)
Michael Krufkyeffee032006-01-09 15:25:47 -0200418{
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300419 if (usb_set_interface(adap->dev->udev, 0, 7) < 0)
Michael Krufkyeffee032006-01-09 15:25:47 -0200420 err("set interface failed");
421
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300422 cxusb_ctrl_msg(adap->dev, CMD_DIGITAL, NULL, 0, NULL, 0);
Michael Krufkyeffee032006-01-09 15:25:47 -0200423
Michael Krufkyf35db232006-12-05 14:53:39 -0300424 if ((adap->fe = dvb_attach(lgdt330x_attach, &cxusb_lgdt3303_config,
425 &adap->dev->i2c_adap)) != NULL)
Michael Krufkyeffee032006-01-09 15:25:47 -0200426 return 0;
427
428 return -EIO;
429}
430
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300431static int cxusb_mt352_frontend_attach(struct dvb_usb_adapter *adap)
Chris Pascoe0029ee12006-01-09 18:21:28 -0200432{
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300433 /* used in both lgz201 and th7579 */
434 if (usb_set_interface(adap->dev->udev, 0, 0) < 0)
Chris Pascoe0029ee12006-01-09 18:21:28 -0200435 err("set interface failed");
436
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300437 cxusb_ctrl_msg(adap->dev, CMD_DIGITAL, NULL, 0, NULL, 0);
Chris Pascoe0029ee12006-01-09 18:21:28 -0200438
Michael Krufkyf35db232006-12-05 14:53:39 -0300439 if ((adap->fe = dvb_attach(mt352_attach, &cxusb_mt352_config,
440 &adap->dev->i2c_adap)) != NULL)
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300441 return 0;
442
443 return -EIO;
444}
445
446static int cxusb_dee1601_frontend_attach(struct dvb_usb_adapter *adap)
447{
448 if (usb_set_interface(adap->dev->udev, 0, 0) < 0)
449 err("set interface failed");
450
451 cxusb_ctrl_msg(adap->dev, CMD_DIGITAL, NULL, 0, NULL, 0);
452
Michael Krufkyf35db232006-12-05 14:53:39 -0300453 if (((adap->fe = dvb_attach(mt352_attach, &cxusb_dee1601_config,
454 &adap->dev->i2c_adap)) != NULL) ||
455 ((adap->fe = dvb_attach(zl10353_attach,
456 &cxusb_zl10353_dee1601_config,
457 &adap->dev->i2c_adap)) != NULL))
Chris Pascoe0029ee12006-01-09 18:21:28 -0200458 return 0;
459
460 return -EIO;
461}
462
Patrick Boettcherf5373782006-01-09 18:21:38 -0200463/*
464 * DViCO bluebird firmware needs the "warm" product ID to be patched into the
465 * firmware file before download.
466 */
467
468#define BLUEBIRD_01_ID_OFFSET 6638
Michael Krufkyf35db232006-12-05 14:53:39 -0300469static int bluebird_patch_dvico_firmware_download(struct usb_device *udev,
470 const struct firmware *fw)
Patrick Boettcherf5373782006-01-09 18:21:38 -0200471{
472 if (fw->size < BLUEBIRD_01_ID_OFFSET + 4)
473 return -EINVAL;
474
475 if (fw->data[BLUEBIRD_01_ID_OFFSET] == (USB_VID_DVICO & 0xff) &&
476 fw->data[BLUEBIRD_01_ID_OFFSET + 1] == USB_VID_DVICO >> 8) {
477
Michael Krufkyf35db232006-12-05 14:53:39 -0300478 fw->data[BLUEBIRD_01_ID_OFFSET + 2] =
Jin-Bong lee1d1370a2007-02-20 23:10:34 -0300479 le16_to_cpu(udev->descriptor.idProduct) + 1;
Michael Krufkyf35db232006-12-05 14:53:39 -0300480 fw->data[BLUEBIRD_01_ID_OFFSET + 3] =
Jin-Bong lee1d1370a2007-02-20 23:10:34 -0300481 le16_to_cpu(udev->descriptor.idProduct) >> 8;
Patrick Boettcherf5373782006-01-09 18:21:38 -0200482
Michael Krufkyf35db232006-12-05 14:53:39 -0300483 return usb_cypress_load_firmware(udev, fw, CYPRESS_FX2);
Patrick Boettcherf5373782006-01-09 18:21:38 -0200484 }
485
486 return -EINVAL;
487}
488
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700489/* DVB USB Driver stuff */
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300490static struct dvb_usb_device_properties cxusb_medion_properties;
491static struct dvb_usb_device_properties cxusb_bluebird_lgh064f_properties;
492static struct dvb_usb_device_properties cxusb_bluebird_dee1601_properties;
493static struct dvb_usb_device_properties cxusb_bluebird_lgz201_properties;
494static struct dvb_usb_device_properties cxusb_bluebird_dtt7579_properties;
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700495
496static int cxusb_probe(struct usb_interface *intf,
Michael Krufkyf35db232006-12-05 14:53:39 -0300497 const struct usb_device_id *id)
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700498{
Michael Krufkyeffee032006-01-09 15:25:47 -0200499 if (dvb_usb_device_init(intf,&cxusb_medion_properties,THIS_MODULE,NULL) == 0 ||
Chris Pascoe0029ee12006-01-09 18:21:28 -0200500 dvb_usb_device_init(intf,&cxusb_bluebird_lgh064f_properties,THIS_MODULE,NULL) == 0 ||
Michael Krufky6f447252006-01-11 19:40:33 -0200501 dvb_usb_device_init(intf,&cxusb_bluebird_dee1601_properties,THIS_MODULE,NULL) == 0 ||
502 dvb_usb_device_init(intf,&cxusb_bluebird_lgz201_properties,THIS_MODULE,NULL) == 0 ||
503 dvb_usb_device_init(intf,&cxusb_bluebird_dtt7579_properties,THIS_MODULE,NULL) == 0) {
Michael Krufkyeffee032006-01-09 15:25:47 -0200504 return 0;
505 }
506
507 return -EINVAL;
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700508}
509
510static struct usb_device_id cxusb_table [] = {
Michael Krufkyf35db232006-12-05 14:53:39 -0300511 { USB_DEVICE(USB_VID_MEDION, USB_PID_MEDION_MD95700) },
512 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LG064F_COLD) },
513 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LG064F_WARM) },
514 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_DUAL_1_COLD) },
515 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_DUAL_1_WARM) },
516 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LGZ201_COLD) },
517 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LGZ201_WARM) },
518 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_TH7579_COLD) },
519 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_TH7579_WARM) },
520 { USB_DEVICE(USB_VID_DVICO, USB_PID_DIGITALNOW_BLUEBIRD_DUAL_1_COLD) },
521 { USB_DEVICE(USB_VID_DVICO, USB_PID_DIGITALNOW_BLUEBIRD_DUAL_1_WARM) },
522 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_DUAL_2_COLD) },
523 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_DUAL_2_WARM) },
524 {} /* Terminating entry */
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700525};
526MODULE_DEVICE_TABLE (usb, cxusb_table);
527
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300528static struct dvb_usb_device_properties cxusb_medion_properties = {
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700529 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
530
531 .usb_ctrl = CYPRESS_FX2,
532
533 .size_of_priv = sizeof(struct cxusb_state),
534
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300535 .num_adapters = 1,
536 .adapter = {
537 {
Patrick Boettcher01451e72006-10-13 11:34:46 -0300538 .streaming_ctrl = cxusb_streaming_ctrl,
539 .frontend_attach = cxusb_cx22702_frontend_attach,
540 .tuner_attach = cxusb_fmd1216me_tuner_attach,
541 /* parameter for the MPEG2-data transfer */
542 .stream = {
543 .type = USB_BULK,
544 .count = 5,
545 .endpoint = 0x02,
546 .u = {
547 .bulk = {
548 .buffersize = 8192,
549 }
550 }
551 },
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700552
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300553 },
554 },
555 .power_ctrl = cxusb_power_ctrl,
556
557 .i2c_algo = &cxusb_i2c_algo,
558
559 .generic_bulk_ctrl_endpoint = 0x01,
560
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700561 .num_device_descs = 1,
562 .devices = {
563 { "Medion MD95700 (MDUSBTV-HYBRID)",
564 { NULL },
565 { &cxusb_table[0], NULL },
566 },
567 }
568};
569
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300570static struct dvb_usb_device_properties cxusb_bluebird_lgh064f_properties = {
Michael Krufkyeffee032006-01-09 15:25:47 -0200571 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
572
Patrick Boettcherf5373782006-01-09 18:21:38 -0200573 .usb_ctrl = DEVICE_SPECIFIC,
574 .firmware = "dvb-usb-bluebird-01.fw",
575 .download_firmware = bluebird_patch_dvico_firmware_download,
Michael Krufky37bdfa02006-01-09 15:25:47 -0200576 /* use usb alt setting 0 for EP4 transfer (dvb-t),
577 use usb alt setting 7 for EP2 transfer (atsc) */
Michael Krufkyeffee032006-01-09 15:25:47 -0200578
579 .size_of_priv = sizeof(struct cxusb_state),
580
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300581 .num_adapters = 1,
582 .adapter = {
583 {
Patrick Boettcher01451e72006-10-13 11:34:46 -0300584 .streaming_ctrl = cxusb_streaming_ctrl,
585 .frontend_attach = cxusb_lgdt3303_frontend_attach,
Michael Krufkyf71a56c2006-10-13 21:55:57 -0300586 .tuner_attach = cxusb_lgh064f_tuner_attach,
Michael Krufkyeffee032006-01-09 15:25:47 -0200587
Patrick Boettcher01451e72006-10-13 11:34:46 -0300588 /* parameter for the MPEG2-data transfer */
589 .stream = {
590 .type = USB_BULK,
591 .count = 5,
592 .endpoint = 0x02,
593 .u = {
594 .bulk = {
595 .buffersize = 8192,
596 }
597 }
598 },
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300599 },
600 },
601
602 .power_ctrl = cxusb_bluebird_power_ctrl,
603
Michael Krufkyeffee032006-01-09 15:25:47 -0200604 .i2c_algo = &cxusb_i2c_algo,
605
Michael Krufkyc1501782006-03-26 05:43:36 -0300606 .rc_interval = 100,
607 .rc_key_map = dvico_portable_rc_keys,
608 .rc_key_map_size = ARRAY_SIZE(dvico_portable_rc_keys),
609 .rc_query = cxusb_rc_query,
610
Michael Krufkyeffee032006-01-09 15:25:47 -0200611 .generic_bulk_ctrl_endpoint = 0x01,
Michael Krufkyeffee032006-01-09 15:25:47 -0200612
613 .num_device_descs = 1,
614 .devices = {
615 { "DViCO FusionHDTV5 USB Gold",
616 { &cxusb_table[1], NULL },
617 { &cxusb_table[2], NULL },
618 },
619 }
620};
621
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300622static struct dvb_usb_device_properties cxusb_bluebird_dee1601_properties = {
Chris Pascoe0029ee12006-01-09 18:21:28 -0200623 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
624
Patrick Boettcherf5373782006-01-09 18:21:38 -0200625 .usb_ctrl = DEVICE_SPECIFIC,
626 .firmware = "dvb-usb-bluebird-01.fw",
627 .download_firmware = bluebird_patch_dvico_firmware_download,
Chris Pascoe0029ee12006-01-09 18:21:28 -0200628 /* use usb alt setting 0 for EP4 transfer (dvb-t),
629 use usb alt setting 7 for EP2 transfer (atsc) */
630
631 .size_of_priv = sizeof(struct cxusb_state),
632
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300633 .num_adapters = 1,
634 .adapter = {
635 {
Patrick Boettcher01451e72006-10-13 11:34:46 -0300636 .streaming_ctrl = cxusb_streaming_ctrl,
637 .frontend_attach = cxusb_dee1601_frontend_attach,
638 .tuner_attach = cxusb_dee1601_tuner_attach,
639 /* parameter for the MPEG2-data transfer */
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300640 .stream = {
641 .type = USB_BULK,
Patrick Boettcher01451e72006-10-13 11:34:46 -0300642 .count = 5,
643 .endpoint = 0x04,
644 .u = {
645 .bulk = {
646 .buffersize = 8192,
647 }
648 }
649 },
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300650 },
651 },
652
653 .power_ctrl = cxusb_bluebird_power_ctrl,
Chris Pascoe0029ee12006-01-09 18:21:28 -0200654
655 .i2c_algo = &cxusb_i2c_algo,
656
Chris Pascoe7c239702006-01-09 18:21:29 -0200657 .rc_interval = 150,
658 .rc_key_map = dvico_mce_rc_keys,
659 .rc_key_map_size = ARRAY_SIZE(dvico_mce_rc_keys),
660 .rc_query = cxusb_rc_query,
661
Chris Pascoe0029ee12006-01-09 18:21:28 -0200662 .generic_bulk_ctrl_endpoint = 0x01,
Chris Pascoe0029ee12006-01-09 18:21:28 -0200663
Michael Krufky587c03d2006-09-28 02:16:01 -0300664 .num_device_descs = 3,
Chris Pascoe0029ee12006-01-09 18:21:28 -0200665 .devices = {
666 { "DViCO FusionHDTV DVB-T Dual USB",
667 { &cxusb_table[3], NULL },
668 { &cxusb_table[4], NULL },
669 },
Michael Krufkyac9ffb92006-01-11 23:21:00 -0200670 { "DigitalNow DVB-T Dual USB",
671 { &cxusb_table[9], NULL },
672 { &cxusb_table[10], NULL },
673 },
Michael Krufky587c03d2006-09-28 02:16:01 -0300674 { "DViCO FusionHDTV DVB-T Dual Digital 2",
675 { &cxusb_table[11], NULL },
676 { &cxusb_table[12], NULL },
677 },
Chris Pascoe0029ee12006-01-09 18:21:28 -0200678 }
679};
680
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300681static struct dvb_usb_device_properties cxusb_bluebird_lgz201_properties = {
Michael Krufky6f447252006-01-11 19:40:33 -0200682 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
683
684 .usb_ctrl = DEVICE_SPECIFIC,
685 .firmware = "dvb-usb-bluebird-01.fw",
686 .download_firmware = bluebird_patch_dvico_firmware_download,
687 /* use usb alt setting 0 for EP4 transfer (dvb-t),
688 use usb alt setting 7 for EP2 transfer (atsc) */
689
690 .size_of_priv = sizeof(struct cxusb_state),
691
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300692 .num_adapters = 2,
693 .adapter = {
694 {
Patrick Boettcher01451e72006-10-13 11:34:46 -0300695 .streaming_ctrl = cxusb_streaming_ctrl,
696 .frontend_attach = cxusb_mt352_frontend_attach,
697 .tuner_attach = cxusb_lgz201_tuner_attach,
Michael Krufky6f447252006-01-11 19:40:33 -0200698
Patrick Boettcher01451e72006-10-13 11:34:46 -0300699 /* parameter for the MPEG2-data transfer */
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300700 .stream = {
701 .type = USB_BULK,
Patrick Boettcher01451e72006-10-13 11:34:46 -0300702 .count = 5,
703 .endpoint = 0x04,
704 .u = {
705 .bulk = {
706 .buffersize = 8192,
707 }
708 }
709 },
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300710 },
711 },
712 .power_ctrl = cxusb_bluebird_power_ctrl,
713
Michael Krufky6f447252006-01-11 19:40:33 -0200714 .i2c_algo = &cxusb_i2c_algo,
715
Michael Krufkyc1501782006-03-26 05:43:36 -0300716 .rc_interval = 100,
717 .rc_key_map = dvico_portable_rc_keys,
718 .rc_key_map_size = ARRAY_SIZE(dvico_portable_rc_keys),
719 .rc_query = cxusb_rc_query,
720
Michael Krufky6f447252006-01-11 19:40:33 -0200721 .generic_bulk_ctrl_endpoint = 0x01,
Michael Krufky6f447252006-01-11 19:40:33 -0200722 .num_device_descs = 1,
723 .devices = {
724 { "DViCO FusionHDTV DVB-T USB (LGZ201)",
725 { &cxusb_table[5], NULL },
726 { &cxusb_table[6], NULL },
727 },
728 }
729};
730
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300731static struct dvb_usb_device_properties cxusb_bluebird_dtt7579_properties = {
Michael Krufky6f447252006-01-11 19:40:33 -0200732 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
733
734 .usb_ctrl = DEVICE_SPECIFIC,
735 .firmware = "dvb-usb-bluebird-01.fw",
736 .download_firmware = bluebird_patch_dvico_firmware_download,
737 /* use usb alt setting 0 for EP4 transfer (dvb-t),
738 use usb alt setting 7 for EP2 transfer (atsc) */
739
740 .size_of_priv = sizeof(struct cxusb_state),
741
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300742 .num_adapters = 1,
743 .adapter = {
744 {
Patrick Boettcher01451e72006-10-13 11:34:46 -0300745 .streaming_ctrl = cxusb_streaming_ctrl,
746 .frontend_attach = cxusb_mt352_frontend_attach,
747 .tuner_attach = cxusb_dtt7579_tuner_attach,
Michael Krufky6f447252006-01-11 19:40:33 -0200748
Patrick Boettcher01451e72006-10-13 11:34:46 -0300749 /* parameter for the MPEG2-data transfer */
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300750 .stream = {
751 .type = USB_BULK,
Patrick Boettcher01451e72006-10-13 11:34:46 -0300752 .count = 5,
753 .endpoint = 0x04,
754 .u = {
755 .bulk = {
756 .buffersize = 8192,
757 }
758 }
759 },
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300760 },
761 },
762 .power_ctrl = cxusb_bluebird_power_ctrl,
763
Michael Krufky6f447252006-01-11 19:40:33 -0200764 .i2c_algo = &cxusb_i2c_algo,
765
Michael Krufkyc1501782006-03-26 05:43:36 -0300766 .rc_interval = 100,
767 .rc_key_map = dvico_portable_rc_keys,
768 .rc_key_map_size = ARRAY_SIZE(dvico_portable_rc_keys),
769 .rc_query = cxusb_rc_query,
770
Michael Krufky6f447252006-01-11 19:40:33 -0200771 .generic_bulk_ctrl_endpoint = 0x01,
Michael Krufky6f447252006-01-11 19:40:33 -0200772
773 .num_device_descs = 1,
774 .devices = {
775 { "DViCO FusionHDTV DVB-T USB (TH7579)",
776 { &cxusb_table[7], NULL },
777 { &cxusb_table[8], NULL },
778 },
779 }
780};
781
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700782static struct usb_driver cxusb_driver = {
Patrick Boettcher63b5c1c2005-07-07 17:58:30 -0700783 .name = "dvb_usb_cxusb",
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700784 .probe = cxusb_probe,
Michael Krufkyf35db232006-12-05 14:53:39 -0300785 .disconnect = dvb_usb_device_exit,
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700786 .id_table = cxusb_table,
787};
788
789/* module stuff */
790static int __init cxusb_module_init(void)
791{
792 int result;
793 if ((result = usb_register(&cxusb_driver))) {
794 err("usb_register failed. Error number %d",result);
795 return result;
796 }
797
798 return 0;
799}
800
801static void __exit cxusb_module_exit(void)
802{
803 /* deregister this driver from the USB subsystem */
804 usb_deregister(&cxusb_driver);
805}
806
807module_init (cxusb_module_init);
808module_exit (cxusb_module_exit);
809
810MODULE_AUTHOR("Patrick Boettcher <patrick.boettcher@desy.de>");
Michael Krufky5b9ed282006-10-15 14:51:08 -0300811MODULE_AUTHOR("Michael Krufky <mkrufky@linuxtv.org>");
Michael Krufkyf4efb4d2006-01-13 14:10:25 -0200812MODULE_AUTHOR("Chris Pascoe <c.pascoe@itee.uq.edu.au>");
Patrick Boettcher22c6d932005-07-07 17:58:10 -0700813MODULE_DESCRIPTION("Driver for Conexant USB2.0 hybrid reference design");
814MODULE_VERSION("1.0-alpha");
815MODULE_LICENSE("GPL");