usbvision-video.c 45.7 KB
Newer Older
1
/*
2
 * USB USBVISION Video device driver 0.9.10
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
 *
 *
 *
 * Copyright (c) 1999-2005 Joerg Heckenbach <joerg@heckenbach-aw.de>
 *
 * This module is part of usbvision driver project.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 *
 * Let's call the version 0.... until compression decoding is completely
 * implemented.
 *
 * This driver is written by Jose Ignacio Gijon and Joerg Heckenbach.
 * It was based on USB CPiA driver written by Peter Pregler,
 * Scott J. Bertin and Johannes Erdfelt
 * Ideas are taken from bttv driver by Ralph Metzler, Marcus Metzler &
 * Gerd Knorr and zoran 36120/36125 driver by Pauline Middelink
 * Updates to driver completed by Dwaine P. Garden
 *
 *
 * TODO:
 *     - use submit_urb for all setup packets
 *     - Fix memory settings for nt1004. It is 4 times as big as the
 *       nt1003 memory.
39 40
 *     - Add audio on endpoint 3 for nt1004 chip.
 *         Seems impossible, needs a codec interface.  Which one?
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
 *     - Clean up the driver.
 *     - optimization for performance.
 *     - Add Videotext capability (VBI).  Working on it.....
 *     - Check audio for other devices
 *
 */

#include <linux/kernel.h>
#include <linux/list.h>
#include <linux/timer.h>
#include <linux/slab.h>
#include <linux/mm.h>
#include <linux/highmem.h>
#include <linux/vmalloc.h>
#include <linux/module.h>
#include <linux/init.h>
#include <linux/spinlock.h>
H
Hans Verkuil 已提交
58
#include <linux/io.h>
59 60 61 62 63
#include <linux/videodev2.h>
#include <linux/i2c.h>

#include <media/saa7115.h>
#include <media/v4l2-common.h>
64
#include <media/v4l2-ioctl.h>
65
#include <media/v4l2-event.h>
66 67
#include <media/tuner.h>

68
#include <linux/workqueue.h>
69 70

#include "usbvision.h"
71
#include "usbvision-cards.h"
72

73 74 75
#define DRIVER_AUTHOR					\
	"Joerg Heckenbach <joerg@heckenbach-aw.de>, "	\
	"Dwaine Garden <DwaineGarden@rogers.com>"
76 77 78 79
#define DRIVER_NAME "usbvision"
#define DRIVER_ALIAS "USBVision"
#define DRIVER_DESC "USBVision USB Video Device Driver for Linux"
#define DRIVER_LICENSE "GPL"
80
#define USBVISION_VERSION_STRING "0.9.11"
81 82 83 84 85

#define	ENABLE_HEXDUMP	0	/* Enable if you need it */


#ifdef USBVISION_DEBUG
86
	#define PDEBUG(level, fmt, args...) { \
87
		if (video_debug & (level)) \
88 89
			printk(KERN_INFO KBUILD_MODNAME ":[%s:%d] " fmt, \
				__func__, __LINE__ , ## args); \
90
	}
91
#else
H
Hans Verkuil 已提交
92
	#define PDEBUG(level, fmt, args...) do {} while (0)
93 94
#endif

H
Hans Verkuil 已提交
95 96 97
#define DBG_IO		(1 << 1)
#define DBG_PROBE	(1 << 2)
#define DBG_MMAP	(1 << 3)
98

99
/* String operations */
H
Hans Verkuil 已提交
100 101
#define rmspace(str)	while (*str == ' ') str++;
#define goto2next(str)	while (*str != ' ') str++; while (*str == ' ') str++;
102 103


104
/* sequential number of usbvision device */
105
static int usbvision_nr;
106 107 108 109 110 111 112 113

static struct usbvision_v4l2_format_st usbvision_v4l2_format[] = {
	{ 1, 1,  8, V4L2_PIX_FMT_GREY    , "GREY" },
	{ 1, 2, 16, V4L2_PIX_FMT_RGB565  , "RGB565" },
	{ 1, 3, 24, V4L2_PIX_FMT_RGB24   , "RGB24" },
	{ 1, 4, 32, V4L2_PIX_FMT_RGB32   , "RGB32" },
	{ 1, 2, 16, V4L2_PIX_FMT_RGB555  , "RGB555" },
	{ 1, 2, 16, V4L2_PIX_FMT_YUYV    , "YUV422" },
114
	{ 1, 2, 12, V4L2_PIX_FMT_YVU420  , "YUV420P" }, /* 1.5 ! */
115 116 117
	{ 1, 2, 16, V4L2_PIX_FMT_YUV422P , "YUV422P" }
};

118
/* Function prototypes */
119 120
static void usbvision_release(struct usb_usbvision *usbvision);

J
Joe Perches 已提交
121
/* Default initialization of device driver parameters */
122
/* Set the default format for ISOC endpoint */
123
static int isoc_mode = ISOC_MODE_COMPRESS;
124
/* Set the default Debug Mode of the device driver */
125
static int video_debug;
126 127 128 129 130 131 132 133
/* Sequential Number of Video Device */
static int video_nr = -1;
/* Sequential Number of Radio Device */
static int radio_nr = -1;

/* Grab parameters for the device driver */

/* Showing parameters under SYSFS */
134
module_param(isoc_mode, int, 0444);
135 136 137 138
module_param(video_debug, int, 0444);
module_param(video_nr, int, 0444);
module_param(radio_nr, int, 0444);

139
MODULE_PARM_DESC(isoc_mode, " Set the default format for ISOC endpoint.  Default: 0x60 (Compression On)");
140 141 142 143 144
MODULE_PARM_DESC(video_debug, " Set the default Debug Mode of the device driver.  Default: 0 (Off)");
MODULE_PARM_DESC(video_nr, "Set video device number (/dev/videoX).  Default: -1 (autodetect)");
MODULE_PARM_DESC(radio_nr, "Set radio device number (/dev/radioX).  Default: -1 (autodetect)");


145
/* Misc stuff */
146 147 148
MODULE_AUTHOR(DRIVER_AUTHOR);
MODULE_DESCRIPTION(DRIVER_DESC);
MODULE_LICENSE(DRIVER_LICENSE);
149 150
MODULE_VERSION(USBVISION_VERSION_STRING);
MODULE_ALIAS(DRIVER_ALIAS);
151 152


153 154 155 156 157 158 159
/*****************************************************************************/
/* SYSFS Code - Copied from the stv680.c usb module.			     */
/* Device information is located at /sys/class/video4linux/video0            */
/* Device parameters information is located at /sys/module/usbvision         */
/* Device USB Information is located at                                      */
/*   /sys/bus/usb/drivers/USBVision Video Grabber                            */
/*****************************************************************************/
160 161 162

#define YES_NO(x) ((x) ? "Yes" : "No")

163
static inline struct usb_usbvision *cd_to_usbvision(struct device *cd)
164
{
165
	struct video_device *vdev =
166
		container_of(cd, struct video_device, dev);
167 168 169
	return video_get_drvdata(vdev);
}

170 171
static ssize_t show_version(struct device *cd,
			    struct device_attribute *attr, char *buf)
172 173 174
{
	return sprintf(buf, "%s\n", USBVISION_VERSION_STRING);
}
175
static DEVICE_ATTR(version, S_IRUGO, show_version, NULL);
176

177 178
static ssize_t show_model(struct device *cd,
			  struct device_attribute *attr, char *buf)
179
{
180
	struct video_device *vdev =
181
		container_of(cd, struct video_device, dev);
182
	struct usb_usbvision *usbvision = video_get_drvdata(vdev);
183
	return sprintf(buf, "%s\n",
184
		       usbvision_device_data[usbvision->dev_model].model_string);
185
}
186
static DEVICE_ATTR(model, S_IRUGO, show_model, NULL);
187

188 189
static ssize_t show_hue(struct device *cd,
			struct device_attribute *attr, char *buf)
190
{
191
	struct video_device *vdev =
192
		container_of(cd, struct video_device, dev);
193 194 195 196
	struct usb_usbvision *usbvision = video_get_drvdata(vdev);
	struct v4l2_control ctrl;
	ctrl.id = V4L2_CID_HUE;
	ctrl.value = 0;
H
Hans Verkuil 已提交
197
	if (usbvision->user)
198
		call_all(usbvision, core, g_ctrl, &ctrl);
199
	return sprintf(buf, "%d\n", ctrl.value);
200
}
201
static DEVICE_ATTR(hue, S_IRUGO, show_hue, NULL);
202

203 204
static ssize_t show_contrast(struct device *cd,
			     struct device_attribute *attr, char *buf)
