em28xx-dvb.c 52.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
// SPDX-License-Identifier: GPL-2.0
//
// DVB device driver for em28xx
//
// (c) 2008-2011 Mauro Carvalho Chehab <mchehab@infradead.org>
//
// (c) 2008 Devin Heitmueller <devin.heitmueller@gmail.com>
//	- Fixes for the driver to properly work with HVR-950
//	- Fixes for the driver to properly work with Pinnacle PCTV HD Pro Stick
//	- Fixes for the driver to properly work with AMD ATI TV Wonder HD 600
//
// (c) 2008 Aidan Thornton <makosoft@googlemail.com>
//
// (c) 2012 Frank Schäfer <fschaefer.oss@googlemail.com>
//
// Based on cx88-dvb, saa7134-dvb and videobuf-dvb originally written by:
//	(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 version 2 of the License.
23

24 25
#include "em28xx.h"

26
#include <linux/kernel.h>
27
#include <linux/slab.h>
28 29 30
#include <linux/usb.h>

#include <media/v4l2-common.h>
31 32 33
#include <media/dvb_demux.h>
#include <media/dvb_net.h>
#include <media/dmxdev.h>
34 35
#include <media/tuner.h>
#include "tuner-simple.h"
36
#include <linux/gpio.h>
37 38

#include "lgdt330x.h"
39
#include "lgdt3305.h"
40
#include "lgdt3306a.h"
41
#include "zl10353.h"
42
#include "s5h1409.h"
43
#include "mt2060.h"
44 45
#include "mt352.h"
#include "mt352_priv.h" /* FIXME */
46
#include "tda1002x.h"
47
#include "drx39xyj/drx39xxj.h"
48
#include "tda18271.h"
49
#include "s921.h"
50
#include "drxd.h"
51
#include "cxd2820r.h"
52 53
#include "tda18271c2dd.h"
#include "drxk.h"
54
#include "tda10071.h"
55
#include "tda18212.h"
56
#include "a8293.h"
A
Aivar Päkk 已提交
57
#include "qt1010.h"
58
#include "mb86a20s.h"
59
#include "m88ds3103.h"
60
#include "ts2020.h"
61 62
#include "si2168.h"
#include "si2157.h"
63 64
#include "tc90522.h"
#include "qm1d1c0042.h"
65 66

MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@infradead.org>");
67
MODULE_LICENSE("GPL v2");
68 69 70
MODULE_DESCRIPTION(DRIVER_DESC " - digital TV interface");
MODULE_VERSION(EM28XX_VERSION);

71 72 73 74 75 76
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);

77 78
#define dprintk(level, fmt, arg...) do {				\
	if (debug >= level)						\
79
		dev_printk(KERN_DEBUG, &dev->intf->dev,			\
80
			   "dvb: " fmt, ## arg);			\
81 82
} while (0)

83
struct em28xx_dvb {
84
	struct dvb_frontend        *fe[2];
85 86 87 88 89 90 91 92 93 94 95 96

	/* 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;
97

98
	/* Due to DRX-K - probably need changes */
99
	int (*gate_ctrl)(struct dvb_frontend *fe, int gate);
100
	struct semaphore      pll_mutex;
101
	bool			dont_attach_fe1;
102
	int			lna_gpio;
103
	struct i2c_client	*i2c_client_demod;
104
	struct i2c_client	*i2c_client_tuner;
105
	struct i2c_client	*i2c_client_sec;
106 107 108
};

static inline void print_err_status(struct em28xx *dev,
109
				    int packet, int status)
110
{
111
	char *errmsg = "Unknown";
112

113 114
	switch (status) {
	case -ENOENT:
115
		errmsg = "unlinked synchronously";
116 117
		break;
	case -ECONNRESET:
118
		errmsg = "unlinked asynchronously";
119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
		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 {
142 143
		dprintk(1, "URB packet %d, status %d [%s].\n",
			packet, status, errmsg);
144 145
	}
}
146

147
static inline int em28xx_dvb_urb_data_copy(struct em28xx *dev, struct urb *urb)
148
{
149
	int xfer_bulk, num_packets, i;
150

151 152
	if (!dev)
		return 0;
153

154
	if (dev->disconnected)
155 156
		return 0;

157
	if (urb->status < 0)
158 159
		print_err_status(dev, -1, urb->status);

160 161 162 163 164 165 166 167 168 169 170 171 172 173
	xfer_bulk = usb_pipebulk(urb->pipe);

	if (xfer_bulk) /* bulk */
		num_packets = 1;
	else /* isoc */
		num_packets = urb->number_of_packets;

	for (i = 0; i < num_packets; i++) {
		if (xfer_bulk) {
			if (urb->status < 0) {
				print_err_status(dev, i, urb->status);
				if (urb->status != -EPROTO)
					continue;
			}
174 175
			if (!urb->actual_length)
				continue;
176
			dvb_dmx_swfilter(&dev->dvb->demux, urb->transfer_buffer,
177
					 urb->actual_length);
178 179 180 181 182 183 184
		} else {
			if (urb->iso_frame_desc[i].status < 0) {
				print_err_status(dev, i,
						 urb->iso_frame_desc[i].status);
				if (urb->iso_frame_desc[i].status != -EPROTO)
					continue;
			}
185 186
			if (!urb->iso_frame_desc[i].actual_length)
				continue;
187 188 189 190
			dvb_dmx_swfilter(&dev->dvb->demux,
					 urb->transfer_buffer +
					 urb->iso_frame_desc[i].offset,
					 urb->iso_frame_desc[i].actual_length);
191 192 193 194 195 196
		}
	}

	return 0;
}

197
static int em28xx_start_streaming(struct em28xx_dvb *dvb)
198
{
199
	int rc;
200 201
	struct em28xx_i2c_bus *i2c_bus = dvb->adapter.priv;
	struct em28xx *dev = i2c_bus->dev;
202
	struct usb_device *udev = interface_to_usbdev(dev->intf);
203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219
	int dvb_max_packet_size, packet_multiplier, dvb_alt;

	if (dev->dvb_xfer_bulk) {
		if (!dev->dvb_ep_bulk)
			return -ENODEV;
		dvb_max_packet_size = 512; /* USB 2.0 spec */
		packet_multiplier = EM28XX_DVB_BULK_PACKET_MULTIPLIER;
		dvb_alt = 0;
	} else { /* isoc */
		if (!dev->dvb_ep_isoc)
			return -ENODEV;
		dvb_max_packet_size = dev->dvb_max_pkt_size_isoc;
		if (dvb_max_packet_size < 0)
			return dvb_max_packet_size;
		packet_multiplier = EM28XX_DVB_NUM_ISOC_PACKETS;
		dvb_alt = dev->dvb_alt_isoc;
	}
220

221
	usb_set_interface(udev, dev->ifnum, dvb_alt);
222 223 224
	rc = em28xx_set_mode(dev, EM28XX_DIGITAL_MODE);
	if (rc < 0)
		return rc;
225

226
	dprintk(1, "Using %d buffers each with %d x %d bytes, alternate %d\n",
227
		EM28XX_DVB_NUM_BUFS,
228
		packet_multiplier,
229
		dvb_max_packet_size, dvb_alt);
230

231 232
	return em28xx_init_usb_xfer(dev, EM28XX_DIGITAL_MODE,
				    dev->dvb_xfer_bulk,
233
				    EM28XX_DVB_NUM_BUFS,
234 235
				    dvb_max_packet_size,
				    packet_multiplier,
236
				    em28xx_dvb_urb_data_copy);
237 238
}

239
static int em28xx_stop_streaming(struct em28xx_dvb *dvb)
240
{
241 242
	struct em28xx_i2c_bus *i2c_bus = dvb->adapter.priv;
	struct em28xx *dev = i2c_bus->dev;
243

244
	em28xx_stop_urbs(dev);
245

246 247 248
	return 0;
}

249
static int em28xx_start_feed(struct dvb_demux_feed *feed)
250 251 252 253 254 255 256 257 258 259 260 261 262
{
	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) {
263
		ret = em28xx_start_streaming(dvb);
264 265
		if (ret < 0)
			rc = ret;
266 267 268 269 270 271
	}

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

272
static int em28xx_stop_feed(struct dvb_demux_feed *feed)
273 274 275 276 277 278 279
{
	struct dvb_demux *demux  = feed->demux;
	struct em28xx_dvb *dvb = demux->priv;
	int err = 0;

	mutex_lock(&dvb->lock);
	dvb->nfeeds--;
280

281
	if (!dvb->nfeeds)
282
		err = em28xx_stop_streaming(dvb);
283

284 285 286 287
	mutex_unlock(&dvb->lock);
	return err;
}

288 289 290
/* ------------------------------------------------------------------ */
static int em28xx_dvb_bus_ctrl(struct dvb_frontend *fe, int acquire)
{
291
	struct em28xx_i2c_bus *i2c_bus = fe->dvb->priv;
292
	struct em28xx *dev = i2c_bus->dev;
293 294 295 296

	if (acquire)
		return em28xx_set_mode(dev, EM28XX_DIGITAL_MODE);
	else
297
		return em28xx_set_mode(dev, EM28XX_SUSPEND);
298 299
}

300 301
/* ------------------------------------------------------------------ */

302 303 304 305
static struct lgdt330x_config em2880_lgdt3303_dev = {
	.demod_address = 0x0e,
	.demod_chip = LGDT3303,
};
306

307 308 309 310 311 312 313 314 315 316 317 318
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,
};

