cxusb.c 21.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
/* DVB USB compliant linux driver for Conexant USB reference design.
 *
 * The Conexant reference design I saw on their website was only for analogue
 * capturing (using the cx25842). The box I took to write this driver (reverse
 * engineered) is the one labeled Medion MD95700. In addition to the cx25842
 * for analogue capturing it also has a cx22702 DVB-T demodulator on the main
 * board. Besides it has a atiremote (X10) and a USB2.0 hub onboard.
 *
 * Maybe it is a little bit premature to call this driver cxusb, but I assume
 * the USB protocol is identical or at least inherited from the reference
 * design, so it can be reused for the "analogue-only" device (if it will
 * appear at all).
 *
14
 * TODO: Use the cx25840-driver for the analogue part
15 16
 *
 * Copyright (C) 2005 Patrick Boettcher (patrick.boettcher@desy.de)
17
 * Copyright (C) 2006 Michael Krufky (mkrufky@linuxtv.org)
18
 * Copyright (C) 2006 Chris Pascoe (c.pascoe@itee.uq.edu.au)
19
 *
20 21 22
 *   This program is free software; you can redistribute it and/or modify it
 *   under the terms of the GNU General Public License as published by the Free
 *   Software Foundation, version 2.
23 24 25 26 27 28
 *
 * see Documentation/dvb/README.dvb-usb for more information
 */
#include "cxusb.h"

#include "cx22702.h"
29
#include "lgdt330x.h"
30 31
#include "mt352.h"
#include "mt352_priv.h"
32
#include "zl10353.h"
33 34

/* debug */
35
static int dvb_usb_cxusb_debug;
36
module_param_named(debug, dvb_usb_cxusb_debug, int, 0644);
37
MODULE_PARM_DESC(debug, "set debugging level (1=rc (or-able))." DVB_USB_DEBUG_STATUS);
38 39 40
#define deb_info(args...)   dprintk(dvb_usb_cxusb_debug,0x01,args)
#define deb_i2c(args...)    if (d->udev->descriptor.idVendor == USB_VID_MEDION) \
				dprintk(dvb_usb_cxusb_debug,0x01,args)
41 42

static int cxusb_ctrl_msg(struct dvb_usb_device *d,
43
			  u8 cmd, u8 *wbuf, int wlen, u8 *rbuf, int rlen)
44 45 46
{
	int wo = (rbuf == NULL || rlen == 0); /* write-only */
	u8 sndbuf[1+wlen];
47
	memset(sndbuf, 0, 1+wlen);
48 49

	sndbuf[0] = cmd;
50
	memcpy(&sndbuf[1], wbuf, wlen);
51
	if (wo)
52
		return dvb_usb_generic_write(d, sndbuf, 1+wlen);
53
	else
54
		return dvb_usb_generic_rw(d, sndbuf, 1+wlen, rbuf, rlen, 0);
55 56
}

57 58
/* GPIO */
static void cxusb_gpio_tuner(struct dvb_usb_device *d, int onoff)
59 60
{
	struct cxusb_state *st = d->priv;
61
	u8 o[2], i;
62

63
	if (st->gpio_write_state[GPIO_TUNER] == onoff)
64 65
		return;

66 67
	o[0] = GPIO_TUNER;
	o[1] = onoff;
68
	cxusb_ctrl_msg(d, CMD_GPIO_WRITE, o, 2, &i, 1);
69 70

	if (i != 0x01)
71
		deb_info("gpio_write failed.\n");
72

73
	st->gpio_write_state[GPIO_TUNER] = onoff;
74 75
}

76
/* I2C */
77 78
static int cxusb_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msg[],
			  int num)
