em28xx-dvb.c 45.6 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
 (c) 2008 Aidan Thornton <makosoft@googlemail.com>

13 14
 (c) 2012 Frank Schäfer <fschaefer.oss@googlemail.com>

15
 Based on cx88-dvb, saa7134-dvb and videobuf-dvb originally written by:
16 17 18 19 20 21 22 23 24
	(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>
25
#include <linux/slab.h>
26 27 28 29
#include <linux/usb.h>

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

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

MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@infradead.org>");
MODULE_LICENSE("GPL");
63 64 65
MODULE_DESCRIPTION(DRIVER_DESC " - digital TV interface");
MODULE_VERSION(EM28XX_VERSION);

66 67 68 69 70 71 72 73 74

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) 						\
75
	printk(KERN_DEBUG "%s/2-dvb: " fmt, dev->name, ## arg);	\
76 77
} while (0)

78
struct em28xx_dvb {
79
	struct dvb_frontend        *fe[2];
80 81 82 83 84 85 86 87 88 89 90 91

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

93
	/* Due to DRX-K - probably need changes */
94 95
	int (*gate_ctrl)(struct dvb_frontend *, int);
	struct semaphore      pll_mutex;
96
	bool			dont_attach_fe1;
97
	int			lna_gpio;
98
	struct i2c_client	*i2c_client_demod;
99
	struct i2c_client	*i2c_client_tuner;
100 101 102 103 104
};


static inline void print_err_status(struct em28xx *dev,
				     int packet, int status)
105
{
106
	char *errmsg = "Unknown";
107

108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
	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 {
137 138
		dprintk(1, "URB packet %d, status %d [%s].\n",
			packet, status, errmsg);
139 140
	}
}
141

142
static inline int em28xx_dvb_urb_data_copy(struct em28xx *dev, struct urb *urb)
143
{
144
	int xfer_bulk, num_packets, i;
145

146 147
	if (!dev)
		return 0;
148

149
	if (dev->disconnected)
150 151
		return 0;

152
	if (urb->status < 0)
153 154
		print_err_status(dev, -1, urb->status);

155 156 157 158 159 160 161 162 163 164 165 166 167 168
	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;
			}
169 170
			if (!urb->actual_length)
				continue;
171 172 173 174 175 176 177 178 179
			dvb_dmx_swfilter(&dev->dvb->demux, urb->transfer_buffer,
					urb->actual_length);
		} 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;
			}
180 181
			if (!urb->iso_frame_desc[i].actual_length)
				continue;
182 183 184 185
			dvb_dmx_swfilter(&dev->dvb->demux,
					 urb->transfer_buffer +
					 urb->iso_frame_desc[i].offset,
					 urb->iso_frame_desc[i].actual_length);
186 187 188 189 190 191
		}
	}

	return 0;
}

192
static int em28xx_start_streaming(struct em28xx_dvb *dvb)
193
{
194
	int rc;
195 196
	struct em28xx_i2c_bus *i2c_bus = dvb->adapter.priv;
	struct em28xx *dev = i2c_bus->dev;
197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213
	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;
	}
214

215
	usb_set_interface(dev->udev, dev->ifnum, dvb_alt);
216 217 218
	rc = em28xx_set_mode(dev, EM28XX_DIGITAL_MODE);
	if (rc < 0)
		return rc;
219

220
	dprintk(1, "Using %d buffers each with %d x %d bytes, alternate %d\n",
221
		EM28XX_DVB_NUM_BUFS,
222
		packet_multiplier,
223
		dvb_max_packet_size, dvb_alt);
224

225 226
	return em28xx_init_usb_xfer(dev, EM28XX_DIGITAL_MODE,
				    dev->dvb_xfer_bulk,
227
				    EM28XX_DVB_NUM_BUFS,
228 229
				    dvb_max_packet_size,
				    packet_multiplier,
230
				    em28xx_dvb_urb_data_copy);
231 232
}

233
static int em28xx_stop_streaming(struct em28xx_dvb *dvb)
234
{
235 236
	struct em28xx_i2c_bus *i2c_bus = dvb->adapter.priv;
	struct em28xx *dev = i2c_bus->dev;
237

238
	em28xx_stop_urbs(dev);
239

240 241 242
	return 0;
}

243
static int em28xx_start_feed(struct dvb_demux_feed *feed)
244 245 246 247 248 249 250 251 252 253 254 255 256
{
	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) {
257
		ret = em28xx_start_streaming(dvb);
258 259
		if (ret < 0)
			rc = ret;
260 261 262 263 264 265
	}

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

266
static int em28xx_stop_feed(struct dvb_demux_feed *feed)
267 268 269 270 271 272 273
{
	struct dvb_demux *demux  = feed->demux;
	struct em28xx_dvb *dvb = demux->priv;
	int err = 0;

	mutex_lock(&dvb->lock);
	dvb->nfeeds--;
274 275

	if (0 == dvb->nfeeds)
276
		err = em28xx_stop_streaming(dvb);
277

278 279 280 281 282
	mutex_unlock(&dvb->lock);
	return err;
}


283 284 285 286

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

	if (acquire)
		return em28xx_set_mode(dev, EM28XX_DIGITAL_MODE);
	else
293
		return em28xx_set_mode(dev, EM28XX_SUSPEND);
294 295
}

296 297
/* ------------------------------------------------------------------ */

298 299 300 301
static struct lgdt330x_config em2880_lgdt3303_dev = {
	.demod_address = 0x0e,
	.demod_chip = LGDT3303,
};
302

303 304 305 306 307 308 309 310 311 312 313 314
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,
};

315 316 317 318 319 320 321 322 323 324 325 326
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,
};

327 328 329 330 331 332 333 334 335 336 337 338
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,
};

339 340 341 342
static struct s921_config sharp_isdbt = {
	.demod_address = 0x30 >> 1
};

