em28xx-dvb.c 33.4 KB
Newer Older
1 2 3
/*
 DVB device driver for em28xx

4
 (c) 2008-2011 Mauro Carvalho Chehab <mchehab@infradead.org>
5

6 7
 (c) 2008 Devin Heitmueller <devin.heitmueller@gmail.com>
	- Fixes for the driver to properly work with HVR-950
8
	- Fixes for the driver to properly work with Pinnacle PCTV HD Pro Stick
9
	- Fixes for the driver to properly work with AMD ATI TV Wonder HD 600
10

11 12 13
 (c) 2008 Aidan Thornton <makosoft@googlemail.com>

 Based on cx88-dvb, saa7134-dvb and videobuf-dvb originally written by:
14 15 16 17 18 19 20 21 22
	(c) 2004, 2005 Chris Pascoe <c.pascoe@itee.uq.edu.au>
	(c) 2004 Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]

 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; either version 2 of the License.
 */

#include <linux/kernel.h>
23
#include <linux/slab.h>
24 25 26 27 28
#include <linux/usb.h>

#include "em28xx.h"
#include <media/v4l2-common.h>
#include <media/videobuf-vmalloc.h>
29 30
#include <media/tuner.h>
#include "tuner-simple.h"
31
#include <linux/gpio.h>
32 33

#include "lgdt330x.h"
34
#include "lgdt3305.h"
35
#include "zl10353.h"
36
#include "s5h1409.h"
37 38
#include "mt352.h"
#include "mt352_priv.h" /* FIXME */
39
#include "tda1002x.h"
40
#include "tda18271.h"
41
#include "s921.h"
42
#include "drxd.h"
43
#include "cxd2820r.h"
44 45
#include "tda18271c2dd.h"
#include "drxk.h"
46 47
#include "tda10071.h"
#include "a8293.h"
A
Aivar Päkk 已提交
48
#include "qt1010.h"
49 50 51 52 53 54 55 56 57 58 59 60 61

MODULE_DESCRIPTION("driver for em28xx based DVB cards");
MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@infradead.org>");
MODULE_LICENSE("GPL");

static unsigned int debug;
module_param(debug, int, 0644);
MODULE_PARM_DESC(debug, "enable debug messages [dvb]");

DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr);

#define dprintk(level, fmt, arg...) do {			\
if (debug >= level) 						\
62
	printk(KERN_DEBUG "%s/2-dvb: " fmt, dev->name, ## arg);	\
63 64
} while (0)

65
struct em28xx_dvb {
66
	struct dvb_frontend        *fe[2];
67 68 69 70 71 72 73 74 75 76 77 78

	/* feed count management */
	struct mutex               lock;
	int                        nfeeds;

	/* general boilerplate stuff */
	struct dvb_adapter         adapter;
	struct dvb_demux           demux;
	struct dmxdev              dmxdev;
	struct dmx_frontend        fe_hw;
	struct dmx_frontend        fe_mem;
	struct dvb_net             net;
79

80
	/* Due to DRX-K - probably need changes */
81 82
	int (*gate_ctrl)(struct dvb_frontend *, int);
	struct semaphore      pll_mutex;
83
	bool			dont_attach_fe1;
84
	int			lna_gpio;
85 86 87 88 89
};


static inline void print_err_status(struct em28xx *dev,
				     int packet, int status)
90
{
91
	char *errmsg = "Unknown";
92

93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
	switch (status) {
	case -ENOENT:
		errmsg = "unlinked synchronuously";
		break;
	case -ECONNRESET:
		errmsg = "unlinked asynchronuously";
		break;
	case -ENOSR:
		errmsg = "Buffer error (overrun)";
		break;
	case -EPIPE:
		errmsg = "Stalled (device not responding)";
		break;
	case -EOVERFLOW:
		errmsg = "Babble (bad cable?)";
		break;
	case -EPROTO:
		errmsg = "Bit-stuff error (bad cable?)";
		break;
	case -EILSEQ:
		errmsg = "CRC/Timeout (could be anything)";
		break;
	case -ETIME:
		errmsg = "Device does not respond";
		break;
	}
	if (packet < 0) {
		dprintk(1, "URB status %d [%s].\n", status, errmsg);
	} else {
122 123
		dprintk(1, "URB packet %d, status %d [%s].\n",
			packet, status, errmsg);
124 125
	}
}
126

127
static inline int em28xx_dvb_isoc_copy(struct em28xx *dev, struct urb *urb)
128 129
{
	int i;
130

131 132
	if (!dev)
		return 0;
133

134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
	if ((dev->state & DEV_DISCONNECTED) || (dev->state & DEV_MISCONFIGURED))
		return 0;

	if (urb->status < 0) {
		print_err_status(dev, -1, urb->status);
		if (urb->status == -ENOENT)
			return 0;
	}

	for (i = 0; i < urb->number_of_packets; i++) {
		int status = urb->iso_frame_desc[i].status;

		if (status < 0) {
			print_err_status(dev, i, status);
			if (urb->iso_frame_desc[i].status != -EPROTO)
				continue;
		}

		dvb_dmx_swfilter(&dev->dvb->demux, urb->transfer_buffer +
				 urb->iso_frame_desc[i].offset,
				 urb->iso_frame_desc[i].actual_length);
	}

	return 0;
}

160
static int em28xx_start_streaming(struct em28xx_dvb *dvb)
161
{
162
	int rc;
163
	struct em28xx *dev = dvb->adapter.priv;
164
	int max_dvb_packet_size;
165

166
	usb_set_interface(dev->udev, 0, dev->dvb_alt);
167 168 169
	rc = em28xx_set_mode(dev, EM28XX_DIGITAL_MODE);
	if (rc < 0)
		return rc;
170

171
	max_dvb_packet_size = dev->dvb_max_pkt_size;
172 173
	if (max_dvb_packet_size < 0)
		return max_dvb_packet_size;
174
	dprintk(1, "Using %d buffers each with %d x %d bytes\n",
175
		EM28XX_DVB_NUM_BUFS,
176
		EM28XX_DVB_MAX_PACKETS,
177
		max_dvb_packet_size);
178

179 180 181
	return em28xx_init_isoc(dev, EM28XX_DIGITAL_MODE,
				EM28XX_DVB_MAX_PACKETS, EM28XX_DVB_NUM_BUFS,
				max_dvb_packet_size, em28xx_dvb_isoc_copy);
182 183
}

184
static int em28xx_stop_streaming(struct em28xx_dvb *dvb)
185
{
186 187
	struct em28xx *dev = dvb->adapter.priv;

188
	em28xx_stop_urbs(dev);
189

190
	em28xx_set_mode(dev, EM28XX_SUSPEND);
191

192 193 194
	return 0;
}

