usbvision-video.c 46.8 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
 *     - Clean up the driver.
 *     - optimization for performance.
 *     - Add Videotext capability (VBI).  Working on it.....
 *     - Check audio for other devices
 *
 */

48
#include <linux/version.h>
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
#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>
#include <asm/io.h>
#include <linux/videodev2.h>
#include <linux/i2c.h>

#include <media/saa7115.h>
#include <media/v4l2-common.h>
65
#include <media/v4l2-ioctl.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
#define DRIVER_AUTHOR "Joerg Heckenbach <joerg@heckenbach-aw.de>,\
 Dwaine Garden <DwaineGarden@rogers.com>"
75 76 77 78 79 80
#define DRIVER_NAME "usbvision"
#define DRIVER_ALIAS "USBVision"
#define DRIVER_DESC "USBVision USB Video Device Driver for Linux"
#define DRIVER_LICENSE "GPL"
#define USBVISION_DRIVER_VERSION_MAJOR 0
#define USBVISION_DRIVER_VERSION_MINOR 9
81
#define USBVISION_DRIVER_VERSION_PATCHLEVEL 10
82 83 84 85 86 87
#define USBVISION_DRIVER_VERSION KERNEL_VERSION(USBVISION_DRIVER_VERSION_MAJOR,\
USBVISION_DRIVER_VERSION_MINOR,\
USBVISION_DRIVER_VERSION_PATCHLEVEL)
#define USBVISION_VERSION_STRING __stringify(USBVISION_DRIVER_VERSION_MAJOR)\
 "." __stringify(USBVISION_DRIVER_VERSION_MINOR)\
 "." __stringify(USBVISION_DRIVER_VERSION_PATCHLEVEL)
88 89 90 91 92

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


#ifdef USBVISION_DEBUG
93
	#define PDEBUG(level, fmt, args...) { \
94
		if (video_debug & (level)) \
95 96
			printk(KERN_INFO KBUILD_MODNAME ":[%s:%d] " fmt, \
				__func__, __LINE__ , ## args); \
97
	}
98 99 100 101 102 103
#else
	#define PDEBUG(level, fmt, args...) do {} while(0)
#endif

#define DBG_IO		1<<1
#define DBG_PROBE	1<<2
104
#define DBG_MMAP	1<<3
105 106 107 108 109 110

//String operations
#define rmspace(str)	while(*str==' ') str++;
#define goto2next(str)	while(*str!=' ') str++; while(*str==' ') str++;


111
/* sequential number of usbvision device */
112
static int usbvision_nr;
113 114 115 116 117 118 119 120 121 122 123 124

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

125
/* Function prototypes */
126 127
static void usbvision_release(struct usb_usbvision *usbvision);

J
Joe Perches 已提交
128
/* Default initialization of device driver parameters */
129 130 131
/* Set the default format for ISOC endpoint */
static int isocMode = ISOC_MODE_COMPRESS;
/* Set the default Debug Mode of the device driver */
132
static int video_debug;
133 134 135 136 137 138 139 140 141 142
/* Set the default device to power on at startup */
static int PowerOnAtOpen = 1;
/* 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 */
143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
module_param(isocMode, int, 0444);
module_param(video_debug, int, 0444);
module_param(PowerOnAtOpen, int, 0444);
module_param(video_nr, int, 0444);
module_param(radio_nr, int, 0444);

MODULE_PARM_DESC(isocMode, " Set the default format for ISOC endpoint.  Default: 0x60 (Compression On)");
MODULE_PARM_DESC(video_debug, " Set the default Debug Mode of the device driver.  Default: 0 (Off)");
MODULE_PARM_DESC(PowerOnAtOpen, " Set the default device to power on when device is opened.  Default: 1 (On)");
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)");


// Misc stuff
MODULE_AUTHOR(DRIVER_AUTHOR);
MODULE_DESCRIPTION(DRIVER_DESC);
MODULE_LICENSE(DRIVER_LICENSE);
160 161
MODULE_VERSION(USBVISION_VERSION_STRING);
MODULE_ALIAS(DRIVER_ALIAS);
162 163


164 165 166 167 168 169 170
/*****************************************************************************/
/* 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                            */
/*****************************************************************************/
171 172 173

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

174
static inline struct usb_usbvision *cd_to_usbvision(struct device *cd)
175
{
176
	struct video_device *vdev =
177
		container_of(cd, struct video_device, dev);
178 179 180
	return video_get_drvdata(vdev);
}

181 182
static ssize_t show_version(struct device *cd,
			    struct device_attribute *attr, char *buf)
183 184 185
{
	return sprintf(buf, "%s\n", USBVISION_VERSION_STRING);
}
186
static DEVICE_ATTR(version, S_IRUGO, show_version, NULL);
187

188 189
static ssize_t show_model(struct device *cd,
			  struct device_attribute *attr, char *buf)
190
{
191
	struct video_device *vdev =
192
		container_of(cd, struct video_device, dev);
193
	struct usb_usbvision *usbvision = video_get_drvdata(vdev);
194 195
	return sprintf(buf, "%s\n",
		       usbvision_device_data[usbvision->DevModel].ModelString);
196
}
197
static DEVICE_ATTR(model, S_IRUGO, show_model, NULL);
198

199 200
static ssize_t show_hue(struct device *cd,
			struct device_attribute *attr, char *buf)
201
{
202
	struct video_device *vdev =
203
		container_of(cd, struct video_device, dev);
204 205 206 207
	struct usb_usbvision *usbvision = video_get_drvdata(vdev);
	struct v4l2_control ctrl;
	ctrl.id = V4L2_CID_HUE;
	ctrl.value = 0;
208
	if(usbvision->user)
209
		call_all(usbvision, core, g_ctrl, &ctrl);
210
	return sprintf(buf, "%d\n", ctrl.value);
211
}
212
static DEVICE_ATTR(hue, S_IRUGO, show_hue, NULL);
213

214 215
static ssize_t show_contrast(struct device *cd,
			     struct device_attribute *attr, char *buf)