343 344 345 346 347 348 349
static struct zl10353_config em28xx_zl10353_with_xc3028 = {
	.demod_address = (0x1e >> 1),
	.no_tuner = 1,
	.parallel_ts = 1,
	.if2 = 45600,
};

350 351 352 353 354 355 356 357 358
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
};

359 360 361 362 363 364 365 366 367 368 369
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,
};

370 371 372 373 374
static struct tda18271_config kworld_ub435q_v2_config = {
	.std_map	= &kworld_a340_std_map,
	.gate		= TDA18271_GATE_DIGITAL,
};

375 376 377 378 379
static struct tda18212_config kworld_ub435q_v3_config = {
	.if_atsc_vsb	= 3600,
	.if_atsc_qam	= 3600,
};

380
static struct zl10353_config em28xx_zl10353_xc3028_no_i2c_gate = {
381 382 383 384 385 386 387
	.demod_address = (0x1e >> 1),
	.no_tuner = 1,
	.disable_i2c_gate_ctrl = 1,
	.parallel_ts = 1,
	.if2 = 45600,
};

388
static struct drxd_config em28xx_drxd = {
389 390 391 392 393 394
	.demod_address = 0x70,
	.demod_revision = 0xa2,
	.pll_type = DRXD_PLL_NONE,
	.clock = 12000,
	.insert_rs_byte = 1,
	.IF = 42800000,
395
	.disable_i2c_gate_ctrl = 1,
396 397
};

398
static struct drxk_config terratec_h5_drxk = {
399
	.adr = 0x29,
400
	.single_master = 1,
401
	.no_i2c_bridge = 1,
402
	.microcode_name = "dvb-usb-terratec-h5-drxk.fw",
403
	.qam_demod_parameter_count = 2,
404 405
};

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

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

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

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

447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464
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;
}

465 466 467 468 469
static void hauppauge_hvr930c_init(struct em28xx *dev)
{
	int i;

	struct em28xx_reg_seq hauppauge_hvr930c_init[] = {
470 471 472
		{EM2874_R80_GPIO_P0_CTRL,	0xff,	0xff,	0x65},
		{EM2874_R80_GPIO_P0_CTRL,	0xfb,	0xff,	0x32},
		{EM2874_R80_GPIO_P0_CTRL,	0xff,	0xff,	0xb8},
473
		{	-1,			-1,	-1,	-1},
474 475
	};
	struct em28xx_reg_seq hauppauge_hvr930c_end[] = {
476 477 478 479 480 481 482 483 484 485 486
		{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},
487

488
		{	-1,			-1,	-1,	-1},
489 490 491 492 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);
	msleep(10);
	em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x44);
	msleep(10);

516
	dev->i2c_client[dev->def_i2c_bus].addr = 0x82 >> 1;
517 518

	for (i = 0; i < ARRAY_SIZE(regs); i++)
519
		i2c_master_send(&dev->i2c_client[dev->def_i2c_bus], regs[i].r, regs[i].len);
520 521 522 523 524 525 526 527 528 529 530 531
	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);

}

532 533 534 535
static void terratec_h5_init(struct em28xx *dev)
{
	int i;
	struct em28xx_reg_seq terratec_h5_init[] = {
536
		{EM2820_R08_GPIO_CTRL,		0xff,	0xff,	10},
537 538 539
		{EM2874_R80_GPIO_P0_CTRL,	0xf6,	0xff,	100},
		{EM2874_R80_GPIO_P0_CTRL,	0xf2,	0xff,	50},
		{EM2874_R80_GPIO_P0_CTRL,	0xf6,	0xff,	100},
540
		{	-1,			-1,	-1,	-1},
541 542
	};
	struct em28xx_reg_seq terratec_h5_end[] = {
543 544 545
		{EM2874_R80_GPIO_P0_CTRL,	0xe6,	0xff,	100},
		{EM2874_R80_GPIO_P0_CTRL,	0xa6,	0xff,	50},
		{EM2874_R80_GPIO_P0_CTRL,	0xe6,	0xff,	100},
546
		{	-1,			-1,	-1,	-1},
547 548 549 550 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);
	msleep(10);
	em28xx_write_reg(dev, EM28XX_R06_I2C_CLK, 0x45);
	msleep(10);

573
	dev->i2c_client[dev->def_i2c_bus].addr = 0x82 >> 1;
574 575

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

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

604 605 606 607
	/*
	 * Init the analog decoder (not yet supported), but
	 * it's probably still a good idea.
	 */
608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625
	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);

626
	dev->i2c_client[dev->def_i2c_bus].addr = 0x82 >> 1;
627 628

	for (i = 0; i < ARRAY_SIZE(regs); i++)
629
		i2c_master_send(&dev->i2c_client[dev->def_i2c_bus], regs[i].r, regs[i].len);
630 631 632 633

	em28xx_gpio_set(dev, terratec_htc_stick_end);
};

634 635 636 637 638
static void terratec_htc_usb_xs_init(struct em28xx *dev)
{
	int i;

	struct em28xx_reg_seq terratec_htc_usb_xs_init[] = {
639
		{EM2820_R08_GPIO_CTRL,		0xff,	0xff,	10},
640 641 642
		{EM2874_R80_GPIO_P0_CTRL,	0xb2,	0xff,	100},
		{EM2874_R80_GPIO_P0_CTRL,	0xb2,	0xff,	50},
		{EM2874_R80_GPIO_P0_CTRL,	0xb6,	0xff,	100},
643
		{	-1,			-1,	-1,	-1},
644 645
	};
	struct em28xx_reg_seq terratec_htc_usb_xs_end[] = {
646 647 648
		{EM2874_R80_GPIO_P0_CTRL,	0xa6,	0xff,	100},
		{EM2874_R80_GPIO_P0_CTRL,	0xa6,	0xff,	50},
		{EM2874_R80_GPIO_P0_CTRL,	0xe6,	0xff,	100},
649
		{	-1,			-1,	-1,	-1},
650 651 652 653 654 655 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
	};

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

684
	dev->i2c_client[dev->def_i2c_bus].addr = 0x82 >> 1;
685 686

	for (i = 0; i < ARRAY_SIZE(regs); i++)
687
		i2c_master_send(&dev->i2c_client[dev->def_i2c_bus], regs[i].r, regs[i].len);
688 689 690 691

	em28xx_gpio_set(dev, terratec_htc_usb_xs_end);
};