319 320 321 322 323 324 325 326 327 328 329 330
static struct lgdt3305_config em2874_lgdt3305_dev = {
	.i2c_addr           = 0x0e,
	.demod_chip         = LGDT3305,
	.spectral_inversion = 1,
	.deny_i2c_rptr      = 0,
	.mpeg_mode          = LGDT3305_MPEG_SERIAL,
	.tpclk_edge         = LGDT3305_TPCLK_FALLING_EDGE,
	.tpvalid_polarity   = LGDT3305_TP_VALID_HIGH,
	.vsb_if_khz         = 3250,
	.qam_if_khz         = 4000,
};

331 332 333 334 335 336 337 338 339 340 341 342
static struct lgdt3305_config em2874_lgdt3305_nogate_dev = {
	.i2c_addr           = 0x0e,
	.demod_chip         = LGDT3305,
	.spectral_inversion = 1,
	.deny_i2c_rptr      = 1,
	.mpeg_mode          = LGDT3305_MPEG_SERIAL,
	.tpclk_edge         = LGDT3305_TPCLK_FALLING_EDGE,
	.tpvalid_polarity   = LGDT3305_TP_VALID_HIGH,
	.vsb_if_khz         = 3600,
	.qam_if_khz         = 3600,
};

343 344 345 346
static struct s921_config sharp_isdbt = {
	.demod_address = 0x30 >> 1
};

347 348 349 350 351 352 353
static struct zl10353_config em28xx_zl10353_with_xc3028 = {
	.demod_address = (0x1e >> 1),
	.no_tuner = 1,
	.parallel_ts = 1,
	.if2 = 45600,
};

354 355 356 357 358 359
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,
360
	.mpeg_timing   = S5H1409_MPEGTIMING_CONTINUOUS_NONINVERTING_CLOCK
361 362
};

363 364 365 366 367 368 369 370 371 372 373
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,
};

374 375 376 377 378
static struct tda18271_config kworld_ub435q_v2_config = {
	.std_map	= &kworld_a340_std_map,
	.gate		= TDA18271_GATE_DIGITAL,
};

379 380 381 382 383
static struct tda18212_config kworld_ub435q_v3_config = {
	.if_atsc_vsb	= 3600,
	.if_atsc_qam	= 3600,
};

384
static struct zl10353_config em28xx_zl10353_xc3028_no_i2c_gate = {
385 386 387 388 389 390 391
	.demod_address = (0x1e >> 1),
	.no_tuner = 1,
	.disable_i2c_gate_ctrl = 1,
	.parallel_ts = 1,
	.if2 = 45600,
};

392
static struct drxd_config em28xx_drxd = {
393 394 395 396 397 398
	.demod_address = 0x70,
	.demod_revision = 0xa2,
	.pll_type = DRXD_PLL_NONE,
	.clock = 12000,
	.insert_rs_byte = 1,
	.IF = 42800000,
399
	.disable_i2c_gate_ctrl = 1,
400 401
};

402
static struct drxk_config terratec_h5_drxk = {
403
	.adr = 0x29,
404
	.single_master = 1,
405
	.no_i2c_bridge = 1,
406
	.microcode_name = "dvb-usb-terratec-h5-drxk.fw",
407
	.qam_demod_parameter_count = 2,
408 409
};

410
static struct drxk_config hauppauge_930c_drxk = {
411 412 413 414 415
	.adr = 0x29,
	.single_master = 1,
	.no_i2c_bridge = 1,
	.microcode_name = "dvb-usb-hauppauge-hvr930c-drxk.fw",
	.chunk_size = 56,
416
	.qam_demod_parameter_count = 2,
417 418
};

419
static struct drxk_config terratec_htc_stick_drxk = {
420 421 422 423 424
	.adr = 0x29,
	.single_master = 1,
	.no_i2c_bridge = 1,
	.microcode_name = "dvb-usb-terratec-htc-stick-drxk.fw",
	.chunk_size = 54,
425
	.qam_demod_parameter_count = 2,
426 427 428 429 430 431
	/* Required for the antenna_gpio to disable LNA. */
	.antenna_dvbt = true,
	/* The windows driver uses the same. This will disable LNA. */
	.antenna_gpio = 0x6,
};

432
static struct drxk_config maxmedia_ub425_tc_drxk = {
433 434 435
	.adr = 0x29,
	.single_master = 1,
	.no_i2c_bridge = 1,
436 437
	.microcode_name = "dvb-demod-drxk-01.fw",
	.chunk_size = 62,
438
	.qam_demod_parameter_count = 2,
439 440
};

441
static struct drxk_config pctv_520e_drxk = {
442 443 444
	.adr = 0x29,
	.single_master = 1,
	.microcode_name = "dvb-demod-drxk-pctv.fw",
445
	.qam_demod_parameter_count = 2,
446
	.chunk_size = 58,
447 448
	.antenna_dvbt = true, /* disable LNA */
	.antenna_gpio = (1 << 2), /* disable LNA */
449 450
};

451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468
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;
}

469 470 471 472 473
static void hauppauge_hvr930c_init(struct em28xx *dev)
{
	int i;

	struct em28xx_reg_seq hauppauge_hvr930c_init[] = {
474 475 476
		{EM2874_R80_GPIO_P0_CTRL,	0xff,	0xff,	0x65},
		{EM2874_R80_GPIO_P0_CTRL,	0xfb,	0xff,	0x32},
		{EM2874_R80_GPIO_P0_CTRL,	0xff,	0xff,	0xb8},
477
		{	-1,			-1,	-1,	-1},
478 479
	};
	struct em28xx_reg_seq hauppauge_hvr930c_end[] = {
480 481 482 483 484 485 486 487 488 489 490
		{EM2874_R80_GPIO_P0_CTRL,	0xef,	0xff,	0x01},
		{EM2874_R80_GPIO_P0_CTRL,	0xaf,	0xff,	0x65},
		{EM2874_R80_GPIO_P0_CTRL,	0xef,	0xff,	0x76},
		{EM2874_R80_GPIO_P0_CTRL,	0xef,	0xff,	0x01},
		{EM2874_R80_GPIO_P0_CTRL,	0xcf,	0xff,	0x0b},
		{EM2874_R80_GPIO_P0_CTRL,	0xef,	0xff,	0x40},

		{EM2874_R80_GPIO_P0_CTRL,	0xcf,	0xff,	0x65},
		{EM2874_R80_GPIO_P0_CTRL,	0xef,	0xff,	0x65},
		{EM2874_R80_GPIO_P0_CTRL,	0xcf,	0xff,	0x0b},
		{EM2874_R80_GPIO_P0_CTRL,	0xef,	0xff,	0x65},
491

492
		{	-1,			-1,	-1,	-1},
493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515
	};

	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);
516
	usleep_range(10000, 11000);
517
	em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x44);
518
	usleep_range(10000, 11000);
519

520
	dev->i2c_client[dev->def_i2c_bus].addr = 0x82 >> 1;
521 522

	for (i = 0; i < ARRAY_SIZE(regs); i++)
523 524
		i2c_master_send(&dev->i2c_client[dev->def_i2c_bus],
				regs[i].r, regs[i].len);
525 526 527 528 529 530 531 532
	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);
533
	usleep_range(10000, 11000);
534 535
}

536 537 538 539
static void terratec_h5_init(struct em28xx *dev)
{
	int i;
	struct em28xx_reg_seq terratec_h5_init[] = {
540
		{EM2820_R08_GPIO_CTRL,		0xff,	0xff,	10},
541 542 543
		{EM2874_R80_GPIO_P0_CTRL,	0xf6,	0xff,	100},
		{EM2874_R80_GPIO_P0_CTRL,	0xf2,	0xff,	50},
		{EM2874_R80_GPIO_P0_CTRL,	0xf6,	0xff,	100},
544
		{	-1,			-1,	-1,	-1},
545 546
	};
	struct em28xx_reg_seq terratec_h5_end[] = {
547 548 549
		{EM2874_R80_GPIO_P0_CTRL,	0xe6,	0xff,	100},
		{EM2874_R80_GPIO_P0_CTRL,	0xa6,	0xff,	50},
		{EM2874_R80_GPIO_P0_CTRL,	0xe6,	0xff,	100},
550
		{	-1,			-1,	-1,	-1},
551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572
	};
	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);
573
	usleep_range(10000, 11000);
574
	em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x45);
575
	usleep_range(10000, 11000);
576

577
	dev->i2c_client[dev->def_i2c_bus].addr = 0x82 >> 1;
578 579

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

585 586 587 588 589 590 591 592 593 594 595 596
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[] = {
597
		{EM2820_R08_GPIO_CTRL,		0xff,	0xff,	10},
598 599 600
		{EM2874_R80_GPIO_P0_CTRL,	0xf6,	0xff,	100},
		{EM2874_R80_GPIO_P0_CTRL,	0xe6,	0xff,	50},
		{EM2874_R80_GPIO_P0_CTRL,	0xf6,	0xff,	100},
601
		{	-1,			-1,	-1,	-1},
602 603
	};
	struct em28xx_reg_seq terratec_htc_stick_end[] = {
604 605
		{EM2874_R80_GPIO_P0_CTRL,	0xb6,	0xff,	100},
		{EM2874_R80_GPIO_P0_CTRL,	0xf6,	0xff,	50},
606
		{	-1,			-1,	-1,	-1},
607 608
	};

609 610 611 612
	/*
	 * Init the analog decoder (not yet supported), but
	 * it's probably still a good idea.
	 */
613 614 615 616 617 618 619 620 621 622 623 624 625 626
	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);
627
	usleep_range(10000, 11000);
628
	em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x44);
629
	usleep_range(10000, 11000);
630

631
	dev->i2c_client[dev->def_i2c_bus].addr = 0x82 >> 1;
