blob: ea67c8c05bcd5f177dce36a88f0cdb9590d803cc [file] [log] [blame]
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001/*
Hans Verkuil3ff4ad82009-04-01 03:15:52 -03002 * USB USBVISION Video device driver 0.9.10
Thierry MERLE483dfdb2006-12-04 08:31:45 -03003 *
4 *
5 *
6 * Copyright (c) 1999-2005 Joerg Heckenbach <joerg@heckenbach-aw.de>
7 *
8 * This module is part of usbvision driver project.
9 *
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.
14 *
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.
19 *
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.
23 *
24 * Let's call the version 0.... until compression decoding is completely
25 * implemented.
26 *
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
33 *
34 *
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.
Thierry MERLEc5f48362007-05-08 17:22:29 -030039 * - Add audio on endpoint 3 for nt1004 chip.
40 * Seems impossible, needs a codec interface. Which one?
Thierry MERLE483dfdb2006-12-04 08:31:45 -030041 * - Clean up the driver.
42 * - optimization for performance.
43 * - Add Videotext capability (VBI). Working on it.....
44 * - Check audio for other devices
45 *
46 */
47
48#include <linux/kernel.h>
Thierry MERLE483dfdb2006-12-04 08:31:45 -030049#include <linux/list.h>
50#include <linux/timer.h>
51#include <linux/slab.h>
52#include <linux/mm.h>
Thierry MERLE483dfdb2006-12-04 08:31:45 -030053#include <linux/highmem.h>
Thierry MERLE483dfdb2006-12-04 08:31:45 -030054#include <linux/vmalloc.h>
55#include <linux/module.h>
56#include <linux/init.h>
57#include <linux/spinlock.h>
Hans Verkuil6d6a48e2010-12-29 13:53:21 -030058#include <linux/io.h>
Thierry MERLE483dfdb2006-12-04 08:31:45 -030059#include <linux/videodev2.h>
Thierry MERLE483dfdb2006-12-04 08:31:45 -030060#include <linux/i2c.h>
61
62#include <media/saa7115.h>
63#include <media/v4l2-common.h>
Hans Verkuil35ea11f2008-07-20 08:12:02 -030064#include <media/v4l2-ioctl.h>
Hans Verkuilfd958702015-07-20 09:59:29 -030065#include <media/v4l2-event.h>
Thierry MERLE483dfdb2006-12-04 08:31:45 -030066#include <media/tuner.h>
Thierry MERLE483dfdb2006-12-04 08:31:45 -030067
Mauro Carvalho Chehaba1ed5512006-12-09 11:41:59 -030068#include <linux/workqueue.h>
Thierry MERLE483dfdb2006-12-04 08:31:45 -030069
Thierry MERLE483dfdb2006-12-04 08:31:45 -030070#include "usbvision.h"
Mauro Carvalho Chehab659ae562007-04-14 15:09:59 -030071#include "usbvision-cards.h"
Thierry MERLE483dfdb2006-12-04 08:31:45 -030072
Joe Perches85ee7a12011-04-23 20:38:19 -070073#define DRIVER_AUTHOR \
74 "Joerg Heckenbach <joerg@heckenbach-aw.de>, " \
75 "Dwaine Garden <DwaineGarden@rogers.com>"
Thierry MERLE483dfdb2006-12-04 08:31:45 -030076#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"
Mauro Carvalho Chehab1990d502011-06-24 14:45:49 -030080#define USBVISION_VERSION_STRING "0.9.11"
Thierry MERLE483dfdb2006-12-04 08:31:45 -030081
82#define ENABLE_HEXDUMP 0 /* Enable if you need it */
83
84
Thierry MERLE483dfdb2006-12-04 08:31:45 -030085#ifdef USBVISION_DEBUG
Thierry MERLEdf18c312008-04-04 21:00:57 -030086 #define PDEBUG(level, fmt, args...) { \
Thierry MERLEc5f48362007-05-08 17:22:29 -030087 if (video_debug & (level)) \
Greg Kroah-Hartmana482f322008-10-10 05:08:23 -030088 printk(KERN_INFO KBUILD_MODNAME ":[%s:%d] " fmt, \
89 __func__, __LINE__ , ## args); \
Thierry MERLEdf18c312008-04-04 21:00:57 -030090 }
Thierry MERLE483dfdb2006-12-04 08:31:45 -030091#else
Hans Verkuil6d6a48e2010-12-29 13:53:21 -030092 #define PDEBUG(level, fmt, args...) do {} while (0)
Thierry MERLE483dfdb2006-12-04 08:31:45 -030093#endif
94
Hans Verkuil6d6a48e2010-12-29 13:53:21 -030095#define DBG_IO (1 << 1)
96#define DBG_PROBE (1 << 2)
97#define DBG_MMAP (1 << 3)
Thierry MERLE483dfdb2006-12-04 08:31:45 -030098
Hans Verkuil52cb0bf2010-12-19 20:33:51 -030099/* String operations */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300100#define rmspace(str) while (*str == ' ') str++;
101#define goto2next(str) while (*str != ' ') str++; while (*str == ' ') str++;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300102
103
Thierry MERLEc5f48362007-05-08 17:22:29 -0300104/* sequential number of usbvision device */
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -0300105static int usbvision_nr;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300106
107static 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" },
Hans Verkuil52cb0bf2010-12-19 20:33:51 -0300114 { 1, 2, 12, V4L2_PIX_FMT_YVU420 , "YUV420P" }, /* 1.5 ! */
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300115 { 1, 2, 16, V4L2_PIX_FMT_YUV422P , "YUV422P" }
116};
117
Thierry MERLEc5f48362007-05-08 17:22:29 -0300118/* Function prototypes */
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300119static void usbvision_release(struct usb_usbvision *usbvision);
120
Joe Perchesc84e6032008-02-03 17:18:59 +0200121/* Default initialization of device driver parameters */
Thierry MERLEc5f48362007-05-08 17:22:29 -0300122/* Set the default format for ISOC endpoint */
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300123static int isoc_mode = ISOC_MODE_COMPRESS;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300124/* Set the default Debug Mode of the device driver */
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -0300125static int video_debug;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300126/* Sequential Number of Video Device */
127static int video_nr = -1;
128/* Sequential Number of Radio Device */
129static int radio_nr = -1;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300130
Thierry MERLEc5f48362007-05-08 17:22:29 -0300131/* Grab parameters for the device driver */
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300132
Thierry MERLEc5f48362007-05-08 17:22:29 -0300133/* Showing parameters under SYSFS */
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300134module_param(isoc_mode, int, 0444);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300135module_param(video_debug, int, 0444);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300136module_param(video_nr, int, 0444);
137module_param(radio_nr, int, 0444);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300138
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300139MODULE_PARM_DESC(isoc_mode, " Set the default format for ISOC endpoint. Default: 0x60 (Compression On)");
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300140MODULE_PARM_DESC(video_debug, " Set the default Debug Mode of the device driver. Default: 0 (Off)");
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300141MODULE_PARM_DESC(video_nr, "Set video device number (/dev/videoX). Default: -1 (autodetect)");
142MODULE_PARM_DESC(radio_nr, "Set radio device number (/dev/radioX). Default: -1 (autodetect)");
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300143
144
Hans Verkuil52cb0bf2010-12-19 20:33:51 -0300145/* Misc stuff */
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300146MODULE_AUTHOR(DRIVER_AUTHOR);
147MODULE_DESCRIPTION(DRIVER_DESC);
148MODULE_LICENSE(DRIVER_LICENSE);
Mauro Carvalho Chehaba1ed5512006-12-09 11:41:59 -0300149MODULE_VERSION(USBVISION_VERSION_STRING);
150MODULE_ALIAS(DRIVER_ALIAS);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300151
152
Thierry MERLEc5f48362007-05-08 17:22:29 -0300153/*****************************************************************************/
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/*****************************************************************************/
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300160
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300161#define YES_NO(x) ((x) ? "Yes" : "No")
162
Kay Sievers54bd5b62007-10-08 16:26:13 -0300163static inline struct usb_usbvision *cd_to_usbvision(struct device *cd)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300164{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300165 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300166 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300167 return video_get_drvdata(vdev);
168}
169
Kay Sievers54bd5b62007-10-08 16:26:13 -0300170static ssize_t show_version(struct device *cd,
171 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300172{
173 return sprintf(buf, "%s\n", USBVISION_VERSION_STRING);
174}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300175static DEVICE_ATTR(version, S_IRUGO, show_version, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300176
Kay Sievers54bd5b62007-10-08 16:26:13 -0300177static ssize_t show_model(struct device *cd,
178 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300179{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300180 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300181 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300182 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300183 return sprintf(buf, "%s\n",
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300184 usbvision_device_data[usbvision->dev_model].model_string);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300185}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300186static DEVICE_ATTR(model, S_IRUGO, show_model, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300187
Kay Sievers54bd5b62007-10-08 16:26:13 -0300188static ssize_t show_hue(struct device *cd,
189 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300190{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300191 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300192 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300193 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
194 struct v4l2_control ctrl;
195 ctrl.id = V4L2_CID_HUE;
196 ctrl.value = 0;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300197 if (usbvision->user)
Hans Verkuil1df79532009-02-21 18:11:31 -0300198 call_all(usbvision, core, g_ctrl, &ctrl);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -0300199 return sprintf(buf, "%d\n", ctrl.value);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300200}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300201static DEVICE_ATTR(hue, S_IRUGO, show_hue, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300202
Kay Sievers54bd5b62007-10-08 16:26:13 -0300203static ssize_t show_contrast(struct device *cd,
204 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300205{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300206 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300207 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300208 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
209 struct v4l2_control ctrl;
210 ctrl.id = V4L2_CID_CONTRAST;
211 ctrl.value = 0;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300212 if (usbvision->user)
Hans Verkuil1df79532009-02-21 18:11:31 -0300213 call_all(usbvision, core, g_ctrl, &ctrl);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -0300214 return sprintf(buf, "%d\n", ctrl.value);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300215}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300216static DEVICE_ATTR(contrast, S_IRUGO, show_contrast, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300217
Kay Sievers54bd5b62007-10-08 16:26:13 -0300218static ssize_t show_brightness(struct device *cd,
219 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300220{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300221 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300222 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300223 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
224 struct v4l2_control ctrl;
225 ctrl.id = V4L2_CID_BRIGHTNESS;
226 ctrl.value = 0;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300227 if (usbvision->user)
Hans Verkuil1df79532009-02-21 18:11:31 -0300228 call_all(usbvision, core, g_ctrl, &ctrl);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -0300229 return sprintf(buf, "%d\n", ctrl.value);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300230}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300231static DEVICE_ATTR(brightness, S_IRUGO, show_brightness, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300232
Kay Sievers54bd5b62007-10-08 16:26:13 -0300233static ssize_t show_saturation(struct device *cd,
234 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300235{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300236 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300237 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300238 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
239 struct v4l2_control ctrl;
240 ctrl.id = V4L2_CID_SATURATION;
241 ctrl.value = 0;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300242 if (usbvision->user)
Hans Verkuil1df79532009-02-21 18:11:31 -0300243 call_all(usbvision, core, g_ctrl, &ctrl);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -0300244 return sprintf(buf, "%d\n", ctrl.value);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300245}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300246static DEVICE_ATTR(saturation, S_IRUGO, show_saturation, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300247
Kay Sievers54bd5b62007-10-08 16:26:13 -0300248static ssize_t show_streaming(struct device *cd,
249 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300250{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300251 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300252 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300253 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300254 return sprintf(buf, "%s\n",
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300255 YES_NO(usbvision->streaming == stream_on ? 1 : 0));
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300256}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300257static DEVICE_ATTR(streaming, S_IRUGO, show_streaming, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300258
Kay Sievers54bd5b62007-10-08 16:26:13 -0300259static ssize_t show_compression(struct device *cd,
260 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300261{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300262 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300263 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300264 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300265 return sprintf(buf, "%s\n",
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300266 YES_NO(usbvision->isoc_mode == ISOC_MODE_COMPRESS));
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300267}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300268static DEVICE_ATTR(compression, S_IRUGO, show_compression, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300269
Kay Sievers54bd5b62007-10-08 16:26:13 -0300270static ssize_t show_device_bridge(struct device *cd,
271 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300272{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300273 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300274 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300275 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300276 return sprintf(buf, "%d\n", usbvision->bridge_type);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300277}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300278static DEVICE_ATTR(bridge, S_IRUGO, show_device_bridge, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300279
280static void usbvision_create_sysfs(struct video_device *vdev)
281{
282 int res;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300283
Dwaine Gardened00b412006-12-27 10:23:28 -0200284 if (!vdev)
285 return;
286 do {
Hans Verkuil22a04f12008-07-20 06:35:02 -0300287 res = device_create_file(&vdev->dev, &dev_attr_version);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300288 if (res < 0)
Dwaine Gardened00b412006-12-27 10:23:28 -0200289 break;
Hans Verkuil22a04f12008-07-20 06:35:02 -0300290 res = device_create_file(&vdev->dev, &dev_attr_model);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300291 if (res < 0)
Dwaine Gardened00b412006-12-27 10:23:28 -0200292 break;
Hans Verkuil22a04f12008-07-20 06:35:02 -0300293 res = device_create_file(&vdev->dev, &dev_attr_hue);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300294 if (res < 0)
Dwaine Gardened00b412006-12-27 10:23:28 -0200295 break;
Hans Verkuil22a04f12008-07-20 06:35:02 -0300296 res = device_create_file(&vdev->dev, &dev_attr_contrast);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300297 if (res < 0)
Dwaine Gardened00b412006-12-27 10:23:28 -0200298 break;
Hans Verkuil22a04f12008-07-20 06:35:02 -0300299 res = device_create_file(&vdev->dev, &dev_attr_brightness);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300300 if (res < 0)
Dwaine Gardened00b412006-12-27 10:23:28 -0200301 break;
Hans Verkuil22a04f12008-07-20 06:35:02 -0300302 res = device_create_file(&vdev->dev, &dev_attr_saturation);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300303 if (res < 0)
Dwaine Gardened00b412006-12-27 10:23:28 -0200304 break;
Hans Verkuil22a04f12008-07-20 06:35:02 -0300305 res = device_create_file(&vdev->dev, &dev_attr_streaming);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300306 if (res < 0)
Dwaine Gardened00b412006-12-27 10:23:28 -0200307 break;
Hans Verkuil22a04f12008-07-20 06:35:02 -0300308 res = device_create_file(&vdev->dev, &dev_attr_compression);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300309 if (res < 0)
Dwaine Gardened00b412006-12-27 10:23:28 -0200310 break;
Hans Verkuil22a04f12008-07-20 06:35:02 -0300311 res = device_create_file(&vdev->dev, &dev_attr_bridge);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300312 if (res >= 0)
Dwaine Gardened00b412006-12-27 10:23:28 -0200313 return;
314 } while (0);
315
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -0300316 dev_err(&vdev->dev, "%s error: %d\n", __func__, res);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300317}
318
319static void usbvision_remove_sysfs(struct video_device *vdev)
320{
321 if (vdev) {
Hans Verkuil22a04f12008-07-20 06:35:02 -0300322 device_remove_file(&vdev->dev, &dev_attr_version);
323 device_remove_file(&vdev->dev, &dev_attr_model);
324 device_remove_file(&vdev->dev, &dev_attr_hue);
325 device_remove_file(&vdev->dev, &dev_attr_contrast);
326 device_remove_file(&vdev->dev, &dev_attr_brightness);
327 device_remove_file(&vdev->dev, &dev_attr_saturation);
328 device_remove_file(&vdev->dev, &dev_attr_streaming);
329 device_remove_file(&vdev->dev, &dev_attr_compression);
330 device_remove_file(&vdev->dev, &dev_attr_bridge);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300331 }
332}
333
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300334/*
335 * usbvision_open()
336 *
337 * This is part of Video 4 Linux API. The driver can be opened by one
338 * client only (checks internal counter 'usbvision->user'). The procedure
339 * then allocates buffers needed for video processing.
340 *
341 */
Hans Verkuilbec43662008-12-30 06:58:20 -0300342static int usbvision_v4l2_open(struct file *file)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300343{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300344 struct usb_usbvision *usbvision = video_drvdata(file);
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300345 int err_code = 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300346
347 PDEBUG(DBG_IO, "open");
348
Hans Verkuil4d345702012-06-23 08:03:50 -0300349 if (mutex_lock_interruptible(&usbvision->v4l2_lock))
350 return -ERESTARTSYS;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300351
Hans Verkuil62e25942015-07-20 09:59:28 -0300352 if (usbvision->user) {
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300353 err_code = -EBUSY;
Hans Verkuil62e25942015-07-20 09:59:28 -0300354 } else {
Hans Verkuilfd958702015-07-20 09:59:29 -0300355 err_code = v4l2_fh_open(file);
356 if (err_code)
357 goto unlock;
358
Thierry MERLE6f78e182007-02-07 10:13:11 -0300359 /* Allocate memory for the scratch ring buffer */
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300360 err_code = usbvision_scratch_alloc(usbvision);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300361 if (isoc_mode == ISOC_MODE_COMPRESS) {
Thierry MERLEc5f48362007-05-08 17:22:29 -0300362 /* Allocate intermediate decompression buffers
363 only if needed */
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300364 err_code = usbvision_decompress_alloc(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300365 }
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300366 if (err_code) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300367 /* Deallocate all buffers if trouble */
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300368 usbvision_scratch_free(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300369 usbvision_decompress_free(usbvision);
370 }
371 }
372
373 /* If so far no errors then we shall start the camera */
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300374 if (!err_code) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300375 /* Send init sequence only once, it's large! */
376 if (!usbvision->initialized) {
377 int setup_ok = 0;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300378 setup_ok = usbvision_setup(usbvision, isoc_mode);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300379 if (setup_ok)
380 usbvision->initialized = 1;
381 else
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300382 err_code = -EBUSY;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300383 }
384
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300385 if (!err_code) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300386 usbvision_begin_streaming(usbvision);
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300387 err_code = usbvision_init_isoc(usbvision);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300388 /* device must be initialized before isoc transfer */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300389 usbvision_muxsel(usbvision, 0);
Hans Verkuil62e25942015-07-20 09:59:28 -0300390
391 /* prepare queues */
392 usbvision_empty_framequeues(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300393 usbvision->user++;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300394 }
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300395 }
396
Hans Verkuilfd958702015-07-20 09:59:29 -0300397unlock:
Hans Verkuil4d345702012-06-23 08:03:50 -0300398 mutex_unlock(&usbvision->v4l2_lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300399
400 PDEBUG(DBG_IO, "success");
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300401 return err_code;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300402}
403
404/*
405 * usbvision_v4l2_close()
406 *
407 * This is part of Video 4 Linux API. The procedure
408 * stops streaming and deallocates all buffers that were earlier
409 * allocated in usbvision_v4l2_open().
410 *
411 */
Hans Verkuilbec43662008-12-30 06:58:20 -0300412static int usbvision_v4l2_close(struct file *file)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300413{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300414 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300415
416 PDEBUG(DBG_IO, "close");
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300417
Hans Verkuil4d345702012-06-23 08:03:50 -0300418 mutex_lock(&usbvision->v4l2_lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300419 usbvision_audio_off(usbvision);
420 usbvision_restart_isoc(usbvision);
421 usbvision_stop_isoc(usbvision);
422
423 usbvision_decompress_free(usbvision);
Thierry MERLE38284ba2006-12-15 16:46:53 -0300424 usbvision_frames_free(usbvision);
Thierry MERLE6f78e182007-02-07 10:13:11 -0300425 usbvision_empty_framequeues(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300426 usbvision_scratch_free(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300427
428 usbvision->user--;
429
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300430 if (usbvision->remove_pending) {
Harvey Harrisond2db42d2008-04-04 20:50:07 -0300431 printk(KERN_INFO "%s: Final disconnect\n", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300432 usbvision_release(usbvision);
Dan Carpenter470a9142014-10-16 04:57:21 -0300433 return 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300434 }
Hans Verkuil4d345702012-06-23 08:03:50 -0300435 mutex_unlock(&usbvision->v4l2_lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300436
437 PDEBUG(DBG_IO, "success");
Hans Verkuilfd958702015-07-20 09:59:29 -0300438 return v4l2_fh_release(file);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300439}
440
441
442/*
443 * usbvision_ioctl()
444 *
445 * This is part of Video 4 Linux API. The procedure handles ioctl() calls.
446 *
447 */
Thierry MERLEc5f48362007-05-08 17:22:29 -0300448#ifdef CONFIG_VIDEO_ADV_DEBUG
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300449static int vidioc_g_register(struct file *file, void *priv,
Hans Verkuilaecde8b52008-12-30 07:14:19 -0300450 struct v4l2_dbg_register *reg)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300451{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300452 struct usb_usbvision *usbvision = video_drvdata(file);
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300453 int err_code;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300454
Thierry MERLEc5f48362007-05-08 17:22:29 -0300455 /* NT100x has a 8-bit register space */
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300456 err_code = usbvision_read_reg(usbvision, reg->reg&0xff);
457 if (err_code < 0) {
Hans Verkuil2aa689d2015-03-09 13:34:12 -0300458 dev_err(&usbvision->vdev.dev,
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -0300459 "%s: VIDIOC_DBG_G_REGISTER failed: error %d\n",
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300460 __func__, err_code);
461 return err_code;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300462 }
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300463 reg->val = err_code;
Hans Verkuilaecde8b52008-12-30 07:14:19 -0300464 reg->size = 1;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300465 return 0;
466}
467
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300468static int vidioc_s_register(struct file *file, void *priv,
Hans Verkuil977ba3b2013-03-24 08:28:46 -0300469 const struct v4l2_dbg_register *reg)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300470{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300471 struct usb_usbvision *usbvision = video_drvdata(file);
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300472 int err_code;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300473
Thierry MERLEc5f48362007-05-08 17:22:29 -0300474 /* NT100x has a 8-bit register space */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300475 err_code = usbvision_write_reg(usbvision, reg->reg & 0xff, reg->val);
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300476 if (err_code < 0) {
Hans Verkuil2aa689d2015-03-09 13:34:12 -0300477 dev_err(&usbvision->vdev.dev,
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -0300478 "%s: VIDIOC_DBG_S_REGISTER failed: error %d\n",
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300479 __func__, err_code);
480 return err_code;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300481 }
482 return 0;
483}
484#endif
485
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300486static int vidioc_querycap(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300487 struct v4l2_capability *vc)
488{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300489 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300490
491 strlcpy(vc->driver, "USBVision", sizeof(vc->driver));
492 strlcpy(vc->card,
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300493 usbvision_device_data[usbvision->dev_model].model_string,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300494 sizeof(vc->card));
Thierry MERLE6f2a2782009-01-20 17:40:44 -0300495 usb_make_path(usbvision->dev, vc->bus_info, sizeof(vc->bus_info));
Hans Verkuil2eb3b1a2014-11-24 06:37:23 -0300496 vc->device_caps = V4L2_CAP_VIDEO_CAPTURE |
Thierry MERLEc5f48362007-05-08 17:22:29 -0300497 V4L2_CAP_AUDIO |
498 V4L2_CAP_READWRITE |
499 V4L2_CAP_STREAMING |
500 (usbvision->have_tuner ? V4L2_CAP_TUNER : 0);
Hans Verkuil2eb3b1a2014-11-24 06:37:23 -0300501 vc->capabilities = vc->device_caps | V4L2_CAP_DEVICE_CAPS;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300502 return 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300503}
504
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300505static int vidioc_enum_input(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300506 struct v4l2_input *vi)
507{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300508 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300509 int chan;
510
Roel Kluin223ffe52009-05-02 16:38:47 -0300511 if (vi->index >= usbvision->video_inputs)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300512 return -EINVAL;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300513 if (usbvision->have_tuner)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300514 chan = vi->index;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300515 else
Hans Verkuil52cb0bf2010-12-19 20:33:51 -0300516 chan = vi->index + 1; /* skip Television string*/
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300517
Thierry MERLEc5f48362007-05-08 17:22:29 -0300518 /* Determine the requested input characteristics
519 specific for each usbvision card model */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300520 switch (chan) {
Thierry MERLEc5f48362007-05-08 17:22:29 -0300521 case 0:
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300522 if (usbvision_device_data[usbvision->dev_model].video_channels == 4) {
Thierry MERLEc5f48362007-05-08 17:22:29 -0300523 strcpy(vi->name, "White Video Input");
524 } else {
525 strcpy(vi->name, "Television");
526 vi->type = V4L2_INPUT_TYPE_TUNER;
527 vi->audioset = 1;
528 vi->tuner = chan;
529 vi->std = USBVISION_NORMS;
530 }
531 break;
532 case 1:
533 vi->type = V4L2_INPUT_TYPE_CAMERA;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300534 if (usbvision_device_data[usbvision->dev_model].video_channels == 4)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300535 strcpy(vi->name, "Green Video Input");
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300536 else
Thierry MERLEc5f48362007-05-08 17:22:29 -0300537 strcpy(vi->name, "Composite Video Input");
Thierry MERLEc5f48362007-05-08 17:22:29 -0300538 vi->std = V4L2_STD_PAL;
539 break;
540 case 2:
541 vi->type = V4L2_INPUT_TYPE_CAMERA;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300542 if (usbvision_device_data[usbvision->dev_model].video_channels == 4)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300543 strcpy(vi->name, "Yellow Video Input");
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300544 else
Thierry MERLEc5f48362007-05-08 17:22:29 -0300545 strcpy(vi->name, "S-Video Input");
Thierry MERLEc5f48362007-05-08 17:22:29 -0300546 vi->std = V4L2_STD_PAL;
547 break;
548 case 3:
549 vi->type = V4L2_INPUT_TYPE_CAMERA;
550 strcpy(vi->name, "Red Video Input");
551 vi->std = V4L2_STD_PAL;
552 break;
553 }
554 return 0;
555}
556
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300557static int vidioc_g_input(struct file *file, void *priv, unsigned int *input)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300558{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300559 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300560
561 *input = usbvision->ctl_input;
562 return 0;
563}
564
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300565static int vidioc_s_input(struct file *file, void *priv, unsigned int input)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300566{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300567 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300568
Roel Kluinf14a2972009-10-23 07:59:42 -0300569 if (input >= usbvision->video_inputs)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300570 return -EINVAL;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300571
Thierry MERLE66a17872007-06-26 16:35:30 -0300572 usbvision_muxsel(usbvision, input);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300573 usbvision_set_input(usbvision);
574 usbvision_set_output(usbvision,
575 usbvision->curwidth,
576 usbvision->curheight);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300577 return 0;
578}
579
Hans Verkuil314527a2013-03-15 06:10:40 -0300580static int vidioc_s_std(struct file *file, void *priv, v4l2_std_id id)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300581{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300582 struct usb_usbvision *usbvision = video_drvdata(file);
583
Hans Verkuil314527a2013-03-15 06:10:40 -0300584 usbvision->tvnorm_id = id;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300585
Laurent Pinchart8774bed2014-04-28 16:53:01 -0300586 call_all(usbvision, video, s_std, usbvision->tvnorm_id);
Thierry MERLE66a17872007-06-26 16:35:30 -0300587 /* propagate the change to the decoder */
588 usbvision_muxsel(usbvision, usbvision->ctl_input);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300589
590 return 0;
591}
592
Hans Verkuil3b8436d2013-06-03 05:36:47 -0300593static int vidioc_g_std(struct file *file, void *priv, v4l2_std_id *id)
594{
595 struct usb_usbvision *usbvision = video_drvdata(file);
596
597 *id = usbvision->tvnorm_id;
598 return 0;
599}
600
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300601static int vidioc_g_tuner(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300602 struct v4l2_tuner *vt)
603{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300604 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300605
Hans Verkuil52cb0bf2010-12-19 20:33:51 -0300606 if (!usbvision->have_tuner || vt->index) /* Only tuner 0 */
Thierry MERLEc5f48362007-05-08 17:22:29 -0300607 return -EINVAL;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300608 if (usbvision->radio) {
Thierry MERLEc5f48362007-05-08 17:22:29 -0300609 strcpy(vt->name, "Radio");
610 vt->type = V4L2_TUNER_RADIO;
611 } else {
612 strcpy(vt->name, "Television");
613 }
614 /* Let clients fill in the remainder of this struct */
Hans Verkuil1df79532009-02-21 18:11:31 -0300615 call_all(usbvision, tuner, g_tuner, vt);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300616
617 return 0;
618}
619
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300620static int vidioc_s_tuner(struct file *file, void *priv,
Hans Verkuil2f73c7c2013-03-15 06:10:06 -0300621 const struct v4l2_tuner *vt)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300622{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300623 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300624
Hans Verkuil52cb0bf2010-12-19 20:33:51 -0300625 /* Only no or one tuner for now */
Thierry MERLEc5f48362007-05-08 17:22:29 -0300626 if (!usbvision->have_tuner || vt->index)
627 return -EINVAL;
628 /* let clients handle this */
Hans Verkuil1df79532009-02-21 18:11:31 -0300629 call_all(usbvision, tuner, s_tuner, vt);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300630
631 return 0;
632}
633
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300634static int vidioc_g_frequency(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300635 struct v4l2_frequency *freq)
636{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300637 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300638
Hans Verkuil52cb0bf2010-12-19 20:33:51 -0300639 freq->tuner = 0; /* Only one tuner */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300640 if (usbvision->radio)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300641 freq->type = V4L2_TUNER_RADIO;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300642 else
Thierry MERLEc5f48362007-05-08 17:22:29 -0300643 freq->type = V4L2_TUNER_ANALOG_TV;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300644 freq->frequency = usbvision->freq;
645
646 return 0;
647}
648
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300649static int vidioc_s_frequency(struct file *file, void *priv,
Hans Verkuilb530a442013-03-19 04:09:26 -0300650 const struct v4l2_frequency *freq)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300651{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300652 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300653
Hans Verkuil52cb0bf2010-12-19 20:33:51 -0300654 /* Only no or one tuner for now */
Thierry MERLEc5f48362007-05-08 17:22:29 -0300655 if (!usbvision->have_tuner || freq->tuner)
656 return -EINVAL;
657
658 usbvision->freq = freq->frequency;
Hans Verkuil1df79532009-02-21 18:11:31 -0300659 call_all(usbvision, tuner, s_frequency, freq);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300660
661 return 0;
662}
663
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300664static int vidioc_g_audio(struct file *file, void *priv, struct v4l2_audio *a)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300665{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300666 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300667
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300668 if (usbvision->radio)
669 strcpy(a->name, "Radio");
670 else
Thierry MERLEc5f48362007-05-08 17:22:29 -0300671 strcpy(a->name, "TV");
Thierry MERLEc5f48362007-05-08 17:22:29 -0300672
673 return 0;
674}
675
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300676static int vidioc_s_audio(struct file *file, void *fh,
Hans Verkuil0e8025b92012-09-04 11:59:31 -0300677 const struct v4l2_audio *a)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300678{
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300679 if (a->index)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300680 return -EINVAL;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300681 return 0;
682}
683
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300684static int vidioc_reqbufs(struct file *file,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300685 void *priv, struct v4l2_requestbuffers *vr)
686{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300687 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300688 int ret;
689
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300690 RESTRICT_TO_RANGE(vr->count, 1, USBVISION_NUMFRAMES);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300691
692 /* Check input validity:
693 the user must do a VIDEO CAPTURE and MMAP method. */
Trent Piepho975f5762009-03-28 22:25:36 -0300694 if (vr->memory != V4L2_MEMORY_MMAP)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300695 return -EINVAL;
696
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300697 if (usbvision->streaming == stream_on) {
698 ret = usbvision_stream_interrupt(usbvision);
699 if (ret)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300700 return ret;
701 }
702
703 usbvision_frames_free(usbvision);
704 usbvision_empty_framequeues(usbvision);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300705 vr->count = usbvision_frames_alloc(usbvision, vr->count);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300706
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300707 usbvision->cur_frame = NULL;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300708
709 return 0;
710}
711
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300712static int vidioc_querybuf(struct file *file,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300713 void *priv, struct v4l2_buffer *vb)
714{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300715 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300716 struct usbvision_frame *frame;
717
718 /* FIXME : must control
719 that buffers are mapped (VIDIOC_REQBUFS has been called) */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300720 if (vb->index >= usbvision->num_frames)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300721 return -EINVAL;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300722 /* Updating the corresponding frame state */
Sakari Ailus1b18e7a2012-10-22 17:10:16 -0300723 vb->flags = V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300724 frame = &usbvision->frame[vb->index];
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300725 if (frame->grabstate >= frame_state_ready)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300726 vb->flags |= V4L2_BUF_FLAG_QUEUED;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300727 if (frame->grabstate >= frame_state_done)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300728 vb->flags |= V4L2_BUF_FLAG_DONE;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300729 if (frame->grabstate == frame_state_unused)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300730 vb->flags |= V4L2_BUF_FLAG_MAPPED;
731 vb->memory = V4L2_MEMORY_MMAP;
732
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300733 vb->m.offset = vb->index * PAGE_ALIGN(usbvision->max_frame_size);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300734
735 vb->memory = V4L2_MEMORY_MMAP;
736 vb->field = V4L2_FIELD_NONE;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300737 vb->length = usbvision->curwidth *
738 usbvision->curheight *
Thierry MERLEc5f48362007-05-08 17:22:29 -0300739 usbvision->palette.bytes_per_pixel;
740 vb->timestamp = usbvision->frame[vb->index].timestamp;
741 vb->sequence = usbvision->frame[vb->index].sequence;
742 return 0;
743}
744
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300745static int vidioc_qbuf(struct file *file, void *priv, struct v4l2_buffer *vb)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300746{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300747 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300748 struct usbvision_frame *frame;
749 unsigned long lock_flags;
750
751 /* FIXME : works only on VIDEO_CAPTURE MODE, MMAP. */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300752 if (vb->index >= usbvision->num_frames)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300753 return -EINVAL;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300754
755 frame = &usbvision->frame[vb->index];
756
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300757 if (frame->grabstate != frame_state_unused)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300758 return -EAGAIN;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300759
760 /* Mark it as ready and enqueue frame */
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300761 frame->grabstate = frame_state_ready;
762 frame->scanstate = scan_state_scanning;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300763 frame->scanlength = 0; /* Accumulated in usbvision_parse_data() */
764
765 vb->flags &= ~V4L2_BUF_FLAG_DONE;
766
767 /* set v4l2_format index */
768 frame->v4l2_format = usbvision->palette;
769
770 spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
771 list_add_tail(&usbvision->frame[vb->index].frame, &usbvision->inqueue);
772 spin_unlock_irqrestore(&usbvision->queue_lock, lock_flags);
773
774 return 0;
775}
776
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300777static int vidioc_dqbuf(struct file *file, void *priv, struct v4l2_buffer *vb)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300778{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300779 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300780 int ret;
781 struct usbvision_frame *f;
782 unsigned long lock_flags;
783
Thierry MERLEc5f48362007-05-08 17:22:29 -0300784 if (list_empty(&(usbvision->outqueue))) {
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300785 if (usbvision->streaming == stream_idle)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300786 return -EINVAL;
787 ret = wait_event_interruptible
788 (usbvision->wait_frame,
789 !list_empty(&(usbvision->outqueue)));
790 if (ret)
791 return ret;
792 }
793
794 spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
795 f = list_entry(usbvision->outqueue.next,
796 struct usbvision_frame, frame);
797 list_del(usbvision->outqueue.next);
798 spin_unlock_irqrestore(&usbvision->queue_lock, lock_flags);
799
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300800 f->grabstate = frame_state_unused;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300801
802 vb->memory = V4L2_MEMORY_MMAP;
803 vb->flags = V4L2_BUF_FLAG_MAPPED |
804 V4L2_BUF_FLAG_QUEUED |
Sakari Ailus1b18e7a2012-10-22 17:10:16 -0300805 V4L2_BUF_FLAG_DONE |
806 V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300807 vb->index = f->index;
808 vb->sequence = f->sequence;
809 vb->timestamp = f->timestamp;
810 vb->field = V4L2_FIELD_NONE;
811 vb->bytesused = f->scanlength;
812
813 return 0;
814}
815
816static int vidioc_streamon(struct file *file, void *priv, enum v4l2_buf_type i)
817{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300818 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300819
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300820 usbvision->streaming = stream_on;
Hans Verkuil1df79532009-02-21 18:11:31 -0300821 call_all(usbvision, video, s_stream, 1);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300822
823 return 0;
824}
825
826static int vidioc_streamoff(struct file *file,
827 void *priv, enum v4l2_buf_type type)
828{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300829 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300830
831 if (type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
832 return -EINVAL;
833
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300834 if (usbvision->streaming == stream_on) {
Thierry MERLEc5f48362007-05-08 17:22:29 -0300835 usbvision_stream_interrupt(usbvision);
836 /* Stop all video streamings */
Hans Verkuil1df79532009-02-21 18:11:31 -0300837 call_all(usbvision, video, s_stream, 0);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300838 }
839 usbvision_empty_framequeues(usbvision);
840
841 return 0;
842}
843
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300844static int vidioc_enum_fmt_vid_cap(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300845 struct v4l2_fmtdesc *vfd)
846{
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300847 if (vfd->index >= USBVISION_SUPPORTED_PALETTES - 1)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300848 return -EINVAL;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300849 strcpy(vfd->description, usbvision_v4l2_format[vfd->index].desc);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300850 vfd->pixelformat = usbvision_v4l2_format[vfd->index].format;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300851 return 0;
852}
853
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300854static int vidioc_g_fmt_vid_cap(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300855 struct v4l2_format *vf)
856{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300857 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300858 vf->fmt.pix.width = usbvision->curwidth;
859 vf->fmt.pix.height = usbvision->curheight;
860 vf->fmt.pix.pixelformat = usbvision->palette.format;
861 vf->fmt.pix.bytesperline =
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300862 usbvision->curwidth * usbvision->palette.bytes_per_pixel;
863 vf->fmt.pix.sizeimage = vf->fmt.pix.bytesperline * usbvision->curheight;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300864 vf->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
865 vf->fmt.pix.field = V4L2_FIELD_NONE; /* Always progressive image */
866
867 return 0;
868}
869
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300870static int vidioc_try_fmt_vid_cap(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300871 struct v4l2_format *vf)
872{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300873 struct usb_usbvision *usbvision = video_drvdata(file);
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300874 int format_idx;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300875
876 /* Find requested format in available ones */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300877 for (format_idx = 0; format_idx < USBVISION_SUPPORTED_PALETTES; format_idx++) {
878 if (vf->fmt.pix.pixelformat ==
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300879 usbvision_v4l2_format[format_idx].format) {
880 usbvision->palette = usbvision_v4l2_format[format_idx];
Thierry MERLEc5f48362007-05-08 17:22:29 -0300881 break;
882 }
883 }
884 /* robustness */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300885 if (format_idx == USBVISION_SUPPORTED_PALETTES)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300886 return -EINVAL;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300887 RESTRICT_TO_RANGE(vf->fmt.pix.width, MIN_FRAME_WIDTH, MAX_FRAME_WIDTH);
888 RESTRICT_TO_RANGE(vf->fmt.pix.height, MIN_FRAME_HEIGHT, MAX_FRAME_HEIGHT);
889
890 vf->fmt.pix.bytesperline = vf->fmt.pix.width*
891 usbvision->palette.bytes_per_pixel;
892 vf->fmt.pix.sizeimage = vf->fmt.pix.bytesperline*vf->fmt.pix.height;
893
894 return 0;
895}
896
Hans Verkuil78b526a2008-05-28 12:16:41 -0300897static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300898 struct v4l2_format *vf)
899{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300900 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300901 int ret;
902
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300903 ret = vidioc_try_fmt_vid_cap(file, priv, vf);
904 if (ret)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300905 return ret;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300906
907 /* stop io in case it is already in progress */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300908 if (usbvision->streaming == stream_on) {
909 ret = usbvision_stream_interrupt(usbvision);
910 if (ret)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300911 return ret;
912 }
913 usbvision_frames_free(usbvision);
914 usbvision_empty_framequeues(usbvision);
915
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300916 usbvision->cur_frame = NULL;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300917
918 /* by now we are committed to the new data... */
Thierry MERLEc5f48362007-05-08 17:22:29 -0300919 usbvision_set_output(usbvision, vf->fmt.pix.width, vf->fmt.pix.height);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300920
921 return 0;
922}
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300923
Hans Verkuil4d345702012-06-23 08:03:50 -0300924static ssize_t usbvision_read(struct file *file, char __user *buf,
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300925 size_t count, loff_t *ppos)
926{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300927 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300928 int noblock = file->f_flags & O_NONBLOCK;
929 unsigned long lock_flags;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300930 int ret, i;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300931 struct usbvision_frame *frame;
932
Harvey Harrisond2db42d2008-04-04 20:50:07 -0300933 PDEBUG(DBG_IO, "%s: %ld bytes, noblock=%d", __func__,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300934 (unsigned long)count, noblock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300935
936 if (!USBVISION_IS_OPERATIONAL(usbvision) || (buf == NULL))
937 return -EFAULT;
938
Thierry MERLEc5f48362007-05-08 17:22:29 -0300939 /* This entry point is compatible with the mmap routines
940 so that a user can do either VIDIOC_QBUF/VIDIOC_DQBUF
941 to get frames or call read on the device. */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300942 if (!usbvision->num_frames) {
Thierry MERLEc5f48362007-05-08 17:22:29 -0300943 /* First, allocate some frames to work with
944 if this has not been done with VIDIOC_REQBUF */
Thierry MERLE6f78e182007-02-07 10:13:11 -0300945 usbvision_frames_free(usbvision);
946 usbvision_empty_framequeues(usbvision);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300947 usbvision_frames_alloc(usbvision, USBVISION_NUMFRAMES);
Thierry MERLE6f78e182007-02-07 10:13:11 -0300948 }
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300949
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300950 if (usbvision->streaming != stream_on) {
Thierry MERLE6f78e182007-02-07 10:13:11 -0300951 /* no stream is running, make it running ! */
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300952 usbvision->streaming = stream_on;
Hans Verkuil1df79532009-02-21 18:11:31 -0300953 call_all(usbvision, video, s_stream, 1);
Thierry MERLE6f78e182007-02-07 10:13:11 -0300954 }
955
Thierry MERLEc5f48362007-05-08 17:22:29 -0300956 /* Then, enqueue as many frames as possible
957 (like a user of VIDIOC_QBUF would do) */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300958 for (i = 0; i < usbvision->num_frames; i++) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300959 frame = &usbvision->frame[i];
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300960 if (frame->grabstate == frame_state_unused) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300961 /* Mark it as ready and enqueue frame */
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300962 frame->grabstate = frame_state_ready;
963 frame->scanstate = scan_state_scanning;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300964 /* Accumulated in usbvision_parse_data() */
965 frame->scanlength = 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300966
967 /* set v4l2_format index */
968 frame->v4l2_format = usbvision->palette;
969
970 spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
971 list_add_tail(&frame->frame, &usbvision->inqueue);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300972 spin_unlock_irqrestore(&usbvision->queue_lock,
973 lock_flags);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300974 }
975 }
976
977 /* Then try to steal a frame (like a VIDIOC_DQBUF would do) */
978 if (list_empty(&(usbvision->outqueue))) {
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300979 if (noblock)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300980 return -EAGAIN;
981
982 ret = wait_event_interruptible
983 (usbvision->wait_frame,
984 !list_empty(&(usbvision->outqueue)));
985 if (ret)
986 return ret;
987 }
988
989 spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
990 frame = list_entry(usbvision->outqueue.next,
991 struct usbvision_frame, frame);
992 list_del(usbvision->outqueue.next);
993 spin_unlock_irqrestore(&usbvision->queue_lock, lock_flags);
994
995 /* An error returns an empty frame */
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300996 if (frame->grabstate == frame_state_error) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300997 frame->bytes_read = 0;
998 return 0;
999 }
1000
Thierry MERLEc5f48362007-05-08 17:22:29 -03001001 PDEBUG(DBG_IO, "%s: frmx=%d, bytes_read=%ld, scanlength=%ld",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001002 __func__,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001003 frame->index, frame->bytes_read, frame->scanlength);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001004
1005 /* copy bytes to user space; we allow for partials reads */
1006 if ((count + frame->bytes_read) > (unsigned long)frame->scanlength)
1007 count = frame->scanlength - frame->bytes_read;
1008
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001009 if (copy_to_user(buf, frame->data + frame->bytes_read, count))
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001010 return -EFAULT;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001011
1012 frame->bytes_read += count;
Thierry MERLEc5f48362007-05-08 17:22:29 -03001013 PDEBUG(DBG_IO, "%s: {copy} count used=%ld, new bytes_read=%ld",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001014 __func__,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001015 (unsigned long)count, frame->bytes_read);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001016
Mauro Carvalho Chehabb295e5c2015-06-05 10:47:36 -03001017#if 1
1018 /*
1019 * FIXME:
1020 * For now, forget the frame if it has not been read in one shot.
1021 */
1022 frame->bytes_read = 0;
1023
1024 /* Mark it as available to be used again. */
1025 frame->grabstate = frame_state_unused;
1026#else
1027 if (frame->bytes_read >= frame->scanlength) {
1028 /* All data has been read */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001029 frame->bytes_read = 0;
1030
1031 /* Mark it as available to be used again. */
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001032 frame->grabstate = frame_state_unused;
Mauro Carvalho Chehabb295e5c2015-06-05 10:47:36 -03001033 }
1034#endif
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001035
1036 return count;
1037}
1038
Hans Verkuil4d345702012-06-23 08:03:50 -03001039static ssize_t usbvision_v4l2_read(struct file *file, char __user *buf,
1040 size_t count, loff_t *ppos)
1041{
1042 struct usb_usbvision *usbvision = video_drvdata(file);
1043 int res;
1044
1045 if (mutex_lock_interruptible(&usbvision->v4l2_lock))
1046 return -ERESTARTSYS;
1047 res = usbvision_read(file, buf, count, ppos);
1048 mutex_unlock(&usbvision->v4l2_lock);
1049 return res;
1050}
1051
1052static int usbvision_mmap(struct file *file, struct vm_area_struct *vma)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001053{
1054 unsigned long size = vma->vm_end - vma->vm_start,
1055 start = vma->vm_start;
1056 void *pos;
1057 u32 i;
Hans Verkuilc170ecf2008-08-23 08:32:09 -03001058 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001059
Thierry MERLE6f78e182007-02-07 10:13:11 -03001060 PDEBUG(DBG_MMAP, "mmap");
1061
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001062 if (!USBVISION_IS_OPERATIONAL(usbvision))
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001063 return -EFAULT;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001064
1065 if (!(vma->vm_flags & VM_WRITE) ||
Thierry MERLE6f78e182007-02-07 10:13:11 -03001066 size != PAGE_ALIGN(usbvision->max_frame_size)) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001067 return -EINVAL;
1068 }
1069
Thierry MERLE6f78e182007-02-07 10:13:11 -03001070 for (i = 0; i < usbvision->num_frames; i++) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001071 if (((PAGE_ALIGN(usbvision->max_frame_size)*i) >> PAGE_SHIFT) ==
1072 vma->vm_pgoff)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001073 break;
1074 }
Thierry MERLE6f78e182007-02-07 10:13:11 -03001075 if (i == usbvision->num_frames) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001076 PDEBUG(DBG_MMAP,
1077 "mmap: user supplied mapping address is out of range");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001078 return -EINVAL;
1079 }
1080
1081 /* VM_IO is eventually going to replace PageReserved altogether */
Konstantin Khlebnikov314e51b2012-10-08 16:29:02 -07001082 vma->vm_flags |= VM_IO | VM_DONTEXPAND | VM_DONTDUMP;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001083
1084 pos = usbvision->frame[i].data;
1085 while (size > 0) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001086 if (vm_insert_page(vma, start, vmalloc_to_page(pos))) {
Thierry MERLEc876a342006-12-09 16:42:54 -03001087 PDEBUG(DBG_MMAP, "mmap: vm_insert_page failed");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001088 return -EAGAIN;
1089 }
1090 start += PAGE_SIZE;
1091 pos += PAGE_SIZE;
1092 size -= PAGE_SIZE;
1093 }
1094
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001095 return 0;
1096}
1097
Hans Verkuil4d345702012-06-23 08:03:50 -03001098static int usbvision_v4l2_mmap(struct file *file, struct vm_area_struct *vma)
1099{
1100 struct usb_usbvision *usbvision = video_drvdata(file);
1101 int res;
1102
1103 if (mutex_lock_interruptible(&usbvision->v4l2_lock))
1104 return -ERESTARTSYS;
1105 res = usbvision_mmap(file, vma);
1106 mutex_unlock(&usbvision->v4l2_lock);
1107 return res;
1108}
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001109
1110/*
1111 * Here comes the stuff for radio on usbvision based devices
1112 *
1113 */
Hans Verkuilbec43662008-12-30 06:58:20 -03001114static int usbvision_radio_open(struct file *file)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001115{
Hans Verkuilc170ecf2008-08-23 08:32:09 -03001116 struct usb_usbvision *usbvision = video_drvdata(file);
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001117 int err_code = 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001118
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001119 PDEBUG(DBG_IO, "%s:", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001120
Hans Verkuil4d345702012-06-23 08:03:50 -03001121 if (mutex_lock_interruptible(&usbvision->v4l2_lock))
1122 return -ERESTARTSYS;
Hans Verkuilfd958702015-07-20 09:59:29 -03001123 err_code = v4l2_fh_open(file);
1124 if (err_code)
1125 goto out;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001126 if (usbvision->user) {
Hans Verkuil2aa689d2015-03-09 13:34:12 -03001127 dev_err(&usbvision->rdev.dev,
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001128 "%s: Someone tried to open an already opened USBVision Radio!\n",
1129 __func__);
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001130 err_code = -EBUSY;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001131 } else {
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001132 /* Alternate interface 1 is is the biggest frame size */
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001133 err_code = usbvision_set_alternate(usbvision);
1134 if (err_code < 0) {
1135 usbvision->last_error = err_code;
1136 err_code = -EBUSY;
Andrew Morton544e6172007-12-12 18:25:23 -03001137 goto out;
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001138 }
1139
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001140 /* If so far no errors then we shall start the radio */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001141 usbvision->radio = 1;
Hans Verkuil1df79532009-02-21 18:11:31 -03001142 call_all(usbvision, tuner, s_radio);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001143 usbvision_set_audio(usbvision, USBVISION_AUDIO_RADIO);
1144 usbvision->user++;
1145 }
Andrew Morton544e6172007-12-12 18:25:23 -03001146out:
Hans Verkuil4d345702012-06-23 08:03:50 -03001147 mutex_unlock(&usbvision->v4l2_lock);
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001148 return err_code;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001149}
1150
1151
Hans Verkuilbec43662008-12-30 06:58:20 -03001152static int usbvision_radio_close(struct file *file)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001153{
Hans Verkuilc170ecf2008-08-23 08:32:09 -03001154 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001155
1156 PDEBUG(DBG_IO, "");
1157
Hans Verkuil4d345702012-06-23 08:03:50 -03001158 mutex_lock(&usbvision->v4l2_lock);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001159 /* Set packet size to 0 */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001160 usbvision->iface_alt = 0;
Hans Verkuilfd958702015-07-20 09:59:29 -03001161 usb_set_interface(usbvision->dev, usbvision->iface,
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001162 usbvision->iface_alt);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001163
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001164 usbvision_audio_off(usbvision);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001165 usbvision->radio = 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001166 usbvision->user--;
1167
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001168 if (usbvision->remove_pending) {
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001169 printk(KERN_INFO "%s: Final disconnect\n", __func__);
Hans Verkuilfd958702015-07-20 09:59:29 -03001170 v4l2_fh_release(file);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001171 usbvision_release(usbvision);
Hans Verkuilfd958702015-07-20 09:59:29 -03001172 return 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001173 }
1174
Hans Verkuil4d345702012-06-23 08:03:50 -03001175 mutex_unlock(&usbvision->v4l2_lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001176 PDEBUG(DBG_IO, "success");
Hans Verkuilfd958702015-07-20 09:59:29 -03001177 return v4l2_fh_release(file);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001178}
1179
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001180/* Video registration stuff */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001181
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001182/* Video template */
Hans Verkuilbec43662008-12-30 06:58:20 -03001183static const struct v4l2_file_operations usbvision_fops = {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001184 .owner = THIS_MODULE,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001185 .open = usbvision_v4l2_open,
1186 .release = usbvision_v4l2_close,
1187 .read = usbvision_v4l2_read,
1188 .mmap = usbvision_v4l2_mmap,
Hans Verkuilc627b9d2010-12-18 11:06:09 -03001189 .unlocked_ioctl = video_ioctl2,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001190};
Hans Verkuila3998102008-07-21 02:57:38 -03001191
1192static const struct v4l2_ioctl_ops usbvision_ioctl_ops = {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001193 .vidioc_querycap = vidioc_querycap,
Hans Verkuil78b526a2008-05-28 12:16:41 -03001194 .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap,
1195 .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap,
1196 .vidioc_try_fmt_vid_cap = vidioc_try_fmt_vid_cap,
1197 .vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001198 .vidioc_reqbufs = vidioc_reqbufs,
1199 .vidioc_querybuf = vidioc_querybuf,
1200 .vidioc_qbuf = vidioc_qbuf,
1201 .vidioc_dqbuf = vidioc_dqbuf,
1202 .vidioc_s_std = vidioc_s_std,
Hans Verkuil3b8436d2013-06-03 05:36:47 -03001203 .vidioc_g_std = vidioc_g_std,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001204 .vidioc_enum_input = vidioc_enum_input,
1205 .vidioc_g_input = vidioc_g_input,
1206 .vidioc_s_input = vidioc_s_input,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001207 .vidioc_g_audio = vidioc_g_audio,
Al Viroed4d6372007-09-26 01:53:42 +01001208 .vidioc_s_audio = vidioc_s_audio,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001209 .vidioc_streamon = vidioc_streamon,
1210 .vidioc_streamoff = vidioc_streamoff,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001211 .vidioc_g_tuner = vidioc_g_tuner,
1212 .vidioc_s_tuner = vidioc_s_tuner,
1213 .vidioc_g_frequency = vidioc_g_frequency,
1214 .vidioc_s_frequency = vidioc_s_frequency,
Hans Verkuilfd958702015-07-20 09:59:29 -03001215 .vidioc_log_status = v4l2_ctrl_log_status,
1216 .vidioc_subscribe_event = v4l2_ctrl_subscribe_event,
1217 .vidioc_unsubscribe_event = v4l2_event_unsubscribe,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001218#ifdef CONFIG_VIDEO_ADV_DEBUG
1219 .vidioc_g_register = vidioc_g_register,
1220 .vidioc_s_register = vidioc_s_register,
1221#endif
Hans Verkuila3998102008-07-21 02:57:38 -03001222};
1223
1224static struct video_device usbvision_video_template = {
Hans Verkuila3998102008-07-21 02:57:38 -03001225 .fops = &usbvision_fops,
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001226 .ioctl_ops = &usbvision_ioctl_ops,
Hans Verkuila3998102008-07-21 02:57:38 -03001227 .name = "usbvision-video",
Hans Verkuil2aa689d2015-03-09 13:34:12 -03001228 .release = video_device_release_empty,
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001229 .tvnorms = USBVISION_NORMS,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001230};
1231
1232
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001233/* Radio template */
Hans Verkuilbec43662008-12-30 06:58:20 -03001234static const struct v4l2_file_operations usbvision_radio_fops = {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001235 .owner = THIS_MODULE,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001236 .open = usbvision_radio_open,
1237 .release = usbvision_radio_close,
Hans Verkuilfd958702015-07-20 09:59:29 -03001238 .poll = v4l2_ctrl_poll,
Hans Verkuilc627b9d2010-12-18 11:06:09 -03001239 .unlocked_ioctl = video_ioctl2,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001240};
1241
Hans Verkuila3998102008-07-21 02:57:38 -03001242static const struct v4l2_ioctl_ops usbvision_radio_ioctl_ops = {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001243 .vidioc_querycap = vidioc_querycap,
1244 .vidioc_enum_input = vidioc_enum_input,
1245 .vidioc_g_input = vidioc_g_input,
1246 .vidioc_s_input = vidioc_s_input,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001247 .vidioc_g_audio = vidioc_g_audio,
Al Viroed4d6372007-09-26 01:53:42 +01001248 .vidioc_s_audio = vidioc_s_audio,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001249 .vidioc_g_tuner = vidioc_g_tuner,
1250 .vidioc_s_tuner = vidioc_s_tuner,
1251 .vidioc_g_frequency = vidioc_g_frequency,
1252 .vidioc_s_frequency = vidioc_s_frequency,
Hans Verkuilfd958702015-07-20 09:59:29 -03001253 .vidioc_log_status = v4l2_ctrl_log_status,
1254 .vidioc_subscribe_event = v4l2_ctrl_subscribe_event,
1255 .vidioc_unsubscribe_event = v4l2_event_unsubscribe,
Hans Verkuila3998102008-07-21 02:57:38 -03001256};
1257
1258static struct video_device usbvision_radio_template = {
Hans Verkuila3998102008-07-21 02:57:38 -03001259 .fops = &usbvision_radio_fops,
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001260 .name = "usbvision-radio",
Hans Verkuil2aa689d2015-03-09 13:34:12 -03001261 .release = video_device_release_empty,
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001262 .ioctl_ops = &usbvision_radio_ioctl_ops,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001263};
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001264
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001265
Hans Verkuil2aa689d2015-03-09 13:34:12 -03001266static void usbvision_vdev_init(struct usb_usbvision *usbvision,
1267 struct video_device *vdev,
1268 const struct video_device *vdev_template,
1269 const char *name)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001270{
1271 struct usb_device *usb_dev = usbvision->dev;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001272
1273 if (usb_dev == NULL) {
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001274 dev_err(&usbvision->dev->dev,
1275 "%s: usbvision->dev is not set\n", __func__);
Hans Verkuil2aa689d2015-03-09 13:34:12 -03001276 return;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001277 }
1278
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001279 *vdev = *vdev_template;
Hans Verkuilc627b9d2010-12-18 11:06:09 -03001280 vdev->lock = &usbvision->v4l2_lock;
Hans Verkuil1df79532009-02-21 18:11:31 -03001281 vdev->v4l2_dev = &usbvision->v4l2_dev;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001282 snprintf(vdev->name, sizeof(vdev->name), "%s", name);
1283 video_set_drvdata(vdev, usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001284}
1285
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001286/* unregister video4linux devices */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001287static void usbvision_unregister_video(struct usb_usbvision *usbvision)
1288{
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001289 /* Radio Device: */
Hans Verkuil2aa689d2015-03-09 13:34:12 -03001290 if (video_is_registered(&usbvision->rdev)) {
Laurent Pinchart38c7c032009-11-27 13:57:15 -03001291 PDEBUG(DBG_PROBE, "unregister %s [v4l2]",
Hans Verkuil2aa689d2015-03-09 13:34:12 -03001292 video_device_node_name(&usbvision->rdev));
1293 video_unregister_device(&usbvision->rdev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001294 }
1295
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001296 /* Video Device: */
Hans Verkuil2aa689d2015-03-09 13:34:12 -03001297 if (video_is_registered(&usbvision->vdev)) {
Laurent Pinchart38c7c032009-11-27 13:57:15 -03001298 PDEBUG(DBG_PROBE, "unregister %s [v4l2]",
Hans Verkuil2aa689d2015-03-09 13:34:12 -03001299 video_device_node_name(&usbvision->vdev));
1300 video_unregister_device(&usbvision->vdev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001301 }
1302}
1303
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001304/* register video4linux devices */
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08001305static int usbvision_register_video(struct usb_usbvision *usbvision)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001306{
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001307 /* Video Device: */
Hans Verkuil2aa689d2015-03-09 13:34:12 -03001308 usbvision_vdev_init(usbvision, &usbvision->vdev,
1309 &usbvision_video_template, "USBVision Video");
1310 if (video_register_device(&usbvision->vdev, VFL_TYPE_GRABBER, video_nr) < 0)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001311 goto err_exit;
Laurent Pinchart38c7c032009-11-27 13:57:15 -03001312 printk(KERN_INFO "USBVision[%d]: registered USBVision Video device %s [v4l2]\n",
Hans Verkuil2aa689d2015-03-09 13:34:12 -03001313 usbvision->nr, video_device_node_name(&usbvision->vdev));
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001314
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001315 /* Radio Device: */
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001316 if (usbvision_device_data[usbvision->dev_model].radio) {
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001317 /* usbvision has radio */
Hans Verkuil2aa689d2015-03-09 13:34:12 -03001318 usbvision_vdev_init(usbvision, &usbvision->rdev,
1319 &usbvision_radio_template, "USBVision Radio");
1320 if (video_register_device(&usbvision->rdev, VFL_TYPE_RADIO, radio_nr) < 0)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001321 goto err_exit;
Laurent Pinchart38c7c032009-11-27 13:57:15 -03001322 printk(KERN_INFO "USBVision[%d]: registered USBVision Radio device %s [v4l2]\n",
Hans Verkuil2aa689d2015-03-09 13:34:12 -03001323 usbvision->nr, video_device_node_name(&usbvision->rdev));
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001324 }
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001325 /* all done */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001326 return 0;
1327
1328 err_exit:
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001329 dev_err(&usbvision->dev->dev,
1330 "USBVision[%d]: video_register_device() failed\n",
1331 usbvision->nr);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001332 usbvision_unregister_video(usbvision);
1333 return -1;
1334}
1335
1336/*
1337 * usbvision_alloc()
1338 *
Thierry MERLEc5f48362007-05-08 17:22:29 -03001339 * This code allocates the struct usb_usbvision.
1340 * It is filled with default values.
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001341 *
1342 * Returns NULL on error, a pointer to usb_usbvision else.
1343 *
1344 */
Janne Grunaua8784402009-04-01 08:46:00 -03001345static struct usb_usbvision *usbvision_alloc(struct usb_device *dev,
1346 struct usb_interface *intf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001347{
1348 struct usb_usbvision *usbvision;
1349
Hans Verkuil1df79532009-02-21 18:11:31 -03001350 usbvision = kzalloc(sizeof(struct usb_usbvision), GFP_KERNEL);
1351 if (usbvision == NULL)
1352 return NULL;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001353
1354 usbvision->dev = dev;
Janne Grunaua8784402009-04-01 08:46:00 -03001355 if (v4l2_device_register(&intf->dev, &usbvision->v4l2_dev))
Hans Verkuil1df79532009-02-21 18:11:31 -03001356 goto err_free;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001357
Hans Verkuilfd958702015-07-20 09:59:29 -03001358 if (v4l2_ctrl_handler_init(&usbvision->hdl, 4))
1359 goto err_unreg;
1360 usbvision->v4l2_dev.ctrl_handler = &usbvision->hdl;
Hans Verkuilc627b9d2010-12-18 11:06:09 -03001361 mutex_init(&usbvision->v4l2_lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001362
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001363 /* prepare control urb for control messages during interrupts */
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001364 usbvision->ctrl_urb = usb_alloc_urb(USBVISION_URB_FRAMES, GFP_KERNEL);
1365 if (usbvision->ctrl_urb == NULL)
Hans Verkuil1df79532009-02-21 18:11:31 -03001366 goto err_unreg;
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001367 init_waitqueue_head(&usbvision->ctrl_urb_wq);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001368
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001369 return usbvision;
1370
Hans Verkuil1df79532009-02-21 18:11:31 -03001371err_unreg:
Hans Verkuilfd958702015-07-20 09:59:29 -03001372 v4l2_ctrl_handler_free(&usbvision->hdl);
Hans Verkuil1df79532009-02-21 18:11:31 -03001373 v4l2_device_unregister(&usbvision->v4l2_dev);
1374err_free:
1375 kfree(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001376 return NULL;
1377}
1378
1379/*
1380 * usbvision_release()
1381 *
1382 * This code does final release of struct usb_usbvision. This happens
1383 * after the device is disconnected -and- all clients closed their files.
1384 *
1385 */
1386static void usbvision_release(struct usb_usbvision *usbvision)
1387{
1388 PDEBUG(DBG_PROBE, "");
1389
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001390 usbvision->initialized = 0;
1391
Hans Verkuil2aa689d2015-03-09 13:34:12 -03001392 usbvision_remove_sysfs(&usbvision->vdev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001393 usbvision_unregister_video(usbvision);
Alexey Khoroshilov090c65b2013-06-10 17:32:29 -03001394 kfree(usbvision->alt_max_pkt_size);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001395
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001396 usb_free_urb(usbvision->ctrl_urb);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001397
Hans Verkuilfd958702015-07-20 09:59:29 -03001398 v4l2_ctrl_handler_free(&usbvision->hdl);
Hans Verkuil1df79532009-02-21 18:11:31 -03001399 v4l2_device_unregister(&usbvision->v4l2_dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001400 kfree(usbvision);
1401
1402 PDEBUG(DBG_PROBE, "success");
1403}
1404
1405
Thierry MERLEc5f48362007-05-08 17:22:29 -03001406/*********************** usb interface **********************************/
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001407
1408static void usbvision_configure_video(struct usb_usbvision *usbvision)
1409{
Thierry MERLEc5f48362007-05-08 17:22:29 -03001410 int model;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001411
1412 if (usbvision == NULL)
1413 return;
1414
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001415 model = usbvision->dev_model;
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001416 usbvision->palette = usbvision_v4l2_format[2]; /* V4L2_PIX_FMT_RGB24; */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001417
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001418 if (usbvision_device_data[usbvision->dev_model].vin_reg2_override) {
1419 usbvision->vin_reg2_preset =
1420 usbvision_device_data[usbvision->dev_model].vin_reg2;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001421 } else {
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001422 usbvision->vin_reg2_preset = 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001423 }
1424
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001425 usbvision->tvnorm_id = usbvision_device_data[model].video_norm;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001426
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001427 usbvision->video_inputs = usbvision_device_data[model].video_channels;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001428 usbvision->ctl_input = 0;
1429
1430 /* This should be here to make i2c clients to be able to register */
Thierry MERLEc5f48362007-05-08 17:22:29 -03001431 /* first switch off audio */
Ondrej Zary240d57b2011-04-27 17:36:05 -03001432 if (usbvision_device_data[model].audio_channels > 0)
1433 usbvision_audio_off(usbvision);
Hans Verkuil62e25942015-07-20 09:59:28 -03001434 /* and then power up the tuner */
1435 usbvision_power_on(usbvision);
1436 usbvision_i2c_register(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001437}
1438
1439/*
1440 * usbvision_probe()
1441 *
1442 * This procedure queries device descriptor and accepts the interface
1443 * if it looks like USBVISION video device
1444 *
1445 */
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08001446static int usbvision_probe(struct usb_interface *intf,
1447 const struct usb_device_id *devid)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001448{
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001449 struct usb_device *dev = usb_get_dev(interface_to_usbdev(intf));
1450 struct usb_interface *uif;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001451 __u8 ifnum = intf->altsetting->desc.bInterfaceNumber;
1452 const struct usb_host_interface *interface;
1453 struct usb_usbvision *usbvision = NULL;
1454 const struct usb_endpoint_descriptor *endpoint;
Alexey Khoroshilovafd270d2015-03-27 19:39:09 -03001455 int model, i, ret;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001456
1457 PDEBUG(DBG_PROBE, "VID=%#04x, PID=%#04x, ifnum=%u",
Mauro Carvalho Chehab659ae562007-04-14 15:09:59 -03001458 dev->descriptor.idVendor,
1459 dev->descriptor.idProduct, ifnum);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001460
Mauro Carvalho Chehab659ae562007-04-14 15:09:59 -03001461 model = devid->driver_info;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001462 if (model < 0 || model >= usbvision_device_data_size) {
1463 PDEBUG(DBG_PROBE, "model out of bounds %d", model);
Alexey Khoroshilovafd270d2015-03-27 19:39:09 -03001464 ret = -ENODEV;
1465 goto err_usb;
Mauro Carvalho Chehabf8a389d2007-04-14 15:17:35 -03001466 }
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001467 printk(KERN_INFO "%s: %s found\n", __func__,
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001468 usbvision_device_data[model].model_string);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001469
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001470 if (usbvision_device_data[model].interface >= 0)
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001471 interface = &dev->actconfig->interface[usbvision_device_data[model].interface]->altsetting[0];
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001472 else
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001473 interface = &dev->actconfig->interface[ifnum]->altsetting[0];
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001474 endpoint = &interface->endpoint[1].desc;
Julia Lawall2230c3c2009-01-03 16:53:10 -03001475 if (!usb_endpoint_xfer_isoc(endpoint)) {
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001476 dev_err(&intf->dev, "%s: interface %d. has non-ISO endpoint!\n",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001477 __func__, ifnum);
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001478 dev_err(&intf->dev, "%s: Endpoint attributes %d",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001479 __func__, endpoint->bmAttributes);
Alexey Khoroshilovafd270d2015-03-27 19:39:09 -03001480 ret = -ENODEV;
1481 goto err_usb;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001482 }
Julia Lawall13417982008-12-29 21:49:22 -03001483 if (usb_endpoint_dir_out(endpoint)) {
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001484 dev_err(&intf->dev, "%s: interface %d. has ISO OUT endpoint!\n",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001485 __func__, ifnum);
Alexey Khoroshilovafd270d2015-03-27 19:39:09 -03001486 ret = -ENODEV;
1487 goto err_usb;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001488 }
1489
Janne Grunaua8784402009-04-01 08:46:00 -03001490 usbvision = usbvision_alloc(dev, intf);
1491 if (usbvision == NULL) {
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001492 dev_err(&intf->dev, "%s: couldn't allocate USBVision struct\n", __func__);
Alexey Khoroshilovafd270d2015-03-27 19:39:09 -03001493 ret = -ENOMEM;
1494 goto err_usb;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001495 }
Mauro Carvalho Chehab659ae562007-04-14 15:09:59 -03001496
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001497 if (dev->descriptor.bNumConfigurations > 1)
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001498 usbvision->bridge_type = BRIDGE_NT1004;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001499 else if (model == DAZZLE_DVC_90_REV_1_SECAM)
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001500 usbvision->bridge_type = BRIDGE_NT1005;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001501 else
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001502 usbvision->bridge_type = BRIDGE_NT1003;
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001503 PDEBUG(DBG_PROBE, "bridge_type %d", usbvision->bridge_type);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001504
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001505 /* compute alternate max packet sizes */
1506 uif = dev->actconfig->interface[0];
1507
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001508 usbvision->num_alt = uif->num_altsetting;
1509 PDEBUG(DBG_PROBE, "Alternate settings: %i", usbvision->num_alt);
1510 usbvision->alt_max_pkt_size = kmalloc(32 * usbvision->num_alt, GFP_KERNEL);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001511 if (usbvision->alt_max_pkt_size == NULL) {
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001512 dev_err(&intf->dev, "usbvision: out of memory!\n");
Alexey Khoroshilovafd270d2015-03-27 19:39:09 -03001513 ret = -ENOMEM;
1514 goto err_pkt;
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001515 }
1516
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001517 for (i = 0; i < usbvision->num_alt; i++) {
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001518 u16 tmp = le16_to_cpu(uif->altsetting[i].endpoint[1].desc.
1519 wMaxPacketSize);
1520 usbvision->alt_max_pkt_size[i] =
1521 (tmp & 0x07ff) * (((tmp & 0x1800) >> 11) + 1);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001522 PDEBUG(DBG_PROBE, "Alternate setting %i, max size= %i", i,
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001523 usbvision->alt_max_pkt_size[i]);
1524 }
1525
1526
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001527 usbvision->nr = usbvision_nr++;
1528
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001529 usbvision->have_tuner = usbvision_device_data[model].tuner;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001530 if (usbvision->have_tuner)
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001531 usbvision->tuner_type = usbvision_device_data[model].tuner_type;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001532
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001533 usbvision->dev_model = model;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001534 usbvision->remove_pending = 0;
1535 usbvision->iface = ifnum;
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001536 usbvision->iface_alt = 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001537 usbvision->video_endp = endpoint->bEndpointAddress;
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001538 usbvision->isoc_packet_size = 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001539 usbvision->usb_bandwidth = 0;
1540 usbvision->user = 0;
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001541 usbvision->streaming = stream_off;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001542 usbvision_configure_video(usbvision);
Hans Verkuil84034722010-09-17 15:07:28 -03001543 usbvision_register_video(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001544
Hans Verkuil2aa689d2015-03-09 13:34:12 -03001545 usbvision_create_sysfs(&usbvision->vdev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001546
1547 PDEBUG(DBG_PROBE, "success");
1548 return 0;
Alexey Khoroshilovafd270d2015-03-27 19:39:09 -03001549
1550err_pkt:
1551 usbvision_release(usbvision);
1552err_usb:
1553 usb_put_dev(dev);
1554 return ret;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001555}
1556
1557
1558/*
1559 * usbvision_disconnect()
1560 *
1561 * This procedure stops all driver activity, deallocates interface-private
1562 * structure (pointed by 'ptr') and after that driver should be removable
1563 * with no ill consequences.
1564 *
1565 */
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08001566static void usbvision_disconnect(struct usb_interface *intf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001567{
Hans Verkuilaeb506a2010-05-02 09:00:13 -03001568 struct usb_usbvision *usbvision = to_usbvision(usb_get_intfdata(intf));
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001569
1570 PDEBUG(DBG_PROBE, "");
1571
1572 if (usbvision == NULL) {
Julia Lawall42020662010-05-27 09:36:45 -03001573 pr_err("%s: usb_get_intfdata() failed\n", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001574 return;
1575 }
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001576
Hans Verkuilc627b9d2010-12-18 11:06:09 -03001577 mutex_lock(&usbvision->v4l2_lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001578
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001579 /* At this time we ask to cancel outstanding URBs */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001580 usbvision_stop_isoc(usbvision);
1581
Hans Verkuilf1ba28c2009-03-14 12:27:01 -03001582 v4l2_device_disconnect(&usbvision->v4l2_dev);
Hans Verkuil62e25942015-07-20 09:59:28 -03001583 usbvision_i2c_unregister(usbvision);
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001584 usbvision->remove_pending = 1; /* Now all ISO data will be ignored */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001585
1586 usb_put_dev(usbvision->dev);
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001587 usbvision->dev = NULL; /* USB device is no more */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001588
Hans Verkuilc627b9d2010-12-18 11:06:09 -03001589 mutex_unlock(&usbvision->v4l2_lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001590
1591 if (usbvision->user) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001592 printk(KERN_INFO "%s: In use, disconnect pending\n",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001593 __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001594 wake_up_interruptible(&usbvision->wait_frame);
1595 wake_up_interruptible(&usbvision->wait_stream);
Thierry MERLEc5f48362007-05-08 17:22:29 -03001596 } else {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001597 usbvision_release(usbvision);
1598 }
1599
1600 PDEBUG(DBG_PROBE, "success");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001601}
1602
1603static struct usb_driver usbvision_driver = {
1604 .name = "usbvision",
1605 .id_table = usbvision_table,
1606 .probe = usbvision_probe,
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08001607 .disconnect = usbvision_disconnect,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001608};
1609
1610/*
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001611 * usbvision_init()
1612 *
1613 * This code is run to initialize the driver.
1614 *
1615 */
1616static int __init usbvision_init(void)
1617{
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001618 int err_code;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001619
1620 PDEBUG(DBG_PROBE, "");
1621
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001622 PDEBUG(DBG_IO, "IO debugging is enabled [video]");
1623 PDEBUG(DBG_PROBE, "PROBE debugging is enabled [video]");
Thierry MERLEc876a342006-12-09 16:42:54 -03001624 PDEBUG(DBG_MMAP, "MMAP debugging is enabled [video]");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001625
1626 /* disable planar mode support unless compression enabled */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001627 if (isoc_mode != ISOC_MODE_COMPRESS) {
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001628 /* FIXME : not the right way to set supported flag */
1629 usbvision_v4l2_format[6].supported = 0; /* V4L2_PIX_FMT_YVU420 */
1630 usbvision_v4l2_format[7].supported = 0; /* V4L2_PIX_FMT_YUV422P */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001631 }
1632
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001633 err_code = usb_register(&usbvision_driver);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001634
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001635 if (err_code == 0) {
Dwaine Gardende6a1b82007-01-07 21:13:55 -03001636 printk(KERN_INFO DRIVER_DESC " : " USBVISION_VERSION_STRING "\n");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001637 PDEBUG(DBG_PROBE, "success");
1638 }
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001639 return err_code;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001640}
1641
1642static void __exit usbvision_exit(void)
1643{
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001644 PDEBUG(DBG_PROBE, "");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001645
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001646 usb_deregister(&usbvision_driver);
1647 PDEBUG(DBG_PROBE, "success");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001648}
1649
1650module_init(usbvision_init);
1651module_exit(usbvision_exit);