79 80 81 82
{
	struct dvb_usb_device *d = i2c_get_adapdata(adap);
	int i;

83
	if (mutex_lock_interruptible(&d->i2c_mutex) < 0)
84 85 86
		return -EAGAIN;

	if (num > 2)
87
		warn("more than two i2c messages at a time is not handled yet. TODO.");
88 89 90

	for (i = 0; i < num; i++) {

91 92
		if (d->udev->descriptor.idVendor == USB_VID_MEDION)
			switch (msg[i].addr) {
93 94 95 96 97 98
			case 0x63:
				cxusb_gpio_tuner(d, 0);
				break;
			default:
				cxusb_gpio_tuner(d, 1);
				break;
99
			}
100 101 102 103 104 105 106

		/* read request */
		if (i+1 < num && (msg[i+1].flags & I2C_M_RD)) {
			u8 obuf[3+msg[i].len], ibuf[1+msg[i+1].len];
			obuf[0] = msg[i].len;
			obuf[1] = msg[i+1].len;
			obuf[2] = msg[i].addr;
107
			memcpy(&obuf[3], msg[i].buf, msg[i].len);
108 109

			if (cxusb_ctrl_msg(d, CMD_I2C_READ,
110 111
					   obuf, 3+msg[i].len,
					   ibuf, 1+msg[i+1].len) < 0)
112 113 114
				break;

			if (ibuf[0] != 0x08)
115
				deb_i2c("i2c read may have failed\n");
116

117
			memcpy(msg[i+1].buf, &ibuf[1], msg[i+1].len);
118 119 120 121 122 123

			i++;
		} else { /* write */
			u8 obuf[2+msg[i].len], ibuf;
			obuf[0] = msg[i].addr;
			obuf[1] = msg[i].len;
124
			memcpy(&obuf[2], msg[i].buf, msg[i].len);
125

126 127
			if (cxusb_ctrl_msg(d, CMD_I2C_WRITE, obuf,
					   2+msg[i].len, &ibuf,1) < 0)
128 129
				break;
			if (ibuf != 0x08)
130
				deb_i2c("i2c write may have failed\n");
131 132 133
		}
	}

134
	mutex_unlock(&d->i2c_mutex);
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
	return i;
}

static u32 cxusb_i2c_func(struct i2c_adapter *adapter)
{
	return I2C_FUNC_I2C;
}

static struct i2c_algorithm cxusb_i2c_algo = {
	.master_xfer   = cxusb_i2c_xfer,
	.functionality = cxusb_i2c_func,
};

static int cxusb_power_ctrl(struct dvb_usb_device *d, int onoff)
{
150 151 152 153 154
	u8 b = 0;
	if (onoff)
		return cxusb_ctrl_msg(d, CMD_POWER_ON, &b, 1, NULL, 0);
	else
		return cxusb_ctrl_msg(d, CMD_POWER_OFF, &b, 1, NULL, 0);
155 156
}

157 158 159 160 161 162 163 164 165
static int cxusb_bluebird_power_ctrl(struct dvb_usb_device *d, int onoff)
{
	u8 b = 0;
	if (onoff)
		return cxusb_ctrl_msg(d, CMD_POWER_ON, &b, 1, NULL, 0);
	else
		return 0;
}

166
static int cxusb_streaming_ctrl(struct dvb_usb_adapter *adap, int onoff)
167
{
168 169
	u8 buf[2] = { 0x03, 0x00 };
	if (onoff)
170
		cxusb_ctrl_msg(adap->dev, CMD_STREAMING_ON, buf, 2, NULL, 0);
171
	else
172
		cxusb_ctrl_msg(adap->dev, CMD_STREAMING_OFF, NULL, 0, NULL, 0);
173

174 175 176
	return 0;
}

177 178 179
static int cxusb_rc_query(struct dvb_usb_device *d, u32 *event, int *state)
{
	struct dvb_usb_rc_key *keymap = d->props.rc_key_map;
180
	u8 ircode[4];
181 182
	int i;

183
	cxusb_ctrl_msg(d, CMD_GET_IR_CODE, NULL, 0, ircode, 4);
184 185 186 187 188

	*event = 0;
	*state = REMOTE_NO_KEY_PRESSED;

	for (i = 0; i < d->props.rc_key_map_size; i++) {
189 190
		if (keymap[i].custom == ircode[2] &&
		    keymap[i].data == ircode[3]) {
191 192 193 194 195 196 197 198 199 200
			*event = keymap[i].event;
			*state = REMOTE_KEY_PRESSED;

			return 0;
		}
	}

	return 0;
}

