usbvision-video.c 47.4 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 66
#include <media/tuner.h>

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

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

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

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


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

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

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


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

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" },
113
	{ 1, 2, 12, V4L2_PIX_FMT_YVU420  , "YUV420P" }, /* 1.5 ! */
114 115 116
	{ 1, 2, 16, V4L2_PIX_FMT_YUV422P , "YUV422P" }
};

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

J
Joe Perches 已提交
120
/* Default initialization of device driver parameters */
121
/* Set the default format for ISOC endpoint */
122
static int isoc_mode = ISOC_MODE_COMPRESS;
123
/* Set the default Debug Mode of the device driver */
124
static int video_debug;
125
/* Set the default device to power on at startup */
126
static int power_on_at_open = 1;
127 128 129 130 131 132 133 134
/* 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 */
135
module_param(isoc_mode, int, 0444);
136
module_param(video_debug, int, 0444);
137
module_param(power_on_at_open, int, 0444);
138 139 140
module_param(video_nr, int, 0444);
module_param(radio_nr, int, 0444);

141
MODULE_PARM_DESC(isoc_mode, " Set the default format for ISOC endpoint.  Default: 0x60 (Compression On)");
142
MODULE_PARM_DESC(video_debug, " Set the default Debug Mode of the device driver.  Default: 0 (Off)");
143
MODULE_PARM_DESC(power_on_at_open, " Set the default device to power on when device is opened.  Default: 1 (On)");
144 145 146 147
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)");


148
/* Misc stuff */
149 150 151
MODULE_AUTHOR(DRIVER_AUTHOR);
MODULE_DESCRIPTION(DRIVER_DESC);
MODULE_LICENSE(DRIVER_LICENSE);
152 153
MODULE_VERSION(USBVISION_VERSION_STRING);
MODULE_ALIAS(DRIVER_ALIAS);
154 155


156 157 158 159 160 161 162
/*****************************************************************************/
/* 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                            */
/*****************************************************************************/
163 164 165

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

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

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

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

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

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

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

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

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

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

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

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

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

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

static void usbvision_remove_sysfs(struct video_device *vdev)
{
	if (vdev) {
325 326 327 328 329 330 331 332 333
		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);
334 335 336 337 338 339 340 341 342 343 344
	}
}

/*
 * 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.
 *
 */
345
static int usbvision_v4l2_open(struct file *file)
346
{
347
	struct usb_usbvision *usbvision = video_drvdata(file);
348
	int err_code = 0;
349 350 351

	PDEBUG(DBG_IO, "open");

352 353
	if (mutex_lock_interruptible(&usbvision->v4l2_lock))
		return -ERESTARTSYS;
354
	usbvision_reset_power_off_timer(usbvision);
355 356

	if (usbvision->user)
357
		err_code = -EBUSY;
358
	else {
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
		if (usbvision->power == 0) {
			usbvision_power_on(usbvision);
377
			usbvision_i2c_register(usbvision);
378 379 380 381 382
		}

		/* Send init sequence only once, it's large! */
		if (!usbvision->initialized) {
			int setup_ok = 0;
H
Hans Verkuil 已提交
383
			setup_ok = usbvision_setup(usbvision, isoc_mode);
384 385 386
			if (setup_ok)
				usbvision->initialized = 1;
			else
387
				err_code = -EBUSY;
388 389
		}

390
		if (!err_code) {
391
			usbvision_begin_streaming(usbvision);
392
			err_code = usbvision_init_isoc(usbvision);
393
			/* device must be initialized before isoc transfer */
H
Hans Verkuil 已提交
394
			usbvision_muxsel(usbvision, 0);
395
			usbvision->user++;
396
		} else {
397
			if (power_on_at_open) {
398
				usbvision_i2c_unregister(usbvision);
399 400 401 402 403 404 405 406
				usbvision_power_off(usbvision);
				usbvision->initialized = 0;
			}
		}
	}

	/* prepare queues */
	usbvision_empty_framequeues(usbvision);
407
	mutex_unlock(&usbvision->v4l2_lock);
408 409

	PDEBUG(DBG_IO, "success");
410
	return err_code;
411 412 413 414 415 416 417 418 419 420
}

/*
 * 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().
 *
 */
421
static int usbvision_v4l2_close(struct file *file)
422
{
423
	struct usb_usbvision *usbvision = video_drvdata(file);
424 425 426

	PDEBUG(DBG_IO, "close");

427
	mutex_lock(&usbvision->v4l2_lock);
428 429 430 431 432
	usbvision_audio_off(usbvision);
	usbvision_restart_isoc(usbvision);
	usbvision_stop_isoc(usbvision);

	usbvision_decompress_free(usbvision);
433
	usbvision_frames_free(usbvision);
434
	usbvision_empty_framequeues(usbvision);
435 436 437 438
	usbvision_scratch_free(usbvision);

	usbvision->user--;

439
	if (power_on_at_open) {
440 441
		/* power off in a little while
		   to avoid off/on every close/open short sequences */
442
		usbvision_set_power_off_timer(usbvision);
443 444 445 446
		usbvision->initialized = 0;
	}

	if (usbvision->remove_pending) {
447
		printk(KERN_INFO "%s: Final disconnect\n", __func__);
448 449
		usbvision_release(usbvision);
	}
450
	mutex_unlock(&usbvision->v4l2_lock);
451 452 453 454 455 456 457 458 459 460 461 462

	PDEBUG(DBG_IO, "success");
	return 0;
}


/*
 * usbvision_ioctl()
 *
 * This is part of Video 4 Linux API. The procedure handles ioctl() calls.
 *
 */
463
#ifdef CONFIG_VIDEO_ADV_DEBUG
H
Hans Verkuil 已提交
464
static int vidioc_g_register(struct file *file, void *priv,
465
				struct v4l2_dbg_register *reg)
466
{
467
	struct usb_usbvision *usbvision = video_drvdata(file);
468
	int err_code;
469

470
	/* NT100x has a 8-bit register space */
471 472
	err_code = usbvision_read_reg(usbvision, reg->reg&0xff);
	if (err_code < 0) {
473 474
		dev_err(&usbvision->vdev->dev,
			"%s: VIDIOC_DBG_G_REGISTER failed: error %d\n",
475 476
				__func__, err_code);
		return err_code;
477
	}
478
	reg->val = err_code;
479
	reg->size = 1;
480 481
	return 0;
}
482

H
Hans Verkuil 已提交
483
static int vidioc_s_register(struct file *file, void *priv,
484
				const struct v4l2_dbg_register *reg)
