pwc-if.c 33.1 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3
/* Linux driver for Philips webcam
   USB and Video4Linux interface part.
   (C) 1999-2004 Nemosoft Unv.
4
   (C) 2004-2006 Luc Saillard (luc@saillard.org)
5
   (C) 2011 Hans de Goede <hdegoede@redhat.com>
L
Linus Torvalds 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28

   NOTE: this version of pwc is an unofficial (modified) release of pwc & pcwx
   driver and thus may have bugs that are not present in the original version.
   Please send bug reports and support requests to <luc@saillard.org>.
   The decompression routines have been implemented by reverse-engineering the
   Nemosoft binary pwcx module. Caveat emptor.

   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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

*/

29
/*
L
Linus Torvalds 已提交
30 31 32
   This code forms the interface between the USB layers and the Philips
   specific stuff. Some adanved stuff of the driver falls under an
   NDA, signed between me and Philips B.V., Eindhoven, the Netherlands, and
33
   is thus not distributed in source form. The binary pwcx.o module
L
Linus Torvalds 已提交
34
   contains the code that falls under the NDA.
35 36

   In case you're wondering: 'pwc' stands for "Philips WebCam", but
L
Linus Torvalds 已提交
37 38 39
   I really didn't want to type 'philips_web_cam' every time (I'm lazy as
   any Linux kernel hacker, but I don't like uncomprehensible abbreviations
   without explanation).
40

L
Linus Torvalds 已提交
41 42 43
   Oh yes, convention: to disctinguish between all the various pointers to
   device-structures, I use these names for the pointer variables:
   udev: struct usb_device *
44
   vdev: struct video_device (member of pwc_dev)
L
Linus Torvalds 已提交
45 46 47 48 49 50 51 52 53 54 55 56
   pdev: struct pwc_devive *
*/

/* Contributors:
   - Alvarado: adding whitebalance code
   - Alistar Moire: QuickCam 3000 Pro device/product ID
   - Tony Hoyle: Creative Labs Webcam 5 device/product ID
   - Mark Burazin: solving hang in VIDIOCSYNC when camera gets unplugged
   - Jk Fang: Sotec Afina Eye ID
   - Xavier Roche: QuickCam Pro 4000 ID
   - Jens Knudsen: QuickCam Zoom ID
   - J. Debert: QuickCam for Notebooks ID
57
   - Pham Thanh Nam: webcam snapshot button as an event input device
L
Linus Torvalds 已提交
58 59 60 61 62 63 64 65
*/

#include <linux/errno.h>
#include <linux/init.h>
#include <linux/mm.h>
#include <linux/module.h>
#include <linux/poll.h>
#include <linux/slab.h>
66 67 68
#ifdef CONFIG_USB_PWC_INPUT_EVDEV
#include <linux/usb/input.h>
#endif
L
Linus Torvalds 已提交
69 70
#include <linux/vmalloc.h>
#include <asm/io.h>
71
#include <linux/kernel.h>		/* simple_strtol() */
L
Linus Torvalds 已提交
72 73 74 75

#include "pwc.h"
#include "pwc-kiara.h"
#include "pwc-timon.h"
76 77
#include "pwc-dec23.h"
#include "pwc-dec1.h"
L
Linus Torvalds 已提交
78 79 80 81

/* Function prototypes and driver templates */

/* hotplug device table support */
82
static const struct usb_device_id pwc_device_table [] = {
L
Linus Torvalds 已提交
83 84 85 86 87 88 89
	{ USB_DEVICE(0x0471, 0x0302) }, /* Philips models */
	{ USB_DEVICE(0x0471, 0x0303) },
	{ USB_DEVICE(0x0471, 0x0304) },
	{ USB_DEVICE(0x0471, 0x0307) },
	{ USB_DEVICE(0x0471, 0x0308) },
	{ USB_DEVICE(0x0471, 0x030C) },
	{ USB_DEVICE(0x0471, 0x0310) },
90
	{ USB_DEVICE(0x0471, 0x0311) }, /* Philips ToUcam PRO II */
L
Linus Torvalds 已提交
91 92
	{ USB_DEVICE(0x0471, 0x0312) },
	{ USB_DEVICE(0x0471, 0x0313) }, /* the 'new' 720K */
93
	{ USB_DEVICE(0x0471, 0x0329) }, /* Philips SPC 900NC PC Camera */
L
Linus Torvalds 已提交
94 95 96 97 98 99 100
	{ USB_DEVICE(0x069A, 0x0001) }, /* Askey */
	{ USB_DEVICE(0x046D, 0x08B0) }, /* Logitech QuickCam Pro 3000 */
	{ USB_DEVICE(0x046D, 0x08B1) }, /* Logitech QuickCam Notebook Pro */
	{ USB_DEVICE(0x046D, 0x08B2) }, /* Logitech QuickCam Pro 4000 */
	{ USB_DEVICE(0x046D, 0x08B3) }, /* Logitech QuickCam Zoom (old model) */
	{ USB_DEVICE(0x046D, 0x08B4) }, /* Logitech QuickCam Zoom (new model) */
	{ USB_DEVICE(0x046D, 0x08B5) }, /* Logitech QuickCam Orbit/Sphere */
101 102
	{ USB_DEVICE(0x046D, 0x08B6) }, /* Cisco VT Camera */
	{ USB_DEVICE(0x046D, 0x08B7) }, /* Logitech ViewPort AV 100 */
L
Linus Torvalds 已提交
103
	{ USB_DEVICE(0x046D, 0x08B8) }, /* Logitech (reserved) */
104 105 106
	{ USB_DEVICE(0x055D, 0x9000) }, /* Samsung MPC-C10 */
	{ USB_DEVICE(0x055D, 0x9001) }, /* Samsung MPC-C30 */
	{ USB_DEVICE(0x055D, 0x9002) },	/* Samsung SNC-35E (Ver3.0) */
L
Linus Torvalds 已提交
107 108 109 110 111 112 113 114 115 116 117 118
	{ USB_DEVICE(0x041E, 0x400C) }, /* Creative Webcam 5 */
	{ USB_DEVICE(0x041E, 0x4011) }, /* Creative Webcam Pro Ex */
	{ USB_DEVICE(0x04CC, 0x8116) }, /* Afina Eye */
	{ USB_DEVICE(0x06BE, 0x8116) }, /* new Afina Eye */
	{ USB_DEVICE(0x0d81, 0x1910) }, /* Visionite */
	{ USB_DEVICE(0x0d81, 0x1900) },
	{ }
};
MODULE_DEVICE_TABLE(usb, pwc_device_table);

static int usb_pwc_probe(struct usb_interface *intf, const struct usb_device_id *id);
static void usb_pwc_disconnect(struct usb_interface *intf);
119
static void pwc_isoc_cleanup(struct pwc_device *pdev);
L
Linus Torvalds 已提交
120 121 122 123 124 125 126 127 128 129 130

