blob: ad7f7448072ef8ba995c10c9f06471a25314bd96 [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);
449 }
Hans Verkuil4d345702012-06-23 08:03:50 -0300450 mutex_unlock(&usbvision->v4l2_lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300451
452 PDEBUG(DBG_IO, "success");
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300453 return 0;
454}
455
456
457/*
458 * usbvision_ioctl()
459 *
460 * This is part of Video 4 Linux API. The procedure handles ioctl() calls.
461 *
462 */
Thierry MERLEc5f48362007-05-08 17:22:29 -0300463#ifdef CONFIG_VIDEO_ADV_DEBUG
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300464static int vidioc_g_register(struct file *file, void *priv,
Hans Verkuilaecde8b52008-12-30 07:14:19 -0300465 struct v4l2_dbg_register *reg)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300466{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300467 struct usb_usbvision *usbvision = video_drvdata(file);
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300468 int err_code;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300469
Hans Verkuilaecde8b52008-12-30 07:14:19 -0300470 if (!v4l2_chip_match_host(&reg->match))
Thierry MERLEc5f48362007-05-08 17:22:29 -0300471 return -EINVAL;
472 /* NT100x has a 8-bit register space */
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300473 err_code = usbvision_read_reg(usbvision, reg->reg&0xff);
474 if (err_code < 0) {
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -0300475 dev_err(&usbvision->vdev->dev,
476 "%s: VIDIOC_DBG_G_REGISTER failed: error %d\n",
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300477 __func__, err_code);
478 return err_code;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300479 }
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300480 reg->val = err_code;
Hans Verkuilaecde8b52008-12-30 07:14:19 -0300481 reg->size = 1;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300482 return 0;
483}
484
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300485static int vidioc_s_register(struct file *file, void *priv,
Hans Verkuilaecde8b52008-12-30 07:14:19 -0300486 struct v4l2_dbg_register *reg)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300487{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300488 struct usb_usbvision *usbvision = video_drvdata(file);
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300489 int err_code;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300490
Hans Verkuilaecde8b52008-12-30 07:14:19 -0300491 if (!v4l2_chip_match_host(&reg->match))
Thierry MERLEc5f48362007-05-08 17:22:29 -0300492 return -EINVAL;
493 /* NT100x has a 8-bit register space */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300494 err_code = usbvision_write_reg(usbvision, reg->reg & 0xff, reg->val);
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300495 if (err_code < 0) {
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -0300496 dev_err(&usbvision->vdev->dev,
497 "%s: VIDIOC_DBG_S_REGISTER failed: error %d\n",
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300498 __func__, err_code);
499 return err_code;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300500 }
501 return 0;
502}
503#endif
504
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300505static int vidioc_querycap(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300506 struct v4l2_capability *vc)
507{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300508 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300509
510 strlcpy(vc->driver, "USBVision", sizeof(vc->driver));
511 strlcpy(vc->card,
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300512 usbvision_device_data[usbvision->dev_model].model_string,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300513 sizeof(vc->card));
Thierry MERLE6f2a2782009-01-20 17:40:44 -0300514 usb_make_path(usbvision->dev, vc->bus_info, sizeof(vc->bus_info));
Thierry MERLEc5f48362007-05-08 17:22:29 -0300515 vc->capabilities = V4L2_CAP_VIDEO_CAPTURE |
516 V4L2_CAP_AUDIO |
517 V4L2_CAP_READWRITE |
518 V4L2_CAP_STREAMING |
519 (usbvision->have_tuner ? V4L2_CAP_TUNER : 0);
520 return 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300521}
522
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300523static int vidioc_enum_input(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300524 struct v4l2_input *vi)
525{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300526 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300527 int chan;
528
Roel Kluin223ffe52009-05-02 16:38:47 -0300529 if (vi->index >= usbvision->video_inputs)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300530 return -EINVAL;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300531 if (usbvision->have_tuner)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300532 chan = vi->index;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300533 else
Hans Verkuil52cb0bf2010-12-19 20:33:51 -0300534 chan = vi->index + 1; /* skip Television string*/
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300535
Thierry MERLEc5f48362007-05-08 17:22:29 -0300536 /* Determine the requested input characteristics
537 specific for each usbvision card model */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300538 switch (chan) {
Thierry MERLEc5f48362007-05-08 17:22:29 -0300539 case 0:
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300540 if (usbvision_device_data[usbvision->dev_model].video_channels == 4) {
Thierry MERLEc5f48362007-05-08 17:22:29 -0300541 strcpy(vi->name, "White Video Input");
542 } else {
543 strcpy(vi->name, "Television");
544 vi->type = V4L2_INPUT_TYPE_TUNER;
545 vi->audioset = 1;
546 vi->tuner = chan;
547 vi->std = USBVISION_NORMS;
548 }
549 break;
550 case 1:
551 vi->type = V4L2_INPUT_TYPE_CAMERA;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300552 if (usbvision_device_data[usbvision->dev_model].video_channels == 4)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300553 strcpy(vi->name, "Green Video Input");
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300554 else
Thierry MERLEc5f48362007-05-08 17:22:29 -0300555 strcpy(vi->name, "Composite Video Input");
Thierry MERLEc5f48362007-05-08 17:22:29 -0300556 vi->std = V4L2_STD_PAL;
557 break;
558 case 2:
559 vi->type = V4L2_INPUT_TYPE_CAMERA;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300560 if (usbvision_device_data[usbvision->dev_model].video_channels == 4)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300561 strcpy(vi->name, "Yellow Video Input");
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300562 else
Thierry MERLEc5f48362007-05-08 17:22:29 -0300563 strcpy(vi->name, "S-Video Input");
Thierry MERLEc5f48362007-05-08 17:22:29 -0300564 vi->std = V4L2_STD_PAL;
565 break;
566 case 3:
567 vi->type = V4L2_INPUT_TYPE_CAMERA;
568 strcpy(vi->name, "Red Video Input");
569 vi->std = V4L2_STD_PAL;
570 break;
571 }
572 return 0;
573}
574
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300575static int vidioc_g_input(struct file *file, void *priv, unsigned int *input)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300576{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300577 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300578
579 *input = usbvision->ctl_input;
580 return 0;
581}
582
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300583static int vidioc_s_input(struct file *file, void *priv, unsigned int input)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300584{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300585 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300586
Roel Kluinf14a2972009-10-23 07:59:42 -0300587 if (input >= usbvision->video_inputs)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300588 return -EINVAL;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300589
Thierry MERLE66a17872007-06-26 16:35:30 -0300590 usbvision_muxsel(usbvision, input);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300591 usbvision_set_input(usbvision);
592 usbvision_set_output(usbvision,
593 usbvision->curwidth,
594 usbvision->curheight);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300595 return 0;
596}
597
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300598static int vidioc_s_std(struct file *file, void *priv, v4l2_std_id *id)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300599{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300600 struct usb_usbvision *usbvision = video_drvdata(file);
601
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300602 usbvision->tvnorm_id = *id;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300603
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300604 call_all(usbvision, core, s_std, usbvision->tvnorm_id);
Thierry MERLE66a17872007-06-26 16:35:30 -0300605 /* propagate the change to the decoder */
606 usbvision_muxsel(usbvision, usbvision->ctl_input);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300607
608 return 0;
609}
610
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300611static int vidioc_g_tuner(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300612 struct v4l2_tuner *vt)
613{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300614 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300615
Hans Verkuil52cb0bf2010-12-19 20:33:51 -0300616 if (!usbvision->have_tuner || vt->index) /* Only tuner 0 */
Thierry MERLEc5f48362007-05-08 17:22:29 -0300617 return -EINVAL;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300618 if (usbvision->radio) {
Thierry MERLEc5f48362007-05-08 17:22:29 -0300619 strcpy(vt->name, "Radio");
620 vt->type = V4L2_TUNER_RADIO;
621 } else {
622 strcpy(vt->name, "Television");
623 }
624 /* Let clients fill in the remainder of this struct */
Hans Verkuil1df79532009-02-21 18:11:31 -0300625 call_all(usbvision, tuner, g_tuner, vt);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300626
627 return 0;
628}
629
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300630static int vidioc_s_tuner(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300631 struct v4l2_tuner *vt)
632{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300633 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300634
Hans Verkuil52cb0bf2010-12-19 20:33:51 -0300635 /* Only no or one tuner for now */
Thierry MERLEc5f48362007-05-08 17:22:29 -0300636 if (!usbvision->have_tuner || vt->index)
637 return -EINVAL;
638 /* let clients handle this */
Hans Verkuil1df79532009-02-21 18:11:31 -0300639 call_all(usbvision, tuner, s_tuner, vt);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300640
641 return 0;
642}
643
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300644static int vidioc_g_frequency(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300645 struct v4l2_frequency *freq)
646{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300647 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300648
Hans Verkuil52cb0bf2010-12-19 20:33:51 -0300649 freq->tuner = 0; /* Only one tuner */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300650 if (usbvision->radio)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300651 freq->type = V4L2_TUNER_RADIO;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300652 else
Thierry MERLEc5f48362007-05-08 17:22:29 -0300653 freq->type = V4L2_TUNER_ANALOG_TV;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300654 freq->frequency = usbvision->freq;
655
656 return 0;
657}
658
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300659static int vidioc_s_frequency(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300660 struct v4l2_frequency *freq)
661{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300662 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300663
Hans Verkuil52cb0bf2010-12-19 20:33:51 -0300664 /* Only no or one tuner for now */
Thierry MERLEc5f48362007-05-08 17:22:29 -0300665 if (!usbvision->have_tuner || freq->tuner)
666 return -EINVAL;
667
668 usbvision->freq = freq->frequency;
Hans Verkuil1df79532009-02-21 18:11:31 -0300669 call_all(usbvision, tuner, s_frequency, freq);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300670
671 return 0;
672}
673
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300674static int vidioc_g_audio(struct file *file, void *priv, struct v4l2_audio *a)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300675{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300676 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300677
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300678 if (usbvision->radio)
679 strcpy(a->name, "Radio");
680 else
Thierry MERLEc5f48362007-05-08 17:22:29 -0300681 strcpy(a->name, "TV");
Thierry MERLEc5f48362007-05-08 17:22:29 -0300682
683 return 0;
684}
685
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300686static int vidioc_s_audio(struct file *file, void *fh,
Hans Verkuil0e8025b92012-09-04 11:59:31 -0300687 const struct v4l2_audio *a)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300688{
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300689 if (a->index)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300690 return -EINVAL;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300691 return 0;
692}
693
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300694static int vidioc_queryctrl(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300695 struct v4l2_queryctrl *ctrl)
696{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300697 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300698
Hans Verkuil1df79532009-02-21 18:11:31 -0300699 call_all(usbvision, core, queryctrl, ctrl);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300700
701 if (!ctrl->type)
702 return -EINVAL;
703
704 return 0;
705}
706
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300707static int vidioc_g_ctrl(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300708 struct v4l2_control *ctrl)
709{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300710 struct usb_usbvision *usbvision = video_drvdata(file);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300711
Hans Verkuil1df79532009-02-21 18:11:31 -0300712 call_all(usbvision, core, g_ctrl, ctrl);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300713 return 0;
714}
715
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300716static int vidioc_s_ctrl(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300717 struct v4l2_control *ctrl)
718{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300719 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300720
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300721 call_all(usbvision, core, s_ctrl, ctrl);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300722 return 0;
723}
724
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300725static int vidioc_reqbufs(struct file *file,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300726 void *priv, struct v4l2_requestbuffers *vr)
727{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300728 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300729 int ret;
730
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300731 RESTRICT_TO_RANGE(vr->count, 1, USBVISION_NUMFRAMES);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300732
733 /* Check input validity:
734 the user must do a VIDEO CAPTURE and MMAP method. */
Trent Piepho975f5762009-03-28 22:25:36 -0300735 if (vr->memory != V4L2_MEMORY_MMAP)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300736 return -EINVAL;
737
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300738 if (usbvision->streaming == stream_on) {
739 ret = usbvision_stream_interrupt(usbvision);
740 if (ret)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300741 return ret;
742 }
743
744 usbvision_frames_free(usbvision);
745 usbvision_empty_framequeues(usbvision);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300746 vr->count = usbvision_frames_alloc(usbvision, vr->count);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300747
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300748 usbvision->cur_frame = NULL;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300749
750 return 0;
751}
752
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300753static int vidioc_querybuf(struct file *file,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300754 void *priv, struct v4l2_buffer *vb)
755{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300756 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300757 struct usbvision_frame *frame;
758
759 /* FIXME : must control
760 that buffers are mapped (VIDIOC_REQBUFS has been called) */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300761 if (vb->index >= usbvision->num_frames)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300762 return -EINVAL;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300763 /* Updating the corresponding frame state */
764 vb->flags = 0;
765 frame = &usbvision->frame[vb->index];
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300766 if (frame->grabstate >= frame_state_ready)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300767 vb->flags |= V4L2_BUF_FLAG_QUEUED;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300768 if (frame->grabstate >= frame_state_done)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300769 vb->flags |= V4L2_BUF_FLAG_DONE;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300770 if (frame->grabstate == frame_state_unused)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300771 vb->flags |= V4L2_BUF_FLAG_MAPPED;
772 vb->memory = V4L2_MEMORY_MMAP;
773
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300774 vb->m.offset = vb->index * PAGE_ALIGN(usbvision->max_frame_size);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300775
776 vb->memory = V4L2_MEMORY_MMAP;
777 vb->field = V4L2_FIELD_NONE;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300778 vb->length = usbvision->curwidth *
779 usbvision->curheight *
Thierry MERLEc5f48362007-05-08 17:22:29 -0300780 usbvision->palette.bytes_per_pixel;
781 vb->timestamp = usbvision->frame[vb->index].timestamp;
782 vb->sequence = usbvision->frame[vb->index].sequence;
783 return 0;
784}
785
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300786static int vidioc_qbuf(struct file *file, void *priv, struct v4l2_buffer *vb)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300787{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300788 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300789 struct usbvision_frame *frame;
790 unsigned long lock_flags;
791
792 /* FIXME : works only on VIDEO_CAPTURE MODE, MMAP. */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300793 if (vb->index >= usbvision->num_frames)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300794 return -EINVAL;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300795
796 frame = &usbvision->frame[vb->index];
797
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300798 if (frame->grabstate != frame_state_unused)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300799 return -EAGAIN;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300800
801 /* Mark it as ready and enqueue frame */
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300802 frame->grabstate = frame_state_ready;
803 frame->scanstate = scan_state_scanning;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300804 frame->scanlength = 0; /* Accumulated in usbvision_parse_data() */
805
806 vb->flags &= ~V4L2_BUF_FLAG_DONE;
807
808 /* set v4l2_format index */
809 frame->v4l2_format = usbvision->palette;
810
811 spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
812 list_add_tail(&usbvision->frame[vb->index].frame, &usbvision->inqueue);
813 spin_unlock_irqrestore(&usbvision->queue_lock, lock_flags);
814
815 return 0;
816}
817
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300818static int vidioc_dqbuf(struct file *file, void *priv, struct v4l2_buffer *vb)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300819{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300820 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300821 int ret;
822 struct usbvision_frame *f;
823 unsigned long lock_flags;
824
Thierry MERLEc5f48362007-05-08 17:22:29 -0300825 if (list_empty(&(usbvision->outqueue))) {
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300826 if (usbvision->streaming == stream_idle)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300827 return -EINVAL;
828 ret = wait_event_interruptible
829 (usbvision->wait_frame,
830 !list_empty(&(usbvision->outqueue)));
831 if (ret)
832 return ret;
833 }
834
835 spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
836 f = list_entry(usbvision->outqueue.next,
837 struct usbvision_frame, frame);
838 list_del(usbvision->outqueue.next);
839 spin_unlock_irqrestore(&usbvision->queue_lock, lock_flags);
840
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300841 f->grabstate = frame_state_unused;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300842
843 vb->memory = V4L2_MEMORY_MMAP;
844 vb->flags = V4L2_BUF_FLAG_MAPPED |
845 V4L2_BUF_FLAG_QUEUED |
846 V4L2_BUF_FLAG_DONE;
847 vb->index = f->index;
848 vb->sequence = f->sequence;
849 vb->timestamp = f->timestamp;
850 vb->field = V4L2_FIELD_NONE;
851 vb->bytesused = f->scanlength;
852
853 return 0;
854}
855
856static int vidioc_streamon(struct file *file, void *priv, enum v4l2_buf_type i)
857{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300858 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300859
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300860 usbvision->streaming = stream_on;
Hans Verkuil1df79532009-02-21 18:11:31 -0300861 call_all(usbvision, video, s_stream, 1);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300862
863 return 0;
864}
865
866static int vidioc_streamoff(struct file *file,
867 void *priv, enum v4l2_buf_type type)
868{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300869 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300870
871 if (type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
872 return -EINVAL;
873
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300874 if (usbvision->streaming == stream_on) {
Thierry MERLEc5f48362007-05-08 17:22:29 -0300875 usbvision_stream_interrupt(usbvision);
876 /* Stop all video streamings */
Hans Verkuil1df79532009-02-21 18:11:31 -0300877 call_all(usbvision, video, s_stream, 0);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300878 }
879 usbvision_empty_framequeues(usbvision);
880
881 return 0;
882}
883
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300884static int vidioc_enum_fmt_vid_cap(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300885 struct v4l2_fmtdesc *vfd)
886{
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300887 if (vfd->index >= USBVISION_SUPPORTED_PALETTES - 1)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300888 return -EINVAL;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300889 strcpy(vfd->description, usbvision_v4l2_format[vfd->index].desc);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300890 vfd->pixelformat = usbvision_v4l2_format[vfd->index].format;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300891 return 0;
892}
893
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300894static int vidioc_g_fmt_vid_cap(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300895 struct v4l2_format *vf)
896{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300897 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300898 vf->fmt.pix.width = usbvision->curwidth;
899 vf->fmt.pix.height = usbvision->curheight;
900 vf->fmt.pix.pixelformat = usbvision->palette.format;
901 vf->fmt.pix.bytesperline =
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300902 usbvision->curwidth * usbvision->palette.bytes_per_pixel;
903 vf->fmt.pix.sizeimage = vf->fmt.pix.bytesperline * usbvision->curheight;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300904 vf->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
905 vf->fmt.pix.field = V4L2_FIELD_NONE; /* Always progressive image */
906
907 return 0;
908}
909
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300910static int vidioc_try_fmt_vid_cap(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300911 struct v4l2_format *vf)
912{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300913 struct usb_usbvision *usbvision = video_drvdata(file);
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300914 int format_idx;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300915
916 /* Find requested format in available ones */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300917 for (format_idx = 0; format_idx < USBVISION_SUPPORTED_PALETTES; format_idx++) {
918 if (vf->fmt.pix.pixelformat ==
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300919 usbvision_v4l2_format[format_idx].format) {
920 usbvision->palette = usbvision_v4l2_format[format_idx];
Thierry MERLEc5f48362007-05-08 17:22:29 -0300921 break;
922 }
923 }
924 /* robustness */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300925 if (format_idx == USBVISION_SUPPORTED_PALETTES)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300926 return -EINVAL;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300927 RESTRICT_TO_RANGE(vf->fmt.pix.width, MIN_FRAME_WIDTH, MAX_FRAME_WIDTH);
928 RESTRICT_TO_RANGE(vf->fmt.pix.height, MIN_FRAME_HEIGHT, MAX_FRAME_HEIGHT);
929
930 vf->fmt.pix.bytesperline = vf->fmt.pix.width*
931 usbvision->palette.bytes_per_pixel;
932 vf->fmt.pix.sizeimage = vf->fmt.pix.bytesperline*vf->fmt.pix.height;
933
934 return 0;
935}
936
Hans Verkuil78b526a2008-05-28 12:16:41 -0300937static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300938 struct v4l2_format *vf)
939{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300940 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300941 int ret;
942
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300943 ret = vidioc_try_fmt_vid_cap(file, priv, vf);
944 if (ret)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300945 return ret;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300946
947 /* stop io in case it is already in progress */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300948 if (usbvision->streaming == stream_on) {
949 ret = usbvision_stream_interrupt(usbvision);
950 if (ret)
Thierry MERLEc5f48362007-05-08 17:22:29 -0300951 return ret;
952 }
953 usbvision_frames_free(usbvision);
954 usbvision_empty_framequeues(usbvision);
955
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300956 usbvision->cur_frame = NULL;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300957
958 /* by now we are committed to the new data... */
Thierry MERLEc5f48362007-05-08 17:22:29 -0300959 usbvision_set_output(usbvision, vf->fmt.pix.width, vf->fmt.pix.height);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300960
961 return 0;
962}
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300963
Hans Verkuil4d345702012-06-23 08:03:50 -0300964static ssize_t usbvision_read(struct file *file, char __user *buf,
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300965 size_t count, loff_t *ppos)
966{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300967 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300968 int noblock = file->f_flags & O_NONBLOCK;
969 unsigned long lock_flags;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300970 int ret, i;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300971 struct usbvision_frame *frame;
972
Harvey Harrisond2db42d2008-04-04 20:50:07 -0300973 PDEBUG(DBG_IO, "%s: %ld bytes, noblock=%d", __func__,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300974 (unsigned long)count, noblock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300975
976 if (!USBVISION_IS_OPERATIONAL(usbvision) || (buf == NULL))
977 return -EFAULT;
978
Thierry MERLEc5f48362007-05-08 17:22:29 -0300979 /* This entry point is compatible with the mmap routines
980 so that a user can do either VIDIOC_QBUF/VIDIOC_DQBUF
981 to get frames or call read on the device. */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300982 if (!usbvision->num_frames) {
Thierry MERLEc5f48362007-05-08 17:22:29 -0300983 /* First, allocate some frames to work with
984 if this has not been done with VIDIOC_REQBUF */
Thierry MERLE6f78e182007-02-07 10:13:11 -0300985 usbvision_frames_free(usbvision);
986 usbvision_empty_framequeues(usbvision);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300987 usbvision_frames_alloc(usbvision, USBVISION_NUMFRAMES);
Thierry MERLE6f78e182007-02-07 10:13:11 -0300988 }
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300989
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300990 if (usbvision->streaming != stream_on) {
Thierry MERLE6f78e182007-02-07 10:13:11 -0300991 /* no stream is running, make it running ! */
Hans Verkuil5490a7c2010-12-19 20:21:36 -0300992 usbvision->streaming = stream_on;
Hans Verkuil1df79532009-02-21 18:11:31 -0300993 call_all(usbvision, video, s_stream, 1);
Thierry MERLE6f78e182007-02-07 10:13:11 -0300994 }
995
Thierry MERLEc5f48362007-05-08 17:22:29 -0300996 /* Then, enqueue as many frames as possible
997 (like a user of VIDIOC_QBUF would do) */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -0300998 for (i = 0; i < usbvision->num_frames; i++) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300999 frame = &usbvision->frame[i];
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001000 if (frame->grabstate == frame_state_unused) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001001 /* Mark it as ready and enqueue frame */
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001002 frame->grabstate = frame_state_ready;
1003 frame->scanstate = scan_state_scanning;
Thierry MERLEc5f48362007-05-08 17:22:29 -03001004 /* Accumulated in usbvision_parse_data() */
1005 frame->scanlength = 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001006
1007 /* set v4l2_format index */
1008 frame->v4l2_format = usbvision->palette;
1009
1010 spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
1011 list_add_tail(&frame->frame, &usbvision->inqueue);
Thierry MERLEc5f48362007-05-08 17:22:29 -03001012 spin_unlock_irqrestore(&usbvision->queue_lock,
1013 lock_flags);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001014 }
1015 }
1016
1017 /* Then try to steal a frame (like a VIDIOC_DQBUF would do) */
1018 if (list_empty(&(usbvision->outqueue))) {
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001019 if (noblock)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001020 return -EAGAIN;
1021
1022 ret = wait_event_interruptible
1023 (usbvision->wait_frame,
1024 !list_empty(&(usbvision->outqueue)));
1025 if (ret)
1026 return ret;
1027 }
1028
1029 spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
1030 frame = list_entry(usbvision->outqueue.next,
1031 struct usbvision_frame, frame);
1032 list_del(usbvision->outqueue.next);
1033 spin_unlock_irqrestore(&usbvision->queue_lock, lock_flags);
1034
1035 /* An error returns an empty frame */
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001036 if (frame->grabstate == frame_state_error) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001037 frame->bytes_read = 0;
1038 return 0;
1039 }
1040
Thierry MERLEc5f48362007-05-08 17:22:29 -03001041 PDEBUG(DBG_IO, "%s: frmx=%d, bytes_read=%ld, scanlength=%ld",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001042 __func__,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001043 frame->index, frame->bytes_read, frame->scanlength);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001044
1045 /* copy bytes to user space; we allow for partials reads */
1046 if ((count + frame->bytes_read) > (unsigned long)frame->scanlength)
1047 count = frame->scanlength - frame->bytes_read;
1048
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001049 if (copy_to_user(buf, frame->data + frame->bytes_read, count))
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001050 return -EFAULT;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001051
1052 frame->bytes_read += count;
Thierry MERLEc5f48362007-05-08 17:22:29 -03001053 PDEBUG(DBG_IO, "%s: {copy} count used=%ld, new bytes_read=%ld",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001054 __func__,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001055 (unsigned long)count, frame->bytes_read);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001056
Thierry MERLEc5f48362007-05-08 17:22:29 -03001057 /* For now, forget the frame if it has not been read in one shot. */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001058/* if (frame->bytes_read >= frame->scanlength) {*/ /* All data has been read */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001059 frame->bytes_read = 0;
1060
1061 /* Mark it as available to be used again. */
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001062 frame->grabstate = frame_state_unused;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001063/* } */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001064
1065 return count;
1066}
1067
Hans Verkuil4d345702012-06-23 08:03:50 -03001068static ssize_t usbvision_v4l2_read(struct file *file, char __user *buf,
1069 size_t count, loff_t *ppos)
1070{
1071 struct usb_usbvision *usbvision = video_drvdata(file);
1072 int res;
1073
1074 if (mutex_lock_interruptible(&usbvision->v4l2_lock))
1075 return -ERESTARTSYS;
1076 res = usbvision_read(file, buf, count, ppos);
1077 mutex_unlock(&usbvision->v4l2_lock);
1078 return res;
1079}
1080
1081static int usbvision_mmap(struct file *file, struct vm_area_struct *vma)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001082{
1083 unsigned long size = vma->vm_end - vma->vm_start,
1084 start = vma->vm_start;
1085 void *pos;
1086 u32 i;
Hans Verkuilc170ecf2008-08-23 08:32:09 -03001087 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001088
Thierry MERLE6f78e182007-02-07 10:13:11 -03001089 PDEBUG(DBG_MMAP, "mmap");
1090
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001091 if (!USBVISION_IS_OPERATIONAL(usbvision))
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001092 return -EFAULT;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001093
1094 if (!(vma->vm_flags & VM_WRITE) ||
Thierry MERLE6f78e182007-02-07 10:13:11 -03001095 size != PAGE_ALIGN(usbvision->max_frame_size)) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001096 return -EINVAL;
1097 }
1098
Thierry MERLE6f78e182007-02-07 10:13:11 -03001099 for (i = 0; i < usbvision->num_frames; i++) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001100 if (((PAGE_ALIGN(usbvision->max_frame_size)*i) >> PAGE_SHIFT) ==
1101 vma->vm_pgoff)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001102 break;
1103 }
Thierry MERLE6f78e182007-02-07 10:13:11 -03001104 if (i == usbvision->num_frames) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001105 PDEBUG(DBG_MMAP,
1106 "mmap: user supplied mapping address is out of range");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001107 return -EINVAL;
1108 }
1109
1110 /* VM_IO is eventually going to replace PageReserved altogether */
Konstantin Khlebnikov314e51b2012-10-08 16:29:02 -07001111 vma->vm_flags |= VM_IO | VM_DONTEXPAND | VM_DONTDUMP;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001112
1113 pos = usbvision->frame[i].data;
1114 while (size > 0) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001115 if (vm_insert_page(vma, start, vmalloc_to_page(pos))) {
Thierry MERLEc876a342006-12-09 16:42:54 -03001116 PDEBUG(DBG_MMAP, "mmap: vm_insert_page failed");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001117 return -EAGAIN;
1118 }
1119 start += PAGE_SIZE;
1120 pos += PAGE_SIZE;
1121 size -= PAGE_SIZE;
1122 }
1123
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001124 return 0;
1125}
1126
Hans Verkuil4d345702012-06-23 08:03:50 -03001127static int usbvision_v4l2_mmap(struct file *file, struct vm_area_struct *vma)
1128{
1129 struct usb_usbvision *usbvision = video_drvdata(file);
1130 int res;
1131
1132 if (mutex_lock_interruptible(&usbvision->v4l2_lock))
1133 return -ERESTARTSYS;
1134 res = usbvision_mmap(file, vma);
1135 mutex_unlock(&usbvision->v4l2_lock);
1136 return res;
1137}
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001138
1139/*
1140 * Here comes the stuff for radio on usbvision based devices
1141 *
1142 */
Hans Verkuilbec43662008-12-30 06:58:20 -03001143static int usbvision_radio_open(struct file *file)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001144{
Hans Verkuilc170ecf2008-08-23 08:32:09 -03001145 struct usb_usbvision *usbvision = video_drvdata(file);
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001146 int err_code = 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001147
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001148 PDEBUG(DBG_IO, "%s:", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001149
Hans Verkuil4d345702012-06-23 08:03:50 -03001150 if (mutex_lock_interruptible(&usbvision->v4l2_lock))
1151 return -ERESTARTSYS;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001152 if (usbvision->user) {
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001153 dev_err(&usbvision->rdev->dev,
1154 "%s: Someone tried to open an already opened USBVision Radio!\n",
1155 __func__);
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001156 err_code = -EBUSY;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001157 } else {
1158 if (power_on_at_open) {
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001159 usbvision_reset_power_off_timer(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001160 if (usbvision->power == 0) {
1161 usbvision_power_on(usbvision);
Thierry MERLE1ff16c22007-04-14 16:23:49 -03001162 usbvision_i2c_register(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001163 }
1164 }
1165
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001166 /* Alternate interface 1 is is the biggest frame size */
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001167 err_code = usbvision_set_alternate(usbvision);
1168 if (err_code < 0) {
1169 usbvision->last_error = err_code;
1170 err_code = -EBUSY;
Andrew Morton544e6172007-12-12 18:25:23 -03001171 goto out;
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001172 }
1173
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001174 /* If so far no errors then we shall start the radio */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001175 usbvision->radio = 1;
Hans Verkuil1df79532009-02-21 18:11:31 -03001176 call_all(usbvision, tuner, s_radio);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001177 usbvision_set_audio(usbvision, USBVISION_AUDIO_RADIO);
1178 usbvision->user++;
1179 }
1180
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001181 if (err_code) {
1182 if (power_on_at_open) {
Thierry MERLE1ff16c22007-04-14 16:23:49 -03001183 usbvision_i2c_unregister(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001184 usbvision_power_off(usbvision);
1185 usbvision->initialized = 0;
1186 }
1187 }
Andrew Morton544e6172007-12-12 18:25:23 -03001188out:
Hans Verkuil4d345702012-06-23 08:03:50 -03001189 mutex_unlock(&usbvision->v4l2_lock);
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001190 return err_code;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001191}
1192
1193
Hans Verkuilbec43662008-12-30 06:58:20 -03001194static int usbvision_radio_close(struct file *file)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001195{
Hans Verkuilc170ecf2008-08-23 08:32:09 -03001196 struct usb_usbvision *usbvision = video_drvdata(file);
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001197 int err_code = 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001198
1199 PDEBUG(DBG_IO, "");
1200
Hans Verkuil4d345702012-06-23 08:03:50 -03001201 mutex_lock(&usbvision->v4l2_lock);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001202 /* Set packet size to 0 */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001203 usbvision->iface_alt = 0;
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001204 err_code = usb_set_interface(usbvision->dev, usbvision->iface,
1205 usbvision->iface_alt);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001206
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001207 usbvision_audio_off(usbvision);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001208 usbvision->radio = 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001209 usbvision->user--;
1210
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001211 if (power_on_at_open) {
1212 usbvision_set_power_off_timer(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001213 usbvision->initialized = 0;
1214 }
1215
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001216 if (usbvision->remove_pending) {
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001217 printk(KERN_INFO "%s: Final disconnect\n", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001218 usbvision_release(usbvision);
1219 }
1220
Hans Verkuil4d345702012-06-23 08:03:50 -03001221 mutex_unlock(&usbvision->v4l2_lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001222 PDEBUG(DBG_IO, "success");
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001223 return err_code;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001224}
1225
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001226/* Video registration stuff */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001227
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001228/* Video template */
Hans Verkuilbec43662008-12-30 06:58:20 -03001229static const struct v4l2_file_operations usbvision_fops = {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001230 .owner = THIS_MODULE,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001231 .open = usbvision_v4l2_open,
1232 .release = usbvision_v4l2_close,
1233 .read = usbvision_v4l2_read,
1234 .mmap = usbvision_v4l2_mmap,
Hans Verkuilc627b9d2010-12-18 11:06:09 -03001235 .unlocked_ioctl = video_ioctl2,
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001236/* .poll = video_poll, */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001237};
Hans Verkuila3998102008-07-21 02:57:38 -03001238
1239static const struct v4l2_ioctl_ops usbvision_ioctl_ops = {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001240 .vidioc_querycap = vidioc_querycap,
Hans Verkuil78b526a2008-05-28 12:16:41 -03001241 .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap,
1242 .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap,
1243 .vidioc_try_fmt_vid_cap = vidioc_try_fmt_vid_cap,
1244 .vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001245 .vidioc_reqbufs = vidioc_reqbufs,
1246 .vidioc_querybuf = vidioc_querybuf,
1247 .vidioc_qbuf = vidioc_qbuf,
1248 .vidioc_dqbuf = vidioc_dqbuf,
1249 .vidioc_s_std = vidioc_s_std,
1250 .vidioc_enum_input = vidioc_enum_input,
1251 .vidioc_g_input = vidioc_g_input,
1252 .vidioc_s_input = vidioc_s_input,
1253 .vidioc_queryctrl = vidioc_queryctrl,
1254 .vidioc_g_audio = vidioc_g_audio,
Al Viroed4d6372007-09-26 01:53:42 +01001255 .vidioc_s_audio = vidioc_s_audio,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001256 .vidioc_g_ctrl = vidioc_g_ctrl,
1257 .vidioc_s_ctrl = vidioc_s_ctrl,
1258 .vidioc_streamon = vidioc_streamon,
1259 .vidioc_streamoff = vidioc_streamoff,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001260 .vidioc_g_tuner = vidioc_g_tuner,
1261 .vidioc_s_tuner = vidioc_s_tuner,
1262 .vidioc_g_frequency = vidioc_g_frequency,
1263 .vidioc_s_frequency = vidioc_s_frequency,
1264#ifdef CONFIG_VIDEO_ADV_DEBUG
1265 .vidioc_g_register = vidioc_g_register,
1266 .vidioc_s_register = vidioc_s_register,
1267#endif
Hans Verkuila3998102008-07-21 02:57:38 -03001268};
1269
1270static struct video_device usbvision_video_template = {
Hans Verkuila3998102008-07-21 02:57:38 -03001271 .fops = &usbvision_fops,
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001272 .ioctl_ops = &usbvision_ioctl_ops,
Hans Verkuila3998102008-07-21 02:57:38 -03001273 .name = "usbvision-video",
1274 .release = video_device_release,
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001275 .tvnorms = USBVISION_NORMS,
1276 .current_norm = V4L2_STD_PAL
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001277};
1278
1279
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001280/* Radio template */
Hans Verkuilbec43662008-12-30 06:58:20 -03001281static const struct v4l2_file_operations usbvision_radio_fops = {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001282 .owner = THIS_MODULE,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001283 .open = usbvision_radio_open,
1284 .release = usbvision_radio_close,
Hans Verkuilc627b9d2010-12-18 11:06:09 -03001285 .unlocked_ioctl = video_ioctl2,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001286};
1287
Hans Verkuila3998102008-07-21 02:57:38 -03001288static const struct v4l2_ioctl_ops usbvision_radio_ioctl_ops = {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001289 .vidioc_querycap = vidioc_querycap,
1290 .vidioc_enum_input = vidioc_enum_input,
1291 .vidioc_g_input = vidioc_g_input,
1292 .vidioc_s_input = vidioc_s_input,
1293 .vidioc_queryctrl = vidioc_queryctrl,
1294 .vidioc_g_audio = vidioc_g_audio,
Al Viroed4d6372007-09-26 01:53:42 +01001295 .vidioc_s_audio = vidioc_s_audio,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001296 .vidioc_g_ctrl = vidioc_g_ctrl,
1297 .vidioc_s_ctrl = vidioc_s_ctrl,
1298 .vidioc_g_tuner = vidioc_g_tuner,
1299 .vidioc_s_tuner = vidioc_s_tuner,
1300 .vidioc_g_frequency = vidioc_g_frequency,
1301 .vidioc_s_frequency = vidioc_s_frequency,
Hans Verkuila3998102008-07-21 02:57:38 -03001302};
1303
1304static struct video_device usbvision_radio_template = {
Hans Verkuila3998102008-07-21 02:57:38 -03001305 .fops = &usbvision_radio_fops,
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001306 .name = "usbvision-radio",
Hans Verkuila3998102008-07-21 02:57:38 -03001307 .release = video_device_release,
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001308 .ioctl_ops = &usbvision_radio_ioctl_ops,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001309
Thierry MERLEc5f48362007-05-08 17:22:29 -03001310 .tvnorms = USBVISION_NORMS,
1311 .current_norm = V4L2_STD_PAL
1312};
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001313
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001314
1315static struct video_device *usbvision_vdev_init(struct usb_usbvision *usbvision,
1316 struct video_device *vdev_template,
1317 char *name)
1318{
1319 struct usb_device *usb_dev = usbvision->dev;
1320 struct video_device *vdev;
1321
1322 if (usb_dev == NULL) {
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001323 dev_err(&usbvision->dev->dev,
1324 "%s: usbvision->dev is not set\n", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001325 return NULL;
1326 }
1327
1328 vdev = video_device_alloc();
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001329 if (NULL == vdev)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001330 return NULL;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001331 *vdev = *vdev_template;
Hans Verkuilc627b9d2010-12-18 11:06:09 -03001332 vdev->lock = &usbvision->v4l2_lock;
Hans Verkuil1df79532009-02-21 18:11:31 -03001333 vdev->v4l2_dev = &usbvision->v4l2_dev;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001334 snprintf(vdev->name, sizeof(vdev->name), "%s", name);
1335 video_set_drvdata(vdev, usbvision);
1336 return vdev;
1337}
1338
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001339/* unregister video4linux devices */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001340static void usbvision_unregister_video(struct usb_usbvision *usbvision)
1341{
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001342 /* Radio Device: */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001343 if (usbvision->rdev) {
Laurent Pinchart38c7c032009-11-27 13:57:15 -03001344 PDEBUG(DBG_PROBE, "unregister %s [v4l2]",
1345 video_device_node_name(usbvision->rdev));
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001346 if (video_is_registered(usbvision->rdev))
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001347 video_unregister_device(usbvision->rdev);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001348 else
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001349 video_device_release(usbvision->rdev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001350 usbvision->rdev = NULL;
1351 }
1352
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001353 /* Video Device: */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001354 if (usbvision->vdev) {
Laurent Pinchart38c7c032009-11-27 13:57:15 -03001355 PDEBUG(DBG_PROBE, "unregister %s [v4l2]",
1356 video_device_node_name(usbvision->vdev));
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001357 if (video_is_registered(usbvision->vdev))
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001358 video_unregister_device(usbvision->vdev);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001359 else
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001360 video_device_release(usbvision->vdev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001361 usbvision->vdev = NULL;
1362 }
1363}
1364
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001365/* register video4linux devices */
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08001366static int usbvision_register_video(struct usb_usbvision *usbvision)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001367{
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001368 /* Video Device: */
Thierry MERLEc5f48362007-05-08 17:22:29 -03001369 usbvision->vdev = usbvision_vdev_init(usbvision,
1370 &usbvision_video_template,
1371 "USBVision Video");
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001372 if (usbvision->vdev == NULL)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001373 goto err_exit;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001374 if (video_register_device(usbvision->vdev, VFL_TYPE_GRABBER, video_nr) < 0)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001375 goto err_exit;
Laurent Pinchart38c7c032009-11-27 13:57:15 -03001376 printk(KERN_INFO "USBVision[%d]: registered USBVision Video device %s [v4l2]\n",
1377 usbvision->nr, video_device_node_name(usbvision->vdev));
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001378
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001379 /* Radio Device: */
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001380 if (usbvision_device_data[usbvision->dev_model].radio) {
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001381 /* usbvision has radio */
Thierry MERLEc5f48362007-05-08 17:22:29 -03001382 usbvision->rdev = usbvision_vdev_init(usbvision,
1383 &usbvision_radio_template,
1384 "USBVision Radio");
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001385 if (usbvision->rdev == NULL)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001386 goto err_exit;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001387 if (video_register_device(usbvision->rdev, VFL_TYPE_RADIO, radio_nr) < 0)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001388 goto err_exit;
Laurent Pinchart38c7c032009-11-27 13:57:15 -03001389 printk(KERN_INFO "USBVision[%d]: registered USBVision Radio device %s [v4l2]\n",
1390 usbvision->nr, video_device_node_name(usbvision->rdev));
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001391 }
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001392 /* all done */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001393 return 0;
1394
1395 err_exit:
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001396 dev_err(&usbvision->dev->dev,
1397 "USBVision[%d]: video_register_device() failed\n",
1398 usbvision->nr);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001399 usbvision_unregister_video(usbvision);
1400 return -1;
1401}
1402
1403/*
1404 * usbvision_alloc()
1405 *
Thierry MERLEc5f48362007-05-08 17:22:29 -03001406 * This code allocates the struct usb_usbvision.
1407 * It is filled with default values.
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001408 *
1409 * Returns NULL on error, a pointer to usb_usbvision else.
1410 *
1411 */
Janne Grunaua8784402009-04-01 08:46:00 -03001412static struct usb_usbvision *usbvision_alloc(struct usb_device *dev,
1413 struct usb_interface *intf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001414{
1415 struct usb_usbvision *usbvision;
1416
Hans Verkuil1df79532009-02-21 18:11:31 -03001417 usbvision = kzalloc(sizeof(struct usb_usbvision), GFP_KERNEL);
1418 if (usbvision == NULL)
1419 return NULL;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001420
1421 usbvision->dev = dev;
Janne Grunaua8784402009-04-01 08:46:00 -03001422 if (v4l2_device_register(&intf->dev, &usbvision->v4l2_dev))
Hans Verkuil1df79532009-02-21 18:11:31 -03001423 goto err_free;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001424
Hans Verkuilc627b9d2010-12-18 11:06:09 -03001425 mutex_init(&usbvision->v4l2_lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001426
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001427 /* prepare control urb for control messages during interrupts */
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001428 usbvision->ctrl_urb = usb_alloc_urb(USBVISION_URB_FRAMES, GFP_KERNEL);
1429 if (usbvision->ctrl_urb == NULL)
Hans Verkuil1df79532009-02-21 18:11:31 -03001430 goto err_unreg;
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001431 init_waitqueue_head(&usbvision->ctrl_urb_wq);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001432
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001433 usbvision_init_power_off_timer(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001434
1435 return usbvision;
1436
Hans Verkuil1df79532009-02-21 18:11:31 -03001437err_unreg:
1438 v4l2_device_unregister(&usbvision->v4l2_dev);
1439err_free:
1440 kfree(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001441 return NULL;
1442}
1443
1444/*
1445 * usbvision_release()
1446 *
1447 * This code does final release of struct usb_usbvision. This happens
1448 * after the device is disconnected -and- all clients closed their files.
1449 *
1450 */
1451static void usbvision_release(struct usb_usbvision *usbvision)
1452{
1453 PDEBUG(DBG_PROBE, "");
1454
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001455 usbvision_reset_power_off_timer(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001456
1457 usbvision->initialized = 0;
1458
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001459 usbvision_remove_sysfs(usbvision->vdev);
1460 usbvision_unregister_video(usbvision);
1461
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001462 usb_free_urb(usbvision->ctrl_urb);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001463
Hans Verkuil1df79532009-02-21 18:11:31 -03001464 v4l2_device_unregister(&usbvision->v4l2_dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001465 kfree(usbvision);
1466
1467 PDEBUG(DBG_PROBE, "success");
1468}
1469
1470
Thierry MERLEc5f48362007-05-08 17:22:29 -03001471/*********************** usb interface **********************************/
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001472
1473static void usbvision_configure_video(struct usb_usbvision *usbvision)
1474{
Thierry MERLEc5f48362007-05-08 17:22:29 -03001475 int model;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001476
1477 if (usbvision == NULL)
1478 return;
1479
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001480 model = usbvision->dev_model;
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001481 usbvision->palette = usbvision_v4l2_format[2]; /* V4L2_PIX_FMT_RGB24; */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001482
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001483 if (usbvision_device_data[usbvision->dev_model].vin_reg2_override) {
1484 usbvision->vin_reg2_preset =
1485 usbvision_device_data[usbvision->dev_model].vin_reg2;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001486 } else {
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001487 usbvision->vin_reg2_preset = 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001488 }
1489
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001490 usbvision->tvnorm_id = usbvision_device_data[model].video_norm;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001491
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001492 usbvision->video_inputs = usbvision_device_data[model].video_channels;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001493 usbvision->ctl_input = 0;
1494
1495 /* This should be here to make i2c clients to be able to register */
Thierry MERLEc5f48362007-05-08 17:22:29 -03001496 /* first switch off audio */
Ondrej Zary240d57b2011-04-27 17:36:05 -03001497 if (usbvision_device_data[model].audio_channels > 0)
1498 usbvision_audio_off(usbvision);
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001499 if (!power_on_at_open) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001500 /* and then power up the noisy tuner */
1501 usbvision_power_on(usbvision);
Thierry MERLE1ff16c22007-04-14 16:23:49 -03001502 usbvision_i2c_register(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001503 }
1504}
1505
1506/*
1507 * usbvision_probe()
1508 *
1509 * This procedure queries device descriptor and accepts the interface
1510 * if it looks like USBVISION video device
1511 *
1512 */
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08001513static int usbvision_probe(struct usb_interface *intf,
1514 const struct usb_device_id *devid)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001515{
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001516 struct usb_device *dev = usb_get_dev(interface_to_usbdev(intf));
1517 struct usb_interface *uif;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001518 __u8 ifnum = intf->altsetting->desc.bInterfaceNumber;
1519 const struct usb_host_interface *interface;
1520 struct usb_usbvision *usbvision = NULL;
1521 const struct usb_endpoint_descriptor *endpoint;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001522 int model, i;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001523
1524 PDEBUG(DBG_PROBE, "VID=%#04x, PID=%#04x, ifnum=%u",
Mauro Carvalho Chehab659ae562007-04-14 15:09:59 -03001525 dev->descriptor.idVendor,
1526 dev->descriptor.idProduct, ifnum);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001527
Mauro Carvalho Chehab659ae562007-04-14 15:09:59 -03001528 model = devid->driver_info;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001529 if (model < 0 || model >= usbvision_device_data_size) {
1530 PDEBUG(DBG_PROBE, "model out of bounds %d", model);
Mauro Carvalho Chehabf8a389d2007-04-14 15:17:35 -03001531 return -ENODEV;
1532 }
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001533 printk(KERN_INFO "%s: %s found\n", __func__,
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001534 usbvision_device_data[model].model_string);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001535
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001536 if (usbvision_device_data[model].interface >= 0)
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001537 interface = &dev->actconfig->interface[usbvision_device_data[model].interface]->altsetting[0];
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001538 else
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001539 interface = &dev->actconfig->interface[ifnum]->altsetting[0];
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001540 endpoint = &interface->endpoint[1].desc;
Julia Lawall2230c3c2009-01-03 16:53:10 -03001541 if (!usb_endpoint_xfer_isoc(endpoint)) {
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001542 dev_err(&intf->dev, "%s: interface %d. has non-ISO endpoint!\n",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001543 __func__, ifnum);
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001544 dev_err(&intf->dev, "%s: Endpoint attributes %d",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001545 __func__, endpoint->bmAttributes);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001546 return -ENODEV;
1547 }
Julia Lawall13417982008-12-29 21:49:22 -03001548 if (usb_endpoint_dir_out(endpoint)) {
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001549 dev_err(&intf->dev, "%s: interface %d. has ISO OUT endpoint!\n",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001550 __func__, ifnum);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001551 return -ENODEV;
1552 }
1553
Janne Grunaua8784402009-04-01 08:46:00 -03001554 usbvision = usbvision_alloc(dev, intf);
1555 if (usbvision == NULL) {
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001556 dev_err(&intf->dev, "%s: couldn't allocate USBVision struct\n", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001557 return -ENOMEM;
1558 }
Mauro Carvalho Chehab659ae562007-04-14 15:09:59 -03001559
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001560 if (dev->descriptor.bNumConfigurations > 1)
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001561 usbvision->bridge_type = BRIDGE_NT1004;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001562 else if (model == DAZZLE_DVC_90_REV_1_SECAM)
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001563 usbvision->bridge_type = BRIDGE_NT1005;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001564 else
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001565 usbvision->bridge_type = BRIDGE_NT1003;
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001566 PDEBUG(DBG_PROBE, "bridge_type %d", usbvision->bridge_type);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001567
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001568 /* compute alternate max packet sizes */
1569 uif = dev->actconfig->interface[0];
1570
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001571 usbvision->num_alt = uif->num_altsetting;
1572 PDEBUG(DBG_PROBE, "Alternate settings: %i", usbvision->num_alt);
1573 usbvision->alt_max_pkt_size = kmalloc(32 * usbvision->num_alt, GFP_KERNEL);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001574 if (usbvision->alt_max_pkt_size == NULL) {
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001575 dev_err(&intf->dev, "usbvision: out of memory!\n");
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001576 return -ENOMEM;
1577 }
1578
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001579 for (i = 0; i < usbvision->num_alt; i++) {
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001580 u16 tmp = le16_to_cpu(uif->altsetting[i].endpoint[1].desc.
1581 wMaxPacketSize);
1582 usbvision->alt_max_pkt_size[i] =
1583 (tmp & 0x07ff) * (((tmp & 0x1800) >> 11) + 1);
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001584 PDEBUG(DBG_PROBE, "Alternate setting %i, max size= %i", i,
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001585 usbvision->alt_max_pkt_size[i]);
1586 }
1587
1588
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001589 usbvision->nr = usbvision_nr++;
1590
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001591 usbvision->have_tuner = usbvision_device_data[model].tuner;
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001592 if (usbvision->have_tuner)
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001593 usbvision->tuner_type = usbvision_device_data[model].tuner_type;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001594
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001595 usbvision->dev_model = model;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001596 usbvision->remove_pending = 0;
1597 usbvision->iface = ifnum;
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001598 usbvision->iface_alt = 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001599 usbvision->video_endp = endpoint->bEndpointAddress;
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001600 usbvision->isoc_packet_size = 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001601 usbvision->usb_bandwidth = 0;
1602 usbvision->user = 0;
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001603 usbvision->streaming = stream_off;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001604 usbvision_configure_video(usbvision);
Hans Verkuil84034722010-09-17 15:07:28 -03001605 usbvision_register_video(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001606
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001607 usbvision_create_sysfs(usbvision->vdev);
1608
1609 PDEBUG(DBG_PROBE, "success");
1610 return 0;
1611}
1612
1613
1614/*
1615 * usbvision_disconnect()
1616 *
1617 * This procedure stops all driver activity, deallocates interface-private
1618 * structure (pointed by 'ptr') and after that driver should be removable
1619 * with no ill consequences.
1620 *
1621 */
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08001622static void usbvision_disconnect(struct usb_interface *intf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001623{
Hans Verkuilaeb506a2010-05-02 09:00:13 -03001624 struct usb_usbvision *usbvision = to_usbvision(usb_get_intfdata(intf));
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001625
1626 PDEBUG(DBG_PROBE, "");
1627
1628 if (usbvision == NULL) {
Julia Lawall42020662010-05-27 09:36:45 -03001629 pr_err("%s: usb_get_intfdata() failed\n", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001630 return;
1631 }
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001632
Hans Verkuilc627b9d2010-12-18 11:06:09 -03001633 mutex_lock(&usbvision->v4l2_lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001634
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001635 /* At this time we ask to cancel outstanding URBs */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001636 usbvision_stop_isoc(usbvision);
1637
Hans Verkuilf1ba28c2009-03-14 12:27:01 -03001638 v4l2_device_disconnect(&usbvision->v4l2_dev);
1639
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001640 if (usbvision->power) {
Thierry MERLE1ff16c22007-04-14 16:23:49 -03001641 usbvision_i2c_unregister(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001642 usbvision_power_off(usbvision);
1643 }
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001644 usbvision->remove_pending = 1; /* Now all ISO data will be ignored */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001645
1646 usb_put_dev(usbvision->dev);
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001647 usbvision->dev = NULL; /* USB device is no more */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001648
Hans Verkuilc627b9d2010-12-18 11:06:09 -03001649 mutex_unlock(&usbvision->v4l2_lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001650
1651 if (usbvision->user) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001652 printk(KERN_INFO "%s: In use, disconnect pending\n",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001653 __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001654 wake_up_interruptible(&usbvision->wait_frame);
1655 wake_up_interruptible(&usbvision->wait_stream);
Thierry MERLEc5f48362007-05-08 17:22:29 -03001656 } else {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001657 usbvision_release(usbvision);
1658 }
1659
1660 PDEBUG(DBG_PROBE, "success");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001661}
1662
1663static struct usb_driver usbvision_driver = {
1664 .name = "usbvision",
1665 .id_table = usbvision_table,
1666 .probe = usbvision_probe,
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -08001667 .disconnect = usbvision_disconnect,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001668};
1669
1670/*
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001671 * usbvision_init()
1672 *
1673 * This code is run to initialize the driver.
1674 *
1675 */
1676static int __init usbvision_init(void)
1677{
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001678 int err_code;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001679
1680 PDEBUG(DBG_PROBE, "");
1681
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001682 PDEBUG(DBG_IO, "IO debugging is enabled [video]");
1683 PDEBUG(DBG_PROBE, "PROBE debugging is enabled [video]");
Thierry MERLEc876a342006-12-09 16:42:54 -03001684 PDEBUG(DBG_MMAP, "MMAP debugging is enabled [video]");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001685
1686 /* disable planar mode support unless compression enabled */
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001687 if (isoc_mode != ISOC_MODE_COMPRESS) {
Hans Verkuil52cb0bf2010-12-19 20:33:51 -03001688 /* FIXME : not the right way to set supported flag */
1689 usbvision_v4l2_format[6].supported = 0; /* V4L2_PIX_FMT_YVU420 */
1690 usbvision_v4l2_format[7].supported = 0; /* V4L2_PIX_FMT_YUV422P */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001691 }
1692
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001693 err_code = usb_register(&usbvision_driver);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001694
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001695 if (err_code == 0) {
Dwaine Gardende6a1b82007-01-07 21:13:55 -03001696 printk(KERN_INFO DRIVER_DESC " : " USBVISION_VERSION_STRING "\n");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001697 PDEBUG(DBG_PROBE, "success");
1698 }
Hans Verkuil5490a7c2010-12-19 20:21:36 -03001699 return err_code;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001700}
1701
1702static void __exit usbvision_exit(void)
1703{
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001704 PDEBUG(DBG_PROBE, "");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001705
Hans Verkuil6d6a48e2010-12-29 13:53:21 -03001706 usb_deregister(&usbvision_driver);
1707 PDEBUG(DBG_PROBE, "success");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001708}
1709
1710module_init(usbvision_init);
1711module_exit(usbvision_exit);
1712
1713/*
1714 * Overrides for Emacs so that we follow Linus's tabbing style.
1715 * ---------------------------------------------------------------------------
1716 * Local variables:
1717 * c-basic-offset: 8
1718 * End:
1719 */