216
{
217
	struct video_device *vdev =
218
		container_of(cd, struct video_device, dev);
219 220 221 222
	struct usb_usbvision *usbvision = video_get_drvdata(vdev);
	struct v4l2_control ctrl;
	ctrl.id = V4L2_CID_CONTRAST;
	ctrl.value = 0;
223
	if(usbvision->user)
224
		call_all(usbvision, core, g_ctrl, &ctrl);
225
	return sprintf(buf, "%d\n", ctrl.value);
226
}
227
static DEVICE_ATTR(contrast, S_IRUGO, show_contrast, NULL);
228

229 230
static ssize_t show_brightness(struct device *cd,
			       struct device_attribute *attr, char *buf)
231
{
232
	struct video_device *vdev =
233
		container_of(cd, struct video_device, dev);
234 235 236 237
	struct usb_usbvision *usbvision = video_get_drvdata(vdev);
	struct v4l2_control ctrl;
	ctrl.id = V4L2_CID_BRIGHTNESS;
	ctrl.value = 0;
238
	if(usbvision->user)
239
		call_all(usbvision, core, g_ctrl, &ctrl);
240
	return sprintf(buf, "%d\n", ctrl.value);
241
}
242
static DEVICE_ATTR(brightness, S_IRUGO, show_brightness, NULL);
243

244 245
static ssize_t show_saturation(struct device *cd,
			       struct device_attribute *attr, char *buf)
246
{
247
	struct video_device *vdev =
248
		container_of(cd, struct video_device, dev);
249 250 251 252
	struct usb_usbvision *usbvision = video_get_drvdata(vdev);
	struct v4l2_control ctrl;
	ctrl.id = V4L2_CID_SATURATION;
	ctrl.value = 0;
253
	if(usbvision->user)
254
		call_all(usbvision, core, g_ctrl, &ctrl);
255
	return sprintf(buf, "%d\n", ctrl.value);
256
}
257
static DEVICE_ATTR(saturation, S_IRUGO, show_saturation, NULL);
258

259 260
static ssize_t show_streaming(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 266
	return sprintf(buf, "%s\n",
		       YES_NO(usbvision->streaming==Stream_On?1:0));
267
}
268
static DEVICE_ATTR(streaming, S_IRUGO, show_streaming, NULL);
269

270 271
static ssize_t show_compression(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 277
	return sprintf(buf, "%s\n",
		       YES_NO(usbvision->isocMode==ISOC_MODE_COMPRESS));
278
}
279
static DEVICE_ATTR(compression, S_IRUGO, show_compression, NULL);
280

281 282
static ssize_t show_device_bridge(struct device *cd,
				  struct device_attribute *attr, char *buf)
283
{
284
	struct video_device *vdev =
285
		container_of(cd, struct video_device, dev);
286 287 288
	struct usb_usbvision *usbvision = video_get_drvdata(vdev);
	return sprintf(buf, "%d\n", usbvision->bridgeType);
}
289
static DEVICE_ATTR(bridge, S_IRUGO, show_device_bridge, NULL);
290 291 292 293

static void usbvision_create_sysfs(struct video_device *vdev)
{
	int res;
294 295 296
	if (!vdev)
		return;
	do {
297
		res = device_create_file(&vdev->dev, &dev_attr_version);
298 299
		if (res<0)
			break;
300
		res = device_create_file(&vdev->dev, &dev_attr_model);
301 302
		if (res<0)
			break;
303
		res = device_create_file(&vdev->dev, &dev_attr_hue);
304 305
		if (res<0)
			break;
306
		res = device_create_file(&vdev->dev, &dev_attr_contrast);
307 308
		if (res<0)
			break;
309
		res = device_create_file(&vdev->dev, &dev_attr_brightness);
310 311
		if (res<0)
			break;
312
		res = device_create_file(&vdev->dev, &dev_attr_saturation);
313 314
		if (res<0)
			break;
315
		res = device_create_file(&vdev->dev, &dev_attr_streaming);
316 317
		if (res<0)
			break;
318
		res = device_create_file(&vdev->dev, &dev_attr_compression);
319 320
		if (res<0)
			break;
321
		res = device_create_file(&vdev->dev, &dev_attr_bridge);
322 323 324 325
		if (res>=0)
			return;
	} while (0);

326
	dev_err(&vdev->dev, "%s error: %d\n", __func__, res);
327 328 329 330 331
}

static void usbvision_remove_sysfs(struct video_device *vdev)
{
	if (vdev) {
332 333 334 335 336 337 338 339 340
		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);
341 342 343 344 345 346 347 348 349 350 351
	}
}

/*
 * 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.
 *
 */