692 693 694
static void pctv_520e_init(struct em28xx *dev)
{
	/*
695 696
	 * Init AVF4910B analog decoder. Looks like I2C traffic to
	 * digital demodulator and tuner are routed via AVF4910B.
697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712
	 */
	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},
	};

713
	dev->i2c_client[dev->def_i2c_bus].addr = 0x82 >> 1; /* 0x41 */
714 715

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

719
static int em28xx_pctv_290e_set_lna(struct dvb_frontend *fe)
720
{
721
	struct dtv_frontend_properties *c = &fe->dtv_property_cache;
722 723
	struct em28xx_i2c_bus *i2c_bus = fe->dvb->priv;
	struct em28xx *dev = i2c_bus->dev;
724 725 726 727 728
#ifdef CONFIG_GPIOLIB
	struct em28xx_dvb *dvb = dev->dvb;
	int ret;
	unsigned long flags;

729 730
	if (c->lna == 1)
		flags = GPIOF_OUT_INIT_HIGH; /* enable LNA */
731
	else
732
		flags = GPIOF_OUT_INIT_LOW; /* disable LNA */
733 734 735 736 737 738 739 740 741

	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
742 743
	dev_warn(&dev->udev->dev, "%s: LNA control is disabled (lna=%u)\n",
			KBUILD_MODNAME, c->lna);
744 745 746 747
	return 0;
#endif
}

748 749 750 751 752 753 754 755 756 757 758 759 760 761 762
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);
}

763
static int em28xx_mt352_terratec_xs_init(struct dvb_frontend *fe)
764 765 766 767 768 769 770 771 772 773 774
{
	/* 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 };
775
	static u8 tuner_go[]       = { TUNER_GO, 0x01};
776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794

	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,
795
	.demod_init = em28xx_mt352_terratec_xs_init,
796 797
};

798 799 800 801 802
static struct tda10023_config em28xx_tda10023_config = {
	.demod_address = 0x0c,
	.invert = 1,
};

803 804 805 806 807 808 809
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,
810
	.gate = TDA18271_GATE_DIGITAL,
811 812
};

813
static const struct tda10071_config em28xx_tda10071_config = {
814 815
	.demod_i2c_addr = 0x55, /* (0xaa >> 1) */
	.tuner_i2c_addr = 0x14,
816 817 818 819 820 821 822 823 824 825 826
	.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 已提交
827 828 829 830 831 832 833 834
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
835 836 837 838 839 840 841 842 843 844 845
};

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 已提交
846

847 848 849 850
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 已提交
851 852
};

853 854 855 856 857
static const struct m88ds3103_config pctv_461e_m88ds3103_config = {
	.i2c_addr = 0x68,
	.clock = 27000000,
	.i2c_wr_max = 33,
	.clock_out = 0,
858 859 860
	.ts_mode = M88DS3103_TS_PARALLEL,
	.ts_clk = 16000,
	.ts_clk_pol = 1,
861 862 863
	.agc = 0x99,
};

864 865 866 867 868 869 870 871 872 873 874 875 876 877

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,
};

878 879
/* ------------------------------------------------------------------ */

880
static int em28xx_attach_xc3028(u8 addr, struct em28xx *dev)
881 882
{
	struct dvb_frontend *fe;
883
	struct xc2028_config cfg;
884
	struct xc2028_ctrl ctl;
885

886
	memset(&cfg, 0, sizeof(cfg));
887
	cfg.i2c_adap  = &dev->i2c_adap[dev->def_i2c_bus];
888 889
	cfg.i2c_addr  = addr;

890 891 892 893
	memset(&ctl, 0, sizeof(ctl));
	em28xx_setup_xc3028(dev, &ctl);
	cfg.ctrl  = &ctl;

894
	if (!dev->dvb->fe[0]) {
895 896
		em28xx_errdev("/2: dvb frontend not attached. "
				"Can't attach xc3028\n");
897 898 899
		return -EINVAL;
	}

900
	fe = dvb_attach(xc2028_attach, dev->dvb->fe[0], &cfg);
901
	if (!fe) {
902
		em28xx_errdev("/2: xc3028 attach failed\n");
903 904
		dvb_frontend_detach(dev->dvb->fe[0]);
		dev->dvb->fe[0] = NULL;
905 906 907
		return -EINVAL;
	}

908
	em28xx_info("%s/2: xc3028 attached\n", dev->name);
909 910 911 912

	return 0;
}

913 914
/* ------------------------------------------------------------------ */

915 916
static int em28xx_register_dvb(struct em28xx_dvb *dvb, struct module *module,
			       struct em28xx *dev, struct device *device)