485
{
486
	struct usb_usbvision *usbvision = video_drvdata(file);
487
	int err_code;
488

489
	/* NT100x has a 8-bit register space */
H
Hans Verkuil 已提交
490
	err_code = usbvision_write_reg(usbvision, reg->reg & 0xff, reg->val);
491
	if (err_code < 0) {
492 493
		dev_err(&usbvision->vdev->dev,
			"%s: VIDIOC_DBG_S_REGISTER failed: error %d\n",
494 495
				__func__, err_code);
		return err_code;
496 497 498
	}
	return 0;
}
499
#endif
500

H
Hans Verkuil 已提交
501
static int vidioc_querycap(struct file *file, void  *priv,
502 503
					struct v4l2_capability *vc)
{
504
	struct usb_usbvision *usbvision = video_drvdata(file);
505 506 507

	strlcpy(vc->driver, "USBVision", sizeof(vc->driver));
	strlcpy(vc->card,
508
		usbvision_device_data[usbvision->dev_model].model_string,
509
		sizeof(vc->card));
510
	usb_make_path(usbvision->dev, vc->bus_info, sizeof(vc->bus_info));
511 512 513 514 515 516 517 518
	vc->capabilities = V4L2_CAP_VIDEO_CAPTURE |
		V4L2_CAP_AUDIO |
		V4L2_CAP_READWRITE |
		V4L2_CAP_STREAMING |
		(usbvision->have_tuner ? V4L2_CAP_TUNER : 0);
	return 0;
}

H
Hans Verkuil 已提交
519
static int vidioc_enum_input(struct file *file, void *priv,
520 521
				struct v4l2_input *vi)
{
522
	struct usb_usbvision *usbvision = video_drvdata(file);
523 524
	int chan;

525
	if (vi->index >= usbvision->video_inputs)
526
		return -EINVAL;
H
Hans Verkuil 已提交
527
	if (usbvision->have_tuner)
528
		chan = vi->index;
H
Hans Verkuil 已提交
529
	else
530
		chan = vi->index + 1; /* skip Television string*/
H
Hans Verkuil 已提交
531

532 533
	/* Determine the requested input characteristics
	   specific for each usbvision card model */
H
Hans Verkuil 已提交
534
	switch (chan) {
535
	case 0:
536
		if (usbvision_device_data[usbvision->dev_model].video_channels == 4) {
537 538 539 540 541 542 543
			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;
544
		}
545 546 547
		break;
	case 1:
		vi->type = V4L2_INPUT_TYPE_CAMERA;
H
Hans Verkuil 已提交
548
		if (usbvision_device_data[usbvision->dev_model].video_channels == 4)
549
			strcpy(vi->name, "Green Video Input");
H
Hans Verkuil 已提交
550
		else
551 552 553 554 555
			strcpy(vi->name, "Composite Video Input");
		vi->std = V4L2_STD_PAL;
		break;
	case 2:
		vi->type = V4L2_INPUT_TYPE_CAMERA;
H
Hans Verkuil 已提交
556
		if (usbvision_device_data[usbvision->dev_model].video_channels == 4)
557
			strcpy(vi->name, "Yellow Video Input");
H
Hans Verkuil 已提交
558
		else
559 560 561 562 563 564 565 566 567 568 569
			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;
}
570

H
Hans Verkuil 已提交
571
static int vidioc_g_input(struct file *file, void *priv, unsigned int *input)
572
{
573
	struct usb_usbvision *usbvision = video_drvdata(file);
574

575 576 577
	*input = usbvision->ctl_input;
	return 0;
}
578

H
Hans Verkuil 已提交
579
static int vidioc_s_input(struct file *file, void *priv, unsigned int input)
580
{
581
	struct usb_usbvision *usbvision = video_drvdata(file);
582

583
	if (input >= usbvision->video_inputs)
584
		return -EINVAL;
585

586
	usbvision_muxsel(usbvision, input);
587 588 589 590 591 592
	usbvision_set_input(usbvision);
	usbvision_set_output(usbvision,
			     usbvision->curwidth,
			     usbvision->curheight);
	return 0;
}
593

594
static int vidioc_s_std(struct file *file, void *priv, v4l2_std_id id)
595
{
596 597
	struct usb_usbvision *usbvision = video_drvdata(file);

598
	usbvision->tvnorm_id = id;
599

600
	call_all(usbvision, core, s_std, usbvision->tvnorm_id);
601 602
	/* propagate the change to the decoder */
	usbvision_muxsel(usbvision, usbvision->ctl_input);
603

604 605
	return 0;
}
606

607 608 609 610 611 612 613 614
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 已提交
615
static int vidioc_g_tuner(struct file *file, void *priv,
616 617
				struct v4l2_tuner *vt)
{
618
	struct usb_usbvision *usbvision = video_drvdata(file);
619

620
	if (!usbvision->have_tuner || vt->index)	/* Only tuner 0 */
621
		return -EINVAL;
H
Hans Verkuil 已提交
622
	if (usbvision->radio) {
623 624 625 626 627 628
		strcpy(vt->name, "Radio");
		vt->type = V4L2_TUNER_RADIO;
	} else {
		strcpy(vt->name, "Television");
	}
	/* Let clients fill in the remainder of this struct */
629
	call_all(usbvision, tuner, g_tuner, vt);
630

631 632
	return 0;
}
633

H
Hans Verkuil 已提交
634
static int vidioc_s_tuner(struct file *file, void *priv,
635
				const struct v4l2_tuner *vt)
636
{
637
	struct usb_usbvision *usbvision = video_drvdata(file);
638

639
	/* Only no or one tuner for now */
640 641 642
	if (!usbvision->have_tuner || vt->index)
		return -EINVAL;
	/* let clients handle this */
643
	call_all(usbvision, tuner, s_tuner, vt);
644

645 646
	return 0;
}
647

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

653
	freq->tuner = 0; /* Only one tuner */
H
Hans Verkuil 已提交
654
	if (usbvision->radio)
655
		freq->type = V4L2_TUNER_RADIO;
H
Hans Verkuil 已提交
656
	else
657 658
		freq->type = V4L2_TUNER_ANALOG_TV;
	freq->frequency = usbvision->freq;
659

660 661
	return 0;
}
662

H
Hans Verkuil 已提交
663
static int vidioc_s_frequency(struct file *file, void *priv,
664
				const struct v4l2_frequency *freq)
