m920x.c 21.3 KB
Newer Older
1 2 3 4 5
/* DVB USB compliant linux driver for MSI Mega Sky 580 DVB-T USB2.0 receiver
 *
 * Copyright (C) 2006 Aapo Tahkola (aet@rasterburn.org)
 *
 *	This program is free software; you can redistribute it and/or modify it
6 7
 *	under the terms of the GNU General Public License as published by the
 *	Free Software Foundation, version 2.
8 9 10
 *
 * see Documentation/dvb/README.dvb-usb for more information
 */
11

12
#include "m920x.h"
13 14 15

#include "mt352.h"
#include "mt352_priv.h"
16
#include "qt1010.h"
17 18
#include "tda1004x.h"
#include "tda827x.h"
19 20

/* debug */
21
static int dvb_usb_m920x_debug;
22
module_param_named(debug,dvb_usb_m920x_debug, int, 0644);
23 24
MODULE_PARM_DESC(debug, "set debugging level (1=rc (or-able))." DVB_USB_DEBUG_STATUS);

25
static inline int m920x_read(struct usb_device *udev, u8 request, u16 value,
26
			     u16 index, void *data, int size)
27 28 29 30 31 32
{
	int ret;

	ret = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0),
			      request, USB_TYPE_VENDOR | USB_DIR_IN,
			      value, index, data, size, 2000);
33 34
	if (ret < 0) {
		printk(KERN_INFO "m920x_read = error: %d\n", ret);
35
		return ret;
36
	}
37

38
	if (ret != size) {
39
		deb("m920x_read = no data\n");
40
		return -EIO;
41
	}
42 43 44 45

	return 0;
}

46
static inline int m920x_write(struct usb_device *udev, u8 request,
47
			      u16 value, u16 index)
48 49 50 51 52 53
{
	int ret;

	ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
			      request, USB_TYPE_VENDOR | USB_DIR_OUT,
			      value, index, NULL, 0, 2000);
54

55 56 57
	return ret;
}

58
static int m920x_init(struct dvb_usb_device *d, struct m920x_inits *rc_seq)
59 60 61 62
{
	int ret = 0;

	/* Remote controller init. */
63
	if (d->props.rc_query) {
64
		deb("Initialising remote control\n");
65
		while (rc_seq->address) {
66
			if ((ret = m920x_write(d->udev, M9206_CORE,
67 68
					       rc_seq->data,
					       rc_seq->address)) != 0) {
69
				deb("Initialising remote control failed\n");
70 71
				return ret;
			}
72

73 74 75
			rc_seq++;
		}

76
		deb("Initialising remote control success\n");
77
	}
78 79 80 81

	return ret;
}

82
static int m920x_rc_query(struct dvb_usb_device *d, u32 *event, int *state)
83
{
84
	struct m920x_state *m = d->priv;
85 86 87
	int i, ret = 0;
	u8 rc_state[2];

88
	if ((ret = m920x_read(d->udev, M9206_CORE, 0x0, M9206_RC_STATE,
89
			      rc_state, 1)) != 0)
90 91
		goto unlock;

92
	if ((ret = m920x_read(d->udev, M9206_CORE, 0x0, M9206_RC_KEY,
93
			      rc_state + 1, 1)) != 0)
94 95
		goto unlock;

96 97 98
	for (i = 0; i < d->props.rc_key_map_size; i++)
		if (d->props.rc_key_map[i].data == rc_state[1]) {
			*event = d->props.rc_key_map[i].event;
99 100 101 102 103 104

			switch(rc_state[0]) {
			case 0x80:
				*state = REMOTE_NO_KEY_PRESSED;
				goto unlock;

105 106 107 108 109 110 111 112
			case 0x88: /* framing error or "invalid code" */
			case 0x99:
			case 0xc0:
			case 0xd8:
				*state = REMOTE_NO_KEY_PRESSED;
				m->rep_count = 0;
				goto unlock;

113 114
			case 0x93:
			case 0x92:
115
				m->rep_count = 0;
116 117 118 119
				*state = REMOTE_KEY_PRESSED;
				goto unlock;

			case 0x91:
120
				/* prevent immediate auto-repeat */
121 122
				if (++m->rep_count > 2)
					*state = REMOTE_KEY_REPEAT;
123 124
				else
					*state = REMOTE_NO_KEY_PRESSED;
125 126 127
				goto unlock;

			default:
128
				deb("Unexpected rc state %02x\n", rc_state[0]);
129 130 131 132 133 134
				*state = REMOTE_NO_KEY_PRESSED;
				goto unlock;
			}
		}

	if (rc_state[1] != 0)
135
		deb("Unknown rc key %02x\n", rc_state[1]);
136 137 138

	*state = REMOTE_NO_KEY_PRESSED;

139
 unlock:
140 141 142 143 144

	return ret;
}