917
{
918
	int result;
919

920
	mutex_init(&dvb->lock);
921

922 923 924 925 926 927 928 929
	/* 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;
	}
930 931

	/* Ensure all frontends negotiate bus access */
932 933 934
	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;
935

936
	dvb->adapter.priv = &dev->i2c_bus[dev->def_i2c_bus];
937 938

	/* register frontend */
939
	result = dvb_register_frontend(&dvb->adapter, dvb->fe[0]);
940 941 942
	if (result < 0) {
		printk(KERN_WARNING "%s: dvb_register_frontend failed (errno = %d)\n",
		       dev->name, result);
943 944 945 946 947 948 949 950 951 952 953
		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;
		}
954 955 956 957 958 959 960 961 962
	}

	/* 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;
963 964
	dvb->demux.start_feed = em28xx_start_feed;
	dvb->demux.stop_feed  = em28xx_stop_feed;
965

966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981
	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;
	}
982

983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018
	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:
1019 1020 1021 1022 1023 1024 1025 1026
	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]);
1027 1028 1029 1030 1031
	dvb_unregister_adapter(&dvb->adapter);
fail_adapter:
	return result;
}

1032
static void em28xx_unregister_dvb(struct em28xx_dvb *dvb)
1033 1034 1035 1036 1037 1038
{
	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);
1039 1040 1041
	if (dvb->fe[1])
		dvb_unregister_frontend(dvb->fe[1]);
	dvb_unregister_frontend(dvb->fe[0]);
1042
	if (dvb->fe[1] && !dvb->dont_attach_fe1)
1043 1044
		dvb_frontend_detach(dvb->fe[1]);
	dvb_frontend_detach(dvb->fe[0]);
1045 1046 1047
	dvb_unregister_adapter(&dvb->adapter);
}

1048
static int em28xx_dvb_init(struct em28xx *dev)
1049
{
1050
	int result = 0;
1051 1052
	struct em28xx_dvb *dvb;

1053 1054 1055 1056 1057
	if (dev->is_audio_only) {
		/* Shouldn't initialize IR for this interface */
		return 0;
	}

1058
	if (!dev->board.has_dvb) {
1059 1060 1061 1062
		/* This device does not support the extension */
		return 0;
	}

1063 1064
	em28xx_info("Binding DVB extension\n");

1065
	dvb = kzalloc(sizeof(struct em28xx_dvb), GFP_KERNEL);
1066
	if (dvb == NULL) {
1067
		em28xx_info("em28xx_dvb: memory allocation failed\n");
1068 1069 1070
		return -ENOMEM;
	}
	dev->dvb = dvb;
1071
	dvb->fe[0] = dvb->fe[1] = NULL;
1072