632 633

	for (i = 0; i < ARRAY_SIZE(regs); i++)
634 635
		i2c_master_send(&dev->i2c_client[dev->def_i2c_bus],
				regs[i].r, regs[i].len);
636 637 638 639

	em28xx_gpio_set(dev, terratec_htc_stick_end);
};

640 641 642 643 644
static void terratec_htc_usb_xs_init(struct em28xx *dev)
{
	int i;

	struct em28xx_reg_seq terratec_htc_usb_xs_init[] = {
645
		{EM2820_R08_GPIO_CTRL,		0xff,	0xff,	10},
646 647 648
		{EM2874_R80_GPIO_P0_CTRL,	0xb2,	0xff,	100},
		{EM2874_R80_GPIO_P0_CTRL,	0xb2,	0xff,	50},
		{EM2874_R80_GPIO_P0_CTRL,	0xb6,	0xff,	100},
649
		{	-1,			-1,	-1,	-1},
650 651
	};
	struct em28xx_reg_seq terratec_htc_usb_xs_end[] = {
652 653 654
		{EM2874_R80_GPIO_P0_CTRL,	0xa6,	0xff,	100},
		{EM2874_R80_GPIO_P0_CTRL,	0xa6,	0xff,	50},
		{EM2874_R80_GPIO_P0_CTRL,	0xe6,	0xff,	100},
655
		{	-1,			-1,	-1,	-1},
656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685
	};

	/*
	 * 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);
686
	usleep_range(10000, 11000);
687
	em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x44);
688
	usleep_range(10000, 11000);
689

690
	dev->i2c_client[dev->def_i2c_bus].addr = 0x82 >> 1;
691 692

	for (i = 0; i < ARRAY_SIZE(regs); i++)
693 694
		i2c_master_send(&dev->i2c_client[dev->def_i2c_bus],
				regs[i].r, regs[i].len);
695 696 697 698

	em28xx_gpio_set(dev, terratec_htc_usb_xs_end);
};

699 700 701
static void pctv_520e_init(struct em28xx *dev)
{
	/*
702 703
	 * Init AVF4910B analog decoder. Looks like I2C traffic to
	 * digital demodulator and tuner are routed via AVF4910B.
704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719
	 */
	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},
	};

720
	dev->i2c_client[dev->def_i2c_bus].addr = 0x82 >> 1; /* 0x41 */
721 722

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

727
static int em28xx_pctv_290e_set_lna(struct dvb_frontend *fe)
728
{
729
	struct dtv_frontend_properties *c = &fe->dtv_property_cache;
730 731
	struct em28xx_i2c_bus *i2c_bus = fe->dvb->priv;
	struct em28xx *dev = i2c_bus->dev;
732 733 734 735 736
#ifdef CONFIG_GPIOLIB
	struct em28xx_dvb *dvb = dev->dvb;
	int ret;
	unsigned long flags;

737 738
	if (c->lna == 1)
		flags = GPIOF_OUT_INIT_HIGH; /* enable LNA */
739
	else
740
		flags = GPIOF_OUT_INIT_LOW; /* disable LNA */
741 742 743

	ret = gpio_request_one(dvb->lna_gpio, flags, NULL);
	if (ret)
744
		dev_err(&dev->intf->dev, "gpio request failed %d\n", ret);
745 746 747 748 749
	else
		gpio_free(dvb->lna_gpio);

	return ret;
#else
750
	dev_warn(&dev->intf->dev, "%s: LNA control is disabled (lna=%u)\n",
751
		 KBUILD_MODNAME, c->lna);
752 753 754 755
	return 0;
#endif
}

756 757 758 759 760 761 762 763 764 765 766 767 768 769 770
static int em28xx_pctv_292e_set_lna(struct dvb_frontend *fe)
{
	struct dtv_frontend_properties *c = &fe->dtv_property_cache;
	struct em28xx_i2c_bus *i2c_bus = fe->dvb->priv;
	struct em28xx *dev = i2c_bus->dev;
	u8 lna;

	if (c->lna == 1)
		lna = 0x01;
	else
		lna = 0x00;

	return em28xx_write_reg_bits(dev, EM2874_R80_GPIO_P0_CTRL, lna, 0x01);
}

771
static int em28xx_mt352_terratec_xs_init(struct dvb_frontend *fe)
772 773 774 775 776 777 778 779 780 781 782
{
	/* 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 };
783
	static u8 tuner_go[]       = { TUNER_GO, 0x01};
784 785

	mt352_write(fe, clock_config,   sizeof(clock_config));
786
	usleep_range(200, 250);
787 788 789 790 791 792 793 794 795 796 797 798
	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;
}

799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845
static void px_bcud_init(struct em28xx *dev)
{
	int i;
	struct {
		unsigned char r[4];
		int len;
	} regs1[] = {
		{{ 0x0e, 0x77 }, 2},
		{{ 0x0f, 0x77 }, 2},
		{{ 0x03, 0x90 }, 2},
	}, regs2[] = {
		{{ 0x07, 0x01 }, 2},
		{{ 0x08, 0x10 }, 2},
		{{ 0x13, 0x00 }, 2},
		{{ 0x17, 0x00 }, 2},
		{{ 0x03, 0x01 }, 2},
		{{ 0x10, 0xb1 }, 2},
		{{ 0x11, 0x40 }, 2},
		{{ 0x85, 0x7a }, 2},
		{{ 0x87, 0x04 }, 2},
	};
	static struct em28xx_reg_seq gpio[] = {
		{EM28XX_R06_I2C_CLK,		0x40,	0xff,	300},
		{EM2874_R80_GPIO_P0_CTRL,	0xfd,	0xff,	60},
		{EM28XX_R15_RGAIN,		0x20,	0xff,	0},
		{EM28XX_R16_GGAIN,		0x20,	0xff,	0},
		{EM28XX_R17_BGAIN,		0x20,	0xff,	0},
		{EM28XX_R18_ROFFSET,		0x00,	0xff,	0},
		{EM28XX_R19_GOFFSET,		0x00,	0xff,	0},
		{EM28XX_R1A_BOFFSET,		0x00,	0xff,	0},
		{EM28XX_R23_UOFFSET,		0x00,	0xff,	0},
		{EM28XX_R24_VOFFSET,		0x00,	0xff,	0},
		{EM28XX_R26_COMPR,		0x00,	0xff,	0},
		{0x13,				0x08,	0xff,	0},
		{EM28XX_R12_VINENABLE,		0x27,	0xff,	0},
		{EM28XX_R0C_USBSUSP,		0x10,	0xff,	0},
		{EM28XX_R27_OUTFMT,		0x00,	0xff,	0},
		{EM28XX_R10_VINMODE,		0x00,	0xff,	0},
		{EM28XX_R11_VINCTRL,		0x11,	0xff,	0},
		{EM2874_R50_IR_CONFIG,		0x01,	0xff,	0},
		{EM2874_R5F_TS_ENABLE,		0x80,	0xff,	0},
		{EM28XX_R06_I2C_CLK,		0x46,	0xff,	0},
	};
	em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x46);
	/* sleeping ISDB-T */
	dev->dvb->i2c_client_demod->addr = 0x14;
	for (i = 0; i < ARRAY_SIZE(regs1); i++)
846 847
		i2c_master_send(dev->dvb->i2c_client_demod,
				regs1[i].r, regs1[i].len);
848 849 850 851 852 853 854 855 856 857 858 859 860
	/* sleeping ISDB-S */
	dev->dvb->i2c_client_demod->addr = 0x15;
	for (i = 0; i < ARRAY_SIZE(regs2); i++)
		i2c_master_send(dev->dvb->i2c_client_demod, regs2[i].r,
				regs2[i].len);
	for (i = 0; i < ARRAY_SIZE(gpio); i++) {
		em28xx_write_reg_bits(dev, gpio[i].reg, gpio[i].val,
				      gpio[i].mask);
		if (gpio[i].sleep > 0)
			msleep(gpio[i].sleep);
	}
};

861 862 863 864
static struct mt352_config terratec_xs_mt352_cfg = {
	.demod_address = (0x1e >> 1),
	.no_tuner = 1,
	.if2 = 45600,
865
	.demod_init = em28xx_mt352_terratec_xs_init,
866 867
};

868 869 870 871 872
static struct tda10023_config em28xx_tda10023_config = {
	.demod_address = 0x0c,
	.invert = 1,
};

873 874 875 876 877 878 879
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,
880
	.gate = TDA18271_GATE_DIGITAL,
881 882
};

A
Aivar Päkk 已提交
883 884 885 886 887 888
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,
};
889

890 891 892 893
static struct mt2060_config em28xx_mt2060_config = {
	.i2c_address = 0x60,
};

A
Aivar Päkk 已提交
894 895
static struct qt1010_config em28xx_qt1010_config = {
	.i2c_address = 0x62
896 897 898 899 900 901 902 903 904 905 906
};

static const struct mb86a20s_config c3tech_duo_mb86a20s_config = {
	.demod_address = 0x10,
	.is_serial = true,
};

static struct tda18271_std_map mb86a20s_tda18271_config = {
	.dvbt_6   = { .if_freq = 4000, .agc_mode = 3, .std = 4,
		      .if_lvl = 1, .rfagc_top = 0x37, },
};
A
Aivar Päkk 已提交
907

908 909 910 911
static struct tda18271_config c3tech_duo_tda18271_config = {
	.std_map = &mb86a20s_tda18271_config,
	.gate    = TDA18271_GATE_DIGITAL,
	.small_i2c = TDA18271_03_BYTE_CHUNK_INIT,
A
Aivar Päkk 已提交
912 913
};