201
static struct dvb_usb_rc_key dvico_mce_rc_keys[] = {
202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248
	{ 0xfe, 0x02, KEY_TV },
	{ 0xfe, 0x0e, KEY_MP3 },
	{ 0xfe, 0x1a, KEY_DVD },
	{ 0xfe, 0x1e, KEY_FAVORITES },
	{ 0xfe, 0x16, KEY_SETUP },
	{ 0xfe, 0x46, KEY_POWER2 },
	{ 0xfe, 0x0a, KEY_EPG },
	{ 0xfe, 0x49, KEY_BACK },
	{ 0xfe, 0x4d, KEY_MENU },
	{ 0xfe, 0x51, KEY_UP },
	{ 0xfe, 0x5b, KEY_LEFT },
	{ 0xfe, 0x5f, KEY_RIGHT },
	{ 0xfe, 0x53, KEY_DOWN },
	{ 0xfe, 0x5e, KEY_OK },
	{ 0xfe, 0x59, KEY_INFO },
	{ 0xfe, 0x55, KEY_TAB },
	{ 0xfe, 0x0f, KEY_PREVIOUSSONG },/* Replay */
	{ 0xfe, 0x12, KEY_NEXTSONG },	/* Skip */
	{ 0xfe, 0x42, KEY_ENTER	 },	/* Windows/Start */
	{ 0xfe, 0x15, KEY_VOLUMEUP },
	{ 0xfe, 0x05, KEY_VOLUMEDOWN },
	{ 0xfe, 0x11, KEY_CHANNELUP },
	{ 0xfe, 0x09, KEY_CHANNELDOWN },
	{ 0xfe, 0x52, KEY_CAMERA },
	{ 0xfe, 0x5a, KEY_TUNER },	/* Live */
	{ 0xfe, 0x19, KEY_OPEN },
	{ 0xfe, 0x0b, KEY_1 },
	{ 0xfe, 0x17, KEY_2 },
	{ 0xfe, 0x1b, KEY_3 },
	{ 0xfe, 0x07, KEY_4 },
	{ 0xfe, 0x50, KEY_5 },
	{ 0xfe, 0x54, KEY_6 },
	{ 0xfe, 0x48, KEY_7 },
	{ 0xfe, 0x4c, KEY_8 },
	{ 0xfe, 0x58, KEY_9 },
	{ 0xfe, 0x13, KEY_ANGLE },	/* Aspect */
	{ 0xfe, 0x03, KEY_0 },
	{ 0xfe, 0x1f, KEY_ZOOM },
	{ 0xfe, 0x43, KEY_REWIND },
	{ 0xfe, 0x47, KEY_PLAYPAUSE },
	{ 0xfe, 0x4f, KEY_FASTFORWARD },
	{ 0xfe, 0x57, KEY_MUTE },
	{ 0xfe, 0x0d, KEY_STOP },
	{ 0xfe, 0x01, KEY_RECORD },
	{ 0xfe, 0x4e, KEY_POWER },
};

249 250 251 252 253 254 255 256 257 258 259 260 261
static struct dvb_usb_rc_key dvico_portable_rc_keys[] = {
	{ 0xfc, 0x02, KEY_SETUP },       /* Profile */
	{ 0xfc, 0x43, KEY_POWER2 },
	{ 0xfc, 0x06, KEY_EPG },
	{ 0xfc, 0x5a, KEY_BACK },
	{ 0xfc, 0x05, KEY_MENU },
	{ 0xfc, 0x47, KEY_INFO },
	{ 0xfc, 0x01, KEY_TAB },
	{ 0xfc, 0x42, KEY_PREVIOUSSONG },/* Replay */
	{ 0xfc, 0x49, KEY_VOLUMEUP },
	{ 0xfc, 0x09, KEY_VOLUMEDOWN },
	{ 0xfc, 0x54, KEY_CHANNELUP },
	{ 0xfc, 0x0b, KEY_CHANNELDOWN },
262
	{ 0xfc, 0x16, KEY_CAMERA },
263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287
	{ 0xfc, 0x40, KEY_TUNER },	/* ATV/DTV */
	{ 0xfc, 0x45, KEY_OPEN },
	{ 0xfc, 0x19, KEY_1 },
	{ 0xfc, 0x18, KEY_2 },
	{ 0xfc, 0x1b, KEY_3 },
	{ 0xfc, 0x1a, KEY_4 },
	{ 0xfc, 0x58, KEY_5 },
	{ 0xfc, 0x59, KEY_6 },
	{ 0xfc, 0x15, KEY_7 },
	{ 0xfc, 0x14, KEY_8 },
	{ 0xfc, 0x17, KEY_9 },
	{ 0xfc, 0x44, KEY_ANGLE },	/* Aspect */
	{ 0xfc, 0x55, KEY_0 },
	{ 0xfc, 0x07, KEY_ZOOM },
	{ 0xfc, 0x0a, KEY_REWIND },
	{ 0xfc, 0x08, KEY_PLAYPAUSE },
	{ 0xfc, 0x4b, KEY_FASTFORWARD },
	{ 0xfc, 0x5b, KEY_MUTE },
	{ 0xfc, 0x04, KEY_STOP },
	{ 0xfc, 0x56, KEY_RECORD },
	{ 0xfc, 0x57, KEY_POWER },
	{ 0xfc, 0x41, KEY_UNKNOWN },    /* INPUT */
	{ 0xfc, 0x00, KEY_UNKNOWN },    /* HD */
};

