m920x.c 22.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
#include <asm/unaligned.h>
20 21

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

26 27
DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr);

28 29
static int m920x_set_filter(struct dvb_usb_device *d, int type, int idx, int pid);

30
static inline int m920x_read(struct usb_device *udev, u8 request, u16 value,
31
			     u16 index, void *data, int size)
32 33 34 35 36 37
{
	int ret;

	ret = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0),
			      request, USB_TYPE_VENDOR | USB_DIR_IN,
			      value, index, data, size, 2000);
38 39
	if (ret < 0) {
		printk(KERN_INFO "m920x_read = error: %d\n", ret);
40
		return ret;
41
	}
42

43
	if (ret != size) {
44
		deb("m920x_read = no data\n");
45
		return -EIO;
46
	}
47 48 49 50

	return 0;
}

51
static inline int m920x_write(struct usb_device *udev, u8 request,
52
			      u16 value, u16 index)
53 54 55 56 57 58
{
	int ret;

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

60 61 62
	return ret;
}

63
static int m920x_init(struct dvb_usb_device *d, struct m920x_inits *rc_seq)
64
{
65
	int ret = 0, i, epi, flags = 0;
66
	int adap_enabled[M9206_MAX_ADAPTERS] = { 0 };
67 68

	/* Remote controller init. */
69
	if (d->props.rc_query) {
70
		deb("Initialising remote control\n");
71
		while (rc_seq->address) {
72
			if ((ret = m920x_write(d->udev, M9206_CORE,
73 74
					       rc_seq->data,
					       rc_seq->address)) != 0) {
75
				deb("Initialising remote control failed\n");
76 77
				return ret;
			}
78

79 80 81
			rc_seq++;
		}

82
		deb("Initialising remote control success\n");
83
	}
84

85 86
	for (i = 0; i < d->props.num_adapters; i++)
		flags |= d->adapter[i].props.caps;
87

88 89 90 91
	/* Some devices(Dposh) might crash if we attempt touch at all. */
	if (flags & DVB_USB_ADAP_HAS_PID_FILTER) {
		for (i = 0; i < d->props.num_adapters; i++) {
			epi = d->adapter[i].props.stream.endpoint - 0x81;
92

93 94 95 96 97 98 99
			if (epi < 0 || epi >= M9206_MAX_ADAPTERS) {
				printk(KERN_INFO "m920x: Unexpected adapter endpoint!\n");
				return -EINVAL;
			}

			adap_enabled[epi] = 1;
		}
100

101 102 103
		for (i = 0; i < M9206_MAX_ADAPTERS; i++) {
			if (adap_enabled[i])
				continue;
104

105 106
			if ((ret = m920x_set_filter(d, 0x81 + i, 0, 0x0)) != 0)
				return ret;
107

108 109 110
			if ((ret = m920x_set_filter(d, 0x81 + i, 0, 0x02f5)) != 0)
				return ret;
		}
111 112
	}

113 114 115
	return ret;
}

116 117 118 119 120 121 122 123 124 125 126 127 128 129
static int m920x_init_ep(struct usb_interface *intf)
{
	struct usb_device *udev = interface_to_usbdev(intf);
	struct usb_host_interface *alt;

	if ((alt = usb_altnum_to_altsetting(intf, 1)) == NULL) {
		deb("No alt found!\n");
		return -ENODEV;
	}

	return usb_set_interface(udev, alt->desc.bInterfaceNumber,
				 alt->desc.bAlternateSetting);
}