195
static int em28xx_start_feed(struct dvb_demux_feed *feed)
196 197 198 199 200 201 202 203 204 205 206 207 208
{
	struct dvb_demux *demux  = feed->demux;
	struct em28xx_dvb *dvb = demux->priv;
	int rc, ret;

	if (!demux->dmx.frontend)
		return -EINVAL;

	mutex_lock(&dvb->lock);
	dvb->nfeeds++;
	rc = dvb->nfeeds;

	if (dvb->nfeeds == 1) {
209
		ret = em28xx_start_streaming(dvb);
210 211
		if (ret < 0)
			rc = ret;
212 213 214 215 216 217
	}

	mutex_unlock(&dvb->lock);
	return rc;
}

218
static int em28xx_stop_feed(struct dvb_demux_feed *feed)
219 220 221 222 223 224 225
{
	struct dvb_demux *demux  = feed->demux;
	struct em28xx_dvb *dvb = demux->priv;
	int err = 0;

	mutex_lock(&dvb->lock);
	dvb->nfeeds--;
226 227

	if (0 == dvb->nfeeds)
228
		err = em28xx_stop_streaming(dvb);
229

230 231 232 233 234
	mutex_unlock(&dvb->lock);
	return err;
}


235 236 237 238 239 240 241 242 243

/* ------------------------------------------------------------------ */
static int em28xx_dvb_bus_ctrl(struct dvb_frontend *fe, int acquire)
{
	struct em28xx *dev = fe->dvb->priv;

	if (acquire)
		return em28xx_set_mode(dev, EM28XX_DIGITAL_MODE);
	else
244
		return em28xx_set_mode(dev, EM28XX_SUSPEND);
245 246
}

247 248
/* ------------------------------------------------------------------ */

249 250 251 252
static struct lgdt330x_config em2880_lgdt3303_dev = {
	.demod_address = 0x0e,
	.demod_chip = LGDT3303,
};
253

254 255 256 257 258 259 260 261 262 263 264 265
static struct lgdt3305_config em2870_lgdt3304_dev = {
	.i2c_addr           = 0x0e,
	.demod_chip         = LGDT3304,
	.spectral_inversion = 1,
	.deny_i2c_rptr      = 1,
	.mpeg_mode          = LGDT3305_MPEG_PARALLEL,
	.tpclk_edge         = LGDT3305_TPCLK_FALLING_EDGE,
	.tpvalid_polarity   = LGDT3305_TP_VALID_HIGH,
	.vsb_if_khz         = 3250,
	.qam_if_khz         = 4000,
};

266 267 268 269
static struct s921_config sharp_isdbt = {
	.demod_address = 0x30 >> 1
};

270 271 272 273 274 275 276
static struct zl10353_config em28xx_zl10353_with_xc3028 = {
	.demod_address = (0x1e >> 1),
	.no_tuner = 1,
	.parallel_ts = 1,
	.if2 = 45600,
};

277 278 279 280 281 282 283 284 285
static struct s5h1409_config em28xx_s5h1409_with_xc3028 = {
	.demod_address = 0x32 >> 1,
	.output_mode   = S5H1409_PARALLEL_OUTPUT,
	.gpio          = S5H1409_GPIO_OFF,
	.inversion     = S5H1409_INVERSION_OFF,
	.status_mode   = S5H1409_DEMODLOCKING,
	.mpeg_timing   = S5H1409_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK
};

286 287 288 289 290 291 292 293 294 295 296
static struct tda18271_std_map kworld_a340_std_map = {
	.atsc_6   = { .if_freq = 3250, .agc_mode = 3, .std = 0,
		      .if_lvl = 1, .rfagc_top = 0x37, },
	.qam_6    = { .if_freq = 4000, .agc_mode = 3, .std = 1,
		      .if_lvl = 1, .rfagc_top = 0x37, },
};

static struct tda18271_config kworld_a340_config = {
	.std_map           = &kworld_a340_std_map,
};

297
static struct zl10353_config em28xx_zl10353_xc3028_no_i2c_gate = {
298 299 300 301 302 303 304
	.demod_address = (0x1e >> 1),
	.no_tuner = 1,
	.disable_i2c_gate_ctrl = 1,
	.parallel_ts = 1,
	.if2 = 45600,
};

305
static struct drxd_config em28xx_drxd = {
306 307 308 309 310 311
	.demod_address = 0x70,
	.demod_revision = 0xa2,
	.pll_type = DRXD_PLL_NONE,
	.clock = 12000,
	.insert_rs_byte = 1,
	.IF = 42800000,
312
	.disable_i2c_gate_ctrl = 1,
313 314
};

315
static struct drxk_config terratec_h5_drxk = {
316
	.adr = 0x29,
317
	.single_master = 1,
318
	.no_i2c_bridge = 1,
319
	.microcode_name = "dvb-usb-terratec-h5-drxk.fw",
320
	.qam_demod_parameter_count = 2,
321
	.load_firmware_sync = true,
322 323
};

324
static struct drxk_config hauppauge_930c_drxk = {
325 326 327 328 329
	.adr = 0x29,
	.single_master = 1,
	.no_i2c_bridge = 1,
	.microcode_name = "dvb-usb-hauppauge-hvr930c-drxk.fw",
	.chunk_size = 56,
330
	.qam_demod_parameter_count = 2,
331
	.load_firmware_sync = true,
332 333
};

334
static struct drxk_config terratec_htc_stick_drxk = {
335 336 337 338 339
	.adr = 0x29,
	.single_master = 1,
	.no_i2c_bridge = 1,
	.microcode_name = "dvb-usb-terratec-htc-stick-drxk.fw",
	.chunk_size = 54,
340
	.qam_demod_parameter_count = 2,
341 342 343 344
	/* Required for the antenna_gpio to disable LNA. */
	.antenna_dvbt = true,
	/* The windows driver uses the same. This will disable LNA. */
	.antenna_gpio = 0x6,
345
	.load_firmware_sync = true,
346 347
};

348
static struct drxk_config maxmedia_ub425_tc_drxk = {
349 350 351
	.adr = 0x29,
	.single_master = 1,
	.no_i2c_bridge = 1,
352
	.load_firmware_sync = true,
353 354
};

355
static struct drxk_config pctv_520e_drxk = {
356 357 358
	.adr = 0x29,
	.single_master = 1,
	.microcode_name = "dvb-demod-drxk-pctv.fw",
359
	.qam_demod_parameter_count = 2,
360
	.chunk_size = 58,
361 362
	.antenna_dvbt = true, /* disable LNA */
	.antenna_gpio = (1 << 2), /* disable LNA */
363
	.load_firmware_sync = true,
364 365
};

366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383
static int drxk_gate_ctrl(struct dvb_frontend *fe, int enable)
{
	struct em28xx_dvb *dvb = fe->sec_priv;
	int status;

	if (!dvb)
		return -EINVAL;

	if (enable) {
		down(&dvb->pll_mutex);
		status = dvb->gate_ctrl(fe, 1);
	} else {
		status = dvb->gate_ctrl(fe, 0);
		up(&dvb->pll_mutex);
	}
	return status;
}