288 289
static int cxusb_dee1601_demod_init(struct dvb_frontend* fe)
{
290
	static u8 clock_config []  = { CLOCK_CTL,  0x38, 0x28 };
291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308
	static u8 reset []         = { RESET,      0x80 };
	static u8 adc_ctl_1_cfg [] = { ADC_CTL_1,  0x40 };
	static u8 agc_cfg []       = { AGC_TARGET, 0x28, 0x20 };
	static u8 gpp_ctl_cfg []   = { GPP_CTL,    0x33 };
	static u8 capt_range_cfg[] = { CAPT_RANGE, 0x32 };

	mt352_write(fe, clock_config,   sizeof(clock_config));
	udelay(200);
	mt352_write(fe, reset,          sizeof(reset));
	mt352_write(fe, adc_ctl_1_cfg,  sizeof(adc_ctl_1_cfg));

	mt352_write(fe, agc_cfg,        sizeof(agc_cfg));
	mt352_write(fe, gpp_ctl_cfg,    sizeof(gpp_ctl_cfg));
	mt352_write(fe, capt_range_cfg, sizeof(capt_range_cfg));

	return 0;
}

M
 
Michael Krufky 已提交
309 310
static int cxusb_mt352_demod_init(struct dvb_frontend* fe)
{	/* used in both lgz201 and th7579 */
311
	static u8 clock_config []  = { CLOCK_CTL,  0x38, 0x29 };
M
 
Michael Krufky 已提交
312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328
	static u8 reset []         = { RESET,      0x80 };
	static u8 adc_ctl_1_cfg [] = { ADC_CTL_1,  0x40 };
	static u8 agc_cfg []       = { AGC_TARGET, 0x24, 0x20 };
	static u8 gpp_ctl_cfg []   = { GPP_CTL,    0x33 };
	static u8 capt_range_cfg[] = { CAPT_RANGE, 0x32 };

	mt352_write(fe, clock_config,   sizeof(clock_config));
	udelay(200);
	mt352_write(fe, reset,          sizeof(reset));
	mt352_write(fe, adc_ctl_1_cfg,  sizeof(adc_ctl_1_cfg));

	mt352_write(fe, agc_cfg,        sizeof(agc_cfg));
	mt352_write(fe, gpp_ctl_cfg,    sizeof(gpp_ctl_cfg));
	mt352_write(fe, capt_range_cfg, sizeof(capt_range_cfg));
	return 0;
}

329
static struct cx22702_config cxusb_cx22702_config = {
330
	.demod_address = 0x63,
331
	.output_mode = CX22702_PARALLEL_OUTPUT,
332 333
};

334
static struct lgdt330x_config cxusb_lgdt3303_config = {
335 336 337 338
	.demod_address = 0x0e,
	.demod_chip    = LGDT3303,
};

339
static struct mt352_config cxusb_dee1601_config = {
340 341 342 343
	.demod_address = 0x0f,
	.demod_init    = cxusb_dee1601_demod_init,
};

344 345
static struct zl10353_config cxusb_zl10353_dee1601_config = {
	.demod_address = 0x0f,
346
	.parallel_ts = 1,
347 348
};

349
static struct mt352_config cxusb_mt352_config = {
M
 
Michael Krufky 已提交
350 351 352 353 354
	/* used in both lgz201 and th7579 */
	.demod_address = 0x0f,
	.demod_init    = cxusb_mt352_demod_init,
};

355
/* Callbacks for DVB USB */
356
static int cxusb_fmd1216me_tuner_attach(struct dvb_usb_adapter *adap)
357
{
358
	dvb_attach(dvb_pll_attach, adap->fe, 0x61, &adap->dev->i2c_adap,
359
		   DVB_PLL_FMD1216ME);
360 361 362
	return 0;
}

363
static int cxusb_dee1601_tuner_attach(struct dvb_usb_adapter *adap)
364
{
365
	dvb_attach(dvb_pll_attach, adap->fe, 0x61,
366
		   NULL, DVB_PLL_THOMSON_DTT7579);
367 368 369
	return 0;
}

370
static int cxusb_lgz201_tuner_attach(struct dvb_usb_adapter *adap)
M
 
Michael Krufky 已提交
371
{
372
	dvb_attach(dvb_pll_attach, adap->fe, 0x61, NULL, DVB_PLL_LG_Z201);
M
 
Michael Krufky 已提交
373 374 375
	return 0;
}

376
static int cxusb_dtt7579_tuner_attach(struct dvb_usb_adapter *adap)
M
 