1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093
	/* 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) {
		em28xx_errdev("em28xx_dvb: failed to pre-allocate USB transfer buffers for DVB.\n");
		kfree(dvb);
		dev->dvb = NULL;
		return result;
	}

1094
	mutex_lock(&dev->lock);
1095
	em28xx_set_mode(dev, EM28XX_DIGITAL_MODE);
1096 1097
	/* init frontend */
	switch (dev->model) {
1098
	case EM2874_BOARD_LEADERSHIP_ISDBT:
1099
		dvb->fe[0] = dvb_attach(s921_attach,
1100
				&sharp_isdbt, &dev->i2c_adap[dev->def_i2c_bus]);
1101

1102
		if (!dvb->fe[0]) {
1103 1104 1105 1106 1107
			result = -EINVAL;
			goto out_free;
		}

		break;
1108
	case EM2883_BOARD_HAUPPAUGE_WINTV_HVR_850:
1109
	case EM2883_BOARD_HAUPPAUGE_WINTV_HVR_950:
1110
	case EM2880_BOARD_PINNACLE_PCTV_HD_PRO:
1111
	case EM2880_BOARD_AMD_ATI_TV_WONDER_HD_600:
1112
		dvb->fe[0] = dvb_attach(lgdt330x_attach,
1113
					   &em2880_lgdt3303_dev,
1114
					   &dev->i2c_adap[dev->def_i2c_bus]);
1115
		if (em28xx_attach_xc3028(0x61, dev) < 0) {
1116 1117 1118
			result = -EINVAL;
			goto out_free;
		}
1119
		break;
1120
	case EM2880_BOARD_KWORLD_DVB_310U:
1121
		dvb->fe[0] = dvb_attach(zl10353_attach,
1122
					   &em28xx_zl10353_with_xc3028,
1123
					   &dev->i2c_adap[dev->def_i2c_bus]);
1124
		if (em28xx_attach_xc3028(0x61, dev) < 0) {
1125 1126 1127
			result = -EINVAL;
			goto out_free;
		}
1128
		break;
1129
	case EM2880_BOARD_HAUPPAUGE_WINTV_HVR_900:
1130
	case EM2882_BOARD_TERRATEC_HYBRID_XS:
1131
	case EM2880_BOARD_EMPIRE_DUAL_TV:
1132
		dvb->fe[0] = dvb_attach(zl10353_attach,
1133
					   &em28xx_zl10353_xc3028_no_i2c_gate,
1134
					   &dev->i2c_adap[dev->def_i2c_bus]);
1135
		if (em28xx_attach_xc3028(0x61, dev) < 0) {
1136 1137 1138 1139
			result = -EINVAL;
			goto out_free;
		}
		break;
1140
	case EM2880_BOARD_TERRATEC_HYBRID_XS:
1141
	case EM2880_BOARD_TERRATEC_HYBRID_XS_FR:
1142
	case EM2881_BOARD_PINNACLE_HYBRID_PRO:
1143
	case EM2882_BOARD_DIKOM_DK300:
1144
	case EM2882_BOARD_KWORLD_VS_DVBT:
1145
		dvb->fe[0] = dvb_attach(zl10353_attach,
1146
					   &em28xx_zl10353_xc3028_no_i2c_gate,
1147
					   &dev->i2c_adap[dev->def_i2c_bus]);
1148
		if (dvb->fe[0] == NULL) {
1149 1150
			/* This board could have either a zl10353 or a mt352.
			   If the chip id isn't for zl10353, try mt352 */
1151
			dvb->fe[0] = dvb_attach(mt352_attach,
1152
						   &terratec_xs_mt352_cfg,
1153
						   &dev->i2c_adap[dev->def_i2c_bus]);
1154
		}
1155

1156
		if (em28xx_attach_xc3028(0x61, dev) < 0) {
1157 1158 1159 1160
			result = -EINVAL;
			goto out_free;
		}
		break;
A
Aivar Päkk 已提交
1161 1162 1163
	case EM2870_BOARD_KWORLD_355U:
		dvb->fe[0] = dvb_attach(zl10353_attach,
					   &em28xx_zl10353_no_i2c_gate_dev,
1164
					   &dev->i2c_adap[dev->def_i2c_bus]);
A
Aivar Päkk 已提交
1165 1166
		if (dvb->fe[0] != NULL)
			dvb_attach(qt1010_attach, dvb->fe[0],
1167
				   &dev->i2c_adap[dev->def_i2c_bus], &em28xx_qt1010_config);
A
Aivar Päkk 已提交
1168
		break;
1169
	case EM2883_BOARD_KWORLD_HYBRID_330U:
1170
	case EM2882_BOARD_EVGA_INDTUBE:
1171
		dvb->fe[0] = dvb_attach(s5h1409_attach,
1172
					   &em28xx_s5h1409_with_xc3028,
1173
					   &dev->i2c_adap[dev->def_i2c_bus]);
1174
		if (em28xx_attach_xc3028(0x61, dev) < 0) {
1175 1176 1177 1178
			result = -EINVAL;
			goto out_free;
		}
		break;
1179
	case EM2882_BOARD_KWORLD_ATSC_315U:
1180
		dvb->fe[0] = dvb_attach(lgdt330x_attach,
1181
					   &em2880_lgdt3303_dev,
1182
					   &dev->i2c_adap[dev->def_i2c_bus]);
1183 1184
		if (dvb->fe[0] != NULL) {
			if (!dvb_attach(simple_tuner_attach, dvb->fe[0],
1185
				&dev->i2c_adap[dev->def_i2c_bus], 0x61, TUNER_THOMSON_DTT761X)) {
1186 1187 1188 1189 1190
				result = -EINVAL;
				goto out_free;
			}
		}
		break;
1191
	case EM2880_BOARD_HAUPPAUGE_WINTV_HVR_900_R2:
1192
	case EM2882_BOARD_PINNACLE_HYBRID_PRO_330E:
1193
		dvb->fe[0] = dvb_attach(drxd_attach, &em28xx_drxd, NULL,
1194
					   &dev->i2c_adap[dev->def_i2c_bus], &dev->udev->dev);
1195
		if (em28xx_attach_xc3028(0x61, dev) < 0) {
1196 1197 1198 1199
			result = -EINVAL;
			goto out_free;
		}
		break;
1200 1201
	case EM2870_BOARD_REDDO_DVB_C_USB_BOX:
		/* Philips CU1216L NIM (Philips TDA10023 + Infineon TUA6034) */
1202
		dvb->fe[0] = dvb_attach(tda10023_attach,
1203
			&em28xx_tda10023_config,
1204
			&dev->i2c_adap[dev->def_i2c_bus], 0x48);
1205 1206
		if (dvb->fe[0]) {
			if (!dvb_attach(simple_tuner_attach, dvb->fe[0],
1207
				&dev->i2c_adap[dev->def_i2c_bus], 0x60, TUNER_PHILIPS_CU1216L)) {
1208 1209 1210 1211 1212
				result = -EINVAL;
				goto out_free;
			}
		}
		break;
1213
	case EM2870_BOARD_KWORLD_A340:
1214
		dvb->fe[0] = dvb_attach(lgdt3305_attach,
1215
					   &em2870_lgdt3304_dev,
1216
					   &dev->i2c_adap[dev->def_i2c_bus]);
1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227
		if (!dvb->fe[0]) {
			result = -EINVAL;
			goto out_free;
		}
		if (!dvb_attach(tda18271_attach, dvb->fe[0], 0x60,
			&dev->i2c_adap[dev->def_i2c_bus],
			&kworld_a340_config)) {
				dvb_frontend_detach(dvb->fe[0]);
				result = -EINVAL;
				goto out_free;
		}
1228
		break;
1229
	case EM28174_BOARD_PCTV_290E:
1230 1231 1232
		/* set default GPIO0 for LNA, used if GPIOLIB is undefined */
		dvb->lna_gpio = CXD2820R_GPIO_E | CXD2820R_GPIO_O |
				CXD2820R_GPIO_L;
1233
		dvb->fe[0] = dvb_attach(cxd2820r_attach,
1234
					&em28xx_cxd2820r_config,
1235
					&dev->i2c_adap[dev->def_i2c_bus],
1236
					&dvb->lna_gpio);
1237 1238
		if (dvb->fe[0]) {
			/* FE 0 attach tuner */
1239 1240 1241
			if (!dvb_attach(tda18271_attach,
					dvb->fe[0],
					0x60,
1242
					&dev->i2c_adap[dev->def_i2c_bus],
1243 1244
					&em28xx_cxd2820r_tda18271_config)) {

1245 1246 1247 1248
				dvb_frontend_detach(dvb->fe[0]);
				result = -EINVAL;
				goto out_free;
			}
1249

1250
#ifdef CONFIG_GPIOLIB
1251 1252 1253 1254 1255 1256 1257 1258 1259 1260
			/* 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 */
1261
#endif
1262 1263 1264
			dvb->fe[0]->ops.set_lna = em28xx_pctv_290e_set_lna;
		}

1265 1266
		break;
	case EM2884_BOARD_HAUPPAUGE_WINTV_HVR_930C:
1267 1268
	{
		struct xc5000_config cfg;
1269 1270
		hauppauge_hvr930c_init(dev);

1271
		dvb->fe[0] = dvb_attach(drxk_attach,
1272
					&hauppauge_930c_drxk, &dev->i2c_adap[dev->def_i2c_bus]);
1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285
		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;
1286
		cfg.if_khz = 4000;
1287 1288 1289

		if (dvb->fe[0]->ops.i2c_gate_ctrl)
			dvb->fe[0]->ops.i2c_gate_ctrl(dvb->fe[0], 1);
1290
		if (!dvb_attach(xc5000_attach, dvb->fe[0], &dev->i2c_adap[dev->def_i2c_bus],
1291
				&cfg)) {
1292 1293 1294 1295 1296 1297
			result = -EINVAL;
			goto out_free;
		}
		if (dvb->fe[0]->ops.i2c_gate_ctrl)
			dvb->fe[0]->ops.i2c_gate_ctrl(dvb->fe[0], 0);

1298
		break;
1299
	}
1300 1301 1302
	case EM2884_BOARD_TERRATEC_H5:
		terratec_h5_init(dev);

1303
		dvb->fe[0] = dvb_attach(drxk_attach, &terratec_h5_drxk, &dev->i2c_adap[dev->def_i2c_bus]);
1304
		if (!dvb->fe[0]) {
1305 1306 1307 1308 1309 1310 1311 1312 1313
			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;

1314
		/* Attach tda18271 to DVB-C frontend */
1315 1316
		if (dvb->fe[0]->ops.i2c_gate_ctrl)
			dvb->fe[0]->ops.i2c_gate_ctrl(dvb->fe[0], 1);
1317
		if (!dvb_attach(tda18271c2dd_attach, dvb->fe[0], &dev->i2c_adap[dev->def_i2c_bus], 0x60)) {
1318 1319 1320 1321 1322
			result = -EINVAL;
			goto out_free;
		}
		if (dvb->fe[0]->ops.i2c_gate_ctrl)
			dvb->fe[0]->ops.i2c_gate_ctrl(dvb->fe[0], 0);
1323

1324
		break;
1325 1326 1327 1328 1329 1330 1331 1332 1333
	case EM2884_BOARD_C3TECH_DIGITAL_DUO:
		dvb->fe[0] = dvb_attach(mb86a20s_attach,
					   &c3tech_duo_mb86a20s_config,
					   &dev->i2c_adap[dev->def_i2c_bus]);
		if (dvb->fe[0] != NULL)
			dvb_attach(tda18271_attach, dvb->fe[0], 0x60,
				   &dev->i2c_adap[dev->def_i2c_bus],
				   &c3tech_duo_tda18271_config);
		break;
1334 1335 1336
	case EM28174_BOARD_PCTV_460E:
		/* attach demod */
		dvb->fe[0] = dvb_attach(tda10071_attach,
1337
			&em28xx_tda10071_config, &dev->i2c_adap[dev->def_i2c_bus]);
1338 1339 1340

		/* attach SEC */
		if (dvb->fe[0])
1341
			dvb_attach(a8293_attach, dvb->fe[0], &dev->i2c_adap[dev->def_i2c_bus],
1342 1343
				&em28xx_a8293_config);
		break;
1344
	case EM2874_BOARD_DELOCK_61959:
1345 1346 1347
	case EM2874_BOARD_MAXMEDIA_UB425_TC:
		/* attach demodulator */
		dvb->fe[0] = dvb_attach(drxk_attach, &maxmedia_ub425_tc_drxk,
1348
				&dev->i2c_adap[dev->def_i2c_bus]);
1349 1350 1351 1352 1353 1354

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

			/* attach tuner */
1355 1356 1357
			if (!dvb_attach(tda18271_attach, dvb->fe[0], 0x60,
					&dev->i2c_adap[dev->def_i2c_bus],
					&em28xx_cxd2820r_tda18271_config)) {
1358 1359 1360 1361 1362
				dvb_frontend_detach(dvb->fe[0]);
				result = -EINVAL;
				goto out_free;
			}
		}
1363
		break;
1364 1365 1366 1367
	case EM2884_BOARD_PCTV_510E:
	case EM2884_BOARD_PCTV_520E:
		pctv_520e_init(dev);

1368 1369
		/* attach demodulator */
		dvb->fe[0] = dvb_attach(drxk_attach, &pctv_520e_drxk,
1370
				&dev->i2c_adap[dev->def_i2c_bus]);
1371 1372 1373 1374

		if (dvb->fe[0]) {
			/* attach tuner */
			if (!dvb_attach(tda18271_attach, dvb->fe[0], 0x60,
1375
					&dev->i2c_adap[dev->def_i2c_bus],
1376 1377 1378 1379 1380 1381
					&em28xx_cxd2820r_tda18271_config)) {
				dvb_frontend_detach(dvb->fe[0]);
				result = -EINVAL;
				goto out_free;
			}
		}
1382
		break;
1383 1384 1385
	case EM2884_BOARD_CINERGY_HTC_STICK:
		terratec_htc_stick_init(dev);

1386 1387
		/* attach demodulator */
		dvb->fe[0] = dvb_attach(drxk_attach, &terratec_htc_stick_drxk,
1388
					&dev->i2c_adap[dev->def_i2c_bus]);
1389 1390 1391 1392 1393 1394 1395
		if (!dvb->fe[0]) {
			result = -EINVAL;
			goto out_free;
		}

		/* Attach the demodulator. */
		if (!dvb_attach(tda18271_attach, dvb->fe[0], 0x60,
1396
				&dev->i2c_adap[dev->def_i2c_bus],
1397 1398 1399 1400 1401 1402 1403 1404
				&em28xx_cxd2820r_tda18271_config)) {
			result = -EINVAL;
			goto out_free;
		}
		break;
	case EM2884_BOARD_TERRATEC_HTC_USB_XS:
		terratec_htc_usb_xs_init(dev);

1405 1406
		/* attach demodulator */
		dvb->fe[0] = dvb_attach(drxk_attach, &terratec_htc_stick_drxk,
1407
					&dev->i2c_adap[dev->def_i2c_bus]);
1408 1409 1410 1411 1412 1413 1414
		if (!dvb->fe[0]) {
			result = -EINVAL;
			goto out_free;
		}

		/* Attach the demodulator. */
		if (!dvb_attach(tda18271_attach, dvb->fe[0], 0x60,
1415
				&dev->i2c_adap[dev->def_i2c_bus],
1416 1417 1418 1419 1420
				&em28xx_cxd2820r_tda18271_config)) {
			result = -EINVAL;
			goto out_free;
		}
		break;
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437
	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;
1438
	case EM2874_BOARD_KWORLD_UB435Q_V3:
1439 1440 1441 1442 1443 1444 1445 1446 1447
	{
		struct i2c_client *client;
		struct i2c_adapter *adapter = &dev->i2c_adap[dev->def_i2c_bus];
		struct i2c_board_info board_info = {
			.type = "tda18212",
			.addr = 0x60,
			.platform_data = &kworld_ub435q_v3_config,
		};

1448 1449 1450 1451 1452 1453 1454 1455
		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;
		}

1456 1457 1458 1459 1460 1461 1462
		/* attach tuner */
		kworld_ub435q_v3_config.fe = dvb->fe[0];
		request_module("tda18212");
		client = i2c_new_device(adapter, &board_info);
		if (client == NULL || client->dev.driver == NULL) {
			dvb_frontend_detach(dvb->fe[0]);
			result = -ENODEV;
1463 1464
			goto out_free;
		}
1465 1466 1467 1468 1469 1470 1471 1472 1473

		if (!try_module_get(client->dev.driver->owner)) {
			i2c_unregister_device(client);
			dvb_frontend_detach(dvb->fe[0]);
			result = -ENODEV;
			goto out_free;
		}

		dvb->i2c_client_tuner = client;
1474
		break;
1475
	}
