blob: 2be5e47ed081949b8f50b2f6528d9929d47c45d8 [file] [log] [blame]
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001/*
Mauro Carvalho Chehab7ca659e2006-12-09 11:43:31 -03002 * USB USBVISION Video device driver 0.9.9
Thierry MERLE483dfdb2006-12-04 08:31:45 -03003 *
4 *
5 *
6 * Copyright (c) 1999-2005 Joerg Heckenbach <joerg@heckenbach-aw.de>
7 *
8 * This module is part of usbvision driver project.
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 *
24 * Let's call the version 0.... until compression decoding is completely
25 * implemented.
26 *
27 * This driver is written by Jose Ignacio Gijon and Joerg Heckenbach.
28 * It was based on USB CPiA driver written by Peter Pregler,
29 * Scott J. Bertin and Johannes Erdfelt
30 * Ideas are taken from bttv driver by Ralph Metzler, Marcus Metzler &
31 * Gerd Knorr and zoran 36120/36125 driver by Pauline Middelink
32 * Updates to driver completed by Dwaine P. Garden
33 *
34 *
35 * TODO:
36 * - use submit_urb for all setup packets
37 * - Fix memory settings for nt1004. It is 4 times as big as the
38 * nt1003 memory.
Thierry MERLEc5f48362007-05-08 17:22:29 -030039 * - Add audio on endpoint 3 for nt1004 chip.
40 * Seems impossible, needs a codec interface. Which one?
Thierry MERLE483dfdb2006-12-04 08:31:45 -030041 * - Clean up the driver.
42 * - optimization for performance.
43 * - Add Videotext capability (VBI). Working on it.....
44 * - Check audio for other devices
45 *
46 */
47
Mauro Carvalho Chehabf30ebd42006-12-09 12:32:18 -030048#include <linux/version.h>
Thierry MERLE483dfdb2006-12-04 08:31:45 -030049#include <linux/kernel.h>
Thierry MERLE483dfdb2006-12-04 08:31:45 -030050#include <linux/list.h>
51#include <linux/timer.h>
52#include <linux/slab.h>
53#include <linux/mm.h>
54#include <linux/utsname.h>
55#include <linux/highmem.h>
Thierry MERLE483dfdb2006-12-04 08:31:45 -030056#include <linux/vmalloc.h>
57#include <linux/module.h>
58#include <linux/init.h>
59#include <linux/spinlock.h>
60#include <asm/io.h>
61#include <linux/videodev2.h>
62#include <linux/video_decoder.h>
63#include <linux/i2c.h>
64
65#include <media/saa7115.h>
66#include <media/v4l2-common.h>
Hans Verkuil35ea11f2008-07-20 08:12:02 -030067#include <media/v4l2-ioctl.h>
Thierry MERLE483dfdb2006-12-04 08:31:45 -030068#include <media/tuner.h>
Thierry MERLE483dfdb2006-12-04 08:31:45 -030069
Mauro Carvalho Chehaba1ed5512006-12-09 11:41:59 -030070#include <linux/workqueue.h>
Thierry MERLE483dfdb2006-12-04 08:31:45 -030071
Thierry MERLE483dfdb2006-12-04 08:31:45 -030072#include "usbvision.h"
Mauro Carvalho Chehab659ae562007-04-14 15:09:59 -030073#include "usbvision-cards.h"
Thierry MERLE483dfdb2006-12-04 08:31:45 -030074
Thierry MERLEc5f48362007-05-08 17:22:29 -030075#define DRIVER_AUTHOR "Joerg Heckenbach <joerg@heckenbach-aw.de>,\
76 Dwaine Garden <DwaineGarden@rogers.com>"
Thierry MERLE483dfdb2006-12-04 08:31:45 -030077#define DRIVER_NAME "usbvision"
78#define DRIVER_ALIAS "USBVision"
79#define DRIVER_DESC "USBVision USB Video Device Driver for Linux"
80#define DRIVER_LICENSE "GPL"
81#define USBVISION_DRIVER_VERSION_MAJOR 0
82#define USBVISION_DRIVER_VERSION_MINOR 9
83#define USBVISION_DRIVER_VERSION_PATCHLEVEL 9
Thierry MERLEc5f48362007-05-08 17:22:29 -030084#define USBVISION_DRIVER_VERSION KERNEL_VERSION(USBVISION_DRIVER_VERSION_MAJOR,\
85USBVISION_DRIVER_VERSION_MINOR,\
86USBVISION_DRIVER_VERSION_PATCHLEVEL)
87#define USBVISION_VERSION_STRING __stringify(USBVISION_DRIVER_VERSION_MAJOR)\
88 "." __stringify(USBVISION_DRIVER_VERSION_MINOR)\
89 "." __stringify(USBVISION_DRIVER_VERSION_PATCHLEVEL)
Thierry MERLE483dfdb2006-12-04 08:31:45 -030090
91#define ENABLE_HEXDUMP 0 /* Enable if you need it */
92
93
Thierry MERLE483dfdb2006-12-04 08:31:45 -030094#ifdef USBVISION_DEBUG
Thierry MERLEdf18c312008-04-04 21:00:57 -030095 #define PDEBUG(level, fmt, args...) { \
Thierry MERLEc5f48362007-05-08 17:22:29 -030096 if (video_debug & (level)) \
Greg Kroah-Hartmana482f322008-10-10 05:08:23 -030097 printk(KERN_INFO KBUILD_MODNAME ":[%s:%d] " fmt, \
98 __func__, __LINE__ , ## args); \
Thierry MERLEdf18c312008-04-04 21:00:57 -030099 }
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300100#else
101 #define PDEBUG(level, fmt, args...) do {} while(0)
102#endif
103
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300104#define DBG_IO 1<<1
105#define DBG_PROBE 1<<2
Thierry MERLEc876a342006-12-09 16:42:54 -0300106#define DBG_MMAP 1<<3
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300107
108//String operations
109#define rmspace(str) while(*str==' ') str++;
110#define goto2next(str) while(*str!=' ') str++; while(*str==' ') str++;
111
112
Thierry MERLEc5f48362007-05-08 17:22:29 -0300113/* sequential number of usbvision device */
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -0300114static int usbvision_nr;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300115
116static struct usbvision_v4l2_format_st usbvision_v4l2_format[] = {
117 { 1, 1, 8, V4L2_PIX_FMT_GREY , "GREY" },
118 { 1, 2, 16, V4L2_PIX_FMT_RGB565 , "RGB565" },
119 { 1, 3, 24, V4L2_PIX_FMT_RGB24 , "RGB24" },
120 { 1, 4, 32, V4L2_PIX_FMT_RGB32 , "RGB32" },
121 { 1, 2, 16, V4L2_PIX_FMT_RGB555 , "RGB555" },
122 { 1, 2, 16, V4L2_PIX_FMT_YUYV , "YUV422" },
123 { 1, 2, 12, V4L2_PIX_FMT_YVU420 , "YUV420P" }, // 1.5 !
124 { 1, 2, 16, V4L2_PIX_FMT_YUV422P , "YUV422P" }
125};
126
Thierry MERLEc5f48362007-05-08 17:22:29 -0300127/* Function prototypes */
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300128static void usbvision_release(struct usb_usbvision *usbvision);
129
Joe Perchesc84e6032008-02-03 17:18:59 +0200130/* Default initialization of device driver parameters */
Thierry MERLEc5f48362007-05-08 17:22:29 -0300131/* Set the default format for ISOC endpoint */
132static int isocMode = ISOC_MODE_COMPRESS;
133/* Set the default Debug Mode of the device driver */
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -0300134static int video_debug;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300135/* Set the default device to power on at startup */
136static int PowerOnAtOpen = 1;
137/* Sequential Number of Video Device */
138static int video_nr = -1;
139/* Sequential Number of Radio Device */
140static int radio_nr = -1;
141/* Sequential Number of VBI Device */
142static int vbi_nr = -1;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300143
Thierry MERLEc5f48362007-05-08 17:22:29 -0300144/* Grab parameters for the device driver */
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300145
Thierry MERLEc5f48362007-05-08 17:22:29 -0300146/* Showing parameters under SYSFS */
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300147module_param(isocMode, int, 0444);
148module_param(video_debug, int, 0444);
149module_param(PowerOnAtOpen, int, 0444);
150module_param(video_nr, int, 0444);
151module_param(radio_nr, int, 0444);
152module_param(vbi_nr, int, 0444);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300153
154MODULE_PARM_DESC(isocMode, " Set the default format for ISOC endpoint. Default: 0x60 (Compression On)");
155MODULE_PARM_DESC(video_debug, " Set the default Debug Mode of the device driver. Default: 0 (Off)");
156MODULE_PARM_DESC(PowerOnAtOpen, " Set the default device to power on when device is opened. Default: 1 (On)");
157MODULE_PARM_DESC(video_nr, "Set video device number (/dev/videoX). Default: -1 (autodetect)");
158MODULE_PARM_DESC(radio_nr, "Set radio device number (/dev/radioX). Default: -1 (autodetect)");
159MODULE_PARM_DESC(vbi_nr, "Set vbi device number (/dev/vbiX). Default: -1 (autodetect)");
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300160
161
162// Misc stuff
163MODULE_AUTHOR(DRIVER_AUTHOR);
164MODULE_DESCRIPTION(DRIVER_DESC);
165MODULE_LICENSE(DRIVER_LICENSE);
Mauro Carvalho Chehaba1ed5512006-12-09 11:41:59 -0300166MODULE_VERSION(USBVISION_VERSION_STRING);
167MODULE_ALIAS(DRIVER_ALIAS);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300168
169
Thierry MERLEc5f48362007-05-08 17:22:29 -0300170/*****************************************************************************/
171/* SYSFS Code - Copied from the stv680.c usb module. */
172/* Device information is located at /sys/class/video4linux/video0 */
173/* Device parameters information is located at /sys/module/usbvision */
174/* Device USB Information is located at */
175/* /sys/bus/usb/drivers/USBVision Video Grabber */
176/*****************************************************************************/
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300177
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300178#define YES_NO(x) ((x) ? "Yes" : "No")
179
Kay Sievers54bd5b62007-10-08 16:26:13 -0300180static inline struct usb_usbvision *cd_to_usbvision(struct device *cd)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300181{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300182 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300183 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300184 return video_get_drvdata(vdev);
185}
186
Kay Sievers54bd5b62007-10-08 16:26:13 -0300187static ssize_t show_version(struct device *cd,
188 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300189{
190 return sprintf(buf, "%s\n", USBVISION_VERSION_STRING);
191}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300192static DEVICE_ATTR(version, S_IRUGO, show_version, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300193
Kay Sievers54bd5b62007-10-08 16:26:13 -0300194static ssize_t show_model(struct device *cd,
195 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300196{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300197 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300198 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300199 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300200 return sprintf(buf, "%s\n",
201 usbvision_device_data[usbvision->DevModel].ModelString);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300202}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300203static DEVICE_ATTR(model, S_IRUGO, show_model, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300204
Kay Sievers54bd5b62007-10-08 16:26:13 -0300205static ssize_t show_hue(struct device *cd,
206 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300207{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300208 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300209 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300210 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
211 struct v4l2_control ctrl;
212 ctrl.id = V4L2_CID_HUE;
213 ctrl.value = 0;
Dwaine Gardened00b412006-12-27 10:23:28 -0200214 if(usbvision->user)
215 call_i2c_clients(usbvision, VIDIOC_G_CTRL, &ctrl);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -0300216 return sprintf(buf, "%d\n", ctrl.value);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300217}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300218static DEVICE_ATTR(hue, S_IRUGO, show_hue, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300219
Kay Sievers54bd5b62007-10-08 16:26:13 -0300220static ssize_t show_contrast(struct device *cd,
221 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300222{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300223 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300224 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300225 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
226 struct v4l2_control ctrl;
227 ctrl.id = V4L2_CID_CONTRAST;
228 ctrl.value = 0;
Dwaine Gardened00b412006-12-27 10:23:28 -0200229 if(usbvision->user)
230 call_i2c_clients(usbvision, VIDIOC_G_CTRL, &ctrl);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -0300231 return sprintf(buf, "%d\n", ctrl.value);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300232}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300233static DEVICE_ATTR(contrast, S_IRUGO, show_contrast, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300234
Kay Sievers54bd5b62007-10-08 16:26:13 -0300235static ssize_t show_brightness(struct device *cd,
236 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300237{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300238 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300239 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300240 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
241 struct v4l2_control ctrl;
242 ctrl.id = V4L2_CID_BRIGHTNESS;
243 ctrl.value = 0;
Dwaine Gardened00b412006-12-27 10:23:28 -0200244 if(usbvision->user)
245 call_i2c_clients(usbvision, VIDIOC_G_CTRL, &ctrl);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -0300246 return sprintf(buf, "%d\n", ctrl.value);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300247}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300248static DEVICE_ATTR(brightness, S_IRUGO, show_brightness, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300249
Kay Sievers54bd5b62007-10-08 16:26:13 -0300250static ssize_t show_saturation(struct device *cd,
251 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300252{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300253 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300254 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300255 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
256 struct v4l2_control ctrl;
257 ctrl.id = V4L2_CID_SATURATION;
258 ctrl.value = 0;
Dwaine Gardened00b412006-12-27 10:23:28 -0200259 if(usbvision->user)
260 call_i2c_clients(usbvision, VIDIOC_G_CTRL, &ctrl);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -0300261 return sprintf(buf, "%d\n", ctrl.value);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300262}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300263static DEVICE_ATTR(saturation, S_IRUGO, show_saturation, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300264
Kay Sievers54bd5b62007-10-08 16:26:13 -0300265static ssize_t show_streaming(struct device *cd,
266 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300267{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300268 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300269 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300270 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300271 return sprintf(buf, "%s\n",
272 YES_NO(usbvision->streaming==Stream_On?1:0));
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300273}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300274static DEVICE_ATTR(streaming, S_IRUGO, show_streaming, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300275
Kay Sievers54bd5b62007-10-08 16:26:13 -0300276static ssize_t show_compression(struct device *cd,
277 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300278{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300279 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300280 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300281 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300282 return sprintf(buf, "%s\n",
283 YES_NO(usbvision->isocMode==ISOC_MODE_COMPRESS));
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300284}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300285static DEVICE_ATTR(compression, S_IRUGO, show_compression, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300286
Kay Sievers54bd5b62007-10-08 16:26:13 -0300287static ssize_t show_device_bridge(struct device *cd,
288 struct device_attribute *attr, char *buf)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300289{
Thierry MERLEc5f48362007-05-08 17:22:29 -0300290 struct video_device *vdev =
Hans Verkuil22a04f12008-07-20 06:35:02 -0300291 container_of(cd, struct video_device, dev);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300292 struct usb_usbvision *usbvision = video_get_drvdata(vdev);
293 return sprintf(buf, "%d\n", usbvision->bridgeType);
294}
Kay Sievers54bd5b62007-10-08 16:26:13 -0300295static DEVICE_ATTR(bridge, S_IRUGO, show_device_bridge, NULL);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300296
297static void usbvision_create_sysfs(struct video_device *vdev)
298{
299 int res;
Dwaine Gardened00b412006-12-27 10:23:28 -0200300 if (!vdev)
301 return;
302 do {
Hans Verkuil22a04f12008-07-20 06:35:02 -0300303 res = device_create_file(&vdev->dev, &dev_attr_version);
Dwaine Gardened00b412006-12-27 10:23:28 -0200304 if (res<0)
305 break;
Hans Verkuil22a04f12008-07-20 06:35:02 -0300306 res = device_create_file(&vdev->dev, &dev_attr_model);
Dwaine Gardened00b412006-12-27 10:23:28 -0200307 if (res<0)
308 break;
Hans Verkuil22a04f12008-07-20 06:35:02 -0300309 res = device_create_file(&vdev->dev, &dev_attr_hue);
Dwaine Gardened00b412006-12-27 10:23:28 -0200310 if (res<0)
311 break;
Hans Verkuil22a04f12008-07-20 06:35:02 -0300312 res = device_create_file(&vdev->dev, &dev_attr_contrast);
Dwaine Gardened00b412006-12-27 10:23:28 -0200313 if (res<0)
314 break;
Hans Verkuil22a04f12008-07-20 06:35:02 -0300315 res = device_create_file(&vdev->dev, &dev_attr_brightness);
Dwaine Gardened00b412006-12-27 10:23:28 -0200316 if (res<0)
317 break;
Hans Verkuil22a04f12008-07-20 06:35:02 -0300318 res = device_create_file(&vdev->dev, &dev_attr_saturation);
Dwaine Gardened00b412006-12-27 10:23:28 -0200319 if (res<0)
320 break;
Hans Verkuil22a04f12008-07-20 06:35:02 -0300321 res = device_create_file(&vdev->dev, &dev_attr_streaming);
Dwaine Gardened00b412006-12-27 10:23:28 -0200322 if (res<0)
323 break;
Hans Verkuil22a04f12008-07-20 06:35:02 -0300324 res = device_create_file(&vdev->dev, &dev_attr_compression);
Dwaine Gardened00b412006-12-27 10:23:28 -0200325 if (res<0)
326 break;
Hans Verkuil22a04f12008-07-20 06:35:02 -0300327 res = device_create_file(&vdev->dev, &dev_attr_bridge);
Dwaine Gardened00b412006-12-27 10:23:28 -0200328 if (res>=0)
329 return;
330 } while (0);
331
Harvey Harrisond2db42d2008-04-04 20:50:07 -0300332 err("%s error: %d\n", __func__, res);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300333}
334
335static void usbvision_remove_sysfs(struct video_device *vdev)
336{
337 if (vdev) {
Hans Verkuil22a04f12008-07-20 06:35:02 -0300338 device_remove_file(&vdev->dev, &dev_attr_version);
339 device_remove_file(&vdev->dev, &dev_attr_model);
340 device_remove_file(&vdev->dev, &dev_attr_hue);
341 device_remove_file(&vdev->dev, &dev_attr_contrast);
342 device_remove_file(&vdev->dev, &dev_attr_brightness);
343 device_remove_file(&vdev->dev, &dev_attr_saturation);
344 device_remove_file(&vdev->dev, &dev_attr_streaming);
345 device_remove_file(&vdev->dev, &dev_attr_compression);
346 device_remove_file(&vdev->dev, &dev_attr_bridge);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300347 }
348}
349
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300350/*
351 * usbvision_open()
352 *
353 * This is part of Video 4 Linux API. The driver can be opened by one
354 * client only (checks internal counter 'usbvision->user'). The procedure
355 * then allocates buffers needed for video processing.
356 *
357 */
Hans Verkuilbec43662008-12-30 06:58:20 -0300358static int usbvision_v4l2_open(struct file *file)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300359{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300360 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300361 int errCode = 0;
362
363 PDEBUG(DBG_IO, "open");
364
Hans Verkuild56dc612008-07-30 08:43:36 -0300365 lock_kernel();
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300366 usbvision_reset_powerOffTimer(usbvision);
367
368 if (usbvision->user)
369 errCode = -EBUSY;
370 else {
Thierry MERLE6f78e182007-02-07 10:13:11 -0300371 /* Allocate memory for the scratch ring buffer */
372 errCode = usbvision_scratch_alloc(usbvision);
373 if (isocMode==ISOC_MODE_COMPRESS) {
Thierry MERLEc5f48362007-05-08 17:22:29 -0300374 /* Allocate intermediate decompression buffers
375 only if needed */
Thierry MERLE6f78e182007-02-07 10:13:11 -0300376 errCode = usbvision_decompress_alloc(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300377 }
378 if (errCode) {
379 /* Deallocate all buffers if trouble */
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300380 usbvision_scratch_free(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300381 usbvision_decompress_free(usbvision);
382 }
383 }
384
385 /* If so far no errors then we shall start the camera */
386 if (!errCode) {
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -0300387 mutex_lock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300388 if (usbvision->power == 0) {
389 usbvision_power_on(usbvision);
Thierry MERLE1ff16c22007-04-14 16:23:49 -0300390 usbvision_i2c_register(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300391 }
392
393 /* Send init sequence only once, it's large! */
394 if (!usbvision->initialized) {
395 int setup_ok = 0;
396 setup_ok = usbvision_setup(usbvision,isocMode);
397 if (setup_ok)
398 usbvision->initialized = 1;
399 else
400 errCode = -EBUSY;
401 }
402
403 if (!errCode) {
404 usbvision_begin_streaming(usbvision);
405 errCode = usbvision_init_isoc(usbvision);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300406 /* device must be initialized before isoc transfer */
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300407 usbvision_muxsel(usbvision,0);
408 usbvision->user++;
Thierry MERLEc5f48362007-05-08 17:22:29 -0300409 } else {
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300410 if (PowerOnAtOpen) {
Thierry MERLE1ff16c22007-04-14 16:23:49 -0300411 usbvision_i2c_unregister(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300412 usbvision_power_off(usbvision);
413 usbvision->initialized = 0;
414 }
415 }
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -0300416 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300417 }
418
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300419 /* prepare queues */
420 usbvision_empty_framequeues(usbvision);
421
422 PDEBUG(DBG_IO, "success");
Hans Verkuild56dc612008-07-30 08:43:36 -0300423 unlock_kernel();
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300424 return errCode;
425}
426
427/*
428 * usbvision_v4l2_close()
429 *
430 * This is part of Video 4 Linux API. The procedure
431 * stops streaming and deallocates all buffers that were earlier
432 * allocated in usbvision_v4l2_open().
433 *
434 */
Hans Verkuilbec43662008-12-30 06:58:20 -0300435static int usbvision_v4l2_close(struct file *file)
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300436{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300437 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300438
439 PDEBUG(DBG_IO, "close");
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -0300440 mutex_lock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300441
442 usbvision_audio_off(usbvision);
443 usbvision_restart_isoc(usbvision);
444 usbvision_stop_isoc(usbvision);
445
446 usbvision_decompress_free(usbvision);
Thierry MERLE38284ba2006-12-15 16:46:53 -0300447 usbvision_frames_free(usbvision);
Thierry MERLE6f78e182007-02-07 10:13:11 -0300448 usbvision_empty_framequeues(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300449 usbvision_scratch_free(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300450
451 usbvision->user--;
452
453 if (PowerOnAtOpen) {
Thierry MERLEc5f48362007-05-08 17:22:29 -0300454 /* power off in a little while
455 to avoid off/on every close/open short sequences */
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300456 usbvision_set_powerOffTimer(usbvision);
457 usbvision->initialized = 0;
458 }
459
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -0300460 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300461
462 if (usbvision->remove_pending) {
Harvey Harrisond2db42d2008-04-04 20:50:07 -0300463 printk(KERN_INFO "%s: Final disconnect\n", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300464 usbvision_release(usbvision);
465 }
466
467 PDEBUG(DBG_IO, "success");
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300468 return 0;
469}
470
471
472/*
473 * usbvision_ioctl()
474 *
475 * This is part of Video 4 Linux API. The procedure handles ioctl() calls.
476 *
477 */
Thierry MERLEc5f48362007-05-08 17:22:29 -0300478#ifdef CONFIG_VIDEO_ADV_DEBUG
479static int vidioc_g_register (struct file *file, void *priv,
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) {
490 err("%s: VIDIOC_DBG_G_REGISTER failed: error %d",
Harvey Harrisond2db42d2008-04-04 20:50:07 -0300491 __func__, errCode);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300492 return errCode;
Thierry MERLE483dfdb2006-12-04 08:31:45 -0300493 }
Trent Piephobc147132007-07-23 06:58:31 -0300494 reg->val = errCode;
Hans Verkuilaecde8b2008-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 Verkuilaecde8b2008-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 Verkuilaecde8b2008-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) {
Thierry MERLEc5f48362007-05-08 17:22:29 -0300510 err("%s: VIDIOC_DBG_S_REGISTER failed: error %d",
Harvey Harrisond2db42d2008-04-04 20:50:07 -0300511 __func__, errCode);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300512 return errCode;
513 }
514 return 0;
515}
516#endif
517
518static int vidioc_querycap (struct file *file, void *priv,
519 struct v4l2_capability *vc)
520{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300521 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300522
523 strlcpy(vc->driver, "USBVision", sizeof(vc->driver));
524 strlcpy(vc->card,
525 usbvision_device_data[usbvision->DevModel].ModelString,
526 sizeof(vc->card));
Kay Sieversaf128a12008-10-30 00:51:46 -0300527 strlcpy(vc->bus_info, dev_name(&usbvision->dev->dev),
Thierry MERLEc5f48362007-05-08 17:22:29 -0300528 sizeof(vc->bus_info));
529 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);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300624 call_i2c_clients(usbvision, VIDIOC_S_STD,
625 &usbvision->tvnormId);
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -0300626 mutex_unlock(&usbvision->lock);
Thierry MERLE66a17872007-06-26 16:35:30 -0300627 /* propagate the change to the decoder */
628 usbvision_muxsel(usbvision, usbvision->ctl_input);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300629
630 return 0;
631}
632
633static int vidioc_g_tuner (struct file *file, void *priv,
634 struct v4l2_tuner *vt)
635{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300636 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300637
638 if (!usbvision->have_tuner || vt->index) // Only tuner 0
639 return -EINVAL;
640 if(usbvision->radio) {
641 strcpy(vt->name, "Radio");
642 vt->type = V4L2_TUNER_RADIO;
643 } else {
644 strcpy(vt->name, "Television");
645 }
646 /* Let clients fill in the remainder of this struct */
647 call_i2c_clients(usbvision,VIDIOC_G_TUNER,vt);
648
649 return 0;
650}
651
652static int vidioc_s_tuner (struct file *file, void *priv,
653 struct v4l2_tuner *vt)
654{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300655 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300656
657 // Only no or one tuner for now
658 if (!usbvision->have_tuner || vt->index)
659 return -EINVAL;
660 /* let clients handle this */
661 call_i2c_clients(usbvision,VIDIOC_S_TUNER,vt);
662
663 return 0;
664}
665
666static int vidioc_g_frequency (struct file *file, void *priv,
667 struct v4l2_frequency *freq)
668{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300669 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300670
671 freq->tuner = 0; // Only one tuner
672 if(usbvision->radio) {
673 freq->type = V4L2_TUNER_RADIO;
674 } else {
675 freq->type = V4L2_TUNER_ANALOG_TV;
676 }
677 freq->frequency = usbvision->freq;
678
679 return 0;
680}
681
682static int vidioc_s_frequency (struct file *file, void *priv,
683 struct v4l2_frequency *freq)
684{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300685 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300686
687 // Only no or one tuner for now
688 if (!usbvision->have_tuner || freq->tuner)
689 return -EINVAL;
690
691 usbvision->freq = freq->frequency;
692 call_i2c_clients(usbvision, VIDIOC_S_FREQUENCY, freq);
693
694 return 0;
695}
696
697static int vidioc_g_audio (struct file *file, void *priv, struct v4l2_audio *a)
698{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300699 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300700
701 memset(a,0,sizeof(*a));
702 if(usbvision->radio) {
703 strcpy(a->name,"Radio");
704 } else {
705 strcpy(a->name, "TV");
706 }
707
708 return 0;
709}
710
711static int vidioc_s_audio (struct file *file, void *fh,
712 struct v4l2_audio *a)
713{
714 if(a->index) {
715 return -EINVAL;
716 }
717
718 return 0;
719}
720
721static int vidioc_queryctrl (struct file *file, void *priv,
722 struct v4l2_queryctrl *ctrl)
723{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300724 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300725 int id=ctrl->id;
726
727 memset(ctrl,0,sizeof(*ctrl));
728 ctrl->id=id;
729
730 call_i2c_clients(usbvision, VIDIOC_QUERYCTRL, ctrl);
731
732 if (!ctrl->type)
733 return -EINVAL;
734
735 return 0;
736}
737
738static int vidioc_g_ctrl (struct file *file, void *priv,
739 struct v4l2_control *ctrl)
740{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300741 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300742 call_i2c_clients(usbvision, VIDIOC_G_CTRL, ctrl);
743
744 return 0;
745}
746
747static int vidioc_s_ctrl (struct file *file, void *priv,
748 struct v4l2_control *ctrl)
749{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300750 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300751 call_i2c_clients(usbvision, VIDIOC_S_CTRL, ctrl);
752
753 return 0;
754}
755
756static int vidioc_reqbufs (struct file *file,
757 void *priv, struct v4l2_requestbuffers *vr)
758{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300759 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300760 int ret;
761
762 RESTRICT_TO_RANGE(vr->count,1,USBVISION_NUMFRAMES);
763
764 /* Check input validity:
765 the user must do a VIDEO CAPTURE and MMAP method. */
766 if((vr->type != V4L2_BUF_TYPE_VIDEO_CAPTURE) ||
767 (vr->memory != V4L2_MEMORY_MMAP))
768 return -EINVAL;
769
770 if(usbvision->streaming == Stream_On) {
771 if ((ret = usbvision_stream_interrupt(usbvision)))
772 return ret;
773 }
774
775 usbvision_frames_free(usbvision);
776 usbvision_empty_framequeues(usbvision);
777 vr->count = usbvision_frames_alloc(usbvision,vr->count);
778
779 usbvision->curFrame = NULL;
780
781 return 0;
782}
783
784static int vidioc_querybuf (struct file *file,
785 void *priv, struct v4l2_buffer *vb)
786{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300787 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300788 struct usbvision_frame *frame;
789
790 /* FIXME : must control
791 that buffers are mapped (VIDIOC_REQBUFS has been called) */
792 if(vb->type != V4L2_CAP_VIDEO_CAPTURE) {
793 return -EINVAL;
794 }
795 if(vb->index>=usbvision->num_frames) {
796 return -EINVAL;
797 }
798 /* Updating the corresponding frame state */
799 vb->flags = 0;
800 frame = &usbvision->frame[vb->index];
801 if(frame->grabstate >= FrameState_Ready)
802 vb->flags |= V4L2_BUF_FLAG_QUEUED;
803 if(frame->grabstate >= FrameState_Done)
804 vb->flags |= V4L2_BUF_FLAG_DONE;
805 if(frame->grabstate == FrameState_Unused)
806 vb->flags |= V4L2_BUF_FLAG_MAPPED;
807 vb->memory = V4L2_MEMORY_MMAP;
808
809 vb->m.offset = vb->index*PAGE_ALIGN(usbvision->max_frame_size);
810
811 vb->memory = V4L2_MEMORY_MMAP;
812 vb->field = V4L2_FIELD_NONE;
813 vb->length = usbvision->curwidth*
814 usbvision->curheight*
815 usbvision->palette.bytes_per_pixel;
816 vb->timestamp = usbvision->frame[vb->index].timestamp;
817 vb->sequence = usbvision->frame[vb->index].sequence;
818 return 0;
819}
820
821static int vidioc_qbuf (struct file *file, void *priv, struct v4l2_buffer *vb)
822{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300823 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300824 struct usbvision_frame *frame;
825 unsigned long lock_flags;
826
827 /* FIXME : works only on VIDEO_CAPTURE MODE, MMAP. */
828 if(vb->type != V4L2_CAP_VIDEO_CAPTURE) {
829 return -EINVAL;
830 }
831 if(vb->index>=usbvision->num_frames) {
832 return -EINVAL;
833 }
834
835 frame = &usbvision->frame[vb->index];
836
837 if (frame->grabstate != FrameState_Unused) {
838 return -EAGAIN;
839 }
840
841 /* Mark it as ready and enqueue frame */
842 frame->grabstate = FrameState_Ready;
843 frame->scanstate = ScanState_Scanning;
844 frame->scanlength = 0; /* Accumulated in usbvision_parse_data() */
845
846 vb->flags &= ~V4L2_BUF_FLAG_DONE;
847
848 /* set v4l2_format index */
849 frame->v4l2_format = usbvision->palette;
850
851 spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
852 list_add_tail(&usbvision->frame[vb->index].frame, &usbvision->inqueue);
853 spin_unlock_irqrestore(&usbvision->queue_lock, lock_flags);
854
855 return 0;
856}
857
858static int vidioc_dqbuf (struct file *file, void *priv, struct v4l2_buffer *vb)
859{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300860 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300861 int ret;
862 struct usbvision_frame *f;
863 unsigned long lock_flags;
864
865 if (vb->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
866 return -EINVAL;
867
868 if (list_empty(&(usbvision->outqueue))) {
869 if (usbvision->streaming == Stream_Idle)
870 return -EINVAL;
871 ret = wait_event_interruptible
872 (usbvision->wait_frame,
873 !list_empty(&(usbvision->outqueue)));
874 if (ret)
875 return ret;
876 }
877
878 spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
879 f = list_entry(usbvision->outqueue.next,
880 struct usbvision_frame, frame);
881 list_del(usbvision->outqueue.next);
882 spin_unlock_irqrestore(&usbvision->queue_lock, lock_flags);
883
884 f->grabstate = FrameState_Unused;
885
886 vb->memory = V4L2_MEMORY_MMAP;
887 vb->flags = V4L2_BUF_FLAG_MAPPED |
888 V4L2_BUF_FLAG_QUEUED |
889 V4L2_BUF_FLAG_DONE;
890 vb->index = f->index;
891 vb->sequence = f->sequence;
892 vb->timestamp = f->timestamp;
893 vb->field = V4L2_FIELD_NONE;
894 vb->bytesused = f->scanlength;
895
896 return 0;
897}
898
899static int vidioc_streamon(struct file *file, void *priv, enum v4l2_buf_type i)
900{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300901 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300902 int b=V4L2_BUF_TYPE_VIDEO_CAPTURE;
903
904 usbvision->streaming = Stream_On;
905 call_i2c_clients(usbvision,VIDIOC_STREAMON , &b);
906
907 return 0;
908}
909
910static int vidioc_streamoff(struct file *file,
911 void *priv, enum v4l2_buf_type type)
912{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300913 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300914 int b=V4L2_BUF_TYPE_VIDEO_CAPTURE;
915
916 if (type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
917 return -EINVAL;
918
919 if(usbvision->streaming == Stream_On) {
920 usbvision_stream_interrupt(usbvision);
921 /* Stop all video streamings */
922 call_i2c_clients(usbvision,VIDIOC_STREAMOFF , &b);
923 }
924 usbvision_empty_framequeues(usbvision);
925
926 return 0;
927}
928
Hans Verkuil78b526a2008-05-28 12:16:41 -0300929static int vidioc_enum_fmt_vid_cap (struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300930 struct v4l2_fmtdesc *vfd)
931{
932 if(vfd->index>=USBVISION_SUPPORTED_PALETTES-1) {
933 return -EINVAL;
934 }
935 vfd->flags = 0;
936 vfd->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
937 strcpy(vfd->description,usbvision_v4l2_format[vfd->index].desc);
938 vfd->pixelformat = usbvision_v4l2_format[vfd->index].format;
939 memset(vfd->reserved, 0, sizeof(vfd->reserved));
940 return 0;
941}
942
Hans Verkuil78b526a2008-05-28 12:16:41 -0300943static int vidioc_g_fmt_vid_cap (struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300944 struct v4l2_format *vf)
945{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300946 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300947 vf->fmt.pix.width = usbvision->curwidth;
948 vf->fmt.pix.height = usbvision->curheight;
949 vf->fmt.pix.pixelformat = usbvision->palette.format;
950 vf->fmt.pix.bytesperline =
951 usbvision->curwidth*usbvision->palette.bytes_per_pixel;
952 vf->fmt.pix.sizeimage = vf->fmt.pix.bytesperline*usbvision->curheight;
953 vf->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
954 vf->fmt.pix.field = V4L2_FIELD_NONE; /* Always progressive image */
955
956 return 0;
957}
958
Hans Verkuil78b526a2008-05-28 12:16:41 -0300959static int vidioc_try_fmt_vid_cap (struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300960 struct v4l2_format *vf)
961{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300962 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300963 int formatIdx;
964
965 /* Find requested format in available ones */
966 for(formatIdx=0;formatIdx<USBVISION_SUPPORTED_PALETTES;formatIdx++) {
967 if(vf->fmt.pix.pixelformat ==
968 usbvision_v4l2_format[formatIdx].format) {
969 usbvision->palette = usbvision_v4l2_format[formatIdx];
970 break;
971 }
972 }
973 /* robustness */
974 if(formatIdx == USBVISION_SUPPORTED_PALETTES) {
975 return -EINVAL;
976 }
977 RESTRICT_TO_RANGE(vf->fmt.pix.width, MIN_FRAME_WIDTH, MAX_FRAME_WIDTH);
978 RESTRICT_TO_RANGE(vf->fmt.pix.height, MIN_FRAME_HEIGHT, MAX_FRAME_HEIGHT);
979
980 vf->fmt.pix.bytesperline = vf->fmt.pix.width*
981 usbvision->palette.bytes_per_pixel;
982 vf->fmt.pix.sizeimage = vf->fmt.pix.bytesperline*vf->fmt.pix.height;
983
984 return 0;
985}
986
Hans Verkuil78b526a2008-05-28 12:16:41 -0300987static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
Thierry MERLEc5f48362007-05-08 17:22:29 -0300988 struct v4l2_format *vf)
989{
Hans Verkuilc170ecf2008-08-23 08:32:09 -0300990 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLEc5f48362007-05-08 17:22:29 -0300991 int ret;
992
Hans Verkuil78b526a2008-05-28 12:16:41 -0300993 if( 0 != (ret=vidioc_try_fmt_vid_cap (file, priv, vf)) ) {
Thierry MERLEc5f48362007-05-08 17:22:29 -0300994 return ret;
995 }
996
997 /* stop io in case it is already in progress */
998 if(usbvision->streaming == Stream_On) {
999 if ((ret = usbvision_stream_interrupt(usbvision)))
1000 return ret;
1001 }
1002 usbvision_frames_free(usbvision);
1003 usbvision_empty_framequeues(usbvision);
1004
1005 usbvision->curFrame = NULL;
1006
1007 /* by now we are committed to the new data... */
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001008 mutex_lock(&usbvision->lock);
Thierry MERLEc5f48362007-05-08 17:22:29 -03001009 usbvision_set_output(usbvision, vf->fmt.pix.width, vf->fmt.pix.height);
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001010 mutex_unlock(&usbvision->lock);
Thierry MERLEc5f48362007-05-08 17:22:29 -03001011
1012 return 0;
1013}
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001014
Al Viro8a5ab412007-02-09 16:38:20 +00001015static ssize_t usbvision_v4l2_read(struct file *file, char __user *buf,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001016 size_t count, loff_t *ppos)
1017{
Hans Verkuilc170ecf2008-08-23 08:32:09 -03001018 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001019 int noblock = file->f_flags & O_NONBLOCK;
1020 unsigned long lock_flags;
1021
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001022 int ret,i;
1023 struct usbvision_frame *frame;
1024
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001025 PDEBUG(DBG_IO, "%s: %ld bytes, noblock=%d", __func__,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001026 (unsigned long)count, noblock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001027
1028 if (!USBVISION_IS_OPERATIONAL(usbvision) || (buf == NULL))
1029 return -EFAULT;
1030
Thierry MERLEc5f48362007-05-08 17:22:29 -03001031 /* This entry point is compatible with the mmap routines
1032 so that a user can do either VIDIOC_QBUF/VIDIOC_DQBUF
1033 to get frames or call read on the device. */
Thierry MERLE6f78e182007-02-07 10:13:11 -03001034 if(!usbvision->num_frames) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001035 /* First, allocate some frames to work with
1036 if this has not been done with VIDIOC_REQBUF */
Thierry MERLE6f78e182007-02-07 10:13:11 -03001037 usbvision_frames_free(usbvision);
1038 usbvision_empty_framequeues(usbvision);
1039 usbvision_frames_alloc(usbvision,USBVISION_NUMFRAMES);
1040 }
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001041
Thierry MERLE6f78e182007-02-07 10:13:11 -03001042 if(usbvision->streaming != Stream_On) {
1043 /* no stream is running, make it running ! */
1044 usbvision->streaming = Stream_On;
1045 call_i2c_clients(usbvision,VIDIOC_STREAMON , NULL);
1046 }
1047
Thierry MERLEc5f48362007-05-08 17:22:29 -03001048 /* Then, enqueue as many frames as possible
1049 (like a user of VIDIOC_QBUF would do) */
Thierry MERLE6f78e182007-02-07 10:13:11 -03001050 for(i=0;i<usbvision->num_frames;i++) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001051 frame = &usbvision->frame[i];
1052 if(frame->grabstate == FrameState_Unused) {
1053 /* Mark it as ready and enqueue frame */
1054 frame->grabstate = FrameState_Ready;
1055 frame->scanstate = ScanState_Scanning;
Thierry MERLEc5f48362007-05-08 17:22:29 -03001056 /* Accumulated in usbvision_parse_data() */
1057 frame->scanlength = 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001058
1059 /* set v4l2_format index */
1060 frame->v4l2_format = usbvision->palette;
1061
1062 spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
1063 list_add_tail(&frame->frame, &usbvision->inqueue);
Thierry MERLEc5f48362007-05-08 17:22:29 -03001064 spin_unlock_irqrestore(&usbvision->queue_lock,
1065 lock_flags);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001066 }
1067 }
1068
1069 /* Then try to steal a frame (like a VIDIOC_DQBUF would do) */
1070 if (list_empty(&(usbvision->outqueue))) {
1071 if(noblock)
1072 return -EAGAIN;
1073
1074 ret = wait_event_interruptible
1075 (usbvision->wait_frame,
1076 !list_empty(&(usbvision->outqueue)));
1077 if (ret)
1078 return ret;
1079 }
1080
1081 spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
1082 frame = list_entry(usbvision->outqueue.next,
1083 struct usbvision_frame, frame);
1084 list_del(usbvision->outqueue.next);
1085 spin_unlock_irqrestore(&usbvision->queue_lock, lock_flags);
1086
1087 /* An error returns an empty frame */
1088 if (frame->grabstate == FrameState_Error) {
1089 frame->bytes_read = 0;
1090 return 0;
1091 }
1092
Thierry MERLEc5f48362007-05-08 17:22:29 -03001093 PDEBUG(DBG_IO, "%s: frmx=%d, bytes_read=%ld, scanlength=%ld",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001094 __func__,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001095 frame->index, frame->bytes_read, frame->scanlength);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001096
1097 /* copy bytes to user space; we allow for partials reads */
1098 if ((count + frame->bytes_read) > (unsigned long)frame->scanlength)
1099 count = frame->scanlength - frame->bytes_read;
1100
1101 if (copy_to_user(buf, frame->data + frame->bytes_read, count)) {
1102 return -EFAULT;
1103 }
1104
1105 frame->bytes_read += count;
Thierry MERLEc5f48362007-05-08 17:22:29 -03001106 PDEBUG(DBG_IO, "%s: {copy} count used=%ld, new bytes_read=%ld",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001107 __func__,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001108 (unsigned long)count, frame->bytes_read);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001109
Thierry MERLEc5f48362007-05-08 17:22:29 -03001110 /* For now, forget the frame if it has not been read in one shot. */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001111/* if (frame->bytes_read >= frame->scanlength) {// All data has been read */
1112 frame->bytes_read = 0;
1113
1114 /* Mark it as available to be used again. */
Thierry MERLEc430ca12006-12-29 20:32:08 -03001115 frame->grabstate = FrameState_Unused;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001116/* } */
1117
1118 return count;
1119}
1120
1121static int usbvision_v4l2_mmap(struct file *file, struct vm_area_struct *vma)
1122{
1123 unsigned long size = vma->vm_end - vma->vm_start,
1124 start = vma->vm_start;
1125 void *pos;
1126 u32 i;
Hans Verkuilc170ecf2008-08-23 08:32:09 -03001127 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001128
Thierry MERLE6f78e182007-02-07 10:13:11 -03001129 PDEBUG(DBG_MMAP, "mmap");
1130
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001131 mutex_lock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001132
1133 if (!USBVISION_IS_OPERATIONAL(usbvision)) {
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001134 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001135 return -EFAULT;
1136 }
1137
1138 if (!(vma->vm_flags & VM_WRITE) ||
Thierry MERLE6f78e182007-02-07 10:13:11 -03001139 size != PAGE_ALIGN(usbvision->max_frame_size)) {
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001140 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001141 return -EINVAL;
1142 }
1143
Thierry MERLE6f78e182007-02-07 10:13:11 -03001144 for (i = 0; i < usbvision->num_frames; i++) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001145 if (((PAGE_ALIGN(usbvision->max_frame_size)*i) >> PAGE_SHIFT) ==
1146 vma->vm_pgoff)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001147 break;
1148 }
Thierry MERLE6f78e182007-02-07 10:13:11 -03001149 if (i == usbvision->num_frames) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001150 PDEBUG(DBG_MMAP,
1151 "mmap: user supplied mapping address is out of range");
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001152 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001153 return -EINVAL;
1154 }
1155
1156 /* VM_IO is eventually going to replace PageReserved altogether */
1157 vma->vm_flags |= VM_IO;
1158 vma->vm_flags |= VM_RESERVED; /* avoid to swap out this VMA */
1159
1160 pos = usbvision->frame[i].data;
1161 while (size > 0) {
1162
1163 if (vm_insert_page(vma, start, vmalloc_to_page(pos))) {
Thierry MERLEc876a342006-12-09 16:42:54 -03001164 PDEBUG(DBG_MMAP, "mmap: vm_insert_page failed");
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001165 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001166 return -EAGAIN;
1167 }
1168 start += PAGE_SIZE;
1169 pos += PAGE_SIZE;
1170 size -= PAGE_SIZE;
1171 }
1172
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001173 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001174 return 0;
1175}
1176
1177
1178/*
1179 * Here comes the stuff for radio on usbvision based devices
1180 *
1181 */
Hans Verkuilbec43662008-12-30 06:58:20 -03001182static int usbvision_radio_open(struct file *file)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001183{
Hans Verkuilc170ecf2008-08-23 08:32:09 -03001184 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001185 int errCode = 0;
1186
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001187 PDEBUG(DBG_IO, "%s:", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001188
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001189 mutex_lock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001190
1191 if (usbvision->user) {
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001192 err("%s: Someone tried to open an already opened USBVision Radio!", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001193 errCode = -EBUSY;
1194 }
1195 else {
1196 if(PowerOnAtOpen) {
1197 usbvision_reset_powerOffTimer(usbvision);
1198 if (usbvision->power == 0) {
1199 usbvision_power_on(usbvision);
Thierry MERLE1ff16c22007-04-14 16:23:49 -03001200 usbvision_i2c_register(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001201 }
1202 }
1203
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001204 /* Alternate interface 1 is is the biggest frame size */
1205 errCode = usbvision_set_alternate(usbvision);
1206 if (errCode < 0) {
1207 usbvision->last_error = errCode;
Andrew Morton544e6172007-12-12 18:25:23 -03001208 errCode = -EBUSY;
1209 goto out;
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001210 }
1211
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001212 // If so far no errors then we shall start the radio
1213 usbvision->radio = 1;
1214 call_i2c_clients(usbvision,AUDC_SET_RADIO,&usbvision->tuner_type);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001215 usbvision_set_audio(usbvision, USBVISION_AUDIO_RADIO);
1216 usbvision->user++;
1217 }
1218
1219 if (errCode) {
1220 if (PowerOnAtOpen) {
Thierry MERLE1ff16c22007-04-14 16:23:49 -03001221 usbvision_i2c_unregister(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001222 usbvision_power_off(usbvision);
1223 usbvision->initialized = 0;
1224 }
1225 }
Andrew Morton544e6172007-12-12 18:25:23 -03001226out:
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001227 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001228 return errCode;
1229}
1230
1231
Hans Verkuilbec43662008-12-30 06:58:20 -03001232static int usbvision_radio_close(struct file *file)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001233{
Hans Verkuilc170ecf2008-08-23 08:32:09 -03001234 struct usb_usbvision *usbvision = video_drvdata(file);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001235 int errCode = 0;
1236
1237 PDEBUG(DBG_IO, "");
1238
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001239 mutex_lock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001240
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001241 /* Set packet size to 0 */
1242 usbvision->ifaceAlt=0;
1243 errCode = usb_set_interface(usbvision->dev, usbvision->iface,
1244 usbvision->ifaceAlt);
1245
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001246 usbvision_audio_off(usbvision);
1247 usbvision->radio=0;
1248 usbvision->user--;
1249
1250 if (PowerOnAtOpen) {
1251 usbvision_set_powerOffTimer(usbvision);
1252 usbvision->initialized = 0;
1253 }
1254
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001255 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001256
1257 if (usbvision->remove_pending) {
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001258 printk(KERN_INFO "%s: Final disconnect\n", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001259 usbvision_release(usbvision);
1260 }
1261
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001262 PDEBUG(DBG_IO, "success");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001263 return errCode;
1264}
1265
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001266/*
1267 * Here comes the stuff for vbi on usbvision based devices
1268 *
1269 */
Hans Verkuilbec43662008-12-30 06:58:20 -03001270static int usbvision_vbi_open(struct file *file)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001271{
1272 /* TODO */
Thierry MERLEc5f48362007-05-08 17:22:29 -03001273 return -ENODEV;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001274}
1275
Hans Verkuilbec43662008-12-30 06:58:20 -03001276static int usbvision_vbi_close(struct file *file)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001277{
1278 /* TODO */
Thierry MERLEc5f48362007-05-08 17:22:29 -03001279 return -ENODEV;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001280}
1281
Hans Verkuil069b7472008-12-30 07:04:34 -03001282static long usbvision_do_vbi_ioctl(struct file *file,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001283 unsigned int cmd, void *arg)
1284{
1285 /* TODO */
Thierry MERLEc5f48362007-05-08 17:22:29 -03001286 return -ENOIOCTLCMD;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001287}
1288
Hans Verkuil069b7472008-12-30 07:04:34 -03001289static long usbvision_vbi_ioctl(struct file *file,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001290 unsigned int cmd, unsigned long arg)
1291{
Hans Verkuilf473bf72008-11-01 08:25:11 -03001292 return video_usercopy(file, cmd, arg, usbvision_do_vbi_ioctl);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001293}
1294
1295
1296//
1297// Video registration stuff
1298//
1299
1300// Video template
Hans Verkuilbec43662008-12-30 06:58:20 -03001301static const struct v4l2_file_operations usbvision_fops = {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001302 .owner = THIS_MODULE,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001303 .open = usbvision_v4l2_open,
1304 .release = usbvision_v4l2_close,
1305 .read = usbvision_v4l2_read,
1306 .mmap = usbvision_v4l2_mmap,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001307 .ioctl = video_ioctl2,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001308/* .poll = video_poll, */
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001309};
Hans Verkuila3998102008-07-21 02:57:38 -03001310
1311static const struct v4l2_ioctl_ops usbvision_ioctl_ops = {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001312 .vidioc_querycap = vidioc_querycap,
Hans Verkuil78b526a2008-05-28 12:16:41 -03001313 .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap,
1314 .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap,
1315 .vidioc_try_fmt_vid_cap = vidioc_try_fmt_vid_cap,
1316 .vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001317 .vidioc_reqbufs = vidioc_reqbufs,
1318 .vidioc_querybuf = vidioc_querybuf,
1319 .vidioc_qbuf = vidioc_qbuf,
1320 .vidioc_dqbuf = vidioc_dqbuf,
1321 .vidioc_s_std = vidioc_s_std,
1322 .vidioc_enum_input = vidioc_enum_input,
1323 .vidioc_g_input = vidioc_g_input,
1324 .vidioc_s_input = vidioc_s_input,
1325 .vidioc_queryctrl = vidioc_queryctrl,
1326 .vidioc_g_audio = vidioc_g_audio,
Al Viroed4d6372007-09-26 01:53:42 +01001327 .vidioc_s_audio = vidioc_s_audio,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001328 .vidioc_g_ctrl = vidioc_g_ctrl,
1329 .vidioc_s_ctrl = vidioc_s_ctrl,
1330 .vidioc_streamon = vidioc_streamon,
1331 .vidioc_streamoff = vidioc_streamoff,
1332#ifdef CONFIG_VIDEO_V4L1_COMPAT
1333/* .vidiocgmbuf = vidiocgmbuf, */
1334#endif
1335 .vidioc_g_tuner = vidioc_g_tuner,
1336 .vidioc_s_tuner = vidioc_s_tuner,
1337 .vidioc_g_frequency = vidioc_g_frequency,
1338 .vidioc_s_frequency = vidioc_s_frequency,
1339#ifdef CONFIG_VIDEO_ADV_DEBUG
1340 .vidioc_g_register = vidioc_g_register,
1341 .vidioc_s_register = vidioc_s_register,
1342#endif
Hans Verkuila3998102008-07-21 02:57:38 -03001343};
1344
1345static struct video_device usbvision_video_template = {
Hans Verkuila3998102008-07-21 02:57:38 -03001346 .fops = &usbvision_fops,
1347 .ioctl_ops = &usbvision_ioctl_ops,
1348 .name = "usbvision-video",
1349 .release = video_device_release,
1350 .minor = -1,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001351 .tvnorms = USBVISION_NORMS,
1352 .current_norm = V4L2_STD_PAL
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001353};
1354
1355
1356// Radio template
Hans Verkuilbec43662008-12-30 06:58:20 -03001357static const struct v4l2_file_operations usbvision_radio_fops = {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001358 .owner = THIS_MODULE,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001359 .open = usbvision_radio_open,
1360 .release = usbvision_radio_close,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001361 .ioctl = video_ioctl2,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001362};
1363
Hans Verkuila3998102008-07-21 02:57:38 -03001364static const struct v4l2_ioctl_ops usbvision_radio_ioctl_ops = {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001365 .vidioc_querycap = vidioc_querycap,
1366 .vidioc_enum_input = vidioc_enum_input,
1367 .vidioc_g_input = vidioc_g_input,
1368 .vidioc_s_input = vidioc_s_input,
1369 .vidioc_queryctrl = vidioc_queryctrl,
1370 .vidioc_g_audio = vidioc_g_audio,
Al Viroed4d6372007-09-26 01:53:42 +01001371 .vidioc_s_audio = vidioc_s_audio,
Thierry MERLEc5f48362007-05-08 17:22:29 -03001372 .vidioc_g_ctrl = vidioc_g_ctrl,
1373 .vidioc_s_ctrl = vidioc_s_ctrl,
1374 .vidioc_g_tuner = vidioc_g_tuner,
1375 .vidioc_s_tuner = vidioc_s_tuner,
1376 .vidioc_g_frequency = vidioc_g_frequency,
1377 .vidioc_s_frequency = vidioc_s_frequency,
Hans Verkuila3998102008-07-21 02:57:38 -03001378};
1379
1380static struct video_device usbvision_radio_template = {
Hans Verkuila3998102008-07-21 02:57:38 -03001381 .fops = &usbvision_radio_fops,
1382 .name = "usbvision-radio",
1383 .release = video_device_release,
1384 .minor = -1,
1385 .ioctl_ops = &usbvision_radio_ioctl_ops,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001386
Thierry MERLEc5f48362007-05-08 17:22:29 -03001387 .tvnorms = USBVISION_NORMS,
1388 .current_norm = V4L2_STD_PAL
1389};
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001390
1391// vbi template
Hans Verkuilbec43662008-12-30 06:58:20 -03001392static const struct v4l2_file_operations usbvision_vbi_fops = {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001393 .owner = THIS_MODULE,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001394 .open = usbvision_vbi_open,
1395 .release = usbvision_vbi_close,
1396 .ioctl = usbvision_vbi_ioctl,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001397};
1398
1399static struct video_device usbvision_vbi_template=
1400{
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001401 .fops = &usbvision_vbi_fops,
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001402 .release = video_device_release,
1403 .name = "usbvision-vbi",
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001404 .minor = -1,
1405};
1406
1407
1408static struct video_device *usbvision_vdev_init(struct usb_usbvision *usbvision,
1409 struct video_device *vdev_template,
1410 char *name)
1411{
1412 struct usb_device *usb_dev = usbvision->dev;
1413 struct video_device *vdev;
1414
1415 if (usb_dev == NULL) {
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001416 err("%s: usbvision->dev is not set", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001417 return NULL;
1418 }
1419
1420 vdev = video_device_alloc();
1421 if (NULL == vdev) {
1422 return NULL;
1423 }
1424 *vdev = *vdev_template;
1425// vdev->minor = -1;
Hans Verkuil5e85e732008-07-20 06:31:39 -03001426 vdev->parent = &usb_dev->dev;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001427 snprintf(vdev->name, sizeof(vdev->name), "%s", name);
1428 video_set_drvdata(vdev, usbvision);
1429 return vdev;
1430}
1431
1432// unregister video4linux devices
1433static void usbvision_unregister_video(struct usb_usbvision *usbvision)
1434{
1435 // vbi Device:
1436 if (usbvision->vbi) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001437 PDEBUG(DBG_PROBE, "unregister /dev/vbi%d [v4l2]",
Hans Verkuilc6330fb2008-10-19 18:54:26 -03001438 usbvision->vbi->num);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001439 if (usbvision->vbi->minor != -1) {
1440 video_unregister_device(usbvision->vbi);
Thierry MERLEc5f48362007-05-08 17:22:29 -03001441 } else {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001442 video_device_release(usbvision->vbi);
1443 }
1444 usbvision->vbi = NULL;
1445 }
1446
1447 // Radio Device:
1448 if (usbvision->rdev) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001449 PDEBUG(DBG_PROBE, "unregister /dev/radio%d [v4l2]",
Hans Verkuilc6330fb2008-10-19 18:54:26 -03001450 usbvision->rdev->num);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001451 if (usbvision->rdev->minor != -1) {
1452 video_unregister_device(usbvision->rdev);
Thierry MERLEc5f48362007-05-08 17:22:29 -03001453 } else {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001454 video_device_release(usbvision->rdev);
1455 }
1456 usbvision->rdev = NULL;
1457 }
1458
1459 // Video Device:
1460 if (usbvision->vdev) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001461 PDEBUG(DBG_PROBE, "unregister /dev/video%d [v4l2]",
Hans Verkuilc6330fb2008-10-19 18:54:26 -03001462 usbvision->vdev->num);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001463 if (usbvision->vdev->minor != -1) {
1464 video_unregister_device(usbvision->vdev);
Thierry MERLEc5f48362007-05-08 17:22:29 -03001465 } else {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001466 video_device_release(usbvision->vdev);
1467 }
1468 usbvision->vdev = NULL;
1469 }
1470}
1471
1472// register video4linux devices
1473static int __devinit usbvision_register_video(struct usb_usbvision *usbvision)
1474{
1475 // Video Device:
Thierry MERLEc5f48362007-05-08 17:22:29 -03001476 usbvision->vdev = usbvision_vdev_init(usbvision,
1477 &usbvision_video_template,
1478 "USBVision Video");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001479 if (usbvision->vdev == NULL) {
1480 goto err_exit;
1481 }
Thierry MERLEc5f48362007-05-08 17:22:29 -03001482 if (video_register_device(usbvision->vdev,
1483 VFL_TYPE_GRABBER,
1484 video_nr)<0) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001485 goto err_exit;
1486 }
Thierry MERLEc5f48362007-05-08 17:22:29 -03001487 printk(KERN_INFO "USBVision[%d]: registered USBVision Video device /dev/video%d [v4l2]\n",
Hans Verkuilc6330fb2008-10-19 18:54:26 -03001488 usbvision->nr, usbvision->vdev->num);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001489
1490 // Radio Device:
1491 if (usbvision_device_data[usbvision->DevModel].Radio) {
1492 // usbvision has radio
Thierry MERLEc5f48362007-05-08 17:22:29 -03001493 usbvision->rdev = usbvision_vdev_init(usbvision,
1494 &usbvision_radio_template,
1495 "USBVision Radio");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001496 if (usbvision->rdev == NULL) {
1497 goto err_exit;
1498 }
Thierry MERLEc5f48362007-05-08 17:22:29 -03001499 if (video_register_device(usbvision->rdev,
1500 VFL_TYPE_RADIO,
1501 radio_nr)<0) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001502 goto err_exit;
1503 }
Thierry MERLEc5f48362007-05-08 17:22:29 -03001504 printk(KERN_INFO "USBVision[%d]: registered USBVision Radio device /dev/radio%d [v4l2]\n",
Hans Verkuilc6330fb2008-10-19 18:54:26 -03001505 usbvision->nr, usbvision->rdev->num);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001506 }
1507 // vbi Device:
1508 if (usbvision_device_data[usbvision->DevModel].vbi) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001509 usbvision->vbi = usbvision_vdev_init(usbvision,
1510 &usbvision_vbi_template,
1511 "USBVision VBI");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001512 if (usbvision->vdev == NULL) {
1513 goto err_exit;
1514 }
Thierry MERLEc5f48362007-05-08 17:22:29 -03001515 if (video_register_device(usbvision->vbi,
1516 VFL_TYPE_VBI,
1517 vbi_nr)<0) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001518 goto err_exit;
1519 }
Thierry MERLEc5f48362007-05-08 17:22:29 -03001520 printk(KERN_INFO "USBVision[%d]: registered USBVision VBI device /dev/vbi%d [v4l2] (Not Working Yet!)\n",
Hans Verkuilc6330fb2008-10-19 18:54:26 -03001521 usbvision->nr, usbvision->vbi->num);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001522 }
1523 // all done
1524 return 0;
1525
1526 err_exit:
1527 err("USBVision[%d]: video_register_device() failed", usbvision->nr);
1528 usbvision_unregister_video(usbvision);
1529 return -1;
1530}
1531
1532/*
1533 * usbvision_alloc()
1534 *
Thierry MERLEc5f48362007-05-08 17:22:29 -03001535 * This code allocates the struct usb_usbvision.
1536 * It is filled with default values.
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001537 *
1538 * Returns NULL on error, a pointer to usb_usbvision else.
1539 *
1540 */
1541static struct usb_usbvision *usbvision_alloc(struct usb_device *dev)
1542{
1543 struct usb_usbvision *usbvision;
1544
Thierry MERLEc5f48362007-05-08 17:22:29 -03001545 if ((usbvision = kzalloc(sizeof(struct usb_usbvision), GFP_KERNEL)) ==
1546 NULL) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001547 goto err_exit;
1548 }
1549
1550 usbvision->dev = dev;
1551
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);
1556 if (usbvision->ctrlUrb == NULL) {
1557 goto err_exit;
1558 }
1559 init_waitqueue_head(&usbvision->ctrlUrb_wq);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001560
1561 usbvision_init_powerOffTimer(usbvision);
1562
1563 return usbvision;
1564
1565err_exit:
1566 if (usbvision && usbvision->ctrlUrb) {
1567 usb_free_urb(usbvision->ctrlUrb);
1568 }
1569 if (usbvision) {
1570 kfree(usbvision);
1571 }
1572 return NULL;
1573}
1574
1575/*
1576 * usbvision_release()
1577 *
1578 * This code does final release of struct usb_usbvision. This happens
1579 * after the device is disconnected -and- all clients closed their files.
1580 *
1581 */
1582static void usbvision_release(struct usb_usbvision *usbvision)
1583{
1584 PDEBUG(DBG_PROBE, "");
1585
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001586 mutex_lock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001587
1588 usbvision_reset_powerOffTimer(usbvision);
1589
1590 usbvision->initialized = 0;
1591
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001592 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001593
1594 usbvision_remove_sysfs(usbvision->vdev);
1595 usbvision_unregister_video(usbvision);
1596
1597 if (usbvision->ctrlUrb) {
1598 usb_free_urb(usbvision->ctrlUrb);
1599 }
1600
1601 kfree(usbvision);
1602
1603 PDEBUG(DBG_PROBE, "success");
1604}
1605
1606
Thierry MERLEc5f48362007-05-08 17:22:29 -03001607/*********************** usb interface **********************************/
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001608
1609static void usbvision_configure_video(struct usb_usbvision *usbvision)
1610{
Thierry MERLEc5f48362007-05-08 17:22:29 -03001611 int model;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001612
1613 if (usbvision == NULL)
1614 return;
1615
1616 model = usbvision->DevModel;
1617 usbvision->palette = usbvision_v4l2_format[2]; // V4L2_PIX_FMT_RGB24;
1618
Trent Piephoc682b3a2007-04-14 15:16:26 -03001619 if (usbvision_device_data[usbvision->DevModel].Vin_Reg2_override) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001620 usbvision->Vin_Reg2_Preset =
1621 usbvision_device_data[usbvision->DevModel].Vin_Reg2;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001622 } else {
1623 usbvision->Vin_Reg2_Preset = 0;
1624 }
1625
Thierry MERLEc5f48362007-05-08 17:22:29 -03001626 usbvision->tvnormId = usbvision_device_data[model].VideoNorm;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001627
1628 usbvision->video_inputs = usbvision_device_data[model].VideoChannels;
1629 usbvision->ctl_input = 0;
1630
1631 /* This should be here to make i2c clients to be able to register */
Thierry MERLEc5f48362007-05-08 17:22:29 -03001632 /* first switch off audio */
1633 usbvision_audio_off(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001634 if (!PowerOnAtOpen) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001635 /* and then power up the noisy tuner */
1636 usbvision_power_on(usbvision);
Thierry MERLE1ff16c22007-04-14 16:23:49 -03001637 usbvision_i2c_register(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001638 }
1639}
1640
1641/*
1642 * usbvision_probe()
1643 *
1644 * This procedure queries device descriptor and accepts the interface
1645 * if it looks like USBVISION video device
1646 *
1647 */
Mauro Carvalho Chehab659ae562007-04-14 15:09:59 -03001648static int __devinit usbvision_probe(struct usb_interface *intf,
1649 const struct usb_device_id *devid)
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001650{
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001651 struct usb_device *dev = usb_get_dev(interface_to_usbdev(intf));
1652 struct usb_interface *uif;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001653 __u8 ifnum = intf->altsetting->desc.bInterfaceNumber;
1654 const struct usb_host_interface *interface;
1655 struct usb_usbvision *usbvision = NULL;
1656 const struct usb_endpoint_descriptor *endpoint;
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001657 int model,i;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001658
1659 PDEBUG(DBG_PROBE, "VID=%#04x, PID=%#04x, ifnum=%u",
Mauro Carvalho Chehab659ae562007-04-14 15:09:59 -03001660 dev->descriptor.idVendor,
1661 dev->descriptor.idProduct, ifnum);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001662
Mauro Carvalho Chehab659ae562007-04-14 15:09:59 -03001663 model = devid->driver_info;
Mauro Carvalho Chehabf8a389d2007-04-14 15:17:35 -03001664 if ( (model<0) || (model>=usbvision_device_data_size) ) {
Thierry MERLE672d0132007-04-14 17:53:55 -03001665 PDEBUG(DBG_PROBE, "model out of bounds %d",model);
Mauro Carvalho Chehabf8a389d2007-04-14 15:17:35 -03001666 return -ENODEV;
1667 }
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001668 printk(KERN_INFO "%s: %s found\n", __func__,
Mauro Carvalho Chehab659ae562007-04-14 15:09:59 -03001669 usbvision_device_data[model].ModelString);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001670
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001671 if (usbvision_device_data[model].Interface >= 0) {
1672 interface = &dev->actconfig->interface[usbvision_device_data[model].Interface]->altsetting[0];
Thierry MERLEc5f48362007-05-08 17:22:29 -03001673 } else {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001674 interface = &dev->actconfig->interface[ifnum]->altsetting[0];
1675 }
1676 endpoint = &interface->endpoint[1].desc;
Julia Lawall13417982008-12-29 21:49:22 -03001677 if (usb_endpoint_type(endpoint) !=
Thierry MERLEc5f48362007-05-08 17:22:29 -03001678 USB_ENDPOINT_XFER_ISOC) {
1679 err("%s: interface %d. has non-ISO endpoint!",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001680 __func__, ifnum);
Thierry MERLEc5f48362007-05-08 17:22:29 -03001681 err("%s: Endpoint attributes %d",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001682 __func__, endpoint->bmAttributes);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001683 return -ENODEV;
1684 }
Julia Lawall13417982008-12-29 21:49:22 -03001685 if (usb_endpoint_dir_out(endpoint)) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001686 err("%s: interface %d. has ISO OUT endpoint!",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001687 __func__, ifnum);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001688 return -ENODEV;
1689 }
1690
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001691 if ((usbvision = usbvision_alloc(dev)) == NULL) {
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001692 err("%s: couldn't allocate USBVision struct", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001693 return -ENOMEM;
1694 }
Mauro Carvalho Chehab659ae562007-04-14 15:09:59 -03001695
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001696 if (dev->descriptor.bNumConfigurations > 1) {
1697 usbvision->bridgeType = BRIDGE_NT1004;
Thierry MERLEc5f48362007-05-08 17:22:29 -03001698 } else if (model == DAZZLE_DVC_90_REV_1_SECAM) {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001699 usbvision->bridgeType = BRIDGE_NT1005;
Thierry MERLEc5f48362007-05-08 17:22:29 -03001700 } else {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001701 usbvision->bridgeType = BRIDGE_NT1003;
1702 }
1703 PDEBUG(DBG_PROBE, "bridgeType %d", usbvision->bridgeType);
1704
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001705 mutex_lock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001706
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001707 /* compute alternate max packet sizes */
1708 uif = dev->actconfig->interface[0];
1709
1710 usbvision->num_alt=uif->num_altsetting;
1711 PDEBUG(DBG_PROBE, "Alternate settings: %i",usbvision->num_alt);
1712 usbvision->alt_max_pkt_size = kmalloc(32*
1713 usbvision->num_alt,GFP_KERNEL);
1714 if (usbvision->alt_max_pkt_size == NULL) {
1715 err("usbvision: out of memory!\n");
Daniel Walker09911122007-12-12 18:22:48 -03001716 mutex_unlock(&usbvision->lock);
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001717 return -ENOMEM;
1718 }
1719
1720 for (i = 0; i < usbvision->num_alt ; i++) {
1721 u16 tmp = le16_to_cpu(uif->altsetting[i].endpoint[1].desc.
1722 wMaxPacketSize);
1723 usbvision->alt_max_pkt_size[i] =
1724 (tmp & 0x07ff) * (((tmp & 0x1800) >> 11) + 1);
1725 PDEBUG(DBG_PROBE, "Alternate setting %i, max size= %i",i,
1726 usbvision->alt_max_pkt_size[i]);
1727 }
1728
1729
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001730 usbvision->nr = usbvision_nr++;
1731
1732 usbvision->have_tuner = usbvision_device_data[model].Tuner;
1733 if (usbvision->have_tuner) {
1734 usbvision->tuner_type = usbvision_device_data[model].TunerType;
1735 }
1736
1737 usbvision->tuner_addr = ADDR_UNSET;
1738
1739 usbvision->DevModel = model;
1740 usbvision->remove_pending = 0;
1741 usbvision->iface = ifnum;
Thierry MERLE2a9f8b52007-02-07 10:14:38 -03001742 usbvision->ifaceAlt = 0;
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001743 usbvision->video_endp = endpoint->bEndpointAddress;
1744 usbvision->isocPacketSize = 0;
1745 usbvision->usb_bandwidth = 0;
1746 usbvision->user = 0;
1747 usbvision->streaming = Stream_Off;
1748 usbvision_register_video(usbvision);
1749 usbvision_configure_video(usbvision);
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001750 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001751
1752
1753 usb_set_intfdata (intf, usbvision);
1754 usbvision_create_sysfs(usbvision->vdev);
1755
1756 PDEBUG(DBG_PROBE, "success");
1757 return 0;
1758}
1759
1760
1761/*
1762 * usbvision_disconnect()
1763 *
1764 * This procedure stops all driver activity, deallocates interface-private
1765 * structure (pointed by 'ptr') and after that driver should be removable
1766 * with no ill consequences.
1767 *
1768 */
1769static void __devexit usbvision_disconnect(struct usb_interface *intf)
1770{
1771 struct usb_usbvision *usbvision = usb_get_intfdata(intf);
1772
1773 PDEBUG(DBG_PROBE, "");
1774
1775 if (usbvision == NULL) {
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001776 err("%s: usb_get_intfdata() failed", __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001777 return;
1778 }
1779 usb_set_intfdata (intf, NULL);
1780
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001781 mutex_lock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001782
1783 // At this time we ask to cancel outstanding URBs
1784 usbvision_stop_isoc(usbvision);
1785
1786 if (usbvision->power) {
Thierry MERLE1ff16c22007-04-14 16:23:49 -03001787 usbvision_i2c_unregister(usbvision);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001788 usbvision_power_off(usbvision);
1789 }
1790 usbvision->remove_pending = 1; // Now all ISO data will be ignored
1791
1792 usb_put_dev(usbvision->dev);
1793 usbvision->dev = NULL; // USB device is no more
1794
Matthias Kaehlcke289d4d22007-10-24 17:31:15 -03001795 mutex_unlock(&usbvision->lock);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001796
1797 if (usbvision->user) {
Thierry MERLEc5f48362007-05-08 17:22:29 -03001798 printk(KERN_INFO "%s: In use, disconnect pending\n",
Harvey Harrisond2db42d2008-04-04 20:50:07 -03001799 __func__);
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001800 wake_up_interruptible(&usbvision->wait_frame);
1801 wake_up_interruptible(&usbvision->wait_stream);
Thierry MERLEc5f48362007-05-08 17:22:29 -03001802 } else {
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001803 usbvision_release(usbvision);
1804 }
1805
1806 PDEBUG(DBG_PROBE, "success");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001807}
1808
1809static struct usb_driver usbvision_driver = {
1810 .name = "usbvision",
1811 .id_table = usbvision_table,
1812 .probe = usbvision_probe,
1813 .disconnect = usbvision_disconnect
1814};
1815
1816/*
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001817 * usbvision_init()
1818 *
1819 * This code is run to initialize the driver.
1820 *
1821 */
1822static int __init usbvision_init(void)
1823{
1824 int errCode;
1825
1826 PDEBUG(DBG_PROBE, "");
1827
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001828 PDEBUG(DBG_IO, "IO debugging is enabled [video]");
1829 PDEBUG(DBG_PROBE, "PROBE debugging is enabled [video]");
Thierry MERLEc876a342006-12-09 16:42:54 -03001830 PDEBUG(DBG_MMAP, "MMAP debugging is enabled [video]");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001831
1832 /* disable planar mode support unless compression enabled */
1833 if (isocMode != ISOC_MODE_COMPRESS ) {
1834 // FIXME : not the right way to set supported flag
1835 usbvision_v4l2_format[6].supported = 0; // V4L2_PIX_FMT_YVU420
1836 usbvision_v4l2_format[7].supported = 0; // V4L2_PIX_FMT_YUV422P
1837 }
1838
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001839 errCode = usb_register(&usbvision_driver);
1840
1841 if (errCode == 0) {
Dwaine Gardende6a1b82007-01-07 21:13:55 -03001842 printk(KERN_INFO DRIVER_DESC " : " USBVISION_VERSION_STRING "\n");
Thierry MERLE483dfdb2006-12-04 08:31:45 -03001843 PDEBUG(DBG_PROBE, "success");
1844 }
1845 return errCode;
1846}
1847
1848static void __exit usbvision_exit(void)
1849{
1850 PDEBUG(DBG_PROBE, "");
1851
1852 usb_deregister(&usbvision_driver);
1853 PDEBUG(DBG_PROBE, "success");
1854}
1855
1856module_init(usbvision_init);
1857module_exit(usbvision_exit);
1858
1859/*
1860 * Overrides for Emacs so that we follow Linus's tabbing style.
1861 * ---------------------------------------------------------------------------
1862 * Local variables:
1863 * c-basic-offset: 8
1864 * End:
1865 */