665
{
666
	struct usb_usbvision *usbvision = video_drvdata(file);
667

668
	/* Only no or one tuner for now */
669 670
	if (!usbvision->have_tuner || freq->tuner)
		return -EINVAL;
671

672
	usbvision->freq = freq->frequency;
673
	call_all(usbvision, tuner, s_frequency, freq);
674

675 676
	return 0;
}
677

H
Hans Verkuil 已提交
678
static int vidioc_g_audio(struct file *file, void *priv, struct v4l2_audio *a)
679
{
680
	struct usb_usbvision *usbvision = video_drvdata(file);
681

H
Hans Verkuil 已提交
682 683 684
	if (usbvision->radio)
		strcpy(a->name, "Radio");
	else
685
		strcpy(a->name, "TV");
686

687 688
	return 0;
}
689

H
Hans Verkuil 已提交
690
static int vidioc_s_audio(struct file *file, void *fh,
691
			  const struct v4l2_audio *a)
692
{
H
Hans Verkuil 已提交
693
	if (a->index)
694 695 696
		return -EINVAL;
	return 0;
}
697

H
Hans Verkuil 已提交
698
static int vidioc_queryctrl(struct file *file, void *priv,
699 700
			    struct v4l2_queryctrl *ctrl)
{
701
	struct usb_usbvision *usbvision = video_drvdata(file);
702

703
	call_all(usbvision, core, queryctrl, ctrl);
704

705 706
	if (!ctrl->type)
		return -EINVAL;
707

708 709
	return 0;
}
710

H
Hans Verkuil 已提交
711
static int vidioc_g_ctrl(struct file *file, void *priv,
712 713
				struct v4l2_control *ctrl)
{
714
	struct usb_usbvision *usbvision = video_drvdata(file);
715

H
Hans Verkuil 已提交
716
	call_all(usbvision, core, g_ctrl, ctrl);
717 718 719
	return 0;
}

H
Hans Verkuil 已提交
720
static int vidioc_s_ctrl(struct file *file, void *priv,
721 722
				struct v4l2_control *ctrl)
{
723
	struct usb_usbvision *usbvision = video_drvdata(file);
724

H
Hans Verkuil 已提交
725
	call_all(usbvision, core, s_ctrl, ctrl);
726 727 728
	return 0;
}

H
Hans Verkuil 已提交
729
static int vidioc_reqbufs(struct file *file,
730 731
			   void *priv, struct v4l2_requestbuffers *vr)
{
732
	struct usb_usbvision *usbvision = video_drvdata(file);
733 734
	int ret;

H
Hans Verkuil 已提交
735
	RESTRICT_TO_RANGE(vr->count, 1, USBVISION_NUMFRAMES);
736 737 738

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

H
Hans Verkuil 已提交
742 743 744
	if (usbvision->streaming == stream_on) {
		ret = usbvision_stream_interrupt(usbvision);
		if (ret)
745
			return ret;
746
	}
747 748 749

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

752
	usbvision->cur_frame = NULL;
753

754 755 756
	return 0;
}

H
Hans Verkuil 已提交
757
static int vidioc_querybuf(struct file *file,
758
			    void *priv, struct v4l2_buffer *vb)
759
{
760
	struct usb_usbvision *usbvision = video_drvdata(file);
761 762 763 764
	struct usbvision_frame *frame;

	/* FIXME : must control
	   that buffers are mapped (VIDIOC_REQBUFS has been called) */
H
Hans Verkuil 已提交
765
	if (vb->index >= usbvision->num_frames)
766 767
		return -EINVAL;
	/* Updating the corresponding frame state */
768
	vb->flags = V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC;
769
	frame = &usbvision->frame[vb->index];
H
Hans Verkuil 已提交
770
	if (frame->grabstate >= frame_state_ready)
771
		vb->flags |= V4L2_BUF_FLAG_QUEUED;
H
Hans Verkuil 已提交
772
	if (frame->grabstate >= frame_state_done)
773
		vb->flags |= V4L2_BUF_FLAG_DONE;
H
Hans Verkuil 已提交
774
	if (frame->grabstate == frame_state_unused)
775 776 777
		vb->flags |= V4L2_BUF_FLAG_MAPPED;
	vb->memory = V4L2_MEMORY_MMAP;

H
Hans Verkuil 已提交
778
	vb->m.offset = vb->index * PAGE_ALIGN(usbvision->max_frame_size);
779 780 781

	vb->memory = V4L2_MEMORY_MMAP;
	vb->field = V4L2_FIELD_NONE;
H
Hans Verkuil 已提交
782 783
	vb->length = usbvision->curwidth *
		usbvision->curheight *
784 785 786 787
		usbvision->palette.bytes_per_pixel;
	vb->timestamp = usbvision->frame[vb->index].timestamp;
	vb->sequence = usbvision->frame[vb->index].sequence;
	return 0;
788 789
}