static struct usb_driver pwc_driver = {
	.name =			"Philips webcam",	/* name */
	.id_table =		pwc_device_table,
	.probe =		usb_pwc_probe,		/* probe() */
	.disconnect =		usb_pwc_disconnect,	/* disconnect() */
};

#define MAX_DEV_HINTS	20
#define MAX_ISOC_ERRORS	20

131
#ifdef CONFIG_USB_PWC_DEBUG
132
	int pwc_trace = PWC_DEBUG_LEVEL;
133
#endif
134
static int power_save = -1;
135
static int leds[2] = { 100, 0 };
L
Linus Torvalds 已提交
136 137 138

/***/

139
static const struct v4l2_file_operations pwc_fops = {
L
Linus Torvalds 已提交
140
	.owner =	THIS_MODULE,
141
	.open =		v4l2_fh_open,
142 143 144 145
	.release =	vb2_fop_release,
	.read =		vb2_fop_read,
	.poll =		vb2_fop_poll,
	.mmap =		vb2_fop_mmap,
146
	.unlocked_ioctl = video_ioctl2,
L
Linus Torvalds 已提交
147 148 149
};
static struct video_device pwc_template = {
	.name =		"Philips Webcam",	/* Filled in later */
150
	.release =	video_device_release_empty,
L
Linus Torvalds 已提交
151
	.fops =         &pwc_fops,
152
	.ioctl_ops =	&pwc_ioctl_ops,
L
Linus Torvalds 已提交
153 154 155 156 157
};

/***************************************************************************/
/* Private functions */

158
static struct pwc_frame_buf *pwc_get_next_fill_buf(struct pwc_device *pdev)
L
Linus Torvalds 已提交
159
{
160 161 162 163 164 165 166 167 168 169 170 171
	unsigned long flags = 0;
	struct pwc_frame_buf *buf = NULL;

	spin_lock_irqsave(&pdev->queued_bufs_lock, flags);
	if (list_empty(&pdev->queued_bufs))
		goto leave;

	buf = list_entry(pdev->queued_bufs.next, struct pwc_frame_buf, list);
	list_del(&buf->list);
leave:
	spin_unlock_irqrestore(&pdev->queued_bufs_lock, flags);
	return buf;
172 173
}

174 175 176 177 178 179 180 181 182 183
static void pwc_snapshot_button(struct pwc_device *pdev, int down)
{
	if (down) {
		PWC_TRACE("Snapshot button pressed.\n");
	} else {
		PWC_TRACE("Snapshot button released.\n");
	}

#ifdef CONFIG_USB_PWC_INPUT_EVDEV
	if (pdev->button_dev) {
184
		input_report_key(pdev->button_dev, KEY_CAMERA, down);
185 186 187 188 189
		input_sync(pdev->button_dev);
	}
#endif
}

190
static void pwc_frame_complete(struct pwc_device *pdev)
191
{
192
	struct pwc_frame_buf *fbuf = pdev->fill_buf;
193 194 195 196 197 198 199 200 201 202 203 204 205

	/* The ToUCam Fun CMOS sensor causes the firmware to send 2 or 3 bogus
	   frames on the USB wire after an exposure change. This conditition is
	   however detected  in the cam and a bit is set in the header.
	   */
	if (pdev->type == 730) {
		unsigned char *ptr = (unsigned char *)fbuf->data;

		if (ptr[1] == 1 && ptr[0] & 0x10) {
			PWC_TRACE("Hyundai CMOS sensor bug. Dropping frame.\n");
			pdev->drop_frames += 2;
		}
		if ((ptr[0] ^ pdev->vmirror) & 0x01) {
206
			pwc_snapshot_button(pdev, ptr[0] & 0x01);
207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225
		}
		if ((ptr[0] ^ pdev->vmirror) & 0x02) {
			if (ptr[0] & 0x02)
				PWC_TRACE("Image is mirrored.\n");
			else
				PWC_TRACE("Image is normal.\n");
		}
		pdev->vmirror = ptr[0] & 0x03;
		/* Sometimes the trailer of the 730 is still sent as a 4 byte packet
		   after a short frame; this condition is filtered out specifically. A 4 byte
		   frame doesn't make sense anyway.
		   So we get either this sequence:
		   drop_bit set -> 4 byte frame -> short frame -> good frame
		   Or this one:
		   drop_bit set -> short frame -> good frame
		   So we drop either 3 or 2 frames in all!
		   */
		if (fbuf->filled == 4)
			pdev->drop_frames++;
226
	} else if (pdev->type == 740 || pdev->type == 720) {
227 228
		unsigned char *ptr = (unsigned char *)fbuf->data;
		if ((ptr[0] ^ pdev->vmirror) & 0x01) {
229
			pwc_snapshot_button(pdev, ptr[0] & 0x01);
230 231 232 233
		}
		pdev->vmirror = ptr[0] & 0x03;
	}

234 235
	/* In case we were instructed to drop the frame, do so silently. */
	if (pdev->drop_frames > 0) {
236
		pdev->drop_frames--;
237
	} else {
238 239 240 241
		/* Check for underflow first */
		if (fbuf->filled < pdev->frame_total_size) {
			PWC_DEBUG_FLOW("Frame buffer underflow (%d bytes);"
				       " discarded.\n", fbuf->filled);
242 243 244 245 246 247
		} else {
			fbuf->vb.v4l2_buf.field = V4L2_FIELD_NONE;
			fbuf->vb.v4l2_buf.sequence = pdev->vframe_count;
			vb2_buffer_done(&fbuf->vb, VB2_BUF_STATE_DONE);
			pdev->fill_buf = NULL;
			pdev->vsync = 0;
248 249 250 251
		}
	} /* !drop_frames */
	pdev->vframe_count++;
}
L
Linus Torvalds 已提交
252 253 254 255

/* This gets called for the Isochronous pipe (video). This is done in
 * interrupt time, so it has to be fast, not crash, and not stall. Neat.
 */