1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487
	case EM2874_BOARD_PCTV_HD_MINI_80E:
		dvb->fe[0] = dvb_attach(drx39xxj_attach, &dev->i2c_adap[dev->def_i2c_bus]);
		if (dvb->fe[0] != NULL) {
			dvb->fe[0] = dvb_attach(tda18271_attach, dvb->fe[0], 0x60,
						&dev->i2c_adap[dev->def_i2c_bus],
						&pinnacle_80e_dvb_config);
			if (!dvb->fe[0]) {
				result = -EINVAL;
				goto out_free;
			}
		}
		break;
1488 1489 1490 1491
	case EM28178_BOARD_PCTV_461E:
		{
			/* demod I2C adapter */
			struct i2c_adapter *i2c_adapter;
1492
			struct i2c_client *client;
1493 1494 1495 1496 1497
			struct i2c_board_info info;
			struct m88ts2022_config m88ts2022_config = {
				.clock = 27000000,
			};
			memset(&info, 0, sizeof(struct i2c_board_info));
1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509

			/* attach demod */
			dvb->fe[0] = dvb_attach(m88ds3103_attach,
					&pctv_461e_m88ds3103_config,
					&dev->i2c_adap[dev->def_i2c_bus],
					&i2c_adapter);
			if (dvb->fe[0] == NULL) {
				result = -ENODEV;
				goto out_free;
			}

			/* attach tuner */
1510 1511 1512 1513 1514
			m88ts2022_config.fe = dvb->fe[0];
			strlcpy(info.type, "m88ts2022", I2C_NAME_SIZE);
			info.addr = 0x60;
			info.platform_data = &m88ts2022_config;
			request_module("m88ts2022");
1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527
			client = i2c_new_device(i2c_adapter, &info);
			if (client == NULL || client->dev.driver == NULL) {
				dvb_frontend_detach(dvb->fe[0]);
				result = -ENODEV;
				goto out_free;
			}

			if (!try_module_get(client->dev.driver->owner)) {
				i2c_unregister_device(client);
				dvb_frontend_detach(dvb->fe[0]);
				result = -ENODEV;
				goto out_free;
			}
1528 1529 1530 1531 1532 1533 1534 1535 1536

			/* delegate signal strength measurement to tuner */
			dvb->fe[0]->ops.read_signal_strength =
					dvb->fe[0]->ops.tuner_ops.get_rf_strength;

			/* attach SEC */
			if (!dvb_attach(a8293_attach, dvb->fe[0],
					&dev->i2c_adap[dev->def_i2c_bus],
					&em28xx_a8293_config)) {
1537 1538
				module_put(client->dev.driver->owner);
				i2c_unregister_device(client);
1539 1540 1541 1542
				dvb_frontend_detach(dvb->fe[0]);
				result = -ENODEV;
				goto out_free;
			}
1543 1544

			dvb->i2c_client_tuner = client;
1545 1546
		}
		break;
