cxusb.c 51.8 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, 2007 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
 *
 * see Documentation/dvb/README.dvb-usb for more information
 */
26
#include <media/tuner.h>
27
#include <linux/vmalloc.h>
28
#include <linux/slab.h>
29

30 31 32
#include "cxusb.h"

#include "cx22702.h"
33
#include "lgdt330x.h"
34 35
#include "mt352.h"
#include "mt352_priv.h"
36
#include "zl10353.h"
37
#include "tuner-xc2028.h"
38
#include "tuner-simple.h"
39
#include "mxl5005s.h"
40
#include "max2165.h"
41 42
#include "dib7000p.h"
#include "dib0070.h"
43
#include "lgs8gxx.h"
44
#include "atbm8830.h"
45

46 47 48
/* Max transfer size done by I2C transfer functions */
#define MAX_XFER_SIZE  64

49
/* debug */
50
static int dvb_usb_cxusb_debug;
51
module_param_named(debug, dvb_usb_cxusb_debug, int, 0644);
52
MODULE_PARM_DESC(debug, "set debugging level (1=rc (or-able))." DVB_USB_DEBUG_STATUS);
53 54 55

DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr);

56 57
#define deb_info(args...)   dprintk(dvb_usb_cxusb_debug, 0x03, args)
#define deb_i2c(args...)    dprintk(dvb_usb_cxusb_debug, 0x02, args)
58 59

static int cxusb_ctrl_msg(struct dvb_usb_device *d,
60
			  u8 cmd, u8 *wbuf, int wlen, u8 *rbuf, int rlen)
61 62
{
	int wo = (rbuf == NULL || rlen == 0); /* write-only */
63 64 65 66 67 68 69 70
	u8 sndbuf[MAX_XFER_SIZE];

	if (1 + wlen > sizeof(sndbuf)) {
		warn("i2c wr: len=%d is too big!\n",
		     wlen);
		return -EOPNOTSUPP;
	}

71
	memset(sndbuf, 0, 1+wlen);
72 73

	sndbuf[0] = cmd;
74
	memcpy(&sndbuf[1], wbuf, wlen);
75
	if (wo)
76
		return dvb_usb_generic_write(d, sndbuf, 1+wlen);
77
	else
78
		return dvb_usb_generic_rw(d, sndbuf, 1+wlen, rbuf, rlen, 0);
79 80
}

81 82
/* GPIO */
static void cxusb_gpio_tuner(struct dvb_usb_device *d, int onoff)
83 84
{
	struct cxusb_state *st = d->priv;
85
	u8 o[2], i;
86

87
	if (st->gpio_write_state[GPIO_TUNER] == onoff)
88 89
		return;

90 91
	o[0] = GPIO_TUNER;
	o[1] = onoff;
92
	cxusb_ctrl_msg(d, CMD_GPIO_WRITE, o, 2, &i, 1);
93 94

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

97
	st->gpio_write_state[GPIO_TUNER] = onoff;
98 99
}

100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
static int cxusb_bluebird_gpio_rw(struct dvb_usb_device *d, u8 changemask,
				 u8 newval)
{
	u8 o[2], gpio_state;
	int rc;

	o[0] = 0xff & ~changemask;	/* mask of bits to keep */
	o[1] = newval & changemask;	/* new values for bits  */

	rc = cxusb_ctrl_msg(d, CMD_BLUEBIRD_GPIO_RW, o, 2, &gpio_state, 1);
	if (rc < 0 || (gpio_state & changemask) != (newval & changemask))
		deb_info("bluebird_gpio_write failed.\n");

	return rc < 0 ? rc : gpio_state;
}

static void cxusb_bluebird_gpio_pulse(struct dvb_usb_device *d, u8 pin, int low)
{
	cxusb_bluebird_gpio_rw(d, pin, low ? 0 : pin);
	msleep(5);
	cxusb_bluebird_gpio_rw(d, pin, low ? pin : 0);
}

123 124 125 126 127
static void cxusb_nano2_led(struct dvb_usb_device *d, int onoff)
{
	cxusb_bluebird_gpio_rw(d, 0x40, onoff ? 0 : 0x40);
}

128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
static int cxusb_d680_dmb_gpio_tuner(struct dvb_usb_device *d,
		u8 addr, int onoff)
{
	u8  o[2] = {addr, onoff};
	u8  i;
	int rc;

	rc = cxusb_ctrl_msg(d, CMD_GPIO_WRITE, o, 2, &i, 1);

	if (rc < 0)
		return rc;
	if (i == 0x01)
		return 0;
	else {
		deb_info("gpio_write failed.\n");
		return -EIO;
	}
}

147
/* I2C */
148 149
static int cxusb_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msg[],
			  int num)
150 151
{
	struct dvb_usb_device *d = i2c_get_adapdata(adap);
152
	int ret;
153 154
	int i;

155
	if (mutex_lock_interruptible(&d->i2c_mutex) < 0)
156 157 158 159
		return -EAGAIN;

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

160 161
		if (d->udev->descriptor.idVendor == USB_VID_MEDION)
			switch (msg[i].addr) {
162 163 164 165 166 167
			case 0x63:
				cxusb_gpio_tuner(d, 0);
				break;
			default:
				cxusb_gpio_tuner(d, 1);
				break;
168
			}
169

170 171
		if (msg[i].flags & I2C_M_RD) {
			/* read only */
172 173 174 175 176
			u8 obuf[3], ibuf[MAX_XFER_SIZE];

			if (1 + msg[i].len > sizeof(ibuf)) {
				warn("i2c rd: len=%d is too big!\n",
				     msg[i].len);
177 178
				ret = -EOPNOTSUPP;
				goto unlock;
179
			}
180 181 182 183 184 185 186 187 188 189
			obuf[0] = 0;
			obuf[1] = msg[i].len;
			obuf[2] = msg[i].addr;
			if (cxusb_ctrl_msg(d, CMD_I2C_READ,
					   obuf, 3,
					   ibuf, 1+msg[i].len) < 0) {
				warn("i2c read failed");
				break;
			}
			memcpy(msg[i].buf, &ibuf[1], msg[i].len);
190 191 192
		} else if (i+1 < num && (msg[i+1].flags & I2C_M_RD) &&
			   msg[i].addr == msg[i+1].addr) {
			/* write to then read from same address */
193 194 195 196 197
			u8 obuf[MAX_XFER_SIZE], ibuf[MAX_XFER_SIZE];

			if (3 + msg[i].len > sizeof(obuf)) {
				warn("i2c wr: len=%d is too big!\n",
				     msg[i].len);
198 199
				ret = -EOPNOTSUPP;
				goto unlock;
200 201 202 203
			}
			if (1 + msg[i + 1].len > sizeof(ibuf)) {
				warn("i2c rd: len=%d is too big!\n",
				     msg[i + 1].len);
204 205
				ret = -EOPNOTSUPP;
				goto unlock;
206
			}
207 208 209
			obuf[0] = msg[i].len;
			obuf[1] = msg[i+1].len;
			obuf[2] = msg[i].addr;
210
			memcpy(&obuf[3], msg[i].buf, msg[i].len);
211 212

			if (cxusb_ctrl_msg(d, CMD_I2C_READ,
213 214
					   obuf, 3+msg[i].len,
					   ibuf, 1+msg[i+1].len) < 0)
215 216 217
				break;

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

220
			memcpy(msg[i+1].buf, &ibuf[1], msg[i+1].len);
221 222

			i++;
223 224
		} else {
			/* write only */
225 226 227 228 229
			u8 obuf[MAX_XFER_SIZE], ibuf;

			if (2 + msg[i].len > sizeof(obuf)) {
				warn("i2c wr: len=%d is too big!\n",
				     msg[i].len);
230 231
				ret = -EOPNOTSUPP;
				goto unlock;
232
			}
233 234
			obuf[0] = msg[i].addr;
			obuf[1] = msg[i].len;
235
			memcpy(&obuf[2], msg[i].buf, msg[i].len);
236

237 238
			if (cxusb_ctrl_msg(d, CMD_I2C_WRITE, obuf,
					   2+msg[i].len, &ibuf,1) < 0)
239 240
				break;
			if (ibuf != 0x08)
241
				deb_i2c("i2c write may have failed\n");
242 243 244
		}
	}

245 246 247 248 249 250
	if (i == num)
		ret = num;
	else
		ret = -EREMOTEIO;

unlock:
251
	mutex_unlock(&d->i2c_mutex);
252
	return ret;
253 254 255 256 257 258 259 260 261 262 263 264 265 266
}

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)
{
267 268 269 270 271
	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);
272 273
}

274 275 276 277 278 279 280 281
static int cxusb_aver_power_ctrl(struct dvb_usb_device *d, int onoff)
{
	int ret;
	if (!onoff)
		return cxusb_ctrl_msg(d, CMD_POWER_OFF, NULL, 0, NULL, 0);
	if (d->state == DVB_USB_STATE_INIT &&
	    usb_set_interface(d->udev, 0, 0) < 0)
		err("set interface failed");
282
	do {} while (!(ret = cxusb_ctrl_msg(d, CMD_POWER_ON, NULL, 0, NULL, 0)) &&
283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313
		   !(ret = cxusb_ctrl_msg(d, 0x15, NULL, 0, NULL, 0)) &&
		   !(ret = cxusb_ctrl_msg(d, 0x17, NULL, 0, NULL, 0)) && 0);
	if (!ret) {
		/* FIXME: We don't know why, but we need to configure the
		 * lgdt3303 with the register settings below on resume */
		int i;
		u8 buf, bufs[] = {
			0x0e, 0x2, 0x00, 0x7f,
			0x0e, 0x2, 0x02, 0xfe,
			0x0e, 0x2, 0x02, 0x01,
			0x0e, 0x2, 0x00, 0x03,
			0x0e, 0x2, 0x0d, 0x40,
			0x0e, 0x2, 0x0e, 0x87,
			0x0e, 0x2, 0x0f, 0x8e,
			0x0e, 0x2, 0x10, 0x01,
			0x0e, 0x2, 0x14, 0xd7,
			0x0e, 0x2, 0x47, 0x88,
		};
		msleep(20);
		for (i = 0; i < sizeof(bufs)/sizeof(u8); i += 4/sizeof(u8)) {
			ret = cxusb_ctrl_msg(d, CMD_I2C_WRITE,
					     bufs+i, 4, &buf, 1);
			if (ret)
				break;
			if (buf != 0x8)
				return -EREMOTEIO;
		}
	}
	return ret;
}