Michael Krufky 已提交
377
{
378
	dvb_attach(dvb_pll_attach, adap->fe, 0x60,
379
		   NULL, DVB_PLL_THOMSON_DTT7579);
380 381 382
	return 0;
}

383
static int cxusb_lgh064f_tuner_attach(struct dvb_usb_adapter *adap)
384
{
385
	dvb_attach(dvb_pll_attach, adap->fe, 0x61, &adap->dev->i2c_adap,
386
		   DVB_PLL_LG_TDVS_H06XF);
M
 
Michael Krufky 已提交
387 388 389
	return 0;
}

390
static int cxusb_cx22702_frontend_attach(struct dvb_usb_adapter *adap)
391
{
392
	u8 b;
393
	if (usb_set_interface(adap->dev->udev, 0, 6) < 0)
394
		err("set interface failed");
395

396
	cxusb_ctrl_msg(adap->dev, CMD_DIGITAL, NULL, 0, &b, 1);
397

398 399
	if ((adap->fe = dvb_attach(cx22702_attach, &cxusb_cx22702_config,
				   &adap->dev->i2c_adap)) != NULL)
400 401 402 403 404
		return 0;

	return -EIO;
}

405
static int cxusb_lgdt3303_frontend_attach(struct dvb_usb_adapter *adap)
406
{
407
	if (usb_set_interface(adap->dev->udev, 0, 7) < 0)
408 409
		err("set interface failed");

410
	cxusb_ctrl_msg(adap->dev, CMD_DIGITAL, NULL, 0, NULL, 0);
411

412 413
	if ((adap->fe = dvb_attach(lgdt330x_attach, &cxusb_lgdt3303_config,
				   &adap->dev->i2c_adap)) != NULL)
414 415 416 417 418
		return 0;

	return -EIO;
}

419 420 421 422
static int cxusb_mt352_frontend_attach(struct dvb_usb_adapter *adap)
{
	/* used in both lgz201 and th7579 */
	if (usb_set_interface(adap->dev->udev, 0, 0) < 0)
M
 
Michael Krufky 已提交
423 424
		err("set interface failed");

425
	cxusb_ctrl_msg(adap->dev, CMD_DIGITAL, NULL, 0, NULL, 0);
M
 
Michael Krufky 已提交
426

427 428
	if ((adap->fe = dvb_attach(mt352_attach, &cxusb_mt352_config,
				   &adap->dev->i2c_adap)) != NULL)
M
 
Michael Krufky 已提交
429 430 431 432 433
		return 0;

	return -EIO;
}

434
static int cxusb_dee1601_frontend_attach(struct dvb_usb_adapter *adap)
435
{
436
	if (usb_set_interface(adap->dev->udev, 0, 0) < 0)
437 438
		err("set interface failed");

439
	cxusb_ctrl_msg(adap->dev, CMD_DIGITAL, NULL, 0, NULL, 0);
440

441 442 443 444 445
	if (((adap->fe = dvb_attach(mt352_attach, &cxusb_dee1601_config,
				    &adap->dev->i2c_adap)) != NULL) ||
		((adap->fe = dvb_attach(zl10353_attach,
					&cxusb_zl10353_dee1601_config,
					&adap->dev->i2c_adap)) != NULL))
446 447 448 449 450
		return 0;

	return -EIO;
}

451 452 453 454 455 456
/*
 * DViCO bluebird firmware needs the "warm" product ID to be patched into the
 * firmware file before download.
 */

#define BLUEBIRD_01_ID_OFFSET 6638
457 458
static int bluebird_patch_dvico_firmware_download(struct usb_device *udev,
						  const struct firmware *fw)
459 460 461 462 463 464 465
{
	if (fw->size < BLUEBIRD_01_ID_OFFSET + 4)
		return -EINVAL;

	if (fw->data[BLUEBIRD_01_ID_OFFSET] == (USB_VID_DVICO & 0xff) &&
	    fw->data[BLUEBIRD_01_ID_OFFSET + 1] == USB_VID_DVICO >> 8) {

466
		fw->data[BLUEBIRD_01_ID_OFFSET + 2] =
467
			le16_to_cpu(udev->descriptor.idProduct) + 1;
468
		fw->data[BLUEBIRD_01_ID_OFFSET + 3] =
469
			le16_to_cpu(udev->descriptor.idProduct) >> 8;
470

471
		return usb_cypress_load_firmware(udev, fw, CYPRESS_FX2);
472 473 474 475 476
	}

	return -EINVAL;
}