205
{
206
	struct video_device *vdev =
207
		container_of(cd, struct video_device, dev);
208 209 210 211
	struct usb_usbvision *usbvision = video_get_drvdata(vdev);
	struct v4l2_control ctrl;
	ctrl.id = V4L2_CID_CONTRAST;
	ctrl.value = 0;
H
Hans Verkuil 已提交
212
	if (usbvision->user)
213
		call_all(usbvision, core, g_ctrl, &ctrl);
214
	return sprintf(buf, "%d\n", ctrl.value);
215
}
216
static DEVICE_ATTR(contrast, S_IRUGO, show_contrast, NULL);
217

218 219
static ssize_t show_brightness(struct device *cd,
			       struct device_attribute *attr, char *buf)
220
{
221
	struct video_device *vdev =
222
		container_of(cd, struct video_device, dev);
223 224 225 226
	struct usb_usbvision *usbvision = video_get_drvdata(vdev);
	struct v4l2_control ctrl;
	ctrl.id = V4L2_CID_BRIGHTNESS;
	ctrl.value = 0;
H
Hans Verkuil 已提交
227
	if (usbvision->user)
228
		call_all(usbvision, core, g_ctrl, &ctrl);
229
	return sprintf(buf, "%d\n", ctrl.value);
230
}
231
static DEVICE_ATTR(brightness, S_IRUGO, show_brightness, NULL);
232

233 234
static ssize_t show_saturation(struct device *cd,
			       struct device_attribute *attr, char *buf)
235
{
236
	struct video_device *vdev =
237
		container_of(cd, struct video_device, dev);
238 239 240 241
	struct usb_usbvision *usbvision = video_get_drvdata(vdev);
	struct v4l2_control ctrl;
	ctrl.id = V4L2_CID_SATURATION;
	ctrl.value = 0;
H
Hans Verkuil 已提交
242
	if (usbvision->user)
243
		call_all(usbvision, core, g_ctrl, &ctrl);
244
	return sprintf(buf, "%d\n", ctrl.value);
245
}
246
static DEVICE_ATTR(saturation, S_IRUGO, show_saturation, NULL);
247

248 249
static ssize_t show_streaming(struct device *cd,
			      struct device_attribute *attr, char *buf)
250
{
251
	struct video_device *vdev =
252
		container_of(cd, struct video_device, dev);
253
	struct usb_usbvision *usbvision = video_get_drvdata(vdev);
254
	return sprintf(buf, "%s\n",
H
Hans Verkuil 已提交
255
		       YES_NO(usbvision->streaming == stream_on ? 1 : 0));
256
}
257
static DEVICE_ATTR(streaming, S_IRUGO, show_streaming, NULL);
258

259 260
static ssize_t show_compression(struct device *cd,
				struct device_attribute *attr, char *buf)
261
{
262
	struct video_device *vdev =
263
		container_of(cd, struct video_device, dev);
264
	struct usb_usbvision *usbvision = video_get_drvdata(vdev);
265
	return sprintf(buf, "%s\n",
H
Hans Verkuil 已提交
266
		       YES_NO(usbvision->isoc_mode == ISOC_MODE_COMPRESS));
267
}
268
static DEVICE_ATTR(compression, S_IRUGO, show_compression, NULL);
269

270 271
static ssize_t show_device_bridge(struct device *cd,
				  struct device_attribute *attr, char *buf)
272
{
273
	struct video_device *vdev =
274
		container_of(cd, struct video_device, dev);
275
	struct usb_usbvision *usbvision = video_get_drvdata(vdev);
276
	return sprintf(buf, "%d\n", usbvision->bridge_type);
277
}
278
static DEVICE_ATTR(bridge, S_IRUGO, show_device_bridge, NULL);
279 280 281 282

static void usbvision_create_sysfs(struct video_device *vdev)
{
	int res;
H
Hans Verkuil 已提交
283

284 285 286
	if (!vdev)
		return;
	do {
287
		res = device_create_file(&vdev->dev, &dev_attr_version);
H
Hans Verkuil 已提交
288
		if (res < 0)
289
			break;
290
		res = device_create_file(&vdev->dev, &dev_attr_model);
H
Hans Verkuil 已提交
291
		if (res < 0)
292
			break;
293
		res = device_create_file(&vdev->dev, &dev_attr_hue);
H
Hans Verkuil 已提交
294
		if (res < 0)
295
			break;
296
		res = device_create_file(&vdev->dev, &dev_attr_contrast);
H
Hans Verkuil 已提交
297
		if (res < 0)
298
			break;
299
		res = device_create_file(&vdev->dev, &dev_attr_brightness);
H
Hans Verkuil 已提交
300
		if (res < 0)
301
			break;
302
		res = device_create_file(&vdev->dev, &dev_attr_saturation);
H
Hans Verkuil 已提交
303
		if (res < 0)
304
			break;
305
		res = device_create_file(&vdev->dev, &dev_attr_streaming);
H
Hans Verkuil 已提交
306
		if (res < 0)
307
			break;
308
		res = device_create_file(&vdev->dev, &dev_attr_compression);
H
Hans Verkuil 已提交
309
		if (res < 0)
310
			break;
311
		res = device_create_file(&vdev->dev, &dev_attr_bridge);
H
Hans Verkuil 已提交
312
		if (res >= 0)
313 314 315
			return;
	} while (0);

316
	dev_err(&vdev->dev, "%s error: %d\n", __func__, res);
317 318 319 320 321
}

static void usbvision_remove_sysfs(struct video_device *vdev)
{
	if (vdev) {
322 323 324 325 326 327 328 329 330
		device_remove_file(&vdev->dev, &dev_attr_version);
		device_remove_file(&vdev->dev, &dev_attr_model);
		device_remove_file(&vdev->dev, &dev_attr_hue);
		device_remove_file(&vdev->dev, &dev_attr_contrast);
		device_remove_file(&vdev->dev, &dev_attr_brightness);
		device_remove_file(&vdev->dev, &dev_attr_saturation);
		device_remove_file(&vdev->dev, &dev_attr_streaming);
		device_remove_file(&vdev->dev, &dev_attr_compression);
		device_remove_file(&vdev->dev, &dev_attr_bridge);
331 332 333 334 335 336 337 338 339 340 341
	}
}

/*
 * usbvision_open()
 *
 * This is part of Video 4 Linux API. The driver can be opened by one
 * client only (checks internal counter 'usbvision->user'). The procedure
 * then allocates buffers needed for video processing.
 *
 */
342
static int usbvision_v4l2_open(struct file *file)
343
{
344
	struct usb_usbvision *usbvision = video_drvdata(file);
345
	int err_code = 0;
346 347 348

	PDEBUG(DBG_IO, "open");

349 350
	if (mutex_lock_interruptible(&usbvision->v4l2_lock))
		return -ERESTARTSYS;
351

352
	if (usbvision->user) {
353
		err_code = -EBUSY;
354
	} else {
355 356 357 358
		err_code = v4l2_fh_open(file);
		if (err_code)
			goto unlock;

359
		/* Allocate memory for the scratch ring buffer */
360
		err_code = usbvision_scratch_alloc(usbvision);
H
Hans Verkuil 已提交
361
		if (isoc_mode == ISOC_MODE_COMPRESS) {
362 363
			/* Allocate intermediate decompression buffers
			   only if needed */
364
			err_code = usbvision_decompress_alloc(usbvision);
365
		}
366
		if (err_code) {
367 368 369 370 371 372 373
			/* Deallocate all buffers if trouble */
			usbvision_scratch_free(usbvision);
			usbvision_decompress_free(usbvision);
		}
	}

	/* If so far no errors then we shall start the camera */
374
	if (!err_code) {
375 376 377
		/* Send init sequence only once, it's large! */
		if (!usbvision->initialized) {
			int setup_ok = 0;
H
Hans Verkuil 已提交
378
			setup_ok = usbvision_setup(usbvision, isoc_mode);
379 380 381
			if (setup_ok)
				usbvision->initialized = 1;
			else
382
				err_code = -EBUSY;
383 384
		}

385
		if (!err_code) {
386
			usbvision_begin_streaming(usbvision);
387
			err_code = usbvision_init_isoc(usbvision);
388
			/* device must be initialized before isoc transfer */
H
Hans Verkuil 已提交
389
			usbvision_muxsel(usbvision, 0);
390 391 392

			/* prepare queues */
			usbvision_empty_framequeues(usbvision);
393 394 395 396
			usbvision->user++;
		}
	}

397
unlock:
398
	mutex_unlock(&usbvision->v4l2_lock);
399 400

	PDEBUG(DBG_IO, "success");
401
	return err_code;
402 403 404 405 406 407 408 409 410 411
}

/*
 * usbvision_v4l2_close()
 *
 * This is part of Video 4 Linux API. The procedure
 * stops streaming and deallocates all buffers that were earlier
 * allocated in usbvision_v4l2_open().
 *
 */
412
static int usbvision_v4l2_close(struct file *file)
413
{
414
	struct usb_usbvision *usbvision = video_drvdata(file);
415 416 417

	PDEBUG(DBG_IO, "close");

418
	mutex_lock(&usbvision->v4l2_lock);
419 420 421 422 423
	usbvision_audio_off(usbvision);
	usbvision_restart_isoc(usbvision);
	usbvision_stop_isoc(usbvision);

	usbvision_decompress_free(usbvision);
424
	usbvision_frames_free(usbvision);
425
	usbvision_empty_framequeues(usbvision);
426 427 428 429 430
	usbvision_scratch_free(usbvision);

	usbvision->user--;

	if (usbvision->remove_pending) {
431
		printk(KERN_INFO "%s: Final disconnect\n", __func__);
432
		usbvision_release(usbvision);
433
		return 0;
434
	}
435
	mutex_unlock(&usbvision->v4l2_lock);
436 437

	PDEBUG(DBG_IO, "success");
438
	return v4l2_fh_release(file);
439 440 441 442 443 444 445 446 447
}


/*
 * usbvision_ioctl()
 *
 * This is part of Video 4 Linux API. The procedure handles ioctl() calls.
 *
 */
448
#ifdef CONFIG_VIDEO_ADV_DEBUG
H
Hans Verkuil 已提交
449
static int vidioc_g_register(struct file *file, void *priv,
450
				struct v4l2_dbg_register *reg)
451
{
452
	struct usb_usbvision *usbvision = video_drvdata(file);
453
	int err_code;
454

455
	/* NT100x has a 8-bit register space */
456 457
	err_code = usbvision_read_reg(usbvision, reg->reg&0xff);
	if (err_code < 0) {
458
		dev_err(&usbvision->vdev.dev,
459
			"%s: VIDIOC_DBG_G_REGISTER failed: error %d\n",
460 461
				__func__, err_code);
		return err_code;
462
	}
463
	reg->val = err_code;
464
	reg->size = 1;
465 466
	return 0;
}
467

H
Hans Verkuil 已提交
468
static int vidioc_s_register(struct file *file, void *priv,
469
				const struct v4l2_dbg_register *reg)
470
{
471
	struct usb_usbvision *usbvision = video_drvdata(file);
472
	int err_code;
473

474
	/* NT100x has a 8-bit register space */
H
Hans Verkuil 已提交
475
	err_code = usbvision_write_reg(usbvision, reg->reg & 0xff, reg->val);
476
	if (err_code < 0) {
477
		dev_err(&usbvision->vdev.dev,
478
			"%s: VIDIOC_DBG_S_REGISTER failed: error %d\n",
479 480
				__func__, err_code);
		return err_code;
481 482 483
	}
	return 0;
}
484
#endif
485

H
Hans Verkuil 已提交
486
static int vidioc_querycap(struct file *file, void  *priv,
487 488
					struct v4l2_capability *vc)
{
489
	struct usb_usbvision *usbvision = video_drvdata(file);
490 491 492

	strlcpy(vc->driver, "USBVision", sizeof(vc->driver));
	strlcpy(vc->card,
493
		usbvision_device_data[usbvision->dev_model].model_string,
494
		sizeof(vc->card));
495
	usb_make_path(usbvision->dev, vc->bus_info, sizeof(vc->bus_info));
H
Hans Verkuil 已提交
496
	vc->device_caps = V4L2_CAP_VIDEO_CAPTURE |
497 498 499 500
		V4L2_CAP_AUDIO |
		V4L2_CAP_READWRITE |
		V4L2_CAP_STREAMING |
		(usbvision->have_tuner ? V4L2_CAP_TUNER : 0);
H
Hans Verkuil 已提交
501
	vc->capabilities = vc->device_caps | V4L2_CAP_DEVICE_CAPS;
502 503 504
	return 0;
}

H
Hans Verkuil 已提交
505
static int vidioc_enum_input(struct file *file, void *priv,
506 507
				struct v4l2_input *vi)
{
508
	struct usb_usbvision *usbvision = video_drvdata(file);
509 510
	int chan;

511
	if (vi->index >= usbvision->video_inputs)
512
		return -EINVAL;
H
Hans Verkuil 已提交
513
	if (usbvision->have_tuner)
514
		chan = vi->index;
H
Hans Verkuil 已提交
515
	else
516
		chan = vi->index + 1; /* skip Television string*/
H
Hans Verkuil 已提交
517

518 519
	/* Determine the requested input characteristics
	   specific for each usbvision card model */
H
Hans Verkuil 已提交
520
	switch (chan) {
521
	case 0:
522
		if (usbvision_device_data[usbvision->dev_model].video_channels == 4) {
523 524 525 526 527 528 529
			strcpy(vi->name, "White Video Input");
		} else {
			strcpy(vi->name, "Television");
			vi->type = V4L2_INPUT_TYPE_TUNER;
			vi->audioset = 1;
			vi->tuner = chan;
			vi->std = USBVISION_NORMS;
530
		}
531 532 533
		break;
	case 1:
		vi->type = V4L2_INPUT_TYPE_CAMERA;
H
Hans Verkuil 已提交
534
		if (usbvision_device_data[usbvision->dev_model].video_channels == 4)
535
			strcpy(vi->name, "Green Video Input");
H
Hans Verkuil 已提交
536
		else
537 538 539 540 541
			strcpy(vi->name, "Composite Video Input");
		vi->std = V4L2_STD_PAL;
		break;
	case 2:
		vi->type = V4L2_INPUT_TYPE_CAMERA;
H
Hans Verkuil 已提交
542
		if (usbvision_device_data[usbvision->dev_model].video_channels == 4)
543
			strcpy(vi->name, "Yellow Video Input");
H
Hans Verkuil 已提交
544
		else
545 546 547 548 549 550 551 552 553 554 555
			strcpy(vi->name, "S-Video Input");
		vi->std = V4L2_STD_PAL;
		break;
	case 3:
		vi->type = V4L2_INPUT_TYPE_CAMERA;
		strcpy(vi->name, "Red Video Input");
		vi->std = V4L2_STD_PAL;
		break;
	}
	return 0;
}
556

H
Hans Verkuil 已提交
557
static int vidioc_g_input(struct file *file, void *priv, unsigned int *input)
558
{
559
	struct usb_usbvision *usbvision = video_drvdata(file);
560

561 562 563
	*input = usbvision->ctl_input;
	return 0;
}
564

H
Hans Verkuil 已提交
565
static int vidioc_s_input(struct file *file, void *priv, unsigned int input)
566
{
567
	struct usb_usbvision *usbvision = video_drvdata(file);
568

569
	if (input >= usbvision->video_inputs)
570
		return -EINVAL;
571

572
	usbvision_muxsel(usbvision, input);
573 574 575 576 577 578
	usbvision_set_input(usbvision);
	usbvision_set_output(usbvision,
			     usbvision->curwidth,
			     usbvision->curheight);
	return 0;
}
579

580
static int vidioc_s_std(struct file *file, void *priv, v4l2_std_id id)
581
{
582 583
	struct usb_usbvision *usbvision = video_drvdata(file);

584
	usbvision->tvnorm_id = id;
585

586
	call_all(usbvision, video, s_std, usbvision->tvnorm_id);
587 588
	/* propagate the change to the decoder */
	usbvision_muxsel(usbvision, usbvision->ctl_input);
589

590 591
	return 0;
}
592

593 594 595 596 597 598 599 600
static int vidioc_g_std(struct file *file, void *priv, v4l2_std_id *id)
{
	struct usb_usbvision *usbvision = video_drvdata(file);

	*id = usbvision->tvnorm_id;
	return 0;
}

H
Hans Verkuil 已提交
601
static int vidioc_g_tuner(struct file *file, void *priv,
602 603
				struct v4l2_tuner *vt)
{
604
	struct usb_usbvision *usbvision = video_drvdata(file);
605

606
	if (!usbvision->have_tuner || vt->index)	/* Only tuner 0 */
607
		return -EINVAL;
H
Hans Verkuil 已提交
608
	if (usbvision->radio) {
609 610 611 612 613 614
		strcpy(vt->name, "Radio");
		vt->type = V4L2_TUNER_RADIO;
	} else {
		strcpy(vt->name, "Television");
	}
	/* Let clients fill in the remainder of this struct */
615
	call_all(usbvision, tuner, g_tuner, vt);
616

617 618
	return 0;
}
619

H
Hans Verkuil 已提交
620
static int vidioc_s_tuner(struct file *file, void *priv,
621
				const struct v4l2_tuner *vt)
622
{
623
	struct usb_usbvision *usbvision = video_drvdata(file);
624

625
	/* Only no or one tuner for now */
626 627 628
	if (!usbvision->have_tuner || vt->index)
		return -EINVAL;
	/* let clients handle this */
629
	call_all(usbvision, tuner, s_tuner, vt);
630

631 632
	return 0;
}
633