130
static int m920x_rc_query(struct dvb_usb_device *d, u32 *event, int *state)
131
{
132
	struct m920x_state *m = d->priv;
133 134 135
	int i, ret = 0;
	u8 rc_state[2];

136
	if ((ret = m920x_read(d->udev, M9206_CORE, 0x0, M9206_RC_STATE, rc_state, 1)) != 0)
137 138
		goto unlock;

139
	if ((ret = m920x_read(d->udev, M9206_CORE, 0x0, M9206_RC_KEY, rc_state + 1, 1)) != 0)
140 141
		goto unlock;

142
	for (i = 0; i < d->props.rc_key_map_size; i++)
143
		if (rc5_data(&d->props.rc_key_map[i]) == rc_state[1]) {
144
			*event = d->props.rc_key_map[i].event;
145 146 147 148 149 150

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

151 152 153 154 155 156 157 158
			case 0x88: /* framing error or "invalid code" */
			case 0x99:
			case 0xc0:
			case 0xd8:
				*state = REMOTE_NO_KEY_PRESSED;
				m->rep_count = 0;
				goto unlock;

159 160
			case 0x93:
			case 0x92:
161
				m->rep_count = 0;
162 163 164 165
				*state = REMOTE_KEY_PRESSED;
				goto unlock;

			case 0x91:
166
				/* prevent immediate auto-repeat */
167 168
				if (++m->rep_count > 2)
					*state = REMOTE_KEY_REPEAT;
169 170
				else
					*state = REMOTE_NO_KEY_PRESSED;
171 172 173
				goto unlock;

			default:
174
				deb("Unexpected rc state %02x\n", rc_state[0]);
175 176 177 178 179 180
				*state = REMOTE_NO_KEY_PRESSED;
				goto unlock;
			}
		}

	if (rc_state[1] != 0)
181
		deb("Unknown rc key %02x\n", rc_state[1]);
182 183 184

	*state = REMOTE_NO_KEY_PRESSED;

185
 unlock:
186 187 188 189 190

	return ret;
}

/* I2C */
191
static int m920x_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msg[], int num)
192 193
{
	struct dvb_usb_device *d = i2c_get_adapdata(adap);
194
	int i, j;
195 196
	int ret = 0;

197 198 199
	if (!num)
		return -EINVAL;

200 201 202 203
	if (mutex_lock_interruptible(&d->i2c_mutex) < 0)
		return -EAGAIN;

	for (i = 0; i < num; i++) {
204
		if (msg[i].flags & (I2C_M_NO_RD_ACK | I2C_M_IGNORE_NAK | I2C_M_TEN) || msg[i].len == 0) {
205 206 207 208 209
			/* 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. */
210 211 212 213 214
			ret = -ENOTSUPP;
			goto unlock;
		}
		/* Send START & address/RW bit */
		if (!(msg[i].flags & I2C_M_NOSTART)) {
215
			if ((ret = m920x_write(d->udev, M9206_I2C,
216
					(msg[i].addr << 1) |
217
					(msg[i].flags & I2C_M_RD ? 0x01 : 0), 0x80)) != 0)
218
				goto unlock;
219 220 221 222
			/* Should check for ack here, if we knew how. */
		}
		if (msg[i].flags & I2C_M_RD) {
			for (j = 0; j < msg[i].len; j++) {
223 224
				/* Last byte of transaction?
				 * Send STOP, otherwise send ACK. */
225
				int stop = (i+1 == num && j+1 == msg[i].len) ? 0x40 : 0x01;
226

227
				if ((ret = m920x_read(d->udev, M9206_I2C, 0x0,
228
						      0x20 | stop,
229
						      &msg[i].buf[j], 1)) != 0)
230
					goto unlock;
231
			}
232
		} else {
233 234
			for (j = 0; j < msg[i].len; j++) {
				/* Last byte of transaction? Then send STOP. */
235
				int stop = (i+1 == num && j+1 == msg[i].len) ? 0x40 : 0x00;
236

237
				if ((ret = m920x_write(d->udev, M9206_I2C, msg[i].buf[j], stop)) != 0)
238 239
					goto unlock;
				/* Should check for ack here too. */
240
			}
241 242
		}
	}
243
	ret = num;
244

245
 unlock:
246 247 248 249 250
	mutex_unlock(&d->i2c_mutex);

	return ret;
}

251
static u32 m920x_i2c_func(struct i2c_adapter *adapter)
252 253 254 255
{
	return I2C_FUNC_I2C;
}

256 257 258
static struct i2c_algorithm m920x_i2c_algo = {
	.master_xfer   = m920x_i2c_xfer,
	.functionality = m920x_i2c_func,
259 260
};

261
/* pid filter */
262
static int m920x_set_filter(struct dvb_usb_device *d, int type, int idx, int pid)
263 264 265 266 267 268 269 270
{
	int ret = 0;

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

	pid |= 0x8000;

271
	if ((ret = m920x_write(d->udev, M9206_FILTER, pid, (type << 8) | (idx * 4) )) != 0)
272 273
		return ret;

274
	if ((ret = m920x_write(d->udev, M9206_FILTER, 0, (type << 8) | (idx * 4) )) != 0)
275 276 277 278 279
		return ret;

	return ret;
}

