1 /* DVB USB compliant linux driver for MSI Mega Sky 580 DVB-T USB2.0 receiver
3 * Copyright (C) 2006 Aapo Tahkola (aet@rasterburn.org)
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation, version 2.
9 * see Documentation/dvb/README.dvb-usb for more information
15 #include "mt352_priv.h"
21 static int dvb_usb_m920x_debug;
22 module_param_named(debug,dvb_usb_m920x_debug, int, 0644);
23 MODULE_PARM_DESC(debug, "set debugging level (1=rc (or-able))." DVB_USB_DEBUG_STATUS);
25 static int m920x_set_filter(struct dvb_usb_device *d, int type, int idx, int pid);
27 static inline int m920x_read(struct usb_device *udev, u8 request, u16 value,
28 u16 index, void *data, int size)
32 ret = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0),
33 request, USB_TYPE_VENDOR | USB_DIR_IN,
34 value, index, data, size, 2000);
36 printk(KERN_INFO "m920x_read = error: %d\n", ret);
41 deb("m920x_read = no data\n");
48 static inline int m920x_write(struct usb_device *udev, u8 request,
53 ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
54 request, USB_TYPE_VENDOR | USB_DIR_OUT,
55 value, index, NULL, 0, 2000);
60 static int m920x_init(struct dvb_usb_device *d, struct m920x_inits *rc_seq)
62 int ret = 0, i, epi, flags = 0;
63 int adap_enabled[M9206_MAX_ADAPTERS] = { 0 };
65 /* Remote controller init. */
66 if (d->props.rc_query) {
67 deb("Initialising remote control\n");
68 while (rc_seq->address) {
69 if ((ret = m920x_write(d->udev, M9206_CORE,
71 rc_seq->address)) != 0) {
72 deb("Initialising remote control failed\n");
79 deb("Initialising remote control success\n");
82 for (i = 0; i < d->props.num_adapters; i++)
83 flags |= d->adapter[i].props.caps;
85 /* Some devices(Dposh) might crash if we attempt touch at all. */
86 if (flags & DVB_USB_ADAP_HAS_PID_FILTER) {
87 for (i = 0; i < d->props.num_adapters; i++) {
88 epi = d->adapter[i].props.stream.endpoint - 0x81;
90 if (epi < 0 || epi >= M9206_MAX_ADAPTERS) {
91 printk(KERN_INFO "m920x: Unexpected adapter endpoint!\n");
95 adap_enabled[epi] = 1;
98 for (i = 0; i < M9206_MAX_ADAPTERS; i++) {
102 if ((ret = m920x_set_filter(d, 0x81 + i, 0, 0x0)) != 0)
105 if ((ret = m920x_set_filter(d, 0x81 + i, 0, 0x02f5)) != 0)
113 static int m920x_init_ep(struct usb_interface *intf)
115 struct usb_device *udev = interface_to_usbdev(intf);
116 struct usb_host_interface *alt;
118 if ((alt = usb_altnum_to_altsetting(intf, 1)) == NULL) {
119 deb("No alt found!\n");
123 return usb_set_interface(udev, alt->desc.bInterfaceNumber,
124 alt->desc.bAlternateSetting);
127 static int m920x_rc_query(struct dvb_usb_device *d, u32 *event, int *state)
129 struct m920x_state *m = d->priv;
133 if ((ret = m920x_read(d->udev, M9206_CORE, 0x0, M9206_RC_STATE, rc_state, 1)) != 0)
136 if ((ret = m920x_read(d->udev, M9206_CORE, 0x0, M9206_RC_KEY, rc_state + 1, 1)) != 0)
139 for (i = 0; i < d->props.rc_key_map_size; i++)
140 if (d->props.rc_key_map[i].data == rc_state[1]) {
141 *event = d->props.rc_key_map[i].event;
143 switch(rc_state[0]) {
145 *state = REMOTE_NO_KEY_PRESSED;
148 case 0x88: /* framing error or "invalid code" */
152 *state = REMOTE_NO_KEY_PRESSED;
159 *state = REMOTE_KEY_PRESSED;
163 /* prevent immediate auto-repeat */
164 if (++m->rep_count > 2)
165 *state = REMOTE_KEY_REPEAT;
167 *state = REMOTE_NO_KEY_PRESSED;
171 deb("Unexpected rc state %02x\n", rc_state[0]);
172 *state = REMOTE_NO_KEY_PRESSED;
177 if (rc_state[1] != 0)
178 deb("Unknown rc key %02x\n", rc_state[1]);
180 *state = REMOTE_NO_KEY_PRESSED;
188 static int m920x_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msg[], int num)
190 struct dvb_usb_device *d = i2c_get_adapdata(adap);
197 if (mutex_lock_interruptible(&d->i2c_mutex) < 0)
200 for (i = 0; i < num; i++) {
201 if (msg[i].flags & (I2C_M_NO_RD_ACK | I2C_M_IGNORE_NAK | I2C_M_TEN) || msg[i].len == 0) {
202 /* For a 0 byte message, I think sending the address
203 * to index 0x80|0x40 would be the correct thing to
204 * do. However, zero byte messages are only used for
205 * probing, and since we don't know how to get the
206 * slave's ack, we can't probe. */
210 /* Send START & address/RW bit */
211 if (!(msg[i].flags & I2C_M_NOSTART)) {
212 if ((ret = m920x_write(d->udev, M9206_I2C,
214 (msg[i].flags & I2C_M_RD ? 0x01 : 0), 0x80)) != 0)
216 /* Should check for ack here, if we knew how. */
218 if (msg[i].flags & I2C_M_RD) {
219 for (j = 0; j < msg[i].len; j++) {
220 /* Last byte of transaction?
221 * Send STOP, otherwise send ACK. */
222 int stop = (i+1 == num && j+1 == msg[i].len) ? 0x40 : 0x01;
224 if ((ret = m920x_read(d->udev, M9206_I2C, 0x0,
226 &msg[i].buf[j], 1)) != 0)
230 for (j = 0; j < msg[i].len; j++) {
231 /* Last byte of transaction? Then send STOP. */
232 int stop = (i+1 == num && j+1 == msg[i].len) ? 0x40 : 0x00;
234 if ((ret = m920x_write(d->udev, M9206_I2C, msg[i].buf[j], stop)) != 0)
236 /* Should check for ack here too. */
243 mutex_unlock(&d->i2c_mutex);
248 static u32 m920x_i2c_func(struct i2c_adapter *adapter)
253 static struct i2c_algorithm m920x_i2c_algo = {
254 .master_xfer = m920x_i2c_xfer,
255 .functionality = m920x_i2c_func,
259 static int m920x_set_filter(struct dvb_usb_device *d, int type, int idx, int pid)
268 if ((ret = m920x_write(d->udev, M9206_FILTER, pid, (type << 8) | (idx * 4) )) != 0)
271 if ((ret = m920x_write(d->udev, M9206_FILTER, 0, (type << 8) | (idx * 4) )) != 0)
277 static int m920x_update_filters(struct dvb_usb_adapter *adap)
279 struct m920x_state *m = adap->dev->priv;
280 int enabled = m->filtering_enabled[adap->id];
281 int i, ret = 0, filter = 0;
282 int ep = adap->props.stream.endpoint;
284 for (i = 0; i < M9206_MAX_FILTERS; i++)
285 if (m->filters[adap->id][i] == 8192)
288 /* Disable all filters */
289 if ((ret = m920x_set_filter(adap->dev, ep, 1, enabled)) != 0)
292 for (i = 0; i < M9206_MAX_FILTERS; i++)
293 if ((ret = m920x_set_filter(adap->dev, ep, i + 2, 0)) != 0)
298 for (i = 0; i < M9206_MAX_FILTERS; i++) {
299 if (m->filters[adap->id][i] == 0)
302 if ((ret = m920x_set_filter(adap->dev, ep, filter + 2, m->filters[adap->id][i])) != 0)
312 static int m920x_pid_filter_ctrl(struct dvb_usb_adapter *adap, int onoff)
314 struct m920x_state *m = adap->dev->priv;
316 m->filtering_enabled[adap->id] = onoff ? 1 : 0;
318 return m920x_update_filters(adap);
321 static int m920x_pid_filter(struct dvb_usb_adapter *adap, int index, u16 pid, int onoff)
323 struct m920x_state *m = adap->dev->priv;
325 m->filters[adap->id][index] = onoff ? pid : 0;
327 return m920x_update_filters(adap);
330 static int m920x_firmware_download(struct usb_device *udev, const struct firmware *fw)
332 u16 value, index, size;
334 int i, pass, ret = 0;
336 buff = kmalloc(65536, GFP_KERNEL);
338 if ((ret = m920x_read(udev, M9206_FILTER, 0x0, 0x8000, read, 4)) != 0)
340 deb("%x %x %x %x\n", read[0], read[1], read[2], read[3]);
342 if ((ret = m920x_read(udev, M9206_FW, 0x0, 0x0, read, 1)) != 0)
344 deb("%x\n", read[0]);
346 for (pass = 0; pass < 2; pass++) {
347 for (i = 0; i + (sizeof(u16) * 3) < fw->size;) {
348 value = le16_to_cpu(*(u16 *)(fw->data + i));
351 index = le16_to_cpu(*(u16 *)(fw->data + i));
354 size = le16_to_cpu(*(u16 *)(fw->data + i));
358 /* Will stall if using fw->data ... */
359 memcpy(buff, fw->data + i, size);
361 ret = usb_control_msg(udev, usb_sndctrlpipe(udev,0),
363 USB_TYPE_VENDOR | USB_DIR_OUT,
364 value, index, buff, size, 20);
366 deb("error while uploading fw!\n");
375 deb("bad firmware file!\n");
383 /* m920x will disconnect itself from the bus after this. */
384 (void) m920x_write(udev, M9206_CORE, 0x01, M9206_FW_GO);
385 deb("firmware uploaded!\n");
393 /* Callbacks for DVB USB */
394 static int m920x_identify_state(struct usb_device *udev,
395 struct dvb_usb_device_properties *props,
396 struct dvb_usb_device_description **desc,
399 struct usb_host_interface *alt;
401 alt = usb_altnum_to_altsetting(usb_ifnum_to_if(udev, 0), 1);
402 *cold = (alt == NULL) ? 1 : 0;
407 /* demod configurations */
408 static int m920x_mt352_demod_init(struct dvb_frontend *fe)
411 u8 config[] = { CONFIG, 0x3d };
412 u8 clock[] = { CLOCK_CTL, 0x30 };
413 u8 reset[] = { RESET, 0x80 };
414 u8 adc_ctl[] = { ADC_CTL_1, 0x40 };
415 u8 agc[] = { AGC_TARGET, 0x1c, 0x20 };
416 u8 sec_agc[] = { 0x69, 0x00, 0xff, 0xff, 0x40, 0xff, 0x00, 0x40, 0x40 };
417 u8 unk1[] = { 0x93, 0x1a };
418 u8 unk2[] = { 0xb5, 0x7a };
420 deb("Demod init!\n");
422 if ((ret = mt352_write(fe, config, ARRAY_SIZE(config))) != 0)
424 if ((ret = mt352_write(fe, clock, ARRAY_SIZE(clock))) != 0)
426 if ((ret = mt352_write(fe, reset, ARRAY_SIZE(reset))) != 0)
428 if ((ret = mt352_write(fe, adc_ctl, ARRAY_SIZE(adc_ctl))) != 0)
430 if ((ret = mt352_write(fe, agc, ARRAY_SIZE(agc))) != 0)
432 if ((ret = mt352_write(fe, sec_agc, ARRAY_SIZE(sec_agc))) != 0)
434 if ((ret = mt352_write(fe, unk1, ARRAY_SIZE(unk1))) != 0)
436 if ((ret = mt352_write(fe, unk2, ARRAY_SIZE(unk2))) != 0)
442 static struct mt352_config m920x_mt352_config = {
443 .demod_address = 0x0f,
445 .demod_init = m920x_mt352_demod_init,
448 static struct tda1004x_config m920x_tda10046_08_config = {
449 .demod_address = 0x08,
452 .ts_mode = TDA10046_TS_SERIAL,
453 .xtal_freq = TDA10046_XTAL_16M,
454 .if_freq = TDA10046_FREQ_045,
455 .agc_config = TDA10046_AGC_TDA827X,
456 .gpio_config = TDA10046_GPTRI,
457 .request_firmware = NULL,
460 static struct tda1004x_config m920x_tda10046_0b_config = {
461 .demod_address = 0x0b,
464 .ts_mode = TDA10046_TS_SERIAL,
465 .xtal_freq = TDA10046_XTAL_16M,
466 .if_freq = TDA10046_FREQ_045,
467 .agc_config = TDA10046_AGC_TDA827X,
468 .gpio_config = TDA10046_GPTRI,
469 .request_firmware = NULL, /* uses firmware EEPROM */
472 /* tuner configurations */
473 static struct qt1010_config m920x_qt1010_config = {
477 /* Callbacks for DVB USB */
478 static int m920x_mt352_frontend_attach(struct dvb_usb_adapter *adap)
480 deb("%s\n",__FUNCTION__);
482 if ((adap->fe = dvb_attach(mt352_attach,
484 &adap->dev->i2c_adap)) == NULL)
490 static int m920x_tda10046_08_frontend_attach(struct dvb_usb_adapter *adap)
492 deb("%s\n",__FUNCTION__);
494 if ((adap->fe = dvb_attach(tda10046_attach,
495 &m920x_tda10046_08_config,
496 &adap->dev->i2c_adap)) == NULL)
502 static int m920x_tda10046_0b_frontend_attach(struct dvb_usb_adapter *adap)
504 deb("%s\n",__FUNCTION__);
506 if ((adap->fe = dvb_attach(tda10046_attach,
507 &m920x_tda10046_0b_config,
508 &adap->dev->i2c_adap)) == NULL)
514 static int m920x_qt1010_tuner_attach(struct dvb_usb_adapter *adap)
516 deb("%s\n",__FUNCTION__);
518 if (dvb_attach(qt1010_attach, adap->fe, &adap->dev->i2c_adap, &m920x_qt1010_config) == NULL)
524 static int m920x_tda8275_60_tuner_attach(struct dvb_usb_adapter *adap)
526 deb("%s\n",__FUNCTION__);
528 if (dvb_attach(tda827x_attach, adap->fe, 0x60, &adap->dev->i2c_adap, NULL) == NULL)
534 static int m920x_tda8275_61_tuner_attach(struct dvb_usb_adapter *adap)
536 deb("%s\n",__FUNCTION__);
538 if (dvb_attach(tda827x_attach, adap->fe, 0x61, &adap->dev->i2c_adap, NULL) == NULL)
544 /* device-specific initialization */
545 static struct m920x_inits megasky_rc_init [] = {
546 { M9206_RC_INIT2, 0xa8 },
547 { M9206_RC_INIT1, 0x51 },
548 { } /* terminating entry */
551 static struct m920x_inits tvwalkertwin_rc_init [] = {
552 { M9206_RC_INIT2, 0x00 },
553 { M9206_RC_INIT1, 0xef },
557 { } /* terminating entry */
561 static struct dvb_usb_rc_key megasky_rc_keys [] = {
562 { 0x0, 0x12, KEY_POWER },
563 { 0x0, 0x1e, KEY_CYCLEWINDOWS }, /* min/max */
564 { 0x0, 0x02, KEY_CHANNELUP },
565 { 0x0, 0x05, KEY_CHANNELDOWN },
566 { 0x0, 0x03, KEY_VOLUMEUP },
567 { 0x0, 0x06, KEY_VOLUMEDOWN },
568 { 0x0, 0x04, KEY_MUTE },
569 { 0x0, 0x07, KEY_OK }, /* TS */
570 { 0x0, 0x08, KEY_STOP },
571 { 0x0, 0x09, KEY_MENU }, /* swap */
572 { 0x0, 0x0a, KEY_REWIND },
573 { 0x0, 0x1b, KEY_PAUSE },
574 { 0x0, 0x1f, KEY_FASTFORWARD },
575 { 0x0, 0x0c, KEY_RECORD },
576 { 0x0, 0x0d, KEY_CAMERA }, /* screenshot */
577 { 0x0, 0x0e, KEY_COFFEE }, /* "MTS" */
580 static struct dvb_usb_rc_key tvwalkertwin_rc_keys [] = {
581 { 0x0, 0x01, KEY_ZOOM }, /* Full Screen */
582 { 0x0, 0x02, KEY_CAMERA }, /* snapshot */
583 { 0x0, 0x03, KEY_MUTE },
584 { 0x0, 0x04, KEY_REWIND },
585 { 0x0, 0x05, KEY_PLAYPAUSE }, /* Play/Pause */
586 { 0x0, 0x06, KEY_FASTFORWARD },
587 { 0x0, 0x07, KEY_RECORD },
588 { 0x0, 0x08, KEY_STOP },
589 { 0x0, 0x09, KEY_TIME }, /* Timeshift */
590 { 0x0, 0x0c, KEY_COFFEE }, /* Recall */
591 { 0x0, 0x0e, KEY_CHANNELUP },
592 { 0x0, 0x12, KEY_POWER },
593 { 0x0, 0x15, KEY_MENU }, /* source */
594 { 0x0, 0x18, KEY_CYCLEWINDOWS }, /* TWIN PIP */
595 { 0x0, 0x1a, KEY_CHANNELDOWN },
596 { 0x0, 0x1b, KEY_VOLUMEDOWN },
597 { 0x0, 0x1e, KEY_VOLUMEUP },
600 /* DVB USB Driver stuff */
601 static struct dvb_usb_device_properties megasky_properties;
602 static struct dvb_usb_device_properties digivox_mini_ii_properties;
603 static struct dvb_usb_device_properties tvwalkertwin_properties;
604 static struct dvb_usb_device_properties dposh_properties;
606 static int m920x_probe(struct usb_interface *intf,
607 const struct usb_device_id *id)
609 struct dvb_usb_device *d = NULL;
611 struct m920x_inits *rc_init_seq = NULL;
612 int bInterfaceNumber = intf->cur_altsetting->desc.bInterfaceNumber;
614 deb("Probing for m920x device at interface %d\n", bInterfaceNumber);
616 if (bInterfaceNumber == 0) {
617 /* Single-tuner device, or first interface on
621 if ((ret = dvb_usb_device_init(intf, &megasky_properties,
622 THIS_MODULE, &d)) == 0) {
623 rc_init_seq = megasky_rc_init;
627 if ((ret = dvb_usb_device_init(intf, &digivox_mini_ii_properties,
628 THIS_MODULE, &d)) == 0) {
629 /* No remote control, so no rc_init_seq */
633 /* This configures both tuners on the TV Walker Twin */
634 if ((ret = dvb_usb_device_init(intf, &tvwalkertwin_properties,
635 THIS_MODULE, &d)) == 0) {
636 rc_init_seq = tvwalkertwin_rc_init;
640 if ((ret = dvb_usb_device_init(intf, &dposh_properties,
641 THIS_MODULE, &d)) == 0) {
642 /* Remote controller not supported yet. */
648 /* Another interface on a multi-tuner device */
650 /* The LifeView TV Walker Twin gets here, but struct
651 * tvwalkertwin_properties already configured both
652 * tuners, so there is nothing for us to do here
657 if ((ret = m920x_init_ep(intf)) < 0)
660 if (d && (ret = m920x_init(d, rc_init_seq)) != 0)
666 static struct usb_device_id m920x_table [] = {
667 { USB_DEVICE(USB_VID_MSI, USB_PID_MSI_MEGASKY580) },
668 { USB_DEVICE(USB_VID_ANUBIS_ELECTRONIC,
669 USB_PID_MSI_DIGI_VOX_MINI_II) },
670 { USB_DEVICE(USB_VID_ANUBIS_ELECTRONIC,
671 USB_PID_LIFEVIEW_TV_WALKER_TWIN_COLD) },
672 { USB_DEVICE(USB_VID_ANUBIS_ELECTRONIC,
673 USB_PID_LIFEVIEW_TV_WALKER_TWIN_WARM) },
674 { USB_DEVICE(USB_VID_DPOSH, USB_PID_DPOSH_M9206_COLD) },
675 { USB_DEVICE(USB_VID_DPOSH, USB_PID_DPOSH_M9206_WARM) },
676 { } /* Terminating entry */
678 MODULE_DEVICE_TABLE (usb, m920x_table);
680 static struct dvb_usb_device_properties megasky_properties = {
681 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
683 .usb_ctrl = DEVICE_SPECIFIC,
684 .firmware = "dvb-usb-megasky-02.fw",
685 .download_firmware = m920x_firmware_download,
688 .rc_key_map = megasky_rc_keys,
689 .rc_key_map_size = ARRAY_SIZE(megasky_rc_keys),
690 .rc_query = m920x_rc_query,
692 .size_of_priv = sizeof(struct m920x_state),
694 .identify_state = m920x_identify_state,
697 .caps = DVB_USB_ADAP_HAS_PID_FILTER |
698 DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,
700 .pid_filter_count = 8,
701 .pid_filter = m920x_pid_filter,
702 .pid_filter_ctrl = m920x_pid_filter_ctrl,
704 .frontend_attach = m920x_mt352_frontend_attach,
705 .tuner_attach = m920x_qt1010_tuner_attach,
718 .i2c_algo = &m920x_i2c_algo,
720 .num_device_descs = 1,
722 { "MSI Mega Sky 580 DVB-T USB2.0",
723 { &m920x_table[0], NULL },
729 static struct dvb_usb_device_properties digivox_mini_ii_properties = {
730 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
732 .usb_ctrl = DEVICE_SPECIFIC,
733 .firmware = "dvb-usb-digivox-02.fw",
734 .download_firmware = m920x_firmware_download,
736 .size_of_priv = sizeof(struct m920x_state),
738 .identify_state = m920x_identify_state,
741 .caps = DVB_USB_ADAP_HAS_PID_FILTER |
742 DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,
744 .pid_filter_count = 8,
745 .pid_filter = m920x_pid_filter,
746 .pid_filter_ctrl = m920x_pid_filter_ctrl,
748 .frontend_attach = m920x_tda10046_08_frontend_attach,
749 .tuner_attach = m920x_tda8275_60_tuner_attach,
757 .buffersize = 0x4000,
762 .i2c_algo = &m920x_i2c_algo,
764 .num_device_descs = 1,
766 { "MSI DIGI VOX mini II DVB-T USB2.0",
767 { &m920x_table[1], NULL },
773 /* LifeView TV Walker Twin support by Nick Andrew <nick@nick-andrew.net>
775 * LifeView TV Walker Twin has 1 x M9206, 2 x TDA10046, 2 x TDA8275A
776 * TDA10046 #0 is located at i2c address 0x08
777 * TDA10046 #1 is located at i2c address 0x0b
778 * TDA8275A #0 is located at i2c address 0x60
779 * TDA8275A #1 is located at i2c address 0x61
781 static struct dvb_usb_device_properties tvwalkertwin_properties = {
782 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
784 .usb_ctrl = DEVICE_SPECIFIC,
785 .firmware = "dvb-usb-tvwalkert.fw",
786 .download_firmware = m920x_firmware_download,
789 .rc_key_map = tvwalkertwin_rc_keys,
790 .rc_key_map_size = ARRAY_SIZE(tvwalkertwin_rc_keys),
791 .rc_query = m920x_rc_query,
793 .size_of_priv = sizeof(struct m920x_state),
795 .identify_state = m920x_identify_state,
798 .caps = DVB_USB_ADAP_HAS_PID_FILTER |
799 DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,
801 .pid_filter_count = 8,
802 .pid_filter = m920x_pid_filter,
803 .pid_filter_ctrl = m920x_pid_filter_ctrl,
805 .frontend_attach = m920x_tda10046_08_frontend_attach,
806 .tuner_attach = m920x_tda8275_60_tuner_attach,
818 .caps = DVB_USB_ADAP_HAS_PID_FILTER |
819 DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF,
821 .pid_filter_count = 8,
822 .pid_filter = m920x_pid_filter,
823 .pid_filter_ctrl = m920x_pid_filter_ctrl,
825 .frontend_attach = m920x_tda10046_0b_frontend_attach,
826 .tuner_attach = m920x_tda8275_61_tuner_attach,
839 .i2c_algo = &m920x_i2c_algo,
841 .num_device_descs = 1,
843 { .name = "LifeView TV Walker Twin DVB-T USB2.0",
844 .cold_ids = { &m920x_table[2], NULL },
845 .warm_ids = { &m920x_table[3], NULL },
850 static struct dvb_usb_device_properties dposh_properties = {
851 .caps = DVB_USB_IS_AN_I2C_ADAPTER,
853 .usb_ctrl = DEVICE_SPECIFIC,
854 .firmware = "dvb-usb-dposh-01.fw",
855 .download_firmware = m920x_firmware_download,
857 .size_of_priv = sizeof(struct m920x_state),
859 .identify_state = m920x_identify_state,
862 /* Hardware pid filters don't work with this device/firmware */
864 .frontend_attach = m920x_mt352_frontend_attach,
865 .tuner_attach = m920x_qt1010_tuner_attach,
878 .i2c_algo = &m920x_i2c_algo,
880 .num_device_descs = 1,
882 { .name = "Dposh DVB-T USB2.0",
883 .cold_ids = { &m920x_table[4], NULL },
884 .warm_ids = { &m920x_table[5], NULL },
889 static struct usb_driver m920x_driver = {
890 .name = "dvb_usb_m920x",
891 .probe = m920x_probe,
892 .disconnect = dvb_usb_device_exit,
893 .id_table = m920x_table,
897 static int __init m920x_module_init(void)
901 if ((ret = usb_register(&m920x_driver))) {
902 err("usb_register failed. Error number %d", ret);
909 static void __exit m920x_module_exit(void)
911 /* deregister this driver from the USB subsystem */
912 usb_deregister(&m920x_driver);
915 module_init (m920x_module_init);
916 module_exit (m920x_module_exit);
918 MODULE_AUTHOR("Aapo Tahkola <aet@rasterburn.org>");
919 MODULE_DESCRIPTION("DVB Driver for ULI M920x");
920 MODULE_VERSION("0.1");
921 MODULE_LICENSE("GPL");