384 385 386 387 388
static void hauppauge_hvr930c_init(struct em28xx *dev)
{
	int i;

	struct em28xx_reg_seq hauppauge_hvr930c_init[] = {
389 390 391
		{EM2874_R80_GPIO,	0xff,	0xff,	0x65},
		{EM2874_R80_GPIO,	0xfb,	0xff,	0x32},
		{EM2874_R80_GPIO,	0xff,	0xff,	0xb8},
392 393 394
		{ -1,                   -1,     -1,     -1},
	};
	struct em28xx_reg_seq hauppauge_hvr930c_end[] = {
395 396 397 398 399 400 401 402 403 404 405
		{EM2874_R80_GPIO,	0xef,	0xff,	0x01},
		{EM2874_R80_GPIO,	0xaf,	0xff,	0x65},
		{EM2874_R80_GPIO,	0xef,	0xff,	0x76},
		{EM2874_R80_GPIO,	0xef,	0xff,	0x01},
		{EM2874_R80_GPIO,	0xcf,	0xff,	0x0b},
		{EM2874_R80_GPIO,	0xef,	0xff,	0x40},

		{EM2874_R80_GPIO,	0xcf,	0xff,	0x65},
		{EM2874_R80_GPIO,	0xef,	0xff,	0x65},
		{EM2874_R80_GPIO,	0xcf,	0xff,	0x0b},
		{EM2874_R80_GPIO,	0xef,	0xff,	0x65},
406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450

		{ -1,                   -1,     -1,     -1},
	};

	struct {
		unsigned char r[4];
		int len;
	} regs[] = {
		{{ 0x06, 0x02, 0x00, 0x31 }, 4},
		{{ 0x01, 0x02 }, 2},
		{{ 0x01, 0x02, 0x00, 0xc6 }, 4},
		{{ 0x01, 0x00 }, 2},
		{{ 0x01, 0x00, 0xff, 0xaf }, 4},
		{{ 0x01, 0x00, 0x03, 0xa0 }, 4},
		{{ 0x01, 0x00 }, 2},
		{{ 0x01, 0x00, 0x73, 0xaf }, 4},
		{{ 0x04, 0x00 }, 2},
		{{ 0x00, 0x04 }, 2},
		{{ 0x00, 0x04, 0x00, 0x0a }, 4},
		{{ 0x04, 0x14 }, 2},
		{{ 0x04, 0x14, 0x00, 0x00 }, 4},
	};

	em28xx_gpio_set(dev, hauppauge_hvr930c_init);
	em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x40);
	msleep(10);
	em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x44);
	msleep(10);

	dev->i2c_client.addr = 0x82 >> 1;

	for (i = 0; i < ARRAY_SIZE(regs); i++)
		i2c_master_send(&dev->i2c_client, regs[i].r, regs[i].len);
	em28xx_gpio_set(dev, hauppauge_hvr930c_end);

	msleep(100);

	em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x44);
	msleep(30);

	em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x45);
	msleep(10);

}

451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498
static void terratec_h5_init(struct em28xx *dev)
{
	int i;
	struct em28xx_reg_seq terratec_h5_init[] = {
		{EM28XX_R08_GPIO,	0xff,	0xff,	10},
		{EM2874_R80_GPIO,	0xf6,	0xff,	100},
		{EM2874_R80_GPIO,	0xf2,	0xff,	50},
		{EM2874_R80_GPIO,	0xf6,	0xff,	100},
		{ -1,                   -1,     -1,     -1},
	};
	struct em28xx_reg_seq terratec_h5_end[] = {
		{EM2874_R80_GPIO,	0xe6,	0xff,	100},
		{EM2874_R80_GPIO,	0xa6,	0xff,	50},
		{EM2874_R80_GPIO,	0xe6,	0xff,	100},
		{ -1,                   -1,     -1,     -1},
	};
	struct {
		unsigned char r[4];
		int len;
	} regs[] = {
		{{ 0x06, 0x02, 0x00, 0x31 }, 4},
		{{ 0x01, 0x02 }, 2},
		{{ 0x01, 0x02, 0x00, 0xc6 }, 4},
		{{ 0x01, 0x00 }, 2},
		{{ 0x01, 0x00, 0xff, 0xaf }, 4},
		{{ 0x01, 0x00, 0x03, 0xa0 }, 4},
		{{ 0x01, 0x00 }, 2},
		{{ 0x01, 0x00, 0x73, 0xaf }, 4},
		{{ 0x04, 0x00 }, 2},
		{{ 0x00, 0x04 }, 2},
		{{ 0x00, 0x04, 0x00, 0x0a }, 4},
		{{ 0x04, 0x14 }, 2},
		{{ 0x04, 0x14, 0x00, 0x00 }, 4},
	};

	em28xx_gpio_set(dev, terratec_h5_init);
	em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x40);
	msleep(10);
	em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x45);
	msleep(10);

	dev->i2c_client.addr = 0x82 >> 1;

	for (i = 0; i < ARRAY_SIZE(regs); i++)
		i2c_master_send(&dev->i2c_client, regs[i].r, regs[i].len);
	em28xx_gpio_set(dev, terratec_h5_end);
};

499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522
static void terratec_htc_stick_init(struct em28xx *dev)
{
	int i;

	/*
	 * GPIO configuration:
	 * 0xff: unknown (does not affect DVB-T).
	 * 0xf6: DRX-K (demodulator).
	 * 0xe6: unknown (does not affect DVB-T).
	 * 0xb6: unknown (does not affect DVB-T).
	 */
	struct em28xx_reg_seq terratec_htc_stick_init[] = {
		{EM28XX_R08_GPIO,	0xff,	0xff,	10},
		{EM2874_R80_GPIO,	0xf6,	0xff,	100},
		{EM2874_R80_GPIO,	0xe6,	0xff,	50},
		{EM2874_R80_GPIO,	0xf6,	0xff,	100},
		{ -1,                   -1,     -1,     -1},
	};
	struct em28xx_reg_seq terratec_htc_stick_end[] = {
		{EM2874_R80_GPIO,	0xb6,	0xff,	100},
		{EM2874_R80_GPIO,	0xf6,	0xff,	50},
		{ -1,                   -1,     -1,     -1},
	};

523 524 525 526
	/*
	 * Init the analog decoder (not yet supported), but
	 * it's probably still a good idea.
	 */
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
	struct {
		unsigned char r[4];
		int len;
	} regs[] = {
		{{ 0x06, 0x02, 0x00, 0x31 }, 4},
		{{ 0x01, 0x02 }, 2},
		{{ 0x01, 0x02, 0x00, 0xc6 }, 4},
		{{ 0x01, 0x00 }, 2},
		{{ 0x01, 0x00, 0xff, 0xaf }, 4},
	};

	em28xx_gpio_set(dev, terratec_htc_stick_init);

	em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x40);
	msleep(10);
	em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x44);
	msleep(10);

	dev->i2c_client.addr = 0x82 >> 1;

	for (i = 0; i < ARRAY_SIZE(regs); i++)
		i2c_master_send(&dev->i2c_client, regs[i].r, regs[i].len);

	em28xx_gpio_set(dev, terratec_htc_stick_end);
};