256
static void pwc_isoc_handler(struct urb *urb)
L
Linus Torvalds 已提交
257
{
258
	struct pwc_device *pdev = (struct pwc_device *)urb->context;
L
Linus Torvalds 已提交
259
	int i, fst, flen;
260
	unsigned char *iso_buf = NULL;
L
Linus Torvalds 已提交
261

262 263
	if (urb->status == -ENOENT || urb->status == -ECONNRESET ||
	    urb->status == -ESHUTDOWN) {
264
		PWC_DEBUG_OPEN("URB (%p) unlinked %ssynchronuously.\n", urb, urb->status == -ENOENT ? "" : "a");
L
Linus Torvalds 已提交
265 266
		return;
	}
267 268 269 270 271

	if (pdev->fill_buf == NULL)
		pdev->fill_buf = pwc_get_next_fill_buf(pdev);

	if (urb->status != 0) {
L
Linus Torvalds 已提交
272 273 274 275 276 277 278 279 280
		const char *errmsg;

		errmsg = "Unknown";
		switch(urb->status) {
			case -ENOSR:		errmsg = "Buffer error (overrun)"; break;
			case -EPIPE:		errmsg = "Stalled (device not responding)"; break;
			case -EOVERFLOW:	errmsg = "Babble (bad cable?)"; break;
			case -EPROTO:		errmsg = "Bit-stuff error (bad cable?)"; break;
			case -EILSEQ:		errmsg = "CRC/Timeout (could be anything)"; break;
281
			case -ETIME:		errmsg = "Device does not respond"; break;
L
Linus Torvalds 已提交
282
		}
283 284 285
		PWC_ERROR("pwc_isoc_handler() called with status %d [%s].\n",
			  urb->status, errmsg);
		/* Give up after a number of contiguous errors */
L
Linus Torvalds 已提交
286 287
		if (++pdev->visoc_errors > MAX_ISOC_ERRORS)
		{
288 289 290 291 292 293
			PWC_ERROR("Too many ISOC errors, bailing out.\n");
			if (pdev->fill_buf) {
				vb2_buffer_done(&pdev->fill_buf->vb,
						VB2_BUF_STATE_ERROR);
				pdev->fill_buf = NULL;
			}
L
Linus Torvalds 已提交
294
		}
295
		pdev->vsync = 0; /* Drop the current frame */
L
Linus Torvalds 已提交
296 297 298 299 300 301 302
		goto handler_end;
	}

	/* Reset ISOC error counter. We did get here, after all. */
	pdev->visoc_errors = 0;

	/* vsync: 0 = don't copy data
303 304
		  1 = sync-hunt
		  2 = synched
L
Linus Torvalds 已提交
305 306 307 308 309 310
	 */
	/* Compact data */
	for (i = 0; i < urb->number_of_packets; i++) {
		fst  = urb->iso_frame_desc[i].status;
		flen = urb->iso_frame_desc[i].actual_length;
		iso_buf = urb->transfer_buffer + urb->iso_frame_desc[i].offset;
311 312 313 314 315 316 317 318
		if (fst != 0) {
			PWC_ERROR("Iso frame %d has error %d\n", i, fst);
			continue;
		}
		if (flen > 0 && pdev->vsync) {
			struct pwc_frame_buf *fbuf = pdev->fill_buf;

			if (pdev->vsync == 1) {
319 320
				v4l2_get_timestamp(
					&fbuf->vb.v4l2_buf.timestamp);
321 322 323 324 325 326 327 328 329 330 331
				pdev->vsync = 2;
			}

			if (flen + fbuf->filled > pdev->frame_total_size) {
				PWC_ERROR("Frame overflow (%d > %d)\n",
					  flen + fbuf->filled,
					  pdev->frame_total_size);
				pdev->vsync = 0; /* Let's wait for an EOF */
			} else {
				memcpy(fbuf->data + fbuf->filled, iso_buf,
				       flen);
L
Linus Torvalds 已提交
332
				fbuf->filled += flen;
333 334 335 336 337 338 339 340 341 342
			}
		}
		if (flen < pdev->vlast_packet_size) {
			/* Shorter packet... end of frame */
			if (pdev->vsync == 2)
				pwc_frame_complete(pdev);
			if (pdev->fill_buf == NULL)
				pdev->fill_buf = pwc_get_next_fill_buf(pdev);
			if (pdev->fill_buf) {
				pdev->fill_buf->filled = 0;
L
Linus Torvalds 已提交
343
				pdev->vsync = 1;
344
			}
L
Linus Torvalds 已提交
345
		}
346
		pdev->vlast_packet_size = flen;
L
Linus Torvalds 已提交
347 348 349 350 351
	}

handler_end:
	i = usb_submit_urb(urb, GFP_ATOMIC);
	if (i != 0)
352
		PWC_ERROR("Error (%d) re-submitting urb in pwc_isoc_handler.\n", i);
L
Linus Torvalds 已提交
353 354
}

H
Hans de Goede 已提交
355
/* Both v4l2_lock and vb_queue_lock should be locked when calling this */
356
static int pwc_isoc_init(struct pwc_device *pdev)
L
Linus Torvalds 已提交
357 358 359 360 361 362
{
	struct usb_device *udev;
	struct urb *urb;
	int i, j, ret;
	struct usb_interface *intf;
	struct usb_host_interface *idesc = NULL;
363
	int compression = 0; /* 0..3 = uncompressed..high */
L
Linus Torvalds 已提交
364 365

	pdev->vsync = 0;
366
	pdev->vlast_packet_size = 0;
367 368
	pdev->fill_buf = NULL;
	pdev->vframe_count = 0;
369
	pdev->visoc_errors = 0;
L
Linus Torvalds 已提交
370 371
	udev = pdev->udev;

372 373 374
retry:
	/* We first try with low compression and then retry with a higher
	   compression setting if there is not enough bandwidth. */
375 376
	ret = pwc_set_video_mode(pdev, pdev->width, pdev->height, pdev->pixfmt,
				 pdev->vframes, &compression, 1);
377

L
Linus Torvalds 已提交
378 379 380 381 382
	/* Get the current alternate interface, adjust packet size */
	intf = usb_ifnum_to_if(udev, 0);
	if (intf)
		idesc = usb_altnum_to_altsetting(intf, pdev->valternate);
	if (!idesc)
383
		return -EIO;
L
Linus Torvalds 已提交
384 385 386

	/* Search video endpoint */
	pdev->vmax_packet_size = -1;
387
	for (i = 0; i < idesc->desc.bNumEndpoints; i++) {
L
Linus Torvalds 已提交
388 389 390 391
		if ((idesc->endpoint[i].desc.bEndpointAddress & 0xF) == pdev->vendpoint) {
			pdev->vmax_packet_size = le16_to_cpu(idesc->endpoint[i].desc.wMaxPacketSize);
			break;
		}
392
	}
393

L
Linus Torvalds 已提交
394
	if (pdev->vmax_packet_size < 0 || pdev->vmax_packet_size > ISO_MAX_FRAME_SIZE) {
395
		PWC_ERROR("Failed to find packet size for video endpoint in current alternate setting.\n");
396
		return -ENFILE; /* Odd error, that should be noticeable */
L
Linus Torvalds 已提交
397 398 399
	}

	/* Set alternate interface */
400
	PWC_DEBUG_OPEN("Setting alternate interface %d\n", pdev->valternate);
L
Linus Torvalds 已提交
401
	ret = usb_set_interface(pdev->udev, 0, pdev->valternate);
402 403 404 405
	if (ret == -ENOSPC && compression < 3) {
		compression++;
		goto retry;
	}
L
Linus Torvalds 已提交
406 407 408
	if (ret < 0)
		return ret;

409
	/* Allocate and init Isochronuous urbs */
L
Linus Torvalds 已提交
410 411 412
	for (i = 0; i < MAX_ISO_BUFS; i++) {
		urb = usb_alloc_urb(ISO_FRAMES_PER_DESC, GFP_KERNEL);
		if (urb == NULL) {
413
			PWC_ERROR("Failed to allocate urb %d\n", i);
414 415
			pwc_isoc_cleanup(pdev);
			return -ENOMEM;
L
Linus Torvalds 已提交
416
		}
417
		pdev->urbs[i] = urb;
418
		PWC_DEBUG_MEMORY("Allocated URB at 0x%p\n", urb);
L
Linus Torvalds 已提交
419 420 421

		urb->interval = 1; // devik
		urb->dev = udev;
422
		urb->pipe = usb_rcvisocpipe(udev, pdev->vendpoint);
423 424 425 426 427 428 429 430 431 432
		urb->transfer_flags = URB_ISO_ASAP | URB_NO_TRANSFER_DMA_MAP;
		urb->transfer_buffer = usb_alloc_coherent(udev,
							  ISO_BUFFER_SIZE,
							  GFP_KERNEL,
							  &urb->transfer_dma);
		if (urb->transfer_buffer == NULL) {
			PWC_ERROR("Failed to allocate urb buffer %d\n", i);
			pwc_isoc_cleanup(pdev);
			return -ENOMEM;
		}
433 434 435
		urb->transfer_buffer_length = ISO_BUFFER_SIZE;
		urb->complete = pwc_isoc_handler;
		urb->context = pdev;
L
Linus Torvalds 已提交
436 437 438 439 440 441 442 443 444 445
		urb->start_frame = 0;
		urb->number_of_packets = ISO_FRAMES_PER_DESC;
		for (j = 0; j < ISO_FRAMES_PER_DESC; j++) {
			urb->iso_frame_desc[j].offset = j * ISO_MAX_FRAME_SIZE;
			urb->iso_frame_desc[j].length = pdev->vmax_packet_size;
		}
	}

	/* link */
	for (i = 0; i < MAX_ISO_BUFS; i++) {
446
		ret = usb_submit_urb(pdev->urbs[i], GFP_KERNEL);
447 448 449 450 451
		if (ret == -ENOSPC && compression < 3) {
			compression++;
			pwc_isoc_cleanup(pdev);
			goto retry;
		}
452
		if (ret) {
453
			PWC_ERROR("isoc_init() submit_urb %d failed with error %d\n", i, ret);
454 455 456
			pwc_isoc_cleanup(pdev);
			return ret;
		}
457
		PWC_DEBUG_MEMORY("URB 0x%p submitted.\n", pdev->urbs[i]);
L
Linus Torvalds 已提交
458 459 460
	}

	/* All is done... */
461
	PWC_DEBUG_OPEN("<< pwc_isoc_init()\n");
L
Linus Torvalds 已提交
462 463 464
	return 0;
}

