blob: 7c61c6d5cede15b6472b173640d92325494824bb [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/vmalloc.h>
57#include <linux/module.h>
58#include <linux/init.h>
59#include <linux/spinlock.h>
60#include <asm/io.h>
61#include <linux/videodev2.h>
62#include <linux/video_decoder.h>
63#include <linux/i2c.h>
64
65#include <media/saa7115.h>
66#include <media/v4l2-common.h>
Hans Verkuil35ea11f2008-07-20 08:12:02 -030067#include <media/v4l2-ioctl.h>
Thierry MERLE483dfdb2006-12-04 08:31:45 -030068#include <media/tuner.h>
Thierry MERLE483dfdb2006-12-04 08:31:45 -030069
Mauro Carvalho Chehaba1ed5512006-12-09 11:41:59 -030070#include <linux/workqueue.h>
Thierry MERLE483dfdb2006-12-04 08:31:45 -030071
Thierry MERLE483dfdb2006-12-04 08:31:45 -030072#include "usbvision.h"
Mauro Carvalho Chehab659ae562007-04-14 15:09:59 -030073#include "usbvision-cards.h"
Thierry MERLE483dfdb2006-12-04 08:31:45 -030074
Thierry MERLEc5f48362007-05-08 17:22:29 -030075#define DRIVER_AUTHOR "Joerg Heckenbach <joerg@heckenbach-aw.de>,\
76 Dwaine Garden <DwaineGarden@rogers.com>"
Thierry MERLE483dfdb2006-12-04 08:31:45 -030077#define DRIVER_NAME "usbvision"
78#define DRIVER_ALIAS "USBVision"
79#define DRIVER_DESC "USBVision USB Video Device Driver for Linux"
80#define DRIVER_LICENSE "GPL"
81#define USBVISION_DRIVER_VERSION_MAJOR 0
82#define USBVISION_DRIVER_VERSION_MINOR 9
83#define USBVISION_DRIVER_VERSION_PATCHLEVEL 9
Thierry MERLEc5f48362007-05-08 17:22:29 -030084#define USBVISION_DRIVER_VERSION KERNEL_VERSION(USBVISION_DRIVER_VERSION_MAJOR,\
85USBVISION_DRIVER_VERSION_MINOR,\
86USBVISION_DRIVER_VERSION_PATCHLEVEL)
87#define USBVISION_VERSION_STRING __stringify(USBVISION_DRIVER_VERSION_MAJOR)\
88 "." __stringify(USBVISION_DRIVER_VERSION_MINOR)\
89 "." __stringify(USBVISION_DRIVER_VERSION_PATCHLEVEL)
Thierry MERLE483dfdb2006-12-04 08:31:45 -030090
91#define ENABLE_HEXDUMP 0 /* Enable if you need it */
92
93
Thierry MERLE483dfdb2006-12-04 08:31:45 -030094#ifdef USBVISION_DEBUG
Thierry MERLEdf18c312008-04-04 21:00:57 -030095 #define PDEBUG(level, fmt, args...) { \
Thierry MERLEc5f48362007-05-08 17:22:29 -030096 if (video_debug & (level)) \
Greg Kroah-Hartmana482f322008-10-10 05:08:23 -030097 printk(KERN_INFO KBUILD_MODNAME ":[%s:%d] " fmt, \
98 __func__, __LINE__ , ## args); \
Thierry MERLEdf18c312008-04-04 21:00:57 -030099 }
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300100#else
101 #define PDEBUG(level, fmt, args...) do {} while(0)
102#endif
103
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300104#define DBG_IO 1<<1
105#define DBG_PROBE 1<<2
Thierry MERLEc876a342006-12-09 16:42:54 -0300106#define DBG_MMAP 1<<3
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300107
108//String operations
109#define rmspace(str) while(*str==' ') str++;
110#define goto2next(str) while(*str!=' ') str++; while(*str==' ') str++;
111
112
Thierry MERLEc5f48362007-05-08 17:22:29 -0300113/* sequential number of usbvision device */
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -0300114static int usbvision_nr;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300115
116static struct usbvision_v4l2_format_st usbvision_v4l2_format[] = {
117 { 1, 1, 8, V4L2_PIX_FMT_GREY , "GREY" },
118 { 1, 2, 16, V4L2_PIX_FMT_RGB565 , "RGB565" },
119 { 1, 3, 24, V4L2_PIX_FMT_RGB24 , "RGB24" },
120 { 1, 4, 32, V4L2_PIX_FMT_RGB32 , "RGB32" },
121 { 1, 2, 16, V4L2_PIX_FMT_RGB555 , "RGB555" },
122 { 1, 2, 16, V4L2_PIX_FMT_YUYV , "YUV422" },
123 { 1, 2, 12, V4L2_PIX_FMT_YVU420 , "YUV420P" }, // 1.5 !
124 { 1, 2, 16, V4L2_PIX_FMT_YUV422P , "YUV422P" }
125};
126
Thierry MERLEc5f48362007-05-08 17:22:29 -0300127/* Function prototypes */
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300128static void usbvision_release(struct usb_usbvision *usbvision);
129
Joe Perchesc84e6032008-02-03 17:18:59 +0200130/* Default initialization of device driver parameters */
Thierry MERLEc5f48362007-05-08 17:22:29 -0300131/* Set the default format for ISOC endpoint */
132static int isocMode = ISOC_MODE_COMPRESS;
133/* Set the default Debug Mode of the device driver */
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -0300134static int video_debug;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300135/* Set the default device to power on at startup */
136static int PowerOnAtOpen = 1;
137/* Sequential Number of Video Device */
138static int video_nr = -1;
139/* Sequential Number of Radio Device */
140static int radio_nr = -1;
141/* Sequential Number of VBI Device */
142static int vbi_nr = -1;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300143
Thierry MERLEc5f48362007-05-08 17:22:29 -0300144/* Grab parameters for the device driver */
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300145
Thierry MERLEc5f48362007-05-08 17:22:29 -0300146/* Showing parameters under SYSFS */
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300147module_param(isocMode, int, 0444);
148module_param(video_debug, int, 0444);
149module_param(PowerOnAtOpen, int, 0444);
150module_param(video_nr, int, 0444);
151module_param(radio_nr, int, 0444);
152module_param(vbi_nr, int, 0444);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300153
154MODULE_PARM_DESC(isocMode, " Set the default format for ISOC endpoint. Default: 0x60 (Compression On)");
155MODULE_PARM_DESC(video_debug, " Set the default Debug Mode of the device driver. Default: 0 (Off)");
156MODULE_PARM_DESC(PowerOnAtOpen, " Set the default device to power on when device is opened. Default: 1 (On)");
157MODULE_PARM_DESC(video_nr, "Set video device number (/dev/videoX). Default: -1 (autodetect)");
158MODULE_PARM_DESC(radio_nr, "Set radio device number (/dev/radioX). Default: -1 (autodetect)");
159MODULE_PARM_DESC(vbi_nr, "Set vbi device number (/dev/vbiX). Default: -1 (autodetect)");
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300160
161
162// Misc stuff
163MODULE_AUTHOR(DRIVER_AUTHOR);
164MODULE_DESCRIPTION(DRIVER_DESC);
165MODULE_LICENSE(DRIVER_LICENSE);
Mauro Carvalho Chehaba1ed5512006-12-09 11:41:59 -0300166MODULE_VERSION(USBVISION_VERSION_STRING);
167MODULE_ALIAS(DRIVER_ALIAS);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300168
169
Thierry MERLEc5f48362007-05-08 17:22:29 -0300170/*****************************************************************************/
171/* SYSFS Code - Copied from the stv680.c usb module. */
172/* Device information is located at /sys/class/video4linux/video0 */
173/* Device parameters information is located at /sys/module/usbvision */
174/* Device USB Information is located at */
175/* /sys/bus/usb/drivers/USBVision Video Grabber */
176/*****************************************************************************/
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300177
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300178#define YES_NO(x) ((x) ? "Yes" : "No")
179
Kay Sievers54bd5b62007-10-08 16:26:13 -0300180static inline struct usb_usbvision *cd_to_usbvision(struct device *cd)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300181{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300182 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300183 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300184 return video_get_drvdata(vdev);
185}
186
Kay Sievers54bd5b62007-10-08 16:26:13 -0300187static ssize_t show_version(struct device *cd,
188 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300189{
190 return sprintf(buf, "%s\n", USBVISION_VERSION_STRING);
191}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300192static DEVICE_ATTR(version, S_IRUGO, show_version, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300193
Kay Sievers54bd5b62007-10-08 16:26:13 -0300194static ssize_t show_model(struct device *cd,
195 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300196{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300197 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300198 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300199 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300200 return sprintf(buf, "%s\n",
201 usbvision_device_data[usbvision->DevModel].ModelString);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300202}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300203static DEVICE_ATTR(model, S_IRUGO, show_model, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300204
Kay Sievers54bd5b62007-10-08 16:26:13 -0300205static ssize_t show_hue(struct device *cd,
206 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300207{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300208 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300209 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300210 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
211 struct v4l2_control ctrl;
212 ctrl.id = V4L2_CID_HUE;
213 ctrl.value = 0;
Dwaine Gardened00b412006-12-27 10:23:28 -0200214 if(usbvision->user)
215 call_i2c_clients(usbvision, VIDIOC_G_CTRL, &ctrl);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -0300216 return sprintf(buf, "%d\n", ctrl.value);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300217}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300218static DEVICE_ATTR(hue, S_IRUGO, show_hue, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300219
Kay Sievers54bd5b62007-10-08 16:26:13 -0300220static ssize_t show_contrast(struct device *cd,
221 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300222{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300223 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300224 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300225 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
226 struct v4l2_control ctrl;
227 ctrl.id = V4L2_CID_CONTRAST;
228 ctrl.value = 0;
Dwaine Gardened00b412006-12-27 10:23:28 -0200229 if(usbvision->user)
230 call_i2c_clients(usbvision, VIDIOC_G_CTRL, &ctrl);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -0300231 return sprintf(buf, "%d\n", ctrl.value);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300232}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300233static DEVICE_ATTR(contrast, S_IRUGO, show_contrast, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300234
Kay Sievers54bd5b62007-10-08 16:26:13 -0300235static ssize_t show_brightness(struct device *cd,
236 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300237{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300238 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300239 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300240 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
241 struct v4l2_control ctrl;
242 ctrl.id = V4L2_CID_BRIGHTNESS;
243 ctrl.value = 0;
Dwaine Gardened00b412006-12-27 10:23:28 -0200244 if(usbvision->user)
245 call_i2c_clients(usbvision, VIDIOC_G_CTRL, &ctrl);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -0300246 return sprintf(buf, "%d\n", ctrl.value);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300247}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300248static DEVICE_ATTR(brightness, S_IRUGO, show_brightness, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300249
Kay Sievers54bd5b62007-10-08 16:26:13 -0300250static ssize_t show_saturation(struct device *cd,
251 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300252{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300253 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300254 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300255 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
256 struct v4l2_control ctrl;
257 ctrl.id = V4L2_CID_SATURATION;
258 ctrl.value = 0;
Dwaine Gardened00b412006-12-27 10:23:28 -0200259 if(usbvision->user)
260 call_i2c_clients(usbvision, VIDIOC_G_CTRL, &ctrl);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -0300261 return sprintf(buf, "%d\n", ctrl.value);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300262}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300263static DEVICE_ATTR(saturation, S_IRUGO, show_saturation, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300264
Kay Sievers54bd5b62007-10-08 16:26:13 -0300265static ssize_t show_streaming(struct device *cd,
266 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300267{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300268 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300269 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300270 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300271 return sprintf(buf, "%s\n",
272 YES_NO(usbvision->streaming==Stream_On?1:0));
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300273}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300274static DEVICE_ATTR(streaming, S_IRUGO, show_streaming, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300275
Kay Sievers54bd5b62007-10-08 16:26:13 -0300276static ssize_t show_compression(struct device *cd,
277 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300278{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300279 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300280 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300281 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300282 return sprintf(buf, "%s\n",
283 YES_NO(usbvision->isocMode==ISOC_MODE_COMPRESS));
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300284}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300285static DEVICE_ATTR(compression, S_IRUGO, show_compression, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300286
Kay Sievers54bd5b62007-10-08 16:26:13 -0300287static ssize_t show_device_bridge(struct device *cd,
288 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300289{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300290 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300291 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300292 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
293 return sprintf(buf, "%d\n", usbvision->bridgeType);
294}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300295static DEVICE_ATTR(bridge, S_IRUGO, show_device_bridge, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300296
297static void usbvision_create_sysfs(struct video_device *vdev)
298{
299 int res;
Dwaine Gardened00b412006-12-27 10:23:28 -0200300 if (!vdev)
301 return;
302 do {
Hans Verkuil22a04f12008-07-20 06:35:02 -0300303 res = device_create_file(&vdev->dev, &dev_attr_version);
Dwaine Gardened00b412006-12-27 10:23:28 -0200304 if (res<0)
305 break;
Hans Verkuil22a04f12008-07-20 06:35:02 -0300306 res = device_create_file(&vdev->dev, &dev_attr_model);
Dwaine Gardened00b412006-12-27 10:23:28 -0200307 if (res<0)
308 break;
Hans Verkuil22a04f12008-07-20 06:35:02 -0300309 res = device_create_file(&vdev->dev, &dev_attr_hue);
Dwaine Gardened00b412006-12-27 10:23:28 -0200310 if (res<0)
311 break;
Hans Verkuil22a04f12008-07-20 06:35:02 -0300312 res = device_create_file(&vdev->dev, &dev_attr_contrast);
Dwaine Gardened00b412006-12-27 10:23:28 -0200313 if (res<0)
314 break;
Hans Verkuil22a04f12008-07-20 06:35:02 -0300315 res = device_create_file(&vdev->dev, &dev_attr_brightness);
Dwaine Gardened00b412006-12-27 10:23:28 -0200316 if (res<0)
317 break;
Hans Verkuil22a04f12008-07-20 06:35:02 -0300318 res = device_create_file(&vdev->dev, &dev_attr_saturation);
Dwaine Gardened00b412006-12-27 10:23:28 -0200319 if (res<0)
320 break;
Hans Verkuil22a04f12008-07-20 06:35:02 -0300321 res = device_create_file(&vdev->dev, &dev_attr_streaming);
Dwaine Gardened00b412006-12-27 10:23:28 -0200322 if (res<0)
323 break;
Hans Verkuil22a04f12008-07-20 06:35:02 -0300324 res = device_create_file(&vdev->dev, &dev_attr_compression);
Dwaine Gardened00b412006-12-27 10:23:28 -0200325 if (res<0)
326 break;
Hans Verkuil22a04f12008-07-20 06:35:02 -0300327 res = device_create_file(&vdev->dev, &dev_attr_bridge);
Dwaine Gardened00b412006-12-27 10:23:28 -0200328 if (res>=0)
329 return;
330 } while (0);
331
Harvey Harrisond2db42d2008-04-04 20:50:07 -0300332 err("%s error: %d\n", __func__, res);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300333}
334
335static void usbvision_remove_sysfs(struct video_device *vdev)
336{
337 if (vdev) {
Hans Verkuil22a04f12008-07-20 06:35:02 -0300338 device_remove_file(&vdev->dev, &dev_attr_version);
339 device_remove_file(&vdev->dev, &dev_attr_model);
340 device_remove_file(&vdev->dev, &dev_attr_hue);
341 device_remove_file(&vdev->dev, &dev_attr_contrast);
342 device_remove_file(&vdev->dev, &dev_attr_brightness);
343 device_remove_file(&vdev->dev, &dev_attr_saturation);
344 device_remove_file(&vdev->dev, &dev_attr_streaming);
345 device_remove_file(&vdev->dev, &dev_attr_compression);
346 device_remove_file(&vdev->dev, &dev_attr_bridge);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300347 }
348}
349
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300350/*
351 * usbvision_open()
352 *
353 * This is part of Video 4 Linux API. The driver can be opened by one
354 * client only (checks internal counter 'usbvision->user'). The procedure
355 * then allocates buffers needed for video processing.
356 *
357 */
Hans Verkuilbec43662008-12-30 06:58:20 -0300358static int usbvision_v4l2_open(struct file *file)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300359{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300360 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300361 int errCode = 0;
362
363 PDEBUG(DBG_IO, "open");
364
Hans Verkuild56dc612008-07-30 08:43:36 -0300365 lock_kernel();
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300366 usbvision_reset_powerOffTimer(usbvision);
367
368 if (usbvision->user)
369 errCode = -EBUSY;
370 else {
Thierry MERLE6f78e182007-02-07 10:13:11 -0300371 /* Allocate memory for the scratch ring buffer */
372 errCode = usbvision_scratch_alloc(usbvision);
373 if (isocMode==ISOC_MODE_COMPRESS) {
Thierry MERLEc5f48362007-05-08 17:22:29 -0300374 /* Allocate intermediate decompression buffers
375 only if needed */
Thierry MERLE6f78e182007-02-07 10:13:11 -0300376 errCode = usbvision_decompress_alloc(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300377 }
378 if (errCode) {
379 /* Deallocate all buffers if trouble */
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300380 usbvision_scratch_free(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300381 usbvision_decompress_free(usbvision);
382 }
383 }
384
385 /* If so far no errors then we shall start the camera */
386 if (!errCode) {
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -0300387 mutex_lock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300388 if (usbvision->power == 0) {
389 usbvision_power_on(usbvision);
Thierry MERLE1ff16c22007-04-14 16:23:49 -0300390 usbvision_i2c_register(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300391 }
392
393 /* Send init sequence only once, it's large! */
394 if (!usbvision->initialized) {
395 int setup_ok = 0;
396 setup_ok = usbvision_setup(usbvision,isocMode);
397 if (setup_ok)
398 usbvision->initialized = 1;
399 else
400 errCode = -EBUSY;
401 }
402
403 if (!errCode) {
404 usbvision_begin_streaming(usbvision);
405 errCode = usbvision_init_isoc(usbvision);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300406 /* device must be initialized before isoc transfer */
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300407 usbvision_muxsel(usbvision,0);
408 usbvision->user++;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300409 } else {
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300410 if (PowerOnAtOpen) {
Thierry MERLE1ff16c22007-04-14 16:23:49 -0300411 usbvision_i2c_unregister(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300412 usbvision_power_off(usbvision);
413 usbvision->initialized = 0;
414 }
415 }
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -0300416 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300417 }
418
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300419 /* prepare queues */
420 usbvision_empty_framequeues(usbvision);
421
422 PDEBUG(DBG_IO, "success");
Hans Verkuild56dc612008-07-30 08:43:36 -0300423 unlock_kernel();
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300424 return errCode;
425}
426
427/*
428 * usbvision_v4l2_close()
429 *
430 * This is part of Video 4 Linux API. The procedure
431 * stops streaming and deallocates all buffers that were earlier
432 * allocated in usbvision_v4l2_open().
433 *
434 */
Hans Verkuilbec43662008-12-30 06:58:20 -0300435static int usbvision_v4l2_close(struct file *file)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300436{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300437 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300438
439 PDEBUG(DBG_IO, "close");
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -0300440 mutex_lock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300441
442 usbvision_audio_off(usbvision);
443 usbvision_restart_isoc(usbvision);
444 usbvision_stop_isoc(usbvision);
445
446 usbvision_decompress_free(usbvision);
Thierry MERLE38284ba2006-12-15 16:46:53 -0300447 usbvision_frames_free(usbvision);
Thierry MERLE6f78e182007-02-07 10:13:11 -0300448 usbvision_empty_framequeues(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300449 usbvision_scratch_free(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300450
451 usbvision->user--;
452
453 if (PowerOnAtOpen) {
Thierry MERLEc5f48362007-05-08 17:22:29 -0300454 /* power off in a little while
455 to avoid off/on every close/open short sequences */
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300456 usbvision_set_powerOffTimer(usbvision);
457 usbvision->initialized = 0;
458 }
459
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -0300460 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300461
462 if (usbvision->remove_pending) {
Harvey Harrisond2db42d2008-04-04 20:50:07 -0300463 printk(KERN_INFO "%s: Final disconnect\n", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300464 usbvision_release(usbvision);
465 }
466
467 PDEBUG(DBG_IO, "success");
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300468 return 0;
469}
470
471
472/*
473 * usbvision_ioctl()
474 *
475 * This is part of Video 4 Linux API. The procedure handles ioctl() calls.
476 *
477 */
Thierry MERLEc5f48362007-05-08 17:22:29 -0300478#ifdef CONFIG_VIDEO_ADV_DEBUG
479static int vidioc_g_register (struct file *file, void *priv,
480 struct v4l2_register *reg)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300481{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300482 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300483 int errCode;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300484
Thierry MERLEc5f48362007-05-08 17:22:29 -0300485 if (!v4l2_chip_match_host(reg->match_type, reg->match_chip))
486 return -EINVAL;
487 /* NT100x has a 8-bit register space */
488 errCode = usbvision_read_reg(usbvision, reg->reg&0xff);
489 if (errCode < 0) {
490 err("%s: VIDIOC_DBG_G_REGISTER failed: error %d",
Harvey Harrisond2db42d2008-04-04 20:50:07 -0300491 __func__, errCode);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300492 return errCode;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300493 }
Trent Piephobc147132007-07-23 06:58:31 -0300494 reg->val = errCode;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300495 return 0;
496}
497
Thierry MERLEc5f48362007-05-08 17:22:29 -0300498static int vidioc_s_register (struct file *file, void *priv,
499 struct v4l2_register *reg)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300500{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300501 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300502 int errCode;
503
504 if (!v4l2_chip_match_host(reg->match_type, reg->match_chip))
505 return -EINVAL;
506 /* NT100x has a 8-bit register space */
Trent Piephobc147132007-07-23 06:58:31 -0300507 errCode = usbvision_write_reg(usbvision, reg->reg&0xff, reg->val);
508 if (errCode < 0) {
Thierry MERLEc5f48362007-05-08 17:22:29 -0300509 err("%s: VIDIOC_DBG_S_REGISTER failed: error %d",
Harvey Harrisond2db42d2008-04-04 20:50:07 -0300510 __func__, errCode);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300511 return errCode;
512 }
513 return 0;
514}
515#endif
516
517static int vidioc_querycap (struct file *file, void *priv,
518 struct v4l2_capability *vc)
519{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300520 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300521
522 strlcpy(vc->driver, "USBVision", sizeof(vc->driver));
523 strlcpy(vc->card,
524 usbvision_device_data[usbvision->DevModel].ModelString,
525 sizeof(vc->card));
Kay Sieversaf128a12008-10-30 00:51:46 -0300526 strlcpy(vc->bus_info, dev_name(&usbvision->dev->dev),
Thierry MERLEc5f48362007-05-08 17:22:29 -0300527 sizeof(vc->bus_info));
528 vc->version = USBVISION_DRIVER_VERSION;
529 vc->capabilities = V4L2_CAP_VIDEO_CAPTURE |
530 V4L2_CAP_AUDIO |
531 V4L2_CAP_READWRITE |
532 V4L2_CAP_STREAMING |
533 (usbvision->have_tuner ? V4L2_CAP_TUNER : 0);
534 return 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300535}
536
Thierry MERLEc5f48362007-05-08 17:22:29 -0300537static int vidioc_enum_input (struct file *file, void *priv,
538 struct v4l2_input *vi)
539{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300540 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300541 int chan;
542
543 if ((vi->index >= usbvision->video_inputs) || (vi->index < 0) )
544 return -EINVAL;
545 if (usbvision->have_tuner) {
546 chan = vi->index;
547 } else {
548 chan = vi->index + 1; /*skip Television string*/
549 }
550 /* Determine the requested input characteristics
551 specific for each usbvision card model */
552 switch(chan) {
553 case 0:
554 if (usbvision_device_data[usbvision->DevModel].VideoChannels == 4) {
555 strcpy(vi->name, "White Video Input");
556 } else {
557 strcpy(vi->name, "Television");
558 vi->type = V4L2_INPUT_TYPE_TUNER;
559 vi->audioset = 1;
560 vi->tuner = chan;
561 vi->std = USBVISION_NORMS;
562 }
563 break;
564 case 1:
565 vi->type = V4L2_INPUT_TYPE_CAMERA;
566 if (usbvision_device_data[usbvision->DevModel].VideoChannels == 4) {
567 strcpy(vi->name, "Green Video Input");
568 } else {
569 strcpy(vi->name, "Composite Video Input");
570 }
571 vi->std = V4L2_STD_PAL;
572 break;
573 case 2:
574 vi->type = V4L2_INPUT_TYPE_CAMERA;
575 if (usbvision_device_data[usbvision->DevModel].VideoChannels == 4) {
576 strcpy(vi->name, "Yellow Video Input");
577 } else {
578 strcpy(vi->name, "S-Video Input");
579 }
580 vi->std = V4L2_STD_PAL;
581 break;
582 case 3:
583 vi->type = V4L2_INPUT_TYPE_CAMERA;
584 strcpy(vi->name, "Red Video Input");
585 vi->std = V4L2_STD_PAL;
586 break;
587 }
588 return 0;
589}
590
591static int vidioc_g_input (struct file *file, void *priv, unsigned int *input)
592{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300593 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300594
595 *input = usbvision->ctl_input;
596 return 0;
597}
598
599static int vidioc_s_input (struct file *file, void *priv, unsigned int input)
600{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300601 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300602
603 if ((input >= usbvision->video_inputs) || (input < 0) )
604 return -EINVAL;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300605
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -0300606 mutex_lock(&usbvision->lock);
Thierry MERLE66a17872007-06-26 16:35:30 -0300607 usbvision_muxsel(usbvision, input);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300608 usbvision_set_input(usbvision);
609 usbvision_set_output(usbvision,
610 usbvision->curwidth,
611 usbvision->curheight);
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -0300612 mutex_unlock(&usbvision->lock);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300613 return 0;
614}
615
616static int vidioc_s_std (struct file *file, void *priv, v4l2_std_id *id)
617{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300618 struct usb_usbvision *usbvision = video_drvdata(file);
619
Thierry MERLEc5f48362007-05-08 17:22:29 -0300620 usbvision->tvnormId=*id;
621
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -0300622 mutex_lock(&usbvision->lock);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300623 call_i2c_clients(usbvision, VIDIOC_S_STD,
624 &usbvision->tvnormId);
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -0300625 mutex_unlock(&usbvision->lock);
Thierry MERLE66a17872007-06-26 16:35:30 -0300626 /* propagate the change to the decoder */
627 usbvision_muxsel(usbvision, usbvision->ctl_input);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300628
629 return 0;
630}
631
632static int vidioc_g_tuner (struct file *file, void *priv,
633 struct v4l2_tuner *vt)
634{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300635 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300636
637 if (!usbvision->have_tuner || vt->index) // Only tuner 0
638 return -EINVAL;
639 if(usbvision->radio) {
640 strcpy(vt->name, "Radio");
641 vt->type = V4L2_TUNER_RADIO;
642 } else {
643 strcpy(vt->name, "Television");
644 }
645 /* Let clients fill in the remainder of this struct */
646 call_i2c_clients(usbvision,VIDIOC_G_TUNER,vt);
647
648 return 0;
649}
650
651static int vidioc_s_tuner (struct file *file, void *priv,
652 struct v4l2_tuner *vt)
653{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300654 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300655
656 // Only no or one tuner for now
657 if (!usbvision->have_tuner || vt->index)
658 return -EINVAL;
659 /* let clients handle this */
660 call_i2c_clients(usbvision,VIDIOC_S_TUNER,vt);
661
662 return 0;
663}
664
665static int vidioc_g_frequency (struct file *file, void *priv,
666 struct v4l2_frequency *freq)
667{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300668 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300669
670 freq->tuner = 0; // Only one tuner
671 if(usbvision->radio) {
672 freq->type = V4L2_TUNER_RADIO;
673 } else {
674 freq->type = V4L2_TUNER_ANALOG_TV;
675 }
676 freq->frequency = usbvision->freq;
677
678 return 0;
679}
680
681static int vidioc_s_frequency (struct file *file, void *priv,
682 struct v4l2_frequency *freq)
683{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300684 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300685
686 // Only no or one tuner for now
687 if (!usbvision->have_tuner || freq->tuner)
688 return -EINVAL;
689
690 usbvision->freq = freq->frequency;
691 call_i2c_clients(usbvision, VIDIOC_S_FREQUENCY, freq);
692
693 return 0;
694}
695
696static int vidioc_g_audio (struct file *file, void *priv, struct v4l2_audio *a)
697{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300698 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300699
700 memset(a,0,sizeof(*a));
701 if(usbvision->radio) {
702 strcpy(a->name,"Radio");
703 } else {
704 strcpy(a->name, "TV");
705 }
706
707 return 0;
708}
709
710static int vidioc_s_audio (struct file *file, void *fh,
711 struct v4l2_audio *a)
712{
713 if(a->index) {
714 return -EINVAL;
715 }
716
717 return 0;
718}
719
720static int vidioc_queryctrl (struct file *file, void *priv,
721 struct v4l2_queryctrl *ctrl)
722{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300723 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300724 int id=ctrl->id;
725
726 memset(ctrl,0,sizeof(*ctrl));
727 ctrl->id=id;
728
729 call_i2c_clients(usbvision, VIDIOC_QUERYCTRL, ctrl);
730
731 if (!ctrl->type)
732 return -EINVAL;
733
734 return 0;
735}
736
737static int vidioc_g_ctrl (struct file *file, void *priv,
738 struct v4l2_control *ctrl)
739{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300740 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300741 call_i2c_clients(usbvision, VIDIOC_G_CTRL, ctrl);
742
743 return 0;
744}
745
746static int vidioc_s_ctrl (struct file *file, void *priv,
747 struct v4l2_control *ctrl)
748{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300749 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300750 call_i2c_clients(usbvision, VIDIOC_S_CTRL, ctrl);
751
752 return 0;
753}
754
755static int vidioc_reqbufs (struct file *file,
756 void *priv, struct v4l2_requestbuffers *vr)
757{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300758 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300759 int ret;
760
761 RESTRICT_TO_RANGE(vr->count,1,USBVISION_NUMFRAMES);
762
763 /* Check input validity:
764 the user must do a VIDEO CAPTURE and MMAP method. */
765 if((vr->type != V4L2_BUF_TYPE_VIDEO_CAPTURE) ||
766 (vr->memory != V4L2_MEMORY_MMAP))
767 return -EINVAL;
768
769 if(usbvision->streaming == Stream_On) {
770 if ((ret = usbvision_stream_interrupt(usbvision)))
771 return ret;
772 }
773
774 usbvision_frames_free(usbvision);
775 usbvision_empty_framequeues(usbvision);
776 vr->count = usbvision_frames_alloc(usbvision,vr->count);
777
778 usbvision->curFrame = NULL;
779
780 return 0;
781}
782
783static int vidioc_querybuf (struct file *file,
784 void *priv, struct v4l2_buffer *vb)
785{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300786 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300787 struct usbvision_frame *frame;
788
789 /* FIXME : must control
790 that buffers are mapped (VIDIOC_REQBUFS has been called) */
791 if(vb->type != V4L2_CAP_VIDEO_CAPTURE) {
792 return -EINVAL;
793 }
794 if(vb->index>=usbvision->num_frames) {
795 return -EINVAL;
796 }
797 /* Updating the corresponding frame state */
798 vb->flags = 0;
799 frame = &usbvision->frame[vb->index];
800 if(frame->grabstate >= FrameState_Ready)
801 vb->flags |= V4L2_BUF_FLAG_QUEUED;
802 if(frame->grabstate >= FrameState_Done)
803 vb->flags |= V4L2_BUF_FLAG_DONE;
804 if(frame->grabstate == FrameState_Unused)
805 vb->flags |= V4L2_BUF_FLAG_MAPPED;
806 vb->memory = V4L2_MEMORY_MMAP;
807
808 vb->m.offset = vb->index*PAGE_ALIGN(usbvision->max_frame_size);
809
810 vb->memory = V4L2_MEMORY_MMAP;
811 vb->field = V4L2_FIELD_NONE;
812 vb->length = usbvision->curwidth*
813 usbvision->curheight*
814 usbvision->palette.bytes_per_pixel;
815 vb->timestamp = usbvision->frame[vb->index].timestamp;
816 vb->sequence = usbvision->frame[vb->index].sequence;
817 return 0;
818}
819
820static int vidioc_qbuf (struct file *file, void *priv, struct v4l2_buffer *vb)
821{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300822 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300823 struct usbvision_frame *frame;
824 unsigned long lock_flags;
825
826 /* FIXME : works only on VIDEO_CAPTURE MODE, MMAP. */
827 if(vb->type != V4L2_CAP_VIDEO_CAPTURE) {
828 return -EINVAL;
829 }
830 if(vb->index>=usbvision->num_frames) {
831 return -EINVAL;
832 }
833
834 frame = &usbvision->frame[vb->index];
835
836 if (frame->grabstate != FrameState_Unused) {
837 return -EAGAIN;
838 }
839
840 /* Mark it as ready and enqueue frame */
841 frame->grabstate = FrameState_Ready;
842 frame->scanstate = ScanState_Scanning;
843 frame->scanlength = 0; /* Accumulated in usbvision_parse_data() */
844
845 vb->flags &= ~V4L2_BUF_FLAG_DONE;
846
847 /* set v4l2_format index */
848 frame->v4l2_format = usbvision->palette;
849
850 spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
851 list_add_tail(&usbvision->frame[vb->index].frame, &usbvision->inqueue);
852 spin_unlock_irqrestore(&usbvision->queue_lock, lock_flags);
853
854 return 0;
855}
856
857static int vidioc_dqbuf (struct file *file, void *priv, struct v4l2_buffer *vb)
858{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300859 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300860 int ret;
861 struct usbvision_frame *f;
862 unsigned long lock_flags;
863
864 if (vb->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
865 return -EINVAL;
866
867 if (list_empty(&(usbvision->outqueue))) {
868 if (usbvision->streaming == Stream_Idle)
869 return -EINVAL;
870 ret = wait_event_interruptible
871 (usbvision->wait_frame,
872 !list_empty(&(usbvision->outqueue)));
873 if (ret)
874 return ret;
875 }
876
877 spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
878 f = list_entry(usbvision->outqueue.next,
879 struct usbvision_frame, frame);
880 list_del(usbvision->outqueue.next);
881 spin_unlock_irqrestore(&usbvision->queue_lock, lock_flags);
882
883 f->grabstate = FrameState_Unused;
884
885 vb->memory = V4L2_MEMORY_MMAP;
886 vb->flags = V4L2_BUF_FLAG_MAPPED |
887 V4L2_BUF_FLAG_QUEUED |
888 V4L2_BUF_FLAG_DONE;
889 vb->index = f->index;
890 vb->sequence = f->sequence;
891 vb->timestamp = f->timestamp;
892 vb->field = V4L2_FIELD_NONE;
893 vb->bytesused = f->scanlength;
894
895 return 0;
896}
897
898static int vidioc_streamon(struct file *file, void *priv, enum v4l2_buf_type i)
899{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300900 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300901 int b=V4L2_BUF_TYPE_VIDEO_CAPTURE;
902
903 usbvision->streaming = Stream_On;
904 call_i2c_clients(usbvision,VIDIOC_STREAMON , &b);
905
906 return 0;
907}
908
909static int vidioc_streamoff(struct file *file,
910 void *priv, enum v4l2_buf_type type)
911{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300912 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300913 int b=V4L2_BUF_TYPE_VIDEO_CAPTURE;
914
915 if (type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
916 return -EINVAL;
917
918 if(usbvision->streaming == Stream_On) {
919 usbvision_stream_interrupt(usbvision);
920 /* Stop all video streamings */
921 call_i2c_clients(usbvision,VIDIOC_STREAMOFF , &b);
922 }
923 usbvision_empty_framequeues(usbvision);
924
925 return 0;
926}
927
Hans Verkuil78b526a2008-05-28 12:16:41 -0300928static int vidioc_enum_fmt_vid_cap (struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300929 struct v4l2_fmtdesc *vfd)
930{
931 if(vfd->index>=USBVISION_SUPPORTED_PALETTES-1) {
932 return -EINVAL;
933 }
934 vfd->flags = 0;
935 vfd->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
936 strcpy(vfd->description,usbvision_v4l2_format[vfd->index].desc);
937 vfd->pixelformat = usbvision_v4l2_format[vfd->index].format;
938 memset(vfd->reserved, 0, sizeof(vfd->reserved));
939 return 0;
940}
941
Hans Verkuil78b526a2008-05-28 12:16:41 -0300942static int vidioc_g_fmt_vid_cap (struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300943 struct v4l2_format *vf)
944{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300945 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300946 vf->fmt.pix.width = usbvision->curwidth;
947 vf->fmt.pix.height = usbvision->curheight;
948 vf->fmt.pix.pixelformat = usbvision->palette.format;
949 vf->fmt.pix.bytesperline =
950 usbvision->curwidth*usbvision->palette.bytes_per_pixel;
951 vf->fmt.pix.sizeimage = vf->fmt.pix.bytesperline*usbvision->curheight;
952 vf->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
953 vf->fmt.pix.field = V4L2_FIELD_NONE; /* Always progressive image */
954
955 return 0;
956}
957
Hans Verkuil78b526a2008-05-28 12:16:41 -0300958static int vidioc_try_fmt_vid_cap (struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300959 struct v4l2_format *vf)
960{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300961 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300962 int formatIdx;
963
964 /* Find requested format in available ones */
965 for(formatIdx=0;formatIdx<USBVISION_SUPPORTED_PALETTES;formatIdx++) {
966 if(vf->fmt.pix.pixelformat ==
967 usbvision_v4l2_format[formatIdx].format) {
968 usbvision->palette = usbvision_v4l2_format[formatIdx];
969 break;
970 }
971 }
972 /* robustness */
973 if(formatIdx == USBVISION_SUPPORTED_PALETTES) {
974 return -EINVAL;
975 }
976 RESTRICT_TO_RANGE(vf->fmt.pix.width, MIN_FRAME_WIDTH, MAX_FRAME_WIDTH);
977 RESTRICT_TO_RANGE(vf->fmt.pix.height, MIN_FRAME_HEIGHT, MAX_FRAME_HEIGHT);
978
979 vf->fmt.pix.bytesperline = vf->fmt.pix.width*
980 usbvision->palette.bytes_per_pixel;
981 vf->fmt.pix.sizeimage = vf->fmt.pix.bytesperline*vf->fmt.pix.height;
982
983 return 0;
984}
985
Hans Verkuil78b526a2008-05-28 12:16:41 -0300986static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300987 struct v4l2_format *vf)
988{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300989 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300990 int ret;
991
Hans Verkuil78b526a2008-05-28 12:16:41 -0300992 if( 0 != (ret=vidioc_try_fmt_vid_cap (file, priv, vf)) ) {
Thierry MERLEc5f48362007-05-08 17:22:29 -0300993 return ret;
994 }
995
996 /* stop io in case it is already in progress */
997 if(usbvision->streaming == Stream_On) {
998 if ((ret = usbvision_stream_interrupt(usbvision)))
999 return ret;
1000 }
1001 usbvision_frames_free(usbvision);
1002 usbvision_empty_framequeues(usbvision);
1003
1004 usbvision->curFrame = NULL;
1005
1006 /* by now we are committed to the new data... */
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001007 mutex_lock(&usbvision->lock);
Thierry MERLEc5f48362007-05-08 17:22:29 -03001008 usbvision_set_output(usbvision, vf->fmt.pix.width, vf->fmt.pix.height);
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001009 mutex_unlock(&usbvision->lock);
Thierry MERLEc5f48362007-05-08 17:22:29 -03001010
1011 return 0;
1012}
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001013
Al Viro8a5ab412007-02-09 16:38:20 +00001014static ssize_t usbvision_v4l2_read(struct file *file, char __user *buf,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001015 size_t count, loff_t *ppos)
1016{
Hans Verkuilc170ecf2008-08-23 08:32:09 -03001017 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001018 int noblock = file->f_flags & O_NONBLOCK;
1019 unsigned long lock_flags;
1020
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001021 int ret,i;
1022 struct usbvision_frame *frame;
1023
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001024 PDEBUG(DBG_IO, "%s: %ld bytes, noblock=%d", __func__,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001025 (unsigned long)count, noblock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001026
1027 if (!USBVISION_IS_OPERATIONAL(usbvision) || (buf == NULL))
1028 return -EFAULT;
1029
Thierry MERLEc5f48362007-05-08 17:22:29 -03001030 /* This entry point is compatible with the mmap routines
1031 so that a user can do either VIDIOC_QBUF/VIDIOC_DQBUF
1032 to get frames or call read on the device. */
Thierry MERLE6f78e182007-02-07 10:13:11 -03001033 if(!usbvision->num_frames) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001034 /* First, allocate some frames to work with
1035 if this has not been done with VIDIOC_REQBUF */
Thierry MERLE6f78e182007-02-07 10:13:11 -03001036 usbvision_frames_free(usbvision);
1037 usbvision_empty_framequeues(usbvision);
1038 usbvision_frames_alloc(usbvision,USBVISION_NUMFRAMES);
1039 }
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001040
Thierry MERLE6f78e182007-02-07 10:13:11 -03001041 if(usbvision->streaming != Stream_On) {
1042 /* no stream is running, make it running ! */
1043 usbvision->streaming = Stream_On;
1044 call_i2c_clients(usbvision,VIDIOC_STREAMON , NULL);
1045 }
1046
Thierry MERLEc5f48362007-05-08 17:22:29 -03001047 /* Then, enqueue as many frames as possible
1048 (like a user of VIDIOC_QBUF would do) */
Thierry MERLE6f78e182007-02-07 10:13:11 -03001049 for(i=0;i<usbvision->num_frames;i++) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001050 frame = &usbvision->frame[i];
1051 if(frame->grabstate == FrameState_Unused) {
1052 /* Mark it as ready and enqueue frame */
1053 frame->grabstate = FrameState_Ready;
1054 frame->scanstate = ScanState_Scanning;
Thierry MERLEc5f48362007-05-08 17:22:29 -03001055 /* Accumulated in usbvision_parse_data() */
1056 frame->scanlength = 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001057
1058 /* set v4l2_format index */
1059 frame->v4l2_format = usbvision->palette;
1060
1061 spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
1062 list_add_tail(&frame->frame, &usbvision->inqueue);
Thierry MERLEc5f48362007-05-08 17:22:29 -03001063 spin_unlock_irqrestore(&usbvision->queue_lock,
1064 lock_flags);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001065 }
1066 }
1067
1068 /* Then try to steal a frame (like a VIDIOC_DQBUF would do) */
1069 if (list_empty(&(usbvision->outqueue))) {
1070 if(noblock)
1071 return -EAGAIN;
1072
1073 ret = wait_event_interruptible
1074 (usbvision->wait_frame,
1075 !list_empty(&(usbvision->outqueue)));
1076 if (ret)
1077 return ret;
1078 }
1079
1080 spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
1081 frame = list_entry(usbvision->outqueue.next,
1082 struct usbvision_frame, frame);
1083 list_del(usbvision->outqueue.next);
1084 spin_unlock_irqrestore(&usbvision->queue_lock, lock_flags);
1085
1086 /* An error returns an empty frame */
1087 if (frame->grabstate == FrameState_Error) {
1088 frame->bytes_read = 0;
1089 return 0;
1090 }
1091
Thierry MERLEc5f48362007-05-08 17:22:29 -03001092 PDEBUG(DBG_IO, "%s: frmx=%d, bytes_read=%ld, scanlength=%ld",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001093 __func__,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001094 frame->index, frame->bytes_read, frame->scanlength);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001095
1096 /* copy bytes to user space; we allow for partials reads */
1097 if ((count + frame->bytes_read) > (unsigned long)frame->scanlength)
1098 count = frame->scanlength - frame->bytes_read;
1099
1100 if (copy_to_user(buf, frame->data + frame->bytes_read, count)) {
1101 return -EFAULT;
1102 }
1103
1104 frame->bytes_read += count;
Thierry MERLEc5f48362007-05-08 17:22:29 -03001105 PDEBUG(DBG_IO, "%s: {copy} count used=%ld, new bytes_read=%ld",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001106 __func__,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001107 (unsigned long)count, frame->bytes_read);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001108
Thierry MERLEc5f48362007-05-08 17:22:29 -03001109 /* For now, forget the frame if it has not been read in one shot. */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001110/* if (frame->bytes_read >= frame->scanlength) {// All data has been read */
1111 frame->bytes_read = 0;
1112
1113 /* Mark it as available to be used again. */
Thierry MERLEc430ca12006-12-29 20:32:08 -03001114 frame->grabstate = FrameState_Unused;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001115/* } */
1116
1117 return count;
1118}
1119
1120static int usbvision_v4l2_mmap(struct file *file, struct vm_area_struct *vma)
1121{
1122 unsigned long size = vma->vm_end - vma->vm_start,
1123 start = vma->vm_start;
1124 void *pos;
1125 u32 i;
Hans Verkuilc170ecf2008-08-23 08:32:09 -03001126 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001127
Thierry MERLE6f78e182007-02-07 10:13:11 -03001128 PDEBUG(DBG_MMAP, "mmap");
1129
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001130 mutex_lock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001131
1132 if (!USBVISION_IS_OPERATIONAL(usbvision)) {
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001133 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001134 return -EFAULT;
1135 }
1136
1137 if (!(vma->vm_flags & VM_WRITE) ||
Thierry MERLE6f78e182007-02-07 10:13:11 -03001138 size != PAGE_ALIGN(usbvision->max_frame_size)) {
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001139 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001140 return -EINVAL;
1141 }
1142
Thierry MERLE6f78e182007-02-07 10:13:11 -03001143 for (i = 0; i < usbvision->num_frames; i++) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001144 if (((PAGE_ALIGN(usbvision->max_frame_size)*i) >> PAGE_SHIFT) ==
1145 vma->vm_pgoff)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001146 break;
1147 }
Thierry MERLE6f78e182007-02-07 10:13:11 -03001148 if (i == usbvision->num_frames) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001149 PDEBUG(DBG_MMAP,
1150 "mmap: user supplied mapping address is out of range");
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001151 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001152 return -EINVAL;
1153 }
1154
1155 /* VM_IO is eventually going to replace PageReserved altogether */
1156 vma->vm_flags |= VM_IO;
1157 vma->vm_flags |= VM_RESERVED; /* avoid to swap out this VMA */
1158
1159 pos = usbvision->frame[i].data;
1160 while (size > 0) {
1161
1162 if (vm_insert_page(vma, start, vmalloc_to_page(pos))) {
Thierry MERLEc876a342006-12-09 16:42:54 -03001163 PDEBUG(DBG_MMAP, "mmap: vm_insert_page failed");
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001164 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001165 return -EAGAIN;
1166 }
1167 start += PAGE_SIZE;
1168 pos += PAGE_SIZE;
1169 size -= PAGE_SIZE;
1170 }
1171
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001172 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001173 return 0;
1174}
1175
1176
1177/*
1178 * Here comes the stuff for radio on usbvision based devices
1179 *
1180 */
Hans Verkuilbec43662008-12-30 06:58:20 -03001181static int usbvision_radio_open(struct file *file)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001182{
Hans Verkuilc170ecf2008-08-23 08:32:09 -03001183 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001184 int errCode = 0;
1185
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001186 PDEBUG(DBG_IO, "%s:", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001187
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001188 mutex_lock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001189
1190 if (usbvision->user) {
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001191 err("%s: Someone tried to open an already opened USBVision Radio!", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001192 errCode = -EBUSY;
1193 }
1194 else {
1195 if(PowerOnAtOpen) {
1196 usbvision_reset_powerOffTimer(usbvision);
1197 if (usbvision->power == 0) {
1198 usbvision_power_on(usbvision);
Thierry MERLE1ff16c22007-04-14 16:23:49 -03001199 usbvision_i2c_register(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001200 }
1201 }
1202
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001203 /* Alternate interface 1 is is the biggest frame size */
1204 errCode = usbvision_set_alternate(usbvision);
1205 if (errCode < 0) {
1206 usbvision->last_error = errCode;
Andrew Morton544e6172007-12-12 18:25:23 -03001207 errCode = -EBUSY;
1208 goto out;
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001209 }
1210
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001211 // If so far no errors then we shall start the radio
1212 usbvision->radio = 1;
1213 call_i2c_clients(usbvision,AUDC_SET_RADIO,&usbvision->tuner_type);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001214 usbvision_set_audio(usbvision, USBVISION_AUDIO_RADIO);
1215 usbvision->user++;
1216 }
1217
1218 if (errCode) {
1219 if (PowerOnAtOpen) {
Thierry MERLE1ff16c22007-04-14 16:23:49 -03001220 usbvision_i2c_unregister(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001221 usbvision_power_off(usbvision);
1222 usbvision->initialized = 0;
1223 }
1224 }
Andrew Morton544e6172007-12-12 18:25:23 -03001225out:
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001226 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001227 return errCode;
1228}
1229
1230
Hans Verkuilbec43662008-12-30 06:58:20 -03001231static int usbvision_radio_close(struct file *file)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001232{
Hans Verkuilc170ecf2008-08-23 08:32:09 -03001233 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001234 int errCode = 0;
1235
1236 PDEBUG(DBG_IO, "");
1237
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001238 mutex_lock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001239
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001240 /* Set packet size to 0 */
1241 usbvision->ifaceAlt=0;
1242 errCode = usb_set_interface(usbvision->dev, usbvision->iface,
1243 usbvision->ifaceAlt);
1244
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001245 usbvision_audio_off(usbvision);
1246 usbvision->radio=0;
1247 usbvision->user--;
1248
1249 if (PowerOnAtOpen) {
1250 usbvision_set_powerOffTimer(usbvision);
1251 usbvision->initialized = 0;
1252 }
1253
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001254 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001255
1256 if (usbvision->remove_pending) {
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001257 printk(KERN_INFO "%s: Final disconnect\n", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001258 usbvision_release(usbvision);
1259 }
1260
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001261 PDEBUG(DBG_IO, "success");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001262 return errCode;
1263}
1264
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001265/*
1266 * Here comes the stuff for vbi on usbvision based devices
1267 *
1268 */
Hans Verkuilbec43662008-12-30 06:58:20 -03001269static int usbvision_vbi_open(struct file *file)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001270{
1271 /* TODO */
Thierry MERLEc5f48362007-05-08 17:22:29 -03001272 return -ENODEV;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001273}
1274
Hans Verkuilbec43662008-12-30 06:58:20 -03001275static int usbvision_vbi_close(struct file *file)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001276{
1277 /* TODO */
Thierry MERLEc5f48362007-05-08 17:22:29 -03001278 return -ENODEV;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001279}
1280
Hans Verkuil069b7472008-12-30 07:04:34 -03001281static long usbvision_do_vbi_ioctl(struct file *file,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001282 unsigned int cmd, void *arg)
1283{
1284 /* TODO */
Thierry MERLEc5f48362007-05-08 17:22:29 -03001285 return -ENOIOCTLCMD;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001286}
1287
Hans Verkuil069b7472008-12-30 07:04:34 -03001288static long usbvision_vbi_ioctl(struct file *file,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001289 unsigned int cmd, unsigned long arg)
1290{
Hans Verkuilf473bf72008-11-01 08:25:11 -03001291 return video_usercopy(file, cmd, arg, usbvision_do_vbi_ioctl);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001292}
1293
1294
1295//
1296// Video registration stuff
1297//
1298
1299// Video template
Hans Verkuilbec43662008-12-30 06:58:20 -03001300static const struct v4l2_file_operations usbvision_fops = {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001301 .owner = THIS_MODULE,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001302 .open = usbvision_v4l2_open,
1303 .release = usbvision_v4l2_close,
1304 .read = usbvision_v4l2_read,
1305 .mmap = usbvision_v4l2_mmap,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001306 .ioctl = video_ioctl2,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001307/* .poll = video_poll, */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001308};
Hans Verkuila3998102008-07-21 02:57:38 -03001309
1310static const struct v4l2_ioctl_ops usbvision_ioctl_ops = {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001311 .vidioc_querycap = vidioc_querycap,
Hans Verkuil78b526a2008-05-28 12:16:41 -03001312 .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap,
1313 .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap,
1314 .vidioc_try_fmt_vid_cap = vidioc_try_fmt_vid_cap,
1315 .vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001316 .vidioc_reqbufs = vidioc_reqbufs,
1317 .vidioc_querybuf = vidioc_querybuf,
1318 .vidioc_qbuf = vidioc_qbuf,
1319 .vidioc_dqbuf = vidioc_dqbuf,
1320 .vidioc_s_std = vidioc_s_std,
1321 .vidioc_enum_input = vidioc_enum_input,
1322 .vidioc_g_input = vidioc_g_input,
1323 .vidioc_s_input = vidioc_s_input,
1324 .vidioc_queryctrl = vidioc_queryctrl,
1325 .vidioc_g_audio = vidioc_g_audio,
Al Viroed4d6372007-09-26 01:53:42 +01001326 .vidioc_s_audio = vidioc_s_audio,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001327 .vidioc_g_ctrl = vidioc_g_ctrl,
1328 .vidioc_s_ctrl = vidioc_s_ctrl,
1329 .vidioc_streamon = vidioc_streamon,
1330 .vidioc_streamoff = vidioc_streamoff,
1331#ifdef CONFIG_VIDEO_V4L1_COMPAT
1332/* .vidiocgmbuf = vidiocgmbuf, */
1333#endif
1334 .vidioc_g_tuner = vidioc_g_tuner,
1335 .vidioc_s_tuner = vidioc_s_tuner,
1336 .vidioc_g_frequency = vidioc_g_frequency,
1337 .vidioc_s_frequency = vidioc_s_frequency,
1338#ifdef CONFIG_VIDEO_ADV_DEBUG
1339 .vidioc_g_register = vidioc_g_register,
1340 .vidioc_s_register = vidioc_s_register,
1341#endif
Hans Verkuila3998102008-07-21 02:57:38 -03001342};
1343
1344static struct video_device usbvision_video_template = {
Hans Verkuila3998102008-07-21 02:57:38 -03001345 .fops = &usbvision_fops,
1346 .ioctl_ops = &usbvision_ioctl_ops,
1347 .name = "usbvision-video",
1348 .release = video_device_release,
1349 .minor = -1,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001350 .tvnorms = USBVISION_NORMS,
1351 .current_norm = V4L2_STD_PAL
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001352};
1353
1354
1355// Radio template
Hans Verkuilbec43662008-12-30 06:58:20 -03001356static const struct v4l2_file_operations usbvision_radio_fops = {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001357 .owner = THIS_MODULE,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001358 .open = usbvision_radio_open,
1359 .release = usbvision_radio_close,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001360 .ioctl = video_ioctl2,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001361};
1362
Hans Verkuila3998102008-07-21 02:57:38 -03001363static const struct v4l2_ioctl_ops usbvision_radio_ioctl_ops = {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001364 .vidioc_querycap = vidioc_querycap,
1365 .vidioc_enum_input = vidioc_enum_input,
1366 .vidioc_g_input = vidioc_g_input,
1367 .vidioc_s_input = vidioc_s_input,
1368 .vidioc_queryctrl = vidioc_queryctrl,
1369 .vidioc_g_audio = vidioc_g_audio,
Al Viroed4d6372007-09-26 01:53:42 +01001370 .vidioc_s_audio = vidioc_s_audio,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001371 .vidioc_g_ctrl = vidioc_g_ctrl,
1372 .vidioc_s_ctrl = vidioc_s_ctrl,
1373 .vidioc_g_tuner = vidioc_g_tuner,
1374 .vidioc_s_tuner = vidioc_s_tuner,
1375 .vidioc_g_frequency = vidioc_g_frequency,
1376 .vidioc_s_frequency = vidioc_s_frequency,
Hans Verkuila3998102008-07-21 02:57:38 -03001377};
1378
1379static struct video_device usbvision_radio_template = {
Hans Verkuila3998102008-07-21 02:57:38 -03001380 .fops = &usbvision_radio_fops,
1381 .name = "usbvision-radio",
1382 .release = video_device_release,
1383 .minor = -1,
1384 .ioctl_ops = &usbvision_radio_ioctl_ops,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001385
Thierry MERLEc5f48362007-05-08 17:22:29 -03001386 .tvnorms = USBVISION_NORMS,
1387 .current_norm = V4L2_STD_PAL
1388};
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001389
1390// vbi template
Hans Verkuilbec43662008-12-30 06:58:20 -03001391static const struct v4l2_file_operations usbvision_vbi_fops = {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001392 .owner = THIS_MODULE,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001393 .open = usbvision_vbi_open,
1394 .release = usbvision_vbi_close,
1395 .ioctl = usbvision_vbi_ioctl,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001396};
1397
1398static struct video_device usbvision_vbi_template=
1399{
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001400 .fops = &usbvision_vbi_fops,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001401 .release = video_device_release,
1402 .name = "usbvision-vbi",
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001403 .minor = -1,
1404};
1405
1406
1407static struct video_device *usbvision_vdev_init(struct usb_usbvision *usbvision,
1408 struct video_device *vdev_template,
1409 char *name)
1410{
1411 struct usb_device *usb_dev = usbvision->dev;
1412 struct video_device *vdev;
1413
1414 if (usb_dev == NULL) {
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001415 err("%s: usbvision->dev is not set", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001416 return NULL;
1417 }
1418
1419 vdev = video_device_alloc();
1420 if (NULL == vdev) {
1421 return NULL;
1422 }
1423 *vdev = *vdev_template;
1424// vdev->minor = -1;
Hans Verkuil5e85e732008-07-20 06:31:39 -03001425 vdev->parent = &usb_dev->dev;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001426 snprintf(vdev->name, sizeof(vdev->name), "%s", name);
1427 video_set_drvdata(vdev, usbvision);
1428 return vdev;
1429}
1430
1431// unregister video4linux devices
1432static void usbvision_unregister_video(struct usb_usbvision *usbvision)
1433{
1434 // vbi Device:
1435 if (usbvision->vbi) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001436 PDEBUG(DBG_PROBE, "unregister /dev/vbi%d [v4l2]",
Hans Verkuilc6330fb2008-10-19 18:54:26 -03001437 usbvision->vbi->num);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001438 if (usbvision->vbi->minor != -1) {
1439 video_unregister_device(usbvision->vbi);
Thierry MERLEc5f48362007-05-08 17:22:29 -03001440 } else {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001441 video_device_release(usbvision->vbi);
1442 }
1443 usbvision->vbi = NULL;
1444 }
1445
1446 // Radio Device:
1447 if (usbvision->rdev) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001448 PDEBUG(DBG_PROBE, "unregister /dev/radio%d [v4l2]",
Hans Verkuilc6330fb2008-10-19 18:54:26 -03001449 usbvision->rdev->num);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001450 if (usbvision->rdev->minor != -1) {
1451 video_unregister_device(usbvision->rdev);
Thierry MERLEc5f48362007-05-08 17:22:29 -03001452 } else {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001453 video_device_release(usbvision->rdev);
1454 }
1455 usbvision->rdev = NULL;
1456 }
1457
1458 // Video Device:
1459 if (usbvision->vdev) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001460 PDEBUG(DBG_PROBE, "unregister /dev/video%d [v4l2]",
Hans Verkuilc6330fb2008-10-19 18:54:26 -03001461 usbvision->vdev->num);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001462 if (usbvision->vdev->minor != -1) {
1463 video_unregister_device(usbvision->vdev);
Thierry MERLEc5f48362007-05-08 17:22:29 -03001464 } else {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001465 video_device_release(usbvision->vdev);
1466 }
1467 usbvision->vdev = NULL;
1468 }
1469}
1470
1471// register video4linux devices
1472static int __devinit usbvision_register_video(struct usb_usbvision *usbvision)
1473{
1474 // Video Device:
Thierry MERLEc5f48362007-05-08 17:22:29 -03001475 usbvision->vdev = usbvision_vdev_init(usbvision,
1476 &usbvision_video_template,
1477 "USBVision Video");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001478 if (usbvision->vdev == NULL) {
1479 goto err_exit;
1480 }
Thierry MERLEc5f48362007-05-08 17:22:29 -03001481 if (video_register_device(usbvision->vdev,
1482 VFL_TYPE_GRABBER,
1483 video_nr)<0) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001484 goto err_exit;
1485 }
Thierry MERLEc5f48362007-05-08 17:22:29 -03001486 printk(KERN_INFO "USBVision[%d]: registered USBVision Video device /dev/video%d [v4l2]\n",
Hans Verkuilc6330fb2008-10-19 18:54:26 -03001487 usbvision->nr, usbvision->vdev->num);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001488
1489 // Radio Device:
1490 if (usbvision_device_data[usbvision->DevModel].Radio) {
1491 // usbvision has radio
Thierry MERLEc5f48362007-05-08 17:22:29 -03001492 usbvision->rdev = usbvision_vdev_init(usbvision,
1493 &usbvision_radio_template,
1494 "USBVision Radio");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001495 if (usbvision->rdev == NULL) {
1496 goto err_exit;
1497 }
Thierry MERLEc5f48362007-05-08 17:22:29 -03001498 if (video_register_device(usbvision->rdev,
1499 VFL_TYPE_RADIO,
1500 radio_nr)<0) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001501 goto err_exit;
1502 }
Thierry MERLEc5f48362007-05-08 17:22:29 -03001503 printk(KERN_INFO "USBVision[%d]: registered USBVision Radio device /dev/radio%d [v4l2]\n",
Hans Verkuilc6330fb2008-10-19 18:54:26 -03001504 usbvision->nr, usbvision->rdev->num);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001505 }
1506 // vbi Device:
1507 if (usbvision_device_data[usbvision->DevModel].vbi) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001508 usbvision->vbi = usbvision_vdev_init(usbvision,
1509 &usbvision_vbi_template,
1510 "USBVision VBI");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001511 if (usbvision->vdev == NULL) {
1512 goto err_exit;
1513 }
Thierry MERLEc5f48362007-05-08 17:22:29 -03001514 if (video_register_device(usbvision->vbi,
1515 VFL_TYPE_VBI,
1516 vbi_nr)<0) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001517 goto err_exit;
1518 }
Thierry MERLEc5f48362007-05-08 17:22:29 -03001519 printk(KERN_INFO "USBVision[%d]: registered USBVision VBI device /dev/vbi%d [v4l2] (Not Working Yet!)\n",
Hans Verkuilc6330fb2008-10-19 18:54:26 -03001520 usbvision->nr, usbvision->vbi->num);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001521 }
1522 // all done
1523 return 0;
1524
1525 err_exit:
1526 err("USBVision[%d]: video_register_device() failed", usbvision->nr);
1527 usbvision_unregister_video(usbvision);
1528 return -1;
1529}
1530
1531/*
1532 * usbvision_alloc()
1533 *
Thierry MERLEc5f48362007-05-08 17:22:29 -03001534 * This code allocates the struct usb_usbvision.
1535 * It is filled with default values.
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001536 *
1537 * Returns NULL on error, a pointer to usb_usbvision else.
1538 *
1539 */
1540static struct usb_usbvision *usbvision_alloc(struct usb_device *dev)
1541{
1542 struct usb_usbvision *usbvision;
1543
Thierry MERLEc5f48362007-05-08 17:22:29 -03001544 if ((usbvision = kzalloc(sizeof(struct usb_usbvision), GFP_KERNEL)) ==
1545 NULL) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001546 goto err_exit;
1547 }
1548
1549 usbvision->dev = dev;
1550
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001551 mutex_init(&usbvision->lock); /* available */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001552
1553 // prepare control urb for control messages during interrupts
1554 usbvision->ctrlUrb = usb_alloc_urb(USBVISION_URB_FRAMES, GFP_KERNEL);
1555 if (usbvision->ctrlUrb == NULL) {
1556 goto err_exit;
1557 }
1558 init_waitqueue_head(&usbvision->ctrlUrb_wq);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001559
1560 usbvision_init_powerOffTimer(usbvision);
1561
1562 return usbvision;
1563
1564err_exit:
1565 if (usbvision && usbvision->ctrlUrb) {
1566 usb_free_urb(usbvision->ctrlUrb);
1567 }
1568 if (usbvision) {
1569 kfree(usbvision);
1570 }
1571 return NULL;
1572}
1573
1574/*
1575 * usbvision_release()
1576 *
1577 * This code does final release of struct usb_usbvision. This happens
1578 * after the device is disconnected -and- all clients closed their files.
1579 *
1580 */
1581static void usbvision_release(struct usb_usbvision *usbvision)
1582{
1583 PDEBUG(DBG_PROBE, "");
1584
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001585 mutex_lock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001586
1587 usbvision_reset_powerOffTimer(usbvision);
1588
1589 usbvision->initialized = 0;
1590
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001591 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001592
1593 usbvision_remove_sysfs(usbvision->vdev);
1594 usbvision_unregister_video(usbvision);
1595
1596 if (usbvision->ctrlUrb) {
1597 usb_free_urb(usbvision->ctrlUrb);
1598 }
1599
1600 kfree(usbvision);
1601
1602 PDEBUG(DBG_PROBE, "success");
1603}
1604
1605
Thierry MERLEc5f48362007-05-08 17:22:29 -03001606/*********************** usb interface **********************************/
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001607
1608static void usbvision_configure_video(struct usb_usbvision *usbvision)
1609{
Thierry MERLEc5f48362007-05-08 17:22:29 -03001610 int model;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001611
1612 if (usbvision == NULL)
1613 return;
1614
1615 model = usbvision->DevModel;
1616 usbvision->palette = usbvision_v4l2_format[2]; // V4L2_PIX_FMT_RGB24;
1617
Trent Piephoc682b3a2007-04-14 15:16:26 -03001618 if (usbvision_device_data[usbvision->DevModel].Vin_Reg2_override) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001619 usbvision->Vin_Reg2_Preset =
1620 usbvision_device_data[usbvision->DevModel].Vin_Reg2;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001621 } else {
1622 usbvision->Vin_Reg2_Preset = 0;
1623 }
1624
Thierry MERLEc5f48362007-05-08 17:22:29 -03001625 usbvision->tvnormId = usbvision_device_data[model].VideoNorm;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001626
1627 usbvision->video_inputs = usbvision_device_data[model].VideoChannels;
1628 usbvision->ctl_input = 0;
1629
1630 /* This should be here to make i2c clients to be able to register */
Thierry MERLEc5f48362007-05-08 17:22:29 -03001631 /* first switch off audio */
1632 usbvision_audio_off(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001633 if (!PowerOnAtOpen) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001634 /* and then power up the noisy tuner */
1635 usbvision_power_on(usbvision);
Thierry MERLE1ff16c22007-04-14 16:23:49 -03001636 usbvision_i2c_register(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001637 }
1638}
1639
1640/*
1641 * usbvision_probe()
1642 *
1643 * This procedure queries device descriptor and accepts the interface
1644 * if it looks like USBVISION video device
1645 *
1646 */
Mauro Carvalho Chehab659ae562007-04-14 15:09:59 -03001647static int __devinit usbvision_probe(struct usb_interface *intf,
1648 const struct usb_device_id *devid)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001649{
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001650 struct usb_device *dev = usb_get_dev(interface_to_usbdev(intf));
1651 struct usb_interface *uif;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001652 __u8 ifnum = intf->altsetting->desc.bInterfaceNumber;
1653 const struct usb_host_interface *interface;
1654 struct usb_usbvision *usbvision = NULL;
1655 const struct usb_endpoint_descriptor *endpoint;
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001656 int model,i;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001657
1658 PDEBUG(DBG_PROBE, "VID=%#04x, PID=%#04x, ifnum=%u",
Mauro Carvalho Chehab659ae562007-04-14 15:09:59 -03001659 dev->descriptor.idVendor,
1660 dev->descriptor.idProduct, ifnum);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001661
Mauro Carvalho Chehab659ae562007-04-14 15:09:59 -03001662 model = devid->driver_info;
Mauro Carvalho Chehabf8a389d2007-04-14 15:17:35 -03001663 if ( (model<0) || (model>=usbvision_device_data_size) ) {
Thierry MERLE672d0132007-04-14 17:53:55 -03001664 PDEBUG(DBG_PROBE, "model out of bounds %d",model);
Mauro Carvalho Chehabf8a389d2007-04-14 15:17:35 -03001665 return -ENODEV;
1666 }
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001667 printk(KERN_INFO "%s: %s found\n", __func__,
Mauro Carvalho Chehab659ae562007-04-14 15:09:59 -03001668 usbvision_device_data[model].ModelString);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001669
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001670 if (usbvision_device_data[model].Interface >= 0) {
1671 interface = &dev->actconfig->interface[usbvision_device_data[model].Interface]->altsetting[0];
Thierry MERLEc5f48362007-05-08 17:22:29 -03001672 } else {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001673 interface = &dev->actconfig->interface[ifnum]->altsetting[0];
1674 }
1675 endpoint = &interface->endpoint[1].desc;
Julia Lawall13417982008-12-29 21:49:22 -03001676 if (usb_endpoint_type(endpoint) !=
Thierry MERLEc5f48362007-05-08 17:22:29 -03001677 USB_ENDPOINT_XFER_ISOC) {
1678 err("%s: interface %d. has non-ISO endpoint!",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001679 __func__, ifnum);
Thierry MERLEc5f48362007-05-08 17:22:29 -03001680 err("%s: Endpoint attributes %d",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001681 __func__, endpoint->bmAttributes);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001682 return -ENODEV;
1683 }
Julia Lawall13417982008-12-29 21:49:22 -03001684 if (usb_endpoint_dir_out(endpoint)) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001685 err("%s: interface %d. has ISO OUT endpoint!",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001686 __func__, ifnum);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001687 return -ENODEV;
1688 }
1689
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001690 if ((usbvision = usbvision_alloc(dev)) == NULL) {
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001691 err("%s: couldn't allocate USBVision struct", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001692 return -ENOMEM;
1693 }
Mauro Carvalho Chehab659ae562007-04-14 15:09:59 -03001694
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001695 if (dev->descriptor.bNumConfigurations > 1) {
1696 usbvision->bridgeType = BRIDGE_NT1004;
Thierry MERLEc5f48362007-05-08 17:22:29 -03001697 } else if (model == DAZZLE_DVC_90_REV_1_SECAM) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001698 usbvision->bridgeType = BRIDGE_NT1005;
Thierry MERLEc5f48362007-05-08 17:22:29 -03001699 } else {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001700 usbvision->bridgeType = BRIDGE_NT1003;
1701 }
1702 PDEBUG(DBG_PROBE, "bridgeType %d", usbvision->bridgeType);
1703
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001704 mutex_lock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001705
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001706 /* compute alternate max packet sizes */
1707 uif = dev->actconfig->interface[0];
1708
1709 usbvision->num_alt=uif->num_altsetting;
1710 PDEBUG(DBG_PROBE, "Alternate settings: %i",usbvision->num_alt);
1711 usbvision->alt_max_pkt_size = kmalloc(32*
1712 usbvision->num_alt,GFP_KERNEL);
1713 if (usbvision->alt_max_pkt_size == NULL) {
1714 err("usbvision: out of memory!\n");
Daniel Walker09911122007-12-12 18:22:48 -03001715 mutex_unlock(&usbvision->lock);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001716 return -ENOMEM;
1717 }
1718
1719 for (i = 0; i < usbvision->num_alt ; i++) {
1720 u16 tmp = le16_to_cpu(uif->altsetting[i].endpoint[1].desc.
1721 wMaxPacketSize);
1722 usbvision->alt_max_pkt_size[i] =
1723 (tmp & 0x07ff) * (((tmp & 0x1800) >> 11) + 1);
1724 PDEBUG(DBG_PROBE, "Alternate setting %i, max size= %i",i,
1725 usbvision->alt_max_pkt_size[i]);
1726 }
1727
1728
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001729 usbvision->nr = usbvision_nr++;
1730
1731 usbvision->have_tuner = usbvision_device_data[model].Tuner;
1732 if (usbvision->have_tuner) {
1733 usbvision->tuner_type = usbvision_device_data[model].TunerType;
1734 }
1735
1736 usbvision->tuner_addr = ADDR_UNSET;
1737
1738 usbvision->DevModel = model;
1739 usbvision->remove_pending = 0;
1740 usbvision->iface = ifnum;
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001741 usbvision->ifaceAlt = 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001742 usbvision->video_endp = endpoint->bEndpointAddress;
1743 usbvision->isocPacketSize = 0;
1744 usbvision->usb_bandwidth = 0;
1745 usbvision->user = 0;
1746 usbvision->streaming = Stream_Off;
1747 usbvision_register_video(usbvision);
1748 usbvision_configure_video(usbvision);
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001749 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001750
1751
1752 usb_set_intfdata (intf, usbvision);
1753 usbvision_create_sysfs(usbvision->vdev);
1754
1755 PDEBUG(DBG_PROBE, "success");
1756 return 0;
1757}
1758
1759
1760/*
1761 * usbvision_disconnect()
1762 *
1763 * This procedure stops all driver activity, deallocates interface-private
1764 * structure (pointed by 'ptr') and after that driver should be removable
1765 * with no ill consequences.
1766 *
1767 */
1768static void __devexit usbvision_disconnect(struct usb_interface *intf)
1769{
1770 struct usb_usbvision *usbvision = usb_get_intfdata(intf);
1771
1772 PDEBUG(DBG_PROBE, "");
1773
1774 if (usbvision == NULL) {
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001775 err("%s: usb_get_intfdata() failed", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001776 return;
1777 }
1778 usb_set_intfdata (intf, NULL);
1779
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001780 mutex_lock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001781
1782 // At this time we ask to cancel outstanding URBs
1783 usbvision_stop_isoc(usbvision);
1784
1785 if (usbvision->power) {
Thierry MERLE1ff16c22007-04-14 16:23:49 -03001786 usbvision_i2c_unregister(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001787 usbvision_power_off(usbvision);
1788 }
1789 usbvision->remove_pending = 1; // Now all ISO data will be ignored
1790
1791 usb_put_dev(usbvision->dev);
1792 usbvision->dev = NULL; // USB device is no more
1793
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001794 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001795
1796 if (usbvision->user) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001797 printk(KERN_INFO "%s: In use, disconnect pending\n",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001798 __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001799 wake_up_interruptible(&usbvision->wait_frame);
1800 wake_up_interruptible(&usbvision->wait_stream);
Thierry MERLEc5f48362007-05-08 17:22:29 -03001801 } else {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001802 usbvision_release(usbvision);
1803 }
1804
1805 PDEBUG(DBG_PROBE, "success");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001806}
1807
1808static struct usb_driver usbvision_driver = {
1809 .name = "usbvision",
1810 .id_table = usbvision_table,
1811 .probe = usbvision_probe,
1812 .disconnect = usbvision_disconnect
1813};
1814
1815/*
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001816 * usbvision_init()
1817 *
1818 * This code is run to initialize the driver.
1819 *
1820 */
1821static int __init usbvision_init(void)
1822{
1823 int errCode;
1824
1825 PDEBUG(DBG_PROBE, "");
1826
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001827 PDEBUG(DBG_IO, "IO debugging is enabled [video]");
1828 PDEBUG(DBG_PROBE, "PROBE debugging is enabled [video]");
Thierry MERLEc876a342006-12-09 16:42:54 -03001829 PDEBUG(DBG_MMAP, "MMAP debugging is enabled [video]");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001830
1831 /* disable planar mode support unless compression enabled */
1832 if (isocMode != ISOC_MODE_COMPRESS ) {
1833 // FIXME : not the right way to set supported flag
1834 usbvision_v4l2_format[6].supported = 0; // V4L2_PIX_FMT_YVU420
1835 usbvision_v4l2_format[7].supported = 0; // V4L2_PIX_FMT_YUV422P
1836 }
1837
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001838 errCode = usb_register(&usbvision_driver);
1839
1840 if (errCode == 0) {
Dwaine Gardende6a1b82007-01-07 21:13:55 -03001841 printk(KERN_INFO DRIVER_DESC " : " USBVISION_VERSION_STRING "\n");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001842 PDEBUG(DBG_PROBE, "success");
1843 }
1844 return errCode;
1845}
1846
1847static void __exit usbvision_exit(void)
1848{
1849 PDEBUG(DBG_PROBE, "");
1850
1851 usb_deregister(&usbvision_driver);
1852 PDEBUG(DBG_PROBE, "success");
1853}
1854
1855module_init(usbvision_init);
1856module_exit(usbvision_exit);
1857
1858/*
1859 * Overrides for Emacs so that we follow Linus's tabbing style.
1860 * ---------------------------------------------------------------------------
1861 * Local variables:
1862 * c-basic-offset: 8
1863 * End:
1864 */