blob: 334c77d9116ff7da319ba913b1304dd01d818cc3 [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
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -0300332 dev_err(&vdev->dev, "%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,
Hans Verkuilaecde8b2008-12-30 07:14:19 -0300480 struct v4l2_dbg_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
Hans Verkuilaecde8b2008-12-30 07:14:19 -0300485 if (!v4l2_chip_match_host(&reg->match))
Thierry MERLEc5f48362007-05-08 17:22:29 -0300486 return -EINVAL;
487 /* NT100x has a 8-bit register space */
488 errCode = usbvision_read_reg(usbvision, reg->reg&0xff);
489 if (errCode < 0) {
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -0300490 dev_err(&usbvision->vdev->dev,
491 "%s: VIDIOC_DBG_G_REGISTER failed: error %d\n",
492 __func__, errCode);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300493 return errCode;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300494 }
Trent Piephobc147132007-07-23 06:58:31 -0300495 reg->val = errCode;
Hans Verkuilaecde8b2008-12-30 07:14:19 -0300496 reg->size = 1;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300497 return 0;
498}
499
Thierry MERLEc5f48362007-05-08 17:22:29 -0300500static int vidioc_s_register (struct file *file, void *priv,
Hans Verkuilaecde8b2008-12-30 07:14:19 -0300501 struct v4l2_dbg_register *reg)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300502{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300503 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300504 int errCode;
505
Hans Verkuilaecde8b2008-12-30 07:14:19 -0300506 if (!v4l2_chip_match_host(&reg->match))
Thierry MERLEc5f48362007-05-08 17:22:29 -0300507 return -EINVAL;
508 /* NT100x has a 8-bit register space */
Trent Piephobc147132007-07-23 06:58:31 -0300509 errCode = usbvision_write_reg(usbvision, reg->reg&0xff, reg->val);
510 if (errCode < 0) {
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -0300511 dev_err(&usbvision->vdev->dev,
512 "%s: VIDIOC_DBG_S_REGISTER failed: error %d\n",
513 __func__, errCode);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300514 return errCode;
515 }
516 return 0;
517}
518#endif
519
520static int vidioc_querycap (struct file *file, void *priv,
521 struct v4l2_capability *vc)
522{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300523 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300524
525 strlcpy(vc->driver, "USBVision", sizeof(vc->driver));
526 strlcpy(vc->card,
527 usbvision_device_data[usbvision->DevModel].ModelString,
528 sizeof(vc->card));
Thierry MERLE6f2a2782009-01-20 17:40:44 -0300529 usb_make_path(usbvision->dev, vc->bus_info, sizeof(vc->bus_info));
Thierry MERLEc5f48362007-05-08 17:22:29 -0300530 vc->version = USBVISION_DRIVER_VERSION;
531 vc->capabilities = V4L2_CAP_VIDEO_CAPTURE |
532 V4L2_CAP_AUDIO |
533 V4L2_CAP_READWRITE |
534 V4L2_CAP_STREAMING |
535 (usbvision->have_tuner ? V4L2_CAP_TUNER : 0);
536 return 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300537}
538
Thierry MERLEc5f48362007-05-08 17:22:29 -0300539static int vidioc_enum_input (struct file *file, void *priv,
540 struct v4l2_input *vi)
541{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300542 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300543 int chan;
544
545 if ((vi->index >= usbvision->video_inputs) || (vi->index < 0) )
546 return -EINVAL;
547 if (usbvision->have_tuner) {
548 chan = vi->index;
549 } else {
550 chan = vi->index + 1; /*skip Television string*/
551 }
552 /* Determine the requested input characteristics
553 specific for each usbvision card model */
554 switch(chan) {
555 case 0:
556 if (usbvision_device_data[usbvision->DevModel].VideoChannels == 4) {
557 strcpy(vi->name, "White Video Input");
558 } else {
559 strcpy(vi->name, "Television");
560 vi->type = V4L2_INPUT_TYPE_TUNER;
561 vi->audioset = 1;
562 vi->tuner = chan;
563 vi->std = USBVISION_NORMS;
564 }
565 break;
566 case 1:
567 vi->type = V4L2_INPUT_TYPE_CAMERA;
568 if (usbvision_device_data[usbvision->DevModel].VideoChannels == 4) {
569 strcpy(vi->name, "Green Video Input");
570 } else {
571 strcpy(vi->name, "Composite Video Input");
572 }
573 vi->std = V4L2_STD_PAL;
574 break;
575 case 2:
576 vi->type = V4L2_INPUT_TYPE_CAMERA;
577 if (usbvision_device_data[usbvision->DevModel].VideoChannels == 4) {
578 strcpy(vi->name, "Yellow Video Input");
579 } else {
580 strcpy(vi->name, "S-Video Input");
581 }
582 vi->std = V4L2_STD_PAL;
583 break;
584 case 3:
585 vi->type = V4L2_INPUT_TYPE_CAMERA;
586 strcpy(vi->name, "Red Video Input");
587 vi->std = V4L2_STD_PAL;
588 break;
589 }
590 return 0;
591}
592
593static int vidioc_g_input (struct file *file, void *priv, unsigned int *input)
594{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300595 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300596
597 *input = usbvision->ctl_input;
598 return 0;
599}
600
601static int vidioc_s_input (struct file *file, void *priv, unsigned int input)
602{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300603 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300604
605 if ((input >= usbvision->video_inputs) || (input < 0) )
606 return -EINVAL;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300607
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -0300608 mutex_lock(&usbvision->lock);
Thierry MERLE66a17872007-06-26 16:35:30 -0300609 usbvision_muxsel(usbvision, input);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300610 usbvision_set_input(usbvision);
611 usbvision_set_output(usbvision,
612 usbvision->curwidth,
613 usbvision->curheight);
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -0300614 mutex_unlock(&usbvision->lock);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300615 return 0;
616}
617
618static int vidioc_s_std (struct file *file, void *priv, v4l2_std_id *id)
619{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300620 struct usb_usbvision *usbvision = video_drvdata(file);
621
Thierry MERLEc5f48362007-05-08 17:22:29 -0300622 usbvision->tvnormId=*id;
623
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -0300624 mutex_lock(&usbvision->lock);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300625 call_i2c_clients(usbvision, VIDIOC_S_STD,
626 &usbvision->tvnormId);
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -0300627 mutex_unlock(&usbvision->lock);
Thierry MERLE66a17872007-06-26 16:35:30 -0300628 /* propagate the change to the decoder */
629 usbvision_muxsel(usbvision, usbvision->ctl_input);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300630
631 return 0;
632}
633
634static int vidioc_g_tuner (struct file *file, void *priv,
635 struct v4l2_tuner *vt)
636{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300637 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300638
639 if (!usbvision->have_tuner || vt->index) // Only tuner 0
640 return -EINVAL;
641 if(usbvision->radio) {
642 strcpy(vt->name, "Radio");
643 vt->type = V4L2_TUNER_RADIO;
644 } else {
645 strcpy(vt->name, "Television");
646 }
647 /* Let clients fill in the remainder of this struct */
648 call_i2c_clients(usbvision,VIDIOC_G_TUNER,vt);
649
650 return 0;
651}
652
653static int vidioc_s_tuner (struct file *file, void *priv,
654 struct v4l2_tuner *vt)
655{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300656 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300657
658 // Only no or one tuner for now
659 if (!usbvision->have_tuner || vt->index)
660 return -EINVAL;
661 /* let clients handle this */
662 call_i2c_clients(usbvision,VIDIOC_S_TUNER,vt);
663
664 return 0;
665}
666
667static int vidioc_g_frequency (struct file *file, void *priv,
668 struct v4l2_frequency *freq)
669{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300670 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300671
672 freq->tuner = 0; // Only one tuner
673 if(usbvision->radio) {
674 freq->type = V4L2_TUNER_RADIO;
675 } else {
676 freq->type = V4L2_TUNER_ANALOG_TV;
677 }
678 freq->frequency = usbvision->freq;
679
680 return 0;
681}
682
683static int vidioc_s_frequency (struct file *file, void *priv,
684 struct v4l2_frequency *freq)
685{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300686 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300687
688 // Only no or one tuner for now
689 if (!usbvision->have_tuner || freq->tuner)
690 return -EINVAL;
691
692 usbvision->freq = freq->frequency;
693 call_i2c_clients(usbvision, VIDIOC_S_FREQUENCY, freq);
694
695 return 0;
696}
697
698static int vidioc_g_audio (struct file *file, void *priv, struct v4l2_audio *a)
699{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300700 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300701
702 memset(a,0,sizeof(*a));
703 if(usbvision->radio) {
704 strcpy(a->name,"Radio");
705 } else {
706 strcpy(a->name, "TV");
707 }
708
709 return 0;
710}
711
712static int vidioc_s_audio (struct file *file, void *fh,
713 struct v4l2_audio *a)
714{
715 if(a->index) {
716 return -EINVAL;
717 }
718
719 return 0;
720}
721
722static int vidioc_queryctrl (struct file *file, void *priv,
723 struct v4l2_queryctrl *ctrl)
724{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300725 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300726 int id=ctrl->id;
727
728 memset(ctrl,0,sizeof(*ctrl));
729 ctrl->id=id;
730
731 call_i2c_clients(usbvision, VIDIOC_QUERYCTRL, ctrl);
732
733 if (!ctrl->type)
734 return -EINVAL;
735
736 return 0;
737}
738
739static int vidioc_g_ctrl (struct file *file, void *priv,
740 struct v4l2_control *ctrl)
741{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300742 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300743 call_i2c_clients(usbvision, VIDIOC_G_CTRL, ctrl);
744
745 return 0;
746}
747
748static int vidioc_s_ctrl (struct file *file, void *priv,
749 struct v4l2_control *ctrl)
750{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300751 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300752 call_i2c_clients(usbvision, VIDIOC_S_CTRL, ctrl);
753
754 return 0;
755}
756
757static int vidioc_reqbufs (struct file *file,
758 void *priv, struct v4l2_requestbuffers *vr)
759{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300760 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300761 int ret;
762
763 RESTRICT_TO_RANGE(vr->count,1,USBVISION_NUMFRAMES);
764
765 /* Check input validity:
766 the user must do a VIDEO CAPTURE and MMAP method. */
767 if((vr->type != V4L2_BUF_TYPE_VIDEO_CAPTURE) ||
768 (vr->memory != V4L2_MEMORY_MMAP))
769 return -EINVAL;
770
771 if(usbvision->streaming == Stream_On) {
772 if ((ret = usbvision_stream_interrupt(usbvision)))
773 return ret;
774 }
775
776 usbvision_frames_free(usbvision);
777 usbvision_empty_framequeues(usbvision);
778 vr->count = usbvision_frames_alloc(usbvision,vr->count);
779
780 usbvision->curFrame = NULL;
781
782 return 0;
783}
784
785static int vidioc_querybuf (struct file *file,
786 void *priv, struct v4l2_buffer *vb)
787{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300788 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300789 struct usbvision_frame *frame;
790
791 /* FIXME : must control
792 that buffers are mapped (VIDIOC_REQBUFS has been called) */
793 if(vb->type != V4L2_CAP_VIDEO_CAPTURE) {
794 return -EINVAL;
795 }
796 if(vb->index>=usbvision->num_frames) {
797 return -EINVAL;
798 }
799 /* Updating the corresponding frame state */
800 vb->flags = 0;
801 frame = &usbvision->frame[vb->index];
802 if(frame->grabstate >= FrameState_Ready)
803 vb->flags |= V4L2_BUF_FLAG_QUEUED;
804 if(frame->grabstate >= FrameState_Done)
805 vb->flags |= V4L2_BUF_FLAG_DONE;
806 if(frame->grabstate == FrameState_Unused)
807 vb->flags |= V4L2_BUF_FLAG_MAPPED;
808 vb->memory = V4L2_MEMORY_MMAP;
809
810 vb->m.offset = vb->index*PAGE_ALIGN(usbvision->max_frame_size);
811
812 vb->memory = V4L2_MEMORY_MMAP;
813 vb->field = V4L2_FIELD_NONE;
814 vb->length = usbvision->curwidth*
815 usbvision->curheight*
816 usbvision->palette.bytes_per_pixel;
817 vb->timestamp = usbvision->frame[vb->index].timestamp;
818 vb->sequence = usbvision->frame[vb->index].sequence;
819 return 0;
820}
821
822static int vidioc_qbuf (struct file *file, void *priv, struct v4l2_buffer *vb)
823{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300824 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300825 struct usbvision_frame *frame;
826 unsigned long lock_flags;
827
828 /* FIXME : works only on VIDEO_CAPTURE MODE, MMAP. */
829 if(vb->type != V4L2_CAP_VIDEO_CAPTURE) {
830 return -EINVAL;
831 }
832 if(vb->index>=usbvision->num_frames) {
833 return -EINVAL;
834 }
835
836 frame = &usbvision->frame[vb->index];
837
838 if (frame->grabstate != FrameState_Unused) {
839 return -EAGAIN;
840 }
841
842 /* Mark it as ready and enqueue frame */
843 frame->grabstate = FrameState_Ready;
844 frame->scanstate = ScanState_Scanning;
845 frame->scanlength = 0; /* Accumulated in usbvision_parse_data() */
846
847 vb->flags &= ~V4L2_BUF_FLAG_DONE;
848
849 /* set v4l2_format index */
850 frame->v4l2_format = usbvision->palette;
851
852 spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
853 list_add_tail(&usbvision->frame[vb->index].frame, &usbvision->inqueue);
854 spin_unlock_irqrestore(&usbvision->queue_lock, lock_flags);
855
856 return 0;
857}
858
859static int vidioc_dqbuf (struct file *file, void *priv, struct v4l2_buffer *vb)
860{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300861 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300862 int ret;
863 struct usbvision_frame *f;
864 unsigned long lock_flags;
865
866 if (vb->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
867 return -EINVAL;
868
869 if (list_empty(&(usbvision->outqueue))) {
870 if (usbvision->streaming == Stream_Idle)
871 return -EINVAL;
872 ret = wait_event_interruptible
873 (usbvision->wait_frame,
874 !list_empty(&(usbvision->outqueue)));
875 if (ret)
876 return ret;
877 }
878
879 spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
880 f = list_entry(usbvision->outqueue.next,
881 struct usbvision_frame, frame);
882 list_del(usbvision->outqueue.next);
883 spin_unlock_irqrestore(&usbvision->queue_lock, lock_flags);
884
885 f->grabstate = FrameState_Unused;
886
887 vb->memory = V4L2_MEMORY_MMAP;
888 vb->flags = V4L2_BUF_FLAG_MAPPED |
889 V4L2_BUF_FLAG_QUEUED |
890 V4L2_BUF_FLAG_DONE;
891 vb->index = f->index;
892 vb->sequence = f->sequence;
893 vb->timestamp = f->timestamp;
894 vb->field = V4L2_FIELD_NONE;
895 vb->bytesused = f->scanlength;
896
897 return 0;
898}
899
900static int vidioc_streamon(struct file *file, void *priv, enum v4l2_buf_type i)
901{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300902 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300903 int b=V4L2_BUF_TYPE_VIDEO_CAPTURE;
904
905 usbvision->streaming = Stream_On;
906 call_i2c_clients(usbvision,VIDIOC_STREAMON , &b);
907
908 return 0;
909}
910
911static int vidioc_streamoff(struct file *file,
912 void *priv, enum v4l2_buf_type type)
913{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300914 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300915 int b=V4L2_BUF_TYPE_VIDEO_CAPTURE;
916
917 if (type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
918 return -EINVAL;
919
920 if(usbvision->streaming == Stream_On) {
921 usbvision_stream_interrupt(usbvision);
922 /* Stop all video streamings */
923 call_i2c_clients(usbvision,VIDIOC_STREAMOFF , &b);
924 }
925 usbvision_empty_framequeues(usbvision);
926
927 return 0;
928}
929
Hans Verkuil78b526a2008-05-28 12:16:41 -0300930static int vidioc_enum_fmt_vid_cap (struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300931 struct v4l2_fmtdesc *vfd)
932{
933 if(vfd->index>=USBVISION_SUPPORTED_PALETTES-1) {
934 return -EINVAL;
935 }
936 vfd->flags = 0;
937 vfd->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
938 strcpy(vfd->description,usbvision_v4l2_format[vfd->index].desc);
939 vfd->pixelformat = usbvision_v4l2_format[vfd->index].format;
940 memset(vfd->reserved, 0, sizeof(vfd->reserved));
941 return 0;
942}
943
Hans Verkuil78b526a2008-05-28 12:16:41 -0300944static int vidioc_g_fmt_vid_cap (struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300945 struct v4l2_format *vf)
946{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300947 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300948 vf->fmt.pix.width = usbvision->curwidth;
949 vf->fmt.pix.height = usbvision->curheight;
950 vf->fmt.pix.pixelformat = usbvision->palette.format;
951 vf->fmt.pix.bytesperline =
952 usbvision->curwidth*usbvision->palette.bytes_per_pixel;
953 vf->fmt.pix.sizeimage = vf->fmt.pix.bytesperline*usbvision->curheight;
954 vf->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
955 vf->fmt.pix.field = V4L2_FIELD_NONE; /* Always progressive image */
956
957 return 0;
958}
959
Hans Verkuil78b526a2008-05-28 12:16:41 -0300960static int vidioc_try_fmt_vid_cap (struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300961 struct v4l2_format *vf)
962{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300963 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300964 int formatIdx;
965
966 /* Find requested format in available ones */
967 for(formatIdx=0;formatIdx<USBVISION_SUPPORTED_PALETTES;formatIdx++) {
968 if(vf->fmt.pix.pixelformat ==
969 usbvision_v4l2_format[formatIdx].format) {
970 usbvision->palette = usbvision_v4l2_format[formatIdx];
971 break;
972 }
973 }
974 /* robustness */
975 if(formatIdx == USBVISION_SUPPORTED_PALETTES) {
976 return -EINVAL;
977 }
978 RESTRICT_TO_RANGE(vf->fmt.pix.width, MIN_FRAME_WIDTH, MAX_FRAME_WIDTH);
979 RESTRICT_TO_RANGE(vf->fmt.pix.height, MIN_FRAME_HEIGHT, MAX_FRAME_HEIGHT);
980
981 vf->fmt.pix.bytesperline = vf->fmt.pix.width*
982 usbvision->palette.bytes_per_pixel;
983 vf->fmt.pix.sizeimage = vf->fmt.pix.bytesperline*vf->fmt.pix.height;
984
985 return 0;
986}
987
Hans Verkuil78b526a2008-05-28 12:16:41 -0300988static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300989 struct v4l2_format *vf)
990{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300991 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300992 int ret;
993
Hans Verkuil78b526a2008-05-28 12:16:41 -0300994 if( 0 != (ret=vidioc_try_fmt_vid_cap (file, priv, vf)) ) {
Thierry MERLEc5f48362007-05-08 17:22:29 -0300995 return ret;
996 }
997
998 /* stop io in case it is already in progress */
999 if(usbvision->streaming == Stream_On) {
1000 if ((ret = usbvision_stream_interrupt(usbvision)))
1001 return ret;
1002 }
1003 usbvision_frames_free(usbvision);
1004 usbvision_empty_framequeues(usbvision);
1005
1006 usbvision->curFrame = NULL;
1007
1008 /* by now we are committed to the new data... */
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001009 mutex_lock(&usbvision->lock);
Thierry MERLEc5f48362007-05-08 17:22:29 -03001010 usbvision_set_output(usbvision, vf->fmt.pix.width, vf->fmt.pix.height);
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001011 mutex_unlock(&usbvision->lock);
Thierry MERLEc5f48362007-05-08 17:22:29 -03001012
1013 return 0;
1014}
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001015
Al Viro8a5ab412007-02-09 16:38:20 +00001016static ssize_t usbvision_v4l2_read(struct file *file, char __user *buf,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001017 size_t count, loff_t *ppos)
1018{
Hans Verkuilc170ecf2008-08-23 08:32:09 -03001019 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001020 int noblock = file->f_flags & O_NONBLOCK;
1021 unsigned long lock_flags;
1022
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001023 int ret,i;
1024 struct usbvision_frame *frame;
1025
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001026 PDEBUG(DBG_IO, "%s: %ld bytes, noblock=%d", __func__,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001027 (unsigned long)count, noblock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001028
1029 if (!USBVISION_IS_OPERATIONAL(usbvision) || (buf == NULL))
1030 return -EFAULT;
1031
Thierry MERLEc5f48362007-05-08 17:22:29 -03001032 /* This entry point is compatible with the mmap routines
1033 so that a user can do either VIDIOC_QBUF/VIDIOC_DQBUF
1034 to get frames or call read on the device. */
Thierry MERLE6f78e182007-02-07 10:13:11 -03001035 if(!usbvision->num_frames) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001036 /* First, allocate some frames to work with
1037 if this has not been done with VIDIOC_REQBUF */
Thierry MERLE6f78e182007-02-07 10:13:11 -03001038 usbvision_frames_free(usbvision);
1039 usbvision_empty_framequeues(usbvision);
1040 usbvision_frames_alloc(usbvision,USBVISION_NUMFRAMES);
1041 }
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001042
Thierry MERLE6f78e182007-02-07 10:13:11 -03001043 if(usbvision->streaming != Stream_On) {
1044 /* no stream is running, make it running ! */
1045 usbvision->streaming = Stream_On;
1046 call_i2c_clients(usbvision,VIDIOC_STREAMON , NULL);
1047 }
1048
Thierry MERLEc5f48362007-05-08 17:22:29 -03001049 /* Then, enqueue as many frames as possible
1050 (like a user of VIDIOC_QBUF would do) */
Thierry MERLE6f78e182007-02-07 10:13:11 -03001051 for(i=0;i<usbvision->num_frames;i++) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001052 frame = &usbvision->frame[i];
1053 if(frame->grabstate == FrameState_Unused) {
1054 /* Mark it as ready and enqueue frame */
1055 frame->grabstate = FrameState_Ready;
1056 frame->scanstate = ScanState_Scanning;
Thierry MERLEc5f48362007-05-08 17:22:29 -03001057 /* Accumulated in usbvision_parse_data() */
1058 frame->scanlength = 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001059
1060 /* set v4l2_format index */
1061 frame->v4l2_format = usbvision->palette;
1062
1063 spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
1064 list_add_tail(&frame->frame, &usbvision->inqueue);
Thierry MERLEc5f48362007-05-08 17:22:29 -03001065 spin_unlock_irqrestore(&usbvision->queue_lock,
1066 lock_flags);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001067 }
1068 }
1069
1070 /* Then try to steal a frame (like a VIDIOC_DQBUF would do) */
1071 if (list_empty(&(usbvision->outqueue))) {
1072 if(noblock)
1073 return -EAGAIN;
1074
1075 ret = wait_event_interruptible
1076 (usbvision->wait_frame,
1077 !list_empty(&(usbvision->outqueue)));
1078 if (ret)
1079 return ret;
1080 }
1081
1082 spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
1083 frame = list_entry(usbvision->outqueue.next,
1084 struct usbvision_frame, frame);
1085 list_del(usbvision->outqueue.next);
1086 spin_unlock_irqrestore(&usbvision->queue_lock, lock_flags);
1087
1088 /* An error returns an empty frame */
1089 if (frame->grabstate == FrameState_Error) {
1090 frame->bytes_read = 0;
1091 return 0;
1092 }
1093
Thierry MERLEc5f48362007-05-08 17:22:29 -03001094 PDEBUG(DBG_IO, "%s: frmx=%d, bytes_read=%ld, scanlength=%ld",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001095 __func__,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001096 frame->index, frame->bytes_read, frame->scanlength);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001097
1098 /* copy bytes to user space; we allow for partials reads */
1099 if ((count + frame->bytes_read) > (unsigned long)frame->scanlength)
1100 count = frame->scanlength - frame->bytes_read;
1101
1102 if (copy_to_user(buf, frame->data + frame->bytes_read, count)) {
1103 return -EFAULT;
1104 }
1105
1106 frame->bytes_read += count;
Thierry MERLEc5f48362007-05-08 17:22:29 -03001107 PDEBUG(DBG_IO, "%s: {copy} count used=%ld, new bytes_read=%ld",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001108 __func__,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001109 (unsigned long)count, frame->bytes_read);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001110
Thierry MERLEc5f48362007-05-08 17:22:29 -03001111 /* For now, forget the frame if it has not been read in one shot. */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001112/* if (frame->bytes_read >= frame->scanlength) {// All data has been read */
1113 frame->bytes_read = 0;
1114
1115 /* Mark it as available to be used again. */
Thierry MERLEc430ca12006-12-29 20:32:08 -03001116 frame->grabstate = FrameState_Unused;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001117/* } */
1118
1119 return count;
1120}
1121
1122static int usbvision_v4l2_mmap(struct file *file, struct vm_area_struct *vma)
1123{
1124 unsigned long size = vma->vm_end - vma->vm_start,
1125 start = vma->vm_start;
1126 void *pos;
1127 u32 i;
Hans Verkuilc170ecf2008-08-23 08:32:09 -03001128 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001129
Thierry MERLE6f78e182007-02-07 10:13:11 -03001130 PDEBUG(DBG_MMAP, "mmap");
1131
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001132 mutex_lock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001133
1134 if (!USBVISION_IS_OPERATIONAL(usbvision)) {
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001135 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001136 return -EFAULT;
1137 }
1138
1139 if (!(vma->vm_flags & VM_WRITE) ||
Thierry MERLE6f78e182007-02-07 10:13:11 -03001140 size != PAGE_ALIGN(usbvision->max_frame_size)) {
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001141 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001142 return -EINVAL;
1143 }
1144
Thierry MERLE6f78e182007-02-07 10:13:11 -03001145 for (i = 0; i < usbvision->num_frames; i++) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001146 if (((PAGE_ALIGN(usbvision->max_frame_size)*i) >> PAGE_SHIFT) ==
1147 vma->vm_pgoff)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001148 break;
1149 }
Thierry MERLE6f78e182007-02-07 10:13:11 -03001150 if (i == usbvision->num_frames) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001151 PDEBUG(DBG_MMAP,
1152 "mmap: user supplied mapping address is out of range");
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001153 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001154 return -EINVAL;
1155 }
1156
1157 /* VM_IO is eventually going to replace PageReserved altogether */
1158 vma->vm_flags |= VM_IO;
1159 vma->vm_flags |= VM_RESERVED; /* avoid to swap out this VMA */
1160
1161 pos = usbvision->frame[i].data;
1162 while (size > 0) {
1163
1164 if (vm_insert_page(vma, start, vmalloc_to_page(pos))) {
Thierry MERLEc876a342006-12-09 16:42:54 -03001165 PDEBUG(DBG_MMAP, "mmap: vm_insert_page failed");
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001166 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001167 return -EAGAIN;
1168 }
1169 start += PAGE_SIZE;
1170 pos += PAGE_SIZE;
1171 size -= PAGE_SIZE;
1172 }
1173
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001174 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001175 return 0;
1176}
1177
1178
1179/*
1180 * Here comes the stuff for radio on usbvision based devices
1181 *
1182 */
Hans Verkuilbec43662008-12-30 06:58:20 -03001183static int usbvision_radio_open(struct file *file)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001184{
Hans Verkuilc170ecf2008-08-23 08:32:09 -03001185 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001186 int errCode = 0;
1187
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001188 PDEBUG(DBG_IO, "%s:", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001189
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001190 mutex_lock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001191
1192 if (usbvision->user) {
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001193 dev_err(&usbvision->rdev->dev,
1194 "%s: Someone tried to open an already opened USBVision Radio!\n",
1195 __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001196 errCode = -EBUSY;
1197 }
1198 else {
1199 if(PowerOnAtOpen) {
1200 usbvision_reset_powerOffTimer(usbvision);
1201 if (usbvision->power == 0) {
1202 usbvision_power_on(usbvision);
Thierry MERLE1ff16c22007-04-14 16:23:49 -03001203 usbvision_i2c_register(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001204 }
1205 }
1206
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001207 /* Alternate interface 1 is is the biggest frame size */
1208 errCode = usbvision_set_alternate(usbvision);
1209 if (errCode < 0) {
1210 usbvision->last_error = errCode;
Andrew Morton544e6172007-12-12 18:25:23 -03001211 errCode = -EBUSY;
1212 goto out;
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001213 }
1214
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001215 // If so far no errors then we shall start the radio
1216 usbvision->radio = 1;
1217 call_i2c_clients(usbvision,AUDC_SET_RADIO,&usbvision->tuner_type);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001218 usbvision_set_audio(usbvision, USBVISION_AUDIO_RADIO);
1219 usbvision->user++;
1220 }
1221
1222 if (errCode) {
1223 if (PowerOnAtOpen) {
Thierry MERLE1ff16c22007-04-14 16:23:49 -03001224 usbvision_i2c_unregister(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001225 usbvision_power_off(usbvision);
1226 usbvision->initialized = 0;
1227 }
1228 }
Andrew Morton544e6172007-12-12 18:25:23 -03001229out:
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001230 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001231 return errCode;
1232}
1233
1234
Hans Verkuilbec43662008-12-30 06:58:20 -03001235static int usbvision_radio_close(struct file *file)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001236{
Hans Verkuilc170ecf2008-08-23 08:32:09 -03001237 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001238 int errCode = 0;
1239
1240 PDEBUG(DBG_IO, "");
1241
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001242 mutex_lock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001243
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001244 /* Set packet size to 0 */
1245 usbvision->ifaceAlt=0;
1246 errCode = usb_set_interface(usbvision->dev, usbvision->iface,
1247 usbvision->ifaceAlt);
1248
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001249 usbvision_audio_off(usbvision);
1250 usbvision->radio=0;
1251 usbvision->user--;
1252
1253 if (PowerOnAtOpen) {
1254 usbvision_set_powerOffTimer(usbvision);
1255 usbvision->initialized = 0;
1256 }
1257
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001258 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001259
1260 if (usbvision->remove_pending) {
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001261 printk(KERN_INFO "%s: Final disconnect\n", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001262 usbvision_release(usbvision);
1263 }
1264
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001265 PDEBUG(DBG_IO, "success");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001266 return errCode;
1267}
1268
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001269/*
1270 * Here comes the stuff for vbi on usbvision based devices
1271 *
1272 */
Hans Verkuilbec43662008-12-30 06:58:20 -03001273static int usbvision_vbi_open(struct file *file)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001274{
1275 /* TODO */
Thierry MERLEc5f48362007-05-08 17:22:29 -03001276 return -ENODEV;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001277}
1278
Hans Verkuilbec43662008-12-30 06:58:20 -03001279static int usbvision_vbi_close(struct file *file)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001280{
1281 /* TODO */
Thierry MERLEc5f48362007-05-08 17:22:29 -03001282 return -ENODEV;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001283}
1284
Hans Verkuil069b7472008-12-30 07:04:34 -03001285static long usbvision_do_vbi_ioctl(struct file *file,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001286 unsigned int cmd, void *arg)
1287{
1288 /* TODO */
Thierry MERLEc5f48362007-05-08 17:22:29 -03001289 return -ENOIOCTLCMD;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001290}
1291
Hans Verkuil069b7472008-12-30 07:04:34 -03001292static long usbvision_vbi_ioctl(struct file *file,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001293 unsigned int cmd, unsigned long arg)
1294{
Hans Verkuilf473bf72008-11-01 08:25:11 -03001295 return video_usercopy(file, cmd, arg, usbvision_do_vbi_ioctl);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001296}
1297
1298
1299//
1300// Video registration stuff
1301//
1302
1303// Video template
Hans Verkuilbec43662008-12-30 06:58:20 -03001304static const struct v4l2_file_operations usbvision_fops = {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001305 .owner = THIS_MODULE,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001306 .open = usbvision_v4l2_open,
1307 .release = usbvision_v4l2_close,
1308 .read = usbvision_v4l2_read,
1309 .mmap = usbvision_v4l2_mmap,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001310 .ioctl = video_ioctl2,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001311/* .poll = video_poll, */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001312};
Hans Verkuila3998102008-07-21 02:57:38 -03001313
1314static const struct v4l2_ioctl_ops usbvision_ioctl_ops = {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001315 .vidioc_querycap = vidioc_querycap,
Hans Verkuil78b526a2008-05-28 12:16:41 -03001316 .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap,
1317 .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap,
1318 .vidioc_try_fmt_vid_cap = vidioc_try_fmt_vid_cap,
1319 .vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001320 .vidioc_reqbufs = vidioc_reqbufs,
1321 .vidioc_querybuf = vidioc_querybuf,
1322 .vidioc_qbuf = vidioc_qbuf,
1323 .vidioc_dqbuf = vidioc_dqbuf,
1324 .vidioc_s_std = vidioc_s_std,
1325 .vidioc_enum_input = vidioc_enum_input,
1326 .vidioc_g_input = vidioc_g_input,
1327 .vidioc_s_input = vidioc_s_input,
1328 .vidioc_queryctrl = vidioc_queryctrl,
1329 .vidioc_g_audio = vidioc_g_audio,
Al Viroed4d6372007-09-26 01:53:42 +01001330 .vidioc_s_audio = vidioc_s_audio,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001331 .vidioc_g_ctrl = vidioc_g_ctrl,
1332 .vidioc_s_ctrl = vidioc_s_ctrl,
1333 .vidioc_streamon = vidioc_streamon,
1334 .vidioc_streamoff = vidioc_streamoff,
1335#ifdef CONFIG_VIDEO_V4L1_COMPAT
1336/* .vidiocgmbuf = vidiocgmbuf, */
1337#endif
1338 .vidioc_g_tuner = vidioc_g_tuner,
1339 .vidioc_s_tuner = vidioc_s_tuner,
1340 .vidioc_g_frequency = vidioc_g_frequency,
1341 .vidioc_s_frequency = vidioc_s_frequency,
1342#ifdef CONFIG_VIDEO_ADV_DEBUG
1343 .vidioc_g_register = vidioc_g_register,
1344 .vidioc_s_register = vidioc_s_register,
1345#endif
Hans Verkuila3998102008-07-21 02:57:38 -03001346};
1347
1348static struct video_device usbvision_video_template = {
Hans Verkuila3998102008-07-21 02:57:38 -03001349 .fops = &usbvision_fops,
1350 .ioctl_ops = &usbvision_ioctl_ops,
1351 .name = "usbvision-video",
1352 .release = video_device_release,
1353 .minor = -1,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001354 .tvnorms = USBVISION_NORMS,
1355 .current_norm = V4L2_STD_PAL
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001356};
1357
1358
1359// Radio template
Hans Verkuilbec43662008-12-30 06:58:20 -03001360static const struct v4l2_file_operations usbvision_radio_fops = {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001361 .owner = THIS_MODULE,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001362 .open = usbvision_radio_open,
1363 .release = usbvision_radio_close,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001364 .ioctl = video_ioctl2,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001365};
1366
Hans Verkuila3998102008-07-21 02:57:38 -03001367static const struct v4l2_ioctl_ops usbvision_radio_ioctl_ops = {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001368 .vidioc_querycap = vidioc_querycap,
1369 .vidioc_enum_input = vidioc_enum_input,
1370 .vidioc_g_input = vidioc_g_input,
1371 .vidioc_s_input = vidioc_s_input,
1372 .vidioc_queryctrl = vidioc_queryctrl,
1373 .vidioc_g_audio = vidioc_g_audio,
Al Viroed4d6372007-09-26 01:53:42 +01001374 .vidioc_s_audio = vidioc_s_audio,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001375 .vidioc_g_ctrl = vidioc_g_ctrl,
1376 .vidioc_s_ctrl = vidioc_s_ctrl,
1377 .vidioc_g_tuner = vidioc_g_tuner,
1378 .vidioc_s_tuner = vidioc_s_tuner,
1379 .vidioc_g_frequency = vidioc_g_frequency,
1380 .vidioc_s_frequency = vidioc_s_frequency,
Hans Verkuila3998102008-07-21 02:57:38 -03001381};
1382
1383static struct video_device usbvision_radio_template = {
Hans Verkuila3998102008-07-21 02:57:38 -03001384 .fops = &usbvision_radio_fops,
1385 .name = "usbvision-radio",
1386 .release = video_device_release,
1387 .minor = -1,
1388 .ioctl_ops = &usbvision_radio_ioctl_ops,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001389
Thierry MERLEc5f48362007-05-08 17:22:29 -03001390 .tvnorms = USBVISION_NORMS,
1391 .current_norm = V4L2_STD_PAL
1392};
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001393
1394// vbi template
Hans Verkuilbec43662008-12-30 06:58:20 -03001395static const struct v4l2_file_operations usbvision_vbi_fops = {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001396 .owner = THIS_MODULE,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001397 .open = usbvision_vbi_open,
1398 .release = usbvision_vbi_close,
1399 .ioctl = usbvision_vbi_ioctl,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001400};
1401
1402static struct video_device usbvision_vbi_template=
1403{
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001404 .fops = &usbvision_vbi_fops,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001405 .release = video_device_release,
1406 .name = "usbvision-vbi",
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001407 .minor = -1,
1408};
1409
1410
1411static struct video_device *usbvision_vdev_init(struct usb_usbvision *usbvision,
1412 struct video_device *vdev_template,
1413 char *name)
1414{
1415 struct usb_device *usb_dev = usbvision->dev;
1416 struct video_device *vdev;
1417
1418 if (usb_dev == NULL) {
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001419 dev_err(&usbvision->dev->dev,
1420 "%s: usbvision->dev is not set\n", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001421 return NULL;
1422 }
1423
1424 vdev = video_device_alloc();
1425 if (NULL == vdev) {
1426 return NULL;
1427 }
1428 *vdev = *vdev_template;
1429// vdev->minor = -1;
Hans Verkuil5e85e732008-07-20 06:31:39 -03001430 vdev->parent = &usb_dev->dev;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001431 snprintf(vdev->name, sizeof(vdev->name), "%s", name);
1432 video_set_drvdata(vdev, usbvision);
1433 return vdev;
1434}
1435
1436// unregister video4linux devices
1437static void usbvision_unregister_video(struct usb_usbvision *usbvision)
1438{
1439 // vbi Device:
1440 if (usbvision->vbi) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001441 PDEBUG(DBG_PROBE, "unregister /dev/vbi%d [v4l2]",
Hans Verkuilc6330fb2008-10-19 18:54:26 -03001442 usbvision->vbi->num);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001443 if (usbvision->vbi->minor != -1) {
1444 video_unregister_device(usbvision->vbi);
Thierry MERLEc5f48362007-05-08 17:22:29 -03001445 } else {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001446 video_device_release(usbvision->vbi);
1447 }
1448 usbvision->vbi = NULL;
1449 }
1450
1451 // Radio Device:
1452 if (usbvision->rdev) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001453 PDEBUG(DBG_PROBE, "unregister /dev/radio%d [v4l2]",
Hans Verkuilc6330fb2008-10-19 18:54:26 -03001454 usbvision->rdev->num);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001455 if (usbvision->rdev->minor != -1) {
1456 video_unregister_device(usbvision->rdev);
Thierry MERLEc5f48362007-05-08 17:22:29 -03001457 } else {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001458 video_device_release(usbvision->rdev);
1459 }
1460 usbvision->rdev = NULL;
1461 }
1462
1463 // Video Device:
1464 if (usbvision->vdev) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001465 PDEBUG(DBG_PROBE, "unregister /dev/video%d [v4l2]",
Hans Verkuilc6330fb2008-10-19 18:54:26 -03001466 usbvision->vdev->num);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001467 if (usbvision->vdev->minor != -1) {
1468 video_unregister_device(usbvision->vdev);
Thierry MERLEc5f48362007-05-08 17:22:29 -03001469 } else {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001470 video_device_release(usbvision->vdev);
1471 }
1472 usbvision->vdev = NULL;
1473 }
1474}
1475
1476// register video4linux devices
1477static int __devinit usbvision_register_video(struct usb_usbvision *usbvision)
1478{
1479 // Video Device:
Thierry MERLEc5f48362007-05-08 17:22:29 -03001480 usbvision->vdev = usbvision_vdev_init(usbvision,
1481 &usbvision_video_template,
1482 "USBVision Video");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001483 if (usbvision->vdev == NULL) {
1484 goto err_exit;
1485 }
Thierry MERLEc5f48362007-05-08 17:22:29 -03001486 if (video_register_device(usbvision->vdev,
1487 VFL_TYPE_GRABBER,
1488 video_nr)<0) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001489 goto err_exit;
1490 }
Thierry MERLEc5f48362007-05-08 17:22:29 -03001491 printk(KERN_INFO "USBVision[%d]: registered USBVision Video device /dev/video%d [v4l2]\n",
Hans Verkuilc6330fb2008-10-19 18:54:26 -03001492 usbvision->nr, usbvision->vdev->num);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001493
1494 // Radio Device:
1495 if (usbvision_device_data[usbvision->DevModel].Radio) {
1496 // usbvision has radio
Thierry MERLEc5f48362007-05-08 17:22:29 -03001497 usbvision->rdev = usbvision_vdev_init(usbvision,
1498 &usbvision_radio_template,
1499 "USBVision Radio");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001500 if (usbvision->rdev == NULL) {
1501 goto err_exit;
1502 }
Thierry MERLEc5f48362007-05-08 17:22:29 -03001503 if (video_register_device(usbvision->rdev,
1504 VFL_TYPE_RADIO,
1505 radio_nr)<0) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001506 goto err_exit;
1507 }
Thierry MERLEc5f48362007-05-08 17:22:29 -03001508 printk(KERN_INFO "USBVision[%d]: registered USBVision Radio device /dev/radio%d [v4l2]\n",
Hans Verkuilc6330fb2008-10-19 18:54:26 -03001509 usbvision->nr, usbvision->rdev->num);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001510 }
1511 // vbi Device:
1512 if (usbvision_device_data[usbvision->DevModel].vbi) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001513 usbvision->vbi = usbvision_vdev_init(usbvision,
1514 &usbvision_vbi_template,
1515 "USBVision VBI");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001516 if (usbvision->vdev == NULL) {
1517 goto err_exit;
1518 }
Thierry MERLEc5f48362007-05-08 17:22:29 -03001519 if (video_register_device(usbvision->vbi,
1520 VFL_TYPE_VBI,
1521 vbi_nr)<0) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001522 goto err_exit;
1523 }
Thierry MERLEc5f48362007-05-08 17:22:29 -03001524 printk(KERN_INFO "USBVision[%d]: registered USBVision VBI device /dev/vbi%d [v4l2] (Not Working Yet!)\n",
Hans Verkuilc6330fb2008-10-19 18:54:26 -03001525 usbvision->nr, usbvision->vbi->num);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001526 }
1527 // all done
1528 return 0;
1529
1530 err_exit:
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001531 dev_err(&usbvision->dev->dev,
1532 "USBVision[%d]: video_register_device() failed\n",
1533 usbvision->nr);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001534 usbvision_unregister_video(usbvision);
1535 return -1;
1536}
1537
1538/*
1539 * usbvision_alloc()
1540 *
Thierry MERLEc5f48362007-05-08 17:22:29 -03001541 * This code allocates the struct usb_usbvision.
1542 * It is filled with default values.
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001543 *
1544 * Returns NULL on error, a pointer to usb_usbvision else.
1545 *
1546 */
1547static struct usb_usbvision *usbvision_alloc(struct usb_device *dev)
1548{
1549 struct usb_usbvision *usbvision;
1550
Thierry MERLEc5f48362007-05-08 17:22:29 -03001551 if ((usbvision = kzalloc(sizeof(struct usb_usbvision), GFP_KERNEL)) ==
1552 NULL) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001553 goto err_exit;
1554 }
1555
1556 usbvision->dev = dev;
1557
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001558 mutex_init(&usbvision->lock); /* available */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001559
1560 // prepare control urb for control messages during interrupts
1561 usbvision->ctrlUrb = usb_alloc_urb(USBVISION_URB_FRAMES, GFP_KERNEL);
1562 if (usbvision->ctrlUrb == NULL) {
1563 goto err_exit;
1564 }
1565 init_waitqueue_head(&usbvision->ctrlUrb_wq);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001566
1567 usbvision_init_powerOffTimer(usbvision);
1568
1569 return usbvision;
1570
1571err_exit:
1572 if (usbvision && usbvision->ctrlUrb) {
1573 usb_free_urb(usbvision->ctrlUrb);
1574 }
1575 if (usbvision) {
1576 kfree(usbvision);
1577 }
1578 return NULL;
1579}
1580
1581/*
1582 * usbvision_release()
1583 *
1584 * This code does final release of struct usb_usbvision. This happens
1585 * after the device is disconnected -and- all clients closed their files.
1586 *
1587 */
1588static void usbvision_release(struct usb_usbvision *usbvision)
1589{
1590 PDEBUG(DBG_PROBE, "");
1591
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001592 mutex_lock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001593
1594 usbvision_reset_powerOffTimer(usbvision);
1595
1596 usbvision->initialized = 0;
1597
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001598 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001599
1600 usbvision_remove_sysfs(usbvision->vdev);
1601 usbvision_unregister_video(usbvision);
1602
1603 if (usbvision->ctrlUrb) {
1604 usb_free_urb(usbvision->ctrlUrb);
1605 }
1606
1607 kfree(usbvision);
1608
1609 PDEBUG(DBG_PROBE, "success");
1610}
1611
1612
Thierry MERLEc5f48362007-05-08 17:22:29 -03001613/*********************** usb interface **********************************/
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001614
1615static void usbvision_configure_video(struct usb_usbvision *usbvision)
1616{
Thierry MERLEc5f48362007-05-08 17:22:29 -03001617 int model;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001618
1619 if (usbvision == NULL)
1620 return;
1621
1622 model = usbvision->DevModel;
1623 usbvision->palette = usbvision_v4l2_format[2]; // V4L2_PIX_FMT_RGB24;
1624
Trent Piephoc682b3a2007-04-14 15:16:26 -03001625 if (usbvision_device_data[usbvision->DevModel].Vin_Reg2_override) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001626 usbvision->Vin_Reg2_Preset =
1627 usbvision_device_data[usbvision->DevModel].Vin_Reg2;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001628 } else {
1629 usbvision->Vin_Reg2_Preset = 0;
1630 }
1631
Thierry MERLEc5f48362007-05-08 17:22:29 -03001632 usbvision->tvnormId = usbvision_device_data[model].VideoNorm;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001633
1634 usbvision->video_inputs = usbvision_device_data[model].VideoChannels;
1635 usbvision->ctl_input = 0;
1636
1637 /* This should be here to make i2c clients to be able to register */
Thierry MERLEc5f48362007-05-08 17:22:29 -03001638 /* first switch off audio */
1639 usbvision_audio_off(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001640 if (!PowerOnAtOpen) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001641 /* and then power up the noisy tuner */
1642 usbvision_power_on(usbvision);
Thierry MERLE1ff16c22007-04-14 16:23:49 -03001643 usbvision_i2c_register(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001644 }
1645}
1646
1647/*
1648 * usbvision_probe()
1649 *
1650 * This procedure queries device descriptor and accepts the interface
1651 * if it looks like USBVISION video device
1652 *
1653 */
Mauro Carvalho Chehab659ae562007-04-14 15:09:59 -03001654static int __devinit usbvision_probe(struct usb_interface *intf,
1655 const struct usb_device_id *devid)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001656{
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001657 struct usb_device *dev = usb_get_dev(interface_to_usbdev(intf));
1658 struct usb_interface *uif;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001659 __u8 ifnum = intf->altsetting->desc.bInterfaceNumber;
1660 const struct usb_host_interface *interface;
1661 struct usb_usbvision *usbvision = NULL;
1662 const struct usb_endpoint_descriptor *endpoint;
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001663 int model,i;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001664
1665 PDEBUG(DBG_PROBE, "VID=%#04x, PID=%#04x, ifnum=%u",
Mauro Carvalho Chehab659ae562007-04-14 15:09:59 -03001666 dev->descriptor.idVendor,
1667 dev->descriptor.idProduct, ifnum);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001668
Mauro Carvalho Chehab659ae562007-04-14 15:09:59 -03001669 model = devid->driver_info;
Mauro Carvalho Chehabf8a389d2007-04-14 15:17:35 -03001670 if ( (model<0) || (model>=usbvision_device_data_size) ) {
Thierry MERLE672d0132007-04-14 17:53:55 -03001671 PDEBUG(DBG_PROBE, "model out of bounds %d",model);
Mauro Carvalho Chehabf8a389d2007-04-14 15:17:35 -03001672 return -ENODEV;
1673 }
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001674 printk(KERN_INFO "%s: %s found\n", __func__,
Mauro Carvalho Chehab659ae562007-04-14 15:09:59 -03001675 usbvision_device_data[model].ModelString);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001676
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001677 if (usbvision_device_data[model].Interface >= 0) {
1678 interface = &dev->actconfig->interface[usbvision_device_data[model].Interface]->altsetting[0];
Thierry MERLEc5f48362007-05-08 17:22:29 -03001679 } else {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001680 interface = &dev->actconfig->interface[ifnum]->altsetting[0];
1681 }
1682 endpoint = &interface->endpoint[1].desc;
Julia Lawall2230c3c2009-01-03 16:53:10 -03001683 if (!usb_endpoint_xfer_isoc(endpoint)) {
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001684 dev_err(&intf->dev, "%s: interface %d. has non-ISO endpoint!\n",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001685 __func__, ifnum);
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001686 dev_err(&intf->dev, "%s: Endpoint attributes %d",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001687 __func__, endpoint->bmAttributes);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001688 return -ENODEV;
1689 }
Julia Lawall13417982008-12-29 21:49:22 -03001690 if (usb_endpoint_dir_out(endpoint)) {
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001691 dev_err(&intf->dev, "%s: interface %d. has ISO OUT endpoint!\n",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001692 __func__, ifnum);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001693 return -ENODEV;
1694 }
1695
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001696 if ((usbvision = usbvision_alloc(dev)) == NULL) {
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001697 dev_err(&intf->dev, "%s: couldn't allocate USBVision struct\n", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001698 return -ENOMEM;
1699 }
Mauro Carvalho Chehab659ae562007-04-14 15:09:59 -03001700
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001701 if (dev->descriptor.bNumConfigurations > 1) {
1702 usbvision->bridgeType = BRIDGE_NT1004;
Thierry MERLEc5f48362007-05-08 17:22:29 -03001703 } else if (model == DAZZLE_DVC_90_REV_1_SECAM) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001704 usbvision->bridgeType = BRIDGE_NT1005;
Thierry MERLEc5f48362007-05-08 17:22:29 -03001705 } else {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001706 usbvision->bridgeType = BRIDGE_NT1003;
1707 }
1708 PDEBUG(DBG_PROBE, "bridgeType %d", usbvision->bridgeType);
1709
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001710 mutex_lock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001711
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001712 /* compute alternate max packet sizes */
1713 uif = dev->actconfig->interface[0];
1714
1715 usbvision->num_alt=uif->num_altsetting;
1716 PDEBUG(DBG_PROBE, "Alternate settings: %i",usbvision->num_alt);
1717 usbvision->alt_max_pkt_size = kmalloc(32*
1718 usbvision->num_alt,GFP_KERNEL);
1719 if (usbvision->alt_max_pkt_size == NULL) {
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001720 dev_err(&intf->dev, "usbvision: out of memory!\n");
Daniel Walker09911122007-12-12 18:22:48 -03001721 mutex_unlock(&usbvision->lock);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001722 return -ENOMEM;
1723 }
1724
1725 for (i = 0; i < usbvision->num_alt ; i++) {
1726 u16 tmp = le16_to_cpu(uif->altsetting[i].endpoint[1].desc.
1727 wMaxPacketSize);
1728 usbvision->alt_max_pkt_size[i] =
1729 (tmp & 0x07ff) * (((tmp & 0x1800) >> 11) + 1);
1730 PDEBUG(DBG_PROBE, "Alternate setting %i, max size= %i",i,
1731 usbvision->alt_max_pkt_size[i]);
1732 }
1733
1734
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001735 usbvision->nr = usbvision_nr++;
1736
1737 usbvision->have_tuner = usbvision_device_data[model].Tuner;
1738 if (usbvision->have_tuner) {
1739 usbvision->tuner_type = usbvision_device_data[model].TunerType;
1740 }
1741
1742 usbvision->tuner_addr = ADDR_UNSET;
1743
1744 usbvision->DevModel = model;
1745 usbvision->remove_pending = 0;
1746 usbvision->iface = ifnum;
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001747 usbvision->ifaceAlt = 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001748 usbvision->video_endp = endpoint->bEndpointAddress;
1749 usbvision->isocPacketSize = 0;
1750 usbvision->usb_bandwidth = 0;
1751 usbvision->user = 0;
1752 usbvision->streaming = Stream_Off;
1753 usbvision_register_video(usbvision);
1754 usbvision_configure_video(usbvision);
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001755 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001756
1757
1758 usb_set_intfdata (intf, usbvision);
1759 usbvision_create_sysfs(usbvision->vdev);
1760
1761 PDEBUG(DBG_PROBE, "success");
1762 return 0;
1763}
1764
1765
1766/*
1767 * usbvision_disconnect()
1768 *
1769 * This procedure stops all driver activity, deallocates interface-private
1770 * structure (pointed by 'ptr') and after that driver should be removable
1771 * with no ill consequences.
1772 *
1773 */
1774static void __devexit usbvision_disconnect(struct usb_interface *intf)
1775{
1776 struct usb_usbvision *usbvision = usb_get_intfdata(intf);
1777
1778 PDEBUG(DBG_PROBE, "");
1779
1780 if (usbvision == NULL) {
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001781 dev_err(&usbvision->dev->dev,
1782 "%s: usb_get_intfdata() failed\n", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001783 return;
1784 }
1785 usb_set_intfdata (intf, NULL);
1786
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001787 mutex_lock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001788
1789 // At this time we ask to cancel outstanding URBs
1790 usbvision_stop_isoc(usbvision);
1791
1792 if (usbvision->power) {
Thierry MERLE1ff16c22007-04-14 16:23:49 -03001793 usbvision_i2c_unregister(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001794 usbvision_power_off(usbvision);
1795 }
1796 usbvision->remove_pending = 1; // Now all ISO data will be ignored
1797
1798 usb_put_dev(usbvision->dev);
1799 usbvision->dev = NULL; // USB device is no more
1800
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001801 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001802
1803 if (usbvision->user) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001804 printk(KERN_INFO "%s: In use, disconnect pending\n",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001805 __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001806 wake_up_interruptible(&usbvision->wait_frame);
1807 wake_up_interruptible(&usbvision->wait_stream);
Thierry MERLEc5f48362007-05-08 17:22:29 -03001808 } else {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001809 usbvision_release(usbvision);
1810 }
1811
1812 PDEBUG(DBG_PROBE, "success");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001813}
1814
1815static struct usb_driver usbvision_driver = {
1816 .name = "usbvision",
1817 .id_table = usbvision_table,
1818 .probe = usbvision_probe,
1819 .disconnect = usbvision_disconnect
1820};
1821
1822/*
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001823 * usbvision_init()
1824 *
1825 * This code is run to initialize the driver.
1826 *
1827 */
1828static int __init usbvision_init(void)
1829{
1830 int errCode;
1831
1832 PDEBUG(DBG_PROBE, "");
1833
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001834 PDEBUG(DBG_IO, "IO debugging is enabled [video]");
1835 PDEBUG(DBG_PROBE, "PROBE debugging is enabled [video]");
Thierry MERLEc876a342006-12-09 16:42:54 -03001836 PDEBUG(DBG_MMAP, "MMAP debugging is enabled [video]");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001837
1838 /* disable planar mode support unless compression enabled */
1839 if (isocMode != ISOC_MODE_COMPRESS ) {
1840 // FIXME : not the right way to set supported flag
1841 usbvision_v4l2_format[6].supported = 0; // V4L2_PIX_FMT_YVU420
1842 usbvision_v4l2_format[7].supported = 0; // V4L2_PIX_FMT_YUV422P
1843 }
1844
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001845 errCode = usb_register(&usbvision_driver);
1846
1847 if (errCode == 0) {
Dwaine Gardende6a1b82007-01-07 21:13:55 -03001848 printk(KERN_INFO DRIVER_DESC " : " USBVISION_VERSION_STRING "\n");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001849 PDEBUG(DBG_PROBE, "success");
1850 }
1851 return errCode;
1852}
1853
1854static void __exit usbvision_exit(void)
1855{
1856 PDEBUG(DBG_PROBE, "");
1857
1858 usb_deregister(&usbvision_driver);
1859 PDEBUG(DBG_PROBE, "success");
1860}
1861
1862module_init(usbvision_init);
1863module_exit(usbvision_exit);
1864
1865/*
1866 * Overrides for Emacs so that we follow Linus's tabbing style.
1867 * ---------------------------------------------------------------------------
1868 * Local variables:
1869 * c-basic-offset: 8
1870 * End:
1871 */