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 #include <media/tuner.h>
22 #include "tuner-simple.h"
23 #include <asm/unaligned.h>
26 static int dvb_usb_m920x_debug
;
27 module_param_named(debug
,dvb_usb_m920x_debug
, int, 0644);
28 MODULE_PARM_DESC(debug
, "set debugging level (1=rc (or-able))." DVB_USB_DEBUG_STATUS
);
30 DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr
);
32 static int m920x_set_filter(struct dvb_usb_device
*d
, int type
, int idx
, int pid
);
34 static inline int m920x_read(struct usb_device
*udev
, u8 request
, u16 value
,
35 u16 index
, void *data
, int size
)
39 ret
= usb_control_msg(udev
, usb_rcvctrlpipe(udev
, 0),
40 request
, USB_TYPE_VENDOR
| USB_DIR_IN
,
41 value
, index
, data
, size
, 2000);
43 printk(KERN_INFO
"m920x_read = error: %d\n", ret
);
48 deb("m920x_read = no data\n");
55 static inline int m920x_write(struct usb_device
*udev
, u8 request
,
58 return usb_control_msg(udev
, usb_sndctrlpipe(udev
, 0), request
,
59 USB_TYPE_VENDOR
| USB_DIR_OUT
, value
, index
,
63 static inline int m920x_write_seq(struct usb_device
*udev
, u8 request
,
64 struct m920x_inits
*seq
)
68 ret
= m920x_write(udev
, request
, seq
->data
, seq
->address
);
73 } while (seq
->address
);
78 static int m920x_init(struct dvb_usb_device
*d
, struct m920x_inits
*rc_seq
)
80 int ret
, i
, epi
, flags
= 0;
81 int adap_enabled
[M9206_MAX_ADAPTERS
] = { 0 };
83 /* Remote controller init. */
84 if (d
->props
.rc
.legacy
.rc_query
|| d
->props
.rc
.core
.rc_query
) {
85 deb("Initialising remote control\n");
86 ret
= m920x_write_seq(d
->udev
, M9206_CORE
, rc_seq
);
88 deb("Initialising remote control failed\n");
92 deb("Initialising remote control success\n");
95 for (i
= 0; i
< d
->props
.num_adapters
; i
++)
96 flags
|= d
->adapter
[i
].props
.fe
[0].caps
;
98 /* Some devices(Dposh) might crash if we attempt touch at all. */
99 if (flags
& DVB_USB_ADAP_HAS_PID_FILTER
) {
100 for (i
= 0; i
< d
->props
.num_adapters
; i
++) {
101 epi
= d
->adapter
[i
].props
.fe
[0].stream
.endpoint
- 0x81;
103 if (epi
< 0 || epi
>= M9206_MAX_ADAPTERS
) {
104 printk(KERN_INFO
"m920x: Unexpected adapter endpoint!\n");
108 adap_enabled
[epi
] = 1;
111 for (i
= 0; i
< M9206_MAX_ADAPTERS
; i
++) {
115 if ((ret
= m920x_set_filter(d
, 0x81 + i
, 0, 0x0)) != 0)
118 if ((ret
= m920x_set_filter(d
, 0x81 + i
, 0, 0x02f5)) != 0)
126 static int m920x_init_ep(struct usb_interface
*intf
)
128 struct usb_device
*udev
= interface_to_usbdev(intf
);
129 struct usb_host_interface
*alt
;
131 if ((alt
= usb_altnum_to_altsetting(intf
, 1)) == NULL
) {
132 deb("No alt found!\n");
136 return usb_set_interface(udev
, alt
->desc
.bInterfaceNumber
,
137 alt
->desc
.bAlternateSetting
);
140 static inline void m920x_parse_rc_state(struct dvb_usb_device
*d
, u8 rc_state
,
143 struct m920x_state
*m
= d
->priv
;
147 *state
= REMOTE_NO_KEY_PRESSED
;
150 case 0x88: /* framing error or "invalid code" */
154 *state
= REMOTE_NO_KEY_PRESSED
;
160 case 0x83: /* pinnacle PCTV310e */
163 *state
= REMOTE_KEY_PRESSED
;
167 case 0x81: /* pinnacle PCTV310e */
168 /* prevent immediate auto-repeat */
169 if (++m
->rep_count
> 2)
170 *state
= REMOTE_KEY_REPEAT
;
172 *state
= REMOTE_NO_KEY_PRESSED
;
176 deb("Unexpected rc state %02x\n", rc_state
);
177 *state
= REMOTE_NO_KEY_PRESSED
;
182 static int m920x_rc_query(struct dvb_usb_device
*d
, u32
*event
, int *state
)
187 rc_state
= kmalloc(2, GFP_KERNEL
);
191 ret
= m920x_read(d
->udev
, M9206_CORE
, 0x0, M9206_RC_STATE
,
196 ret
= m920x_read(d
->udev
, M9206_CORE
, 0x0, M9206_RC_KEY
,
201 m920x_parse_rc_state(d
, rc_state
[0], state
);
203 for (i
= 0; i
< d
->props
.rc
.legacy
.rc_map_size
; i
++)
204 if (rc5_data(&d
->props
.rc
.legacy
.rc_map_table
[i
]) == rc_state
[1]) {
205 *event
= d
->props
.rc
.legacy
.rc_map_table
[i
].keycode
;
209 if (rc_state
[1] != 0)
210 deb("Unknown rc key %02x\n", rc_state
[1]);
212 *state
= REMOTE_NO_KEY_PRESSED
;
219 static int m920x_rc_core_query(struct dvb_usb_device
*d
)
225 rc_state
= kmalloc(2, GFP_KERNEL
);
229 if ((ret
= m920x_read(d
->udev
, M9206_CORE
, 0x0, M9206_RC_STATE
, &rc_state
[0], 1)) != 0)
232 if ((ret
= m920x_read(d
->udev
, M9206_CORE
, 0x0, M9206_RC_KEY
, &rc_state
[1], 1)) != 0)
235 deb("state=0x%02x keycode=0x%02x\n", rc_state
[0], rc_state
[1]);
237 m920x_parse_rc_state(d
, rc_state
[0], &state
);
239 if (state
== REMOTE_NO_KEY_PRESSED
)
241 else if (state
== REMOTE_KEY_REPEAT
)
242 rc_repeat(d
->rc_dev
);
244 rc_keydown(d
->rc_dev
, RC_TYPE_UNKNOWN
, rc_state
[1], 0);
252 static int m920x_i2c_xfer(struct i2c_adapter
*adap
, struct i2c_msg msg
[], int num
)
254 struct dvb_usb_device
*d
= i2c_get_adapdata(adap
);
261 if (mutex_lock_interruptible(&d
->i2c_mutex
) < 0)
264 for (i
= 0; i
< num
; i
++) {
265 if (msg
[i
].flags
& (I2C_M_NO_RD_ACK
| I2C_M_IGNORE_NAK
| I2C_M_TEN
) || msg
[i
].len
== 0) {
266 /* For a 0 byte message, I think sending the address
267 * to index 0x80|0x40 would be the correct thing to
268 * do. However, zero byte messages are only used for
269 * probing, and since we don't know how to get the
270 * slave's ack, we can't probe. */
274 /* Send START & address/RW bit */
275 if (!(msg
[i
].flags
& I2C_M_NOSTART
)) {
276 if ((ret
= m920x_write(d
->udev
, M9206_I2C
,
278 (msg
[i
].flags
& I2C_M_RD
? 0x01 : 0), 0x80)) != 0)
280 /* Should check for ack here, if we knew how. */
282 if (msg
[i
].flags
& I2C_M_RD
) {
283 for (j
= 0; j
< msg
[i
].len
; j
++) {
284 /* Last byte of transaction?
285 * Send STOP, otherwise send ACK. */
286 int stop
= (i
+1 == num
&& j
+1 == msg
[i
].len
) ? 0x40 : 0x01;
288 if ((ret
= m920x_read(d
->udev
, M9206_I2C
, 0x0,
290 &msg
[i
].buf
[j
], 1)) != 0)
294 for (j
= 0; j
< msg
[i
].len
; j
++) {
295 /* Last byte of transaction? Then send STOP. */
296 int stop
= (i
+1 == num
&& j
+1 == msg
[i
].len
) ? 0x40 : 0x00;
298 if ((ret
= m920x_write(d
->udev
, M9206_I2C
, msg
[i
].buf
[j
], stop
)) != 0)
300 /* Should check for ack here too. */
307 mutex_unlock(&d
->i2c_mutex
);
312 static u32
m920x_i2c_func(struct i2c_adapter
*adapter
)
317 static struct i2c_algorithm m920x_i2c_algo
= {
318 .master_xfer
= m920x_i2c_xfer
,
319 .functionality
= m920x_i2c_func
,
323 static int m920x_set_filter(struct dvb_usb_device
*d
, int type
, int idx
, int pid
)
332 if ((ret
= m920x_write(d
->udev
, M9206_FILTER
, pid
, (type
<< 8) | (idx
* 4) )) != 0)
335 if ((ret
= m920x_write(d
->udev
, M9206_FILTER
, 0, (type
<< 8) | (idx
* 4) )) != 0)
341 static int m920x_update_filters(struct dvb_usb_adapter
*adap
)
343 struct m920x_state
*m
= adap
->dev
->priv
;
344 int enabled
= m
->filtering_enabled
[adap
->id
];
345 int i
, ret
= 0, filter
= 0;
346 int ep
= adap
->props
.fe
[0].stream
.endpoint
;
348 for (i
= 0; i
< M9206_MAX_FILTERS
; i
++)
349 if (m
->filters
[adap
->id
][i
] == 8192)
352 /* Disable all filters */
353 if ((ret
= m920x_set_filter(adap
->dev
, ep
, 1, enabled
)) != 0)
356 for (i
= 0; i
< M9206_MAX_FILTERS
; i
++)
357 if ((ret
= m920x_set_filter(adap
->dev
, ep
, i
+ 2, 0)) != 0)
362 for (i
= 0; i
< M9206_MAX_FILTERS
; i
++) {
363 if (m
->filters
[adap
->id
][i
] == 0)
366 if ((ret
= m920x_set_filter(adap
->dev
, ep
, filter
+ 2, m
->filters
[adap
->id
][i
])) != 0)
376 static int m920x_pid_filter_ctrl(struct dvb_usb_adapter
*adap
, int onoff
)
378 struct m920x_state
*m
= adap
->dev
->priv
;
380 m
->filtering_enabled
[adap
->id
] = onoff
? 1 : 0;
382 return m920x_update_filters(adap
);
385 static int m920x_pid_filter(struct dvb_usb_adapter
*adap
, int index
, u16 pid
, int onoff
)
387 struct m920x_state
*m
= adap
->dev
->priv
;
389 m
->filters
[adap
->id
][index
] = onoff
? pid
: 0;
391 return m920x_update_filters(adap
);
394 static int m920x_firmware_download(struct usb_device
*udev
, const struct firmware
*fw
)
396 u16 value
, index
, size
;
398 int i
, pass
, ret
= 0;
400 buff
= kmalloc(65536, GFP_KERNEL
);
404 read
= kmalloc(4, GFP_KERNEL
);
410 if ((ret
= m920x_read(udev
, M9206_FILTER
, 0x0, 0x8000, read
, 4)) != 0)
412 deb("%*ph\n", 4, read
);
414 if ((ret
= m920x_read(udev
, M9206_FW
, 0x0, 0x0, read
, 1)) != 0)
416 deb("%x\n", read
[0]);
418 for (pass
= 0; pass
< 2; pass
++) {
419 for (i
= 0; i
+ (sizeof(u16
) * 3) < fw
->size
;) {
420 value
= get_unaligned_le16(fw
->data
+ i
);
423 index
= get_unaligned_le16(fw
->data
+ i
);
426 size
= get_unaligned_le16(fw
->data
+ i
);
430 /* Will stall if using fw->data ... */
431 memcpy(buff
, fw
->data
+ i
, size
);
433 ret
= usb_control_msg(udev
, usb_sndctrlpipe(udev
,0),
435 USB_TYPE_VENDOR
| USB_DIR_OUT
,
436 value
, index
, buff
, size
, 20);
438 deb("error while uploading fw!\n");
447 deb("bad firmware file!\n");
455 /* m920x will disconnect itself from the bus after this. */
456 (void) m920x_write(udev
, M9206_CORE
, 0x01, M9206_FW_GO
);
457 deb("firmware uploaded!\n");
466 /* Callbacks for DVB USB */
467 static int m920x_identify_state(struct usb_device
*udev
,
468 struct dvb_usb_device_properties
*props
,
469 struct dvb_usb_device_description
**desc
,
472 struct usb_host_interface
*alt
;
474 alt
= usb_altnum_to_altsetting(usb_ifnum_to_if(udev
, 0), 1);
475 *cold
= (alt
== NULL
) ? 1 : 0;
480 /* demod configurations */
481 static int m920x_mt352_demod_init(struct dvb_frontend
*fe
)
484 u8 config
[] = { CONFIG
, 0x3d };
485 u8 clock
[] = { CLOCK_CTL
, 0x30 };
486 u8 reset
[] = { RESET
, 0x80 };
487 u8 adc_ctl
[] = { ADC_CTL_1
, 0x40 };
488 u8 agc
[] = { AGC_TARGET
, 0x1c, 0x20 };
489 u8 sec_agc
[] = { 0x69, 0x00, 0xff, 0xff, 0x40, 0xff, 0x00, 0x40, 0x40 };
490 u8 unk1
[] = { 0x93, 0x1a };
491 u8 unk2
[] = { 0xb5, 0x7a };
493 deb("Demod init!\n");
495 if ((ret
= mt352_write(fe
, config
, ARRAY_SIZE(config
))) != 0)
497 if ((ret
= mt352_write(fe
, clock
, ARRAY_SIZE(clock
))) != 0)
499 if ((ret
= mt352_write(fe
, reset
, ARRAY_SIZE(reset
))) != 0)
501 if ((ret
= mt352_write(fe
, adc_ctl
, ARRAY_SIZE(adc_ctl
))) != 0)
503 if ((ret
= mt352_write(fe
, agc
, ARRAY_SIZE(agc
))) != 0)
505 if ((ret
= mt352_write(fe
, sec_agc
, ARRAY_SIZE(sec_agc
))) != 0)
507 if ((ret
= mt352_write(fe
, unk1
, ARRAY_SIZE(unk1
))) != 0)
509 if ((ret
= mt352_write(fe
, unk2
, ARRAY_SIZE(unk2
))) != 0)
515 static struct mt352_config m920x_mt352_config
= {
516 .demod_address
= 0x0f,
518 .demod_init
= m920x_mt352_demod_init
,
521 static struct tda1004x_config m920x_tda10046_08_config
= {
522 .demod_address
= 0x08,
525 .ts_mode
= TDA10046_TS_SERIAL
,
526 .xtal_freq
= TDA10046_XTAL_16M
,
527 .if_freq
= TDA10046_FREQ_045
,
528 .agc_config
= TDA10046_AGC_TDA827X
,
529 .gpio_config
= TDA10046_GPTRI
,
530 .request_firmware
= NULL
,
533 static struct tda1004x_config m920x_tda10046_0b_config
= {
534 .demod_address
= 0x0b,
537 .ts_mode
= TDA10046_TS_SERIAL
,
538 .xtal_freq
= TDA10046_XTAL_16M
,
539 .if_freq
= TDA10046_FREQ_045
,
540 .agc_config
= TDA10046_AGC_TDA827X
,
541 .gpio_config
= TDA10046_GPTRI
,
542 .request_firmware
= NULL
, /* uses firmware EEPROM */
545 /* tuner configurations */
546 static struct qt1010_config m920x_qt1010_config
= {
550 static struct mt2060_config m920x_mt2060_config
= {
551 .i2c_address
= 0x60, /* 0xc0 */
556 /* Callbacks for DVB USB */
557 static int m920x_mt352_frontend_attach(struct dvb_usb_adapter
*adap
)
559 deb("%s\n",__func__
);
561 adap
->fe_adap
[0].fe
= dvb_attach(mt352_attach
,
563 &adap
->dev
->i2c_adap
);
564 if ((adap
->fe_adap
[0].fe
) == NULL
)
570 static int m920x_mt352_frontend_attach_vp7049(struct dvb_usb_adapter
*adap
)
572 struct m920x_inits vp7049_fe_init_seq
[] = {
573 /* XXX without these commands the frontend cannot be detected,
574 * they must be sent BEFORE the frontend is attached */
586 { } /* terminating entry */
590 deb("%s\n", __func__
);
592 ret
= m920x_write_seq(adap
->dev
->udev
, M9206_CORE
, vp7049_fe_init_seq
);
594 deb("Initialization of vp7049 frontend failed.");
598 return m920x_mt352_frontend_attach(adap
);
601 static int m920x_tda10046_08_frontend_attach(struct dvb_usb_adapter
*adap
)
603 deb("%s\n",__func__
);
605 adap
->fe_adap
[0].fe
= dvb_attach(tda10046_attach
,
606 &m920x_tda10046_08_config
,
607 &adap
->dev
->i2c_adap
);
608 if ((adap
->fe_adap
[0].fe
) == NULL
)
614 static int m920x_tda10046_0b_frontend_attach(struct dvb_usb_adapter
*adap
)
616 deb("%s\n",__func__
);
618 adap
->fe_adap
[0].fe
= dvb_attach(tda10046_attach
,
619 &m920x_tda10046_0b_config
,
620 &adap
->dev
->i2c_adap
);
621 if ((adap
->fe_adap
[0].fe
) == NULL
)
627 static int m920x_qt1010_tuner_attach(struct dvb_usb_adapter
*adap
)
629 deb("%s\n",__func__
);
631 if (dvb_attach(qt1010_attach
, adap
->fe_adap
[0].fe
, &adap
->dev
->i2c_adap
, &m920x_qt1010_config
) == NULL
)
637 static int m920x_tda8275_60_tuner_attach(struct dvb_usb_adapter
*adap
)
639 deb("%s\n",__func__
);
641 if (dvb_attach(tda827x_attach
, adap
->fe_adap
[0].fe
, 0x60, &adap
->dev
->i2c_adap
, NULL
) == NULL
)
647 static int m920x_tda8275_61_tuner_attach(struct dvb_usb_adapter
*adap
)
649 deb("%s\n",__func__
);
651 if (dvb_attach(tda827x_attach
, adap
->fe_adap
[0].fe
, 0x61, &adap
->dev
->i2c_adap
, NULL
) == NULL
)
657 static int m920x_fmd1216me_tuner_attach(struct dvb_usb_adapter
*adap
)
659 dvb_attach(simple_tuner_attach
, adap
->fe_adap
[0].fe
,
660 &adap
->dev
->i2c_adap
, 0x61,
661 TUNER_PHILIPS_FMD1216ME_MK3
);
665 static int m920x_mt2060_tuner_attach(struct dvb_usb_adapter
*adap
)
667 deb("%s\n", __func__
);
669 if (dvb_attach(mt2060_attach
, adap
->fe_adap
[0].fe
, &adap
->dev
->i2c_adap
,
670 &m920x_mt2060_config
, 1220) == NULL
)
677 /* device-specific initialization */
678 static struct m920x_inits megasky_rc_init
[] = {
679 { M9206_RC_INIT2
, 0xa8 },
680 { M9206_RC_INIT1
, 0x51 },
681 { } /* terminating entry */
684 static struct m920x_inits tvwalkertwin_rc_init
[] = {
685 { M9206_RC_INIT2
, 0x00 },
686 { M9206_RC_INIT1
, 0xef },
690 { } /* terminating entry */
693 static struct m920x_inits pinnacle310e_init
[] = {
694 /* without these the tuner doesn't work */
700 { M9206_RC_INIT1
, 0x00 },
701 { M9206_RC_INIT2
, 0xff },
702 { } /* terminating entry */
705 static struct m920x_inits vp7049_rc_init
[] = {
709 { M9206_RC_INIT2
, 0x00 },
710 { M9206_RC_INIT1
, 0xff },
711 { } /* terminating entry */
715 static struct rc_map_table rc_map_megasky_table
[] = {
716 { 0x0012, KEY_POWER
},
717 { 0x001e, KEY_CYCLEWINDOWS
}, /* min/max */
718 { 0x0002, KEY_CHANNELUP
},
719 { 0x0005, KEY_CHANNELDOWN
},
720 { 0x0003, KEY_VOLUMEUP
},
721 { 0x0006, KEY_VOLUMEDOWN
},
722 { 0x0004, KEY_MUTE
},
723 { 0x0007, KEY_OK
}, /* TS */
724 { 0x0008, KEY_STOP
},
725 { 0x0009, KEY_MENU
}, /* swap */
726 { 0x000a, KEY_REWIND
},
727 { 0x001b, KEY_PAUSE
},
728 { 0x001f, KEY_FASTFORWARD
},
729 { 0x000c, KEY_RECORD
},
730 { 0x000d, KEY_CAMERA
}, /* screenshot */
731 { 0x000e, KEY_COFFEE
}, /* "MTS" */
734 static struct rc_map_table rc_map_tvwalkertwin_table
[] = {
735 { 0x0001, KEY_ZOOM
}, /* Full Screen */
736 { 0x0002, KEY_CAMERA
}, /* snapshot */
737 { 0x0003, KEY_MUTE
},
738 { 0x0004, KEY_REWIND
},
739 { 0x0005, KEY_PLAYPAUSE
}, /* Play/Pause */
740 { 0x0006, KEY_FASTFORWARD
},
741 { 0x0007, KEY_RECORD
},
742 { 0x0008, KEY_STOP
},
743 { 0x0009, KEY_TIME
}, /* Timeshift */
744 { 0x000c, KEY_COFFEE
}, /* Recall */
745 { 0x000e, KEY_CHANNELUP
},
746 { 0x0012, KEY_POWER
},
747 { 0x0015, KEY_MENU
}, /* source */
748 { 0x0018, KEY_CYCLEWINDOWS
}, /* TWIN PIP */
749 { 0x001a, KEY_CHANNELDOWN
},
750 { 0x001b, KEY_VOLUMEDOWN
},
751 { 0x001e, KEY_VOLUMEUP
},
754 static struct rc_map_table rc_map_pinnacle310e_table
[] = {
756 { 0x17, KEY_FAVORITES
},
758 { 0x48, KEY_PROGRAM
}, /* preview */
760 { 0x04, KEY_LIST
}, /* record list */
771 { 0x0c, KEY_CANCEL
},
779 { 0x4f, KEY_ENTER
}, /* could also be KEY_OK */
780 { 0x1e, KEY_VOLUMEUP
},
781 { 0x0a, KEY_VOLUMEDOWN
},
782 { 0x05, KEY_CHANNELUP
},
783 { 0x02, KEY_CHANNELDOWN
},
784 { 0x11, KEY_RECORD
},
788 { 0x40, KEY_REWIND
},
789 { 0x12, KEY_FASTFORWARD
},
790 { 0x41, KEY_PREVIOUSSONG
}, /* Replay */
791 { 0x42, KEY_NEXTSONG
}, /* Skip */
792 { 0x54, KEY_CAMERA
}, /* Capture */
793 /* { 0x50, KEY_SAP }, */ /* Sap */
794 { 0x47, KEY_CYCLEWINDOWS
}, /* Pip */
795 { 0x4d, KEY_SCREEN
}, /* FullScreen */
796 { 0x08, KEY_SUBTITLE
},
798 /* { 0x49, KEY_LR }, */ /* L/R */
799 { 0x07, KEY_SLEEP
}, /* Hibernate */
800 { 0x08, KEY_VIDEO
}, /* A/V */
801 { 0x0e, KEY_MENU
}, /* Recall */
802 { 0x45, KEY_ZOOMIN
},
803 { 0x46, KEY_ZOOMOUT
},
804 { 0x18, KEY_RED
}, /* Red */
805 { 0x53, KEY_GREEN
}, /* Green */
806 { 0x5e, KEY_YELLOW
}, /* Yellow */
807 { 0x5f, KEY_BLUE
}, /* Blue */
810 /* DVB USB Driver stuff */
811 static struct dvb_usb_device_properties megasky_properties
;
812 static struct dvb_usb_device_properties digivox_mini_ii_properties
;
813 static struct dvb_usb_device_properties tvwalkertwin_properties
;
814 static struct dvb_usb_device_properties dposh_properties
;
815 static struct dvb_usb_device_properties pinnacle_pctv310e_properties
;
816 static struct dvb_usb_device_properties vp7049_properties
;
818 static int m920x_probe(struct usb_interface
*intf
,
819 const struct usb_device_id
*id
)
821 struct dvb_usb_device
*d
= NULL
;
823 struct m920x_inits
*rc_init_seq
= NULL
;
824 int bInterfaceNumber
= intf
->cur_altsetting
->desc
.bInterfaceNumber
;
826 deb("Probing for m920x device at interface %d\n", bInterfaceNumber
);
828 if (bInterfaceNumber
== 0) {
829 /* Single-tuner device, or first interface on
833 ret
= dvb_usb_device_init(intf
, &megasky_properties
,
834 THIS_MODULE
, &d
, adapter_nr
);
836 rc_init_seq
= megasky_rc_init
;
840 ret
= dvb_usb_device_init(intf
, &digivox_mini_ii_properties
,
841 THIS_MODULE
, &d
, adapter_nr
);
843 /* No remote control, so no rc_init_seq */
847 /* This configures both tuners on the TV Walker Twin */
848 ret
= dvb_usb_device_init(intf
, &tvwalkertwin_properties
,
849 THIS_MODULE
, &d
, adapter_nr
);
851 rc_init_seq
= tvwalkertwin_rc_init
;
855 ret
= dvb_usb_device_init(intf
, &dposh_properties
,
856 THIS_MODULE
, &d
, adapter_nr
);
858 /* Remote controller not supported yet. */
862 ret
= dvb_usb_device_init(intf
, &pinnacle_pctv310e_properties
,
863 THIS_MODULE
, &d
, adapter_nr
);
865 rc_init_seq
= pinnacle310e_init
;
869 ret
= dvb_usb_device_init(intf
, &vp7049_properties
,
870 THIS_MODULE
, &d
, adapter_nr
);
872 rc_init_seq
= vp7049_rc_init
;
878 /* Another interface on a multi-tuner device */
880 /* The LifeView TV Walker Twin gets here, but struct
881 * tvwalkertwin_properties already configured both
882 * tuners, so there is nothing for us to do here
887 if ((ret
= m920x_init_ep(intf
)) < 0)
890 if (d
&& (ret
= m920x_init(d
, rc_init_seq
)) != 0)
896 static struct usb_device_id m920x_table
[] = {
897 { USB_DEVICE(USB_VID_MSI
, USB_PID_MSI_MEGASKY580
) },
898 { USB_DEVICE(USB_VID_ANUBIS_ELECTRONIC
,
899 USB_PID_MSI_DIGI_VOX_MINI_II
) },
900 { USB_DEVICE(USB_VID_ANUBIS_ELECTRONIC
,
901 USB_PID_LIFEVIEW_TV_WALKER_TWIN_COLD
) },
902 { USB_DEVICE(USB_VID_ANUBIS_ELECTRONIC
,
903 USB_PID_LIFEVIEW_TV_WALKER_TWIN_WARM
) },
904 { USB_DEVICE(USB_VID_DPOSH
, USB_PID_DPOSH_M9206_COLD
) },
905 { USB_DEVICE(USB_VID_DPOSH
, USB_PID_DPOSH_M9206_WARM
) },
906 { USB_DEVICE(USB_VID_VISIONPLUS
, USB_PID_PINNACLE_PCTV310E
) },
907 { USB_DEVICE(USB_VID_AZUREWAVE
, USB_PID_TWINHAN_VP7049
) },
908 { } /* Terminating entry */
910 MODULE_DEVICE_TABLE (usb
, m920x_table
);
912 static struct dvb_usb_device_properties megasky_properties
= {
913 .caps
= DVB_USB_IS_AN_I2C_ADAPTER
,
915 .usb_ctrl
= DEVICE_SPECIFIC
,
916 .firmware
= "dvb-usb-megasky-02.fw",
917 .download_firmware
= m920x_firmware_download
,
921 .rc_map_table
= rc_map_megasky_table
,
922 .rc_map_size
= ARRAY_SIZE(rc_map_megasky_table
),
923 .rc_query
= m920x_rc_query
,
926 .size_of_priv
= sizeof(struct m920x_state
),
928 .identify_state
= m920x_identify_state
,
934 .caps
= DVB_USB_ADAP_HAS_PID_FILTER
|
935 DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF
,
937 .pid_filter_count
= 8,
938 .pid_filter
= m920x_pid_filter
,
939 .pid_filter_ctrl
= m920x_pid_filter_ctrl
,
941 .frontend_attach
= m920x_mt352_frontend_attach
,
942 .tuner_attach
= m920x_qt1010_tuner_attach
,
956 .i2c_algo
= &m920x_i2c_algo
,
958 .num_device_descs
= 1,
960 { "MSI Mega Sky 580 DVB-T USB2.0",
961 { &m920x_table
[0], NULL
},
967 static struct dvb_usb_device_properties digivox_mini_ii_properties
= {
968 .caps
= DVB_USB_IS_AN_I2C_ADAPTER
,
970 .usb_ctrl
= DEVICE_SPECIFIC
,
971 .firmware
= "dvb-usb-digivox-02.fw",
972 .download_firmware
= m920x_firmware_download
,
974 .size_of_priv
= sizeof(struct m920x_state
),
976 .identify_state
= m920x_identify_state
,
982 .caps
= DVB_USB_ADAP_HAS_PID_FILTER
|
983 DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF
,
985 .pid_filter_count
= 8,
986 .pid_filter
= m920x_pid_filter
,
987 .pid_filter_ctrl
= m920x_pid_filter_ctrl
,
989 .frontend_attach
= m920x_tda10046_08_frontend_attach
,
990 .tuner_attach
= m920x_tda8275_60_tuner_attach
,
998 .buffersize
= 0x4000,
1004 .i2c_algo
= &m920x_i2c_algo
,
1006 .num_device_descs
= 1,
1008 { "MSI DIGI VOX mini II DVB-T USB2.0",
1009 { &m920x_table
[1], NULL
},
1015 /* LifeView TV Walker Twin support by Nick Andrew <nick@nick-andrew.net>
1017 * LifeView TV Walker Twin has 1 x M9206, 2 x TDA10046, 2 x TDA8275A
1018 * TDA10046 #0 is located at i2c address 0x08
1019 * TDA10046 #1 is located at i2c address 0x0b
1020 * TDA8275A #0 is located at i2c address 0x60
1021 * TDA8275A #1 is located at i2c address 0x61
1023 static struct dvb_usb_device_properties tvwalkertwin_properties
= {
1024 .caps
= DVB_USB_IS_AN_I2C_ADAPTER
,
1026 .usb_ctrl
= DEVICE_SPECIFIC
,
1027 .firmware
= "dvb-usb-tvwalkert.fw",
1028 .download_firmware
= m920x_firmware_download
,
1032 .rc_map_table
= rc_map_tvwalkertwin_table
,
1033 .rc_map_size
= ARRAY_SIZE(rc_map_tvwalkertwin_table
),
1034 .rc_query
= m920x_rc_query
,
1037 .size_of_priv
= sizeof(struct m920x_state
),
1039 .identify_state
= m920x_identify_state
,
1045 .caps
= DVB_USB_ADAP_HAS_PID_FILTER
|
1046 DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF
,
1048 .pid_filter_count
= 8,
1049 .pid_filter
= m920x_pid_filter
,
1050 .pid_filter_ctrl
= m920x_pid_filter_ctrl
,
1052 .frontend_attach
= m920x_tda10046_08_frontend_attach
,
1053 .tuner_attach
= m920x_tda8275_60_tuner_attach
,
1069 .caps
= DVB_USB_ADAP_HAS_PID_FILTER
|
1070 DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF
,
1072 .pid_filter_count
= 8,
1073 .pid_filter
= m920x_pid_filter
,
1074 .pid_filter_ctrl
= m920x_pid_filter_ctrl
,
1076 .frontend_attach
= m920x_tda10046_0b_frontend_attach
,
1077 .tuner_attach
= m920x_tda8275_61_tuner_attach
,
1091 .i2c_algo
= &m920x_i2c_algo
,
1093 .num_device_descs
= 1,
1095 { .name
= "LifeView TV Walker Twin DVB-T USB2.0",
1096 .cold_ids
= { &m920x_table
[2], NULL
},
1097 .warm_ids
= { &m920x_table
[3], NULL
},
1102 static struct dvb_usb_device_properties dposh_properties
= {
1103 .caps
= DVB_USB_IS_AN_I2C_ADAPTER
,
1105 .usb_ctrl
= DEVICE_SPECIFIC
,
1106 .firmware
= "dvb-usb-dposh-01.fw",
1107 .download_firmware
= m920x_firmware_download
,
1109 .size_of_priv
= sizeof(struct m920x_state
),
1111 .identify_state
= m920x_identify_state
,
1116 /* Hardware pid filters don't work with this device/firmware */
1118 .frontend_attach
= m920x_mt352_frontend_attach
,
1119 .tuner_attach
= m920x_qt1010_tuner_attach
,
1133 .i2c_algo
= &m920x_i2c_algo
,
1135 .num_device_descs
= 1,
1137 { .name
= "Dposh DVB-T USB2.0",
1138 .cold_ids
= { &m920x_table
[4], NULL
},
1139 .warm_ids
= { &m920x_table
[5], NULL
},
1144 static struct dvb_usb_device_properties pinnacle_pctv310e_properties
= {
1145 .caps
= DVB_USB_IS_AN_I2C_ADAPTER
,
1147 .usb_ctrl
= DEVICE_SPECIFIC
,
1148 .download_firmware
= NULL
,
1152 .rc_map_table
= rc_map_pinnacle310e_table
,
1153 .rc_map_size
= ARRAY_SIZE(rc_map_pinnacle310e_table
),
1154 .rc_query
= m920x_rc_query
,
1157 .size_of_priv
= sizeof(struct m920x_state
),
1159 .identify_state
= m920x_identify_state
,
1165 .caps
= DVB_USB_ADAP_HAS_PID_FILTER
|
1166 DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF
,
1168 .pid_filter_count
= 8,
1169 .pid_filter
= m920x_pid_filter
,
1170 .pid_filter_ctrl
= m920x_pid_filter_ctrl
,
1172 .frontend_attach
= m920x_mt352_frontend_attach
,
1173 .tuner_attach
= m920x_fmd1216me_tuner_attach
,
1181 .framesperurb
= 128,
1189 .i2c_algo
= &m920x_i2c_algo
,
1191 .num_device_descs
= 1,
1193 { "Pinnacle PCTV 310e",
1194 { &m920x_table
[6], NULL
},
1200 static struct dvb_usb_device_properties vp7049_properties
= {
1201 .caps
= DVB_USB_IS_AN_I2C_ADAPTER
,
1203 .usb_ctrl
= DEVICE_SPECIFIC
,
1204 .firmware
= "dvb-usb-vp7049-0.95.fw",
1205 .download_firmware
= m920x_firmware_download
,
1209 .rc_codes
= RC_MAP_TWINHAN_VP1027_DVBS
,
1210 .rc_query
= m920x_rc_core_query
,
1211 .allowed_protos
= RC_BIT_UNKNOWN
,
1214 .size_of_priv
= sizeof(struct m920x_state
),
1216 .identify_state
= m920x_identify_state
,
1222 .caps
= DVB_USB_ADAP_HAS_PID_FILTER
|
1223 DVB_USB_ADAP_PID_FILTER_CAN_BE_TURNED_OFF
,
1225 .pid_filter_count
= 8,
1226 .pid_filter
= m920x_pid_filter
,
1227 .pid_filter_ctrl
= m920x_pid_filter_ctrl
,
1229 .frontend_attach
= m920x_mt352_frontend_attach_vp7049
,
1230 .tuner_attach
= m920x_mt2060_tuner_attach
,
1244 .i2c_algo
= &m920x_i2c_algo
,
1246 .num_device_descs
= 1,
1248 { "DTV-DVB UDTT7049",
1249 { &m920x_table
[7], NULL
},
1255 static struct usb_driver m920x_driver
= {
1256 .name
= "dvb_usb_m920x",
1257 .probe
= m920x_probe
,
1258 .disconnect
= dvb_usb_device_exit
,
1259 .id_table
= m920x_table
,
1262 module_usb_driver(m920x_driver
);
1264 MODULE_AUTHOR("Aapo Tahkola <aet@rasterburn.org>");
1265 MODULE_DESCRIPTION("DVB Driver for ULI M920x");
1266 MODULE_VERSION("0.1");
1267 MODULE_LICENSE("GPL");