RT-AC56 3.0.0.4.374.37 core
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / drivers / media / video / usbvision / usbvision-video.c
blob2dda16c691587df040d7126a8754c0d959d604b2
1 /*
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
25 * implemented.
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
35 * TODO:
36 * - use submit_urb for all setup packets
37 * - Fix memory settings for nt1004. It is 4 times as big as the
38 * nt1003 memory.
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/version.h>
49 #include <linux/kernel.h>
50 #include <linux/list.h>
51 #include <linux/timer.h>
52 #include <linux/slab.h>
53 #include <linux/smp_lock.h>
54 #include <linux/mm.h>
55 #include <linux/highmem.h>
56 #include <linux/vmalloc.h>
57 #include <linux/module.h>
58 #include <linux/init.h>
59 #include <linux/spinlock.h>
60 #include <asm/io.h>
61 #include <linux/videodev2.h>
62 #include <linux/i2c.h>
64 #include <media/saa7115.h>
65 #include <media/v4l2-common.h>
66 #include <media/v4l2-ioctl.h>
67 #include <media/tuner.h>
69 #include <linux/workqueue.h>
71 #include "usbvision.h"
72 #include "usbvision-cards.h"
74 #define DRIVER_AUTHOR "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_DRIVER_VERSION_MAJOR 0
81 #define USBVISION_DRIVER_VERSION_MINOR 9
82 #define USBVISION_DRIVER_VERSION_PATCHLEVEL 10
83 #define USBVISION_DRIVER_VERSION KERNEL_VERSION(USBVISION_DRIVER_VERSION_MAJOR,\
84 USBVISION_DRIVER_VERSION_MINOR,\
85 USBVISION_DRIVER_VERSION_PATCHLEVEL)
86 #define USBVISION_VERSION_STRING __stringify(USBVISION_DRIVER_VERSION_MAJOR)\
87 "." __stringify(USBVISION_DRIVER_VERSION_MINOR)\
88 "." __stringify(USBVISION_DRIVER_VERSION_PATCHLEVEL)
90 #define ENABLE_HEXDUMP 0 /* Enable if you need it */
93 #ifdef USBVISION_DEBUG
94 #define PDEBUG(level, fmt, args...) { \
95 if (video_debug & (level)) \
96 printk(KERN_INFO KBUILD_MODNAME ":[%s:%d] " fmt, \
97 __func__, __LINE__ , ## args); \
99 #else
100 #define PDEBUG(level, fmt, args...) do {} while(0)
101 #endif
103 #define DBG_IO 1<<1
104 #define DBG_PROBE 1<<2
105 #define DBG_MMAP 1<<3
107 //String operations
108 #define rmspace(str) while(*str==' ') str++;
109 #define goto2next(str) while(*str!=' ') str++; while(*str==' ') str++;
112 /* sequential number of usbvision device */
113 static int usbvision_nr;
115 static struct usbvision_v4l2_format_st usbvision_v4l2_format[] = {
116 { 1, 1, 8, V4L2_PIX_FMT_GREY , "GREY" },
117 { 1, 2, 16, V4L2_PIX_FMT_RGB565 , "RGB565" },
118 { 1, 3, 24, V4L2_PIX_FMT_RGB24 , "RGB24" },
119 { 1, 4, 32, V4L2_PIX_FMT_RGB32 , "RGB32" },
120 { 1, 2, 16, V4L2_PIX_FMT_RGB555 , "RGB555" },
121 { 1, 2, 16, V4L2_PIX_FMT_YUYV , "YUV422" },
122 { 1, 2, 12, V4L2_PIX_FMT_YVU420 , "YUV420P" }, // 1.5 !
123 { 1, 2, 16, V4L2_PIX_FMT_YUV422P , "YUV422P" }
126 /* Function prototypes */
127 static void usbvision_release(struct usb_usbvision *usbvision);
129 /* Default initialization of device driver parameters */
130 /* Set the default format for ISOC endpoint */
131 static int isocMode = ISOC_MODE_COMPRESS;
132 /* Set the default Debug Mode of the device driver */
133 static int video_debug;
134 /* Set the default device to power on at startup */
135 static int PowerOnAtOpen = 1;
136 /* Sequential Number of Video Device */
137 static int video_nr = -1;
138 /* Sequential Number of Radio Device */
139 static int radio_nr = -1;
141 /* Grab parameters for the device driver */
143 /* Showing parameters under SYSFS */
144 module_param(isocMode, int, 0444);
145 module_param(video_debug, int, 0444);
146 module_param(PowerOnAtOpen, int, 0444);
147 module_param(video_nr, int, 0444);
148 module_param(radio_nr, int, 0444);
150 MODULE_PARM_DESC(isocMode, " Set the default format for ISOC endpoint. Default: 0x60 (Compression On)");
151 MODULE_PARM_DESC(video_debug, " Set the default Debug Mode of the device driver. Default: 0 (Off)");
152 MODULE_PARM_DESC(PowerOnAtOpen, " Set the default device to power on when device is opened. Default: 1 (On)");
153 MODULE_PARM_DESC(video_nr, "Set video device number (/dev/videoX). Default: -1 (autodetect)");
154 MODULE_PARM_DESC(radio_nr, "Set radio device number (/dev/radioX). Default: -1 (autodetect)");
157 // Misc stuff
158 MODULE_AUTHOR(DRIVER_AUTHOR);
159 MODULE_DESCRIPTION(DRIVER_DESC);
160 MODULE_LICENSE(DRIVER_LICENSE);
161 MODULE_VERSION(USBVISION_VERSION_STRING);
162 MODULE_ALIAS(DRIVER_ALIAS);
165 /*****************************************************************************/
166 /* SYSFS Code - Copied from the stv680.c usb module. */
167 /* Device information is located at /sys/class/video4linux/video0 */
168 /* Device parameters information is located at /sys/module/usbvision */
169 /* Device USB Information is located at */
170 /* /sys/bus/usb/drivers/USBVision Video Grabber */
171 /*****************************************************************************/
173 #define YES_NO(x) ((x) ? "Yes" : "No")
175 static inline struct usb_usbvision *cd_to_usbvision(struct device *cd)
177 struct video_device *vdev =
178 container_of(cd, struct video_device, dev);
179 return video_get_drvdata(vdev);
182 static ssize_t show_version(struct device *cd,
183 struct device_attribute *attr, char *buf)
185 return sprintf(buf, "%s\n", USBVISION_VERSION_STRING);
187 static DEVICE_ATTR(version, S_IRUGO, show_version, NULL);
189 static ssize_t show_model(struct device *cd,
190 struct device_attribute *attr, char *buf)
192 struct video_device *vdev =
193 container_of(cd, struct video_device, dev);
194 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
195 return sprintf(buf, "%s\n",
196 usbvision_device_data[usbvision->DevModel].ModelString);
198 static DEVICE_ATTR(model, S_IRUGO, show_model, NULL);
200 static ssize_t show_hue(struct device *cd,
201 struct device_attribute *attr, char *buf)
203 struct video_device *vdev =
204 container_of(cd, struct video_device, dev);
205 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
206 struct v4l2_control ctrl;
207 ctrl.id = V4L2_CID_HUE;
208 ctrl.value = 0;
209 if(usbvision->user)
210 call_all(usbvision, core, g_ctrl, &ctrl);
211 return sprintf(buf, "%d\n", ctrl.value);
213 static DEVICE_ATTR(hue, S_IRUGO, show_hue, NULL);
215 static ssize_t show_contrast(struct device *cd,
216 struct device_attribute *attr, char *buf)
218 struct video_device *vdev =
219 container_of(cd, struct video_device, dev);
220 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
221 struct v4l2_control ctrl;
222 ctrl.id = V4L2_CID_CONTRAST;
223 ctrl.value = 0;
224 if(usbvision->user)
225 call_all(usbvision, core, g_ctrl, &ctrl);
226 return sprintf(buf, "%d\n", ctrl.value);
228 static DEVICE_ATTR(contrast, S_IRUGO, show_contrast, NULL);
230 static ssize_t show_brightness(struct device *cd,
231 struct device_attribute *attr, char *buf)
233 struct video_device *vdev =
234 container_of(cd, struct video_device, dev);
235 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
236 struct v4l2_control ctrl;
237 ctrl.id = V4L2_CID_BRIGHTNESS;
238 ctrl.value = 0;
239 if(usbvision->user)
240 call_all(usbvision, core, g_ctrl, &ctrl);
241 return sprintf(buf, "%d\n", ctrl.value);
243 static DEVICE_ATTR(brightness, S_IRUGO, show_brightness, NULL);
245 static ssize_t show_saturation(struct device *cd,
246 struct device_attribute *attr, char *buf)
248 struct video_device *vdev =
249 container_of(cd, struct video_device, dev);
250 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
251 struct v4l2_control ctrl;
252 ctrl.id = V4L2_CID_SATURATION;
253 ctrl.value = 0;
254 if(usbvision->user)
255 call_all(usbvision, core, g_ctrl, &ctrl);
256 return sprintf(buf, "%d\n", ctrl.value);
258 static DEVICE_ATTR(saturation, S_IRUGO, show_saturation, NULL);
260 static ssize_t show_streaming(struct device *cd,
261 struct device_attribute *attr, char *buf)
263 struct video_device *vdev =
264 container_of(cd, struct video_device, dev);
265 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
266 return sprintf(buf, "%s\n",
267 YES_NO(usbvision->streaming==Stream_On?1:0));
269 static DEVICE_ATTR(streaming, S_IRUGO, show_streaming, NULL);
271 static ssize_t show_compression(struct device *cd,
272 struct device_attribute *attr, char *buf)
274 struct video_device *vdev =
275 container_of(cd, struct video_device, dev);
276 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
277 return sprintf(buf, "%s\n",
278 YES_NO(usbvision->isocMode==ISOC_MODE_COMPRESS));
280 static DEVICE_ATTR(compression, S_IRUGO, show_compression, NULL);
282 static ssize_t show_device_bridge(struct device *cd,
283 struct device_attribute *attr, char *buf)
285 struct video_device *vdev =
286 container_of(cd, struct video_device, dev);
287 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
288 return sprintf(buf, "%d\n", usbvision->bridgeType);
290 static DEVICE_ATTR(bridge, S_IRUGO, show_device_bridge, NULL);
292 static void usbvision_create_sysfs(struct video_device *vdev)
294 int res;
295 if (!vdev)
296 return;
297 do {
298 res = device_create_file(&vdev->dev, &dev_attr_version);
299 if (res<0)
300 break;
301 res = device_create_file(&vdev->dev, &dev_attr_model);
302 if (res<0)
303 break;
304 res = device_create_file(&vdev->dev, &dev_attr_hue);
305 if (res<0)
306 break;
307 res = device_create_file(&vdev->dev, &dev_attr_contrast);
308 if (res<0)
309 break;
310 res = device_create_file(&vdev->dev, &dev_attr_brightness);
311 if (res<0)
312 break;
313 res = device_create_file(&vdev->dev, &dev_attr_saturation);
314 if (res<0)
315 break;
316 res = device_create_file(&vdev->dev, &dev_attr_streaming);
317 if (res<0)
318 break;
319 res = device_create_file(&vdev->dev, &dev_attr_compression);
320 if (res<0)
321 break;
322 res = device_create_file(&vdev->dev, &dev_attr_bridge);
323 if (res>=0)
324 return;
325 } while (0);
327 dev_err(&vdev->dev, "%s error: %d\n", __func__, res);
330 static void usbvision_remove_sysfs(struct video_device *vdev)
332 if (vdev) {
333 device_remove_file(&vdev->dev, &dev_attr_version);
334 device_remove_file(&vdev->dev, &dev_attr_model);
335 device_remove_file(&vdev->dev, &dev_attr_hue);
336 device_remove_file(&vdev->dev, &dev_attr_contrast);
337 device_remove_file(&vdev->dev, &dev_attr_brightness);
338 device_remove_file(&vdev->dev, &dev_attr_saturation);
339 device_remove_file(&vdev->dev, &dev_attr_streaming);
340 device_remove_file(&vdev->dev, &dev_attr_compression);
341 device_remove_file(&vdev->dev, &dev_attr_bridge);
346 * usbvision_open()
348 * This is part of Video 4 Linux API. The driver can be opened by one
349 * client only (checks internal counter 'usbvision->user'). The procedure
350 * then allocates buffers needed for video processing.
353 static int usbvision_v4l2_open(struct file *file)
355 struct usb_usbvision *usbvision = video_drvdata(file);
356 int errCode = 0;
358 PDEBUG(DBG_IO, "open");
360 lock_kernel();
361 usbvision_reset_powerOffTimer(usbvision);
363 if (usbvision->user)
364 errCode = -EBUSY;
365 else {
366 /* Allocate memory for the scratch ring buffer */
367 errCode = usbvision_scratch_alloc(usbvision);
368 if (isocMode==ISOC_MODE_COMPRESS) {
369 /* Allocate intermediate decompression buffers
370 only if needed */
371 errCode = usbvision_decompress_alloc(usbvision);
373 if (errCode) {
374 /* Deallocate all buffers if trouble */
375 usbvision_scratch_free(usbvision);
376 usbvision_decompress_free(usbvision);
380 /* If so far no errors then we shall start the camera */
381 if (!errCode) {
382 mutex_lock(&usbvision->lock);
383 if (usbvision->power == 0) {
384 usbvision_power_on(usbvision);
385 usbvision_i2c_register(usbvision);
388 /* Send init sequence only once, it's large! */
389 if (!usbvision->initialized) {
390 int setup_ok = 0;
391 setup_ok = usbvision_setup(usbvision,isocMode);
392 if (setup_ok)
393 usbvision->initialized = 1;
394 else
395 errCode = -EBUSY;
398 if (!errCode) {
399 usbvision_begin_streaming(usbvision);
400 errCode = usbvision_init_isoc(usbvision);
401 /* device must be initialized before isoc transfer */
402 usbvision_muxsel(usbvision,0);
403 usbvision->user++;
404 } else {
405 if (PowerOnAtOpen) {
406 usbvision_i2c_unregister(usbvision);
407 usbvision_power_off(usbvision);
408 usbvision->initialized = 0;
411 mutex_unlock(&usbvision->lock);
414 /* prepare queues */
415 usbvision_empty_framequeues(usbvision);
417 PDEBUG(DBG_IO, "success");
418 unlock_kernel();
419 return errCode;
423 * usbvision_v4l2_close()
425 * This is part of Video 4 Linux API. The procedure
426 * stops streaming and deallocates all buffers that were earlier
427 * allocated in usbvision_v4l2_open().
430 static int usbvision_v4l2_close(struct file *file)
432 struct usb_usbvision *usbvision = video_drvdata(file);
434 PDEBUG(DBG_IO, "close");
435 mutex_lock(&usbvision->lock);
437 usbvision_audio_off(usbvision);
438 usbvision_restart_isoc(usbvision);
439 usbvision_stop_isoc(usbvision);
441 usbvision_decompress_free(usbvision);
442 usbvision_frames_free(usbvision);
443 usbvision_empty_framequeues(usbvision);
444 usbvision_scratch_free(usbvision);
446 usbvision->user--;
448 if (PowerOnAtOpen) {
449 /* power off in a little while
450 to avoid off/on every close/open short sequences */
451 usbvision_set_powerOffTimer(usbvision);
452 usbvision->initialized = 0;
455 mutex_unlock(&usbvision->lock);
457 if (usbvision->remove_pending) {
458 printk(KERN_INFO "%s: Final disconnect\n", __func__);
459 usbvision_release(usbvision);
462 PDEBUG(DBG_IO, "success");
463 return 0;
468 * usbvision_ioctl()
470 * This is part of Video 4 Linux API. The procedure handles ioctl() calls.
473 #ifdef CONFIG_VIDEO_ADV_DEBUG
474 static int vidioc_g_register (struct file *file, void *priv,
475 struct v4l2_dbg_register *reg)
477 struct usb_usbvision *usbvision = video_drvdata(file);
478 int errCode;
480 if (!v4l2_chip_match_host(&reg->match))
481 return -EINVAL;
482 /* NT100x has a 8-bit register space */
483 errCode = usbvision_read_reg(usbvision, reg->reg&0xff);
484 if (errCode < 0) {
485 dev_err(&usbvision->vdev->dev,
486 "%s: VIDIOC_DBG_G_REGISTER failed: error %d\n",
487 __func__, errCode);
488 return errCode;
490 reg->val = errCode;
491 reg->size = 1;
492 return 0;
495 static int vidioc_s_register (struct file *file, void *priv,
496 struct v4l2_dbg_register *reg)
498 struct usb_usbvision *usbvision = video_drvdata(file);
499 int errCode;
501 if (!v4l2_chip_match_host(&reg->match))
502 return -EINVAL;
503 /* NT100x has a 8-bit register space */
504 errCode = usbvision_write_reg(usbvision, reg->reg&0xff, reg->val);
505 if (errCode < 0) {
506 dev_err(&usbvision->vdev->dev,
507 "%s: VIDIOC_DBG_S_REGISTER failed: error %d\n",
508 __func__, errCode);
509 return errCode;
511 return 0;
513 #endif
515 static int vidioc_querycap (struct file *file, void *priv,
516 struct v4l2_capability *vc)
518 struct usb_usbvision *usbvision = video_drvdata(file);
520 strlcpy(vc->driver, "USBVision", sizeof(vc->driver));
521 strlcpy(vc->card,
522 usbvision_device_data[usbvision->DevModel].ModelString,
523 sizeof(vc->card));
524 usb_make_path(usbvision->dev, vc->bus_info, sizeof(vc->bus_info));
525 vc->version = USBVISION_DRIVER_VERSION;
526 vc->capabilities = V4L2_CAP_VIDEO_CAPTURE |
527 V4L2_CAP_AUDIO |
528 V4L2_CAP_READWRITE |
529 V4L2_CAP_STREAMING |
530 (usbvision->have_tuner ? V4L2_CAP_TUNER : 0);
531 return 0;
534 static int vidioc_enum_input (struct file *file, void *priv,
535 struct v4l2_input *vi)
537 struct usb_usbvision *usbvision = video_drvdata(file);
538 int chan;
540 if (vi->index >= usbvision->video_inputs)
541 return -EINVAL;
542 if (usbvision->have_tuner) {
543 chan = vi->index;
544 } else {
545 chan = vi->index + 1; /*skip Television string*/
547 /* Determine the requested input characteristics
548 specific for each usbvision card model */
549 switch(chan) {
550 case 0:
551 if (usbvision_device_data[usbvision->DevModel].VideoChannels == 4) {
552 strcpy(vi->name, "White Video Input");
553 } else {
554 strcpy(vi->name, "Television");
555 vi->type = V4L2_INPUT_TYPE_TUNER;
556 vi->audioset = 1;
557 vi->tuner = chan;
558 vi->std = USBVISION_NORMS;
560 break;
561 case 1:
562 vi->type = V4L2_INPUT_TYPE_CAMERA;
563 if (usbvision_device_data[usbvision->DevModel].VideoChannels == 4) {
564 strcpy(vi->name, "Green Video Input");
565 } else {
566 strcpy(vi->name, "Composite Video Input");
568 vi->std = V4L2_STD_PAL;
569 break;
570 case 2:
571 vi->type = V4L2_INPUT_TYPE_CAMERA;
572 if (usbvision_device_data[usbvision->DevModel].VideoChannels == 4) {
573 strcpy(vi->name, "Yellow Video Input");
574 } else {
575 strcpy(vi->name, "S-Video Input");
577 vi->std = V4L2_STD_PAL;
578 break;
579 case 3:
580 vi->type = V4L2_INPUT_TYPE_CAMERA;
581 strcpy(vi->name, "Red Video Input");
582 vi->std = V4L2_STD_PAL;
583 break;
585 return 0;
588 static int vidioc_g_input (struct file *file, void *priv, unsigned int *input)
590 struct usb_usbvision *usbvision = video_drvdata(file);
592 *input = usbvision->ctl_input;
593 return 0;
596 static int vidioc_s_input (struct file *file, void *priv, unsigned int input)
598 struct usb_usbvision *usbvision = video_drvdata(file);
600 if (input >= usbvision->video_inputs)
601 return -EINVAL;
603 mutex_lock(&usbvision->lock);
604 usbvision_muxsel(usbvision, input);
605 usbvision_set_input(usbvision);
606 usbvision_set_output(usbvision,
607 usbvision->curwidth,
608 usbvision->curheight);
609 mutex_unlock(&usbvision->lock);
610 return 0;
613 static int vidioc_s_std (struct file *file, void *priv, v4l2_std_id *id)
615 struct usb_usbvision *usbvision = video_drvdata(file);
617 usbvision->tvnormId=*id;
619 mutex_lock(&usbvision->lock);
620 call_all(usbvision, core, s_std, usbvision->tvnormId);
621 mutex_unlock(&usbvision->lock);
622 /* propagate the change to the decoder */
623 usbvision_muxsel(usbvision, usbvision->ctl_input);
625 return 0;
628 static int vidioc_g_tuner (struct file *file, void *priv,
629 struct v4l2_tuner *vt)
631 struct usb_usbvision *usbvision = video_drvdata(file);
633 if (!usbvision->have_tuner || vt->index) // Only tuner 0
634 return -EINVAL;
635 if(usbvision->radio) {
636 strcpy(vt->name, "Radio");
637 vt->type = V4L2_TUNER_RADIO;
638 } else {
639 strcpy(vt->name, "Television");
641 /* Let clients fill in the remainder of this struct */
642 call_all(usbvision, tuner, g_tuner, vt);
644 return 0;
647 static int vidioc_s_tuner (struct file *file, void *priv,
648 struct v4l2_tuner *vt)
650 struct usb_usbvision *usbvision = video_drvdata(file);
652 // Only no or one tuner for now
653 if (!usbvision->have_tuner || vt->index)
654 return -EINVAL;
655 /* let clients handle this */
656 call_all(usbvision, tuner, s_tuner, vt);
658 return 0;
661 static int vidioc_g_frequency (struct file *file, void *priv,
662 struct v4l2_frequency *freq)
664 struct usb_usbvision *usbvision = video_drvdata(file);
666 freq->tuner = 0; // Only one tuner
667 if(usbvision->radio) {
668 freq->type = V4L2_TUNER_RADIO;
669 } else {
670 freq->type = V4L2_TUNER_ANALOG_TV;
672 freq->frequency = usbvision->freq;
674 return 0;
677 static int vidioc_s_frequency (struct file *file, void *priv,
678 struct v4l2_frequency *freq)
680 struct usb_usbvision *usbvision = video_drvdata(file);
682 // Only no or one tuner for now
683 if (!usbvision->have_tuner || freq->tuner)
684 return -EINVAL;
686 usbvision->freq = freq->frequency;
687 call_all(usbvision, tuner, s_frequency, freq);
689 return 0;
692 static int vidioc_g_audio (struct file *file, void *priv, struct v4l2_audio *a)
694 struct usb_usbvision *usbvision = video_drvdata(file);
696 if(usbvision->radio) {
697 strcpy(a->name,"Radio");
698 } else {
699 strcpy(a->name, "TV");
702 return 0;
705 static int vidioc_s_audio (struct file *file, void *fh,
706 struct v4l2_audio *a)
708 if(a->index) {
709 return -EINVAL;
712 return 0;
715 static int vidioc_queryctrl (struct file *file, void *priv,
716 struct v4l2_queryctrl *ctrl)
718 struct usb_usbvision *usbvision = video_drvdata(file);
720 call_all(usbvision, core, queryctrl, ctrl);
722 if (!ctrl->type)
723 return -EINVAL;
725 return 0;
728 static int vidioc_g_ctrl (struct file *file, void *priv,
729 struct v4l2_control *ctrl)
731 struct usb_usbvision *usbvision = video_drvdata(file);
732 call_all(usbvision, core, g_ctrl, ctrl);
734 return 0;
737 static int vidioc_s_ctrl (struct file *file, void *priv,
738 struct v4l2_control *ctrl)
740 struct usb_usbvision *usbvision = video_drvdata(file);
741 call_all(usbvision, core, s_ctrl, ctrl);
743 return 0;
746 static int vidioc_reqbufs (struct file *file,
747 void *priv, struct v4l2_requestbuffers *vr)
749 struct usb_usbvision *usbvision = video_drvdata(file);
750 int ret;
752 RESTRICT_TO_RANGE(vr->count,1,USBVISION_NUMFRAMES);
754 /* Check input validity:
755 the user must do a VIDEO CAPTURE and MMAP method. */
756 if (vr->memory != V4L2_MEMORY_MMAP)
757 return -EINVAL;
759 if(usbvision->streaming == Stream_On) {
760 if ((ret = usbvision_stream_interrupt(usbvision)))
761 return ret;
764 usbvision_frames_free(usbvision);
765 usbvision_empty_framequeues(usbvision);
766 vr->count = usbvision_frames_alloc(usbvision,vr->count);
768 usbvision->curFrame = NULL;
770 return 0;
773 static int vidioc_querybuf (struct file *file,
774 void *priv, struct v4l2_buffer *vb)
776 struct usb_usbvision *usbvision = video_drvdata(file);
777 struct usbvision_frame *frame;
779 if(vb->index>=usbvision->num_frames) {
780 return -EINVAL;
782 /* Updating the corresponding frame state */
783 vb->flags = 0;
784 frame = &usbvision->frame[vb->index];
785 if(frame->grabstate >= FrameState_Ready)
786 vb->flags |= V4L2_BUF_FLAG_QUEUED;
787 if(frame->grabstate >= FrameState_Done)
788 vb->flags |= V4L2_BUF_FLAG_DONE;
789 if(frame->grabstate == FrameState_Unused)
790 vb->flags |= V4L2_BUF_FLAG_MAPPED;
791 vb->memory = V4L2_MEMORY_MMAP;
793 vb->m.offset = vb->index*PAGE_ALIGN(usbvision->max_frame_size);
795 vb->memory = V4L2_MEMORY_MMAP;
796 vb->field = V4L2_FIELD_NONE;
797 vb->length = usbvision->curwidth*
798 usbvision->curheight*
799 usbvision->palette.bytes_per_pixel;
800 vb->timestamp = usbvision->frame[vb->index].timestamp;
801 vb->sequence = usbvision->frame[vb->index].sequence;
802 return 0;
805 static int vidioc_qbuf (struct file *file, void *priv, struct v4l2_buffer *vb)
807 struct usb_usbvision *usbvision = video_drvdata(file);
808 struct usbvision_frame *frame;
809 unsigned long lock_flags;
811 if(vb->index>=usbvision->num_frames) {
812 return -EINVAL;
815 frame = &usbvision->frame[vb->index];
817 if (frame->grabstate != FrameState_Unused) {
818 return -EAGAIN;
821 /* Mark it as ready and enqueue frame */
822 frame->grabstate = FrameState_Ready;
823 frame->scanstate = ScanState_Scanning;
824 frame->scanlength = 0; /* Accumulated in usbvision_parse_data() */
826 vb->flags &= ~V4L2_BUF_FLAG_DONE;
828 /* set v4l2_format index */
829 frame->v4l2_format = usbvision->palette;
831 spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
832 list_add_tail(&usbvision->frame[vb->index].frame, &usbvision->inqueue);
833 spin_unlock_irqrestore(&usbvision->queue_lock, lock_flags);
835 return 0;
838 static int vidioc_dqbuf (struct file *file, void *priv, struct v4l2_buffer *vb)
840 struct usb_usbvision *usbvision = video_drvdata(file);
841 int ret;
842 struct usbvision_frame *f;
843 unsigned long lock_flags;
845 if (list_empty(&(usbvision->outqueue))) {
846 if (usbvision->streaming == Stream_Idle)
847 return -EINVAL;
848 ret = wait_event_interruptible
849 (usbvision->wait_frame,
850 !list_empty(&(usbvision->outqueue)));
851 if (ret)
852 return ret;
855 spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
856 f = list_entry(usbvision->outqueue.next,
857 struct usbvision_frame, frame);
858 list_del(usbvision->outqueue.next);
859 spin_unlock_irqrestore(&usbvision->queue_lock, lock_flags);
861 f->grabstate = FrameState_Unused;
863 vb->memory = V4L2_MEMORY_MMAP;
864 vb->flags = V4L2_BUF_FLAG_MAPPED |
865 V4L2_BUF_FLAG_QUEUED |
866 V4L2_BUF_FLAG_DONE;
867 vb->index = f->index;
868 vb->sequence = f->sequence;
869 vb->timestamp = f->timestamp;
870 vb->field = V4L2_FIELD_NONE;
871 vb->bytesused = f->scanlength;
873 return 0;
876 static int vidioc_streamon(struct file *file, void *priv, enum v4l2_buf_type i)
878 struct usb_usbvision *usbvision = video_drvdata(file);
880 usbvision->streaming = Stream_On;
881 call_all(usbvision, video, s_stream, 1);
883 return 0;
886 static int vidioc_streamoff(struct file *file,
887 void *priv, enum v4l2_buf_type type)
889 struct usb_usbvision *usbvision = video_drvdata(file);
891 if (type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
892 return -EINVAL;
894 if(usbvision->streaming == Stream_On) {
895 usbvision_stream_interrupt(usbvision);
896 /* Stop all video streamings */
897 call_all(usbvision, video, s_stream, 0);
899 usbvision_empty_framequeues(usbvision);
901 return 0;
904 static int vidioc_enum_fmt_vid_cap (struct file *file, void *priv,
905 struct v4l2_fmtdesc *vfd)
907 if(vfd->index>=USBVISION_SUPPORTED_PALETTES-1) {
908 return -EINVAL;
910 strcpy(vfd->description,usbvision_v4l2_format[vfd->index].desc);
911 vfd->pixelformat = usbvision_v4l2_format[vfd->index].format;
912 return 0;
915 static int vidioc_g_fmt_vid_cap (struct file *file, void *priv,
916 struct v4l2_format *vf)
918 struct usb_usbvision *usbvision = video_drvdata(file);
919 vf->fmt.pix.width = usbvision->curwidth;
920 vf->fmt.pix.height = usbvision->curheight;
921 vf->fmt.pix.pixelformat = usbvision->palette.format;
922 vf->fmt.pix.bytesperline =
923 usbvision->curwidth*usbvision->palette.bytes_per_pixel;
924 vf->fmt.pix.sizeimage = vf->fmt.pix.bytesperline*usbvision->curheight;
925 vf->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
926 vf->fmt.pix.field = V4L2_FIELD_NONE; /* Always progressive image */
928 return 0;
931 static int vidioc_try_fmt_vid_cap (struct file *file, void *priv,
932 struct v4l2_format *vf)
934 struct usb_usbvision *usbvision = video_drvdata(file);
935 int formatIdx;
937 /* Find requested format in available ones */
938 for(formatIdx=0;formatIdx<USBVISION_SUPPORTED_PALETTES;formatIdx++) {
939 if(vf->fmt.pix.pixelformat ==
940 usbvision_v4l2_format[formatIdx].format) {
941 usbvision->palette = usbvision_v4l2_format[formatIdx];
942 break;
945 /* robustness */
946 if(formatIdx == USBVISION_SUPPORTED_PALETTES) {
947 return -EINVAL;
949 RESTRICT_TO_RANGE(vf->fmt.pix.width, MIN_FRAME_WIDTH, MAX_FRAME_WIDTH);
950 RESTRICT_TO_RANGE(vf->fmt.pix.height, MIN_FRAME_HEIGHT, MAX_FRAME_HEIGHT);
952 vf->fmt.pix.bytesperline = vf->fmt.pix.width*
953 usbvision->palette.bytes_per_pixel;
954 vf->fmt.pix.sizeimage = vf->fmt.pix.bytesperline*vf->fmt.pix.height;
956 return 0;
959 static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
960 struct v4l2_format *vf)
962 struct usb_usbvision *usbvision = video_drvdata(file);
963 int ret;
965 if( 0 != (ret=vidioc_try_fmt_vid_cap (file, priv, vf)) ) {
966 return ret;
969 /* stop io in case it is already in progress */
970 if(usbvision->streaming == Stream_On) {
971 if ((ret = usbvision_stream_interrupt(usbvision)))
972 return ret;
974 usbvision_frames_free(usbvision);
975 usbvision_empty_framequeues(usbvision);
977 usbvision->curFrame = NULL;
979 /* by now we are committed to the new data... */
980 mutex_lock(&usbvision->lock);
981 usbvision_set_output(usbvision, vf->fmt.pix.width, vf->fmt.pix.height);
982 mutex_unlock(&usbvision->lock);
984 return 0;
987 static ssize_t usbvision_v4l2_read(struct file *file, char __user *buf,
988 size_t count, loff_t *ppos)
990 struct usb_usbvision *usbvision = video_drvdata(file);
991 int noblock = file->f_flags & O_NONBLOCK;
992 unsigned long lock_flags;
994 int ret,i;
995 struct usbvision_frame *frame;
997 PDEBUG(DBG_IO, "%s: %ld bytes, noblock=%d", __func__,
998 (unsigned long)count, noblock);
1000 if (!USBVISION_IS_OPERATIONAL(usbvision) || (buf == NULL))
1001 return -EFAULT;
1003 /* This entry point is compatible with the mmap routines
1004 so that a user can do either VIDIOC_QBUF/VIDIOC_DQBUF
1005 to get frames or call read on the device. */
1006 if(!usbvision->num_frames) {
1007 /* First, allocate some frames to work with
1008 if this has not been done with VIDIOC_REQBUF */
1009 usbvision_frames_free(usbvision);
1010 usbvision_empty_framequeues(usbvision);
1011 usbvision_frames_alloc(usbvision,USBVISION_NUMFRAMES);
1014 if(usbvision->streaming != Stream_On) {
1015 /* no stream is running, make it running ! */
1016 usbvision->streaming = Stream_On;
1017 call_all(usbvision, video, s_stream, 1);
1020 /* Then, enqueue as many frames as possible
1021 (like a user of VIDIOC_QBUF would do) */
1022 for(i=0;i<usbvision->num_frames;i++) {
1023 frame = &usbvision->frame[i];
1024 if(frame->grabstate == FrameState_Unused) {
1025 /* Mark it as ready and enqueue frame */
1026 frame->grabstate = FrameState_Ready;
1027 frame->scanstate = ScanState_Scanning;
1028 /* Accumulated in usbvision_parse_data() */
1029 frame->scanlength = 0;
1031 /* set v4l2_format index */
1032 frame->v4l2_format = usbvision->palette;
1034 spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
1035 list_add_tail(&frame->frame, &usbvision->inqueue);
1036 spin_unlock_irqrestore(&usbvision->queue_lock,
1037 lock_flags);
1041 /* Then try to steal a frame (like a VIDIOC_DQBUF would do) */
1042 if (list_empty(&(usbvision->outqueue))) {
1043 if(noblock)
1044 return -EAGAIN;
1046 ret = wait_event_interruptible
1047 (usbvision->wait_frame,
1048 !list_empty(&(usbvision->outqueue)));
1049 if (ret)
1050 return ret;
1053 spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
1054 frame = list_entry(usbvision->outqueue.next,
1055 struct usbvision_frame, frame);
1056 list_del(usbvision->outqueue.next);
1057 spin_unlock_irqrestore(&usbvision->queue_lock, lock_flags);
1059 /* An error returns an empty frame */
1060 if (frame->grabstate == FrameState_Error) {
1061 frame->bytes_read = 0;
1062 return 0;
1065 PDEBUG(DBG_IO, "%s: frmx=%d, bytes_read=%ld, scanlength=%ld",
1066 __func__,
1067 frame->index, frame->bytes_read, frame->scanlength);
1069 /* copy bytes to user space; we allow for partials reads */
1070 if ((count + frame->bytes_read) > (unsigned long)frame->scanlength)
1071 count = frame->scanlength - frame->bytes_read;
1073 if (copy_to_user(buf, frame->data + frame->bytes_read, count)) {
1074 return -EFAULT;
1077 frame->bytes_read += count;
1078 PDEBUG(DBG_IO, "%s: {copy} count used=%ld, new bytes_read=%ld",
1079 __func__,
1080 (unsigned long)count, frame->bytes_read);
1082 /* For now, forget the frame if it has not been read in one shot. */
1083 /* if (frame->bytes_read >= frame->scanlength) {// All data has been read */
1084 frame->bytes_read = 0;
1086 /* Mark it as available to be used again. */
1087 frame->grabstate = FrameState_Unused;
1088 /* } */
1090 return count;
1093 static int usbvision_v4l2_mmap(struct file *file, struct vm_area_struct *vma)
1095 unsigned long size = vma->vm_end - vma->vm_start,
1096 start = vma->vm_start;
1097 void *pos;
1098 u32 i;
1099 struct usb_usbvision *usbvision = video_drvdata(file);
1101 PDEBUG(DBG_MMAP, "mmap");
1103 mutex_lock(&usbvision->lock);
1105 if (!USBVISION_IS_OPERATIONAL(usbvision)) {
1106 mutex_unlock(&usbvision->lock);
1107 return -EFAULT;
1110 if (!(vma->vm_flags & VM_WRITE) ||
1111 size != PAGE_ALIGN(usbvision->max_frame_size)) {
1112 mutex_unlock(&usbvision->lock);
1113 return -EINVAL;
1116 for (i = 0; i < usbvision->num_frames; i++) {
1117 if (((PAGE_ALIGN(usbvision->max_frame_size)*i) >> PAGE_SHIFT) ==
1118 vma->vm_pgoff)
1119 break;
1121 if (i == usbvision->num_frames) {
1122 PDEBUG(DBG_MMAP,
1123 "mmap: user supplied mapping address is out of range");
1124 mutex_unlock(&usbvision->lock);
1125 return -EINVAL;
1128 /* VM_IO is eventually going to replace PageReserved altogether */
1129 vma->vm_flags |= VM_IO;
1130 vma->vm_flags |= VM_RESERVED; /* avoid to swap out this VMA */
1132 pos = usbvision->frame[i].data;
1133 while (size > 0) {
1135 if (vm_insert_page(vma, start, vmalloc_to_page(pos))) {
1136 PDEBUG(DBG_MMAP, "mmap: vm_insert_page failed");
1137 mutex_unlock(&usbvision->lock);
1138 return -EAGAIN;
1140 start += PAGE_SIZE;
1141 pos += PAGE_SIZE;
1142 size -= PAGE_SIZE;
1145 mutex_unlock(&usbvision->lock);
1146 return 0;
1151 * Here comes the stuff for radio on usbvision based devices
1154 static int usbvision_radio_open(struct file *file)
1156 struct usb_usbvision *usbvision = video_drvdata(file);
1157 int errCode = 0;
1159 PDEBUG(DBG_IO, "%s:", __func__);
1161 mutex_lock(&usbvision->lock);
1163 if (usbvision->user) {
1164 dev_err(&usbvision->rdev->dev,
1165 "%s: Someone tried to open an already opened USBVision Radio!\n",
1166 __func__);
1167 errCode = -EBUSY;
1169 else {
1170 if(PowerOnAtOpen) {
1171 usbvision_reset_powerOffTimer(usbvision);
1172 if (usbvision->power == 0) {
1173 usbvision_power_on(usbvision);
1174 usbvision_i2c_register(usbvision);
1178 /* Alternate interface 1 is is the biggest frame size */
1179 errCode = usbvision_set_alternate(usbvision);
1180 if (errCode < 0) {
1181 usbvision->last_error = errCode;
1182 errCode = -EBUSY;
1183 goto out;
1186 // If so far no errors then we shall start the radio
1187 usbvision->radio = 1;
1188 call_all(usbvision, tuner, s_radio);
1189 usbvision_set_audio(usbvision, USBVISION_AUDIO_RADIO);
1190 usbvision->user++;
1193 if (errCode) {
1194 if (PowerOnAtOpen) {
1195 usbvision_i2c_unregister(usbvision);
1196 usbvision_power_off(usbvision);
1197 usbvision->initialized = 0;
1200 out:
1201 mutex_unlock(&usbvision->lock);
1202 return errCode;
1206 static int usbvision_radio_close(struct file *file)
1208 struct usb_usbvision *usbvision = video_drvdata(file);
1209 int errCode = 0;
1211 PDEBUG(DBG_IO, "");
1213 mutex_lock(&usbvision->lock);
1215 /* Set packet size to 0 */
1216 usbvision->ifaceAlt=0;
1217 errCode = usb_set_interface(usbvision->dev, usbvision->iface,
1218 usbvision->ifaceAlt);
1220 usbvision_audio_off(usbvision);
1221 usbvision->radio=0;
1222 usbvision->user--;
1224 if (PowerOnAtOpen) {
1225 usbvision_set_powerOffTimer(usbvision);
1226 usbvision->initialized = 0;
1229 mutex_unlock(&usbvision->lock);
1231 if (usbvision->remove_pending) {
1232 printk(KERN_INFO "%s: Final disconnect\n", __func__);
1233 usbvision_release(usbvision);
1236 PDEBUG(DBG_IO, "success");
1237 return errCode;
1241 // Video registration stuff
1244 // Video template
1245 static const struct v4l2_file_operations usbvision_fops = {
1246 .owner = THIS_MODULE,
1247 .open = usbvision_v4l2_open,
1248 .release = usbvision_v4l2_close,
1249 .read = usbvision_v4l2_read,
1250 .mmap = usbvision_v4l2_mmap,
1251 .ioctl = video_ioctl2,
1252 /* .poll = video_poll, */
1255 static const struct v4l2_ioctl_ops usbvision_ioctl_ops = {
1256 .vidioc_querycap = vidioc_querycap,
1257 .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap,
1258 .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap,
1259 .vidioc_try_fmt_vid_cap = vidioc_try_fmt_vid_cap,
1260 .vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap,
1261 .vidioc_reqbufs = vidioc_reqbufs,
1262 .vidioc_querybuf = vidioc_querybuf,
1263 .vidioc_qbuf = vidioc_qbuf,
1264 .vidioc_dqbuf = vidioc_dqbuf,
1265 .vidioc_s_std = vidioc_s_std,
1266 .vidioc_enum_input = vidioc_enum_input,
1267 .vidioc_g_input = vidioc_g_input,
1268 .vidioc_s_input = vidioc_s_input,
1269 .vidioc_queryctrl = vidioc_queryctrl,
1270 .vidioc_g_audio = vidioc_g_audio,
1271 .vidioc_s_audio = vidioc_s_audio,
1272 .vidioc_g_ctrl = vidioc_g_ctrl,
1273 .vidioc_s_ctrl = vidioc_s_ctrl,
1274 .vidioc_streamon = vidioc_streamon,
1275 .vidioc_streamoff = vidioc_streamoff,
1276 #ifdef CONFIG_VIDEO_V4L1_COMPAT
1277 /* .vidiocgmbuf = vidiocgmbuf, */
1278 #endif
1279 .vidioc_g_tuner = vidioc_g_tuner,
1280 .vidioc_s_tuner = vidioc_s_tuner,
1281 .vidioc_g_frequency = vidioc_g_frequency,
1282 .vidioc_s_frequency = vidioc_s_frequency,
1283 #ifdef CONFIG_VIDEO_ADV_DEBUG
1284 .vidioc_g_register = vidioc_g_register,
1285 .vidioc_s_register = vidioc_s_register,
1286 #endif
1289 static struct video_device usbvision_video_template = {
1290 .fops = &usbvision_fops,
1291 .ioctl_ops = &usbvision_ioctl_ops,
1292 .name = "usbvision-video",
1293 .release = video_device_release,
1294 .tvnorms = USBVISION_NORMS,
1295 .current_norm = V4L2_STD_PAL
1299 // Radio template
1300 static const struct v4l2_file_operations usbvision_radio_fops = {
1301 .owner = THIS_MODULE,
1302 .open = usbvision_radio_open,
1303 .release = usbvision_radio_close,
1304 .ioctl = video_ioctl2,
1307 static const struct v4l2_ioctl_ops usbvision_radio_ioctl_ops = {
1308 .vidioc_querycap = vidioc_querycap,
1309 .vidioc_enum_input = vidioc_enum_input,
1310 .vidioc_g_input = vidioc_g_input,
1311 .vidioc_s_input = vidioc_s_input,
1312 .vidioc_queryctrl = vidioc_queryctrl,
1313 .vidioc_g_audio = vidioc_g_audio,
1314 .vidioc_s_audio = vidioc_s_audio,
1315 .vidioc_g_ctrl = vidioc_g_ctrl,
1316 .vidioc_s_ctrl = vidioc_s_ctrl,
1317 .vidioc_g_tuner = vidioc_g_tuner,
1318 .vidioc_s_tuner = vidioc_s_tuner,
1319 .vidioc_g_frequency = vidioc_g_frequency,
1320 .vidioc_s_frequency = vidioc_s_frequency,
1323 static struct video_device usbvision_radio_template = {
1324 .fops = &usbvision_radio_fops,
1325 .name = "usbvision-radio",
1326 .release = video_device_release,
1327 .ioctl_ops = &usbvision_radio_ioctl_ops,
1329 .tvnorms = USBVISION_NORMS,
1330 .current_norm = V4L2_STD_PAL
1334 static struct video_device *usbvision_vdev_init(struct usb_usbvision *usbvision,
1335 struct video_device *vdev_template,
1336 char *name)
1338 struct usb_device *usb_dev = usbvision->dev;
1339 struct video_device *vdev;
1341 if (usb_dev == NULL) {
1342 dev_err(&usbvision->dev->dev,
1343 "%s: usbvision->dev is not set\n", __func__);
1344 return NULL;
1347 vdev = video_device_alloc();
1348 if (NULL == vdev) {
1349 return NULL;
1351 *vdev = *vdev_template;
1352 vdev->v4l2_dev = &usbvision->v4l2_dev;
1353 snprintf(vdev->name, sizeof(vdev->name), "%s", name);
1354 video_set_drvdata(vdev, usbvision);
1355 return vdev;
1358 // unregister video4linux devices
1359 static void usbvision_unregister_video(struct usb_usbvision *usbvision)
1361 // Radio Device:
1362 if (usbvision->rdev) {
1363 PDEBUG(DBG_PROBE, "unregister %s [v4l2]",
1364 video_device_node_name(usbvision->rdev));
1365 if (video_is_registered(usbvision->rdev)) {
1366 video_unregister_device(usbvision->rdev);
1367 } else {
1368 video_device_release(usbvision->rdev);
1370 usbvision->rdev = NULL;
1373 // Video Device:
1374 if (usbvision->vdev) {
1375 PDEBUG(DBG_PROBE, "unregister %s [v4l2]",
1376 video_device_node_name(usbvision->vdev));
1377 if (video_is_registered(usbvision->vdev)) {
1378 video_unregister_device(usbvision->vdev);
1379 } else {
1380 video_device_release(usbvision->vdev);
1382 usbvision->vdev = NULL;
1386 // register video4linux devices
1387 static int __devinit usbvision_register_video(struct usb_usbvision *usbvision)
1389 // Video Device:
1390 usbvision->vdev = usbvision_vdev_init(usbvision,
1391 &usbvision_video_template,
1392 "USBVision Video");
1393 if (usbvision->vdev == NULL) {
1394 goto err_exit;
1396 if (video_register_device(usbvision->vdev,
1397 VFL_TYPE_GRABBER,
1398 video_nr)<0) {
1399 goto err_exit;
1401 printk(KERN_INFO "USBVision[%d]: registered USBVision Video device %s [v4l2]\n",
1402 usbvision->nr, video_device_node_name(usbvision->vdev));
1404 // Radio Device:
1405 if (usbvision_device_data[usbvision->DevModel].Radio) {
1406 // usbvision has radio
1407 usbvision->rdev = usbvision_vdev_init(usbvision,
1408 &usbvision_radio_template,
1409 "USBVision Radio");
1410 if (usbvision->rdev == NULL) {
1411 goto err_exit;
1413 if (video_register_device(usbvision->rdev,
1414 VFL_TYPE_RADIO,
1415 radio_nr)<0) {
1416 goto err_exit;
1418 printk(KERN_INFO "USBVision[%d]: registered USBVision Radio device %s [v4l2]\n",
1419 usbvision->nr, video_device_node_name(usbvision->rdev));
1421 // all done
1422 return 0;
1424 err_exit:
1425 dev_err(&usbvision->dev->dev,
1426 "USBVision[%d]: video_register_device() failed\n",
1427 usbvision->nr);
1428 usbvision_unregister_video(usbvision);
1429 return -1;
1433 * usbvision_alloc()
1435 * This code allocates the struct usb_usbvision.
1436 * It is filled with default values.
1438 * Returns NULL on error, a pointer to usb_usbvision else.
1441 static struct usb_usbvision *usbvision_alloc(struct usb_device *dev,
1442 struct usb_interface *intf)
1444 struct usb_usbvision *usbvision;
1446 usbvision = kzalloc(sizeof(struct usb_usbvision), GFP_KERNEL);
1447 if (usbvision == NULL)
1448 return NULL;
1450 usbvision->dev = dev;
1451 if (v4l2_device_register(&intf->dev, &usbvision->v4l2_dev))
1452 goto err_free;
1454 mutex_init(&usbvision->lock); /* available */
1456 // prepare control urb for control messages during interrupts
1457 usbvision->ctrlUrb = usb_alloc_urb(USBVISION_URB_FRAMES, GFP_KERNEL);
1458 if (usbvision->ctrlUrb == NULL)
1459 goto err_unreg;
1460 init_waitqueue_head(&usbvision->ctrlUrb_wq);
1462 usbvision_init_powerOffTimer(usbvision);
1464 return usbvision;
1466 err_unreg:
1467 v4l2_device_unregister(&usbvision->v4l2_dev);
1468 err_free:
1469 kfree(usbvision);
1470 return NULL;
1474 * usbvision_release()
1476 * This code does final release of struct usb_usbvision. This happens
1477 * after the device is disconnected -and- all clients closed their files.
1480 static void usbvision_release(struct usb_usbvision *usbvision)
1482 PDEBUG(DBG_PROBE, "");
1484 mutex_lock(&usbvision->lock);
1486 usbvision_reset_powerOffTimer(usbvision);
1488 usbvision->initialized = 0;
1490 mutex_unlock(&usbvision->lock);
1492 usbvision_remove_sysfs(usbvision->vdev);
1493 usbvision_unregister_video(usbvision);
1495 if (usbvision->ctrlUrb) {
1496 usb_free_urb(usbvision->ctrlUrb);
1499 v4l2_device_unregister(&usbvision->v4l2_dev);
1500 kfree(usbvision);
1502 PDEBUG(DBG_PROBE, "success");
1506 /*********************** usb interface **********************************/
1508 static void usbvision_configure_video(struct usb_usbvision *usbvision)
1510 int model;
1512 if (usbvision == NULL)
1513 return;
1515 model = usbvision->DevModel;
1516 usbvision->palette = usbvision_v4l2_format[2]; // V4L2_PIX_FMT_RGB24;
1518 if (usbvision_device_data[usbvision->DevModel].Vin_Reg2_override) {
1519 usbvision->Vin_Reg2_Preset =
1520 usbvision_device_data[usbvision->DevModel].Vin_Reg2;
1521 } else {
1522 usbvision->Vin_Reg2_Preset = 0;
1525 usbvision->tvnormId = usbvision_device_data[model].VideoNorm;
1527 usbvision->video_inputs = usbvision_device_data[model].VideoChannels;
1528 usbvision->ctl_input = 0;
1530 /* This should be here to make i2c clients to be able to register */
1531 /* first switch off audio */
1532 usbvision_audio_off(usbvision);
1533 if (!PowerOnAtOpen) {
1534 /* and then power up the noisy tuner */
1535 usbvision_power_on(usbvision);
1536 usbvision_i2c_register(usbvision);
1541 * usbvision_probe()
1543 * This procedure queries device descriptor and accepts the interface
1544 * if it looks like USBVISION video device
1547 static int __devinit usbvision_probe(struct usb_interface *intf,
1548 const struct usb_device_id *devid)
1550 struct usb_device *dev = usb_get_dev(interface_to_usbdev(intf));
1551 struct usb_interface *uif;
1552 __u8 ifnum = intf->altsetting->desc.bInterfaceNumber;
1553 const struct usb_host_interface *interface;
1554 struct usb_usbvision *usbvision = NULL;
1555 const struct usb_endpoint_descriptor *endpoint;
1556 int model,i;
1558 PDEBUG(DBG_PROBE, "VID=%#04x, PID=%#04x, ifnum=%u",
1559 dev->descriptor.idVendor,
1560 dev->descriptor.idProduct, ifnum);
1562 model = devid->driver_info;
1563 if ( (model<0) || (model>=usbvision_device_data_size) ) {
1564 PDEBUG(DBG_PROBE, "model out of bounds %d",model);
1565 return -ENODEV;
1567 printk(KERN_INFO "%s: %s found\n", __func__,
1568 usbvision_device_data[model].ModelString);
1570 if (usbvision_device_data[model].Interface >= 0) {
1571 interface = &dev->actconfig->interface[usbvision_device_data[model].Interface]->altsetting[0];
1572 } else {
1573 interface = &dev->actconfig->interface[ifnum]->altsetting[0];
1575 endpoint = &interface->endpoint[1].desc;
1576 if (!usb_endpoint_xfer_isoc(endpoint)) {
1577 dev_err(&intf->dev, "%s: interface %d. has non-ISO endpoint!\n",
1578 __func__, ifnum);
1579 dev_err(&intf->dev, "%s: Endpoint attributes %d",
1580 __func__, endpoint->bmAttributes);
1581 return -ENODEV;
1583 if (usb_endpoint_dir_out(endpoint)) {
1584 dev_err(&intf->dev, "%s: interface %d. has ISO OUT endpoint!\n",
1585 __func__, ifnum);
1586 return -ENODEV;
1589 usbvision = usbvision_alloc(dev, intf);
1590 if (usbvision == NULL) {
1591 dev_err(&intf->dev, "%s: couldn't allocate USBVision struct\n", __func__);
1592 return -ENOMEM;
1595 if (dev->descriptor.bNumConfigurations > 1) {
1596 usbvision->bridgeType = BRIDGE_NT1004;
1597 } else if (model == DAZZLE_DVC_90_REV_1_SECAM) {
1598 usbvision->bridgeType = BRIDGE_NT1005;
1599 } else {
1600 usbvision->bridgeType = BRIDGE_NT1003;
1602 PDEBUG(DBG_PROBE, "bridgeType %d", usbvision->bridgeType);
1604 mutex_lock(&usbvision->lock);
1606 /* compute alternate max packet sizes */
1607 uif = dev->actconfig->interface[0];
1609 usbvision->num_alt=uif->num_altsetting;
1610 PDEBUG(DBG_PROBE, "Alternate settings: %i",usbvision->num_alt);
1611 usbvision->alt_max_pkt_size = kmalloc(32*
1612 usbvision->num_alt,GFP_KERNEL);
1613 if (usbvision->alt_max_pkt_size == NULL) {
1614 dev_err(&intf->dev, "usbvision: out of memory!\n");
1615 mutex_unlock(&usbvision->lock);
1616 return -ENOMEM;
1619 for (i = 0; i < usbvision->num_alt ; i++) {
1620 u16 tmp = le16_to_cpu(uif->altsetting[i].endpoint[1].desc.
1621 wMaxPacketSize);
1622 usbvision->alt_max_pkt_size[i] =
1623 (tmp & 0x07ff) * (((tmp & 0x1800) >> 11) + 1);
1624 PDEBUG(DBG_PROBE, "Alternate setting %i, max size= %i",i,
1625 usbvision->alt_max_pkt_size[i]);
1629 usbvision->nr = usbvision_nr++;
1631 usbvision->have_tuner = usbvision_device_data[model].Tuner;
1632 if (usbvision->have_tuner) {
1633 usbvision->tuner_type = usbvision_device_data[model].TunerType;
1636 usbvision->DevModel = model;
1637 usbvision->remove_pending = 0;
1638 usbvision->iface = ifnum;
1639 usbvision->ifaceAlt = 0;
1640 usbvision->video_endp = endpoint->bEndpointAddress;
1641 usbvision->isocPacketSize = 0;
1642 usbvision->usb_bandwidth = 0;
1643 usbvision->user = 0;
1644 usbvision->streaming = Stream_Off;
1645 usbvision_register_video(usbvision);
1646 usbvision_configure_video(usbvision);
1647 mutex_unlock(&usbvision->lock);
1649 usbvision_create_sysfs(usbvision->vdev);
1651 PDEBUG(DBG_PROBE, "success");
1652 return 0;
1657 * usbvision_disconnect()
1659 * This procedure stops all driver activity, deallocates interface-private
1660 * structure (pointed by 'ptr') and after that driver should be removable
1661 * with no ill consequences.
1664 static void __devexit usbvision_disconnect(struct usb_interface *intf)
1666 struct usb_usbvision *usbvision = to_usbvision(usb_get_intfdata(intf));
1668 PDEBUG(DBG_PROBE, "");
1670 if (usbvision == NULL) {
1671 pr_err("%s: usb_get_intfdata() failed\n", __func__);
1672 return;
1675 mutex_lock(&usbvision->lock);
1677 // At this time we ask to cancel outstanding URBs
1678 usbvision_stop_isoc(usbvision);
1680 v4l2_device_disconnect(&usbvision->v4l2_dev);
1682 if (usbvision->power) {
1683 usbvision_i2c_unregister(usbvision);
1684 usbvision_power_off(usbvision);
1686 usbvision->remove_pending = 1; // Now all ISO data will be ignored
1688 usb_put_dev(usbvision->dev);
1689 usbvision->dev = NULL; // USB device is no more
1691 mutex_unlock(&usbvision->lock);
1693 if (usbvision->user) {
1694 printk(KERN_INFO "%s: In use, disconnect pending\n",
1695 __func__);
1696 wake_up_interruptible(&usbvision->wait_frame);
1697 wake_up_interruptible(&usbvision->wait_stream);
1698 } else {
1699 usbvision_release(usbvision);
1702 PDEBUG(DBG_PROBE, "success");
1705 static struct usb_driver usbvision_driver = {
1706 .name = "usbvision",
1707 .id_table = usbvision_table,
1708 .probe = usbvision_probe,
1709 .disconnect = __devexit_p(usbvision_disconnect),
1713 * usbvision_init()
1715 * This code is run to initialize the driver.
1718 static int __init usbvision_init(void)
1720 int errCode;
1722 PDEBUG(DBG_PROBE, "");
1724 PDEBUG(DBG_IO, "IO debugging is enabled [video]");
1725 PDEBUG(DBG_PROBE, "PROBE debugging is enabled [video]");
1726 PDEBUG(DBG_MMAP, "MMAP debugging is enabled [video]");
1728 /* disable planar mode support unless compression enabled */
1729 if (isocMode != ISOC_MODE_COMPRESS ) {
1730 usbvision_v4l2_format[6].supported = 0; // V4L2_PIX_FMT_YVU420
1731 usbvision_v4l2_format[7].supported = 0; // V4L2_PIX_FMT_YUV422P
1734 errCode = usb_register(&usbvision_driver);
1736 if (errCode == 0) {
1737 printk(KERN_INFO DRIVER_DESC " : " USBVISION_VERSION_STRING "\n");
1738 PDEBUG(DBG_PROBE, "success");
1740 return errCode;
1743 static void __exit usbvision_exit(void)
1745 PDEBUG(DBG_PROBE, "");
1747 usb_deregister(&usbvision_driver);
1748 PDEBUG(DBG_PROBE, "success");
1751 module_init(usbvision_init);
1752 module_exit(usbvision_exit);
1755 * Overrides for Emacs so that we follow Linus's tabbing style.
1756 * ---------------------------------------------------------------------------
1757 * Local variables:
1758 * c-basic-offset: 8
1759 * End: