blob: 6083137f0bf87d5c5b1a07408eba01f1b9cd8f4c [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
Mauro Carvalho Chehabf30ebd42006-12-09 12:32:18 -030048#include <linux/version.h>
Thierry MERLE483dfdb2006-12-04 08:31:45 -030049#include <linux/kernel.h>
Thierry MERLE483dfdb2006-12-04 08:31:45 -030050#include <linux/list.h>
51#include <linux/timer.h>
52#include <linux/slab.h>
53#include <linux/mm.h>
Thierry MERLE483dfdb2006-12-04 08:31:45 -030054#include <linux/highmem.h>
Thierry MERLE483dfdb2006-12-04 08:31:45 -030055#include <linux/vmalloc.h>
56#include <linux/module.h>
57#include <linux/init.h>
58#include <linux/spinlock.h>
Hans Verkuil6d6a48e2010-12-29 13:53:21 -030059#include <linux/io.h>
Thierry MERLE483dfdb2006-12-04 08:31:45 -030060#include <linux/videodev2.h>
Thierry MERLE483dfdb2006-12-04 08:31:45 -030061#include <linux/i2c.h>
62
63#include <media/saa7115.h>
64#include <media/v4l2-common.h>
Hans Verkuil35ea11f2008-07-20 08:12:02 -030065#include <media/v4l2-ioctl.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
Hans Verkuil6d6a48e2010-12-29 13:53:21 -030073#define DRIVER_AUTHOR "Joerg Heckenbach <joerg@heckenbach-aw.de>, \
74Dwaine Garden <DwaineGarden@rogers.com>"
Thierry MERLE483dfdb2006-12-04 08:31:45 -030075#define DRIVER_NAME "usbvision"
76#define DRIVER_ALIAS "USBVision"
77#define DRIVER_DESC "USBVision USB Video Device Driver for Linux"
78#define DRIVER_LICENSE "GPL"
79#define USBVISION_DRIVER_VERSION_MAJOR 0
80#define USBVISION_DRIVER_VERSION_MINOR 9
Hans Verkuil3ff4ad82009-04-01 03:15:52 -030081#define USBVISION_DRIVER_VERSION_PATCHLEVEL 10
Thierry MERLEc5f48362007-05-08 17:22:29 -030082#define USBVISION_DRIVER_VERSION KERNEL_VERSION(USBVISION_DRIVER_VERSION_MAJOR,\
83USBVISION_DRIVER_VERSION_MINOR,\
84USBVISION_DRIVER_VERSION_PATCHLEVEL)
Hans Verkuil6d6a48e2010-12-29 13:53:21 -030085#define USBVISION_VERSION_STRING __stringify(USBVISION_DRIVER_VERSION_MAJOR) \
86"." __stringify(USBVISION_DRIVER_VERSION_MINOR) \
87"." __stringify(USBVISION_DRIVER_VERSION_PATCHLEVEL)
Thierry MERLE483dfdb2006-12-04 08:31:45 -030088
89#define ENABLE_HEXDUMP 0 /* Enable if you need it */
90
91
Thierry MERLE483dfdb2006-12-04 08:31:45 -030092#ifdef USBVISION_DEBUG
Thierry MERLEdf18c312008-04-04 21:00:57 -030093 #define PDEBUG(level, fmt, args...) { \
Thierry MERLEc5f48362007-05-08 17:22:29 -030094 if (video_debug & (level)) \
Greg Kroah-Hartmana482f322008-10-10 05:08:23 -030095 printk(KERN_INFO KBUILD_MODNAME ":[%s:%d] " fmt, \
96 __func__, __LINE__ , ## args); \
Thierry MERLEdf18c312008-04-04 21:00:57 -030097 }
Thierry MERLE483dfdb2006-12-04 08:31:45 -030098#else
Hans Verkuil6d6a48e2010-12-29 13:53:21 -030099 #define PDEBUG(level, fmt, args...) do {} while (0)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300100#endif
101
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300102#define DBG_IO (1 << 1)
103#define DBG_PROBE (1 << 2)
104#define DBG_MMAP (1 << 3)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300105
Hans Verkuil52cb0bf2010-12-19 20:33:51 -0300106/* String operations */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300107#define rmspace(str) while (*str == ' ') str++;
108#define goto2next(str) while (*str != ' ') str++; while (*str == ' ') str++;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300109
110
Thierry MERLEc5f48362007-05-08 17:22:29 -0300111/* sequential number of usbvision device */
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -0300112static int usbvision_nr;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300113
114static struct usbvision_v4l2_format_st usbvision_v4l2_format[] = {
115 { 1, 1, 8, V4L2_PIX_FMT_GREY , "GREY" },
116 { 1, 2, 16, V4L2_PIX_FMT_RGB565 , "RGB565" },
117 { 1, 3, 24, V4L2_PIX_FMT_RGB24 , "RGB24" },
118 { 1, 4, 32, V4L2_PIX_FMT_RGB32 , "RGB32" },
119 { 1, 2, 16, V4L2_PIX_FMT_RGB555 , "RGB555" },
120 { 1, 2, 16, V4L2_PIX_FMT_YUYV , "YUV422" },
Hans Verkuil52cb0bf2010-12-19 20:33:51 -0300121 { 1, 2, 12, V4L2_PIX_FMT_YVU420 , "YUV420P" }, /* 1.5 ! */
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300122 { 1, 2, 16, V4L2_PIX_FMT_YUV422P , "YUV422P" }
123};
124
Thierry MERLEc5f48362007-05-08 17:22:29 -0300125/* Function prototypes */
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300126static void usbvision_release(struct usb_usbvision *usbvision);
127
Joe Perchesc84e6032008-02-03 17:18:59 +0200128/* Default initialization of device driver parameters */
Thierry MERLEc5f48362007-05-08 17:22:29 -0300129/* Set the default format for ISOC endpoint */
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300130static int isoc_mode = ISOC_MODE_COMPRESS;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300131/* Set the default Debug Mode of the device driver */
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -0300132static int video_debug;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300133/* Set the default device to power on at startup */
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300134static int power_on_at_open = 1;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300135/* Sequential Number of Video Device */
136static int video_nr = -1;
137/* Sequential Number of Radio Device */
138static int radio_nr = -1;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300139
Thierry MERLEc5f48362007-05-08 17:22:29 -0300140/* Grab parameters for the device driver */
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300141
Thierry MERLEc5f48362007-05-08 17:22:29 -0300142/* Showing parameters under SYSFS */
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300143module_param(isoc_mode, int, 0444);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300144module_param(video_debug, int, 0444);
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300145module_param(power_on_at_open, int, 0444);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300146module_param(video_nr, int, 0444);
147module_param(radio_nr, int, 0444);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300148
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300149MODULE_PARM_DESC(isoc_mode, " Set the default format for ISOC endpoint. Default: 0x60 (Compression On)");
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300150MODULE_PARM_DESC(video_debug, " Set the default Debug Mode of the device driver. Default: 0 (Off)");
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300151MODULE_PARM_DESC(power_on_at_open, " Set the default device to power on when device is opened. Default: 1 (On)");
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300152MODULE_PARM_DESC(video_nr, "Set video device number (/dev/videoX). Default: -1 (autodetect)");
153MODULE_PARM_DESC(radio_nr, "Set radio device number (/dev/radioX). Default: -1 (autodetect)");
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300154
155
Hans Verkuil52cb0bf2010-12-19 20:33:51 -0300156/* Misc stuff */
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300157MODULE_AUTHOR(DRIVER_AUTHOR);
158MODULE_DESCRIPTION(DRIVER_DESC);
159MODULE_LICENSE(DRIVER_LICENSE);
Mauro Carvalho Chehaba1ed5512006-12-09 11:41:59 -0300160MODULE_VERSION(USBVISION_VERSION_STRING);
161MODULE_ALIAS(DRIVER_ALIAS);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300162
163
Thierry MERLEc5f48362007-05-08 17:22:29 -0300164/*****************************************************************************/
165/* SYSFS Code - Copied from the stv680.c usb module. */
166/* Device information is located at /sys/class/video4linux/video0 */
167/* Device parameters information is located at /sys/module/usbvision */
168/* Device USB Information is located at */
169/* /sys/bus/usb/drivers/USBVision Video Grabber */
170/*****************************************************************************/
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300171
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300172#define YES_NO(x) ((x) ? "Yes" : "No")
173
Kay Sievers54bd5b62007-10-08 16:26:13 -0300174static inline struct usb_usbvision *cd_to_usbvision(struct device *cd)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300175{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300176 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300177 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300178 return video_get_drvdata(vdev);
179}
180
Kay Sievers54bd5b62007-10-08 16:26:13 -0300181static ssize_t show_version(struct device *cd,
182 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300183{
184 return sprintf(buf, "%s\n", USBVISION_VERSION_STRING);
185}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300186static DEVICE_ATTR(version, S_IRUGO, show_version, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300187
Kay Sievers54bd5b62007-10-08 16:26:13 -0300188static ssize_t show_model(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);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300194 return sprintf(buf, "%s\n",
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300195 usbvision_device_data[usbvision->dev_model].model_string);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300196}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300197static DEVICE_ATTR(model, S_IRUGO, show_model, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300198
Kay Sievers54bd5b62007-10-08 16:26:13 -0300199static ssize_t show_hue(struct device *cd,
200 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300201{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300202 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300203 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300204 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
205 struct v4l2_control ctrl;
206 ctrl.id = V4L2_CID_HUE;
207 ctrl.value = 0;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300208 if (usbvision->user)
Hans Verkuil1df79532009-02-21 18:11:31 -0300209 call_all(usbvision, core, g_ctrl, &ctrl);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -0300210 return sprintf(buf, "%d\n", ctrl.value);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300211}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300212static DEVICE_ATTR(hue, S_IRUGO, show_hue, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300213
Kay Sievers54bd5b62007-10-08 16:26:13 -0300214static ssize_t show_contrast(struct device *cd,
215 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300216{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300217 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300218 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300219 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
220 struct v4l2_control ctrl;
221 ctrl.id = V4L2_CID_CONTRAST;
222 ctrl.value = 0;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300223 if (usbvision->user)
Hans Verkuil1df79532009-02-21 18:11:31 -0300224 call_all(usbvision, core, g_ctrl, &ctrl);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -0300225 return sprintf(buf, "%d\n", ctrl.value);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300226}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300227static DEVICE_ATTR(contrast, S_IRUGO, show_contrast, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300228
Kay Sievers54bd5b62007-10-08 16:26:13 -0300229static ssize_t show_brightness(struct device *cd,
230 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300231{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300232 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300233 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300234 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
235 struct v4l2_control ctrl;
236 ctrl.id = V4L2_CID_BRIGHTNESS;
237 ctrl.value = 0;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300238 if (usbvision->user)
Hans Verkuil1df79532009-02-21 18:11:31 -0300239 call_all(usbvision, core, g_ctrl, &ctrl);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -0300240 return sprintf(buf, "%d\n", ctrl.value);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300241}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300242static DEVICE_ATTR(brightness, S_IRUGO, show_brightness, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300243
Kay Sievers54bd5b62007-10-08 16:26:13 -0300244static ssize_t show_saturation(struct device *cd,
245 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300246{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300247 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300248 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300249 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
250 struct v4l2_control ctrl;
251 ctrl.id = V4L2_CID_SATURATION;
252 ctrl.value = 0;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300253 if (usbvision->user)
Hans Verkuil1df79532009-02-21 18:11:31 -0300254 call_all(usbvision, core, g_ctrl, &ctrl);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -0300255 return sprintf(buf, "%d\n", ctrl.value);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300256}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300257static DEVICE_ATTR(saturation, S_IRUGO, show_saturation, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300258
Kay Sievers54bd5b62007-10-08 16:26:13 -0300259static ssize_t show_streaming(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->streaming == stream_on ? 1 : 0));
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300267}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300268static DEVICE_ATTR(streaming, S_IRUGO, show_streaming, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300269
Kay Sievers54bd5b62007-10-08 16:26:13 -0300270static ssize_t show_compression(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);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300276 return sprintf(buf, "%s\n",
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300277 YES_NO(usbvision->isoc_mode == ISOC_MODE_COMPRESS));
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300278}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300279static DEVICE_ATTR(compression, S_IRUGO, show_compression, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300280
Kay Sievers54bd5b62007-10-08 16:26:13 -0300281static ssize_t show_device_bridge(struct device *cd,
282 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300283{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300284 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300285 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300286 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300287 return sprintf(buf, "%d\n", usbvision->bridge_type);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300288}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300289static DEVICE_ATTR(bridge, S_IRUGO, show_device_bridge, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300290
291static void usbvision_create_sysfs(struct video_device *vdev)
292{
293 int res;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300294
Dwaine Gardened00b412006-12-27 10:23:28 -0200295 if (!vdev)
296 return;
297 do {
Hans Verkuil22a04f12008-07-20 06:35:02 -0300298 res = device_create_file(&vdev->dev, &dev_attr_version);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300299 if (res < 0)
Dwaine Gardened00b412006-12-27 10:23:28 -0200300 break;
Hans Verkuil22a04f12008-07-20 06:35:02 -0300301 res = device_create_file(&vdev->dev, &dev_attr_model);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300302 if (res < 0)
Dwaine Gardened00b412006-12-27 10:23:28 -0200303 break;
Hans Verkuil22a04f12008-07-20 06:35:02 -0300304 res = device_create_file(&vdev->dev, &dev_attr_hue);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300305 if (res < 0)
Dwaine Gardened00b412006-12-27 10:23:28 -0200306 break;
Hans Verkuil22a04f12008-07-20 06:35:02 -0300307 res = device_create_file(&vdev->dev, &dev_attr_contrast);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300308 if (res < 0)
Dwaine Gardened00b412006-12-27 10:23:28 -0200309 break;
Hans Verkuil22a04f12008-07-20 06:35:02 -0300310 res = device_create_file(&vdev->dev, &dev_attr_brightness);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300311 if (res < 0)
Dwaine Gardened00b412006-12-27 10:23:28 -0200312 break;
Hans Verkuil22a04f12008-07-20 06:35:02 -0300313 res = device_create_file(&vdev->dev, &dev_attr_saturation);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300314 if (res < 0)
Dwaine Gardened00b412006-12-27 10:23:28 -0200315 break;
Hans Verkuil22a04f12008-07-20 06:35:02 -0300316 res = device_create_file(&vdev->dev, &dev_attr_streaming);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300317 if (res < 0)
Dwaine Gardened00b412006-12-27 10:23:28 -0200318 break;
Hans Verkuil22a04f12008-07-20 06:35:02 -0300319 res = device_create_file(&vdev->dev, &dev_attr_compression);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300320 if (res < 0)
Dwaine Gardened00b412006-12-27 10:23:28 -0200321 break;
Hans Verkuil22a04f12008-07-20 06:35:02 -0300322 res = device_create_file(&vdev->dev, &dev_attr_bridge);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300323 if (res >= 0)
Dwaine Gardened00b412006-12-27 10:23:28 -0200324 return;
325 } while (0);
326
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -0300327 dev_err(&vdev->dev, "%s error: %d\n", __func__, res);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300328}
329
330static void usbvision_remove_sysfs(struct video_device *vdev)
331{
332 if (vdev) {
Hans Verkuil22a04f12008-07-20 06:35:02 -0300333 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);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300342 }
343}
344
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300345/*
346 * usbvision_open()
347 *
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.
351 *
352 */
Hans Verkuilbec43662008-12-30 06:58:20 -0300353static int usbvision_v4l2_open(struct file *file)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300354{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300355 struct usb_usbvision *usbvision = video_drvdata(file);
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300356 int err_code = 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300357
358 PDEBUG(DBG_IO, "open");
359
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300360 usbvision_reset_power_off_timer(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300361
362 if (usbvision->user)
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300363 err_code = -EBUSY;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300364 else {
Thierry MERLE6f78e182007-02-07 10:13:11 -0300365 /* Allocate memory for the scratch ring buffer */
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300366 err_code = usbvision_scratch_alloc(usbvision);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300367 if (isoc_mode == ISOC_MODE_COMPRESS) {
Thierry MERLEc5f48362007-05-08 17:22:29 -0300368 /* Allocate intermediate decompression buffers
369 only if needed */
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300370 err_code = usbvision_decompress_alloc(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300371 }
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300372 if (err_code) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300373 /* Deallocate all buffers if trouble */
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300374 usbvision_scratch_free(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300375 usbvision_decompress_free(usbvision);
376 }
377 }
378
379 /* If so far no errors then we shall start the camera */
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300380 if (!err_code) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300381 if (usbvision->power == 0) {
382 usbvision_power_on(usbvision);
Thierry MERLE1ff16c22007-04-14 16:23:49 -0300383 usbvision_i2c_register(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300384 }
385
386 /* Send init sequence only once, it's large! */
387 if (!usbvision->initialized) {
388 int setup_ok = 0;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300389 setup_ok = usbvision_setup(usbvision, isoc_mode);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300390 if (setup_ok)
391 usbvision->initialized = 1;
392 else
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300393 err_code = -EBUSY;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300394 }
395
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300396 if (!err_code) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300397 usbvision_begin_streaming(usbvision);
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300398 err_code = usbvision_init_isoc(usbvision);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300399 /* device must be initialized before isoc transfer */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300400 usbvision_muxsel(usbvision, 0);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300401 usbvision->user++;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300402 } else {
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300403 if (power_on_at_open) {
Thierry MERLE1ff16c22007-04-14 16:23:49 -0300404 usbvision_i2c_unregister(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300405 usbvision_power_off(usbvision);
406 usbvision->initialized = 0;
407 }
408 }
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300409 }
410
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300411 /* prepare queues */
412 usbvision_empty_framequeues(usbvision);
413
414 PDEBUG(DBG_IO, "success");
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300415 return err_code;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300416}
417
418/*
419 * usbvision_v4l2_close()
420 *
421 * This is part of Video 4 Linux API. The procedure
422 * stops streaming and deallocates all buffers that were earlier
423 * allocated in usbvision_v4l2_open().
424 *
425 */
Hans Verkuilbec43662008-12-30 06:58:20 -0300426static int usbvision_v4l2_close(struct file *file)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300427{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300428 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300429
430 PDEBUG(DBG_IO, "close");
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300431
432 usbvision_audio_off(usbvision);
433 usbvision_restart_isoc(usbvision);
434 usbvision_stop_isoc(usbvision);
435
436 usbvision_decompress_free(usbvision);
Thierry MERLE38284ba2006-12-15 16:46:53 -0300437 usbvision_frames_free(usbvision);
Thierry MERLE6f78e182007-02-07 10:13:11 -0300438 usbvision_empty_framequeues(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300439 usbvision_scratch_free(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300440
441 usbvision->user--;
442
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300443 if (power_on_at_open) {
Thierry MERLEc5f48362007-05-08 17:22:29 -0300444 /* power off in a little while
445 to avoid off/on every close/open short sequences */
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300446 usbvision_set_power_off_timer(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300447 usbvision->initialized = 0;
448 }
449
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300450 if (usbvision->remove_pending) {
Harvey Harrisond2db42d2008-04-04 20:50:07 -0300451 printk(KERN_INFO "%s: Final disconnect\n", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300452 usbvision_release(usbvision);
453 }
454
455 PDEBUG(DBG_IO, "success");
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300456 return 0;
457}
458
459
460/*
461 * usbvision_ioctl()
462 *
463 * This is part of Video 4 Linux API. The procedure handles ioctl() calls.
464 *
465 */
Thierry MERLEc5f48362007-05-08 17:22:29 -0300466#ifdef CONFIG_VIDEO_ADV_DEBUG
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300467static int vidioc_g_register(struct file *file, void *priv,
Hans Verkuilaecde8b2008-12-30 07:14:19 -0300468 struct v4l2_dbg_register *reg)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300469{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300470 struct usb_usbvision *usbvision = video_drvdata(file);
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300471 int err_code;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300472
Hans Verkuilaecde8b2008-12-30 07:14:19 -0300473 if (!v4l2_chip_match_host(&reg->match))
Thierry MERLEc5f48362007-05-08 17:22:29 -0300474 return -EINVAL;
475 /* NT100x has a 8-bit register space */
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300476 err_code = usbvision_read_reg(usbvision, reg->reg&0xff);
477 if (err_code < 0) {
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -0300478 dev_err(&usbvision->vdev->dev,
479 "%s: VIDIOC_DBG_G_REGISTER failed: error %d\n",
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300480 __func__, err_code);
481 return err_code;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300482 }
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300483 reg->val = err_code;
Hans Verkuilaecde8b2008-12-30 07:14:19 -0300484 reg->size = 1;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300485 return 0;
486}
487
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300488static int vidioc_s_register(struct file *file, void *priv,
Hans Verkuilaecde8b2008-12-30 07:14:19 -0300489 struct v4l2_dbg_register *reg)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300490{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300491 struct usb_usbvision *usbvision = video_drvdata(file);
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300492 int err_code;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300493
Hans Verkuilaecde8b2008-12-30 07:14:19 -0300494 if (!v4l2_chip_match_host(&reg->match))
Thierry MERLEc5f48362007-05-08 17:22:29 -0300495 return -EINVAL;
496 /* NT100x has a 8-bit register space */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300497 err_code = usbvision_write_reg(usbvision, reg->reg & 0xff, reg->val);
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300498 if (err_code < 0) {
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -0300499 dev_err(&usbvision->vdev->dev,
500 "%s: VIDIOC_DBG_S_REGISTER failed: error %d\n",
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300501 __func__, err_code);
502 return err_code;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300503 }
504 return 0;
505}
506#endif
507
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300508static int vidioc_querycap(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300509 struct v4l2_capability *vc)
510{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300511 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300512
513 strlcpy(vc->driver, "USBVision", sizeof(vc->driver));
514 strlcpy(vc->card,
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300515 usbvision_device_data[usbvision->dev_model].model_string,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300516 sizeof(vc->card));
Thierry MERLE6f2a2782009-01-20 17:40:44 -0300517 usb_make_path(usbvision->dev, vc->bus_info, sizeof(vc->bus_info));
Thierry MERLEc5f48362007-05-08 17:22:29 -0300518 vc->version = USBVISION_DRIVER_VERSION;
519 vc->capabilities = V4L2_CAP_VIDEO_CAPTURE |
520 V4L2_CAP_AUDIO |
521 V4L2_CAP_READWRITE |
522 V4L2_CAP_STREAMING |
523 (usbvision->have_tuner ? V4L2_CAP_TUNER : 0);
524 return 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300525}
526
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300527static int vidioc_enum_input(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300528 struct v4l2_input *vi)
529{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300530 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300531 int chan;
532
Roel Kluin223ffe52009-05-02 16:38:47 -0300533 if (vi->index >= usbvision->video_inputs)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300534 return -EINVAL;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300535 if (usbvision->have_tuner)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300536 chan = vi->index;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300537 else
Hans Verkuil52cb0bf2010-12-19 20:33:51 -0300538 chan = vi->index + 1; /* skip Television string*/
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300539
Thierry MERLEc5f48362007-05-08 17:22:29 -0300540 /* Determine the requested input characteristics
541 specific for each usbvision card model */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300542 switch (chan) {
Thierry MERLEc5f48362007-05-08 17:22:29 -0300543 case 0:
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300544 if (usbvision_device_data[usbvision->dev_model].video_channels == 4) {
Thierry MERLEc5f48362007-05-08 17:22:29 -0300545 strcpy(vi->name, "White Video Input");
546 } else {
547 strcpy(vi->name, "Television");
548 vi->type = V4L2_INPUT_TYPE_TUNER;
549 vi->audioset = 1;
550 vi->tuner = chan;
551 vi->std = USBVISION_NORMS;
552 }
553 break;
554 case 1:
555 vi->type = V4L2_INPUT_TYPE_CAMERA;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300556 if (usbvision_device_data[usbvision->dev_model].video_channels == 4)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300557 strcpy(vi->name, "Green Video Input");
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300558 else
Thierry MERLEc5f48362007-05-08 17:22:29 -0300559 strcpy(vi->name, "Composite Video Input");
Thierry MERLEc5f48362007-05-08 17:22:29 -0300560 vi->std = V4L2_STD_PAL;
561 break;
562 case 2:
563 vi->type = V4L2_INPUT_TYPE_CAMERA;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300564 if (usbvision_device_data[usbvision->dev_model].video_channels == 4)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300565 strcpy(vi->name, "Yellow Video Input");
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300566 else
Thierry MERLEc5f48362007-05-08 17:22:29 -0300567 strcpy(vi->name, "S-Video Input");
Thierry MERLEc5f48362007-05-08 17:22:29 -0300568 vi->std = V4L2_STD_PAL;
569 break;
570 case 3:
571 vi->type = V4L2_INPUT_TYPE_CAMERA;
572 strcpy(vi->name, "Red Video Input");
573 vi->std = V4L2_STD_PAL;
574 break;
575 }
576 return 0;
577}
578
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300579static int vidioc_g_input(struct file *file, void *priv, unsigned int *input)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300580{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300581 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300582
583 *input = usbvision->ctl_input;
584 return 0;
585}
586
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300587static int vidioc_s_input(struct file *file, void *priv, unsigned int input)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300588{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300589 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300590
Roel Kluinf14a2972009-10-23 07:59:42 -0300591 if (input >= usbvision->video_inputs)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300592 return -EINVAL;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300593
Thierry MERLE66a17872007-06-26 16:35:30 -0300594 usbvision_muxsel(usbvision, input);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300595 usbvision_set_input(usbvision);
596 usbvision_set_output(usbvision,
597 usbvision->curwidth,
598 usbvision->curheight);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300599 return 0;
600}
601
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300602static int vidioc_s_std(struct file *file, void *priv, v4l2_std_id *id)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300603{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300604 struct usb_usbvision *usbvision = video_drvdata(file);
605
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300606 usbvision->tvnorm_id = *id;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300607
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300608 call_all(usbvision, core, s_std, usbvision->tvnorm_id);
Thierry MERLE66a17872007-06-26 16:35:30 -0300609 /* propagate the change to the decoder */
610 usbvision_muxsel(usbvision, usbvision->ctl_input);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300611
612 return 0;
613}
614
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300615static int vidioc_g_tuner(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300616 struct v4l2_tuner *vt)
617{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300618 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300619
Hans Verkuil52cb0bf2010-12-19 20:33:51 -0300620 if (!usbvision->have_tuner || vt->index) /* Only tuner 0 */
Thierry MERLEc5f48362007-05-08 17:22:29 -0300621 return -EINVAL;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300622 if (usbvision->radio) {
Thierry MERLEc5f48362007-05-08 17:22:29 -0300623 strcpy(vt->name, "Radio");
624 vt->type = V4L2_TUNER_RADIO;
625 } else {
626 strcpy(vt->name, "Television");
627 }
628 /* Let clients fill in the remainder of this struct */
Hans Verkuil1df79532009-02-21 18:11:31 -0300629 call_all(usbvision, tuner, g_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_s_tuner(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300635 struct v4l2_tuner *vt)
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 /* Only no or one tuner for now */
Thierry MERLEc5f48362007-05-08 17:22:29 -0300640 if (!usbvision->have_tuner || vt->index)
641 return -EINVAL;
642 /* let clients handle this */
Hans Verkuil1df79532009-02-21 18:11:31 -0300643 call_all(usbvision, tuner, s_tuner, vt);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300644
645 return 0;
646}
647
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300648static int vidioc_g_frequency(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300649 struct v4l2_frequency *freq)
650{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300651 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300652
Hans Verkuil52cb0bf2010-12-19 20:33:51 -0300653 freq->tuner = 0; /* Only one tuner */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300654 if (usbvision->radio)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300655 freq->type = V4L2_TUNER_RADIO;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300656 else
Thierry MERLEc5f48362007-05-08 17:22:29 -0300657 freq->type = V4L2_TUNER_ANALOG_TV;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300658 freq->frequency = usbvision->freq;
659
660 return 0;
661}
662
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300663static int vidioc_s_frequency(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300664 struct v4l2_frequency *freq)
665{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300666 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300667
Hans Verkuil52cb0bf2010-12-19 20:33:51 -0300668 /* Only no or one tuner for now */
Thierry MERLEc5f48362007-05-08 17:22:29 -0300669 if (!usbvision->have_tuner || freq->tuner)
670 return -EINVAL;
671
672 usbvision->freq = freq->frequency;
Hans Verkuil1df79532009-02-21 18:11:31 -0300673 call_all(usbvision, tuner, s_frequency, freq);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300674
675 return 0;
676}
677
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300678static int vidioc_g_audio(struct file *file, void *priv, struct v4l2_audio *a)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300679{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300680 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300681
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300682 if (usbvision->radio)
683 strcpy(a->name, "Radio");
684 else
Thierry MERLEc5f48362007-05-08 17:22:29 -0300685 strcpy(a->name, "TV");
Thierry MERLEc5f48362007-05-08 17:22:29 -0300686
687 return 0;
688}
689
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300690static int vidioc_s_audio(struct file *file, void *fh,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300691 struct v4l2_audio *a)
692{
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300693 if (a->index)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300694 return -EINVAL;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300695 return 0;
696}
697
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300698static int vidioc_queryctrl(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300699 struct v4l2_queryctrl *ctrl)
700{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300701 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300702
Hans Verkuil1df79532009-02-21 18:11:31 -0300703 call_all(usbvision, core, queryctrl, ctrl);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300704
705 if (!ctrl->type)
706 return -EINVAL;
707
708 return 0;
709}
710
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300711static int vidioc_g_ctrl(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300712 struct v4l2_control *ctrl)
713{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300714 struct usb_usbvision *usbvision = video_drvdata(file);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300715
Hans Verkuil1df79532009-02-21 18:11:31 -0300716 call_all(usbvision, core, g_ctrl, ctrl);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300717 return 0;
718}
719
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300720static int vidioc_s_ctrl(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300721 struct v4l2_control *ctrl)
722{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300723 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300724
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300725 call_all(usbvision, core, s_ctrl, ctrl);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300726 return 0;
727}
728
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300729static int vidioc_reqbufs(struct file *file,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300730 void *priv, struct v4l2_requestbuffers *vr)
731{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300732 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300733 int ret;
734
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300735 RESTRICT_TO_RANGE(vr->count, 1, USBVISION_NUMFRAMES);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300736
737 /* Check input validity:
738 the user must do a VIDEO CAPTURE and MMAP method. */
Trent Piepho975f5762009-03-28 22:25:36 -0300739 if (vr->memory != V4L2_MEMORY_MMAP)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300740 return -EINVAL;
741
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300742 if (usbvision->streaming == stream_on) {
743 ret = usbvision_stream_interrupt(usbvision);
744 if (ret)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300745 return ret;
746 }
747
748 usbvision_frames_free(usbvision);
749 usbvision_empty_framequeues(usbvision);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300750 vr->count = usbvision_frames_alloc(usbvision, vr->count);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300751
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300752 usbvision->cur_frame = NULL;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300753
754 return 0;
755}
756
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300757static int vidioc_querybuf(struct file *file,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300758 void *priv, struct v4l2_buffer *vb)
759{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300760 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300761 struct usbvision_frame *frame;
762
763 /* FIXME : must control
764 that buffers are mapped (VIDIOC_REQBUFS has been called) */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300765 if (vb->index >= usbvision->num_frames)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300766 return -EINVAL;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300767 /* Updating the corresponding frame state */
768 vb->flags = 0;
769 frame = &usbvision->frame[vb->index];
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300770 if (frame->grabstate >= frame_state_ready)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300771 vb->flags |= V4L2_BUF_FLAG_QUEUED;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300772 if (frame->grabstate >= frame_state_done)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300773 vb->flags |= V4L2_BUF_FLAG_DONE;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300774 if (frame->grabstate == frame_state_unused)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300775 vb->flags |= V4L2_BUF_FLAG_MAPPED;
776 vb->memory = V4L2_MEMORY_MMAP;
777
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300778 vb->m.offset = vb->index * PAGE_ALIGN(usbvision->max_frame_size);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300779
780 vb->memory = V4L2_MEMORY_MMAP;
781 vb->field = V4L2_FIELD_NONE;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300782 vb->length = usbvision->curwidth *
783 usbvision->curheight *
Thierry MERLEc5f48362007-05-08 17:22:29 -0300784 usbvision->palette.bytes_per_pixel;
785 vb->timestamp = usbvision->frame[vb->index].timestamp;
786 vb->sequence = usbvision->frame[vb->index].sequence;
787 return 0;
788}
789
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300790static int vidioc_qbuf(struct file *file, void *priv, struct v4l2_buffer *vb)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300791{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300792 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300793 struct usbvision_frame *frame;
794 unsigned long lock_flags;
795
796 /* FIXME : works only on VIDEO_CAPTURE MODE, MMAP. */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300797 if (vb->index >= usbvision->num_frames)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300798 return -EINVAL;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300799
800 frame = &usbvision->frame[vb->index];
801
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300802 if (frame->grabstate != frame_state_unused)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300803 return -EAGAIN;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300804
805 /* Mark it as ready and enqueue frame */
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300806 frame->grabstate = frame_state_ready;
807 frame->scanstate = scan_state_scanning;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300808 frame->scanlength = 0; /* Accumulated in usbvision_parse_data() */
809
810 vb->flags &= ~V4L2_BUF_FLAG_DONE;
811
812 /* set v4l2_format index */
813 frame->v4l2_format = usbvision->palette;
814
815 spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
816 list_add_tail(&usbvision->frame[vb->index].frame, &usbvision->inqueue);
817 spin_unlock_irqrestore(&usbvision->queue_lock, lock_flags);
818
819 return 0;
820}
821
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300822static int vidioc_dqbuf(struct file *file, void *priv, struct v4l2_buffer *vb)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300823{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300824 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300825 int ret;
826 struct usbvision_frame *f;
827 unsigned long lock_flags;
828
Thierry MERLEc5f48362007-05-08 17:22:29 -0300829 if (list_empty(&(usbvision->outqueue))) {
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300830 if (usbvision->streaming == stream_idle)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300831 return -EINVAL;
832 ret = wait_event_interruptible
833 (usbvision->wait_frame,
834 !list_empty(&(usbvision->outqueue)));
835 if (ret)
836 return ret;
837 }
838
839 spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
840 f = list_entry(usbvision->outqueue.next,
841 struct usbvision_frame, frame);
842 list_del(usbvision->outqueue.next);
843 spin_unlock_irqrestore(&usbvision->queue_lock, lock_flags);
844
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300845 f->grabstate = frame_state_unused;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300846
847 vb->memory = V4L2_MEMORY_MMAP;
848 vb->flags = V4L2_BUF_FLAG_MAPPED |
849 V4L2_BUF_FLAG_QUEUED |
850 V4L2_BUF_FLAG_DONE;
851 vb->index = f->index;
852 vb->sequence = f->sequence;
853 vb->timestamp = f->timestamp;
854 vb->field = V4L2_FIELD_NONE;
855 vb->bytesused = f->scanlength;
856
857 return 0;
858}
859
860static int vidioc_streamon(struct file *file, void *priv, enum v4l2_buf_type i)
861{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300862 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300863
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300864 usbvision->streaming = stream_on;
Hans Verkuil1df79532009-02-21 18:11:31 -0300865 call_all(usbvision, video, s_stream, 1);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300866
867 return 0;
868}
869
870static int vidioc_streamoff(struct file *file,
871 void *priv, enum v4l2_buf_type type)
872{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300873 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300874
875 if (type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
876 return -EINVAL;
877
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300878 if (usbvision->streaming == stream_on) {
Thierry MERLEc5f48362007-05-08 17:22:29 -0300879 usbvision_stream_interrupt(usbvision);
880 /* Stop all video streamings */
Hans Verkuil1df79532009-02-21 18:11:31 -0300881 call_all(usbvision, video, s_stream, 0);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300882 }
883 usbvision_empty_framequeues(usbvision);
884
885 return 0;
886}
887
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300888static int vidioc_enum_fmt_vid_cap(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300889 struct v4l2_fmtdesc *vfd)
890{
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300891 if (vfd->index >= USBVISION_SUPPORTED_PALETTES - 1)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300892 return -EINVAL;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300893 strcpy(vfd->description, usbvision_v4l2_format[vfd->index].desc);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300894 vfd->pixelformat = usbvision_v4l2_format[vfd->index].format;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300895 return 0;
896}
897
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300898static int vidioc_g_fmt_vid_cap(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300899 struct v4l2_format *vf)
900{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300901 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300902 vf->fmt.pix.width = usbvision->curwidth;
903 vf->fmt.pix.height = usbvision->curheight;
904 vf->fmt.pix.pixelformat = usbvision->palette.format;
905 vf->fmt.pix.bytesperline =
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300906 usbvision->curwidth * usbvision->palette.bytes_per_pixel;
907 vf->fmt.pix.sizeimage = vf->fmt.pix.bytesperline * usbvision->curheight;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300908 vf->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
909 vf->fmt.pix.field = V4L2_FIELD_NONE; /* Always progressive image */
910
911 return 0;
912}
913
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300914static int vidioc_try_fmt_vid_cap(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300915 struct v4l2_format *vf)
916{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300917 struct usb_usbvision *usbvision = video_drvdata(file);
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300918 int format_idx;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300919
920 /* Find requested format in available ones */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300921 for (format_idx = 0; format_idx < USBVISION_SUPPORTED_PALETTES; format_idx++) {
922 if (vf->fmt.pix.pixelformat ==
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300923 usbvision_v4l2_format[format_idx].format) {
924 usbvision->palette = usbvision_v4l2_format[format_idx];
Thierry MERLEc5f48362007-05-08 17:22:29 -0300925 break;
926 }
927 }
928 /* robustness */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300929 if (format_idx == USBVISION_SUPPORTED_PALETTES)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300930 return -EINVAL;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300931 RESTRICT_TO_RANGE(vf->fmt.pix.width, MIN_FRAME_WIDTH, MAX_FRAME_WIDTH);
932 RESTRICT_TO_RANGE(vf->fmt.pix.height, MIN_FRAME_HEIGHT, MAX_FRAME_HEIGHT);
933
934 vf->fmt.pix.bytesperline = vf->fmt.pix.width*
935 usbvision->palette.bytes_per_pixel;
936 vf->fmt.pix.sizeimage = vf->fmt.pix.bytesperline*vf->fmt.pix.height;
937
938 return 0;
939}
940
Hans Verkuil78b526a2008-05-28 12:16:41 -0300941static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300942 struct v4l2_format *vf)
943{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300944 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300945 int ret;
946
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300947 ret = vidioc_try_fmt_vid_cap(file, priv, vf);
948 if (ret)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300949 return ret;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300950
951 /* stop io in case it is already in progress */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300952 if (usbvision->streaming == stream_on) {
953 ret = usbvision_stream_interrupt(usbvision);
954 if (ret)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300955 return ret;
956 }
957 usbvision_frames_free(usbvision);
958 usbvision_empty_framequeues(usbvision);
959
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300960 usbvision->cur_frame = NULL;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300961
962 /* by now we are committed to the new data... */
Thierry MERLEc5f48362007-05-08 17:22:29 -0300963 usbvision_set_output(usbvision, vf->fmt.pix.width, vf->fmt.pix.height);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300964
965 return 0;
966}
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300967
Al Viro8a5ab412007-02-09 16:38:20 +0000968static ssize_t usbvision_v4l2_read(struct file *file, char __user *buf,
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300969 size_t count, loff_t *ppos)
970{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300971 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300972 int noblock = file->f_flags & O_NONBLOCK;
973 unsigned long lock_flags;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300974 int ret, i;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300975 struct usbvision_frame *frame;
976
Harvey Harrisond2db42d2008-04-04 20:50:07 -0300977 PDEBUG(DBG_IO, "%s: %ld bytes, noblock=%d", __func__,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300978 (unsigned long)count, noblock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300979
980 if (!USBVISION_IS_OPERATIONAL(usbvision) || (buf == NULL))
981 return -EFAULT;
982
Thierry MERLEc5f48362007-05-08 17:22:29 -0300983 /* This entry point is compatible with the mmap routines
984 so that a user can do either VIDIOC_QBUF/VIDIOC_DQBUF
985 to get frames or call read on the device. */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300986 if (!usbvision->num_frames) {
Thierry MERLEc5f48362007-05-08 17:22:29 -0300987 /* First, allocate some frames to work with
988 if this has not been done with VIDIOC_REQBUF */
Thierry MERLE6f78e182007-02-07 10:13:11 -0300989 usbvision_frames_free(usbvision);
990 usbvision_empty_framequeues(usbvision);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300991 usbvision_frames_alloc(usbvision, USBVISION_NUMFRAMES);
Thierry MERLE6f78e182007-02-07 10:13:11 -0300992 }
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300993
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300994 if (usbvision->streaming != stream_on) {
Thierry MERLE6f78e182007-02-07 10:13:11 -0300995 /* no stream is running, make it running ! */
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300996 usbvision->streaming = stream_on;
Hans Verkuil1df79532009-02-21 18:11:31 -0300997 call_all(usbvision, video, s_stream, 1);
Thierry MERLE6f78e182007-02-07 10:13:11 -0300998 }
999
Thierry MERLEc5f48362007-05-08 17:22:29 -03001000 /* Then, enqueue as many frames as possible
1001 (like a user of VIDIOC_QBUF would do) */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001002 for (i = 0; i < usbvision->num_frames; i++) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001003 frame = &usbvision->frame[i];
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001004 if (frame->grabstate == frame_state_unused) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001005 /* Mark it as ready and enqueue frame */
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001006 frame->grabstate = frame_state_ready;
1007 frame->scanstate = scan_state_scanning;
Thierry MERLEc5f48362007-05-08 17:22:29 -03001008 /* Accumulated in usbvision_parse_data() */
1009 frame->scanlength = 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001010
1011 /* set v4l2_format index */
1012 frame->v4l2_format = usbvision->palette;
1013
1014 spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
1015 list_add_tail(&frame->frame, &usbvision->inqueue);
Thierry MERLEc5f48362007-05-08 17:22:29 -03001016 spin_unlock_irqrestore(&usbvision->queue_lock,
1017 lock_flags);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001018 }
1019 }
1020
1021 /* Then try to steal a frame (like a VIDIOC_DQBUF would do) */
1022 if (list_empty(&(usbvision->outqueue))) {
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001023 if (noblock)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001024 return -EAGAIN;
1025
1026 ret = wait_event_interruptible
1027 (usbvision->wait_frame,
1028 !list_empty(&(usbvision->outqueue)));
1029 if (ret)
1030 return ret;
1031 }
1032
1033 spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
1034 frame = list_entry(usbvision->outqueue.next,
1035 struct usbvision_frame, frame);
1036 list_del(usbvision->outqueue.next);
1037 spin_unlock_irqrestore(&usbvision->queue_lock, lock_flags);
1038
1039 /* An error returns an empty frame */
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001040 if (frame->grabstate == frame_state_error) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001041 frame->bytes_read = 0;
1042 return 0;
1043 }
1044
Thierry MERLEc5f48362007-05-08 17:22:29 -03001045 PDEBUG(DBG_IO, "%s: frmx=%d, bytes_read=%ld, scanlength=%ld",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001046 __func__,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001047 frame->index, frame->bytes_read, frame->scanlength);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001048
1049 /* copy bytes to user space; we allow for partials reads */
1050 if ((count + frame->bytes_read) > (unsigned long)frame->scanlength)
1051 count = frame->scanlength - frame->bytes_read;
1052
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001053 if (copy_to_user(buf, frame->data + frame->bytes_read, count))
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001054 return -EFAULT;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001055
1056 frame->bytes_read += count;
Thierry MERLEc5f48362007-05-08 17:22:29 -03001057 PDEBUG(DBG_IO, "%s: {copy} count used=%ld, new bytes_read=%ld",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001058 __func__,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001059 (unsigned long)count, frame->bytes_read);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001060
Thierry MERLEc5f48362007-05-08 17:22:29 -03001061 /* For now, forget the frame if it has not been read in one shot. */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001062/* if (frame->bytes_read >= frame->scanlength) {*/ /* All data has been read */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001063 frame->bytes_read = 0;
1064
1065 /* Mark it as available to be used again. */
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001066 frame->grabstate = frame_state_unused;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001067/* } */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001068
1069 return count;
1070}
1071
1072static int usbvision_v4l2_mmap(struct file *file, struct vm_area_struct *vma)
1073{
1074 unsigned long size = vma->vm_end - vma->vm_start,
1075 start = vma->vm_start;
1076 void *pos;
1077 u32 i;
Hans Verkuilc170ecf2008-08-23 08:32:09 -03001078 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001079
Thierry MERLE6f78e182007-02-07 10:13:11 -03001080 PDEBUG(DBG_MMAP, "mmap");
1081
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001082 if (!USBVISION_IS_OPERATIONAL(usbvision))
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001083 return -EFAULT;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001084
1085 if (!(vma->vm_flags & VM_WRITE) ||
Thierry MERLE6f78e182007-02-07 10:13:11 -03001086 size != PAGE_ALIGN(usbvision->max_frame_size)) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001087 return -EINVAL;
1088 }
1089
Thierry MERLE6f78e182007-02-07 10:13:11 -03001090 for (i = 0; i < usbvision->num_frames; i++) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001091 if (((PAGE_ALIGN(usbvision->max_frame_size)*i) >> PAGE_SHIFT) ==
1092 vma->vm_pgoff)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001093 break;
1094 }
Thierry MERLE6f78e182007-02-07 10:13:11 -03001095 if (i == usbvision->num_frames) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001096 PDEBUG(DBG_MMAP,
1097 "mmap: user supplied mapping address is out of range");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001098 return -EINVAL;
1099 }
1100
1101 /* VM_IO is eventually going to replace PageReserved altogether */
1102 vma->vm_flags |= VM_IO;
1103 vma->vm_flags |= VM_RESERVED; /* avoid to swap out this VMA */
1104
1105 pos = usbvision->frame[i].data;
1106 while (size > 0) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001107 if (vm_insert_page(vma, start, vmalloc_to_page(pos))) {
Thierry MERLEc876a342006-12-09 16:42:54 -03001108 PDEBUG(DBG_MMAP, "mmap: vm_insert_page failed");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001109 return -EAGAIN;
1110 }
1111 start += PAGE_SIZE;
1112 pos += PAGE_SIZE;
1113 size -= PAGE_SIZE;
1114 }
1115
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001116 return 0;
1117}
1118
1119
1120/*
1121 * Here comes the stuff for radio on usbvision based devices
1122 *
1123 */
Hans Verkuilbec43662008-12-30 06:58:20 -03001124static int usbvision_radio_open(struct file *file)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001125{
Hans Verkuilc170ecf2008-08-23 08:32:09 -03001126 struct usb_usbvision *usbvision = video_drvdata(file);
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001127 int err_code = 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001128
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001129 PDEBUG(DBG_IO, "%s:", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001130
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001131 if (usbvision->user) {
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001132 dev_err(&usbvision->rdev->dev,
1133 "%s: Someone tried to open an already opened USBVision Radio!\n",
1134 __func__);
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001135 err_code = -EBUSY;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001136 } else {
1137 if (power_on_at_open) {
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001138 usbvision_reset_power_off_timer(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001139 if (usbvision->power == 0) {
1140 usbvision_power_on(usbvision);
Thierry MERLE1ff16c22007-04-14 16:23:49 -03001141 usbvision_i2c_register(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001142 }
1143 }
1144
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001145 /* Alternate interface 1 is is the biggest frame size */
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001146 err_code = usbvision_set_alternate(usbvision);
1147 if (err_code < 0) {
1148 usbvision->last_error = err_code;
1149 err_code = -EBUSY;
Andrew Morton544e6172007-12-12 18:25:23 -03001150 goto out;
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001151 }
1152
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001153 /* If so far no errors then we shall start the radio */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001154 usbvision->radio = 1;
Hans Verkuil1df79532009-02-21 18:11:31 -03001155 call_all(usbvision, tuner, s_radio);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001156 usbvision_set_audio(usbvision, USBVISION_AUDIO_RADIO);
1157 usbvision->user++;
1158 }
1159
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001160 if (err_code) {
1161 if (power_on_at_open) {
Thierry MERLE1ff16c22007-04-14 16:23:49 -03001162 usbvision_i2c_unregister(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001163 usbvision_power_off(usbvision);
1164 usbvision->initialized = 0;
1165 }
1166 }
Andrew Morton544e6172007-12-12 18:25:23 -03001167out:
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001168 return err_code;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001169}
1170
1171
Hans Verkuilbec43662008-12-30 06:58:20 -03001172static int usbvision_radio_close(struct file *file)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001173{
Hans Verkuilc170ecf2008-08-23 08:32:09 -03001174 struct usb_usbvision *usbvision = video_drvdata(file);
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001175 int err_code = 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001176
1177 PDEBUG(DBG_IO, "");
1178
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001179 /* Set packet size to 0 */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001180 usbvision->iface_alt = 0;
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001181 err_code = usb_set_interface(usbvision->dev, usbvision->iface,
1182 usbvision->iface_alt);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001183
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001184 usbvision_audio_off(usbvision);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001185 usbvision->radio = 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001186 usbvision->user--;
1187
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001188 if (power_on_at_open) {
1189 usbvision_set_power_off_timer(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001190 usbvision->initialized = 0;
1191 }
1192
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001193 if (usbvision->remove_pending) {
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001194 printk(KERN_INFO "%s: Final disconnect\n", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001195 usbvision_release(usbvision);
1196 }
1197
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001198 PDEBUG(DBG_IO, "success");
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001199 return err_code;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001200}
1201
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001202/* Video registration stuff */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001203
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001204/* Video template */
Hans Verkuilbec43662008-12-30 06:58:20 -03001205static const struct v4l2_file_operations usbvision_fops = {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001206 .owner = THIS_MODULE,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001207 .open = usbvision_v4l2_open,
1208 .release = usbvision_v4l2_close,
1209 .read = usbvision_v4l2_read,
1210 .mmap = usbvision_v4l2_mmap,
Hans Verkuilc627b9d2010-12-18 11:06:09 -03001211 .unlocked_ioctl = video_ioctl2,
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001212/* .poll = video_poll, */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001213};
Hans Verkuila3998102008-07-21 02:57:38 -03001214
1215static const struct v4l2_ioctl_ops usbvision_ioctl_ops = {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001216 .vidioc_querycap = vidioc_querycap,
Hans Verkuil78b526a2008-05-28 12:16:41 -03001217 .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap,
1218 .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap,
1219 .vidioc_try_fmt_vid_cap = vidioc_try_fmt_vid_cap,
1220 .vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001221 .vidioc_reqbufs = vidioc_reqbufs,
1222 .vidioc_querybuf = vidioc_querybuf,
1223 .vidioc_qbuf = vidioc_qbuf,
1224 .vidioc_dqbuf = vidioc_dqbuf,
1225 .vidioc_s_std = vidioc_s_std,
1226 .vidioc_enum_input = vidioc_enum_input,
1227 .vidioc_g_input = vidioc_g_input,
1228 .vidioc_s_input = vidioc_s_input,
1229 .vidioc_queryctrl = vidioc_queryctrl,
1230 .vidioc_g_audio = vidioc_g_audio,
Al Viroed4d6372007-09-26 01:53:42 +01001231 .vidioc_s_audio = vidioc_s_audio,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001232 .vidioc_g_ctrl = vidioc_g_ctrl,
1233 .vidioc_s_ctrl = vidioc_s_ctrl,
1234 .vidioc_streamon = vidioc_streamon,
1235 .vidioc_streamoff = vidioc_streamoff,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001236 .vidioc_g_tuner = vidioc_g_tuner,
1237 .vidioc_s_tuner = vidioc_s_tuner,
1238 .vidioc_g_frequency = vidioc_g_frequency,
1239 .vidioc_s_frequency = vidioc_s_frequency,
1240#ifdef CONFIG_VIDEO_ADV_DEBUG
1241 .vidioc_g_register = vidioc_g_register,
1242 .vidioc_s_register = vidioc_s_register,
1243#endif
Hans Verkuila3998102008-07-21 02:57:38 -03001244};
1245
1246static struct video_device usbvision_video_template = {
Hans Verkuila3998102008-07-21 02:57:38 -03001247 .fops = &usbvision_fops,
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001248 .ioctl_ops = &usbvision_ioctl_ops,
Hans Verkuila3998102008-07-21 02:57:38 -03001249 .name = "usbvision-video",
1250 .release = video_device_release,
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001251 .tvnorms = USBVISION_NORMS,
1252 .current_norm = V4L2_STD_PAL
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001253};
1254
1255
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001256/* Radio template */
Hans Verkuilbec43662008-12-30 06:58:20 -03001257static const struct v4l2_file_operations usbvision_radio_fops = {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001258 .owner = THIS_MODULE,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001259 .open = usbvision_radio_open,
1260 .release = usbvision_radio_close,
Hans Verkuilc627b9d2010-12-18 11:06:09 -03001261 .unlocked_ioctl = video_ioctl2,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001262};
1263
Hans Verkuila3998102008-07-21 02:57:38 -03001264static const struct v4l2_ioctl_ops usbvision_radio_ioctl_ops = {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001265 .vidioc_querycap = vidioc_querycap,
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,
Al Viroed4d6372007-09-26 01:53:42 +01001271 .vidioc_s_audio = vidioc_s_audio,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001272 .vidioc_g_ctrl = vidioc_g_ctrl,
1273 .vidioc_s_ctrl = vidioc_s_ctrl,
1274 .vidioc_g_tuner = vidioc_g_tuner,
1275 .vidioc_s_tuner = vidioc_s_tuner,
1276 .vidioc_g_frequency = vidioc_g_frequency,
1277 .vidioc_s_frequency = vidioc_s_frequency,
Hans Verkuila3998102008-07-21 02:57:38 -03001278};
1279
1280static struct video_device usbvision_radio_template = {
Hans Verkuila3998102008-07-21 02:57:38 -03001281 .fops = &usbvision_radio_fops,
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001282 .name = "usbvision-radio",
Hans Verkuila3998102008-07-21 02:57:38 -03001283 .release = video_device_release,
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001284 .ioctl_ops = &usbvision_radio_ioctl_ops,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001285
Thierry MERLEc5f48362007-05-08 17:22:29 -03001286 .tvnorms = USBVISION_NORMS,
1287 .current_norm = V4L2_STD_PAL
1288};
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001289
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001290
1291static struct video_device *usbvision_vdev_init(struct usb_usbvision *usbvision,
1292 struct video_device *vdev_template,
1293 char *name)
1294{
1295 struct usb_device *usb_dev = usbvision->dev;
1296 struct video_device *vdev;
1297
1298 if (usb_dev == NULL) {
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001299 dev_err(&usbvision->dev->dev,
1300 "%s: usbvision->dev is not set\n", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001301 return NULL;
1302 }
1303
1304 vdev = video_device_alloc();
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001305 if (NULL == vdev)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001306 return NULL;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001307 *vdev = *vdev_template;
Hans Verkuilc627b9d2010-12-18 11:06:09 -03001308 vdev->lock = &usbvision->v4l2_lock;
Hans Verkuil1df79532009-02-21 18:11:31 -03001309 vdev->v4l2_dev = &usbvision->v4l2_dev;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001310 snprintf(vdev->name, sizeof(vdev->name), "%s", name);
1311 video_set_drvdata(vdev, usbvision);
1312 return vdev;
1313}
1314
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001315/* unregister video4linux devices */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001316static void usbvision_unregister_video(struct usb_usbvision *usbvision)
1317{
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001318 /* Radio Device: */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001319 if (usbvision->rdev) {
Laurent Pinchart38c7c032009-11-27 13:57:15 -03001320 PDEBUG(DBG_PROBE, "unregister %s [v4l2]",
1321 video_device_node_name(usbvision->rdev));
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001322 if (video_is_registered(usbvision->rdev))
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001323 video_unregister_device(usbvision->rdev);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001324 else
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001325 video_device_release(usbvision->rdev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001326 usbvision->rdev = NULL;
1327 }
1328
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001329 /* Video Device: */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001330 if (usbvision->vdev) {
Laurent Pinchart38c7c032009-11-27 13:57:15 -03001331 PDEBUG(DBG_PROBE, "unregister %s [v4l2]",
1332 video_device_node_name(usbvision->vdev));
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001333 if (video_is_registered(usbvision->vdev))
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001334 video_unregister_device(usbvision->vdev);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001335 else
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001336 video_device_release(usbvision->vdev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001337 usbvision->vdev = NULL;
1338 }
1339}
1340
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001341/* register video4linux devices */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001342static int __devinit usbvision_register_video(struct usb_usbvision *usbvision)
1343{
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001344 /* Video Device: */
Thierry MERLEc5f48362007-05-08 17:22:29 -03001345 usbvision->vdev = usbvision_vdev_init(usbvision,
1346 &usbvision_video_template,
1347 "USBVision Video");
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001348 if (usbvision->vdev == NULL)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001349 goto err_exit;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001350 if (video_register_device(usbvision->vdev, VFL_TYPE_GRABBER, video_nr) < 0)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001351 goto err_exit;
Laurent Pinchart38c7c032009-11-27 13:57:15 -03001352 printk(KERN_INFO "USBVision[%d]: registered USBVision Video device %s [v4l2]\n",
1353 usbvision->nr, video_device_node_name(usbvision->vdev));
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001354
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001355 /* Radio Device: */
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001356 if (usbvision_device_data[usbvision->dev_model].radio) {
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001357 /* usbvision has radio */
Thierry MERLEc5f48362007-05-08 17:22:29 -03001358 usbvision->rdev = usbvision_vdev_init(usbvision,
1359 &usbvision_radio_template,
1360 "USBVision Radio");
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001361 if (usbvision->rdev == NULL)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001362 goto err_exit;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001363 if (video_register_device(usbvision->rdev, VFL_TYPE_RADIO, radio_nr) < 0)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001364 goto err_exit;
Laurent Pinchart38c7c032009-11-27 13:57:15 -03001365 printk(KERN_INFO "USBVision[%d]: registered USBVision Radio device %s [v4l2]\n",
1366 usbvision->nr, video_device_node_name(usbvision->rdev));
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001367 }
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001368 /* all done */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001369 return 0;
1370
1371 err_exit:
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001372 dev_err(&usbvision->dev->dev,
1373 "USBVision[%d]: video_register_device() failed\n",
1374 usbvision->nr);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001375 usbvision_unregister_video(usbvision);
1376 return -1;
1377}
1378
1379/*
1380 * usbvision_alloc()
1381 *
Thierry MERLEc5f48362007-05-08 17:22:29 -03001382 * This code allocates the struct usb_usbvision.
1383 * It is filled with default values.
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001384 *
1385 * Returns NULL on error, a pointer to usb_usbvision else.
1386 *
1387 */
Janne Grunaua8784402009-04-01 08:46:00 -03001388static struct usb_usbvision *usbvision_alloc(struct usb_device *dev,
1389 struct usb_interface *intf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001390{
1391 struct usb_usbvision *usbvision;
1392
Hans Verkuil1df79532009-02-21 18:11:31 -03001393 usbvision = kzalloc(sizeof(struct usb_usbvision), GFP_KERNEL);
1394 if (usbvision == NULL)
1395 return NULL;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001396
1397 usbvision->dev = dev;
Janne Grunaua8784402009-04-01 08:46:00 -03001398 if (v4l2_device_register(&intf->dev, &usbvision->v4l2_dev))
Hans Verkuil1df79532009-02-21 18:11:31 -03001399 goto err_free;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001400
Hans Verkuilc627b9d2010-12-18 11:06:09 -03001401 mutex_init(&usbvision->v4l2_lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001402
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001403 /* prepare control urb for control messages during interrupts */
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001404 usbvision->ctrl_urb = usb_alloc_urb(USBVISION_URB_FRAMES, GFP_KERNEL);
1405 if (usbvision->ctrl_urb == NULL)
Hans Verkuil1df79532009-02-21 18:11:31 -03001406 goto err_unreg;
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001407 init_waitqueue_head(&usbvision->ctrl_urb_wq);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001408
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001409 usbvision_init_power_off_timer(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001410
1411 return usbvision;
1412
Hans Verkuil1df79532009-02-21 18:11:31 -03001413err_unreg:
1414 v4l2_device_unregister(&usbvision->v4l2_dev);
1415err_free:
1416 kfree(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001417 return NULL;
1418}
1419
1420/*
1421 * usbvision_release()
1422 *
1423 * This code does final release of struct usb_usbvision. This happens
1424 * after the device is disconnected -and- all clients closed their files.
1425 *
1426 */
1427static void usbvision_release(struct usb_usbvision *usbvision)
1428{
1429 PDEBUG(DBG_PROBE, "");
1430
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001431 usbvision_reset_power_off_timer(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001432
1433 usbvision->initialized = 0;
1434
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001435 usbvision_remove_sysfs(usbvision->vdev);
1436 usbvision_unregister_video(usbvision);
1437
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001438 usb_free_urb(usbvision->ctrl_urb);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001439
Hans Verkuil1df79532009-02-21 18:11:31 -03001440 v4l2_device_unregister(&usbvision->v4l2_dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001441 kfree(usbvision);
1442
1443 PDEBUG(DBG_PROBE, "success");
1444}
1445
1446
Thierry MERLEc5f48362007-05-08 17:22:29 -03001447/*********************** usb interface **********************************/
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001448
1449static void usbvision_configure_video(struct usb_usbvision *usbvision)
1450{
Thierry MERLEc5f48362007-05-08 17:22:29 -03001451 int model;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001452
1453 if (usbvision == NULL)
1454 return;
1455
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001456 model = usbvision->dev_model;
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001457 usbvision->palette = usbvision_v4l2_format[2]; /* V4L2_PIX_FMT_RGB24; */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001458
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001459 if (usbvision_device_data[usbvision->dev_model].vin_reg2_override) {
1460 usbvision->vin_reg2_preset =
1461 usbvision_device_data[usbvision->dev_model].vin_reg2;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001462 } else {
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001463 usbvision->vin_reg2_preset = 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001464 }
1465
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001466 usbvision->tvnorm_id = usbvision_device_data[model].video_norm;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001467
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001468 usbvision->video_inputs = usbvision_device_data[model].video_channels;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001469 usbvision->ctl_input = 0;
1470
1471 /* This should be here to make i2c clients to be able to register */
Thierry MERLEc5f48362007-05-08 17:22:29 -03001472 /* first switch off audio */
1473 usbvision_audio_off(usbvision);
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001474 if (!power_on_at_open) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001475 /* and then power up the noisy tuner */
1476 usbvision_power_on(usbvision);
Thierry MERLE1ff16c22007-04-14 16:23:49 -03001477 usbvision_i2c_register(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001478 }
1479}
1480
1481/*
1482 * usbvision_probe()
1483 *
1484 * This procedure queries device descriptor and accepts the interface
1485 * if it looks like USBVISION video device
1486 *
1487 */
Mauro Carvalho Chehab659ae562007-04-14 15:09:59 -03001488static int __devinit usbvision_probe(struct usb_interface *intf,
1489 const struct usb_device_id *devid)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001490{
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001491 struct usb_device *dev = usb_get_dev(interface_to_usbdev(intf));
1492 struct usb_interface *uif;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001493 __u8 ifnum = intf->altsetting->desc.bInterfaceNumber;
1494 const struct usb_host_interface *interface;
1495 struct usb_usbvision *usbvision = NULL;
1496 const struct usb_endpoint_descriptor *endpoint;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001497 int model, i;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001498
1499 PDEBUG(DBG_PROBE, "VID=%#04x, PID=%#04x, ifnum=%u",
Mauro Carvalho Chehab659ae562007-04-14 15:09:59 -03001500 dev->descriptor.idVendor,
1501 dev->descriptor.idProduct, ifnum);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001502
Mauro Carvalho Chehab659ae562007-04-14 15:09:59 -03001503 model = devid->driver_info;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001504 if (model < 0 || model >= usbvision_device_data_size) {
1505 PDEBUG(DBG_PROBE, "model out of bounds %d", model);
Mauro Carvalho Chehabf8a389d2007-04-14 15:17:35 -03001506 return -ENODEV;
1507 }
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001508 printk(KERN_INFO "%s: %s found\n", __func__,
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001509 usbvision_device_data[model].model_string);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001510
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001511 if (usbvision_device_data[model].interface >= 0)
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001512 interface = &dev->actconfig->interface[usbvision_device_data[model].interface]->altsetting[0];
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001513 else
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001514 interface = &dev->actconfig->interface[ifnum]->altsetting[0];
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001515 endpoint = &interface->endpoint[1].desc;
Julia Lawall2230c3c2009-01-03 16:53:10 -03001516 if (!usb_endpoint_xfer_isoc(endpoint)) {
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001517 dev_err(&intf->dev, "%s: interface %d. has non-ISO endpoint!\n",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001518 __func__, ifnum);
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001519 dev_err(&intf->dev, "%s: Endpoint attributes %d",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001520 __func__, endpoint->bmAttributes);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001521 return -ENODEV;
1522 }
Julia Lawall13417982008-12-29 21:49:22 -03001523 if (usb_endpoint_dir_out(endpoint)) {
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001524 dev_err(&intf->dev, "%s: interface %d. has ISO OUT endpoint!\n",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001525 __func__, ifnum);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001526 return -ENODEV;
1527 }
1528
Janne Grunaua8784402009-04-01 08:46:00 -03001529 usbvision = usbvision_alloc(dev, intf);
1530 if (usbvision == NULL) {
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001531 dev_err(&intf->dev, "%s: couldn't allocate USBVision struct\n", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001532 return -ENOMEM;
1533 }
Mauro Carvalho Chehab659ae562007-04-14 15:09:59 -03001534
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001535 if (dev->descriptor.bNumConfigurations > 1)
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001536 usbvision->bridge_type = BRIDGE_NT1004;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001537 else if (model == DAZZLE_DVC_90_REV_1_SECAM)
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001538 usbvision->bridge_type = BRIDGE_NT1005;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001539 else
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001540 usbvision->bridge_type = BRIDGE_NT1003;
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001541 PDEBUG(DBG_PROBE, "bridge_type %d", usbvision->bridge_type);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001542
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001543 /* compute alternate max packet sizes */
1544 uif = dev->actconfig->interface[0];
1545
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001546 usbvision->num_alt = uif->num_altsetting;
1547 PDEBUG(DBG_PROBE, "Alternate settings: %i", usbvision->num_alt);
1548 usbvision->alt_max_pkt_size = kmalloc(32 * usbvision->num_alt, GFP_KERNEL);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001549 if (usbvision->alt_max_pkt_size == NULL) {
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001550 dev_err(&intf->dev, "usbvision: out of memory!\n");
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001551 return -ENOMEM;
1552 }
1553
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001554 for (i = 0; i < usbvision->num_alt; i++) {
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001555 u16 tmp = le16_to_cpu(uif->altsetting[i].endpoint[1].desc.
1556 wMaxPacketSize);
1557 usbvision->alt_max_pkt_size[i] =
1558 (tmp & 0x07ff) * (((tmp & 0x1800) >> 11) + 1);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001559 PDEBUG(DBG_PROBE, "Alternate setting %i, max size= %i", i,
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001560 usbvision->alt_max_pkt_size[i]);
1561 }
1562
1563
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001564 usbvision->nr = usbvision_nr++;
1565
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001566 usbvision->have_tuner = usbvision_device_data[model].tuner;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001567 if (usbvision->have_tuner)
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001568 usbvision->tuner_type = usbvision_device_data[model].tuner_type;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001569
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001570 usbvision->dev_model = model;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001571 usbvision->remove_pending = 0;
1572 usbvision->iface = ifnum;
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001573 usbvision->iface_alt = 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001574 usbvision->video_endp = endpoint->bEndpointAddress;
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001575 usbvision->isoc_packet_size = 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001576 usbvision->usb_bandwidth = 0;
1577 usbvision->user = 0;
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001578 usbvision->streaming = stream_off;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001579 usbvision_configure_video(usbvision);
Hans Verkuil84034722010-09-17 15:07:28 -03001580 usbvision_register_video(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001581
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001582 usbvision_create_sysfs(usbvision->vdev);
1583
1584 PDEBUG(DBG_PROBE, "success");
1585 return 0;
1586}
1587
1588
1589/*
1590 * usbvision_disconnect()
1591 *
1592 * This procedure stops all driver activity, deallocates interface-private
1593 * structure (pointed by 'ptr') and after that driver should be removable
1594 * with no ill consequences.
1595 *
1596 */
1597static void __devexit usbvision_disconnect(struct usb_interface *intf)
1598{
Hans Verkuilaeb506a2010-05-02 09:00:13 -03001599 struct usb_usbvision *usbvision = to_usbvision(usb_get_intfdata(intf));
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001600
1601 PDEBUG(DBG_PROBE, "");
1602
1603 if (usbvision == NULL) {
Julia Lawall42020662010-05-27 09:36:45 -03001604 pr_err("%s: usb_get_intfdata() failed\n", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001605 return;
1606 }
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001607
Hans Verkuilc627b9d2010-12-18 11:06:09 -03001608 mutex_lock(&usbvision->v4l2_lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001609
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001610 /* At this time we ask to cancel outstanding URBs */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001611 usbvision_stop_isoc(usbvision);
1612
Hans Verkuilf1ba28c2009-03-14 12:27:01 -03001613 v4l2_device_disconnect(&usbvision->v4l2_dev);
1614
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001615 if (usbvision->power) {
Thierry MERLE1ff16c22007-04-14 16:23:49 -03001616 usbvision_i2c_unregister(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001617 usbvision_power_off(usbvision);
1618 }
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001619 usbvision->remove_pending = 1; /* Now all ISO data will be ignored */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001620
1621 usb_put_dev(usbvision->dev);
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001622 usbvision->dev = NULL; /* USB device is no more */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001623
Hans Verkuilc627b9d2010-12-18 11:06:09 -03001624 mutex_unlock(&usbvision->v4l2_lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001625
1626 if (usbvision->user) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001627 printk(KERN_INFO "%s: In use, disconnect pending\n",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001628 __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001629 wake_up_interruptible(&usbvision->wait_frame);
1630 wake_up_interruptible(&usbvision->wait_stream);
Thierry MERLEc5f48362007-05-08 17:22:29 -03001631 } else {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001632 usbvision_release(usbvision);
1633 }
1634
1635 PDEBUG(DBG_PROBE, "success");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001636}
1637
1638static struct usb_driver usbvision_driver = {
1639 .name = "usbvision",
1640 .id_table = usbvision_table,
1641 .probe = usbvision_probe,
Jean Delvaree36bc312009-06-04 11:07:16 -03001642 .disconnect = __devexit_p(usbvision_disconnect),
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001643};
1644
1645/*
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001646 * usbvision_init()
1647 *
1648 * This code is run to initialize the driver.
1649 *
1650 */
1651static int __init usbvision_init(void)
1652{
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001653 int err_code;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001654
1655 PDEBUG(DBG_PROBE, "");
1656
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001657 PDEBUG(DBG_IO, "IO debugging is enabled [video]");
1658 PDEBUG(DBG_PROBE, "PROBE debugging is enabled [video]");
Thierry MERLEc876a342006-12-09 16:42:54 -03001659 PDEBUG(DBG_MMAP, "MMAP debugging is enabled [video]");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001660
1661 /* disable planar mode support unless compression enabled */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001662 if (isoc_mode != ISOC_MODE_COMPRESS) {
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001663 /* FIXME : not the right way to set supported flag */
1664 usbvision_v4l2_format[6].supported = 0; /* V4L2_PIX_FMT_YVU420 */
1665 usbvision_v4l2_format[7].supported = 0; /* V4L2_PIX_FMT_YUV422P */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001666 }
1667
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001668 err_code = usb_register(&usbvision_driver);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001669
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001670 if (err_code == 0) {
Dwaine Gardende6a1b82007-01-07 21:13:55 -03001671 printk(KERN_INFO DRIVER_DESC " : " USBVISION_VERSION_STRING "\n");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001672 PDEBUG(DBG_PROBE, "success");
1673 }
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001674 return err_code;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001675}
1676
1677static void __exit usbvision_exit(void)
1678{
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001679 PDEBUG(DBG_PROBE, "");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001680
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001681 usb_deregister(&usbvision_driver);
1682 PDEBUG(DBG_PROBE, "success");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001683}
1684
1685module_init(usbvision_init);
1686module_exit(usbvision_exit);
1687
1688/*
1689 * Overrides for Emacs so that we follow Linus's tabbing style.
1690 * ---------------------------------------------------------------------------
1691 * Local variables:
1692 * c-basic-offset: 8
1693 * End:
1694 */