314 315 316 317 318 319 320 321 322
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;
}

323 324 325 326 327 328 329 330 331 332 333
static int cxusb_nano2_power_ctrl(struct dvb_usb_device *d, int onoff)
{
	int rc = 0;

	rc = cxusb_power_ctrl(d, onoff);
	if (!onoff)
		cxusb_nano2_led(d, 0);

	return rc;
}

334 335 336 337 338 339 340 341 342 343 344 345 346 347
static int cxusb_d680_dmb_power_ctrl(struct dvb_usb_device *d, int onoff)
{
	int ret;
	u8  b;
	ret = cxusb_power_ctrl(d, onoff);
	if (!onoff)
		return ret;

	msleep(128);
	cxusb_ctrl_msg(d, CMD_DIGITAL, NULL, 0, &b, 1);
	msleep(100);
	return ret;
}

348
static int cxusb_streaming_ctrl(struct dvb_usb_adapter *adap, int onoff)
349
{
350 351
	u8 buf[2] = { 0x03, 0x00 };
	if (onoff)
352
		cxusb_ctrl_msg(adap->dev, CMD_STREAMING_ON, buf, 2, NULL, 0);
353
	else
354
		cxusb_ctrl_msg(adap->dev, CMD_STREAMING_OFF, NULL, 0, NULL, 0);
355

356 357 358
	return 0;
}

359 360 361 362 363 364 365 366 367 368
static int cxusb_aver_streaming_ctrl(struct dvb_usb_adapter *adap, int onoff)
{
	if (onoff)
		cxusb_ctrl_msg(adap->dev, CMD_AVER_STREAM_ON, NULL, 0, NULL, 0);
	else
		cxusb_ctrl_msg(adap->dev, CMD_AVER_STREAM_OFF,
			       NULL, 0, NULL, 0);
	return 0;
}

369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393
static void cxusb_d680_dmb_drain_message(struct dvb_usb_device *d)
{
	int       ep = d->props.generic_bulk_ctrl_endpoint;
	const int timeout = 100;
	const int junk_len = 32;
	u8        *junk;
	int       rd_count;

	/* Discard remaining data in video pipe */
	junk = kmalloc(junk_len, GFP_KERNEL);
	if (!junk)
		return;
	while (1) {
		if (usb_bulk_msg(d->udev,
			usb_rcvbulkpipe(d->udev, ep),
			junk, junk_len, &rd_count, timeout) < 0)
			break;
		if (!rd_count)
			break;
	}
	kfree(junk);
}

static void cxusb_d680_dmb_drain_video(struct dvb_usb_device *d)
{
394
	struct usb_data_stream_properties *p = &d->props.adapter[0].fe[0].stream;
395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429
	const int timeout = 100;
	const int junk_len = p->u.bulk.buffersize;
	u8        *junk;
	int       rd_count;

	/* Discard remaining data in video pipe */
	junk = kmalloc(junk_len, GFP_KERNEL);
	if (!junk)
		return;
	while (1) {
		if (usb_bulk_msg(d->udev,
			usb_rcvbulkpipe(d->udev, p->endpoint),
			junk, junk_len, &rd_count, timeout) < 0)
			break;
		if (!rd_count)
			break;
	}
	kfree(junk);
}

static int cxusb_d680_dmb_streaming_ctrl(
		struct dvb_usb_adapter *adap, int onoff)
{
	if (onoff) {
		u8 buf[2] = { 0x03, 0x00 };
		cxusb_d680_dmb_drain_video(adap->dev);
		return cxusb_ctrl_msg(adap->dev, CMD_STREAMING_ON,
			buf, sizeof(buf), NULL, 0);
	} else {
		int ret = cxusb_ctrl_msg(adap->dev,
			CMD_STREAMING_OFF, NULL, 0, NULL, 0);
		return ret;
	}
}

430 431
static int cxusb_rc_query(struct dvb_usb_device *d, u32 *event, int *state)
{
432
	struct rc_map_table *keymap = d->props.rc.legacy.rc_map_table;
433
	u8 ircode[4];
434 435
	int i;

436
	cxusb_ctrl_msg(d, CMD_GET_IR_CODE, NULL, 0, ircode, 4);
437 438 439 440

	*event = 0;
	*state = REMOTE_NO_KEY_PRESSED;

441
	for (i = 0; i < d->props.rc.legacy.rc_map_size; i++) {
442 443
		if (rc5_custom(&keymap[i]) == ircode[2] &&
		    rc5_data(&keymap[i]) == ircode[3]) {
444
			*event = keymap[i].keycode;
445 446 447 448 449 450 451 452 453
			*state = REMOTE_KEY_PRESSED;

			return 0;
		}
	}

	return 0;
}

454 455 456
static int cxusb_bluebird2_rc_query(struct dvb_usb_device *d, u32 *event,
				    int *state)
{
457
	struct rc_map_table *keymap = d->props.rc.legacy.rc_map_table;
458 459 460 461 462 463 464 465 466 467 468
	u8 ircode[4];
	int i;
	struct i2c_msg msg = { .addr = 0x6b, .flags = I2C_M_RD,
			       .buf = ircode, .len = 4 };

	*event = 0;
	*state = REMOTE_NO_KEY_PRESSED;

	if (cxusb_i2c_xfer(&d->i2c_adap, &msg, 1) != 1)
		return 0;

469
	for (i = 0; i < d->props.rc.legacy.rc_map_size; i++) {
470 471
		if (rc5_custom(&keymap[i]) == ircode[1] &&
		    rc5_data(&keymap[i]) == ircode[2]) {
472
			*event = keymap[i].keycode;
473 474 475 476 477 478 479 480 481
			*state = REMOTE_KEY_PRESSED;

			return 0;
		}
	}

	return 0;
}

482 483 484
static int cxusb_d680_dmb_rc_query(struct dvb_usb_device *d, u32 *event,
		int *state)
{
485
	struct rc_map_table *keymap = d->props.rc.legacy.rc_map_table;
486 487 488 489 490 491 492 493 494
	u8 ircode[2];
	int i;

	*event = 0;
	*state = REMOTE_NO_KEY_PRESSED;

	if (cxusb_ctrl_msg(d, 0x10, NULL, 0, ircode, 2) < 0)
		return 0;

495
	for (i = 0; i < d->props.rc.legacy.rc_map_size; i++) {
496 497
		if (rc5_custom(&keymap[i]) == ircode[0] &&
		    rc5_data(&keymap[i]) == ircode[1]) {
498
			*event = keymap[i].keycode;
499 500 501 502 503 504 505 506 507
			*state = REMOTE_KEY_PRESSED;

			return 0;
		}
	}

	return 0;
}

508
static struct rc_map_table rc_map_dvico_mce_table[] = {
509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553
	{ 0xfe02, KEY_TV },
	{ 0xfe0e, KEY_MP3 },
	{ 0xfe1a, KEY_DVD },
	{ 0xfe1e, KEY_FAVORITES },
	{ 0xfe16, KEY_SETUP },
	{ 0xfe46, KEY_POWER2 },
	{ 0xfe0a, KEY_EPG },
	{ 0xfe49, KEY_BACK },
	{ 0xfe4d, KEY_MENU },
	{ 0xfe51, KEY_UP },
	{ 0xfe5b, KEY_LEFT },
	{ 0xfe5f, KEY_RIGHT },
	{ 0xfe53, KEY_DOWN },
	{ 0xfe5e, KEY_OK },
	{ 0xfe59, KEY_INFO },
	{ 0xfe55, KEY_TAB },
	{ 0xfe0f, KEY_PREVIOUSSONG },/* Replay */
	{ 0xfe12, KEY_NEXTSONG },	/* Skip */
	{ 0xfe42, KEY_ENTER	 },	/* Windows/Start */
	{ 0xfe15, KEY_VOLUMEUP },
	{ 0xfe05, KEY_VOLUMEDOWN },
	{ 0xfe11, KEY_CHANNELUP },
	{ 0xfe09, KEY_CHANNELDOWN },
	{ 0xfe52, KEY_CAMERA },
	{ 0xfe5a, KEY_TUNER },	/* Live */
	{ 0xfe19, KEY_OPEN },
	{ 0xfe0b, KEY_1 },
	{ 0xfe17, KEY_2 },
	{ 0xfe1b, KEY_3 },
	{ 0xfe07, KEY_4 },
	{ 0xfe50, KEY_5 },
	{ 0xfe54, KEY_6 },
	{ 0xfe48, KEY_7 },
	{ 0xfe4c, KEY_8 },
	{ 0xfe58, KEY_9 },
	{ 0xfe13, KEY_ANGLE },	/* Aspect */
	{ 0xfe03, KEY_0 },
	{ 0xfe1f, KEY_ZOOM },
	{ 0xfe43, KEY_REWIND },
	{ 0xfe47, KEY_PLAYPAUSE },
	{ 0xfe4f, KEY_FASTFORWARD },
	{ 0xfe57, KEY_MUTE },
	{ 0xfe0d, KEY_STOP },
	{ 0xfe01, KEY_RECORD },
	{ 0xfe4e, KEY_POWER },
554 555
};

