2 tm6000-cards.c - driver for TM5600/TM6000/TM6010 USB video capture devices
4 Copyright (C) 2006-2007 Mauro Carvalho Chehab <mchehab@infradead.org>
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation version 2
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 #include <linux/init.h>
21 #include <linux/module.h>
22 #include <linux/pci.h>
23 #include <linux/delay.h>
24 #include <linux/i2c.h>
25 #include <linux/usb.h>
26 #include <linux/version.h>
27 #include <media/v4l2-common.h>
28 #include <media/tuner.h>
29 #include <media/tvaudio.h>
30 #include <media/i2c-addr.h>
33 #include "tm6000-regs.h"
34 #include "tuner-xc2028.h"
37 #define TM6000_BOARD_UNKNOWN 0
38 #define TM5600_BOARD_GENERIC 1
39 #define TM6000_BOARD_GENERIC 2
40 #define TM6010_BOARD_GENERIC 3
41 #define TM5600_BOARD_10MOONS_UT821 4
42 #define TM5600_BOARD_10MOONS_UT330 5
43 #define TM6000_BOARD_ADSTECH_DUAL_TV 6
44 #define TM6000_BOARD_FREECOM_AND_SIMILAR 7
45 #define TM6000_BOARD_ADSTECH_MINI_DUAL_TV 8
46 #define TM6010_BOARD_HAUPPAUGE_900H 9
47 #define TM6010_BOARD_BEHOLD_WANDER 10
48 #define TM6010_BOARD_BEHOLD_VOYAGER 11
49 #define TM6010_BOARD_TERRATEC_CINERGY_HYBRID_XE 12
50 #define TM6010_BOARD_TWINHAN_TU501 13
52 #define TM6000_MAXBOARDS 16
53 static unsigned int card
[] = {[0 ... (TM6000_MAXBOARDS
- 1)] = UNSET
};
55 module_param_array(card
, int, NULL
, 0444);
57 static unsigned long tm6000_devused
;
63 struct tm6000_capabilities caps
;
65 enum tm6000_devtype type
; /* variant of the chipset */
66 int tuner_type
; /* type of the tuner */
67 int tuner_addr
; /* tuner address */
68 int demod_addr
; /* demodulator address */
70 struct tm6000_gpio gpio
;
73 struct tm6000_board tm6000_boards
[] = {
74 [TM6000_BOARD_UNKNOWN
] = {
75 .name
= "Unknown tm6000 video grabber",
80 .tuner_reset
= TM6000_GPIO_1
,
83 [TM5600_BOARD_GENERIC
] = {
84 .name
= "Generic tm5600 board",
86 .tuner_type
= TUNER_XC2028
,
87 .tuner_addr
= 0xc2 >> 1,
92 .tuner_reset
= TM6000_GPIO_1
,
95 [TM6000_BOARD_GENERIC
] = {
96 .name
= "Generic tm6000 board",
97 .tuner_type
= TUNER_XC2028
,
98 .tuner_addr
= 0xc2 >> 1,
104 .tuner_reset
= TM6000_GPIO_1
,
107 [TM6010_BOARD_GENERIC
] = {
108 .name
= "Generic tm6010 board",
110 .tuner_type
= TUNER_XC2028
,
111 .tuner_addr
= 0xc2 >> 1,
112 .demod_addr
= 0x1e >> 1,
121 .tuner_reset
= TM6010_GPIO_2
,
122 .tuner_on
= TM6010_GPIO_3
,
123 .demod_reset
= TM6010_GPIO_1
,
124 .demod_on
= TM6010_GPIO_4
,
125 .power_led
= TM6010_GPIO_7
,
126 .dvb_led
= TM6010_GPIO_5
,
130 [TM5600_BOARD_10MOONS_UT821
] = {
131 .name
= "10Moons UT 821",
132 .tuner_type
= TUNER_XC2028
,
134 .tuner_addr
= 0xc2 >> 1,
140 .tuner_reset
= TM6000_GPIO_1
,
143 [TM5600_BOARD_10MOONS_UT330
] = {
144 .name
= "10Moons UT 330",
145 .tuner_type
= TUNER_PHILIPS_FQ1216AME_MK4
,
146 .tuner_addr
= 0xc8 >> 1,
154 [TM6000_BOARD_ADSTECH_DUAL_TV
] = {
155 .name
= "ADSTECH Dual TV USB",
156 .tuner_type
= TUNER_XC2028
,
157 .tuner_addr
= 0xc8 >> 1,
166 [TM6000_BOARD_FREECOM_AND_SIMILAR
] = {
167 .name
= "Freecom Hybrid Stick / Moka DVB-T Receiver Dual",
168 .tuner_type
= TUNER_XC2028
, /* has a XC3028 */
169 .tuner_addr
= 0xc2 >> 1,
170 .demod_addr
= 0x1e >> 1,
179 .tuner_reset
= TM6000_GPIO_4
,
182 [TM6000_BOARD_ADSTECH_MINI_DUAL_TV
] = {
183 .name
= "ADSTECH Mini Dual TV USB",
184 .tuner_type
= TUNER_XC2028
, /* has a XC3028 */
185 .tuner_addr
= 0xc8 >> 1,
186 .demod_addr
= 0x1e >> 1,
194 .tuner_reset
= TM6000_GPIO_4
,
197 [TM6010_BOARD_HAUPPAUGE_900H
] = {
198 .name
= "Hauppauge WinTV HVR-900H / WinTV USB2-Stick",
199 .tuner_type
= TUNER_XC2028
, /* has a XC3028 */
200 .tuner_addr
= 0xc2 >> 1,
201 .demod_addr
= 0x1e >> 1,
211 .tuner_reset
= TM6010_GPIO_2
,
212 .tuner_on
= TM6010_GPIO_3
,
213 .demod_reset
= TM6010_GPIO_1
,
214 .demod_on
= TM6010_GPIO_4
,
215 .power_led
= TM6010_GPIO_7
,
216 .dvb_led
= TM6010_GPIO_5
,
220 [TM6010_BOARD_BEHOLD_WANDER
] = {
221 .name
= "Beholder Wander DVB-T/TV/FM USB2.0",
222 .tuner_type
= TUNER_XC5000
,
223 .tuner_addr
= 0xc2 >> 1,
224 .demod_addr
= 0x1e >> 1,
234 .tuner_reset
= TM6010_GPIO_0
,
235 .demod_reset
= TM6010_GPIO_1
,
236 .power_led
= TM6010_GPIO_6
,
239 [TM6010_BOARD_BEHOLD_VOYAGER
] = {
240 .name
= "Beholder Voyager TV/FM USB2.0",
241 .tuner_type
= TUNER_XC5000
,
242 .tuner_addr
= 0xc2 >> 1,
252 .tuner_reset
= TM6010_GPIO_0
,
253 .power_led
= TM6010_GPIO_6
,
256 [TM6010_BOARD_TERRATEC_CINERGY_HYBRID_XE
] = {
257 .name
= "Terratec Cinergy Hybrid XE / Cinergy Hybrid-Stick",
258 .tuner_type
= TUNER_XC2028
, /* has a XC3028 */
259 .tuner_addr
= 0xc2 >> 1,
260 .demod_addr
= 0x1e >> 1,
270 .tuner_reset
= TM6010_GPIO_2
,
271 .tuner_on
= TM6010_GPIO_3
,
272 .demod_reset
= TM6010_GPIO_1
,
273 .demod_on
= TM6010_GPIO_4
,
274 .power_led
= TM6010_GPIO_7
,
275 .dvb_led
= TM6010_GPIO_5
,
279 [TM6010_BOARD_TWINHAN_TU501
] = {
280 .name
= "Twinhan TU501(704D1)",
281 .tuner_type
= TUNER_XC2028
, /* has a XC3028 */
282 .tuner_addr
= 0xc2 >> 1,
283 .demod_addr
= 0x1e >> 1,
293 .tuner_reset
= TM6010_GPIO_2
,
294 .tuner_on
= TM6010_GPIO_3
,
295 .demod_reset
= TM6010_GPIO_1
,
296 .demod_on
= TM6010_GPIO_4
,
297 .power_led
= TM6010_GPIO_7
,
298 .dvb_led
= TM6010_GPIO_5
,
304 /* table of devices that work with this driver */
305 struct usb_device_id tm6000_id_table
[] = {
306 { USB_DEVICE(0x6000, 0x0001), .driver_info
= TM5600_BOARD_10MOONS_UT821
},
307 { USB_DEVICE(0x6000, 0x0002), .driver_info
= TM6010_BOARD_GENERIC
},
308 { USB_DEVICE(0x06e1, 0xf332), .driver_info
= TM6000_BOARD_ADSTECH_DUAL_TV
},
309 { USB_DEVICE(0x14aa, 0x0620), .driver_info
= TM6000_BOARD_FREECOM_AND_SIMILAR
},
310 { USB_DEVICE(0x06e1, 0xb339), .driver_info
= TM6000_BOARD_ADSTECH_MINI_DUAL_TV
},
311 { USB_DEVICE(0x2040, 0x6600), .driver_info
= TM6010_BOARD_HAUPPAUGE_900H
},
312 { USB_DEVICE(0x2040, 0x6601), .driver_info
= TM6010_BOARD_HAUPPAUGE_900H
},
313 { USB_DEVICE(0x2040, 0x6610), .driver_info
= TM6010_BOARD_HAUPPAUGE_900H
},
314 { USB_DEVICE(0x2040, 0x6611), .driver_info
= TM6010_BOARD_HAUPPAUGE_900H
},
315 { USB_DEVICE(0x6000, 0xdec0), .driver_info
= TM6010_BOARD_BEHOLD_WANDER
},
316 { USB_DEVICE(0x6000, 0xdec1), .driver_info
= TM6010_BOARD_BEHOLD_VOYAGER
},
317 { USB_DEVICE(0x0ccd, 0x0086), .driver_info
= TM6010_BOARD_TERRATEC_CINERGY_HYBRID_XE
},
318 { USB_DEVICE(0x0ccd, 0x00A5), .driver_info
= TM6010_BOARD_TERRATEC_CINERGY_HYBRID_XE
},
319 { USB_DEVICE(0x13d3, 0x3240), .driver_info
= TM6010_BOARD_TWINHAN_TU501
},
320 { USB_DEVICE(0x13d3, 0x3241), .driver_info
= TM6010_BOARD_TWINHAN_TU501
},
321 { USB_DEVICE(0x13d3, 0x3243), .driver_info
= TM6010_BOARD_TWINHAN_TU501
},
322 { USB_DEVICE(0x13d3, 0x3264), .driver_info
= TM6010_BOARD_TWINHAN_TU501
},
326 /* Tuner callback to provide the proper gpio changes needed for xc5000 */
327 int tm6000_xc5000_callback(void *ptr
, int component
, int command
, int arg
)
330 struct tm6000_core
*dev
= ptr
;
332 if (dev
->tuner_type
!= TUNER_XC5000
)
336 case XC5000_TUNER_RESET
:
337 tm6000_set_reg(dev
, REQ_03_SET_GET_MCU_PIN
,
338 dev
->gpio
.tuner_reset
, 0x01);
340 tm6000_set_reg(dev
, REQ_03_SET_GET_MCU_PIN
,
341 dev
->gpio
.tuner_reset
, 0x00);
343 tm6000_set_reg(dev
, REQ_03_SET_GET_MCU_PIN
,
344 dev
->gpio
.tuner_reset
, 0x01);
351 /* Tuner callback to provide the proper gpio changes needed for xc2028 */
353 int tm6000_tuner_callback(void *ptr
, int component
, int command
, int arg
)
356 struct tm6000_core
*dev
= ptr
;
358 if (dev
->tuner_type
!= TUNER_XC2028
)
362 case XC2028_RESET_CLK
:
363 tm6000_set_reg(dev
, REQ_04_EN_DISABLE_MCU_INT
,
366 rc
= tm6000_i2c_reset(dev
, 10);
368 case XC2028_TUNER_RESET
:
369 /* Reset codes during load firmware */
372 /* newer tuner can faster reset */
373 switch (dev
->model
) {
374 case TM5600_BOARD_10MOONS_UT821
:
375 tm6000_set_reg(dev
, REQ_03_SET_GET_MCU_PIN
,
376 dev
->gpio
.tuner_reset
, 0x01);
377 tm6000_set_reg(dev
, REQ_03_SET_GET_MCU_PIN
,
380 tm6000_set_reg(dev
, REQ_03_SET_GET_MCU_PIN
,
381 dev
->gpio
.tuner_reset
, 0x00);
382 tm6000_set_reg(dev
, REQ_03_SET_GET_MCU_PIN
,
385 tm6000_set_reg(dev
, REQ_03_SET_GET_MCU_PIN
,
386 dev
->gpio
.tuner_reset
, 0x01);
387 tm6000_set_reg(dev
, REQ_03_SET_GET_MCU_PIN
,
390 case TM6010_BOARD_HAUPPAUGE_900H
:
391 case TM6010_BOARD_TERRATEC_CINERGY_HYBRID_XE
:
392 case TM6010_BOARD_TWINHAN_TU501
:
393 tm6000_set_reg(dev
, REQ_03_SET_GET_MCU_PIN
,
394 dev
->gpio
.tuner_reset
, 0x01);
396 tm6000_set_reg(dev
, REQ_03_SET_GET_MCU_PIN
,
397 dev
->gpio
.tuner_reset
, 0x00);
399 tm6000_set_reg(dev
, REQ_03_SET_GET_MCU_PIN
,
400 dev
->gpio
.tuner_reset
, 0x01);
404 tm6000_set_reg(dev
, REQ_03_SET_GET_MCU_PIN
,
405 dev
->gpio
.tuner_reset
, 0x00);
407 tm6000_set_reg(dev
, REQ_03_SET_GET_MCU_PIN
,
408 dev
->gpio
.tuner_reset
, 0x01);
414 tm6000_set_reg(dev
, REQ_04_EN_DISABLE_MCU_INT
,
420 rc
= tm6000_i2c_reset(dev
, 100);
427 int tm6000_cards_setup(struct tm6000_core
*dev
)
432 * Board-specific initialization sequence. Handles all GPIO
433 * initialization sequences that are board-specific.
434 * Up to now, all found devices use GPIO1 and GPIO4 at the same way.
435 * Probably, they're all based on some reference device. Due to that,
436 * there's a common routine at the end to handle those GPIO's. Devices
437 * that use different pinups or init sequences can just return at
438 * the board-specific session.
440 switch (dev
->model
) {
441 case TM6010_BOARD_HAUPPAUGE_900H
:
442 case TM6010_BOARD_TERRATEC_CINERGY_HYBRID_XE
:
443 case TM6010_BOARD_TWINHAN_TU501
:
444 case TM6010_BOARD_GENERIC
:
445 /* Turn xceive 3028 on */
446 tm6000_set_reg(dev
, REQ_03_SET_GET_MCU_PIN
, dev
->gpio
.tuner_on
, 0x01);
448 /* Turn zarlink zl10353 on */
449 tm6000_set_reg(dev
, REQ_03_SET_GET_MCU_PIN
, dev
->gpio
.demod_on
, 0x00);
451 /* Reset zarlink zl10353 */
452 tm6000_set_reg(dev
, REQ_03_SET_GET_MCU_PIN
, dev
->gpio
.demod_reset
, 0x00);
454 tm6000_set_reg(dev
, REQ_03_SET_GET_MCU_PIN
, dev
->gpio
.demod_reset
, 0x01);
456 /* Turn zarlink zl10353 off */
457 tm6000_set_reg(dev
, REQ_03_SET_GET_MCU_PIN
, dev
->gpio
.demod_on
, 0x01);
460 tm6000_set_reg(dev
, REQ_03_SET_GET_MCU_PIN
, dev
->gpio
.ir
, 0x01);
462 /* Power led on (blue) */
463 tm6000_set_reg(dev
, REQ_03_SET_GET_MCU_PIN
, dev
->gpio
.power_led
, 0x00);
465 /* DVB led off (orange) */
466 tm6000_set_reg(dev
, REQ_03_SET_GET_MCU_PIN
, dev
->gpio
.dvb_led
, 0x01);
468 /* Turn zarlink zl10353 on */
469 tm6000_set_reg(dev
, REQ_03_SET_GET_MCU_PIN
, dev
->gpio
.demod_on
, 0x00);
472 case TM6010_BOARD_BEHOLD_WANDER
:
473 /* Power led on (blue) */
474 tm6000_set_reg(dev
, REQ_03_SET_GET_MCU_PIN
, dev
->gpio
.power_led
, 0x01);
476 /* Reset zarlink zl10353 */
477 tm6000_set_reg(dev
, REQ_03_SET_GET_MCU_PIN
, dev
->gpio
.demod_reset
, 0x00);
479 tm6000_set_reg(dev
, REQ_03_SET_GET_MCU_PIN
, dev
->gpio
.demod_reset
, 0x01);
482 case TM6010_BOARD_BEHOLD_VOYAGER
:
483 /* Power led on (blue) */
484 tm6000_set_reg(dev
, REQ_03_SET_GET_MCU_PIN
, dev
->gpio
.power_led
, 0x01);
492 * Default initialization. Most of the devices seem to use GPIO1
493 * and GPIO4.on the same way, so, this handles the common sequence
494 * used by most devices.
495 * If a device uses a different sequence or different GPIO pins for
496 * reset, just add the code at the board-specific part
499 if (dev
->gpio
.tuner_reset
) {
500 for (i
= 0; i
< 2; i
++) {
501 rc
= tm6000_set_reg(dev
, REQ_03_SET_GET_MCU_PIN
,
502 dev
->gpio
.tuner_reset
, 0x00);
504 printk(KERN_ERR
"Error %i doing tuner reset\n", rc
);
508 msleep(10); /* Just to be conservative */
509 rc
= tm6000_set_reg(dev
, REQ_03_SET_GET_MCU_PIN
,
510 dev
->gpio
.tuner_reset
, 0x01);
512 printk(KERN_ERR
"Error %i doing tuner reset\n", rc
);
518 rc
= tm6000_get_reg32(dev
, REQ_40_GET_VERSION
, 0, 0);
520 printk(KERN_DEBUG
"board=0x%08x\n", rc
);
524 printk(KERN_ERR
"Tuner reset is not configured\n");
533 static void tm6000_config_tuner(struct tm6000_core
*dev
)
535 struct tuner_setup tun_setup
;
537 /* Load tuner module */
538 v4l2_i2c_new_subdev(&dev
->v4l2_dev
, &dev
->i2c_adap
,
539 "tuner", "tuner", dev
->tuner_addr
, NULL
);
541 memset(&tun_setup
, 0, sizeof(tun_setup
));
542 tun_setup
.type
= dev
->tuner_type
;
543 tun_setup
.addr
= dev
->tuner_addr
;
545 tun_setup
.mode_mask
= 0;
546 if (dev
->caps
.has_tuner
)
547 tun_setup
.mode_mask
|= (T_ANALOG_TV
| T_RADIO
);
548 if (dev
->caps
.has_dvb
)
549 tun_setup
.mode_mask
|= T_DIGITAL_TV
;
551 switch (dev
->tuner_type
) {
553 tun_setup
.tuner_callback
= tm6000_tuner_callback
;
556 tun_setup
.tuner_callback
= tm6000_xc5000_callback
;
560 v4l2_device_call_all(&dev
->v4l2_dev
, 0, tuner
, s_type_addr
, &tun_setup
);
562 switch (dev
->tuner_type
) {
564 struct v4l2_priv_tun_config xc2028_cfg
;
565 struct xc2028_ctrl ctl
;
567 memset(&xc2028_cfg
, 0, sizeof(xc2028_cfg
));
568 memset(&ctl
, 0, sizeof(ctl
));
571 ctl
.read_not_reliable
= 0;
573 ctl
.demod
= XC3028_FE_ZARLINK456
;
576 xc2028_cfg
.tuner
= TUNER_XC2028
;
577 xc2028_cfg
.priv
= &ctl
;
579 switch (dev
->model
) {
580 case TM6010_BOARD_HAUPPAUGE_900H
:
581 case TM6010_BOARD_TERRATEC_CINERGY_HYBRID_XE
:
582 case TM6010_BOARD_TWINHAN_TU501
:
583 ctl
.fname
= "xc3028L-v36.fw";
586 if (dev
->dev_type
== TM6010
)
587 ctl
.fname
= "xc3028-v27.fw";
589 ctl
.fname
= "xc3028-v24.fw";
592 printk(KERN_INFO
"Setting firmware parameters for xc2028\n");
593 v4l2_device_call_all(&dev
->v4l2_dev
, 0, tuner
, s_config
,
600 struct v4l2_priv_tun_config xc5000_cfg
;
601 struct xc5000_config ctl
= {
602 .i2c_address
= dev
->tuner_addr
,
604 .radio_input
= XC5000_RADIO_FM1
,
607 xc5000_cfg
.tuner
= TUNER_XC5000
;
608 xc5000_cfg
.priv
= &ctl
;
611 v4l2_device_call_all(&dev
->v4l2_dev
, 0, tuner
, s_config
,
616 printk(KERN_INFO
"Unknown tuner type. Tuner is not configured.\n");
621 static int tm6000_init_dev(struct tm6000_core
*dev
)
623 struct v4l2_frequency f
;
626 mutex_init(&dev
->lock
);
628 mutex_lock(&dev
->lock
);
630 /* Initializa board-specific data */
631 dev
->dev_type
= tm6000_boards
[dev
->model
].type
;
632 dev
->tuner_type
= tm6000_boards
[dev
->model
].tuner_type
;
633 dev
->tuner_addr
= tm6000_boards
[dev
->model
].tuner_addr
;
635 dev
->gpio
= tm6000_boards
[dev
->model
].gpio
;
637 dev
->demod_addr
= tm6000_boards
[dev
->model
].demod_addr
;
639 dev
->caps
= tm6000_boards
[dev
->model
].caps
;
641 /* initialize hardware */
642 rc
= tm6000_init(dev
);
646 rc
= v4l2_device_register(&dev
->udev
->dev
, &dev
->v4l2_dev
);
650 /* register i2c bus */
651 rc
= tm6000_i2c_register(dev
);
655 /* Default values for STD and resolutions */
658 dev
->norm
= V4L2_STD_PAL_M
;
660 /* Configure tuner */
661 tm6000_config_tuner(dev
);
663 /* Set video standard */
664 v4l2_device_call_all(&dev
->v4l2_dev
, 0, core
, s_std
, dev
->norm
);
666 /* Set tuner frequency - also loads firmware on xc2028/xc3028 */
668 f
.type
= V4L2_TUNER_ANALOG_TV
;
669 f
.frequency
= 3092; /* 193.25 MHz */
670 dev
->freq
= f
.frequency
;
671 v4l2_device_call_all(&dev
->v4l2_dev
, 0, tuner
, s_frequency
, &f
);
673 if (dev
->caps
.has_tda9874
)
674 v4l2_i2c_new_subdev(&dev
->v4l2_dev
, &dev
->i2c_adap
,
675 "tvaudio", "tvaudio", I2C_ADDR_TDA9874
, NULL
);
677 /* register and initialize V4L2 */
678 rc
= tm6000_v4l2_register(dev
);
682 tm6000_add_into_devlist(dev
);
684 tm6000_init_extension(dev
);
686 if (dev
->caps
.has_dvb
) {
687 dev
->dvb
= kzalloc(sizeof(*(dev
->dvb
)), GFP_KERNEL
);
693 #ifdef CONFIG_VIDEO_TM6000_DVB
694 rc
= tm6000_dvb_register(dev
);
702 mutex_unlock(&dev
->lock
);
706 v4l2_device_unregister(&dev
->v4l2_dev
);
709 mutex_unlock(&dev
->lock
);
713 /* high bandwidth multiplier, as encoded in highspeed endpoint descriptors */
714 #define hb_mult(wMaxPacketSize) (1 + (((wMaxPacketSize) >> 11) & 0x03))
716 static void get_max_endpoint(struct usb_device
*udev
,
717 struct usb_host_interface
*alt
,
719 struct usb_host_endpoint
*curr_e
,
720 struct tm6000_endpoint
*tm_ep
)
722 u16 tmp
= le16_to_cpu(curr_e
->desc
.wMaxPacketSize
);
723 unsigned int size
= tmp
& 0x7ff;
725 if (udev
->speed
== USB_SPEED_HIGH
)
726 size
= size
* hb_mult (tmp
);
728 if (size
> tm_ep
->maxsize
) {
729 tm_ep
->endp
= curr_e
;
730 tm_ep
->maxsize
= size
;
731 tm_ep
->bInterfaceNumber
= alt
->desc
.bInterfaceNumber
;
732 tm_ep
->bAlternateSetting
= alt
->desc
.bAlternateSetting
;
734 printk(KERN_INFO
"tm6000: %s endpoint: 0x%02x (max size=%u bytes)\n",
735 msgtype
, curr_e
->desc
.bEndpointAddress
,
742 * checks for supported devices
744 static int tm6000_usb_probe(struct usb_interface
*interface
,
745 const struct usb_device_id
*id
)
747 struct usb_device
*usbdev
;
748 struct tm6000_core
*dev
= NULL
;
753 usbdev
= usb_get_dev(interface_to_usbdev(interface
));
755 /* Selects the proper interface */
756 rc
= usb_set_interface(usbdev
, 0, 1);
760 /* Check to see next free device and mark as used */
761 nr
= find_first_zero_bit(&tm6000_devused
, TM6000_MAXBOARDS
);
762 if (nr
>= TM6000_MAXBOARDS
) {
763 printk(KERN_ERR
"tm6000: Supports only %i tm60xx boards.\n", TM6000_MAXBOARDS
);
768 /* Create and initialize dev struct */
769 dev
= kzalloc(sizeof(*dev
), GFP_KERNEL
);
771 printk(KERN_ERR
"tm6000" ": out of memory!\n");
775 spin_lock_init(&dev
->slock
);
777 /* Increment usage count */
778 tm6000_devused
|= 1<<nr
;
779 snprintf(dev
->name
, 29, "tm6000 #%d", nr
);
781 dev
->model
= id
->driver_info
;
782 if ((card
[nr
] >= 0) && (card
[nr
] < ARRAY_SIZE(tm6000_boards
)))
783 dev
->model
= card
[nr
];
788 switch (usbdev
->speed
) {
792 case USB_SPEED_UNKNOWN
:
806 for (i
= 0; i
< interface
->num_altsetting
; i
++) {
809 for (ep
= 0; ep
< interface
->altsetting
[i
].desc
.bNumEndpoints
; ep
++) {
810 struct usb_host_endpoint
*e
;
813 e
= &interface
->altsetting
[i
].endpoint
[ep
];
815 dir_out
= ((e
->desc
.bEndpointAddress
&
816 USB_ENDPOINT_DIR_MASK
) == USB_DIR_OUT
);
818 printk(KERN_INFO
"tm6000: alt %d, interface %i, class %i\n",
820 interface
->altsetting
[i
].desc
.bInterfaceNumber
,
821 interface
->altsetting
[i
].desc
.bInterfaceClass
);
823 switch (e
->desc
.bmAttributes
) {
824 case USB_ENDPOINT_XFER_BULK
:
826 get_max_endpoint(usbdev
,
827 &interface
->altsetting
[i
],
831 get_max_endpoint(usbdev
,
832 &interface
->altsetting
[i
],
837 case USB_ENDPOINT_XFER_ISOC
:
839 get_max_endpoint(usbdev
,
840 &interface
->altsetting
[i
],
844 get_max_endpoint(usbdev
,
845 &interface
->altsetting
[i
],
855 printk(KERN_INFO
"tm6000: New video device @ %s Mbps (%04x:%04x, ifnum %d)\n",
857 le16_to_cpu(dev
->udev
->descriptor
.idVendor
),
858 le16_to_cpu(dev
->udev
->descriptor
.idProduct
),
859 interface
->altsetting
->desc
.bInterfaceNumber
);
861 /* check if the the device has the iso in endpoint at the correct place */
862 if (!dev
->isoc_in
.endp
) {
863 printk(KERN_ERR
"tm6000: probing error: no IN ISOC endpoint!\n");
869 /* save our data pointer in this interface device */
870 usb_set_intfdata(interface
, dev
);
872 printk(KERN_INFO
"tm6000: Found %s\n", tm6000_boards
[dev
->model
].name
);
874 rc
= tm6000_init_dev(dev
);
882 printk(KERN_ERR
"tm6000: Error %d while registering\n", rc
);
884 tm6000_devused
&= ~(1<<nr
);
892 * tm6000_usb_disconnect()
893 * called when the device gets diconencted
894 * video device will be unregistered on v4l2_close in case it is still open
896 static void tm6000_usb_disconnect(struct usb_interface
*interface
)
898 struct tm6000_core
*dev
= usb_get_intfdata(interface
);
899 usb_set_intfdata(interface
, NULL
);
904 printk(KERN_INFO
"tm6000: disconnecting %s\n", dev
->name
);
906 mutex_lock(&dev
->lock
);
908 #ifdef CONFIG_VIDEO_TM6000_DVB
910 tm6000_dvb_unregister(dev
);
915 if (dev
->gpio
.power_led
) {
916 switch (dev
->model
) {
917 case TM6010_BOARD_HAUPPAUGE_900H
:
918 case TM6010_BOARD_TERRATEC_CINERGY_HYBRID_XE
:
919 case TM6010_BOARD_TWINHAN_TU501
:
921 tm6000_set_reg(dev
, REQ_03_SET_GET_MCU_PIN
,
922 dev
->gpio
.power_led
, 0x01);
925 case TM6010_BOARD_BEHOLD_WANDER
:
926 case TM6010_BOARD_BEHOLD_VOYAGER
:
928 tm6000_set_reg(dev
, REQ_03_SET_GET_MCU_PIN
,
929 dev
->gpio
.power_led
, 0x00);
934 tm6000_v4l2_unregister(dev
);
936 tm6000_i2c_unregister(dev
);
938 v4l2_device_unregister(&dev
->v4l2_dev
);
940 dev
->state
|= DEV_DISCONNECTED
;
942 usb_put_dev(dev
->udev
);
944 tm6000_remove_from_devlist(dev
);
945 tm6000_close_extension(dev
);
947 mutex_unlock(&dev
->lock
);
951 static struct usb_driver tm6000_usb_driver
= {
953 .probe
= tm6000_usb_probe
,
954 .disconnect
= tm6000_usb_disconnect
,
955 .id_table
= tm6000_id_table
,
958 static int __init
tm6000_module_init(void)
962 printk(KERN_INFO
"tm6000" " v4l2 driver version %d.%d.%d loaded\n",
963 (TM6000_VERSION
>> 16) & 0xff,
964 (TM6000_VERSION
>> 8) & 0xff, TM6000_VERSION
& 0xff);
966 /* register this driver with the USB subsystem */
967 result
= usb_register(&tm6000_usb_driver
);
969 printk(KERN_ERR
"tm6000"
970 " usb_register failed. Error number %d.\n", result
);
975 static void __exit
tm6000_module_exit(void)
977 /* deregister at USB subsystem */
978 usb_deregister(&tm6000_usb_driver
);
981 module_init(tm6000_module_init
);
982 module_exit(tm6000_module_exit
);
984 MODULE_DESCRIPTION("Trident TVMaster TM5600/TM6000/TM6010 USB2 adapter");
985 MODULE_AUTHOR("Mauro Carvalho Chehab");
986 MODULE_LICENSE("GPL");