/* I2C */
145
static int m920x_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msg[],
146
			  int num)
147 148
{
	struct dvb_usb_device *d = i2c_get_adapdata(adap);
149
	int i, j;
150 151
	int ret = 0;

152 153 154
	if (!num)
		return -EINVAL;

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

	for (i = 0; i < num; i++) {
159 160 161 162 163 164 165
		if (msg[i].flags & (I2C_M_NO_RD_ACK | I2C_M_IGNORE_NAK |
				    I2C_M_TEN) || msg[i].len == 0) {
			/* For a 0 byte message, I think sending the address
			 * to index 0x80|0x40 would be the correct thing to
			 * do.  However, zero byte messages are only used for
			 * probing, and since we don't know how to get the
			 * slave's ack, we can't probe. */
166 167 168 169 170
			ret = -ENOTSUPP;
			goto unlock;
		}
		/* Send START & address/RW bit */
		if (!(msg[i].flags & I2C_M_NOSTART)) {
171
			if ((ret = m920x_write(d->udev, M9206_I2C,
172 173 174
					(msg[i].addr << 1) |
					(msg[i].flags & I2C_M_RD ? 0x01 : 0),
					       0x80)) != 0)
175
				goto unlock;
176 177 178 179
			/* Should check for ack here, if we knew how. */
		}
		if (msg[i].flags & I2C_M_RD) {
			for (j = 0; j < msg[i].len; j++) {
180 181 182 183 184
				/* Last byte of transaction?
				 * Send STOP, otherwise send ACK. */
				int stop = (i+1 == num && j+1 == msg[i].len)
					? 0x40 : 0x01;

185
				if ((ret = m920x_read(d->udev, M9206_I2C, 0x0,
186 187
						      0x20|stop,
						      &msg[i].buf[j], 1)) != 0)
188
					goto unlock;
189
			}
190
		} else {
191 192
			for (j = 0; j < msg[i].len; j++) {
				/* Last byte of transaction? Then send STOP. */
193 194 195
				int stop = (i+1 == num && j+1 == msg[i].len)
					? 0x40 : 0x00;

196
				if ((ret = m920x_write(d->udev, M9206_I2C,
197 198
						       msg[i].buf[j],
						       stop)) != 0)
199 200
					goto unlock;
				/* Should check for ack here too. */
201
			}
202 203
		}
	}
204
	ret = num;
205

206
 unlock:
207 208 209 210 211
	mutex_unlock(&d->i2c_mutex);

	return ret;
}

212
static u32 m920x_i2c_func(struct i2c_adapter *adapter)
213 214 215 216
{
	return I2C_FUNC_I2C;
}

217 218 219
static struct i2c_algorithm m920x_i2c_algo = {
	.master_xfer   = m920x_i2c_xfer,
	.functionality = m920x_i2c_func,
220 221
};

222
/* pid filter */
223
static int m920x_set_filter(struct dvb_usb_adapter *adap,
224
			    int type, int idx, int pid)
225 226 227 228 229 230 231 232
{
	int ret = 0;

	if (pid >= 0x8000)
		return -EINVAL;

	pid |= 0x8000;

233
	if ((ret = m920x_write(adap->dev->udev, M9206_FILTER, pid,
234
			       (type << 8) | (idx * 4) )) != 0)
235 236
		return ret;

237
	if ((ret = m920x_write(adap->dev->udev, M9206_FILTER, 0,
238
			       (type << 8) | (idx * 4) )) != 0)
239 240 241 242 243
		return ret;

	return ret;
}