556
static struct rc_map_table rc_map_dvico_portable_table[] = {
557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592
	{ 0xfc02, KEY_SETUP },       /* Profile */
	{ 0xfc43, KEY_POWER2 },
	{ 0xfc06, KEY_EPG },
	{ 0xfc5a, KEY_BACK },
	{ 0xfc05, KEY_MENU },
	{ 0xfc47, KEY_INFO },
	{ 0xfc01, KEY_TAB },
	{ 0xfc42, KEY_PREVIOUSSONG },/* Replay */
	{ 0xfc49, KEY_VOLUMEUP },
	{ 0xfc09, KEY_VOLUMEDOWN },
	{ 0xfc54, KEY_CHANNELUP },
	{ 0xfc0b, KEY_CHANNELDOWN },
	{ 0xfc16, KEY_CAMERA },
	{ 0xfc40, KEY_TUNER },	/* ATV/DTV */
	{ 0xfc45, KEY_OPEN },
	{ 0xfc19, KEY_1 },
	{ 0xfc18, KEY_2 },
	{ 0xfc1b, KEY_3 },
	{ 0xfc1a, KEY_4 },
	{ 0xfc58, KEY_5 },
	{ 0xfc59, KEY_6 },
	{ 0xfc15, KEY_7 },
	{ 0xfc14, KEY_8 },
	{ 0xfc17, KEY_9 },
	{ 0xfc44, KEY_ANGLE },	/* Aspect */
	{ 0xfc55, KEY_0 },
	{ 0xfc07, KEY_ZOOM },
	{ 0xfc0a, KEY_REWIND },
	{ 0xfc08, KEY_PLAYPAUSE },
	{ 0xfc4b, KEY_FASTFORWARD },
	{ 0xfc5b, KEY_MUTE },
	{ 0xfc04, KEY_STOP },
	{ 0xfc56, KEY_RECORD },
	{ 0xfc57, KEY_POWER },
	{ 0xfc41, KEY_UNKNOWN },    /* INPUT */
	{ 0xfc00, KEY_UNKNOWN },    /* HD */
593 594
};

595
static struct rc_map_table rc_map_d680_dmb_table[] = {
596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630
	{ 0x0038, KEY_UNKNOWN },	/* TV/AV */
	{ 0x080c, KEY_ZOOM },
	{ 0x0800, KEY_0 },
	{ 0x0001, KEY_1 },
	{ 0x0802, KEY_2 },
	{ 0x0003, KEY_3 },
	{ 0x0804, KEY_4 },
	{ 0x0005, KEY_5 },
	{ 0x0806, KEY_6 },
	{ 0x0007, KEY_7 },
	{ 0x0808, KEY_8 },
	{ 0x0009, KEY_9 },
	{ 0x000a, KEY_MUTE },
	{ 0x0829, KEY_BACK },
	{ 0x0012, KEY_CHANNELUP },
	{ 0x0813, KEY_CHANNELDOWN },
	{ 0x002b, KEY_VOLUMEUP },
	{ 0x082c, KEY_VOLUMEDOWN },
	{ 0x0020, KEY_UP },
	{ 0x0821, KEY_DOWN },
	{ 0x0011, KEY_LEFT },
	{ 0x0810, KEY_RIGHT },
	{ 0x000d, KEY_OK },
	{ 0x081f, KEY_RECORD },
	{ 0x0017, KEY_PLAYPAUSE },
	{ 0x0816, KEY_PLAYPAUSE },
	{ 0x000b, KEY_STOP },
	{ 0x0827, KEY_FASTFORWARD },
	{ 0x0026, KEY_REWIND },
	{ 0x081e, KEY_UNKNOWN },    /* Time Shift */
	{ 0x000e, KEY_UNKNOWN },    /* Snapshot */
	{ 0x082d, KEY_UNKNOWN },    /* Mouse Cursor */
	{ 0x000f, KEY_UNKNOWN },    /* Minimize/Maximize */
	{ 0x0814, KEY_UNKNOWN },    /* Shuffle */
	{ 0x0025, KEY_POWER },
631 632
};