1547 1548 1549 1550 1551 1552 1553 1554 1555
	case EM28178_BOARD_PCTV_292E:
		{
			struct i2c_adapter *adapter;
			struct i2c_client *client;
			struct i2c_board_info info;
			struct si2168_config si2168_config;
			struct si2157_config si2157_config;

			/* attach demod */
1556
			memset(&si2168_config, 0, sizeof(si2168_config));
1557 1558
			si2168_config.i2c_adapter = &adapter;
			si2168_config.fe = &dvb->fe[0];
1559
			si2168_config.ts_mode = SI2168_TS_PARALLEL;
1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579
			memset(&info, 0, sizeof(struct i2c_board_info));
			strlcpy(info.type, "si2168", I2C_NAME_SIZE);
			info.addr = 0x64;
			info.platform_data = &si2168_config;
			request_module(info.type);
			client = i2c_new_device(&dev->i2c_adap[dev->def_i2c_bus], &info);
			if (client == NULL || client->dev.driver == NULL) {
				result = -ENODEV;
				goto out_free;
			}

			if (!try_module_get(client->dev.driver->owner)) {
				i2c_unregister_device(client);
				result = -ENODEV;
				goto out_free;
			}

			dvb->i2c_client_demod = client;

			/* attach tuner */
1580
			memset(&si2157_config, 0, sizeof(si2157_config));
1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603
			si2157_config.fe = dvb->fe[0];
			memset(&info, 0, sizeof(struct i2c_board_info));
			strlcpy(info.type, "si2157", I2C_NAME_SIZE);
			info.addr = 0x60;
			info.platform_data = &si2157_config;
			request_module(info.type);
			client = i2c_new_device(adapter, &info);
			if (client == NULL || client->dev.driver == NULL) {
				module_put(dvb->i2c_client_demod->dev.driver->owner);
				i2c_unregister_device(dvb->i2c_client_demod);
				result = -ENODEV;
				goto out_free;
			}

			if (!try_module_get(client->dev.driver->owner)) {
				i2c_unregister_device(client);
				module_put(dvb->i2c_client_demod->dev.driver->owner);
				i2c_unregister_device(dvb->i2c_client_demod);
				result = -ENODEV;
				goto out_free;
			}

			dvb->i2c_client_tuner = client;
1604
			dvb->fe[0]->ops.set_lna = em28xx_pctv_292e_set_lna;
1605 1606
		}
		break;