244
static int m920x_update_filters(struct dvb_usb_adapter *adap)
245
{
246
	struct m920x_state *m = adap->dev->priv;
247 248
	int enabled = m->filtering_enabled;
	int i, ret = 0, filter = 0;
249

250 251 252
	for (i = 0; i < M9206_MAX_FILTERS; i++)
		if (m->filters[i] == 8192)
			enabled = 0;
253

254
	/* Disable all filters */
255
	if ((ret = m920x_set_filter(adap, 0x81, 1, enabled)) != 0)
256
		return ret;
257

258
	for (i = 0; i < M9206_MAX_FILTERS; i++)
259
		if ((ret = m920x_set_filter(adap, 0x81, i + 2, 0)) != 0)
260 261
			return ret;

262
	if ((ret = m920x_set_filter(adap, 0x82, 0, 0x0)) != 0)
263 264 265 266 267 268 269 270
		return ret;

	/* Set */
	if (enabled) {
		for (i = 0; i < M9206_MAX_FILTERS; i++) {
			if (m->filters[i] == 0)
				continue;

271
			if ((ret = m920x_set_filter(adap, 0x81, filter + 2,
272
						    m->filters[i])) != 0)
273 274 275 276
				return ret;

			filter++;
		}
277
	}
278

279
	if ((ret = m920x_set_filter(adap, 0x82, 0, 0x02f5)) != 0)
280
		return ret;
281 282 283 284

	return ret;
}

285
static int m920x_pid_filter_ctrl(struct dvb_usb_adapter *adap, int onoff)
286
{
287
	struct m920x_state *m = adap->dev->priv;
288

289
	m->filtering_enabled = onoff ? 1 : 0;
290

291
	return m920x_update_filters(adap);
292
}
293

294
static int m920x_pid_filter(struct dvb_usb_adapter *adap,
295
			    int index, u16 pid, int onoff)
296
{
297
	struct m920x_state *m = adap->dev->priv;
298

299
	m->filters[index] = onoff ? pid : 0;
300

301
	return m920x_update_filters(adap);
302 303
}

304
static int m920x_firmware_download(struct usb_device *udev,
305
				   const struct firmware *fw)
306 307 308 309 310 311 312
{
	u16 value, index, size;
	u8 read[4], *buff;
	int i, pass, ret = 0;

	buff = kmalloc(65536, GFP_KERNEL);

313
	if ((ret = m920x_read(udev, M9206_FILTER, 0x0, 0x8000, read, 4)) != 0)
314
		goto done;
315
	deb("%x %x %x %x\n", read[0], read[1], read[2], read[3]);
316

317
	if ((ret = m920x_read(udev, M9206_FW, 0x0, 0x0, read, 1)) != 0)
318
		goto done;
319
	deb("%x\n", read[0]);
320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336

	for (pass = 0; pass < 2; pass++) {
		for (i = 0; i + (sizeof(u16) * 3) < fw->size;) {
			value = le16_to_cpu(*(u16 *)(fw->data + i));
			i += sizeof(u16);

			index = le16_to_cpu(*(u16 *)(fw->data + i));
			i += sizeof(u16);

			size = le16_to_cpu(*(u16 *)(fw->data + i));
			i += sizeof(u16);

			if (pass == 1) {
				/* Will stall if using fw->data ... */
				memcpy(buff, fw->data + i, size);

				ret = usb_control_msg(udev, usb_sndctrlpipe(udev,0),
337 338
					    M9206_FW,
					    USB_TYPE_VENDOR | USB_DIR_OUT,
339 340
					    value, index, buff, size, 20);
				if (ret != size) {
341
					deb("error while uploading fw!\n");
342 343 344 345 346 347 348 349
					ret = -EIO;
					goto done;
				}
				msleep(3);
			}
			i += size;
		}
		if (i != fw->size) {
350
			deb("bad firmware file!\n");
351 352 353 354 355 356 357
			ret = -EINVAL;
			goto done;
		}
	}

	msleep(36);

358 359
	/* m920x will disconnect itself from the bus after this. */
	(void) m920x_write(udev, M9206_CORE, 0x01, M9206_FW_GO);
360
	deb("firmware uploaded!\n");
361

362
 done:
363 364 365 366 367
	kfree(buff);

	return ret;
}

368
/* Callbacks for DVB USB */
369 370 371 372
static int m920x_identify_state(struct usb_device *udev,
				struct dvb_usb_device_properties *props,
				struct dvb_usb_device_description **desc,
				int *cold)