465
static void pwc_iso_stop(struct pwc_device *pdev)
L
Linus Torvalds 已提交
466 467 468 469 470
{
	int i;

	/* Unlinking ISOC buffers one by one */
	for (i = 0; i < MAX_ISO_BUFS; i++) {
471 472 473
		if (pdev->urbs[i]) {
			PWC_DEBUG_MEMORY("Unlinking URB %p\n", pdev->urbs[i]);
			usb_kill_urb(pdev->urbs[i]);
474 475 476 477 478 479 480 481 482 483
		}
	}
}

static void pwc_iso_free(struct pwc_device *pdev)
{
	int i;

	/* Freeing ISOC buffers one by one */
	for (i = 0; i < MAX_ISO_BUFS; i++) {
484
		if (pdev->urbs[i]) {
485
			PWC_DEBUG_MEMORY("Freeing URB\n");
486 487 488 489 490 491 492 493
			if (pdev->urbs[i]->transfer_buffer) {
				usb_free_coherent(pdev->udev,
					pdev->urbs[i]->transfer_buffer_length,
					pdev->urbs[i]->transfer_buffer,
					pdev->urbs[i]->transfer_dma);
			}
			usb_free_urb(pdev->urbs[i]);
			pdev->urbs[i] = NULL;
L
Linus Torvalds 已提交
494 495
		}
	}
496 497
}

H
Hans de Goede 已提交
498
/* Both v4l2_lock and vb_queue_lock should be locked when calling this */
499
static void pwc_isoc_cleanup(struct pwc_device *pdev)
500 501
{
	PWC_DEBUG_OPEN(">> pwc_isoc_cleanup()\n");
502

503 504
	pwc_iso_stop(pdev);
	pwc_iso_free(pdev);
505
	usb_set_interface(pdev->udev, 0, 0);
L
Linus Torvalds 已提交
506

507
	PWC_DEBUG_OPEN("<< pwc_isoc_cleanup()\n");
L
Linus Torvalds 已提交
508 509
}

H
Hans de Goede 已提交
510
/* Must be called with vb_queue_lock hold */
511 512
static void pwc_cleanup_queued_bufs(struct pwc_device *pdev)
{
H
Hans de Goede 已提交
513 514 515
	unsigned long flags = 0;

	spin_lock_irqsave(&pdev->queued_bufs_lock, flags);
516 517 518 519 520 521 522 523
	while (!list_empty(&pdev->queued_bufs)) {
		struct pwc_frame_buf *buf;

		buf = list_entry(pdev->queued_bufs.next, struct pwc_frame_buf,
				 list);
		list_del(&buf->list);
		vb2_buffer_done(&buf->vb, VB2_BUF_STATE_ERROR);
	}
H
Hans de Goede 已提交
524
	spin_unlock_irqrestore(&pdev->queued_bufs_lock, flags);
525 526
}

527
#ifdef CONFIG_USB_PWC_DEBUG
528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551
static const char *pwc_sensor_type_to_string(unsigned int sensor_type)
{
	switch(sensor_type) {
		case 0x00:
			return "Hyundai CMOS sensor";
		case 0x20:
			return "Sony CCD sensor + TDA8787";
		case 0x2E:
			return "Sony CCD sensor + Exas 98L59";
		case 0x2F:
			return "Sony CCD sensor + ADI 9804";
		case 0x30:
			return "Sharp CCD sensor + TDA8787";
		case 0x3E:
			return "Sharp CCD sensor + Exas 98L59";
		case 0x3F:
			return "Sharp CCD sensor + ADI 9804";
		case 0x40:
			return "UPA 1021 sensor";
		case 0x100:
			return "VGA sensor";
		case 0x101:
			return "PAL MR sensor";
		default:
552
			return "unknown type of sensor";
553 554 555
	}
}
#endif
L
Linus Torvalds 已提交
556 557 558 559

/***************************************************************************/
/* Video4Linux functions */

560
static void pwc_video_release(struct v4l2_device *v)
L
Linus Torvalds 已提交
561
{
562
	struct pwc_device *pdev = container_of(v, struct pwc_device, v4l2_dev);
563

564
	v4l2_ctrl_handler_free(&pdev->ctrl_handler);
H
Hans de Goede 已提交
565
	v4l2_device_unregister(&pdev->v4l2_dev);
566
	kfree(pdev->ctrl_buf);
567
	kfree(pdev);
568 569
}

570 571 572
/***************************************************************************/
/* Videobuf2 operations */