H
Hans Verkuil 已提交
790
static int vidioc_qbuf(struct file *file, void *priv, struct v4l2_buffer *vb)
791
{
792
	struct usb_usbvision *usbvision = video_drvdata(file);
793 794 795 796
	struct usbvision_frame *frame;
	unsigned long lock_flags;

	/* FIXME : works only on VIDEO_CAPTURE MODE, MMAP. */
H
Hans Verkuil 已提交
797
	if (vb->index >= usbvision->num_frames)
798 799 800 801
		return -EINVAL;

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

H
Hans Verkuil 已提交
802
	if (frame->grabstate != frame_state_unused)
803 804 805
		return -EAGAIN;

	/* Mark it as ready and enqueue frame */
806 807
	frame->grabstate = frame_state_ready;
	frame->scanstate = scan_state_scanning;
808 809 810 811 812 813 814 815 816 817 818 819 820 821
	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 已提交
822
static int vidioc_dqbuf(struct file *file, void *priv, struct v4l2_buffer *vb)
823
{
824
	struct usb_usbvision *usbvision = video_drvdata(file);
825 826 827 828 829
	int ret;
	struct usbvision_frame *f;
	unsigned long lock_flags;

	if (list_empty(&(usbvision->outqueue))) {
830
		if (usbvision->streaming == stream_idle)
831 832 833 834 835 836 837 838 839 840 841 842 843 844
			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);

845
	f->grabstate = frame_state_unused;
846 847 848 849

	vb->memory = V4L2_MEMORY_MMAP;
	vb->flags = V4L2_BUF_FLAG_MAPPED |
		V4L2_BUF_FLAG_QUEUED |
850 851
		V4L2_BUF_FLAG_DONE |
		V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC;
852 853 854 855 856 857 858 859 860 861 862
	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)
{
863
	struct usb_usbvision *usbvision = video_drvdata(file);
864

865
	usbvision->streaming = stream_on;
866
	call_all(usbvision, video, s_stream, 1);
867 868 869 870 871 872 873

	return 0;
}

static int vidioc_streamoff(struct file *file,
			    void *priv, enum v4l2_buf_type type)
{
874
	struct usb_usbvision *usbvision = video_drvdata(file);
875 876 877 878

	if (type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
		return -EINVAL;

H
Hans Verkuil 已提交
879
	if (usbvision->streaming == stream_on) {
880 881
		usbvision_stream_interrupt(usbvision);
		/* Stop all video streamings */
882
		call_all(usbvision, video, s_stream, 0);
883 884 885 886 887 888
	}
	usbvision_empty_framequeues(usbvision);

	return 0;
}

H
Hans Verkuil 已提交
889
static int vidioc_enum_fmt_vid_cap(struct file *file, void  *priv,
890 891
					struct v4l2_fmtdesc *vfd)
{
H
Hans Verkuil 已提交
892
	if (vfd->index >= USBVISION_SUPPORTED_PALETTES - 1)
893
		return -EINVAL;
H
Hans Verkuil 已提交
894
	strcpy(vfd->description, usbvision_v4l2_format[vfd->index].desc);
895 896 897 898
	vfd->pixelformat = usbvision_v4l2_format[vfd->index].format;
	return 0;
}

H
Hans Verkuil 已提交
899
static int vidioc_g_fmt_vid_cap(struct file *file, void *priv,
900 901
					struct v4l2_format *vf)
{
902
	struct usb_usbvision *usbvision = video_drvdata(file);
903 904 905 906
	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 已提交
907 908
		usbvision->curwidth * usbvision->palette.bytes_per_pixel;
	vf->fmt.pix.sizeimage = vf->fmt.pix.bytesperline * usbvision->curheight;
909 910 911 912 913 914
	vf->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
	vf->fmt.pix.field = V4L2_FIELD_NONE; /* Always progressive image */

	return 0;
}

H
Hans Verkuil 已提交
915
static int vidioc_try_fmt_vid_cap(struct file *file, void *priv,
916 917
			       struct v4l2_format *vf)
{
918
	struct usb_usbvision *usbvision = video_drvdata(file);
919
	int format_idx;
920 921

	/* Find requested format in available ones */
H
Hans Verkuil 已提交
922 923
	for (format_idx = 0; format_idx < USBVISION_SUPPORTED_PALETTES; format_idx++) {
		if (vf->fmt.pix.pixelformat ==
924 925
		   usbvision_v4l2_format[format_idx].format) {
			usbvision->palette = usbvision_v4l2_format[format_idx];
926 927 928 929
			break;
		}
	}
	/* robustness */
H
Hans Verkuil 已提交
930
	if (format_idx == USBVISION_SUPPORTED_PALETTES)
931 932 933 934 935 936 937 938 939 940 941
		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;
}

942
static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
943 944
			       struct v4l2_format *vf)
{
945
	struct usb_usbvision *usbvision = video_drvdata(file);
946 947
	int ret;

H
Hans Verkuil 已提交
948 949
	ret = vidioc_try_fmt_vid_cap(file, priv, vf);
	if (ret)
950 951 952
		return ret;

	/* stop io in case it is already in progress */
H
Hans Verkuil 已提交
953 954 955
	if (usbvision->streaming == stream_on) {
		ret = usbvision_stream_interrupt(usbvision);
		if (ret)
956 957 958 959 960
			return ret;
	}
	usbvision_frames_free(usbvision);
	usbvision_empty_framequeues(usbvision);

961
	usbvision->cur_frame = NULL;
962 963 964 965 966 967

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

	return 0;
}
968

969
static ssize_t usbvision_read(struct file *file, char __user *buf,
970 971
		      size_t count, loff_t *ppos)
{
972
	struct usb_usbvision *usbvision = video_drvdata(file);
973 974
	int noblock = file->f_flags & O_NONBLOCK;
	unsigned long lock_flags;
H
Hans Verkuil 已提交
975
	int ret, i;
976 977
	struct usbvision_frame *frame;

978
	PDEBUG(DBG_IO, "%s: %ld bytes, noblock=%d", __func__,
979
	       (unsigned long)count, noblock);
980 981 982 983

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

984 985 986
	/* 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 已提交
987
	if (!usbvision->num_frames) {
988 989
		/* First, allocate some frames to work with
		   if this has not been done with VIDIOC_REQBUF */
990 991
		usbvision_frames_free(usbvision);
		usbvision_empty_framequeues(usbvision);
H
Hans Verkuil 已提交
992
		usbvision_frames_alloc(usbvision, USBVISION_NUMFRAMES);
993 994
	}

H
Hans Verkuil 已提交
995
	if (usbvision->streaming != stream_on) {
996
		/* no stream is running, make it running ! */
997
		usbvision->streaming = stream_on;
998
		call_all(usbvision, video, s_stream, 1);
999
	}
1000

1001 1002
	/* Then, enqueue as many frames as possible
	   (like a user of VIDIOC_QBUF would do) */
H
Hans Verkuil 已提交
1003
	for (i = 0; i < usbvision->num_frames; i++) {
1004
		frame = &usbvision->frame[i];
H
Hans Verkuil 已提交
1005
		if (frame->grabstate == frame_state_unused) {
1006
			/* Mark it as ready and enqueue frame */
1007 1008
			frame->grabstate = frame_state_ready;
			frame->scanstate = scan_state_scanning;
1009 1010
			/* Accumulated in usbvision_parse_data() */
			frame->scanlength = 0;
1011 1012 1013 1014 1015 1016

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

			spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
			list_add_tail(&frame->frame, &usbvision->inqueue);
1017 1018
			spin_unlock_irqrestore(&usbvision->queue_lock,
					       lock_flags);
1019 1020 1021 1022 1023
		}
	}

	/* Then try to steal a frame (like a VIDIOC_DQBUF would do) */
	if (list_empty(&(usbvision->outqueue))) {
H
Hans Verkuil 已提交
1024
		if (noblock)
1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040
			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 */
1041
	if (frame->grabstate == frame_state_error) {
1042 1043 1044 1045
		frame->bytes_read = 0;
		return 0;
	}

1046
	PDEBUG(DBG_IO, "%s: frmx=%d, bytes_read=%ld, scanlength=%ld",
1047
	       __func__,
1048
	       frame->index, frame->bytes_read, frame->scanlength);
1049 1050 1051 1052 1053

	/* 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 已提交
1054
	if (copy_to_user(buf, frame->data + frame->bytes_read, count))
1055 1056 1057
		return -EFAULT;

	frame->bytes_read += count;
1058
	PDEBUG(DBG_IO, "%s: {copy} count used=%ld, new bytes_read=%ld",
1059
	       __func__,
1060
	       (unsigned long)count, frame->bytes_read);
1061

1062
	/* For now, forget the frame if it has not been read in one shot. */
H
Hans Verkuil 已提交
1063
/*	if (frame->bytes_read >= frame->scanlength) {*/ /* All data has been read */
1064 1065 1066
		frame->bytes_read = 0;

		/* Mark it as available to be used again. */
1067
		frame->grabstate = frame_state_unused;
H
Hans Verkuil 已提交
1068
/*	} */
1069 1070 1071 1072

	return count;
}

1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086
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)
1087 1088 1089 1090 1091
{
	unsigned long size = vma->vm_end - vma->vm_start,
		start = vma->vm_start;
	void *pos;
	u32 i;
1092
	struct usb_usbvision *usbvision = video_drvdata(file);
1093

1094 1095
	PDEBUG(DBG_MMAP, "mmap");

H
Hans Verkuil 已提交
1096
	if (!USBVISION_IS_OPERATIONAL(usbvision))
1097 1098 1099
		return -EFAULT;

	if (!(vma->vm_flags & VM_WRITE) ||
1100
	    size != PAGE_ALIGN(usbvision->max_frame_size)) {
1101 1102 1103
		return -EINVAL;
	}

1104
	for (i = 0; i < usbvision->num_frames; i++) {
1105 1106
		if (((PAGE_ALIGN(usbvision->max_frame_size)*i) >> PAGE_SHIFT) ==
		    vma->vm_pgoff)
1107 1108
			break;
	}
1109
	if (i == usbvision->num_frames) {
1110 1111
		PDEBUG(DBG_MMAP,
		       "mmap: user supplied mapping address is out of range");
1112 1113 1114 1115
		return -EINVAL;
	}

	/* VM_IO is eventually going to replace PageReserved altogether */
1116
	vma->vm_flags |= VM_IO | VM_DONTEXPAND | VM_DONTDUMP;
1117 1118 1119 1120

	pos = usbvision->frame[i].data;
	while (size > 0) {
		if (vm_insert_page(vma, start, vmalloc_to_page(pos))) {
1121
			PDEBUG(DBG_MMAP, "mmap: vm_insert_page failed");
1122 1123 1124 1125 1126 1127 1128 1129 1130 1131
			return -EAGAIN;
		}
		start += PAGE_SIZE;
		pos += PAGE_SIZE;
		size -= PAGE_SIZE;
	}

	return 0;
}