373 374 375 376 377 378 379 380 381
{
	struct usb_host_interface *alt;

	alt = usb_altnum_to_altsetting(usb_ifnum_to_if(udev, 0), 1);
	*cold = (alt == NULL) ? 1 : 0;

	return 0;
}

382
/* demod configurations */
383
static int m920x_mt352_demod_init(struct dvb_frontend *fe)
384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402
{
	u8 config[] = { CONFIG, 0x3d };
	u8 clock[] = { CLOCK_CTL, 0x30 };
	u8 reset[] = { RESET, 0x80 };
	u8 adc_ctl[] = { ADC_CTL_1, 0x40 };
	u8 agc[] = { AGC_TARGET, 0x1c, 0x20 };
	u8 sec_agc[] = { 0x69, 0x00, 0xff, 0xff, 0x40, 0xff, 0x00, 0x40, 0x40 };
	u8 unk1[] = { 0x93, 0x1a };
	u8 unk2[] = { 0xb5, 0x7a };

	mt352_write(fe, config, ARRAY_SIZE(config));
	mt352_write(fe, clock, ARRAY_SIZE(clock));
	mt352_write(fe, reset, ARRAY_SIZE(reset));
	mt352_write(fe, adc_ctl, ARRAY_SIZE(adc_ctl));
	mt352_write(fe, agc, ARRAY_SIZE(agc));
	mt352_write(fe, sec_agc, ARRAY_SIZE(sec_agc));
	mt352_write(fe, unk1, ARRAY_SIZE(unk1));
	mt352_write(fe, unk2, ARRAY_SIZE(unk2));

403
	deb("Demod init!\n");
404 405 406 407

	return 0;
}

408
static struct mt352_config m920x_mt352_config = {
409
	.demod_address = 0x0f,
410
	.no_tuner = 1,
411
	.demod_init = m920x_mt352_demod_init,
412 413
};

414
static struct tda1004x_config m920x_tda10046_08_config = {
415 416 417 418 419 420 421 422 423 424 425
	.demod_address = 0x08,
	.invert = 0,
	.invert_oclk = 0,
	.ts_mode = TDA10046_TS_SERIAL,
	.xtal_freq = TDA10046_XTAL_16M,
	.if_freq = TDA10046_FREQ_045,
	.agc_config = TDA10046_AGC_TDA827X,
	.gpio_config = TDA10046_GPTRI,
	.request_firmware = NULL,
};

426
static struct tda1004x_config m920x_tda10046_0b_config = {
427 428 429 430 431 432 433 434 435 436 437
	.demod_address = 0x0b,
	.invert = 0,
	.invert_oclk = 0,
	.ts_mode = TDA10046_TS_SERIAL,
	.xtal_freq = TDA10046_XTAL_16M,
	.if_freq = TDA10046_FREQ_045,
	.agc_config = TDA10046_AGC_TDA827X,
	.gpio_config = TDA10046_GPTRI,
	.request_firmware = NULL, /* uses firmware EEPROM */
};

438
/* tuner configurations */
439
static struct qt1010_config m920x_qt1010_config = {
440 441 442 443
	.i2c_address = 0x62
};

/* Callbacks for DVB USB */
444
static int m920x_mt352_frontend_attach(struct dvb_usb_adapter *adap)
445
{
446
	deb("%s\n",__FUNCTION__);
447

448
	if ((adap->fe = dvb_attach(mt352_attach, &m920x_mt352_config,
449 450 451 452 453 454
				   &adap->dev->i2c_adap)) == NULL)
		return -EIO;

	return 0;
}

455
static int m920x_tda10046_08_frontend_attach(struct dvb_usb_adapter *adap)
456
{
457
	deb("%s\n",__FUNCTION__);
458

459
	if ((adap->fe = dvb_attach(tda10046_attach,
460
				   &m920x_tda10046_08_config,
461
				   &adap->dev->i2c_adap)) == NULL)
462 463 464 465 466
		return -EIO;

	return 0;
}

467
static int m920x_tda10046_0b_frontend_attach(struct dvb_usb_adapter *adap)
468
{
469
	deb("%s\n",__FUNCTION__);
470

471
	if ((adap->fe = dvb_attach(tda10046_attach,
472
				   &m920x_tda10046_0b_config,
473
				   &adap->dev->i2c_adap)) == NULL)
474 475 476 477 478
		return -EIO;

	return 0;
}