H
Hans Verkuil 已提交
634
static int vidioc_g_frequency(struct file *file, void *priv,
635 636
				struct v4l2_frequency *freq)
{
637
	struct usb_usbvision *usbvision = video_drvdata(file);
638

639
	freq->tuner = 0; /* Only one tuner */
H
Hans Verkuil 已提交
640
	if (usbvision->radio)
641
		freq->type = V4L2_TUNER_RADIO;
H
Hans Verkuil 已提交
642
	else
643 644
		freq->type = V4L2_TUNER_ANALOG_TV;
	freq->frequency = usbvision->freq;
645

646 647
	return 0;
}
648

H
Hans Verkuil 已提交
649
static int vidioc_s_frequency(struct file *file, void *priv,
650
				const struct v4l2_frequency *freq)
651
{
652
	struct usb_usbvision *usbvision = video_drvdata(file);
653

654
	/* Only no or one tuner for now */
655 656
	if (!usbvision->have_tuner || freq->tuner)
		return -EINVAL;
657

658
	usbvision->freq = freq->frequency;
659
	call_all(usbvision, tuner, s_frequency, freq);
660

661 662
	return 0;
}
663

H
Hans Verkuil 已提交
664
static int vidioc_g_audio(struct file *file, void *priv, struct v4l2_audio *a)
665
{
666
	struct usb_usbvision *usbvision = video_drvdata(file);
667

H
Hans Verkuil 已提交
668 669 670
	if (usbvision->radio)
		strcpy(a->name, "Radio");
	else
671
		strcpy(a->name, "TV");
672

673 674
	return 0;
}
675

H
Hans Verkuil 已提交
676
static int vidioc_s_audio(struct file *file, void *fh,
677
			  const struct v4l2_audio *a)
678
{
H
Hans Verkuil 已提交
679
	if (a->index)
680 681 682
		return -EINVAL;
	return 0;
}
683

H
Hans Verkuil 已提交
684
static int vidioc_reqbufs(struct file *file,
685 686
			   void *priv, struct v4l2_requestbuffers *vr)
{
687
	struct usb_usbvision *usbvision = video_drvdata(file);
688 689
	int ret;

H
Hans Verkuil 已提交
690
	RESTRICT_TO_RANGE(vr->count, 1, USBVISION_NUMFRAMES);
691 692 693

	/* Check input validity:
	   the user must do a VIDEO CAPTURE and MMAP method. */
694
	if (vr->memory != V4L2_MEMORY_MMAP)
695 696
		return -EINVAL;

H
Hans Verkuil 已提交
697 698 699
	if (usbvision->streaming == stream_on) {
		ret = usbvision_stream_interrupt(usbvision);
		if (ret)
700
			return ret;
701
	}
702 703 704

	usbvision_frames_free(usbvision);
	usbvision_empty_framequeues(usbvision);
H
Hans Verkuil 已提交
705
	vr->count = usbvision_frames_alloc(usbvision, vr->count);
706

707
	usbvision->cur_frame = NULL;
708

709 710 711
	return 0;
}

H
Hans Verkuil 已提交
712
static int vidioc_querybuf(struct file *file,
713
			    void *priv, struct v4l2_buffer *vb)
714
{
715
	struct usb_usbvision *usbvision = video_drvdata(file);
716 717 718 719
	struct usbvision_frame *frame;

	/* FIXME : must control
	   that buffers are mapped (VIDIOC_REQBUFS has been called) */
H
Hans Verkuil 已提交
720
	if (vb->index >= usbvision->num_frames)
721 722
		return -EINVAL;
	/* Updating the corresponding frame state */
723
	vb->flags = V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC;
724
	frame = &usbvision->frame[vb->index];
H
Hans Verkuil 已提交
725
	if (frame->grabstate >= frame_state_ready)
726
		vb->flags |= V4L2_BUF_FLAG_QUEUED;
H
Hans Verkuil 已提交
727
	if (frame->grabstate >= frame_state_done)
728
		vb->flags |= V4L2_BUF_FLAG_DONE;
H
Hans Verkuil 已提交
729
	if (frame->grabstate == frame_state_unused)
730 731 732
		vb->flags |= V4L2_BUF_FLAG_MAPPED;
	vb->memory = V4L2_MEMORY_MMAP;

H
Hans Verkuil 已提交
733
	vb->m.offset = vb->index * PAGE_ALIGN(usbvision->max_frame_size);
734 735 736

	vb->memory = V4L2_MEMORY_MMAP;
	vb->field = V4L2_FIELD_NONE;
H
Hans Verkuil 已提交
737 738
	vb->length = usbvision->curwidth *
		usbvision->curheight *
739 740 741 742
		usbvision->palette.bytes_per_pixel;
	vb->timestamp = usbvision->frame[vb->index].timestamp;
	vb->sequence = usbvision->frame[vb->index].sequence;
	return 0;
743 744
}

H
Hans Verkuil 已提交
745
static int vidioc_qbuf(struct file *file, void *priv, struct v4l2_buffer *vb)
746
{
747
	struct usb_usbvision *usbvision = video_drvdata(file);
748 749 750 751
	struct usbvision_frame *frame;
	unsigned long lock_flags;

	/* FIXME : works only on VIDEO_CAPTURE MODE, MMAP. */
H
Hans Verkuil 已提交
752
	if (vb->index >= usbvision->num_frames)
753 754 755 756
		return -EINVAL;

	frame = &usbvision->frame[vb->index];

H
Hans Verkuil 已提交
757
	if (frame->grabstate != frame_state_unused)
758 759 760
		return -EAGAIN;

	/* Mark it as ready and enqueue frame */
761 762
	frame->grabstate = frame_state_ready;
	frame->scanstate = scan_state_scanning;
763 764 765 766 767 768 769 770 771 772 773 774 775 776
	frame->scanlength = 0;	/* Accumulated in usbvision_parse_data() */

	vb->flags &= ~V4L2_BUF_FLAG_DONE;

	/* set v4l2_format index */
	frame->v4l2_format = usbvision->palette;

	spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
	list_add_tail(&usbvision->frame[vb->index].frame, &usbvision->inqueue);
	spin_unlock_irqrestore(&usbvision->queue_lock, lock_flags);

	return 0;
}

H
Hans Verkuil 已提交
777
static int vidioc_dqbuf(struct file *file, void *priv, struct v4l2_buffer *vb)
778
{
779
	struct usb_usbvision *usbvision = video_drvdata(file);
780 781 782 783 784
	int ret;
	struct usbvision_frame *f;
	unsigned long lock_flags;

	if (list_empty(&(usbvision->outqueue))) {
785
		if (usbvision->streaming == stream_idle)
786 787 788 789 790 791 792 793 794 795 796 797 798 799
			return -EINVAL;
		ret = wait_event_interruptible
			(usbvision->wait_frame,
			 !list_empty(&(usbvision->outqueue)));
		if (ret)
			return ret;
	}

	spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
	f = list_entry(usbvision->outqueue.next,
		       struct usbvision_frame, frame);
	list_del(usbvision->outqueue.next);
	spin_unlock_irqrestore(&usbvision->queue_lock, lock_flags);

800
	f->grabstate = frame_state_unused;
801 802 803 804

	vb->memory = V4L2_MEMORY_MMAP;
	vb->flags = V4L2_BUF_FLAG_MAPPED |
		V4L2_BUF_FLAG_QUEUED |
805 806
		V4L2_BUF_FLAG_DONE |
		V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC;
807 808 809 810 811 812 813 814 815 816 817
	vb->index = f->index;
	vb->sequence = f->sequence;
	vb->timestamp = f->timestamp;
	vb->field = V4L2_FIELD_NONE;
	vb->bytesused = f->scanlength;

	return 0;
}

static int vidioc_streamon(struct file *file, void *priv, enum v4l2_buf_type i)
{
818
	struct usb_usbvision *usbvision = video_drvdata(file);
819

820
	usbvision->streaming = stream_on;
821
	call_all(usbvision, video, s_stream, 1);
822 823 824 825 826 827 828

	return 0;
}