633 634
static int cxusb_dee1601_demod_init(struct dvb_frontend* fe)
{
635
	static u8 clock_config []  = { CLOCK_CTL,  0x38, 0x28 };
636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653
	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 已提交
654 655
static int cxusb_mt352_demod_init(struct dvb_frontend* fe)
{	/* used in both lgz201 and th7579 */
656
	static u8 clock_config []  = { CLOCK_CTL,  0x38, 0x29 };
M
 
Michael Krufky 已提交
657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673
	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;
}

674
static struct cx22702_config cxusb_cx22702_config = {
675
	.demod_address = 0x63,
676
	.output_mode = CX22702_PARALLEL_OUTPUT,
677 678
};

679
static struct lgdt330x_config cxusb_lgdt3303_config = {
680 681 682 683
	.demod_address = 0x0e,
	.demod_chip    = LGDT3303,
};

684 685 686 687 688 689
static struct lgdt330x_config cxusb_aver_lgdt3303_config = {
	.demod_address       = 0x0e,
	.demod_chip          = LGDT3303,
	.clock_polarity_flip = 2,
};

690
static struct mt352_config cxusb_dee1601_config = {
691 692 693 694
	.demod_address = 0x0f,
	.demod_init    = cxusb_dee1601_demod_init,
};

695 696
static struct zl10353_config cxusb_zl10353_dee1601_config = {
	.demod_address = 0x0f,
697
	.parallel_ts = 1,
698 699
};

700
static struct mt352_config cxusb_mt352_config = {
M
 
Michael Krufky 已提交
701 702 703 704 705
	/* used in both lgz201 and th7579 */
	.demod_address = 0x0f,
	.demod_init    = cxusb_mt352_demod_init,
};

706 707
static struct zl10353_config cxusb_zl10353_xc3028_config = {
	.demod_address = 0x0f,
708
	.if2 = 45600,
709 710 711 712
	.no_tuner = 1,
	.parallel_ts = 1,
};

713 714 715 716 717 718 719 720
static struct zl10353_config cxusb_zl10353_xc3028_config_no_i2c_gate = {
	.demod_address = 0x0f,
	.if2 = 45600,
	.no_tuner = 1,
	.parallel_ts = 1,
	.disable_i2c_gate_ctrl = 1,
};

721 722 723 724 725 726 727
static struct mt352_config cxusb_mt352_xc3028_config = {
	.demod_address = 0x0f,
	.if2 = 4560,
	.no_tuner = 1,
	.demod_init = cxusb_mt352_demod_init,
};

728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745
/* FIXME: needs tweaking */
static struct mxl5005s_config aver_a868r_tuner = {
	.i2c_address     = 0x63,
	.if_freq         = 6000000UL,
	.xtal_freq       = CRYSTAL_FREQ_16000000HZ,
	.agc_mode        = MXL_SINGLE_AGC,
	.tracking_filter = MXL_TF_C,
	.rssi_enable     = MXL_RSSI_ENABLE,
	.cap_select      = MXL_CAP_SEL_ENABLE,
	.div_out         = MXL_DIV_OUT_4,
	.clock_out       = MXL_CLOCK_OUT_DISABLE,
	.output_load     = MXL5005S_IF_OUTPUT_LOAD_200_OHM,
	.top		 = MXL5005S_TOP_25P2,
	.mod_mode        = MXL_DIGITAL_MODE,
	.if_mode         = MXL_ZERO_IF,
	.AgcMasterByte   = 0x00,
};

746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763
/* FIXME: needs tweaking */
static struct mxl5005s_config d680_dmb_tuner = {
	.i2c_address     = 0x63,
	.if_freq         = 36125000UL,
	.xtal_freq       = CRYSTAL_FREQ_16000000HZ,
	.agc_mode        = MXL_SINGLE_AGC,
	.tracking_filter = MXL_TF_C,
	.rssi_enable     = MXL_RSSI_ENABLE,
	.cap_select      = MXL_CAP_SEL_ENABLE,
	.div_out         = MXL_DIV_OUT_4,
	.clock_out       = MXL_CLOCK_OUT_DISABLE,
	.output_load     = MXL5005S_IF_OUTPUT_LOAD_200_OHM,
	.top		 = MXL5005S_TOP_25P2,
	.mod_mode        = MXL_DIGITAL_MODE,
	.if_mode         = MXL_ZERO_IF,
	.AgcMasterByte   = 0x00,
};

764 765 766 767 768
static struct max2165_config mygica_d689_max2165_cfg = {
	.i2c_address = 0x60,
	.osc_clk = 20
};

769
/* Callbacks for DVB USB */
770
static int cxusb_fmd1216me_tuner_attach(struct dvb_usb_adapter *adap)
771
{
772
	dvb_attach(simple_tuner_attach, adap->fe_adap[0].fe,
773 774
		   &adap->dev->i2c_adap, 0x61,
		   TUNER_PHILIPS_FMD1216ME_MK3);
775 776 777
	return 0;
}

778
static int cxusb_dee1601_tuner_attach(struct dvb_usb_adapter *adap)
779
{
780
	dvb_attach(dvb_pll_attach, adap->fe_adap[0].fe, 0x61,
781
		   NULL, DVB_PLL_THOMSON_DTT7579);
782 783 784
	return 0;
}

785
static int cxusb_lgz201_tuner_attach(struct dvb_usb_adapter *adap)
M
 
Michael Krufky 已提交
786
{
787
	dvb_attach(dvb_pll_attach, adap->fe_adap[0].fe, 0x61, NULL, DVB_PLL_LG_Z201);
M
 
Michael Krufky 已提交
788 789 790
	return 0;
}

791
static int cxusb_dtt7579_tuner_attach(struct dvb_usb_adapter *adap)
M
 
Michael Krufky 已提交
792
{
793
	dvb_attach(dvb_pll_attach, adap->fe_adap[0].fe, 0x60,
794
		   NULL, DVB_PLL_THOMSON_DTT7579);
795 796 797
	return 0;
}

798
static int cxusb_lgh064f_tuner_attach(struct dvb_usb_adapter *adap)
799
{
800
	dvb_attach(simple_tuner_attach, adap->fe_adap[0].fe,
801
		   &adap->dev->i2c_adap, 0x61, TUNER_LG_TDVS_H06XF);
M
 
Michael Krufky 已提交
802 803 804
	return 0;
}

805 806
static int dvico_bluebird_xc2028_callback(void *ptr, int component,
					  int command, int arg)
807
{
808 809
	struct dvb_usb_adapter *adap = ptr;
	struct dvb_usb_device *d = adap->dev;
810 811 812

	switch (command) {
	case XC2028_TUNER_RESET:
813
		deb_info("%s: XC2028_TUNER_RESET %d\n", __func__, arg);
814 815 816
		cxusb_bluebird_gpio_pulse(d, 0x01, 1);
		break;
	case XC2028_RESET_CLK:
817
		deb_info("%s: XC2028_RESET_CLK %d\n", __func__, arg);
818 819
		break;
	default:
820
		deb_info("%s: unknown command %d, arg %d\n", __func__,
821 822 823 824 825 826 827 828 829 830 831 832 833 834 835
			 command, arg);
		return -EINVAL;
	}

	return 0;
}

static int cxusb_dvico_xc3028_tuner_attach(struct dvb_usb_adapter *adap)
{
	struct dvb_frontend	 *fe;
	struct xc2028_config	  cfg = {
		.i2c_adap  = &adap->dev->i2c_adap,
		.i2c_addr  = 0x61,
	};
	static struct xc2028_ctrl ctl = {
836
		.fname       = XC2028_DEFAULT_FIRMWARE,
837
		.max_len     = 64,
838
		.demod       = XC3028_FE_ZARLINK456,
839 840
	};

841
	/* FIXME: generalize & move to common area */
842
	adap->fe_adap[0].fe->callback = dvico_bluebird_xc2028_callback;
843

844
	fe = dvb_attach(xc2028_attach, adap->fe_adap[0].fe, &cfg);
845 846 847 848 849 850 851 852
	if (fe == NULL || fe->ops.tuner_ops.set_config == NULL)
		return -EIO;

	fe->ops.tuner_ops.set_config(fe, &ctl);

	return 0;
}

853 854
static int cxusb_mxl5003s_tuner_attach(struct dvb_usb_adapter *adap)
{
855
	dvb_attach(mxl5005s_attach, adap->fe_adap[0].fe,
856 857 858 859
		   &adap->dev->i2c_adap, &aver_a868r_tuner);
	return 0;
}

860 861 862
static int cxusb_d680_dmb_tuner_attach(struct dvb_usb_adapter *adap)
{
	struct dvb_frontend *fe;
863
	fe = dvb_attach(mxl5005s_attach, adap->fe_adap[0].fe,
864 865 866 867
			&adap->dev->i2c_adap, &d680_dmb_tuner);
	return (fe == NULL) ? -EIO : 0;
}

868 869 870
static int cxusb_mygica_d689_tuner_attach(struct dvb_usb_adapter *adap)
{
	struct dvb_frontend *fe;
871
	fe = dvb_attach(max2165_attach, adap->fe_adap[0].fe,
872 873 874 875
			&adap->dev->i2c_adap, &mygica_d689_max2165_cfg);
	return (fe == NULL) ? -EIO : 0;
}

876
static int cxusb_cx22702_frontend_attach(struct dvb_usb_adapter *adap)
877
{
878
	u8 b;
879
	if (usb_set_interface(adap->dev->udev, 0, 6) < 0)
880
		err("set interface failed");
881

882
	cxusb_ctrl_msg(adap->dev, CMD_DIGITAL, NULL, 0, &b, 1);
883

884 885 886
	adap->fe_adap[0].fe = dvb_attach(cx22702_attach, &cxusb_cx22702_config,
					 &adap->dev->i2c_adap);
	if ((adap->fe_adap[0].fe) != NULL)
887 888 889 890 891
		return 0;

	return -EIO;
}

892
static int cxusb_lgdt3303_frontend_attach(struct dvb_usb_adapter *adap)
893
{
894
	if (usb_set_interface(adap->dev->udev, 0, 7) < 0)
895 896
		err("set interface failed");

897
	cxusb_ctrl_msg(adap->dev, CMD_DIGITAL, NULL, 0, NULL, 0);
898

899 900 901 902
	adap->fe_adap[0].fe = dvb_attach(lgdt330x_attach,
					 &cxusb_lgdt3303_config,
					 &adap->dev->i2c_adap);
	if ((adap->fe_adap[0].fe) != NULL)
903 904 905 906 907
		return 0;

	return -EIO;
}

908 909
static int cxusb_aver_lgdt3303_frontend_attach(struct dvb_usb_adapter *adap)
{
910
	adap->fe_adap[0].fe = dvb_attach(lgdt330x_attach, &cxusb_aver_lgdt3303_config,
911
			      &adap->dev->i2c_adap);
912
	if (adap->fe_adap[0].fe != NULL)
913 914 915 916 917
		return 0;

	return -EIO;
}

918 919 920 921
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 已提交
922 923
		err("set interface failed");

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

926 927 928
	adap->fe_adap[0].fe = dvb_attach(mt352_attach, &cxusb_mt352_config,
					 &adap->dev->i2c_adap);
	if ((adap->fe_adap[0].fe) != NULL)
M
 
Michael Krufky 已提交
929 930 931 932 933
		return 0;

	return -EIO;
}

934
static int cxusb_dee1601_frontend_attach(struct dvb_usb_adapter *adap)
935
{
936
	if (usb_set_interface(adap->dev->udev, 0, 0) < 0)
937 938
		err("set interface failed");

939
	cxusb_ctrl_msg(adap->dev, CMD_DIGITAL, NULL, 0, NULL, 0);
940

941 942 943 944 945 946 947 948 949
	adap->fe_adap[0].fe = dvb_attach(mt352_attach, &cxusb_dee1601_config,
					 &adap->dev->i2c_adap);
	if ((adap->fe_adap[0].fe) != NULL)
		return 0;

	adap->fe_adap[0].fe = dvb_attach(zl10353_attach,
					 &cxusb_zl10353_dee1601_config,
					 &adap->dev->i2c_adap);
	if ((adap->fe_adap[0].fe) != NULL)
950 951 952 953 954
		return 0;

	return -EIO;
}

955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971
static int cxusb_dualdig4_frontend_attach(struct dvb_usb_adapter *adap)
{
	u8 ircode[4];
	int i;
	struct i2c_msg msg = { .addr = 0x6b, .flags = I2C_M_RD,
			       .buf = ircode, .len = 4 };

	if (usb_set_interface(adap->dev->udev, 0, 1) < 0)
		err("set interface failed");

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

	/* reset the tuner and demodulator */
	cxusb_bluebird_gpio_rw(adap->dev, 0x04, 0);
	cxusb_bluebird_gpio_pulse(adap->dev, 0x01, 1);
	cxusb_bluebird_gpio_pulse(adap->dev, 0x02, 1);

972 973 974 975 976
	adap->fe_adap[0].fe =
		dvb_attach(zl10353_attach,
			   &cxusb_zl10353_xc3028_config_no_i2c_gate,
			   &adap->dev->i2c_adap);
	if ((adap->fe_adap[0].fe) == NULL)
977 978 979
		return -EIO;

	/* try to determine if there is no IR decoder on the I2C bus */
980
	for (i = 0; adap->dev->props.rc.legacy.rc_map_table != NULL && i < 5; i++) {
981 982 983 984 985 986 987
		msleep(20);
		if (cxusb_i2c_xfer(&adap->dev->i2c_adap, &msg, 1) != 1)
			goto no_IR;
		if (ircode[0] == 0 && ircode[1] == 0)
			continue;
		if (ircode[2] + ircode[3] != 0xff) {
no_IR:
988
			adap->dev->props.rc.legacy.rc_map_table = NULL;
989 990 991 992 993 994 995 996
			info("No IR receiver detected on this device.");
			break;
		}
	}

	return 0;
}

997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081
static struct dibx000_agc_config dib7070_agc_config = {
	.band_caps = BAND_UHF | BAND_VHF | BAND_LBAND | BAND_SBAND,

	/*
	 * P_agc_use_sd_mod1=0, P_agc_use_sd_mod2=0, P_agc_freq_pwm_div=5,
	 * P_agc_inv_pwm1=0, P_agc_inv_pwm2=0, P_agc_inh_dc_rv_est=0,
	 * P_agc_time_est=3, P_agc_freeze=0, P_agc_nb_est=5, P_agc_write=0
	 */
	.setup = (0 << 15) | (0 << 14) | (5 << 11) | (0 << 10) | (0 << 9) |
		 (0 << 8) | (3 << 5) | (0 << 4) | (5 << 1) | (0 << 0),
	.inv_gain = 600,
	.time_stabiliz = 10,
	.alpha_level = 0,
	.thlock = 118,
	.wbd_inv = 0,
	.wbd_ref = 3530,
	.wbd_sel = 1,
	.wbd_alpha = 5,
	.agc1_max = 65535,
	.agc1_min = 0,
	.agc2_max = 65535,
	.agc2_min = 0,
	.agc1_pt1 = 0,
	.agc1_pt2 = 40,
	.agc1_pt3 = 183,
	.agc1_slope1 = 206,
	.agc1_slope2 = 255,
	.agc2_pt1 = 72,
	.agc2_pt2 = 152,
	.agc2_slope1 = 88,
	.agc2_slope2 = 90,
	.alpha_mant = 17,
	.alpha_exp = 27,
	.beta_mant = 23,
	.beta_exp = 51,
	.perform_agc_softsplit = 0,
};