914 915 916 917 918 919 920 921 922 923 924 925 926
static struct tda18271_std_map drx_j_std_map = {
	.atsc_6   = { .if_freq = 5000, .agc_mode = 3, .std = 0, .if_lvl = 1,
		      .rfagc_top = 0x37, },
	.qam_6    = { .if_freq = 5380, .agc_mode = 3, .std = 3, .if_lvl = 1,
		      .rfagc_top = 0x37, },
};

static struct tda18271_config pinnacle_80e_dvb_config = {
	.std_map = &drx_j_std_map,
	.gate    = TDA18271_GATE_DIGITAL,
	.role    = TDA18271_MASTER,
};

927 928 929 930 931 932 933 934 935 936 937
static struct lgdt3306a_config hauppauge_01595_lgdt3306a_config = {
	.qam_if_khz         = 4000,
	.vsb_if_khz         = 3250,
	.spectral_inversion = 0,
	.deny_i2c_rptr      = 0,
	.mpeg_mode          = LGDT3306A_MPEG_SERIAL,
	.tpclk_edge         = LGDT3306A_TPCLK_RISING_EDGE,
	.tpvalid_polarity   = LGDT3306A_TP_VALID_HIGH,
	.xtalMHz            = 25,
};

938 939
/* ------------------------------------------------------------------ */

940
static noinline_for_stack int em28xx_attach_xc3028(u8 addr, struct em28xx *dev)
941 942
{
	struct dvb_frontend *fe;
943
	struct xc2028_config cfg;
944
	struct xc2028_ctrl ctl;
945

946
	memset(&cfg, 0, sizeof(cfg));
947
	cfg.i2c_adap  = &dev->i2c_adap[dev->def_i2c_bus];
948 949
	cfg.i2c_addr  = addr;

950 951 952 953
	memset(&ctl, 0, sizeof(ctl));
	em28xx_setup_xc3028(dev, &ctl);
	cfg.ctrl  = &ctl;

954
	if (!dev->dvb->fe[0]) {
955
		dev_err(&dev->intf->dev,
956
			"dvb frontend not attached. Can't attach xc3028\n");
957 958 959
		return -EINVAL;
	}

960
	fe = dvb_attach(xc2028_attach, dev->dvb->fe[0], &cfg);
961
	if (!fe) {
962
		dev_err(&dev->intf->dev, "xc3028 attach failed\n");
963 964
		dvb_frontend_detach(dev->dvb->fe[0]);
		dev->dvb->fe[0] = NULL;
965 966 967
		return -EINVAL;
	}

968
	dev_info(&dev->intf->dev, "xc3028 attached\n");
969 970 971 972

	return 0;
}

973 974
/* ------------------------------------------------------------------ */

975 976
static int em28xx_register_dvb(struct em28xx_dvb *dvb, struct module *module,
			       struct em28xx *dev, struct device *device)
977
{
978
	int result;
979
	bool create_rf_connector = false;
980

981
	mutex_init(&dvb->lock);
982

983
	/* register adapter */
984
	result = dvb_register_adapter(&dvb->adapter,
985
				      dev_name(&dev->intf->dev), module,
986
				      device, adapter_nr);
987
	if (result < 0) {
988
		dev_warn(&dev->intf->dev,
989 990
			 "dvb_register_adapter failed (errno = %d)\n",
			 result);
991 992
		goto fail_adapter;
	}
993 994 995
#ifdef CONFIG_MEDIA_CONTROLLER_DVB
	dvb->adapter.mdev = dev->media_dev;
#endif
996 997

	/* Ensure all frontends negotiate bus access */
998 999 1000
	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;
1001

1002
	dvb->adapter.priv = &dev->i2c_bus[dev->def_i2c_bus];
1003 1004

	/* register frontend */
1005
	result = dvb_register_frontend(&dvb->adapter, dvb->fe[0]);
1006
	if (result < 0) {
1007
		dev_warn(&dev->intf->dev,
1008 1009
			 "dvb_register_frontend failed (errno = %d)\n",
			 result);
1010 1011 1012 1013 1014 1015 1016
		goto fail_frontend0;
	}

	/* register 2nd frontend */
	if (dvb->fe[1]) {
		result = dvb_register_frontend(&dvb->adapter, dvb->fe[1]);
		if (result < 0) {
1017
			dev_warn(&dev->intf->dev,
1018 1019
				 "2nd dvb_register_frontend failed (errno = %d)\n",
				 result);
1020 1021
			goto fail_frontend1;
		}
1022 1023 1024 1025 1026 1027 1028 1029 1030
	}

	/* 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;
1031 1032
	dvb->demux.start_feed = em28xx_start_feed;
	dvb->demux.stop_feed  = em28xx_stop_feed;
1033

1034 1035
	result = dvb_dmx_init(&dvb->demux);
	if (result < 0) {
1036
		dev_warn(&dev->intf->dev,
1037 1038
			 "dvb_dmx_init failed (errno = %d)\n",
			 result);
1039 1040 1041 1042 1043 1044 1045 1046
		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) {
1047
		dev_warn(&dev->intf->dev,
1048 1049
			 "dvb_dmxdev_init failed (errno = %d)\n",
			 result);
1050 1051
		goto fail_dmxdev;
	}
1052

1053 1054 1055
	dvb->fe_hw.source = DMX_FRONTEND_0;
	result = dvb->demux.dmx.add_frontend(&dvb->demux.dmx, &dvb->fe_hw);
	if (result < 0) {
1056
		dev_warn(&dev->intf->dev,
1057 1058
			 "add_frontend failed (DMX_FRONTEND_0, errno = %d)\n",
			 result);
1059 1060 1061 1062 1063 1064
		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) {
1065
		dev_warn(&dev->intf->dev,
1066 1067
			 "add_frontend failed (DMX_MEMORY_FE, errno = %d)\n",
			 result);
1068 1069 1070 1071 1072
		goto fail_fe_mem;
	}

	result = dvb->demux.dmx.connect_frontend(&dvb->demux.dmx, &dvb->fe_hw);
	if (result < 0) {
1073
		dev_warn(&dev->intf->dev,
1074 1075
			 "connect_frontend failed (errno = %d)\n",
			 result);
1076 1077 1078 1079 1080
		goto fail_fe_conn;
	}

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

1082
	/* If the analog part won't create RF connectors, DVB will do it */
1083
	if (!dev->has_video || dev->tuner_type == TUNER_ABSENT)
1084 1085 1086
		create_rf_connector = true;

	result = dvb_create_media_graph(&dvb->adapter, create_rf_connector);
1087 1088 1089
	if (result < 0)
		goto fail_create_graph;

1090 1091
	return 0;

1092 1093
fail_create_graph:
	dvb_net_release(&dvb->net);
1094 1095 1096 1097 1098 1099 1100 1101 1102
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:
1103 1104 1105 1106 1107 1108 1109 1110
	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]);
1111 1112 1113 1114 1115
	dvb_unregister_adapter(&dvb->adapter);
fail_adapter:
	return result;
}

1116
static void em28xx_unregister_dvb(struct em28xx_dvb *dvb)
1117 1118 1119 1120 1121 1122
{
	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);
1123 1124 1125
	if (dvb->fe[1])
		dvb_unregister_frontend(dvb->fe[1]);
	dvb_unregister_frontend(dvb->fe[0]);
1126
	if (dvb->fe[1] && !dvb->dont_attach_fe1)
1127 1128
		dvb_frontend_detach(dvb->fe[1]);
	dvb_frontend_detach(dvb->fe[0]);
1129 1130 1131
	dvb_unregister_adapter(&dvb->adapter);
}

1132
static int em28174_dvb_init_pctv_460e(struct em28xx *dev)
1133 1134 1135 1136 1137 1138
{
	struct em28xx_dvb *dvb = dev->dvb;
	struct tda10071_platform_data tda10071_pdata = {};
	struct a8293_platform_data a8293_pdata = {};

	/* attach demod + tuner combo */
1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151
	tda10071_pdata.clk = 40444000; /* 40.444 MHz */
	tda10071_pdata.i2c_wr_max = 64;
	tda10071_pdata.ts_mode = TDA10071_TS_SERIAL;
	tda10071_pdata.pll_multiplier = 20;
	tda10071_pdata.tuner_i2c_addr = 0x14;

	dvb->i2c_client_demod = dvb_module_probe("tda10071", "tda10071_cx24118",
						 &dev->i2c_adap[dev->def_i2c_bus],
						 0x55, &tda10071_pdata);
	if (!dvb->i2c_client_demod)
		return -ENODEV;

	dvb->fe[0] = tda10071_pdata.get_dvb_frontend(dvb->i2c_client_demod);
1152 1153 1154

	/* attach SEC */
	a8293_pdata.dvb_frontend = dvb->fe[0];
1155 1156 1157 1158 1159 1160 1161

	dvb->i2c_client_sec = dvb_module_probe("a8293", NULL,
					       &dev->i2c_adap[dev->def_i2c_bus],
					       0x08, &a8293_pdata);
	if (!dvb->i2c_client_sec) {
		dvb_module_release(dvb->i2c_client_demod);
		return -ENODEV;
1162
	}
1163 1164

	return 0;
1165 1166
}