553 554 555 556 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 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610
static void terratec_htc_usb_xs_init(struct em28xx *dev)
{
	int i;

	struct em28xx_reg_seq terratec_htc_usb_xs_init[] = {
		{EM28XX_R08_GPIO,	0xff,	0xff,	10},
		{EM2874_R80_GPIO,	0xb2,	0xff,	100},
		{EM2874_R80_GPIO,	0xb2,	0xff,	50},
		{EM2874_R80_GPIO,	0xb6,	0xff,	100},
		{ -1,                   -1,     -1,     -1},
	};
	struct em28xx_reg_seq terratec_htc_usb_xs_end[] = {
		{EM2874_R80_GPIO,	0xa6,	0xff,	100},
		{EM2874_R80_GPIO,	0xa6,	0xff,	50},
		{EM2874_R80_GPIO,	0xe6,	0xff,	100},
		{ -1,                   -1,     -1,     -1},
	};

	/*
	 * Init the analog decoder (not yet supported), but
	 * it's probably still a good idea.
	 */
	struct {
		unsigned char r[4];
		int len;
	} regs[] = {
		{{ 0x06, 0x02, 0x00, 0x31 }, 4},
		{{ 0x01, 0x02 }, 2},
		{{ 0x01, 0x02, 0x00, 0xc6 }, 4},
		{{ 0x01, 0x00 }, 2},
		{{ 0x01, 0x00, 0xff, 0xaf }, 4},
		{{ 0x01, 0x00, 0x03, 0xa0 }, 4},
		{{ 0x01, 0x00 }, 2},
		{{ 0x01, 0x00, 0x73, 0xaf }, 4},
		{{ 0x04, 0x00 }, 2},
		{{ 0x00, 0x04 }, 2},
		{{ 0x00, 0x04, 0x00, 0x0a }, 4},
		{{ 0x04, 0x14 }, 2},
		{{ 0x04, 0x14, 0x00, 0x00 }, 4},
	};

	em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x40);

	em28xx_gpio_set(dev, terratec_htc_usb_xs_init);

	em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x40);
	msleep(10);
	em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x44);
	msleep(10);

	dev->i2c_client.addr = 0x82 >> 1;

	for (i = 0; i < ARRAY_SIZE(regs); i++)
		i2c_master_send(&dev->i2c_client, regs[i].r, regs[i].len);

	em28xx_gpio_set(dev, terratec_htc_usb_xs_end);
};

611 612 613
static void pctv_520e_init(struct em28xx *dev)
{
	/*
614 615
	 * Init AVF4910B analog decoder. Looks like I2C traffic to
	 * digital demodulator and tuner are routed via AVF4910B.
616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637
	 */
	int i;
	struct {
		unsigned char r[4];
		int len;
	} regs[] = {
		{{ 0x06, 0x02, 0x00, 0x31 }, 4},
		{{ 0x01, 0x02 }, 2},
		{{ 0x01, 0x02, 0x00, 0xc6 }, 4},
		{{ 0x01, 0x00 }, 2},
		{{ 0x01, 0x00, 0xff, 0xaf }, 4},
		{{ 0x01, 0x00, 0x03, 0xa0 }, 4},
		{{ 0x01, 0x00 }, 2},
		{{ 0x01, 0x00, 0x73, 0xaf }, 4},
	};

	dev->i2c_client.addr = 0x82 >> 1; /* 0x41 */

	for (i = 0; i < ARRAY_SIZE(regs); i++)
		i2c_master_send(&dev->i2c_client, regs[i].r, regs[i].len);
};

638
static int em28xx_pctv_290e_set_lna(struct dvb_frontend *fe)
639
{
640
	struct dtv_frontend_properties *c = &fe->dtv_property_cache;
641 642 643 644 645 646
	struct em28xx *dev = fe->dvb->priv;
#ifdef CONFIG_GPIOLIB
	struct em28xx_dvb *dvb = dev->dvb;
	int ret;
	unsigned long flags;

647 648
	if (c->lna == 1)
		flags = GPIOF_OUT_INIT_HIGH; /* enable LNA */
649
	else
650
		flags = GPIOF_OUT_INIT_LOW; /* disable LNA */
651 652 653 654 655 656 657 658 659

	ret = gpio_request_one(dvb->lna_gpio, flags, NULL);
	if (ret)
		em28xx_errdev("gpio request failed %d\n", ret);
	else
		gpio_free(dvb->lna_gpio);

	return ret;
#else
660 661
	dev_warn(&dev->udev->dev, "%s: LNA control is disabled (lna=%u)\n",
			KBUILD_MODNAME, c->lna);
662 663 664 665
	return 0;
#endif
}

666
static int em28xx_mt352_terratec_xs_init(struct dvb_frontend *fe)
667 668 669 670 671 672 673 674 675 676 677
{
	/* Values extracted from a USB trace of the Terratec Windows driver */
	static u8 clock_config[]   = { CLOCK_CTL,  0x38, 0x2c };
	static u8 reset[]          = { RESET,      0x80 };
	static u8 adc_ctl_1_cfg[]  = { ADC_CTL_1,  0x40 };
	static u8 agc_cfg[]        = { AGC_TARGET, 0x28, 0xa0 };
	static u8 input_freq_cfg[] = { INPUT_FREQ_1, 0x31, 0xb8 };
	static u8 rs_err_cfg[]     = { RS_ERR_PER_1, 0x00, 0x4d };
	static u8 capt_range_cfg[] = { CAPT_RANGE, 0x32 };
	static u8 trl_nom_cfg[]    = { TRL_NOMINAL_RATE_1, 0x64, 0x00 };
	static u8 tps_given_cfg[]  = { TPS_GIVEN_1, 0x40, 0x80, 0x50 };
678
	static u8 tuner_go[]       = { TUNER_GO, 0x01};
679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697

	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, input_freq_cfg, sizeof(input_freq_cfg));
	mt352_write(fe, rs_err_cfg,     sizeof(rs_err_cfg));
	mt352_write(fe, capt_range_cfg, sizeof(capt_range_cfg));
	mt352_write(fe, trl_nom_cfg,    sizeof(trl_nom_cfg));
	mt352_write(fe, tps_given_cfg,  sizeof(tps_given_cfg));
	mt352_write(fe, tuner_go,       sizeof(tuner_go));
	return 0;
}