static struct dibx000_bandwidth_config dib7070_bw_config_12_mhz = {
	.internal = 60000,
	.sampling = 15000,
	.pll_prediv = 1,
	.pll_ratio = 20,
	.pll_range = 3,
	.pll_reset = 1,
	.pll_bypass = 0,
	.enable_refdiv = 0,
	.bypclk_div = 0,
	.IO_CLK_en_core = 1,
	.ADClkSrc = 1,
	.modulo = 2,
	/* refsel, sel, freq_15k */
	.sad_cfg = (3 << 14) | (1 << 12) | (524 << 0),
	.ifreq = (0 << 25) | 0,
	.timf = 20452225,
	.xtal_hz = 12000000,
};

static struct dib7000p_config cxusb_dualdig4_rev2_config = {
	.output_mode = OUTMODE_MPEG2_PAR_GATED_CLK,
	.output_mpeg2_in_188_bytes = 1,

	.agc_config_count = 1,
	.agc = &dib7070_agc_config,
	.bw  = &dib7070_bw_config_12_mhz,
	.tuner_is_baseband = 1,
	.spur_protect = 1,

	.gpio_dir = 0xfcef,
	.gpio_val = 0x0110,

	.gpio_pwm_pos = DIB7000P_GPIO_DEFAULT_PWM_POS,

	.hostbus_diversity = 1,
};

static int cxusb_dualdig4_rev2_frontend_attach(struct dvb_usb_adapter *adap)
{
	if (usb_set_interface(adap->dev->udev, 0, 1) < 0)
		err("set interface failed");

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

	cxusb_bluebird_gpio_pulse(adap->dev, 0x02, 1);

1082
	if (dib7000p_i2c_enumeration(&adap->dev->i2c_adap, 1, 18,
1083 1084
				     &cxusb_dualdig4_rev2_config) < 0) {
		printk(KERN_WARNING "Unable to enumerate dib7000p\n");
1085
		return -ENODEV;
1086
	}
1087

1088
	adap->fe_adap[0].fe = dvb_attach(dib7000p_init, &adap->dev->i2c_adap, 0x80,
1089
			      &cxusb_dualdig4_rev2_config);
1090
	if (adap->fe_adap[0].fe == NULL)
1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113
		return -EIO;

	return 0;
}

static int dib7070_tuner_reset(struct dvb_frontend *fe, int onoff)
{
	return dib7000p_set_gpio(fe, 8, 0, !onoff);
}

static int dib7070_tuner_sleep(struct dvb_frontend *fe, int onoff)
{
	return 0;
}

static struct dib0070_config dib7070p_dib0070_config = {
	.i2c_address = DEFAULT_DIB0070_I2C_ADDRESS,
	.reset = dib7070_tuner_reset,
	.sleep = dib7070_tuner_sleep,
	.clock_khz = 12000,
};

struct dib0700_adapter_state {
1114
	int (*set_param_save) (struct dvb_frontend *);
1115 1116
};

1117
static int dib7070_set_param_override(struct dvb_frontend *fe)
1118
{
1119
	struct dtv_frontend_properties *p = &fe->dtv_property_cache;
1120 1121 1122 1123
	struct dvb_usb_adapter *adap = fe->dvb->priv;
	struct dib0700_adapter_state *state = adap->priv;

	u16 offset;
1124
	u8 band = BAND_OF_FREQUENCY(p->frequency/1000);
1125
	switch (band) {
1126 1127 1128
	case BAND_VHF: offset = 950; break;
	default:
	case BAND_UHF: offset = 550; break;
1129 1130 1131 1132
	}

	dib7000p_set_wbd_ref(fe, offset + dib0070_wbd_offset(fe));

1133
	return state->set_param_save(fe);
1134 1135 1136 1137 1138
}

static int cxusb_dualdig4_rev2_tuner_attach(struct dvb_usb_adapter *adap)
{
	struct dib0700_adapter_state *st = adap->priv;
1139
	struct i2c_adapter *tun_i2c =
1140
		dib7000p_get_i2c_master(adap->fe_adap[0].fe,
1141
					DIBX000_I2C_INTERFACE_TUNER, 1);
1142

1143
	if (dvb_attach(dib0070_attach, adap->fe_adap[0].fe, tun_i2c,
1144 1145 1146
	    &dib7070p_dib0070_config) == NULL)
		return -ENODEV;

1147 1148
	st->set_param_save = adap->fe_adap[0].fe->ops.tuner_ops.set_params;
	adap->fe_adap[0].fe->ops.tuner_ops.set_params = dib7070_set_param_override;
1149 1150 1151
	return 0;
}

1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163
static int cxusb_nano2_frontend_attach(struct dvb_usb_adapter *adap)
{
	if (usb_set_interface(adap->dev->udev, 0, 1) < 0)
		err("set interface failed");

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

	/* reset the tuner and demodulator */
	cxusb_bluebird_gpio_rw(adap->dev, 0x04, 0);
	cxusb_bluebird_gpio_pulse(adap->dev, 0x01, 1);
	cxusb_bluebird_gpio_pulse(adap->dev, 0x02, 1);

1164 1165 1166 1167
	adap->fe_adap[0].fe = dvb_attach(zl10353_attach,
					 &cxusb_zl10353_xc3028_config,
					 &adap->dev->i2c_adap);
	if ((adap->fe_adap[0].fe) != NULL)
1168 1169
		return 0;

1170 1171 1172 1173
	adap->fe_adap[0].fe = dvb_attach(mt352_attach,
					 &cxusb_mt352_xc3028_config,
					 &adap->dev->i2c_adap);
	if ((adap->fe_adap[0].fe) != NULL)
1174 1175
		return 0;

1176 1177 1178
	return -EIO;
}

1179 1180
static struct lgs8gxx_config d680_lgs8gl5_cfg = {
	.prod = LGS8GXX_PROD_LGS8GL5,
1181
	.demod_address = 0x19,
1182 1183 1184 1185 1186 1187 1188 1189 1190
	.serial_ts = 0,
	.ts_clk_pol = 0,
	.ts_clk_gated = 1,
	.if_clk_freq = 30400, /* 30.4 MHz */
	.if_freq = 5725, /* 5.725 MHz */
	.if_neg_center = 0,
	.ext_adc = 0,
	.adc_signed = 0,
	.if_neg_edge = 0,
1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207
};

static int cxusb_d680_dmb_frontend_attach(struct dvb_usb_adapter *adap)
{
	struct dvb_usb_device *d = adap->dev;
	int n;

	/* Select required USB configuration */
	if (usb_set_interface(d->udev, 0, 0) < 0)
		err("set interface failed");

	/* Unblock all USB pipes */
	usb_clear_halt(d->udev,
		usb_sndbulkpipe(d->udev, d->props.generic_bulk_ctrl_endpoint));
	usb_clear_halt(d->udev,
		usb_rcvbulkpipe(d->udev, d->props.generic_bulk_ctrl_endpoint));
	usb_clear_halt(d->udev,
1208
		usb_rcvbulkpipe(d->udev, d->props.adapter[0].fe[0].stream.endpoint));
1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229

	/* Drain USB pipes to avoid hang after reboot */
	for (n = 0;  n < 5;  n++) {
		cxusb_d680_dmb_drain_message(d);
		cxusb_d680_dmb_drain_video(d);
		msleep(200);
	}

	/* Reset the tuner */
	if (cxusb_d680_dmb_gpio_tuner(d, 0x07, 0) < 0) {
		err("clear tuner gpio failed");
		return -EIO;
	}
	msleep(100);
	if (cxusb_d680_dmb_gpio_tuner(d, 0x07, 1) < 0) {
		err("set tuner gpio failed");
		return -EIO;
	}
	msleep(100);

	/* Attach frontend */
1230 1231
	adap->fe_adap[0].fe = dvb_attach(lgs8gxx_attach, &d680_lgs8gl5_cfg, &d->i2c_adap);
	if (adap->fe_adap[0].fe == NULL)
1232 1233 1234 1235 1236
		return -EIO;

	return 0;
}

1237 1238 1239 1240 1241 1242 1243 1244 1245
static struct atbm8830_config mygica_d689_atbm8830_cfg = {
	.prod = ATBM8830_PROD_8830,
	.demod_address = 0x40,
	.serial_ts = 0,
	.ts_sampling_edge = 1,
	.ts_clk_gated = 0,
	.osc_clk_freq = 30400, /* in kHz */
	.if_freq = 0, /* zero IF */
	.zif_swap_iq = 1,
1246 1247 1248
	.agc_min = 0x2E,
	.agc_max = 0x90,
	.agc_hold_loop = 0,
1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264
};

