Merge branch 'upstream-davem' of master.kernel.org:/pub/scm/linux/kernel/git/linville...
[GitHub/MotorolaMobilityLLC/kernel-slsi.git] / drivers / media / dvb / dvb-usb / cxusb.c
CommitLineData
22c6d93a
PB
1/* DVB USB compliant linux driver for Conexant USB reference design.
2 *
3 * The Conexant reference design I saw on their website was only for analogue
4 * capturing (using the cx25842). The box I took to write this driver (reverse
5 * engineered) is the one labeled Medion MD95700. In addition to the cx25842
6 * for analogue capturing it also has a cx22702 DVB-T demodulator on the main
7 * board. Besides it has a atiremote (X10) and a USB2.0 hub onboard.
8 *
9 * Maybe it is a little bit premature to call this driver cxusb, but I assume
10 * the USB protocol is identical or at least inherited from the reference
11 * design, so it can be reused for the "analogue-only" device (if it will
12 * appear at all).
13 *
81481e9e 14 * TODO: Use the cx25840-driver for the analogue part
22c6d93a 15 *
22c6d93a 16 * Copyright (C) 2005 Patrick Boettcher (patrick.boettcher@desy.de)
5b9ed286 17 * Copyright (C) 2006 Michael Krufky (mkrufky@linuxtv.org)
7c239703 18 * Copyright (C) 2006 Chris Pascoe (c.pascoe@itee.uq.edu.au)
22c6d93a 19 *
f35db23c
MK
20 * This program is free software; you can redistribute it and/or modify it
21 * under the terms of the GNU General Public License as published by the Free
22 * Software Foundation, version 2.
22c6d93a
PB
23 *
24 * see Documentation/dvb/README.dvb-usb for more information
25 */
26#include "cxusb.h"
27
28#include "cx22702.h"
effee033 29#include "lgdt330x.h"
0029ee14
CP
30#include "mt352.h"
31#include "mt352_priv.h"
c9ce3940 32#include "zl10353.h"
22c6d93a
PB
33
34/* debug */
35int dvb_usb_cxusb_debug;
f35db23c 36module_param_named(debug, dvb_usb_cxusb_debug, int, 0644);
22c6d93a
PB
37MODULE_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,
f35db23c 40 u8 cmd, u8 *wbuf, int wlen, u8 *rbuf, int rlen)
22c6d93a
PB
41{
42 int wo = (rbuf == NULL || rlen == 0); /* write-only */
43 u8 sndbuf[1+wlen];
f35db23c 44 memset(sndbuf, 0, 1+wlen);
22c6d93a
PB
45
46 sndbuf[0] = cmd;
f35db23c 47 memcpy(&sndbuf[1], wbuf, wlen);
22c6d93a 48 if (wo)
f35db23c 49 dvb_usb_generic_write(d, sndbuf, 1+wlen);
22c6d93a 50 else
f35db23c 51 dvb_usb_generic_rw(d, sndbuf, 1+wlen, rbuf, rlen, 0);
22c6d93a
PB
52
53 return 0;
54}
55
e2efeab2
PB
56/* GPIO */
57static void cxusb_gpio_tuner(struct dvb_usb_device *d, int onoff)
22c6d93a
PB
58{
59 struct cxusb_state *st = d->priv;
f35db23c 60 u8 o[2], i;
22c6d93a 61
e2efeab2 62 if (st->gpio_write_state[GPIO_TUNER] == onoff)
22c6d93a
PB
63 return;
64
e2efeab2
PB
65 o[0] = GPIO_TUNER;
66 o[1] = onoff;
f35db23c 67 cxusb_ctrl_msg(d, CMD_GPIO_WRITE, o, 2, &i, 1);
22c6d93a
PB
68
69 if (i != 0x01)
e2efeab2 70 deb_info("gpio_write failed.\n");
22c6d93a 71
e2efeab2 72 st->gpio_write_state[GPIO_TUNER] = onoff;
22c6d93a
PB
73}
74
e2efeab2 75/* I2C */
f35db23c
MK
76static int cxusb_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msg[],
77 int num)
22c6d93a
PB
78{
79 struct dvb_usb_device *d = i2c_get_adapdata(adap);
80 int i;
81
3593cab5 82 if (mutex_lock_interruptible(&d->i2c_mutex) < 0)
22c6d93a
PB
83 return -EAGAIN;
84
85 if (num > 2)
4d6e772d 86 warn("more than two i2c messages at a time is not handled yet. TODO.");
22c6d93a
PB
87
88 for (i = 0; i < num; i++) {
89
5e805eff
MK
90 if (d->udev->descriptor.idVendor == USB_VID_MEDION)
91 switch (msg[i].addr) {
f35db23c
MK
92 case 0x63:
93 cxusb_gpio_tuner(d, 0);
94 break;
95 default:
96 cxusb_gpio_tuner(d, 1);
97 break;
5e805eff 98 }
22c6d93a
PB
99
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;
f35db23c 106 memcpy(&obuf[3], msg[i].buf, msg[i].len);
22c6d93a
PB
107
108 if (cxusb_ctrl_msg(d, CMD_I2C_READ,
f35db23c
MK
109 obuf, 3+msg[i].len,
110 ibuf, 1+msg[i+1].len) < 0)
22c6d93a
PB
111 break;
112
113 if (ibuf[0] != 0x08)
ae62e3d4 114 deb_i2c("i2c read may have failed\n");
22c6d93a 115
f35db23c 116 memcpy(msg[i+1].buf, &ibuf[1], msg[i+1].len);
22c6d93a
PB
117
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;
f35db23c 123 memcpy(&obuf[2], msg[i].buf, msg[i].len);
22c6d93a 124
f35db23c
MK
125 if (cxusb_ctrl_msg(d, CMD_I2C_WRITE, obuf,
126 2+msg[i].len, &ibuf,1) < 0)
22c6d93a
PB
127 break;
128 if (ibuf != 0x08)
ae62e3d4 129 deb_i2c("i2c write may have failed\n");
22c6d93a
PB
130 }
131 }
132
3593cab5 133 mutex_unlock(&d->i2c_mutex);
22c6d93a
PB
134 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 = {
22c6d93a
PB
143 .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{
e2efeab2
PB
149 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);
22c6d93a
PB
154}
155
5691c847
MK
156static 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
4d43e13f 165static int cxusb_streaming_ctrl(struct dvb_usb_adapter *adap, int onoff)
22c6d93a 166{
8257e8a4
PB
167 u8 buf[2] = { 0x03, 0x00 };
168 if (onoff)
4d43e13f 169 cxusb_ctrl_msg(adap->dev, CMD_STREAMING_ON, buf, 2, NULL, 0);
8257e8a4 170 else
4d43e13f 171 cxusb_ctrl_msg(adap->dev, CMD_STREAMING_OFF, NULL, 0, NULL, 0);
8257e8a4 172
22c6d93a
PB
173 return 0;
174}
175
7c239703
CP
176static 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;
a07e6096 179 u8 ircode[4];
7c239703
CP
180 int i;
181
a07e6096 182 cxusb_ctrl_msg(d, CMD_GET_IR_CODE, NULL, 0, ircode, 4);
7c239703
CP
183
184 *event = 0;
185 *state = REMOTE_NO_KEY_PRESSED;
186
187 for (i = 0; i < d->props.rc_key_map_size; i++) {
a07e6096
MK
188 if (keymap[i].custom == ircode[2] &&
189 keymap[i].data == ircode[3]) {
7c239703
CP
190 *event = keymap[i].event;
191 *state = REMOTE_KEY_PRESSED;
192
193 return 0;
194 }
195 }
196
197 return 0;
198}
199
703cb2cb 200static struct dvb_usb_rc_key dvico_mce_rc_keys[] = {
a07e6096
MK
201 { 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
c150178b
MK
248static 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 },
dbcb86ed 261 { 0xfc, 0x16, KEY_CAMERA },
c150178b
MK
262 { 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
0029ee14
CP
287static int cxusb_dee1601_demod_init(struct dvb_frontend* fe)
288{
d9ed881c 289 static u8 clock_config [] = { CLOCK_CTL, 0x38, 0x28 };
0029ee14
CP
290 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
6f447259
MK
308static int cxusb_mt352_demod_init(struct dvb_frontend* fe)
309{ /* used in both lgz201 and th7579 */
fb51fd2d 310 static u8 clock_config [] = { CLOCK_CTL, 0x38, 0x29 };
6f447259
MK
311 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
703cb2cb 328static struct cx22702_config cxusb_cx22702_config = {
22c6d93a 329 .demod_address = 0x63,
8257e8a4 330 .output_mode = CX22702_PARALLEL_OUTPUT,
22c6d93a
PB
331};
332
fddd632a 333static struct lgdt330x_config cxusb_lgdt3303_config = {
effee033
MK
334 .demod_address = 0x0e,
335 .demod_chip = LGDT3303,
effee033
MK
336};
337
703cb2cb 338static struct mt352_config cxusb_dee1601_config = {
0029ee14
CP
339 .demod_address = 0x0f,
340 .demod_init = cxusb_dee1601_demod_init,
0029ee14
CP
341};
342
c9ce3940
MK
343static struct zl10353_config cxusb_zl10353_dee1601_config = {
344 .demod_address = 0x0f,
8fb95784 345 .parallel_ts = 1,
c9ce3940
MK
346};
347
6fe00b0e 348static struct mt352_config cxusb_mt352_config = {
6f447259
MK
349 /* used in both lgz201 and th7579 */
350 .demod_address = 0x0f,
351 .demod_init = cxusb_mt352_demod_init,
6f447259
MK
352};
353
22c6d93a 354/* Callbacks for DVB USB */
4d43e13f 355static int cxusb_fmd1216me_tuner_attach(struct dvb_usb_adapter *adap)
22c6d93a 356{
b7754d74 357 dvb_attach(dvb_pll_attach, adap->fe, 0x61, &adap->dev->i2c_adap,
47a9991e 358 DVB_PLL_FMD1216ME);
22c6d93a
PB
359 return 0;
360}
361
4d43e13f 362static int cxusb_dee1601_tuner_attach(struct dvb_usb_adapter *adap)
0029ee14 363{
79a54cbd 364 dvb_attach(dvb_pll_attach, adap->fe, 0x61,
47a9991e 365 NULL, DVB_PLL_THOMSON_DTT7579);
0029ee14
CP
366 return 0;
367}
368
4d43e13f 369static int cxusb_lgz201_tuner_attach(struct dvb_usb_adapter *adap)
6f447259 370{
47a9991e 371 dvb_attach(dvb_pll_attach, adap->fe, 0x61, NULL, DVB_PLL_LG_Z201);
6f447259
MK
372 return 0;
373}
374
4d43e13f 375static int cxusb_dtt7579_tuner_attach(struct dvb_usb_adapter *adap)
6f447259 376{
79a54cbd 377 dvb_attach(dvb_pll_attach, adap->fe, 0x60,
47a9991e 378 NULL, DVB_PLL_THOMSON_DTT7579);
332bed5f
PB
379 return 0;
380}
381
f71a56c1 382static int cxusb_lgh064f_tuner_attach(struct dvb_usb_adapter *adap)
332bed5f 383{
6bdcc6e6 384 dvb_attach(dvb_pll_attach, adap->fe, 0x61, &adap->dev->i2c_adap,
47a9991e 385 DVB_PLL_LG_TDVS_H06XF);
6f447259
MK
386 return 0;
387}
388
4d43e13f 389static int cxusb_cx22702_frontend_attach(struct dvb_usb_adapter *adap)
22c6d93a 390{
e2efeab2 391 u8 b;
4d43e13f 392 if (usb_set_interface(adap->dev->udev, 0, 6) < 0)
8257e8a4 393 err("set interface failed");
22c6d93a 394
4d43e13f 395 cxusb_ctrl_msg(adap->dev, CMD_DIGITAL, NULL, 0, &b, 1);
22c6d93a 396
f35db23c
MK
397 if ((adap->fe = dvb_attach(cx22702_attach, &cxusb_cx22702_config,
398 &adap->dev->i2c_adap)) != NULL)
22c6d93a
PB
399 return 0;
400
401 return -EIO;
402}
403
4d43e13f 404static int cxusb_lgdt3303_frontend_attach(struct dvb_usb_adapter *adap)
effee033 405{
4d43e13f 406 if (usb_set_interface(adap->dev->udev, 0, 7) < 0)
effee033
MK
407 err("set interface failed");
408
4d43e13f 409 cxusb_ctrl_msg(adap->dev, CMD_DIGITAL, NULL, 0, NULL, 0);
effee033 410
f35db23c
MK
411 if ((adap->fe = dvb_attach(lgdt330x_attach, &cxusb_lgdt3303_config,
412 &adap->dev->i2c_adap)) != NULL)
effee033
MK
413 return 0;
414
415 return -EIO;
416}
417
4d43e13f
PB
418static int cxusb_mt352_frontend_attach(struct dvb_usb_adapter *adap)
419{
420 /* used in both lgz201 and th7579 */
421 if (usb_set_interface(adap->dev->udev, 0, 0) < 0)
6f447259
MK
422 err("set interface failed");
423
4d43e13f 424 cxusb_ctrl_msg(adap->dev, CMD_DIGITAL, NULL, 0, NULL, 0);
6f447259 425
f35db23c
MK
426 if ((adap->fe = dvb_attach(mt352_attach, &cxusb_mt352_config,
427 &adap->dev->i2c_adap)) != NULL)
6f447259
MK
428 return 0;
429
430 return -EIO;
431}
432
4d43e13f 433static int cxusb_dee1601_frontend_attach(struct dvb_usb_adapter *adap)
0029ee14 434{
4d43e13f 435 if (usb_set_interface(adap->dev->udev, 0, 0) < 0)
0029ee14
CP
436 err("set interface failed");
437
4d43e13f 438 cxusb_ctrl_msg(adap->dev, CMD_DIGITAL, NULL, 0, NULL, 0);
0029ee14 439
f35db23c
MK
440 if (((adap->fe = dvb_attach(mt352_attach, &cxusb_dee1601_config,
441 &adap->dev->i2c_adap)) != NULL) ||
442 ((adap->fe = dvb_attach(zl10353_attach,
443 &cxusb_zl10353_dee1601_config,
444 &adap->dev->i2c_adap)) != NULL))
0029ee14
CP
445 return 0;
446
447 return -EIO;
448}
449
f5373788
PB
450/*
451 * DViCO bluebird firmware needs the "warm" product ID to be patched into the
452 * firmware file before download.
453 */
454
455#define BLUEBIRD_01_ID_OFFSET 6638
f35db23c
MK
456static int bluebird_patch_dvico_firmware_download(struct usb_device *udev,
457 const struct firmware *fw)
f5373788
PB
458{
459 if (fw->size < BLUEBIRD_01_ID_OFFSET + 4)
460 return -EINVAL;
461
462 if (fw->data[BLUEBIRD_01_ID_OFFSET] == (USB_VID_DVICO & 0xff) &&
463 fw->data[BLUEBIRD_01_ID_OFFSET + 1] == USB_VID_DVICO >> 8) {
464
f35db23c 465 fw->data[BLUEBIRD_01_ID_OFFSET + 2] =
1d1370a4 466 le16_to_cpu(udev->descriptor.idProduct) + 1;
f35db23c 467 fw->data[BLUEBIRD_01_ID_OFFSET + 3] =
1d1370a4 468 le16_to_cpu(udev->descriptor.idProduct) >> 8;
f5373788 469
f35db23c 470 return usb_cypress_load_firmware(udev, fw, CYPRESS_FX2);
f5373788
PB
471 }
472
473 return -EINVAL;
474}
475
22c6d93a 476/* DVB USB Driver stuff */
4d43e13f
PB
477static struct dvb_usb_device_properties cxusb_medion_properties;
478static struct dvb_usb_device_properties cxusb_bluebird_lgh064f_properties;
479static struct dvb_usb_device_properties cxusb_bluebird_dee1601_properties;
480static struct dvb_usb_device_properties cxusb_bluebird_lgz201_properties;
481static struct dvb_usb_device_properties cxusb_bluebird_dtt7579_properties;
22c6d93a
PB
482
483static int cxusb_probe(struct usb_interface *intf,
f35db23c 484 const struct usb_device_id *id)
22c6d93a 485{
effee033 486 if (dvb_usb_device_init(intf,&cxusb_medion_properties,THIS_MODULE,NULL) == 0 ||
0029ee14 487 dvb_usb_device_init(intf,&cxusb_bluebird_lgh064f_properties,THIS_MODULE,NULL) == 0 ||
6f447259
MK
488 dvb_usb_device_init(intf,&cxusb_bluebird_dee1601_properties,THIS_MODULE,NULL) == 0 ||
489 dvb_usb_device_init(intf,&cxusb_bluebird_lgz201_properties,THIS_MODULE,NULL) == 0 ||
490 dvb_usb_device_init(intf,&cxusb_bluebird_dtt7579_properties,THIS_MODULE,NULL) == 0) {
effee033
MK
491 return 0;
492 }
493
494 return -EINVAL;
22c6d93a
PB
495}
496
497static struct usb_device_id cxusb_table [] = {
f35db23c
MK
498 { USB_DEVICE(USB_VID_MEDION, USB_PID_MEDION_MD95700) },
499 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LG064F_COLD) },
500 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LG064F_WARM) },
501 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_DUAL_1_COLD) },
502 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_DUAL_1_WARM) },
503 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LGZ201_COLD) },
504 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LGZ201_WARM) },
505 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_TH7579_COLD) },
506 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_TH7579_WARM) },
507 { USB_DEVICE(USB_VID_DVICO, USB_PID_DIGITALNOW_BLUEBIRD_DUAL_1_COLD) },
508 { USB_DEVICE(USB_VID_DVICO, USB_PID_DIGITALNOW_BLUEBIRD_DUAL_1_WARM) },
509 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_DUAL_2_COLD) },
510 { USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_DUAL_2_WARM) },
511 {} /* Terminating entry */
22c6d93a
PB
512};
513MODULE_DEVICE_TABLE (usb, cxusb_table);
514
4d43e13f 515static struct dvb_usb_device_properties cxusb_medion_properties = {
22c6d93a
PB
516 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
517
518 .usb_ctrl = CYPRESS_FX2,
519
520 .size_of_priv = sizeof(struct cxusb_state),
521
4d43e13f
PB
522 .num_adapters = 1,
523 .adapter = {
524 {
01451e72
PB
525 .streaming_ctrl = cxusb_streaming_ctrl,
526 .frontend_attach = cxusb_cx22702_frontend_attach,
527 .tuner_attach = cxusb_fmd1216me_tuner_attach,
528 /* parameter for the MPEG2-data transfer */
529 .stream = {
530 .type = USB_BULK,
531 .count = 5,
532 .endpoint = 0x02,
533 .u = {
534 .bulk = {
535 .buffersize = 8192,
536 }
537 }
538 },
22c6d93a 539
4d43e13f
PB
540 },
541 },
542 .power_ctrl = cxusb_power_ctrl,
543
544 .i2c_algo = &cxusb_i2c_algo,
545
546 .generic_bulk_ctrl_endpoint = 0x01,
547
22c6d93a
PB
548 .num_device_descs = 1,
549 .devices = {
550 { "Medion MD95700 (MDUSBTV-HYBRID)",
551 { NULL },
552 { &cxusb_table[0], NULL },
553 },
554 }
555};
556
4d43e13f 557static struct dvb_usb_device_properties cxusb_bluebird_lgh064f_properties = {
effee033
MK
558 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
559
f5373788
PB
560 .usb_ctrl = DEVICE_SPECIFIC,
561 .firmware = "dvb-usb-bluebird-01.fw",
562 .download_firmware = bluebird_patch_dvico_firmware_download,
37bdfa06
MK
563 /* use usb alt setting 0 for EP4 transfer (dvb-t),
564 use usb alt setting 7 for EP2 transfer (atsc) */
effee033
MK
565
566 .size_of_priv = sizeof(struct cxusb_state),
567
4d43e13f
PB
568 .num_adapters = 1,
569 .adapter = {
570 {
01451e72
PB
571 .streaming_ctrl = cxusb_streaming_ctrl,
572 .frontend_attach = cxusb_lgdt3303_frontend_attach,
f71a56c1 573 .tuner_attach = cxusb_lgh064f_tuner_attach,
01451e72
PB
574
575 /* parameter for the MPEG2-data transfer */
576 .stream = {
577 .type = USB_BULK,
578 .count = 5,
579 .endpoint = 0x02,
580 .u = {
581 .bulk = {
582 .buffersize = 8192,
583 }
584 }
585 },
4d43e13f
PB
586 },
587 },
588
589 .power_ctrl = cxusb_bluebird_power_ctrl,
590
591 .i2c_algo = &cxusb_i2c_algo,
592
593 .rc_interval = 100,
594 .rc_key_map = dvico_portable_rc_keys,
595 .rc_key_map_size = ARRAY_SIZE(dvico_portable_rc_keys),
596 .rc_query = cxusb_rc_query,
597
598 .generic_bulk_ctrl_endpoint = 0x01,
effee033
MK
599
600 .num_device_descs = 1,
601 .devices = {
602 { "DViCO FusionHDTV5 USB Gold",
603 { &cxusb_table[1], NULL },
604 { &cxusb_table[2], NULL },
605 },
606 }
607};
608
4d43e13f 609static struct dvb_usb_device_properties cxusb_bluebird_dee1601_properties = {
0029ee14
CP
610 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
611
f5373788
PB
612 .usb_ctrl = DEVICE_SPECIFIC,
613 .firmware = "dvb-usb-bluebird-01.fw",
614 .download_firmware = bluebird_patch_dvico_firmware_download,
0029ee14
CP
615 /* use usb alt setting 0 for EP4 transfer (dvb-t),
616 use usb alt setting 7 for EP2 transfer (atsc) */
617
618 .size_of_priv = sizeof(struct cxusb_state),
619
4d43e13f
PB
620 .num_adapters = 1,
621 .adapter = {
622 {
01451e72
PB
623 .streaming_ctrl = cxusb_streaming_ctrl,
624 .frontend_attach = cxusb_dee1601_frontend_attach,
625 .tuner_attach = cxusb_dee1601_tuner_attach,
626 /* parameter for the MPEG2-data transfer */
4d43e13f
PB
627 .stream = {
628 .type = USB_BULK,
01451e72
PB
629 .count = 5,
630 .endpoint = 0x04,
631 .u = {
632 .bulk = {
633 .buffersize = 8192,
634 }
635 }
636 },
4d43e13f
PB
637 },
638 },
639
640 .power_ctrl = cxusb_bluebird_power_ctrl,
641
642 .i2c_algo = &cxusb_i2c_algo,
643
644 .rc_interval = 150,
645 .rc_key_map = dvico_mce_rc_keys,
646 .rc_key_map_size = ARRAY_SIZE(dvico_mce_rc_keys),
647 .rc_query = cxusb_rc_query,
648
649 .generic_bulk_ctrl_endpoint = 0x01,
0029ee14 650
587c03d1 651 .num_device_descs = 3,
0029ee14
CP
652 .devices = {
653 { "DViCO FusionHDTV DVB-T Dual USB",
654 { &cxusb_table[3], NULL },
655 { &cxusb_table[4], NULL },
656 },
ac9ffb90
MK
657 { "DigitalNow DVB-T Dual USB",
658 { &cxusb_table[9], NULL },
659 { &cxusb_table[10], NULL },
660 },
587c03d1
MK
661 { "DViCO FusionHDTV DVB-T Dual Digital 2",
662 { &cxusb_table[11], NULL },
663 { &cxusb_table[12], NULL },
664 },
0029ee14
CP
665 }
666};
667
4d43e13f 668static struct dvb_usb_device_properties cxusb_bluebird_lgz201_properties = {
6f447259
MK
669 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
670
671 .usb_ctrl = DEVICE_SPECIFIC,
672 .firmware = "dvb-usb-bluebird-01.fw",
673 .download_firmware = bluebird_patch_dvico_firmware_download,
674 /* use usb alt setting 0 for EP4 transfer (dvb-t),
675 use usb alt setting 7 for EP2 transfer (atsc) */
676
677 .size_of_priv = sizeof(struct cxusb_state),
678
4d43e13f
PB
679 .num_adapters = 2,
680 .adapter = {
681 {
01451e72
PB
682 .streaming_ctrl = cxusb_streaming_ctrl,
683 .frontend_attach = cxusb_mt352_frontend_attach,
684 .tuner_attach = cxusb_lgz201_tuner_attach,
6f447259 685
01451e72 686 /* parameter for the MPEG2-data transfer */
4d43e13f
PB
687 .stream = {
688 .type = USB_BULK,
01451e72
PB
689 .count = 5,
690 .endpoint = 0x04,
691 .u = {
692 .bulk = {
693 .buffersize = 8192,
694 }
695 }
696 },
4d43e13f
PB
697 },
698 },
699 .power_ctrl = cxusb_bluebird_power_ctrl,
700
701 .i2c_algo = &cxusb_i2c_algo,
6f447259 702
4d43e13f
PB
703 .rc_interval = 100,
704 .rc_key_map = dvico_portable_rc_keys,
705 .rc_key_map_size = ARRAY_SIZE(dvico_portable_rc_keys),
706 .rc_query = cxusb_rc_query,
707
708 .generic_bulk_ctrl_endpoint = 0x01,
6f447259
MK
709 .num_device_descs = 1,
710 .devices = {
711 { "DViCO FusionHDTV DVB-T USB (LGZ201)",
712 { &cxusb_table[5], NULL },
713 { &cxusb_table[6], NULL },
714 },
715 }
716};
717
4d43e13f 718static struct dvb_usb_device_properties cxusb_bluebird_dtt7579_properties = {
6f447259
MK
719 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
720
721 .usb_ctrl = DEVICE_SPECIFIC,
722 .firmware = "dvb-usb-bluebird-01.fw",
723 .download_firmware = bluebird_patch_dvico_firmware_download,
724 /* use usb alt setting 0 for EP4 transfer (dvb-t),
725 use usb alt setting 7 for EP2 transfer (atsc) */
726
727 .size_of_priv = sizeof(struct cxusb_state),
728
4d43e13f
PB
729 .num_adapters = 1,
730 .adapter = {
731 {
01451e72
PB
732 .streaming_ctrl = cxusb_streaming_ctrl,
733 .frontend_attach = cxusb_mt352_frontend_attach,
734 .tuner_attach = cxusb_dtt7579_tuner_attach,
6f447259 735
01451e72 736 /* parameter for the MPEG2-data transfer */
4d43e13f
PB
737 .stream = {
738 .type = USB_BULK,
01451e72
PB
739 .count = 5,
740 .endpoint = 0x04,
741 .u = {
742 .bulk = {
743 .buffersize = 8192,
744 }
745 }
746 },
4d43e13f
PB
747 },
748 },
749 .power_ctrl = cxusb_bluebird_power_ctrl,
750
751 .i2c_algo = &cxusb_i2c_algo,
752
753 .rc_interval = 100,
754 .rc_key_map = dvico_portable_rc_keys,
755 .rc_key_map_size = ARRAY_SIZE(dvico_portable_rc_keys),
756 .rc_query = cxusb_rc_query,
757
758 .generic_bulk_ctrl_endpoint = 0x01,
6f447259
MK
759
760 .num_device_descs = 1,
761 .devices = {
762 { "DViCO FusionHDTV DVB-T USB (TH7579)",
763 { &cxusb_table[7], NULL },
764 { &cxusb_table[8], NULL },
765 },
766 }
767};
768
22c6d93a 769static struct usb_driver cxusb_driver = {
63b5c1c4 770 .name = "dvb_usb_cxusb",
22c6d93a 771 .probe = cxusb_probe,
f35db23c 772 .disconnect = dvb_usb_device_exit,
22c6d93a
PB
773 .id_table = cxusb_table,
774};
775
776/* module stuff */
777static int __init cxusb_module_init(void)
778{
779 int result;
780 if ((result = usb_register(&cxusb_driver))) {
781 err("usb_register failed. Error number %d",result);
782 return result;
783 }
784
785 return 0;
786}
787
788static void __exit cxusb_module_exit(void)
789{
790 /* deregister this driver from the USB subsystem */
791 usb_deregister(&cxusb_driver);
792}
793
794module_init (cxusb_module_init);
795module_exit (cxusb_module_exit);
796
797MODULE_AUTHOR("Patrick Boettcher <patrick.boettcher@desy.de>");
5b9ed286 798MODULE_AUTHOR("Michael Krufky <mkrufky@linuxtv.org>");
f4efb4db 799MODULE_AUTHOR("Chris Pascoe <c.pascoe@itee.uq.edu.au>");
22c6d93a
PB
800MODULE_DESCRIPTION("Driver for Conexant USB2.0 hybrid reference design");
801MODULE_VERSION("1.0-alpha");
802MODULE_LICENSE("GPL");