static struct mt352_config terratec_xs_mt352_cfg = {
	.demod_address = (0x1e >> 1),
	.no_tuner = 1,
	.if2 = 45600,
698
	.demod_init = em28xx_mt352_terratec_xs_init,
699 700
};

701 702 703 704 705
static struct tda10023_config em28xx_tda10023_config = {
	.demod_address = 0x0c,
	.invert = 1,
};

706 707 708 709 710 711 712
static struct cxd2820r_config em28xx_cxd2820r_config = {
	.i2c_address = (0xd8 >> 1),
	.ts_mode = CXD2820R_TS_SERIAL,
};

static struct tda18271_config em28xx_cxd2820r_tda18271_config = {
	.output_opt = TDA18271_OUTPUT_LT_OFF,
713
	.gate = TDA18271_GATE_DIGITAL,
714 715
};

716
static const struct tda10071_config em28xx_tda10071_config = {
717 718
	.demod_i2c_addr = 0x55, /* (0xaa >> 1) */
	.tuner_i2c_addr = 0x14,
719 720 721 722 723 724 725 726 727 728 729
	.i2c_wr_max = 64,
	.ts_mode = TDA10071_TS_SERIAL,
	.spec_inv = 0,
	.xtal = 40444000, /* 40.444 MHz */
	.pll_multiplier = 20,
};

static const struct a8293_config em28xx_a8293_config = {
	.i2c_addr = 0x08, /* (0x10 >> 1) */
};

A
Aivar Päkk 已提交
730 731 732 733 734 735 736 737 738 739 740
static struct zl10353_config em28xx_zl10353_no_i2c_gate_dev = {
	.demod_address = (0x1e >> 1),
	.disable_i2c_gate_ctrl = 1,
	.no_tuner = 1,
	.parallel_ts = 1,
};
static struct qt1010_config em28xx_qt1010_config = {
	.i2c_address = 0x62

};

741 742
/* ------------------------------------------------------------------ */

743
static int em28xx_attach_xc3028(u8 addr, struct em28xx *dev)
744 745
{
	struct dvb_frontend *fe;
746 747
	struct xc2028_config cfg;

748
	memset(&cfg, 0, sizeof(cfg));
749 750 751
	cfg.i2c_adap  = &dev->i2c_adap;
	cfg.i2c_addr  = addr;

752
	if (!dev->dvb->fe[0]) {
753 754
		em28xx_errdev("/2: dvb frontend not attached. "
				"Can't attach xc3028\n");
755 756 757
		return -EINVAL;
	}

758
	fe = dvb_attach(xc2028_attach, dev->dvb->fe[0], &cfg);
759
	if (!fe) {
760
		em28xx_errdev("/2: xc3028 attach failed\n");
761 762
		dvb_frontend_detach(dev->dvb->fe[0]);
		dev->dvb->fe[0] = NULL;
763 764 765
		return -EINVAL;
	}

766
	em28xx_info("%s/2: xc3028 attached\n", dev->name);
767 768 769 770

	return 0;
}

771 772
/* ------------------------------------------------------------------ */

773 774
static int em28xx_register_dvb(struct em28xx_dvb *dvb, struct module *module,
			       struct em28xx *dev, struct device *device)
775
{
776
	int result;
777

778
	mutex_init(&dvb->lock);
779

780 781 782 783 784 785 786 787
	/* register adapter */
	result = dvb_register_adapter(&dvb->adapter, dev->name, module, device,
				      adapter_nr);
	if (result < 0) {
		printk(KERN_WARNING "%s: dvb_register_adapter failed (errno = %d)\n",
		       dev->name, result);
		goto fail_adapter;
	}
788 789

	/* Ensure all frontends negotiate bus access */
790 791 792
	dvb->fe[0]->ops.ts_bus_ctrl = em28xx_dvb_bus_ctrl;
	if (dvb->fe[1])
		dvb->fe[1]->ops.ts_bus_ctrl = em28xx_dvb_bus_ctrl;
793

794 795 796
	dvb->adapter.priv = dev;

	/* register frontend */
797
	result = dvb_register_frontend(&dvb->adapter, dvb->fe[0]);
798 799 800
	if (result < 0) {
		printk(KERN_WARNING "%s: dvb_register_frontend failed (errno = %d)\n",
		       dev->name, result);
801 802 803 804 805 806 807 808 809 810 811
		goto fail_frontend0;
	}

	/* register 2nd frontend */
	if (dvb->fe[1]) {
		result = dvb_register_frontend(&dvb->adapter, dvb->fe[1]);
		if (result < 0) {
			printk(KERN_WARNING "%s: 2nd dvb_register_frontend failed (errno = %d)\n",
				dev->name, result);
			goto fail_frontend1;
		}
812 813 814 815 816 817 818 819 820
	}

	/* register demux stuff */
	dvb->demux.dmx.capabilities =
		DMX_TS_FILTERING | DMX_SECTION_FILTERING |
		DMX_MEMORY_BASED_FILTERING;
	dvb->demux.priv       = dvb;
	dvb->demux.filternum  = 256;
	dvb->demux.feednum    = 256;
821 822
	dvb->demux.start_feed = em28xx_start_feed;
	dvb->demux.stop_feed  = em28xx_stop_feed;
823

824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839
	result = dvb_dmx_init(&dvb->demux);
	if (result < 0) {
		printk(KERN_WARNING "%s: dvb_dmx_init failed (errno = %d)\n",
		       dev->name, result);
		goto fail_dmx;
	}

	dvb->dmxdev.filternum    = 256;
	dvb->dmxdev.demux        = &dvb->demux.dmx;
	dvb->dmxdev.capabilities = 0;
	result = dvb_dmxdev_init(&dvb->dmxdev, &dvb->adapter);
	if (result < 0) {
		printk(KERN_WARNING "%s: dvb_dmxdev_init failed (errno = %d)\n",
		       dev->name, result);
		goto fail_dmxdev;
	}
840

841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876
	dvb->fe_hw.source = DMX_FRONTEND_0;
	result = dvb->demux.dmx.add_frontend(&dvb->demux.dmx, &dvb->fe_hw);
	if (result < 0) {
		printk(KERN_WARNING "%s: add_frontend failed (DMX_FRONTEND_0, errno = %d)\n",
		       dev->name, result);
		goto fail_fe_hw;
	}

	dvb->fe_mem.source = DMX_MEMORY_FE;
	result = dvb->demux.dmx.add_frontend(&dvb->demux.dmx, &dvb->fe_mem);
	if (result < 0) {
		printk(KERN_WARNING "%s: add_frontend failed (DMX_MEMORY_FE, errno = %d)\n",
		       dev->name, result);
		goto fail_fe_mem;
	}

	result = dvb->demux.dmx.connect_frontend(&dvb->demux.dmx, &dvb->fe_hw);
	if (result < 0) {
		printk(KERN_WARNING "%s: connect_frontend failed (errno = %d)\n",
		       dev->name, result);
		goto fail_fe_conn;
	}

	/* register network adapter */
	dvb_net_init(&dvb->adapter, &dvb->net, &dvb->demux.dmx);
	return 0;

fail_fe_conn:
	dvb->demux.dmx.remove_frontend(&dvb->demux.dmx, &dvb->fe_mem);
fail_fe_mem:
	dvb->demux.dmx.remove_frontend(&dvb->demux.dmx, &dvb->fe_hw);
fail_fe_hw:
	dvb_dmxdev_release(&dvb->dmxdev);
fail_dmxdev:
	dvb_dmx_release(&dvb->demux);
fail_dmx:
877 878 879 880 881 882 883 884
	if (dvb->fe[1])
		dvb_unregister_frontend(dvb->fe[1]);
	dvb_unregister_frontend(dvb->fe[0]);
fail_frontend1:
	if (dvb->fe[1])
		dvb_frontend_detach(dvb->fe[1]);
fail_frontend0:
	dvb_frontend_detach(dvb->fe[0]);
885 886 887 888 889
	dvb_unregister_adapter(&dvb->adapter);
fail_adapter:
	return result;
}