1167
static int em28178_dvb_init_pctv_461e(struct em28xx *dev)
1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181
{
	struct em28xx_dvb *dvb = dev->dvb;
	struct i2c_adapter *i2c_adapter;
	struct m88ds3103_platform_data m88ds3103_pdata = {};
	struct ts2020_config ts2020_config = {};
	struct a8293_platform_data a8293_pdata = {};

	/* attach demod */
	m88ds3103_pdata.clk = 27000000;
	m88ds3103_pdata.i2c_wr_max = 33;
	m88ds3103_pdata.ts_mode = M88DS3103_TS_PARALLEL;
	m88ds3103_pdata.ts_clk = 16000;
	m88ds3103_pdata.ts_clk_pol = 1;
	m88ds3103_pdata.agc = 0x99;
1182 1183 1184 1185 1186 1187 1188 1189 1190

	dvb->i2c_client_demod = dvb_module_probe("m88ds3103", NULL,
						 &dev->i2c_adap[dev->def_i2c_bus],
						 0x68, &m88ds3103_pdata);
	if (!dvb->i2c_client_demod)
		return -ENODEV;

	dvb->fe[0] = m88ds3103_pdata.get_dvb_frontend(dvb->i2c_client_demod);
	i2c_adapter = m88ds3103_pdata.get_i2c_adapter(dvb->i2c_client_demod);
1191 1192 1193

	/* attach tuner */
	ts2020_config.fe = dvb->fe[0];
1194 1195

	dvb->i2c_client_tuner = dvb_module_probe("ts2020", "ts2022",
1196 1197
						 i2c_adapter,
						 0x60, &ts2020_config);
1198 1199 1200
	if (!dvb->i2c_client_tuner) {
		dvb_module_release(dvb->i2c_client_demod);
		return -ENODEV;
1201
	}
1202

1203 1204 1205 1206 1207 1208
	/* delegate signal strength measurement to tuner */
	dvb->fe[0]->ops.read_signal_strength =
			dvb->fe[0]->ops.tuner_ops.get_rf_strength;

	/* attach SEC */
	a8293_pdata.dvb_frontend = dvb->fe[0];
1209
	dvb->i2c_client_sec = dvb_module_probe("a8293", NULL,
1210 1211
					       &dev->i2c_adap[dev->def_i2c_bus],
					       0x08, &a8293_pdata);
1212 1213 1214 1215
	if (!dvb->i2c_client_sec) {
		dvb_module_release(dvb->i2c_client_tuner);
		dvb_module_release(dvb->i2c_client_demod);
		return -ENODEV;
1216
	}
1217 1218

	return 0;
1219 1220
}

1221
static int em28178_dvb_init_pctv_292e(struct em28xx *dev)
1222 1223 1224
{
	struct em28xx_dvb *dvb = dev->dvb;
	struct i2c_adapter *adapter;
1225 1226
	struct si2168_config si2168_config = {};
	struct si2157_config si2157_config = {};
1227 1228 1229 1230 1231

	/* attach demod */
	si2168_config.i2c_adapter = &adapter;
	si2168_config.fe = &dvb->fe[0];
	si2168_config.ts_mode = SI2168_TS_PARALLEL;
1232
	si2168_config.spectral_inversion = true;
1233

1234 1235 1236 1237 1238
	dvb->i2c_client_demod = dvb_module_probe("si2168", NULL,
						 &dev->i2c_adap[dev->def_i2c_bus],
						 0x64, &si2168_config);
	if (!dvb->i2c_client_demod)
		return -ENODEV;
1239 1240 1241 1242 1243 1244 1245

	/* attach tuner */
	si2157_config.fe = dvb->fe[0];
	si2157_config.if_port = 1;
#ifdef CONFIG_MEDIA_CONTROLLER_DVB
	si2157_config.mdev = dev->media_dev;
#endif
1246 1247 1248 1249 1250 1251
	dvb->i2c_client_tuner = dvb_module_probe("si2157", NULL,
						 adapter,
						 0x60, &si2157_config);
	if (!dvb->i2c_client_tuner) {
		dvb_module_release(dvb->i2c_client_demod);
		return -ENODEV;
1252 1253
	}
	dvb->fe[0]->ops.set_lna = em28xx_pctv_292e_set_lna;
1254 1255

	return 0;
1256 1257
}

1258
static int em28178_dvb_init_terratec_t2_stick_hd(struct em28xx *dev)
1259 1260 1261
{
	struct em28xx_dvb *dvb = dev->dvb;
	struct i2c_adapter *adapter;
1262 1263
	struct si2168_config si2168_config = {};
	struct si2157_config si2157_config = {};
1264 1265 1266 1267 1268 1269

	/* attach demod */
	si2168_config.i2c_adapter = &adapter;
	si2168_config.fe = &dvb->fe[0];
	si2168_config.ts_mode = SI2168_TS_PARALLEL;

1270 1271 1272 1273 1274
	dvb->i2c_client_demod = dvb_module_probe("si2168", NULL,
						 &dev->i2c_adap[dev->def_i2c_bus],
						 0x64, &si2168_config);
	if (!dvb->i2c_client_demod)
		return -ENODEV;
1275 1276 1277 1278 1279 1280 1281 1282

	/* attach tuner */
	memset(&si2157_config, 0, sizeof(si2157_config));
	si2157_config.fe = dvb->fe[0];
	si2157_config.if_port = 0;
#ifdef CONFIG_MEDIA_CONTROLLER_DVB
	si2157_config.mdev = dev->media_dev;
#endif
1283 1284 1285 1286 1287 1288
	dvb->i2c_client_tuner = dvb_module_probe("si2157", "si2146",
						 adapter,
						 0x60, &si2157_config);
	if (!dvb->i2c_client_tuner) {
		dvb_module_release(dvb->i2c_client_demod);
		return -ENODEV;
1289 1290
	}

1291
	return 0;
1292 1293
}

1294
static int em28178_dvb_init_plex_px_bcud(struct em28xx *dev)
1295 1296
{
	struct em28xx_dvb *dvb = dev->dvb;
1297 1298
	struct tc90522_config tc90522_config = {};
	struct qm1d1c0042_config qm1d1c0042_config = {};
1299 1300

	/* attach demod */
1301 1302 1303 1304 1305
	dvb->i2c_client_demod = dvb_module_probe("tc90522", "tc90522sat",
						 &dev->i2c_adap[dev->def_i2c_bus],
						 0x15, &tc90522_config);
	if (!dvb->i2c_client_demod)
		return -ENODEV;
1306 1307 1308 1309

	/* attach tuner */
	qm1d1c0042_config.fe = tc90522_config.fe;
	qm1d1c0042_config.lpf = 1;
1310 1311 1312 1313 1314 1315 1316

	dvb->i2c_client_tuner = dvb_module_probe("qm1d1c0042", NULL,
						 tc90522_config.tuner_i2c,
						 0x61, &qm1d1c0042_config);
	if (!dvb->i2c_client_tuner) {
		dvb_module_release(dvb->i2c_client_demod);
		return -ENODEV;
1317
	}
1318

1319 1320
	dvb->fe[0] = tc90522_config.fe;
	px_bcud_init(dev);
1321 1322

	return 0;
1323 1324
}

1325
static int em28174_dvb_init_hauppauge_wintv_dualhd_dvb(struct em28xx *dev)
1326 1327 1328
{
	struct em28xx_dvb *dvb = dev->dvb;
	struct i2c_adapter *adapter;
1329 1330 1331
	struct si2168_config si2168_config = {};
	struct si2157_config si2157_config = {};
	unsigned char addr;
1332 1333 1334 1335 1336

	/* attach demod */
	si2168_config.i2c_adapter = &adapter;
	si2168_config.fe = &dvb->fe[0];
	si2168_config.ts_mode = SI2168_TS_SERIAL;
1337
	si2168_config.spectral_inversion = true;
1338
	addr = (dev->ts == PRIMARY_TS) ? 0x64 : 0x67;
1339

1340 1341 1342 1343 1344
	dvb->i2c_client_demod = dvb_module_probe("si2168", NULL,
						 &dev->i2c_adap[dev->def_i2c_bus],
						 addr, &si2168_config);
	if (!dvb->i2c_client_demod)
		return -ENODEV;
1345 1346 1347 1348 1349 1350 1351 1352

	/* attach tuner */
	memset(&si2157_config, 0, sizeof(si2157_config));
	si2157_config.fe = dvb->fe[0];
	si2157_config.if_port = 1;
#ifdef CONFIG_MEDIA_CONTROLLER_DVB
	si2157_config.mdev = dev->media_dev;
#endif
1353 1354 1355 1356 1357 1358 1359 1360
	addr = (dev->ts == PRIMARY_TS) ? 0x60 : 0x63;

	dvb->i2c_client_tuner = dvb_module_probe("si2157", NULL,
						 adapter,
						 addr, &si2157_config);
	if (!dvb->i2c_client_tuner) {
		dvb_module_release(dvb->i2c_client_demod);
		return -ENODEV;
1361 1362
	}

1363
	return 0;
1364 1365 1366 1367 1368 1369
}

static int em28174_dvb_init_hauppauge_wintv_dualhd_01595(struct em28xx *dev)
{
	struct em28xx_dvb *dvb = dev->dvb;
	struct i2c_adapter *adapter;
1370
	struct lgdt3306a_config lgdt3306a_config =  {};
1371
	struct si2157_config si2157_config = {};
1372
	unsigned char addr;
1373 1374 1375 1376 1377

	/* attach demod */
	lgdt3306a_config = hauppauge_01595_lgdt3306a_config;
	lgdt3306a_config.fe = &dvb->fe[0];
	lgdt3306a_config.i2c_adapter = &adapter;
1378
	addr = (dev->ts == PRIMARY_TS) ? 0x59 : 0x0e;
1379

1380 1381 1382 1383 1384
	dvb->i2c_client_demod = dvb_module_probe("lgdt3306a", NULL,
						 &dev->i2c_adap[dev->def_i2c_bus],
						 addr, &lgdt3306a_config);
	if (!dvb->i2c_client_demod)
		return -ENODEV;
1385 1386 1387 1388 1389 1390 1391 1392

	/* attach tuner */
	si2157_config.fe = dvb->fe[0];
	si2157_config.if_port = 1;
	si2157_config.inversion = 1;
#ifdef CONFIG_MEDIA_CONTROLLER_DVB
	si2157_config.mdev = dev->media_dev;
#endif
1393 1394 1395 1396 1397 1398 1399 1400
	addr = (dev->ts == PRIMARY_TS) ? 0x60 : 0x62;

	dvb->i2c_client_tuner = dvb_module_probe("si2157", NULL,
						 adapter,
						 0x60, &si2157_config);
	if (!dvb->i2c_client_tuner) {
		dvb_module_release(dvb->i2c_client_demod);
		return -ENODEV;
1401 1402
	}

1403
	return 0;
1404
}
1405

