blob: 9bfa041e33161be93333ad0133acc1adbb957b4e [file] [log] [blame]
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001/*
Hans Verkuil3ff4ad82009-04-01 03:15:52 -03002 * USB USBVISION Video device driver 0.9.10
Thierry MERLE483dfdb2006-12-04 08:31:45 -03003 *
4 *
5 *
6 * Copyright (c) 1999-2005 Joerg Heckenbach <joerg@heckenbach-aw.de>
7 *
8 * This module is part of usbvision driver project.
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 *
24 * Let's call the version 0.... until compression decoding is completely
25 * implemented.
26 *
27 * This driver is written by Jose Ignacio Gijon and Joerg Heckenbach.
28 * It was based on USB CPiA driver written by Peter Pregler,
29 * Scott J. Bertin and Johannes Erdfelt
30 * Ideas are taken from bttv driver by Ralph Metzler, Marcus Metzler &
31 * Gerd Knorr and zoran 36120/36125 driver by Pauline Middelink
32 * Updates to driver completed by Dwaine P. Garden
33 *
34 *
35 * TODO:
36 * - use submit_urb for all setup packets
37 * - Fix memory settings for nt1004. It is 4 times as big as the
38 * nt1003 memory.
Thierry MERLEc5f48362007-05-08 17:22:29 -030039 * - Add audio on endpoint 3 for nt1004 chip.
40 * Seems impossible, needs a codec interface. Which one?
Thierry MERLE483dfdb2006-12-04 08:31:45 -030041 * - Clean up the driver.
42 * - optimization for performance.
43 * - Add Videotext capability (VBI). Working on it.....
44 * - Check audio for other devices
45 *
46 */
47
48#include <linux/kernel.h>
Thierry MERLE483dfdb2006-12-04 08:31:45 -030049#include <linux/list.h>
50#include <linux/timer.h>
51#include <linux/slab.h>
52#include <linux/mm.h>
Thierry MERLE483dfdb2006-12-04 08:31:45 -030053#include <linux/highmem.h>
Thierry MERLE483dfdb2006-12-04 08:31:45 -030054#include <linux/vmalloc.h>
55#include <linux/module.h>
56#include <linux/init.h>
57#include <linux/spinlock.h>
Hans Verkuil6d6a48e2010-12-29 13:53:21 -030058#include <linux/io.h>
Thierry MERLE483dfdb2006-12-04 08:31:45 -030059#include <linux/videodev2.h>
Thierry MERLE483dfdb2006-12-04 08:31:45 -030060#include <linux/i2c.h>
61
62#include <media/saa7115.h>
63#include <media/v4l2-common.h>
Hans Verkuil35ea11f2008-07-20 08:12:02 -030064#include <media/v4l2-ioctl.h>
Thierry MERLE483dfdb2006-12-04 08:31:45 -030065#include <media/tuner.h>
Thierry MERLE483dfdb2006-12-04 08:31:45 -030066
Mauro Carvalho Chehaba1ed5512006-12-09 11:41:59 -030067#include <linux/workqueue.h>
Thierry MERLE483dfdb2006-12-04 08:31:45 -030068
Thierry MERLE483dfdb2006-12-04 08:31:45 -030069#include "usbvision.h"
Mauro Carvalho Chehab659ae562007-04-14 15:09:59 -030070#include "usbvision-cards.h"
Thierry MERLE483dfdb2006-12-04 08:31:45 -030071
Joe Perches85ee7a12011-04-23 20:38:19 -070072#define DRIVER_AUTHOR \
73 "Joerg Heckenbach <joerg@heckenbach-aw.de>, " \
74 "Dwaine 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"
Mauro Carvalho Chehab1990d502011-06-24 14:45:49 -030079#define USBVISION_VERSION_STRING "0.9.11"
Thierry MERLE483dfdb2006-12-04 08:31:45 -030080
81#define ENABLE_HEXDUMP 0 /* Enable if you need it */
82
83
Thierry MERLE483dfdb2006-12-04 08:31:45 -030084#ifdef USBVISION_DEBUG
Thierry MERLEdf18c312008-04-04 21:00:57 -030085 #define PDEBUG(level, fmt, args...) { \
Thierry MERLEc5f48362007-05-08 17:22:29 -030086 if (video_debug & (level)) \
Greg Kroah-Hartmana482f322008-10-10 05:08:23 -030087 printk(KERN_INFO KBUILD_MODNAME ":[%s:%d] " fmt, \
88 __func__, __LINE__ , ## args); \
Thierry MERLEdf18c312008-04-04 21:00:57 -030089 }
Thierry MERLE483dfdb2006-12-04 08:31:45 -030090#else
Hans Verkuil6d6a48e2010-12-29 13:53:21 -030091 #define PDEBUG(level, fmt, args...) do {} while (0)
Thierry MERLE483dfdb2006-12-04 08:31:45 -030092#endif
93
Hans Verkuil6d6a48e2010-12-29 13:53:21 -030094#define DBG_IO (1 << 1)
95#define DBG_PROBE (1 << 2)
96#define DBG_MMAP (1 << 3)
Thierry MERLE483dfdb2006-12-04 08:31:45 -030097
Hans Verkuil52cb0bf2010-12-19 20:33:51 -030098/* String operations */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -030099#define rmspace(str) while (*str == ' ') str++;
100#define goto2next(str) while (*str != ' ') str++; while (*str == ' ') str++;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300101
102
Thierry MERLEc5f48362007-05-08 17:22:29 -0300103/* sequential number of usbvision device */
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -0300104static int usbvision_nr;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300105
106static struct usbvision_v4l2_format_st usbvision_v4l2_format[] = {
107 { 1, 1, 8, V4L2_PIX_FMT_GREY , "GREY" },
108 { 1, 2, 16, V4L2_PIX_FMT_RGB565 , "RGB565" },
109 { 1, 3, 24, V4L2_PIX_FMT_RGB24 , "RGB24" },
110 { 1, 4, 32, V4L2_PIX_FMT_RGB32 , "RGB32" },
111 { 1, 2, 16, V4L2_PIX_FMT_RGB555 , "RGB555" },
112 { 1, 2, 16, V4L2_PIX_FMT_YUYV , "YUV422" },
Hans Verkuil52cb0bf2010-12-19 20:33:51 -0300113 { 1, 2, 12, V4L2_PIX_FMT_YVU420 , "YUV420P" }, /* 1.5 ! */
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300114 { 1, 2, 16, V4L2_PIX_FMT_YUV422P , "YUV422P" }
115};
116
Thierry MERLEc5f48362007-05-08 17:22:29 -0300117/* Function prototypes */
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300118static void usbvision_release(struct usb_usbvision *usbvision);
119
Joe Perchesc84e6032008-02-03 17:18:59 +0200120/* Default initialization of device driver parameters */
Thierry MERLEc5f48362007-05-08 17:22:29 -0300121/* Set the default format for ISOC endpoint */
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300122static int isoc_mode = ISOC_MODE_COMPRESS;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300123/* Set the default Debug Mode of the device driver */
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -0300124static int video_debug;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300125/* Set the default device to power on at startup */
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300126static int power_on_at_open = 1;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300127/* Sequential Number of Video Device */
128static int video_nr = -1;
129/* Sequential Number of Radio Device */
130static int radio_nr = -1;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300131
Thierry MERLEc5f48362007-05-08 17:22:29 -0300132/* Grab parameters for the device driver */
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300133
Thierry MERLEc5f48362007-05-08 17:22:29 -0300134/* Showing parameters under SYSFS */
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300135module_param(isoc_mode, int, 0444);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300136module_param(video_debug, int, 0444);
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300137module_param(power_on_at_open, int, 0444);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300138module_param(video_nr, int, 0444);
139module_param(radio_nr, int, 0444);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300140
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300141MODULE_PARM_DESC(isoc_mode, " Set the default format for ISOC endpoint. Default: 0x60 (Compression On)");
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300142MODULE_PARM_DESC(video_debug, " Set the default Debug Mode of the device driver. Default: 0 (Off)");
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300143MODULE_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 -0300144MODULE_PARM_DESC(video_nr, "Set video device number (/dev/videoX). Default: -1 (autodetect)");
145MODULE_PARM_DESC(radio_nr, "Set radio device number (/dev/radioX). Default: -1 (autodetect)");
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300146
147
Hans Verkuil52cb0bf2010-12-19 20:33:51 -0300148/* Misc stuff */
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300149MODULE_AUTHOR(DRIVER_AUTHOR);
150MODULE_DESCRIPTION(DRIVER_DESC);
151MODULE_LICENSE(DRIVER_LICENSE);
Mauro Carvalho Chehaba1ed5512006-12-09 11:41:59 -0300152MODULE_VERSION(USBVISION_VERSION_STRING);
153MODULE_ALIAS(DRIVER_ALIAS);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300154
155
Thierry MERLEc5f48362007-05-08 17:22:29 -0300156/*****************************************************************************/
157/* SYSFS Code - Copied from the stv680.c usb module. */
158/* Device information is located at /sys/class/video4linux/video0 */
159/* Device parameters information is located at /sys/module/usbvision */
160/* Device USB Information is located at */
161/* /sys/bus/usb/drivers/USBVision Video Grabber */
162/*****************************************************************************/
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300163
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300164#define YES_NO(x) ((x) ? "Yes" : "No")
165
Kay Sievers54bd5b62007-10-08 16:26:13 -0300166static inline struct usb_usbvision *cd_to_usbvision(struct device *cd)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300167{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300168 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300169 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300170 return video_get_drvdata(vdev);
171}
172
Kay Sievers54bd5b62007-10-08 16:26:13 -0300173static ssize_t show_version(struct device *cd,
174 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300175{
176 return sprintf(buf, "%s\n", USBVISION_VERSION_STRING);
177}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300178static DEVICE_ATTR(version, S_IRUGO, show_version, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300179
Kay Sievers54bd5b62007-10-08 16:26:13 -0300180static ssize_t show_model(struct device *cd,
181 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300182{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300183 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300184 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300185 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300186 return sprintf(buf, "%s\n",
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300187 usbvision_device_data[usbvision->dev_model].model_string);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300188}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300189static DEVICE_ATTR(model, S_IRUGO, show_model, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300190
Kay Sievers54bd5b62007-10-08 16:26:13 -0300191static ssize_t show_hue(struct device *cd,
192 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300193{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300194 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300195 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300196 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
197 struct v4l2_control ctrl;
198 ctrl.id = V4L2_CID_HUE;
199 ctrl.value = 0;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300200 if (usbvision->user)
Hans Verkuil1df79532009-02-21 18:11:31 -0300201 call_all(usbvision, core, g_ctrl, &ctrl);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -0300202 return sprintf(buf, "%d\n", ctrl.value);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300203}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300204static DEVICE_ATTR(hue, S_IRUGO, show_hue, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300205
Kay Sievers54bd5b62007-10-08 16:26:13 -0300206static ssize_t show_contrast(struct device *cd,
207 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300208{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300209 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300210 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300211 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
212 struct v4l2_control ctrl;
213 ctrl.id = V4L2_CID_CONTRAST;
214 ctrl.value = 0;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300215 if (usbvision->user)
Hans Verkuil1df79532009-02-21 18:11:31 -0300216 call_all(usbvision, core, g_ctrl, &ctrl);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -0300217 return sprintf(buf, "%d\n", ctrl.value);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300218}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300219static DEVICE_ATTR(contrast, S_IRUGO, show_contrast, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300220
Kay Sievers54bd5b62007-10-08 16:26:13 -0300221static ssize_t show_brightness(struct device *cd,
222 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300223{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300224 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300225 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300226 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
227 struct v4l2_control ctrl;
228 ctrl.id = V4L2_CID_BRIGHTNESS;
229 ctrl.value = 0;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300230 if (usbvision->user)
Hans Verkuil1df79532009-02-21 18:11:31 -0300231 call_all(usbvision, core, g_ctrl, &ctrl);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -0300232 return sprintf(buf, "%d\n", ctrl.value);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300233}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300234static DEVICE_ATTR(brightness, S_IRUGO, show_brightness, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300235
Kay Sievers54bd5b62007-10-08 16:26:13 -0300236static ssize_t show_saturation(struct device *cd,
237 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300238{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300239 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300240 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300241 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
242 struct v4l2_control ctrl;
243 ctrl.id = V4L2_CID_SATURATION;
244 ctrl.value = 0;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300245 if (usbvision->user)
Hans Verkuil1df79532009-02-21 18:11:31 -0300246 call_all(usbvision, core, g_ctrl, &ctrl);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -0300247 return sprintf(buf, "%d\n", ctrl.value);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300248}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300249static DEVICE_ATTR(saturation, S_IRUGO, show_saturation, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300250
Kay Sievers54bd5b62007-10-08 16:26:13 -0300251static ssize_t show_streaming(struct device *cd,
252 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300253{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300254 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300255 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300256 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300257 return sprintf(buf, "%s\n",
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300258 YES_NO(usbvision->streaming == stream_on ? 1 : 0));
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300259}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300260static DEVICE_ATTR(streaming, S_IRUGO, show_streaming, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300261
Kay Sievers54bd5b62007-10-08 16:26:13 -0300262static ssize_t show_compression(struct device *cd,
263 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300264{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300265 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300266 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300267 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300268 return sprintf(buf, "%s\n",
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300269 YES_NO(usbvision->isoc_mode == ISOC_MODE_COMPRESS));
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300270}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300271static DEVICE_ATTR(compression, S_IRUGO, show_compression, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300272
Kay Sievers54bd5b62007-10-08 16:26:13 -0300273static ssize_t show_device_bridge(struct device *cd,
274 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300275{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300276 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300277 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300278 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300279 return sprintf(buf, "%d\n", usbvision->bridge_type);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300280}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300281static DEVICE_ATTR(bridge, S_IRUGO, show_device_bridge, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300282
283static void usbvision_create_sysfs(struct video_device *vdev)
284{
285 int res;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300286
Dwaine Gardened00b412006-12-27 10:23:28 -0200287 if (!vdev)
288 return;
289 do {
Hans Verkuil22a04f12008-07-20 06:35:02 -0300290 res = device_create_file(&vdev->dev, &dev_attr_version);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300291 if (res < 0)
Dwaine Gardened00b412006-12-27 10:23:28 -0200292 break;
Hans Verkuil22a04f12008-07-20 06:35:02 -0300293 res = device_create_file(&vdev->dev, &dev_attr_model);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300294 if (res < 0)
Dwaine Gardened00b412006-12-27 10:23:28 -0200295 break;
Hans Verkuil22a04f12008-07-20 06:35:02 -0300296 res = device_create_file(&vdev->dev, &dev_attr_hue);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300297 if (res < 0)
Dwaine Gardened00b412006-12-27 10:23:28 -0200298 break;
Hans Verkuil22a04f12008-07-20 06:35:02 -0300299 res = device_create_file(&vdev->dev, &dev_attr_contrast);
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_brightness);
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_saturation);
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_streaming);
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_compression);
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_bridge);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300315 if (res >= 0)
Dwaine Gardened00b412006-12-27 10:23:28 -0200316 return;
317 } while (0);
318
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -0300319 dev_err(&vdev->dev, "%s error: %d\n", __func__, res);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300320}
321
322static void usbvision_remove_sysfs(struct video_device *vdev)
323{
324 if (vdev) {
Hans Verkuil22a04f12008-07-20 06:35:02 -0300325 device_remove_file(&vdev->dev, &dev_attr_version);
326 device_remove_file(&vdev->dev, &dev_attr_model);
327 device_remove_file(&vdev->dev, &dev_attr_hue);
328 device_remove_file(&vdev->dev, &dev_attr_contrast);
329 device_remove_file(&vdev->dev, &dev_attr_brightness);
330 device_remove_file(&vdev->dev, &dev_attr_saturation);
331 device_remove_file(&vdev->dev, &dev_attr_streaming);
332 device_remove_file(&vdev->dev, &dev_attr_compression);
333 device_remove_file(&vdev->dev, &dev_attr_bridge);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300334 }
335}
336
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300337/*
338 * usbvision_open()
339 *
340 * This is part of Video 4 Linux API. The driver can be opened by one
341 * client only (checks internal counter 'usbvision->user'). The procedure
342 * then allocates buffers needed for video processing.
343 *
344 */
Hans Verkuilbec43662008-12-30 06:58:20 -0300345static int usbvision_v4l2_open(struct file *file)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300346{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300347 struct usb_usbvision *usbvision = video_drvdata(file);
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300348 int err_code = 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300349
350 PDEBUG(DBG_IO, "open");
351
Hans Verkuil4d345702012-06-23 08:03:50 -0300352 if (mutex_lock_interruptible(&usbvision->v4l2_lock))
353 return -ERESTARTSYS;
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300354 usbvision_reset_power_off_timer(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300355
356 if (usbvision->user)
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300357 err_code = -EBUSY;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300358 else {
Thierry MERLE6f78e182007-02-07 10:13:11 -0300359 /* Allocate memory for the scratch ring buffer */
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300360 err_code = usbvision_scratch_alloc(usbvision);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300361 if (isoc_mode == ISOC_MODE_COMPRESS) {
Thierry MERLEc5f48362007-05-08 17:22:29 -0300362 /* Allocate intermediate decompression buffers
363 only if needed */
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300364 err_code = usbvision_decompress_alloc(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300365 }
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300366 if (err_code) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300367 /* Deallocate all buffers if trouble */
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300368 usbvision_scratch_free(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300369 usbvision_decompress_free(usbvision);
370 }
371 }
372
373 /* If so far no errors then we shall start the camera */
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300374 if (!err_code) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300375 if (usbvision->power == 0) {
376 usbvision_power_on(usbvision);
Thierry MERLE1ff16c22007-04-14 16:23:49 -0300377 usbvision_i2c_register(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300378 }
379
380 /* Send init sequence only once, it's large! */
381 if (!usbvision->initialized) {
382 int setup_ok = 0;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300383 setup_ok = usbvision_setup(usbvision, isoc_mode);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300384 if (setup_ok)
385 usbvision->initialized = 1;
386 else
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300387 err_code = -EBUSY;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300388 }
389
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300390 if (!err_code) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300391 usbvision_begin_streaming(usbvision);
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300392 err_code = usbvision_init_isoc(usbvision);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300393 /* device must be initialized before isoc transfer */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300394 usbvision_muxsel(usbvision, 0);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300395 usbvision->user++;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300396 } else {
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300397 if (power_on_at_open) {
Thierry MERLE1ff16c22007-04-14 16:23:49 -0300398 usbvision_i2c_unregister(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300399 usbvision_power_off(usbvision);
400 usbvision->initialized = 0;
401 }
402 }
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300403 }
404
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300405 /* prepare queues */
406 usbvision_empty_framequeues(usbvision);
Hans Verkuil4d345702012-06-23 08:03:50 -0300407 mutex_unlock(&usbvision->v4l2_lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300408
409 PDEBUG(DBG_IO, "success");
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300410 return err_code;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300411}
412
413/*
414 * usbvision_v4l2_close()
415 *
416 * This is part of Video 4 Linux API. The procedure
417 * stops streaming and deallocates all buffers that were earlier
418 * allocated in usbvision_v4l2_open().
419 *
420 */
Hans Verkuilbec43662008-12-30 06:58:20 -0300421static int usbvision_v4l2_close(struct file *file)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300422{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300423 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300424
425 PDEBUG(DBG_IO, "close");
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300426
Hans Verkuil4d345702012-06-23 08:03:50 -0300427 mutex_lock(&usbvision->v4l2_lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300428 usbvision_audio_off(usbvision);
429 usbvision_restart_isoc(usbvision);
430 usbvision_stop_isoc(usbvision);
431
432 usbvision_decompress_free(usbvision);
Thierry MERLE38284ba2006-12-15 16:46:53 -0300433 usbvision_frames_free(usbvision);
Thierry MERLE6f78e182007-02-07 10:13:11 -0300434 usbvision_empty_framequeues(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300435 usbvision_scratch_free(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300436
437 usbvision->user--;
438
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300439 if (power_on_at_open) {
Thierry MERLEc5f48362007-05-08 17:22:29 -0300440 /* power off in a little while
441 to avoid off/on every close/open short sequences */
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300442 usbvision_set_power_off_timer(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300443 usbvision->initialized = 0;
444 }
445
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300446 if (usbvision->remove_pending) {
Harvey Harrisond2db42d2008-04-04 20:50:07 -0300447 printk(KERN_INFO "%s: Final disconnect\n", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300448 usbvision_release(usbvision);
Dan Carpenter470a9142014-10-16 04:57:21 -0300449 return 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300450 }
Hans Verkuil4d345702012-06-23 08:03:50 -0300451 mutex_unlock(&usbvision->v4l2_lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300452
453 PDEBUG(DBG_IO, "success");
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300454 return 0;
455}
456
457
458/*
459 * usbvision_ioctl()
460 *
461 * This is part of Video 4 Linux API. The procedure handles ioctl() calls.
462 *
463 */
Thierry MERLEc5f48362007-05-08 17:22:29 -0300464#ifdef CONFIG_VIDEO_ADV_DEBUG
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300465static int vidioc_g_register(struct file *file, void *priv,
Hans Verkuilaecde8b52008-12-30 07:14:19 -0300466 struct v4l2_dbg_register *reg)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300467{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300468 struct usb_usbvision *usbvision = video_drvdata(file);
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300469 int err_code;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300470
Thierry MERLEc5f48362007-05-08 17:22:29 -0300471 /* NT100x has a 8-bit register space */
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300472 err_code = usbvision_read_reg(usbvision, reg->reg&0xff);
473 if (err_code < 0) {
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -0300474 dev_err(&usbvision->vdev->dev,
475 "%s: VIDIOC_DBG_G_REGISTER failed: error %d\n",
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300476 __func__, err_code);
477 return err_code;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300478 }
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300479 reg->val = err_code;
Hans Verkuilaecde8b52008-12-30 07:14:19 -0300480 reg->size = 1;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300481 return 0;
482}
483
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300484static int vidioc_s_register(struct file *file, void *priv,
Hans Verkuil977ba3b2013-03-24 08:28:46 -0300485 const struct v4l2_dbg_register *reg)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300486{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300487 struct usb_usbvision *usbvision = video_drvdata(file);
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300488 int err_code;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300489
Thierry MERLEc5f48362007-05-08 17:22:29 -0300490 /* NT100x has a 8-bit register space */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300491 err_code = usbvision_write_reg(usbvision, reg->reg & 0xff, reg->val);
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300492 if (err_code < 0) {
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -0300493 dev_err(&usbvision->vdev->dev,
494 "%s: VIDIOC_DBG_S_REGISTER failed: error %d\n",
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300495 __func__, err_code);
496 return err_code;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300497 }
498 return 0;
499}
500#endif
501
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300502static int vidioc_querycap(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300503 struct v4l2_capability *vc)
504{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300505 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300506
507 strlcpy(vc->driver, "USBVision", sizeof(vc->driver));
508 strlcpy(vc->card,
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300509 usbvision_device_data[usbvision->dev_model].model_string,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300510 sizeof(vc->card));
Thierry MERLE6f2a2782009-01-20 17:40:44 -0300511 usb_make_path(usbvision->dev, vc->bus_info, sizeof(vc->bus_info));
Thierry MERLEc5f48362007-05-08 17:22:29 -0300512 vc->capabilities = V4L2_CAP_VIDEO_CAPTURE |
513 V4L2_CAP_AUDIO |
514 V4L2_CAP_READWRITE |
515 V4L2_CAP_STREAMING |
516 (usbvision->have_tuner ? V4L2_CAP_TUNER : 0);
517 return 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300518}
519
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300520static int vidioc_enum_input(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300521 struct v4l2_input *vi)
522{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300523 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300524 int chan;
525
Roel Kluin223ffe52009-05-02 16:38:47 -0300526 if (vi->index >= usbvision->video_inputs)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300527 return -EINVAL;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300528 if (usbvision->have_tuner)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300529 chan = vi->index;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300530 else
Hans Verkuil52cb0bf2010-12-19 20:33:51 -0300531 chan = vi->index + 1; /* skip Television string*/
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300532
Thierry MERLEc5f48362007-05-08 17:22:29 -0300533 /* Determine the requested input characteristics
534 specific for each usbvision card model */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300535 switch (chan) {
Thierry MERLEc5f48362007-05-08 17:22:29 -0300536 case 0:
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300537 if (usbvision_device_data[usbvision->dev_model].video_channels == 4) {
Thierry MERLEc5f48362007-05-08 17:22:29 -0300538 strcpy(vi->name, "White Video Input");
539 } else {
540 strcpy(vi->name, "Television");
541 vi->type = V4L2_INPUT_TYPE_TUNER;
542 vi->audioset = 1;
543 vi->tuner = chan;
544 vi->std = USBVISION_NORMS;
545 }
546 break;
547 case 1:
548 vi->type = V4L2_INPUT_TYPE_CAMERA;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300549 if (usbvision_device_data[usbvision->dev_model].video_channels == 4)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300550 strcpy(vi->name, "Green Video Input");
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300551 else
Thierry MERLEc5f48362007-05-08 17:22:29 -0300552 strcpy(vi->name, "Composite Video Input");
Thierry MERLEc5f48362007-05-08 17:22:29 -0300553 vi->std = V4L2_STD_PAL;
554 break;
555 case 2:
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, "Yellow Video Input");
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300559 else
Thierry MERLEc5f48362007-05-08 17:22:29 -0300560 strcpy(vi->name, "S-Video Input");
Thierry MERLEc5f48362007-05-08 17:22:29 -0300561 vi->std = V4L2_STD_PAL;
562 break;
563 case 3:
564 vi->type = V4L2_INPUT_TYPE_CAMERA;
565 strcpy(vi->name, "Red Video Input");
566 vi->std = V4L2_STD_PAL;
567 break;
568 }
569 return 0;
570}
571
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300572static int vidioc_g_input(struct file *file, void *priv, unsigned int *input)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300573{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300574 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300575
576 *input = usbvision->ctl_input;
577 return 0;
578}
579
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300580static int vidioc_s_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
Roel Kluinf14a2972009-10-23 07:59:42 -0300584 if (input >= usbvision->video_inputs)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300585 return -EINVAL;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300586
Thierry MERLE66a17872007-06-26 16:35:30 -0300587 usbvision_muxsel(usbvision, input);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300588 usbvision_set_input(usbvision);
589 usbvision_set_output(usbvision,
590 usbvision->curwidth,
591 usbvision->curheight);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300592 return 0;
593}
594
Hans Verkuil314527a2013-03-15 06:10:40 -0300595static int vidioc_s_std(struct file *file, void *priv, v4l2_std_id id)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300596{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300597 struct usb_usbvision *usbvision = video_drvdata(file);
598
Hans Verkuil314527a2013-03-15 06:10:40 -0300599 usbvision->tvnorm_id = id;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300600
Laurent Pinchart8774bed2014-04-28 16:53:01 -0300601 call_all(usbvision, video, s_std, usbvision->tvnorm_id);
Thierry MERLE66a17872007-06-26 16:35:30 -0300602 /* propagate the change to the decoder */
603 usbvision_muxsel(usbvision, usbvision->ctl_input);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300604
605 return 0;
606}
607
Hans Verkuil3b8436d2013-06-03 05:36:47 -0300608static int vidioc_g_std(struct file *file, void *priv, v4l2_std_id *id)
609{
610 struct usb_usbvision *usbvision = video_drvdata(file);
611
612 *id = usbvision->tvnorm_id;
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,
Hans Verkuil2f73c7c2013-03-15 06:10:06 -0300636 const struct v4l2_tuner *vt)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300637{
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,
Hans Verkuilb530a442013-03-19 04:09:26 -0300665 const struct v4l2_frequency *freq)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300666{
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,
Hans Verkuil0e8025b92012-09-04 11:59:31 -0300692 const struct v4l2_audio *a)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300693{
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 */
Sakari Ailus1b18e7a2012-10-22 17:10:16 -0300769 vb->flags = V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300770 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 |
Sakari Ailus1b18e7a2012-10-22 17:10:16 -0300851 V4L2_BUF_FLAG_DONE |
852 V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300853 vb->index = f->index;
854 vb->sequence = f->sequence;
855 vb->timestamp = f->timestamp;
856 vb->field = V4L2_FIELD_NONE;
857 vb->bytesused = f->scanlength;
858
859 return 0;
860}
861
862static int vidioc_streamon(struct file *file, void *priv, enum v4l2_buf_type i)
863{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300864 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300865
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300866 usbvision->streaming = stream_on;
Hans Verkuil1df79532009-02-21 18:11:31 -0300867 call_all(usbvision, video, s_stream, 1);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300868
869 return 0;
870}
871
872static int vidioc_streamoff(struct file *file,
873 void *priv, enum v4l2_buf_type type)
874{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300875 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300876
877 if (type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
878 return -EINVAL;
879
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300880 if (usbvision->streaming == stream_on) {
Thierry MERLEc5f48362007-05-08 17:22:29 -0300881 usbvision_stream_interrupt(usbvision);
882 /* Stop all video streamings */
Hans Verkuil1df79532009-02-21 18:11:31 -0300883 call_all(usbvision, video, s_stream, 0);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300884 }
885 usbvision_empty_framequeues(usbvision);
886
887 return 0;
888}
889
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300890static int vidioc_enum_fmt_vid_cap(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300891 struct v4l2_fmtdesc *vfd)
892{
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300893 if (vfd->index >= USBVISION_SUPPORTED_PALETTES - 1)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300894 return -EINVAL;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300895 strcpy(vfd->description, usbvision_v4l2_format[vfd->index].desc);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300896 vfd->pixelformat = usbvision_v4l2_format[vfd->index].format;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300897 return 0;
898}
899
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300900static int vidioc_g_fmt_vid_cap(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300901 struct v4l2_format *vf)
902{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300903 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300904 vf->fmt.pix.width = usbvision->curwidth;
905 vf->fmt.pix.height = usbvision->curheight;
906 vf->fmt.pix.pixelformat = usbvision->palette.format;
907 vf->fmt.pix.bytesperline =
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300908 usbvision->curwidth * usbvision->palette.bytes_per_pixel;
909 vf->fmt.pix.sizeimage = vf->fmt.pix.bytesperline * usbvision->curheight;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300910 vf->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
911 vf->fmt.pix.field = V4L2_FIELD_NONE; /* Always progressive image */
912
913 return 0;
914}
915
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300916static int vidioc_try_fmt_vid_cap(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300917 struct v4l2_format *vf)
918{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300919 struct usb_usbvision *usbvision = video_drvdata(file);
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300920 int format_idx;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300921
922 /* Find requested format in available ones */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300923 for (format_idx = 0; format_idx < USBVISION_SUPPORTED_PALETTES; format_idx++) {
924 if (vf->fmt.pix.pixelformat ==
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300925 usbvision_v4l2_format[format_idx].format) {
926 usbvision->palette = usbvision_v4l2_format[format_idx];
Thierry MERLEc5f48362007-05-08 17:22:29 -0300927 break;
928 }
929 }
930 /* robustness */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300931 if (format_idx == USBVISION_SUPPORTED_PALETTES)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300932 return -EINVAL;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300933 RESTRICT_TO_RANGE(vf->fmt.pix.width, MIN_FRAME_WIDTH, MAX_FRAME_WIDTH);
934 RESTRICT_TO_RANGE(vf->fmt.pix.height, MIN_FRAME_HEIGHT, MAX_FRAME_HEIGHT);
935
936 vf->fmt.pix.bytesperline = vf->fmt.pix.width*
937 usbvision->palette.bytes_per_pixel;
938 vf->fmt.pix.sizeimage = vf->fmt.pix.bytesperline*vf->fmt.pix.height;
939
940 return 0;
941}
942
Hans Verkuil78b526a2008-05-28 12:16:41 -0300943static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300944 struct v4l2_format *vf)
945{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300946 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300947 int ret;
948
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300949 ret = vidioc_try_fmt_vid_cap(file, priv, vf);
950 if (ret)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300951 return ret;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300952
953 /* stop io in case it is already in progress */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300954 if (usbvision->streaming == stream_on) {
955 ret = usbvision_stream_interrupt(usbvision);
956 if (ret)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300957 return ret;
958 }
959 usbvision_frames_free(usbvision);
960 usbvision_empty_framequeues(usbvision);
961
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300962 usbvision->cur_frame = NULL;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300963
964 /* by now we are committed to the new data... */
Thierry MERLEc5f48362007-05-08 17:22:29 -0300965 usbvision_set_output(usbvision, vf->fmt.pix.width, vf->fmt.pix.height);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300966
967 return 0;
968}
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300969
Hans Verkuil4d345702012-06-23 08:03:50 -0300970static ssize_t usbvision_read(struct file *file, char __user *buf,
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300971 size_t count, loff_t *ppos)
972{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300973 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300974 int noblock = file->f_flags & O_NONBLOCK;
975 unsigned long lock_flags;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300976 int ret, i;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300977 struct usbvision_frame *frame;
978
Harvey Harrisond2db42d2008-04-04 20:50:07 -0300979 PDEBUG(DBG_IO, "%s: %ld bytes, noblock=%d", __func__,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300980 (unsigned long)count, noblock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300981
982 if (!USBVISION_IS_OPERATIONAL(usbvision) || (buf == NULL))
983 return -EFAULT;
984
Thierry MERLEc5f48362007-05-08 17:22:29 -0300985 /* This entry point is compatible with the mmap routines
986 so that a user can do either VIDIOC_QBUF/VIDIOC_DQBUF
987 to get frames or call read on the device. */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300988 if (!usbvision->num_frames) {
Thierry MERLEc5f48362007-05-08 17:22:29 -0300989 /* First, allocate some frames to work with
990 if this has not been done with VIDIOC_REQBUF */
Thierry MERLE6f78e182007-02-07 10:13:11 -0300991 usbvision_frames_free(usbvision);
992 usbvision_empty_framequeues(usbvision);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300993 usbvision_frames_alloc(usbvision, USBVISION_NUMFRAMES);
Thierry MERLE6f78e182007-02-07 10:13:11 -0300994 }
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300995
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300996 if (usbvision->streaming != stream_on) {
Thierry MERLE6f78e182007-02-07 10:13:11 -0300997 /* no stream is running, make it running ! */
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300998 usbvision->streaming = stream_on;
Hans Verkuil1df79532009-02-21 18:11:31 -0300999 call_all(usbvision, video, s_stream, 1);
Thierry MERLE6f78e182007-02-07 10:13:11 -03001000 }
1001
Thierry MERLEc5f48362007-05-08 17:22:29 -03001002 /* Then, enqueue as many frames as possible
1003 (like a user of VIDIOC_QBUF would do) */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001004 for (i = 0; i < usbvision->num_frames; i++) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001005 frame = &usbvision->frame[i];
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001006 if (frame->grabstate == frame_state_unused) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001007 /* Mark it as ready and enqueue frame */
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001008 frame->grabstate = frame_state_ready;
1009 frame->scanstate = scan_state_scanning;
Thierry MERLEc5f48362007-05-08 17:22:29 -03001010 /* Accumulated in usbvision_parse_data() */
1011 frame->scanlength = 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001012
1013 /* set v4l2_format index */
1014 frame->v4l2_format = usbvision->palette;
1015
1016 spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
1017 list_add_tail(&frame->frame, &usbvision->inqueue);
Thierry MERLEc5f48362007-05-08 17:22:29 -03001018 spin_unlock_irqrestore(&usbvision->queue_lock,
1019 lock_flags);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001020 }
1021 }
1022
1023 /* Then try to steal a frame (like a VIDIOC_DQBUF would do) */
1024 if (list_empty(&(usbvision->outqueue))) {
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001025 if (noblock)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001026 return -EAGAIN;
1027
1028 ret = wait_event_interruptible
1029 (usbvision->wait_frame,
1030 !list_empty(&(usbvision->outqueue)));
1031 if (ret)
1032 return ret;
1033 }
1034
1035 spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
1036 frame = list_entry(usbvision->outqueue.next,
1037 struct usbvision_frame, frame);
1038 list_del(usbvision->outqueue.next);
1039 spin_unlock_irqrestore(&usbvision->queue_lock, lock_flags);
1040
1041 /* An error returns an empty frame */
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001042 if (frame->grabstate == frame_state_error) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001043 frame->bytes_read = 0;
1044 return 0;
1045 }
1046
Thierry MERLEc5f48362007-05-08 17:22:29 -03001047 PDEBUG(DBG_IO, "%s: frmx=%d, bytes_read=%ld, scanlength=%ld",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001048 __func__,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001049 frame->index, frame->bytes_read, frame->scanlength);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001050
1051 /* copy bytes to user space; we allow for partials reads */
1052 if ((count + frame->bytes_read) > (unsigned long)frame->scanlength)
1053 count = frame->scanlength - frame->bytes_read;
1054
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001055 if (copy_to_user(buf, frame->data + frame->bytes_read, count))
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001056 return -EFAULT;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001057
1058 frame->bytes_read += count;
Thierry MERLEc5f48362007-05-08 17:22:29 -03001059 PDEBUG(DBG_IO, "%s: {copy} count used=%ld, new bytes_read=%ld",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001060 __func__,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001061 (unsigned long)count, frame->bytes_read);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001062
Thierry MERLEc5f48362007-05-08 17:22:29 -03001063 /* For now, forget the frame if it has not been read in one shot. */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001064/* if (frame->bytes_read >= frame->scanlength) {*/ /* All data has been read */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001065 frame->bytes_read = 0;
1066
1067 /* Mark it as available to be used again. */
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001068 frame->grabstate = frame_state_unused;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001069/* } */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001070
1071 return count;
1072}
1073
Hans Verkuil4d345702012-06-23 08:03:50 -03001074static ssize_t usbvision_v4l2_read(struct file *file, char __user *buf,
1075 size_t count, loff_t *ppos)
1076{
1077 struct usb_usbvision *usbvision = video_drvdata(file);
1078 int res;
1079
1080 if (mutex_lock_interruptible(&usbvision->v4l2_lock))
1081 return -ERESTARTSYS;
1082 res = usbvision_read(file, buf, count, ppos);
1083 mutex_unlock(&usbvision->v4l2_lock);
1084 return res;
1085}
1086
1087static int usbvision_mmap(struct file *file, struct vm_area_struct *vma)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001088{
1089 unsigned long size = vma->vm_end - vma->vm_start,
1090 start = vma->vm_start;
1091 void *pos;
1092 u32 i;
Hans Verkuilc170ecf2008-08-23 08:32:09 -03001093 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001094
Thierry MERLE6f78e182007-02-07 10:13:11 -03001095 PDEBUG(DBG_MMAP, "mmap");
1096
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001097 if (!USBVISION_IS_OPERATIONAL(usbvision))
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001098 return -EFAULT;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001099
1100 if (!(vma->vm_flags & VM_WRITE) ||
Thierry MERLE6f78e182007-02-07 10:13:11 -03001101 size != PAGE_ALIGN(usbvision->max_frame_size)) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001102 return -EINVAL;
1103 }
1104
Thierry MERLE6f78e182007-02-07 10:13:11 -03001105 for (i = 0; i < usbvision->num_frames; i++) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001106 if (((PAGE_ALIGN(usbvision->max_frame_size)*i) >> PAGE_SHIFT) ==
1107 vma->vm_pgoff)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001108 break;
1109 }
Thierry MERLE6f78e182007-02-07 10:13:11 -03001110 if (i == usbvision->num_frames) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001111 PDEBUG(DBG_MMAP,
1112 "mmap: user supplied mapping address is out of range");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001113 return -EINVAL;
1114 }
1115
1116 /* VM_IO is eventually going to replace PageReserved altogether */
Konstantin Khlebnikov314e51b2012-10-08 16:29:02 -07001117 vma->vm_flags |= VM_IO | VM_DONTEXPAND | VM_DONTDUMP;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001118
1119 pos = usbvision->frame[i].data;
1120 while (size > 0) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001121 if (vm_insert_page(vma, start, vmalloc_to_page(pos))) {
Thierry MERLEc876a342006-12-09 16:42:54 -03001122 PDEBUG(DBG_MMAP, "mmap: vm_insert_page failed");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001123 return -EAGAIN;
1124 }
1125 start += PAGE_SIZE;
1126 pos += PAGE_SIZE;
1127 size -= PAGE_SIZE;
1128 }
1129
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001130 return 0;
1131}
1132
Hans Verkuil4d345702012-06-23 08:03:50 -03001133static int usbvision_v4l2_mmap(struct file *file, struct vm_area_struct *vma)
1134{
1135 struct usb_usbvision *usbvision = video_drvdata(file);
1136 int res;
1137
1138 if (mutex_lock_interruptible(&usbvision->v4l2_lock))
1139 return -ERESTARTSYS;
1140 res = usbvision_mmap(file, vma);
1141 mutex_unlock(&usbvision->v4l2_lock);
1142 return res;
1143}
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001144
1145/*
1146 * Here comes the stuff for radio on usbvision based devices
1147 *
1148 */
Hans Verkuilbec43662008-12-30 06:58:20 -03001149static int usbvision_radio_open(struct file *file)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001150{
Hans Verkuilc170ecf2008-08-23 08:32:09 -03001151 struct usb_usbvision *usbvision = video_drvdata(file);
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001152 int err_code = 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001153
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001154 PDEBUG(DBG_IO, "%s:", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001155
Hans Verkuil4d345702012-06-23 08:03:50 -03001156 if (mutex_lock_interruptible(&usbvision->v4l2_lock))
1157 return -ERESTARTSYS;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001158 if (usbvision->user) {
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001159 dev_err(&usbvision->rdev->dev,
1160 "%s: Someone tried to open an already opened USBVision Radio!\n",
1161 __func__);
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001162 err_code = -EBUSY;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001163 } else {
1164 if (power_on_at_open) {
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001165 usbvision_reset_power_off_timer(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001166 if (usbvision->power == 0) {
1167 usbvision_power_on(usbvision);
Thierry MERLE1ff16c22007-04-14 16:23:49 -03001168 usbvision_i2c_register(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001169 }
1170 }
1171
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001172 /* Alternate interface 1 is is the biggest frame size */
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001173 err_code = usbvision_set_alternate(usbvision);
1174 if (err_code < 0) {
1175 usbvision->last_error = err_code;
1176 err_code = -EBUSY;
Andrew Morton544e6172007-12-12 18:25:23 -03001177 goto out;
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001178 }
1179
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001180 /* If so far no errors then we shall start the radio */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001181 usbvision->radio = 1;
Hans Verkuil1df79532009-02-21 18:11:31 -03001182 call_all(usbvision, tuner, s_radio);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001183 usbvision_set_audio(usbvision, USBVISION_AUDIO_RADIO);
1184 usbvision->user++;
1185 }
1186
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001187 if (err_code) {
1188 if (power_on_at_open) {
Thierry MERLE1ff16c22007-04-14 16:23:49 -03001189 usbvision_i2c_unregister(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001190 usbvision_power_off(usbvision);
1191 usbvision->initialized = 0;
1192 }
1193 }
Andrew Morton544e6172007-12-12 18:25:23 -03001194out:
Hans Verkuil4d345702012-06-23 08:03:50 -03001195 mutex_unlock(&usbvision->v4l2_lock);
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001196 return err_code;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001197}
1198
1199
Hans Verkuilbec43662008-12-30 06:58:20 -03001200static int usbvision_radio_close(struct file *file)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001201{
Hans Verkuilc170ecf2008-08-23 08:32:09 -03001202 struct usb_usbvision *usbvision = video_drvdata(file);
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001203 int err_code = 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001204
1205 PDEBUG(DBG_IO, "");
1206
Hans Verkuil4d345702012-06-23 08:03:50 -03001207 mutex_lock(&usbvision->v4l2_lock);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001208 /* Set packet size to 0 */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001209 usbvision->iface_alt = 0;
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001210 err_code = usb_set_interface(usbvision->dev, usbvision->iface,
1211 usbvision->iface_alt);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001212
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001213 usbvision_audio_off(usbvision);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001214 usbvision->radio = 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001215 usbvision->user--;
1216
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001217 if (power_on_at_open) {
1218 usbvision_set_power_off_timer(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001219 usbvision->initialized = 0;
1220 }
1221
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001222 if (usbvision->remove_pending) {
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001223 printk(KERN_INFO "%s: Final disconnect\n", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001224 usbvision_release(usbvision);
Dan Carpenter470a9142014-10-16 04:57:21 -03001225 return err_code;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001226 }
1227
Hans Verkuil4d345702012-06-23 08:03:50 -03001228 mutex_unlock(&usbvision->v4l2_lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001229 PDEBUG(DBG_IO, "success");
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001230 return err_code;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001231}
1232
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001233/* Video registration stuff */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001234
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001235/* Video template */
Hans Verkuilbec43662008-12-30 06:58:20 -03001236static const struct v4l2_file_operations usbvision_fops = {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001237 .owner = THIS_MODULE,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001238 .open = usbvision_v4l2_open,
1239 .release = usbvision_v4l2_close,
1240 .read = usbvision_v4l2_read,
1241 .mmap = usbvision_v4l2_mmap,
Hans Verkuilc627b9d2010-12-18 11:06:09 -03001242 .unlocked_ioctl = video_ioctl2,
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001243/* .poll = video_poll, */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001244};
Hans Verkuila3998102008-07-21 02:57:38 -03001245
1246static const struct v4l2_ioctl_ops usbvision_ioctl_ops = {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001247 .vidioc_querycap = vidioc_querycap,
Hans Verkuil78b526a2008-05-28 12:16:41 -03001248 .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap,
1249 .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap,
1250 .vidioc_try_fmt_vid_cap = vidioc_try_fmt_vid_cap,
1251 .vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001252 .vidioc_reqbufs = vidioc_reqbufs,
1253 .vidioc_querybuf = vidioc_querybuf,
1254 .vidioc_qbuf = vidioc_qbuf,
1255 .vidioc_dqbuf = vidioc_dqbuf,
1256 .vidioc_s_std = vidioc_s_std,
Hans Verkuil3b8436d2013-06-03 05:36:47 -03001257 .vidioc_g_std = vidioc_g_std,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001258 .vidioc_enum_input = vidioc_enum_input,
1259 .vidioc_g_input = vidioc_g_input,
1260 .vidioc_s_input = vidioc_s_input,
1261 .vidioc_queryctrl = vidioc_queryctrl,
1262 .vidioc_g_audio = vidioc_g_audio,
Al Viroed4d6372007-09-26 01:53:42 +01001263 .vidioc_s_audio = vidioc_s_audio,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001264 .vidioc_g_ctrl = vidioc_g_ctrl,
1265 .vidioc_s_ctrl = vidioc_s_ctrl,
1266 .vidioc_streamon = vidioc_streamon,
1267 .vidioc_streamoff = vidioc_streamoff,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001268 .vidioc_g_tuner = vidioc_g_tuner,
1269 .vidioc_s_tuner = vidioc_s_tuner,
1270 .vidioc_g_frequency = vidioc_g_frequency,
1271 .vidioc_s_frequency = vidioc_s_frequency,
1272#ifdef CONFIG_VIDEO_ADV_DEBUG
1273 .vidioc_g_register = vidioc_g_register,
1274 .vidioc_s_register = vidioc_s_register,
1275#endif
Hans Verkuila3998102008-07-21 02:57:38 -03001276};
1277
1278static struct video_device usbvision_video_template = {
Hans Verkuila3998102008-07-21 02:57:38 -03001279 .fops = &usbvision_fops,
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001280 .ioctl_ops = &usbvision_ioctl_ops,
Hans Verkuila3998102008-07-21 02:57:38 -03001281 .name = "usbvision-video",
1282 .release = video_device_release,
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001283 .tvnorms = USBVISION_NORMS,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001284};
1285
1286
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001287/* Radio template */
Hans Verkuilbec43662008-12-30 06:58:20 -03001288static const struct v4l2_file_operations usbvision_radio_fops = {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001289 .owner = THIS_MODULE,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001290 .open = usbvision_radio_open,
1291 .release = usbvision_radio_close,
Hans Verkuilc627b9d2010-12-18 11:06:09 -03001292 .unlocked_ioctl = video_ioctl2,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001293};
1294
Hans Verkuila3998102008-07-21 02:57:38 -03001295static const struct v4l2_ioctl_ops usbvision_radio_ioctl_ops = {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001296 .vidioc_querycap = vidioc_querycap,
1297 .vidioc_enum_input = vidioc_enum_input,
1298 .vidioc_g_input = vidioc_g_input,
1299 .vidioc_s_input = vidioc_s_input,
1300 .vidioc_queryctrl = vidioc_queryctrl,
1301 .vidioc_g_audio = vidioc_g_audio,
Al Viroed4d6372007-09-26 01:53:42 +01001302 .vidioc_s_audio = vidioc_s_audio,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001303 .vidioc_g_ctrl = vidioc_g_ctrl,
1304 .vidioc_s_ctrl = vidioc_s_ctrl,
1305 .vidioc_g_tuner = vidioc_g_tuner,
1306 .vidioc_s_tuner = vidioc_s_tuner,
1307 .vidioc_g_frequency = vidioc_g_frequency,
1308 .vidioc_s_frequency = vidioc_s_frequency,
Hans Verkuila3998102008-07-21 02:57:38 -03001309};
1310
1311static struct video_device usbvision_radio_template = {
Hans Verkuila3998102008-07-21 02:57:38 -03001312 .fops = &usbvision_radio_fops,
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001313 .name = "usbvision-radio",
Hans Verkuila3998102008-07-21 02:57:38 -03001314 .release = video_device_release,
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001315 .ioctl_ops = &usbvision_radio_ioctl_ops,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001316};
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001317
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001318
1319static struct video_device *usbvision_vdev_init(struct usb_usbvision *usbvision,
1320 struct video_device *vdev_template,
1321 char *name)
1322{
1323 struct usb_device *usb_dev = usbvision->dev;
1324 struct video_device *vdev;
1325
1326 if (usb_dev == NULL) {
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001327 dev_err(&usbvision->dev->dev,
1328 "%s: usbvision->dev is not set\n", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001329 return NULL;
1330 }
1331
1332 vdev = video_device_alloc();
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001333 if (NULL == vdev)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001334 return NULL;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001335 *vdev = *vdev_template;
Hans Verkuilc627b9d2010-12-18 11:06:09 -03001336 vdev->lock = &usbvision->v4l2_lock;
Hans Verkuil1df79532009-02-21 18:11:31 -03001337 vdev->v4l2_dev = &usbvision->v4l2_dev;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001338 snprintf(vdev->name, sizeof(vdev->name), "%s", name);
1339 video_set_drvdata(vdev, usbvision);
1340 return vdev;
1341}
1342
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001343/* unregister video4linux devices */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001344static void usbvision_unregister_video(struct usb_usbvision *usbvision)
1345{
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001346 /* Radio Device: */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001347 if (usbvision->rdev) {
Laurent Pinchart38c7c032009-11-27 13:57:15 -03001348 PDEBUG(DBG_PROBE, "unregister %s [v4l2]",
1349 video_device_node_name(usbvision->rdev));
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001350 if (video_is_registered(usbvision->rdev))
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001351 video_unregister_device(usbvision->rdev);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001352 else
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001353 video_device_release(usbvision->rdev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001354 usbvision->rdev = NULL;
1355 }
1356
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001357 /* Video Device: */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001358 if (usbvision->vdev) {
Laurent Pinchart38c7c032009-11-27 13:57:15 -03001359 PDEBUG(DBG_PROBE, "unregister %s [v4l2]",
1360 video_device_node_name(usbvision->vdev));
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001361 if (video_is_registered(usbvision->vdev))
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001362 video_unregister_device(usbvision->vdev);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001363 else
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001364 video_device_release(usbvision->vdev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001365 usbvision->vdev = NULL;
1366 }
1367}
1368
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001369/* register video4linux devices */
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08001370static int usbvision_register_video(struct usb_usbvision *usbvision)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001371{
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001372 /* Video Device: */
Thierry MERLEc5f48362007-05-08 17:22:29 -03001373 usbvision->vdev = usbvision_vdev_init(usbvision,
1374 &usbvision_video_template,
1375 "USBVision Video");
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001376 if (usbvision->vdev == NULL)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001377 goto err_exit;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001378 if (video_register_device(usbvision->vdev, VFL_TYPE_GRABBER, video_nr) < 0)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001379 goto err_exit;
Laurent Pinchart38c7c032009-11-27 13:57:15 -03001380 printk(KERN_INFO "USBVision[%d]: registered USBVision Video device %s [v4l2]\n",
1381 usbvision->nr, video_device_node_name(usbvision->vdev));
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001382
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001383 /* Radio Device: */
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001384 if (usbvision_device_data[usbvision->dev_model].radio) {
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001385 /* usbvision has radio */
Thierry MERLEc5f48362007-05-08 17:22:29 -03001386 usbvision->rdev = usbvision_vdev_init(usbvision,
1387 &usbvision_radio_template,
1388 "USBVision Radio");
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001389 if (usbvision->rdev == NULL)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001390 goto err_exit;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001391 if (video_register_device(usbvision->rdev, VFL_TYPE_RADIO, radio_nr) < 0)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001392 goto err_exit;
Laurent Pinchart38c7c032009-11-27 13:57:15 -03001393 printk(KERN_INFO "USBVision[%d]: registered USBVision Radio device %s [v4l2]\n",
1394 usbvision->nr, video_device_node_name(usbvision->rdev));
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001395 }
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001396 /* all done */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001397 return 0;
1398
1399 err_exit:
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001400 dev_err(&usbvision->dev->dev,
1401 "USBVision[%d]: video_register_device() failed\n",
1402 usbvision->nr);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001403 usbvision_unregister_video(usbvision);
1404 return -1;
1405}
1406
1407/*
1408 * usbvision_alloc()
1409 *
Thierry MERLEc5f48362007-05-08 17:22:29 -03001410 * This code allocates the struct usb_usbvision.
1411 * It is filled with default values.
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001412 *
1413 * Returns NULL on error, a pointer to usb_usbvision else.
1414 *
1415 */
Janne Grunaua8784402009-04-01 08:46:00 -03001416static struct usb_usbvision *usbvision_alloc(struct usb_device *dev,
1417 struct usb_interface *intf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001418{
1419 struct usb_usbvision *usbvision;
1420
Hans Verkuil1df79532009-02-21 18:11:31 -03001421 usbvision = kzalloc(sizeof(struct usb_usbvision), GFP_KERNEL);
1422 if (usbvision == NULL)
1423 return NULL;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001424
1425 usbvision->dev = dev;
Janne Grunaua8784402009-04-01 08:46:00 -03001426 if (v4l2_device_register(&intf->dev, &usbvision->v4l2_dev))
Hans Verkuil1df79532009-02-21 18:11:31 -03001427 goto err_free;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001428
Hans Verkuilc627b9d2010-12-18 11:06:09 -03001429 mutex_init(&usbvision->v4l2_lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001430
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001431 /* prepare control urb for control messages during interrupts */
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001432 usbvision->ctrl_urb = usb_alloc_urb(USBVISION_URB_FRAMES, GFP_KERNEL);
1433 if (usbvision->ctrl_urb == NULL)
Hans Verkuil1df79532009-02-21 18:11:31 -03001434 goto err_unreg;
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001435 init_waitqueue_head(&usbvision->ctrl_urb_wq);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001436
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001437 usbvision_init_power_off_timer(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001438
1439 return usbvision;
1440
Hans Verkuil1df79532009-02-21 18:11:31 -03001441err_unreg:
1442 v4l2_device_unregister(&usbvision->v4l2_dev);
1443err_free:
1444 kfree(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001445 return NULL;
1446}
1447
1448/*
1449 * usbvision_release()
1450 *
1451 * This code does final release of struct usb_usbvision. This happens
1452 * after the device is disconnected -and- all clients closed their files.
1453 *
1454 */
1455static void usbvision_release(struct usb_usbvision *usbvision)
1456{
1457 PDEBUG(DBG_PROBE, "");
1458
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001459 usbvision_reset_power_off_timer(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001460
1461 usbvision->initialized = 0;
1462
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001463 usbvision_remove_sysfs(usbvision->vdev);
1464 usbvision_unregister_video(usbvision);
Alexey Khoroshilov090c65b2013-06-10 17:32:29 -03001465 kfree(usbvision->alt_max_pkt_size);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001466
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001467 usb_free_urb(usbvision->ctrl_urb);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001468
Hans Verkuil1df79532009-02-21 18:11:31 -03001469 v4l2_device_unregister(&usbvision->v4l2_dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001470 kfree(usbvision);
1471
1472 PDEBUG(DBG_PROBE, "success");
1473}
1474
1475
Thierry MERLEc5f48362007-05-08 17:22:29 -03001476/*********************** usb interface **********************************/
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001477
1478static void usbvision_configure_video(struct usb_usbvision *usbvision)
1479{
Thierry MERLEc5f48362007-05-08 17:22:29 -03001480 int model;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001481
1482 if (usbvision == NULL)
1483 return;
1484
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001485 model = usbvision->dev_model;
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001486 usbvision->palette = usbvision_v4l2_format[2]; /* V4L2_PIX_FMT_RGB24; */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001487
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001488 if (usbvision_device_data[usbvision->dev_model].vin_reg2_override) {
1489 usbvision->vin_reg2_preset =
1490 usbvision_device_data[usbvision->dev_model].vin_reg2;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001491 } else {
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001492 usbvision->vin_reg2_preset = 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001493 }
1494
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001495 usbvision->tvnorm_id = usbvision_device_data[model].video_norm;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001496
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001497 usbvision->video_inputs = usbvision_device_data[model].video_channels;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001498 usbvision->ctl_input = 0;
1499
1500 /* This should be here to make i2c clients to be able to register */
Thierry MERLEc5f48362007-05-08 17:22:29 -03001501 /* first switch off audio */
Ondrej Zary240d57b2011-04-27 17:36:05 -03001502 if (usbvision_device_data[model].audio_channels > 0)
1503 usbvision_audio_off(usbvision);
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001504 if (!power_on_at_open) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001505 /* and then power up the noisy tuner */
1506 usbvision_power_on(usbvision);
Thierry MERLE1ff16c22007-04-14 16:23:49 -03001507 usbvision_i2c_register(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001508 }
1509}
1510
1511/*
1512 * usbvision_probe()
1513 *
1514 * This procedure queries device descriptor and accepts the interface
1515 * if it looks like USBVISION video device
1516 *
1517 */
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08001518static int usbvision_probe(struct usb_interface *intf,
1519 const struct usb_device_id *devid)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001520{
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001521 struct usb_device *dev = usb_get_dev(interface_to_usbdev(intf));
1522 struct usb_interface *uif;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001523 __u8 ifnum = intf->altsetting->desc.bInterfaceNumber;
1524 const struct usb_host_interface *interface;
1525 struct usb_usbvision *usbvision = NULL;
1526 const struct usb_endpoint_descriptor *endpoint;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001527 int model, i;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001528
1529 PDEBUG(DBG_PROBE, "VID=%#04x, PID=%#04x, ifnum=%u",
Mauro Carvalho Chehab659ae562007-04-14 15:09:59 -03001530 dev->descriptor.idVendor,
1531 dev->descriptor.idProduct, ifnum);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001532
Mauro Carvalho Chehab659ae562007-04-14 15:09:59 -03001533 model = devid->driver_info;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001534 if (model < 0 || model >= usbvision_device_data_size) {
1535 PDEBUG(DBG_PROBE, "model out of bounds %d", model);
Mauro Carvalho Chehabf8a389d2007-04-14 15:17:35 -03001536 return -ENODEV;
1537 }
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001538 printk(KERN_INFO "%s: %s found\n", __func__,
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001539 usbvision_device_data[model].model_string);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001540
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001541 if (usbvision_device_data[model].interface >= 0)
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001542 interface = &dev->actconfig->interface[usbvision_device_data[model].interface]->altsetting[0];
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001543 else
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001544 interface = &dev->actconfig->interface[ifnum]->altsetting[0];
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001545 endpoint = &interface->endpoint[1].desc;
Julia Lawall2230c3c2009-01-03 16:53:10 -03001546 if (!usb_endpoint_xfer_isoc(endpoint)) {
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001547 dev_err(&intf->dev, "%s: interface %d. has non-ISO endpoint!\n",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001548 __func__, ifnum);
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001549 dev_err(&intf->dev, "%s: Endpoint attributes %d",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001550 __func__, endpoint->bmAttributes);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001551 return -ENODEV;
1552 }
Julia Lawall13417982008-12-29 21:49:22 -03001553 if (usb_endpoint_dir_out(endpoint)) {
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001554 dev_err(&intf->dev, "%s: interface %d. has ISO OUT endpoint!\n",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001555 __func__, ifnum);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001556 return -ENODEV;
1557 }
1558
Janne Grunaua8784402009-04-01 08:46:00 -03001559 usbvision = usbvision_alloc(dev, intf);
1560 if (usbvision == NULL) {
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001561 dev_err(&intf->dev, "%s: couldn't allocate USBVision struct\n", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001562 return -ENOMEM;
1563 }
Mauro Carvalho Chehab659ae562007-04-14 15:09:59 -03001564
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001565 if (dev->descriptor.bNumConfigurations > 1)
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001566 usbvision->bridge_type = BRIDGE_NT1004;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001567 else if (model == DAZZLE_DVC_90_REV_1_SECAM)
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001568 usbvision->bridge_type = BRIDGE_NT1005;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001569 else
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001570 usbvision->bridge_type = BRIDGE_NT1003;
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001571 PDEBUG(DBG_PROBE, "bridge_type %d", usbvision->bridge_type);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001572
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001573 /* compute alternate max packet sizes */
1574 uif = dev->actconfig->interface[0];
1575
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001576 usbvision->num_alt = uif->num_altsetting;
1577 PDEBUG(DBG_PROBE, "Alternate settings: %i", usbvision->num_alt);
1578 usbvision->alt_max_pkt_size = kmalloc(32 * usbvision->num_alt, GFP_KERNEL);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001579 if (usbvision->alt_max_pkt_size == NULL) {
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001580 dev_err(&intf->dev, "usbvision: out of memory!\n");
Alexey Khoroshilov090c65b2013-06-10 17:32:29 -03001581 usbvision_release(usbvision);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001582 return -ENOMEM;
1583 }
1584
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001585 for (i = 0; i < usbvision->num_alt; i++) {
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001586 u16 tmp = le16_to_cpu(uif->altsetting[i].endpoint[1].desc.
1587 wMaxPacketSize);
1588 usbvision->alt_max_pkt_size[i] =
1589 (tmp & 0x07ff) * (((tmp & 0x1800) >> 11) + 1);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001590 PDEBUG(DBG_PROBE, "Alternate setting %i, max size= %i", i,
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001591 usbvision->alt_max_pkt_size[i]);
1592 }
1593
1594
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001595 usbvision->nr = usbvision_nr++;
1596
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001597 usbvision->have_tuner = usbvision_device_data[model].tuner;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001598 if (usbvision->have_tuner)
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001599 usbvision->tuner_type = usbvision_device_data[model].tuner_type;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001600
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001601 usbvision->dev_model = model;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001602 usbvision->remove_pending = 0;
1603 usbvision->iface = ifnum;
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001604 usbvision->iface_alt = 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001605 usbvision->video_endp = endpoint->bEndpointAddress;
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001606 usbvision->isoc_packet_size = 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001607 usbvision->usb_bandwidth = 0;
1608 usbvision->user = 0;
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001609 usbvision->streaming = stream_off;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001610 usbvision_configure_video(usbvision);
Hans Verkuil84034722010-09-17 15:07:28 -03001611 usbvision_register_video(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001612
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001613 usbvision_create_sysfs(usbvision->vdev);
1614
1615 PDEBUG(DBG_PROBE, "success");
1616 return 0;
1617}
1618
1619
1620/*
1621 * usbvision_disconnect()
1622 *
1623 * This procedure stops all driver activity, deallocates interface-private
1624 * structure (pointed by 'ptr') and after that driver should be removable
1625 * with no ill consequences.
1626 *
1627 */
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08001628static void usbvision_disconnect(struct usb_interface *intf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001629{
Hans Verkuilaeb506a2010-05-02 09:00:13 -03001630 struct usb_usbvision *usbvision = to_usbvision(usb_get_intfdata(intf));
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001631
1632 PDEBUG(DBG_PROBE, "");
1633
1634 if (usbvision == NULL) {
Julia Lawall42020662010-05-27 09:36:45 -03001635 pr_err("%s: usb_get_intfdata() failed\n", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001636 return;
1637 }
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001638
Hans Verkuilc627b9d2010-12-18 11:06:09 -03001639 mutex_lock(&usbvision->v4l2_lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001640
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001641 /* At this time we ask to cancel outstanding URBs */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001642 usbvision_stop_isoc(usbvision);
1643
Hans Verkuilf1ba28c2009-03-14 12:27:01 -03001644 v4l2_device_disconnect(&usbvision->v4l2_dev);
1645
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001646 if (usbvision->power) {
Thierry MERLE1ff16c22007-04-14 16:23:49 -03001647 usbvision_i2c_unregister(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001648 usbvision_power_off(usbvision);
1649 }
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001650 usbvision->remove_pending = 1; /* Now all ISO data will be ignored */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001651
1652 usb_put_dev(usbvision->dev);
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001653 usbvision->dev = NULL; /* USB device is no more */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001654
Hans Verkuilc627b9d2010-12-18 11:06:09 -03001655 mutex_unlock(&usbvision->v4l2_lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001656
1657 if (usbvision->user) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001658 printk(KERN_INFO "%s: In use, disconnect pending\n",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001659 __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001660 wake_up_interruptible(&usbvision->wait_frame);
1661 wake_up_interruptible(&usbvision->wait_stream);
Thierry MERLEc5f48362007-05-08 17:22:29 -03001662 } else {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001663 usbvision_release(usbvision);
1664 }
1665
1666 PDEBUG(DBG_PROBE, "success");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001667}
1668
1669static struct usb_driver usbvision_driver = {
1670 .name = "usbvision",
1671 .id_table = usbvision_table,
1672 .probe = usbvision_probe,
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08001673 .disconnect = usbvision_disconnect,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001674};
1675
1676/*
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001677 * usbvision_init()
1678 *
1679 * This code is run to initialize the driver.
1680 *
1681 */
1682static int __init usbvision_init(void)
1683{
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001684 int err_code;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001685
1686 PDEBUG(DBG_PROBE, "");
1687
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001688 PDEBUG(DBG_IO, "IO debugging is enabled [video]");
1689 PDEBUG(DBG_PROBE, "PROBE debugging is enabled [video]");
Thierry MERLEc876a342006-12-09 16:42:54 -03001690 PDEBUG(DBG_MMAP, "MMAP debugging is enabled [video]");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001691
1692 /* disable planar mode support unless compression enabled */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001693 if (isoc_mode != ISOC_MODE_COMPRESS) {
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001694 /* FIXME : not the right way to set supported flag */
1695 usbvision_v4l2_format[6].supported = 0; /* V4L2_PIX_FMT_YVU420 */
1696 usbvision_v4l2_format[7].supported = 0; /* V4L2_PIX_FMT_YUV422P */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001697 }
1698
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001699 err_code = usb_register(&usbvision_driver);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001700
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001701 if (err_code == 0) {
Dwaine Gardende6a1b82007-01-07 21:13:55 -03001702 printk(KERN_INFO DRIVER_DESC " : " USBVISION_VERSION_STRING "\n");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001703 PDEBUG(DBG_PROBE, "success");
1704 }
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001705 return err_code;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001706}
1707
1708static void __exit usbvision_exit(void)
1709{
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001710 PDEBUG(DBG_PROBE, "");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001711
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001712 usb_deregister(&usbvision_driver);
1713 PDEBUG(DBG_PROBE, "success");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001714}
1715
1716module_init(usbvision_init);
1717module_exit(usbvision_exit);
1718
1719/*
1720 * Overrides for Emacs so that we follow Linus's tabbing style.
1721 * ---------------------------------------------------------------------------
1722 * Local variables:
1723 * c-basic-offset: 8
1724 * End:
1725 */