573 574 575
static int queue_setup(struct vb2_queue *vq, const struct v4l2_format *fmt,
				unsigned int *nbuffers, unsigned int *nplanes,
				unsigned int sizes[], void *alloc_ctxs[])
576 577
{
	struct pwc_device *pdev = vb2_get_drv_priv(vq);
578
	int size;
579 580 581 582 583 584 585 586

	if (*nbuffers < MIN_FRAMES)
		*nbuffers = MIN_FRAMES;
	else if (*nbuffers > MAX_FRAMES)
		*nbuffers = MAX_FRAMES;

	*nplanes = 1;

587 588 589
	size = pwc_get_size(pdev, MAX_WIDTH, MAX_HEIGHT);
	sizes[0] = PAGE_ALIGN(pwc_image_sizes[size][0] *
			      pwc_image_sizes[size][1] * 3 / 2);
590 591 592 593 594 595 596

	return 0;
}

static int buffer_init(struct vb2_buffer *vb)
{
	struct pwc_frame_buf *buf = container_of(vb, struct pwc_frame_buf, vb);
597

598 599 600 601 602 603 604 605 606 607 608 609 610
	/* need vmalloc since frame buffer > 128K */
	buf->data = vzalloc(PWC_FRAME_SIZE);
	if (buf->data == NULL)
		return -ENOMEM;

	return 0;
}

static int buffer_prepare(struct vb2_buffer *vb)
{
	struct pwc_device *pdev = vb2_get_drv_priv(vb->vb2_queue);

	/* Don't allow queing new buffers after device disconnection */
611 612
	if (!pdev->udev)
		return -ENODEV;
L
Linus Torvalds 已提交
613 614 615 616

	return 0;
}

617
static void buffer_finish(struct vb2_buffer *vb)
L
Linus Torvalds 已提交
618
{
619 620
	struct pwc_device *pdev = vb2_get_drv_priv(vb->vb2_queue);
	struct pwc_frame_buf *buf = container_of(vb, struct pwc_frame_buf, vb);
621

622 623 624 625 626
	/*
	 * Application has called dqbuf and is getting back a buffer we've
	 * filled, take the pwc data we've stored in buf->data and decompress
	 * it into a usable format, storing the result in the vb2_buffer
	 */
627
	pwc_decompress(pdev, buf);
628 629 630 631 632 633 634 635 636 637 638 639 640 641 642
}

static void buffer_cleanup(struct vb2_buffer *vb)
{
	struct pwc_frame_buf *buf = container_of(vb, struct pwc_frame_buf, vb);

	vfree(buf->data);
}

static void buffer_queue(struct vb2_buffer *vb)
{
	struct pwc_device *pdev = vb2_get_drv_priv(vb->vb2_queue);
	struct pwc_frame_buf *buf = container_of(vb, struct pwc_frame_buf, vb);
	unsigned long flags = 0;

H
Hans de Goede 已提交
643
	/* Check the device has not disconnected between prep and queuing */
H
Hans de Goede 已提交
644
	if (!pdev->udev) {
H
Hans de Goede 已提交
645
		vb2_buffer_done(&buf->vb, VB2_BUF_STATE_ERROR);
H
Hans de Goede 已提交
646 647 648 649 650
		return;
	}

	spin_lock_irqsave(&pdev->queued_bufs_lock, flags);
	list_add_tail(&buf->list, &pdev->queued_bufs);
651 652 653
	spin_unlock_irqrestore(&pdev->queued_bufs_lock, flags);
}

654
static int start_streaming(struct vb2_queue *vq, unsigned int count)
655 656
{
	struct pwc_device *pdev = vb2_get_drv_priv(vq);
H
Hans de Goede 已提交
657
	int r;
658

H
Hans de Goede 已提交
659 660
	if (!pdev->udev)
		return -ENODEV;
661

662 663
	if (mutex_lock_interruptible(&pdev->v4l2_lock))
		return -ERESTARTSYS;
664 665
	/* Turn on camera and set LEDS on */
	pwc_camera_power(pdev, 1);
666
	pwc_set_leds(pdev, leds[0], leds[1]);
667

H
Hans de Goede 已提交
668
	r = pwc_isoc_init(pdev);
669 670 671 672 673 674 675
	if (r) {
		/* If we failed turn camera and LEDS back off */
		pwc_set_leds(pdev, 0, 0);
		pwc_camera_power(pdev, 0);
		/* And cleanup any queued bufs!! */
		pwc_cleanup_queued_bufs(pdev);
	}
676
	mutex_unlock(&pdev->v4l2_lock);
H
Hans de Goede 已提交
677

H
Hans de Goede 已提交
678
	return r;
679 680 681 682 683 684
}

static int stop_streaming(struct vb2_queue *vq)
{
	struct pwc_device *pdev = vb2_get_drv_priv(vq);

685 686
	if (mutex_lock_interruptible(&pdev->v4l2_lock))
		return -ERESTARTSYS;
687 688 689
	if (pdev->udev) {
		pwc_set_leds(pdev, 0, 0);
		pwc_camera_power(pdev, 0);
690
		pwc_isoc_cleanup(pdev);
691
	}
H
Hans de Goede 已提交
692

693
	pwc_cleanup_queued_bufs(pdev);
694
	mutex_unlock(&pdev->v4l2_lock);
695

L
Linus Torvalds 已提交
696 697 698
	return 0;
}

699 700 701 702 703 704 705 706 707
static struct vb2_ops pwc_vb_queue_ops = {
	.queue_setup		= queue_setup,
	.buf_init		= buffer_init,
	.buf_prepare		= buffer_prepare,
	.buf_finish		= buffer_finish,
	.buf_cleanup		= buffer_cleanup,
	.buf_queue		= buffer_queue,
	.start_streaming	= start_streaming,
	.stop_streaming		= stop_streaming,
708 709
	.wait_prepare		= vb2_ops_wait_prepare,
	.wait_finish		= vb2_ops_wait_finish,
710 711
};

L
Linus Torvalds 已提交
712 713 714 715 716 717 718 719 720 721 722 723
/***************************************************************************/
/* USB functions */

/* This function gets called when a new device is plugged in or the usb core
 * is loaded.
 */