1406
static int em28xx_dvb_init(struct em28xx *dev)
1407
{
1408
	int result = 0, dvb_alt = 0;
1409
	struct em28xx_dvb *dvb;
1410
	struct usb_device *udev;
1411

1412 1413 1414 1415 1416
	if (dev->is_audio_only) {
		/* Shouldn't initialize IR for this interface */
		return 0;
	}

1417
	if (!dev->board.has_dvb) {
1418 1419 1420 1421
		/* This device does not support the extension */
		return 0;
	}

1422
	dev_info(&dev->intf->dev, "Binding DVB extension\n");
1423

1424
	dvb = kzalloc(sizeof(*dvb), GFP_KERNEL);
1425
	if (!dvb)
1426
		return -ENOMEM;
1427

1428
	dev->dvb = dvb;
1429 1430
	dvb->fe[0] = NULL;
	dvb->fe[1] = NULL;
1431

1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446
	/* pre-allocate DVB usb transfer buffers */
	if (dev->dvb_xfer_bulk) {
		result = em28xx_alloc_urbs(dev, EM28XX_DIGITAL_MODE,
					   dev->dvb_xfer_bulk,
					   EM28XX_DVB_NUM_BUFS,
					   512,
					   EM28XX_DVB_BULK_PACKET_MULTIPLIER);
	} else {
		result = em28xx_alloc_urbs(dev, EM28XX_DIGITAL_MODE,
					   dev->dvb_xfer_bulk,
					   EM28XX_DVB_NUM_BUFS,
					   dev->dvb_max_pkt_size_isoc,
					   EM28XX_DVB_NUM_ISOC_PACKETS);
	}
	if (result) {
1447
		dev_err(&dev->intf->dev,
1448
			"failed to pre-allocate USB transfer buffers for DVB.\n");
1449 1450 1451 1452 1453
		kfree(dvb);
		dev->dvb = NULL;
		return result;
	}

1454
	mutex_lock(&dev->lock);
1455
	em28xx_set_mode(dev, EM28XX_DIGITAL_MODE);
1456 1457
	/* init frontend */
	switch (dev->model) {
1458
	case EM2874_BOARD_LEADERSHIP_ISDBT:
1459
		dvb->fe[0] = dvb_attach(s921_attach,
1460 1461
					&sharp_isdbt,
					&dev->i2c_adap[dev->def_i2c_bus]);
1462

1463
		if (!dvb->fe[0]) {
1464 1465 1466 1467 1468
			result = -EINVAL;
			goto out_free;
		}

		break;
1469
	case EM2883_BOARD_HAUPPAUGE_WINTV_HVR_850:
1470
	case EM2883_BOARD_HAUPPAUGE_WINTV_HVR_950:
1471
	case EM2880_BOARD_PINNACLE_PCTV_HD_PRO:
1472
	case EM2880_BOARD_AMD_ATI_TV_WONDER_HD_600:
1473
		dvb->fe[0] = dvb_attach(lgdt330x_attach,
1474 1475
					&em2880_lgdt3303_dev,
					&dev->i2c_adap[dev->def_i2c_bus]);
1476
		if (em28xx_attach_xc3028(0x61, dev) < 0) {
1477 1478 1479
			result = -EINVAL;
			goto out_free;
		}
1480
		break;
1481
	case EM2880_BOARD_KWORLD_DVB_310U:
1482
		dvb->fe[0] = dvb_attach(zl10353_attach,
1483 1484
					&em28xx_zl10353_with_xc3028,
					&dev->i2c_adap[dev->def_i2c_bus]);
1485
		if (em28xx_attach_xc3028(0x61, dev) < 0) {
1486 1487 1488
			result = -EINVAL;
			goto out_free;
		}
1489
		break;
1490
	case EM2880_BOARD_HAUPPAUGE_WINTV_HVR_900:
1491
	case EM2882_BOARD_TERRATEC_HYBRID_XS:
1492
	case EM2880_BOARD_EMPIRE_DUAL_TV:
1493
		dvb->fe[0] = dvb_attach(zl10353_attach,
1494 1495
					&em28xx_zl10353_xc3028_no_i2c_gate,
					&dev->i2c_adap[dev->def_i2c_bus]);
1496
		if (em28xx_attach_xc3028(0x61, dev) < 0) {
1497 1498 1499 1500
			result = -EINVAL;
			goto out_free;
		}
		break;
1501
	case EM2880_BOARD_TERRATEC_HYBRID_XS:
1502
	case EM2880_BOARD_TERRATEC_HYBRID_XS_FR:
1503
	case EM2881_BOARD_PINNACLE_HYBRID_PRO:
1504
	case EM2882_BOARD_DIKOM_DK300:
1505
	case EM2882_BOARD_KWORLD_VS_DVBT:
1506 1507 1508 1509
		/*
		 * Those boards could have either a zl10353 or a mt352.
		 * If the chip id isn't for zl10353, try mt352.
		 */
1510
		dvb->fe[0] = dvb_attach(zl10353_attach,
1511 1512 1513
					&em28xx_zl10353_xc3028_no_i2c_gate,
					&dev->i2c_adap[dev->def_i2c_bus]);
		if (!dvb->fe[0])
1514
			dvb->fe[0] = dvb_attach(mt352_attach,
1515 1516
						&terratec_xs_mt352_cfg,
						&dev->i2c_adap[dev->def_i2c_bus]);
1517

1518
		if (em28xx_attach_xc3028(0x61, dev) < 0) {
1519 1520 1521 1522
			result = -EINVAL;
			goto out_free;
		}
		break;
1523 1524
	case EM2870_BOARD_TERRATEC_XS_MT2060:
		dvb->fe[0] = dvb_attach(zl10353_attach,
1525 1526 1527
					&em28xx_zl10353_no_i2c_gate_dev,
					&dev->i2c_adap[dev->def_i2c_bus]);
		if (dvb->fe[0]) {
1528
			dvb_attach(mt2060_attach, dvb->fe[0],
1529 1530
				   &dev->i2c_adap[dev->def_i2c_bus],
				   &em28xx_mt2060_config, 1220);
1531 1532
		}
		break;
A
Aivar Päkk 已提交
1533 1534
	case EM2870_BOARD_KWORLD_355U:
		dvb->fe[0] = dvb_attach(zl10353_attach,
1535 1536 1537
					&em28xx_zl10353_no_i2c_gate_dev,
					&dev->i2c_adap[dev->def_i2c_bus]);
		if (dvb->fe[0])
A
Aivar Päkk 已提交
1538
			dvb_attach(qt1010_attach, dvb->fe[0],
1539 1540
				   &dev->i2c_adap[dev->def_i2c_bus],
				   &em28xx_qt1010_config);
A
Aivar Päkk 已提交
1541
		break;
1542
	case EM2883_BOARD_KWORLD_HYBRID_330U:
1543
	case EM2882_BOARD_EVGA_INDTUBE:
1544
		dvb->fe[0] = dvb_attach(s5h1409_attach,
1545 1546
					&em28xx_s5h1409_with_xc3028,
					&dev->i2c_adap[dev->def_i2c_bus]);
1547
		if (em28xx_attach_xc3028(0x61, dev) < 0) {
1548 1549 1550 1551
			result = -EINVAL;
			goto out_free;
		}
		break;
1552
	case EM2882_BOARD_KWORLD_ATSC_315U:
1553
		dvb->fe[0] = dvb_attach(lgdt330x_attach,
1554 1555 1556
					&em2880_lgdt3303_dev,
					&dev->i2c_adap[dev->def_i2c_bus]);
		if (dvb->fe[0]) {
1557
			if (!dvb_attach(simple_tuner_attach, dvb->fe[0],
1558 1559
					&dev->i2c_adap[dev->def_i2c_bus],
					0x61, TUNER_THOMSON_DTT761X)) {
1560 1561 1562 1563 1564
				result = -EINVAL;
				goto out_free;
			}
		}
		break;
1565
	case EM2880_BOARD_HAUPPAUGE_WINTV_HVR_900_R2:
1566
	case EM2882_BOARD_PINNACLE_HYBRID_PRO_330E:
1567
		dvb->fe[0] = dvb_attach(drxd_attach, &em28xx_drxd, NULL,
1568 1569
					&dev->i2c_adap[dev->def_i2c_bus],
					&dev->intf->dev);
1570
		if (em28xx_attach_xc3028(0x61, dev) < 0) {
1571 1572 1573 1574
			result = -EINVAL;
			goto out_free;
		}
		break;
1575 1576
	case EM2870_BOARD_REDDO_DVB_C_USB_BOX:
		/* Philips CU1216L NIM (Philips TDA10023 + Infineon TUA6034) */
1577
		dvb->fe[0] = dvb_attach(tda10023_attach,
1578 1579 1580
					&em28xx_tda10023_config,
					&dev->i2c_adap[dev->def_i2c_bus],
					0x48);
1581 1582
		if (dvb->fe[0]) {
			if (!dvb_attach(simple_tuner_attach, dvb->fe[0],
1583 1584
					&dev->i2c_adap[dev->def_i2c_bus],
					0x60, TUNER_PHILIPS_CU1216L)) {
1585 1586 1587 1588 1589
				result = -EINVAL;
				goto out_free;
			}
		}
		break;
1590
	case EM2870_BOARD_KWORLD_A340:
1591
		dvb->fe[0] = dvb_attach(lgdt3305_attach,
1592 1593
					&em2870_lgdt3304_dev,
					&dev->i2c_adap[dev->def_i2c_bus]);
1594 1595 1596 1597 1598
		if (!dvb->fe[0]) {
			result = -EINVAL;
			goto out_free;
		}
		if (!dvb_attach(tda18271_attach, dvb->fe[0], 0x60,
1599
				&dev->i2c_adap[dev->def_i2c_bus],
1600 1601 1602 1603
				&kworld_a340_config)) {
			dvb_frontend_detach(dvb->fe[0]);
			result = -EINVAL;
			goto out_free;
1604
		}
1605
		break;
1606
	case EM28174_BOARD_PCTV_290E:
1607 1608 1609
		/* set default GPIO0 for LNA, used if GPIOLIB is undefined */
		dvb->lna_gpio = CXD2820R_GPIO_E | CXD2820R_GPIO_O |
				CXD2820R_GPIO_L;
1610
		dvb->fe[0] = dvb_attach(cxd2820r_attach,
1611
					&em28xx_cxd2820r_config,
1612
					&dev->i2c_adap[dev->def_i2c_bus],
1613
					&dvb->lna_gpio);
1614 1615
		if (dvb->fe[0]) {
			/* FE 0 attach tuner */
1616 1617 1618
			if (!dvb_attach(tda18271_attach,
					dvb->fe[0],
					0x60,
1619
					&dev->i2c_adap[dev->def_i2c_bus],
1620
					&em28xx_cxd2820r_tda18271_config)) {
1621 1622 1623 1624
				dvb_frontend_detach(dvb->fe[0]);
				result = -EINVAL;
				goto out_free;
			}
1625

1626
#ifdef CONFIG_GPIOLIB
1627 1628
			/* enable LNA for DVB-T, DVB-T2 and DVB-C */
			result = gpio_request_one(dvb->lna_gpio,
1629
						  GPIOF_OUT_INIT_LOW, NULL);
1630
			if (result)
1631
				dev_err(&dev->intf->dev,
1632 1633
					"gpio request failed %d\n",
					result);
1634 1635 1636 1637
			else
				gpio_free(dvb->lna_gpio);

			result = 0; /* continue even set LNA fails */
1638
#endif
1639 1640 1641
			dvb->fe[0]->ops.set_lna = em28xx_pctv_290e_set_lna;
		}

1642 1643
		break;
	case EM2884_BOARD_HAUPPAUGE_WINTV_HVR_930C:
1644
	{
1645
		struct xc5000_config cfg = {};
1646

1647 1648
		hauppauge_hvr930c_init(dev);

1649
		dvb->fe[0] = dvb_attach(drxk_attach,
1650 1651
					&hauppauge_930c_drxk,
					&dev->i2c_adap[dev->def_i2c_bus]);
1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663
		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 */
		cfg.i2c_address  = 0x61;
1664
		cfg.if_khz = 4000;
1665 1666 1667

		if (dvb->fe[0]->ops.i2c_gate_ctrl)
			dvb->fe[0]->ops.i2c_gate_ctrl(dvb->fe[0], 1);
1668 1669
		if (!dvb_attach(xc5000_attach, dvb->fe[0],
				&dev->i2c_adap[dev->def_i2c_bus], &cfg)) {
1670 1671 1672 1673 1674 1675
			result = -EINVAL;
			goto out_free;
		}
		if (dvb->fe[0]->ops.i2c_gate_ctrl)
			dvb->fe[0]->ops.i2c_gate_ctrl(dvb->fe[0], 0);

1676
		break;
1677
	}
1678 1679 1680
	case EM2884_BOARD_TERRATEC_H5:
		terratec_h5_init(dev);

1681 1682
		dvb->fe[0] = dvb_attach(drxk_attach, &terratec_h5_drxk,
					&dev->i2c_adap[dev->def_i2c_bus]);
1683
		if (!dvb->fe[0]) {
1684 1685 1686 1687 1688 1689 1690 1691 1692
			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;

1693
		/* Attach tda18271 to DVB-C frontend */
1694 1695
		if (dvb->fe[0]->ops.i2c_gate_ctrl)
			dvb->fe[0]->ops.i2c_gate_ctrl(dvb->fe[0], 1);
1696 1697
		if (!dvb_attach(tda18271c2dd_attach, dvb->fe[0],
				&dev->i2c_adap[dev->def_i2c_bus], 0x60)) {
1698 1699 1700 1701 1702
			result = -EINVAL;
			goto out_free;
		}
		if (dvb->fe[0]->ops.i2c_gate_ctrl)
			dvb->fe[0]->ops.i2c_gate_ctrl(dvb->fe[0], 0);
1703

1704
		break;
1705 1706
	case EM2884_BOARD_C3TECH_DIGITAL_DUO:
		dvb->fe[0] = dvb_attach(mb86a20s_attach,
1707 1708 1709
					&c3tech_duo_mb86a20s_config,
					&dev->i2c_adap[dev->def_i2c_bus]);
		if (dvb->fe[0])
1710 1711 1712 1713
			dvb_attach(tda18271_attach, dvb->fe[0], 0x60,
				   &dev->i2c_adap[dev->def_i2c_bus],
				   &c3tech_duo_tda18271_config);
		break;
1714 1715 1716
	case EM28174_BOARD_PCTV_460E:
		result = em28174_dvb_init_pctv_460e(dev);
		if (result)
1717
			goto out_free;
1718
		break;
1719
	case EM2874_BOARD_DELOCK_61959:
1720 1721 1722
	case EM2874_BOARD_MAXMEDIA_UB425_TC:
		/* attach demodulator */
		dvb->fe[0] = dvb_attach(drxk_attach, &maxmedia_ub425_tc_drxk,
1723
					&dev->i2c_adap[dev->def_i2c_bus]);
1724 1725 1726 1727 1728 1729

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

			/* attach tuner */
1730 1731 1732
			if (!dvb_attach(tda18271_attach, dvb->fe[0], 0x60,
					&dev->i2c_adap[dev->def_i2c_bus],
					&em28xx_cxd2820r_tda18271_config)) {
1733 1734 1735 1736 1737
				dvb_frontend_detach(dvb->fe[0]);
				result = -EINVAL;
				goto out_free;
			}
		}
1738
		break;
1739 1740 1741 1742
	case EM2884_BOARD_PCTV_510E:
	case EM2884_BOARD_PCTV_520E:
		pctv_520e_init(dev);

1743 1744
		/* attach demodulator */
		dvb->fe[0] = dvb_attach(drxk_attach, &pctv_520e_drxk,
1745
					&dev->i2c_adap[dev->def_i2c_bus]);
1746 1747 1748 1749

		if (dvb->fe[0]) {
			/* attach tuner */
			if (!dvb_attach(tda18271_attach, dvb->fe[0], 0x60,
1750
					&dev->i2c_adap[dev->def_i2c_bus],
1751 1752 1753 1754 1755 1756
					&em28xx_cxd2820r_tda18271_config)) {
				dvb_frontend_detach(dvb->fe[0]);
				result = -EINVAL;
				goto out_free;
			}
		}
1757
		break;
1758
	case EM2884_BOARD_ELGATO_EYETV_HYBRID_2008:
1759
	case EM2884_BOARD_CINERGY_HTC_STICK:
1760
	case EM2884_BOARD_TERRATEC_H6:
1761 1762
		terratec_htc_stick_init(dev);

1763 1764
		/* attach demodulator */
		dvb->fe[0] = dvb_attach(drxk_attach, &terratec_htc_stick_drxk,
1765
					&dev->i2c_adap[dev->def_i2c_bus]);
1766 1767 1768 1769 1770 1771 1772
		if (!dvb->fe[0]) {
			result = -EINVAL;
			goto out_free;
		}

		/* Attach the demodulator. */
		if (!dvb_attach(tda18271_attach, dvb->fe[0], 0x60,
1773
				&dev->i2c_adap[dev->def_i2c_bus],
1774 1775 1776 1777 1778 1779 1780 1781
				&em28xx_cxd2820r_tda18271_config)) {
			result = -EINVAL;
			goto out_free;
		}
		break;
	case EM2884_BOARD_TERRATEC_HTC_USB_XS:
		terratec_htc_usb_xs_init(dev);

1782 1783
		/* attach demodulator */
		dvb->fe[0] = dvb_attach(drxk_attach, &terratec_htc_stick_drxk,
1784
					&dev->i2c_adap[dev->def_i2c_bus]);
1785 1786 1787 1788 1789 1790 1791
		if (!dvb->fe[0]) {
			result = -EINVAL;
			goto out_free;
		}

		/* Attach the demodulator. */
		if (!dvb_attach(tda18271_attach, dvb->fe[0], 0x60,
1792
				&dev->i2c_adap[dev->def_i2c_bus],
1793 1794 1795 1796 1797
				&em28xx_cxd2820r_tda18271_config)) {
			result = -EINVAL;
			goto out_free;
		}
		break;
1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814
	case EM2874_BOARD_KWORLD_UB435Q_V2:
		dvb->fe[0] = dvb_attach(lgdt3305_attach,
					&em2874_lgdt3305_dev,
					&dev->i2c_adap[dev->def_i2c_bus]);
		if (!dvb->fe[0]) {
			result = -EINVAL;
			goto out_free;
		}

		/* Attach the demodulator. */
		if (!dvb_attach(tda18271_attach, dvb->fe[0], 0x60,
				&dev->i2c_adap[dev->def_i2c_bus],
				&kworld_ub435q_v2_config)) {
			result = -EINVAL;
			goto out_free;
		}
		break;
1815
	case EM2874_BOARD_KWORLD_UB435Q_V3:
1816 1817 1818
	{
		struct i2c_adapter *adapter = &dev->i2c_adap[dev->def_i2c_bus];

1819 1820 1821 1822 1823 1824 1825 1826
		dvb->fe[0] = dvb_attach(lgdt3305_attach,
					&em2874_lgdt3305_nogate_dev,
					&dev->i2c_adap[dev->def_i2c_bus]);
		if (!dvb->fe[0]) {
			result = -EINVAL;
			goto out_free;
		}

1827 1828 1829
		/* attach tuner */
		kworld_ub435q_v3_config.fe = dvb->fe[0];

1830
		dvb->i2c_client_tuner = dvb_module_probe("tda18212", NULL,
1831
							 adapter, 0x60,
1832 1833
							 &kworld_ub435q_v3_config);
		if (!dvb->i2c_client_tuner) {
1834 1835 1836 1837
			dvb_frontend_detach(dvb->fe[0]);
			result = -ENODEV;
			goto out_free;
		}
1838
		break;
1839
	}
1840
	case EM2874_BOARD_PCTV_HD_MINI_80E:
1841 1842 1843 1844 1845
		dvb->fe[0] = dvb_attach(drx39xxj_attach,
					&dev->i2c_adap[dev->def_i2c_bus]);
		if (dvb->fe[0]) {
			dvb->fe[0] = dvb_attach(tda18271_attach, dvb->fe[0],
						0x60,
1846 1847 1848 1849 1850 1851 1852 1853
						&dev->i2c_adap[dev->def_i2c_bus],
						&pinnacle_80e_dvb_config);
			if (!dvb->fe[0]) {
				result = -EINVAL;
				goto out_free;
			}
		}
		break;
1854 1855 1856
	case EM28178_BOARD_PCTV_461E:
		result = em28178_dvb_init_pctv_461e(dev);
		if (result)
1857
			goto out_free;
1858
		break;
1859
	case EM28178_BOARD_PCTV_292E:
1860 1861 1862
		result = em28178_dvb_init_pctv_292e(dev);
		if (result)
			goto out_free;
1863
		break;
1864
	case EM28178_BOARD_TERRATEC_T2_STICK_HD:
1865 1866 1867
		result = em28178_dvb_init_terratec_t2_stick_hd(dev);
		if (result)
			goto out_free;
1868
		break;
1869
	case EM28178_BOARD_PLEX_PX_BCUD:
1870 1871 1872
		result = em28178_dvb_init_plex_px_bcud(dev);
		if (result)
			goto out_free;
1873
		break;
1874
	case EM28174_BOARD_HAUPPAUGE_WINTV_DUALHD_DVB:
1875 1876 1877
		result = em28174_dvb_init_hauppauge_wintv_dualhd_dvb(dev);
		if (result)
			goto out_free;
1878
		break;
1879
	case EM28174_BOARD_HAUPPAUGE_WINTV_DUALHD_01595:
1880 1881 1882
		result = em28174_dvb_init_hauppauge_wintv_dualhd_01595(dev);
		if (result)
			goto out_free;
1883
		break;
1884
	default:
1885
		dev_err(&dev->intf->dev,
1886
			"The frontend of your DVB/ATSC card isn't supported yet\n");
1887 1888
		break;
	}
1889
	if (!dvb->fe[0]) {
1890
		dev_err(&dev->intf->dev, "frontend initialization failed\n");
1891 1892
		result = -EINVAL;
		goto out_free;
1893
	}
1894
	/* define general-purpose callback pointer */
1895
	dvb->fe[0]->callback = em28xx_tuner_callback;
1896
	if (dvb->fe[1])
1897
		dvb->fe[1]->callback = em28xx_tuner_callback;
1898 1899

	/* register everything */
1900
	result = em28xx_register_dvb(dvb, THIS_MODULE, dev, &dev->intf->dev);
1901

1902
	if (result < 0)
1903 1904
		goto out_free;

1905 1906 1907 1908 1909 1910 1911 1912
	if (dev->dvb_xfer_bulk) {
		dvb_alt = 0;
	} else { /* isoc */
		dvb_alt = dev->dvb_alt_isoc;
	}

	udev = interface_to_usbdev(dev->intf);
	usb_set_interface(udev, dev->ifnum, dvb_alt);
1913
	dev_info(&dev->intf->dev, "DVB extension successfully initialized\n");
1914 1915 1916

	kref_get(&dev->ref);

1917 1918 1919 1920
ret:
	em28xx_set_mode(dev, EM28XX_SUSPEND);
	mutex_unlock(&dev->lock);
	return result;
1921 1922 1923 1924

out_free:
	kfree(dvb);
	dev->dvb = NULL;
1925
	goto ret;
1926 1927
}