static int cxusb_mygica_d689_frontend_attach(struct dvb_usb_adapter *adap)
{
	struct dvb_usb_device *d = adap->dev;

	/* Select required USB configuration */
	if (usb_set_interface(d->udev, 0, 0) < 0)
		err("set interface failed");

	/* Unblock all USB pipes */
	usb_clear_halt(d->udev,
		usb_sndbulkpipe(d->udev, d->props.generic_bulk_ctrl_endpoint));
	usb_clear_halt(d->udev,
		usb_rcvbulkpipe(d->udev, d->props.generic_bulk_ctrl_endpoint));
	usb_clear_halt(d->udev,
1265
		usb_rcvbulkpipe(d->udev, d->props.adapter[0].fe[0].stream.endpoint));
1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280


	/* Reset the tuner */
	if (cxusb_d680_dmb_gpio_tuner(d, 0x07, 0) < 0) {
		err("clear tuner gpio failed");
		return -EIO;
	}
	msleep(100);
	if (cxusb_d680_dmb_gpio_tuner(d, 0x07, 1) < 0) {
		err("set tuner gpio failed");
		return -EIO;
	}
	msleep(100);

	/* Attach frontend */
1281
	adap->fe_adap[0].fe = dvb_attach(atbm8830_attach, &mygica_d689_atbm8830_cfg,
1282
		&d->i2c_adap);
1283
	if (adap->fe_adap[0].fe == NULL)
1284 1285 1286 1287 1288
		return -EIO;

	return 0;
}

1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311
/*
 * DViCO has shipped two devices with the same USB ID, but only one of them
 * needs a firmware download.  Check the device class details to see if they
 * have non-default values to decide whether the device is actually cold or
 * not, and forget a match if it turns out we selected the wrong device.
 */
static int bluebird_fx2_identify_state(struct usb_device *udev,
				       struct dvb_usb_device_properties *props,
				       struct dvb_usb_device_description **desc,
				       int *cold)
{
	int wascold = *cold;

	*cold = udev->descriptor.bDeviceClass == 0xff &&
		udev->descriptor.bDeviceSubClass == 0xff &&
		udev->descriptor.bDeviceProtocol == 0xff;

	if (*cold && !wascold)
		*desc = NULL;

	return 0;
}

1312 1313 1314 1315 1316
/*
 * DViCO bluebird firmware needs the "warm" product ID to be patched into the
 * firmware file before download.
 */

1317
static const int dvico_firmware_id_offsets[] = { 6638, 3204 };
1318 1319
static int bluebird_patch_dvico_firmware_download(struct usb_device *udev,
						  const struct firmware *fw)
1320
{
1321 1322 1323 1324
	int pos;

	for (pos = 0; pos < ARRAY_SIZE(dvico_firmware_id_offsets); pos++) {
		int idoff = dvico_firmware_id_offsets[pos];
1325

1326 1327
		if (fw->size < idoff + 4)
			continue;
1328

1329 1330
		if (fw->data[idoff] == (USB_VID_DVICO & 0xff) &&
		    fw->data[idoff + 1] == USB_VID_DVICO >> 8) {
1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342
			struct firmware new_fw;
			u8 *new_fw_data = vmalloc(fw->size);
			int ret;

			if (!new_fw_data)
				return -ENOMEM;

			memcpy(new_fw_data, fw->data, fw->size);
			new_fw.size = fw->size;
			new_fw.data = new_fw_data;

			new_fw_data[idoff + 2] =
1343
				le16_to_cpu(udev->descriptor.idProduct) + 1;
1344
			new_fw_data[idoff + 3] =
1345
				le16_to_cpu(udev->descriptor.idProduct) >> 8;
1346

1347 1348 1349 1350
			ret = usb_cypress_load_firmware(udev, &new_fw,
							CYPRESS_FX2);
			vfree(new_fw_data);
			return ret;
1351
		}
1352 1353 1354 1355 1356
	}

	return -EINVAL;
}

1357
/* DVB USB Driver stuff */
1358 1359 1360 1361 1362
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;
1363
static struct dvb_usb_device_properties cxusb_bluebird_dualdig4_properties;
1364
static struct dvb_usb_device_properties cxusb_bluebird_dualdig4_rev2_properties;
1365
static struct dvb_usb_device_properties cxusb_bluebird_nano2_properties;
1366
static struct dvb_usb_device_properties cxusb_bluebird_nano2_needsfirmware_properties;
1367
static struct dvb_usb_device_properties cxusb_aver_a868r_properties;
1368
static struct dvb_usb_device_properties cxusb_d680_dmb_properties;
1369
static struct dvb_usb_device_properties cxusb_mygica_d689_properties;
1370 1371

static int cxusb_probe(struct usb_interface *intf,
1372
		       const struct usb_device_id *id)
1373
{
1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389
	if (0 == dvb_usb_device_init(intf, &cxusb_medion_properties,
				     THIS_MODULE, NULL, adapter_nr) ||
	    0 == dvb_usb_device_init(intf, &cxusb_bluebird_lgh064f_properties,
				     THIS_MODULE, NULL, adapter_nr) ||
	    0 == dvb_usb_device_init(intf, &cxusb_bluebird_dee1601_properties,
				     THIS_MODULE, NULL, adapter_nr) ||
	    0 == dvb_usb_device_init(intf, &cxusb_bluebird_lgz201_properties,
				     THIS_MODULE, NULL, adapter_nr) ||
	    0 == dvb_usb_device_init(intf, &cxusb_bluebird_dtt7579_properties,
				     THIS_MODULE, NULL, adapter_nr) ||
	    0 == dvb_usb_device_init(intf, &cxusb_bluebird_dualdig4_properties,
				     THIS_MODULE, NULL, adapter_nr) ||
	    0 == dvb_usb_device_init(intf, &cxusb_bluebird_nano2_properties,
				     THIS_MODULE, NULL, adapter_nr) ||
	    0 == dvb_usb_device_init(intf,
				&cxusb_bluebird_nano2_needsfirmware_properties,
1390 1391 1392
				     THIS_MODULE, NULL, adapter_nr) ||
	    0 == dvb_usb_device_init(intf, &cxusb_aver_a868r_properties,
				     THIS_MODULE, NULL, adapter_nr) ||
1393 1394 1395
	    0 == dvb_usb_device_init(intf,
				     &cxusb_bluebird_dualdig4_rev2_properties,
				     THIS_MODULE, NULL, adapter_nr) ||
1396 1397
	    0 == dvb_usb_device_init(intf, &cxusb_d680_dmb_properties,
				     THIS_MODULE, NULL, adapter_nr) ||
1398 1399
	    0 == dvb_usb_device_init(intf, &cxusb_mygica_d689_properties,
				     THIS_MODULE, NULL, adapter_nr) ||
1400
	    0)
1401 1402 1403
		return 0;

	return -EINVAL;
1404 1405 1406
}

static struct usb_device_id cxusb_table [] = {
1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419
	{ 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) },
1420
	{ USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_DUAL_4) },
1421
	{ USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_DVB_T_NANO_2) },
1422
	{ USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_DVB_T_NANO_2_NFW_WARM) },
1423
	{ USB_DEVICE(USB_VID_AVERMEDIA, USB_PID_AVERMEDIA_VOLAR_A868R) },
1424
	{ USB_DEVICE(USB_VID_DVICO, USB_PID_DVICO_BLUEBIRD_DUAL_4_REV_2) },
1425
	{ USB_DEVICE(USB_VID_CONEXANT, USB_PID_CONEXANT_D680_DMB) },
1426
	{ USB_DEVICE(USB_VID_CONEXANT, USB_PID_MYGICA_D689) },
1427
	{}		/* Terminating entry */
1428 1429 1430
};
MODULE_DEVICE_TABLE (usb, cxusb_table);

1431
static struct dvb_usb_device_properties cxusb_medion_properties = {
1432 1433 1434 1435 1436 1437
	.caps = DVB_USB_IS_AN_I2C_ADAPTER,

	.usb_ctrl = CYPRESS_FX2,

	.size_of_priv     = sizeof(struct cxusb_state),

1438 1439 1440
	.num_adapters = 1,
	.adapter = {
		{
1441 1442
		.num_frontends = 1,
		.fe = {{
1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456
			.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,
					}
				}
			},
1457
		}},
1458 1459 1460 1461 1462 1463 1464 1465
		},
	},
	.power_ctrl       = cxusb_power_ctrl,

	.i2c_algo         = &cxusb_i2c_algo,

	.generic_bulk_ctrl_endpoint = 0x01,

1466 1467 1468 1469 1470 1471 1472 1473 1474
	.num_device_descs = 1,
	.devices = {
		{   "Medion MD95700 (MDUSBTV-HYBRID)",
			{ NULL },
			{ &cxusb_table[0], NULL },
		},
	}
};

1475
static struct dvb_usb_device_properties cxusb_bluebird_lgh064f_properties = {
1476 1477
	.caps = DVB_USB_IS_AN_I2C_ADAPTER,

1478 1479 1480
	.usb_ctrl          = DEVICE_SPECIFIC,
	.firmware          = "dvb-usb-bluebird-01.fw",
	.download_firmware = bluebird_patch_dvico_firmware_download,
1481 1482
	/* use usb alt setting 0 for EP4 transfer (dvb-t),
	   use usb alt setting 7 for EP2 transfer (atsc) */
1483 1484 1485

	.size_of_priv     = sizeof(struct cxusb_state),

1486 1487 1488
	.num_adapters = 1,
	.adapter = {
		{
1489 1490
		.num_frontends = 1,
		.fe = {{
1491 1492
			.streaming_ctrl   = cxusb_streaming_ctrl,
			.frontend_attach  = cxusb_lgdt3303_frontend_attach,
1493
			.tuner_attach     = cxusb_lgh064f_tuner_attach,
1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505

			/* parameter for the MPEG2-data transfer */
					.stream = {
						.type = USB_BULK,
				.count = 5,
				.endpoint = 0x02,
				.u = {
					.bulk = {
						.buffersize = 8192,
					}
				}
			},
1506
		}},
1507 1508 1509 1510 1511 1512 1513
		},
	},