479
static int m920x_qt1010_tuner_attach(struct dvb_usb_adapter *adap)
480
{
481
	deb("%s\n",__FUNCTION__);
482

483
	if (dvb_attach(qt1010_attach, adap->fe, &adap->dev->i2c_adap,
484
		       &m920x_qt1010_config) == NULL)
485 486 487 488 489
		return -ENODEV;

	return 0;
}

490
static int m920x_tda8275_60_tuner_attach(struct dvb_usb_adapter *adap)
491
{
492
	deb("%s\n",__FUNCTION__);
493

494
	if (dvb_attach(tda827x_attach, adap->fe, 0x60, &adap->dev->i2c_adap,
495 496 497 498 499 500
		       NULL) == NULL)
		return -ENODEV;

	return 0;
}

501
static int m920x_tda8275_61_tuner_attach(struct dvb_usb_adapter *adap)
502
{
503
	deb("%s\n",__FUNCTION__);
504

505
	if (dvb_attach(tda827x_attach, adap->fe, 0x61, &adap->dev->i2c_adap,
506 507 508 509 510 511
		       NULL) == NULL)
		return -ENODEV;

	return 0;
}

512
/* device-specific initialization */
513
static struct m920x_inits megasky_rc_init [] = {
514 515 516 517 518
	{ M9206_RC_INIT2, 0xa8 },
	{ M9206_RC_INIT1, 0x51 },
	{ } /* terminating entry */
};

519
static struct m920x_inits tvwalkertwin_rc_init [] = {
520 521 522 523 524 525 526 527
	{ M9206_RC_INIT2, 0x00 },
	{ M9206_RC_INIT1, 0xef },
	{ 0xff28,         0x00 },
	{ 0xff23,         0x00 },
	{ 0xff21,         0x30 },
	{ } /* terminating entry */
};

528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567
/* ir keymaps */
static struct dvb_usb_rc_key megasky_rc_keys [] = {
	{ 0x0, 0x12, KEY_POWER },
	{ 0x0, 0x1e, KEY_CYCLEWINDOWS }, /* min/max */
	{ 0x0, 0x02, KEY_CHANNELUP },
	{ 0x0, 0x05, KEY_CHANNELDOWN },
	{ 0x0, 0x03, KEY_VOLUMEUP },
	{ 0x0, 0x06, KEY_VOLUMEDOWN },
	{ 0x0, 0x04, KEY_MUTE },
	{ 0x0, 0x07, KEY_OK }, /* TS */
	{ 0x0, 0x08, KEY_STOP },
	{ 0x0, 0x09, KEY_MENU }, /* swap */
	{ 0x0, 0x0a, KEY_REWIND },
	{ 0x0, 0x1b, KEY_PAUSE },
	{ 0x0, 0x1f, KEY_FASTFORWARD },
	{ 0x0, 0x0c, KEY_RECORD },
	{ 0x0, 0x0d, KEY_CAMERA }, /* screenshot */
	{ 0x0, 0x0e, KEY_COFFEE }, /* "MTS" */
};

static struct dvb_usb_rc_key tvwalkertwin_rc_keys [] = {
	{ 0x0, 0x01, KEY_ZOOM }, /* Full Screen */
	{ 0x0, 0x02, KEY_CAMERA }, /* snapshot */
	{ 0x0, 0x03, KEY_MUTE },
	{ 0x0, 0x04, KEY_REWIND },
	{ 0x0, 0x05, KEY_PLAYPAUSE }, /* Play/Pause */
	{ 0x0, 0x06, KEY_FASTFORWARD },
	{ 0x0, 0x07, KEY_RECORD },
	{ 0x0, 0x08, KEY_STOP },
	{ 0x0, 0x09, KEY_TIME }, /* Timeshift */
	{ 0x0, 0x0c, KEY_COFFEE }, /* Recall */
	{ 0x0, 0x0e, KEY_CHANNELUP },
	{ 0x0, 0x12, KEY_POWER },
	{ 0x0, 0x15, KEY_MENU }, /* source */
	{ 0x0, 0x18, KEY_CYCLEWINDOWS }, /* TWIN PIP */
	{ 0x0, 0x1a, KEY_CHANNELDOWN },
	{ 0x0, 0x1b, KEY_VOLUMEDOWN },
	{ 0x0, 0x1e, KEY_VOLUMEUP },
};