352
static int usbvision_v4l2_open(struct file *file)
353
{
354
	struct usb_usbvision *usbvision = video_drvdata(file);
355 356 357 358 359 360 361 362 363
	int errCode = 0;

	PDEBUG(DBG_IO, "open");

	usbvision_reset_powerOffTimer(usbvision);

	if (usbvision->user)
		errCode = -EBUSY;
	else {
364 365 366
		/* Allocate memory for the scratch ring buffer */
		errCode = usbvision_scratch_alloc(usbvision);
		if (isocMode==ISOC_MODE_COMPRESS) {
367 368
			/* Allocate intermediate decompression buffers
			   only if needed */
369
			errCode = usbvision_decompress_alloc(usbvision);
370 371 372 373 374 375 376 377 378 379 380 381
		}
		if (errCode) {
			/* Deallocate all buffers if trouble */
			usbvision_scratch_free(usbvision);
			usbvision_decompress_free(usbvision);
		}
	}

	/* If so far no errors then we shall start the camera */
	if (!errCode) {
		if (usbvision->power == 0) {
			usbvision_power_on(usbvision);
382
			usbvision_i2c_register(usbvision);
383 384 385 386 387 388 389 390 391 392 393 394 395 396 397
		}

		/* Send init sequence only once, it's large! */
		if (!usbvision->initialized) {
			int setup_ok = 0;
			setup_ok = usbvision_setup(usbvision,isocMode);
			if (setup_ok)
				usbvision->initialized = 1;
			else
				errCode = -EBUSY;
		}

		if (!errCode) {
			usbvision_begin_streaming(usbvision);
			errCode = usbvision_init_isoc(usbvision);
398
			/* device must be initialized before isoc transfer */
399 400
			usbvision_muxsel(usbvision,0);
			usbvision->user++;
401
		} else {
402
			if (PowerOnAtOpen) {
403
				usbvision_i2c_unregister(usbvision);
404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424
				usbvision_power_off(usbvision);
				usbvision->initialized = 0;
			}
		}
	}

	/* prepare queues */
	usbvision_empty_framequeues(usbvision);

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

/*
 * 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().
 *
 */
425
static int usbvision_v4l2_close(struct file *file)
426
{
427
	struct usb_usbvision *usbvision = video_drvdata(file);
428 429 430 431 432 433 434 435

	PDEBUG(DBG_IO, "close");

	usbvision_audio_off(usbvision);
	usbvision_restart_isoc(usbvision);
	usbvision_stop_isoc(usbvision);

	usbvision_decompress_free(usbvision);
436
	usbvision_frames_free(usbvision);
437
	usbvision_empty_framequeues(usbvision);
438 439 440 441 442
	usbvision_scratch_free(usbvision);

	usbvision->user--;

	if (PowerOnAtOpen) {
443 444
		/* power off in a little while
		   to avoid off/on every close/open short sequences */
445 446 447 448 449
		usbvision_set_powerOffTimer(usbvision);
		usbvision->initialized = 0;
	}

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

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


/*
 * usbvision_ioctl()
 *
 * This is part of Video 4 Linux API. The procedure handles ioctl() calls.
 *
 */
465 466
#ifdef CONFIG_VIDEO_ADV_DEBUG
static int vidioc_g_register (struct file *file, void *priv,
467
				struct v4l2_dbg_register *reg)
468
{
469
	struct usb_usbvision *usbvision = video_drvdata(file);
470
	int errCode;
471

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

487
static int vidioc_s_register (struct file *file, void *priv,
488
				struct v4l2_dbg_register *reg)
489
{
490
	struct usb_usbvision *usbvision = video_drvdata(file);
491
	int errCode;
492

493
	if (!v4l2_chip_match_host(&reg->match))
494 495
		return -EINVAL;
	/* NT100x has a 8-bit register space */
496 497
	errCode = usbvision_write_reg(usbvision, reg->reg&0xff, reg->val);
	if (errCode < 0) {
498 499 500
		dev_err(&usbvision->vdev->dev,
			"%s: VIDIOC_DBG_S_REGISTER failed: error %d\n",
				__func__, errCode);
501 502 503 504
		return errCode;
	}
	return 0;
}
505
#endif
506 507 508 509

static int vidioc_querycap (struct file *file, void  *priv,
					struct v4l2_capability *vc)
{
510
	struct usb_usbvision *usbvision = video_drvdata(file);
511 512 513 514 515

	strlcpy(vc->driver, "USBVision", sizeof(vc->driver));
	strlcpy(vc->card,
		usbvision_device_data[usbvision->DevModel].ModelString,
		sizeof(vc->card));
516
	usb_make_path(usbvision->dev, vc->bus_info, sizeof(vc->bus_info));
517 518 519 520 521 522 523 524 525 526 527 528
	vc->version = USBVISION_DRIVER_VERSION;
	vc->capabilities = V4L2_CAP_VIDEO_CAPTURE |
		V4L2_CAP_AUDIO |
		V4L2_CAP_READWRITE |
		V4L2_CAP_STREAMING |
		(usbvision->have_tuner ? V4L2_CAP_TUNER : 0);
	return 0;
}

static int vidioc_enum_input (struct file *file, void *priv,
				struct v4l2_input *vi)
{
529
	struct usb_usbvision *usbvision = video_drvdata(file);
530 531
	int chan;

532
	if (vi->index >= usbvision->video_inputs)
533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550
		return -EINVAL;
	if (usbvision->have_tuner) {
		chan = vi->index;
	} else {
		chan = vi->index + 1; /*skip Television string*/
	}
	/* Determine the requested input characteristics
	   specific for each usbvision card model */
	switch(chan) {
	case 0:
		if (usbvision_device_data[usbvision->DevModel].VideoChannels == 4) {
			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;
551
		}
552 553 554 555 556 557 558
		break;
	case 1:
		vi->type = V4L2_INPUT_TYPE_CAMERA;
		if (usbvision_device_data[usbvision->DevModel].VideoChannels == 4) {
			strcpy(vi->name, "Green Video Input");
		} else {
			strcpy(vi->name, "Composite Video Input");
559
		}
560 561 562 563 564 565 566 567
		vi->std = V4L2_STD_PAL;
		break;
	case 2:
		vi->type = V4L2_INPUT_TYPE_CAMERA;
		if (usbvision_device_data[usbvision->DevModel].VideoChannels == 4) {
			strcpy(vi->name, "Yellow Video Input");
		} else {
			strcpy(vi->name, "S-Video Input");
568
		}
569 570 571 572 573 574 575 576 577 578
		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;
}
579

580 581
static int vidioc_g_input (struct file *file, void *priv, unsigned int *input)
{
582
	struct usb_usbvision *usbvision = video_drvdata(file);
583

584 585 586
	*input = usbvision->ctl_input;
	return 0;
}
587

588 589
static int vidioc_s_input (struct file *file, void *priv, unsigned int input)
{
590
	struct usb_usbvision *usbvision = video_drvdata(file);
591

592
	if (input >= usbvision->video_inputs)
593
		return -EINVAL;
594

595
	usbvision_muxsel(usbvision, input);
596 597 598 599 600 601
	usbvision_set_input(usbvision);
	usbvision_set_output(usbvision,
			     usbvision->curwidth,
			     usbvision->curheight);
	return 0;
}
602

603 604
static int vidioc_s_std (struct file *file, void *priv, v4l2_std_id *id)
{
605 606
	struct usb_usbvision *usbvision = video_drvdata(file);

607
	usbvision->tvnormId=*id;
608

609
	call_all(usbvision, core, s_std, usbvision->tvnormId);
610 611
	/* propagate the change to the decoder */
	usbvision_muxsel(usbvision, usbvision->ctl_input);
612

613 614
	return 0;
}
615

616 617 618
static int vidioc_g_tuner (struct file *file, void *priv,
				struct v4l2_tuner *vt)
{
619
	struct usb_usbvision *usbvision = video_drvdata(file);
620

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

632 633
	return 0;
}
634

635 636 637
static int vidioc_s_tuner (struct file *file, void *priv,
				struct v4l2_tuner *vt)
{
638
	struct usb_usbvision *usbvision = video_drvdata(file);
639

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

646 647
	return 0;
}
648

649 650 651
static int vidioc_g_frequency (struct file *file, void *priv,
				struct v4l2_frequency *freq)
{
652
	struct usb_usbvision *usbvision = video_drvdata(file);
653

654 655 656 657 658 659 660
	freq->tuner = 0; // Only one tuner
	if(usbvision->radio) {
		freq->type = V4L2_TUNER_RADIO;
	} else {
		freq->type = V4L2_TUNER_ANALOG_TV;
	}
	freq->frequency = usbvision->freq;
661

662 663
	return 0;
}
664

665 666 667
static int vidioc_s_frequency (struct file *file, void *priv,
				struct v4l2_frequency *freq)
{
668
	struct usb_usbvision *usbvision = video_drvdata(file);
669

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

674
	usbvision->freq = freq->frequency;
675
	call_all(usbvision, tuner, s_frequency, freq);
676

677 678
	return 0;
}
679

680 681
static int vidioc_g_audio (struct file *file, void *priv, struct v4l2_audio *a)
{
682
	struct usb_usbvision *usbvision = video_drvdata(file);
683

684 685 686 687 688
	if(usbvision->radio) {
		strcpy(a->name,"Radio");
	} else {
		strcpy(a->name, "TV");
	}
689

690 691
	return 0;
}
692

693 694 695 696 697 698
static int vidioc_s_audio (struct file *file, void *fh,
			  struct v4l2_audio *a)
{
	if(a->index) {
		return -EINVAL;
	}
699

700 701
	return 0;
}
702

703 704 705
static int vidioc_queryctrl (struct file *file, void *priv,
			    struct v4l2_queryctrl *ctrl)
{
706
	struct usb_usbvision *usbvision = video_drvdata(file);
707

708
	call_all(usbvision, core, queryctrl, ctrl);
709

710 711
	if (!ctrl->type)
		return -EINVAL;
712

713 714
	return 0;
}
715

716 717 718
static int vidioc_g_ctrl (struct file *file, void *priv,
				struct v4l2_control *ctrl)
{
719
	struct usb_usbvision *usbvision = video_drvdata(file);
720
	call_all(usbvision, core, g_ctrl, ctrl);
721

722 723 724 725 726 727
	return 0;
}

static int vidioc_s_ctrl (struct file *file, void *priv,
				struct v4l2_control *ctrl)
{
728
	struct usb_usbvision *usbvision = video_drvdata(file);
729
	call_all(usbvision, core, s_ctrl, ctrl);
730 731 732 733 734 735 736

	return 0;
}

static int vidioc_reqbufs (struct file *file,
			   void *priv, struct v4l2_requestbuffers *vr)
{
737
	struct usb_usbvision *usbvision = video_drvdata(file);
738 739 740 741 742 743
	int ret;

	RESTRICT_TO_RANGE(vr->count,1,USBVISION_NUMFRAMES);

	/* Check input validity:
	   the user must do a VIDEO CAPTURE and MMAP method. */
744
	if (vr->memory != V4L2_MEMORY_MMAP)
745 746 747 748 749
		return -EINVAL;

	if(usbvision->streaming == Stream_On) {
		if ((ret = usbvision_stream_interrupt(usbvision)))
			return ret;
750
	}
751 752 753 754 755 756 757

	usbvision_frames_free(usbvision);
	usbvision_empty_framequeues(usbvision);
	vr->count = usbvision_frames_alloc(usbvision,vr->count);

	usbvision->curFrame = NULL;

758 759 760
	return 0;
}

761 762
static int vidioc_querybuf (struct file *file,
			    void *priv, struct v4l2_buffer *vb)
763
{
764
	struct usb_usbvision *usbvision = video_drvdata(file);
765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792
	struct usbvision_frame *frame;

	/* FIXME : must control
	   that buffers are mapped (VIDIOC_REQBUFS has been called) */
	if(vb->index>=usbvision->num_frames)  {
		return -EINVAL;
	}
	/* Updating the corresponding frame state */
	vb->flags = 0;
	frame = &usbvision->frame[vb->index];
	if(frame->grabstate >= FrameState_Ready)
		vb->flags |= V4L2_BUF_FLAG_QUEUED;
	if(frame->grabstate >= FrameState_Done)
		vb->flags |= V4L2_BUF_FLAG_DONE;
	if(frame->grabstate == FrameState_Unused)
		vb->flags |= V4L2_BUF_FLAG_MAPPED;
	vb->memory = V4L2_MEMORY_MMAP;

	vb->m.offset = vb->index*PAGE_ALIGN(usbvision->max_frame_size);

	vb->memory = V4L2_MEMORY_MMAP;
	vb->field = V4L2_FIELD_NONE;
	vb->length = usbvision->curwidth*
		usbvision->curheight*
		usbvision->palette.bytes_per_pixel;
	vb->timestamp = usbvision->frame[vb->index].timestamp;
	vb->sequence = usbvision->frame[vb->index].sequence;
	return 0;
793 794
}

795 796
static int vidioc_qbuf (struct file *file, void *priv, struct v4l2_buffer *vb)
{
797
	struct usb_usbvision *usbvision = video_drvdata(file);
798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830
	struct usbvision_frame *frame;
	unsigned long lock_flags;

	/* FIXME : works only on VIDEO_CAPTURE MODE, MMAP. */
	if(vb->index>=usbvision->num_frames)  {
		return -EINVAL;
	}

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

	if (frame->grabstate != FrameState_Unused) {
		return -EAGAIN;
	}

	/* Mark it as ready and enqueue frame */
	frame->grabstate = FrameState_Ready;
	frame->scanstate = ScanState_Scanning;
	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;
}

static int vidioc_dqbuf (struct file *file, void *priv, struct v4l2_buffer *vb)
{
831
	struct usb_usbvision *usbvision = video_drvdata(file);
832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868
	int ret;
	struct usbvision_frame *f;
	unsigned long lock_flags;

	if (list_empty(&(usbvision->outqueue))) {
		if (usbvision->streaming == Stream_Idle)
			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);

	f->grabstate = FrameState_Unused;

	vb->memory = V4L2_MEMORY_MMAP;
	vb->flags = V4L2_BUF_FLAG_MAPPED |
		V4L2_BUF_FLAG_QUEUED |
		V4L2_BUF_FLAG_DONE;
	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)
{
869
	struct usb_usbvision *usbvision = video_drvdata(file);
870 871

	usbvision->streaming = Stream_On;
872
	call_all(usbvision, video, s_stream, 1);
873 874 875 876 877 878 879

	return 0;
}

static int vidioc_streamoff(struct file *file,
			    void *priv, enum v4l2_buf_type type)
{
880
	struct usb_usbvision *usbvision = video_drvdata(file);
881 882 883 884 885 886 887

	if (type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
		return -EINVAL;

	if(usbvision->streaming == Stream_On) {
		usbvision_stream_interrupt(usbvision);
		/* Stop all video streamings */
888
		call_all(usbvision, video, s_stream, 0);
889 890 891 892 893 894
	}
	usbvision_empty_framequeues(usbvision);

	return 0;
}

895
static int vidioc_enum_fmt_vid_cap (struct file *file, void  *priv,
896 897 898 899 900 901 902 903 904 905
					struct v4l2_fmtdesc *vfd)
{
	if(vfd->index>=USBVISION_SUPPORTED_PALETTES-1) {
		return -EINVAL;
	}
	strcpy(vfd->description,usbvision_v4l2_format[vfd->index].desc);
	vfd->pixelformat = usbvision_v4l2_format[vfd->index].format;
	return 0;
}

906
static int vidioc_g_fmt_vid_cap (struct file *file, void *priv,
907 908
					struct v4l2_format *vf)
{
909
	struct usb_usbvision *usbvision = video_drvdata(file);
910 911 912 913 914 915 916 917 918 919 920 921
	vf->fmt.pix.width = usbvision->curwidth;
	vf->fmt.pix.height = usbvision->curheight;
	vf->fmt.pix.pixelformat = usbvision->palette.format;
	vf->fmt.pix.bytesperline =
		usbvision->curwidth*usbvision->palette.bytes_per_pixel;
	vf->fmt.pix.sizeimage = vf->fmt.pix.bytesperline*usbvision->curheight;
	vf->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
	vf->fmt.pix.field = V4L2_FIELD_NONE; /* Always progressive image */

	return 0;
}

922
static int vidioc_try_fmt_vid_cap (struct file *file, void *priv,
923 924
			       struct v4l2_format *vf)
{
925
	struct usb_usbvision *usbvision = video_drvdata(file);
926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949
	int formatIdx;

	/* Find requested format in available ones */
	for(formatIdx=0;formatIdx<USBVISION_SUPPORTED_PALETTES;formatIdx++) {
		if(vf->fmt.pix.pixelformat ==
		   usbvision_v4l2_format[formatIdx].format) {
			usbvision->palette = usbvision_v4l2_format[formatIdx];
			break;
		}
	}
	/* robustness */
	if(formatIdx == USBVISION_SUPPORTED_PALETTES) {
		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;
}

950
static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
951 952
			       struct v4l2_format *vf)
{
953
	struct usb_usbvision *usbvision = video_drvdata(file);
954 955
	int ret;

956
	if( 0 != (ret=vidioc_try_fmt_vid_cap (file, priv, vf)) ) {
957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974
		return ret;
	}

	/* stop io in case it is already in progress */
	if(usbvision->streaming == Stream_On) {
		if ((ret = usbvision_stream_interrupt(usbvision)))
			return ret;
	}
	usbvision_frames_free(usbvision);
	usbvision_empty_framequeues(usbvision);

	usbvision->curFrame = NULL;

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

	return 0;
}
975

A
Al Viro 已提交
976
static ssize_t usbvision_v4l2_read(struct file *file, char __user *buf,
977 978
		      size_t count, loff_t *ppos)
{
979
	struct usb_usbvision *usbvision = video_drvdata(file);
980 981 982 983 984 985
	int noblock = file->f_flags & O_NONBLOCK;
	unsigned long lock_flags;

	int ret,i;
	struct usbvision_frame *frame;

986
	PDEBUG(DBG_IO, "%s: %ld bytes, noblock=%d", __func__,
987
	       (unsigned long)count, noblock);
988 989 990 991

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

992 993 994
	/* 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. */
995
	if(!usbvision->num_frames) {
996 997
		/* First, allocate some frames to work with
		   if this has not been done with VIDIOC_REQBUF */
998 999 1000 1001 1002 1003 1004 1005
		usbvision_frames_free(usbvision);
		usbvision_empty_framequeues(usbvision);
		usbvision_frames_alloc(usbvision,USBVISION_NUMFRAMES);
	}

	if(usbvision->streaming != Stream_On) {
		/* no stream is running, make it running ! */
		usbvision->streaming = Stream_On;
1006
		call_all(usbvision, video, s_stream, 1);
1007
	}
1008

1009 1010
	/* Then, enqueue as many frames as possible
	   (like a user of VIDIOC_QBUF would do) */
1011
	for(i=0;i<usbvision->num_frames;i++) {
1012 1013 1014 1015 1016
		frame = &usbvision->frame[i];
		if(frame->grabstate == FrameState_Unused) {
			/* Mark it as ready and enqueue frame */
			frame->grabstate = FrameState_Ready;
			frame->scanstate = ScanState_Scanning;
1017 1018
			/* Accumulated in usbvision_parse_data() */
			frame->scanlength = 0;
1019 1020 1021 1022 1023 1024

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

			spin_lock_irqsave(&usbvision->queue_lock, lock_flags);
			list_add_tail(&frame->frame, &usbvision->inqueue);
1025 1026
			spin_unlock_irqrestore(&usbvision->queue_lock,
					       lock_flags);
1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053
		}
	}

	/* Then try to steal a frame (like a VIDIOC_DQBUF would do) */
	if (list_empty(&(usbvision->outqueue))) {
		if(noblock)
			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 */
	if (frame->grabstate == FrameState_Error) {
		frame->bytes_read = 0;
		return 0;
	}

1054
	PDEBUG(DBG_IO, "%s: frmx=%d, bytes_read=%ld, scanlength=%ld",
1055
	       __func__,
1056
	       frame->index, frame->bytes_read, frame->scanlength);
1057 1058 1059 1060 1061 1062 1063 1064 1065 1066

	/* 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;

	if (copy_to_user(buf, frame->data + frame->bytes_read, count)) {
		return -EFAULT;
	}

	frame->bytes_read += count;
1067
	PDEBUG(DBG_IO, "%s: {copy} count used=%ld, new bytes_read=%ld",
1068
	       __func__,
1069
	       (unsigned long)count, frame->bytes_read);
1070

1071
	/* For now, forget the frame if it has not been read in one shot. */
1072 1073 1074 1075
/* 	if (frame->bytes_read >= frame->scanlength) {// All data has been read */
		frame->bytes_read = 0;

		/* Mark it as available to be used again. */
1076
		frame->grabstate = FrameState_Unused;
1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087
/* 	} */

	return count;
}

static int usbvision_v4l2_mmap(struct file *file, struct vm_area_struct *vma)
{
	unsigned long size = vma->vm_end - vma->vm_start,
		start = vma->vm_start;
	void *pos;
	u32 i;
1088
	struct usb_usbvision *usbvision = video_drvdata(file);
1089

1090 1091
	PDEBUG(DBG_MMAP, "mmap");

1092 1093 1094 1095 1096
	if (!USBVISION_IS_OPERATIONAL(usbvision)) {
		return -EFAULT;
	}

	if (!(vma->vm_flags & VM_WRITE) ||
1097
	    size != PAGE_ALIGN(usbvision->max_frame_size)) {
1098 1099 1100
		return -EINVAL;
	}

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

	/* VM_IO is eventually going to replace PageReserved altogether */
	vma->vm_flags |= VM_IO;
	vma->vm_flags |= VM_RESERVED;	/* avoid to swap out this VMA */

	pos = usbvision->frame[i].data;
	while (size > 0) {

		if (vm_insert_page(vma, start, vmalloc_to_page(pos))) {
1120
			PDEBUG(DBG_MMAP, "mmap: vm_insert_page failed");
1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135
			return -EAGAIN;
		}
		start += PAGE_SIZE;
		pos += PAGE_SIZE;
		size -= PAGE_SIZE;
	}

	return 0;
}


/*
 * Here comes the stuff for radio on usbvision based devices
 *
 */
1136
static int usbvision_radio_open(struct file *file)
1137
{
1138
	struct usb_usbvision *usbvision = video_drvdata(file);
1139 1140
	int errCode = 0;

1141
	PDEBUG(DBG_IO, "%s:", __func__);
1142 1143

	if (usbvision->user) {
1144 1145 1146
		dev_err(&usbvision->rdev->dev,
			"%s: Someone tried to open an already opened USBVision Radio!\n",
				__func__);
1147 1148 1149 1150 1151 1152 1153
		errCode = -EBUSY;
	}
	else {
		if(PowerOnAtOpen) {
			usbvision_reset_powerOffTimer(usbvision);
			if (usbvision->power == 0) {
				usbvision_power_on(usbvision);
1154
				usbvision_i2c_register(usbvision);
1155 1156 1157
			}
		}

1158 1159 1160 1161
		/* Alternate interface 1 is is the biggest frame size */
		errCode = usbvision_set_alternate(usbvision);
		if (errCode < 0) {
			usbvision->last_error = errCode;
1162 1163
			errCode = -EBUSY;
			goto out;
1164 1165
		}

1166 1167
		// If so far no errors then we shall start the radio
		usbvision->radio = 1;
1168
		call_all(usbvision, tuner, s_radio);
1169 1170 1171 1172 1173 1174
		usbvision_set_audio(usbvision, USBVISION_AUDIO_RADIO);
		usbvision->user++;
	}

	if (errCode) {
		if (PowerOnAtOpen) {
1175
			usbvision_i2c_unregister(usbvision);
1176 1177 1178 1179
			usbvision_power_off(usbvision);
			usbvision->initialized = 0;
		}
	}
1180
out:
1181 1182 1183 1184
	return errCode;
}


1185
static int usbvision_radio_close(struct file *file)
1186
{
1187
	struct usb_usbvision *usbvision = video_drvdata(file);
1188 1189 1190 1191
	int errCode = 0;

	PDEBUG(DBG_IO, "");

1192 1193 1194 1195 1196
	/* Set packet size to 0 */
	usbvision->ifaceAlt=0;
	errCode = usb_set_interface(usbvision->dev, usbvision->iface,
				    usbvision->ifaceAlt);

1197 1198 1199 1200 1201 1202 1203 1204 1205 1206
	usbvision_audio_off(usbvision);
	usbvision->radio=0;
	usbvision->user--;

	if (PowerOnAtOpen) {
		usbvision_set_powerOffTimer(usbvision);
		usbvision->initialized = 0;
	}

	if (usbvision->remove_pending) {
1207
		printk(KERN_INFO "%s: Final disconnect\n", __func__);
1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219
		usbvision_release(usbvision);
	}

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

//
// Video registration stuff
//

// Video template
1220
static const struct v4l2_file_operations usbvision_fops = {
1221 1222 1223 1224 1225
	.owner             = THIS_MODULE,
	.open		= usbvision_v4l2_open,
	.release	= usbvision_v4l2_close,
	.read		= usbvision_v4l2_read,
	.mmap		= usbvision_v4l2_mmap,
1226
	.unlocked_ioctl	= video_ioctl2,
1227
/* 	.poll          = video_poll, */
1228
};
1229 1230

static const struct v4l2_ioctl_ops usbvision_ioctl_ops = {
1231
	.vidioc_querycap      = vidioc_querycap,
1232 1233 1234 1235
	.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,
1236 1237 1238 1239 1240 1241 1242 1243 1244 1245
	.vidioc_reqbufs       = vidioc_reqbufs,
	.vidioc_querybuf      = vidioc_querybuf,
	.vidioc_qbuf          = vidioc_qbuf,
	.vidioc_dqbuf         = vidioc_dqbuf,
	.vidioc_s_std         = vidioc_s_std,
	.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,
1246
	.vidioc_s_audio       = vidioc_s_audio,
1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258
	.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
1259 1260 1261 1262 1263 1264 1265
};

static struct video_device usbvision_video_template = {
	.fops		= &usbvision_fops,
	.ioctl_ops 	= &usbvision_ioctl_ops,
	.name           = "usbvision-video",
	.release	= video_device_release,
1266 1267
	.tvnorms              = USBVISION_NORMS,
	.current_norm         = V4L2_STD_PAL
1268 1269 1270 1271
};


// Radio template
1272
static const struct v4l2_file_operations usbvision_radio_fops = {
1273 1274 1275
	.owner             = THIS_MODULE,
	.open		= usbvision_radio_open,
	.release	= usbvision_radio_close,
1276
	.unlocked_ioctl	= video_ioctl2,
1277 1278
};

1279
static const struct v4l2_ioctl_ops usbvision_radio_ioctl_ops = {
1280 1281 1282 1283 1284 1285
	.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,
1286
	.vidioc_s_audio       = vidioc_s_audio,
1287 1288 1289 1290 1291 1292
	.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,
1293 1294 1295 1296 1297 1298 1299
};

static struct video_device usbvision_radio_template = {
	.fops		= &usbvision_radio_fops,
	.name           = "usbvision-radio",
	.release	= video_device_release,
	.ioctl_ops 	= &usbvision_radio_ioctl_ops,
1300 1301 1302

	.tvnorms              = USBVISION_NORMS,
	.current_norm         = V4L2_STD_PAL
1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313
};


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) {
1314 1315
		dev_err(&usbvision->dev->dev,
			"%s: usbvision->dev is not set\n", __func__);
1316 1317 1318 1319 1320 1321 1322 1323
		return NULL;
	}

	vdev = video_device_alloc();
	if (NULL == vdev) {
		return NULL;
	}
	*vdev = *vdev_template;
1324
	vdev->lock = &usbvision->v4l2_lock;
1325
	vdev->v4l2_dev = &usbvision->v4l2_dev;
1326 1327 1328 1329 1330 1331 1332 1333 1334 1335
	snprintf(vdev->name, sizeof(vdev->name), "%s", name);
	video_set_drvdata(vdev, usbvision);
	return vdev;
}

// unregister video4linux devices
static void usbvision_unregister_video(struct usb_usbvision *usbvision)
{
	// Radio Device:
	if (usbvision->rdev) {
1336 1337
		PDEBUG(DBG_PROBE, "unregister %s [v4l2]",
		       video_device_node_name(usbvision->rdev));
1338
		if (video_is_registered(usbvision->rdev)) {
1339
			video_unregister_device(usbvision->rdev);
1340
		} else {
1341 1342 1343 1344 1345 1346 1347
			video_device_release(usbvision->rdev);
		}
		usbvision->rdev = NULL;
	}

	// Video Device:
	if (usbvision->vdev) {
1348 1349
		PDEBUG(DBG_PROBE, "unregister %s [v4l2]",
		       video_device_node_name(usbvision->vdev));
1350
		if (video_is_registered(usbvision->vdev)) {
1351
			video_unregister_device(usbvision->vdev);
1352
		} else {
1353 1354 1355 1356 1357 1358 1359 1360 1361 1362
			video_device_release(usbvision->vdev);
		}
		usbvision->vdev = NULL;
	}
}

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

	// Radio Device:
	if (usbvision_device_data[usbvision->DevModel].Radio) {
		// usbvision has radio
1380 1381 1382
		usbvision->rdev = usbvision_vdev_init(usbvision,
						      &usbvision_radio_template,
						      "USBVision Radio");
1383 1384 1385
		if (usbvision->rdev == NULL) {
			goto err_exit;
		}
1386 1387 1388
		if (video_register_device(usbvision->rdev,
					  VFL_TYPE_RADIO,
					  radio_nr)<0) {
1389 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 1395 1396 1397
	}
	// all done
	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 1430

	// prepare control urb for control messages during interrupts
	usbvision->ctrlUrb = usb_alloc_urb(USBVISION_URB_FRAMES, GFP_KERNEL);
1431 1432
	if (usbvision->ctrlUrb == NULL)
		goto err_unreg;
1433 1434 1435 1436 1437 1438
	init_waitqueue_head(&usbvision->ctrlUrb_wq);

	usbvision_init_powerOffTimer(usbvision);

	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 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467
	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_reset_powerOffTimer(usbvision);

	usbvision->initialized = 0;

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

	if (usbvision->ctrlUrb) {
		usb_free_urb(usbvision->ctrlUrb);
	}

1468
	v4l2_device_unregister(&usbvision->v4l2_dev);
1469 1470 1471 1472 1473 1474
	kfree(usbvision);

	PDEBUG(DBG_PROBE, "success");
}


1475
/*********************** usb interface **********************************/
1476 1477 1478

static void usbvision_configure_video(struct usb_usbvision *usbvision)
{
1479
	int model;
1480 1481 1482 1483 1484 1485 1486

	if (usbvision == NULL)
		return;

	model = usbvision->DevModel;
	usbvision->palette = usbvision_v4l2_format[2]; // V4L2_PIX_FMT_RGB24;

1487
	if (usbvision_device_data[usbvision->DevModel].Vin_Reg2_override) {
1488 1489
		usbvision->Vin_Reg2_Preset =
			usbvision_device_data[usbvision->DevModel].Vin_Reg2;
1490 1491 1492 1493
	} else {
		usbvision->Vin_Reg2_Preset = 0;
	}

1494
	usbvision->tvnormId = usbvision_device_data[model].VideoNorm;
1495 1496 1497 1498 1499

	usbvision->video_inputs = usbvision_device_data[model].VideoChannels;
	usbvision->ctl_input = 0;

	/* This should be here to make i2c clients to be able to register */
1500 1501
	/* first switch off audio */
	usbvision_audio_off(usbvision);
1502
	if (!PowerOnAtOpen) {
1503 1504
		/* and then power up the noisy tuner */
		usbvision_power_on(usbvision);
1505
		usbvision_i2c_register(usbvision);
1506 1507 1508 1509 1510 1511 1512 1513 1514 1515
	}
}

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

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

1531
	model = devid->driver_info;
1532
	if ( (model<0) || (model>=usbvision_device_data_size) ) {
1533
		PDEBUG(DBG_PROBE, "model out of bounds %d",model);
1534 1535
		return -ENODEV;
	}
1536
	printk(KERN_INFO "%s: %s found\n", __func__,
1537
				usbvision_device_data[model].ModelString);
1538 1539 1540

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

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

1564 1565
	if (dev->descriptor.bNumConfigurations > 1) {
		usbvision->bridgeType = BRIDGE_NT1004;
1566
	} else if (model == DAZZLE_DVC_90_REV_1_SECAM) {
1567
		usbvision->bridgeType = BRIDGE_NT1005;
1568
	} else {
1569 1570 1571 1572
		usbvision->bridgeType = BRIDGE_NT1003;
	}
	PDEBUG(DBG_PROBE, "bridgeType %d", usbvision->bridgeType);

1573 1574 1575 1576 1577 1578 1579 1580
	/* compute alternate max packet sizes */
	uif = dev->actconfig->interface[0];

	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);
	if (usbvision->alt_max_pkt_size == NULL) {
1581
		dev_err(&intf->dev, "usbvision: out of memory!\n");
1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594
		return -ENOMEM;
	}

	for (i = 0; i < usbvision->num_alt ; i++) {
		u16 tmp = le16_to_cpu(uif->altsetting[i].endpoint[1].desc.
				      wMaxPacketSize);
		usbvision->alt_max_pkt_size[i] =
			(tmp & 0x07ff) * (((tmp & 0x1800) >> 11) + 1);
		PDEBUG(DBG_PROBE, "Alternate setting %i, max size= %i",i,
		       usbvision->alt_max_pkt_size[i]);
	}


1595 1596 1597 1598 1599 1600 1601 1602 1603 1604
	usbvision->nr = usbvision_nr++;

	usbvision->have_tuner = usbvision_device_data[model].Tuner;
	if (usbvision->have_tuner) {
		usbvision->tuner_type = usbvision_device_data[model].TunerType;
	}

	usbvision->DevModel = model;
	usbvision->remove_pending = 0;
	usbvision->iface = ifnum;
1605
	usbvision->ifaceAlt = 0;
1606 1607 1608 1609 1610 1611
	usbvision->video_endp = endpoint->bEndpointAddress;
	usbvision->isocPacketSize = 0;
	usbvision->usb_bandwidth = 0;
	usbvision->user = 0;
	usbvision->streaming = Stream_Off;
	usbvision_configure_video(usbvision);
1612
	usbvision_register_video(usbvision);
1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630

	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.
 *
 */
static void __devexit usbvision_disconnect(struct usb_interface *intf)
{
1631
	struct usb_usbvision *usbvision = to_usbvision(usb_get_intfdata(intf));
1632 1633 1634 1635

	PDEBUG(DBG_PROBE, "");

	if (usbvision == NULL) {
1636
		pr_err("%s: usb_get_intfdata() failed\n", __func__);
1637 1638 1639
		return;
	}

1640
	mutex_lock(&usbvision->v4l2_lock);
1641 1642 1643 1644

	// At this time we ask to cancel outstanding URBs
	usbvision_stop_isoc(usbvision);

1645 1646
	v4l2_device_disconnect(&usbvision->v4l2_dev);

1647
	if (usbvision->power) {
1648
		usbvision_i2c_unregister(usbvision);
1649 1650 1651 1652 1653 1654 1655
		usbvision_power_off(usbvision);
	}
	usbvision->remove_pending = 1;	// Now all ISO data will be ignored

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

1656
	mutex_unlock(&usbvision->v4l2_lock);
1657 1658

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

	PDEBUG(DBG_PROBE, "success");
}

static struct usb_driver usbvision_driver = {
	.name		= "usbvision",
	.id_table	= usbvision_table,
	.probe		= usbvision_probe,
1674
	.disconnect	= __devexit_p(usbvision_disconnect),
1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690
};

/*
 * usbvision_init()
 *
 * This code is run to initialize the driver.
 *
 */
static int __init usbvision_init(void)
{
	int errCode;

	PDEBUG(DBG_PROBE, "");

	PDEBUG(DBG_IO,  "IO      debugging is enabled [video]");
	PDEBUG(DBG_PROBE, "PROBE   debugging is enabled [video]");
1691
	PDEBUG(DBG_MMAP, "MMAP    debugging is enabled [video]");
1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702

	/* disable planar mode support unless compression enabled */
	if (isocMode != ISOC_MODE_COMPRESS ) {
		// 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
	}

	errCode = usb_register(&usbvision_driver);

	if (errCode == 0) {
1703
		printk(KERN_INFO DRIVER_DESC " : " USBVISION_VERSION_STRING "\n");
1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726
		PDEBUG(DBG_PROBE, "success");
	}
	return errCode;
}

static void __exit usbvision_exit(void)
{
 PDEBUG(DBG_PROBE, "");

 usb_deregister(&usbvision_driver);
 PDEBUG(DBG_PROBE, "success");
}

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:
 */