static int usb_pwc_probe(struct usb_interface *intf, const struct usb_device_id *id)
{
	struct usb_device *udev = interface_to_usbdev(intf);
	struct pwc_device *pdev = NULL;
	int vendor_id, product_id, type_id;
724
	int rc;
L
Linus Torvalds 已提交
725
	int features = 0;
726
	int compression = 0;
727
	int my_power_save = power_save;
L
Linus Torvalds 已提交
728 729
	char serial_number[30], *name;

730 731 732
	vendor_id = le16_to_cpu(udev->descriptor.idVendor);
	product_id = le16_to_cpu(udev->descriptor.idProduct);

L
Linus Torvalds 已提交
733
	/* Check if we can handle this device */
734 735
	PWC_DEBUG_PROBE("probe() called [%04X %04X], if %d\n",
		vendor_id, product_id,
L
Linus Torvalds 已提交
736 737 738 739 740 741 742 743 744 745 746 747
		intf->altsetting->desc.bInterfaceNumber);

	/* the interfaces are probed one by one. We are only interested in the
	   video interface (0) now.
	   Interface 1 is the Audio Control, and interface 2 Audio itself.
	 */
	if (intf->altsetting->desc.bInterfaceNumber > 0)
		return -ENODEV;

	if (vendor_id == 0x0471) {
		switch (product_id) {
		case 0x0302:
748
			PWC_INFO("Philips PCA645VC USB webcam detected.\n");
L
Linus Torvalds 已提交
749 750 751 752
			name = "Philips 645 webcam";
			type_id = 645;
			break;
		case 0x0303:
753
			PWC_INFO("Philips PCA646VC USB webcam detected.\n");
L
Linus Torvalds 已提交
754 755 756 757
			name = "Philips 646 webcam";
			type_id = 646;
			break;
		case 0x0304:
758
			PWC_INFO("Askey VC010 type 2 USB webcam detected.\n");
L
Linus Torvalds 已提交
759 760 761 762
			name = "Askey VC010 webcam";
			type_id = 646;
			break;
		case 0x0307:
763
			PWC_INFO("Philips PCVC675K (Vesta) USB webcam detected.\n");
L
Linus Torvalds 已提交
764 765 766 767
			name = "Philips 675 webcam";
			type_id = 675;
			break;
		case 0x0308:
768
			PWC_INFO("Philips PCVC680K (Vesta Pro) USB webcam detected.\n");
L
Linus Torvalds 已提交
769 770 771 772
			name = "Philips 680 webcam";
			type_id = 680;
			break;
		case 0x030C:
773
			PWC_INFO("Philips PCVC690K (Vesta Pro Scan) USB webcam detected.\n");
L
Linus Torvalds 已提交
774 775 776 777
			name = "Philips 690 webcam";
			type_id = 690;
			break;
		case 0x0310:
778
			PWC_INFO("Philips PCVC730K (ToUCam Fun)/PCVC830 (ToUCam II) USB webcam detected.\n");
L
Linus Torvalds 已提交
779 780 781 782
			name = "Philips 730 webcam";
			type_id = 730;
			break;
		case 0x0311:
783
			PWC_INFO("Philips PCVC740K (ToUCam Pro)/PCVC840 (ToUCam II) USB webcam detected.\n");
L
Linus Torvalds 已提交
784 785 786 787
			name = "Philips 740 webcam";
			type_id = 740;
			break;
		case 0x0312:
788
			PWC_INFO("Philips PCVC750K (ToUCam Pro Scan) USB webcam detected.\n");
L
Linus Torvalds 已提交
789 790 791 792
			name = "Philips 750 webcam";
			type_id = 750;
			break;
		case 0x0313:
793
			PWC_INFO("Philips PCVC720K/40 (ToUCam XS) USB webcam detected.\n");
L
Linus Torvalds 已提交
794 795 796
			name = "Philips 720K/40 webcam";
			type_id = 720;
			break;
797 798 799
		case 0x0329:
			PWC_INFO("Philips SPC 900NC USB webcam detected.\n");
			name = "Philips SPC 900NC webcam";
800
			type_id = 740;
801
			break;
L
Linus Torvalds 已提交
802 803 804 805 806 807 808 809
		default:
			return -ENODEV;
			break;
		}
	}
	else if (vendor_id == 0x069A) {
		switch(product_id) {
		case 0x0001:
810
			PWC_INFO("Askey VC010 type 1 USB webcam detected.\n");
L
Linus Torvalds 已提交
811 812 813 814 815 816 817 818 819 820 821
			name = "Askey VC010 webcam";
			type_id = 645;
			break;
		default:
			return -ENODEV;
			break;
		}
	}
	else if (vendor_id == 0x046d) {
		switch(product_id) {
		case 0x08b0:
822
			PWC_INFO("Logitech QuickCam Pro 3000 USB webcam detected.\n");
L
Linus Torvalds 已提交
823 824 825 826
			name = "Logitech QuickCam Pro 3000";
			type_id = 740; /* CCD sensor */
			break;
		case 0x08b1:
827
			PWC_INFO("Logitech QuickCam Notebook Pro USB webcam detected.\n");
L
Linus Torvalds 已提交
828 829 830 831
			name = "Logitech QuickCam Notebook Pro";
			type_id = 740; /* CCD sensor */
			break;
		case 0x08b2:
832
			PWC_INFO("Logitech QuickCam 4000 Pro USB webcam detected.\n");
L
Linus Torvalds 已提交
833 834
			name = "Logitech QuickCam Pro 4000";
			type_id = 740; /* CCD sensor */
835 836
			if (my_power_save == -1)
				my_power_save = 1;
L
Linus Torvalds 已提交
837 838
			break;
		case 0x08b3:
839
			PWC_INFO("Logitech QuickCam Zoom USB webcam detected.\n");
L
Linus Torvalds 已提交
840 841 842 843
			name = "Logitech QuickCam Zoom";
			type_id = 740; /* CCD sensor */
			break;
		case 0x08B4:
844
			PWC_INFO("Logitech QuickCam Zoom (new model) USB webcam detected.\n");
L
Linus Torvalds 已提交
845 846
			name = "Logitech QuickCam Zoom";
			type_id = 740; /* CCD sensor */
847 848
			if (my_power_save == -1)
				my_power_save = 1;
L
Linus Torvalds 已提交
849 850
			break;
		case 0x08b5:
851
			PWC_INFO("Logitech QuickCam Orbit/Sphere USB webcam detected.\n");
L
Linus Torvalds 已提交
852 853
			name = "Logitech QuickCam Orbit";
			type_id = 740; /* CCD sensor */
854 855
			if (my_power_save == -1)
				my_power_save = 1;
L
Linus Torvalds 已提交
856 857 858
			features |= FEATURE_MOTOR_PANTILT;
			break;
		case 0x08b6:
859 860 861 862
			PWC_INFO("Logitech/Cisco VT Camera webcam detected.\n");
			name = "Cisco VT Camera";
			type_id = 740; /* CCD sensor */
			break;
L
Linus Torvalds 已提交
863
		case 0x08b7:
864 865 866 867 868
			PWC_INFO("Logitech ViewPort AV 100 webcam detected.\n");
			name = "Logitech ViewPort AV 100";
			type_id = 740; /* CCD sensor */
			break;
		case 0x08b8: /* Where this released? */
869
			PWC_INFO("Logitech QuickCam detected (reserved ID).\n");
L
Linus Torvalds 已提交
870 871 872
			name = "Logitech QuickCam (res.)";
			type_id = 730; /* Assuming CMOS */
			break;
873
		default:
L
Linus Torvalds 已提交
874
			return -ENODEV;
875 876 877
			break;
		}
	}
L
Linus Torvalds 已提交
878 879 880 881 882 883 884
	else if (vendor_id == 0x055d) {
		/* I don't know the difference between the C10 and the C30;
		   I suppose the difference is the sensor, but both cameras
		   work equally well with a type_id of 675
		 */
		switch(product_id) {
		case 0x9000:
885
			PWC_INFO("Samsung MPC-C10 USB webcam detected.\n");
L
Linus Torvalds 已提交
886 887 888 889
			name = "Samsung MPC-C10";
			type_id = 675;
			break;
		case 0x9001:
890
			PWC_INFO("Samsung MPC-C30 USB webcam detected.\n");
L
Linus Torvalds 已提交
891 892 893
			name = "Samsung MPC-C30";
			type_id = 675;
			break;
894 895 896 897 898
		case 0x9002:
			PWC_INFO("Samsung SNC-35E (v3.0) USB webcam detected.\n");
			name = "Samsung MPC-C30";
			type_id = 740;
			break;
L
Linus Torvalds 已提交
899 900 901 902 903 904 905 906
		default:
			return -ENODEV;
			break;
		}
	}
	else if (vendor_id == 0x041e) {
		switch(product_id) {
		case 0x400c:
907
			PWC_INFO("Creative Labs Webcam 5 detected.\n");
L
Linus Torvalds 已提交
908 909
			name = "Creative Labs Webcam 5";
			type_id = 730;
910 911
			if (my_power_save == -1)
				my_power_save = 1;
L
Linus Torvalds 已提交
912 913
			break;
		case 0x4011:
914
			PWC_INFO("Creative Labs Webcam Pro Ex detected.\n");
L
Linus Torvalds 已提交
915 916 917 918 919 920 921 922 923 924 925
			name = "Creative Labs Webcam Pro Ex";
			type_id = 740;
			break;
		default:
			return -ENODEV;
			break;
		}
	}
	else if (vendor_id == 0x04cc) {
		switch(product_id) {
		case 0x8116:
926
			PWC_INFO("Sotec Afina Eye USB webcam detected.\n");
L
Linus Torvalds 已提交
927 928 929 930 931 932 933 934 935 936 937 938
			name = "Sotec Afina Eye";
			type_id = 730;
			break;
		default:
			return -ENODEV;
			break;
		}
	}
	else if (vendor_id == 0x06be) {
		switch(product_id) {
		case 0x8116:
			/* This is essentially the same cam as the Sotec Afina Eye */
939
			PWC_INFO("AME Co. Afina Eye USB webcam detected.\n");
L
Linus Torvalds 已提交
940 941 942 943 944 945 946
			name = "AME Co. Afina Eye";
			type_id = 750;
			break;
		default:
			return -ENODEV;
			break;
		}
947

L
Linus Torvalds 已提交
948 949 950 951
	}
	else if (vendor_id == 0x0d81) {
		switch(product_id) {
		case 0x1900:
952
			PWC_INFO("Visionite VCS-UC300 USB webcam detected.\n");
L
Linus Torvalds 已提交
953 954 955 956
			name = "Visionite VCS-UC300";
			type_id = 740; /* CCD sensor */
			break;
		case 0x1910:
957
			PWC_INFO("Visionite VCS-UM100 USB webcam detected.\n");
L
Linus Torvalds 已提交
958 959 960 961 962 963 964 965
			name = "Visionite VCS-UM100";
			type_id = 730; /* CMOS sensor */
			break;
		default:
			return -ENODEV;
			break;
		}
	}
966
	else
L
Linus Torvalds 已提交
967 968
		return -ENODEV; /* Not any of the know types; but the list keeps growing. */

969 970 971
	if (my_power_save == -1)
		my_power_save = 0;

L
Linus Torvalds 已提交
972 973
	memset(serial_number, 0, 30);
	usb_string(udev, udev->descriptor.iSerialNumber, serial_number, 29);
974
	PWC_DEBUG_PROBE("Device serial number is %s\n", serial_number);
L
Linus Torvalds 已提交
975 976

	if (udev->descriptor.bNumConfigurations > 1)
977
		PWC_WARNING("Warning: more than 1 configuration available.\n");
L
Linus Torvalds 已提交
978 979

	/* Allocate structure, initialize pointers, mutexes, etc. and link it to the usb_device */
980
	pdev = kzalloc(sizeof(struct pwc_device), GFP_KERNEL);
L
Linus Torvalds 已提交
981
	if (pdev == NULL) {
982
		PWC_ERROR("Oops, could not allocate memory for pwc_device.\n");
L
Linus Torvalds 已提交
983 984 985 986
		return -ENOMEM;
	}
	pdev->type = type_id;
	pdev->features = features;
987
	pwc_construct(pdev); /* set min/max sizes correct */
L
Linus Torvalds 已提交
988

H
Hans de Goede 已提交
989 990
	mutex_init(&pdev->v4l2_lock);
	mutex_init(&pdev->vb_queue_lock);
991 992
	spin_lock_init(&pdev->queued_bufs_lock);
	INIT_LIST_HEAD(&pdev->queued_bufs);
L
Linus Torvalds 已提交
993 994

	pdev->udev = udev;
995
	pdev->power_save = my_power_save;
L
Linus Torvalds 已提交
996

997 998 999 1000 1001 1002 1003
	/* Init videobuf2 queue structure */
	pdev->vb_queue.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
	pdev->vb_queue.io_modes = VB2_MMAP | VB2_USERPTR | VB2_READ;
	pdev->vb_queue.drv_priv = pdev;
	pdev->vb_queue.buf_struct_size = sizeof(struct pwc_frame_buf);
	pdev->vb_queue.ops = &pwc_vb_queue_ops;
	pdev->vb_queue.mem_ops = &vb2_vmalloc_memops;
1004
	pdev->vb_queue.timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC;
1005 1006 1007 1008 1009
	rc = vb2_queue_init(&pdev->vb_queue);
	if (rc < 0) {
		PWC_ERROR("Oops, could not initialize vb2 queue.\n");
		goto err_free_mem;
	}
1010

1011
	/* Init video_device structure */
1012
	pdev->vdev = pwc_template;
1013
	strcpy(pdev->vdev.name, name);
1014 1015
	pdev->vdev.queue = &pdev->vb_queue;
	pdev->vdev.queue->lock = &pdev->vb_queue_lock;
1016
	set_bit(V4L2_FL_USE_FH_PRIO, &pdev->vdev.flags);
1017
	video_set_drvdata(&pdev->vdev, pdev);
L
Linus Torvalds 已提交
1018 1019

	pdev->release = le16_to_cpu(udev->descriptor.bcdDevice);
1020
	PWC_DEBUG_PROBE("Release: %04x\n", pdev->release);
L
Linus Torvalds 已提交
1021

1022 1023 1024 1025 1026 1027 1028 1029
	/* Allocate USB command buffers */
	pdev->ctrl_buf = kmalloc(sizeof(pdev->cmd_buf), GFP_KERNEL);
	if (!pdev->ctrl_buf) {
		PWC_ERROR("Oops, could not allocate memory for pwc_device.\n");
		rc = -ENOMEM;
		goto err_free_mem;
	}

1030 1031 1032 1033 1034 1035 1036 1037 1038
#ifdef CONFIG_USB_PWC_DEBUG
	/* Query sensor type */
	if (pwc_get_cmos_sensor(pdev, &rc) >= 0) {
		PWC_DEBUG_OPEN("This %s camera is equipped with a %s (%d).\n",
				pdev->vdev.name,
				pwc_sensor_type_to_string(rc), rc);
	}
#endif

1039 1040
	/* Set the leds off */
	pwc_set_leds(pdev, 0, 0);
1041

1042
	/* Setup initial videomode */
H
Hans de Goede 已提交
1043
	rc = pwc_set_video_mode(pdev, MAX_WIDTH, MAX_HEIGHT,
1044
				V4L2_PIX_FMT_YUV420, 30, &compression, 1);
1045 1046 1047
	if (rc)
		goto err_free_mem;

1048 1049 1050 1051 1052 1053 1054
	/* Register controls (and read default values from camera */
	rc = pwc_init_controls(pdev);
	if (rc) {
		PWC_ERROR("Failed to register v4l2 controls (%d).\n", rc);
		goto err_free_mem;
	}

1055
	/* And powerdown the camera until streaming starts */
1056 1057
	pwc_camera_power(pdev, 0);

1058 1059 1060 1061 1062 1063 1064 1065 1066 1067
	/* Register the v4l2_device structure */
	pdev->v4l2_dev.release = pwc_video_release;
	rc = v4l2_device_register(&intf->dev, &pdev->v4l2_dev);
	if (rc) {
		PWC_ERROR("Failed to register v4l2-device (%d).\n", rc);
		goto err_free_controls;
	}

	pdev->v4l2_dev.ctrl_handler = &pdev->ctrl_handler;
	pdev->vdev.v4l2_dev = &pdev->v4l2_dev;
H
Hans de Goede 已提交
1068 1069
	pdev->vdev.lock = &pdev->v4l2_lock;

1070
	rc = video_register_device(&pdev->vdev, VFL_TYPE_GRABBER, -1);
1071 1072
	if (rc < 0) {
		PWC_ERROR("Failed to register as video device (%d).\n", rc);
1073
		goto err_unregister_v4l2_dev;
1074
	}
1075
	PWC_INFO("Registered as %s.\n", video_device_node_name(&pdev->vdev));
1076

1077 1078 1079 1080
#ifdef CONFIG_USB_PWC_INPUT_EVDEV
	/* register webcam snapshot button input device */
	pdev->button_dev = input_allocate_device();
	if (!pdev->button_dev) {
1081 1082
		rc = -ENOMEM;
		goto err_video_unreg;
1083 1084
	}

1085 1086 1087
	usb_make_path(udev, pdev->button_phys, sizeof(pdev->button_phys));
	strlcat(pdev->button_phys, "/input0", sizeof(pdev->button_phys));

1088
	pdev->button_dev->name = "PWC snapshot button";
1089
	pdev->button_dev->phys = pdev->button_phys;
1090 1091 1092
	usb_to_input_id(pdev->udev, &pdev->button_dev->id);
	pdev->button_dev->dev.parent = &pdev->udev->dev;
	pdev->button_dev->evbit[0] = BIT_MASK(EV_KEY);
1093
	pdev->button_dev->keybit[BIT_WORD(KEY_CAMERA)] = BIT_MASK(KEY_CAMERA);
1094 1095 1096 1097 1098

	rc = input_register_device(pdev->button_dev);
	if (rc) {
		input_free_device(pdev->button_dev);
		pdev->button_dev = NULL;
1099
		goto err_video_unreg;
1100 1101 1102
	}
#endif

L
Linus Torvalds 已提交
1103
	return 0;
1104

1105
err_video_unreg:
1106
	video_unregister_device(&pdev->vdev);
1107 1108
err_unregister_v4l2_dev:
	v4l2_device_unregister(&pdev->v4l2_dev);
1109 1110
err_free_controls:
	v4l2_ctrl_handler_free(&pdev->ctrl_handler);
1111
err_free_mem:
1112
	kfree(pdev->ctrl_buf);
1113
	kfree(pdev);
1114
	return rc;
L
Linus Torvalds 已提交
1115 1116
}

