blob: 7eccdc1ea2d7a4e50b11fcc514c78f2c4bbea45c [file] [log] [blame]
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001/*
Mauro Carvalho Chehab7ca659e2006-12-09 11:43:31 -03002 * USB USBVISION Video device driver 0.9.9
Thierry MERLE483dfdb2006-12-04 08:31:45 -03003 *
4 *
5 *
6 * Copyright (c) 1999-2005 Joerg Heckenbach <joerg@heckenbach-aw.de>
7 *
8 * This module is part of usbvision driver project.
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 *
24 * Let's call the version 0.... until compression decoding is completely
25 * implemented.
26 *
27 * This driver is written by Jose Ignacio Gijon and Joerg Heckenbach.
28 * It was based on USB CPiA driver written by Peter Pregler,
29 * Scott J. Bertin and Johannes Erdfelt
30 * Ideas are taken from bttv driver by Ralph Metzler, Marcus Metzler &
31 * Gerd Knorr and zoran 36120/36125 driver by Pauline Middelink
32 * Updates to driver completed by Dwaine P. Garden
33 *
34 *
35 * TODO:
36 * - use submit_urb for all setup packets
37 * - Fix memory settings for nt1004. It is 4 times as big as the
38 * nt1003 memory.
Thierry MERLEc5f48362007-05-08 17:22:29 -030039 * - Add audio on endpoint 3 for nt1004 chip.
40 * Seems impossible, needs a codec interface. Which one?
Thierry MERLE483dfdb2006-12-04 08:31:45 -030041 * - Clean up the driver.
42 * - optimization for performance.
43 * - Add Videotext capability (VBI). Working on it.....
44 * - Check audio for other devices
45 *
46 */
47
Mauro Carvalho Chehabf30ebd42006-12-09 12:32:18 -030048#include <linux/version.h>
Thierry MERLE483dfdb2006-12-04 08:31:45 -030049#include <linux/kernel.h>
Thierry MERLE483dfdb2006-12-04 08:31:45 -030050#include <linux/list.h>
51#include <linux/timer.h>
52#include <linux/slab.h>
53#include <linux/mm.h>
54#include <linux/utsname.h>
55#include <linux/highmem.h>
Thierry MERLE483dfdb2006-12-04 08:31:45 -030056#include <linux/videodev.h>
57#include <linux/vmalloc.h>
58#include <linux/module.h>
59#include <linux/init.h>
60#include <linux/spinlock.h>
61#include <asm/io.h>
62#include <linux/videodev2.h>
63#include <linux/video_decoder.h>
64#include <linux/i2c.h>
65
66#include <media/saa7115.h>
67#include <media/v4l2-common.h>
Hans Verkuil35ea11f2008-07-20 08:12:02 -030068#include <media/v4l2-ioctl.h>
Thierry MERLE483dfdb2006-12-04 08:31:45 -030069#include <media/tuner.h>
Thierry MERLE483dfdb2006-12-04 08:31:45 -030070
Mauro Carvalho Chehaba1ed5512006-12-09 11:41:59 -030071#include <linux/workqueue.h>
Thierry MERLE483dfdb2006-12-04 08:31:45 -030072
73#ifdef CONFIG_KMOD
74#include <linux/kmod.h>
75#endif
76
77#include "usbvision.h"
Mauro Carvalho Chehab659ae562007-04-14 15:09:59 -030078#include "usbvision-cards.h"
Thierry MERLE483dfdb2006-12-04 08:31:45 -030079
Thierry MERLEc5f48362007-05-08 17:22:29 -030080#define DRIVER_AUTHOR "Joerg Heckenbach <joerg@heckenbach-aw.de>,\
81 Dwaine Garden <DwaineGarden@rogers.com>"
Thierry MERLE483dfdb2006-12-04 08:31:45 -030082#define DRIVER_NAME "usbvision"
83#define DRIVER_ALIAS "USBVision"
84#define DRIVER_DESC "USBVision USB Video Device Driver for Linux"
85#define DRIVER_LICENSE "GPL"
86#define USBVISION_DRIVER_VERSION_MAJOR 0
87#define USBVISION_DRIVER_VERSION_MINOR 9
88#define USBVISION_DRIVER_VERSION_PATCHLEVEL 9
Thierry MERLEc5f48362007-05-08 17:22:29 -030089#define USBVISION_DRIVER_VERSION KERNEL_VERSION(USBVISION_DRIVER_VERSION_MAJOR,\
90USBVISION_DRIVER_VERSION_MINOR,\
91USBVISION_DRIVER_VERSION_PATCHLEVEL)
92#define USBVISION_VERSION_STRING __stringify(USBVISION_DRIVER_VERSION_MAJOR)\
93 "." __stringify(USBVISION_DRIVER_VERSION_MINOR)\
94 "." __stringify(USBVISION_DRIVER_VERSION_PATCHLEVEL)
Thierry MERLE483dfdb2006-12-04 08:31:45 -030095
96#define ENABLE_HEXDUMP 0 /* Enable if you need it */
97
98
Thierry MERLE483dfdb2006-12-04 08:31:45 -030099#ifdef USBVISION_DEBUG
Thierry MERLEdf18c312008-04-04 21:00:57 -0300100 #define PDEBUG(level, fmt, args...) { \
Thierry MERLEc5f48362007-05-08 17:22:29 -0300101 if (video_debug & (level)) \
Thierry MERLEdf18c312008-04-04 21:00:57 -0300102 info("[%s:%d] " fmt, __func__, __LINE__ , ## args); \
103 }
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300104#else
105 #define PDEBUG(level, fmt, args...) do {} while(0)
106#endif
107
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300108#define DBG_IO 1<<1
109#define DBG_PROBE 1<<2
Thierry MERLEc876a342006-12-09 16:42:54 -0300110#define DBG_MMAP 1<<3
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300111
112//String operations
113#define rmspace(str) while(*str==' ') str++;
114#define goto2next(str) while(*str!=' ') str++; while(*str==' ') str++;
115
116
Thierry MERLEc5f48362007-05-08 17:22:29 -0300117/* sequential number of usbvision device */
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -0300118static int usbvision_nr;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300119
120static struct usbvision_v4l2_format_st usbvision_v4l2_format[] = {
121 { 1, 1, 8, V4L2_PIX_FMT_GREY , "GREY" },
122 { 1, 2, 16, V4L2_PIX_FMT_RGB565 , "RGB565" },
123 { 1, 3, 24, V4L2_PIX_FMT_RGB24 , "RGB24" },
124 { 1, 4, 32, V4L2_PIX_FMT_RGB32 , "RGB32" },
125 { 1, 2, 16, V4L2_PIX_FMT_RGB555 , "RGB555" },
126 { 1, 2, 16, V4L2_PIX_FMT_YUYV , "YUV422" },
127 { 1, 2, 12, V4L2_PIX_FMT_YVU420 , "YUV420P" }, // 1.5 !
128 { 1, 2, 16, V4L2_PIX_FMT_YUV422P , "YUV422P" }
129};
130
Thierry MERLEc5f48362007-05-08 17:22:29 -0300131/* Function prototypes */
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300132static void usbvision_release(struct usb_usbvision *usbvision);
133
Joe Perchesc84e6032008-02-03 17:18:59 +0200134/* Default initialization of device driver parameters */
Thierry MERLEc5f48362007-05-08 17:22:29 -0300135/* Set the default format for ISOC endpoint */
136static int isocMode = ISOC_MODE_COMPRESS;
137/* Set the default Debug Mode of the device driver */
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -0300138static int video_debug;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300139/* Set the default device to power on at startup */
140static int PowerOnAtOpen = 1;
141/* Sequential Number of Video Device */
142static int video_nr = -1;
143/* Sequential Number of Radio Device */
144static int radio_nr = -1;
145/* Sequential Number of VBI Device */
146static int vbi_nr = -1;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300147
Thierry MERLEc5f48362007-05-08 17:22:29 -0300148/* Grab parameters for the device driver */
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300149
Thierry MERLEc5f48362007-05-08 17:22:29 -0300150/* Showing parameters under SYSFS */
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300151module_param(isocMode, int, 0444);
152module_param(video_debug, int, 0444);
153module_param(PowerOnAtOpen, int, 0444);
154module_param(video_nr, int, 0444);
155module_param(radio_nr, int, 0444);
156module_param(vbi_nr, int, 0444);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300157
158MODULE_PARM_DESC(isocMode, " Set the default format for ISOC endpoint. Default: 0x60 (Compression On)");
159MODULE_PARM_DESC(video_debug, " Set the default Debug Mode of the device driver. Default: 0 (Off)");
160MODULE_PARM_DESC(PowerOnAtOpen, " Set the default device to power on when device is opened. Default: 1 (On)");
161MODULE_PARM_DESC(video_nr, "Set video device number (/dev/videoX). Default: -1 (autodetect)");
162MODULE_PARM_DESC(radio_nr, "Set radio device number (/dev/radioX). Default: -1 (autodetect)");
163MODULE_PARM_DESC(vbi_nr, "Set vbi device number (/dev/vbiX). Default: -1 (autodetect)");
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300164
165
166// Misc stuff
167MODULE_AUTHOR(DRIVER_AUTHOR);
168MODULE_DESCRIPTION(DRIVER_DESC);
169MODULE_LICENSE(DRIVER_LICENSE);
Mauro Carvalho Chehaba1ed5512006-12-09 11:41:59 -0300170MODULE_VERSION(USBVISION_VERSION_STRING);
171MODULE_ALIAS(DRIVER_ALIAS);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300172
173
Thierry MERLEc5f48362007-05-08 17:22:29 -0300174/*****************************************************************************/
175/* SYSFS Code - Copied from the stv680.c usb module. */
176/* Device information is located at /sys/class/video4linux/video0 */
177/* Device parameters information is located at /sys/module/usbvision */
178/* Device USB Information is located at */
179/* /sys/bus/usb/drivers/USBVision Video Grabber */
180/*****************************************************************************/
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300181
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300182#define YES_NO(x) ((x) ? "Yes" : "No")
183
Kay Sievers54bd5b62007-10-08 16:26:13 -0300184static inline struct usb_usbvision *cd_to_usbvision(struct device *cd)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300185{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300186 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300187 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300188 return video_get_drvdata(vdev);
189}
190
Kay Sievers54bd5b62007-10-08 16:26:13 -0300191static ssize_t show_version(struct device *cd,
192 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300193{
194 return sprintf(buf, "%s\n", USBVISION_VERSION_STRING);
195}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300196static DEVICE_ATTR(version, S_IRUGO, show_version, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300197
Kay Sievers54bd5b62007-10-08 16:26:13 -0300198static ssize_t show_model(struct device *cd,
199 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300200{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300201 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300202 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300203 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300204 return sprintf(buf, "%s\n",
205 usbvision_device_data[usbvision->DevModel].ModelString);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300206}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300207static DEVICE_ATTR(model, S_IRUGO, show_model, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300208
Kay Sievers54bd5b62007-10-08 16:26:13 -0300209static ssize_t show_hue(struct device *cd,
210 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300211{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300212 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300213 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300214 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
215 struct v4l2_control ctrl;
216 ctrl.id = V4L2_CID_HUE;
217 ctrl.value = 0;
Dwaine Gardened00b412006-12-27 10:23:28 -0200218 if(usbvision->user)
219 call_i2c_clients(usbvision, VIDIOC_G_CTRL, &ctrl);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -0300220 return sprintf(buf, "%d\n", ctrl.value);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300221}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300222static DEVICE_ATTR(hue, S_IRUGO, show_hue, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300223
Kay Sievers54bd5b62007-10-08 16:26:13 -0300224static ssize_t show_contrast(struct device *cd,
225 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300226{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300227 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300228 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300229 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
230 struct v4l2_control ctrl;
231 ctrl.id = V4L2_CID_CONTRAST;
232 ctrl.value = 0;
Dwaine Gardened00b412006-12-27 10:23:28 -0200233 if(usbvision->user)
234 call_i2c_clients(usbvision, VIDIOC_G_CTRL, &ctrl);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -0300235 return sprintf(buf, "%d\n", ctrl.value);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300236}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300237static DEVICE_ATTR(contrast, S_IRUGO, show_contrast, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300238
Kay Sievers54bd5b62007-10-08 16:26:13 -0300239static ssize_t show_brightness(struct device *cd,
240 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300241{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300242 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300243 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300244 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
245 struct v4l2_control ctrl;
246 ctrl.id = V4L2_CID_BRIGHTNESS;
247 ctrl.value = 0;
Dwaine Gardened00b412006-12-27 10:23:28 -0200248 if(usbvision->user)
249 call_i2c_clients(usbvision, VIDIOC_G_CTRL, &ctrl);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -0300250 return sprintf(buf, "%d\n", ctrl.value);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300251}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300252static DEVICE_ATTR(brightness, S_IRUGO, show_brightness, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300253
Kay Sievers54bd5b62007-10-08 16:26:13 -0300254static ssize_t show_saturation(struct device *cd,
255 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300256{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300257 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300258 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300259 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
260 struct v4l2_control ctrl;
261 ctrl.id = V4L2_CID_SATURATION;
262 ctrl.value = 0;
Dwaine Gardened00b412006-12-27 10:23:28 -0200263 if(usbvision->user)
264 call_i2c_clients(usbvision, VIDIOC_G_CTRL, &ctrl);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -0300265 return sprintf(buf, "%d\n", ctrl.value);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300266}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300267static DEVICE_ATTR(saturation, S_IRUGO, show_saturation, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300268
Kay Sievers54bd5b62007-10-08 16:26:13 -0300269static ssize_t show_streaming(struct device *cd,
270 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300271{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300272 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300273 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300274 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300275 return sprintf(buf, "%s\n",
276 YES_NO(usbvision->streaming==Stream_On?1:0));
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300277}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300278static DEVICE_ATTR(streaming, S_IRUGO, show_streaming, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300279
Kay Sievers54bd5b62007-10-08 16:26:13 -0300280static ssize_t show_compression(struct device *cd,
281 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300282{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300283 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300284 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300285 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300286 return sprintf(buf, "%s\n",
287 YES_NO(usbvision->isocMode==ISOC_MODE_COMPRESS));
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300288}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300289static DEVICE_ATTR(compression, S_IRUGO, show_compression, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300290
Kay Sievers54bd5b62007-10-08 16:26:13 -0300291static ssize_t show_device_bridge(struct device *cd,
292 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300293{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300294 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300295 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300296 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
297 return sprintf(buf, "%d\n", usbvision->bridgeType);
298}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300299static DEVICE_ATTR(bridge, S_IRUGO, show_device_bridge, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300300
301static void usbvision_create_sysfs(struct video_device *vdev)
302{
303 int res;
Dwaine Gardened00b412006-12-27 10:23:28 -0200304 if (!vdev)
305 return;
306 do {
Hans Verkuil22a04f12008-07-20 06:35:02 -0300307 res = device_create_file(&vdev->dev, &dev_attr_version);
Dwaine Gardened00b412006-12-27 10:23:28 -0200308 if (res<0)
309 break;
Hans Verkuil22a04f12008-07-20 06:35:02 -0300310 res = device_create_file(&vdev->dev, &dev_attr_model);
Dwaine Gardened00b412006-12-27 10:23:28 -0200311 if (res<0)
312 break;
Hans Verkuil22a04f12008-07-20 06:35:02 -0300313 res = device_create_file(&vdev->dev, &dev_attr_hue);
Dwaine Gardened00b412006-12-27 10:23:28 -0200314 if (res<0)
315 break;
Hans Verkuil22a04f12008-07-20 06:35:02 -0300316 res = device_create_file(&vdev->dev, &dev_attr_contrast);
Dwaine Gardened00b412006-12-27 10:23:28 -0200317 if (res<0)
318 break;
Hans Verkuil22a04f12008-07-20 06:35:02 -0300319 res = device_create_file(&vdev->dev, &dev_attr_brightness);
Dwaine Gardened00b412006-12-27 10:23:28 -0200320 if (res<0)
321 break;
Hans Verkuil22a04f12008-07-20 06:35:02 -0300322 res = device_create_file(&vdev->dev, &dev_attr_saturation);
Dwaine Gardened00b412006-12-27 10:23:28 -0200323 if (res<0)
324 break;
Hans Verkuil22a04f12008-07-20 06:35:02 -0300325 res = device_create_file(&vdev->dev, &dev_attr_streaming);
Dwaine Gardened00b412006-12-27 10:23:28 -0200326 if (res<0)
327 break;
Hans Verkuil22a04f12008-07-20 06:35:02 -0300328 res = device_create_file(&vdev->dev, &dev_attr_compression);
Dwaine Gardened00b412006-12-27 10:23:28 -0200329 if (res<0)
330 break;
Hans Verkuil22a04f12008-07-20 06:35:02 -0300331 res = device_create_file(&vdev->dev, &dev_attr_bridge);
Dwaine Gardened00b412006-12-27 10:23:28 -0200332 if (res>=0)
333 return;
334 } while (0);
335
Harvey Harrisond2db42d2008-04-04 20:50:07 -0300336 err("%s error: %d\n", __func__, res);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300337}
338
339static void usbvision_remove_sysfs(struct video_device *vdev)
340{
341 if (vdev) {
Hans Verkuil22a04f12008-07-20 06:35:02 -0300342 device_remove_file(&vdev->dev, &dev_attr_version);
343 device_remove_file(&vdev->dev, &dev_attr_model);
344 device_remove_file(&vdev->dev, &dev_attr_hue);
345 device_remove_file(&vdev->dev, &dev_attr_contrast);
346 device_remove_file(&vdev->dev, &dev_attr_brightness);
347 device_remove_file(&vdev->dev, &dev_attr_saturation);
348 device_remove_file(&vdev->dev, &dev_attr_streaming);
349 device_remove_file(&vdev->dev, &dev_attr_compression);
350 device_remove_file(&vdev->dev, &dev_attr_bridge);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300351 }
352}
353
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300354/*
355 * usbvision_open()
356 *
357 * This is part of Video 4 Linux API. The driver can be opened by one
358 * client only (checks internal counter 'usbvision->user'). The procedure
359 * then allocates buffers needed for video processing.
360 *
361 */
362static int usbvision_v4l2_open(struct inode *inode, struct file *file)
363{
364 struct video_device *dev = video_devdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300365 struct usb_usbvision *usbvision =
366 (struct usb_usbvision *) video_get_drvdata(dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300367 int errCode = 0;
368
369 PDEBUG(DBG_IO, "open");
370
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300371 usbvision_reset_powerOffTimer(usbvision);
372
373 if (usbvision->user)
374 errCode = -EBUSY;
375 else {
Thierry MERLE6f78e182007-02-07 10:13:11 -0300376 /* Allocate memory for the scratch ring buffer */
377 errCode = usbvision_scratch_alloc(usbvision);
378 if (isocMode==ISOC_MODE_COMPRESS) {
Thierry MERLEc5f48362007-05-08 17:22:29 -0300379 /* Allocate intermediate decompression buffers
380 only if needed */
Thierry MERLE6f78e182007-02-07 10:13:11 -0300381 errCode = usbvision_decompress_alloc(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300382 }
383 if (errCode) {
384 /* Deallocate all buffers if trouble */
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300385 usbvision_scratch_free(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300386 usbvision_decompress_free(usbvision);
387 }
388 }
389
390 /* If so far no errors then we shall start the camera */
391 if (!errCode) {
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -0300392 mutex_lock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300393 if (usbvision->power == 0) {
394 usbvision_power_on(usbvision);
Thierry MERLE1ff16c22007-04-14 16:23:49 -0300395 usbvision_i2c_register(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300396 }
397
398 /* Send init sequence only once, it's large! */
399 if (!usbvision->initialized) {
400 int setup_ok = 0;
401 setup_ok = usbvision_setup(usbvision,isocMode);
402 if (setup_ok)
403 usbvision->initialized = 1;
404 else
405 errCode = -EBUSY;
406 }
407
408 if (!errCode) {
409 usbvision_begin_streaming(usbvision);
410 errCode = usbvision_init_isoc(usbvision);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300411 /* device must be initialized before isoc transfer */
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300412 usbvision_muxsel(usbvision,0);
413 usbvision->user++;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300414 } else {
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300415 if (PowerOnAtOpen) {
Thierry MERLE1ff16c22007-04-14 16:23:49 -0300416 usbvision_i2c_unregister(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300417 usbvision_power_off(usbvision);
418 usbvision->initialized = 0;
419 }
420 }
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -0300421 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300422 }
423
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300424 /* prepare queues */
425 usbvision_empty_framequeues(usbvision);
426
427 PDEBUG(DBG_IO, "success");
428 return errCode;
429}
430
431/*
432 * usbvision_v4l2_close()
433 *
434 * This is part of Video 4 Linux API. The procedure
435 * stops streaming and deallocates all buffers that were earlier
436 * allocated in usbvision_v4l2_open().
437 *
438 */
439static int usbvision_v4l2_close(struct inode *inode, struct file *file)
440{
441 struct video_device *dev = video_devdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300442 struct usb_usbvision *usbvision =
443 (struct usb_usbvision *) video_get_drvdata(dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300444
445 PDEBUG(DBG_IO, "close");
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -0300446 mutex_lock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300447
448 usbvision_audio_off(usbvision);
449 usbvision_restart_isoc(usbvision);
450 usbvision_stop_isoc(usbvision);
451
452 usbvision_decompress_free(usbvision);
Thierry MERLE38284ba2006-12-15 16:46:53 -0300453 usbvision_frames_free(usbvision);
Thierry MERLE6f78e182007-02-07 10:13:11 -0300454 usbvision_empty_framequeues(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300455 usbvision_scratch_free(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300456
457 usbvision->user--;
458
459 if (PowerOnAtOpen) {
Thierry MERLEc5f48362007-05-08 17:22:29 -0300460 /* power off in a little while
461 to avoid off/on every close/open short sequences */
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300462 usbvision_set_powerOffTimer(usbvision);
463 usbvision->initialized = 0;
464 }
465
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -0300466 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300467
468 if (usbvision->remove_pending) {
Harvey Harrisond2db42d2008-04-04 20:50:07 -0300469 printk(KERN_INFO "%s: Final disconnect\n", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300470 usbvision_release(usbvision);
471 }
472
473 PDEBUG(DBG_IO, "success");
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300474 return 0;
475}
476
477
478/*
479 * usbvision_ioctl()
480 *
481 * This is part of Video 4 Linux API. The procedure handles ioctl() calls.
482 *
483 */
Thierry MERLEc5f48362007-05-08 17:22:29 -0300484#ifdef CONFIG_VIDEO_ADV_DEBUG
485static int vidioc_g_register (struct file *file, void *priv,
486 struct v4l2_register *reg)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300487{
488 struct video_device *dev = video_devdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300489 struct usb_usbvision *usbvision =
490 (struct usb_usbvision *) video_get_drvdata(dev);
491 int errCode;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300492
Thierry MERLEc5f48362007-05-08 17:22:29 -0300493 if (!v4l2_chip_match_host(reg->match_type, reg->match_chip))
494 return -EINVAL;
495 /* NT100x has a 8-bit register space */
496 errCode = usbvision_read_reg(usbvision, reg->reg&0xff);
497 if (errCode < 0) {
498 err("%s: VIDIOC_DBG_G_REGISTER failed: error %d",
Harvey Harrisond2db42d2008-04-04 20:50:07 -0300499 __func__, errCode);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300500 return errCode;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300501 }
Trent Piephobc147132007-07-23 06:58:31 -0300502 reg->val = errCode;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300503 return 0;
504}
505
Thierry MERLEc5f48362007-05-08 17:22:29 -0300506static int vidioc_s_register (struct file *file, void *priv,
507 struct v4l2_register *reg)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300508{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300509 struct video_device *dev = video_devdata(file);
510 struct usb_usbvision *usbvision =
511 (struct usb_usbvision *) video_get_drvdata(dev);
512 int errCode;
513
514 if (!v4l2_chip_match_host(reg->match_type, reg->match_chip))
515 return -EINVAL;
516 /* NT100x has a 8-bit register space */
Trent Piephobc147132007-07-23 06:58:31 -0300517 errCode = usbvision_write_reg(usbvision, reg->reg&0xff, reg->val);
518 if (errCode < 0) {
Thierry MERLEc5f48362007-05-08 17:22:29 -0300519 err("%s: VIDIOC_DBG_S_REGISTER failed: error %d",
Harvey Harrisond2db42d2008-04-04 20:50:07 -0300520 __func__, errCode);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300521 return errCode;
522 }
523 return 0;
524}
525#endif
526
527static int vidioc_querycap (struct file *file, void *priv,
528 struct v4l2_capability *vc)
529{
530 struct video_device *dev = video_devdata(file);
531 struct usb_usbvision *usbvision =
532 (struct usb_usbvision *) video_get_drvdata(dev);
533
534 strlcpy(vc->driver, "USBVision", sizeof(vc->driver));
535 strlcpy(vc->card,
536 usbvision_device_data[usbvision->DevModel].ModelString,
537 sizeof(vc->card));
538 strlcpy(vc->bus_info, usbvision->dev->dev.bus_id,
539 sizeof(vc->bus_info));
540 vc->version = USBVISION_DRIVER_VERSION;
541 vc->capabilities = V4L2_CAP_VIDEO_CAPTURE |
542 V4L2_CAP_AUDIO |
543 V4L2_CAP_READWRITE |
544 V4L2_CAP_STREAMING |
545 (usbvision->have_tuner ? V4L2_CAP_TUNER : 0);
546 return 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300547}
548
Thierry MERLEc5f48362007-05-08 17:22:29 -0300549static int vidioc_enum_input (struct file *file, void *priv,
550 struct v4l2_input *vi)
551{
552 struct video_device *dev = video_devdata(file);
553 struct usb_usbvision *usbvision =
554 (struct usb_usbvision *) video_get_drvdata(dev);
555 int chan;
556
557 if ((vi->index >= usbvision->video_inputs) || (vi->index < 0) )
558 return -EINVAL;
559 if (usbvision->have_tuner) {
560 chan = vi->index;
561 } else {
562 chan = vi->index + 1; /*skip Television string*/
563 }
564 /* Determine the requested input characteristics
565 specific for each usbvision card model */
566 switch(chan) {
567 case 0:
568 if (usbvision_device_data[usbvision->DevModel].VideoChannels == 4) {
569 strcpy(vi->name, "White Video Input");
570 } else {
571 strcpy(vi->name, "Television");
572 vi->type = V4L2_INPUT_TYPE_TUNER;
573 vi->audioset = 1;
574 vi->tuner = chan;
575 vi->std = USBVISION_NORMS;
576 }
577 break;
578 case 1:
579 vi->type = V4L2_INPUT_TYPE_CAMERA;
580 if (usbvision_device_data[usbvision->DevModel].VideoChannels == 4) {
581 strcpy(vi->name, "Green Video Input");
582 } else {
583 strcpy(vi->name, "Composite Video Input");
584 }
585 vi->std = V4L2_STD_PAL;
586 break;
587 case 2:
588 vi->type = V4L2_INPUT_TYPE_CAMERA;
589 if (usbvision_device_data[usbvision->DevModel].VideoChannels == 4) {
590 strcpy(vi->name, "Yellow Video Input");
591 } else {
592 strcpy(vi->name, "S-Video Input");
593 }
594 vi->std = V4L2_STD_PAL;
595 break;
596 case 3:
597 vi->type = V4L2_INPUT_TYPE_CAMERA;
598 strcpy(vi->name, "Red Video Input");
599 vi->std = V4L2_STD_PAL;
600 break;
601 }
602 return 0;
603}
604
605static int vidioc_g_input (struct file *file, void *priv, unsigned int *input)
606{
607 struct video_device *dev = video_devdata(file);
608 struct usb_usbvision *usbvision =
609 (struct usb_usbvision *) video_get_drvdata(dev);
610
611 *input = usbvision->ctl_input;
612 return 0;
613}
614
615static int vidioc_s_input (struct file *file, void *priv, unsigned int input)
616{
617 struct video_device *dev = video_devdata(file);
618 struct usb_usbvision *usbvision =
619 (struct usb_usbvision *) video_get_drvdata(dev);
620
621 if ((input >= usbvision->video_inputs) || (input < 0) )
622 return -EINVAL;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300623
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -0300624 mutex_lock(&usbvision->lock);
Thierry MERLE66a17872007-06-26 16:35:30 -0300625 usbvision_muxsel(usbvision, input);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300626 usbvision_set_input(usbvision);
627 usbvision_set_output(usbvision,
628 usbvision->curwidth,
629 usbvision->curheight);
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -0300630 mutex_unlock(&usbvision->lock);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300631 return 0;
632}
633
634static int vidioc_s_std (struct file *file, void *priv, v4l2_std_id *id)
635{
636 struct video_device *dev = video_devdata(file);
637 struct usb_usbvision *usbvision =
638 (struct usb_usbvision *) video_get_drvdata(dev);
639 usbvision->tvnormId=*id;
640
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -0300641 mutex_lock(&usbvision->lock);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300642 call_i2c_clients(usbvision, VIDIOC_S_STD,
643 &usbvision->tvnormId);
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -0300644 mutex_unlock(&usbvision->lock);
Thierry MERLE66a17872007-06-26 16:35:30 -0300645 /* propagate the change to the decoder */
646 usbvision_muxsel(usbvision, usbvision->ctl_input);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300647
648 return 0;
649}
650
651static int vidioc_g_tuner (struct file *file, void *priv,
652 struct v4l2_tuner *vt)
653{
654 struct video_device *dev = video_devdata(file);
655 struct usb_usbvision *usbvision =
656 (struct usb_usbvision *) video_get_drvdata(dev);
657
658 if (!usbvision->have_tuner || vt->index) // Only tuner 0
659 return -EINVAL;
660 if(usbvision->radio) {
661 strcpy(vt->name, "Radio");
662 vt->type = V4L2_TUNER_RADIO;
663 } else {
664 strcpy(vt->name, "Television");
665 }
666 /* Let clients fill in the remainder of this struct */
667 call_i2c_clients(usbvision,VIDIOC_G_TUNER,vt);
668
669 return 0;
670}
671
672static int vidioc_s_tuner (struct file *file, void *priv,
673 struct v4l2_tuner *vt)
674{
675 struct video_device *dev = video_devdata(file);
676 struct usb_usbvision *usbvision =
677 (struct usb_usbvision *) video_get_drvdata(dev);
678
679 // Only no or one tuner for now
680 if (!usbvision->have_tuner || vt->index)
681 return -EINVAL;
682 /* let clients handle this */
683 call_i2c_clients(usbvision,VIDIOC_S_TUNER,vt);
684
685 return 0;
686}
687
688static int vidioc_g_frequency (struct file *file, void *priv,
689 struct v4l2_frequency *freq)
690{
691 struct video_device *dev = video_devdata(file);
692 struct usb_usbvision *usbvision =
693 (struct usb_usbvision *) video_get_drvdata(dev);
694
695 freq->tuner = 0; // Only one tuner
696 if(usbvision->radio) {
697 freq->type = V4L2_TUNER_RADIO;
698 } else {
699 freq->type = V4L2_TUNER_ANALOG_TV;
700 }
701 freq->frequency = usbvision->freq;
702
703 return 0;
704}
705
706static int vidioc_s_frequency (struct file *file, void *priv,
707 struct v4l2_frequency *freq)
708{
709 struct video_device *dev = video_devdata(file);
710 struct usb_usbvision *usbvision =
711 (struct usb_usbvision *) video_get_drvdata(dev);
712
713 // Only no or one tuner for now
714 if (!usbvision->have_tuner || freq->tuner)
715 return -EINVAL;
716
717 usbvision->freq = freq->frequency;
718 call_i2c_clients(usbvision, VIDIOC_S_FREQUENCY, freq);
719
720 return 0;
721}
722
723static int vidioc_g_audio (struct file *file, void *priv, struct v4l2_audio *a)
724{
725 struct video_device *dev = video_devdata(file);
726 struct usb_usbvision *usbvision =
727 (struct usb_usbvision *) video_get_drvdata(dev);
728
729 memset(a,0,sizeof(*a));
730 if(usbvision->radio) {
731 strcpy(a->name,"Radio");
732 } else {
733 strcpy(a->name, "TV");
734 }
735
736 return 0;
737}
738
739static int vidioc_s_audio (struct file *file, void *fh,
740 struct v4l2_audio *a)
741{
742 if(a->index) {
743 return -EINVAL;
744 }
745
746 return 0;
747}
748
749static int vidioc_queryctrl (struct file *file, void *priv,
750 struct v4l2_queryctrl *ctrl)
751{
752 struct video_device *dev = video_devdata(file);
753 struct usb_usbvision *usbvision =
754 (struct usb_usbvision *) video_get_drvdata(dev);
755 int id=ctrl->id;
756
757 memset(ctrl,0,sizeof(*ctrl));
758 ctrl->id=id;
759
760 call_i2c_clients(usbvision, VIDIOC_QUERYCTRL, ctrl);
761
762 if (!ctrl->type)
763 return -EINVAL;
764
765 return 0;
766}
767
768static int vidioc_g_ctrl (struct file *file, void *priv,
769 struct v4l2_control *ctrl)
770{
771 struct video_device *dev = video_devdata(file);
772 struct usb_usbvision *usbvision =
773 (struct usb_usbvision *) video_get_drvdata(dev);
774 call_i2c_clients(usbvision, VIDIOC_G_CTRL, ctrl);
775
776 return 0;
777}
778
779static int vidioc_s_ctrl (struct file *file, void *priv,
780 struct v4l2_control *ctrl)
781{
782 struct video_device *dev = video_devdata(file);
783 struct usb_usbvision *usbvision =
784 (struct usb_usbvision *) video_get_drvdata(dev);
785 call_i2c_clients(usbvision, VIDIOC_S_CTRL, ctrl);
786
787 return 0;
788}
789
790static int vidioc_reqbufs (struct file *file,
791 void *priv, struct v4l2_requestbuffers *vr)
792{
793 struct video_device *dev = video_devdata(file);
794 struct usb_usbvision *usbvision =
795 (struct usb_usbvision *) video_get_drvdata(dev);
796 int ret;
797
798 RESTRICT_TO_RANGE(vr->count,1,USBVISION_NUMFRAMES);
799
800 /* Check input validity:
801 the user must do a VIDEO CAPTURE and MMAP method. */
802 if((vr->type != V4L2_BUF_TYPE_VIDEO_CAPTURE) ||
803 (vr->memory != V4L2_MEMORY_MMAP))
804 return -EINVAL;
805
806 if(usbvision->streaming == Stream_On) {
807 if ((ret = usbvision_stream_interrupt(usbvision)))
808 return ret;
809 }
810
811 usbvision_frames_free(usbvision);
812 usbvision_empty_framequeues(usbvision);
813 vr->count = usbvision_frames_alloc(usbvision,vr->count);
814
815 usbvision->curFrame = NULL;
816
817 return 0;
818}
819
820static int vidioc_querybuf (struct file *file,
821 void *priv, struct v4l2_buffer *vb)
822{
823 struct video_device *dev = video_devdata(file);
824 struct usb_usbvision *usbvision =
825 (struct usb_usbvision *) video_get_drvdata(dev);
826 struct usbvision_frame *frame;
827
828 /* FIXME : must control
829 that buffers are mapped (VIDIOC_REQBUFS has been called) */
830 if(vb->type != V4L2_CAP_VIDEO_CAPTURE) {
831 return -EINVAL;
832 }
833 if(vb->index>=usbvision->num_frames) {
834 return -EINVAL;
835 }
836 /* Updating the corresponding frame state */
837 vb->flags = 0;
838 frame = &usbvision->frame[vb->index];
839 if(frame->grabstate >= FrameState_Ready)
840 vb->flags |= V4L2_BUF_FLAG_QUEUED;
841 if(frame->grabstate >= FrameState_Done)
842 vb->flags |= V4L2_BUF_FLAG_DONE;
843 if(frame->grabstate == FrameState_Unused)
844 vb->flags |= V4L2_BUF_FLAG_MAPPED;
845 vb->memory = V4L2_MEMORY_MMAP;
846
847 vb->m.offset = vb->index*PAGE_ALIGN(usbvision->max_frame_size);
848
849 vb->memory = V4L2_MEMORY_MMAP;
850 vb->field = V4L2_FIELD_NONE;
851 vb->length = usbvision->curwidth*
852 usbvision->curheight*
853 usbvision->palette.bytes_per_pixel;
854 vb->timestamp = usbvision->frame[vb->index].timestamp;
855 vb->sequence = usbvision->frame[vb->index].sequence;
856 return 0;
857}
858
859static int vidioc_qbuf (struct file *file, void *priv, struct v4l2_buffer *vb)
860{
861 struct video_device *dev = video_devdata(file);
862 struct usb_usbvision *usbvision =
863 (struct usb_usbvision *) video_get_drvdata(dev);
864 struct usbvision_frame *frame;
865 unsigned long lock_flags;
866
867 /* FIXME : works only on VIDEO_CAPTURE MODE, MMAP. */
868 if(vb->type != V4L2_CAP_VIDEO_CAPTURE) {
869 return -EINVAL;
870 }
871 if(vb->index>=usbvision->num_frames) {
872 return -EINVAL;
873 }
874
875 frame = &usbvision->frame[vb->index];
876
877 if (frame->grabstate != FrameState_Unused) {
878 return -EAGAIN;
879 }
880
881 /* Mark it as ready and enqueue frame */
882 frame->grabstate = FrameState_Ready;
883 frame->scanstate = ScanState_Scanning;
884 frame->scanlength = 0; /* Accumulated in usbvision_parse_data() */
885
886 vb->flags &= ~V4L2_BUF_FLAG_DONE;
887
888 /* set v4l2_format index */
889 frame->v4l2_format = usbvision->palette;
890
891 spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
892 list_add_tail(&usbvision->frame[vb->index].frame, &usbvision->inqueue);
893 spin_unlock_irqrestore(&usbvision->queue_lock, lock_flags);
894
895 return 0;
896}
897
898static int vidioc_dqbuf (struct file *file, void *priv, struct v4l2_buffer *vb)
899{
900 struct video_device *dev = video_devdata(file);
901 struct usb_usbvision *usbvision =
902 (struct usb_usbvision *) video_get_drvdata(dev);
903 int ret;
904 struct usbvision_frame *f;
905 unsigned long lock_flags;
906
907 if (vb->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
908 return -EINVAL;
909
910 if (list_empty(&(usbvision->outqueue))) {
911 if (usbvision->streaming == Stream_Idle)
912 return -EINVAL;
913 ret = wait_event_interruptible
914 (usbvision->wait_frame,
915 !list_empty(&(usbvision->outqueue)));
916 if (ret)
917 return ret;
918 }
919
920 spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
921 f = list_entry(usbvision->outqueue.next,
922 struct usbvision_frame, frame);
923 list_del(usbvision->outqueue.next);
924 spin_unlock_irqrestore(&usbvision->queue_lock, lock_flags);
925
926 f->grabstate = FrameState_Unused;
927
928 vb->memory = V4L2_MEMORY_MMAP;
929 vb->flags = V4L2_BUF_FLAG_MAPPED |
930 V4L2_BUF_FLAG_QUEUED |
931 V4L2_BUF_FLAG_DONE;
932 vb->index = f->index;
933 vb->sequence = f->sequence;
934 vb->timestamp = f->timestamp;
935 vb->field = V4L2_FIELD_NONE;
936 vb->bytesused = f->scanlength;
937
938 return 0;
939}
940
941static int vidioc_streamon(struct file *file, void *priv, enum v4l2_buf_type i)
942{
943 struct video_device *dev = video_devdata(file);
944 struct usb_usbvision *usbvision =
945 (struct usb_usbvision *) video_get_drvdata(dev);
946 int b=V4L2_BUF_TYPE_VIDEO_CAPTURE;
947
948 usbvision->streaming = Stream_On;
949 call_i2c_clients(usbvision,VIDIOC_STREAMON , &b);
950
951 return 0;
952}
953
954static int vidioc_streamoff(struct file *file,
955 void *priv, enum v4l2_buf_type type)
956{
957 struct video_device *dev = video_devdata(file);
958 struct usb_usbvision *usbvision =
959 (struct usb_usbvision *) video_get_drvdata(dev);
960 int b=V4L2_BUF_TYPE_VIDEO_CAPTURE;
961
962 if (type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
963 return -EINVAL;
964
965 if(usbvision->streaming == Stream_On) {
966 usbvision_stream_interrupt(usbvision);
967 /* Stop all video streamings */
968 call_i2c_clients(usbvision,VIDIOC_STREAMOFF , &b);
969 }
970 usbvision_empty_framequeues(usbvision);
971
972 return 0;
973}
974
Hans Verkuil78b526a2008-05-28 12:16:41 -0300975static int vidioc_enum_fmt_vid_cap (struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300976 struct v4l2_fmtdesc *vfd)
977{
978 if(vfd->index>=USBVISION_SUPPORTED_PALETTES-1) {
979 return -EINVAL;
980 }
981 vfd->flags = 0;
982 vfd->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
983 strcpy(vfd->description,usbvision_v4l2_format[vfd->index].desc);
984 vfd->pixelformat = usbvision_v4l2_format[vfd->index].format;
985 memset(vfd->reserved, 0, sizeof(vfd->reserved));
986 return 0;
987}
988
Hans Verkuil78b526a2008-05-28 12:16:41 -0300989static int vidioc_g_fmt_vid_cap (struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300990 struct v4l2_format *vf)
991{
992 struct video_device *dev = video_devdata(file);
993 struct usb_usbvision *usbvision =
994 (struct usb_usbvision *) video_get_drvdata(dev);
995 vf->fmt.pix.width = usbvision->curwidth;
996 vf->fmt.pix.height = usbvision->curheight;
997 vf->fmt.pix.pixelformat = usbvision->palette.format;
998 vf->fmt.pix.bytesperline =
999 usbvision->curwidth*usbvision->palette.bytes_per_pixel;
1000 vf->fmt.pix.sizeimage = vf->fmt.pix.bytesperline*usbvision->curheight;
1001 vf->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
1002 vf->fmt.pix.field = V4L2_FIELD_NONE; /* Always progressive image */
1003
1004 return 0;
1005}
1006
Hans Verkuil78b526a2008-05-28 12:16:41 -03001007static int vidioc_try_fmt_vid_cap (struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001008 struct v4l2_format *vf)
1009{
1010 struct video_device *dev = video_devdata(file);
1011 struct usb_usbvision *usbvision =
1012 (struct usb_usbvision *) video_get_drvdata(dev);
1013 int formatIdx;
1014
1015 /* Find requested format in available ones */
1016 for(formatIdx=0;formatIdx<USBVISION_SUPPORTED_PALETTES;formatIdx++) {
1017 if(vf->fmt.pix.pixelformat ==
1018 usbvision_v4l2_format[formatIdx].format) {
1019 usbvision->palette = usbvision_v4l2_format[formatIdx];
1020 break;
1021 }
1022 }
1023 /* robustness */
1024 if(formatIdx == USBVISION_SUPPORTED_PALETTES) {
1025 return -EINVAL;
1026 }
1027 RESTRICT_TO_RANGE(vf->fmt.pix.width, MIN_FRAME_WIDTH, MAX_FRAME_WIDTH);
1028 RESTRICT_TO_RANGE(vf->fmt.pix.height, MIN_FRAME_HEIGHT, MAX_FRAME_HEIGHT);
1029
1030 vf->fmt.pix.bytesperline = vf->fmt.pix.width*
1031 usbvision->palette.bytes_per_pixel;
1032 vf->fmt.pix.sizeimage = vf->fmt.pix.bytesperline*vf->fmt.pix.height;
1033
1034 return 0;
1035}
1036
Hans Verkuil78b526a2008-05-28 12:16:41 -03001037static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001038 struct v4l2_format *vf)
1039{
1040 struct video_device *dev = video_devdata(file);
1041 struct usb_usbvision *usbvision =
1042 (struct usb_usbvision *) video_get_drvdata(dev);
1043 int ret;
1044
Hans Verkuil78b526a2008-05-28 12:16:41 -03001045 if( 0 != (ret=vidioc_try_fmt_vid_cap (file, priv, vf)) ) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001046 return ret;
1047 }
1048
1049 /* stop io in case it is already in progress */
1050 if(usbvision->streaming == Stream_On) {
1051 if ((ret = usbvision_stream_interrupt(usbvision)))
1052 return ret;
1053 }
1054 usbvision_frames_free(usbvision);
1055 usbvision_empty_framequeues(usbvision);
1056
1057 usbvision->curFrame = NULL;
1058
1059 /* by now we are committed to the new data... */
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001060 mutex_lock(&usbvision->lock);
Thierry MERLEc5f48362007-05-08 17:22:29 -03001061 usbvision_set_output(usbvision, vf->fmt.pix.width, vf->fmt.pix.height);
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001062 mutex_unlock(&usbvision->lock);
Thierry MERLEc5f48362007-05-08 17:22:29 -03001063
1064 return 0;
1065}
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001066
Al Viro8a5ab412007-02-09 16:38:20 +00001067static ssize_t usbvision_v4l2_read(struct file *file, char __user *buf,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001068 size_t count, loff_t *ppos)
1069{
1070 struct video_device *dev = video_devdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -03001071 struct usb_usbvision *usbvision =
1072 (struct usb_usbvision *) video_get_drvdata(dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001073 int noblock = file->f_flags & O_NONBLOCK;
1074 unsigned long lock_flags;
1075
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001076 int ret,i;
1077 struct usbvision_frame *frame;
1078
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001079 PDEBUG(DBG_IO, "%s: %ld bytes, noblock=%d", __func__,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001080 (unsigned long)count, noblock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001081
1082 if (!USBVISION_IS_OPERATIONAL(usbvision) || (buf == NULL))
1083 return -EFAULT;
1084
Thierry MERLEc5f48362007-05-08 17:22:29 -03001085 /* This entry point is compatible with the mmap routines
1086 so that a user can do either VIDIOC_QBUF/VIDIOC_DQBUF
1087 to get frames or call read on the device. */
Thierry MERLE6f78e182007-02-07 10:13:11 -03001088 if(!usbvision->num_frames) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001089 /* First, allocate some frames to work with
1090 if this has not been done with VIDIOC_REQBUF */
Thierry MERLE6f78e182007-02-07 10:13:11 -03001091 usbvision_frames_free(usbvision);
1092 usbvision_empty_framequeues(usbvision);
1093 usbvision_frames_alloc(usbvision,USBVISION_NUMFRAMES);
1094 }
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001095
Thierry MERLE6f78e182007-02-07 10:13:11 -03001096 if(usbvision->streaming != Stream_On) {
1097 /* no stream is running, make it running ! */
1098 usbvision->streaming = Stream_On;
1099 call_i2c_clients(usbvision,VIDIOC_STREAMON , NULL);
1100 }
1101
Thierry MERLEc5f48362007-05-08 17:22:29 -03001102 /* Then, enqueue as many frames as possible
1103 (like a user of VIDIOC_QBUF would do) */
Thierry MERLE6f78e182007-02-07 10:13:11 -03001104 for(i=0;i<usbvision->num_frames;i++) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001105 frame = &usbvision->frame[i];
1106 if(frame->grabstate == FrameState_Unused) {
1107 /* Mark it as ready and enqueue frame */
1108 frame->grabstate = FrameState_Ready;
1109 frame->scanstate = ScanState_Scanning;
Thierry MERLEc5f48362007-05-08 17:22:29 -03001110 /* Accumulated in usbvision_parse_data() */
1111 frame->scanlength = 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001112
1113 /* set v4l2_format index */
1114 frame->v4l2_format = usbvision->palette;
1115
1116 spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
1117 list_add_tail(&frame->frame, &usbvision->inqueue);
Thierry MERLEc5f48362007-05-08 17:22:29 -03001118 spin_unlock_irqrestore(&usbvision->queue_lock,
1119 lock_flags);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001120 }
1121 }
1122
1123 /* Then try to steal a frame (like a VIDIOC_DQBUF would do) */
1124 if (list_empty(&(usbvision->outqueue))) {
1125 if(noblock)
1126 return -EAGAIN;
1127
1128 ret = wait_event_interruptible
1129 (usbvision->wait_frame,
1130 !list_empty(&(usbvision->outqueue)));
1131 if (ret)
1132 return ret;
1133 }
1134
1135 spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
1136 frame = list_entry(usbvision->outqueue.next,
1137 struct usbvision_frame, frame);
1138 list_del(usbvision->outqueue.next);
1139 spin_unlock_irqrestore(&usbvision->queue_lock, lock_flags);
1140
1141 /* An error returns an empty frame */
1142 if (frame->grabstate == FrameState_Error) {
1143 frame->bytes_read = 0;
1144 return 0;
1145 }
1146
Thierry MERLEc5f48362007-05-08 17:22:29 -03001147 PDEBUG(DBG_IO, "%s: frmx=%d, bytes_read=%ld, scanlength=%ld",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001148 __func__,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001149 frame->index, frame->bytes_read, frame->scanlength);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001150
1151 /* copy bytes to user space; we allow for partials reads */
1152 if ((count + frame->bytes_read) > (unsigned long)frame->scanlength)
1153 count = frame->scanlength - frame->bytes_read;
1154
1155 if (copy_to_user(buf, frame->data + frame->bytes_read, count)) {
1156 return -EFAULT;
1157 }
1158
1159 frame->bytes_read += count;
Thierry MERLEc5f48362007-05-08 17:22:29 -03001160 PDEBUG(DBG_IO, "%s: {copy} count used=%ld, new bytes_read=%ld",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001161 __func__,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001162 (unsigned long)count, frame->bytes_read);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001163
Thierry MERLEc5f48362007-05-08 17:22:29 -03001164 /* For now, forget the frame if it has not been read in one shot. */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001165/* if (frame->bytes_read >= frame->scanlength) {// All data has been read */
1166 frame->bytes_read = 0;
1167
1168 /* Mark it as available to be used again. */
Thierry MERLEc430ca1e2006-12-29 20:32:08 -03001169 frame->grabstate = FrameState_Unused;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001170/* } */
1171
1172 return count;
1173}
1174
1175static int usbvision_v4l2_mmap(struct file *file, struct vm_area_struct *vma)
1176{
1177 unsigned long size = vma->vm_end - vma->vm_start,
1178 start = vma->vm_start;
1179 void *pos;
1180 u32 i;
1181
1182 struct video_device *dev = video_devdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -03001183 struct usb_usbvision *usbvision =
1184 (struct usb_usbvision *) video_get_drvdata(dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001185
Thierry MERLE6f78e182007-02-07 10:13:11 -03001186 PDEBUG(DBG_MMAP, "mmap");
1187
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001188 mutex_lock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001189
1190 if (!USBVISION_IS_OPERATIONAL(usbvision)) {
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001191 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001192 return -EFAULT;
1193 }
1194
1195 if (!(vma->vm_flags & VM_WRITE) ||
Thierry MERLE6f78e182007-02-07 10:13:11 -03001196 size != PAGE_ALIGN(usbvision->max_frame_size)) {
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001197 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001198 return -EINVAL;
1199 }
1200
Thierry MERLE6f78e182007-02-07 10:13:11 -03001201 for (i = 0; i < usbvision->num_frames; i++) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001202 if (((PAGE_ALIGN(usbvision->max_frame_size)*i) >> PAGE_SHIFT) ==
1203 vma->vm_pgoff)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001204 break;
1205 }
Thierry MERLE6f78e182007-02-07 10:13:11 -03001206 if (i == usbvision->num_frames) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001207 PDEBUG(DBG_MMAP,
1208 "mmap: user supplied mapping address is out of range");
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001209 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001210 return -EINVAL;
1211 }
1212
1213 /* VM_IO is eventually going to replace PageReserved altogether */
1214 vma->vm_flags |= VM_IO;
1215 vma->vm_flags |= VM_RESERVED; /* avoid to swap out this VMA */
1216
1217 pos = usbvision->frame[i].data;
1218 while (size > 0) {
1219
1220 if (vm_insert_page(vma, start, vmalloc_to_page(pos))) {
Thierry MERLEc876a342006-12-09 16:42:54 -03001221 PDEBUG(DBG_MMAP, "mmap: vm_insert_page failed");
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001222 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001223 return -EAGAIN;
1224 }
1225 start += PAGE_SIZE;
1226 pos += PAGE_SIZE;
1227 size -= PAGE_SIZE;
1228 }
1229
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001230 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001231 return 0;
1232}
1233
1234
1235/*
1236 * Here comes the stuff for radio on usbvision based devices
1237 *
1238 */
1239static int usbvision_radio_open(struct inode *inode, struct file *file)
1240{
1241 struct video_device *dev = video_devdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -03001242 struct usb_usbvision *usbvision =
1243 (struct usb_usbvision *) video_get_drvdata(dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001244 int errCode = 0;
1245
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001246 PDEBUG(DBG_IO, "%s:", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001247
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001248 mutex_lock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001249
1250 if (usbvision->user) {
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001251 err("%s: Someone tried to open an already opened USBVision Radio!", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001252 errCode = -EBUSY;
1253 }
1254 else {
1255 if(PowerOnAtOpen) {
1256 usbvision_reset_powerOffTimer(usbvision);
1257 if (usbvision->power == 0) {
1258 usbvision_power_on(usbvision);
Thierry MERLE1ff16c22007-04-14 16:23:49 -03001259 usbvision_i2c_register(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001260 }
1261 }
1262
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001263 /* Alternate interface 1 is is the biggest frame size */
1264 errCode = usbvision_set_alternate(usbvision);
1265 if (errCode < 0) {
1266 usbvision->last_error = errCode;
Andrew Morton544e6172007-12-12 18:25:23 -03001267 errCode = -EBUSY;
1268 goto out;
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001269 }
1270
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001271 // If so far no errors then we shall start the radio
1272 usbvision->radio = 1;
1273 call_i2c_clients(usbvision,AUDC_SET_RADIO,&usbvision->tuner_type);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001274 usbvision_set_audio(usbvision, USBVISION_AUDIO_RADIO);
1275 usbvision->user++;
1276 }
1277
1278 if (errCode) {
1279 if (PowerOnAtOpen) {
Thierry MERLE1ff16c22007-04-14 16:23:49 -03001280 usbvision_i2c_unregister(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001281 usbvision_power_off(usbvision);
1282 usbvision->initialized = 0;
1283 }
1284 }
Andrew Morton544e6172007-12-12 18:25:23 -03001285out:
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001286 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001287 return errCode;
1288}
1289
1290
1291static int usbvision_radio_close(struct inode *inode, struct file *file)
1292{
1293 struct video_device *dev = video_devdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -03001294 struct usb_usbvision *usbvision =
1295 (struct usb_usbvision *) video_get_drvdata(dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001296 int errCode = 0;
1297
1298 PDEBUG(DBG_IO, "");
1299
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001300 mutex_lock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001301
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001302 /* Set packet size to 0 */
1303 usbvision->ifaceAlt=0;
1304 errCode = usb_set_interface(usbvision->dev, usbvision->iface,
1305 usbvision->ifaceAlt);
1306
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001307 usbvision_audio_off(usbvision);
1308 usbvision->radio=0;
1309 usbvision->user--;
1310
1311 if (PowerOnAtOpen) {
1312 usbvision_set_powerOffTimer(usbvision);
1313 usbvision->initialized = 0;
1314 }
1315
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001316 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001317
1318 if (usbvision->remove_pending) {
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001319 printk(KERN_INFO "%s: Final disconnect\n", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001320 usbvision_release(usbvision);
1321 }
1322
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001323 PDEBUG(DBG_IO, "success");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001324 return errCode;
1325}
1326
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001327/*
1328 * Here comes the stuff for vbi on usbvision based devices
1329 *
1330 */
1331static int usbvision_vbi_open(struct inode *inode, struct file *file)
1332{
1333 /* TODO */
Thierry MERLEc5f48362007-05-08 17:22:29 -03001334 return -ENODEV;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001335}
1336
1337static int usbvision_vbi_close(struct inode *inode, struct file *file)
1338{
1339 /* TODO */
Thierry MERLEc5f48362007-05-08 17:22:29 -03001340 return -ENODEV;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001341}
1342
1343static int usbvision_do_vbi_ioctl(struct inode *inode, struct file *file,
1344 unsigned int cmd, void *arg)
1345{
1346 /* TODO */
Thierry MERLEc5f48362007-05-08 17:22:29 -03001347 return -ENOIOCTLCMD;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001348}
1349
1350static int usbvision_vbi_ioctl(struct inode *inode, struct file *file,
1351 unsigned int cmd, unsigned long arg)
1352{
1353 return video_usercopy(inode, file, cmd, arg, usbvision_do_vbi_ioctl);
1354}
1355
1356
1357//
1358// Video registration stuff
1359//
1360
1361// Video template
Arjan van de Venfa027c22007-02-12 00:55:33 -08001362static const struct file_operations usbvision_fops = {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001363 .owner = THIS_MODULE,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001364 .open = usbvision_v4l2_open,
1365 .release = usbvision_v4l2_close,
1366 .read = usbvision_v4l2_read,
1367 .mmap = usbvision_v4l2_mmap,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001368 .ioctl = video_ioctl2,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001369 .llseek = no_llseek,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001370/* .poll = video_poll, */
Thierry MERLEc5f48362007-05-08 17:22:29 -03001371 .compat_ioctl = v4l_compat_ioctl32,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001372};
Hans Verkuila3998102008-07-21 02:57:38 -03001373
1374static const struct v4l2_ioctl_ops usbvision_ioctl_ops = {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001375 .vidioc_querycap = vidioc_querycap,
Hans Verkuil78b526a2008-05-28 12:16:41 -03001376 .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap,
1377 .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap,
1378 .vidioc_try_fmt_vid_cap = vidioc_try_fmt_vid_cap,
1379 .vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001380 .vidioc_reqbufs = vidioc_reqbufs,
1381 .vidioc_querybuf = vidioc_querybuf,
1382 .vidioc_qbuf = vidioc_qbuf,
1383 .vidioc_dqbuf = vidioc_dqbuf,
1384 .vidioc_s_std = vidioc_s_std,
1385 .vidioc_enum_input = vidioc_enum_input,
1386 .vidioc_g_input = vidioc_g_input,
1387 .vidioc_s_input = vidioc_s_input,
1388 .vidioc_queryctrl = vidioc_queryctrl,
1389 .vidioc_g_audio = vidioc_g_audio,
Al Viroed4d6372007-09-26 01:53:42 +01001390 .vidioc_s_audio = vidioc_s_audio,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001391 .vidioc_g_ctrl = vidioc_g_ctrl,
1392 .vidioc_s_ctrl = vidioc_s_ctrl,
1393 .vidioc_streamon = vidioc_streamon,
1394 .vidioc_streamoff = vidioc_streamoff,
1395#ifdef CONFIG_VIDEO_V4L1_COMPAT
1396/* .vidiocgmbuf = vidiocgmbuf, */
1397#endif
1398 .vidioc_g_tuner = vidioc_g_tuner,
1399 .vidioc_s_tuner = vidioc_s_tuner,
1400 .vidioc_g_frequency = vidioc_g_frequency,
1401 .vidioc_s_frequency = vidioc_s_frequency,
1402#ifdef CONFIG_VIDEO_ADV_DEBUG
1403 .vidioc_g_register = vidioc_g_register,
1404 .vidioc_s_register = vidioc_s_register,
1405#endif
Hans Verkuila3998102008-07-21 02:57:38 -03001406};
1407
1408static struct video_device usbvision_video_template = {
1409 .owner = THIS_MODULE,
1410 .type = VID_TYPE_TUNER | VID_TYPE_CAPTURE,
1411 .fops = &usbvision_fops,
1412 .ioctl_ops = &usbvision_ioctl_ops,
1413 .name = "usbvision-video",
1414 .release = video_device_release,
1415 .minor = -1,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001416 .tvnorms = USBVISION_NORMS,
1417 .current_norm = V4L2_STD_PAL
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001418};
1419
1420
1421// Radio template
Arjan van de Venfa027c22007-02-12 00:55:33 -08001422static const struct file_operations usbvision_radio_fops = {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001423 .owner = THIS_MODULE,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001424 .open = usbvision_radio_open,
1425 .release = usbvision_radio_close,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001426 .ioctl = video_ioctl2,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001427 .llseek = no_llseek,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001428 .compat_ioctl = v4l_compat_ioctl32,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001429};
1430
Hans Verkuila3998102008-07-21 02:57:38 -03001431static const struct v4l2_ioctl_ops usbvision_radio_ioctl_ops = {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001432 .vidioc_querycap = vidioc_querycap,
1433 .vidioc_enum_input = vidioc_enum_input,
1434 .vidioc_g_input = vidioc_g_input,
1435 .vidioc_s_input = vidioc_s_input,
1436 .vidioc_queryctrl = vidioc_queryctrl,
1437 .vidioc_g_audio = vidioc_g_audio,
Al Viroed4d6372007-09-26 01:53:42 +01001438 .vidioc_s_audio = vidioc_s_audio,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001439 .vidioc_g_ctrl = vidioc_g_ctrl,
1440 .vidioc_s_ctrl = vidioc_s_ctrl,
1441 .vidioc_g_tuner = vidioc_g_tuner,
1442 .vidioc_s_tuner = vidioc_s_tuner,
1443 .vidioc_g_frequency = vidioc_g_frequency,
1444 .vidioc_s_frequency = vidioc_s_frequency,
Hans Verkuila3998102008-07-21 02:57:38 -03001445};
1446
1447static struct video_device usbvision_radio_template = {
1448 .owner = THIS_MODULE,
1449 .type = VID_TYPE_TUNER,
1450 .fops = &usbvision_radio_fops,
1451 .name = "usbvision-radio",
1452 .release = video_device_release,
1453 .minor = -1,
1454 .ioctl_ops = &usbvision_radio_ioctl_ops,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001455
Thierry MERLEc5f48362007-05-08 17:22:29 -03001456 .tvnorms = USBVISION_NORMS,
1457 .current_norm = V4L2_STD_PAL
1458};
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001459
1460// vbi template
Arjan van de Venfa027c22007-02-12 00:55:33 -08001461static const struct file_operations usbvision_vbi_fops = {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001462 .owner = THIS_MODULE,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001463 .open = usbvision_vbi_open,
1464 .release = usbvision_vbi_close,
1465 .ioctl = usbvision_vbi_ioctl,
1466 .llseek = no_llseek,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001467 .compat_ioctl = v4l_compat_ioctl32,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001468};
1469
1470static struct video_device usbvision_vbi_template=
1471{
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001472 .owner = THIS_MODULE,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001473 .type = VID_TYPE_TUNER,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001474 .fops = &usbvision_vbi_fops,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001475 .release = video_device_release,
1476 .name = "usbvision-vbi",
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001477 .minor = -1,
1478};
1479
1480
1481static struct video_device *usbvision_vdev_init(struct usb_usbvision *usbvision,
1482 struct video_device *vdev_template,
1483 char *name)
1484{
1485 struct usb_device *usb_dev = usbvision->dev;
1486 struct video_device *vdev;
1487
1488 if (usb_dev == NULL) {
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001489 err("%s: usbvision->dev is not set", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001490 return NULL;
1491 }
1492
1493 vdev = video_device_alloc();
1494 if (NULL == vdev) {
1495 return NULL;
1496 }
1497 *vdev = *vdev_template;
1498// vdev->minor = -1;
Hans Verkuil5e85e732008-07-20 06:31:39 -03001499 vdev->parent = &usb_dev->dev;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001500 snprintf(vdev->name, sizeof(vdev->name), "%s", name);
1501 video_set_drvdata(vdev, usbvision);
1502 return vdev;
1503}
1504
1505// unregister video4linux devices
1506static void usbvision_unregister_video(struct usb_usbvision *usbvision)
1507{
1508 // vbi Device:
1509 if (usbvision->vbi) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001510 PDEBUG(DBG_PROBE, "unregister /dev/vbi%d [v4l2]",
1511 usbvision->vbi->minor & 0x1f);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001512 if (usbvision->vbi->minor != -1) {
1513 video_unregister_device(usbvision->vbi);
Thierry MERLEc5f48362007-05-08 17:22:29 -03001514 } else {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001515 video_device_release(usbvision->vbi);
1516 }
1517 usbvision->vbi = NULL;
1518 }
1519
1520 // Radio Device:
1521 if (usbvision->rdev) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001522 PDEBUG(DBG_PROBE, "unregister /dev/radio%d [v4l2]",
1523 usbvision->rdev->minor & 0x1f);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001524 if (usbvision->rdev->minor != -1) {
1525 video_unregister_device(usbvision->rdev);
Thierry MERLEc5f48362007-05-08 17:22:29 -03001526 } else {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001527 video_device_release(usbvision->rdev);
1528 }
1529 usbvision->rdev = NULL;
1530 }
1531
1532 // Video Device:
1533 if (usbvision->vdev) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001534 PDEBUG(DBG_PROBE, "unregister /dev/video%d [v4l2]",
1535 usbvision->vdev->minor & 0x1f);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001536 if (usbvision->vdev->minor != -1) {
1537 video_unregister_device(usbvision->vdev);
Thierry MERLEc5f48362007-05-08 17:22:29 -03001538 } else {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001539 video_device_release(usbvision->vdev);
1540 }
1541 usbvision->vdev = NULL;
1542 }
1543}
1544
1545// register video4linux devices
1546static int __devinit usbvision_register_video(struct usb_usbvision *usbvision)
1547{
1548 // Video Device:
Thierry MERLEc5f48362007-05-08 17:22:29 -03001549 usbvision->vdev = usbvision_vdev_init(usbvision,
1550 &usbvision_video_template,
1551 "USBVision Video");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001552 if (usbvision->vdev == NULL) {
1553 goto err_exit;
1554 }
Thierry MERLEc5f48362007-05-08 17:22:29 -03001555 if (video_register_device(usbvision->vdev,
1556 VFL_TYPE_GRABBER,
1557 video_nr)<0) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001558 goto err_exit;
1559 }
Thierry MERLEc5f48362007-05-08 17:22:29 -03001560 printk(KERN_INFO "USBVision[%d]: registered USBVision Video device /dev/video%d [v4l2]\n",
1561 usbvision->nr,usbvision->vdev->minor & 0x1f);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001562
1563 // Radio Device:
1564 if (usbvision_device_data[usbvision->DevModel].Radio) {
1565 // usbvision has radio
Thierry MERLEc5f48362007-05-08 17:22:29 -03001566 usbvision->rdev = usbvision_vdev_init(usbvision,
1567 &usbvision_radio_template,
1568 "USBVision Radio");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001569 if (usbvision->rdev == NULL) {
1570 goto err_exit;
1571 }
Thierry MERLEc5f48362007-05-08 17:22:29 -03001572 if (video_register_device(usbvision->rdev,
1573 VFL_TYPE_RADIO,
1574 radio_nr)<0) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001575 goto err_exit;
1576 }
Thierry MERLEc5f48362007-05-08 17:22:29 -03001577 printk(KERN_INFO "USBVision[%d]: registered USBVision Radio device /dev/radio%d [v4l2]\n",
1578 usbvision->nr, usbvision->rdev->minor & 0x1f);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001579 }
1580 // vbi Device:
1581 if (usbvision_device_data[usbvision->DevModel].vbi) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001582 usbvision->vbi = usbvision_vdev_init(usbvision,
1583 &usbvision_vbi_template,
1584 "USBVision VBI");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001585 if (usbvision->vdev == NULL) {
1586 goto err_exit;
1587 }
Thierry MERLEc5f48362007-05-08 17:22:29 -03001588 if (video_register_device(usbvision->vbi,
1589 VFL_TYPE_VBI,
1590 vbi_nr)<0) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001591 goto err_exit;
1592 }
Thierry MERLEc5f48362007-05-08 17:22:29 -03001593 printk(KERN_INFO "USBVision[%d]: registered USBVision VBI device /dev/vbi%d [v4l2] (Not Working Yet!)\n",
1594 usbvision->nr,usbvision->vbi->minor & 0x1f);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001595 }
1596 // all done
1597 return 0;
1598
1599 err_exit:
1600 err("USBVision[%d]: video_register_device() failed", usbvision->nr);
1601 usbvision_unregister_video(usbvision);
1602 return -1;
1603}
1604
1605/*
1606 * usbvision_alloc()
1607 *
Thierry MERLEc5f48362007-05-08 17:22:29 -03001608 * This code allocates the struct usb_usbvision.
1609 * It is filled with default values.
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001610 *
1611 * Returns NULL on error, a pointer to usb_usbvision else.
1612 *
1613 */
1614static struct usb_usbvision *usbvision_alloc(struct usb_device *dev)
1615{
1616 struct usb_usbvision *usbvision;
1617
Thierry MERLEc5f48362007-05-08 17:22:29 -03001618 if ((usbvision = kzalloc(sizeof(struct usb_usbvision), GFP_KERNEL)) ==
1619 NULL) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001620 goto err_exit;
1621 }
1622
1623 usbvision->dev = dev;
1624
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001625 mutex_init(&usbvision->lock); /* available */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001626
1627 // prepare control urb for control messages during interrupts
1628 usbvision->ctrlUrb = usb_alloc_urb(USBVISION_URB_FRAMES, GFP_KERNEL);
1629 if (usbvision->ctrlUrb == NULL) {
1630 goto err_exit;
1631 }
1632 init_waitqueue_head(&usbvision->ctrlUrb_wq);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001633
1634 usbvision_init_powerOffTimer(usbvision);
1635
1636 return usbvision;
1637
1638err_exit:
1639 if (usbvision && usbvision->ctrlUrb) {
1640 usb_free_urb(usbvision->ctrlUrb);
1641 }
1642 if (usbvision) {
1643 kfree(usbvision);
1644 }
1645 return NULL;
1646}
1647
1648/*
1649 * usbvision_release()
1650 *
1651 * This code does final release of struct usb_usbvision. This happens
1652 * after the device is disconnected -and- all clients closed their files.
1653 *
1654 */
1655static void usbvision_release(struct usb_usbvision *usbvision)
1656{
1657 PDEBUG(DBG_PROBE, "");
1658
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001659 mutex_lock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001660
1661 usbvision_reset_powerOffTimer(usbvision);
1662
1663 usbvision->initialized = 0;
1664
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001665 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001666
1667 usbvision_remove_sysfs(usbvision->vdev);
1668 usbvision_unregister_video(usbvision);
1669
1670 if (usbvision->ctrlUrb) {
1671 usb_free_urb(usbvision->ctrlUrb);
1672 }
1673
1674 kfree(usbvision);
1675
1676 PDEBUG(DBG_PROBE, "success");
1677}
1678
1679
Thierry MERLEc5f48362007-05-08 17:22:29 -03001680/*********************** usb interface **********************************/
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001681
1682static void usbvision_configure_video(struct usb_usbvision *usbvision)
1683{
Thierry MERLEc5f48362007-05-08 17:22:29 -03001684 int model;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001685
1686 if (usbvision == NULL)
1687 return;
1688
1689 model = usbvision->DevModel;
1690 usbvision->palette = usbvision_v4l2_format[2]; // V4L2_PIX_FMT_RGB24;
1691
Trent Piephoc682b3a2007-04-14 15:16:26 -03001692 if (usbvision_device_data[usbvision->DevModel].Vin_Reg2_override) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001693 usbvision->Vin_Reg2_Preset =
1694 usbvision_device_data[usbvision->DevModel].Vin_Reg2;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001695 } else {
1696 usbvision->Vin_Reg2_Preset = 0;
1697 }
1698
Thierry MERLEc5f48362007-05-08 17:22:29 -03001699 usbvision->tvnormId = usbvision_device_data[model].VideoNorm;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001700
1701 usbvision->video_inputs = usbvision_device_data[model].VideoChannels;
1702 usbvision->ctl_input = 0;
1703
1704 /* This should be here to make i2c clients to be able to register */
Thierry MERLEc5f48362007-05-08 17:22:29 -03001705 /* first switch off audio */
1706 usbvision_audio_off(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001707 if (!PowerOnAtOpen) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001708 /* and then power up the noisy tuner */
1709 usbvision_power_on(usbvision);
Thierry MERLE1ff16c22007-04-14 16:23:49 -03001710 usbvision_i2c_register(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001711 }
1712}
1713
1714/*
1715 * usbvision_probe()
1716 *
1717 * This procedure queries device descriptor and accepts the interface
1718 * if it looks like USBVISION video device
1719 *
1720 */
Mauro Carvalho Chehab659ae562007-04-14 15:09:59 -03001721static int __devinit usbvision_probe(struct usb_interface *intf,
1722 const struct usb_device_id *devid)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001723{
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001724 struct usb_device *dev = usb_get_dev(interface_to_usbdev(intf));
1725 struct usb_interface *uif;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001726 __u8 ifnum = intf->altsetting->desc.bInterfaceNumber;
1727 const struct usb_host_interface *interface;
1728 struct usb_usbvision *usbvision = NULL;
1729 const struct usb_endpoint_descriptor *endpoint;
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001730 int model,i;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001731
1732 PDEBUG(DBG_PROBE, "VID=%#04x, PID=%#04x, ifnum=%u",
Mauro Carvalho Chehab659ae562007-04-14 15:09:59 -03001733 dev->descriptor.idVendor,
1734 dev->descriptor.idProduct, ifnum);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001735
Mauro Carvalho Chehab659ae562007-04-14 15:09:59 -03001736 model = devid->driver_info;
Mauro Carvalho Chehabf8a389d2007-04-14 15:17:35 -03001737 if ( (model<0) || (model>=usbvision_device_data_size) ) {
Thierry MERLE672d0132007-04-14 17:53:55 -03001738 PDEBUG(DBG_PROBE, "model out of bounds %d",model);
Mauro Carvalho Chehabf8a389d2007-04-14 15:17:35 -03001739 return -ENODEV;
1740 }
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001741 printk(KERN_INFO "%s: %s found\n", __func__,
Mauro Carvalho Chehab659ae562007-04-14 15:09:59 -03001742 usbvision_device_data[model].ModelString);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001743
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001744 if (usbvision_device_data[model].Interface >= 0) {
1745 interface = &dev->actconfig->interface[usbvision_device_data[model].Interface]->altsetting[0];
Thierry MERLEc5f48362007-05-08 17:22:29 -03001746 } else {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001747 interface = &dev->actconfig->interface[ifnum]->altsetting[0];
1748 }
1749 endpoint = &interface->endpoint[1].desc;
Thierry MERLEc5f48362007-05-08 17:22:29 -03001750 if ((endpoint->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) !=
1751 USB_ENDPOINT_XFER_ISOC) {
1752 err("%s: interface %d. has non-ISO endpoint!",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001753 __func__, ifnum);
Thierry MERLEc5f48362007-05-08 17:22:29 -03001754 err("%s: Endpoint attributes %d",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001755 __func__, endpoint->bmAttributes);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001756 return -ENODEV;
1757 }
Thierry MERLEc5f48362007-05-08 17:22:29 -03001758 if ((endpoint->bEndpointAddress & USB_ENDPOINT_DIR_MASK) ==
1759 USB_DIR_OUT) {
1760 err("%s: interface %d. has ISO OUT endpoint!",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001761 __func__, ifnum);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001762 return -ENODEV;
1763 }
1764
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001765 if ((usbvision = usbvision_alloc(dev)) == NULL) {
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001766 err("%s: couldn't allocate USBVision struct", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001767 return -ENOMEM;
1768 }
Mauro Carvalho Chehab659ae562007-04-14 15:09:59 -03001769
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001770 if (dev->descriptor.bNumConfigurations > 1) {
1771 usbvision->bridgeType = BRIDGE_NT1004;
Thierry MERLEc5f48362007-05-08 17:22:29 -03001772 } else if (model == DAZZLE_DVC_90_REV_1_SECAM) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001773 usbvision->bridgeType = BRIDGE_NT1005;
Thierry MERLEc5f48362007-05-08 17:22:29 -03001774 } else {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001775 usbvision->bridgeType = BRIDGE_NT1003;
1776 }
1777 PDEBUG(DBG_PROBE, "bridgeType %d", usbvision->bridgeType);
1778
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001779 mutex_lock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001780
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001781 /* compute alternate max packet sizes */
1782 uif = dev->actconfig->interface[0];
1783
1784 usbvision->num_alt=uif->num_altsetting;
1785 PDEBUG(DBG_PROBE, "Alternate settings: %i",usbvision->num_alt);
1786 usbvision->alt_max_pkt_size = kmalloc(32*
1787 usbvision->num_alt,GFP_KERNEL);
1788 if (usbvision->alt_max_pkt_size == NULL) {
1789 err("usbvision: out of memory!\n");
Daniel Walker09911122007-12-12 18:22:48 -03001790 mutex_unlock(&usbvision->lock);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001791 return -ENOMEM;
1792 }
1793
1794 for (i = 0; i < usbvision->num_alt ; i++) {
1795 u16 tmp = le16_to_cpu(uif->altsetting[i].endpoint[1].desc.
1796 wMaxPacketSize);
1797 usbvision->alt_max_pkt_size[i] =
1798 (tmp & 0x07ff) * (((tmp & 0x1800) >> 11) + 1);
1799 PDEBUG(DBG_PROBE, "Alternate setting %i, max size= %i",i,
1800 usbvision->alt_max_pkt_size[i]);
1801 }
1802
1803
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001804 usbvision->nr = usbvision_nr++;
1805
1806 usbvision->have_tuner = usbvision_device_data[model].Tuner;
1807 if (usbvision->have_tuner) {
1808 usbvision->tuner_type = usbvision_device_data[model].TunerType;
1809 }
1810
1811 usbvision->tuner_addr = ADDR_UNSET;
1812
1813 usbvision->DevModel = model;
1814 usbvision->remove_pending = 0;
1815 usbvision->iface = ifnum;
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001816 usbvision->ifaceAlt = 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001817 usbvision->video_endp = endpoint->bEndpointAddress;
1818 usbvision->isocPacketSize = 0;
1819 usbvision->usb_bandwidth = 0;
1820 usbvision->user = 0;
1821 usbvision->streaming = Stream_Off;
1822 usbvision_register_video(usbvision);
1823 usbvision_configure_video(usbvision);
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001824 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001825
1826
1827 usb_set_intfdata (intf, usbvision);
1828 usbvision_create_sysfs(usbvision->vdev);
1829
1830 PDEBUG(DBG_PROBE, "success");
1831 return 0;
1832}
1833
1834
1835/*
1836 * usbvision_disconnect()
1837 *
1838 * This procedure stops all driver activity, deallocates interface-private
1839 * structure (pointed by 'ptr') and after that driver should be removable
1840 * with no ill consequences.
1841 *
1842 */
1843static void __devexit usbvision_disconnect(struct usb_interface *intf)
1844{
1845 struct usb_usbvision *usbvision = usb_get_intfdata(intf);
1846
1847 PDEBUG(DBG_PROBE, "");
1848
1849 if (usbvision == NULL) {
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001850 err("%s: usb_get_intfdata() failed", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001851 return;
1852 }
1853 usb_set_intfdata (intf, NULL);
1854
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001855 mutex_lock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001856
1857 // At this time we ask to cancel outstanding URBs
1858 usbvision_stop_isoc(usbvision);
1859
1860 if (usbvision->power) {
Thierry MERLE1ff16c22007-04-14 16:23:49 -03001861 usbvision_i2c_unregister(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001862 usbvision_power_off(usbvision);
1863 }
1864 usbvision->remove_pending = 1; // Now all ISO data will be ignored
1865
1866 usb_put_dev(usbvision->dev);
1867 usbvision->dev = NULL; // USB device is no more
1868
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001869 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001870
1871 if (usbvision->user) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001872 printk(KERN_INFO "%s: In use, disconnect pending\n",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001873 __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001874 wake_up_interruptible(&usbvision->wait_frame);
1875 wake_up_interruptible(&usbvision->wait_stream);
Thierry MERLEc5f48362007-05-08 17:22:29 -03001876 } else {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001877 usbvision_release(usbvision);
1878 }
1879
1880 PDEBUG(DBG_PROBE, "success");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001881}
1882
1883static struct usb_driver usbvision_driver = {
1884 .name = "usbvision",
1885 .id_table = usbvision_table,
1886 .probe = usbvision_probe,
1887 .disconnect = usbvision_disconnect
1888};
1889
1890/*
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001891 * usbvision_init()
1892 *
1893 * This code is run to initialize the driver.
1894 *
1895 */
1896static int __init usbvision_init(void)
1897{
1898 int errCode;
1899
1900 PDEBUG(DBG_PROBE, "");
1901
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001902 PDEBUG(DBG_IO, "IO debugging is enabled [video]");
1903 PDEBUG(DBG_PROBE, "PROBE debugging is enabled [video]");
Thierry MERLEc876a342006-12-09 16:42:54 -03001904 PDEBUG(DBG_MMAP, "MMAP debugging is enabled [video]");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001905
1906 /* disable planar mode support unless compression enabled */
1907 if (isocMode != ISOC_MODE_COMPRESS ) {
1908 // FIXME : not the right way to set supported flag
1909 usbvision_v4l2_format[6].supported = 0; // V4L2_PIX_FMT_YVU420
1910 usbvision_v4l2_format[7].supported = 0; // V4L2_PIX_FMT_YUV422P
1911 }
1912
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001913 errCode = usb_register(&usbvision_driver);
1914
1915 if (errCode == 0) {
Dwaine Gardende6a1b82007-01-07 21:13:55 -03001916 printk(KERN_INFO DRIVER_DESC " : " USBVISION_VERSION_STRING "\n");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001917 PDEBUG(DBG_PROBE, "success");
1918 }
1919 return errCode;
1920}
1921
1922static void __exit usbvision_exit(void)
1923{
1924 PDEBUG(DBG_PROBE, "");
1925
1926 usb_deregister(&usbvision_driver);
1927 PDEBUG(DBG_PROBE, "success");
1928}
1929
1930module_init(usbvision_init);
1931module_exit(usbvision_exit);
1932
1933/*
1934 * Overrides for Emacs so that we follow Linus's tabbing style.
1935 * ---------------------------------------------------------------------------
1936 * Local variables:
1937 * c-basic-offset: 8
1938 * End:
1939 */