	.power_ctrl       = cxusb_bluebird_power_ctrl,

	.i2c_algo         = &cxusb_i2c_algo,

1514 1515
	.rc.legacy = {
		.rc_interval      = 100,
1516 1517
		.rc_map_table     = rc_map_dvico_portable_table,
		.rc_map_size      = ARRAY_SIZE(rc_map_dvico_portable_table),
1518 1519
		.rc_query         = cxusb_rc_query,
	},
1520 1521

	.generic_bulk_ctrl_endpoint = 0x01,
1522 1523 1524 1525 1526 1527 1528 1529 1530 1531

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

1532
static struct dvb_usb_device_properties cxusb_bluebird_dee1601_properties = {
1533 1534
	.caps = DVB_USB_IS_AN_I2C_ADAPTER,

1535 1536 1537
	.usb_ctrl          = DEVICE_SPECIFIC,
	.firmware          = "dvb-usb-bluebird-01.fw",
	.download_firmware = bluebird_patch_dvico_firmware_download,
1538 1539 1540 1541 1542
	/* 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),

1543 1544 1545
	.num_adapters = 1,
	.adapter = {
		{
1546 1547
		.num_frontends = 1,
		.fe = {{
1548 1549 1550 1551
			.streaming_ctrl   = cxusb_streaming_ctrl,
			.frontend_attach  = cxusb_dee1601_frontend_attach,
			.tuner_attach     = cxusb_dee1601_tuner_attach,
			/* parameter for the MPEG2-data transfer */
1552 1553
			.stream = {
				.type = USB_BULK,
1554 1555 1556 1557 1558 1559 1560 1561
				.count = 5,
				.endpoint = 0x04,
				.u = {
					.bulk = {
						.buffersize = 8192,
					}
				}
			},
1562
		}},
1563 1564 1565 1566 1567 1568 1569
		},
	},

	.power_ctrl       = cxusb_bluebird_power_ctrl,

	.i2c_algo         = &cxusb_i2c_algo,

1570 1571
	.rc.legacy = {
		.rc_interval      = 150,
1572 1573
		.rc_map_table     = rc_map_dvico_mce_table,
		.rc_map_size      = ARRAY_SIZE(rc_map_dvico_mce_table),
1574 1575
		.rc_query         = cxusb_rc_query,
	},
1576 1577

	.generic_bulk_ctrl_endpoint = 0x01,
1578

1579
	.num_device_descs = 3,
1580 1581 1582 1583 1584
	.devices = {
		{   "DViCO FusionHDTV DVB-T Dual USB",
			{ &cxusb_table[3], NULL },
			{ &cxusb_table[4], NULL },
		},
1585 1586 1587 1588
		{   "DigitalNow DVB-T Dual USB",
			{ &cxusb_table[9],  NULL },
			{ &cxusb_table[10], NULL },
		},
1589 1590 1591 1592
		{   "DViCO FusionHDTV DVB-T Dual Digital 2",
			{ &cxusb_table[11], NULL },
			{ &cxusb_table[12], NULL },
		},
1593 1594 1595
	}
};

1596
static struct dvb_usb_device_properties cxusb_bluebird_lgz201_properties = {
M
 
Michael Krufky 已提交
1597 1598 1599 1600 1601 1602 1603 1604 1605 1606
	.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),

1607 1608 1609
	.num_adapters = 2,
	.adapter = {
		{
1610 1611
		.num_frontends = 1,
		.fe = {{
1612 1613 1614
			.streaming_ctrl   = cxusb_streaming_ctrl,
			.frontend_attach  = cxusb_mt352_frontend_attach,
			.tuner_attach     = cxusb_lgz201_tuner_attach,
M
 
Michael Krufky 已提交
1615

1616
			/* parameter for the MPEG2-data transfer */
1617 1618
			.stream = {
				.type = USB_BULK,
1619 1620 1621 1622 1623 1624 1625 1626
				.count = 5,
				.endpoint = 0x04,
				.u = {
					.bulk = {
						.buffersize = 8192,
					}
				}
			},
1627
		}},
1628 1629 1630 1631 1632
		},
	},
	.power_ctrl       = cxusb_bluebird_power_ctrl,

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

1634 1635
	.rc.legacy = {
		.rc_interval      = 100,
1636 1637
		.rc_map_table     = rc_map_dvico_portable_table,
		.rc_map_size      = ARRAY_SIZE(rc_map_dvico_portable_table),
1638 1639
		.rc_query         = cxusb_rc_query,
	},
1640 1641

	.generic_bulk_ctrl_endpoint = 0x01,
M
 
Michael Krufky 已提交
1642 1643 1644 1645 1646 1647 1648 1649 1650
	.num_device_descs = 1,
	.devices = {
		{   "DViCO FusionHDTV DVB-T USB (LGZ201)",
			{ &cxusb_table[5], NULL },
			{ &cxusb_table[6], NULL },
		},
	}
};

1651
static struct dvb_usb_device_properties cxusb_bluebird_dtt7579_properties = {
M
 
Michael Krufky 已提交
1652 1653 1654 1655 1656 1657 1658 1659 1660 1661
	.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),

1662 1663 1664
	.num_adapters = 1,
	.adapter = {
		{
1665 1666
		.num_frontends = 1,
		.fe = {{
1667 1668 1669
			.streaming_ctrl   = cxusb_streaming_ctrl,
			.frontend_attach  = cxusb_mt352_frontend_attach,
			.tuner_attach     = cxusb_dtt7579_tuner_attach,
M
 
Michael Krufky 已提交
1670

1671
			/* parameter for the MPEG2-data transfer */
1672 1673
			.stream = {
				.type = USB_BULK,
1674 1675 1676 1677 1678 1679 1680 1681
				.count = 5,
				.endpoint = 0x04,
				.u = {
					.bulk = {
						.buffersize = 8192,
					}
				}
			},
1682
		}},
1683 1684 1685 1686 1687 1688
		},
	},
	.power_ctrl       = cxusb_bluebird_power_ctrl,

	.i2c_algo         = &cxusb_i2c_algo,

1689 1690
	.rc.legacy = {
		.rc_interval      = 100,
1691 1692
		.rc_map_table     = rc_map_dvico_portable_table,
		.rc_map_size      = ARRAY_SIZE(rc_map_dvico_portable_table),
1693 1694
		.rc_query         = cxusb_rc_query,
	},
1695 1696

	.generic_bulk_ctrl_endpoint = 0x01,
M
 
Michael Krufky 已提交
1697 1698 1699 1700 1701 1702 1703 1704 1705 1706

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

1707 1708 1709 1710 1711 1712 1713 1714 1715 1716
static struct dvb_usb_device_properties cxusb_bluebird_dualdig4_properties = {
	.caps = DVB_USB_IS_AN_I2C_ADAPTER,

	.usb_ctrl         = CYPRESS_FX2,

	.size_of_priv     = sizeof(struct cxusb_state),

	.num_adapters = 1,
	.adapter = {
		{
1717 1718
		.num_frontends = 1,
		.fe = {{
1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732
			.streaming_ctrl   = cxusb_streaming_ctrl,
			.frontend_attach  = cxusb_dualdig4_frontend_attach,
			.tuner_attach     = cxusb_dvico_xc3028_tuner_attach,
			/* parameter for the MPEG2-data transfer */
			.stream = {
				.type = USB_BULK,
				.count = 5,
				.endpoint = 0x02,
				.u = {
					.bulk = {
						.buffersize = 8192,
					}
				}
			},
1733
		}},
1734 1735 1736 1737 1738 1739 1740 1741 1742
		},
	},

	.power_ctrl       = cxusb_power_ctrl,

	.i2c_algo         = &cxusb_i2c_algo,

	.generic_bulk_ctrl_endpoint = 0x01,

1743 1744
	.rc.legacy = {
		.rc_interval      = 100,
1745 1746
		.rc_map_table     = rc_map_dvico_mce_table,
		.rc_map_size      = ARRAY_SIZE(rc_map_dvico_mce_table),
1747 1748
		.rc_query         = cxusb_bluebird2_rc_query,
	},
1749 1750 1751 1752 1753 1754 1755 1756 1757 1758

	.num_device_descs = 1,
	.devices = {
		{   "DViCO FusionHDTV DVB-T Dual Digital 4",
			{ NULL },
			{ &cxusb_table[13], NULL },
		},
	}
};

1759 1760 1761 1762
static struct dvb_usb_device_properties cxusb_bluebird_nano2_properties = {
	.caps = DVB_USB_IS_AN_I2C_ADAPTER,

	.usb_ctrl         = CYPRESS_FX2,
1763
	.identify_state   = bluebird_fx2_identify_state,
1764 1765 1766 1767 1768 1769

	.size_of_priv     = sizeof(struct cxusb_state),

	.num_adapters = 1,
	.adapter = {
		{
1770 1771
		.num_frontends = 1,
		.fe = {{
1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785
			.streaming_ctrl   = cxusb_streaming_ctrl,
			.frontend_attach  = cxusb_nano2_frontend_attach,
			.tuner_attach     = cxusb_dvico_xc3028_tuner_attach,
			/* parameter for the MPEG2-data transfer */
			.stream = {
				.type = USB_BULK,
				.count = 5,
				.endpoint = 0x02,
				.u = {
					.bulk = {
						.buffersize = 8192,
					}
				}
			},
1786
		}},
1787 1788 1789 1790 1791 1792 1793 1794 1795
		},
	},

	.power_ctrl       = cxusb_nano2_power_ctrl,

	.i2c_algo         = &cxusb_i2c_algo,