1117
/* The user yanked out the cable... */
L
Linus Torvalds 已提交
1118 1119
static void usb_pwc_disconnect(struct usb_interface *intf)
{
1120 1121
	struct v4l2_device *v = usb_get_intfdata(intf);
	struct pwc_device *pdev = container_of(v, struct pwc_device, v4l2_dev);
L
Linus Torvalds 已提交
1122

H
Hans de Goede 已提交
1123
	mutex_lock(&pdev->vb_queue_lock);
1124
	mutex_lock(&pdev->v4l2_lock);
1125
	/* No need to keep the urbs around after disconnection */
H
Hans de Goede 已提交
1126 1127
	if (pdev->vb_queue.streaming)
		pwc_isoc_cleanup(pdev);
1128
	pdev->udev = NULL;
H
Hans de Goede 已提交
1129 1130
	pwc_cleanup_queued_bufs(pdev);

H
Hans de Goede 已提交
1131
	v4l2_device_disconnect(&pdev->v4l2_dev);
1132
	video_unregister_device(&pdev->vdev);
H
Hans de Goede 已提交
1133
	mutex_unlock(&pdev->v4l2_lock);
1134
	mutex_unlock(&pdev->vb_queue_lock);
1135 1136 1137 1138 1139

#ifdef CONFIG_USB_PWC_INPUT_EVDEV
	if (pdev->button_dev)
		input_unregister_device(pdev->button_dev);
#endif
1140 1141

	v4l2_device_put(&pdev->v4l2_dev);
L
Linus Torvalds 已提交
1142 1143 1144
}