static int vidioc_streamoff(struct file *file,
			    void *priv, enum v4l2_buf_type type)
{
829
	struct usb_usbvision *usbvision = video_drvdata(file);
830 831 832 833

	if (type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
		return -EINVAL;

H
Hans Verkuil 已提交
834
	if (usbvision->streaming == stream_on) {
835 836
		usbvision_stream_interrupt(usbvision);
		/* Stop all video streamings */
837
		call_all(usbvision, video, s_stream, 0);
838 839 840 841 842 843
	}
	usbvision_empty_framequeues(usbvision);

	return 0;
}

H
Hans Verkuil 已提交
844
static int vidioc_enum_fmt_vid_cap(struct file *file, void  *priv,
845 846
					struct v4l2_fmtdesc *vfd)
{
H
Hans Verkuil 已提交
847
	if (vfd->index >= USBVISION_SUPPORTED_PALETTES - 1)
848
		return -EINVAL;
H
Hans Verkuil 已提交
849
	strcpy(vfd->description, usbvision_v4l2_format[vfd->index].desc);
850 851 852 853
	vfd->pixelformat = usbvision_v4l2_format[vfd->index].format;
	return 0;
}

H
Hans Verkuil 已提交
854
static int vidioc_g_fmt_vid_cap(struct file *file, void *priv,
855 856
					struct v4l2_format *vf)
{
857
	struct usb_usbvision *usbvision = video_drvdata(file);
858 859 860 861
	vf->fmt.pix.width = usbvision->curwidth;
	vf->fmt.pix.height = usbvision->curheight;
	vf->fmt.pix.pixelformat = usbvision->palette.format;
	vf->fmt.pix.bytesperline =
H
Hans Verkuil 已提交
862 863
		usbvision->curwidth * usbvision->palette.bytes_per_pixel;
	vf->fmt.pix.sizeimage = vf->fmt.pix.bytesperline * usbvision->curheight;
864 865 866 867 868 869
	vf->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
	vf->fmt.pix.field = V4L2_FIELD_NONE; /* Always progressive image */

	return 0;
}

H
Hans Verkuil 已提交
870
static int vidioc_try_fmt_vid_cap(struct file *file, void *priv,
871 872
			       struct v4l2_format *vf)
{
873
	struct usb_usbvision *usbvision = video_drvdata(file);
874
	int format_idx;
875 876

	/* Find requested format in available ones */
H
Hans Verkuil 已提交
877 878
	for (format_idx = 0; format_idx < USBVISION_SUPPORTED_PALETTES; format_idx++) {
		if (vf->fmt.pix.pixelformat ==
879 880
		   usbvision_v4l2_format[format_idx].format) {
			usbvision->palette = usbvision_v4l2_format[format_idx];
881 882 883 884
			break;
		}
	}
	/* robustness */
H
Hans Verkuil 已提交
885
	if (format_idx == USBVISION_SUPPORTED_PALETTES)
886 887 888 889 890 891 892 893 894 895 896
		return -EINVAL;
	RESTRICT_TO_RANGE(vf->fmt.pix.width, MIN_FRAME_WIDTH, MAX_FRAME_WIDTH);
	RESTRICT_TO_RANGE(vf->fmt.pix.height, MIN_FRAME_HEIGHT, MAX_FRAME_HEIGHT);

	vf->fmt.pix.bytesperline = vf->fmt.pix.width*
		usbvision->palette.bytes_per_pixel;
	vf->fmt.pix.sizeimage = vf->fmt.pix.bytesperline*vf->fmt.pix.height;

	return 0;
}

897
static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
898 899
			       struct v4l2_format *vf)
{
900
	struct usb_usbvision *usbvision = video_drvdata(file);
901 902
	int ret;

H
Hans Verkuil 已提交
903 904
	ret = vidioc_try_fmt_vid_cap(file, priv, vf);
	if (ret)
905 906 907
		return ret;

	/* stop io in case it is already in progress */
H
Hans Verkuil 已提交
908 909 910
	if (usbvision->streaming == stream_on) {
		ret = usbvision_stream_interrupt(usbvision);
		if (ret)
911 912 913 914 915
			return ret;
	}
	usbvision_frames_free(usbvision);
	usbvision_empty_framequeues(usbvision);

916
	usbvision->cur_frame = NULL;
917 918 919 920 921 922

	/* by now we are committed to the new data... */
	usbvision_set_output(usbvision, vf->fmt.pix.width, vf->fmt.pix.height);

	return 0;
}
923

924
static ssize_t usbvision_read(struct file *file, char __user *buf,
925 926
		      size_t count, loff_t *ppos)
{
927
	struct usb_usbvision *usbvision = video_drvdata(file);
928 929
	int noblock = file->f_flags & O_NONBLOCK;
	unsigned long lock_flags;
H
Hans Verkuil 已提交
930
	int ret, i;
931 932
	struct usbvision_frame *frame;

933
	PDEBUG(DBG_IO, "%s: %ld bytes, noblock=%d", __func__,
934
	       (unsigned long)count, noblock);
935 936 937 938

	if (!USBVISION_IS_OPERATIONAL(usbvision) || (buf == NULL))
		return -EFAULT;

939 940 941
	/* This entry point is compatible with the mmap routines
	   so that a user can do either VIDIOC_QBUF/VIDIOC_DQBUF
	   to get frames or call read on the device. */
H
Hans Verkuil 已提交
942
	if (!usbvision->num_frames) {
943 944
		/* First, allocate some frames to work with
		   if this has not been done with VIDIOC_REQBUF */
945 946
		usbvision_frames_free(usbvision);
		usbvision_empty_framequeues(usbvision);
H
Hans Verkuil 已提交
947
		usbvision_frames_alloc(usbvision, USBVISION_NUMFRAMES);
948 949
	}

H
Hans Verkuil 已提交
950
	if (usbvision->streaming != stream_on) {
951
		/* no stream is running, make it running ! */
952
		usbvision->streaming = stream_on;
953
		call_all(usbvision, video, s_stream, 1);
954
	}
955

956 957
	/* Then, enqueue as many frames as possible
	   (like a user of VIDIOC_QBUF would do) */
H
Hans Verkuil 已提交
958
	for (i = 0; i < usbvision->num_frames; i++) {
959
		frame = &usbvision->frame[i];
H
Hans Verkuil 已提交
960
		if (frame->grabstate == frame_state_unused) {
961
			/* Mark it as ready and enqueue frame */
962 963
			frame->grabstate = frame_state_ready;
			frame->scanstate = scan_state_scanning;
964 965
			/* Accumulated in usbvision_parse_data() */
			frame->scanlength = 0;
966 967 968 969 970 971

			/* set v4l2_format index */
			frame->v4l2_format = usbvision->palette;

			spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
			list_add_tail(&frame->frame, &usbvision->inqueue);
972 973
			spin_unlock_irqrestore(&usbvision->queue_lock,
					       lock_flags);
974 975 976 977 978
		}
	}

	/* Then try to steal a frame (like a VIDIOC_DQBUF would do) */
	if (list_empty(&(usbvision->outqueue))) {
H
Hans Verkuil 已提交
979
		if (noblock)
980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995
			return -EAGAIN;

		ret = wait_event_interruptible
			(usbvision->wait_frame,
			 !list_empty(&(usbvision->outqueue)));
		if (ret)
			return ret;
	}

	spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
	frame = list_entry(usbvision->outqueue.next,
			   struct usbvision_frame, frame);
	list_del(usbvision->outqueue.next);
	spin_unlock_irqrestore(&usbvision->queue_lock, lock_flags);

	/* An error returns an empty frame */
996
	if (frame->grabstate == frame_state_error) {
997 998 999 1000
		frame->bytes_read = 0;
		return 0;
	}

1001
	PDEBUG(DBG_IO, "%s: frmx=%d, bytes_read=%ld, scanlength=%ld",
1002
	       __func__,
1003
	       frame->index, frame->bytes_read, frame->scanlength);
1004 1005 1006 1007 1008

	/* copy bytes to user space; we allow for partials reads */
	if ((count + frame->bytes_read) > (unsigned long)frame->scanlength)
		count = frame->scanlength - frame->bytes_read;

H
Hans Verkuil 已提交
1009
	if (copy_to_user(buf, frame->data + frame->bytes_read, count))
1010 1011 1012
		return -EFAULT;

	frame->bytes_read += count;
1013
	PDEBUG(DBG_IO, "%s: {copy} count used=%ld, new bytes_read=%ld",
1014
	       __func__,
1015
	       (unsigned long)count, frame->bytes_read);
1016

1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028
#if 1
	/*
	 * FIXME:
	 * For now, forget the frame if it has not been read in one shot.
	 */
	frame->bytes_read = 0;

	/* Mark it as available to be used again. */
	frame->grabstate = frame_state_unused;
#else
	if (frame->bytes_read >= frame->scanlength) {
		/* All data has been read */
1029 1030 1031
		frame->bytes_read = 0;

		/* Mark it as available to be used again. */
1032
		frame->grabstate = frame_state_unused;
1033 1034
	}
#endif
1035 1036 1037 1038

	return count;
}

1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052
static ssize_t usbvision_v4l2_read(struct file *file, char __user *buf,
		      size_t count, loff_t *ppos)
{
	struct usb_usbvision *usbvision = video_drvdata(file);
	int res;

	if (mutex_lock_interruptible(&usbvision->v4l2_lock))
		return -ERESTARTSYS;
	res = usbvision_read(file, buf, count, ppos);
	mutex_unlock(&usbvision->v4l2_lock);
	return res;
}