890
static void em28xx_unregister_dvb(struct em28xx_dvb *dvb)
891 892 893 894 895 896
{
	dvb_net_release(&dvb->net);
	dvb->demux.dmx.remove_frontend(&dvb->demux.dmx, &dvb->fe_mem);
	dvb->demux.dmx.remove_frontend(&dvb->demux.dmx, &dvb->fe_hw);
	dvb_dmxdev_release(&dvb->dmxdev);
	dvb_dmx_release(&dvb->demux);
897 898 899
	if (dvb->fe[1])
		dvb_unregister_frontend(dvb->fe[1]);
	dvb_unregister_frontend(dvb->fe[0]);
900
	if (dvb->fe[1] && !dvb->dont_attach_fe1)
901 902
		dvb_frontend_detach(dvb->fe[1]);
	dvb_frontend_detach(dvb->fe[0]);
903 904 905
	dvb_unregister_adapter(&dvb->adapter);
}

906
static int em28xx_dvb_init(struct em28xx *dev)
907
{
908
	int result = 0, mfe_shared = 0;
909 910
	struct em28xx_dvb *dvb;

911
	if (!dev->board.has_dvb) {
912
		/* This device does not support the extension */
913
		printk(KERN_INFO "em28xx_dvb: This device does not support the extension\n");
914 915 916
		return 0;
	}

917
	dvb = kzalloc(sizeof(struct em28xx_dvb), GFP_KERNEL);
918 919

	if (dvb == NULL) {
920
		em28xx_info("em28xx_dvb: memory allocation failed\n");
921 922 923
		return -ENOMEM;
	}
	dev->dvb = dvb;
924
	dvb->fe[0] = dvb->fe[1] = NULL;
925

926
	mutex_lock(&dev->lock);
927
	em28xx_set_mode(dev, EM28XX_DIGITAL_MODE);
928 929
	/* init frontend */
	switch (dev->model) {
930
	case EM2874_BOARD_LEADERSHIP_ISDBT:
931
		dvb->fe[0] = dvb_attach(s921_attach,
932 933
				&sharp_isdbt, &dev->i2c_adap);

934
		if (!dvb->fe[0]) {
935 936 937 938 939
			result = -EINVAL;
			goto out_free;
		}

		break;
940
	case EM2883_BOARD_HAUPPAUGE_WINTV_HVR_850:
941
	case EM2883_BOARD_HAUPPAUGE_WINTV_HVR_950:
942
	case EM2880_BOARD_PINNACLE_PCTV_HD_PRO:
943
	case EM2880_BOARD_AMD_ATI_TV_WONDER_HD_600:
944
		dvb->fe[0] = dvb_attach(lgdt330x_attach,
945 946
					   &em2880_lgdt3303_dev,
					   &dev->i2c_adap);
947
		if (em28xx_attach_xc3028(0x61, dev) < 0) {
948 949 950
			result = -EINVAL;
			goto out_free;
		}
951
		break;
952
	case EM2880_BOARD_KWORLD_DVB_310U:
953
		dvb->fe[0] = dvb_attach(zl10353_attach,
954 955
					   &em28xx_zl10353_with_xc3028,
					   &dev->i2c_adap);
956
		if (em28xx_attach_xc3028(0x61, dev) < 0) {
957 958 959
			result = -EINVAL;
			goto out_free;
		}
960
		break;
961
	case EM2880_BOARD_HAUPPAUGE_WINTV_HVR_900:
962
	case EM2882_BOARD_TERRATEC_HYBRID_XS:
963
	case EM2880_BOARD_EMPIRE_DUAL_TV:
964
		dvb->fe[0] = dvb_attach(zl10353_attach,
965 966
					   &em28xx_zl10353_xc3028_no_i2c_gate,
					   &dev->i2c_adap);
967
		if (em28xx_attach_xc3028(0x61, dev) < 0) {
968 969 970 971
			result = -EINVAL;
			goto out_free;
		}
		break;
972
	case EM2880_BOARD_TERRATEC_HYBRID_XS:
973
	case EM2880_BOARD_TERRATEC_HYBRID_XS_FR:
974
	case EM2881_BOARD_PINNACLE_HYBRID_PRO:
975
	case EM2882_BOARD_DIKOM_DK300:
976
	case EM2882_BOARD_KWORLD_VS_DVBT:
977
		dvb->fe[0] = dvb_attach(zl10353_attach,
978
					   &em28xx_zl10353_xc3028_no_i2c_gate,
979
					   &dev->i2c_adap);
980
		if (dvb->fe[0] == NULL) {
981 982
			/* This board could have either a zl10353 or a mt352.
			   If the chip id isn't for zl10353, try mt352 */
983
			dvb->fe[0] = dvb_attach(mt352_attach,
984 985
						   &terratec_xs_mt352_cfg,
						   &dev->i2c_adap);
986
		}
987

988
		if (em28xx_attach_xc3028(0x61, dev) < 0) {
989 990 991 992
			result = -EINVAL;
			goto out_free;
		}
		break;
A
Aivar Päkk 已提交
993 994 995 996 997 998 999 1000
	case EM2870_BOARD_KWORLD_355U:
		dvb->fe[0] = dvb_attach(zl10353_attach,
					   &em28xx_zl10353_no_i2c_gate_dev,
					   &dev->i2c_adap);
		if (dvb->fe[0] != NULL)
			dvb_attach(qt1010_attach, dvb->fe[0],
				   &dev->i2c_adap, &em28xx_qt1010_config);
		break;
1001
	case EM2883_BOARD_KWORLD_HYBRID_330U:
1002
	case EM2882_BOARD_EVGA_INDTUBE:
1003
		dvb->fe[0] = dvb_attach(s5h1409_attach,
1004 1005
					   &em28xx_s5h1409_with_xc3028,
					   &dev->i2c_adap);
1006
		if (em28xx_attach_xc3028(0x61, dev) < 0) {
1007 1008 1009 1010
			result = -EINVAL;
			goto out_free;
		}
		break;
1011
	case EM2882_BOARD_KWORLD_ATSC_315U:
1012
		dvb->fe[0] = dvb_attach(lgdt330x_attach,
1013 1014
					   &em2880_lgdt3303_dev,
					   &dev->i2c_adap);
1015 1016
		if (dvb->fe[0] != NULL) {
			if (!dvb_attach(simple_tuner_attach, dvb->fe[0],
1017 1018 1019 1020 1021 1022
				&dev->i2c_adap, 0x61, TUNER_THOMSON_DTT761X)) {
				result = -EINVAL;
				goto out_free;
			}
		}
		break;
1023
	case EM2880_BOARD_HAUPPAUGE_WINTV_HVR_900_R2:
1024
	case EM2882_BOARD_PINNACLE_HYBRID_PRO_330E:
1025
		dvb->fe[0] = dvb_attach(drxd_attach, &em28xx_drxd, NULL,
1026
					   &dev->i2c_adap, &dev->udev->dev);
1027
		if (em28xx_attach_xc3028(0x61, dev) < 0) {
1028 1029 1030 1031
			result = -EINVAL;
			goto out_free;
		}
		break;
1032 1033
	case EM2870_BOARD_REDDO_DVB_C_USB_BOX:
		/* Philips CU1216L NIM (Philips TDA10023 + Infineon TUA6034) */
1034
		dvb->fe[0] = dvb_attach(tda10023_attach,
1035 1036
			&em28xx_tda10023_config,
			&dev->i2c_adap, 0x48);
1037 1038
		if (dvb->fe[0]) {
			if (!dvb_attach(simple_tuner_attach, dvb->fe[0],
1039 1040 1041 1042 1043 1044
				&dev->i2c_adap, 0x60, TUNER_PHILIPS_CU1216L)) {
				result = -EINVAL;
				goto out_free;
			}
		}
		break;
1045
	case EM2870_BOARD_KWORLD_A340:
1046
		dvb->fe[0] = dvb_attach(lgdt3305_attach,
1047 1048
					   &em2870_lgdt3304_dev,
					   &dev->i2c_adap);
1049 1050
		if (dvb->fe[0] != NULL)
			dvb_attach(tda18271_attach, dvb->fe[0], 0x60,
1051 1052
				   &dev->i2c_adap, &kworld_a340_config);
		break;
1053
	case EM28174_BOARD_PCTV_290E:
1054 1055 1056
		/* set default GPIO0 for LNA, used if GPIOLIB is undefined */
		dvb->lna_gpio = CXD2820R_GPIO_E | CXD2820R_GPIO_O |
				CXD2820R_GPIO_L;
1057
		dvb->fe[0] = dvb_attach(cxd2820r_attach,
1058
					&em28xx_cxd2820r_config,
1059
					&dev->i2c_adap,
1060
					&dvb->lna_gpio);
1061 1062
		if (dvb->fe[0]) {
			/* FE 0 attach tuner */
1063 1064 1065 1066 1067 1068
			if (!dvb_attach(tda18271_attach,
					dvb->fe[0],
					0x60,
					&dev->i2c_adap,
					&em28xx_cxd2820r_tda18271_config)) {

1069 1070 1071 1072
				dvb_frontend_detach(dvb->fe[0]);
				result = -EINVAL;
				goto out_free;
			}
1073

1074
#ifdef CONFIG_GPIOLIB
1075 1076 1077 1078 1079 1080 1081 1082 1083 1084
			/* enable LNA for DVB-T, DVB-T2 and DVB-C */
			result = gpio_request_one(dvb->lna_gpio,
					GPIOF_OUT_INIT_LOW, NULL);
			if (result)
				em28xx_errdev("gpio request failed %d\n",
						result);
			else
				gpio_free(dvb->lna_gpio);

			result = 0; /* continue even set LNA fails */
1085
#endif
1086 1087 1088
			dvb->fe[0]->ops.set_lna = em28xx_pctv_290e_set_lna;
		}

1089 1090
		break;
	case EM2884_BOARD_HAUPPAUGE_WINTV_HVR_930C:
1091 1092
	{
		struct xc5000_config cfg;
1093 1094
		hauppauge_hvr930c_init(dev);

1095
		dvb->fe[0] = dvb_attach(drxk_attach,
1096
					&hauppauge_930c_drxk, &dev->i2c_adap);
1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109
		if (!dvb->fe[0]) {
			result = -EINVAL;
			goto out_free;
		}
		/* FIXME: do we need a pll semaphore? */
		dvb->fe[0]->sec_priv = dvb;
		sema_init(&dvb->pll_mutex, 1);
		dvb->gate_ctrl = dvb->fe[0]->ops.i2c_gate_ctrl;
		dvb->fe[0]->ops.i2c_gate_ctrl = drxk_gate_ctrl;

		/* Attach xc5000 */
		memset(&cfg, 0, sizeof(cfg));
		cfg.i2c_address  = 0x61;
1110
		cfg.if_khz = 4000;
1111 1112 1113

		if (dvb->fe[0]->ops.i2c_gate_ctrl)
			dvb->fe[0]->ops.i2c_gate_ctrl(dvb->fe[0], 1);
1114 1115
		if (!dvb_attach(xc5000_attach, dvb->fe[0], &dev->i2c_adap,
				&cfg)) {
1116 1117 1118 1119 1120 1121
			result = -EINVAL;
			goto out_free;
		}
		if (dvb->fe[0]->ops.i2c_gate_ctrl)
			dvb->fe[0]->ops.i2c_gate_ctrl(dvb->fe[0], 0);

1122
		break;
1123
	}
1124 1125 1126
	case EM2884_BOARD_TERRATEC_H5:
		terratec_h5_init(dev);

1127
		dvb->fe[0] = dvb_attach(drxk_attach, &terratec_h5_drxk, &dev->i2c_adap);
1128
		if (!dvb->fe[0]) {
1129 1130 1131 1132 1133 1134 1135 1136 1137
			result = -EINVAL;
			goto out_free;
		}
		/* FIXME: do we need a pll semaphore? */
		dvb->fe[0]->sec_priv = dvb;
		sema_init(&dvb->pll_mutex, 1);
		dvb->gate_ctrl = dvb->fe[0]->ops.i2c_gate_ctrl;
		dvb->fe[0]->ops.i2c_gate_ctrl = drxk_gate_ctrl;

1138
		/* Attach tda18271 to DVB-C frontend */
1139 1140 1141 1142 1143 1144 1145 1146
		if (dvb->fe[0]->ops.i2c_gate_ctrl)
			dvb->fe[0]->ops.i2c_gate_ctrl(dvb->fe[0], 1);
		if (!dvb_attach(tda18271c2dd_attach, dvb->fe[0], &dev->i2c_adap, 0x60)) {
			result = -EINVAL;
			goto out_free;
		}
		if (dvb->fe[0]->ops.i2c_gate_ctrl)
			dvb->fe[0]->ops.i2c_gate_ctrl(dvb->fe[0], 0);
1147

1148
		break;
1149 1150 1151 1152 1153 1154 1155 1156 1157 1158
	case EM28174_BOARD_PCTV_460E:
		/* attach demod */
		dvb->fe[0] = dvb_attach(tda10071_attach,
			&em28xx_tda10071_config, &dev->i2c_adap);

		/* attach SEC */
		if (dvb->fe[0])
			dvb_attach(a8293_attach, dvb->fe[0], &dev->i2c_adap,
				&em28xx_a8293_config);
		break;
1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180
	case EM2874_BOARD_MAXMEDIA_UB425_TC:
		/* attach demodulator */
		dvb->fe[0] = dvb_attach(drxk_attach, &maxmedia_ub425_tc_drxk,
				&dev->i2c_adap);

		if (dvb->fe[0]) {
			/* disable I2C-gate */
			dvb->fe[0]->ops.i2c_gate_ctrl = NULL;

			/* attach tuner */
			if (!dvb_attach(tda18271c2dd_attach, dvb->fe[0],
					&dev->i2c_adap, 0x60)) {
				dvb_frontend_detach(dvb->fe[0]);
				result = -EINVAL;
				goto out_free;
			}
		}

		/* TODO: we need drx-3913k firmware in order to support DVB-T */
		em28xx_info("MaxMedia UB425-TC: only DVB-C supported by that " \
				"driver version\n");

1181
		break;
1182 1183 1184 1185
	case EM2884_BOARD_PCTV_510E:
	case EM2884_BOARD_PCTV_520E:
		pctv_520e_init(dev);

1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199
		/* attach demodulator */
		dvb->fe[0] = dvb_attach(drxk_attach, &pctv_520e_drxk,
				&dev->i2c_adap);

		if (dvb->fe[0]) {
			/* attach tuner */
			if (!dvb_attach(tda18271_attach, dvb->fe[0], 0x60,
					&dev->i2c_adap,
					&em28xx_cxd2820r_tda18271_config)) {
				dvb_frontend_detach(dvb->fe[0]);
				result = -EINVAL;
				goto out_free;
			}
		}
1200
		break;
1201 1202 1203
	case EM2884_BOARD_CINERGY_HTC_STICK:
		terratec_htc_stick_init(dev);

1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222
		/* attach demodulator */
		dvb->fe[0] = dvb_attach(drxk_attach, &terratec_htc_stick_drxk,
					&dev->i2c_adap);
		if (!dvb->fe[0]) {
			result = -EINVAL;
			goto out_free;
		}

		/* Attach the demodulator. */
		if (!dvb_attach(tda18271_attach, dvb->fe[0], 0x60,
				&dev->i2c_adap,
				&em28xx_cxd2820r_tda18271_config)) {
			result = -EINVAL;
			goto out_free;
		}
		break;
	case EM2884_BOARD_TERRATEC_HTC_USB_XS:
		terratec_htc_usb_xs_init(dev);

1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238
		/* attach demodulator */
		dvb->fe[0] = dvb_attach(drxk_attach, &terratec_htc_stick_drxk,
					&dev->i2c_adap);
		if (!dvb->fe[0]) {
			result = -EINVAL;
			goto out_free;
		}

		/* Attach the demodulator. */
		if (!dvb_attach(tda18271_attach, dvb->fe[0], 0x60,
				&dev->i2c_adap,
				&em28xx_cxd2820r_tda18271_config)) {
			result = -EINVAL;
			goto out_free;
		}
		break;
1239
	default:
1240 1241
		em28xx_errdev("/2: The frontend of your DVB/ATSC card"
				" isn't supported yet\n");
1242 1243
		break;
	}
1244
	if (NULL == dvb->fe[0]) {
1245
		em28xx_errdev("/2: frontend initialization failed\n");
1246 1247
		result = -EINVAL;
		goto out_free;
1248
	}
1249
	/* define general-purpose callback pointer */
1250
	dvb->fe[0]->callback = em28xx_tuner_callback;
1251
	if (dvb->fe[1])
1252
		dvb->fe[1]->callback = em28xx_tuner_callback;
1253 1254

	/* register everything */
1255
	result = em28xx_register_dvb(dvb, THIS_MODULE, dev, &dev->udev->dev);
1256

1257
	if (result < 0)
1258 1259
		goto out_free;

1260 1261 1262
	/* MFE lock */
	dvb->adapter.mfe_shared = mfe_shared;

1263
	em28xx_info("Successfully loaded em28xx-dvb\n");
1264 1265 1266 1267
ret:
	em28xx_set_mode(dev, EM28XX_SUSPEND);
	mutex_unlock(&dev->lock);
	return result;
1268 1269 1270 1271

out_free:
	kfree(dvb);
	dev->dvb = NULL;
1272
	goto ret;
1273 1274
}