1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142
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;
}
1143 1144 1145 1146 1147

/*
 * Here comes the stuff for radio on usbvision based devices
 *
 */
1148
static int usbvision_radio_open(struct file *file)
1149
{
1150
	struct usb_usbvision *usbvision = video_drvdata(file);
1151
	int err_code = 0;
1152

1153
	PDEBUG(DBG_IO, "%s:", __func__);
1154

1155 1156
	if (mutex_lock_interruptible(&usbvision->v4l2_lock))
		return -ERESTARTSYS;
1157
	if (usbvision->user) {
1158 1159 1160
		dev_err(&usbvision->rdev->dev,
			"%s: Someone tried to open an already opened USBVision Radio!\n",
				__func__);
1161
		err_code = -EBUSY;
H
Hans Verkuil 已提交
1162 1163
	} else {
		if (power_on_at_open) {
1164
			usbvision_reset_power_off_timer(usbvision);
1165 1166
			if (usbvision->power == 0) {
				usbvision_power_on(usbvision);
1167
				usbvision_i2c_register(usbvision);
1168 1169 1170
			}
		}

1171
		/* Alternate interface 1 is is the biggest frame size */
1172 1173 1174 1175
		err_code = usbvision_set_alternate(usbvision);
		if (err_code < 0) {
			usbvision->last_error = err_code;
			err_code = -EBUSY;
1176
			goto out;
1177 1178
		}

1179
		/* If so far no errors then we shall start the radio */
1180
		usbvision->radio = 1;
1181
		call_all(usbvision, tuner, s_radio);
1182 1183 1184 1185
		usbvision_set_audio(usbvision, USBVISION_AUDIO_RADIO);
		usbvision->user++;
	}

1186 1187
	if (err_code) {
		if (power_on_at_open) {
1188
			usbvision_i2c_unregister(usbvision);
1189 1190 1191 1192
			usbvision_power_off(usbvision);
			usbvision->initialized = 0;
		}
	}
1193
out:
1194
	mutex_unlock(&usbvision->v4l2_lock);
1195
	return err_code;
1196 1197 1198
}


1199
static int usbvision_radio_close(struct file *file)
1200
{
1201
	struct usb_usbvision *usbvision = video_drvdata(file);
1202
	int err_code = 0;
1203 1204 1205

	PDEBUG(DBG_IO, "");

1206
	mutex_lock(&usbvision->v4l2_lock);
1207
	/* Set packet size to 0 */
H
Hans Verkuil 已提交
1208
	usbvision->iface_alt = 0;
1209 1210
	err_code = usb_set_interface(usbvision->dev, usbvision->iface,
				    usbvision->iface_alt);
1211

1212
	usbvision_audio_off(usbvision);
H
Hans Verkuil 已提交
1213
	usbvision->radio = 0;
1214 1215
	usbvision->user--;

1216 1217
	if (power_on_at_open) {
		usbvision_set_power_off_timer(usbvision);
1218 1219 1220 1221
		usbvision->initialized = 0;
	}

	if (usbvision->remove_pending) {
1222
		printk(KERN_INFO "%s: Final disconnect\n", __func__);
1223 1224 1225
		usbvision_release(usbvision);
	}

1226
	mutex_unlock(&usbvision->v4l2_lock);
1227
	PDEBUG(DBG_IO, "success");
1228
	return err_code;
1229 1230
}

1231
/* Video registration stuff */
1232

1233
/* Video template */
1234
static const struct v4l2_file_operations usbvision_fops = {
1235 1236 1237 1238 1239
	.owner             = THIS_MODULE,
	.open		= usbvision_v4l2_open,
	.release	= usbvision_v4l2_close,
	.read		= usbvision_v4l2_read,
	.mmap		= usbvision_v4l2_mmap,
1240
	.unlocked_ioctl	= video_ioctl2,
H
Hans Verkuil 已提交
1241
/*	.poll		= video_poll, */
1242
};
1243 1244