static int usbvision_mmap(struct file *file, struct vm_area_struct *vma)
1053 1054 1055 1056 1057
{
	unsigned long size = vma->vm_end - vma->vm_start,
		start = vma->vm_start;
	void *pos;
	u32 i;
1058
	struct usb_usbvision *usbvision = video_drvdata(file);
1059

1060 1061
	PDEBUG(DBG_MMAP, "mmap");

H
Hans Verkuil 已提交
1062
	if (!USBVISION_IS_OPERATIONAL(usbvision))
1063 1064 1065
		return -EFAULT;

	if (!(vma->vm_flags & VM_WRITE) ||
1066
	    size != PAGE_ALIGN(usbvision->max_frame_size)) {
1067 1068 1069
		return -EINVAL;
	}

1070
	for (i = 0; i < usbvision->num_frames; i++) {
1071 1072
		if (((PAGE_ALIGN(usbvision->max_frame_size)*i) >> PAGE_SHIFT) ==
		    vma->vm_pgoff)
1073 1074
			break;
	}
1075
	if (i == usbvision->num_frames) {
1076 1077
		PDEBUG(DBG_MMAP,
		       "mmap: user supplied mapping address is out of range");
1078 1079 1080 1081
		return -EINVAL;
	}

	/* VM_IO is eventually going to replace PageReserved altogether */
1082
	vma->vm_flags |= VM_IO | VM_DONTEXPAND | VM_DONTDUMP;
1083 1084 1085 1086

	pos = usbvision->frame[i].data;
	while (size > 0) {
		if (vm_insert_page(vma, start, vmalloc_to_page(pos))) {
1087
			PDEBUG(DBG_MMAP, "mmap: vm_insert_page failed");
1088 1089 1090 1091 1092 1093 1094 1095 1096 1097
			return -EAGAIN;
		}
		start += PAGE_SIZE;
		pos += PAGE_SIZE;
		size -= PAGE_SIZE;
	}

	return 0;
}

1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108
static int usbvision_v4l2_mmap(struct file *file, struct vm_area_struct *vma)
{
	struct usb_usbvision *usbvision = video_drvdata(file);
	int res;

	if (mutex_lock_interruptible(&usbvision->v4l2_lock))
		return -ERESTARTSYS;
	res = usbvision_mmap(file, vma);
	mutex_unlock(&usbvision->v4l2_lock);
	return res;
}
1109 1110 1111 1112 1113

/*
 * Here comes the stuff for radio on usbvision based devices
 *
 */
1114
static int usbvision_radio_open(struct file *file)
1115
{
1116
	struct usb_usbvision *usbvision = video_drvdata(file);
1117
	int err_code = 0;
1118

1119
	PDEBUG(DBG_IO, "%s:", __func__);
1120

1121 1122
	if (mutex_lock_interruptible(&usbvision->v4l2_lock))
		return -ERESTARTSYS;
1123 1124 1125
	err_code = v4l2_fh_open(file);
	if (err_code)
		goto out;
1126
	if (usbvision->user) {
1127
		dev_err(&usbvision->rdev.dev,
1128 1129
			"%s: Someone tried to open an already opened USBVision Radio!\n",
				__func__);
1130
		err_code = -EBUSY;
H
Hans Verkuil 已提交
1131
	} else {
1132
		/* Alternate interface 1 is is the biggest frame size */
1133 1134 1135 1136
		err_code = usbvision_set_alternate(usbvision);
		if (err_code < 0) {
			usbvision->last_error = err_code;
			err_code = -EBUSY;
1137
			goto out;
1138 1139
		}

1140
		/* If so far no errors then we shall start the radio */
1141
		usbvision->radio = 1;
1142
		call_all(usbvision, tuner, s_radio);
1143 1144 1145
		usbvision_set_audio(usbvision, USBVISION_AUDIO_RADIO);
		usbvision->user++;
	}
1146
out:
1147
	mutex_unlock(&usbvision->v4l2_lock);
1148
	return err_code;
1149 1150 1151
}


1152
static int usbvision_radio_close(struct file *file)
1153
{
1154
	struct usb_usbvision *usbvision = video_drvdata(file);
1155 1156 1157

	PDEBUG(DBG_IO, "");

1158
	mutex_lock(&usbvision->v4l2_lock);
1159
	/* Set packet size to 0 */
H
Hans Verkuil 已提交
1160
	usbvision->iface_alt = 0;
1161
	usb_set_interface(usbvision->dev, usbvision->iface,
1162
				    usbvision->iface_alt);
1163

1164
	usbvision_audio_off(usbvision);
H
Hans Verkuil 已提交
1165
	usbvision->radio = 0;
1166 1167 1168
	usbvision->user--;

	if (usbvision->remove_pending) {
1169
		printk(KERN_INFO "%s: Final disconnect\n", __func__);
1170
		v4l2_fh_release(file);
1171
		usbvision_release(usbvision);
1172
		return 0;
1173 1174
	}

1175
	mutex_unlock(&usbvision->v4l2_lock);
1176
	PDEBUG(DBG_IO, "success");
1177
	return v4l2_fh_release(file);
1178 1179
}

1180
/* Video registration stuff */
1181

1182
/* Video template */
1183
static const struct v4l2_file_operations usbvision_fops = {
1184 1185 1186 1187 1188
	.owner             = THIS_MODULE,
	.open		= usbvision_v4l2_open,
	.release	= usbvision_v4l2_close,
	.read		= usbvision_v4l2_read,
	.mmap		= usbvision_v4l2_mmap,
1189
	.unlocked_ioctl	= video_ioctl2,
1190
};
1191 1192

static const struct v4l2_ioctl_ops usbvision_ioctl_ops = {
1193
	.vidioc_querycap      = vidioc_querycap,
1194 1195 1196 1197
	.vidioc_enum_fmt_vid_cap  = vidioc_enum_fmt_vid_cap,
	.vidioc_g_fmt_vid_cap     = vidioc_g_fmt_vid_cap,
	.vidioc_try_fmt_vid_cap   = vidioc_try_fmt_vid_cap,
	.vidioc_s_fmt_vid_cap     = vidioc_s_fmt_vid_cap,
1198 1199 1200 1201 1202
	.vidioc_reqbufs       = vidioc_reqbufs,
	.vidioc_querybuf      = vidioc_querybuf,
	.vidioc_qbuf          = vidioc_qbuf,
	.vidioc_dqbuf         = vidioc_dqbuf,
	.vidioc_s_std         = vidioc_s_std,
1203
	.vidioc_g_std         = vidioc_g_std,
1204 1205 1206 1207
	.vidioc_enum_input    = vidioc_enum_input,
	.vidioc_g_input       = vidioc_g_input,
	.vidioc_s_input       = vidioc_s_input,
	.vidioc_g_audio       = vidioc_g_audio,
1208
	.vidioc_s_audio       = vidioc_s_audio,
1209 1210 1211 1212 1213 1214
	.vidioc_streamon      = vidioc_streamon,
	.vidioc_streamoff     = vidioc_streamoff,
	.vidioc_g_tuner       = vidioc_g_tuner,
	.vidioc_s_tuner       = vidioc_s_tuner,
	.vidioc_g_frequency   = vidioc_g_frequency,
	.vidioc_s_frequency   = vidioc_s_frequency,
1215 1216 1217
	.vidioc_log_status    = v4l2_ctrl_log_status,
	.vidioc_subscribe_event = v4l2_ctrl_subscribe_event,
	.vidioc_unsubscribe_event = v4l2_event_unsubscribe,
1218 1219 1220 1221
#ifdef CONFIG_VIDEO_ADV_DEBUG
	.vidioc_g_register    = vidioc_g_register,
	.vidioc_s_register    = vidioc_s_register,
#endif
1222 1223 1224 1225
};

static struct video_device usbvision_video_template = {
	.fops		= &usbvision_fops,
H
Hans Verkuil 已提交
1226
	.ioctl_ops	= &usbvision_ioctl_ops,
1227
	.name           = "usbvision-video",
1228
	.release	= video_device_release_empty,
H
Hans Verkuil 已提交
1229
	.tvnorms        = USBVISION_NORMS,
1230 1231 1232
};


1233
/* Radio template */
1234
static const struct v4l2_file_operations usbvision_radio_fops = {
1235 1236 1237
	.owner             = THIS_MODULE,
	.open		= usbvision_radio_open,
	.release	= usbvision_radio_close,
1238
	.poll		= v4l2_ctrl_poll,
1239
	.unlocked_ioctl	= video_ioctl2,
1240 1241
};

