Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1 | /* |
Mauro Carvalho Chehab | 7ca659e | 2006-12-09 11:43:31 -0300 | [diff] [blame] | 2 | * USB USBVISION Video device driver 0.9.9 |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 3 | * |
| 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 MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 39 | * - Add audio on endpoint 3 for nt1004 chip. |
| 40 | * Seems impossible, needs a codec interface. Which one? |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 41 | * - 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 Chehab | f30ebd4 | 2006-12-09 12:32:18 -0300 | [diff] [blame] | 48 | #include <linux/version.h> |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 49 | #include <linux/kernel.h> |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 50 | #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 MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 56 | #include <linux/videodev.h> |
| 57 | #include <linux/vmalloc.h> |
| 58 | #include <linux/module.h> |
| 59 | #include <linux/init.h> |
| 60 | #include <linux/spinlock.h> |
| 61 | #include <asm/io.h> |
| 62 | #include <linux/videodev2.h> |
| 63 | #include <linux/video_decoder.h> |
| 64 | #include <linux/i2c.h> |
| 65 | |
| 66 | #include <media/saa7115.h> |
| 67 | #include <media/v4l2-common.h> |
Hans Verkuil | 35ea11f | 2008-07-20 08:12:02 -0300 | [diff] [blame] | 68 | #include <media/v4l2-ioctl.h> |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 69 | #include <media/tuner.h> |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 70 | |
Mauro Carvalho Chehab | a1ed551 | 2006-12-09 11:41:59 -0300 | [diff] [blame] | 71 | #include <linux/workqueue.h> |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 72 | |
| 73 | #ifdef CONFIG_KMOD |
| 74 | #include <linux/kmod.h> |
| 75 | #endif |
| 76 | |
| 77 | #include "usbvision.h" |
Mauro Carvalho Chehab | 659ae56 | 2007-04-14 15:09:59 -0300 | [diff] [blame] | 78 | #include "usbvision-cards.h" |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 79 | |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 80 | #define DRIVER_AUTHOR "Joerg Heckenbach <joerg@heckenbach-aw.de>,\ |
| 81 | Dwaine Garden <DwaineGarden@rogers.com>" |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 82 | #define DRIVER_NAME "usbvision" |
| 83 | #define DRIVER_ALIAS "USBVision" |
| 84 | #define DRIVER_DESC "USBVision USB Video Device Driver for Linux" |
| 85 | #define DRIVER_LICENSE "GPL" |
| 86 | #define USBVISION_DRIVER_VERSION_MAJOR 0 |
| 87 | #define USBVISION_DRIVER_VERSION_MINOR 9 |
| 88 | #define USBVISION_DRIVER_VERSION_PATCHLEVEL 9 |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 89 | #define USBVISION_DRIVER_VERSION KERNEL_VERSION(USBVISION_DRIVER_VERSION_MAJOR,\ |
| 90 | USBVISION_DRIVER_VERSION_MINOR,\ |
| 91 | USBVISION_DRIVER_VERSION_PATCHLEVEL) |
| 92 | #define USBVISION_VERSION_STRING __stringify(USBVISION_DRIVER_VERSION_MAJOR)\ |
| 93 | "." __stringify(USBVISION_DRIVER_VERSION_MINOR)\ |
| 94 | "." __stringify(USBVISION_DRIVER_VERSION_PATCHLEVEL) |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 95 | |
| 96 | #define ENABLE_HEXDUMP 0 /* Enable if you need it */ |
| 97 | |
| 98 | |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 99 | #ifdef USBVISION_DEBUG |
Thierry MERLE | df18c31 | 2008-04-04 21:00:57 -0300 | [diff] [blame] | 100 | #define PDEBUG(level, fmt, args...) { \ |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 101 | if (video_debug & (level)) \ |
Thierry MERLE | df18c31 | 2008-04-04 21:00:57 -0300 | [diff] [blame] | 102 | info("[%s:%d] " fmt, __func__, __LINE__ , ## args); \ |
| 103 | } |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 104 | #else |
| 105 | #define PDEBUG(level, fmt, args...) do {} while(0) |
| 106 | #endif |
| 107 | |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 108 | #define DBG_IO 1<<1 |
| 109 | #define DBG_PROBE 1<<2 |
Thierry MERLE | c876a34 | 2006-12-09 16:42:54 -0300 | [diff] [blame] | 110 | #define DBG_MMAP 1<<3 |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 111 | |
| 112 | //String operations |
| 113 | #define rmspace(str) while(*str==' ') str++; |
| 114 | #define goto2next(str) while(*str!=' ') str++; while(*str==' ') str++; |
| 115 | |
| 116 | |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 117 | /* sequential number of usbvision device */ |
Douglas Schilling Landgraf | ff699e6 | 2008-04-22 14:41:48 -0300 | [diff] [blame] | 118 | static int usbvision_nr; |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 119 | |
| 120 | static struct usbvision_v4l2_format_st usbvision_v4l2_format[] = { |
| 121 | { 1, 1, 8, V4L2_PIX_FMT_GREY , "GREY" }, |
| 122 | { 1, 2, 16, V4L2_PIX_FMT_RGB565 , "RGB565" }, |
| 123 | { 1, 3, 24, V4L2_PIX_FMT_RGB24 , "RGB24" }, |
| 124 | { 1, 4, 32, V4L2_PIX_FMT_RGB32 , "RGB32" }, |
| 125 | { 1, 2, 16, V4L2_PIX_FMT_RGB555 , "RGB555" }, |
| 126 | { 1, 2, 16, V4L2_PIX_FMT_YUYV , "YUV422" }, |
| 127 | { 1, 2, 12, V4L2_PIX_FMT_YVU420 , "YUV420P" }, // 1.5 ! |
| 128 | { 1, 2, 16, V4L2_PIX_FMT_YUV422P , "YUV422P" } |
| 129 | }; |
| 130 | |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 131 | /* Function prototypes */ |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 132 | static void usbvision_release(struct usb_usbvision *usbvision); |
| 133 | |
Joe Perches | c84e603 | 2008-02-03 17:18:59 +0200 | [diff] [blame] | 134 | /* Default initialization of device driver parameters */ |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 135 | /* Set the default format for ISOC endpoint */ |
| 136 | static int isocMode = ISOC_MODE_COMPRESS; |
| 137 | /* Set the default Debug Mode of the device driver */ |
Douglas Schilling Landgraf | ff699e6 | 2008-04-22 14:41:48 -0300 | [diff] [blame] | 138 | static int video_debug; |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 139 | /* Set the default device to power on at startup */ |
| 140 | static int PowerOnAtOpen = 1; |
| 141 | /* Sequential Number of Video Device */ |
| 142 | static int video_nr = -1; |
| 143 | /* Sequential Number of Radio Device */ |
| 144 | static int radio_nr = -1; |
| 145 | /* Sequential Number of VBI Device */ |
| 146 | static int vbi_nr = -1; |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 147 | |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 148 | /* Grab parameters for the device driver */ |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 149 | |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 150 | /* Showing parameters under SYSFS */ |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 151 | module_param(isocMode, int, 0444); |
| 152 | module_param(video_debug, int, 0444); |
| 153 | module_param(PowerOnAtOpen, int, 0444); |
| 154 | module_param(video_nr, int, 0444); |
| 155 | module_param(radio_nr, int, 0444); |
| 156 | module_param(vbi_nr, int, 0444); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 157 | |
| 158 | MODULE_PARM_DESC(isocMode, " Set the default format for ISOC endpoint. Default: 0x60 (Compression On)"); |
| 159 | MODULE_PARM_DESC(video_debug, " Set the default Debug Mode of the device driver. Default: 0 (Off)"); |
| 160 | MODULE_PARM_DESC(PowerOnAtOpen, " Set the default device to power on when device is opened. Default: 1 (On)"); |
| 161 | MODULE_PARM_DESC(video_nr, "Set video device number (/dev/videoX). Default: -1 (autodetect)"); |
| 162 | MODULE_PARM_DESC(radio_nr, "Set radio device number (/dev/radioX). Default: -1 (autodetect)"); |
| 163 | MODULE_PARM_DESC(vbi_nr, "Set vbi device number (/dev/vbiX). Default: -1 (autodetect)"); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 164 | |
| 165 | |
| 166 | // Misc stuff |
| 167 | MODULE_AUTHOR(DRIVER_AUTHOR); |
| 168 | MODULE_DESCRIPTION(DRIVER_DESC); |
| 169 | MODULE_LICENSE(DRIVER_LICENSE); |
Mauro Carvalho Chehab | a1ed551 | 2006-12-09 11:41:59 -0300 | [diff] [blame] | 170 | MODULE_VERSION(USBVISION_VERSION_STRING); |
| 171 | MODULE_ALIAS(DRIVER_ALIAS); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 172 | |
| 173 | |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 174 | /*****************************************************************************/ |
| 175 | /* SYSFS Code - Copied from the stv680.c usb module. */ |
| 176 | /* Device information is located at /sys/class/video4linux/video0 */ |
| 177 | /* Device parameters information is located at /sys/module/usbvision */ |
| 178 | /* Device USB Information is located at */ |
| 179 | /* /sys/bus/usb/drivers/USBVision Video Grabber */ |
| 180 | /*****************************************************************************/ |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 181 | |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 182 | #define YES_NO(x) ((x) ? "Yes" : "No") |
| 183 | |
Kay Sievers | 54bd5b6 | 2007-10-08 16:26:13 -0300 | [diff] [blame] | 184 | static inline struct usb_usbvision *cd_to_usbvision(struct device *cd) |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 185 | { |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 186 | struct video_device *vdev = |
Hans Verkuil | 22a04f1 | 2008-07-20 06:35:02 -0300 | [diff] [blame] | 187 | container_of(cd, struct video_device, dev); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 188 | return video_get_drvdata(vdev); |
| 189 | } |
| 190 | |
Kay Sievers | 54bd5b6 | 2007-10-08 16:26:13 -0300 | [diff] [blame] | 191 | static ssize_t show_version(struct device *cd, |
| 192 | struct device_attribute *attr, char *buf) |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 193 | { |
| 194 | return sprintf(buf, "%s\n", USBVISION_VERSION_STRING); |
| 195 | } |
Kay Sievers | 54bd5b6 | 2007-10-08 16:26:13 -0300 | [diff] [blame] | 196 | static DEVICE_ATTR(version, S_IRUGO, show_version, NULL); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 197 | |
Kay Sievers | 54bd5b6 | 2007-10-08 16:26:13 -0300 | [diff] [blame] | 198 | static ssize_t show_model(struct device *cd, |
| 199 | struct device_attribute *attr, char *buf) |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 200 | { |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 201 | struct video_device *vdev = |
Hans Verkuil | 22a04f1 | 2008-07-20 06:35:02 -0300 | [diff] [blame] | 202 | container_of(cd, struct video_device, dev); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 203 | struct usb_usbvision *usbvision = video_get_drvdata(vdev); |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 204 | return sprintf(buf, "%s\n", |
| 205 | usbvision_device_data[usbvision->DevModel].ModelString); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 206 | } |
Kay Sievers | 54bd5b6 | 2007-10-08 16:26:13 -0300 | [diff] [blame] | 207 | static DEVICE_ATTR(model, S_IRUGO, show_model, NULL); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 208 | |
Kay Sievers | 54bd5b6 | 2007-10-08 16:26:13 -0300 | [diff] [blame] | 209 | static ssize_t show_hue(struct device *cd, |
| 210 | struct device_attribute *attr, char *buf) |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 211 | { |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 212 | struct video_device *vdev = |
Hans Verkuil | 22a04f1 | 2008-07-20 06:35:02 -0300 | [diff] [blame] | 213 | container_of(cd, struct video_device, dev); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 214 | struct usb_usbvision *usbvision = video_get_drvdata(vdev); |
| 215 | struct v4l2_control ctrl; |
| 216 | ctrl.id = V4L2_CID_HUE; |
| 217 | ctrl.value = 0; |
Dwaine Garden | ed00b41 | 2006-12-27 10:23:28 -0200 | [diff] [blame] | 218 | if(usbvision->user) |
| 219 | call_i2c_clients(usbvision, VIDIOC_G_CTRL, &ctrl); |
Thierry MERLE | 2a9f8b5 | 2007-02-07 10:14:38 -0300 | [diff] [blame] | 220 | return sprintf(buf, "%d\n", ctrl.value); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 221 | } |
Kay Sievers | 54bd5b6 | 2007-10-08 16:26:13 -0300 | [diff] [blame] | 222 | static DEVICE_ATTR(hue, S_IRUGO, show_hue, NULL); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 223 | |
Kay Sievers | 54bd5b6 | 2007-10-08 16:26:13 -0300 | [diff] [blame] | 224 | static ssize_t show_contrast(struct device *cd, |
| 225 | struct device_attribute *attr, char *buf) |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 226 | { |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 227 | struct video_device *vdev = |
Hans Verkuil | 22a04f1 | 2008-07-20 06:35:02 -0300 | [diff] [blame] | 228 | container_of(cd, struct video_device, dev); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 229 | struct usb_usbvision *usbvision = video_get_drvdata(vdev); |
| 230 | struct v4l2_control ctrl; |
| 231 | ctrl.id = V4L2_CID_CONTRAST; |
| 232 | ctrl.value = 0; |
Dwaine Garden | ed00b41 | 2006-12-27 10:23:28 -0200 | [diff] [blame] | 233 | if(usbvision->user) |
| 234 | call_i2c_clients(usbvision, VIDIOC_G_CTRL, &ctrl); |
Thierry MERLE | 2a9f8b5 | 2007-02-07 10:14:38 -0300 | [diff] [blame] | 235 | return sprintf(buf, "%d\n", ctrl.value); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 236 | } |
Kay Sievers | 54bd5b6 | 2007-10-08 16:26:13 -0300 | [diff] [blame] | 237 | static DEVICE_ATTR(contrast, S_IRUGO, show_contrast, NULL); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 238 | |
Kay Sievers | 54bd5b6 | 2007-10-08 16:26:13 -0300 | [diff] [blame] | 239 | static ssize_t show_brightness(struct device *cd, |
| 240 | struct device_attribute *attr, char *buf) |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 241 | { |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 242 | struct video_device *vdev = |
Hans Verkuil | 22a04f1 | 2008-07-20 06:35:02 -0300 | [diff] [blame] | 243 | container_of(cd, struct video_device, dev); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 244 | struct usb_usbvision *usbvision = video_get_drvdata(vdev); |
| 245 | struct v4l2_control ctrl; |
| 246 | ctrl.id = V4L2_CID_BRIGHTNESS; |
| 247 | ctrl.value = 0; |
Dwaine Garden | ed00b41 | 2006-12-27 10:23:28 -0200 | [diff] [blame] | 248 | if(usbvision->user) |
| 249 | call_i2c_clients(usbvision, VIDIOC_G_CTRL, &ctrl); |
Thierry MERLE | 2a9f8b5 | 2007-02-07 10:14:38 -0300 | [diff] [blame] | 250 | return sprintf(buf, "%d\n", ctrl.value); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 251 | } |
Kay Sievers | 54bd5b6 | 2007-10-08 16:26:13 -0300 | [diff] [blame] | 252 | static DEVICE_ATTR(brightness, S_IRUGO, show_brightness, NULL); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 253 | |
Kay Sievers | 54bd5b6 | 2007-10-08 16:26:13 -0300 | [diff] [blame] | 254 | static ssize_t show_saturation(struct device *cd, |
| 255 | struct device_attribute *attr, char *buf) |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 256 | { |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 257 | struct video_device *vdev = |
Hans Verkuil | 22a04f1 | 2008-07-20 06:35:02 -0300 | [diff] [blame] | 258 | container_of(cd, struct video_device, dev); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 259 | struct usb_usbvision *usbvision = video_get_drvdata(vdev); |
| 260 | struct v4l2_control ctrl; |
| 261 | ctrl.id = V4L2_CID_SATURATION; |
| 262 | ctrl.value = 0; |
Dwaine Garden | ed00b41 | 2006-12-27 10:23:28 -0200 | [diff] [blame] | 263 | if(usbvision->user) |
| 264 | call_i2c_clients(usbvision, VIDIOC_G_CTRL, &ctrl); |
Thierry MERLE | 2a9f8b5 | 2007-02-07 10:14:38 -0300 | [diff] [blame] | 265 | return sprintf(buf, "%d\n", ctrl.value); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 266 | } |
Kay Sievers | 54bd5b6 | 2007-10-08 16:26:13 -0300 | [diff] [blame] | 267 | static DEVICE_ATTR(saturation, S_IRUGO, show_saturation, NULL); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 268 | |
Kay Sievers | 54bd5b6 | 2007-10-08 16:26:13 -0300 | [diff] [blame] | 269 | static ssize_t show_streaming(struct device *cd, |
| 270 | struct device_attribute *attr, char *buf) |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 271 | { |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 272 | struct video_device *vdev = |
Hans Verkuil | 22a04f1 | 2008-07-20 06:35:02 -0300 | [diff] [blame] | 273 | container_of(cd, struct video_device, dev); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 274 | struct usb_usbvision *usbvision = video_get_drvdata(vdev); |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 275 | return sprintf(buf, "%s\n", |
| 276 | YES_NO(usbvision->streaming==Stream_On?1:0)); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 277 | } |
Kay Sievers | 54bd5b6 | 2007-10-08 16:26:13 -0300 | [diff] [blame] | 278 | static DEVICE_ATTR(streaming, S_IRUGO, show_streaming, NULL); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 279 | |
Kay Sievers | 54bd5b6 | 2007-10-08 16:26:13 -0300 | [diff] [blame] | 280 | static ssize_t show_compression(struct device *cd, |
| 281 | struct device_attribute *attr, char *buf) |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 282 | { |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 283 | struct video_device *vdev = |
Hans Verkuil | 22a04f1 | 2008-07-20 06:35:02 -0300 | [diff] [blame] | 284 | container_of(cd, struct video_device, dev); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 285 | struct usb_usbvision *usbvision = video_get_drvdata(vdev); |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 286 | return sprintf(buf, "%s\n", |
| 287 | YES_NO(usbvision->isocMode==ISOC_MODE_COMPRESS)); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 288 | } |
Kay Sievers | 54bd5b6 | 2007-10-08 16:26:13 -0300 | [diff] [blame] | 289 | static DEVICE_ATTR(compression, S_IRUGO, show_compression, NULL); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 290 | |
Kay Sievers | 54bd5b6 | 2007-10-08 16:26:13 -0300 | [diff] [blame] | 291 | static ssize_t show_device_bridge(struct device *cd, |
| 292 | struct device_attribute *attr, char *buf) |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 293 | { |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 294 | struct video_device *vdev = |
Hans Verkuil | 22a04f1 | 2008-07-20 06:35:02 -0300 | [diff] [blame] | 295 | container_of(cd, struct video_device, dev); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 296 | struct usb_usbvision *usbvision = video_get_drvdata(vdev); |
| 297 | return sprintf(buf, "%d\n", usbvision->bridgeType); |
| 298 | } |
Kay Sievers | 54bd5b6 | 2007-10-08 16:26:13 -0300 | [diff] [blame] | 299 | static DEVICE_ATTR(bridge, S_IRUGO, show_device_bridge, NULL); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 300 | |
| 301 | static void usbvision_create_sysfs(struct video_device *vdev) |
| 302 | { |
| 303 | int res; |
Dwaine Garden | ed00b41 | 2006-12-27 10:23:28 -0200 | [diff] [blame] | 304 | if (!vdev) |
| 305 | return; |
| 306 | do { |
Hans Verkuil | 22a04f1 | 2008-07-20 06:35:02 -0300 | [diff] [blame] | 307 | res = device_create_file(&vdev->dev, &dev_attr_version); |
Dwaine Garden | ed00b41 | 2006-12-27 10:23:28 -0200 | [diff] [blame] | 308 | if (res<0) |
| 309 | break; |
Hans Verkuil | 22a04f1 | 2008-07-20 06:35:02 -0300 | [diff] [blame] | 310 | res = device_create_file(&vdev->dev, &dev_attr_model); |
Dwaine Garden | ed00b41 | 2006-12-27 10:23:28 -0200 | [diff] [blame] | 311 | if (res<0) |
| 312 | break; |
Hans Verkuil | 22a04f1 | 2008-07-20 06:35:02 -0300 | [diff] [blame] | 313 | res = device_create_file(&vdev->dev, &dev_attr_hue); |
Dwaine Garden | ed00b41 | 2006-12-27 10:23:28 -0200 | [diff] [blame] | 314 | if (res<0) |
| 315 | break; |
Hans Verkuil | 22a04f1 | 2008-07-20 06:35:02 -0300 | [diff] [blame] | 316 | res = device_create_file(&vdev->dev, &dev_attr_contrast); |
Dwaine Garden | ed00b41 | 2006-12-27 10:23:28 -0200 | [diff] [blame] | 317 | if (res<0) |
| 318 | break; |
Hans Verkuil | 22a04f1 | 2008-07-20 06:35:02 -0300 | [diff] [blame] | 319 | res = device_create_file(&vdev->dev, &dev_attr_brightness); |
Dwaine Garden | ed00b41 | 2006-12-27 10:23:28 -0200 | [diff] [blame] | 320 | if (res<0) |
| 321 | break; |
Hans Verkuil | 22a04f1 | 2008-07-20 06:35:02 -0300 | [diff] [blame] | 322 | res = device_create_file(&vdev->dev, &dev_attr_saturation); |
Dwaine Garden | ed00b41 | 2006-12-27 10:23:28 -0200 | [diff] [blame] | 323 | if (res<0) |
| 324 | break; |
Hans Verkuil | 22a04f1 | 2008-07-20 06:35:02 -0300 | [diff] [blame] | 325 | res = device_create_file(&vdev->dev, &dev_attr_streaming); |
Dwaine Garden | ed00b41 | 2006-12-27 10:23:28 -0200 | [diff] [blame] | 326 | if (res<0) |
| 327 | break; |
Hans Verkuil | 22a04f1 | 2008-07-20 06:35:02 -0300 | [diff] [blame] | 328 | res = device_create_file(&vdev->dev, &dev_attr_compression); |
Dwaine Garden | ed00b41 | 2006-12-27 10:23:28 -0200 | [diff] [blame] | 329 | if (res<0) |
| 330 | break; |
Hans Verkuil | 22a04f1 | 2008-07-20 06:35:02 -0300 | [diff] [blame] | 331 | res = device_create_file(&vdev->dev, &dev_attr_bridge); |
Dwaine Garden | ed00b41 | 2006-12-27 10:23:28 -0200 | [diff] [blame] | 332 | if (res>=0) |
| 333 | return; |
| 334 | } while (0); |
| 335 | |
Harvey Harrison | d2db42d | 2008-04-04 20:50:07 -0300 | [diff] [blame] | 336 | err("%s error: %d\n", __func__, res); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 337 | } |
| 338 | |
| 339 | static void usbvision_remove_sysfs(struct video_device *vdev) |
| 340 | { |
| 341 | if (vdev) { |
Hans Verkuil | 22a04f1 | 2008-07-20 06:35:02 -0300 | [diff] [blame] | 342 | device_remove_file(&vdev->dev, &dev_attr_version); |
| 343 | device_remove_file(&vdev->dev, &dev_attr_model); |
| 344 | device_remove_file(&vdev->dev, &dev_attr_hue); |
| 345 | device_remove_file(&vdev->dev, &dev_attr_contrast); |
| 346 | device_remove_file(&vdev->dev, &dev_attr_brightness); |
| 347 | device_remove_file(&vdev->dev, &dev_attr_saturation); |
| 348 | device_remove_file(&vdev->dev, &dev_attr_streaming); |
| 349 | device_remove_file(&vdev->dev, &dev_attr_compression); |
| 350 | device_remove_file(&vdev->dev, &dev_attr_bridge); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 351 | } |
| 352 | } |
| 353 | |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 354 | /* |
| 355 | * usbvision_open() |
| 356 | * |
| 357 | * This is part of Video 4 Linux API. The driver can be opened by one |
| 358 | * client only (checks internal counter 'usbvision->user'). The procedure |
| 359 | * then allocates buffers needed for video processing. |
| 360 | * |
| 361 | */ |
| 362 | static int usbvision_v4l2_open(struct inode *inode, struct file *file) |
| 363 | { |
| 364 | struct video_device *dev = video_devdata(file); |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 365 | struct usb_usbvision *usbvision = |
| 366 | (struct usb_usbvision *) video_get_drvdata(dev); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 367 | int errCode = 0; |
| 368 | |
| 369 | PDEBUG(DBG_IO, "open"); |
| 370 | |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 371 | usbvision_reset_powerOffTimer(usbvision); |
| 372 | |
| 373 | if (usbvision->user) |
| 374 | errCode = -EBUSY; |
| 375 | else { |
Thierry MERLE | 6f78e18 | 2007-02-07 10:13:11 -0300 | [diff] [blame] | 376 | /* Allocate memory for the scratch ring buffer */ |
| 377 | errCode = usbvision_scratch_alloc(usbvision); |
| 378 | if (isocMode==ISOC_MODE_COMPRESS) { |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 379 | /* Allocate intermediate decompression buffers |
| 380 | only if needed */ |
Thierry MERLE | 6f78e18 | 2007-02-07 10:13:11 -0300 | [diff] [blame] | 381 | errCode = usbvision_decompress_alloc(usbvision); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 382 | } |
| 383 | if (errCode) { |
| 384 | /* Deallocate all buffers if trouble */ |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 385 | usbvision_scratch_free(usbvision); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 386 | usbvision_decompress_free(usbvision); |
| 387 | } |
| 388 | } |
| 389 | |
| 390 | /* If so far no errors then we shall start the camera */ |
| 391 | if (!errCode) { |
Matthias Kaehlcke | 289d4d2 | 2007-10-24 17:31:15 -0300 | [diff] [blame] | 392 | mutex_lock(&usbvision->lock); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 393 | if (usbvision->power == 0) { |
| 394 | usbvision_power_on(usbvision); |
Thierry MERLE | 1ff16c2 | 2007-04-14 16:23:49 -0300 | [diff] [blame] | 395 | usbvision_i2c_register(usbvision); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 396 | } |
| 397 | |
| 398 | /* Send init sequence only once, it's large! */ |
| 399 | if (!usbvision->initialized) { |
| 400 | int setup_ok = 0; |
| 401 | setup_ok = usbvision_setup(usbvision,isocMode); |
| 402 | if (setup_ok) |
| 403 | usbvision->initialized = 1; |
| 404 | else |
| 405 | errCode = -EBUSY; |
| 406 | } |
| 407 | |
| 408 | if (!errCode) { |
| 409 | usbvision_begin_streaming(usbvision); |
| 410 | errCode = usbvision_init_isoc(usbvision); |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 411 | /* device must be initialized before isoc transfer */ |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 412 | usbvision_muxsel(usbvision,0); |
| 413 | usbvision->user++; |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 414 | } else { |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 415 | if (PowerOnAtOpen) { |
Thierry MERLE | 1ff16c2 | 2007-04-14 16:23:49 -0300 | [diff] [blame] | 416 | usbvision_i2c_unregister(usbvision); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 417 | usbvision_power_off(usbvision); |
| 418 | usbvision->initialized = 0; |
| 419 | } |
| 420 | } |
Matthias Kaehlcke | 289d4d2 | 2007-10-24 17:31:15 -0300 | [diff] [blame] | 421 | mutex_unlock(&usbvision->lock); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 422 | } |
| 423 | |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 424 | /* prepare queues */ |
| 425 | usbvision_empty_framequeues(usbvision); |
| 426 | |
| 427 | PDEBUG(DBG_IO, "success"); |
| 428 | return errCode; |
| 429 | } |
| 430 | |
| 431 | /* |
| 432 | * usbvision_v4l2_close() |
| 433 | * |
| 434 | * This is part of Video 4 Linux API. The procedure |
| 435 | * stops streaming and deallocates all buffers that were earlier |
| 436 | * allocated in usbvision_v4l2_open(). |
| 437 | * |
| 438 | */ |
| 439 | static int usbvision_v4l2_close(struct inode *inode, struct file *file) |
| 440 | { |
| 441 | struct video_device *dev = video_devdata(file); |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 442 | struct usb_usbvision *usbvision = |
| 443 | (struct usb_usbvision *) video_get_drvdata(dev); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 444 | |
| 445 | PDEBUG(DBG_IO, "close"); |
Matthias Kaehlcke | 289d4d2 | 2007-10-24 17:31:15 -0300 | [diff] [blame] | 446 | mutex_lock(&usbvision->lock); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 447 | |
| 448 | usbvision_audio_off(usbvision); |
| 449 | usbvision_restart_isoc(usbvision); |
| 450 | usbvision_stop_isoc(usbvision); |
| 451 | |
| 452 | usbvision_decompress_free(usbvision); |
Thierry MERLE | 38284ba | 2006-12-15 16:46:53 -0300 | [diff] [blame] | 453 | usbvision_frames_free(usbvision); |
Thierry MERLE | 6f78e18 | 2007-02-07 10:13:11 -0300 | [diff] [blame] | 454 | usbvision_empty_framequeues(usbvision); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 455 | usbvision_scratch_free(usbvision); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 456 | |
| 457 | usbvision->user--; |
| 458 | |
| 459 | if (PowerOnAtOpen) { |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 460 | /* power off in a little while |
| 461 | to avoid off/on every close/open short sequences */ |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 462 | usbvision_set_powerOffTimer(usbvision); |
| 463 | usbvision->initialized = 0; |
| 464 | } |
| 465 | |
Matthias Kaehlcke | 289d4d2 | 2007-10-24 17:31:15 -0300 | [diff] [blame] | 466 | mutex_unlock(&usbvision->lock); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 467 | |
| 468 | if (usbvision->remove_pending) { |
Harvey Harrison | d2db42d | 2008-04-04 20:50:07 -0300 | [diff] [blame] | 469 | printk(KERN_INFO "%s: Final disconnect\n", __func__); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 470 | usbvision_release(usbvision); |
| 471 | } |
| 472 | |
| 473 | PDEBUG(DBG_IO, "success"); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 474 | return 0; |
| 475 | } |
| 476 | |
| 477 | |
| 478 | /* |
| 479 | * usbvision_ioctl() |
| 480 | * |
| 481 | * This is part of Video 4 Linux API. The procedure handles ioctl() calls. |
| 482 | * |
| 483 | */ |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 484 | #ifdef CONFIG_VIDEO_ADV_DEBUG |
| 485 | static int vidioc_g_register (struct file *file, void *priv, |
| 486 | struct v4l2_register *reg) |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 487 | { |
| 488 | struct video_device *dev = video_devdata(file); |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 489 | struct usb_usbvision *usbvision = |
| 490 | (struct usb_usbvision *) video_get_drvdata(dev); |
| 491 | int errCode; |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 492 | |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 493 | if (!v4l2_chip_match_host(reg->match_type, reg->match_chip)) |
| 494 | return -EINVAL; |
| 495 | /* NT100x has a 8-bit register space */ |
| 496 | errCode = usbvision_read_reg(usbvision, reg->reg&0xff); |
| 497 | if (errCode < 0) { |
| 498 | err("%s: VIDIOC_DBG_G_REGISTER failed: error %d", |
Harvey Harrison | d2db42d | 2008-04-04 20:50:07 -0300 | [diff] [blame] | 499 | __func__, errCode); |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 500 | return errCode; |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 501 | } |
Trent Piepho | bc14713 | 2007-07-23 06:58:31 -0300 | [diff] [blame] | 502 | reg->val = errCode; |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 503 | return 0; |
| 504 | } |
| 505 | |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 506 | static int vidioc_s_register (struct file *file, void *priv, |
| 507 | struct v4l2_register *reg) |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 508 | { |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 509 | struct video_device *dev = video_devdata(file); |
| 510 | struct usb_usbvision *usbvision = |
| 511 | (struct usb_usbvision *) video_get_drvdata(dev); |
| 512 | int errCode; |
| 513 | |
| 514 | if (!v4l2_chip_match_host(reg->match_type, reg->match_chip)) |
| 515 | return -EINVAL; |
| 516 | /* NT100x has a 8-bit register space */ |
Trent Piepho | bc14713 | 2007-07-23 06:58:31 -0300 | [diff] [blame] | 517 | errCode = usbvision_write_reg(usbvision, reg->reg&0xff, reg->val); |
| 518 | if (errCode < 0) { |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 519 | err("%s: VIDIOC_DBG_S_REGISTER failed: error %d", |
Harvey Harrison | d2db42d | 2008-04-04 20:50:07 -0300 | [diff] [blame] | 520 | __func__, errCode); |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 521 | return errCode; |
| 522 | } |
| 523 | return 0; |
| 524 | } |
| 525 | #endif |
| 526 | |
| 527 | static int vidioc_querycap (struct file *file, void *priv, |
| 528 | struct v4l2_capability *vc) |
| 529 | { |
| 530 | struct video_device *dev = video_devdata(file); |
| 531 | struct usb_usbvision *usbvision = |
| 532 | (struct usb_usbvision *) video_get_drvdata(dev); |
| 533 | |
| 534 | strlcpy(vc->driver, "USBVision", sizeof(vc->driver)); |
| 535 | strlcpy(vc->card, |
| 536 | usbvision_device_data[usbvision->DevModel].ModelString, |
| 537 | sizeof(vc->card)); |
| 538 | strlcpy(vc->bus_info, usbvision->dev->dev.bus_id, |
| 539 | sizeof(vc->bus_info)); |
| 540 | vc->version = USBVISION_DRIVER_VERSION; |
| 541 | vc->capabilities = V4L2_CAP_VIDEO_CAPTURE | |
| 542 | V4L2_CAP_AUDIO | |
| 543 | V4L2_CAP_READWRITE | |
| 544 | V4L2_CAP_STREAMING | |
| 545 | (usbvision->have_tuner ? V4L2_CAP_TUNER : 0); |
| 546 | return 0; |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 547 | } |
| 548 | |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 549 | static int vidioc_enum_input (struct file *file, void *priv, |
| 550 | struct v4l2_input *vi) |
| 551 | { |
| 552 | struct video_device *dev = video_devdata(file); |
| 553 | struct usb_usbvision *usbvision = |
| 554 | (struct usb_usbvision *) video_get_drvdata(dev); |
| 555 | int chan; |
| 556 | |
| 557 | if ((vi->index >= usbvision->video_inputs) || (vi->index < 0) ) |
| 558 | return -EINVAL; |
| 559 | if (usbvision->have_tuner) { |
| 560 | chan = vi->index; |
| 561 | } else { |
| 562 | chan = vi->index + 1; /*skip Television string*/ |
| 563 | } |
| 564 | /* Determine the requested input characteristics |
| 565 | specific for each usbvision card model */ |
| 566 | switch(chan) { |
| 567 | case 0: |
| 568 | if (usbvision_device_data[usbvision->DevModel].VideoChannels == 4) { |
| 569 | strcpy(vi->name, "White Video Input"); |
| 570 | } else { |
| 571 | strcpy(vi->name, "Television"); |
| 572 | vi->type = V4L2_INPUT_TYPE_TUNER; |
| 573 | vi->audioset = 1; |
| 574 | vi->tuner = chan; |
| 575 | vi->std = USBVISION_NORMS; |
| 576 | } |
| 577 | break; |
| 578 | case 1: |
| 579 | vi->type = V4L2_INPUT_TYPE_CAMERA; |
| 580 | if (usbvision_device_data[usbvision->DevModel].VideoChannels == 4) { |
| 581 | strcpy(vi->name, "Green Video Input"); |
| 582 | } else { |
| 583 | strcpy(vi->name, "Composite Video Input"); |
| 584 | } |
| 585 | vi->std = V4L2_STD_PAL; |
| 586 | break; |
| 587 | case 2: |
| 588 | vi->type = V4L2_INPUT_TYPE_CAMERA; |
| 589 | if (usbvision_device_data[usbvision->DevModel].VideoChannels == 4) { |
| 590 | strcpy(vi->name, "Yellow Video Input"); |
| 591 | } else { |
| 592 | strcpy(vi->name, "S-Video Input"); |
| 593 | } |
| 594 | vi->std = V4L2_STD_PAL; |
| 595 | break; |
| 596 | case 3: |
| 597 | vi->type = V4L2_INPUT_TYPE_CAMERA; |
| 598 | strcpy(vi->name, "Red Video Input"); |
| 599 | vi->std = V4L2_STD_PAL; |
| 600 | break; |
| 601 | } |
| 602 | return 0; |
| 603 | } |
| 604 | |
| 605 | static int vidioc_g_input (struct file *file, void *priv, unsigned int *input) |
| 606 | { |
| 607 | struct video_device *dev = video_devdata(file); |
| 608 | struct usb_usbvision *usbvision = |
| 609 | (struct usb_usbvision *) video_get_drvdata(dev); |
| 610 | |
| 611 | *input = usbvision->ctl_input; |
| 612 | return 0; |
| 613 | } |
| 614 | |
| 615 | static int vidioc_s_input (struct file *file, void *priv, unsigned int input) |
| 616 | { |
| 617 | struct video_device *dev = video_devdata(file); |
| 618 | struct usb_usbvision *usbvision = |
| 619 | (struct usb_usbvision *) video_get_drvdata(dev); |
| 620 | |
| 621 | if ((input >= usbvision->video_inputs) || (input < 0) ) |
| 622 | return -EINVAL; |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 623 | |
Matthias Kaehlcke | 289d4d2 | 2007-10-24 17:31:15 -0300 | [diff] [blame] | 624 | mutex_lock(&usbvision->lock); |
Thierry MERLE | 66a1787 | 2007-06-26 16:35:30 -0300 | [diff] [blame] | 625 | usbvision_muxsel(usbvision, input); |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 626 | usbvision_set_input(usbvision); |
| 627 | usbvision_set_output(usbvision, |
| 628 | usbvision->curwidth, |
| 629 | usbvision->curheight); |
Matthias Kaehlcke | 289d4d2 | 2007-10-24 17:31:15 -0300 | [diff] [blame] | 630 | mutex_unlock(&usbvision->lock); |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 631 | return 0; |
| 632 | } |
| 633 | |
| 634 | static int vidioc_s_std (struct file *file, void *priv, v4l2_std_id *id) |
| 635 | { |
| 636 | struct video_device *dev = video_devdata(file); |
| 637 | struct usb_usbvision *usbvision = |
| 638 | (struct usb_usbvision *) video_get_drvdata(dev); |
| 639 | usbvision->tvnormId=*id; |
| 640 | |
Matthias Kaehlcke | 289d4d2 | 2007-10-24 17:31:15 -0300 | [diff] [blame] | 641 | mutex_lock(&usbvision->lock); |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 642 | call_i2c_clients(usbvision, VIDIOC_S_STD, |
| 643 | &usbvision->tvnormId); |
Matthias Kaehlcke | 289d4d2 | 2007-10-24 17:31:15 -0300 | [diff] [blame] | 644 | mutex_unlock(&usbvision->lock); |
Thierry MERLE | 66a1787 | 2007-06-26 16:35:30 -0300 | [diff] [blame] | 645 | /* propagate the change to the decoder */ |
| 646 | usbvision_muxsel(usbvision, usbvision->ctl_input); |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 647 | |
| 648 | return 0; |
| 649 | } |
| 650 | |
| 651 | static int vidioc_g_tuner (struct file *file, void *priv, |
| 652 | struct v4l2_tuner *vt) |
| 653 | { |
| 654 | struct video_device *dev = video_devdata(file); |
| 655 | struct usb_usbvision *usbvision = |
| 656 | (struct usb_usbvision *) video_get_drvdata(dev); |
| 657 | |
| 658 | if (!usbvision->have_tuner || vt->index) // Only tuner 0 |
| 659 | return -EINVAL; |
| 660 | if(usbvision->radio) { |
| 661 | strcpy(vt->name, "Radio"); |
| 662 | vt->type = V4L2_TUNER_RADIO; |
| 663 | } else { |
| 664 | strcpy(vt->name, "Television"); |
| 665 | } |
| 666 | /* Let clients fill in the remainder of this struct */ |
| 667 | call_i2c_clients(usbvision,VIDIOC_G_TUNER,vt); |
| 668 | |
| 669 | return 0; |
| 670 | } |
| 671 | |
| 672 | static int vidioc_s_tuner (struct file *file, void *priv, |
| 673 | struct v4l2_tuner *vt) |
| 674 | { |
| 675 | struct video_device *dev = video_devdata(file); |
| 676 | struct usb_usbvision *usbvision = |
| 677 | (struct usb_usbvision *) video_get_drvdata(dev); |
| 678 | |
| 679 | // Only no or one tuner for now |
| 680 | if (!usbvision->have_tuner || vt->index) |
| 681 | return -EINVAL; |
| 682 | /* let clients handle this */ |
| 683 | call_i2c_clients(usbvision,VIDIOC_S_TUNER,vt); |
| 684 | |
| 685 | return 0; |
| 686 | } |
| 687 | |
| 688 | static int vidioc_g_frequency (struct file *file, void *priv, |
| 689 | struct v4l2_frequency *freq) |
| 690 | { |
| 691 | struct video_device *dev = video_devdata(file); |
| 692 | struct usb_usbvision *usbvision = |
| 693 | (struct usb_usbvision *) video_get_drvdata(dev); |
| 694 | |
| 695 | freq->tuner = 0; // Only one tuner |
| 696 | if(usbvision->radio) { |
| 697 | freq->type = V4L2_TUNER_RADIO; |
| 698 | } else { |
| 699 | freq->type = V4L2_TUNER_ANALOG_TV; |
| 700 | } |
| 701 | freq->frequency = usbvision->freq; |
| 702 | |
| 703 | return 0; |
| 704 | } |
| 705 | |
| 706 | static int vidioc_s_frequency (struct file *file, void *priv, |
| 707 | struct v4l2_frequency *freq) |
| 708 | { |
| 709 | struct video_device *dev = video_devdata(file); |
| 710 | struct usb_usbvision *usbvision = |
| 711 | (struct usb_usbvision *) video_get_drvdata(dev); |
| 712 | |
| 713 | // Only no or one tuner for now |
| 714 | if (!usbvision->have_tuner || freq->tuner) |
| 715 | return -EINVAL; |
| 716 | |
| 717 | usbvision->freq = freq->frequency; |
| 718 | call_i2c_clients(usbvision, VIDIOC_S_FREQUENCY, freq); |
| 719 | |
| 720 | return 0; |
| 721 | } |
| 722 | |
| 723 | static int vidioc_g_audio (struct file *file, void *priv, struct v4l2_audio *a) |
| 724 | { |
| 725 | struct video_device *dev = video_devdata(file); |
| 726 | struct usb_usbvision *usbvision = |
| 727 | (struct usb_usbvision *) video_get_drvdata(dev); |
| 728 | |
| 729 | memset(a,0,sizeof(*a)); |
| 730 | if(usbvision->radio) { |
| 731 | strcpy(a->name,"Radio"); |
| 732 | } else { |
| 733 | strcpy(a->name, "TV"); |
| 734 | } |
| 735 | |
| 736 | return 0; |
| 737 | } |
| 738 | |
| 739 | static int vidioc_s_audio (struct file *file, void *fh, |
| 740 | struct v4l2_audio *a) |
| 741 | { |
| 742 | if(a->index) { |
| 743 | return -EINVAL; |
| 744 | } |
| 745 | |
| 746 | return 0; |
| 747 | } |
| 748 | |
| 749 | static int vidioc_queryctrl (struct file *file, void *priv, |
| 750 | struct v4l2_queryctrl *ctrl) |
| 751 | { |
| 752 | struct video_device *dev = video_devdata(file); |
| 753 | struct usb_usbvision *usbvision = |
| 754 | (struct usb_usbvision *) video_get_drvdata(dev); |
| 755 | int id=ctrl->id; |
| 756 | |
| 757 | memset(ctrl,0,sizeof(*ctrl)); |
| 758 | ctrl->id=id; |
| 759 | |
| 760 | call_i2c_clients(usbvision, VIDIOC_QUERYCTRL, ctrl); |
| 761 | |
| 762 | if (!ctrl->type) |
| 763 | return -EINVAL; |
| 764 | |
| 765 | return 0; |
| 766 | } |
| 767 | |
| 768 | static int vidioc_g_ctrl (struct file *file, void *priv, |
| 769 | struct v4l2_control *ctrl) |
| 770 | { |
| 771 | struct video_device *dev = video_devdata(file); |
| 772 | struct usb_usbvision *usbvision = |
| 773 | (struct usb_usbvision *) video_get_drvdata(dev); |
| 774 | call_i2c_clients(usbvision, VIDIOC_G_CTRL, ctrl); |
| 775 | |
| 776 | return 0; |
| 777 | } |
| 778 | |
| 779 | static int vidioc_s_ctrl (struct file *file, void *priv, |
| 780 | struct v4l2_control *ctrl) |
| 781 | { |
| 782 | struct video_device *dev = video_devdata(file); |
| 783 | struct usb_usbvision *usbvision = |
| 784 | (struct usb_usbvision *) video_get_drvdata(dev); |
| 785 | call_i2c_clients(usbvision, VIDIOC_S_CTRL, ctrl); |
| 786 | |
| 787 | return 0; |
| 788 | } |
| 789 | |
| 790 | static int vidioc_reqbufs (struct file *file, |
| 791 | void *priv, struct v4l2_requestbuffers *vr) |
| 792 | { |
| 793 | struct video_device *dev = video_devdata(file); |
| 794 | struct usb_usbvision *usbvision = |
| 795 | (struct usb_usbvision *) video_get_drvdata(dev); |
| 796 | int ret; |
| 797 | |
| 798 | RESTRICT_TO_RANGE(vr->count,1,USBVISION_NUMFRAMES); |
| 799 | |
| 800 | /* Check input validity: |
| 801 | the user must do a VIDEO CAPTURE and MMAP method. */ |
| 802 | if((vr->type != V4L2_BUF_TYPE_VIDEO_CAPTURE) || |
| 803 | (vr->memory != V4L2_MEMORY_MMAP)) |
| 804 | return -EINVAL; |
| 805 | |
| 806 | if(usbvision->streaming == Stream_On) { |
| 807 | if ((ret = usbvision_stream_interrupt(usbvision))) |
| 808 | return ret; |
| 809 | } |
| 810 | |
| 811 | usbvision_frames_free(usbvision); |
| 812 | usbvision_empty_framequeues(usbvision); |
| 813 | vr->count = usbvision_frames_alloc(usbvision,vr->count); |
| 814 | |
| 815 | usbvision->curFrame = NULL; |
| 816 | |
| 817 | return 0; |
| 818 | } |
| 819 | |
| 820 | static int vidioc_querybuf (struct file *file, |
| 821 | void *priv, struct v4l2_buffer *vb) |
| 822 | { |
| 823 | struct video_device *dev = video_devdata(file); |
| 824 | struct usb_usbvision *usbvision = |
| 825 | (struct usb_usbvision *) video_get_drvdata(dev); |
| 826 | struct usbvision_frame *frame; |
| 827 | |
| 828 | /* FIXME : must control |
| 829 | that buffers are mapped (VIDIOC_REQBUFS has been called) */ |
| 830 | if(vb->type != V4L2_CAP_VIDEO_CAPTURE) { |
| 831 | return -EINVAL; |
| 832 | } |
| 833 | if(vb->index>=usbvision->num_frames) { |
| 834 | return -EINVAL; |
| 835 | } |
| 836 | /* Updating the corresponding frame state */ |
| 837 | vb->flags = 0; |
| 838 | frame = &usbvision->frame[vb->index]; |
| 839 | if(frame->grabstate >= FrameState_Ready) |
| 840 | vb->flags |= V4L2_BUF_FLAG_QUEUED; |
| 841 | if(frame->grabstate >= FrameState_Done) |
| 842 | vb->flags |= V4L2_BUF_FLAG_DONE; |
| 843 | if(frame->grabstate == FrameState_Unused) |
| 844 | vb->flags |= V4L2_BUF_FLAG_MAPPED; |
| 845 | vb->memory = V4L2_MEMORY_MMAP; |
| 846 | |
| 847 | vb->m.offset = vb->index*PAGE_ALIGN(usbvision->max_frame_size); |
| 848 | |
| 849 | vb->memory = V4L2_MEMORY_MMAP; |
| 850 | vb->field = V4L2_FIELD_NONE; |
| 851 | vb->length = usbvision->curwidth* |
| 852 | usbvision->curheight* |
| 853 | usbvision->palette.bytes_per_pixel; |
| 854 | vb->timestamp = usbvision->frame[vb->index].timestamp; |
| 855 | vb->sequence = usbvision->frame[vb->index].sequence; |
| 856 | return 0; |
| 857 | } |
| 858 | |
| 859 | static int vidioc_qbuf (struct file *file, void *priv, struct v4l2_buffer *vb) |
| 860 | { |
| 861 | struct video_device *dev = video_devdata(file); |
| 862 | struct usb_usbvision *usbvision = |
| 863 | (struct usb_usbvision *) video_get_drvdata(dev); |
| 864 | struct usbvision_frame *frame; |
| 865 | unsigned long lock_flags; |
| 866 | |
| 867 | /* FIXME : works only on VIDEO_CAPTURE MODE, MMAP. */ |
| 868 | if(vb->type != V4L2_CAP_VIDEO_CAPTURE) { |
| 869 | return -EINVAL; |
| 870 | } |
| 871 | if(vb->index>=usbvision->num_frames) { |
| 872 | return -EINVAL; |
| 873 | } |
| 874 | |
| 875 | frame = &usbvision->frame[vb->index]; |
| 876 | |
| 877 | if (frame->grabstate != FrameState_Unused) { |
| 878 | return -EAGAIN; |
| 879 | } |
| 880 | |
| 881 | /* Mark it as ready and enqueue frame */ |
| 882 | frame->grabstate = FrameState_Ready; |
| 883 | frame->scanstate = ScanState_Scanning; |
| 884 | frame->scanlength = 0; /* Accumulated in usbvision_parse_data() */ |
| 885 | |
| 886 | vb->flags &= ~V4L2_BUF_FLAG_DONE; |
| 887 | |
| 888 | /* set v4l2_format index */ |
| 889 | frame->v4l2_format = usbvision->palette; |
| 890 | |
| 891 | spin_lock_irqsave(&usbvision->queue_lock, lock_flags); |
| 892 | list_add_tail(&usbvision->frame[vb->index].frame, &usbvision->inqueue); |
| 893 | spin_unlock_irqrestore(&usbvision->queue_lock, lock_flags); |
| 894 | |
| 895 | return 0; |
| 896 | } |
| 897 | |
| 898 | static int vidioc_dqbuf (struct file *file, void *priv, struct v4l2_buffer *vb) |
| 899 | { |
| 900 | struct video_device *dev = video_devdata(file); |
| 901 | struct usb_usbvision *usbvision = |
| 902 | (struct usb_usbvision *) video_get_drvdata(dev); |
| 903 | int ret; |
| 904 | struct usbvision_frame *f; |
| 905 | unsigned long lock_flags; |
| 906 | |
| 907 | if (vb->type != V4L2_BUF_TYPE_VIDEO_CAPTURE) |
| 908 | return -EINVAL; |
| 909 | |
| 910 | if (list_empty(&(usbvision->outqueue))) { |
| 911 | if (usbvision->streaming == Stream_Idle) |
| 912 | return -EINVAL; |
| 913 | ret = wait_event_interruptible |
| 914 | (usbvision->wait_frame, |
| 915 | !list_empty(&(usbvision->outqueue))); |
| 916 | if (ret) |
| 917 | return ret; |
| 918 | } |
| 919 | |
| 920 | spin_lock_irqsave(&usbvision->queue_lock, lock_flags); |
| 921 | f = list_entry(usbvision->outqueue.next, |
| 922 | struct usbvision_frame, frame); |
| 923 | list_del(usbvision->outqueue.next); |
| 924 | spin_unlock_irqrestore(&usbvision->queue_lock, lock_flags); |
| 925 | |
| 926 | f->grabstate = FrameState_Unused; |
| 927 | |
| 928 | vb->memory = V4L2_MEMORY_MMAP; |
| 929 | vb->flags = V4L2_BUF_FLAG_MAPPED | |
| 930 | V4L2_BUF_FLAG_QUEUED | |
| 931 | V4L2_BUF_FLAG_DONE; |
| 932 | vb->index = f->index; |
| 933 | vb->sequence = f->sequence; |
| 934 | vb->timestamp = f->timestamp; |
| 935 | vb->field = V4L2_FIELD_NONE; |
| 936 | vb->bytesused = f->scanlength; |
| 937 | |
| 938 | return 0; |
| 939 | } |
| 940 | |
| 941 | static int vidioc_streamon(struct file *file, void *priv, enum v4l2_buf_type i) |
| 942 | { |
| 943 | struct video_device *dev = video_devdata(file); |
| 944 | struct usb_usbvision *usbvision = |
| 945 | (struct usb_usbvision *) video_get_drvdata(dev); |
| 946 | int b=V4L2_BUF_TYPE_VIDEO_CAPTURE; |
| 947 | |
| 948 | usbvision->streaming = Stream_On; |
| 949 | call_i2c_clients(usbvision,VIDIOC_STREAMON , &b); |
| 950 | |
| 951 | return 0; |
| 952 | } |
| 953 | |
| 954 | static int vidioc_streamoff(struct file *file, |
| 955 | void *priv, enum v4l2_buf_type type) |
| 956 | { |
| 957 | struct video_device *dev = video_devdata(file); |
| 958 | struct usb_usbvision *usbvision = |
| 959 | (struct usb_usbvision *) video_get_drvdata(dev); |
| 960 | int b=V4L2_BUF_TYPE_VIDEO_CAPTURE; |
| 961 | |
| 962 | if (type != V4L2_BUF_TYPE_VIDEO_CAPTURE) |
| 963 | return -EINVAL; |
| 964 | |
| 965 | if(usbvision->streaming == Stream_On) { |
| 966 | usbvision_stream_interrupt(usbvision); |
| 967 | /* Stop all video streamings */ |
| 968 | call_i2c_clients(usbvision,VIDIOC_STREAMOFF , &b); |
| 969 | } |
| 970 | usbvision_empty_framequeues(usbvision); |
| 971 | |
| 972 | return 0; |
| 973 | } |
| 974 | |
Hans Verkuil | 78b526a | 2008-05-28 12:16:41 -0300 | [diff] [blame] | 975 | static int vidioc_enum_fmt_vid_cap (struct file *file, void *priv, |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 976 | struct v4l2_fmtdesc *vfd) |
| 977 | { |
| 978 | if(vfd->index>=USBVISION_SUPPORTED_PALETTES-1) { |
| 979 | return -EINVAL; |
| 980 | } |
| 981 | vfd->flags = 0; |
| 982 | vfd->type = V4L2_BUF_TYPE_VIDEO_CAPTURE; |
| 983 | strcpy(vfd->description,usbvision_v4l2_format[vfd->index].desc); |
| 984 | vfd->pixelformat = usbvision_v4l2_format[vfd->index].format; |
| 985 | memset(vfd->reserved, 0, sizeof(vfd->reserved)); |
| 986 | return 0; |
| 987 | } |
| 988 | |
Hans Verkuil | 78b526a | 2008-05-28 12:16:41 -0300 | [diff] [blame] | 989 | static int vidioc_g_fmt_vid_cap (struct file *file, void *priv, |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 990 | struct v4l2_format *vf) |
| 991 | { |
| 992 | struct video_device *dev = video_devdata(file); |
| 993 | struct usb_usbvision *usbvision = |
| 994 | (struct usb_usbvision *) video_get_drvdata(dev); |
| 995 | vf->fmt.pix.width = usbvision->curwidth; |
| 996 | vf->fmt.pix.height = usbvision->curheight; |
| 997 | vf->fmt.pix.pixelformat = usbvision->palette.format; |
| 998 | vf->fmt.pix.bytesperline = |
| 999 | usbvision->curwidth*usbvision->palette.bytes_per_pixel; |
| 1000 | vf->fmt.pix.sizeimage = vf->fmt.pix.bytesperline*usbvision->curheight; |
| 1001 | vf->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M; |
| 1002 | vf->fmt.pix.field = V4L2_FIELD_NONE; /* Always progressive image */ |
| 1003 | |
| 1004 | return 0; |
| 1005 | } |
| 1006 | |
Hans Verkuil | 78b526a | 2008-05-28 12:16:41 -0300 | [diff] [blame] | 1007 | static int vidioc_try_fmt_vid_cap (struct file *file, void *priv, |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1008 | struct v4l2_format *vf) |
| 1009 | { |
| 1010 | struct video_device *dev = video_devdata(file); |
| 1011 | struct usb_usbvision *usbvision = |
| 1012 | (struct usb_usbvision *) video_get_drvdata(dev); |
| 1013 | int formatIdx; |
| 1014 | |
| 1015 | /* Find requested format in available ones */ |
| 1016 | for(formatIdx=0;formatIdx<USBVISION_SUPPORTED_PALETTES;formatIdx++) { |
| 1017 | if(vf->fmt.pix.pixelformat == |
| 1018 | usbvision_v4l2_format[formatIdx].format) { |
| 1019 | usbvision->palette = usbvision_v4l2_format[formatIdx]; |
| 1020 | break; |
| 1021 | } |
| 1022 | } |
| 1023 | /* robustness */ |
| 1024 | if(formatIdx == USBVISION_SUPPORTED_PALETTES) { |
| 1025 | return -EINVAL; |
| 1026 | } |
| 1027 | RESTRICT_TO_RANGE(vf->fmt.pix.width, MIN_FRAME_WIDTH, MAX_FRAME_WIDTH); |
| 1028 | RESTRICT_TO_RANGE(vf->fmt.pix.height, MIN_FRAME_HEIGHT, MAX_FRAME_HEIGHT); |
| 1029 | |
| 1030 | vf->fmt.pix.bytesperline = vf->fmt.pix.width* |
| 1031 | usbvision->palette.bytes_per_pixel; |
| 1032 | vf->fmt.pix.sizeimage = vf->fmt.pix.bytesperline*vf->fmt.pix.height; |
| 1033 | |
| 1034 | return 0; |
| 1035 | } |
| 1036 | |
Hans Verkuil | 78b526a | 2008-05-28 12:16:41 -0300 | [diff] [blame] | 1037 | static int vidioc_s_fmt_vid_cap(struct file *file, void *priv, |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1038 | struct v4l2_format *vf) |
| 1039 | { |
| 1040 | struct video_device *dev = video_devdata(file); |
| 1041 | struct usb_usbvision *usbvision = |
| 1042 | (struct usb_usbvision *) video_get_drvdata(dev); |
| 1043 | int ret; |
| 1044 | |
Hans Verkuil | 78b526a | 2008-05-28 12:16:41 -0300 | [diff] [blame] | 1045 | if( 0 != (ret=vidioc_try_fmt_vid_cap (file, priv, vf)) ) { |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1046 | return ret; |
| 1047 | } |
| 1048 | |
| 1049 | /* stop io in case it is already in progress */ |
| 1050 | if(usbvision->streaming == Stream_On) { |
| 1051 | if ((ret = usbvision_stream_interrupt(usbvision))) |
| 1052 | return ret; |
| 1053 | } |
| 1054 | usbvision_frames_free(usbvision); |
| 1055 | usbvision_empty_framequeues(usbvision); |
| 1056 | |
| 1057 | usbvision->curFrame = NULL; |
| 1058 | |
| 1059 | /* by now we are committed to the new data... */ |
Matthias Kaehlcke | 289d4d2 | 2007-10-24 17:31:15 -0300 | [diff] [blame] | 1060 | mutex_lock(&usbvision->lock); |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1061 | usbvision_set_output(usbvision, vf->fmt.pix.width, vf->fmt.pix.height); |
Matthias Kaehlcke | 289d4d2 | 2007-10-24 17:31:15 -0300 | [diff] [blame] | 1062 | mutex_unlock(&usbvision->lock); |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1063 | |
| 1064 | return 0; |
| 1065 | } |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1066 | |
Al Viro | 8a5ab41 | 2007-02-09 16:38:20 +0000 | [diff] [blame] | 1067 | static ssize_t usbvision_v4l2_read(struct file *file, char __user *buf, |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1068 | size_t count, loff_t *ppos) |
| 1069 | { |
| 1070 | struct video_device *dev = video_devdata(file); |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1071 | struct usb_usbvision *usbvision = |
| 1072 | (struct usb_usbvision *) video_get_drvdata(dev); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1073 | int noblock = file->f_flags & O_NONBLOCK; |
| 1074 | unsigned long lock_flags; |
| 1075 | |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1076 | int ret,i; |
| 1077 | struct usbvision_frame *frame; |
| 1078 | |
Harvey Harrison | d2db42d | 2008-04-04 20:50:07 -0300 | [diff] [blame] | 1079 | PDEBUG(DBG_IO, "%s: %ld bytes, noblock=%d", __func__, |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1080 | (unsigned long)count, noblock); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1081 | |
| 1082 | if (!USBVISION_IS_OPERATIONAL(usbvision) || (buf == NULL)) |
| 1083 | return -EFAULT; |
| 1084 | |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1085 | /* This entry point is compatible with the mmap routines |
| 1086 | so that a user can do either VIDIOC_QBUF/VIDIOC_DQBUF |
| 1087 | to get frames or call read on the device. */ |
Thierry MERLE | 6f78e18 | 2007-02-07 10:13:11 -0300 | [diff] [blame] | 1088 | if(!usbvision->num_frames) { |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1089 | /* First, allocate some frames to work with |
| 1090 | if this has not been done with VIDIOC_REQBUF */ |
Thierry MERLE | 6f78e18 | 2007-02-07 10:13:11 -0300 | [diff] [blame] | 1091 | usbvision_frames_free(usbvision); |
| 1092 | usbvision_empty_framequeues(usbvision); |
| 1093 | usbvision_frames_alloc(usbvision,USBVISION_NUMFRAMES); |
| 1094 | } |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1095 | |
Thierry MERLE | 6f78e18 | 2007-02-07 10:13:11 -0300 | [diff] [blame] | 1096 | if(usbvision->streaming != Stream_On) { |
| 1097 | /* no stream is running, make it running ! */ |
| 1098 | usbvision->streaming = Stream_On; |
| 1099 | call_i2c_clients(usbvision,VIDIOC_STREAMON , NULL); |
| 1100 | } |
| 1101 | |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1102 | /* Then, enqueue as many frames as possible |
| 1103 | (like a user of VIDIOC_QBUF would do) */ |
Thierry MERLE | 6f78e18 | 2007-02-07 10:13:11 -0300 | [diff] [blame] | 1104 | for(i=0;i<usbvision->num_frames;i++) { |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1105 | frame = &usbvision->frame[i]; |
| 1106 | if(frame->grabstate == FrameState_Unused) { |
| 1107 | /* Mark it as ready and enqueue frame */ |
| 1108 | frame->grabstate = FrameState_Ready; |
| 1109 | frame->scanstate = ScanState_Scanning; |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1110 | /* Accumulated in usbvision_parse_data() */ |
| 1111 | frame->scanlength = 0; |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1112 | |
| 1113 | /* set v4l2_format index */ |
| 1114 | frame->v4l2_format = usbvision->palette; |
| 1115 | |
| 1116 | spin_lock_irqsave(&usbvision->queue_lock, lock_flags); |
| 1117 | list_add_tail(&frame->frame, &usbvision->inqueue); |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1118 | spin_unlock_irqrestore(&usbvision->queue_lock, |
| 1119 | lock_flags); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1120 | } |
| 1121 | } |
| 1122 | |
| 1123 | /* Then try to steal a frame (like a VIDIOC_DQBUF would do) */ |
| 1124 | if (list_empty(&(usbvision->outqueue))) { |
| 1125 | if(noblock) |
| 1126 | return -EAGAIN; |
| 1127 | |
| 1128 | ret = wait_event_interruptible |
| 1129 | (usbvision->wait_frame, |
| 1130 | !list_empty(&(usbvision->outqueue))); |
| 1131 | if (ret) |
| 1132 | return ret; |
| 1133 | } |
| 1134 | |
| 1135 | spin_lock_irqsave(&usbvision->queue_lock, lock_flags); |
| 1136 | frame = list_entry(usbvision->outqueue.next, |
| 1137 | struct usbvision_frame, frame); |
| 1138 | list_del(usbvision->outqueue.next); |
| 1139 | spin_unlock_irqrestore(&usbvision->queue_lock, lock_flags); |
| 1140 | |
| 1141 | /* An error returns an empty frame */ |
| 1142 | if (frame->grabstate == FrameState_Error) { |
| 1143 | frame->bytes_read = 0; |
| 1144 | return 0; |
| 1145 | } |
| 1146 | |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1147 | PDEBUG(DBG_IO, "%s: frmx=%d, bytes_read=%ld, scanlength=%ld", |
Harvey Harrison | d2db42d | 2008-04-04 20:50:07 -0300 | [diff] [blame] | 1148 | __func__, |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1149 | frame->index, frame->bytes_read, frame->scanlength); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1150 | |
| 1151 | /* copy bytes to user space; we allow for partials reads */ |
| 1152 | if ((count + frame->bytes_read) > (unsigned long)frame->scanlength) |
| 1153 | count = frame->scanlength - frame->bytes_read; |
| 1154 | |
| 1155 | if (copy_to_user(buf, frame->data + frame->bytes_read, count)) { |
| 1156 | return -EFAULT; |
| 1157 | } |
| 1158 | |
| 1159 | frame->bytes_read += count; |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1160 | PDEBUG(DBG_IO, "%s: {copy} count used=%ld, new bytes_read=%ld", |
Harvey Harrison | d2db42d | 2008-04-04 20:50:07 -0300 | [diff] [blame] | 1161 | __func__, |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1162 | (unsigned long)count, frame->bytes_read); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1163 | |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1164 | /* For now, forget the frame if it has not been read in one shot. */ |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1165 | /* if (frame->bytes_read >= frame->scanlength) {// All data has been read */ |
| 1166 | frame->bytes_read = 0; |
| 1167 | |
| 1168 | /* Mark it as available to be used again. */ |
Thierry MERLE | c430ca1e | 2006-12-29 20:32:08 -0300 | [diff] [blame] | 1169 | frame->grabstate = FrameState_Unused; |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1170 | /* } */ |
| 1171 | |
| 1172 | return count; |
| 1173 | } |
| 1174 | |
| 1175 | static int usbvision_v4l2_mmap(struct file *file, struct vm_area_struct *vma) |
| 1176 | { |
| 1177 | unsigned long size = vma->vm_end - vma->vm_start, |
| 1178 | start = vma->vm_start; |
| 1179 | void *pos; |
| 1180 | u32 i; |
| 1181 | |
| 1182 | struct video_device *dev = video_devdata(file); |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1183 | struct usb_usbvision *usbvision = |
| 1184 | (struct usb_usbvision *) video_get_drvdata(dev); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1185 | |
Thierry MERLE | 6f78e18 | 2007-02-07 10:13:11 -0300 | [diff] [blame] | 1186 | PDEBUG(DBG_MMAP, "mmap"); |
| 1187 | |
Matthias Kaehlcke | 289d4d2 | 2007-10-24 17:31:15 -0300 | [diff] [blame] | 1188 | mutex_lock(&usbvision->lock); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1189 | |
| 1190 | if (!USBVISION_IS_OPERATIONAL(usbvision)) { |
Matthias Kaehlcke | 289d4d2 | 2007-10-24 17:31:15 -0300 | [diff] [blame] | 1191 | mutex_unlock(&usbvision->lock); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1192 | return -EFAULT; |
| 1193 | } |
| 1194 | |
| 1195 | if (!(vma->vm_flags & VM_WRITE) || |
Thierry MERLE | 6f78e18 | 2007-02-07 10:13:11 -0300 | [diff] [blame] | 1196 | size != PAGE_ALIGN(usbvision->max_frame_size)) { |
Matthias Kaehlcke | 289d4d2 | 2007-10-24 17:31:15 -0300 | [diff] [blame] | 1197 | mutex_unlock(&usbvision->lock); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1198 | return -EINVAL; |
| 1199 | } |
| 1200 | |
Thierry MERLE | 6f78e18 | 2007-02-07 10:13:11 -0300 | [diff] [blame] | 1201 | for (i = 0; i < usbvision->num_frames; i++) { |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1202 | if (((PAGE_ALIGN(usbvision->max_frame_size)*i) >> PAGE_SHIFT) == |
| 1203 | vma->vm_pgoff) |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1204 | break; |
| 1205 | } |
Thierry MERLE | 6f78e18 | 2007-02-07 10:13:11 -0300 | [diff] [blame] | 1206 | if (i == usbvision->num_frames) { |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1207 | PDEBUG(DBG_MMAP, |
| 1208 | "mmap: user supplied mapping address is out of range"); |
Matthias Kaehlcke | 289d4d2 | 2007-10-24 17:31:15 -0300 | [diff] [blame] | 1209 | mutex_unlock(&usbvision->lock); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1210 | return -EINVAL; |
| 1211 | } |
| 1212 | |
| 1213 | /* VM_IO is eventually going to replace PageReserved altogether */ |
| 1214 | vma->vm_flags |= VM_IO; |
| 1215 | vma->vm_flags |= VM_RESERVED; /* avoid to swap out this VMA */ |
| 1216 | |
| 1217 | pos = usbvision->frame[i].data; |
| 1218 | while (size > 0) { |
| 1219 | |
| 1220 | if (vm_insert_page(vma, start, vmalloc_to_page(pos))) { |
Thierry MERLE | c876a34 | 2006-12-09 16:42:54 -0300 | [diff] [blame] | 1221 | PDEBUG(DBG_MMAP, "mmap: vm_insert_page failed"); |
Matthias Kaehlcke | 289d4d2 | 2007-10-24 17:31:15 -0300 | [diff] [blame] | 1222 | mutex_unlock(&usbvision->lock); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1223 | return -EAGAIN; |
| 1224 | } |
| 1225 | start += PAGE_SIZE; |
| 1226 | pos += PAGE_SIZE; |
| 1227 | size -= PAGE_SIZE; |
| 1228 | } |
| 1229 | |
Matthias Kaehlcke | 289d4d2 | 2007-10-24 17:31:15 -0300 | [diff] [blame] | 1230 | mutex_unlock(&usbvision->lock); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1231 | return 0; |
| 1232 | } |
| 1233 | |
| 1234 | |
| 1235 | /* |
| 1236 | * Here comes the stuff for radio on usbvision based devices |
| 1237 | * |
| 1238 | */ |
| 1239 | static int usbvision_radio_open(struct inode *inode, struct file *file) |
| 1240 | { |
| 1241 | struct video_device *dev = video_devdata(file); |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1242 | struct usb_usbvision *usbvision = |
| 1243 | (struct usb_usbvision *) video_get_drvdata(dev); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1244 | int errCode = 0; |
| 1245 | |
Harvey Harrison | d2db42d | 2008-04-04 20:50:07 -0300 | [diff] [blame] | 1246 | PDEBUG(DBG_IO, "%s:", __func__); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1247 | |
Matthias Kaehlcke | 289d4d2 | 2007-10-24 17:31:15 -0300 | [diff] [blame] | 1248 | mutex_lock(&usbvision->lock); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1249 | |
| 1250 | if (usbvision->user) { |
Harvey Harrison | d2db42d | 2008-04-04 20:50:07 -0300 | [diff] [blame] | 1251 | err("%s: Someone tried to open an already opened USBVision Radio!", __func__); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1252 | errCode = -EBUSY; |
| 1253 | } |
| 1254 | else { |
| 1255 | if(PowerOnAtOpen) { |
| 1256 | usbvision_reset_powerOffTimer(usbvision); |
| 1257 | if (usbvision->power == 0) { |
| 1258 | usbvision_power_on(usbvision); |
Thierry MERLE | 1ff16c2 | 2007-04-14 16:23:49 -0300 | [diff] [blame] | 1259 | usbvision_i2c_register(usbvision); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1260 | } |
| 1261 | } |
| 1262 | |
Thierry MERLE | 2a9f8b5 | 2007-02-07 10:14:38 -0300 | [diff] [blame] | 1263 | /* Alternate interface 1 is is the biggest frame size */ |
| 1264 | errCode = usbvision_set_alternate(usbvision); |
| 1265 | if (errCode < 0) { |
| 1266 | usbvision->last_error = errCode; |
Andrew Morton | 544e617 | 2007-12-12 18:25:23 -0300 | [diff] [blame] | 1267 | errCode = -EBUSY; |
| 1268 | goto out; |
Thierry MERLE | 2a9f8b5 | 2007-02-07 10:14:38 -0300 | [diff] [blame] | 1269 | } |
| 1270 | |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1271 | // If so far no errors then we shall start the radio |
| 1272 | usbvision->radio = 1; |
| 1273 | call_i2c_clients(usbvision,AUDC_SET_RADIO,&usbvision->tuner_type); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1274 | usbvision_set_audio(usbvision, USBVISION_AUDIO_RADIO); |
| 1275 | usbvision->user++; |
| 1276 | } |
| 1277 | |
| 1278 | if (errCode) { |
| 1279 | if (PowerOnAtOpen) { |
Thierry MERLE | 1ff16c2 | 2007-04-14 16:23:49 -0300 | [diff] [blame] | 1280 | usbvision_i2c_unregister(usbvision); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1281 | usbvision_power_off(usbvision); |
| 1282 | usbvision->initialized = 0; |
| 1283 | } |
| 1284 | } |
Andrew Morton | 544e617 | 2007-12-12 18:25:23 -0300 | [diff] [blame] | 1285 | out: |
Matthias Kaehlcke | 289d4d2 | 2007-10-24 17:31:15 -0300 | [diff] [blame] | 1286 | mutex_unlock(&usbvision->lock); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1287 | return errCode; |
| 1288 | } |
| 1289 | |
| 1290 | |
| 1291 | static int usbvision_radio_close(struct inode *inode, struct file *file) |
| 1292 | { |
| 1293 | struct video_device *dev = video_devdata(file); |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1294 | struct usb_usbvision *usbvision = |
| 1295 | (struct usb_usbvision *) video_get_drvdata(dev); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1296 | int errCode = 0; |
| 1297 | |
| 1298 | PDEBUG(DBG_IO, ""); |
| 1299 | |
Matthias Kaehlcke | 289d4d2 | 2007-10-24 17:31:15 -0300 | [diff] [blame] | 1300 | mutex_lock(&usbvision->lock); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1301 | |
Thierry MERLE | 2a9f8b5 | 2007-02-07 10:14:38 -0300 | [diff] [blame] | 1302 | /* Set packet size to 0 */ |
| 1303 | usbvision->ifaceAlt=0; |
| 1304 | errCode = usb_set_interface(usbvision->dev, usbvision->iface, |
| 1305 | usbvision->ifaceAlt); |
| 1306 | |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1307 | usbvision_audio_off(usbvision); |
| 1308 | usbvision->radio=0; |
| 1309 | usbvision->user--; |
| 1310 | |
| 1311 | if (PowerOnAtOpen) { |
| 1312 | usbvision_set_powerOffTimer(usbvision); |
| 1313 | usbvision->initialized = 0; |
| 1314 | } |
| 1315 | |
Matthias Kaehlcke | 289d4d2 | 2007-10-24 17:31:15 -0300 | [diff] [blame] | 1316 | mutex_unlock(&usbvision->lock); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1317 | |
| 1318 | if (usbvision->remove_pending) { |
Harvey Harrison | d2db42d | 2008-04-04 20:50:07 -0300 | [diff] [blame] | 1319 | printk(KERN_INFO "%s: Final disconnect\n", __func__); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1320 | usbvision_release(usbvision); |
| 1321 | } |
| 1322 | |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1323 | PDEBUG(DBG_IO, "success"); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1324 | return errCode; |
| 1325 | } |
| 1326 | |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1327 | /* |
| 1328 | * Here comes the stuff for vbi on usbvision based devices |
| 1329 | * |
| 1330 | */ |
| 1331 | static int usbvision_vbi_open(struct inode *inode, struct file *file) |
| 1332 | { |
| 1333 | /* TODO */ |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1334 | return -ENODEV; |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1335 | } |
| 1336 | |
| 1337 | static int usbvision_vbi_close(struct inode *inode, struct file *file) |
| 1338 | { |
| 1339 | /* TODO */ |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1340 | return -ENODEV; |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1341 | } |
| 1342 | |
| 1343 | static int usbvision_do_vbi_ioctl(struct inode *inode, struct file *file, |
| 1344 | unsigned int cmd, void *arg) |
| 1345 | { |
| 1346 | /* TODO */ |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1347 | return -ENOIOCTLCMD; |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1348 | } |
| 1349 | |
| 1350 | static int usbvision_vbi_ioctl(struct inode *inode, struct file *file, |
| 1351 | unsigned int cmd, unsigned long arg) |
| 1352 | { |
| 1353 | return video_usercopy(inode, file, cmd, arg, usbvision_do_vbi_ioctl); |
| 1354 | } |
| 1355 | |
| 1356 | |
| 1357 | // |
| 1358 | // Video registration stuff |
| 1359 | // |
| 1360 | |
| 1361 | // Video template |
Arjan van de Ven | fa027c2 | 2007-02-12 00:55:33 -0800 | [diff] [blame] | 1362 | static const struct file_operations usbvision_fops = { |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1363 | .owner = THIS_MODULE, |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1364 | .open = usbvision_v4l2_open, |
| 1365 | .release = usbvision_v4l2_close, |
| 1366 | .read = usbvision_v4l2_read, |
| 1367 | .mmap = usbvision_v4l2_mmap, |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1368 | .ioctl = video_ioctl2, |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1369 | .llseek = no_llseek, |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1370 | /* .poll = video_poll, */ |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1371 | .compat_ioctl = v4l_compat_ioctl32, |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1372 | }; |
Hans Verkuil | a399810 | 2008-07-21 02:57:38 -0300 | [diff] [blame^] | 1373 | |
| 1374 | static const struct v4l2_ioctl_ops usbvision_ioctl_ops = { |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1375 | .vidioc_querycap = vidioc_querycap, |
Hans Verkuil | 78b526a | 2008-05-28 12:16:41 -0300 | [diff] [blame] | 1376 | .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap, |
| 1377 | .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap, |
| 1378 | .vidioc_try_fmt_vid_cap = vidioc_try_fmt_vid_cap, |
| 1379 | .vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap, |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1380 | .vidioc_reqbufs = vidioc_reqbufs, |
| 1381 | .vidioc_querybuf = vidioc_querybuf, |
| 1382 | .vidioc_qbuf = vidioc_qbuf, |
| 1383 | .vidioc_dqbuf = vidioc_dqbuf, |
| 1384 | .vidioc_s_std = vidioc_s_std, |
| 1385 | .vidioc_enum_input = vidioc_enum_input, |
| 1386 | .vidioc_g_input = vidioc_g_input, |
| 1387 | .vidioc_s_input = vidioc_s_input, |
| 1388 | .vidioc_queryctrl = vidioc_queryctrl, |
| 1389 | .vidioc_g_audio = vidioc_g_audio, |
Al Viro | ed4d637 | 2007-09-26 01:53:42 +0100 | [diff] [blame] | 1390 | .vidioc_s_audio = vidioc_s_audio, |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1391 | .vidioc_g_ctrl = vidioc_g_ctrl, |
| 1392 | .vidioc_s_ctrl = vidioc_s_ctrl, |
| 1393 | .vidioc_streamon = vidioc_streamon, |
| 1394 | .vidioc_streamoff = vidioc_streamoff, |
| 1395 | #ifdef CONFIG_VIDEO_V4L1_COMPAT |
| 1396 | /* .vidiocgmbuf = vidiocgmbuf, */ |
| 1397 | #endif |
| 1398 | .vidioc_g_tuner = vidioc_g_tuner, |
| 1399 | .vidioc_s_tuner = vidioc_s_tuner, |
| 1400 | .vidioc_g_frequency = vidioc_g_frequency, |
| 1401 | .vidioc_s_frequency = vidioc_s_frequency, |
| 1402 | #ifdef CONFIG_VIDEO_ADV_DEBUG |
| 1403 | .vidioc_g_register = vidioc_g_register, |
| 1404 | .vidioc_s_register = vidioc_s_register, |
| 1405 | #endif |
Hans Verkuil | a399810 | 2008-07-21 02:57:38 -0300 | [diff] [blame^] | 1406 | }; |
| 1407 | |
| 1408 | static struct video_device usbvision_video_template = { |
| 1409 | .owner = THIS_MODULE, |
| 1410 | .type = VID_TYPE_TUNER | VID_TYPE_CAPTURE, |
| 1411 | .fops = &usbvision_fops, |
| 1412 | .ioctl_ops = &usbvision_ioctl_ops, |
| 1413 | .name = "usbvision-video", |
| 1414 | .release = video_device_release, |
| 1415 | .minor = -1, |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1416 | .tvnorms = USBVISION_NORMS, |
| 1417 | .current_norm = V4L2_STD_PAL |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1418 | }; |
| 1419 | |
| 1420 | |
| 1421 | // Radio template |
Arjan van de Ven | fa027c2 | 2007-02-12 00:55:33 -0800 | [diff] [blame] | 1422 | static const struct file_operations usbvision_radio_fops = { |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1423 | .owner = THIS_MODULE, |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1424 | .open = usbvision_radio_open, |
| 1425 | .release = usbvision_radio_close, |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1426 | .ioctl = video_ioctl2, |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1427 | .llseek = no_llseek, |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1428 | .compat_ioctl = v4l_compat_ioctl32, |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1429 | }; |
| 1430 | |
Hans Verkuil | a399810 | 2008-07-21 02:57:38 -0300 | [diff] [blame^] | 1431 | static const struct v4l2_ioctl_ops usbvision_radio_ioctl_ops = { |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1432 | .vidioc_querycap = vidioc_querycap, |
| 1433 | .vidioc_enum_input = vidioc_enum_input, |
| 1434 | .vidioc_g_input = vidioc_g_input, |
| 1435 | .vidioc_s_input = vidioc_s_input, |
| 1436 | .vidioc_queryctrl = vidioc_queryctrl, |
| 1437 | .vidioc_g_audio = vidioc_g_audio, |
Al Viro | ed4d637 | 2007-09-26 01:53:42 +0100 | [diff] [blame] | 1438 | .vidioc_s_audio = vidioc_s_audio, |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1439 | .vidioc_g_ctrl = vidioc_g_ctrl, |
| 1440 | .vidioc_s_ctrl = vidioc_s_ctrl, |
| 1441 | .vidioc_g_tuner = vidioc_g_tuner, |
| 1442 | .vidioc_s_tuner = vidioc_s_tuner, |
| 1443 | .vidioc_g_frequency = vidioc_g_frequency, |
| 1444 | .vidioc_s_frequency = vidioc_s_frequency, |
Hans Verkuil | a399810 | 2008-07-21 02:57:38 -0300 | [diff] [blame^] | 1445 | }; |
| 1446 | |
| 1447 | static struct video_device usbvision_radio_template = { |
| 1448 | .owner = THIS_MODULE, |
| 1449 | .type = VID_TYPE_TUNER, |
| 1450 | .fops = &usbvision_radio_fops, |
| 1451 | .name = "usbvision-radio", |
| 1452 | .release = video_device_release, |
| 1453 | .minor = -1, |
| 1454 | .ioctl_ops = &usbvision_radio_ioctl_ops, |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1455 | |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1456 | .tvnorms = USBVISION_NORMS, |
| 1457 | .current_norm = V4L2_STD_PAL |
| 1458 | }; |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1459 | |
| 1460 | // vbi template |
Arjan van de Ven | fa027c2 | 2007-02-12 00:55:33 -0800 | [diff] [blame] | 1461 | static const struct file_operations usbvision_vbi_fops = { |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1462 | .owner = THIS_MODULE, |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1463 | .open = usbvision_vbi_open, |
| 1464 | .release = usbvision_vbi_close, |
| 1465 | .ioctl = usbvision_vbi_ioctl, |
| 1466 | .llseek = no_llseek, |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1467 | .compat_ioctl = v4l_compat_ioctl32, |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1468 | }; |
| 1469 | |
| 1470 | static struct video_device usbvision_vbi_template= |
| 1471 | { |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1472 | .owner = THIS_MODULE, |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1473 | .type = VID_TYPE_TUNER, |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1474 | .fops = &usbvision_vbi_fops, |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1475 | .release = video_device_release, |
| 1476 | .name = "usbvision-vbi", |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1477 | .minor = -1, |
| 1478 | }; |
| 1479 | |
| 1480 | |
| 1481 | static struct video_device *usbvision_vdev_init(struct usb_usbvision *usbvision, |
| 1482 | struct video_device *vdev_template, |
| 1483 | char *name) |
| 1484 | { |
| 1485 | struct usb_device *usb_dev = usbvision->dev; |
| 1486 | struct video_device *vdev; |
| 1487 | |
| 1488 | if (usb_dev == NULL) { |
Harvey Harrison | d2db42d | 2008-04-04 20:50:07 -0300 | [diff] [blame] | 1489 | err("%s: usbvision->dev is not set", __func__); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1490 | return NULL; |
| 1491 | } |
| 1492 | |
| 1493 | vdev = video_device_alloc(); |
| 1494 | if (NULL == vdev) { |
| 1495 | return NULL; |
| 1496 | } |
| 1497 | *vdev = *vdev_template; |
| 1498 | // vdev->minor = -1; |
Hans Verkuil | 5e85e73 | 2008-07-20 06:31:39 -0300 | [diff] [blame] | 1499 | vdev->parent = &usb_dev->dev; |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1500 | snprintf(vdev->name, sizeof(vdev->name), "%s", name); |
| 1501 | video_set_drvdata(vdev, usbvision); |
| 1502 | return vdev; |
| 1503 | } |
| 1504 | |
| 1505 | // unregister video4linux devices |
| 1506 | static void usbvision_unregister_video(struct usb_usbvision *usbvision) |
| 1507 | { |
| 1508 | // vbi Device: |
| 1509 | if (usbvision->vbi) { |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1510 | PDEBUG(DBG_PROBE, "unregister /dev/vbi%d [v4l2]", |
| 1511 | usbvision->vbi->minor & 0x1f); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1512 | if (usbvision->vbi->minor != -1) { |
| 1513 | video_unregister_device(usbvision->vbi); |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1514 | } else { |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1515 | video_device_release(usbvision->vbi); |
| 1516 | } |
| 1517 | usbvision->vbi = NULL; |
| 1518 | } |
| 1519 | |
| 1520 | // Radio Device: |
| 1521 | if (usbvision->rdev) { |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1522 | PDEBUG(DBG_PROBE, "unregister /dev/radio%d [v4l2]", |
| 1523 | usbvision->rdev->minor & 0x1f); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1524 | if (usbvision->rdev->minor != -1) { |
| 1525 | video_unregister_device(usbvision->rdev); |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1526 | } else { |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1527 | video_device_release(usbvision->rdev); |
| 1528 | } |
| 1529 | usbvision->rdev = NULL; |
| 1530 | } |
| 1531 | |
| 1532 | // Video Device: |
| 1533 | if (usbvision->vdev) { |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1534 | PDEBUG(DBG_PROBE, "unregister /dev/video%d [v4l2]", |
| 1535 | usbvision->vdev->minor & 0x1f); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1536 | if (usbvision->vdev->minor != -1) { |
| 1537 | video_unregister_device(usbvision->vdev); |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1538 | } else { |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1539 | video_device_release(usbvision->vdev); |
| 1540 | } |
| 1541 | usbvision->vdev = NULL; |
| 1542 | } |
| 1543 | } |
| 1544 | |
| 1545 | // register video4linux devices |
| 1546 | static int __devinit usbvision_register_video(struct usb_usbvision *usbvision) |
| 1547 | { |
| 1548 | // Video Device: |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1549 | usbvision->vdev = usbvision_vdev_init(usbvision, |
| 1550 | &usbvision_video_template, |
| 1551 | "USBVision Video"); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1552 | if (usbvision->vdev == NULL) { |
| 1553 | goto err_exit; |
| 1554 | } |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1555 | if (video_register_device(usbvision->vdev, |
| 1556 | VFL_TYPE_GRABBER, |
| 1557 | video_nr)<0) { |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1558 | goto err_exit; |
| 1559 | } |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1560 | printk(KERN_INFO "USBVision[%d]: registered USBVision Video device /dev/video%d [v4l2]\n", |
| 1561 | usbvision->nr,usbvision->vdev->minor & 0x1f); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1562 | |
| 1563 | // Radio Device: |
| 1564 | if (usbvision_device_data[usbvision->DevModel].Radio) { |
| 1565 | // usbvision has radio |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1566 | usbvision->rdev = usbvision_vdev_init(usbvision, |
| 1567 | &usbvision_radio_template, |
| 1568 | "USBVision Radio"); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1569 | if (usbvision->rdev == NULL) { |
| 1570 | goto err_exit; |
| 1571 | } |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1572 | if (video_register_device(usbvision->rdev, |
| 1573 | VFL_TYPE_RADIO, |
| 1574 | radio_nr)<0) { |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1575 | goto err_exit; |
| 1576 | } |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1577 | printk(KERN_INFO "USBVision[%d]: registered USBVision Radio device /dev/radio%d [v4l2]\n", |
| 1578 | usbvision->nr, usbvision->rdev->minor & 0x1f); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1579 | } |
| 1580 | // vbi Device: |
| 1581 | if (usbvision_device_data[usbvision->DevModel].vbi) { |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1582 | usbvision->vbi = usbvision_vdev_init(usbvision, |
| 1583 | &usbvision_vbi_template, |
| 1584 | "USBVision VBI"); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1585 | if (usbvision->vdev == NULL) { |
| 1586 | goto err_exit; |
| 1587 | } |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1588 | if (video_register_device(usbvision->vbi, |
| 1589 | VFL_TYPE_VBI, |
| 1590 | vbi_nr)<0) { |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1591 | goto err_exit; |
| 1592 | } |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1593 | printk(KERN_INFO "USBVision[%d]: registered USBVision VBI device /dev/vbi%d [v4l2] (Not Working Yet!)\n", |
| 1594 | usbvision->nr,usbvision->vbi->minor & 0x1f); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1595 | } |
| 1596 | // all done |
| 1597 | return 0; |
| 1598 | |
| 1599 | err_exit: |
| 1600 | err("USBVision[%d]: video_register_device() failed", usbvision->nr); |
| 1601 | usbvision_unregister_video(usbvision); |
| 1602 | return -1; |
| 1603 | } |
| 1604 | |
| 1605 | /* |
| 1606 | * usbvision_alloc() |
| 1607 | * |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1608 | * This code allocates the struct usb_usbvision. |
| 1609 | * It is filled with default values. |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1610 | * |
| 1611 | * Returns NULL on error, a pointer to usb_usbvision else. |
| 1612 | * |
| 1613 | */ |
| 1614 | static struct usb_usbvision *usbvision_alloc(struct usb_device *dev) |
| 1615 | { |
| 1616 | struct usb_usbvision *usbvision; |
| 1617 | |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1618 | if ((usbvision = kzalloc(sizeof(struct usb_usbvision), GFP_KERNEL)) == |
| 1619 | NULL) { |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1620 | goto err_exit; |
| 1621 | } |
| 1622 | |
| 1623 | usbvision->dev = dev; |
| 1624 | |
Matthias Kaehlcke | 289d4d2 | 2007-10-24 17:31:15 -0300 | [diff] [blame] | 1625 | mutex_init(&usbvision->lock); /* available */ |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1626 | |
| 1627 | // prepare control urb for control messages during interrupts |
| 1628 | usbvision->ctrlUrb = usb_alloc_urb(USBVISION_URB_FRAMES, GFP_KERNEL); |
| 1629 | if (usbvision->ctrlUrb == NULL) { |
| 1630 | goto err_exit; |
| 1631 | } |
| 1632 | init_waitqueue_head(&usbvision->ctrlUrb_wq); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1633 | |
| 1634 | usbvision_init_powerOffTimer(usbvision); |
| 1635 | |
| 1636 | return usbvision; |
| 1637 | |
| 1638 | err_exit: |
| 1639 | if (usbvision && usbvision->ctrlUrb) { |
| 1640 | usb_free_urb(usbvision->ctrlUrb); |
| 1641 | } |
| 1642 | if (usbvision) { |
| 1643 | kfree(usbvision); |
| 1644 | } |
| 1645 | return NULL; |
| 1646 | } |
| 1647 | |
| 1648 | /* |
| 1649 | * usbvision_release() |
| 1650 | * |
| 1651 | * This code does final release of struct usb_usbvision. This happens |
| 1652 | * after the device is disconnected -and- all clients closed their files. |
| 1653 | * |
| 1654 | */ |
| 1655 | static void usbvision_release(struct usb_usbvision *usbvision) |
| 1656 | { |
| 1657 | PDEBUG(DBG_PROBE, ""); |
| 1658 | |
Matthias Kaehlcke | 289d4d2 | 2007-10-24 17:31:15 -0300 | [diff] [blame] | 1659 | mutex_lock(&usbvision->lock); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1660 | |
| 1661 | usbvision_reset_powerOffTimer(usbvision); |
| 1662 | |
| 1663 | usbvision->initialized = 0; |
| 1664 | |
Matthias Kaehlcke | 289d4d2 | 2007-10-24 17:31:15 -0300 | [diff] [blame] | 1665 | mutex_unlock(&usbvision->lock); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1666 | |
| 1667 | usbvision_remove_sysfs(usbvision->vdev); |
| 1668 | usbvision_unregister_video(usbvision); |
| 1669 | |
| 1670 | if (usbvision->ctrlUrb) { |
| 1671 | usb_free_urb(usbvision->ctrlUrb); |
| 1672 | } |
| 1673 | |
| 1674 | kfree(usbvision); |
| 1675 | |
| 1676 | PDEBUG(DBG_PROBE, "success"); |
| 1677 | } |
| 1678 | |
| 1679 | |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1680 | /*********************** usb interface **********************************/ |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1681 | |
| 1682 | static void usbvision_configure_video(struct usb_usbvision *usbvision) |
| 1683 | { |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1684 | int model; |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1685 | |
| 1686 | if (usbvision == NULL) |
| 1687 | return; |
| 1688 | |
| 1689 | model = usbvision->DevModel; |
| 1690 | usbvision->palette = usbvision_v4l2_format[2]; // V4L2_PIX_FMT_RGB24; |
| 1691 | |
Trent Piepho | c682b3a | 2007-04-14 15:16:26 -0300 | [diff] [blame] | 1692 | if (usbvision_device_data[usbvision->DevModel].Vin_Reg2_override) { |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1693 | usbvision->Vin_Reg2_Preset = |
| 1694 | usbvision_device_data[usbvision->DevModel].Vin_Reg2; |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1695 | } else { |
| 1696 | usbvision->Vin_Reg2_Preset = 0; |
| 1697 | } |
| 1698 | |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1699 | usbvision->tvnormId = usbvision_device_data[model].VideoNorm; |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1700 | |
| 1701 | usbvision->video_inputs = usbvision_device_data[model].VideoChannels; |
| 1702 | usbvision->ctl_input = 0; |
| 1703 | |
| 1704 | /* This should be here to make i2c clients to be able to register */ |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1705 | /* first switch off audio */ |
| 1706 | usbvision_audio_off(usbvision); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1707 | if (!PowerOnAtOpen) { |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1708 | /* and then power up the noisy tuner */ |
| 1709 | usbvision_power_on(usbvision); |
Thierry MERLE | 1ff16c2 | 2007-04-14 16:23:49 -0300 | [diff] [blame] | 1710 | usbvision_i2c_register(usbvision); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1711 | } |
| 1712 | } |
| 1713 | |
| 1714 | /* |
| 1715 | * usbvision_probe() |
| 1716 | * |
| 1717 | * This procedure queries device descriptor and accepts the interface |
| 1718 | * if it looks like USBVISION video device |
| 1719 | * |
| 1720 | */ |
Mauro Carvalho Chehab | 659ae56 | 2007-04-14 15:09:59 -0300 | [diff] [blame] | 1721 | static int __devinit usbvision_probe(struct usb_interface *intf, |
| 1722 | const struct usb_device_id *devid) |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1723 | { |
Thierry MERLE | 2a9f8b5 | 2007-02-07 10:14:38 -0300 | [diff] [blame] | 1724 | struct usb_device *dev = usb_get_dev(interface_to_usbdev(intf)); |
| 1725 | struct usb_interface *uif; |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1726 | __u8 ifnum = intf->altsetting->desc.bInterfaceNumber; |
| 1727 | const struct usb_host_interface *interface; |
| 1728 | struct usb_usbvision *usbvision = NULL; |
| 1729 | const struct usb_endpoint_descriptor *endpoint; |
Thierry MERLE | 2a9f8b5 | 2007-02-07 10:14:38 -0300 | [diff] [blame] | 1730 | int model,i; |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1731 | |
| 1732 | PDEBUG(DBG_PROBE, "VID=%#04x, PID=%#04x, ifnum=%u", |
Mauro Carvalho Chehab | 659ae56 | 2007-04-14 15:09:59 -0300 | [diff] [blame] | 1733 | dev->descriptor.idVendor, |
| 1734 | dev->descriptor.idProduct, ifnum); |
Thierry MERLE | 2a9f8b5 | 2007-02-07 10:14:38 -0300 | [diff] [blame] | 1735 | |
Mauro Carvalho Chehab | 659ae56 | 2007-04-14 15:09:59 -0300 | [diff] [blame] | 1736 | model = devid->driver_info; |
Mauro Carvalho Chehab | f8a389d | 2007-04-14 15:17:35 -0300 | [diff] [blame] | 1737 | if ( (model<0) || (model>=usbvision_device_data_size) ) { |
Thierry MERLE | 672d013 | 2007-04-14 17:53:55 -0300 | [diff] [blame] | 1738 | PDEBUG(DBG_PROBE, "model out of bounds %d",model); |
Mauro Carvalho Chehab | f8a389d | 2007-04-14 15:17:35 -0300 | [diff] [blame] | 1739 | return -ENODEV; |
| 1740 | } |
Harvey Harrison | d2db42d | 2008-04-04 20:50:07 -0300 | [diff] [blame] | 1741 | printk(KERN_INFO "%s: %s found\n", __func__, |
Mauro Carvalho Chehab | 659ae56 | 2007-04-14 15:09:59 -0300 | [diff] [blame] | 1742 | usbvision_device_data[model].ModelString); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1743 | |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1744 | if (usbvision_device_data[model].Interface >= 0) { |
| 1745 | interface = &dev->actconfig->interface[usbvision_device_data[model].Interface]->altsetting[0]; |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1746 | } else { |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1747 | interface = &dev->actconfig->interface[ifnum]->altsetting[0]; |
| 1748 | } |
| 1749 | endpoint = &interface->endpoint[1].desc; |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1750 | if ((endpoint->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) != |
| 1751 | USB_ENDPOINT_XFER_ISOC) { |
| 1752 | err("%s: interface %d. has non-ISO endpoint!", |
Harvey Harrison | d2db42d | 2008-04-04 20:50:07 -0300 | [diff] [blame] | 1753 | __func__, ifnum); |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1754 | err("%s: Endpoint attributes %d", |
Harvey Harrison | d2db42d | 2008-04-04 20:50:07 -0300 | [diff] [blame] | 1755 | __func__, endpoint->bmAttributes); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1756 | return -ENODEV; |
| 1757 | } |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1758 | if ((endpoint->bEndpointAddress & USB_ENDPOINT_DIR_MASK) == |
| 1759 | USB_DIR_OUT) { |
| 1760 | err("%s: interface %d. has ISO OUT endpoint!", |
Harvey Harrison | d2db42d | 2008-04-04 20:50:07 -0300 | [diff] [blame] | 1761 | __func__, ifnum); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1762 | return -ENODEV; |
| 1763 | } |
| 1764 | |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1765 | if ((usbvision = usbvision_alloc(dev)) == NULL) { |
Harvey Harrison | d2db42d | 2008-04-04 20:50:07 -0300 | [diff] [blame] | 1766 | err("%s: couldn't allocate USBVision struct", __func__); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1767 | return -ENOMEM; |
| 1768 | } |
Mauro Carvalho Chehab | 659ae56 | 2007-04-14 15:09:59 -0300 | [diff] [blame] | 1769 | |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1770 | if (dev->descriptor.bNumConfigurations > 1) { |
| 1771 | usbvision->bridgeType = BRIDGE_NT1004; |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1772 | } else if (model == DAZZLE_DVC_90_REV_1_SECAM) { |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1773 | usbvision->bridgeType = BRIDGE_NT1005; |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1774 | } else { |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1775 | usbvision->bridgeType = BRIDGE_NT1003; |
| 1776 | } |
| 1777 | PDEBUG(DBG_PROBE, "bridgeType %d", usbvision->bridgeType); |
| 1778 | |
Matthias Kaehlcke | 289d4d2 | 2007-10-24 17:31:15 -0300 | [diff] [blame] | 1779 | mutex_lock(&usbvision->lock); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1780 | |
Thierry MERLE | 2a9f8b5 | 2007-02-07 10:14:38 -0300 | [diff] [blame] | 1781 | /* compute alternate max packet sizes */ |
| 1782 | uif = dev->actconfig->interface[0]; |
| 1783 | |
| 1784 | usbvision->num_alt=uif->num_altsetting; |
| 1785 | PDEBUG(DBG_PROBE, "Alternate settings: %i",usbvision->num_alt); |
| 1786 | usbvision->alt_max_pkt_size = kmalloc(32* |
| 1787 | usbvision->num_alt,GFP_KERNEL); |
| 1788 | if (usbvision->alt_max_pkt_size == NULL) { |
| 1789 | err("usbvision: out of memory!\n"); |
Daniel Walker | 0991112 | 2007-12-12 18:22:48 -0300 | [diff] [blame] | 1790 | mutex_unlock(&usbvision->lock); |
Thierry MERLE | 2a9f8b5 | 2007-02-07 10:14:38 -0300 | [diff] [blame] | 1791 | return -ENOMEM; |
| 1792 | } |
| 1793 | |
| 1794 | for (i = 0; i < usbvision->num_alt ; i++) { |
| 1795 | u16 tmp = le16_to_cpu(uif->altsetting[i].endpoint[1].desc. |
| 1796 | wMaxPacketSize); |
| 1797 | usbvision->alt_max_pkt_size[i] = |
| 1798 | (tmp & 0x07ff) * (((tmp & 0x1800) >> 11) + 1); |
| 1799 | PDEBUG(DBG_PROBE, "Alternate setting %i, max size= %i",i, |
| 1800 | usbvision->alt_max_pkt_size[i]); |
| 1801 | } |
| 1802 | |
| 1803 | |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1804 | usbvision->nr = usbvision_nr++; |
| 1805 | |
| 1806 | usbvision->have_tuner = usbvision_device_data[model].Tuner; |
| 1807 | if (usbvision->have_tuner) { |
| 1808 | usbvision->tuner_type = usbvision_device_data[model].TunerType; |
| 1809 | } |
| 1810 | |
| 1811 | usbvision->tuner_addr = ADDR_UNSET; |
| 1812 | |
| 1813 | usbvision->DevModel = model; |
| 1814 | usbvision->remove_pending = 0; |
| 1815 | usbvision->iface = ifnum; |
Thierry MERLE | 2a9f8b5 | 2007-02-07 10:14:38 -0300 | [diff] [blame] | 1816 | usbvision->ifaceAlt = 0; |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1817 | usbvision->video_endp = endpoint->bEndpointAddress; |
| 1818 | usbvision->isocPacketSize = 0; |
| 1819 | usbvision->usb_bandwidth = 0; |
| 1820 | usbvision->user = 0; |
| 1821 | usbvision->streaming = Stream_Off; |
| 1822 | usbvision_register_video(usbvision); |
| 1823 | usbvision_configure_video(usbvision); |
Matthias Kaehlcke | 289d4d2 | 2007-10-24 17:31:15 -0300 | [diff] [blame] | 1824 | mutex_unlock(&usbvision->lock); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1825 | |
| 1826 | |
| 1827 | usb_set_intfdata (intf, usbvision); |
| 1828 | usbvision_create_sysfs(usbvision->vdev); |
| 1829 | |
| 1830 | PDEBUG(DBG_PROBE, "success"); |
| 1831 | return 0; |
| 1832 | } |
| 1833 | |
| 1834 | |
| 1835 | /* |
| 1836 | * usbvision_disconnect() |
| 1837 | * |
| 1838 | * This procedure stops all driver activity, deallocates interface-private |
| 1839 | * structure (pointed by 'ptr') and after that driver should be removable |
| 1840 | * with no ill consequences. |
| 1841 | * |
| 1842 | */ |
| 1843 | static void __devexit usbvision_disconnect(struct usb_interface *intf) |
| 1844 | { |
| 1845 | struct usb_usbvision *usbvision = usb_get_intfdata(intf); |
| 1846 | |
| 1847 | PDEBUG(DBG_PROBE, ""); |
| 1848 | |
| 1849 | if (usbvision == NULL) { |
Harvey Harrison | d2db42d | 2008-04-04 20:50:07 -0300 | [diff] [blame] | 1850 | err("%s: usb_get_intfdata() failed", __func__); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1851 | return; |
| 1852 | } |
| 1853 | usb_set_intfdata (intf, NULL); |
| 1854 | |
Matthias Kaehlcke | 289d4d2 | 2007-10-24 17:31:15 -0300 | [diff] [blame] | 1855 | mutex_lock(&usbvision->lock); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1856 | |
| 1857 | // At this time we ask to cancel outstanding URBs |
| 1858 | usbvision_stop_isoc(usbvision); |
| 1859 | |
| 1860 | if (usbvision->power) { |
Thierry MERLE | 1ff16c2 | 2007-04-14 16:23:49 -0300 | [diff] [blame] | 1861 | usbvision_i2c_unregister(usbvision); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1862 | usbvision_power_off(usbvision); |
| 1863 | } |
| 1864 | usbvision->remove_pending = 1; // Now all ISO data will be ignored |
| 1865 | |
| 1866 | usb_put_dev(usbvision->dev); |
| 1867 | usbvision->dev = NULL; // USB device is no more |
| 1868 | |
Matthias Kaehlcke | 289d4d2 | 2007-10-24 17:31:15 -0300 | [diff] [blame] | 1869 | mutex_unlock(&usbvision->lock); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1870 | |
| 1871 | if (usbvision->user) { |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1872 | printk(KERN_INFO "%s: In use, disconnect pending\n", |
Harvey Harrison | d2db42d | 2008-04-04 20:50:07 -0300 | [diff] [blame] | 1873 | __func__); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1874 | wake_up_interruptible(&usbvision->wait_frame); |
| 1875 | wake_up_interruptible(&usbvision->wait_stream); |
Thierry MERLE | c5f4836 | 2007-05-08 17:22:29 -0300 | [diff] [blame] | 1876 | } else { |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1877 | usbvision_release(usbvision); |
| 1878 | } |
| 1879 | |
| 1880 | PDEBUG(DBG_PROBE, "success"); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1881 | } |
| 1882 | |
| 1883 | static struct usb_driver usbvision_driver = { |
| 1884 | .name = "usbvision", |
| 1885 | .id_table = usbvision_table, |
| 1886 | .probe = usbvision_probe, |
| 1887 | .disconnect = usbvision_disconnect |
| 1888 | }; |
| 1889 | |
| 1890 | /* |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1891 | * usbvision_init() |
| 1892 | * |
| 1893 | * This code is run to initialize the driver. |
| 1894 | * |
| 1895 | */ |
| 1896 | static int __init usbvision_init(void) |
| 1897 | { |
| 1898 | int errCode; |
| 1899 | |
| 1900 | PDEBUG(DBG_PROBE, ""); |
| 1901 | |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1902 | PDEBUG(DBG_IO, "IO debugging is enabled [video]"); |
| 1903 | PDEBUG(DBG_PROBE, "PROBE debugging is enabled [video]"); |
Thierry MERLE | c876a34 | 2006-12-09 16:42:54 -0300 | [diff] [blame] | 1904 | PDEBUG(DBG_MMAP, "MMAP debugging is enabled [video]"); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1905 | |
| 1906 | /* disable planar mode support unless compression enabled */ |
| 1907 | if (isocMode != ISOC_MODE_COMPRESS ) { |
| 1908 | // FIXME : not the right way to set supported flag |
| 1909 | usbvision_v4l2_format[6].supported = 0; // V4L2_PIX_FMT_YVU420 |
| 1910 | usbvision_v4l2_format[7].supported = 0; // V4L2_PIX_FMT_YUV422P |
| 1911 | } |
| 1912 | |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1913 | errCode = usb_register(&usbvision_driver); |
| 1914 | |
| 1915 | if (errCode == 0) { |
Dwaine Garden | de6a1b8 | 2007-01-07 21:13:55 -0300 | [diff] [blame] | 1916 | printk(KERN_INFO DRIVER_DESC " : " USBVISION_VERSION_STRING "\n"); |
Thierry MERLE | 483dfdb | 2006-12-04 08:31:45 -0300 | [diff] [blame] | 1917 | PDEBUG(DBG_PROBE, "success"); |
| 1918 | } |
| 1919 | return errCode; |
| 1920 | } |
| 1921 | |
| 1922 | static void __exit usbvision_exit(void) |
| 1923 | { |
| 1924 | PDEBUG(DBG_PROBE, ""); |
| 1925 | |
| 1926 | usb_deregister(&usbvision_driver); |
| 1927 | PDEBUG(DBG_PROBE, "success"); |
| 1928 | } |
| 1929 | |
| 1930 | module_init(usbvision_init); |
| 1931 | module_exit(usbvision_exit); |
| 1932 | |
| 1933 | /* |
| 1934 | * Overrides for Emacs so that we follow Linus's tabbing style. |
| 1935 | * --------------------------------------------------------------------------- |
| 1936 | * Local variables: |
| 1937 | * c-basic-offset: 8 |
| 1938 | * End: |
| 1939 | */ |