static const struct v4l2_ioctl_ops usbvision_ioctl_ops = {
1245
	.vidioc_querycap      = vidioc_querycap,
1246 1247 1248 1249
	.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,
1250 1251 1252 1253 1254
	.vidioc_reqbufs       = vidioc_reqbufs,
	.vidioc_querybuf      = vidioc_querybuf,
	.vidioc_qbuf          = vidioc_qbuf,
	.vidioc_dqbuf         = vidioc_dqbuf,
	.vidioc_s_std         = vidioc_s_std,
1255
	.vidioc_g_std         = vidioc_g_std,
1256 1257 1258 1259 1260
	.vidioc_enum_input    = vidioc_enum_input,
	.vidioc_g_input       = vidioc_g_input,
	.vidioc_s_input       = vidioc_s_input,
	.vidioc_queryctrl     = vidioc_queryctrl,
	.vidioc_g_audio       = vidioc_g_audio,
1261
	.vidioc_s_audio       = vidioc_s_audio,
1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273
	.vidioc_g_ctrl        = vidioc_g_ctrl,
	.vidioc_s_ctrl        = vidioc_s_ctrl,
	.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,
#ifdef CONFIG_VIDEO_ADV_DEBUG
	.vidioc_g_register    = vidioc_g_register,
	.vidioc_s_register    = vidioc_s_register,
#endif
1274 1275 1276 1277
};

static struct video_device usbvision_video_template = {
	.fops		= &usbvision_fops,
H
Hans Verkuil 已提交
1278
	.ioctl_ops	= &usbvision_ioctl_ops,
1279 1280
	.name           = "usbvision-video",
	.release	= video_device_release,
H
Hans Verkuil 已提交
1281
	.tvnorms        = USBVISION_NORMS,
1282 1283 1284
};


1285
/* Radio template */
1286
static const struct v4l2_file_operations usbvision_radio_fops = {
1287 1288 1289
	.owner             = THIS_MODULE,
	.open		= usbvision_radio_open,
	.release	= usbvision_radio_close,
1290
	.unlocked_ioctl	= video_ioctl2,
1291 1292
};

1293
static const struct v4l2_ioctl_ops usbvision_radio_ioctl_ops = {
1294 1295 1296 1297 1298 1299
	.vidioc_querycap      = vidioc_querycap,
	.vidioc_enum_input    = vidioc_enum_input,
	.vidioc_g_input       = vidioc_g_input,
	.vidioc_s_input       = vidioc_s_input,
	.vidioc_queryctrl     = vidioc_queryctrl,
	.vidioc_g_audio       = vidioc_g_audio,
1300
	.vidioc_s_audio       = vidioc_s_audio,
1301 1302 1303 1304 1305 1306
	.vidioc_g_ctrl        = vidioc_g_ctrl,
	.vidioc_s_ctrl        = vidioc_s_ctrl,
	.vidioc_g_tuner       = vidioc_g_tuner,
	.vidioc_s_tuner       = vidioc_s_tuner,
	.vidioc_g_frequency   = vidioc_g_frequency,
	.vidioc_s_frequency   = vidioc_s_frequency,
1307 1308 1309 1310
};

static struct video_device usbvision_radio_template = {
	.fops		= &usbvision_radio_fops,
H
Hans Verkuil 已提交
1311
	.name		= "usbvision-radio",
1312
	.release	= video_device_release,
H
Hans Verkuil 已提交
1313
	.ioctl_ops	= &usbvision_radio_ioctl_ops,
1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324
};


static struct video_device *usbvision_vdev_init(struct usb_usbvision *usbvision,
					struct video_device *vdev_template,
					char *name)
{
	struct usb_device *usb_dev = usbvision->dev;
	struct video_device *vdev;

	if (usb_dev == NULL) {
1325 1326
		dev_err(&usbvision->dev->dev,
			"%s: usbvision->dev is not set\n", __func__);
1327 1328 1329 1330
		return NULL;
	}

	vdev = video_device_alloc();
H
Hans Verkuil 已提交
1331
	if (NULL == vdev)
1332 1333
		return NULL;
	*vdev = *vdev_template;
1334
	vdev->lock = &usbvision->v4l2_lock;
1335
	vdev->v4l2_dev = &usbvision->v4l2_dev;
1336 1337 1338 1339 1340
	snprintf(vdev->name, sizeof(vdev->name), "%s", name);
	video_set_drvdata(vdev, usbvision);
	return vdev;
}

1341
/* unregister video4linux devices */
1342 1343
static void usbvision_unregister_video(struct usb_usbvision *usbvision)
{
1344
	/* Radio Device: */
1345
	if (usbvision->rdev) {
1346 1347
		PDEBUG(DBG_PROBE, "unregister %s [v4l2]",
		       video_device_node_name(usbvision->rdev));
H
Hans Verkuil 已提交
1348
		if (video_is_registered(usbvision->rdev))
1349
			video_unregister_device(usbvision->rdev);
H
Hans Verkuil 已提交
1350
		else
1351 1352 1353 1354
			video_device_release(usbvision->rdev);
		usbvision->rdev = NULL;
	}

1355
	/* Video Device: */
1356
	if (usbvision->vdev) {
1357 1358
		PDEBUG(DBG_PROBE, "unregister %s [v4l2]",
		       video_device_node_name(usbvision->vdev));
H
Hans Verkuil 已提交
1359
		if (video_is_registered(usbvision->vdev))
1360
			video_unregister_device(usbvision->vdev);
H
Hans Verkuil 已提交
1361
		else
1362 1363 1364 1365 1366
			video_device_release(usbvision->vdev);
		usbvision->vdev = NULL;
	}
}