1928 1929 1930 1931 1932 1933 1934
static inline void prevent_sleep(struct dvb_frontend_ops *ops)
{
	ops->set_voltage = NULL;
	ops->sleep = NULL;
	ops->tuner_ops.sleep = NULL;
}

1935
static int em28xx_dvb_fini(struct em28xx *dev)
1936
{
1937 1938
	struct em28xx_dvb *dvb;

1939 1940 1941 1942 1943
	if (dev->is_audio_only) {
		/* Shouldn't initialize IR for this interface */
		return 0;
	}

1944
	if (!dev->board.has_dvb) {
1945 1946 1947 1948
		/* This device does not support the extension */
		return 0;
	}

1949 1950
	if (!dev->dvb)
		return 0;
1951

1952
	dev_info(&dev->intf->dev, "Closing DVB extension\n");
1953

1954
	dvb = dev->dvb;
1955

1956
	em28xx_uninit_usb_xfer(dev, EM28XX_DIGITAL_MODE);
1957

1958
	if (dev->disconnected) {
1959 1960 1961 1962
		/*
		 * We cannot tell the device to sleep
		 * once it has been unplugged.
		 */
1963
		if (dvb->fe[0]) {
1964
			prevent_sleep(&dvb->fe[0]->ops);
1965 1966 1967
			dvb->fe[0]->exit = DVB_FE_DEVICE_REMOVED;
		}
		if (dvb->fe[1]) {
1968
			prevent_sleep(&dvb->fe[1]->ops);
1969 1970
			dvb->fe[1]->exit = DVB_FE_DEVICE_REMOVED;
		}
1971
	}
1972

1973 1974
	em28xx_unregister_dvb(dvb);

1975 1976 1977 1978
	/* release I2C module bindings */
	dvb_module_release(dvb->i2c_client_sec);
	dvb_module_release(dvb->i2c_client_tuner);
	dvb_module_release(dvb->i2c_client_demod);
1979

1980 1981 1982 1983
	kfree(dvb);
	dev->dvb = NULL;
	kref_put(&dev->ref, em28xx_free_device);

1984 1985 1986
	return 0;
}

