blob: 9855fbe5927af0ea90096bba716d060541a1b01b [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
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"
80#define USBVISION_DRIVER_VERSION_MAJOR 0
81#define USBVISION_DRIVER_VERSION_MINOR 9
Hans Verkuil3ff4ad82009-04-01 03:15:52 -030082#define USBVISION_DRIVER_VERSION_PATCHLEVEL 10
Thierry MERLEc5f48362007-05-08 17:22:29 -030083#define USBVISION_DRIVER_VERSION KERNEL_VERSION(USBVISION_DRIVER_VERSION_MAJOR,\
84USBVISION_DRIVER_VERSION_MINOR,\
85USBVISION_DRIVER_VERSION_PATCHLEVEL)
Hans Verkuil6d6a48e2010-12-29 13:53:21 -030086#define USBVISION_VERSION_STRING __stringify(USBVISION_DRIVER_VERSION_MAJOR) \
87"." __stringify(USBVISION_DRIVER_VERSION_MINOR) \
88"." __stringify(USBVISION_DRIVER_VERSION_PATCHLEVEL)
Thierry MERLE483dfdb2006-12-04 08:31:45 -030089
90#define ENABLE_HEXDUMP 0 /* Enable if you need it */
91
92
Thierry MERLE483dfdb2006-12-04 08:31:45 -030093#ifdef USBVISION_DEBUG
Thierry MERLEdf18c312008-04-04 21:00:57 -030094 #define PDEBUG(level, fmt, args...) { \
Thierry MERLEc5f48362007-05-08 17:22:29 -030095 if (video_debug & (level)) \
Greg Kroah-Hartmana482f322008-10-10 05:08:23 -030096 printk(KERN_INFO KBUILD_MODNAME ":[%s:%d] " fmt, \
97 __func__, __LINE__ , ## args); \
Thierry MERLEdf18c312008-04-04 21:00:57 -030098 }
Thierry MERLE483dfdb2006-12-04 08:31:45 -030099#else
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300100 #define PDEBUG(level, fmt, args...) do {} while (0)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300101#endif
102
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300103#define DBG_IO (1 << 1)
104#define DBG_PROBE (1 << 2)
105#define DBG_MMAP (1 << 3)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300106
Hans Verkuil52cb0bf2010-12-19 20:33:51 -0300107/* String operations */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300108#define rmspace(str) while (*str == ' ') str++;
109#define goto2next(str) while (*str != ' ') str++; while (*str == ' ') str++;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300110
111
Thierry MERLEc5f48362007-05-08 17:22:29 -0300112/* sequential number of usbvision device */
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -0300113static int usbvision_nr;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300114
115static struct usbvision_v4l2_format_st usbvision_v4l2_format[] = {
116 { 1, 1, 8, V4L2_PIX_FMT_GREY , "GREY" },
117 { 1, 2, 16, V4L2_PIX_FMT_RGB565 , "RGB565" },
118 { 1, 3, 24, V4L2_PIX_FMT_RGB24 , "RGB24" },
119 { 1, 4, 32, V4L2_PIX_FMT_RGB32 , "RGB32" },
120 { 1, 2, 16, V4L2_PIX_FMT_RGB555 , "RGB555" },
121 { 1, 2, 16, V4L2_PIX_FMT_YUYV , "YUV422" },
Hans Verkuil52cb0bf2010-12-19 20:33:51 -0300122 { 1, 2, 12, V4L2_PIX_FMT_YVU420 , "YUV420P" }, /* 1.5 ! */
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300123 { 1, 2, 16, V4L2_PIX_FMT_YUV422P , "YUV422P" }
124};
125
Thierry MERLEc5f48362007-05-08 17:22:29 -0300126/* Function prototypes */
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300127static void usbvision_release(struct usb_usbvision *usbvision);
128
Joe Perchesc84e6032008-02-03 17:18:59 +0200129/* Default initialization of device driver parameters */
Thierry MERLEc5f48362007-05-08 17:22:29 -0300130/* Set the default format for ISOC endpoint */
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300131static int isoc_mode = ISOC_MODE_COMPRESS;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300132/* Set the default Debug Mode of the device driver */
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -0300133static int video_debug;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300134/* Set the default device to power on at startup */
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300135static int power_on_at_open = 1;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300136/* Sequential Number of Video Device */
137static int video_nr = -1;
138/* Sequential Number of Radio Device */
139static int radio_nr = -1;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300140
Thierry MERLEc5f48362007-05-08 17:22:29 -0300141/* Grab parameters for the device driver */
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300142
Thierry MERLEc5f48362007-05-08 17:22:29 -0300143/* Showing parameters under SYSFS */
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300144module_param(isoc_mode, int, 0444);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300145module_param(video_debug, int, 0444);
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300146module_param(power_on_at_open, int, 0444);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300147module_param(video_nr, int, 0444);
148module_param(radio_nr, int, 0444);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300149
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300150MODULE_PARM_DESC(isoc_mode, " Set the default format for ISOC endpoint. Default: 0x60 (Compression On)");
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300151MODULE_PARM_DESC(video_debug, " Set the default Debug Mode of the device driver. Default: 0 (Off)");
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300152MODULE_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 -0300153MODULE_PARM_DESC(video_nr, "Set video device number (/dev/videoX). Default: -1 (autodetect)");
154MODULE_PARM_DESC(radio_nr, "Set radio device number (/dev/radioX). Default: -1 (autodetect)");
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300155
156
Hans Verkuil52cb0bf2010-12-19 20:33:51 -0300157/* Misc stuff */
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300158MODULE_AUTHOR(DRIVER_AUTHOR);
159MODULE_DESCRIPTION(DRIVER_DESC);
160MODULE_LICENSE(DRIVER_LICENSE);
Mauro Carvalho Chehaba1ed5512006-12-09 11:41:59 -0300161MODULE_VERSION(USBVISION_VERSION_STRING);
162MODULE_ALIAS(DRIVER_ALIAS);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300163
164
Thierry MERLEc5f48362007-05-08 17:22:29 -0300165/*****************************************************************************/
166/* SYSFS Code - Copied from the stv680.c usb module. */
167/* Device information is located at /sys/class/video4linux/video0 */
168/* Device parameters information is located at /sys/module/usbvision */
169/* Device USB Information is located at */
170/* /sys/bus/usb/drivers/USBVision Video Grabber */
171/*****************************************************************************/
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300172
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300173#define YES_NO(x) ((x) ? "Yes" : "No")
174
Kay Sievers54bd5b62007-10-08 16:26:13 -0300175static inline struct usb_usbvision *cd_to_usbvision(struct device *cd)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300176{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300177 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300178 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300179 return video_get_drvdata(vdev);
180}
181
Kay Sievers54bd5b62007-10-08 16:26:13 -0300182static ssize_t show_version(struct device *cd,
183 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300184{
185 return sprintf(buf, "%s\n", USBVISION_VERSION_STRING);
186}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300187static DEVICE_ATTR(version, S_IRUGO, show_version, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300188
Kay Sievers54bd5b62007-10-08 16:26:13 -0300189static ssize_t show_model(struct device *cd,
190 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300191{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300192 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300193 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300194 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300195 return sprintf(buf, "%s\n",
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300196 usbvision_device_data[usbvision->dev_model].model_string);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300197}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300198static DEVICE_ATTR(model, S_IRUGO, show_model, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300199
Kay Sievers54bd5b62007-10-08 16:26:13 -0300200static ssize_t show_hue(struct device *cd,
201 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300202{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300203 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300204 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300205 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
206 struct v4l2_control ctrl;
207 ctrl.id = V4L2_CID_HUE;
208 ctrl.value = 0;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300209 if (usbvision->user)
Hans Verkuil1df79532009-02-21 18:11:31 -0300210 call_all(usbvision, core, g_ctrl, &ctrl);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -0300211 return sprintf(buf, "%d\n", ctrl.value);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300212}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300213static DEVICE_ATTR(hue, S_IRUGO, show_hue, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300214
Kay Sievers54bd5b62007-10-08 16:26:13 -0300215static ssize_t show_contrast(struct device *cd,
216 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300217{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300218 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300219 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300220 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
221 struct v4l2_control ctrl;
222 ctrl.id = V4L2_CID_CONTRAST;
223 ctrl.value = 0;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300224 if (usbvision->user)
Hans Verkuil1df79532009-02-21 18:11:31 -0300225 call_all(usbvision, core, g_ctrl, &ctrl);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -0300226 return sprintf(buf, "%d\n", ctrl.value);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300227}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300228static DEVICE_ATTR(contrast, S_IRUGO, show_contrast, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300229
Kay Sievers54bd5b62007-10-08 16:26:13 -0300230static ssize_t show_brightness(struct device *cd,
231 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300232{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300233 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300234 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300235 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
236 struct v4l2_control ctrl;
237 ctrl.id = V4L2_CID_BRIGHTNESS;
238 ctrl.value = 0;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300239 if (usbvision->user)
Hans Verkuil1df79532009-02-21 18:11:31 -0300240 call_all(usbvision, core, g_ctrl, &ctrl);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -0300241 return sprintf(buf, "%d\n", ctrl.value);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300242}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300243static DEVICE_ATTR(brightness, S_IRUGO, show_brightness, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300244
Kay Sievers54bd5b62007-10-08 16:26:13 -0300245static ssize_t show_saturation(struct device *cd,
246 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300247{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300248 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300249 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300250 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
251 struct v4l2_control ctrl;
252 ctrl.id = V4L2_CID_SATURATION;
253 ctrl.value = 0;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300254 if (usbvision->user)
Hans Verkuil1df79532009-02-21 18:11:31 -0300255 call_all(usbvision, core, g_ctrl, &ctrl);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -0300256 return sprintf(buf, "%d\n", ctrl.value);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300257}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300258static DEVICE_ATTR(saturation, S_IRUGO, show_saturation, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300259
Kay Sievers54bd5b62007-10-08 16:26:13 -0300260static ssize_t show_streaming(struct device *cd,
261 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300262{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300263 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300264 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300265 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300266 return sprintf(buf, "%s\n",
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300267 YES_NO(usbvision->streaming == stream_on ? 1 : 0));
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300268}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300269static DEVICE_ATTR(streaming, S_IRUGO, show_streaming, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300270
Kay Sievers54bd5b62007-10-08 16:26:13 -0300271static ssize_t show_compression(struct device *cd,
272 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300273{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300274 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300275 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300276 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300277 return sprintf(buf, "%s\n",
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300278 YES_NO(usbvision->isoc_mode == ISOC_MODE_COMPRESS));
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300279}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300280static DEVICE_ATTR(compression, S_IRUGO, show_compression, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300281
Kay Sievers54bd5b62007-10-08 16:26:13 -0300282static ssize_t show_device_bridge(struct device *cd,
283 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300284{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300285 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300286 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300287 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300288 return sprintf(buf, "%d\n", usbvision->bridge_type);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300289}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300290static DEVICE_ATTR(bridge, S_IRUGO, show_device_bridge, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300291
292static void usbvision_create_sysfs(struct video_device *vdev)
293{
294 int res;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300295
Dwaine Gardened00b412006-12-27 10:23:28 -0200296 if (!vdev)
297 return;
298 do {
Hans Verkuil22a04f12008-07-20 06:35:02 -0300299 res = device_create_file(&vdev->dev, &dev_attr_version);
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_model);
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_hue);
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_contrast);
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_brightness);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300312 if (res < 0)
Dwaine Gardened00b412006-12-27 10:23:28 -0200313 break;
Hans Verkuil22a04f12008-07-20 06:35:02 -0300314 res = device_create_file(&vdev->dev, &dev_attr_saturation);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300315 if (res < 0)
Dwaine Gardened00b412006-12-27 10:23:28 -0200316 break;
Hans Verkuil22a04f12008-07-20 06:35:02 -0300317 res = device_create_file(&vdev->dev, &dev_attr_streaming);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300318 if (res < 0)
Dwaine Gardened00b412006-12-27 10:23:28 -0200319 break;
Hans Verkuil22a04f12008-07-20 06:35:02 -0300320 res = device_create_file(&vdev->dev, &dev_attr_compression);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300321 if (res < 0)
Dwaine Gardened00b412006-12-27 10:23:28 -0200322 break;
Hans Verkuil22a04f12008-07-20 06:35:02 -0300323 res = device_create_file(&vdev->dev, &dev_attr_bridge);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300324 if (res >= 0)
Dwaine Gardened00b412006-12-27 10:23:28 -0200325 return;
326 } while (0);
327
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -0300328 dev_err(&vdev->dev, "%s error: %d\n", __func__, res);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300329}
330
331static void usbvision_remove_sysfs(struct video_device *vdev)
332{
333 if (vdev) {
Hans Verkuil22a04f12008-07-20 06:35:02 -0300334 device_remove_file(&vdev->dev, &dev_attr_version);
335 device_remove_file(&vdev->dev, &dev_attr_model);
336 device_remove_file(&vdev->dev, &dev_attr_hue);
337 device_remove_file(&vdev->dev, &dev_attr_contrast);
338 device_remove_file(&vdev->dev, &dev_attr_brightness);
339 device_remove_file(&vdev->dev, &dev_attr_saturation);
340 device_remove_file(&vdev->dev, &dev_attr_streaming);
341 device_remove_file(&vdev->dev, &dev_attr_compression);
342 device_remove_file(&vdev->dev, &dev_attr_bridge);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300343 }
344}
345
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300346/*
347 * usbvision_open()
348 *
349 * This is part of Video 4 Linux API. The driver can be opened by one
350 * client only (checks internal counter 'usbvision->user'). The procedure
351 * then allocates buffers needed for video processing.
352 *
353 */
Hans Verkuilbec43662008-12-30 06:58:20 -0300354static int usbvision_v4l2_open(struct file *file)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300355{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300356 struct usb_usbvision *usbvision = video_drvdata(file);
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300357 int err_code = 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300358
359 PDEBUG(DBG_IO, "open");
360
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300361 usbvision_reset_power_off_timer(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300362
363 if (usbvision->user)
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300364 err_code = -EBUSY;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300365 else {
Thierry MERLE6f78e182007-02-07 10:13:11 -0300366 /* Allocate memory for the scratch ring buffer */
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300367 err_code = usbvision_scratch_alloc(usbvision);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300368 if (isoc_mode == ISOC_MODE_COMPRESS) {
Thierry MERLEc5f48362007-05-08 17:22:29 -0300369 /* Allocate intermediate decompression buffers
370 only if needed */
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300371 err_code = usbvision_decompress_alloc(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300372 }
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300373 if (err_code) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300374 /* Deallocate all buffers if trouble */
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300375 usbvision_scratch_free(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300376 usbvision_decompress_free(usbvision);
377 }
378 }
379
380 /* If so far no errors then we shall start the camera */
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300381 if (!err_code) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300382 if (usbvision->power == 0) {
383 usbvision_power_on(usbvision);
Thierry MERLE1ff16c22007-04-14 16:23:49 -0300384 usbvision_i2c_register(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300385 }
386
387 /* Send init sequence only once, it's large! */
388 if (!usbvision->initialized) {
389 int setup_ok = 0;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300390 setup_ok = usbvision_setup(usbvision, isoc_mode);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300391 if (setup_ok)
392 usbvision->initialized = 1;
393 else
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300394 err_code = -EBUSY;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300395 }
396
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300397 if (!err_code) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300398 usbvision_begin_streaming(usbvision);
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300399 err_code = usbvision_init_isoc(usbvision);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300400 /* device must be initialized before isoc transfer */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300401 usbvision_muxsel(usbvision, 0);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300402 usbvision->user++;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300403 } else {
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300404 if (power_on_at_open) {
Thierry MERLE1ff16c22007-04-14 16:23:49 -0300405 usbvision_i2c_unregister(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300406 usbvision_power_off(usbvision);
407 usbvision->initialized = 0;
408 }
409 }
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300410 }
411
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300412 /* prepare queues */
413 usbvision_empty_framequeues(usbvision);
414
415 PDEBUG(DBG_IO, "success");
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300416 return err_code;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300417}
418
419/*
420 * usbvision_v4l2_close()
421 *
422 * This is part of Video 4 Linux API. The procedure
423 * stops streaming and deallocates all buffers that were earlier
424 * allocated in usbvision_v4l2_open().
425 *
426 */
Hans Verkuilbec43662008-12-30 06:58:20 -0300427static int usbvision_v4l2_close(struct file *file)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300428{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300429 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300430
431 PDEBUG(DBG_IO, "close");
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300432
433 usbvision_audio_off(usbvision);
434 usbvision_restart_isoc(usbvision);
435 usbvision_stop_isoc(usbvision);
436
437 usbvision_decompress_free(usbvision);
Thierry MERLE38284ba2006-12-15 16:46:53 -0300438 usbvision_frames_free(usbvision);
Thierry MERLE6f78e182007-02-07 10:13:11 -0300439 usbvision_empty_framequeues(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300440 usbvision_scratch_free(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300441
442 usbvision->user--;
443
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300444 if (power_on_at_open) {
Thierry MERLEc5f48362007-05-08 17:22:29 -0300445 /* power off in a little while
446 to avoid off/on every close/open short sequences */
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300447 usbvision_set_power_off_timer(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300448 usbvision->initialized = 0;
449 }
450
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300451 if (usbvision->remove_pending) {
Harvey Harrisond2db42d2008-04-04 20:50:07 -0300452 printk(KERN_INFO "%s: Final disconnect\n", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300453 usbvision_release(usbvision);
454 }
455
456 PDEBUG(DBG_IO, "success");
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300457 return 0;
458}
459
460
461/*
462 * usbvision_ioctl()
463 *
464 * This is part of Video 4 Linux API. The procedure handles ioctl() calls.
465 *
466 */
Thierry MERLEc5f48362007-05-08 17:22:29 -0300467#ifdef CONFIG_VIDEO_ADV_DEBUG
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300468static int vidioc_g_register(struct file *file, void *priv,
Hans Verkuilaecde8b2008-12-30 07:14:19 -0300469 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 MERLE483dfdb2006-12-04 08:31:45 -0300473
Hans Verkuilaecde8b2008-12-30 07:14:19 -0300474 if (!v4l2_chip_match_host(&reg->match))
Thierry MERLEc5f48362007-05-08 17:22:29 -0300475 return -EINVAL;
476 /* NT100x has a 8-bit register space */
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300477 err_code = usbvision_read_reg(usbvision, reg->reg&0xff);
478 if (err_code < 0) {
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -0300479 dev_err(&usbvision->vdev->dev,
480 "%s: VIDIOC_DBG_G_REGISTER failed: error %d\n",
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300481 __func__, err_code);
482 return err_code;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300483 }
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300484 reg->val = err_code;
Hans Verkuilaecde8b2008-12-30 07:14:19 -0300485 reg->size = 1;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300486 return 0;
487}
488
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300489static int vidioc_s_register(struct file *file, void *priv,
Hans Verkuilaecde8b2008-12-30 07:14:19 -0300490 struct v4l2_dbg_register *reg)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300491{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300492 struct usb_usbvision *usbvision = video_drvdata(file);
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300493 int err_code;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300494
Hans Verkuilaecde8b2008-12-30 07:14:19 -0300495 if (!v4l2_chip_match_host(&reg->match))
Thierry MERLEc5f48362007-05-08 17:22:29 -0300496 return -EINVAL;
497 /* NT100x has a 8-bit register space */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300498 err_code = usbvision_write_reg(usbvision, reg->reg & 0xff, reg->val);
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300499 if (err_code < 0) {
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -0300500 dev_err(&usbvision->vdev->dev,
501 "%s: VIDIOC_DBG_S_REGISTER failed: error %d\n",
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300502 __func__, err_code);
503 return err_code;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300504 }
505 return 0;
506}
507#endif
508
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300509static int vidioc_querycap(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300510 struct v4l2_capability *vc)
511{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300512 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300513
514 strlcpy(vc->driver, "USBVision", sizeof(vc->driver));
515 strlcpy(vc->card,
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300516 usbvision_device_data[usbvision->dev_model].model_string,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300517 sizeof(vc->card));
Thierry MERLE6f2a2782009-01-20 17:40:44 -0300518 usb_make_path(usbvision->dev, vc->bus_info, sizeof(vc->bus_info));
Thierry MERLEc5f48362007-05-08 17:22:29 -0300519 vc->version = USBVISION_DRIVER_VERSION;
520 vc->capabilities = V4L2_CAP_VIDEO_CAPTURE |
521 V4L2_CAP_AUDIO |
522 V4L2_CAP_READWRITE |
523 V4L2_CAP_STREAMING |
524 (usbvision->have_tuner ? V4L2_CAP_TUNER : 0);
525 return 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300526}
527
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300528static int vidioc_enum_input(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300529 struct v4l2_input *vi)
530{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300531 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300532 int chan;
533
Roel Kluin223ffe52009-05-02 16:38:47 -0300534 if (vi->index >= usbvision->video_inputs)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300535 return -EINVAL;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300536 if (usbvision->have_tuner)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300537 chan = vi->index;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300538 else
Hans Verkuil52cb0bf2010-12-19 20:33:51 -0300539 chan = vi->index + 1; /* skip Television string*/
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300540
Thierry MERLEc5f48362007-05-08 17:22:29 -0300541 /* Determine the requested input characteristics
542 specific for each usbvision card model */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300543 switch (chan) {
Thierry MERLEc5f48362007-05-08 17:22:29 -0300544 case 0:
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300545 if (usbvision_device_data[usbvision->dev_model].video_channels == 4) {
Thierry MERLEc5f48362007-05-08 17:22:29 -0300546 strcpy(vi->name, "White Video Input");
547 } else {
548 strcpy(vi->name, "Television");
549 vi->type = V4L2_INPUT_TYPE_TUNER;
550 vi->audioset = 1;
551 vi->tuner = chan;
552 vi->std = USBVISION_NORMS;
553 }
554 break;
555 case 1:
556 vi->type = V4L2_INPUT_TYPE_CAMERA;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300557 if (usbvision_device_data[usbvision->dev_model].video_channels == 4)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300558 strcpy(vi->name, "Green Video Input");
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300559 else
Thierry MERLEc5f48362007-05-08 17:22:29 -0300560 strcpy(vi->name, "Composite Video Input");
Thierry MERLEc5f48362007-05-08 17:22:29 -0300561 vi->std = V4L2_STD_PAL;
562 break;
563 case 2:
564 vi->type = V4L2_INPUT_TYPE_CAMERA;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300565 if (usbvision_device_data[usbvision->dev_model].video_channels == 4)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300566 strcpy(vi->name, "Yellow Video Input");
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300567 else
Thierry MERLEc5f48362007-05-08 17:22:29 -0300568 strcpy(vi->name, "S-Video Input");
Thierry MERLEc5f48362007-05-08 17:22:29 -0300569 vi->std = V4L2_STD_PAL;
570 break;
571 case 3:
572 vi->type = V4L2_INPUT_TYPE_CAMERA;
573 strcpy(vi->name, "Red Video Input");
574 vi->std = V4L2_STD_PAL;
575 break;
576 }
577 return 0;
578}
579
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300580static int vidioc_g_input(struct file *file, void *priv, unsigned int *input)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300581{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300582 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300583
584 *input = usbvision->ctl_input;
585 return 0;
586}
587
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300588static int vidioc_s_input(struct file *file, void *priv, unsigned int input)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300589{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300590 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300591
Roel Kluinf14a2972009-10-23 07:59:42 -0300592 if (input >= usbvision->video_inputs)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300593 return -EINVAL;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300594
Thierry MERLE66a17872007-06-26 16:35:30 -0300595 usbvision_muxsel(usbvision, input);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300596 usbvision_set_input(usbvision);
597 usbvision_set_output(usbvision,
598 usbvision->curwidth,
599 usbvision->curheight);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300600 return 0;
601}
602
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300603static int vidioc_s_std(struct file *file, void *priv, v4l2_std_id *id)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300604{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300605 struct usb_usbvision *usbvision = video_drvdata(file);
606
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300607 usbvision->tvnorm_id = *id;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300608
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300609 call_all(usbvision, core, s_std, usbvision->tvnorm_id);
Thierry MERLE66a17872007-06-26 16:35:30 -0300610 /* propagate the change to the decoder */
611 usbvision_muxsel(usbvision, usbvision->ctl_input);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300612
613 return 0;
614}
615
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300616static int vidioc_g_tuner(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300617 struct v4l2_tuner *vt)
618{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300619 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300620
Hans Verkuil52cb0bf2010-12-19 20:33:51 -0300621 if (!usbvision->have_tuner || vt->index) /* Only tuner 0 */
Thierry MERLEc5f48362007-05-08 17:22:29 -0300622 return -EINVAL;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300623 if (usbvision->radio) {
Thierry MERLEc5f48362007-05-08 17:22:29 -0300624 strcpy(vt->name, "Radio");
625 vt->type = V4L2_TUNER_RADIO;
626 } else {
627 strcpy(vt->name, "Television");
628 }
629 /* Let clients fill in the remainder of this struct */
Hans Verkuil1df79532009-02-21 18:11:31 -0300630 call_all(usbvision, tuner, g_tuner, vt);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300631
632 return 0;
633}
634
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300635static int vidioc_s_tuner(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300636 struct v4l2_tuner *vt)
637{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300638 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300639
Hans Verkuil52cb0bf2010-12-19 20:33:51 -0300640 /* Only no or one tuner for now */
Thierry MERLEc5f48362007-05-08 17:22:29 -0300641 if (!usbvision->have_tuner || vt->index)
642 return -EINVAL;
643 /* let clients handle this */
Hans Verkuil1df79532009-02-21 18:11:31 -0300644 call_all(usbvision, tuner, s_tuner, vt);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300645
646 return 0;
647}
648
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300649static int vidioc_g_frequency(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300650 struct v4l2_frequency *freq)
651{
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 freq->tuner = 0; /* Only one tuner */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300655 if (usbvision->radio)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300656 freq->type = V4L2_TUNER_RADIO;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300657 else
Thierry MERLEc5f48362007-05-08 17:22:29 -0300658 freq->type = V4L2_TUNER_ANALOG_TV;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300659 freq->frequency = usbvision->freq;
660
661 return 0;
662}
663
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300664static int vidioc_s_frequency(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300665 struct v4l2_frequency *freq)
666{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300667 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300668
Hans Verkuil52cb0bf2010-12-19 20:33:51 -0300669 /* Only no or one tuner for now */
Thierry MERLEc5f48362007-05-08 17:22:29 -0300670 if (!usbvision->have_tuner || freq->tuner)
671 return -EINVAL;
672
673 usbvision->freq = freq->frequency;
Hans Verkuil1df79532009-02-21 18:11:31 -0300674 call_all(usbvision, tuner, s_frequency, freq);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300675
676 return 0;
677}
678
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300679static int vidioc_g_audio(struct file *file, void *priv, struct v4l2_audio *a)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300680{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300681 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300682
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300683 if (usbvision->radio)
684 strcpy(a->name, "Radio");
685 else
Thierry MERLEc5f48362007-05-08 17:22:29 -0300686 strcpy(a->name, "TV");
Thierry MERLEc5f48362007-05-08 17:22:29 -0300687
688 return 0;
689}
690
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300691static int vidioc_s_audio(struct file *file, void *fh,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300692 struct v4l2_audio *a)
693{
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300694 if (a->index)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300695 return -EINVAL;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300696 return 0;
697}
698
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300699static int vidioc_queryctrl(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300700 struct v4l2_queryctrl *ctrl)
701{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300702 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300703
Hans Verkuil1df79532009-02-21 18:11:31 -0300704 call_all(usbvision, core, queryctrl, ctrl);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300705
706 if (!ctrl->type)
707 return -EINVAL;
708
709 return 0;
710}
711
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300712static int vidioc_g_ctrl(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300713 struct v4l2_control *ctrl)
714{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300715 struct usb_usbvision *usbvision = video_drvdata(file);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300716
Hans Verkuil1df79532009-02-21 18:11:31 -0300717 call_all(usbvision, core, g_ctrl, ctrl);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300718 return 0;
719}
720
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300721static int vidioc_s_ctrl(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300722 struct v4l2_control *ctrl)
723{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300724 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300725
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300726 call_all(usbvision, core, s_ctrl, ctrl);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300727 return 0;
728}
729
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300730static int vidioc_reqbufs(struct file *file,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300731 void *priv, struct v4l2_requestbuffers *vr)
732{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300733 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300734 int ret;
735
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300736 RESTRICT_TO_RANGE(vr->count, 1, USBVISION_NUMFRAMES);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300737
738 /* Check input validity:
739 the user must do a VIDEO CAPTURE and MMAP method. */
Trent Piepho975f5762009-03-28 22:25:36 -0300740 if (vr->memory != V4L2_MEMORY_MMAP)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300741 return -EINVAL;
742
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300743 if (usbvision->streaming == stream_on) {
744 ret = usbvision_stream_interrupt(usbvision);
745 if (ret)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300746 return ret;
747 }
748
749 usbvision_frames_free(usbvision);
750 usbvision_empty_framequeues(usbvision);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300751 vr->count = usbvision_frames_alloc(usbvision, vr->count);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300752
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300753 usbvision->cur_frame = NULL;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300754
755 return 0;
756}
757
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300758static int vidioc_querybuf(struct file *file,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300759 void *priv, struct v4l2_buffer *vb)
760{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300761 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300762 struct usbvision_frame *frame;
763
764 /* FIXME : must control
765 that buffers are mapped (VIDIOC_REQBUFS has been called) */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300766 if (vb->index >= usbvision->num_frames)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300767 return -EINVAL;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300768 /* Updating the corresponding frame state */
769 vb->flags = 0;
770 frame = &usbvision->frame[vb->index];
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300771 if (frame->grabstate >= frame_state_ready)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300772 vb->flags |= V4L2_BUF_FLAG_QUEUED;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300773 if (frame->grabstate >= frame_state_done)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300774 vb->flags |= V4L2_BUF_FLAG_DONE;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300775 if (frame->grabstate == frame_state_unused)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300776 vb->flags |= V4L2_BUF_FLAG_MAPPED;
777 vb->memory = V4L2_MEMORY_MMAP;
778
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300779 vb->m.offset = vb->index * PAGE_ALIGN(usbvision->max_frame_size);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300780
781 vb->memory = V4L2_MEMORY_MMAP;
782 vb->field = V4L2_FIELD_NONE;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300783 vb->length = usbvision->curwidth *
784 usbvision->curheight *
Thierry MERLEc5f48362007-05-08 17:22:29 -0300785 usbvision->palette.bytes_per_pixel;
786 vb->timestamp = usbvision->frame[vb->index].timestamp;
787 vb->sequence = usbvision->frame[vb->index].sequence;
788 return 0;
789}
790
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300791static int vidioc_qbuf(struct file *file, void *priv, struct v4l2_buffer *vb)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300792{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300793 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300794 struct usbvision_frame *frame;
795 unsigned long lock_flags;
796
797 /* FIXME : works only on VIDEO_CAPTURE MODE, MMAP. */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300798 if (vb->index >= usbvision->num_frames)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300799 return -EINVAL;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300800
801 frame = &usbvision->frame[vb->index];
802
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300803 if (frame->grabstate != frame_state_unused)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300804 return -EAGAIN;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300805
806 /* Mark it as ready and enqueue frame */
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300807 frame->grabstate = frame_state_ready;
808 frame->scanstate = scan_state_scanning;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300809 frame->scanlength = 0; /* Accumulated in usbvision_parse_data() */
810
811 vb->flags &= ~V4L2_BUF_FLAG_DONE;
812
813 /* set v4l2_format index */
814 frame->v4l2_format = usbvision->palette;
815
816 spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
817 list_add_tail(&usbvision->frame[vb->index].frame, &usbvision->inqueue);
818 spin_unlock_irqrestore(&usbvision->queue_lock, lock_flags);
819
820 return 0;
821}
822
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300823static int vidioc_dqbuf(struct file *file, void *priv, struct v4l2_buffer *vb)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300824{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300825 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300826 int ret;
827 struct usbvision_frame *f;
828 unsigned long lock_flags;
829
Thierry MERLEc5f48362007-05-08 17:22:29 -0300830 if (list_empty(&(usbvision->outqueue))) {
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300831 if (usbvision->streaming == stream_idle)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300832 return -EINVAL;
833 ret = wait_event_interruptible
834 (usbvision->wait_frame,
835 !list_empty(&(usbvision->outqueue)));
836 if (ret)
837 return ret;
838 }
839
840 spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
841 f = list_entry(usbvision->outqueue.next,
842 struct usbvision_frame, frame);
843 list_del(usbvision->outqueue.next);
844 spin_unlock_irqrestore(&usbvision->queue_lock, lock_flags);
845
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300846 f->grabstate = frame_state_unused;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300847
848 vb->memory = V4L2_MEMORY_MMAP;
849 vb->flags = V4L2_BUF_FLAG_MAPPED |
850 V4L2_BUF_FLAG_QUEUED |
851 V4L2_BUF_FLAG_DONE;
852 vb->index = f->index;
853 vb->sequence = f->sequence;
854 vb->timestamp = f->timestamp;
855 vb->field = V4L2_FIELD_NONE;
856 vb->bytesused = f->scanlength;
857
858 return 0;
859}
860
861static int vidioc_streamon(struct file *file, void *priv, enum v4l2_buf_type i)
862{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300863 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300864
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300865 usbvision->streaming = stream_on;
Hans Verkuil1df79532009-02-21 18:11:31 -0300866 call_all(usbvision, video, s_stream, 1);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300867
868 return 0;
869}
870
871static int vidioc_streamoff(struct file *file,
872 void *priv, enum v4l2_buf_type type)
873{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300874 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300875
876 if (type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
877 return -EINVAL;
878
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300879 if (usbvision->streaming == stream_on) {
Thierry MERLEc5f48362007-05-08 17:22:29 -0300880 usbvision_stream_interrupt(usbvision);
881 /* Stop all video streamings */
Hans Verkuil1df79532009-02-21 18:11:31 -0300882 call_all(usbvision, video, s_stream, 0);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300883 }
884 usbvision_empty_framequeues(usbvision);
885
886 return 0;
887}
888
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300889static int vidioc_enum_fmt_vid_cap(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300890 struct v4l2_fmtdesc *vfd)
891{
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300892 if (vfd->index >= USBVISION_SUPPORTED_PALETTES - 1)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300893 return -EINVAL;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300894 strcpy(vfd->description, usbvision_v4l2_format[vfd->index].desc);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300895 vfd->pixelformat = usbvision_v4l2_format[vfd->index].format;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300896 return 0;
897}
898
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300899static int vidioc_g_fmt_vid_cap(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300900 struct v4l2_format *vf)
901{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300902 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300903 vf->fmt.pix.width = usbvision->curwidth;
904 vf->fmt.pix.height = usbvision->curheight;
905 vf->fmt.pix.pixelformat = usbvision->palette.format;
906 vf->fmt.pix.bytesperline =
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300907 usbvision->curwidth * usbvision->palette.bytes_per_pixel;
908 vf->fmt.pix.sizeimage = vf->fmt.pix.bytesperline * usbvision->curheight;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300909 vf->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
910 vf->fmt.pix.field = V4L2_FIELD_NONE; /* Always progressive image */
911
912 return 0;
913}
914
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300915static int vidioc_try_fmt_vid_cap(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300916 struct v4l2_format *vf)
917{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300918 struct usb_usbvision *usbvision = video_drvdata(file);
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300919 int format_idx;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300920
921 /* Find requested format in available ones */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300922 for (format_idx = 0; format_idx < USBVISION_SUPPORTED_PALETTES; format_idx++) {
923 if (vf->fmt.pix.pixelformat ==
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300924 usbvision_v4l2_format[format_idx].format) {
925 usbvision->palette = usbvision_v4l2_format[format_idx];
Thierry MERLEc5f48362007-05-08 17:22:29 -0300926 break;
927 }
928 }
929 /* robustness */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300930 if (format_idx == USBVISION_SUPPORTED_PALETTES)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300931 return -EINVAL;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300932 RESTRICT_TO_RANGE(vf->fmt.pix.width, MIN_FRAME_WIDTH, MAX_FRAME_WIDTH);
933 RESTRICT_TO_RANGE(vf->fmt.pix.height, MIN_FRAME_HEIGHT, MAX_FRAME_HEIGHT);
934
935 vf->fmt.pix.bytesperline = vf->fmt.pix.width*
936 usbvision->palette.bytes_per_pixel;
937 vf->fmt.pix.sizeimage = vf->fmt.pix.bytesperline*vf->fmt.pix.height;
938
939 return 0;
940}
941
Hans Verkuil78b526a2008-05-28 12:16:41 -0300942static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300943 struct v4l2_format *vf)
944{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300945 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300946 int ret;
947
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300948 ret = vidioc_try_fmt_vid_cap(file, priv, vf);
949 if (ret)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300950 return ret;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300951
952 /* stop io in case it is already in progress */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300953 if (usbvision->streaming == stream_on) {
954 ret = usbvision_stream_interrupt(usbvision);
955 if (ret)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300956 return ret;
957 }
958 usbvision_frames_free(usbvision);
959 usbvision_empty_framequeues(usbvision);
960
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300961 usbvision->cur_frame = NULL;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300962
963 /* by now we are committed to the new data... */
Thierry MERLEc5f48362007-05-08 17:22:29 -0300964 usbvision_set_output(usbvision, vf->fmt.pix.width, vf->fmt.pix.height);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300965
966 return 0;
967}
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300968
Al Viro8a5ab412007-02-09 16:38:20 +0000969static ssize_t usbvision_v4l2_read(struct file *file, char __user *buf,
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300970 size_t count, loff_t *ppos)
971{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300972 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300973 int noblock = file->f_flags & O_NONBLOCK;
974 unsigned long lock_flags;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300975 int ret, i;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300976 struct usbvision_frame *frame;
977
Harvey Harrisond2db42d2008-04-04 20:50:07 -0300978 PDEBUG(DBG_IO, "%s: %ld bytes, noblock=%d", __func__,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300979 (unsigned long)count, noblock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300980
981 if (!USBVISION_IS_OPERATIONAL(usbvision) || (buf == NULL))
982 return -EFAULT;
983
Thierry MERLEc5f48362007-05-08 17:22:29 -0300984 /* This entry point is compatible with the mmap routines
985 so that a user can do either VIDIOC_QBUF/VIDIOC_DQBUF
986 to get frames or call read on the device. */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300987 if (!usbvision->num_frames) {
Thierry MERLEc5f48362007-05-08 17:22:29 -0300988 /* First, allocate some frames to work with
989 if this has not been done with VIDIOC_REQBUF */
Thierry MERLE6f78e182007-02-07 10:13:11 -0300990 usbvision_frames_free(usbvision);
991 usbvision_empty_framequeues(usbvision);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300992 usbvision_frames_alloc(usbvision, USBVISION_NUMFRAMES);
Thierry MERLE6f78e182007-02-07 10:13:11 -0300993 }
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300994
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300995 if (usbvision->streaming != stream_on) {
Thierry MERLE6f78e182007-02-07 10:13:11 -0300996 /* no stream is running, make it running ! */
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300997 usbvision->streaming = stream_on;
Hans Verkuil1df79532009-02-21 18:11:31 -0300998 call_all(usbvision, video, s_stream, 1);
Thierry MERLE6f78e182007-02-07 10:13:11 -0300999 }
1000
Thierry MERLEc5f48362007-05-08 17:22:29 -03001001 /* Then, enqueue as many frames as possible
1002 (like a user of VIDIOC_QBUF would do) */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001003 for (i = 0; i < usbvision->num_frames; i++) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001004 frame = &usbvision->frame[i];
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001005 if (frame->grabstate == frame_state_unused) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001006 /* Mark it as ready and enqueue frame */
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001007 frame->grabstate = frame_state_ready;
1008 frame->scanstate = scan_state_scanning;
Thierry MERLEc5f48362007-05-08 17:22:29 -03001009 /* Accumulated in usbvision_parse_data() */
1010 frame->scanlength = 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001011
1012 /* set v4l2_format index */
1013 frame->v4l2_format = usbvision->palette;
1014
1015 spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
1016 list_add_tail(&frame->frame, &usbvision->inqueue);
Thierry MERLEc5f48362007-05-08 17:22:29 -03001017 spin_unlock_irqrestore(&usbvision->queue_lock,
1018 lock_flags);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001019 }
1020 }
1021
1022 /* Then try to steal a frame (like a VIDIOC_DQBUF would do) */
1023 if (list_empty(&(usbvision->outqueue))) {
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001024 if (noblock)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001025 return -EAGAIN;
1026
1027 ret = wait_event_interruptible
1028 (usbvision->wait_frame,
1029 !list_empty(&(usbvision->outqueue)));
1030 if (ret)
1031 return ret;
1032 }
1033
1034 spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
1035 frame = list_entry(usbvision->outqueue.next,
1036 struct usbvision_frame, frame);
1037 list_del(usbvision->outqueue.next);
1038 spin_unlock_irqrestore(&usbvision->queue_lock, lock_flags);
1039
1040 /* An error returns an empty frame */
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001041 if (frame->grabstate == frame_state_error) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001042 frame->bytes_read = 0;
1043 return 0;
1044 }
1045
Thierry MERLEc5f48362007-05-08 17:22:29 -03001046 PDEBUG(DBG_IO, "%s: frmx=%d, bytes_read=%ld, scanlength=%ld",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001047 __func__,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001048 frame->index, frame->bytes_read, frame->scanlength);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001049
1050 /* copy bytes to user space; we allow for partials reads */
1051 if ((count + frame->bytes_read) > (unsigned long)frame->scanlength)
1052 count = frame->scanlength - frame->bytes_read;
1053
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001054 if (copy_to_user(buf, frame->data + frame->bytes_read, count))
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001055 return -EFAULT;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001056
1057 frame->bytes_read += count;
Thierry MERLEc5f48362007-05-08 17:22:29 -03001058 PDEBUG(DBG_IO, "%s: {copy} count used=%ld, new bytes_read=%ld",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001059 __func__,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001060 (unsigned long)count, frame->bytes_read);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001061
Thierry MERLEc5f48362007-05-08 17:22:29 -03001062 /* For now, forget the frame if it has not been read in one shot. */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001063/* if (frame->bytes_read >= frame->scanlength) {*/ /* All data has been read */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001064 frame->bytes_read = 0;
1065
1066 /* Mark it as available to be used again. */
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001067 frame->grabstate = frame_state_unused;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001068/* } */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001069
1070 return count;
1071}
1072
1073static int usbvision_v4l2_mmap(struct file *file, struct vm_area_struct *vma)
1074{
1075 unsigned long size = vma->vm_end - vma->vm_start,
1076 start = vma->vm_start;
1077 void *pos;
1078 u32 i;
Hans Verkuilc170ecf2008-08-23 08:32:09 -03001079 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001080
Thierry MERLE6f78e182007-02-07 10:13:11 -03001081 PDEBUG(DBG_MMAP, "mmap");
1082
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001083 if (!USBVISION_IS_OPERATIONAL(usbvision))
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001084 return -EFAULT;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001085
1086 if (!(vma->vm_flags & VM_WRITE) ||
Thierry MERLE6f78e182007-02-07 10:13:11 -03001087 size != PAGE_ALIGN(usbvision->max_frame_size)) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001088 return -EINVAL;
1089 }
1090
Thierry MERLE6f78e182007-02-07 10:13:11 -03001091 for (i = 0; i < usbvision->num_frames; i++) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001092 if (((PAGE_ALIGN(usbvision->max_frame_size)*i) >> PAGE_SHIFT) ==
1093 vma->vm_pgoff)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001094 break;
1095 }
Thierry MERLE6f78e182007-02-07 10:13:11 -03001096 if (i == usbvision->num_frames) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001097 PDEBUG(DBG_MMAP,
1098 "mmap: user supplied mapping address is out of range");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001099 return -EINVAL;
1100 }
1101
1102 /* VM_IO is eventually going to replace PageReserved altogether */
1103 vma->vm_flags |= VM_IO;
1104 vma->vm_flags |= VM_RESERVED; /* avoid to swap out this VMA */
1105
1106 pos = usbvision->frame[i].data;
1107 while (size > 0) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001108 if (vm_insert_page(vma, start, vmalloc_to_page(pos))) {
Thierry MERLEc876a342006-12-09 16:42:54 -03001109 PDEBUG(DBG_MMAP, "mmap: vm_insert_page failed");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001110 return -EAGAIN;
1111 }
1112 start += PAGE_SIZE;
1113 pos += PAGE_SIZE;
1114 size -= PAGE_SIZE;
1115 }
1116
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001117 return 0;
1118}
1119
1120
1121/*
1122 * Here comes the stuff for radio on usbvision based devices
1123 *
1124 */
Hans Verkuilbec43662008-12-30 06:58:20 -03001125static int usbvision_radio_open(struct file *file)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001126{
Hans Verkuilc170ecf2008-08-23 08:32:09 -03001127 struct usb_usbvision *usbvision = video_drvdata(file);
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001128 int err_code = 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001129
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001130 PDEBUG(DBG_IO, "%s:", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001131
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001132 if (usbvision->user) {
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001133 dev_err(&usbvision->rdev->dev,
1134 "%s: Someone tried to open an already opened USBVision Radio!\n",
1135 __func__);
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001136 err_code = -EBUSY;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001137 } else {
1138 if (power_on_at_open) {
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001139 usbvision_reset_power_off_timer(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001140 if (usbvision->power == 0) {
1141 usbvision_power_on(usbvision);
Thierry MERLE1ff16c22007-04-14 16:23:49 -03001142 usbvision_i2c_register(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001143 }
1144 }
1145
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001146 /* Alternate interface 1 is is the biggest frame size */
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001147 err_code = usbvision_set_alternate(usbvision);
1148 if (err_code < 0) {
1149 usbvision->last_error = err_code;
1150 err_code = -EBUSY;
Andrew Morton544e6172007-12-12 18:25:23 -03001151 goto out;
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001152 }
1153
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001154 /* If so far no errors then we shall start the radio */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001155 usbvision->radio = 1;
Hans Verkuil1df79532009-02-21 18:11:31 -03001156 call_all(usbvision, tuner, s_radio);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001157 usbvision_set_audio(usbvision, USBVISION_AUDIO_RADIO);
1158 usbvision->user++;
1159 }
1160
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001161 if (err_code) {
1162 if (power_on_at_open) {
Thierry MERLE1ff16c22007-04-14 16:23:49 -03001163 usbvision_i2c_unregister(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001164 usbvision_power_off(usbvision);
1165 usbvision->initialized = 0;
1166 }
1167 }
Andrew Morton544e6172007-12-12 18:25:23 -03001168out:
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001169 return err_code;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001170}
1171
1172
Hans Verkuilbec43662008-12-30 06:58:20 -03001173static int usbvision_radio_close(struct file *file)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001174{
Hans Verkuilc170ecf2008-08-23 08:32:09 -03001175 struct usb_usbvision *usbvision = video_drvdata(file);
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001176 int err_code = 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001177
1178 PDEBUG(DBG_IO, "");
1179
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001180 /* Set packet size to 0 */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001181 usbvision->iface_alt = 0;
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001182 err_code = usb_set_interface(usbvision->dev, usbvision->iface,
1183 usbvision->iface_alt);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001184
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001185 usbvision_audio_off(usbvision);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001186 usbvision->radio = 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001187 usbvision->user--;
1188
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001189 if (power_on_at_open) {
1190 usbvision_set_power_off_timer(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001191 usbvision->initialized = 0;
1192 }
1193
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001194 if (usbvision->remove_pending) {
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001195 printk(KERN_INFO "%s: Final disconnect\n", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001196 usbvision_release(usbvision);
1197 }
1198
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001199 PDEBUG(DBG_IO, "success");
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001200 return err_code;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001201}
1202
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001203/* Video registration stuff */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001204
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001205/* Video template */
Hans Verkuilbec43662008-12-30 06:58:20 -03001206static const struct v4l2_file_operations usbvision_fops = {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001207 .owner = THIS_MODULE,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001208 .open = usbvision_v4l2_open,
1209 .release = usbvision_v4l2_close,
1210 .read = usbvision_v4l2_read,
1211 .mmap = usbvision_v4l2_mmap,
Hans Verkuilc627b9d2010-12-18 11:06:09 -03001212 .unlocked_ioctl = video_ioctl2,
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001213/* .poll = video_poll, */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001214};
Hans Verkuila3998102008-07-21 02:57:38 -03001215
1216static const struct v4l2_ioctl_ops usbvision_ioctl_ops = {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001217 .vidioc_querycap = vidioc_querycap,
Hans Verkuil78b526a2008-05-28 12:16:41 -03001218 .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap,
1219 .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap,
1220 .vidioc_try_fmt_vid_cap = vidioc_try_fmt_vid_cap,
1221 .vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001222 .vidioc_reqbufs = vidioc_reqbufs,
1223 .vidioc_querybuf = vidioc_querybuf,
1224 .vidioc_qbuf = vidioc_qbuf,
1225 .vidioc_dqbuf = vidioc_dqbuf,
1226 .vidioc_s_std = vidioc_s_std,
1227 .vidioc_enum_input = vidioc_enum_input,
1228 .vidioc_g_input = vidioc_g_input,
1229 .vidioc_s_input = vidioc_s_input,
1230 .vidioc_queryctrl = vidioc_queryctrl,
1231 .vidioc_g_audio = vidioc_g_audio,
Al Viroed4d6372007-09-26 01:53:42 +01001232 .vidioc_s_audio = vidioc_s_audio,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001233 .vidioc_g_ctrl = vidioc_g_ctrl,
1234 .vidioc_s_ctrl = vidioc_s_ctrl,
1235 .vidioc_streamon = vidioc_streamon,
1236 .vidioc_streamoff = vidioc_streamoff,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001237 .vidioc_g_tuner = vidioc_g_tuner,
1238 .vidioc_s_tuner = vidioc_s_tuner,
1239 .vidioc_g_frequency = vidioc_g_frequency,
1240 .vidioc_s_frequency = vidioc_s_frequency,
1241#ifdef CONFIG_VIDEO_ADV_DEBUG
1242 .vidioc_g_register = vidioc_g_register,
1243 .vidioc_s_register = vidioc_s_register,
1244#endif
Hans Verkuila3998102008-07-21 02:57:38 -03001245};
1246
1247static struct video_device usbvision_video_template = {
Hans Verkuila3998102008-07-21 02:57:38 -03001248 .fops = &usbvision_fops,
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001249 .ioctl_ops = &usbvision_ioctl_ops,
Hans Verkuila3998102008-07-21 02:57:38 -03001250 .name = "usbvision-video",
1251 .release = video_device_release,
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001252 .tvnorms = USBVISION_NORMS,
1253 .current_norm = V4L2_STD_PAL
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001254};
1255
1256
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001257/* Radio template */
Hans Verkuilbec43662008-12-30 06:58:20 -03001258static const struct v4l2_file_operations usbvision_radio_fops = {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001259 .owner = THIS_MODULE,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001260 .open = usbvision_radio_open,
1261 .release = usbvision_radio_close,
Hans Verkuilc627b9d2010-12-18 11:06:09 -03001262 .unlocked_ioctl = video_ioctl2,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001263};
1264
Hans Verkuila3998102008-07-21 02:57:38 -03001265static const struct v4l2_ioctl_ops usbvision_radio_ioctl_ops = {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001266 .vidioc_querycap = vidioc_querycap,
1267 .vidioc_enum_input = vidioc_enum_input,
1268 .vidioc_g_input = vidioc_g_input,
1269 .vidioc_s_input = vidioc_s_input,
1270 .vidioc_queryctrl = vidioc_queryctrl,
1271 .vidioc_g_audio = vidioc_g_audio,
Al Viroed4d6372007-09-26 01:53:42 +01001272 .vidioc_s_audio = vidioc_s_audio,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001273 .vidioc_g_ctrl = vidioc_g_ctrl,
1274 .vidioc_s_ctrl = vidioc_s_ctrl,
1275 .vidioc_g_tuner = vidioc_g_tuner,
1276 .vidioc_s_tuner = vidioc_s_tuner,
1277 .vidioc_g_frequency = vidioc_g_frequency,
1278 .vidioc_s_frequency = vidioc_s_frequency,
Hans Verkuila3998102008-07-21 02:57:38 -03001279};
1280
1281static struct video_device usbvision_radio_template = {
Hans Verkuila3998102008-07-21 02:57:38 -03001282 .fops = &usbvision_radio_fops,
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001283 .name = "usbvision-radio",
Hans Verkuila3998102008-07-21 02:57:38 -03001284 .release = video_device_release,
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001285 .ioctl_ops = &usbvision_radio_ioctl_ops,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001286
Thierry MERLEc5f48362007-05-08 17:22:29 -03001287 .tvnorms = USBVISION_NORMS,
1288 .current_norm = V4L2_STD_PAL
1289};
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001290
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001291
1292static struct video_device *usbvision_vdev_init(struct usb_usbvision *usbvision,
1293 struct video_device *vdev_template,
1294 char *name)
1295{
1296 struct usb_device *usb_dev = usbvision->dev;
1297 struct video_device *vdev;
1298
1299 if (usb_dev == NULL) {
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001300 dev_err(&usbvision->dev->dev,
1301 "%s: usbvision->dev is not set\n", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001302 return NULL;
1303 }
1304
1305 vdev = video_device_alloc();
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001306 if (NULL == vdev)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001307 return NULL;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001308 *vdev = *vdev_template;
Hans Verkuilc627b9d2010-12-18 11:06:09 -03001309 vdev->lock = &usbvision->v4l2_lock;
Hans Verkuil1df79532009-02-21 18:11:31 -03001310 vdev->v4l2_dev = &usbvision->v4l2_dev;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001311 snprintf(vdev->name, sizeof(vdev->name), "%s", name);
1312 video_set_drvdata(vdev, usbvision);
1313 return vdev;
1314}
1315
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001316/* unregister video4linux devices */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001317static void usbvision_unregister_video(struct usb_usbvision *usbvision)
1318{
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001319 /* Radio Device: */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001320 if (usbvision->rdev) {
Laurent Pinchart38c7c032009-11-27 13:57:15 -03001321 PDEBUG(DBG_PROBE, "unregister %s [v4l2]",
1322 video_device_node_name(usbvision->rdev));
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001323 if (video_is_registered(usbvision->rdev))
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001324 video_unregister_device(usbvision->rdev);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001325 else
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001326 video_device_release(usbvision->rdev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001327 usbvision->rdev = NULL;
1328 }
1329
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001330 /* Video Device: */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001331 if (usbvision->vdev) {
Laurent Pinchart38c7c032009-11-27 13:57:15 -03001332 PDEBUG(DBG_PROBE, "unregister %s [v4l2]",
1333 video_device_node_name(usbvision->vdev));
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001334 if (video_is_registered(usbvision->vdev))
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001335 video_unregister_device(usbvision->vdev);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001336 else
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001337 video_device_release(usbvision->vdev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001338 usbvision->vdev = NULL;
1339 }
1340}
1341
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001342/* register video4linux devices */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001343static int __devinit usbvision_register_video(struct usb_usbvision *usbvision)
1344{
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001345 /* Video Device: */
Thierry MERLEc5f48362007-05-08 17:22:29 -03001346 usbvision->vdev = usbvision_vdev_init(usbvision,
1347 &usbvision_video_template,
1348 "USBVision Video");
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001349 if (usbvision->vdev == NULL)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001350 goto err_exit;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001351 if (video_register_device(usbvision->vdev, VFL_TYPE_GRABBER, video_nr) < 0)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001352 goto err_exit;
Laurent Pinchart38c7c032009-11-27 13:57:15 -03001353 printk(KERN_INFO "USBVision[%d]: registered USBVision Video device %s [v4l2]\n",
1354 usbvision->nr, video_device_node_name(usbvision->vdev));
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001355
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001356 /* Radio Device: */
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001357 if (usbvision_device_data[usbvision->dev_model].radio) {
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001358 /* usbvision has radio */
Thierry MERLEc5f48362007-05-08 17:22:29 -03001359 usbvision->rdev = usbvision_vdev_init(usbvision,
1360 &usbvision_radio_template,
1361 "USBVision Radio");
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001362 if (usbvision->rdev == NULL)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001363 goto err_exit;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001364 if (video_register_device(usbvision->rdev, VFL_TYPE_RADIO, radio_nr) < 0)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001365 goto err_exit;
Laurent Pinchart38c7c032009-11-27 13:57:15 -03001366 printk(KERN_INFO "USBVision[%d]: registered USBVision Radio device %s [v4l2]\n",
1367 usbvision->nr, video_device_node_name(usbvision->rdev));
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001368 }
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001369 /* all done */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001370 return 0;
1371
1372 err_exit:
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001373 dev_err(&usbvision->dev->dev,
1374 "USBVision[%d]: video_register_device() failed\n",
1375 usbvision->nr);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001376 usbvision_unregister_video(usbvision);
1377 return -1;
1378}
1379
1380/*
1381 * usbvision_alloc()
1382 *
Thierry MERLEc5f48362007-05-08 17:22:29 -03001383 * This code allocates the struct usb_usbvision.
1384 * It is filled with default values.
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001385 *
1386 * Returns NULL on error, a pointer to usb_usbvision else.
1387 *
1388 */
Janne Grunaua8784402009-04-01 08:46:00 -03001389static struct usb_usbvision *usbvision_alloc(struct usb_device *dev,
1390 struct usb_interface *intf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001391{
1392 struct usb_usbvision *usbvision;
1393
Hans Verkuil1df79532009-02-21 18:11:31 -03001394 usbvision = kzalloc(sizeof(struct usb_usbvision), GFP_KERNEL);
1395 if (usbvision == NULL)
1396 return NULL;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001397
1398 usbvision->dev = dev;
Janne Grunaua8784402009-04-01 08:46:00 -03001399 if (v4l2_device_register(&intf->dev, &usbvision->v4l2_dev))
Hans Verkuil1df79532009-02-21 18:11:31 -03001400 goto err_free;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001401
Hans Verkuilc627b9d2010-12-18 11:06:09 -03001402 mutex_init(&usbvision->v4l2_lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001403
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001404 /* prepare control urb for control messages during interrupts */
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001405 usbvision->ctrl_urb = usb_alloc_urb(USBVISION_URB_FRAMES, GFP_KERNEL);
1406 if (usbvision->ctrl_urb == NULL)
Hans Verkuil1df79532009-02-21 18:11:31 -03001407 goto err_unreg;
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001408 init_waitqueue_head(&usbvision->ctrl_urb_wq);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001409
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001410 usbvision_init_power_off_timer(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001411
1412 return usbvision;
1413
Hans Verkuil1df79532009-02-21 18:11:31 -03001414err_unreg:
1415 v4l2_device_unregister(&usbvision->v4l2_dev);
1416err_free:
1417 kfree(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001418 return NULL;
1419}
1420
1421/*
1422 * usbvision_release()
1423 *
1424 * This code does final release of struct usb_usbvision. This happens
1425 * after the device is disconnected -and- all clients closed their files.
1426 *
1427 */
1428static void usbvision_release(struct usb_usbvision *usbvision)
1429{
1430 PDEBUG(DBG_PROBE, "");
1431
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001432 usbvision_reset_power_off_timer(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001433
1434 usbvision->initialized = 0;
1435
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001436 usbvision_remove_sysfs(usbvision->vdev);
1437 usbvision_unregister_video(usbvision);
1438
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001439 usb_free_urb(usbvision->ctrl_urb);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001440
Hans Verkuil1df79532009-02-21 18:11:31 -03001441 v4l2_device_unregister(&usbvision->v4l2_dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001442 kfree(usbvision);
1443
1444 PDEBUG(DBG_PROBE, "success");
1445}
1446
1447
Thierry MERLEc5f48362007-05-08 17:22:29 -03001448/*********************** usb interface **********************************/
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001449
1450static void usbvision_configure_video(struct usb_usbvision *usbvision)
1451{
Thierry MERLEc5f48362007-05-08 17:22:29 -03001452 int model;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001453
1454 if (usbvision == NULL)
1455 return;
1456
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001457 model = usbvision->dev_model;
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001458 usbvision->palette = usbvision_v4l2_format[2]; /* V4L2_PIX_FMT_RGB24; */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001459
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001460 if (usbvision_device_data[usbvision->dev_model].vin_reg2_override) {
1461 usbvision->vin_reg2_preset =
1462 usbvision_device_data[usbvision->dev_model].vin_reg2;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001463 } else {
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001464 usbvision->vin_reg2_preset = 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001465 }
1466
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001467 usbvision->tvnorm_id = usbvision_device_data[model].video_norm;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001468
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001469 usbvision->video_inputs = usbvision_device_data[model].video_channels;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001470 usbvision->ctl_input = 0;
1471
1472 /* This should be here to make i2c clients to be able to register */
Thierry MERLEc5f48362007-05-08 17:22:29 -03001473 /* first switch off audio */
1474 usbvision_audio_off(usbvision);
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001475 if (!power_on_at_open) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001476 /* and then power up the noisy tuner */
1477 usbvision_power_on(usbvision);
Thierry MERLE1ff16c22007-04-14 16:23:49 -03001478 usbvision_i2c_register(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001479 }
1480}
1481
1482/*
1483 * usbvision_probe()
1484 *
1485 * This procedure queries device descriptor and accepts the interface
1486 * if it looks like USBVISION video device
1487 *
1488 */
Mauro Carvalho Chehab659ae562007-04-14 15:09:59 -03001489static int __devinit usbvision_probe(struct usb_interface *intf,
1490 const struct usb_device_id *devid)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001491{
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001492 struct usb_device *dev = usb_get_dev(interface_to_usbdev(intf));
1493 struct usb_interface *uif;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001494 __u8 ifnum = intf->altsetting->desc.bInterfaceNumber;
1495 const struct usb_host_interface *interface;
1496 struct usb_usbvision *usbvision = NULL;
1497 const struct usb_endpoint_descriptor *endpoint;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001498 int model, i;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001499
1500 PDEBUG(DBG_PROBE, "VID=%#04x, PID=%#04x, ifnum=%u",
Mauro Carvalho Chehab659ae562007-04-14 15:09:59 -03001501 dev->descriptor.idVendor,
1502 dev->descriptor.idProduct, ifnum);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001503
Mauro Carvalho Chehab659ae562007-04-14 15:09:59 -03001504 model = devid->driver_info;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001505 if (model < 0 || model >= usbvision_device_data_size) {
1506 PDEBUG(DBG_PROBE, "model out of bounds %d", model);
Mauro Carvalho Chehabf8a389d2007-04-14 15:17:35 -03001507 return -ENODEV;
1508 }
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001509 printk(KERN_INFO "%s: %s found\n", __func__,
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001510 usbvision_device_data[model].model_string);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001511
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001512 if (usbvision_device_data[model].interface >= 0)
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001513 interface = &dev->actconfig->interface[usbvision_device_data[model].interface]->altsetting[0];
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001514 else
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001515 interface = &dev->actconfig->interface[ifnum]->altsetting[0];
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001516 endpoint = &interface->endpoint[1].desc;
Julia Lawall2230c3c2009-01-03 16:53:10 -03001517 if (!usb_endpoint_xfer_isoc(endpoint)) {
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001518 dev_err(&intf->dev, "%s: interface %d. has non-ISO endpoint!\n",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001519 __func__, ifnum);
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001520 dev_err(&intf->dev, "%s: Endpoint attributes %d",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001521 __func__, endpoint->bmAttributes);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001522 return -ENODEV;
1523 }
Julia Lawall13417982008-12-29 21:49:22 -03001524 if (usb_endpoint_dir_out(endpoint)) {
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001525 dev_err(&intf->dev, "%s: interface %d. has ISO OUT endpoint!\n",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001526 __func__, ifnum);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001527 return -ENODEV;
1528 }
1529
Janne Grunaua8784402009-04-01 08:46:00 -03001530 usbvision = usbvision_alloc(dev, intf);
1531 if (usbvision == NULL) {
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001532 dev_err(&intf->dev, "%s: couldn't allocate USBVision struct\n", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001533 return -ENOMEM;
1534 }
Mauro Carvalho Chehab659ae562007-04-14 15:09:59 -03001535
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001536 if (dev->descriptor.bNumConfigurations > 1)
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001537 usbvision->bridge_type = BRIDGE_NT1004;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001538 else if (model == DAZZLE_DVC_90_REV_1_SECAM)
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001539 usbvision->bridge_type = BRIDGE_NT1005;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001540 else
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001541 usbvision->bridge_type = BRIDGE_NT1003;
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001542 PDEBUG(DBG_PROBE, "bridge_type %d", usbvision->bridge_type);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001543
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001544 /* compute alternate max packet sizes */
1545 uif = dev->actconfig->interface[0];
1546
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001547 usbvision->num_alt = uif->num_altsetting;
1548 PDEBUG(DBG_PROBE, "Alternate settings: %i", usbvision->num_alt);
1549 usbvision->alt_max_pkt_size = kmalloc(32 * usbvision->num_alt, GFP_KERNEL);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001550 if (usbvision->alt_max_pkt_size == NULL) {
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001551 dev_err(&intf->dev, "usbvision: out of memory!\n");
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001552 return -ENOMEM;
1553 }
1554
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001555 for (i = 0; i < usbvision->num_alt; i++) {
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001556 u16 tmp = le16_to_cpu(uif->altsetting[i].endpoint[1].desc.
1557 wMaxPacketSize);
1558 usbvision->alt_max_pkt_size[i] =
1559 (tmp & 0x07ff) * (((tmp & 0x1800) >> 11) + 1);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001560 PDEBUG(DBG_PROBE, "Alternate setting %i, max size= %i", i,
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001561 usbvision->alt_max_pkt_size[i]);
1562 }
1563
1564
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001565 usbvision->nr = usbvision_nr++;
1566
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001567 usbvision->have_tuner = usbvision_device_data[model].tuner;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001568 if (usbvision->have_tuner)
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001569 usbvision->tuner_type = usbvision_device_data[model].tuner_type;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001570
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001571 usbvision->dev_model = model;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001572 usbvision->remove_pending = 0;
1573 usbvision->iface = ifnum;
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001574 usbvision->iface_alt = 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001575 usbvision->video_endp = endpoint->bEndpointAddress;
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001576 usbvision->isoc_packet_size = 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001577 usbvision->usb_bandwidth = 0;
1578 usbvision->user = 0;
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001579 usbvision->streaming = stream_off;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001580 usbvision_configure_video(usbvision);
Hans Verkuil84034722010-09-17 15:07:28 -03001581 usbvision_register_video(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001582
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001583 usbvision_create_sysfs(usbvision->vdev);
1584
1585 PDEBUG(DBG_PROBE, "success");
1586 return 0;
1587}
1588
1589
1590/*
1591 * usbvision_disconnect()
1592 *
1593 * This procedure stops all driver activity, deallocates interface-private
1594 * structure (pointed by 'ptr') and after that driver should be removable
1595 * with no ill consequences.
1596 *
1597 */
1598static void __devexit usbvision_disconnect(struct usb_interface *intf)
1599{
Hans Verkuilaeb506a2010-05-02 09:00:13 -03001600 struct usb_usbvision *usbvision = to_usbvision(usb_get_intfdata(intf));
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001601
1602 PDEBUG(DBG_PROBE, "");
1603
1604 if (usbvision == NULL) {
Julia Lawall42020662010-05-27 09:36:45 -03001605 pr_err("%s: usb_get_intfdata() failed\n", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001606 return;
1607 }
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001608
Hans Verkuilc627b9d2010-12-18 11:06:09 -03001609 mutex_lock(&usbvision->v4l2_lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001610
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001611 /* At this time we ask to cancel outstanding URBs */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001612 usbvision_stop_isoc(usbvision);
1613
Hans Verkuilf1ba28c2009-03-14 12:27:01 -03001614 v4l2_device_disconnect(&usbvision->v4l2_dev);
1615
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001616 if (usbvision->power) {
Thierry MERLE1ff16c22007-04-14 16:23:49 -03001617 usbvision_i2c_unregister(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001618 usbvision_power_off(usbvision);
1619 }
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001620 usbvision->remove_pending = 1; /* Now all ISO data will be ignored */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001621
1622 usb_put_dev(usbvision->dev);
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001623 usbvision->dev = NULL; /* USB device is no more */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001624
Hans Verkuilc627b9d2010-12-18 11:06:09 -03001625 mutex_unlock(&usbvision->v4l2_lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001626
1627 if (usbvision->user) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001628 printk(KERN_INFO "%s: In use, disconnect pending\n",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001629 __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001630 wake_up_interruptible(&usbvision->wait_frame);
1631 wake_up_interruptible(&usbvision->wait_stream);
Thierry MERLEc5f48362007-05-08 17:22:29 -03001632 } else {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001633 usbvision_release(usbvision);
1634 }
1635
1636 PDEBUG(DBG_PROBE, "success");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001637}
1638
1639static struct usb_driver usbvision_driver = {
1640 .name = "usbvision",
1641 .id_table = usbvision_table,
1642 .probe = usbvision_probe,
Jean Delvaree36bc312009-06-04 11:07:16 -03001643 .disconnect = __devexit_p(usbvision_disconnect),
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001644};
1645
1646/*
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001647 * usbvision_init()
1648 *
1649 * This code is run to initialize the driver.
1650 *
1651 */
1652static int __init usbvision_init(void)
1653{
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001654 int err_code;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001655
1656 PDEBUG(DBG_PROBE, "");
1657
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001658 PDEBUG(DBG_IO, "IO debugging is enabled [video]");
1659 PDEBUG(DBG_PROBE, "PROBE debugging is enabled [video]");
Thierry MERLEc876a342006-12-09 16:42:54 -03001660 PDEBUG(DBG_MMAP, "MMAP debugging is enabled [video]");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001661
1662 /* disable planar mode support unless compression enabled */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001663 if (isoc_mode != ISOC_MODE_COMPRESS) {
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001664 /* FIXME : not the right way to set supported flag */
1665 usbvision_v4l2_format[6].supported = 0; /* V4L2_PIX_FMT_YVU420 */
1666 usbvision_v4l2_format[7].supported = 0; /* V4L2_PIX_FMT_YUV422P */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001667 }
1668
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001669 err_code = usb_register(&usbvision_driver);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001670
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001671 if (err_code == 0) {
Dwaine Gardende6a1b82007-01-07 21:13:55 -03001672 printk(KERN_INFO DRIVER_DESC " : " USBVISION_VERSION_STRING "\n");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001673 PDEBUG(DBG_PROBE, "success");
1674 }
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001675 return err_code;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001676}
1677
1678static void __exit usbvision_exit(void)
1679{
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001680 PDEBUG(DBG_PROBE, "");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001681
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001682 usb_deregister(&usbvision_driver);
1683 PDEBUG(DBG_PROBE, "success");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001684}
1685
1686module_init(usbvision_init);
1687module_exit(usbvision_exit);
1688
1689/*
1690 * Overrides for Emacs so that we follow Linus's tabbing style.
1691 * ---------------------------------------------------------------------------
1692 * Local variables:
1693 * c-basic-offset: 8
1694 * End:
1695 */