1367
/* register video4linux devices */
1368
static int usbvision_register_video(struct usb_usbvision *usbvision)
1369
{
1370
	/* Video Device: */
1371 1372 1373
	usbvision->vdev = usbvision_vdev_init(usbvision,
					      &usbvision_video_template,
					      "USBVision Video");
H
Hans Verkuil 已提交
1374
	if (usbvision->vdev == NULL)
1375
		goto err_exit;
H
Hans Verkuil 已提交
1376
	if (video_register_device(usbvision->vdev, VFL_TYPE_GRABBER, video_nr) < 0)
1377
		goto err_exit;
1378 1379
	printk(KERN_INFO "USBVision[%d]: registered USBVision Video device %s [v4l2]\n",
	       usbvision->nr, video_device_node_name(usbvision->vdev));
1380

1381
	/* Radio Device: */
1382
	if (usbvision_device_data[usbvision->dev_model].radio) {
1383
		/* usbvision has radio */
1384 1385 1386
		usbvision->rdev = usbvision_vdev_init(usbvision,
						      &usbvision_radio_template,
						      "USBVision Radio");
H
Hans Verkuil 已提交
1387
		if (usbvision->rdev == NULL)
1388
			goto err_exit;
H
Hans Verkuil 已提交
1389
		if (video_register_device(usbvision->rdev, VFL_TYPE_RADIO, radio_nr) < 0)
1390
			goto err_exit;
1391 1392
		printk(KERN_INFO "USBVision[%d]: registered USBVision Radio device %s [v4l2]\n",
		       usbvision->nr, video_device_node_name(usbvision->rdev));
1393
	}
1394
	/* all done */
1395 1396 1397
	return 0;

 err_exit:
1398 1399 1400
	dev_err(&usbvision->dev->dev,
		"USBVision[%d]: video_register_device() failed\n",
			usbvision->nr);
1401 1402 1403 1404 1405 1406 1407
	usbvision_unregister_video(usbvision);
	return -1;
}

/*
 * usbvision_alloc()
 *
1408 1409
 * This code allocates the struct usb_usbvision.
 * It is filled with default values.
1410 1411 1412 1413
 *
 * Returns NULL on error, a pointer to usb_usbvision else.
 *
 */
1414 1415
static struct usb_usbvision *usbvision_alloc(struct usb_device *dev,
					     struct usb_interface *intf)
1416 1417 1418
{
	struct usb_usbvision *usbvision;

1419 1420 1421
	usbvision = kzalloc(sizeof(struct usb_usbvision), GFP_KERNEL);
	if (usbvision == NULL)
		return NULL;
1422 1423

	usbvision->dev = dev;
1424
	if (v4l2_device_register(&intf->dev, &usbvision->v4l2_dev))
1425
		goto err_free;
1426

1427
	mutex_init(&usbvision->v4l2_lock);
1428

1429
	/* prepare control urb for control messages during interrupts */
1430 1431
	usbvision->ctrl_urb = usb_alloc_urb(USBVISION_URB_FRAMES, GFP_KERNEL);
	if (usbvision->ctrl_urb == NULL)
1432
		goto err_unreg;
1433
	init_waitqueue_head(&usbvision->ctrl_urb_wq);
1434

1435
	usbvision_init_power_off_timer(usbvision);
1436 1437 1438

	return usbvision;

1439 1440 1441 1442
err_unreg:
	v4l2_device_unregister(&usbvision->v4l2_dev);
err_free:
	kfree(usbvision);
1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456
	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, "");

1457
	usbvision_reset_power_off_timer(usbvision);
1458 1459 1460 1461 1462 1463

	usbvision->initialized = 0;

	usbvision_remove_sysfs(usbvision->vdev);
	usbvision_unregister_video(usbvision);

H
Hans Verkuil 已提交
1464
	usb_free_urb(usbvision->ctrl_urb);
1465

1466
	v4l2_device_unregister(&usbvision->v4l2_dev);
1467 1468 1469 1470 1471 1472
	kfree(usbvision);

	PDEBUG(DBG_PROBE, "success");
}


1473
/*********************** usb interface **********************************/
1474 1475 1476

static void usbvision_configure_video(struct usb_usbvision *usbvision)
{
1477
	int model;
1478 1479 1480 1481

	if (usbvision == NULL)
		return;

1482
	model = usbvision->dev_model;
1483
	usbvision->palette = usbvision_v4l2_format[2]; /* V4L2_PIX_FMT_RGB24; */
1484

1485 1486 1487
	if (usbvision_device_data[usbvision->dev_model].vin_reg2_override) {
		usbvision->vin_reg2_preset =
			usbvision_device_data[usbvision->dev_model].vin_reg2;
1488
	} else {
1489
		usbvision->vin_reg2_preset = 0;
1490 1491
	}

1492
	usbvision->tvnorm_id = usbvision_device_data[model].video_norm;
1493

1494
	usbvision->video_inputs = usbvision_device_data[model].video_channels;
1495 1496 1497
	usbvision->ctl_input = 0;

	/* This should be here to make i2c clients to be able to register */
1498
	/* first switch off audio */
1499 1500
	if (usbvision_device_data[model].audio_channels > 0)
		usbvision_audio_off(usbvision);
1501
	if (!power_on_at_open) {
1502 1503
		/* and then power up the noisy tuner */
		usbvision_power_on(usbvision);
1504
		usbvision_i2c_register(usbvision);
1505 1506 1507 1508 1509 1510 1511 1512 1513 1514
	}
}

/*
 * usbvision_probe()
 *
 * This procedure queries device descriptor and accepts the interface
 * if it looks like USBVISION video device
 *
 */
1515 1516
static int usbvision_probe(struct usb_interface *intf,
			   const struct usb_device_id *devid)