1242
static const struct v4l2_ioctl_ops usbvision_radio_ioctl_ops = {
1243 1244 1245 1246 1247
	.vidioc_querycap      = vidioc_querycap,
	.vidioc_enum_input    = vidioc_enum_input,
	.vidioc_g_input       = vidioc_g_input,
	.vidioc_s_input       = vidioc_s_input,
	.vidioc_g_audio       = vidioc_g_audio,
1248
	.vidioc_s_audio       = vidioc_s_audio,
1249 1250 1251 1252
	.vidioc_g_tuner       = vidioc_g_tuner,
	.vidioc_s_tuner       = vidioc_s_tuner,
	.vidioc_g_frequency   = vidioc_g_frequency,
	.vidioc_s_frequency   = vidioc_s_frequency,
1253 1254 1255
	.vidioc_log_status    = v4l2_ctrl_log_status,
	.vidioc_subscribe_event = v4l2_ctrl_subscribe_event,
	.vidioc_unsubscribe_event = v4l2_event_unsubscribe,
1256 1257 1258 1259
};

static struct video_device usbvision_radio_template = {
	.fops		= &usbvision_radio_fops,
H
Hans Verkuil 已提交
1260
	.name		= "usbvision-radio",
1261
	.release	= video_device_release_empty,
H
Hans Verkuil 已提交
1262
	.ioctl_ops	= &usbvision_radio_ioctl_ops,
1263 1264 1265
};


1266 1267 1268 1269
static void usbvision_vdev_init(struct usb_usbvision *usbvision,
				struct video_device *vdev,
				const struct video_device *vdev_template,
				const char *name)
1270 1271 1272 1273
{
	struct usb_device *usb_dev = usbvision->dev;

	if (usb_dev == NULL) {
1274 1275
		dev_err(&usbvision->dev->dev,
			"%s: usbvision->dev is not set\n", __func__);
1276
		return;
1277 1278 1279
	}

	*vdev = *vdev_template;
1280
	vdev->lock = &usbvision->v4l2_lock;
1281
	vdev->v4l2_dev = &usbvision->v4l2_dev;
1282 1283 1284 1285
	snprintf(vdev->name, sizeof(vdev->name), "%s", name);
	video_set_drvdata(vdev, usbvision);
}

1286
/* unregister video4linux devices */
1287 1288
static void usbvision_unregister_video(struct usb_usbvision *usbvision)
{
1289
	/* Radio Device: */
1290
	if (video_is_registered(&usbvision->rdev)) {
1291
		PDEBUG(DBG_PROBE, "unregister %s [v4l2]",
1292 1293
		       video_device_node_name(&usbvision->rdev));
		video_unregister_device(&usbvision->rdev);
1294 1295
	}

1296
	/* Video Device: */
1297
	if (video_is_registered(&usbvision->vdev)) {
1298
		PDEBUG(DBG_PROBE, "unregister %s [v4l2]",
1299 1300
		       video_device_node_name(&usbvision->vdev));
		video_unregister_device(&usbvision->vdev);
1301 1302 1303
	}
}

1304
/* register video4linux devices */
1305
static int usbvision_register_video(struct usb_usbvision *usbvision)
1306
{
1307
	/* Video Device: */
1308 1309 1310
	usbvision_vdev_init(usbvision, &usbvision->vdev,
			      &usbvision_video_template, "USBVision Video");
	if (video_register_device(&usbvision->vdev, VFL_TYPE_GRABBER, video_nr) < 0)
1311
		goto err_exit;
1312
	printk(KERN_INFO "USBVision[%d]: registered USBVision Video device %s [v4l2]\n",
1313
	       usbvision->nr, video_device_node_name(&usbvision->vdev));
1314

1315
	/* Radio Device: */
1316
	if (usbvision_device_data[usbvision->dev_model].radio) {
1317
		/* usbvision has radio */
1318 1319 1320
		usbvision_vdev_init(usbvision, &usbvision->rdev,
			      &usbvision_radio_template, "USBVision Radio");
		if (video_register_device(&usbvision->rdev, VFL_TYPE_RADIO, radio_nr) < 0)
1321
			goto err_exit;
1322
		printk(KERN_INFO "USBVision[%d]: registered USBVision Radio device %s [v4l2]\n",
1323
		       usbvision->nr, video_device_node_name(&usbvision->rdev));
1324
	}
1325
	/* all done */
1326 1327 1328
	return 0;

 err_exit:
1329 1330 1331
	dev_err(&usbvision->dev->dev,
		"USBVision[%d]: video_register_device() failed\n",
			usbvision->nr);
1332 1333 1334 1335 1336 1337 1338
	usbvision_unregister_video(usbvision);
	return -1;
}

/*
 * usbvision_alloc()
 *
1339 1340
 * This code allocates the struct usb_usbvision.
 * It is filled with default values.
1341 1342 1343 1344
 *
 * Returns NULL on error, a pointer to usb_usbvision else.
 *
 */
1345 1346
static struct usb_usbvision *usbvision_alloc(struct usb_device *dev,
					     struct usb_interface *intf)
1347 1348 1349
{
	struct usb_usbvision *usbvision;

1350 1351 1352
	usbvision = kzalloc(sizeof(struct usb_usbvision), GFP_KERNEL);
	if (usbvision == NULL)
		return NULL;
1353 1354

	usbvision->dev = dev;
1355
	if (v4l2_device_register(&intf->dev, &usbvision->v4l2_dev))
1356
		goto err_free;
1357

1358 1359 1360
	if (v4l2_ctrl_handler_init(&usbvision->hdl, 4))
		goto err_unreg;
	usbvision->v4l2_dev.ctrl_handler = &usbvision->hdl;
1361
	mutex_init(&usbvision->v4l2_lock);
1362

1363
	/* prepare control urb for control messages during interrupts */
1364 1365
	usbvision->ctrl_urb = usb_alloc_urb(USBVISION_URB_FRAMES, GFP_KERNEL);
	if (usbvision->ctrl_urb == NULL)
1366
		goto err_unreg;
1367
	init_waitqueue_head(&usbvision->ctrl_urb_wq);
1368 1369 1370

	return usbvision;

1371
err_unreg:
1372
	v4l2_ctrl_handler_free(&usbvision->hdl);
1373 1374 1375
	v4l2_device_unregister(&usbvision->v4l2_dev);
err_free:
	kfree(usbvision);
1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391
	return NULL;
}

/*
 * usbvision_release()
 *
 * This code does final release of struct usb_usbvision. This happens
 * after the device is disconnected -and- all clients closed their files.
 *
 */
static void usbvision_release(struct usb_usbvision *usbvision)
{
	PDEBUG(DBG_PROBE, "");

	usbvision->initialized = 0;

1392
	usbvision_remove_sysfs(&usbvision->vdev);
1393
	usbvision_unregister_video(usbvision);
1394
	kfree(usbvision->alt_max_pkt_size);
1395

H
Hans Verkuil 已提交
1396
	usb_free_urb(usbvision->ctrl_urb);
1397

1398
	v4l2_ctrl_handler_free(&usbvision->hdl);
1399
	v4l2_device_unregister(&usbvision->v4l2_dev);
1400 1401 1402 1403 1404 1405
	kfree(usbvision);

	PDEBUG(DBG_PROBE, "success");
}


1406
/*********************** usb interface **********************************/
1407 1408 1409

static void usbvision_configure_video(struct usb_usbvision *usbvision)
{
1410
	int model;
1411 1412 1413 1414

	if (usbvision == NULL)
		return;

1415
	model = usbvision->dev_model;
1416
	usbvision->palette = usbvision_v4l2_format[2]; /* V4L2_PIX_FMT_RGB24; */
1417

1418 1419 1420
	if (usbvision_device_data[usbvision->dev_model].vin_reg2_override) {
		usbvision->vin_reg2_preset =
			usbvision_device_data[usbvision->dev_model].vin_reg2;
1421
	} else {
1422
		usbvision->vin_reg2_preset = 0;
1423 1424
	}

1425
	usbvision->tvnorm_id = usbvision_device_data[model].video_norm;
1426

1427
	usbvision->video_inputs = usbvision_device_data[model].video_channels;
1428 1429 1430
	usbvision->ctl_input = 0;

	/* This should be here to make i2c clients to be able to register */
1431
	/* first switch off audio */
1432 1433
	if (usbvision_device_data[model].audio_channels > 0)
		usbvision_audio_off(usbvision);
1434 1435 1436
	/* and then power up the tuner */
	usbvision_power_on(usbvision);
	usbvision_i2c_register(usbvision);
1437 1438 1439 1440 1441 1442 1443 1444 1445
}

/*
 * usbvision_probe()
 *
 * This procedure queries device descriptor and accepts the interface
 * if it looks like USBVISION video device
 *
 */
1446 1447
static int usbvision_probe(struct usb_interface *intf,
			   const struct usb_device_id *devid)