280
static int m920x_update_filters(struct dvb_usb_adapter *adap)
281
{
282
	struct m920x_state *m = adap->dev->priv;
283
	int enabled = m->filtering_enabled[adap->id];
284
	int i, ret = 0, filter = 0;
285
	int ep = adap->props.stream.endpoint;
286

287
	for (i = 0; i < M9206_MAX_FILTERS; i++)
288
		if (m->filters[adap->id][i] == 8192)
289
			enabled = 0;
290

291
	/* Disable all filters */
292
	if ((ret = m920x_set_filter(adap->dev, ep, 1, enabled)) != 0)
293
		return ret;
294

295
	for (i = 0; i < M9206_MAX_FILTERS; i++)
296
		if ((ret = m920x_set_filter(adap->dev, ep, i + 2, 0)) != 0)
297 298 299 300 301
			return ret;

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

305
			if ((ret = m920x_set_filter(adap->dev, ep, filter + 2, m->filters[adap->id][i])) != 0)
306 307 308 309
				return ret;

			filter++;
		}
310
	}
311

312 313 314
	return ret;
}

315
static int m920x_pid_filter_ctrl(struct dvb_usb_adapter *adap, int onoff)
316
{
317
	struct m920x_state *m = adap->dev->priv;
318

319
	m->filtering_enabled[adap->id] = onoff ? 1 : 0;
320

321
	return m920x_update_filters(adap);
322
}
323

324
static int m920x_pid_filter(struct dvb_usb_adapter *adap, int index, u16 pid, int onoff)
325
{
326
	struct m920x_state *m = adap->dev->priv;
327

328
	m->filters[adap->id][index] = onoff ? pid : 0;
329

330
	return m920x_update_filters(adap);
331 332
}

333
static int m920x_firmware_download(struct usb_device *udev, const struct firmware *fw)
334 335 336 337 338 339 340
{
	u16 value, index, size;
	u8 read[4], *buff;
	int i, pass, ret = 0;

	buff = kmalloc(65536, GFP_KERNEL);

341
	if ((ret = m920x_read(udev, M9206_FILTER, 0x0, 0x8000, read, 4)) != 0)
342
		goto done;
343
	deb("%x %x %x %x\n", read[0], read[1], read[2], read[3]);
344

345
	if ((ret = m920x_read(udev, M9206_FW, 0x0, 0x0, read, 1)) != 0)
346
		goto done;
347
	deb("%x\n", read[0]);
348 349 350

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

354
			index = get_unaligned_le16(fw->data + i);
355 356
			i += sizeof(u16);

357
			size = get_unaligned_le16(fw->data + i);
358 359 360 361 362 363 364
			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),
365 366 367
						      M9206_FW,
						      USB_TYPE_VENDOR | USB_DIR_OUT,
						      value, index, buff, size, 20);
368
				if (ret != size) {
369
					deb("error while uploading fw!\n");
370 371 372 373 374 375 376 377
					ret = -EIO;
					goto done;
				}
				msleep(3);
			}
			i += size;
		}
		if (i != fw->size) {
378
			deb("bad firmware file!\n");
379 380 381 382 383 384 385
			ret = -EINVAL;
			goto done;
		}
	}

	msleep(36);

386 387
	/* m920x will disconnect itself from the bus after this. */
	(void) m920x_write(udev, M9206_CORE, 0x01, M9206_FW_GO);
388
	deb("firmware uploaded!\n");
389

390
 done:
391 392 393 394 395
	kfree(buff);

	return ret;
}

396
/* Callbacks for DVB USB */
397 398 399 400
static int m920x_identify_state(struct usb_device *udev,
				struct dvb_usb_device_properties *props,
				struct dvb_usb_device_description **desc,
				int *cold)
401 402 403 404 405 406 407 408 409
{
	struct usb_host_interface *alt;

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

	return 0;
}

410
/* demod configurations */
411
static int m920x_mt352_demod_init(struct dvb_frontend *fe)
412
{
413
	int ret;
414 415 416 417 418 419 420 421 422
	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 };

