blob: 863fcb31622ff1fffe1da509159dad3bd42c4400 [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>
Thierry MERLE483dfdb2006-12-04 08:31:45 -030062#include <linux/i2c.h>
63
64#include <media/saa7115.h>
65#include <media/v4l2-common.h>
Hans Verkuil35ea11f2008-07-20 08:12:02 -030066#include <media/v4l2-ioctl.h>
Thierry MERLE483dfdb2006-12-04 08:31:45 -030067#include <media/tuner.h>
Thierry MERLE483dfdb2006-12-04 08:31:45 -030068
Mauro Carvalho Chehaba1ed5512006-12-09 11:41:59 -030069#include <linux/workqueue.h>
Thierry MERLE483dfdb2006-12-04 08:31:45 -030070
Thierry MERLE483dfdb2006-12-04 08:31:45 -030071#include "usbvision.h"
Mauro Carvalho Chehab659ae562007-04-14 15:09:59 -030072#include "usbvision-cards.h"
Thierry MERLE483dfdb2006-12-04 08:31:45 -030073
Thierry MERLEc5f48362007-05-08 17:22:29 -030074#define DRIVER_AUTHOR "Joerg Heckenbach <joerg@heckenbach-aw.de>,\
75 Dwaine Garden <DwaineGarden@rogers.com>"
Thierry MERLE483dfdb2006-12-04 08:31:45 -030076#define DRIVER_NAME "usbvision"
77#define DRIVER_ALIAS "USBVision"
78#define DRIVER_DESC "USBVision USB Video Device Driver for Linux"
79#define DRIVER_LICENSE "GPL"
80#define USBVISION_DRIVER_VERSION_MAJOR 0
81#define USBVISION_DRIVER_VERSION_MINOR 9
82#define USBVISION_DRIVER_VERSION_PATCHLEVEL 9
Thierry MERLEc5f48362007-05-08 17:22:29 -030083#define USBVISION_DRIVER_VERSION KERNEL_VERSION(USBVISION_DRIVER_VERSION_MAJOR,\
84USBVISION_DRIVER_VERSION_MINOR,\
85USBVISION_DRIVER_VERSION_PATCHLEVEL)
86#define USBVISION_VERSION_STRING __stringify(USBVISION_DRIVER_VERSION_MAJOR)\
87 "." __stringify(USBVISION_DRIVER_VERSION_MINOR)\
88 "." __stringify(USBVISION_DRIVER_VERSION_PATCHLEVEL)
Thierry MERLE483dfdb2006-12-04 08:31:45 -030089
90#define ENABLE_HEXDUMP 0 /* Enable if you need it */
91
92
Thierry MERLE483dfdb2006-12-04 08:31:45 -030093#ifdef USBVISION_DEBUG
Thierry MERLEdf18c312008-04-04 21:00:57 -030094 #define PDEBUG(level, fmt, args...) { \
Thierry MERLEc5f48362007-05-08 17:22:29 -030095 if (video_debug & (level)) \
Greg Kroah-Hartmana482f322008-10-10 05:08:23 -030096 printk(KERN_INFO KBUILD_MODNAME ":[%s:%d] " fmt, \
97 __func__, __LINE__ , ## args); \
Thierry MERLEdf18c312008-04-04 21:00:57 -030098 }
Thierry MERLE483dfdb2006-12-04 08:31:45 -030099#else
100 #define PDEBUG(level, fmt, args...) do {} while(0)
101#endif
102
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300103#define DBG_IO 1<<1
104#define DBG_PROBE 1<<2
Thierry MERLEc876a342006-12-09 16:42:54 -0300105#define DBG_MMAP 1<<3
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300106
107//String operations
108#define rmspace(str) while(*str==' ') str++;
109#define goto2next(str) while(*str!=' ') str++; while(*str==' ') str++;
110
111
Thierry MERLEc5f48362007-05-08 17:22:29 -0300112/* sequential number of usbvision device */
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -0300113static int usbvision_nr;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300114
115static struct usbvision_v4l2_format_st usbvision_v4l2_format[] = {
116 { 1, 1, 8, V4L2_PIX_FMT_GREY , "GREY" },
117 { 1, 2, 16, V4L2_PIX_FMT_RGB565 , "RGB565" },
118 { 1, 3, 24, V4L2_PIX_FMT_RGB24 , "RGB24" },
119 { 1, 4, 32, V4L2_PIX_FMT_RGB32 , "RGB32" },
120 { 1, 2, 16, V4L2_PIX_FMT_RGB555 , "RGB555" },
121 { 1, 2, 16, V4L2_PIX_FMT_YUYV , "YUV422" },
122 { 1, 2, 12, V4L2_PIX_FMT_YVU420 , "YUV420P" }, // 1.5 !
123 { 1, 2, 16, V4L2_PIX_FMT_YUV422P , "YUV422P" }
124};
125
Thierry MERLEc5f48362007-05-08 17:22:29 -0300126/* Function prototypes */
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300127static void usbvision_release(struct usb_usbvision *usbvision);
128
Joe Perchesc84e6032008-02-03 17:18:59 +0200129/* Default initialization of device driver parameters */
Thierry MERLEc5f48362007-05-08 17:22:29 -0300130/* Set the default format for ISOC endpoint */
131static int isocMode = ISOC_MODE_COMPRESS;
132/* Set the default Debug Mode of the device driver */
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -0300133static int video_debug;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300134/* Set the default device to power on at startup */
135static int PowerOnAtOpen = 1;
136/* Sequential Number of Video Device */
137static int video_nr = -1;
138/* Sequential Number of Radio Device */
139static int radio_nr = -1;
140/* Sequential Number of VBI Device */
141static int vbi_nr = -1;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300142
Thierry MERLEc5f48362007-05-08 17:22:29 -0300143/* Grab parameters for the device driver */
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300144
Thierry MERLEc5f48362007-05-08 17:22:29 -0300145/* Showing parameters under SYSFS */
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300146module_param(isocMode, int, 0444);
147module_param(video_debug, int, 0444);
148module_param(PowerOnAtOpen, int, 0444);
149module_param(video_nr, int, 0444);
150module_param(radio_nr, int, 0444);
151module_param(vbi_nr, int, 0444);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300152
153MODULE_PARM_DESC(isocMode, " Set the default format for ISOC endpoint. Default: 0x60 (Compression On)");
154MODULE_PARM_DESC(video_debug, " Set the default Debug Mode of the device driver. Default: 0 (Off)");
155MODULE_PARM_DESC(PowerOnAtOpen, " Set the default device to power on when device is opened. Default: 1 (On)");
156MODULE_PARM_DESC(video_nr, "Set video device number (/dev/videoX). Default: -1 (autodetect)");
157MODULE_PARM_DESC(radio_nr, "Set radio device number (/dev/radioX). Default: -1 (autodetect)");
158MODULE_PARM_DESC(vbi_nr, "Set vbi device number (/dev/vbiX). Default: -1 (autodetect)");
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300159
160
161// Misc stuff
162MODULE_AUTHOR(DRIVER_AUTHOR);
163MODULE_DESCRIPTION(DRIVER_DESC);
164MODULE_LICENSE(DRIVER_LICENSE);
Mauro Carvalho Chehaba1ed5512006-12-09 11:41:59 -0300165MODULE_VERSION(USBVISION_VERSION_STRING);
166MODULE_ALIAS(DRIVER_ALIAS);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300167
168
Thierry MERLEc5f48362007-05-08 17:22:29 -0300169/*****************************************************************************/
170/* SYSFS Code - Copied from the stv680.c usb module. */
171/* Device information is located at /sys/class/video4linux/video0 */
172/* Device parameters information is located at /sys/module/usbvision */
173/* Device USB Information is located at */
174/* /sys/bus/usb/drivers/USBVision Video Grabber */
175/*****************************************************************************/
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300176
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300177#define YES_NO(x) ((x) ? "Yes" : "No")
178
Kay Sievers54bd5b62007-10-08 16:26:13 -0300179static inline struct usb_usbvision *cd_to_usbvision(struct device *cd)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300180{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300181 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300182 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300183 return video_get_drvdata(vdev);
184}
185
Kay Sievers54bd5b62007-10-08 16:26:13 -0300186static ssize_t show_version(struct device *cd,
187 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300188{
189 return sprintf(buf, "%s\n", USBVISION_VERSION_STRING);
190}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300191static DEVICE_ATTR(version, S_IRUGO, show_version, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300192
Kay Sievers54bd5b62007-10-08 16:26:13 -0300193static ssize_t show_model(struct device *cd,
194 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300195{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300196 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300197 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300198 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300199 return sprintf(buf, "%s\n",
200 usbvision_device_data[usbvision->DevModel].ModelString);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300201}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300202static DEVICE_ATTR(model, S_IRUGO, show_model, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300203
Kay Sievers54bd5b62007-10-08 16:26:13 -0300204static ssize_t show_hue(struct device *cd,
205 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300206{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300207 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300208 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300209 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
210 struct v4l2_control ctrl;
211 ctrl.id = V4L2_CID_HUE;
212 ctrl.value = 0;
Dwaine Gardened00b412006-12-27 10:23:28 -0200213 if(usbvision->user)
Hans Verkuil1df79532009-02-21 18:11:31 -0300214 call_all(usbvision, core, g_ctrl, &ctrl);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -0300215 return sprintf(buf, "%d\n", ctrl.value);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300216}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300217static DEVICE_ATTR(hue, S_IRUGO, show_hue, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300218
Kay Sievers54bd5b62007-10-08 16:26:13 -0300219static ssize_t show_contrast(struct device *cd,
220 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300221{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300222 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300223 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300224 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
225 struct v4l2_control ctrl;
226 ctrl.id = V4L2_CID_CONTRAST;
227 ctrl.value = 0;
Dwaine Gardened00b412006-12-27 10:23:28 -0200228 if(usbvision->user)
Hans Verkuil1df79532009-02-21 18:11:31 -0300229 call_all(usbvision, core, g_ctrl, &ctrl);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -0300230 return sprintf(buf, "%d\n", ctrl.value);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300231}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300232static DEVICE_ATTR(contrast, S_IRUGO, show_contrast, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300233
Kay Sievers54bd5b62007-10-08 16:26:13 -0300234static ssize_t show_brightness(struct device *cd,
235 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300236{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300237 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300238 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300239 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
240 struct v4l2_control ctrl;
241 ctrl.id = V4L2_CID_BRIGHTNESS;
242 ctrl.value = 0;
Dwaine Gardened00b412006-12-27 10:23:28 -0200243 if(usbvision->user)
Hans Verkuil1df79532009-02-21 18:11:31 -0300244 call_all(usbvision, core, g_ctrl, &ctrl);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -0300245 return sprintf(buf, "%d\n", ctrl.value);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300246}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300247static DEVICE_ATTR(brightness, S_IRUGO, show_brightness, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300248
Kay Sievers54bd5b62007-10-08 16:26:13 -0300249static ssize_t show_saturation(struct device *cd,
250 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300251{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300252 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300253 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300254 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
255 struct v4l2_control ctrl;
256 ctrl.id = V4L2_CID_SATURATION;
257 ctrl.value = 0;
Dwaine Gardened00b412006-12-27 10:23:28 -0200258 if(usbvision->user)
Hans Verkuil1df79532009-02-21 18:11:31 -0300259 call_all(usbvision, core, g_ctrl, &ctrl);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -0300260 return sprintf(buf, "%d\n", ctrl.value);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300261}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300262static DEVICE_ATTR(saturation, S_IRUGO, show_saturation, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300263
Kay Sievers54bd5b62007-10-08 16:26:13 -0300264static ssize_t show_streaming(struct device *cd,
265 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300266{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300267 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300268 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300269 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300270 return sprintf(buf, "%s\n",
271 YES_NO(usbvision->streaming==Stream_On?1:0));
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300272}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300273static DEVICE_ATTR(streaming, S_IRUGO, show_streaming, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300274
Kay Sievers54bd5b62007-10-08 16:26:13 -0300275static ssize_t show_compression(struct device *cd,
276 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300277{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300278 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300279 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300280 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300281 return sprintf(buf, "%s\n",
282 YES_NO(usbvision->isocMode==ISOC_MODE_COMPRESS));
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300283}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300284static DEVICE_ATTR(compression, S_IRUGO, show_compression, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300285
Kay Sievers54bd5b62007-10-08 16:26:13 -0300286static ssize_t show_device_bridge(struct device *cd,
287 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300288{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300289 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300290 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300291 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
292 return sprintf(buf, "%d\n", usbvision->bridgeType);
293}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300294static DEVICE_ATTR(bridge, S_IRUGO, show_device_bridge, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300295
296static void usbvision_create_sysfs(struct video_device *vdev)
297{
298 int res;
Dwaine Gardened00b412006-12-27 10:23:28 -0200299 if (!vdev)
300 return;
301 do {
Hans Verkuil22a04f12008-07-20 06:35:02 -0300302 res = device_create_file(&vdev->dev, &dev_attr_version);
Dwaine Gardened00b412006-12-27 10:23:28 -0200303 if (res<0)
304 break;
Hans Verkuil22a04f12008-07-20 06:35:02 -0300305 res = device_create_file(&vdev->dev, &dev_attr_model);
Dwaine Gardened00b412006-12-27 10:23:28 -0200306 if (res<0)
307 break;
Hans Verkuil22a04f12008-07-20 06:35:02 -0300308 res = device_create_file(&vdev->dev, &dev_attr_hue);
Dwaine Gardened00b412006-12-27 10:23:28 -0200309 if (res<0)
310 break;
Hans Verkuil22a04f12008-07-20 06:35:02 -0300311 res = device_create_file(&vdev->dev, &dev_attr_contrast);
Dwaine Gardened00b412006-12-27 10:23:28 -0200312 if (res<0)
313 break;
Hans Verkuil22a04f12008-07-20 06:35:02 -0300314 res = device_create_file(&vdev->dev, &dev_attr_brightness);
Dwaine Gardened00b412006-12-27 10:23:28 -0200315 if (res<0)
316 break;
Hans Verkuil22a04f12008-07-20 06:35:02 -0300317 res = device_create_file(&vdev->dev, &dev_attr_saturation);
Dwaine Gardened00b412006-12-27 10:23:28 -0200318 if (res<0)
319 break;
Hans Verkuil22a04f12008-07-20 06:35:02 -0300320 res = device_create_file(&vdev->dev, &dev_attr_streaming);
Dwaine Gardened00b412006-12-27 10:23:28 -0200321 if (res<0)
322 break;
Hans Verkuil22a04f12008-07-20 06:35:02 -0300323 res = device_create_file(&vdev->dev, &dev_attr_compression);
Dwaine Gardened00b412006-12-27 10:23:28 -0200324 if (res<0)
325 break;
Hans Verkuil22a04f12008-07-20 06:35:02 -0300326 res = device_create_file(&vdev->dev, &dev_attr_bridge);
Dwaine Gardened00b412006-12-27 10:23:28 -0200327 if (res>=0)
328 return;
329 } while (0);
330
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -0300331 dev_err(&vdev->dev, "%s error: %d\n", __func__, res);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300332}
333
334static void usbvision_remove_sysfs(struct video_device *vdev)
335{
336 if (vdev) {
Hans Verkuil22a04f12008-07-20 06:35:02 -0300337 device_remove_file(&vdev->dev, &dev_attr_version);
338 device_remove_file(&vdev->dev, &dev_attr_model);
339 device_remove_file(&vdev->dev, &dev_attr_hue);
340 device_remove_file(&vdev->dev, &dev_attr_contrast);
341 device_remove_file(&vdev->dev, &dev_attr_brightness);
342 device_remove_file(&vdev->dev, &dev_attr_saturation);
343 device_remove_file(&vdev->dev, &dev_attr_streaming);
344 device_remove_file(&vdev->dev, &dev_attr_compression);
345 device_remove_file(&vdev->dev, &dev_attr_bridge);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300346 }
347}
348
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300349/*
350 * usbvision_open()
351 *
352 * This is part of Video 4 Linux API. The driver can be opened by one
353 * client only (checks internal counter 'usbvision->user'). The procedure
354 * then allocates buffers needed for video processing.
355 *
356 */
Hans Verkuilbec43662008-12-30 06:58:20 -0300357static int usbvision_v4l2_open(struct file *file)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300358{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300359 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300360 int errCode = 0;
361
362 PDEBUG(DBG_IO, "open");
363
Hans Verkuild56dc612008-07-30 08:43:36 -0300364 lock_kernel();
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300365 usbvision_reset_powerOffTimer(usbvision);
366
367 if (usbvision->user)
368 errCode = -EBUSY;
369 else {
Thierry MERLE6f78e182007-02-07 10:13:11 -0300370 /* Allocate memory for the scratch ring buffer */
371 errCode = usbvision_scratch_alloc(usbvision);
372 if (isocMode==ISOC_MODE_COMPRESS) {
Thierry MERLEc5f48362007-05-08 17:22:29 -0300373 /* Allocate intermediate decompression buffers
374 only if needed */
Thierry MERLE6f78e182007-02-07 10:13:11 -0300375 errCode = usbvision_decompress_alloc(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300376 }
377 if (errCode) {
378 /* Deallocate all buffers if trouble */
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300379 usbvision_scratch_free(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300380 usbvision_decompress_free(usbvision);
381 }
382 }
383
384 /* If so far no errors then we shall start the camera */
385 if (!errCode) {
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -0300386 mutex_lock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300387 if (usbvision->power == 0) {
388 usbvision_power_on(usbvision);
Thierry MERLE1ff16c22007-04-14 16:23:49 -0300389 usbvision_i2c_register(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300390 }
391
392 /* Send init sequence only once, it's large! */
393 if (!usbvision->initialized) {
394 int setup_ok = 0;
395 setup_ok = usbvision_setup(usbvision,isocMode);
396 if (setup_ok)
397 usbvision->initialized = 1;
398 else
399 errCode = -EBUSY;
400 }
401
402 if (!errCode) {
403 usbvision_begin_streaming(usbvision);
404 errCode = usbvision_init_isoc(usbvision);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300405 /* device must be initialized before isoc transfer */
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300406 usbvision_muxsel(usbvision,0);
407 usbvision->user++;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300408 } else {
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300409 if (PowerOnAtOpen) {
Thierry MERLE1ff16c22007-04-14 16:23:49 -0300410 usbvision_i2c_unregister(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300411 usbvision_power_off(usbvision);
412 usbvision->initialized = 0;
413 }
414 }
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -0300415 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300416 }
417
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300418 /* prepare queues */
419 usbvision_empty_framequeues(usbvision);
420
421 PDEBUG(DBG_IO, "success");
Hans Verkuild56dc612008-07-30 08:43:36 -0300422 unlock_kernel();
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300423 return errCode;
424}
425
426/*
427 * usbvision_v4l2_close()
428 *
429 * This is part of Video 4 Linux API. The procedure
430 * stops streaming and deallocates all buffers that were earlier
431 * allocated in usbvision_v4l2_open().
432 *
433 */
Hans Verkuilbec43662008-12-30 06:58:20 -0300434static int usbvision_v4l2_close(struct file *file)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300435{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300436 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300437
438 PDEBUG(DBG_IO, "close");
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -0300439 mutex_lock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300440
441 usbvision_audio_off(usbvision);
442 usbvision_restart_isoc(usbvision);
443 usbvision_stop_isoc(usbvision);
444
445 usbvision_decompress_free(usbvision);
Thierry MERLE38284ba2006-12-15 16:46:53 -0300446 usbvision_frames_free(usbvision);
Thierry MERLE6f78e182007-02-07 10:13:11 -0300447 usbvision_empty_framequeues(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300448 usbvision_scratch_free(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300449
450 usbvision->user--;
451
452 if (PowerOnAtOpen) {
Thierry MERLEc5f48362007-05-08 17:22:29 -0300453 /* power off in a little while
454 to avoid off/on every close/open short sequences */
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300455 usbvision_set_powerOffTimer(usbvision);
456 usbvision->initialized = 0;
457 }
458
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -0300459 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300460
461 if (usbvision->remove_pending) {
Harvey Harrisond2db42d2008-04-04 20:50:07 -0300462 printk(KERN_INFO "%s: Final disconnect\n", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300463 usbvision_release(usbvision);
464 }
465
466 PDEBUG(DBG_IO, "success");
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300467 return 0;
468}
469
470
471/*
472 * usbvision_ioctl()
473 *
474 * This is part of Video 4 Linux API. The procedure handles ioctl() calls.
475 *
476 */
Thierry MERLEc5f48362007-05-08 17:22:29 -0300477#ifdef CONFIG_VIDEO_ADV_DEBUG
478static int vidioc_g_register (struct file *file, void *priv,
Hans Verkuilaecde8b52008-12-30 07:14:19 -0300479 struct v4l2_dbg_register *reg)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300480{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300481 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300482 int errCode;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300483
Hans Verkuilaecde8b52008-12-30 07:14:19 -0300484 if (!v4l2_chip_match_host(&reg->match))
Thierry MERLEc5f48362007-05-08 17:22:29 -0300485 return -EINVAL;
486 /* NT100x has a 8-bit register space */
487 errCode = usbvision_read_reg(usbvision, reg->reg&0xff);
488 if (errCode < 0) {
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -0300489 dev_err(&usbvision->vdev->dev,
490 "%s: VIDIOC_DBG_G_REGISTER failed: error %d\n",
491 __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;
Hans Verkuilaecde8b52008-12-30 07:14:19 -0300495 reg->size = 1;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300496 return 0;
497}
498
Thierry MERLEc5f48362007-05-08 17:22:29 -0300499static int vidioc_s_register (struct file *file, void *priv,
Hans Verkuilaecde8b52008-12-30 07:14:19 -0300500 struct v4l2_dbg_register *reg)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300501{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300502 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300503 int errCode;
504
Hans Verkuilaecde8b52008-12-30 07:14:19 -0300505 if (!v4l2_chip_match_host(&reg->match))
Thierry MERLEc5f48362007-05-08 17:22:29 -0300506 return -EINVAL;
507 /* NT100x has a 8-bit register space */
Trent Piephobc147132007-07-23 06:58:31 -0300508 errCode = usbvision_write_reg(usbvision, reg->reg&0xff, reg->val);
509 if (errCode < 0) {
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -0300510 dev_err(&usbvision->vdev->dev,
511 "%s: VIDIOC_DBG_S_REGISTER failed: error %d\n",
512 __func__, errCode);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300513 return errCode;
514 }
515 return 0;
516}
517#endif
518
519static int vidioc_querycap (struct file *file, void *priv,
520 struct v4l2_capability *vc)
521{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300522 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300523
524 strlcpy(vc->driver, "USBVision", sizeof(vc->driver));
525 strlcpy(vc->card,
526 usbvision_device_data[usbvision->DevModel].ModelString,
527 sizeof(vc->card));
Thierry MERLE6f2a2782009-01-20 17:40:44 -0300528 usb_make_path(usbvision->dev, vc->bus_info, sizeof(vc->bus_info));
Thierry MERLEc5f48362007-05-08 17:22:29 -0300529 vc->version = USBVISION_DRIVER_VERSION;
530 vc->capabilities = V4L2_CAP_VIDEO_CAPTURE |
531 V4L2_CAP_AUDIO |
532 V4L2_CAP_READWRITE |
533 V4L2_CAP_STREAMING |
534 (usbvision->have_tuner ? V4L2_CAP_TUNER : 0);
535 return 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300536}
537
Thierry MERLEc5f48362007-05-08 17:22:29 -0300538static int vidioc_enum_input (struct file *file, void *priv,
539 struct v4l2_input *vi)
540{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300541 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300542 int chan;
543
544 if ((vi->index >= usbvision->video_inputs) || (vi->index < 0) )
545 return -EINVAL;
546 if (usbvision->have_tuner) {
547 chan = vi->index;
548 } else {
549 chan = vi->index + 1; /*skip Television string*/
550 }
551 /* Determine the requested input characteristics
552 specific for each usbvision card model */
553 switch(chan) {
554 case 0:
555 if (usbvision_device_data[usbvision->DevModel].VideoChannels == 4) {
556 strcpy(vi->name, "White Video Input");
557 } else {
558 strcpy(vi->name, "Television");
559 vi->type = V4L2_INPUT_TYPE_TUNER;
560 vi->audioset = 1;
561 vi->tuner = chan;
562 vi->std = USBVISION_NORMS;
563 }
564 break;
565 case 1:
566 vi->type = V4L2_INPUT_TYPE_CAMERA;
567 if (usbvision_device_data[usbvision->DevModel].VideoChannels == 4) {
568 strcpy(vi->name, "Green Video Input");
569 } else {
570 strcpy(vi->name, "Composite Video Input");
571 }
572 vi->std = V4L2_STD_PAL;
573 break;
574 case 2:
575 vi->type = V4L2_INPUT_TYPE_CAMERA;
576 if (usbvision_device_data[usbvision->DevModel].VideoChannels == 4) {
577 strcpy(vi->name, "Yellow Video Input");
578 } else {
579 strcpy(vi->name, "S-Video Input");
580 }
581 vi->std = V4L2_STD_PAL;
582 break;
583 case 3:
584 vi->type = V4L2_INPUT_TYPE_CAMERA;
585 strcpy(vi->name, "Red Video Input");
586 vi->std = V4L2_STD_PAL;
587 break;
588 }
589 return 0;
590}
591
592static int vidioc_g_input (struct file *file, void *priv, unsigned int *input)
593{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300594 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300595
596 *input = usbvision->ctl_input;
597 return 0;
598}
599
600static int vidioc_s_input (struct file *file, void *priv, unsigned int input)
601{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300602 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300603
604 if ((input >= usbvision->video_inputs) || (input < 0) )
605 return -EINVAL;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300606
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -0300607 mutex_lock(&usbvision->lock);
Thierry MERLE66a17872007-06-26 16:35:30 -0300608 usbvision_muxsel(usbvision, input);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300609 usbvision_set_input(usbvision);
610 usbvision_set_output(usbvision,
611 usbvision->curwidth,
612 usbvision->curheight);
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -0300613 mutex_unlock(&usbvision->lock);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300614 return 0;
615}
616
617static int vidioc_s_std (struct file *file, void *priv, v4l2_std_id *id)
618{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300619 struct usb_usbvision *usbvision = video_drvdata(file);
620
Thierry MERLEc5f48362007-05-08 17:22:29 -0300621 usbvision->tvnormId=*id;
622
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -0300623 mutex_lock(&usbvision->lock);
Hans Verkuil1df79532009-02-21 18:11:31 -0300624 call_all(usbvision, tuner, s_std, 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 */
Hans Verkuil1df79532009-02-21 18:11:31 -0300646 call_all(usbvision, tuner, g_tuner, vt);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300647
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 */
Hans Verkuil1df79532009-02-21 18:11:31 -0300660 call_all(usbvision, tuner, s_tuner, vt);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300661
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;
Hans Verkuil1df79532009-02-21 18:11:31 -0300691 call_all(usbvision, tuner, s_frequency, freq);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300692
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
Hans Verkuil1df79532009-02-21 18:11:31 -0300729 call_all(usbvision, core, queryctrl, ctrl);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300730
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);
Hans Verkuil1df79532009-02-21 18:11:31 -0300741 call_all(usbvision, core, g_ctrl, ctrl);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300742
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);
Hans Verkuil1df79532009-02-21 18:11:31 -0300750 call_all(usbvision, core, s_ctrl, ctrl);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300751
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) */
Thierry MERLEc5f48362007-05-08 17:22:29 -0300791 if(vb->index>=usbvision->num_frames) {
792 return -EINVAL;
793 }
794 /* Updating the corresponding frame state */
795 vb->flags = 0;
796 frame = &usbvision->frame[vb->index];
797 if(frame->grabstate >= FrameState_Ready)
798 vb->flags |= V4L2_BUF_FLAG_QUEUED;
799 if(frame->grabstate >= FrameState_Done)
800 vb->flags |= V4L2_BUF_FLAG_DONE;
801 if(frame->grabstate == FrameState_Unused)
802 vb->flags |= V4L2_BUF_FLAG_MAPPED;
803 vb->memory = V4L2_MEMORY_MMAP;
804
805 vb->m.offset = vb->index*PAGE_ALIGN(usbvision->max_frame_size);
806
807 vb->memory = V4L2_MEMORY_MMAP;
808 vb->field = V4L2_FIELD_NONE;
809 vb->length = usbvision->curwidth*
810 usbvision->curheight*
811 usbvision->palette.bytes_per_pixel;
812 vb->timestamp = usbvision->frame[vb->index].timestamp;
813 vb->sequence = usbvision->frame[vb->index].sequence;
814 return 0;
815}
816
817static int vidioc_qbuf (struct file *file, void *priv, struct v4l2_buffer *vb)
818{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300819 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300820 struct usbvision_frame *frame;
821 unsigned long lock_flags;
822
823 /* FIXME : works only on VIDEO_CAPTURE MODE, MMAP. */
824 if(vb->type != V4L2_CAP_VIDEO_CAPTURE) {
825 return -EINVAL;
826 }
827 if(vb->index>=usbvision->num_frames) {
828 return -EINVAL;
829 }
830
831 frame = &usbvision->frame[vb->index];
832
833 if (frame->grabstate != FrameState_Unused) {
834 return -EAGAIN;
835 }
836
837 /* Mark it as ready and enqueue frame */
838 frame->grabstate = FrameState_Ready;
839 frame->scanstate = ScanState_Scanning;
840 frame->scanlength = 0; /* Accumulated in usbvision_parse_data() */
841
842 vb->flags &= ~V4L2_BUF_FLAG_DONE;
843
844 /* set v4l2_format index */
845 frame->v4l2_format = usbvision->palette;
846
847 spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
848 list_add_tail(&usbvision->frame[vb->index].frame, &usbvision->inqueue);
849 spin_unlock_irqrestore(&usbvision->queue_lock, lock_flags);
850
851 return 0;
852}
853
854static int vidioc_dqbuf (struct file *file, void *priv, struct v4l2_buffer *vb)
855{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300856 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300857 int ret;
858 struct usbvision_frame *f;
859 unsigned long lock_flags;
860
861 if (vb->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
862 return -EINVAL;
863
864 if (list_empty(&(usbvision->outqueue))) {
865 if (usbvision->streaming == Stream_Idle)
866 return -EINVAL;
867 ret = wait_event_interruptible
868 (usbvision->wait_frame,
869 !list_empty(&(usbvision->outqueue)));
870 if (ret)
871 return ret;
872 }
873
874 spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
875 f = list_entry(usbvision->outqueue.next,
876 struct usbvision_frame, frame);
877 list_del(usbvision->outqueue.next);
878 spin_unlock_irqrestore(&usbvision->queue_lock, lock_flags);
879
880 f->grabstate = FrameState_Unused;
881
882 vb->memory = V4L2_MEMORY_MMAP;
883 vb->flags = V4L2_BUF_FLAG_MAPPED |
884 V4L2_BUF_FLAG_QUEUED |
885 V4L2_BUF_FLAG_DONE;
886 vb->index = f->index;
887 vb->sequence = f->sequence;
888 vb->timestamp = f->timestamp;
889 vb->field = V4L2_FIELD_NONE;
890 vb->bytesused = f->scanlength;
891
892 return 0;
893}
894
895static int vidioc_streamon(struct file *file, void *priv, enum v4l2_buf_type i)
896{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300897 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300898
899 usbvision->streaming = Stream_On;
Hans Verkuil1df79532009-02-21 18:11:31 -0300900 call_all(usbvision, video, s_stream, 1);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300901
902 return 0;
903}
904
905static int vidioc_streamoff(struct file *file,
906 void *priv, enum v4l2_buf_type type)
907{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300908 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300909
910 if (type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
911 return -EINVAL;
912
913 if(usbvision->streaming == Stream_On) {
914 usbvision_stream_interrupt(usbvision);
915 /* Stop all video streamings */
Hans Verkuil1df79532009-02-21 18:11:31 -0300916 call_all(usbvision, video, s_stream, 0);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300917 }
918 usbvision_empty_framequeues(usbvision);
919
920 return 0;
921}
922
Hans Verkuil78b526a2008-05-28 12:16:41 -0300923static int vidioc_enum_fmt_vid_cap (struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300924 struct v4l2_fmtdesc *vfd)
925{
926 if(vfd->index>=USBVISION_SUPPORTED_PALETTES-1) {
927 return -EINVAL;
928 }
929 vfd->flags = 0;
930 vfd->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
931 strcpy(vfd->description,usbvision_v4l2_format[vfd->index].desc);
932 vfd->pixelformat = usbvision_v4l2_format[vfd->index].format;
933 memset(vfd->reserved, 0, sizeof(vfd->reserved));
934 return 0;
935}
936
Hans Verkuil78b526a2008-05-28 12:16:41 -0300937static int vidioc_g_fmt_vid_cap (struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300938 struct v4l2_format *vf)
939{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300940 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300941 vf->fmt.pix.width = usbvision->curwidth;
942 vf->fmt.pix.height = usbvision->curheight;
943 vf->fmt.pix.pixelformat = usbvision->palette.format;
944 vf->fmt.pix.bytesperline =
945 usbvision->curwidth*usbvision->palette.bytes_per_pixel;
946 vf->fmt.pix.sizeimage = vf->fmt.pix.bytesperline*usbvision->curheight;
947 vf->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
948 vf->fmt.pix.field = V4L2_FIELD_NONE; /* Always progressive image */
949
950 return 0;
951}
952
Hans Verkuil78b526a2008-05-28 12:16:41 -0300953static int vidioc_try_fmt_vid_cap (struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300954 struct v4l2_format *vf)
955{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300956 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300957 int formatIdx;
958
959 /* Find requested format in available ones */
960 for(formatIdx=0;formatIdx<USBVISION_SUPPORTED_PALETTES;formatIdx++) {
961 if(vf->fmt.pix.pixelformat ==
962 usbvision_v4l2_format[formatIdx].format) {
963 usbvision->palette = usbvision_v4l2_format[formatIdx];
964 break;
965 }
966 }
967 /* robustness */
968 if(formatIdx == USBVISION_SUPPORTED_PALETTES) {
969 return -EINVAL;
970 }
971 RESTRICT_TO_RANGE(vf->fmt.pix.width, MIN_FRAME_WIDTH, MAX_FRAME_WIDTH);
972 RESTRICT_TO_RANGE(vf->fmt.pix.height, MIN_FRAME_HEIGHT, MAX_FRAME_HEIGHT);
973
974 vf->fmt.pix.bytesperline = vf->fmt.pix.width*
975 usbvision->palette.bytes_per_pixel;
976 vf->fmt.pix.sizeimage = vf->fmt.pix.bytesperline*vf->fmt.pix.height;
977
978 return 0;
979}
980
Hans Verkuil78b526a2008-05-28 12:16:41 -0300981static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300982 struct v4l2_format *vf)
983{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300984 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300985 int ret;
986
Hans Verkuil78b526a2008-05-28 12:16:41 -0300987 if( 0 != (ret=vidioc_try_fmt_vid_cap (file, priv, vf)) ) {
Thierry MERLEc5f48362007-05-08 17:22:29 -0300988 return ret;
989 }
990
991 /* stop io in case it is already in progress */
992 if(usbvision->streaming == Stream_On) {
993 if ((ret = usbvision_stream_interrupt(usbvision)))
994 return ret;
995 }
996 usbvision_frames_free(usbvision);
997 usbvision_empty_framequeues(usbvision);
998
999 usbvision->curFrame = NULL;
1000
1001 /* by now we are committed to the new data... */
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001002 mutex_lock(&usbvision->lock);
Thierry MERLEc5f48362007-05-08 17:22:29 -03001003 usbvision_set_output(usbvision, vf->fmt.pix.width, vf->fmt.pix.height);
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001004 mutex_unlock(&usbvision->lock);
Thierry MERLEc5f48362007-05-08 17:22:29 -03001005
1006 return 0;
1007}
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001008
Al Viro8a5ab412007-02-09 16:38:20 +00001009static ssize_t usbvision_v4l2_read(struct file *file, char __user *buf,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001010 size_t count, loff_t *ppos)
1011{
Hans Verkuilc170ecf2008-08-23 08:32:09 -03001012 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001013 int noblock = file->f_flags & O_NONBLOCK;
1014 unsigned long lock_flags;
1015
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001016 int ret,i;
1017 struct usbvision_frame *frame;
1018
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001019 PDEBUG(DBG_IO, "%s: %ld bytes, noblock=%d", __func__,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001020 (unsigned long)count, noblock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001021
1022 if (!USBVISION_IS_OPERATIONAL(usbvision) || (buf == NULL))
1023 return -EFAULT;
1024
Thierry MERLEc5f48362007-05-08 17:22:29 -03001025 /* This entry point is compatible with the mmap routines
1026 so that a user can do either VIDIOC_QBUF/VIDIOC_DQBUF
1027 to get frames or call read on the device. */
Thierry MERLE6f78e182007-02-07 10:13:11 -03001028 if(!usbvision->num_frames) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001029 /* First, allocate some frames to work with
1030 if this has not been done with VIDIOC_REQBUF */
Thierry MERLE6f78e182007-02-07 10:13:11 -03001031 usbvision_frames_free(usbvision);
1032 usbvision_empty_framequeues(usbvision);
1033 usbvision_frames_alloc(usbvision,USBVISION_NUMFRAMES);
1034 }
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001035
Thierry MERLE6f78e182007-02-07 10:13:11 -03001036 if(usbvision->streaming != Stream_On) {
1037 /* no stream is running, make it running ! */
1038 usbvision->streaming = Stream_On;
Hans Verkuil1df79532009-02-21 18:11:31 -03001039 call_all(usbvision, video, s_stream, 1);
Thierry MERLE6f78e182007-02-07 10:13:11 -03001040 }
1041
Thierry MERLEc5f48362007-05-08 17:22:29 -03001042 /* Then, enqueue as many frames as possible
1043 (like a user of VIDIOC_QBUF would do) */
Thierry MERLE6f78e182007-02-07 10:13:11 -03001044 for(i=0;i<usbvision->num_frames;i++) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001045 frame = &usbvision->frame[i];
1046 if(frame->grabstate == FrameState_Unused) {
1047 /* Mark it as ready and enqueue frame */
1048 frame->grabstate = FrameState_Ready;
1049 frame->scanstate = ScanState_Scanning;
Thierry MERLEc5f48362007-05-08 17:22:29 -03001050 /* Accumulated in usbvision_parse_data() */
1051 frame->scanlength = 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001052
1053 /* set v4l2_format index */
1054 frame->v4l2_format = usbvision->palette;
1055
1056 spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
1057 list_add_tail(&frame->frame, &usbvision->inqueue);
Thierry MERLEc5f48362007-05-08 17:22:29 -03001058 spin_unlock_irqrestore(&usbvision->queue_lock,
1059 lock_flags);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001060 }
1061 }
1062
1063 /* Then try to steal a frame (like a VIDIOC_DQBUF would do) */
1064 if (list_empty(&(usbvision->outqueue))) {
1065 if(noblock)
1066 return -EAGAIN;
1067
1068 ret = wait_event_interruptible
1069 (usbvision->wait_frame,
1070 !list_empty(&(usbvision->outqueue)));
1071 if (ret)
1072 return ret;
1073 }
1074
1075 spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
1076 frame = list_entry(usbvision->outqueue.next,
1077 struct usbvision_frame, frame);
1078 list_del(usbvision->outqueue.next);
1079 spin_unlock_irqrestore(&usbvision->queue_lock, lock_flags);
1080
1081 /* An error returns an empty frame */
1082 if (frame->grabstate == FrameState_Error) {
1083 frame->bytes_read = 0;
1084 return 0;
1085 }
1086
Thierry MERLEc5f48362007-05-08 17:22:29 -03001087 PDEBUG(DBG_IO, "%s: frmx=%d, bytes_read=%ld, scanlength=%ld",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001088 __func__,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001089 frame->index, frame->bytes_read, frame->scanlength);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001090
1091 /* copy bytes to user space; we allow for partials reads */
1092 if ((count + frame->bytes_read) > (unsigned long)frame->scanlength)
1093 count = frame->scanlength - frame->bytes_read;
1094
1095 if (copy_to_user(buf, frame->data + frame->bytes_read, count)) {
1096 return -EFAULT;
1097 }
1098
1099 frame->bytes_read += count;
Thierry MERLEc5f48362007-05-08 17:22:29 -03001100 PDEBUG(DBG_IO, "%s: {copy} count used=%ld, new bytes_read=%ld",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001101 __func__,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001102 (unsigned long)count, frame->bytes_read);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001103
Thierry MERLEc5f48362007-05-08 17:22:29 -03001104 /* For now, forget the frame if it has not been read in one shot. */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001105/* if (frame->bytes_read >= frame->scanlength) {// All data has been read */
1106 frame->bytes_read = 0;
1107
1108 /* Mark it as available to be used again. */
Thierry MERLEc430ca12006-12-29 20:32:08 -03001109 frame->grabstate = FrameState_Unused;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001110/* } */
1111
1112 return count;
1113}
1114
1115static int usbvision_v4l2_mmap(struct file *file, struct vm_area_struct *vma)
1116{
1117 unsigned long size = vma->vm_end - vma->vm_start,
1118 start = vma->vm_start;
1119 void *pos;
1120 u32 i;
Hans Verkuilc170ecf2008-08-23 08:32:09 -03001121 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001122
Thierry MERLE6f78e182007-02-07 10:13:11 -03001123 PDEBUG(DBG_MMAP, "mmap");
1124
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001125 mutex_lock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001126
1127 if (!USBVISION_IS_OPERATIONAL(usbvision)) {
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001128 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001129 return -EFAULT;
1130 }
1131
1132 if (!(vma->vm_flags & VM_WRITE) ||
Thierry MERLE6f78e182007-02-07 10:13:11 -03001133 size != PAGE_ALIGN(usbvision->max_frame_size)) {
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001134 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001135 return -EINVAL;
1136 }
1137
Thierry MERLE6f78e182007-02-07 10:13:11 -03001138 for (i = 0; i < usbvision->num_frames; i++) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001139 if (((PAGE_ALIGN(usbvision->max_frame_size)*i) >> PAGE_SHIFT) ==
1140 vma->vm_pgoff)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001141 break;
1142 }
Thierry MERLE6f78e182007-02-07 10:13:11 -03001143 if (i == usbvision->num_frames) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001144 PDEBUG(DBG_MMAP,
1145 "mmap: user supplied mapping address is out of range");
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001146 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001147 return -EINVAL;
1148 }
1149
1150 /* VM_IO is eventually going to replace PageReserved altogether */
1151 vma->vm_flags |= VM_IO;
1152 vma->vm_flags |= VM_RESERVED; /* avoid to swap out this VMA */
1153
1154 pos = usbvision->frame[i].data;
1155 while (size > 0) {
1156
1157 if (vm_insert_page(vma, start, vmalloc_to_page(pos))) {
Thierry MERLEc876a342006-12-09 16:42:54 -03001158 PDEBUG(DBG_MMAP, "mmap: vm_insert_page failed");
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001159 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001160 return -EAGAIN;
1161 }
1162 start += PAGE_SIZE;
1163 pos += PAGE_SIZE;
1164 size -= PAGE_SIZE;
1165 }
1166
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001167 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001168 return 0;
1169}
1170
1171
1172/*
1173 * Here comes the stuff for radio on usbvision based devices
1174 *
1175 */
Hans Verkuilbec43662008-12-30 06:58:20 -03001176static int usbvision_radio_open(struct file *file)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001177{
Hans Verkuilc170ecf2008-08-23 08:32:09 -03001178 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001179 int errCode = 0;
1180
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001181 PDEBUG(DBG_IO, "%s:", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001182
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001183 mutex_lock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001184
1185 if (usbvision->user) {
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001186 dev_err(&usbvision->rdev->dev,
1187 "%s: Someone tried to open an already opened USBVision Radio!\n",
1188 __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001189 errCode = -EBUSY;
1190 }
1191 else {
1192 if(PowerOnAtOpen) {
1193 usbvision_reset_powerOffTimer(usbvision);
1194 if (usbvision->power == 0) {
1195 usbvision_power_on(usbvision);
Thierry MERLE1ff16c22007-04-14 16:23:49 -03001196 usbvision_i2c_register(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001197 }
1198 }
1199
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001200 /* Alternate interface 1 is is the biggest frame size */
1201 errCode = usbvision_set_alternate(usbvision);
1202 if (errCode < 0) {
1203 usbvision->last_error = errCode;
Andrew Morton544e6172007-12-12 18:25:23 -03001204 errCode = -EBUSY;
1205 goto out;
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001206 }
1207
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001208 // If so far no errors then we shall start the radio
1209 usbvision->radio = 1;
Hans Verkuil1df79532009-02-21 18:11:31 -03001210 call_all(usbvision, tuner, s_radio);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001211 usbvision_set_audio(usbvision, USBVISION_AUDIO_RADIO);
1212 usbvision->user++;
1213 }
1214
1215 if (errCode) {
1216 if (PowerOnAtOpen) {
Thierry MERLE1ff16c22007-04-14 16:23:49 -03001217 usbvision_i2c_unregister(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001218 usbvision_power_off(usbvision);
1219 usbvision->initialized = 0;
1220 }
1221 }
Andrew Morton544e6172007-12-12 18:25:23 -03001222out:
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001223 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001224 return errCode;
1225}
1226
1227
Hans Verkuilbec43662008-12-30 06:58:20 -03001228static int usbvision_radio_close(struct file *file)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001229{
Hans Verkuilc170ecf2008-08-23 08:32:09 -03001230 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001231 int errCode = 0;
1232
1233 PDEBUG(DBG_IO, "");
1234
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001235 mutex_lock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001236
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001237 /* Set packet size to 0 */
1238 usbvision->ifaceAlt=0;
1239 errCode = usb_set_interface(usbvision->dev, usbvision->iface,
1240 usbvision->ifaceAlt);
1241
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001242 usbvision_audio_off(usbvision);
1243 usbvision->radio=0;
1244 usbvision->user--;
1245
1246 if (PowerOnAtOpen) {
1247 usbvision_set_powerOffTimer(usbvision);
1248 usbvision->initialized = 0;
1249 }
1250
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001251 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001252
1253 if (usbvision->remove_pending) {
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001254 printk(KERN_INFO "%s: Final disconnect\n", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001255 usbvision_release(usbvision);
1256 }
1257
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001258 PDEBUG(DBG_IO, "success");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001259 return errCode;
1260}
1261
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001262/*
1263 * Here comes the stuff for vbi on usbvision based devices
1264 *
1265 */
Hans Verkuilbec43662008-12-30 06:58:20 -03001266static int usbvision_vbi_open(struct file *file)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001267{
1268 /* TODO */
Thierry MERLEc5f48362007-05-08 17:22:29 -03001269 return -ENODEV;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001270}
1271
Hans Verkuilbec43662008-12-30 06:58:20 -03001272static int usbvision_vbi_close(struct file *file)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001273{
1274 /* TODO */
Thierry MERLEc5f48362007-05-08 17:22:29 -03001275 return -ENODEV;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001276}
1277
Hans Verkuil069b7472008-12-30 07:04:34 -03001278static long usbvision_do_vbi_ioctl(struct file *file,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001279 unsigned int cmd, void *arg)
1280{
1281 /* TODO */
Thierry MERLEc5f48362007-05-08 17:22:29 -03001282 return -ENOIOCTLCMD;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001283}
1284
Hans Verkuil069b7472008-12-30 07:04:34 -03001285static long usbvision_vbi_ioctl(struct file *file,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001286 unsigned int cmd, unsigned long arg)
1287{
Hans Verkuilf473bf72008-11-01 08:25:11 -03001288 return video_usercopy(file, cmd, arg, usbvision_do_vbi_ioctl);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001289}
1290
1291
1292//
1293// Video registration stuff
1294//
1295
1296// Video template
Hans Verkuilbec43662008-12-30 06:58:20 -03001297static const struct v4l2_file_operations usbvision_fops = {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001298 .owner = THIS_MODULE,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001299 .open = usbvision_v4l2_open,
1300 .release = usbvision_v4l2_close,
1301 .read = usbvision_v4l2_read,
1302 .mmap = usbvision_v4l2_mmap,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001303 .ioctl = video_ioctl2,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001304/* .poll = video_poll, */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001305};
Hans Verkuila3998102008-07-21 02:57:38 -03001306
1307static const struct v4l2_ioctl_ops usbvision_ioctl_ops = {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001308 .vidioc_querycap = vidioc_querycap,
Hans Verkuil78b526a2008-05-28 12:16:41 -03001309 .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap,
1310 .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap,
1311 .vidioc_try_fmt_vid_cap = vidioc_try_fmt_vid_cap,
1312 .vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001313 .vidioc_reqbufs = vidioc_reqbufs,
1314 .vidioc_querybuf = vidioc_querybuf,
1315 .vidioc_qbuf = vidioc_qbuf,
1316 .vidioc_dqbuf = vidioc_dqbuf,
1317 .vidioc_s_std = vidioc_s_std,
1318 .vidioc_enum_input = vidioc_enum_input,
1319 .vidioc_g_input = vidioc_g_input,
1320 .vidioc_s_input = vidioc_s_input,
1321 .vidioc_queryctrl = vidioc_queryctrl,
1322 .vidioc_g_audio = vidioc_g_audio,
Al Viroed4d6372007-09-26 01:53:42 +01001323 .vidioc_s_audio = vidioc_s_audio,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001324 .vidioc_g_ctrl = vidioc_g_ctrl,
1325 .vidioc_s_ctrl = vidioc_s_ctrl,
1326 .vidioc_streamon = vidioc_streamon,
1327 .vidioc_streamoff = vidioc_streamoff,
1328#ifdef CONFIG_VIDEO_V4L1_COMPAT
1329/* .vidiocgmbuf = vidiocgmbuf, */
1330#endif
1331 .vidioc_g_tuner = vidioc_g_tuner,
1332 .vidioc_s_tuner = vidioc_s_tuner,
1333 .vidioc_g_frequency = vidioc_g_frequency,
1334 .vidioc_s_frequency = vidioc_s_frequency,
1335#ifdef CONFIG_VIDEO_ADV_DEBUG
1336 .vidioc_g_register = vidioc_g_register,
1337 .vidioc_s_register = vidioc_s_register,
1338#endif
Hans Verkuila3998102008-07-21 02:57:38 -03001339};
1340
1341static struct video_device usbvision_video_template = {
Hans Verkuila3998102008-07-21 02:57:38 -03001342 .fops = &usbvision_fops,
1343 .ioctl_ops = &usbvision_ioctl_ops,
1344 .name = "usbvision-video",
1345 .release = video_device_release,
1346 .minor = -1,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001347 .tvnorms = USBVISION_NORMS,
1348 .current_norm = V4L2_STD_PAL
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001349};
1350
1351
1352// Radio template
Hans Verkuilbec43662008-12-30 06:58:20 -03001353static const struct v4l2_file_operations usbvision_radio_fops = {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001354 .owner = THIS_MODULE,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001355 .open = usbvision_radio_open,
1356 .release = usbvision_radio_close,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001357 .ioctl = video_ioctl2,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001358};
1359
Hans Verkuila3998102008-07-21 02:57:38 -03001360static const struct v4l2_ioctl_ops usbvision_radio_ioctl_ops = {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001361 .vidioc_querycap = vidioc_querycap,
1362 .vidioc_enum_input = vidioc_enum_input,
1363 .vidioc_g_input = vidioc_g_input,
1364 .vidioc_s_input = vidioc_s_input,
1365 .vidioc_queryctrl = vidioc_queryctrl,
1366 .vidioc_g_audio = vidioc_g_audio,
Al Viroed4d6372007-09-26 01:53:42 +01001367 .vidioc_s_audio = vidioc_s_audio,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001368 .vidioc_g_ctrl = vidioc_g_ctrl,
1369 .vidioc_s_ctrl = vidioc_s_ctrl,
1370 .vidioc_g_tuner = vidioc_g_tuner,
1371 .vidioc_s_tuner = vidioc_s_tuner,
1372 .vidioc_g_frequency = vidioc_g_frequency,
1373 .vidioc_s_frequency = vidioc_s_frequency,
Hans Verkuila3998102008-07-21 02:57:38 -03001374};
1375
1376static struct video_device usbvision_radio_template = {
Hans Verkuila3998102008-07-21 02:57:38 -03001377 .fops = &usbvision_radio_fops,
1378 .name = "usbvision-radio",
1379 .release = video_device_release,
1380 .minor = -1,
1381 .ioctl_ops = &usbvision_radio_ioctl_ops,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001382
Thierry MERLEc5f48362007-05-08 17:22:29 -03001383 .tvnorms = USBVISION_NORMS,
1384 .current_norm = V4L2_STD_PAL
1385};
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001386
1387// vbi template
Hans Verkuilbec43662008-12-30 06:58:20 -03001388static const struct v4l2_file_operations usbvision_vbi_fops = {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001389 .owner = THIS_MODULE,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001390 .open = usbvision_vbi_open,
1391 .release = usbvision_vbi_close,
1392 .ioctl = usbvision_vbi_ioctl,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001393};
1394
1395static struct video_device usbvision_vbi_template=
1396{
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001397 .fops = &usbvision_vbi_fops,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001398 .release = video_device_release,
1399 .name = "usbvision-vbi",
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001400 .minor = -1,
1401};
1402
1403
1404static struct video_device *usbvision_vdev_init(struct usb_usbvision *usbvision,
1405 struct video_device *vdev_template,
1406 char *name)
1407{
1408 struct usb_device *usb_dev = usbvision->dev;
1409 struct video_device *vdev;
1410
1411 if (usb_dev == NULL) {
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001412 dev_err(&usbvision->dev->dev,
1413 "%s: usbvision->dev is not set\n", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001414 return NULL;
1415 }
1416
1417 vdev = video_device_alloc();
1418 if (NULL == vdev) {
1419 return NULL;
1420 }
1421 *vdev = *vdev_template;
1422// vdev->minor = -1;
Hans Verkuil1df79532009-02-21 18:11:31 -03001423 vdev->v4l2_dev = &usbvision->v4l2_dev;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001424 snprintf(vdev->name, sizeof(vdev->name), "%s", name);
1425 video_set_drvdata(vdev, usbvision);
1426 return vdev;
1427}
1428
1429// unregister video4linux devices
1430static void usbvision_unregister_video(struct usb_usbvision *usbvision)
1431{
1432 // vbi Device:
1433 if (usbvision->vbi) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001434 PDEBUG(DBG_PROBE, "unregister /dev/vbi%d [v4l2]",
Hans Verkuilc6330fb2008-10-19 18:54:26 -03001435 usbvision->vbi->num);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001436 if (usbvision->vbi->minor != -1) {
1437 video_unregister_device(usbvision->vbi);
Thierry MERLEc5f48362007-05-08 17:22:29 -03001438 } else {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001439 video_device_release(usbvision->vbi);
1440 }
1441 usbvision->vbi = NULL;
1442 }
1443
1444 // Radio Device:
1445 if (usbvision->rdev) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001446 PDEBUG(DBG_PROBE, "unregister /dev/radio%d [v4l2]",
Hans Verkuilc6330fb2008-10-19 18:54:26 -03001447 usbvision->rdev->num);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001448 if (usbvision->rdev->minor != -1) {
1449 video_unregister_device(usbvision->rdev);
Thierry MERLEc5f48362007-05-08 17:22:29 -03001450 } else {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001451 video_device_release(usbvision->rdev);
1452 }
1453 usbvision->rdev = NULL;
1454 }
1455
1456 // Video Device:
1457 if (usbvision->vdev) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001458 PDEBUG(DBG_PROBE, "unregister /dev/video%d [v4l2]",
Hans Verkuilc6330fb2008-10-19 18:54:26 -03001459 usbvision->vdev->num);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001460 if (usbvision->vdev->minor != -1) {
1461 video_unregister_device(usbvision->vdev);
Thierry MERLEc5f48362007-05-08 17:22:29 -03001462 } else {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001463 video_device_release(usbvision->vdev);
1464 }
1465 usbvision->vdev = NULL;
1466 }
1467}
1468
1469// register video4linux devices
1470static int __devinit usbvision_register_video(struct usb_usbvision *usbvision)
1471{
1472 // Video Device:
Thierry MERLEc5f48362007-05-08 17:22:29 -03001473 usbvision->vdev = usbvision_vdev_init(usbvision,
1474 &usbvision_video_template,
1475 "USBVision Video");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001476 if (usbvision->vdev == NULL) {
1477 goto err_exit;
1478 }
Thierry MERLEc5f48362007-05-08 17:22:29 -03001479 if (video_register_device(usbvision->vdev,
1480 VFL_TYPE_GRABBER,
1481 video_nr)<0) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001482 goto err_exit;
1483 }
Thierry MERLEc5f48362007-05-08 17:22:29 -03001484 printk(KERN_INFO "USBVision[%d]: registered USBVision Video device /dev/video%d [v4l2]\n",
Hans Verkuilc6330fb2008-10-19 18:54:26 -03001485 usbvision->nr, usbvision->vdev->num);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001486
1487 // Radio Device:
1488 if (usbvision_device_data[usbvision->DevModel].Radio) {
1489 // usbvision has radio
Thierry MERLEc5f48362007-05-08 17:22:29 -03001490 usbvision->rdev = usbvision_vdev_init(usbvision,
1491 &usbvision_radio_template,
1492 "USBVision Radio");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001493 if (usbvision->rdev == NULL) {
1494 goto err_exit;
1495 }
Thierry MERLEc5f48362007-05-08 17:22:29 -03001496 if (video_register_device(usbvision->rdev,
1497 VFL_TYPE_RADIO,
1498 radio_nr)<0) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001499 goto err_exit;
1500 }
Thierry MERLEc5f48362007-05-08 17:22:29 -03001501 printk(KERN_INFO "USBVision[%d]: registered USBVision Radio device /dev/radio%d [v4l2]\n",
Hans Verkuilc6330fb2008-10-19 18:54:26 -03001502 usbvision->nr, usbvision->rdev->num);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001503 }
1504 // vbi Device:
1505 if (usbvision_device_data[usbvision->DevModel].vbi) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001506 usbvision->vbi = usbvision_vdev_init(usbvision,
1507 &usbvision_vbi_template,
1508 "USBVision VBI");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001509 if (usbvision->vdev == NULL) {
1510 goto err_exit;
1511 }
Thierry MERLEc5f48362007-05-08 17:22:29 -03001512 if (video_register_device(usbvision->vbi,
1513 VFL_TYPE_VBI,
1514 vbi_nr)<0) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001515 goto err_exit;
1516 }
Thierry MERLEc5f48362007-05-08 17:22:29 -03001517 printk(KERN_INFO "USBVision[%d]: registered USBVision VBI device /dev/vbi%d [v4l2] (Not Working Yet!)\n",
Hans Verkuilc6330fb2008-10-19 18:54:26 -03001518 usbvision->nr, usbvision->vbi->num);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001519 }
1520 // all done
1521 return 0;
1522
1523 err_exit:
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001524 dev_err(&usbvision->dev->dev,
1525 "USBVision[%d]: video_register_device() failed\n",
1526 usbvision->nr);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001527 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
Hans Verkuil1df79532009-02-21 18:11:31 -03001544 usbvision = kzalloc(sizeof(struct usb_usbvision), GFP_KERNEL);
1545 if (usbvision == NULL)
1546 return NULL;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001547
1548 usbvision->dev = dev;
Hans Verkuil1df79532009-02-21 18:11:31 -03001549 if (v4l2_device_register(&dev->dev, &usbvision->v4l2_dev))
1550 goto err_free;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001551
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001552 mutex_init(&usbvision->lock); /* available */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001553
1554 // prepare control urb for control messages during interrupts
1555 usbvision->ctrlUrb = usb_alloc_urb(USBVISION_URB_FRAMES, GFP_KERNEL);
Hans Verkuil1df79532009-02-21 18:11:31 -03001556 if (usbvision->ctrlUrb == NULL)
1557 goto err_unreg;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001558 init_waitqueue_head(&usbvision->ctrlUrb_wq);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001559
1560 usbvision_init_powerOffTimer(usbvision);
1561
1562 return usbvision;
1563
Hans Verkuil1df79532009-02-21 18:11:31 -03001564err_unreg:
1565 v4l2_device_unregister(&usbvision->v4l2_dev);
1566err_free:
1567 kfree(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001568 return NULL;
1569}
1570
1571/*
1572 * usbvision_release()
1573 *
1574 * This code does final release of struct usb_usbvision. This happens
1575 * after the device is disconnected -and- all clients closed their files.
1576 *
1577 */
1578static void usbvision_release(struct usb_usbvision *usbvision)
1579{
1580 PDEBUG(DBG_PROBE, "");
1581
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001582 mutex_lock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001583
1584 usbvision_reset_powerOffTimer(usbvision);
1585
1586 usbvision->initialized = 0;
1587
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001588 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001589
1590 usbvision_remove_sysfs(usbvision->vdev);
1591 usbvision_unregister_video(usbvision);
1592
1593 if (usbvision->ctrlUrb) {
1594 usb_free_urb(usbvision->ctrlUrb);
1595 }
1596
Hans Verkuil1df79532009-02-21 18:11:31 -03001597 v4l2_device_unregister(&usbvision->v4l2_dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001598 kfree(usbvision);
1599
1600 PDEBUG(DBG_PROBE, "success");
1601}
1602
1603
Thierry MERLEc5f48362007-05-08 17:22:29 -03001604/*********************** usb interface **********************************/
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001605
1606static void usbvision_configure_video(struct usb_usbvision *usbvision)
1607{
Thierry MERLEc5f48362007-05-08 17:22:29 -03001608 int model;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001609
1610 if (usbvision == NULL)
1611 return;
1612
1613 model = usbvision->DevModel;
1614 usbvision->palette = usbvision_v4l2_format[2]; // V4L2_PIX_FMT_RGB24;
1615
Trent Piephoc682b3a2007-04-14 15:16:26 -03001616 if (usbvision_device_data[usbvision->DevModel].Vin_Reg2_override) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001617 usbvision->Vin_Reg2_Preset =
1618 usbvision_device_data[usbvision->DevModel].Vin_Reg2;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001619 } else {
1620 usbvision->Vin_Reg2_Preset = 0;
1621 }
1622
Thierry MERLEc5f48362007-05-08 17:22:29 -03001623 usbvision->tvnormId = usbvision_device_data[model].VideoNorm;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001624
1625 usbvision->video_inputs = usbvision_device_data[model].VideoChannels;
1626 usbvision->ctl_input = 0;
1627
1628 /* This should be here to make i2c clients to be able to register */
Thierry MERLEc5f48362007-05-08 17:22:29 -03001629 /* first switch off audio */
1630 usbvision_audio_off(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001631 if (!PowerOnAtOpen) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001632 /* and then power up the noisy tuner */
1633 usbvision_power_on(usbvision);
Thierry MERLE1ff16c22007-04-14 16:23:49 -03001634 usbvision_i2c_register(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001635 }
1636}
1637
1638/*
1639 * usbvision_probe()
1640 *
1641 * This procedure queries device descriptor and accepts the interface
1642 * if it looks like USBVISION video device
1643 *
1644 */
Mauro Carvalho Chehab659ae562007-04-14 15:09:59 -03001645static int __devinit usbvision_probe(struct usb_interface *intf,
1646 const struct usb_device_id *devid)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001647{
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001648 struct usb_device *dev = usb_get_dev(interface_to_usbdev(intf));
1649 struct usb_interface *uif;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001650 __u8 ifnum = intf->altsetting->desc.bInterfaceNumber;
1651 const struct usb_host_interface *interface;
1652 struct usb_usbvision *usbvision = NULL;
1653 const struct usb_endpoint_descriptor *endpoint;
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001654 int model,i;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001655
1656 PDEBUG(DBG_PROBE, "VID=%#04x, PID=%#04x, ifnum=%u",
Mauro Carvalho Chehab659ae562007-04-14 15:09:59 -03001657 dev->descriptor.idVendor,
1658 dev->descriptor.idProduct, ifnum);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001659
Mauro Carvalho Chehab659ae562007-04-14 15:09:59 -03001660 model = devid->driver_info;
Mauro Carvalho Chehabf8a389d2007-04-14 15:17:35 -03001661 if ( (model<0) || (model>=usbvision_device_data_size) ) {
Thierry MERLE672d0132007-04-14 17:53:55 -03001662 PDEBUG(DBG_PROBE, "model out of bounds %d",model);
Mauro Carvalho Chehabf8a389d2007-04-14 15:17:35 -03001663 return -ENODEV;
1664 }
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001665 printk(KERN_INFO "%s: %s found\n", __func__,
Mauro Carvalho Chehab659ae562007-04-14 15:09:59 -03001666 usbvision_device_data[model].ModelString);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001667
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001668 if (usbvision_device_data[model].Interface >= 0) {
1669 interface = &dev->actconfig->interface[usbvision_device_data[model].Interface]->altsetting[0];
Thierry MERLEc5f48362007-05-08 17:22:29 -03001670 } else {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001671 interface = &dev->actconfig->interface[ifnum]->altsetting[0];
1672 }
1673 endpoint = &interface->endpoint[1].desc;
Julia Lawall2230c3c2009-01-03 16:53:10 -03001674 if (!usb_endpoint_xfer_isoc(endpoint)) {
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001675 dev_err(&intf->dev, "%s: interface %d. has non-ISO endpoint!\n",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001676 __func__, ifnum);
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001677 dev_err(&intf->dev, "%s: Endpoint attributes %d",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001678 __func__, endpoint->bmAttributes);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001679 return -ENODEV;
1680 }
Julia Lawall13417982008-12-29 21:49:22 -03001681 if (usb_endpoint_dir_out(endpoint)) {
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001682 dev_err(&intf->dev, "%s: interface %d. has ISO OUT endpoint!\n",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001683 __func__, ifnum);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001684 return -ENODEV;
1685 }
1686
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001687 if ((usbvision = usbvision_alloc(dev)) == NULL) {
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001688 dev_err(&intf->dev, "%s: couldn't allocate USBVision struct\n", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001689 return -ENOMEM;
1690 }
Mauro Carvalho Chehab659ae562007-04-14 15:09:59 -03001691
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001692 if (dev->descriptor.bNumConfigurations > 1) {
1693 usbvision->bridgeType = BRIDGE_NT1004;
Thierry MERLEc5f48362007-05-08 17:22:29 -03001694 } else if (model == DAZZLE_DVC_90_REV_1_SECAM) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001695 usbvision->bridgeType = BRIDGE_NT1005;
Thierry MERLEc5f48362007-05-08 17:22:29 -03001696 } else {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001697 usbvision->bridgeType = BRIDGE_NT1003;
1698 }
1699 PDEBUG(DBG_PROBE, "bridgeType %d", usbvision->bridgeType);
1700
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001701 mutex_lock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001702
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001703 /* compute alternate max packet sizes */
1704 uif = dev->actconfig->interface[0];
1705
1706 usbvision->num_alt=uif->num_altsetting;
1707 PDEBUG(DBG_PROBE, "Alternate settings: %i",usbvision->num_alt);
1708 usbvision->alt_max_pkt_size = kmalloc(32*
1709 usbvision->num_alt,GFP_KERNEL);
1710 if (usbvision->alt_max_pkt_size == NULL) {
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001711 dev_err(&intf->dev, "usbvision: out of memory!\n");
Daniel Walker09911122007-12-12 18:22:48 -03001712 mutex_unlock(&usbvision->lock);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001713 return -ENOMEM;
1714 }
1715
1716 for (i = 0; i < usbvision->num_alt ; i++) {
1717 u16 tmp = le16_to_cpu(uif->altsetting[i].endpoint[1].desc.
1718 wMaxPacketSize);
1719 usbvision->alt_max_pkt_size[i] =
1720 (tmp & 0x07ff) * (((tmp & 0x1800) >> 11) + 1);
1721 PDEBUG(DBG_PROBE, "Alternate setting %i, max size= %i",i,
1722 usbvision->alt_max_pkt_size[i]);
1723 }
1724
1725
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001726 usbvision->nr = usbvision_nr++;
1727
1728 usbvision->have_tuner = usbvision_device_data[model].Tuner;
1729 if (usbvision->have_tuner) {
1730 usbvision->tuner_type = usbvision_device_data[model].TunerType;
1731 }
1732
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001733 usbvision->DevModel = model;
1734 usbvision->remove_pending = 0;
1735 usbvision->iface = ifnum;
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001736 usbvision->ifaceAlt = 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001737 usbvision->video_endp = endpoint->bEndpointAddress;
1738 usbvision->isocPacketSize = 0;
1739 usbvision->usb_bandwidth = 0;
1740 usbvision->user = 0;
1741 usbvision->streaming = Stream_Off;
1742 usbvision_register_video(usbvision);
1743 usbvision_configure_video(usbvision);
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001744 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001745
1746
1747 usb_set_intfdata (intf, usbvision);
1748 usbvision_create_sysfs(usbvision->vdev);
1749
1750 PDEBUG(DBG_PROBE, "success");
1751 return 0;
1752}
1753
1754
1755/*
1756 * usbvision_disconnect()
1757 *
1758 * This procedure stops all driver activity, deallocates interface-private
1759 * structure (pointed by 'ptr') and after that driver should be removable
1760 * with no ill consequences.
1761 *
1762 */
1763static void __devexit usbvision_disconnect(struct usb_interface *intf)
1764{
1765 struct usb_usbvision *usbvision = usb_get_intfdata(intf);
1766
1767 PDEBUG(DBG_PROBE, "");
1768
1769 if (usbvision == NULL) {
Mauro Carvalho Chehabbe9ed512009-01-08 09:13:42 -03001770 dev_err(&usbvision->dev->dev,
1771 "%s: usb_get_intfdata() failed\n", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001772 return;
1773 }
1774 usb_set_intfdata (intf, NULL);
1775
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001776 mutex_lock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001777
1778 // At this time we ask to cancel outstanding URBs
1779 usbvision_stop_isoc(usbvision);
1780
1781 if (usbvision->power) {
Thierry MERLE1ff16c22007-04-14 16:23:49 -03001782 usbvision_i2c_unregister(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001783 usbvision_power_off(usbvision);
1784 }
1785 usbvision->remove_pending = 1; // Now all ISO data will be ignored
1786
1787 usb_put_dev(usbvision->dev);
1788 usbvision->dev = NULL; // USB device is no more
1789
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001790 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001791
1792 if (usbvision->user) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001793 printk(KERN_INFO "%s: In use, disconnect pending\n",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001794 __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001795 wake_up_interruptible(&usbvision->wait_frame);
1796 wake_up_interruptible(&usbvision->wait_stream);
Thierry MERLEc5f48362007-05-08 17:22:29 -03001797 } else {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001798 usbvision_release(usbvision);
1799 }
1800
1801 PDEBUG(DBG_PROBE, "success");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001802}
1803
1804static struct usb_driver usbvision_driver = {
1805 .name = "usbvision",
1806 .id_table = usbvision_table,
1807 .probe = usbvision_probe,
1808 .disconnect = usbvision_disconnect
1809};
1810
1811/*
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001812 * usbvision_init()
1813 *
1814 * This code is run to initialize the driver.
1815 *
1816 */
1817static int __init usbvision_init(void)
1818{
1819 int errCode;
1820
1821 PDEBUG(DBG_PROBE, "");
1822
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001823 PDEBUG(DBG_IO, "IO debugging is enabled [video]");
1824 PDEBUG(DBG_PROBE, "PROBE debugging is enabled [video]");
Thierry MERLEc876a342006-12-09 16:42:54 -03001825 PDEBUG(DBG_MMAP, "MMAP debugging is enabled [video]");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001826
1827 /* disable planar mode support unless compression enabled */
1828 if (isocMode != ISOC_MODE_COMPRESS ) {
1829 // FIXME : not the right way to set supported flag
1830 usbvision_v4l2_format[6].supported = 0; // V4L2_PIX_FMT_YVU420
1831 usbvision_v4l2_format[7].supported = 0; // V4L2_PIX_FMT_YUV422P
1832 }
1833
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001834 errCode = usb_register(&usbvision_driver);
1835
1836 if (errCode == 0) {
Dwaine Gardende6a1b82007-01-07 21:13:55 -03001837 printk(KERN_INFO DRIVER_DESC " : " USBVISION_VERSION_STRING "\n");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001838 PDEBUG(DBG_PROBE, "success");
1839 }
1840 return errCode;
1841}
1842
1843static void __exit usbvision_exit(void)
1844{
1845 PDEBUG(DBG_PROBE, "");
1846
1847 usb_deregister(&usbvision_driver);
1848 PDEBUG(DBG_PROBE, "success");
1849}
1850
1851module_init(usbvision_init);
1852module_exit(usbvision_exit);
1853
1854/*
1855 * Overrides for Emacs so that we follow Linus's tabbing style.
1856 * ---------------------------------------------------------------------------
1857 * Local variables:
1858 * c-basic-offset: 8
1859 * End:
1860 */