1448
{
1449 1450
	struct usb_device *dev = usb_get_dev(interface_to_usbdev(intf));
	struct usb_interface *uif;
1451 1452 1453 1454
	__u8 ifnum = intf->altsetting->desc.bInterfaceNumber;
	const struct usb_host_interface *interface;
	struct usb_usbvision *usbvision = NULL;
	const struct usb_endpoint_descriptor *endpoint;
1455
	int model, i, ret;
1456 1457

	PDEBUG(DBG_PROBE, "VID=%#04x, PID=%#04x, ifnum=%u",
1458 1459
				dev->descriptor.idVendor,
				dev->descriptor.idProduct, ifnum);
1460

1461
	model = devid->driver_info;
H
Hans Verkuil 已提交
1462 1463
	if (model < 0 || model >= usbvision_device_data_size) {
		PDEBUG(DBG_PROBE, "model out of bounds %d", model);
1464 1465
		ret = -ENODEV;
		goto err_usb;
1466
	}
1467
	printk(KERN_INFO "%s: %s found\n", __func__,
1468
				usbvision_device_data[model].model_string);
1469

H
Hans Verkuil 已提交
1470
	if (usbvision_device_data[model].interface >= 0)
1471
		interface = &dev->actconfig->interface[usbvision_device_data[model].interface]->altsetting[0];
H
Hans Verkuil 已提交
1472
	else
1473 1474
		interface = &dev->actconfig->interface[ifnum]->altsetting[0];
	endpoint = &interface->endpoint[1].desc;
1475
	if (!usb_endpoint_xfer_isoc(endpoint)) {
1476
		dev_err(&intf->dev, "%s: interface %d. has non-ISO endpoint!\n",
1477
		    __func__, ifnum);
1478
		dev_err(&intf->dev, "%s: Endpoint attributes %d",
1479
		    __func__, endpoint->bmAttributes);
1480 1481
		ret = -ENODEV;
		goto err_usb;
1482
	}
1483
	if (usb_endpoint_dir_out(endpoint)) {
1484
		dev_err(&intf->dev, "%s: interface %d. has ISO OUT endpoint!\n",
1485
		    __func__, ifnum);
1486 1487
		ret = -ENODEV;
		goto err_usb;
1488 1489
	}

1490 1491
	usbvision = usbvision_alloc(dev, intf);
	if (usbvision == NULL) {
1492
		dev_err(&intf->dev, "%s: couldn't allocate USBVision struct\n", __func__);
1493 1494
		ret = -ENOMEM;
		goto err_usb;
1495
	}
1496

H
Hans Verkuil 已提交
1497
	if (dev->descriptor.bNumConfigurations > 1)
1498
		usbvision->bridge_type = BRIDGE_NT1004;
H
Hans Verkuil 已提交
1499
	else if (model == DAZZLE_DVC_90_REV_1_SECAM)
1500
		usbvision->bridge_type = BRIDGE_NT1005;
H
Hans Verkuil 已提交
1501
	else
1502 1503
		usbvision->bridge_type = BRIDGE_NT1003;
	PDEBUG(DBG_PROBE, "bridge_type %d", usbvision->bridge_type);
1504

1505 1506 1507
	/* compute alternate max packet sizes */
	uif = dev->actconfig->interface[0];

H
Hans Verkuil 已提交
1508 1509 1510
	usbvision->num_alt = uif->num_altsetting;
	PDEBUG(DBG_PROBE, "Alternate settings: %i", usbvision->num_alt);
	usbvision->alt_max_pkt_size = kmalloc(32 * usbvision->num_alt, GFP_KERNEL);
1511
	if (usbvision->alt_max_pkt_size == NULL) {
1512
		dev_err(&intf->dev, "usbvision: out of memory!\n");
1513 1514
		ret = -ENOMEM;
		goto err_pkt;
1515 1516
	}

H
Hans Verkuil 已提交
1517
	for (i = 0; i < usbvision->num_alt; i++) {
1518 1519 1520 1521
		u16 tmp = le16_to_cpu(uif->altsetting[i].endpoint[1].desc.
				      wMaxPacketSize);
		usbvision->alt_max_pkt_size[i] =
			(tmp & 0x07ff) * (((tmp & 0x1800) >> 11) + 1);
H
Hans Verkuil 已提交
1522
		PDEBUG(DBG_PROBE, "Alternate setting %i, max size= %i", i,
1523 1524 1525 1526
		       usbvision->alt_max_pkt_size[i]);
	}


1527 1528
	usbvision->nr = usbvision_nr++;

1529
	usbvision->have_tuner = usbvision_device_data[model].tuner;
H
Hans Verkuil 已提交
1530
	if (usbvision->have_tuner)
1531
		usbvision->tuner_type = usbvision_device_data[model].tuner_type;
1532

1533
	usbvision->dev_model = model;
1534 1535
	usbvision->remove_pending = 0;
	usbvision->iface = ifnum;
1536
	usbvision->iface_alt = 0;
1537
	usbvision->video_endp = endpoint->bEndpointAddress;
1538
	usbvision->isoc_packet_size = 0;
1539 1540
	usbvision->usb_bandwidth = 0;
	usbvision->user = 0;
1541
	usbvision->streaming = stream_off;
1542
	usbvision_configure_video(usbvision);
1543
	usbvision_register_video(usbvision);
1544

1545
	usbvision_create_sysfs(&usbvision->vdev);
1546 1547 1548

	PDEBUG(DBG_PROBE, "success");
	return 0;
1549 1550 1551 1552 1553 1554

err_pkt:
	usbvision_release(usbvision);
err_usb:
	usb_put_dev(dev);
	return ret;
1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565
}


/*
 * usbvision_disconnect()
 *
 * This procedure stops all driver activity, deallocates interface-private
 * structure (pointed by 'ptr') and after that driver should be removable
 * with no ill consequences.
 *
 */
1566
static void usbvision_disconnect(struct usb_interface *intf)
1567
{
1568
	struct usb_usbvision *usbvision = to_usbvision(usb_get_intfdata(intf));
1569 1570 1571 1572

	PDEBUG(DBG_PROBE, "");

	if (usbvision == NULL) {
1573
		pr_err("%s: usb_get_intfdata() failed\n", __func__);
1574 1575 1576
		return;
	}

1577
	mutex_lock(&usbvision->v4l2_lock);
1578

1579
	/* At this time we ask to cancel outstanding URBs */
1580 1581
	usbvision_stop_isoc(usbvision);

1582
	v4l2_device_disconnect(&usbvision->v4l2_dev);
1583
	usbvision_i2c_unregister(usbvision);
1584
	usbvision->remove_pending = 1;	/* Now all ISO data will be ignored */
1585 1586

	usb_put_dev(usbvision->dev);
1587
	usbvision->dev = NULL;	/* USB device is no more */
1588

1589
	mutex_unlock(&usbvision->v4l2_lock);
1590 1591

	if (usbvision->user) {
1592
		printk(KERN_INFO "%s: In use, disconnect pending\n",
1593
		       __func__);
1594 1595
		wake_up_interruptible(&usbvision->wait_frame);
		wake_up_interruptible(&usbvision->wait_stream);
1596
	} else {
1597 1598 1599 1600 1601 1602 1603 1604 1605 1606
		usbvision_release(usbvision);
	}

	PDEBUG(DBG_PROBE, "success");
}

static struct usb_driver usbvision_driver = {
	.name		= "usbvision",
	.id_table	= usbvision_table,
	.probe		= usbvision_probe,
1607
	.disconnect	= usbvision_disconnect,
1608 1609 1610 1611 1612 1613 1614 1615 1616 1617
};

/*
 * usbvision_init()
 *
 * This code is run to initialize the driver.
 *
 */
static int __init usbvision_init(void)
{
1618
	int err_code;
1619 1620 1621 1622 1623

	PDEBUG(DBG_PROBE, "");

	PDEBUG(DBG_IO,  "IO      debugging is enabled [video]");
	PDEBUG(DBG_PROBE, "PROBE   debugging is enabled [video]");
1624
	PDEBUG(DBG_MMAP, "MMAP    debugging is enabled [video]");
1625 1626

	/* disable planar mode support unless compression enabled */
H
Hans Verkuil 已提交
1627
	if (isoc_mode != ISOC_MODE_COMPRESS) {
1628 1629 1630
		/* FIXME : not the right way to set supported flag */
		usbvision_v4l2_format[6].supported = 0; /* V4L2_PIX_FMT_YVU420 */
		usbvision_v4l2_format[7].supported = 0; /* V4L2_PIX_FMT_YUV422P */
1631 1632
	}

1633
	err_code = usb_register(&usbvision_driver);
1634

1635
	if (err_code == 0) {
1636
		printk(KERN_INFO DRIVER_DESC " : " USBVISION_VERSION_STRING "\n");
1637 1638
		PDEBUG(DBG_PROBE, "success");
	}
1639
	return err_code;
1640 1641 1642 1643
}

static void __exit usbvision_exit(void)
{
H
Hans Verkuil 已提交
1644
	PDEBUG(DBG_PROBE, "");
1645

H
Hans Verkuil 已提交
1646 1647
	usb_deregister(&usbvision_driver);
	PDEBUG(DBG_PROBE, "success");
1648 1649 1650 1651
}

module_init(usbvision_init);
module_exit(usbvision_exit);