423
	deb("Demod init!\n");
424

425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441
	if ((ret = mt352_write(fe, config, ARRAY_SIZE(config))) != 0)
		return ret;
	if ((ret = mt352_write(fe, clock, ARRAY_SIZE(clock))) != 0)
		return ret;
	if ((ret = mt352_write(fe, reset, ARRAY_SIZE(reset))) != 0)
		return ret;
	if ((ret = mt352_write(fe, adc_ctl, ARRAY_SIZE(adc_ctl))) != 0)
		return ret;
	if ((ret = mt352_write(fe, agc, ARRAY_SIZE(agc))) != 0)
		return ret;
	if ((ret = mt352_write(fe, sec_agc, ARRAY_SIZE(sec_agc))) != 0)
		return ret;
	if ((ret = mt352_write(fe, unk1, ARRAY_SIZE(unk1))) != 0)
		return ret;
	if ((ret = mt352_write(fe, unk2, ARRAY_SIZE(unk2))) != 0)
		return ret;

442 443 444
	return 0;
}

445
static struct mt352_config m920x_mt352_config = {
446
	.demod_address = 0x0f,
447
	.no_tuner = 1,
448
	.demod_init = m920x_mt352_demod_init,
449 450
};

451
static struct tda1004x_config m920x_tda10046_08_config = {
452 453 454 455 456 457 458 459 460 461 462
	.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,
};

463
static struct tda1004x_config m920x_tda10046_0b_config = {
464 465 466 467 468 469 470 471 472 473 474
	.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 */
};

475
/* tuner configurations */
476
static struct qt1010_config m920x_qt1010_config = {
477 478 479 480
	.i2c_address = 0x62
};

/* Callbacks for DVB USB */
481
static int m920x_mt352_frontend_attach(struct dvb_usb_adapter *adap)
482
{
483
	deb("%s\n",__func__);
484

485 486
	if ((adap->fe = dvb_attach(mt352_attach,
				   &m920x_mt352_config,
487 488 489 490 491 492
				   &adap->dev->i2c_adap)) == NULL)
		return -EIO;

	return 0;
}

493
static int m920x_tda10046_08_frontend_attach(struct dvb_usb_adapter *adap)
494
{
495
	deb("%s\n",__func__);
496

497
	if ((adap->fe = dvb_attach(tda10046_attach,
498
				   &m920x_tda10046_08_config,
499
				   &adap->dev->i2c_adap)) == NULL)
500 501 502 503 504
		return -EIO;

	return 0;
}

505
static int m920x_tda10046_0b_frontend_attach(struct dvb_usb_adapter *adap)
506
{
507
	deb("%s\n",__func__);
508

509
	if ((adap->fe = dvb_attach(tda10046_attach,
510
				   &m920x_tda10046_0b_config,
511
				   &adap->dev->i2c_adap)) == NULL)
512 513 514 515 516
		return -EIO;

	return 0;
}

517
static int m920x_qt1010_tuner_attach(struct dvb_usb_adapter *adap)
518
{
519
	deb("%s\n",__func__);
520

521
	if (dvb_attach(qt1010_attach, adap->fe, &adap->dev->i2c_adap, &m920x_qt1010_config) == NULL)
522 523 524 525 526
		return -ENODEV;

	return 0;
}

527
static int m920x_tda8275_60_tuner_attach(struct dvb_usb_adapter *adap)
528
{
529
	deb("%s\n",__func__);
530

531
	if (dvb_attach(tda827x_attach, adap->fe, 0x60, &adap->dev->i2c_adap, NULL) == NULL)
532 533 534 535 536
		return -ENODEV;

	return 0;
}

537
static int m920x_tda8275_61_tuner_attach(struct dvb_usb_adapter *adap)
538
{
539
	deb("%s\n",__func__);
540

541
	if (dvb_attach(tda827x_attach, adap->fe, 0x61, &adap->dev->i2c_adap, NULL) == NULL)
542 543 544 545 546
		return -ENODEV;

	return 0;
}

547
/* device-specific initialization */
548
static struct m920x_inits megasky_rc_init [] = {
549 550 551 552 553
	{ M9206_RC_INIT2, 0xa8 },
	{ M9206_RC_INIT1, 0x51 },
	{ } /* terminating entry */
};