568 569
/* DVB USB Driver stuff */
static struct dvb_usb_device_properties megasky_properties;
570
static struct dvb_usb_device_properties digivox_mini_ii_properties;
571
static struct dvb_usb_device_properties tvwalkertwin_properties;
572
static struct dvb_usb_device_properties dposh_properties;
573

574 575
static int m920x_probe(struct usb_interface *intf,
		       const struct usb_device_id *id)
576 577 578 579
{
	struct dvb_usb_device *d;
	struct usb_host_interface *alt;
	int ret;
580
	struct m920x_inits *rc_init_seq = NULL;
581
	int bInterfaceNumber = intf->cur_altsetting->desc.bInterfaceNumber;
582

583
	deb("Probing for m920x device at interface %d\n", bInterfaceNumber);
584

585 586 587 588
	if (bInterfaceNumber == 0) {
		/* Single-tuner device, or first interface on
		 * multi-tuner device
		 */
589

590
		if ((ret = dvb_usb_device_init(intf, &megasky_properties,
591
					       THIS_MODULE, &d)) == 0) {
592 593 594 595 596
			rc_init_seq = megasky_rc_init;
			goto found;
		}

		if ((ret = dvb_usb_device_init(intf,
597 598
					       &digivox_mini_ii_properties,
					       THIS_MODULE, &d)) == 0) {
599 600 601 602 603 604
			/* No remote control, so no rc_init_seq */
			goto found;
		}

		/* This configures both tuners on the TV Walker Twin */
		if ((ret = dvb_usb_device_init(intf, &tvwalkertwin_properties,
605
					       THIS_MODULE, &d)) == 0) {
606 607 608 609
			rc_init_seq = tvwalkertwin_rc_init;
			goto found;
		}

610 611
		if ((ret = dvb_usb_device_init(intf, &dposh_properties,
					       THIS_MODULE, &d)) == 0) {
612 613 614 615
			/* Remote controller not supported yet. */
			goto found;
		}

616 617 618 619 620 621 622 623 624 625 626
		return ret;
	} else {
		/* Another interface on a multi-tuner device */

		/* The LifeView TV Walker Twin gets here, but struct
		 * tvwalkertwin_properties already configured both
		 * tuners, so there is nothing for us to do here
		 */

		return -ENODEV;
	}
627

628
 found:
629 630
	alt = usb_altnum_to_altsetting(intf, 1);
	if (alt == NULL) {
631
		deb("No alt found!\n");
632
		return -ENODEV;
633
	}
634 635 636 637 638 639

	ret = usb_set_interface(d->udev, alt->desc.bInterfaceNumber,
				alt->desc.bAlternateSetting);
	if (ret < 0)
		return ret;

640
	if ((ret = m920x_init(d, rc_init_seq)) != 0)
641 642
		return ret;

643 644 645 646 647
	return ret;
}

static struct usb_device_id m920x_table [] = {
		{ USB_DEVICE(USB_VID_MSI, USB_PID_MSI_MEGASKY580) },
648 649
		{ USB_DEVICE(USB_VID_ANUBIS_ELECTRONIC,
			     USB_PID_MSI_DIGI_VOX_MINI_II) },
650 651 652 653
		{ USB_DEVICE(USB_VID_ANUBIS_ELECTRONIC,
			     USB_PID_LIFEVIEW_TV_WALKER_TWIN_COLD) },
		{ USB_DEVICE(USB_VID_ANUBIS_ELECTRONIC,
			     USB_PID_LIFEVIEW_TV_WALKER_TWIN_WARM) },
654 655
		{ USB_DEVICE(USB_VID_DPOSH, USB_PID_DPOSH_M9206_COLD) },
		{ USB_DEVICE(USB_VID_DPOSH, USB_PID_DPOSH_M9206_WARM) },
656 657 658 659
		{ }		/* Terminating entry */
};
MODULE_DEVICE_TABLE (usb, m920x_table);