477
/* DVB USB Driver stuff */
478 479 480 481 482
static struct dvb_usb_device_properties cxusb_medion_properties;
static struct dvb_usb_device_properties cxusb_bluebird_lgh064f_properties;
static struct dvb_usb_device_properties cxusb_bluebird_dee1601_properties;
static struct dvb_usb_device_properties cxusb_bluebird_lgz201_properties;
static struct dvb_usb_device_properties cxusb_bluebird_dtt7579_properties;
483 484

static int cxusb_probe(struct usb_interface *intf,
485
		       const struct usb_device_id *id)
486
{
487
	if (dvb_usb_device_init(intf,&cxusb_medion_properties,THIS_MODULE,NULL) == 0 ||
488
		dvb_usb_device_init(intf,&cxusb_bluebird_lgh064f_properties,THIS_MODULE,NULL) == 0 ||
M
 
Michael Krufky 已提交
489 490 491
		dvb_usb_device_init(intf,&cxusb_bluebird_dee1601_properties,THIS_MODULE,NULL) == 0 ||
		dvb_usb_device_init(intf,&cxusb_bluebird_lgz201_properties,THIS_MODULE,NULL) == 0 ||
		dvb_usb_device_init(intf,&cxusb_bluebird_dtt7579_properties,THIS_MODULE,NULL) == 0) {
492 493 494 495
		return 0;
	}

	return -EINVAL;
496 497 498
}

static struct usb_device_id cxusb_table [] = {
499 500 501 502 503 504 505 506 507 508 509 510 511 512
	{ USB_DEVICE(USB_VID_MEDION, USB_PID_MEDION_MD95700) },
	{ USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LG064F_COLD) },
	{ USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LG064F_WARM) },
	{ USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_DUAL_1_COLD) },
	{ USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_DUAL_1_WARM) },
	{ USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LGZ201_COLD) },
	{ USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_LGZ201_WARM) },
	{ USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_TH7579_COLD) },
	{ USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_TH7579_WARM) },
	{ USB_DEVICE(USB_VID_DVICO, USB_PID_DIGITALNOW_BLUEBIRD_DUAL_1_COLD) },
	{ USB_DEVICE(USB_VID_DVICO, USB_PID_DIGITALNOW_BLUEBIRD_DUAL_1_WARM) },
	{ USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_DUAL_2_COLD) },
	{ USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_DUAL_2_WARM) },
	{}		/* Terminating entry */
513 514 515
};
MODULE_DEVICE_TABLE (usb, cxusb_table);

516
static struct dvb_usb_device_properties cxusb_medion_properties = {
517 518 519 520 521 522
	.caps = DVB_USB_IS_AN_I2C_ADAPTER,

	.usb_ctrl = CYPRESS_FX2,

	.size_of_priv     = sizeof(struct cxusb_state),

523 524 525
	.num_adapters = 1,
	.adapter = {
		{
526 527 528 529 530 531 532 533 534 535 536 537 538 539
			.streaming_ctrl   = cxusb_streaming_ctrl,
			.frontend_attach  = cxusb_cx22702_frontend_attach,
			.tuner_attach     = cxusb_fmd1216me_tuner_attach,
			/* parameter for the MPEG2-data transfer */
					.stream = {
						.type = USB_BULK,
				.count = 5,
				.endpoint = 0x02,
				.u = {
					.bulk = {
						.buffersize = 8192,
					}
				}
			},
540

541 542 543 544 545 546 547 548
		},
	},
	.power_ctrl       = cxusb_power_ctrl,

	.i2c_algo         = &cxusb_i2c_algo,

	.generic_bulk_ctrl_endpoint = 0x01,

549 550 551 552 553 554 555 556 557
	.num_device_descs = 1,
	.devices = {
		{   "Medion MD95700 (MDUSBTV-HYBRID)",
			{ NULL },
			{ &cxusb_table[0], NULL },
		},
	}
};

558
static struct dvb_usb_device_properties cxusb_bluebird_lgh064f_properties = {
559 560
	.caps = DVB_USB_IS_AN_I2C_ADAPTER,

561 562 563
	.usb_ctrl          = DEVICE_SPECIFIC,
	.firmware          = "dvb-usb-bluebird-01.fw",
	.download_firmware = bluebird_patch_dvico_firmware_download,
564 565
	/* use usb alt setting 0 for EP4 transfer (dvb-t),
	   use usb alt setting 7 for EP2 transfer (atsc) */
566 567 568