554
static struct m920x_inits tvwalkertwin_rc_init [] = {
555 556 557 558 559 560 561 562
	{ M9206_RC_INIT2, 0x00 },
	{ M9206_RC_INIT1, 0xef },
	{ 0xff28,         0x00 },
	{ 0xff23,         0x00 },
	{ 0xff21,         0x30 },
	{ } /* terminating entry */
};

563 564
/* ir keymaps */
static struct dvb_usb_rc_key megasky_rc_keys [] = {
565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580
	{ 0x0012, KEY_POWER },
	{ 0x001e, KEY_CYCLEWINDOWS }, /* min/max */
	{ 0x0002, KEY_CHANNELUP },
	{ 0x0005, KEY_CHANNELDOWN },
	{ 0x0003, KEY_VOLUMEUP },
	{ 0x0006, KEY_VOLUMEDOWN },
	{ 0x0004, KEY_MUTE },
	{ 0x0007, KEY_OK }, /* TS */
	{ 0x0008, KEY_STOP },
	{ 0x0009, KEY_MENU }, /* swap */
	{ 0x000a, KEY_REWIND },
	{ 0x001b, KEY_PAUSE },
	{ 0x001f, KEY_FASTFORWARD },
	{ 0x000c, KEY_RECORD },
	{ 0x000d, KEY_CAMERA }, /* screenshot */
	{ 0x000e, KEY_COFFEE }, /* "MTS" */
581 582 583
};

static struct dvb_usb_rc_key tvwalkertwin_rc_keys [] = {
584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600
	{ 0x0001, KEY_ZOOM }, /* Full Screen */
	{ 0x0002, KEY_CAMERA }, /* snapshot */
	{ 0x0003, KEY_MUTE },
	{ 0x0004, KEY_REWIND },
	{ 0x0005, KEY_PLAYPAUSE }, /* Play/Pause */
	{ 0x0006, KEY_FASTFORWARD },
	{ 0x0007, KEY_RECORD },
	{ 0x0008, KEY_STOP },
	{ 0x0009, KEY_TIME }, /* Timeshift */
	{ 0x000c, KEY_COFFEE }, /* Recall */
	{ 0x000e, KEY_CHANNELUP },
	{ 0x0012, KEY_POWER },
	{ 0x0015, KEY_MENU }, /* source */
	{ 0x0018, KEY_CYCLEWINDOWS }, /* TWIN PIP */
	{ 0x001a, KEY_CHANNELDOWN },
	{ 0x001b, KEY_VOLUMEDOWN },
	{ 0x001e, KEY_VOLUMEUP },
601 602
};

603 604
/* DVB USB Driver stuff */
static struct dvb_usb_device_properties megasky_properties;
605
static struct dvb_usb_device_properties digivox_mini_ii_properties;
606
static struct dvb_usb_device_properties tvwalkertwin_properties;
607
static struct dvb_usb_device_properties dposh_properties;
608

609 610
static int m920x_probe(struct usb_interface *intf,
		       const struct usb_device_id *id)
611
{
612
	struct dvb_usb_device *d = NULL;
613
	int ret;
614
	struct m920x_inits *rc_init_seq = NULL;
615
	int bInterfaceNumber = intf->cur_altsetting->desc.bInterfaceNumber;
616

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

619 620 621 622
	if (bInterfaceNumber == 0) {
		/* Single-tuner device, or first interface on
		 * multi-tuner device
		 */
623

624 625 626
		ret = dvb_usb_device_init(intf, &megasky_properties,
					  THIS_MODULE, &d, adapter_nr);
		if (ret == 0) {
627 628 629 630
			rc_init_seq = megasky_rc_init;
			goto found;
		}

631 632 633
		ret = dvb_usb_device_init(intf, &digivox_mini_ii_properties,
					  THIS_MODULE, &d, adapter_nr);
		if (ret == 0) {
634 635 636 637 638
			/* No remote control, so no rc_init_seq */
			goto found;
		}

		/* This configures both tuners on the TV Walker Twin */
639 640 641
		ret = dvb_usb_device_init(intf, &tvwalkertwin_properties,
					  THIS_MODULE, &d, adapter_nr);
		if (ret == 0) {
642 643 644 645
			rc_init_seq = tvwalkertwin_rc_init;
			goto found;
		}

646 647 648
		ret = dvb_usb_device_init(intf, &dposh_properties,
					  THIS_MODULE, &d, adapter_nr);
		if (ret == 0) {
649 650 651 652
			/* Remote controller not supported yet. */
			goto found;
		}

653 654 655 656 657 658 659 660 661
		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
		 */
	}
662

663
 found:
664
	if ((ret = m920x_init_ep(intf)) < 0)
665 666
		return ret;

667
	if (d && (ret = m920x_init(d, rc_init_seq)) != 0)
668 669
		return ret;

670 671 672 673 674
	return ret;
}