660
static struct dvb_usb_device_properties megasky_properties = {
661
	.caps = DVB_USB_IS_AN_I2C_ADAPTER,
662

663 664
	.usb_ctrl = DEVICE_SPECIFIC,
	.firmware = "dvb-usb-megasky-02.fw",
665
	.download_firmware = m920x_firmware_download,
666

667
	.rc_interval      = 100,
668 669
	.rc_key_map       = megasky_rc_keys,
	.rc_key_map_size  = ARRAY_SIZE(megasky_rc_keys),
670
	.rc_query         = m920x_rc_query,
671

672
	.size_of_priv     = sizeof(struct m920x_state),
673

674
	.identify_state   = m920x_identify_state,
675 676
	.num_adapters = 1,
	.adapter = {{
677 678 679
		.caps = DVB_USB_ADAP_HAS_PID_FILTER |
			DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,

680
		.pid_filter_count = 8,
681 682
		.pid_filter       = m920x_pid_filter,
		.pid_filter_ctrl  = m920x_pid_filter_ctrl,
683

684 685
		.frontend_attach  = m920x_mt352_frontend_attach,
		.tuner_attach     = m920x_qt1010_tuner_attach,
686 687 688 689 690 691 692 693 694 695 696 697

		.stream = {
			.type = USB_BULK,
			.count = 8,
			.endpoint = 0x81,
			.u = {
				.bulk = {
					.buffersize = 512,
				}
			}
		},
	}},
698
	.i2c_algo         = &m920x_i2c_algo,
699 700 701 702

	.num_device_descs = 1,
	.devices = {
		{   "MSI Mega Sky 580 DVB-T USB2.0",
703
			{ &m920x_table[0], NULL },
704
			{ NULL },
705 706 707 708 709 710 711 712 713
		}
	}
};

static struct dvb_usb_device_properties digivox_mini_ii_properties = {
	.caps = DVB_USB_IS_AN_I2C_ADAPTER,

	.usb_ctrl = DEVICE_SPECIFIC,
	.firmware = "dvb-usb-digivox-02.fw",
714
	.download_firmware = m920x_firmware_download,
715

716
	.size_of_priv     = sizeof(struct m920x_state),
717 718 719 720 721

	.identify_state   = m920x_identify_state,
	.num_adapters = 1,
	.adapter = {{
		.caps = DVB_USB_ADAP_HAS_PID_FILTER |
722
			DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,
723 724

		.pid_filter_count = 8,
725 726
		.pid_filter       = m920x_pid_filter,
		.pid_filter_ctrl  = m920x_pid_filter_ctrl,
727

728 729
		.frontend_attach  = m920x_tda10046_08_frontend_attach,
		.tuner_attach     = m920x_tda8275_60_tuner_attach,
730 731 732 733 734 735 736 737 738 739 740 741

		.stream = {
			.type = USB_BULK,
			.count = 8,
			.endpoint = 0x81,
			.u = {
				.bulk = {
					.buffersize = 0x4000,
				}
			}
		},
	}},
742
	.i2c_algo         = &m920x_i2c_algo,
743 744 745 746 747 748

	.num_device_descs = 1,
	.devices = {
		{   "MSI DIGI VOX mini II DVB-T USB2.0",
			{ &m920x_table[1], NULL },
			{ NULL },
749 750 751 752
		},
	}
};

753 754 755 756 757 758 759 760
/* LifeView TV Walker Twin support by Nick Andrew <nick@nick-andrew.net>
 *
 * LifeView TV Walker Twin has 1 x M9206, 2 x TDA10046, 2 x TDA8275A
 * TDA10046 #0 is located at i2c address 0x08
 * TDA10046 #1 is located at i2c address 0x0b
 * TDA8275A #0 is located at i2c address 0x60
 * TDA8275A #1 is located at i2c address 0x61
 */
761 762 763 764 765
static struct dvb_usb_device_properties tvwalkertwin_properties = {
	.caps = DVB_USB_IS_AN_I2C_ADAPTER,

	.usb_ctrl = DEVICE_SPECIFIC,
	.firmware = "dvb-usb-tvwalkert.fw",
766
	.download_firmware = m920x_firmware_download,
767 768 769 770

	.rc_interval      = 100,
	.rc_key_map       = tvwalkertwin_rc_keys,
	.rc_key_map_size  = ARRAY_SIZE(tvwalkertwin_rc_keys),
771
	.rc_query         = m920x_rc_query,
772

773
	.size_of_priv     = sizeof(struct m920x_state),
774 775 776