	.generic_bulk_ctrl_endpoint = 0x01,

1796 1797
	.rc.legacy = {
		.rc_interval      = 100,
1798 1799
		.rc_map_table     = rc_map_dvico_portable_table,
		.rc_map_size      = ARRAY_SIZE(rc_map_dvico_portable_table),
1800 1801
		.rc_query         = cxusb_bluebird2_rc_query,
	},
1802 1803 1804 1805 1806 1807 1808 1809 1810 1811

	.num_device_descs = 1,
	.devices = {
		{   "DViCO FusionHDTV DVB-T NANO2",
			{ NULL },
			{ &cxusb_table[14], NULL },
		},
	}
};

1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824
static struct dvb_usb_device_properties cxusb_bluebird_nano2_needsfirmware_properties = {
	.caps = DVB_USB_IS_AN_I2C_ADAPTER,

	.usb_ctrl          = DEVICE_SPECIFIC,
	.firmware          = "dvb-usb-bluebird-02.fw",
	.download_firmware = bluebird_patch_dvico_firmware_download,
	.identify_state    = bluebird_fx2_identify_state,

	.size_of_priv      = sizeof(struct cxusb_state),

	.num_adapters = 1,
	.adapter = {
		{
1825 1826
		.num_frontends = 1,
		.fe = {{
1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840
			.streaming_ctrl   = cxusb_streaming_ctrl,
			.frontend_attach  = cxusb_nano2_frontend_attach,
			.tuner_attach     = cxusb_dvico_xc3028_tuner_attach,
			/* parameter for the MPEG2-data transfer */
			.stream = {
				.type = USB_BULK,
				.count = 5,
				.endpoint = 0x02,
				.u = {
					.bulk = {
						.buffersize = 8192,
					}
				}
			},
1841
		}},
1842 1843 1844 1845 1846 1847 1848 1849 1850
		},
	},

	.power_ctrl       = cxusb_nano2_power_ctrl,

	.i2c_algo         = &cxusb_i2c_algo,

	.generic_bulk_ctrl_endpoint = 0x01,

1851 1852
	.rc.legacy = {
		.rc_interval      = 100,
1853 1854
		.rc_map_table     = rc_map_dvico_portable_table,
		.rc_map_size      = ARRAY_SIZE(rc_map_dvico_portable_table),
1855 1856
		.rc_query         = cxusb_rc_query,
	},
1857 1858 1859 1860 1861 1862 1863 1864 1865 1866

	.num_device_descs = 1,
	.devices = {
		{   "DViCO FusionHDTV DVB-T NANO2 w/o firmware",
			{ &cxusb_table[14], NULL },
			{ &cxusb_table[15], NULL },
		},
	}
};

1867 1868 1869 1870 1871 1872 1873 1874 1875 1876
static struct dvb_usb_device_properties cxusb_aver_a868r_properties = {
	.caps = DVB_USB_IS_AN_I2C_ADAPTER,

	.usb_ctrl         = CYPRESS_FX2,

	.size_of_priv     = sizeof(struct cxusb_state),

	.num_adapters = 1,
	.adapter = {
		{
1877 1878
		.num_frontends = 1,
		.fe = {{
1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892
			.streaming_ctrl   = cxusb_aver_streaming_ctrl,
			.frontend_attach  = cxusb_aver_lgdt3303_frontend_attach,
			.tuner_attach     = cxusb_mxl5003s_tuner_attach,
			/* parameter for the MPEG2-data transfer */
			.stream = {
				.type = USB_BULK,
				.count = 5,
				.endpoint = 0x04,
				.u = {
					.bulk = {
						.buffersize = 8192,
					}
				}
			},
1893
		}},
1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910
		},
	},
	.power_ctrl       = cxusb_aver_power_ctrl,

	.i2c_algo         = &cxusb_i2c_algo,

	.generic_bulk_ctrl_endpoint = 0x01,

	.num_device_descs = 1,
	.devices = {
		{   "AVerMedia AVerTVHD Volar (A868R)",
			{ NULL },
			{ &cxusb_table[16], NULL },
		},
	}
};

1911 1912
static
struct dvb_usb_device_properties cxusb_bluebird_dualdig4_rev2_properties = {
1913 1914 1915 1916 1917 1918 1919 1920 1921
	.caps = DVB_USB_IS_AN_I2C_ADAPTER,

	.usb_ctrl         = CYPRESS_FX2,

	.size_of_priv     = sizeof(struct cxusb_state),

	.num_adapters = 1,
	.adapter = {
		{
1922 1923 1924
		.size_of_priv    = sizeof(struct dib0700_adapter_state),
		.num_frontends = 1,
		.fe = {{
1925 1926 1927
			.streaming_ctrl  = cxusb_streaming_ctrl,
			.frontend_attach = cxusb_dualdig4_rev2_frontend_attach,
			.tuner_attach    = cxusb_dualdig4_rev2_tuner_attach,
1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938
			/* parameter for the MPEG2-data transfer */
			.stream = {
				.type = USB_BULK,
				.count = 7,
				.endpoint = 0x02,
				.u = {
					.bulk = {
						.buffersize = 4096,
					}
				}
			},
1939
		}},
1940 1941 1942 1943 1944 1945 1946 1947 1948
		},
	},

	.power_ctrl       = cxusb_bluebird_power_ctrl,

	.i2c_algo         = &cxusb_i2c_algo,

	.generic_bulk_ctrl_endpoint = 0x01,

1949 1950
	.rc.legacy = {
		.rc_interval      = 100,
1951 1952
		.rc_map_table     = rc_map_dvico_mce_table,
		.rc_map_size      = ARRAY_SIZE(rc_map_dvico_mce_table),
1953 1954
		.rc_query         = cxusb_rc_query,
	},
1955 1956 1957 1958 1959 1960 1961 1962 1963 1964

	.num_device_descs = 1,
	.devices = {
		{   "DViCO FusionHDTV DVB-T Dual Digital 4 (rev 2)",
			{ NULL },
			{ &cxusb_table[17], NULL },
		},
	}
};

1965 1966 1967 1968 1969 1970 1971 1972 1973 1974
static struct dvb_usb_device_properties cxusb_d680_dmb_properties = {
	.caps = DVB_USB_IS_AN_I2C_ADAPTER,

	.usb_ctrl         = CYPRESS_FX2,

	.size_of_priv     = sizeof(struct cxusb_state),

	.num_adapters = 1,
	.adapter = {
		{
1975 1976
		.num_frontends = 1,
		.fe = {{
1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991
			.streaming_ctrl   = cxusb_d680_dmb_streaming_ctrl,
			.frontend_attach  = cxusb_d680_dmb_frontend_attach,
			.tuner_attach     = cxusb_d680_dmb_tuner_attach,

			/* parameter for the MPEG2-data transfer */
			.stream = {
				.type = USB_BULK,
				.count = 5,
				.endpoint = 0x02,
				.u = {
					.bulk = {
						.buffersize = 8192,
					}
				}
			},
1992
		}},
1993 1994 1995 1996 1997 1998 1999 2000 2001
		},
	},

	.power_ctrl       = cxusb_d680_dmb_power_ctrl,

	.i2c_algo         = &cxusb_i2c_algo,

	.generic_bulk_ctrl_endpoint = 0x01,

2002 2003
	.rc.legacy = {
		.rc_interval      = 100,
2004 2005
		.rc_map_table     = rc_map_d680_dmb_table,
		.rc_map_size      = ARRAY_SIZE(rc_map_d680_dmb_table),
2006 2007
		.rc_query         = cxusb_d680_dmb_rc_query,
	},
2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018

	.num_device_descs = 1,
	.devices = {
		{
			"Conexant DMB-TH Stick",
			{ NULL },
			{ &cxusb_table[18], NULL },
		},
	}
};

2019 2020 2021 2022 2023 2024 2025 2026 2027 2028
static struct dvb_usb_device_properties cxusb_mygica_d689_properties = {
	.caps = DVB_USB_IS_AN_I2C_ADAPTER,

	.usb_ctrl         = CYPRESS_FX2,

	.size_of_priv     = sizeof(struct cxusb_state),

	.num_adapters = 1,
	.adapter = {
		{
2029 2030
		.num_frontends = 1,
		.fe = {{
2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045
			.streaming_ctrl   = cxusb_d680_dmb_streaming_ctrl,
			.frontend_attach  = cxusb_mygica_d689_frontend_attach,
			.tuner_attach     = cxusb_mygica_d689_tuner_attach,

			/* parameter for the MPEG2-data transfer */
			.stream = {
				.type = USB_BULK,
				.count = 5,
				.endpoint = 0x02,
				.u = {
					.bulk = {
						.buffersize = 8192,
					}
				}
			},
2046
		}},
2047 2048 2049 2050 2051 2052 2053 2054 2055
		},
	},

	.power_ctrl       = cxusb_d680_dmb_power_ctrl,

	.i2c_algo         = &cxusb_i2c_algo,

	.generic_bulk_ctrl_endpoint = 0x01,

2056 2057
	.rc.legacy = {
		.rc_interval      = 100,
2058 2059
		.rc_map_table     = rc_map_d680_dmb_table,
		.rc_map_size      = ARRAY_SIZE(rc_map_d680_dmb_table),
2060 2061
		.rc_query         = cxusb_d680_dmb_rc_query,
	},
2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072

	.num_device_descs = 1,
	.devices = {
		{
			"Mygica D689 DMB-TH",
			{ NULL },
			{ &cxusb_table[19], NULL },
		},
	}
};

2073
static struct usb_driver cxusb_driver = {
2074
	.name		= "dvb_usb_cxusb",
2075
	.probe		= cxusb_probe,
2076
	.disconnect     = dvb_usb_device_exit,
2077 2078 2079
	.id_table	= cxusb_table,
};

2080
module_usb_driver(cxusb_driver);
2081 2082

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