1517
{
1518 1519
	struct usb_device *dev = usb_get_dev(interface_to_usbdev(intf));
	struct usb_interface *uif;
1520 1521 1522 1523
	__u8 ifnum = intf->altsetting->desc.bInterfaceNumber;
	const struct usb_host_interface *interface;
	struct usb_usbvision *usbvision = NULL;
	const struct usb_endpoint_descriptor *endpoint;
H
Hans Verkuil 已提交
1524
	int model, i;
1525 1526

	PDEBUG(DBG_PROBE, "VID=%#04x, PID=%#04x, ifnum=%u",
1527 1528
				dev->descriptor.idVendor,
				dev->descriptor.idProduct, ifnum);
1529

1530
	model = devid->driver_info;
H
Hans Verkuil 已提交
1531 1532
	if (model < 0 || model >= usbvision_device_data_size) {
		PDEBUG(DBG_PROBE, "model out of bounds %d", model);
1533 1534
		return -ENODEV;
	}
1535
	printk(KERN_INFO "%s: %s found\n", __func__,
1536
				usbvision_device_data[model].model_string);
1537

H
Hans Verkuil 已提交
1538
	if (usbvision_device_data[model].interface >= 0)
1539
		interface = &dev->actconfig->interface[usbvision_device_data[model].interface]->altsetting[0];
H
Hans Verkuil 已提交
1540
	else
1541 1542
		interface = &dev->actconfig->interface[ifnum]->altsetting[0];
	endpoint = &interface->endpoint[1].desc;
1543
	if (!usb_endpoint_xfer_isoc(endpoint)) {
1544
		dev_err(&intf->dev, "%s: interface %d. has non-ISO endpoint!\n",
1545
		    __func__, ifnum);
1546
		dev_err(&intf->dev, "%s: Endpoint attributes %d",
1547
		    __func__, endpoint->bmAttributes);
1548 1549
		return -ENODEV;
	}
1550
	if (usb_endpoint_dir_out(endpoint)) {
1551
		dev_err(&intf->dev, "%s: interface %d. has ISO OUT endpoint!\n",
1552
		    __func__, ifnum);
1553 1554 1555
		return -ENODEV;
	}

1556 1557
	usbvision = usbvision_alloc(dev, intf);
	if (usbvision == NULL) {
1558
		dev_err(&intf->dev, "%s: couldn't allocate USBVision struct\n", __func__);
1559 1560
		return -ENOMEM;
	}
1561

H
Hans Verkuil 已提交
1562
	if (dev->descriptor.bNumConfigurations > 1)
1563
		usbvision->bridge_type = BRIDGE_NT1004;
H
Hans Verkuil 已提交
1564
	else if (model == DAZZLE_DVC_90_REV_1_SECAM)
1565
		usbvision->bridge_type = BRIDGE_NT1005;
H
Hans Verkuil 已提交
1566
	else
1567 1568
		usbvision->bridge_type = BRIDGE_NT1003;
	PDEBUG(DBG_PROBE, "bridge_type %d", usbvision->bridge_type);
1569

1570 1571 1572
	/* compute alternate max packet sizes */
	uif = dev->actconfig->interface[0];

H
Hans Verkuil 已提交
1573 1574 1575
	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);
1576
	if (usbvision->alt_max_pkt_size == NULL) {
1577
		dev_err(&intf->dev, "usbvision: out of memory!\n");
1578 1579 1580
		return -ENOMEM;
	}

H
Hans Verkuil 已提交
1581
	for (i = 0; i < usbvision->num_alt; i++) {
1582 1583 1584 1585
		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 已提交
1586
		PDEBUG(DBG_PROBE, "Alternate setting %i, max size= %i", i,
1587 1588 1589 1590
		       usbvision->alt_max_pkt_size[i]);
	}


1591 1592
	usbvision->nr = usbvision_nr++;

1593
	usbvision->have_tuner = usbvision_device_data[model].tuner;
H
Hans Verkuil 已提交
1594
	if (usbvision->have_tuner)
1595
		usbvision->tuner_type = usbvision_device_data[model].tuner_type;
1596

1597
	usbvision->dev_model = model;
1598 1599
	usbvision->remove_pending = 0;
	usbvision->iface = ifnum;
1600
	usbvision->iface_alt = 0;
1601
	usbvision->video_endp = endpoint->bEndpointAddress;
1602
	usbvision->isoc_packet_size = 0;
1603 1604
	usbvision->usb_bandwidth = 0;
	usbvision->user = 0;
1605
	usbvision->streaming = stream_off;
1606
	usbvision_configure_video(usbvision);
1607
	usbvision_register_video(usbvision);
1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623

	usbvision_create_sysfs(usbvision->vdev);

	PDEBUG(DBG_PROBE, "success");
	return 0;
}


/*
 * 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.
 *
 */
1624
static void usbvision_disconnect(struct usb_interface *intf)
1625
{
1626
	struct usb_usbvision *usbvision = to_usbvision(usb_get_intfdata(intf));
1627 1628 1629 1630

	PDEBUG(DBG_PROBE, "");

	if (usbvision == NULL) {
1631
		pr_err("%s: usb_get_intfdata() failed\n", __func__);
1632 1633 1634
		return;
	}

1635
	mutex_lock(&usbvision->v4l2_lock);
1636

1637
	/* At this time we ask to cancel outstanding URBs */
1638 1639
	usbvision_stop_isoc(usbvision);

1640 1641
	v4l2_device_disconnect(&usbvision->v4l2_dev);

1642
	if (usbvision->power) {
1643
		usbvision_i2c_unregister(usbvision);
1644 1645
		usbvision_power_off(usbvision);
	}
1646
	usbvision->remove_pending = 1;	/* Now all ISO data will be ignored */
1647 1648

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

1651
	mutex_unlock(&usbvision->v4l2_lock);
1652 1653

	if (usbvision->user) {
1654
		printk(KERN_INFO "%s: In use, disconnect pending\n",
1655
		       __func__);
1656 1657
		wake_up_interruptible(&usbvision->wait_frame);
		wake_up_interruptible(&usbvision->wait_stream);
1658
	} else {
1659 1660 1661 1662 1663 1664 1665 1666 1667 1668
		usbvision_release(usbvision);
	}

	PDEBUG(DBG_PROBE, "success");
}

static struct usb_driver usbvision_driver = {
	.name		= "usbvision",
	.id_table	= usbvision_table,
	.probe		= usbvision_probe,
1669
	.disconnect	= usbvision_disconnect,
1670 1671 1672 1673 1674 1675 1676 1677 1678 1679
};

/*
 * usbvision_init()
 *
 * This code is run to initialize the driver.
 *
 */
static int __init usbvision_init(void)
{
1680
	int err_code;
1681 1682 1683 1684 1685

	PDEBUG(DBG_PROBE, "");

	PDEBUG(DBG_IO,  "IO      debugging is enabled [video]");
	PDEBUG(DBG_PROBE, "PROBE   debugging is enabled [video]");
1686
	PDEBUG(DBG_MMAP, "MMAP    debugging is enabled [video]");
1687 1688

	/* disable planar mode support unless compression enabled */
H
Hans Verkuil 已提交
1689
	if (isoc_mode != ISOC_MODE_COMPRESS) {
1690 1691 1692
		/* 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 */
1693 1694
	}

1695
	err_code = usb_register(&usbvision_driver);
1696

1697
	if (err_code == 0) {
1698
		printk(KERN_INFO DRIVER_DESC " : " USBVISION_VERSION_STRING "\n");
1699 1700
		PDEBUG(DBG_PROBE, "success");
	}
1701
	return err_code;
1702 1703 1704 1705
}

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

H
Hans Verkuil 已提交
1708 1709
	usb_deregister(&usbvision_driver);
	PDEBUG(DBG_PROBE, "success");
1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721
}

module_init(usbvision_init);
module_exit(usbvision_exit);

/*
 * Overrides for Emacs so that we follow Linus's tabbing style.
 * ---------------------------------------------------------------------------
 * Local variables:
 * c-basic-offset: 8
 * End:
 */