1987 1988 1989 1990 1991 1992 1993 1994 1995 1996
static int em28xx_dvb_suspend(struct em28xx *dev)
{
	int ret = 0;

	if (dev->is_audio_only)
		return 0;

	if (!dev->board.has_dvb)
		return 0;

1997
	dev_info(&dev->intf->dev, "Suspending DVB extension\n");
1998 1999 2000 2001 2002
	if (dev->dvb) {
		struct em28xx_dvb *dvb = dev->dvb;

		if (dvb->fe[0]) {
			ret = dvb_frontend_suspend(dvb->fe[0]);
2003
			dev_info(&dev->intf->dev, "fe0 suspend %d\n", ret);
2004 2005 2006
		}
		if (dvb->fe[1]) {
			dvb_frontend_suspend(dvb->fe[1]);
2007
			dev_info(&dev->intf->dev, "fe1 suspend %d\n", ret);
2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023
		}
	}

	return 0;
}

static int em28xx_dvb_resume(struct em28xx *dev)
{
	int ret = 0;

	if (dev->is_audio_only)
		return 0;

	if (!dev->board.has_dvb)
		return 0;

2024
	dev_info(&dev->intf->dev, "Resuming DVB extension\n");
2025 2026 2027 2028 2029
	if (dev->dvb) {
		struct em28xx_dvb *dvb = dev->dvb;

		if (dvb->fe[0]) {
			ret = dvb_frontend_resume(dvb->fe[0]);
2030
			dev_info(&dev->intf->dev, "fe0 resume %d\n", ret);
2031 2032 2033 2034
		}

		if (dvb->fe[1]) {
			ret = dvb_frontend_resume(dvb->fe[1]);
2035
			dev_info(&dev->intf->dev, "fe1 resume %d\n", ret);
2036 2037 2038 2039 2040 2041
		}
	}

	return 0;
}

2042 2043 2044
static struct em28xx_ops dvb_ops = {
	.id   = EM28XX_DVB,
	.name = "Em28xx dvb Extension",
2045 2046
	.init = em28xx_dvb_init,
	.fini = em28xx_dvb_fini,
2047 2048
	.suspend = em28xx_dvb_suspend,
	.resume = em28xx_dvb_resume,
2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062
};

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);