2 * USB USBVISION Video device driver 0.9.10
6 * Copyright (c) 1999-2005 Joerg Heckenbach <joerg@heckenbach-aw.de>
8 * This module is part of usbvision driver project.
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 * Let's call the version 0.... until compression decoding is completely
27 * This driver is written by Jose Ignacio Gijon and Joerg Heckenbach.
28 * It was based on USB CPiA driver written by Peter Pregler,
29 * Scott J. Bertin and Johannes Erdfelt
30 * Ideas are taken from bttv driver by Ralph Metzler, Marcus Metzler &
31 * Gerd Knorr and zoran 36120/36125 driver by Pauline Middelink
32 * Updates to driver completed by Dwaine P. Garden
36 * - use submit_urb for all setup packets
37 * - Fix memory settings for nt1004. It is 4 times as big as the
39 * - Add audio on endpoint 3 for nt1004 chip.
40 * Seems impossible, needs a codec interface. Which one?
41 * - Clean up the driver.
42 * - optimization for performance.
43 * - Add Videotext capability (VBI). Working on it.....
44 * - Check audio for other devices
48 #include <linux/kernel.h>
49 #include <linux/list.h>
50 #include <linux/timer.h>
51 #include <linux/slab.h>
53 #include <linux/highmem.h>
54 #include <linux/vmalloc.h>
55 #include <linux/module.h>
56 #include <linux/init.h>
57 #include <linux/spinlock.h>
59 #include <linux/videodev2.h>
60 #include <linux/i2c.h>
62 #include <media/i2c/saa7115.h>
63 #include <media/v4l2-common.h>
64 #include <media/v4l2-ioctl.h>
65 #include <media/v4l2-event.h>
66 #include <media/tuner.h>
68 #include <linux/workqueue.h>
70 #include "usbvision.h"
71 #include "usbvision-cards.h"
73 #define DRIVER_AUTHOR \
74 "Joerg Heckenbach <joerg@heckenbach-aw.de>, " \
75 "Dwaine Garden <DwaineGarden@rogers.com>"
76 #define DRIVER_NAME "usbvision"
77 #define DRIVER_ALIAS "USBVision"
78 #define DRIVER_DESC "USBVision USB Video Device Driver for Linux"
79 #define DRIVER_LICENSE "GPL"
80 #define USBVISION_VERSION_STRING "0.9.11"
82 #define ENABLE_HEXDUMP 0 /* Enable if you need it */
85 #ifdef USBVISION_DEBUG
86 #define PDEBUG(level, fmt, args...) { \
87 if (video_debug & (level)) \
88 printk(KERN_INFO KBUILD_MODNAME ":[%s:%d] " fmt, \
89 __func__, __LINE__ , ## args); \
92 #define PDEBUG(level, fmt, args...) do {} while (0)
95 #define DBG_IO (1 << 1)
96 #define DBG_PROBE (1 << 2)
97 #define DBG_MMAP (1 << 3)
99 /* String operations */
100 #define rmspace(str) while (*str == ' ') str++;
101 #define goto2next(str) while (*str != ' ') str++; while (*str == ' ') str++;
104 /* sequential number of usbvision device */
105 static int usbvision_nr
;
107 static struct usbvision_v4l2_format_st usbvision_v4l2_format
[] = {
108 { 1, 1, 8, V4L2_PIX_FMT_GREY
, "GREY" },
109 { 1, 2, 16, V4L2_PIX_FMT_RGB565
, "RGB565" },
110 { 1, 3, 24, V4L2_PIX_FMT_RGB24
, "RGB24" },
111 { 1, 4, 32, V4L2_PIX_FMT_RGB32
, "RGB32" },
112 { 1, 2, 16, V4L2_PIX_FMT_RGB555
, "RGB555" },
113 { 1, 2, 16, V4L2_PIX_FMT_YUYV
, "YUV422" },
114 { 1, 2, 12, V4L2_PIX_FMT_YVU420
, "YUV420P" }, /* 1.5 ! */
115 { 1, 2, 16, V4L2_PIX_FMT_YUV422P
, "YUV422P" }
118 /* Function prototypes */
119 static void usbvision_release(struct usb_usbvision
*usbvision
);
121 /* Default initialization of device driver parameters */
122 /* Set the default format for ISOC endpoint */
123 static int isoc_mode
= ISOC_MODE_COMPRESS
;
124 /* Set the default Debug Mode of the device driver */
125 static int video_debug
;
126 /* Sequential Number of Video Device */
127 static int video_nr
= -1;
128 /* Sequential Number of Radio Device */
129 static int radio_nr
= -1;
131 /* Grab parameters for the device driver */
133 /* Showing parameters under SYSFS */
134 module_param(isoc_mode
, int, 0444);
135 module_param(video_debug
, int, 0444);
136 module_param(video_nr
, int, 0444);
137 module_param(radio_nr
, int, 0444);
139 MODULE_PARM_DESC(isoc_mode
, " Set the default format for ISOC endpoint. Default: 0x60 (Compression On)");
140 MODULE_PARM_DESC(video_debug
, " Set the default Debug Mode of the device driver. Default: 0 (Off)");
141 MODULE_PARM_DESC(video_nr
, "Set video device number (/dev/videoX). Default: -1 (autodetect)");
142 MODULE_PARM_DESC(radio_nr
, "Set radio device number (/dev/radioX). Default: -1 (autodetect)");
146 MODULE_AUTHOR(DRIVER_AUTHOR
);
147 MODULE_DESCRIPTION(DRIVER_DESC
);
148 MODULE_LICENSE(DRIVER_LICENSE
);
149 MODULE_VERSION(USBVISION_VERSION_STRING
);
150 MODULE_ALIAS(DRIVER_ALIAS
);
153 /*****************************************************************************/
154 /* SYSFS Code - Copied from the stv680.c usb module. */
155 /* Device information is located at /sys/class/video4linux/video0 */
156 /* Device parameters information is located at /sys/module/usbvision */
157 /* Device USB Information is located at */
158 /* /sys/bus/usb/drivers/USBVision Video Grabber */
159 /*****************************************************************************/
161 #define YES_NO(x) ((x) ? "Yes" : "No")
163 static inline struct usb_usbvision
*cd_to_usbvision(struct device
*cd
)
165 struct video_device
*vdev
= to_video_device(cd
);
166 return video_get_drvdata(vdev
);
169 static ssize_t
show_version(struct device
*cd
,
170 struct device_attribute
*attr
, char *buf
)
172 return sprintf(buf
, "%s\n", USBVISION_VERSION_STRING
);
174 static DEVICE_ATTR(version
, S_IRUGO
, show_version
, NULL
);
176 static ssize_t
show_model(struct device
*cd
,
177 struct device_attribute
*attr
, char *buf
)
179 struct video_device
*vdev
= to_video_device(cd
);
180 struct usb_usbvision
*usbvision
= video_get_drvdata(vdev
);
181 return sprintf(buf
, "%s\n",
182 usbvision_device_data
[usbvision
->dev_model
].model_string
);
184 static DEVICE_ATTR(model
, S_IRUGO
, show_model
, NULL
);
186 static ssize_t
show_hue(struct device
*cd
,
187 struct device_attribute
*attr
, char *buf
)
189 struct video_device
*vdev
= to_video_device(cd
);
190 struct usb_usbvision
*usbvision
= video_get_drvdata(vdev
);
191 s32 val
= v4l2_ctrl_g_ctrl(v4l2_ctrl_find(&usbvision
->hdl
,
194 return sprintf(buf
, "%d\n", val
);
196 static DEVICE_ATTR(hue
, S_IRUGO
, show_hue
, NULL
);
198 static ssize_t
show_contrast(struct device
*cd
,
199 struct device_attribute
*attr
, char *buf
)
201 struct video_device
*vdev
= to_video_device(cd
);
202 struct usb_usbvision
*usbvision
= video_get_drvdata(vdev
);
203 s32 val
= v4l2_ctrl_g_ctrl(v4l2_ctrl_find(&usbvision
->hdl
,
206 return sprintf(buf
, "%d\n", val
);
208 static DEVICE_ATTR(contrast
, S_IRUGO
, show_contrast
, NULL
);
210 static ssize_t
show_brightness(struct device
*cd
,
211 struct device_attribute
*attr
, char *buf
)
213 struct video_device
*vdev
= to_video_device(cd
);
214 struct usb_usbvision
*usbvision
= video_get_drvdata(vdev
);
215 s32 val
= v4l2_ctrl_g_ctrl(v4l2_ctrl_find(&usbvision
->hdl
,
216 V4L2_CID_BRIGHTNESS
));
218 return sprintf(buf
, "%d\n", val
);
220 static DEVICE_ATTR(brightness
, S_IRUGO
, show_brightness
, NULL
);
222 static ssize_t
show_saturation(struct device
*cd
,
223 struct device_attribute
*attr
, char *buf
)
225 struct video_device
*vdev
= to_video_device(cd
);
226 struct usb_usbvision
*usbvision
= video_get_drvdata(vdev
);
227 s32 val
= v4l2_ctrl_g_ctrl(v4l2_ctrl_find(&usbvision
->hdl
,
228 V4L2_CID_SATURATION
));
230 return sprintf(buf
, "%d\n", val
);
232 static DEVICE_ATTR(saturation
, S_IRUGO
, show_saturation
, NULL
);
234 static ssize_t
show_streaming(struct device
*cd
,
235 struct device_attribute
*attr
, char *buf
)
237 struct video_device
*vdev
= to_video_device(cd
);
238 struct usb_usbvision
*usbvision
= video_get_drvdata(vdev
);
239 return sprintf(buf
, "%s\n",
240 YES_NO(usbvision
->streaming
== stream_on
? 1 : 0));
242 static DEVICE_ATTR(streaming
, S_IRUGO
, show_streaming
, NULL
);
244 static ssize_t
show_compression(struct device
*cd
,
245 struct device_attribute
*attr
, char *buf
)
247 struct video_device
*vdev
= to_video_device(cd
);
248 struct usb_usbvision
*usbvision
= video_get_drvdata(vdev
);
249 return sprintf(buf
, "%s\n",
250 YES_NO(usbvision
->isoc_mode
== ISOC_MODE_COMPRESS
));
252 static DEVICE_ATTR(compression
, S_IRUGO
, show_compression
, NULL
);
254 static ssize_t
show_device_bridge(struct device
*cd
,
255 struct device_attribute
*attr
, char *buf
)
257 struct video_device
*vdev
= to_video_device(cd
);
258 struct usb_usbvision
*usbvision
= video_get_drvdata(vdev
);
259 return sprintf(buf
, "%d\n", usbvision
->bridge_type
);
261 static DEVICE_ATTR(bridge
, S_IRUGO
, show_device_bridge
, NULL
);
263 static void usbvision_create_sysfs(struct video_device
*vdev
)
270 res
= device_create_file(&vdev
->dev
, &dev_attr_version
);
273 res
= device_create_file(&vdev
->dev
, &dev_attr_model
);
276 res
= device_create_file(&vdev
->dev
, &dev_attr_hue
);
279 res
= device_create_file(&vdev
->dev
, &dev_attr_contrast
);
282 res
= device_create_file(&vdev
->dev
, &dev_attr_brightness
);
285 res
= device_create_file(&vdev
->dev
, &dev_attr_saturation
);
288 res
= device_create_file(&vdev
->dev
, &dev_attr_streaming
);
291 res
= device_create_file(&vdev
->dev
, &dev_attr_compression
);
294 res
= device_create_file(&vdev
->dev
, &dev_attr_bridge
);
299 dev_err(&vdev
->dev
, "%s error: %d\n", __func__
, res
);
302 static void usbvision_remove_sysfs(struct video_device
*vdev
)
305 device_remove_file(&vdev
->dev
, &dev_attr_version
);
306 device_remove_file(&vdev
->dev
, &dev_attr_model
);
307 device_remove_file(&vdev
->dev
, &dev_attr_hue
);
308 device_remove_file(&vdev
->dev
, &dev_attr_contrast
);
309 device_remove_file(&vdev
->dev
, &dev_attr_brightness
);
310 device_remove_file(&vdev
->dev
, &dev_attr_saturation
);
311 device_remove_file(&vdev
->dev
, &dev_attr_streaming
);
312 device_remove_file(&vdev
->dev
, &dev_attr_compression
);
313 device_remove_file(&vdev
->dev
, &dev_attr_bridge
);
320 * This is part of Video 4 Linux API. The driver can be opened by one
321 * client only (checks internal counter 'usbvision->user'). The procedure
322 * then allocates buffers needed for video processing.
325 static int usbvision_v4l2_open(struct file
*file
)
327 struct usb_usbvision
*usbvision
= video_drvdata(file
);
330 PDEBUG(DBG_IO
, "open");
332 if (mutex_lock_interruptible(&usbvision
->v4l2_lock
))
335 if (usbvision
->user
) {
338 err_code
= v4l2_fh_open(file
);
342 /* Allocate memory for the scratch ring buffer */
343 err_code
= usbvision_scratch_alloc(usbvision
);
344 if (isoc_mode
== ISOC_MODE_COMPRESS
) {
345 /* Allocate intermediate decompression buffers
347 err_code
= usbvision_decompress_alloc(usbvision
);
350 /* Deallocate all buffers if trouble */
351 usbvision_scratch_free(usbvision
);
352 usbvision_decompress_free(usbvision
);
356 /* If so far no errors then we shall start the camera */
358 /* Send init sequence only once, it's large! */
359 if (!usbvision
->initialized
) {
361 setup_ok
= usbvision_setup(usbvision
, isoc_mode
);
363 usbvision
->initialized
= 1;
369 usbvision_begin_streaming(usbvision
);
370 err_code
= usbvision_init_isoc(usbvision
);
371 /* device must be initialized before isoc transfer */
372 usbvision_muxsel(usbvision
, 0);
375 usbvision_empty_framequeues(usbvision
);
381 mutex_unlock(&usbvision
->v4l2_lock
);
383 PDEBUG(DBG_IO
, "success");
388 * usbvision_v4l2_close()
390 * This is part of Video 4 Linux API. The procedure
391 * stops streaming and deallocates all buffers that were earlier
392 * allocated in usbvision_v4l2_open().
395 static int usbvision_v4l2_close(struct file
*file
)
397 struct usb_usbvision
*usbvision
= video_drvdata(file
);
399 PDEBUG(DBG_IO
, "close");
401 mutex_lock(&usbvision
->v4l2_lock
);
402 usbvision_audio_off(usbvision
);
403 usbvision_restart_isoc(usbvision
);
404 usbvision_stop_isoc(usbvision
);
406 usbvision_decompress_free(usbvision
);
407 usbvision_frames_free(usbvision
);
408 usbvision_empty_framequeues(usbvision
);
409 usbvision_scratch_free(usbvision
);
412 mutex_unlock(&usbvision
->v4l2_lock
);
414 if (usbvision
->remove_pending
) {
415 printk(KERN_INFO
"%s: Final disconnect\n", __func__
);
416 usbvision_release(usbvision
);
420 PDEBUG(DBG_IO
, "success");
421 return v4l2_fh_release(file
);
428 * This is part of Video 4 Linux API. The procedure handles ioctl() calls.
431 #ifdef CONFIG_VIDEO_ADV_DEBUG
432 static int vidioc_g_register(struct file
*file
, void *priv
,
433 struct v4l2_dbg_register
*reg
)
435 struct usb_usbvision
*usbvision
= video_drvdata(file
);
438 /* NT100x has a 8-bit register space */
439 err_code
= usbvision_read_reg(usbvision
, reg
->reg
&0xff);
441 dev_err(&usbvision
->vdev
.dev
,
442 "%s: VIDIOC_DBG_G_REGISTER failed: error %d\n",
451 static int vidioc_s_register(struct file
*file
, void *priv
,
452 const struct v4l2_dbg_register
*reg
)
454 struct usb_usbvision
*usbvision
= video_drvdata(file
);
457 /* NT100x has a 8-bit register space */
458 err_code
= usbvision_write_reg(usbvision
, reg
->reg
& 0xff, reg
->val
);
460 dev_err(&usbvision
->vdev
.dev
,
461 "%s: VIDIOC_DBG_S_REGISTER failed: error %d\n",
469 static int vidioc_querycap(struct file
*file
, void *priv
,
470 struct v4l2_capability
*vc
)
472 struct usb_usbvision
*usbvision
= video_drvdata(file
);
473 struct video_device
*vdev
= video_devdata(file
);
475 strlcpy(vc
->driver
, "USBVision", sizeof(vc
->driver
));
477 usbvision_device_data
[usbvision
->dev_model
].model_string
,
479 usb_make_path(usbvision
->dev
, vc
->bus_info
, sizeof(vc
->bus_info
));
480 vc
->device_caps
= usbvision
->have_tuner
? V4L2_CAP_TUNER
: 0;
481 if (vdev
->vfl_type
== VFL_TYPE_GRABBER
)
482 vc
->device_caps
|= V4L2_CAP_VIDEO_CAPTURE
|
483 V4L2_CAP_READWRITE
| V4L2_CAP_STREAMING
;
485 vc
->device_caps
|= V4L2_CAP_RADIO
;
487 vc
->capabilities
= vc
->device_caps
| V4L2_CAP_VIDEO_CAPTURE
|
488 V4L2_CAP_READWRITE
| V4L2_CAP_STREAMING
| V4L2_CAP_DEVICE_CAPS
;
489 if (usbvision_device_data
[usbvision
->dev_model
].radio
)
490 vc
->capabilities
|= V4L2_CAP_RADIO
;
494 static int vidioc_enum_input(struct file
*file
, void *priv
,
495 struct v4l2_input
*vi
)
497 struct usb_usbvision
*usbvision
= video_drvdata(file
);
500 if (vi
->index
>= usbvision
->video_inputs
)
502 if (usbvision
->have_tuner
)
505 chan
= vi
->index
+ 1; /* skip Television string*/
507 /* Determine the requested input characteristics
508 specific for each usbvision card model */
511 if (usbvision_device_data
[usbvision
->dev_model
].video_channels
== 4) {
512 strcpy(vi
->name
, "White Video Input");
514 strcpy(vi
->name
, "Television");
515 vi
->type
= V4L2_INPUT_TYPE_TUNER
;
517 vi
->std
= USBVISION_NORMS
;
521 vi
->type
= V4L2_INPUT_TYPE_CAMERA
;
522 if (usbvision_device_data
[usbvision
->dev_model
].video_channels
== 4)
523 strcpy(vi
->name
, "Green Video Input");
525 strcpy(vi
->name
, "Composite Video Input");
526 vi
->std
= USBVISION_NORMS
;
529 vi
->type
= V4L2_INPUT_TYPE_CAMERA
;
530 if (usbvision_device_data
[usbvision
->dev_model
].video_channels
== 4)
531 strcpy(vi
->name
, "Yellow Video Input");
533 strcpy(vi
->name
, "S-Video Input");
534 vi
->std
= USBVISION_NORMS
;
537 vi
->type
= V4L2_INPUT_TYPE_CAMERA
;
538 strcpy(vi
->name
, "Red Video Input");
539 vi
->std
= USBVISION_NORMS
;
545 static int vidioc_g_input(struct file
*file
, void *priv
, unsigned int *input
)
547 struct usb_usbvision
*usbvision
= video_drvdata(file
);
549 *input
= usbvision
->ctl_input
;
553 static int vidioc_s_input(struct file
*file
, void *priv
, unsigned int input
)
555 struct usb_usbvision
*usbvision
= video_drvdata(file
);
557 if (input
>= usbvision
->video_inputs
)
560 usbvision_muxsel(usbvision
, input
);
561 usbvision_set_input(usbvision
);
562 usbvision_set_output(usbvision
,
564 usbvision
->curheight
);
568 static int vidioc_s_std(struct file
*file
, void *priv
, v4l2_std_id id
)
570 struct usb_usbvision
*usbvision
= video_drvdata(file
);
572 usbvision
->tvnorm_id
= id
;
574 call_all(usbvision
, video
, s_std
, usbvision
->tvnorm_id
);
575 /* propagate the change to the decoder */
576 usbvision_muxsel(usbvision
, usbvision
->ctl_input
);
581 static int vidioc_g_std(struct file
*file
, void *priv
, v4l2_std_id
*id
)
583 struct usb_usbvision
*usbvision
= video_drvdata(file
);
585 *id
= usbvision
->tvnorm_id
;
589 static int vidioc_g_tuner(struct file
*file
, void *priv
,
590 struct v4l2_tuner
*vt
)
592 struct usb_usbvision
*usbvision
= video_drvdata(file
);
594 if (vt
->index
) /* Only tuner 0 */
596 if (vt
->type
== V4L2_TUNER_RADIO
)
597 strcpy(vt
->name
, "Radio");
599 strcpy(vt
->name
, "Television");
601 /* Let clients fill in the remainder of this struct */
602 call_all(usbvision
, tuner
, g_tuner
, vt
);
607 static int vidioc_s_tuner(struct file
*file
, void *priv
,
608 const struct v4l2_tuner
*vt
)
610 struct usb_usbvision
*usbvision
= video_drvdata(file
);
612 /* Only one tuner for now */
615 /* let clients handle this */
616 call_all(usbvision
, tuner
, s_tuner
, vt
);
621 static int vidioc_g_frequency(struct file
*file
, void *priv
,
622 struct v4l2_frequency
*freq
)
624 struct usb_usbvision
*usbvision
= video_drvdata(file
);
629 if (freq
->type
== V4L2_TUNER_RADIO
)
630 freq
->frequency
= usbvision
->radio_freq
;
632 freq
->frequency
= usbvision
->tv_freq
;
637 static int vidioc_s_frequency(struct file
*file
, void *priv
,
638 const struct v4l2_frequency
*freq
)
640 struct usb_usbvision
*usbvision
= video_drvdata(file
);
641 struct v4l2_frequency new_freq
= *freq
;
643 /* Only one tuner for now */
647 call_all(usbvision
, tuner
, s_frequency
, freq
);
648 call_all(usbvision
, tuner
, g_frequency
, &new_freq
);
649 if (freq
->type
== V4L2_TUNER_RADIO
)
650 usbvision
->radio_freq
= new_freq
.frequency
;
652 usbvision
->tv_freq
= new_freq
.frequency
;
657 static int vidioc_reqbufs(struct file
*file
,
658 void *priv
, struct v4l2_requestbuffers
*vr
)
660 struct usb_usbvision
*usbvision
= video_drvdata(file
);
663 RESTRICT_TO_RANGE(vr
->count
, 1, USBVISION_NUMFRAMES
);
665 /* Check input validity:
666 the user must do a VIDEO CAPTURE and MMAP method. */
667 if (vr
->memory
!= V4L2_MEMORY_MMAP
)
670 if (usbvision
->streaming
== stream_on
) {
671 ret
= usbvision_stream_interrupt(usbvision
);
676 usbvision_frames_free(usbvision
);
677 usbvision_empty_framequeues(usbvision
);
678 vr
->count
= usbvision_frames_alloc(usbvision
, vr
->count
);
680 usbvision
->cur_frame
= NULL
;
685 static int vidioc_querybuf(struct file
*file
,
686 void *priv
, struct v4l2_buffer
*vb
)
688 struct usb_usbvision
*usbvision
= video_drvdata(file
);
689 struct usbvision_frame
*frame
;
691 /* FIXME : must control
692 that buffers are mapped (VIDIOC_REQBUFS has been called) */
693 if (vb
->index
>= usbvision
->num_frames
)
695 /* Updating the corresponding frame state */
696 vb
->flags
= V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC
;
697 frame
= &usbvision
->frame
[vb
->index
];
698 if (frame
->grabstate
>= frame_state_ready
)
699 vb
->flags
|= V4L2_BUF_FLAG_QUEUED
;
700 if (frame
->grabstate
>= frame_state_done
)
701 vb
->flags
|= V4L2_BUF_FLAG_DONE
;
702 if (frame
->grabstate
== frame_state_unused
)
703 vb
->flags
|= V4L2_BUF_FLAG_MAPPED
;
704 vb
->memory
= V4L2_MEMORY_MMAP
;
706 vb
->m
.offset
= vb
->index
* PAGE_ALIGN(usbvision
->max_frame_size
);
708 vb
->memory
= V4L2_MEMORY_MMAP
;
709 vb
->field
= V4L2_FIELD_NONE
;
710 vb
->length
= usbvision
->curwidth
*
711 usbvision
->curheight
*
712 usbvision
->palette
.bytes_per_pixel
;
713 vb
->timestamp
= usbvision
->frame
[vb
->index
].timestamp
;
714 vb
->sequence
= usbvision
->frame
[vb
->index
].sequence
;
718 static int vidioc_qbuf(struct file
*file
, void *priv
, struct v4l2_buffer
*vb
)
720 struct usb_usbvision
*usbvision
= video_drvdata(file
);
721 struct usbvision_frame
*frame
;
722 unsigned long lock_flags
;
724 /* FIXME : works only on VIDEO_CAPTURE MODE, MMAP. */
725 if (vb
->index
>= usbvision
->num_frames
)
728 frame
= &usbvision
->frame
[vb
->index
];
730 if (frame
->grabstate
!= frame_state_unused
)
733 /* Mark it as ready and enqueue frame */
734 frame
->grabstate
= frame_state_ready
;
735 frame
->scanstate
= scan_state_scanning
;
736 frame
->scanlength
= 0; /* Accumulated in usbvision_parse_data() */
738 vb
->flags
&= ~V4L2_BUF_FLAG_DONE
;
740 /* set v4l2_format index */
741 frame
->v4l2_format
= usbvision
->palette
;
743 spin_lock_irqsave(&usbvision
->queue_lock
, lock_flags
);
744 list_add_tail(&usbvision
->frame
[vb
->index
].frame
, &usbvision
->inqueue
);
745 spin_unlock_irqrestore(&usbvision
->queue_lock
, lock_flags
);
750 static int vidioc_dqbuf(struct file
*file
, void *priv
, struct v4l2_buffer
*vb
)
752 struct usb_usbvision
*usbvision
= video_drvdata(file
);
754 struct usbvision_frame
*f
;
755 unsigned long lock_flags
;
757 if (list_empty(&(usbvision
->outqueue
))) {
758 if (usbvision
->streaming
== stream_idle
)
760 ret
= wait_event_interruptible
761 (usbvision
->wait_frame
,
762 !list_empty(&(usbvision
->outqueue
)));
767 spin_lock_irqsave(&usbvision
->queue_lock
, lock_flags
);
768 f
= list_entry(usbvision
->outqueue
.next
,
769 struct usbvision_frame
, frame
);
770 list_del(usbvision
->outqueue
.next
);
771 spin_unlock_irqrestore(&usbvision
->queue_lock
, lock_flags
);
773 f
->grabstate
= frame_state_unused
;
775 vb
->memory
= V4L2_MEMORY_MMAP
;
776 vb
->flags
= V4L2_BUF_FLAG_MAPPED
|
777 V4L2_BUF_FLAG_QUEUED
|
779 V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC
;
780 vb
->index
= f
->index
;
781 vb
->sequence
= f
->sequence
;
782 vb
->timestamp
= f
->timestamp
;
783 vb
->field
= V4L2_FIELD_NONE
;
784 vb
->bytesused
= f
->scanlength
;
789 static int vidioc_streamon(struct file
*file
, void *priv
, enum v4l2_buf_type i
)
791 struct usb_usbvision
*usbvision
= video_drvdata(file
);
793 usbvision
->streaming
= stream_on
;
794 call_all(usbvision
, video
, s_stream
, 1);
799 static int vidioc_streamoff(struct file
*file
,
800 void *priv
, enum v4l2_buf_type type
)
802 struct usb_usbvision
*usbvision
= video_drvdata(file
);
804 if (type
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
)
807 if (usbvision
->streaming
== stream_on
) {
808 usbvision_stream_interrupt(usbvision
);
809 /* Stop all video streamings */
810 call_all(usbvision
, video
, s_stream
, 0);
812 usbvision_empty_framequeues(usbvision
);
817 static int vidioc_enum_fmt_vid_cap(struct file
*file
, void *priv
,
818 struct v4l2_fmtdesc
*vfd
)
820 if (vfd
->index
>= USBVISION_SUPPORTED_PALETTES
- 1)
822 strcpy(vfd
->description
, usbvision_v4l2_format
[vfd
->index
].desc
);
823 vfd
->pixelformat
= usbvision_v4l2_format
[vfd
->index
].format
;
827 static int vidioc_g_fmt_vid_cap(struct file
*file
, void *priv
,
828 struct v4l2_format
*vf
)
830 struct usb_usbvision
*usbvision
= video_drvdata(file
);
831 vf
->fmt
.pix
.width
= usbvision
->curwidth
;
832 vf
->fmt
.pix
.height
= usbvision
->curheight
;
833 vf
->fmt
.pix
.pixelformat
= usbvision
->palette
.format
;
834 vf
->fmt
.pix
.bytesperline
=
835 usbvision
->curwidth
* usbvision
->palette
.bytes_per_pixel
;
836 vf
->fmt
.pix
.sizeimage
= vf
->fmt
.pix
.bytesperline
* usbvision
->curheight
;
837 vf
->fmt
.pix
.colorspace
= V4L2_COLORSPACE_SMPTE170M
;
838 vf
->fmt
.pix
.field
= V4L2_FIELD_NONE
; /* Always progressive image */
843 static int vidioc_try_fmt_vid_cap(struct file
*file
, void *priv
,
844 struct v4l2_format
*vf
)
846 struct usb_usbvision
*usbvision
= video_drvdata(file
);
849 /* Find requested format in available ones */
850 for (format_idx
= 0; format_idx
< USBVISION_SUPPORTED_PALETTES
; format_idx
++) {
851 if (vf
->fmt
.pix
.pixelformat
==
852 usbvision_v4l2_format
[format_idx
].format
) {
853 usbvision
->palette
= usbvision_v4l2_format
[format_idx
];
858 if (format_idx
== USBVISION_SUPPORTED_PALETTES
)
860 RESTRICT_TO_RANGE(vf
->fmt
.pix
.width
, MIN_FRAME_WIDTH
, MAX_FRAME_WIDTH
);
861 RESTRICT_TO_RANGE(vf
->fmt
.pix
.height
, MIN_FRAME_HEIGHT
, MAX_FRAME_HEIGHT
);
863 vf
->fmt
.pix
.bytesperline
= vf
->fmt
.pix
.width
*
864 usbvision
->palette
.bytes_per_pixel
;
865 vf
->fmt
.pix
.sizeimage
= vf
->fmt
.pix
.bytesperline
*vf
->fmt
.pix
.height
;
866 vf
->fmt
.pix
.colorspace
= V4L2_COLORSPACE_SMPTE170M
;
867 vf
->fmt
.pix
.field
= V4L2_FIELD_NONE
; /* Always progressive image */
872 static int vidioc_s_fmt_vid_cap(struct file
*file
, void *priv
,
873 struct v4l2_format
*vf
)
875 struct usb_usbvision
*usbvision
= video_drvdata(file
);
878 ret
= vidioc_try_fmt_vid_cap(file
, priv
, vf
);
882 /* stop io in case it is already in progress */
883 if (usbvision
->streaming
== stream_on
) {
884 ret
= usbvision_stream_interrupt(usbvision
);
888 usbvision_frames_free(usbvision
);
889 usbvision_empty_framequeues(usbvision
);
891 usbvision
->cur_frame
= NULL
;
893 /* by now we are committed to the new data... */
894 usbvision_set_output(usbvision
, vf
->fmt
.pix
.width
, vf
->fmt
.pix
.height
);
899 static ssize_t
usbvision_read(struct file
*file
, char __user
*buf
,
900 size_t count
, loff_t
*ppos
)
902 struct usb_usbvision
*usbvision
= video_drvdata(file
);
903 int noblock
= file
->f_flags
& O_NONBLOCK
;
904 unsigned long lock_flags
;
906 struct usbvision_frame
*frame
;
908 PDEBUG(DBG_IO
, "%s: %ld bytes, noblock=%d", __func__
,
909 (unsigned long)count
, noblock
);
911 if (!USBVISION_IS_OPERATIONAL(usbvision
) || (buf
== NULL
))
914 /* This entry point is compatible with the mmap routines
915 so that a user can do either VIDIOC_QBUF/VIDIOC_DQBUF
916 to get frames or call read on the device. */
917 if (!usbvision
->num_frames
) {
918 /* First, allocate some frames to work with
919 if this has not been done with VIDIOC_REQBUF */
920 usbvision_frames_free(usbvision
);
921 usbvision_empty_framequeues(usbvision
);
922 usbvision_frames_alloc(usbvision
, USBVISION_NUMFRAMES
);
925 if (usbvision
->streaming
!= stream_on
) {
926 /* no stream is running, make it running ! */
927 usbvision
->streaming
= stream_on
;
928 call_all(usbvision
, video
, s_stream
, 1);
931 /* Then, enqueue as many frames as possible
932 (like a user of VIDIOC_QBUF would do) */
933 for (i
= 0; i
< usbvision
->num_frames
; i
++) {
934 frame
= &usbvision
->frame
[i
];
935 if (frame
->grabstate
== frame_state_unused
) {
936 /* Mark it as ready and enqueue frame */
937 frame
->grabstate
= frame_state_ready
;
938 frame
->scanstate
= scan_state_scanning
;
939 /* Accumulated in usbvision_parse_data() */
940 frame
->scanlength
= 0;
942 /* set v4l2_format index */
943 frame
->v4l2_format
= usbvision
->palette
;
945 spin_lock_irqsave(&usbvision
->queue_lock
, lock_flags
);
946 list_add_tail(&frame
->frame
, &usbvision
->inqueue
);
947 spin_unlock_irqrestore(&usbvision
->queue_lock
,
952 /* Then try to steal a frame (like a VIDIOC_DQBUF would do) */
953 if (list_empty(&(usbvision
->outqueue
))) {
957 ret
= wait_event_interruptible
958 (usbvision
->wait_frame
,
959 !list_empty(&(usbvision
->outqueue
)));
964 spin_lock_irqsave(&usbvision
->queue_lock
, lock_flags
);
965 frame
= list_entry(usbvision
->outqueue
.next
,
966 struct usbvision_frame
, frame
);
967 list_del(usbvision
->outqueue
.next
);
968 spin_unlock_irqrestore(&usbvision
->queue_lock
, lock_flags
);
970 /* An error returns an empty frame */
971 if (frame
->grabstate
== frame_state_error
) {
972 frame
->bytes_read
= 0;
976 PDEBUG(DBG_IO
, "%s: frmx=%d, bytes_read=%ld, scanlength=%ld",
978 frame
->index
, frame
->bytes_read
, frame
->scanlength
);
980 /* copy bytes to user space; we allow for partials reads */
981 if ((count
+ frame
->bytes_read
) > (unsigned long)frame
->scanlength
)
982 count
= frame
->scanlength
- frame
->bytes_read
;
984 if (copy_to_user(buf
, frame
->data
+ frame
->bytes_read
, count
))
987 frame
->bytes_read
+= count
;
988 PDEBUG(DBG_IO
, "%s: {copy} count used=%ld, new bytes_read=%ld",
990 (unsigned long)count
, frame
->bytes_read
);
995 * For now, forget the frame if it has not been read in one shot.
997 frame
->bytes_read
= 0;
999 /* Mark it as available to be used again. */
1000 frame
->grabstate
= frame_state_unused
;
1002 if (frame
->bytes_read
>= frame
->scanlength
) {
1003 /* All data has been read */
1004 frame
->bytes_read
= 0;
1006 /* Mark it as available to be used again. */
1007 frame
->grabstate
= frame_state_unused
;
1014 static ssize_t
usbvision_v4l2_read(struct file
*file
, char __user
*buf
,
1015 size_t count
, loff_t
*ppos
)
1017 struct usb_usbvision
*usbvision
= video_drvdata(file
);
1020 if (mutex_lock_interruptible(&usbvision
->v4l2_lock
))
1021 return -ERESTARTSYS
;
1022 res
= usbvision_read(file
, buf
, count
, ppos
);
1023 mutex_unlock(&usbvision
->v4l2_lock
);
1027 static int usbvision_mmap(struct file
*file
, struct vm_area_struct
*vma
)
1029 unsigned long size
= vma
->vm_end
- vma
->vm_start
,
1030 start
= vma
->vm_start
;
1033 struct usb_usbvision
*usbvision
= video_drvdata(file
);
1035 PDEBUG(DBG_MMAP
, "mmap");
1037 if (!USBVISION_IS_OPERATIONAL(usbvision
))
1040 if (!(vma
->vm_flags
& VM_WRITE
) ||
1041 size
!= PAGE_ALIGN(usbvision
->max_frame_size
)) {
1045 for (i
= 0; i
< usbvision
->num_frames
; i
++) {
1046 if (((PAGE_ALIGN(usbvision
->max_frame_size
)*i
) >> PAGE_SHIFT
) ==
1050 if (i
== usbvision
->num_frames
) {
1052 "mmap: user supplied mapping address is out of range");
1056 /* VM_IO is eventually going to replace PageReserved altogether */
1057 vma
->vm_flags
|= VM_IO
| VM_DONTEXPAND
| VM_DONTDUMP
;
1059 pos
= usbvision
->frame
[i
].data
;
1061 if (vm_insert_page(vma
, start
, vmalloc_to_page(pos
))) {
1062 PDEBUG(DBG_MMAP
, "mmap: vm_insert_page failed");
1073 static int usbvision_v4l2_mmap(struct file
*file
, struct vm_area_struct
*vma
)
1075 struct usb_usbvision
*usbvision
= video_drvdata(file
);
1078 if (mutex_lock_interruptible(&usbvision
->v4l2_lock
))
1079 return -ERESTARTSYS
;
1080 res
= usbvision_mmap(file
, vma
);
1081 mutex_unlock(&usbvision
->v4l2_lock
);
1086 * Here comes the stuff for radio on usbvision based devices
1089 static int usbvision_radio_open(struct file
*file
)
1091 struct usb_usbvision
*usbvision
= video_drvdata(file
);
1094 PDEBUG(DBG_IO
, "%s:", __func__
);
1096 if (mutex_lock_interruptible(&usbvision
->v4l2_lock
))
1097 return -ERESTARTSYS
;
1098 err_code
= v4l2_fh_open(file
);
1101 if (usbvision
->user
) {
1102 dev_err(&usbvision
->rdev
.dev
,
1103 "%s: Someone tried to open an already opened USBVision Radio!\n",
1107 /* Alternate interface 1 is is the biggest frame size */
1108 err_code
= usbvision_set_alternate(usbvision
);
1110 usbvision
->last_error
= err_code
;
1115 /* If so far no errors then we shall start the radio */
1116 usbvision
->radio
= 1;
1117 call_all(usbvision
, tuner
, s_radio
);
1118 usbvision_set_audio(usbvision
, USBVISION_AUDIO_RADIO
);
1122 mutex_unlock(&usbvision
->v4l2_lock
);
1127 static int usbvision_radio_close(struct file
*file
)
1129 struct usb_usbvision
*usbvision
= video_drvdata(file
);
1133 mutex_lock(&usbvision
->v4l2_lock
);
1134 /* Set packet size to 0 */
1135 usbvision
->iface_alt
= 0;
1136 usb_set_interface(usbvision
->dev
, usbvision
->iface
,
1137 usbvision
->iface_alt
);
1139 usbvision_audio_off(usbvision
);
1140 usbvision
->radio
= 0;
1142 mutex_unlock(&usbvision
->v4l2_lock
);
1144 if (usbvision
->remove_pending
) {
1145 printk(KERN_INFO
"%s: Final disconnect\n", __func__
);
1146 v4l2_fh_release(file
);
1147 usbvision_release(usbvision
);
1151 PDEBUG(DBG_IO
, "success");
1152 return v4l2_fh_release(file
);
1155 /* Video registration stuff */
1157 /* Video template */
1158 static const struct v4l2_file_operations usbvision_fops
= {
1159 .owner
= THIS_MODULE
,
1160 .open
= usbvision_v4l2_open
,
1161 .release
= usbvision_v4l2_close
,
1162 .read
= usbvision_v4l2_read
,
1163 .mmap
= usbvision_v4l2_mmap
,
1164 .unlocked_ioctl
= video_ioctl2
,
1167 static const struct v4l2_ioctl_ops usbvision_ioctl_ops
= {
1168 .vidioc_querycap
= vidioc_querycap
,
1169 .vidioc_enum_fmt_vid_cap
= vidioc_enum_fmt_vid_cap
,
1170 .vidioc_g_fmt_vid_cap
= vidioc_g_fmt_vid_cap
,
1171 .vidioc_try_fmt_vid_cap
= vidioc_try_fmt_vid_cap
,
1172 .vidioc_s_fmt_vid_cap
= vidioc_s_fmt_vid_cap
,
1173 .vidioc_reqbufs
= vidioc_reqbufs
,
1174 .vidioc_querybuf
= vidioc_querybuf
,
1175 .vidioc_qbuf
= vidioc_qbuf
,
1176 .vidioc_dqbuf
= vidioc_dqbuf
,
1177 .vidioc_s_std
= vidioc_s_std
,
1178 .vidioc_g_std
= vidioc_g_std
,
1179 .vidioc_enum_input
= vidioc_enum_input
,
1180 .vidioc_g_input
= vidioc_g_input
,
1181 .vidioc_s_input
= vidioc_s_input
,
1182 .vidioc_streamon
= vidioc_streamon
,
1183 .vidioc_streamoff
= vidioc_streamoff
,
1184 .vidioc_g_tuner
= vidioc_g_tuner
,
1185 .vidioc_s_tuner
= vidioc_s_tuner
,
1186 .vidioc_g_frequency
= vidioc_g_frequency
,
1187 .vidioc_s_frequency
= vidioc_s_frequency
,
1188 .vidioc_log_status
= v4l2_ctrl_log_status
,
1189 .vidioc_subscribe_event
= v4l2_ctrl_subscribe_event
,
1190 .vidioc_unsubscribe_event
= v4l2_event_unsubscribe
,
1191 #ifdef CONFIG_VIDEO_ADV_DEBUG
1192 .vidioc_g_register
= vidioc_g_register
,
1193 .vidioc_s_register
= vidioc_s_register
,
1197 static struct video_device usbvision_video_template
= {
1198 .fops
= &usbvision_fops
,
1199 .ioctl_ops
= &usbvision_ioctl_ops
,
1200 .name
= "usbvision-video",
1201 .release
= video_device_release_empty
,
1202 .tvnorms
= USBVISION_NORMS
,
1206 /* Radio template */
1207 static const struct v4l2_file_operations usbvision_radio_fops
= {
1208 .owner
= THIS_MODULE
,
1209 .open
= usbvision_radio_open
,
1210 .release
= usbvision_radio_close
,
1211 .poll
= v4l2_ctrl_poll
,
1212 .unlocked_ioctl
= video_ioctl2
,
1215 static const struct v4l2_ioctl_ops usbvision_radio_ioctl_ops
= {
1216 .vidioc_querycap
= vidioc_querycap
,
1217 .vidioc_g_tuner
= vidioc_g_tuner
,
1218 .vidioc_s_tuner
= vidioc_s_tuner
,
1219 .vidioc_g_frequency
= vidioc_g_frequency
,
1220 .vidioc_s_frequency
= vidioc_s_frequency
,
1221 .vidioc_log_status
= v4l2_ctrl_log_status
,
1222 .vidioc_subscribe_event
= v4l2_ctrl_subscribe_event
,
1223 .vidioc_unsubscribe_event
= v4l2_event_unsubscribe
,
1226 static struct video_device usbvision_radio_template
= {
1227 .fops
= &usbvision_radio_fops
,
1228 .name
= "usbvision-radio",
1229 .release
= video_device_release_empty
,
1230 .ioctl_ops
= &usbvision_radio_ioctl_ops
,
1234 static void usbvision_vdev_init(struct usb_usbvision
*usbvision
,
1235 struct video_device
*vdev
,
1236 const struct video_device
*vdev_template
,
1239 struct usb_device
*usb_dev
= usbvision
->dev
;
1241 if (usb_dev
== NULL
) {
1242 dev_err(&usbvision
->dev
->dev
,
1243 "%s: usbvision->dev is not set\n", __func__
);
1247 *vdev
= *vdev_template
;
1248 vdev
->lock
= &usbvision
->v4l2_lock
;
1249 vdev
->v4l2_dev
= &usbvision
->v4l2_dev
;
1250 snprintf(vdev
->name
, sizeof(vdev
->name
), "%s", name
);
1251 video_set_drvdata(vdev
, usbvision
);
1254 /* unregister video4linux devices */
1255 static void usbvision_unregister_video(struct usb_usbvision
*usbvision
)
1258 if (video_is_registered(&usbvision
->rdev
)) {
1259 PDEBUG(DBG_PROBE
, "unregister %s [v4l2]",
1260 video_device_node_name(&usbvision
->rdev
));
1261 video_unregister_device(&usbvision
->rdev
);
1265 if (video_is_registered(&usbvision
->vdev
)) {
1266 PDEBUG(DBG_PROBE
, "unregister %s [v4l2]",
1267 video_device_node_name(&usbvision
->vdev
));
1268 video_unregister_device(&usbvision
->vdev
);
1272 /* register video4linux devices */
1273 static int usbvision_register_video(struct usb_usbvision
*usbvision
)
1278 usbvision_vdev_init(usbvision
, &usbvision
->vdev
,
1279 &usbvision_video_template
, "USBVision Video");
1280 if (!usbvision
->have_tuner
) {
1281 v4l2_disable_ioctl(&usbvision
->vdev
, VIDIOC_G_FREQUENCY
);
1282 v4l2_disable_ioctl(&usbvision
->vdev
, VIDIOC_S_TUNER
);
1283 v4l2_disable_ioctl(&usbvision
->vdev
, VIDIOC_G_FREQUENCY
);
1284 v4l2_disable_ioctl(&usbvision
->vdev
, VIDIOC_S_TUNER
);
1286 if (video_register_device(&usbvision
->vdev
, VFL_TYPE_GRABBER
, video_nr
) < 0)
1288 printk(KERN_INFO
"USBVision[%d]: registered USBVision Video device %s [v4l2]\n",
1289 usbvision
->nr
, video_device_node_name(&usbvision
->vdev
));
1292 if (usbvision_device_data
[usbvision
->dev_model
].radio
) {
1293 /* usbvision has radio */
1294 usbvision_vdev_init(usbvision
, &usbvision
->rdev
,
1295 &usbvision_radio_template
, "USBVision Radio");
1296 if (video_register_device(&usbvision
->rdev
, VFL_TYPE_RADIO
, radio_nr
) < 0)
1298 printk(KERN_INFO
"USBVision[%d]: registered USBVision Radio device %s [v4l2]\n",
1299 usbvision
->nr
, video_device_node_name(&usbvision
->rdev
));
1305 dev_err(&usbvision
->dev
->dev
,
1306 "USBVision[%d]: video_register_device() failed\n",
1308 usbvision_unregister_video(usbvision
);
1315 * This code allocates the struct usb_usbvision.
1316 * It is filled with default values.
1318 * Returns NULL on error, a pointer to usb_usbvision else.
1321 static struct usb_usbvision
*usbvision_alloc(struct usb_device
*dev
,
1322 struct usb_interface
*intf
)
1324 struct usb_usbvision
*usbvision
;
1326 usbvision
= kzalloc(sizeof(struct usb_usbvision
), GFP_KERNEL
);
1327 if (usbvision
== NULL
)
1330 usbvision
->dev
= dev
;
1331 if (v4l2_device_register(&intf
->dev
, &usbvision
->v4l2_dev
))
1334 if (v4l2_ctrl_handler_init(&usbvision
->hdl
, 4))
1336 usbvision
->v4l2_dev
.ctrl_handler
= &usbvision
->hdl
;
1337 mutex_init(&usbvision
->v4l2_lock
);
1339 /* prepare control urb for control messages during interrupts */
1340 usbvision
->ctrl_urb
= usb_alloc_urb(USBVISION_URB_FRAMES
, GFP_KERNEL
);
1341 if (usbvision
->ctrl_urb
== NULL
)
1343 init_waitqueue_head(&usbvision
->ctrl_urb_wq
);
1348 v4l2_ctrl_handler_free(&usbvision
->hdl
);
1349 v4l2_device_unregister(&usbvision
->v4l2_dev
);
1356 * usbvision_release()
1358 * This code does final release of struct usb_usbvision. This happens
1359 * after the device is disconnected -and- all clients closed their files.
1362 static void usbvision_release(struct usb_usbvision
*usbvision
)
1364 PDEBUG(DBG_PROBE
, "");
1366 usbvision
->initialized
= 0;
1368 usbvision_remove_sysfs(&usbvision
->vdev
);
1369 usbvision_unregister_video(usbvision
);
1370 kfree(usbvision
->alt_max_pkt_size
);
1372 usb_free_urb(usbvision
->ctrl_urb
);
1374 v4l2_ctrl_handler_free(&usbvision
->hdl
);
1375 v4l2_device_unregister(&usbvision
->v4l2_dev
);
1378 PDEBUG(DBG_PROBE
, "success");
1382 /*********************** usb interface **********************************/
1384 static void usbvision_configure_video(struct usb_usbvision
*usbvision
)
1388 if (usbvision
== NULL
)
1391 model
= usbvision
->dev_model
;
1392 usbvision
->palette
= usbvision_v4l2_format
[2]; /* V4L2_PIX_FMT_RGB24; */
1394 if (usbvision_device_data
[usbvision
->dev_model
].vin_reg2_override
) {
1395 usbvision
->vin_reg2_preset
=
1396 usbvision_device_data
[usbvision
->dev_model
].vin_reg2
;
1398 usbvision
->vin_reg2_preset
= 0;
1401 usbvision
->tvnorm_id
= usbvision_device_data
[model
].video_norm
;
1402 usbvision
->video_inputs
= usbvision_device_data
[model
].video_channels
;
1403 usbvision
->ctl_input
= 0;
1404 usbvision
->radio_freq
= 87.5 * 16000;
1405 usbvision
->tv_freq
= 400 * 16;
1407 /* This should be here to make i2c clients to be able to register */
1408 /* first switch off audio */
1409 if (usbvision_device_data
[model
].audio_channels
> 0)
1410 usbvision_audio_off(usbvision
);
1411 /* and then power up the tuner */
1412 usbvision_power_on(usbvision
);
1413 usbvision_i2c_register(usbvision
);
1419 * This procedure queries device descriptor and accepts the interface
1420 * if it looks like USBVISION video device
1423 static int usbvision_probe(struct usb_interface
*intf
,
1424 const struct usb_device_id
*devid
)
1426 struct usb_device
*dev
= usb_get_dev(interface_to_usbdev(intf
));
1427 struct usb_interface
*uif
;
1428 __u8 ifnum
= intf
->altsetting
->desc
.bInterfaceNumber
;
1429 const struct usb_host_interface
*interface
;
1430 struct usb_usbvision
*usbvision
= NULL
;
1431 const struct usb_endpoint_descriptor
*endpoint
;
1434 PDEBUG(DBG_PROBE
, "VID=%#04x, PID=%#04x, ifnum=%u",
1435 dev
->descriptor
.idVendor
,
1436 dev
->descriptor
.idProduct
, ifnum
);
1438 model
= devid
->driver_info
;
1439 if (model
< 0 || model
>= usbvision_device_data_size
) {
1440 PDEBUG(DBG_PROBE
, "model out of bounds %d", model
);
1444 printk(KERN_INFO
"%s: %s found\n", __func__
,
1445 usbvision_device_data
[model
].model_string
);
1447 if (usbvision_device_data
[model
].interface
>= 0)
1448 interface
= &dev
->actconfig
->interface
[usbvision_device_data
[model
].interface
]->altsetting
[0];
1449 else if (ifnum
< dev
->actconfig
->desc
.bNumInterfaces
)
1450 interface
= &dev
->actconfig
->interface
[ifnum
]->altsetting
[0];
1452 dev_err(&intf
->dev
, "interface %d is invalid, max is %d\n",
1453 ifnum
, dev
->actconfig
->desc
.bNumInterfaces
- 1);
1458 if (interface
->desc
.bNumEndpoints
< 2) {
1459 dev_err(&intf
->dev
, "interface %d has %d endpoints, but must have minimum 2\n",
1460 ifnum
, interface
->desc
.bNumEndpoints
);
1464 endpoint
= &interface
->endpoint
[1].desc
;
1466 if (!usb_endpoint_xfer_isoc(endpoint
)) {
1467 dev_err(&intf
->dev
, "%s: interface %d. has non-ISO endpoint!\n",
1469 dev_err(&intf
->dev
, "%s: Endpoint attributes %d",
1470 __func__
, endpoint
->bmAttributes
);
1474 if (usb_endpoint_dir_out(endpoint
)) {
1475 dev_err(&intf
->dev
, "%s: interface %d. has ISO OUT endpoint!\n",
1481 usbvision
= usbvision_alloc(dev
, intf
);
1482 if (usbvision
== NULL
) {
1483 dev_err(&intf
->dev
, "%s: couldn't allocate USBVision struct\n", __func__
);
1488 if (dev
->descriptor
.bNumConfigurations
> 1)
1489 usbvision
->bridge_type
= BRIDGE_NT1004
;
1490 else if (model
== DAZZLE_DVC_90_REV_1_SECAM
)
1491 usbvision
->bridge_type
= BRIDGE_NT1005
;
1493 usbvision
->bridge_type
= BRIDGE_NT1003
;
1494 PDEBUG(DBG_PROBE
, "bridge_type %d", usbvision
->bridge_type
);
1496 /* compute alternate max packet sizes */
1497 uif
= dev
->actconfig
->interface
[0];
1499 usbvision
->num_alt
= uif
->num_altsetting
;
1500 PDEBUG(DBG_PROBE
, "Alternate settings: %i", usbvision
->num_alt
);
1501 usbvision
->alt_max_pkt_size
= kmalloc(32 * usbvision
->num_alt
, GFP_KERNEL
);
1502 if (usbvision
->alt_max_pkt_size
== NULL
) {
1503 dev_err(&intf
->dev
, "usbvision: out of memory!\n");
1508 for (i
= 0; i
< usbvision
->num_alt
; i
++) {
1509 u16 tmp
= le16_to_cpu(uif
->altsetting
[i
].endpoint
[1].desc
.
1511 usbvision
->alt_max_pkt_size
[i
] =
1512 (tmp
& 0x07ff) * (((tmp
& 0x1800) >> 11) + 1);
1513 PDEBUG(DBG_PROBE
, "Alternate setting %i, max size= %i", i
,
1514 usbvision
->alt_max_pkt_size
[i
]);
1518 usbvision
->nr
= usbvision_nr
++;
1520 spin_lock_init(&usbvision
->queue_lock
);
1521 init_waitqueue_head(&usbvision
->wait_frame
);
1522 init_waitqueue_head(&usbvision
->wait_stream
);
1524 usbvision
->have_tuner
= usbvision_device_data
[model
].tuner
;
1525 if (usbvision
->have_tuner
)
1526 usbvision
->tuner_type
= usbvision_device_data
[model
].tuner_type
;
1528 usbvision
->dev_model
= model
;
1529 usbvision
->remove_pending
= 0;
1530 usbvision
->iface
= ifnum
;
1531 usbvision
->iface_alt
= 0;
1532 usbvision
->video_endp
= endpoint
->bEndpointAddress
;
1533 usbvision
->isoc_packet_size
= 0;
1534 usbvision
->usb_bandwidth
= 0;
1535 usbvision
->user
= 0;
1536 usbvision
->streaming
= stream_off
;
1537 usbvision_configure_video(usbvision
);
1538 usbvision_register_video(usbvision
);
1540 usbvision_create_sysfs(&usbvision
->vdev
);
1542 PDEBUG(DBG_PROBE
, "success");
1546 usbvision_release(usbvision
);
1554 * usbvision_disconnect()
1556 * This procedure stops all driver activity, deallocates interface-private
1557 * structure (pointed by 'ptr') and after that driver should be removable
1558 * with no ill consequences.
1561 static void usbvision_disconnect(struct usb_interface
*intf
)
1563 struct usb_usbvision
*usbvision
= to_usbvision(usb_get_intfdata(intf
));
1565 PDEBUG(DBG_PROBE
, "");
1567 if (usbvision
== NULL
) {
1568 pr_err("%s: usb_get_intfdata() failed\n", __func__
);
1572 mutex_lock(&usbvision
->v4l2_lock
);
1574 /* At this time we ask to cancel outstanding URBs */
1575 usbvision_stop_isoc(usbvision
);
1577 v4l2_device_disconnect(&usbvision
->v4l2_dev
);
1578 usbvision_i2c_unregister(usbvision
);
1579 usbvision
->remove_pending
= 1; /* Now all ISO data will be ignored */
1581 usb_put_dev(usbvision
->dev
);
1582 usbvision
->dev
= NULL
; /* USB device is no more */
1584 mutex_unlock(&usbvision
->v4l2_lock
);
1586 if (usbvision
->user
) {
1587 printk(KERN_INFO
"%s: In use, disconnect pending\n",
1589 wake_up_interruptible(&usbvision
->wait_frame
);
1590 wake_up_interruptible(&usbvision
->wait_stream
);
1592 usbvision_release(usbvision
);
1595 PDEBUG(DBG_PROBE
, "success");
1598 static struct usb_driver usbvision_driver
= {
1599 .name
= "usbvision",
1600 .id_table
= usbvision_table
,
1601 .probe
= usbvision_probe
,
1602 .disconnect
= usbvision_disconnect
,
1608 * This code is run to initialize the driver.
1611 static int __init
usbvision_init(void)
1615 PDEBUG(DBG_PROBE
, "");
1617 PDEBUG(DBG_IO
, "IO debugging is enabled [video]");
1618 PDEBUG(DBG_PROBE
, "PROBE debugging is enabled [video]");
1619 PDEBUG(DBG_MMAP
, "MMAP debugging is enabled [video]");
1621 /* disable planar mode support unless compression enabled */
1622 if (isoc_mode
!= ISOC_MODE_COMPRESS
) {
1623 /* FIXME : not the right way to set supported flag */
1624 usbvision_v4l2_format
[6].supported
= 0; /* V4L2_PIX_FMT_YVU420 */
1625 usbvision_v4l2_format
[7].supported
= 0; /* V4L2_PIX_FMT_YUV422P */
1628 err_code
= usb_register(&usbvision_driver
);
1630 if (err_code
== 0) {
1631 printk(KERN_INFO DRIVER_DESC
" : " USBVISION_VERSION_STRING
"\n");
1632 PDEBUG(DBG_PROBE
, "success");
1637 static void __exit
usbvision_exit(void)
1639 PDEBUG(DBG_PROBE
, "");
1641 usb_deregister(&usbvision_driver
);
1642 PDEBUG(DBG_PROBE
, "success");
1645 module_init(usbvision_init
);
1646 module_exit(usbvision_exit
);