static struct usb_device_id m920x_table [] = {
		{ USB_DEVICE(USB_VID_MSI, USB_PID_MSI_MEGASKY580) },
675 676
		{ USB_DEVICE(USB_VID_ANUBIS_ELECTRONIC,
			     USB_PID_MSI_DIGI_VOX_MINI_II) },
677 678 679 680
		{ 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) },
681 682
		{ USB_DEVICE(USB_VID_DPOSH, USB_PID_DPOSH_M9206_COLD) },
		{ USB_DEVICE(USB_VID_DPOSH, USB_PID_DPOSH_M9206_WARM) },
683 684 685 686
		{ }		/* Terminating entry */
};
MODULE_DEVICE_TABLE (usb, m920x_table);

687
static struct dvb_usb_device_properties megasky_properties = {
688
	.caps = DVB_USB_IS_AN_I2C_ADAPTER,
689

690 691
	.usb_ctrl = DEVICE_SPECIFIC,
	.firmware = "dvb-usb-megasky-02.fw",
692
	.download_firmware = m920x_firmware_download,
693

694
	.rc_interval      = 100,
695 696
	.rc_key_map       = megasky_rc_keys,
	.rc_key_map_size  = ARRAY_SIZE(megasky_rc_keys),
697
	.rc_query         = m920x_rc_query,
698

699
	.size_of_priv     = sizeof(struct m920x_state),
700

701
	.identify_state   = m920x_identify_state,
702 703
	.num_adapters = 1,
	.adapter = {{
704 705 706
		.caps = DVB_USB_ADAP_HAS_PID_FILTER |
			DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,

707
		.pid_filter_count = 8,
708 709
		.pid_filter       = m920x_pid_filter,
		.pid_filter_ctrl  = m920x_pid_filter_ctrl,
710

711 712
		.frontend_attach  = m920x_mt352_frontend_attach,
		.tuner_attach     = m920x_qt1010_tuner_attach,
713 714 715 716 717 718 719 720 721 722 723 724

		.stream = {
			.type = USB_BULK,
			.count = 8,
			.endpoint = 0x81,
			.u = {
				.bulk = {
					.buffersize = 512,
				}
			}
		},
	}},
725
	.i2c_algo         = &m920x_i2c_algo,
726 727 728 729

	.num_device_descs = 1,
	.devices = {
		{   "MSI Mega Sky 580 DVB-T USB2.0",
730
			{ &m920x_table[0], NULL },
731
			{ NULL },
732 733 734 735 736 737 738 739 740
		}
	}
};

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",
741
	.download_firmware = m920x_firmware_download,
742

743
	.size_of_priv     = sizeof(struct m920x_state),
744 745 746 747 748

	.identify_state   = m920x_identify_state,
	.num_adapters = 1,
	.adapter = {{
		.caps = DVB_USB_ADAP_HAS_PID_FILTER |
749
			DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,
750 751

		.pid_filter_count = 8,
752 753
		.pid_filter       = m920x_pid_filter,
		.pid_filter_ctrl  = m920x_pid_filter_ctrl,
754

755 756
		.frontend_attach  = m920x_tda10046_08_frontend_attach,
		.tuner_attach     = m920x_tda8275_60_tuner_attach,
757 758 759 760 761 762 763 764 765 766 767 768

		.stream = {
			.type = USB_BULK,
			.count = 8,
			.endpoint = 0x81,
			.u = {
				.bulk = {
					.buffersize = 0x4000,
				}
			}
		},
	}},
769
	.i2c_algo         = &m920x_i2c_algo,