	.size_of_priv     = sizeof(struct cxusb_state),

569 570 571
	.num_adapters = 1,
	.adapter = {
		{
572 573
			.streaming_ctrl   = cxusb_streaming_ctrl,
			.frontend_attach  = cxusb_lgdt3303_frontend_attach,
574
			.tuner_attach     = cxusb_lgh064f_tuner_attach,
575 576 577 578 579 580 581 582 583 584 585 586

			/* parameter for the MPEG2-data transfer */
					.stream = {
						.type = USB_BULK,
				.count = 5,
				.endpoint = 0x02,
				.u = {
					.bulk = {
						.buffersize = 8192,
					}
				}
			},
587 588 589 590 591 592 593 594 595 596 597 598 599
		},
	},

	.power_ctrl       = cxusb_bluebird_power_ctrl,

	.i2c_algo         = &cxusb_i2c_algo,

	.rc_interval      = 100,
	.rc_key_map       = dvico_portable_rc_keys,
	.rc_key_map_size  = ARRAY_SIZE(dvico_portable_rc_keys),
	.rc_query         = cxusb_rc_query,

	.generic_bulk_ctrl_endpoint = 0x01,
600 601 602 603 604 605 606 607 608 609

	.num_device_descs = 1,
	.devices = {
		{   "DViCO FusionHDTV5 USB Gold",
			{ &cxusb_table[1], NULL },
			{ &cxusb_table[2], NULL },
		},
	}
};

610
static struct dvb_usb_device_properties cxusb_bluebird_dee1601_properties = {
611 612
	.caps = DVB_USB_IS_AN_I2C_ADAPTER,

613 614 615
	.usb_ctrl          = DEVICE_SPECIFIC,
	.firmware          = "dvb-usb-bluebird-01.fw",
	.download_firmware = bluebird_patch_dvico_firmware_download,
616 617 618 619 620
	/* use usb alt setting 0 for EP4 transfer (dvb-t),
	   use usb alt setting 7 for EP2 transfer (atsc) */

	.size_of_priv     = sizeof(struct cxusb_state),

621 622 623
	.num_adapters = 1,
	.adapter = {
		{
624 625 626 627
			.streaming_ctrl   = cxusb_streaming_ctrl,
			.frontend_attach  = cxusb_dee1601_frontend_attach,
			.tuner_attach     = cxusb_dee1601_tuner_attach,
			/* parameter for the MPEG2-data transfer */
628 629
			.stream = {
				.type = USB_BULK,
630 631 632 633 634 635 636 637
				.count = 5,
				.endpoint = 0x04,
				.u = {
					.bulk = {
						.buffersize = 8192,
					}
				}
			},
638 639 640 641 642 643 644 645 646 647 648 649 650
		},
	},

	.power_ctrl       = cxusb_bluebird_power_ctrl,

	.i2c_algo         = &cxusb_i2c_algo,

	.rc_interval      = 150,
	.rc_key_map       = dvico_mce_rc_keys,
	.rc_key_map_size  = ARRAY_SIZE(dvico_mce_rc_keys),
	.rc_query         = cxusb_rc_query,

	.generic_bulk_ctrl_endpoint = 0x01,
651

652
	.num_device_descs = 3,
653 654 655 656 657
	.devices = {
		{   "DViCO FusionHDTV DVB-T Dual USB",
			{ &cxusb_table[3], NULL },
			{ &cxusb_table[4], NULL },
		},
658 659 660 661
		{   "DigitalNow DVB-T Dual USB",
			{ &cxusb_table[9],  NULL },
			{ &cxusb_table[10], NULL },
		},
662 663 664 665
		{   "DViCO FusionHDTV DVB-T Dual Digital 2",
			{ &cxusb_table[11], NULL },
			{ &cxusb_table[12], NULL },
		},
666 667 668
	}
};

669
static struct dvb_usb_device_properties cxusb_bluebird_lgz201_properties = {
M
 
Michael Krufky 已提交
670 671 672 673 674 675 676 677 678 679
	.caps = DVB_USB_IS_AN_I2C_ADAPTER,

	.usb_ctrl          = DEVICE_SPECIFIC,
	.firmware          = "dvb-usb-bluebird-01.fw",
	.download_firmware = bluebird_patch_dvico_firmware_download,
	/* use usb alt setting 0 for EP4 transfer (dvb-t),
	   use usb alt setting 7 for EP2 transfer (atsc) */