1607
	default:
1608 1609
		em28xx_errdev("/2: The frontend of your DVB/ATSC card"
				" isn't supported yet\n");
1610 1611
		break;
	}
1612
	if (NULL == dvb->fe[0]) {
1613
		em28xx_errdev("/2: frontend initialization failed\n");
1614 1615
		result = -EINVAL;
		goto out_free;
1616
	}
1617
	/* define general-purpose callback pointer */
1618
	dvb->fe[0]->callback = em28xx_tuner_callback;
1619
	if (dvb->fe[1])
1620
		dvb->fe[1]->callback = em28xx_tuner_callback;
1621 1622

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

1625
	if (result < 0)
1626 1627
		goto out_free;

1628
	em28xx_info("DVB extension successfully initialized\n");
1629 1630 1631

	kref_get(&dev->ref);

1632 1633 1634 1635
ret:
	em28xx_set_mode(dev, EM28XX_SUSPEND);
	mutex_unlock(&dev->lock);
	return result;
1636 1637 1638 1639

out_free:
	kfree(dvb);
	dev->dvb = NULL;
1640
	goto ret;
1641 1642
}

1643 1644 1645 1646 1647 1648 1649
static inline void prevent_sleep(struct dvb_frontend_ops *ops)
{
	ops->set_voltage = NULL;
	ops->sleep = NULL;
	ops->tuner_ops.sleep = NULL;
}

1650
static int em28xx_dvb_fini(struct em28xx *dev)
1651
{
1652 1653 1654
	struct em28xx_dvb *dvb;
	struct i2c_client *client;

1655 1656 1657 1658 1659
	if (dev->is_audio_only) {
		/* Shouldn't initialize IR for this interface */
		return 0;
	}

1660
	if (!dev->board.has_dvb) {
1661 1662 1663 1664
		/* This device does not support the extension */
		return 0;
	}

1665 1666
	if (!dev->dvb)
		return 0;
1667

1668
	em28xx_info("Closing DVB extension");
1669

1670 1671
	dvb = dev->dvb;
	client = dvb->i2c_client_tuner;
1672

1673
	em28xx_uninit_usb_xfer(dev, EM28XX_DIGITAL_MODE);
1674

1675 1676 1677
	if (dev->disconnected) {
		/* We cannot tell the device to sleep
		 * once it has been unplugged. */
1678
		if (dvb->fe[0]) {
1679
			prevent_sleep(&dvb->fe[0]->ops);
1680 1681 1682
			dvb->fe[0]->exit = DVB_FE_DEVICE_REMOVED;
		}
		if (dvb->fe[1]) {
1683
			prevent_sleep(&dvb->fe[1]->ops);
1684 1685
			dvb->fe[1]->exit = DVB_FE_DEVICE_REMOVED;
		}
1686
	}
1687

1688 1689 1690 1691
	/* remove I2C tuner */
	if (client) {
		module_put(client->dev.driver->owner);
		i2c_unregister_device(client);
1692
	}
1693

1694 1695 1696 1697 1698 1699 1700
	/* remove I2C demod */
	client = dvb->i2c_client_demod;
	if (client) {
		module_put(client->dev.driver->owner);
		i2c_unregister_device(client);
	}

1701 1702 1703 1704 1705
	em28xx_unregister_dvb(dvb);
	kfree(dvb);
	dev->dvb = NULL;
	kref_put(&dev->ref, em28xx_free_device);

1706 1707 1708
	return 0;
}

1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763
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;

	em28xx_info("Suspending DVB extension");
	if (dev->dvb) {
		struct em28xx_dvb *dvb = dev->dvb;

		if (dvb->fe[0]) {
			ret = dvb_frontend_suspend(dvb->fe[0]);
			em28xx_info("fe0 suspend %d", ret);
		}
		if (dvb->fe[1]) {
			dvb_frontend_suspend(dvb->fe[1]);
			em28xx_info("fe1 suspend %d", ret);
		}
	}

	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;

	em28xx_info("Resuming DVB extension");
	if (dev->dvb) {
		struct em28xx_dvb *dvb = dev->dvb;

		if (dvb->fe[0]) {
			ret = dvb_frontend_resume(dvb->fe[0]);
			em28xx_info("fe0 resume %d", ret);
		}

		if (dvb->fe[1]) {
			ret = dvb_frontend_resume(dvb->fe[1]);
			em28xx_info("fe1 resume %d", ret);
		}
	}

	return 0;
}

1764 1765 1766
static struct em28xx_ops dvb_ops = {
	.id   = EM28XX_DVB,
	.name = "Em28xx dvb Extension",
1767 1768
	.init = em28xx_dvb_init,
	.fini = em28xx_dvb_fini,
1769 1770
	.suspend = em28xx_dvb_suspend,
	.resume = em28xx_dvb_resume,
1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784
};

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