	.identify_state   = m920x_identify_state,
	.num_adapters = 2,
777 778 779 780 781
	.adapter = {{
		.caps = DVB_USB_ADAP_HAS_PID_FILTER |
			DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,

		.pid_filter_count = 8,
782 783
		.pid_filter       = m920x_pid_filter,
		.pid_filter_ctrl  = m920x_pid_filter_ctrl,
784

785 786
		.frontend_attach  = m920x_tda10046_08_frontend_attach,
		.tuner_attach     = m920x_tda8275_60_tuner_attach,
787 788 789 790 791 792 793 794 795 796 797 798 799 800 801

		.stream = {
			.type = USB_BULK,
			.count = 8,
			.endpoint = 0x81,
			.u = {
				 .bulk = {
					 .buffersize = 512,
				 }
			}
		}},{
		.caps = DVB_USB_ADAP_HAS_PID_FILTER |
			DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,

		.pid_filter_count = 8,
802 803
		.pid_filter       = m920x_pid_filter,
		.pid_filter_ctrl  = m920x_pid_filter_ctrl,
804

805 806
		.frontend_attach  = m920x_tda10046_0b_frontend_attach,
		.tuner_attach     = m920x_tda8275_61_tuner_attach,
807 808 809 810 811 812 813 814 815 816

		.stream = {
			.type = USB_BULK,
			.count = 8,
			.endpoint = 0x82,
			.u = {
				 .bulk = {
					 .buffersize = 512,
				 }
			}
817
		},
818
	}},
819
	.i2c_algo         = &m920x_i2c_algo,
820 821 822 823 824 825 826 827 828 829

	.num_device_descs = 1,
	.devices = {
		{   .name = "LifeView TV Walker Twin DVB-T USB2.0",
		    .cold_ids = { &m920x_table[2], NULL },
		    .warm_ids = { &m920x_table[3], NULL },
		},
	}
};

830 831 832 833 834
static struct dvb_usb_device_properties dposh_properties = {
	.caps = DVB_USB_IS_AN_I2C_ADAPTER,

	.usb_ctrl = DEVICE_SPECIFIC,
	.firmware = "dvb-usb-dposh-01.fw",
835
	.download_firmware = m920x_firmware_download,
836

837
	.size_of_priv     = sizeof(struct m920x_state),
838 839 840 841

	.identify_state   = m920x_identify_state,
	.num_adapters = 1,
	.adapter = {{
842 843
		/* Hardware pid filters don't work with this device/firmware */

844 845
		.frontend_attach  = m920x_mt352_frontend_attach,
		.tuner_attach     = m920x_qt1010_tuner_attach,
846 847 848 849 850 851 852 853 854 855 856 857

		.stream = {
			.type = USB_BULK,
			.count = 8,
			.endpoint = 0x81,
			.u = {
				 .bulk = {
					 .buffersize = 512,
				 }
			}
		},
	}},
858
	.i2c_algo         = &m920x_i2c_algo,
859 860 861 862 863 864 865 866 867 868

	.num_device_descs = 1,
	.devices = {
		 {   .name = "Dposh DVB-T USB2.0",
		     .cold_ids = { &m920x_table[4], NULL },
		     .warm_ids = { &m920x_table[5], NULL },
		 },
	 }
};

869 870
static struct usb_driver m920x_driver = {
	.name		= "dvb_usb_m920x",
871
	.probe		= m920x_probe,
872
	.disconnect	= dvb_usb_device_exit,
873
	.id_table	= m920x_table,
874 875 876
};

/* module stuff */
877
static int __init m920x_module_init(void)
878 879 880
{
	int ret;

881
	if ((ret = usb_register(&m920x_driver))) {
882 883 884 885 886 887 888
		err("usb_register failed. Error number %d", ret);
		return ret;
	}

	return 0;
}

889
static void __exit m920x_module_exit(void)
890 891
{
	/* deregister this driver from the USB subsystem */
892
	usb_deregister(&m920x_driver);
893 894
}

895 896
module_init (m920x_module_init);
module_exit (m920x_module_exit);
897 898

MODULE_AUTHOR("Aapo Tahkola <aet@rasterburn.org>");
899
MODULE_DESCRIPTION("DVB Driver for ULI M920x");
900 901
MODULE_VERSION("0.1");
MODULE_LICENSE("GPL");
902 903 904 905 906

/*
 * Local variables:
 * c-basic-offset: 8
 */