	.size_of_priv     = sizeof(struct cxusb_state),

680 681 682
	.num_adapters = 2,
	.adapter = {
		{
683 684 685
			.streaming_ctrl   = cxusb_streaming_ctrl,
			.frontend_attach  = cxusb_mt352_frontend_attach,
			.tuner_attach     = cxusb_lgz201_tuner_attach,
M
 
Michael Krufky 已提交
686

687
			/* parameter for the MPEG2-data transfer */
688 689
			.stream = {
				.type = USB_BULK,
690 691 692 693 694 695 696 697
				.count = 5,
				.endpoint = 0x04,
				.u = {
					.bulk = {
						.buffersize = 8192,
					}
				}
			},
698 699 700 701 702
		},
	},
	.power_ctrl       = cxusb_bluebird_power_ctrl,

	.i2c_algo         = &cxusb_i2c_algo,
M
 
Michael Krufky 已提交
703

704 705 706 707 708 709
	.rc_interval      = 100,
	.rc_key_map       = dvico_portable_rc_keys,
	.rc_key_map_size  = ARRAY_SIZE(dvico_portable_rc_keys),
	.rc_query         = cxusb_rc_query,

	.generic_bulk_ctrl_endpoint = 0x01,
M
 
Michael Krufky 已提交
710 711 712 713 714 715 716 717 718
	.num_device_descs = 1,
	.devices = {
		{   "DViCO FusionHDTV DVB-T USB (LGZ201)",
			{ &cxusb_table[5], NULL },
			{ &cxusb_table[6], NULL },
		},
	}
};

719
static struct dvb_usb_device_properties cxusb_bluebird_dtt7579_properties = {
M
 
Michael Krufky 已提交
720 721 722 723 724 725 726 727 728 729
	.caps = DVB_USB_IS_AN_I2C_ADAPTER,

	.usb_ctrl          = DEVICE_SPECIFIC,
	.firmware          = "dvb-usb-bluebird-01.fw",
	.download_firmware = bluebird_patch_dvico_firmware_download,
	/* use usb alt setting 0 for EP4 transfer (dvb-t),
	   use usb alt setting 7 for EP2 transfer (atsc) */

	.size_of_priv     = sizeof(struct cxusb_state),

730 731 732
	.num_adapters = 1,
	.adapter = {
		{
733 734 735
			.streaming_ctrl   = cxusb_streaming_ctrl,
			.frontend_attach  = cxusb_mt352_frontend_attach,
			.tuner_attach     = cxusb_dtt7579_tuner_attach,
M
 
Michael Krufky 已提交
736

737
			/* parameter for the MPEG2-data transfer */
738 739
			.stream = {
				.type = USB_BULK,
740 741 742 743 744 745 746 747
				.count = 5,
				.endpoint = 0x04,
				.u = {
					.bulk = {
						.buffersize = 8192,
					}
				}
			},
748 749 750 751 752 753 754 755 756 757 758 759
		},
	},
	.power_ctrl       = cxusb_bluebird_power_ctrl,

	.i2c_algo         = &cxusb_i2c_algo,

	.rc_interval      = 100,
	.rc_key_map       = dvico_portable_rc_keys,
	.rc_key_map_size  = ARRAY_SIZE(dvico_portable_rc_keys),
	.rc_query         = cxusb_rc_query,

	.generic_bulk_ctrl_endpoint = 0x01,
M
 
Michael Krufky 已提交
760 761 762 763 764 765 766 767 768 769

	.num_device_descs = 1,
	.devices = {
		{   "DViCO FusionHDTV DVB-T USB (TH7579)",
			{ &cxusb_table[7], NULL },
			{ &cxusb_table[8], NULL },
		},
	}
};

770
static struct usb_driver cxusb_driver = {
771
	.name		= "dvb_usb_cxusb",
772
	.probe		= cxusb_probe,
773
	.disconnect     = dvb_usb_device_exit,
774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798
	.id_table	= cxusb_table,
};

/* module stuff */
static int __init cxusb_module_init(void)
{
	int result;
	if ((result = usb_register(&cxusb_driver))) {
		err("usb_register failed. Error number %d",result);
		return result;
	}

	return 0;
}

static void __exit cxusb_module_exit(void)
{
	/* deregister this driver from the USB subsystem */
	usb_deregister(&cxusb_driver);
}

module_init (cxusb_module_init);
module_exit (cxusb_module_exit);

MODULE_AUTHOR("Patrick Boettcher <patrick.boettcher@desy.de>");
799
MODULE_AUTHOR("Michael Krufky <mkrufky@linuxtv.org>");
800
MODULE_AUTHOR("Chris Pascoe <c.pascoe@itee.uq.edu.au>");
801 802 803
MODULE_DESCRIPTION("Driver for Conexant USB2.0 hybrid reference design");
MODULE_VERSION("1.0-alpha");
MODULE_LICENSE("GPL");