1275 1276 1277 1278 1279 1280 1281
static inline void prevent_sleep(struct dvb_frontend_ops *ops)
{
	ops->set_voltage = NULL;
	ops->sleep = NULL;
	ops->tuner_ops.sleep = NULL;
}

1282
static int em28xx_dvb_fini(struct em28xx *dev)
1283
{
1284
	if (!dev->board.has_dvb) {
1285 1286 1287 1288
		/* This device does not support the extension */
		return 0;
	}

1289
	if (dev->dvb) {
1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302
		struct em28xx_dvb *dvb = dev->dvb;

		if (dev->state & DEV_DISCONNECTED) {
			/* We cannot tell the device to sleep
			 * once it has been unplugged. */
			if (dvb->fe[0])
				prevent_sleep(&dvb->fe[0]->ops);
			if (dvb->fe[1])
				prevent_sleep(&dvb->fe[1]->ops);
		}

		em28xx_unregister_dvb(dvb);
		kfree(dvb);
1303 1304
		dev->dvb = NULL;
	}
1305 1306 1307 1308 1309 1310 1311

	return 0;
}

static struct em28xx_ops dvb_ops = {
	.id   = EM28XX_DVB,
	.name = "Em28xx dvb Extension",
1312 1313
	.init = em28xx_dvb_init,
	.fini = em28xx_dvb_fini,
1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327
};

static int __init em28xx_dvb_register(void)
{
	return em28xx_register_extension(&dvb_ops);
}

static void __exit em28xx_dvb_unregister(void)
{
	em28xx_unregister_extension(&dvb_ops);
}

module_init(em28xx_dvb_register);
module_exit(em28xx_dvb_unregister);