1145 1146
/*
 * Initialization code & module stuff
L
Linus Torvalds 已提交
1147 1148
 */

1149
static unsigned int leds_nargs;
1150

1151
#ifdef CONFIG_USB_PWC_DEBUG
1152 1153
module_param_named(trace, pwc_trace, int, 0644);
#endif
1154
module_param(power_save, int, 0644);
1155
module_param_array(leds, int, &leds_nargs, 0444);
L
Linus Torvalds 已提交
1156

1157
#ifdef CONFIG_USB_PWC_DEBUG
L
Linus Torvalds 已提交
1158
MODULE_PARM_DESC(trace, "For debugging purposes");
1159
#endif
1160
MODULE_PARM_DESC(power_save, "Turn power saving for new cameras on or off");
L
Linus Torvalds 已提交
1161 1162 1163 1164 1165
MODULE_PARM_DESC(leds, "LED on,off time in milliseconds");

MODULE_DESCRIPTION("Philips & OEM USB webcam driver");
MODULE_AUTHOR("Luc Saillard <luc@saillard.org>");
MODULE_LICENSE("GPL");
1166 1167
MODULE_ALIAS("pwcx");
MODULE_VERSION( PWC_VERSION );
L
Linus Torvalds 已提交
1168

H
Hans de Goede 已提交
1169
module_usb_driver(pwc_driver);