770 771 772 773 774 775

	.num_device_descs = 1,
	.devices = {
		{   "MSI DIGI VOX mini II DVB-T USB2.0",
			{ &m920x_table[1], NULL },
			{ NULL },
776 777 778 779
		},
	}
};

780 781 782 783
/* 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
784
 * TDA10046 #1 is located at i2c address 0x0b
785
 * TDA8275A #0 is located at i2c address 0x60
786
 * TDA8275A #1 is located at i2c address 0x61
787
 */
788 789 790 791 792
static struct dvb_usb_device_properties tvwalkertwin_properties = {
	.caps = DVB_USB_IS_AN_I2C_ADAPTER,

	.usb_ctrl = DEVICE_SPECIFIC,
	.firmware = "dvb-usb-tvwalkert.fw",
793
	.download_firmware = m920x_firmware_download,
794 795 796 797

	.rc_interval      = 100,
	.rc_key_map       = tvwalkertwin_rc_keys,
	.rc_key_map_size  = ARRAY_SIZE(tvwalkertwin_rc_keys),
798
	.rc_query         = m920x_rc_query,
799

800
	.size_of_priv     = sizeof(struct m920x_state),
801 802

	.identify_state   = m920x_identify_state,
803
	.num_adapters = 2,
804 805 806 807 808
	.adapter = {{
		.caps = DVB_USB_ADAP_HAS_PID_FILTER |
			DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,

		.pid_filter_count = 8,
809 810
		.pid_filter       = m920x_pid_filter,
		.pid_filter_ctrl  = m920x_pid_filter_ctrl,
811

812 813
		.frontend_attach  = m920x_tda10046_08_frontend_attach,
		.tuner_attach     = m920x_tda8275_60_tuner_attach,
814 815 816 817 818 819 820 821 822 823 824 825 826 827 828

		.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,
829 830
		.pid_filter       = m920x_pid_filter,
		.pid_filter_ctrl  = m920x_pid_filter_ctrl,
831

832 833
		.frontend_attach  = m920x_tda10046_0b_frontend_attach,
		.tuner_attach     = m920x_tda8275_61_tuner_attach,
834 835 836 837 838 839 840 841 842 843

		.stream = {
			.type = USB_BULK,
			.count = 8,
			.endpoint = 0x82,
			.u = {
				 .bulk = {
					 .buffersize = 512,
				 }
			}
844
		},
845
	}},
846
	.i2c_algo         = &m920x_i2c_algo,
847 848 849 850 851 852 853 854 855 856

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

857 858 859 860 861
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",
862
	.download_firmware = m920x_firmware_download,
863

864
	.size_of_priv     = sizeof(struct m920x_state),
865 866 867 868

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

871 872
		.frontend_attach  = m920x_mt352_frontend_attach,
		.tuner_attach     = m920x_qt1010_tuner_attach,
873 874 875 876 877 878 879 880 881 882 883 884

		.stream = {
			.type = USB_BULK,
			.count = 8,
			.endpoint = 0x81,
			.u = {
				 .bulk = {
					 .buffersize = 512,
				 }
			}
		},
	}},
885
	.i2c_algo         = &m920x_i2c_algo,
886 887 888 889 890 891 892 893 894 895

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

896 897
static struct usb_driver m920x_driver = {
	.name		= "dvb_usb_m920x",
898
	.probe		= m920x_probe,
899
	.disconnect	= dvb_usb_device_exit,
900
	.id_table	= m920x_table,
901 902 903
};

/* module stuff */
904
static int __init m920x_module_init(void)
905 906 907
{
	int ret;

908
	if ((ret = usb_register(&m920x_driver))) {
909 910 911 912 913 914 915
		err("usb_register failed. Error number %d", ret);
		return ret;
	}

	return 0;
}

916
static void __exit m920x_module_exit(void)
917 918
{
	/* deregister this driver from the USB subsystem */
919
	usb_deregister(&m920x_driver);
920 921
}

922 923
module_init (m920x_module_init);
module_exit (m920x_module_exit);
924 925

MODULE_AUTHOR("Aapo Tahkola <aet@rasterburn.org>");
926
MODULE_DESCRIPTION("DVB Driver for ULI M920x");
927 928
MODULE_VERSION("0.1");
MODULE_LICENSE("GPL");
929 930 931 932 933

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