2 * Main USB camera driver
4 * V4L2 by Jean-Francois Moine <http://moinejf.free.fr>
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2 of the License, or (at your
9 * option) any later version.
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software Foundation,
18 * Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 #define MODULE_NAME "gspca"
23 #include <linux/init.h>
25 #include <linux/vmalloc.h>
26 #include <linux/sched.h>
27 #include <linux/slab.h>
29 #include <linux/string.h>
30 #include <linux/pagemap.h>
33 #include <linux/uaccess.h>
34 #include <linux/jiffies.h>
39 #define DEF_NURBS 2 /* default number of URBs */
41 MODULE_AUTHOR("Jean-Francois Moine <http://moinejf.free.fr>");
42 MODULE_DESCRIPTION("GSPCA USB Camera Driver");
43 MODULE_LICENSE("GPL");
45 #define DRIVER_VERSION_NUMBER KERNEL_VERSION(2, 1, 6)
46 static const char version[] = "2.1.6";
48 static int video_nr = -1;
50 #ifdef CONFIG_VIDEO_ADV_DEBUG
51 int gspca_debug = D_ERR | D_PROBE;
52 EXPORT_SYMBOL(gspca_debug);
54 static void PDEBUG_MODE(char *txt, __u32 pixfmt, int w, int h)
56 if ((pixfmt >> 24) >= '0' && (pixfmt >> 24) <= 'z') {
57 PDEBUG(D_CONF|D_STREAM, "%s %c%c%c%c %dx%d",
61 (pixfmt >> 16) & 0xff,
65 PDEBUG(D_CONF|D_STREAM, "%s 0x%08x %dx%d",
72 #define PDEBUG_MODE(txt, pixfmt, w, h)
75 /* specific memory types - !! should different from V4L2_MEMORY_xxx */
76 #define GSPCA_MEMORY_NO 0 /* V4L2_MEMORY_xxx starts from 1 */
77 #define GSPCA_MEMORY_READ 7
79 #define BUF_ALL_FLAGS (V4L2_BUF_FLAG_QUEUED | V4L2_BUF_FLAG_DONE)
84 static void gspca_vm_open(struct vm_area_struct *vma)
86 struct gspca_frame *frame = vma->vm_private_data;
88 frame->vma_use_count++;
89 frame->v4l2_buf.flags |= V4L2_BUF_FLAG_MAPPED;
92 static void gspca_vm_close(struct vm_area_struct *vma)
94 struct gspca_frame *frame = vma->vm_private_data;
96 if (--frame->vma_use_count <= 0)
97 frame->v4l2_buf.flags &= ~V4L2_BUF_FLAG_MAPPED;
100 static struct vm_operations_struct gspca_vm_ops = {
101 .open = gspca_vm_open,
102 .close = gspca_vm_close,
106 * fill a video frame from an URB and resubmit
108 static void fill_frame(struct gspca_dev *gspca_dev,
111 struct gspca_frame *frame;
112 __u8 *data; /* address of data in the iso message */
116 if (urb->status != 0) {
117 PDEBUG(D_ERR|D_PACK, "urb status: %d", urb->status);
118 return; /* disconnection ? */
120 pkt_scan = gspca_dev->sd_desc->pkt_scan;
121 for (i = 0; i < urb->number_of_packets; i++) {
123 /* check the availability of the frame buffer */
125 j = gspca_dev->fr_queue[j];
126 frame = &gspca_dev->frame[j];
127 if ((frame->v4l2_buf.flags & BUF_ALL_FLAGS)
128 != V4L2_BUF_FLAG_QUEUED) {
129 gspca_dev->last_packet_type = DISCARD_PACKET;
133 /* check the packet status and length */
134 len = urb->iso_frame_desc[i].actual_length;
137 st = urb->iso_frame_desc[i].status;
140 "ISOC data error: [%d] len=%d, status=%d",
142 gspca_dev->last_packet_type = DISCARD_PACKET;
146 /* let the packet be analyzed by the subdriver */
147 PDEBUG(D_PACK, "packet [%d] o:%d l:%d",
148 i, urb->iso_frame_desc[i].offset, len);
149 data = (__u8 *) urb->transfer_buffer
150 + urb->iso_frame_desc[i].offset;
151 pkt_scan(gspca_dev, frame, data, len);
154 /* resubmit the URB */
156 st = usb_submit_urb(urb, GFP_ATOMIC);
158 PDEBUG(D_ERR|D_PACK, "usb_submit_urb() ret %d", st);
162 * ISOC message interrupt from the USB device
164 * Analyse each packet and call the subdriver for copy to the frame buffer.
166 static void isoc_irq(struct urb *urb
169 struct gspca_dev *gspca_dev = (struct gspca_dev *) urb->context;
171 PDEBUG(D_PACK, "isoc irq mmap");
172 if (!gspca_dev->streaming)
174 fill_frame(gspca_dev, urb);
178 * add data to the current frame
180 * This function is called by the subdrivers at interrupt level.
182 * To build a frame, these ones must add
184 * - 0 or many INTER_PACKETs
186 * DISCARD_PACKET invalidates the whole frame.
187 * On LAST_PACKET, a new frame is returned.
189 struct gspca_frame *gspca_frame_add(struct gspca_dev *gspca_dev,
191 struct gspca_frame *frame,
197 PDEBUG(D_PACK, "add t:%d l:%d", packet_type, len);
199 /* when start of a new frame, if the current frame buffer
200 * is not queued, discard the whole frame */
201 if (packet_type == FIRST_PACKET) {
202 if ((frame->v4l2_buf.flags & BUF_ALL_FLAGS)
203 != V4L2_BUF_FLAG_QUEUED) {
204 gspca_dev->last_packet_type = DISCARD_PACKET;
207 frame->data_end = frame->data;
208 jiffies_to_timeval(get_jiffies_64(),
209 &frame->v4l2_buf.timestamp);
210 frame->v4l2_buf.sequence = ++gspca_dev->sequence;
211 } else if (gspca_dev->last_packet_type == DISCARD_PACKET) {
215 /* append the packet to the frame buffer */
217 if (frame->data_end - frame->data + len
218 > frame->v4l2_buf.length) {
219 PDEBUG(D_ERR|D_PACK, "frame overflow %zd > %d",
220 frame->data_end - frame->data + len,
221 frame->v4l2_buf.length);
222 packet_type = DISCARD_PACKET;
224 memcpy(frame->data_end, data, len);
225 frame->data_end += len;
228 gspca_dev->last_packet_type = packet_type;
230 /* if last packet, wake the application and advance in the queue */
231 if (packet_type == LAST_PACKET) {
232 frame->v4l2_buf.bytesused = frame->data_end - frame->data;
233 frame->v4l2_buf.flags &= ~V4L2_BUF_FLAG_QUEUED;
234 frame->v4l2_buf.flags |= V4L2_BUF_FLAG_DONE;
235 atomic_inc(&gspca_dev->nevent);
236 wake_up_interruptible(&gspca_dev->wq); /* event = new frame */
237 i = (gspca_dev->fr_i + 1) % gspca_dev->nframes;
239 PDEBUG(D_FRAM, "frame complete len:%d q:%d i:%d o:%d",
240 frame->v4l2_buf.bytesused,
244 j = gspca_dev->fr_queue[i];
245 frame = &gspca_dev->frame[j];
249 EXPORT_SYMBOL(gspca_frame_add);
251 static int gspca_is_compressed(__u32 format)
254 case V4L2_PIX_FMT_MJPEG:
255 case V4L2_PIX_FMT_JPEG:
256 case V4L2_PIX_FMT_SPCA561:
257 case V4L2_PIX_FMT_PAC207:
263 static void *rvmalloc(unsigned long size)
268 /* size = PAGE_ALIGN(size); (already done) */
269 mem = vmalloc_32(size);
271 adr = (unsigned long) mem;
272 while ((long) size > 0) {
273 SetPageReserved(vmalloc_to_page((void *) adr));
281 static void rvfree(void *mem, long size)
285 adr = (unsigned long) mem;
287 ClearPageReserved(vmalloc_to_page((void *) adr));
294 static int frame_alloc(struct gspca_dev *gspca_dev,
297 struct gspca_frame *frame;
301 i = gspca_dev->curr_mode;
302 frsz = gspca_dev->cam.cam_mode[i].sizeimage;
303 PDEBUG(D_STREAM, "frame alloc frsz: %d", frsz);
304 frsz = PAGE_ALIGN(frsz);
305 gspca_dev->frsz = frsz;
306 if (count > GSPCA_MAX_FRAMES)
307 count = GSPCA_MAX_FRAMES;
308 gspca_dev->frbuf = rvmalloc(frsz * count);
309 if (!gspca_dev->frbuf) {
310 err("frame alloc failed");
313 gspca_dev->nframes = count;
314 for (i = 0; i < count; i++) {
315 frame = &gspca_dev->frame[i];
316 frame->v4l2_buf.index = i;
317 frame->v4l2_buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
318 frame->v4l2_buf.flags = 0;
319 frame->v4l2_buf.field = V4L2_FIELD_NONE;
320 frame->v4l2_buf.length = frsz;
321 frame->v4l2_buf.memory = gspca_dev->memory;
322 frame->v4l2_buf.sequence = 0;
323 frame->data = frame->data_end =
324 gspca_dev->frbuf + i * frsz;
325 frame->v4l2_buf.m.offset = i * frsz;
327 gspca_dev->fr_i = gspca_dev->fr_o = gspca_dev->fr_q = 0;
328 gspca_dev->last_packet_type = DISCARD_PACKET;
329 gspca_dev->sequence = 0;
330 atomic_set(&gspca_dev->nevent, 0);
334 static void frame_free(struct gspca_dev *gspca_dev)
338 PDEBUG(D_STREAM, "frame free");
339 if (gspca_dev->frbuf != NULL) {
340 rvfree(gspca_dev->frbuf,
341 gspca_dev->nframes * gspca_dev->frsz);
342 gspca_dev->frbuf = NULL;
343 for (i = 0; i < gspca_dev->nframes; i++)
344 gspca_dev->frame[i].data = NULL;
346 gspca_dev->nframes = 0;
349 static void destroy_urbs(struct gspca_dev *gspca_dev)
354 PDEBUG(D_STREAM, "kill transfer");
355 for (i = 0; i < MAX_NURBS; ++i) {
356 urb = gspca_dev->urb[i];
360 gspca_dev->urb[i] = NULL;
362 if (urb->transfer_buffer != NULL)
363 usb_buffer_free(gspca_dev->dev,
364 urb->transfer_buffer_length,
365 urb->transfer_buffer,
372 * search an input isochronous endpoint in an alternate setting
374 static struct usb_host_endpoint *alt_isoc(struct usb_host_interface *alt,
377 struct usb_host_endpoint *ep;
380 epaddr |= USB_DIR_IN;
381 for (i = 0; i < alt->desc.bNumEndpoints; i++) {
382 ep = &alt->endpoint[i];
383 if (ep->desc.bEndpointAddress == epaddr) {
384 attr = ep->desc.bmAttributes
385 & USB_ENDPOINT_XFERTYPE_MASK;
386 if (attr == USB_ENDPOINT_XFER_ISOC)
395 * search an input isochronous endpoint
397 * The endpoint is defined by the subdriver.
398 * Use only the first isoc (some Zoran - 0x0572:0x0001 - have two such ep).
399 * This routine may be called many times when the bandwidth is too small
400 * (the bandwidth is checked on urb submit).
402 struct usb_host_endpoint *get_isoc_ep(struct gspca_dev *gspca_dev)
404 struct usb_interface *intf;
405 struct usb_host_endpoint *ep;
408 intf = usb_ifnum_to_if(gspca_dev->dev, gspca_dev->iface);
410 i = gspca_dev->alt; /* previous alt setting */
411 while (--i > 0) { /* alt 0 is unusable */
412 ep = alt_isoc(&intf->altsetting[i], gspca_dev->cam.epaddr);
417 err("no ISOC endpoint found");
420 PDEBUG(D_STREAM, "use ISOC alt %d ep 0x%02x",
421 i, ep->desc.bEndpointAddress);
422 ret = usb_set_interface(gspca_dev->dev, gspca_dev->iface, i);
424 err("set interface err %d", ret);
427 gspca_dev->alt = i; /* memorize the current alt setting */
432 * create the isochronous URBs
434 static int create_urbs(struct gspca_dev *gspca_dev,
435 struct usb_host_endpoint *ep)
438 int n, nurbs, i, psize, npkt, bsize;
440 /* calculate the packet size and the number of packets */
441 psize = le16_to_cpu(ep->desc.wMaxPacketSize);
443 /* See paragraph 5.9 / table 5-11 of the usb 2.0 spec. */
444 psize = (psize & 0x07ff) * (1 + ((psize >> 11) & 3));
445 npkt = ISO_MAX_SIZE / psize;
446 if (npkt > ISO_MAX_PKT)
448 bsize = psize * npkt;
450 "isoc %d pkts size %d (bsize:%d)", npkt, psize, bsize);
452 gspca_dev->nurbs = nurbs;
453 for (n = 0; n < nurbs; n++) {
454 urb = usb_alloc_urb(npkt, GFP_KERNEL);
456 err("usb_alloc_urb failed");
459 urb->transfer_buffer = usb_buffer_alloc(gspca_dev->dev,
464 if (urb->transfer_buffer == NULL) {
466 destroy_urbs(gspca_dev);
467 err("usb_buffer_urb failed");
470 gspca_dev->urb[n] = urb;
471 urb->dev = gspca_dev->dev;
472 urb->context = gspca_dev;
473 urb->pipe = usb_rcvisocpipe(gspca_dev->dev,
474 ep->desc.bEndpointAddress);
475 urb->transfer_flags = URB_ISO_ASAP
476 | URB_NO_TRANSFER_DMA_MAP;
477 urb->interval = ep->desc.bInterval;
478 urb->complete = isoc_irq;
479 urb->number_of_packets = npkt;
480 urb->transfer_buffer_length = bsize;
481 for (i = 0; i < npkt; i++) {
482 urb->iso_frame_desc[i].length = psize;
483 urb->iso_frame_desc[i].offset = psize * i;
490 * start the USB transfer
492 static int gspca_init_transfer(struct gspca_dev *gspca_dev)
494 struct usb_host_endpoint *ep;
497 if (mutex_lock_interruptible(&gspca_dev->usb_lock))
500 /* set the higher alternate setting and
501 * loop until urb submit succeeds */
502 gspca_dev->alt = gspca_dev->nbalt;
504 PDEBUG(D_STREAM, "init transfer alt %d", gspca_dev->alt);
505 ep = get_isoc_ep(gspca_dev);
510 ret = create_urbs(gspca_dev, ep);
515 gspca_dev->sd_desc->start(gspca_dev);
516 gspca_dev->streaming = 1;
517 atomic_set(&gspca_dev->nevent, 0);
519 /* submit the URBs */
520 for (n = 0; n < gspca_dev->nurbs; n++) {
521 ret = usb_submit_urb(gspca_dev->urb[n], GFP_KERNEL);
523 PDEBUG(D_ERR|D_STREAM,
524 "usb_submit_urb [%d] err %d", n, ret);
525 gspca_dev->streaming = 0;
526 destroy_urbs(gspca_dev);
528 break; /* try the previous alt */
536 mutex_unlock(&gspca_dev->usb_lock);
540 static int gspca_set_alt0(struct gspca_dev *gspca_dev)
544 ret = usb_set_interface(gspca_dev->dev, gspca_dev->iface, 0);
546 PDEBUG(D_ERR|D_STREAM, "set interface 0 err %d", ret);
550 /* Note both the queue and the usb lock should be hold when calling this */
551 static void gspca_stream_off(struct gspca_dev *gspca_dev)
553 gspca_dev->streaming = 0;
554 atomic_set(&gspca_dev->nevent, 0);
555 if (gspca_dev->present) {
556 gspca_dev->sd_desc->stopN(gspca_dev);
557 destroy_urbs(gspca_dev);
558 gspca_set_alt0(gspca_dev);
559 gspca_dev->sd_desc->stop0(gspca_dev);
560 PDEBUG(D_STREAM, "stream off OK");
562 destroy_urbs(gspca_dev);
563 atomic_inc(&gspca_dev->nevent);
564 wake_up_interruptible(&gspca_dev->wq);
565 PDEBUG(D_ERR|D_STREAM, "stream off no device ??");
569 static void gspca_set_default_mode(struct gspca_dev *gspca_dev)
573 i = gspca_dev->cam.nmodes - 1; /* take the highest mode */
574 gspca_dev->curr_mode = i;
575 gspca_dev->width = gspca_dev->cam.cam_mode[i].width;
576 gspca_dev->height = gspca_dev->cam.cam_mode[i].height;
577 gspca_dev->pixfmt = gspca_dev->cam.cam_mode[i].pixelformat;
580 static int wxh_to_mode(struct gspca_dev *gspca_dev,
581 int width, int height)
585 for (i = gspca_dev->cam.nmodes; --i > 0; ) {
586 if (width >= gspca_dev->cam.cam_mode[i].width
587 && height >= gspca_dev->cam.cam_mode[i].height)
594 * search a mode with the right pixel format
596 static int gspca_get_mode(struct gspca_dev *gspca_dev,
602 modeU = modeD = mode;
603 while ((modeU < gspca_dev->cam.nmodes) || modeD >= 0) {
605 if (gspca_dev->cam.cam_mode[modeD].pixelformat
609 if (++modeU < gspca_dev->cam.nmodes) {
610 if (gspca_dev->cam.cam_mode[modeU].pixelformat
618 static int vidioc_enum_fmt_vid_cap(struct file *file, void *priv,
619 struct v4l2_fmtdesc *fmtdesc)
621 struct gspca_dev *gspca_dev = priv;
625 /* give an index to each format */
628 for (i = gspca_dev->cam.nmodes; --i >= 0; ) {
629 fmt_tb[index] = gspca_dev->cam.cam_mode[i].pixelformat;
632 if (fmt_tb[j] == fmt_tb[index])
637 if (fmtdesc->index == index)
638 break; /* new format */
640 if (index >= sizeof fmt_tb / sizeof fmt_tb[0])
645 return -EINVAL; /* no more format */
647 fmtdesc->pixelformat = fmt_tb[index];
648 if (gspca_is_compressed(fmt_tb[index]))
649 fmtdesc->flags = V4L2_FMT_FLAG_COMPRESSED;
650 fmtdesc->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
651 fmtdesc->description[0] = fmtdesc->pixelformat & 0xff;
652 fmtdesc->description[1] = (fmtdesc->pixelformat >> 8) & 0xff;
653 fmtdesc->description[2] = (fmtdesc->pixelformat >> 16) & 0xff;
654 fmtdesc->description[3] = fmtdesc->pixelformat >> 24;
655 fmtdesc->description[4] = '\0';
659 static int vidioc_g_fmt_vid_cap(struct file *file, void *priv,
660 struct v4l2_format *fmt)
662 struct gspca_dev *gspca_dev = priv;
665 if (fmt->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
667 mode = gspca_dev->curr_mode;
668 memcpy(&fmt->fmt.pix, &gspca_dev->cam.cam_mode[mode],
669 sizeof fmt->fmt.pix);
673 static int try_fmt_vid_cap(struct gspca_dev *gspca_dev,
674 struct v4l2_format *fmt)
676 int w, h, mode, mode2;
678 if (fmt->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
680 w = fmt->fmt.pix.width;
681 h = fmt->fmt.pix.height;
683 /* (luvcview problem) */
684 if (fmt->fmt.pix.pixelformat == V4L2_PIX_FMT_MJPEG)
685 fmt->fmt.pix.pixelformat = V4L2_PIX_FMT_JPEG;
686 #ifdef CONFIG_VIDEO_ADV_DEBUG
687 if (gspca_debug & D_CONF)
688 PDEBUG_MODE("try fmt cap", fmt->fmt.pix.pixelformat, w, h);
690 /* search the closest mode for width and height */
691 mode = wxh_to_mode(gspca_dev, w, h);
693 /* OK if right palette */
694 if (gspca_dev->cam.cam_mode[mode].pixelformat
695 != fmt->fmt.pix.pixelformat) {
697 /* else, search the closest mode with the same pixel format */
698 mode2 = gspca_get_mode(gspca_dev, mode,
699 fmt->fmt.pix.pixelformat);
703 ; * no chance, return this mode */
705 memcpy(&fmt->fmt.pix, &gspca_dev->cam.cam_mode[mode],
706 sizeof fmt->fmt.pix);
707 return mode; /* used when s_fmt */
710 static int vidioc_try_fmt_vid_cap(struct file *file,
712 struct v4l2_format *fmt)
714 struct gspca_dev *gspca_dev = priv;
717 ret = try_fmt_vid_cap(gspca_dev, fmt);
723 static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
724 struct v4l2_format *fmt)
726 struct gspca_dev *gspca_dev = priv;
729 if (mutex_lock_interruptible(&gspca_dev->queue_lock))
732 ret = try_fmt_vid_cap(gspca_dev, fmt);
736 if (gspca_dev->nframes != 0
737 && fmt->fmt.pix.sizeimage > gspca_dev->frsz) {
742 if (ret == gspca_dev->curr_mode) {
744 goto out; /* same mode */
747 if (gspca_dev->streaming) {
751 gspca_dev->width = fmt->fmt.pix.width;
752 gspca_dev->height = fmt->fmt.pix.height;
753 gspca_dev->pixfmt = fmt->fmt.pix.pixelformat;
754 gspca_dev->curr_mode = ret;
758 mutex_unlock(&gspca_dev->queue_lock);
762 static int dev_open(struct inode *inode, struct file *file)
764 struct gspca_dev *gspca_dev;
767 PDEBUG(D_STREAM, "%s open", current->comm);
768 gspca_dev = (struct gspca_dev *) video_devdata(file);
769 if (mutex_lock_interruptible(&gspca_dev->queue_lock))
771 if (!gspca_dev->present) {
776 /* if not done yet, initialize the sensor */
777 if (gspca_dev->users == 0) {
778 if (mutex_lock_interruptible(&gspca_dev->usb_lock)) {
782 ret = gspca_dev->sd_desc->open(gspca_dev);
783 mutex_unlock(&gspca_dev->usb_lock);
785 PDEBUG(D_ERR|D_CONF, "init device failed %d", ret);
788 } else if (gspca_dev->users > 4) { /* (arbitrary value) */
793 file->private_data = gspca_dev;
794 #ifdef CONFIG_VIDEO_ADV_DEBUG
795 /* activate the v4l2 debug */
796 if (gspca_debug & D_V4L2)
797 gspca_dev->vdev.debug |= 3;
799 gspca_dev->vdev.debug &= ~3;
802 mutex_unlock(&gspca_dev->queue_lock);
804 PDEBUG(D_ERR|D_STREAM, "open failed err %d", ret);
806 PDEBUG(D_STREAM, "open done");
810 static int dev_close(struct inode *inode, struct file *file)
812 struct gspca_dev *gspca_dev = file->private_data;
814 PDEBUG(D_STREAM, "%s close", current->comm);
815 if (mutex_lock_interruptible(&gspca_dev->queue_lock))
819 /* if the file did capture, free the streaming resources */
820 if (gspca_dev->capt_file == file) {
821 mutex_lock(&gspca_dev->usb_lock);
822 if (gspca_dev->streaming)
823 gspca_stream_off(gspca_dev);
824 gspca_dev->sd_desc->close(gspca_dev);
825 mutex_unlock(&gspca_dev->usb_lock);
826 frame_free(gspca_dev);
827 gspca_dev->capt_file = NULL;
828 gspca_dev->memory = GSPCA_MEMORY_NO;
830 file->private_data = NULL;
831 mutex_unlock(&gspca_dev->queue_lock);
832 PDEBUG(D_STREAM, "close done");
836 static int vidioc_querycap(struct file *file, void *priv,
837 struct v4l2_capability *cap)
839 struct gspca_dev *gspca_dev = priv;
841 memset(cap, 0, sizeof *cap);
842 strncpy(cap->driver, gspca_dev->sd_desc->name, sizeof cap->driver);
843 strncpy(cap->card, gspca_dev->cam.dev_name, sizeof cap->card);
844 strncpy(cap->bus_info, gspca_dev->dev->bus->bus_name,
845 sizeof cap->bus_info);
846 cap->version = DRIVER_VERSION_NUMBER;
847 cap->capabilities = V4L2_CAP_VIDEO_CAPTURE
849 | V4L2_CAP_READWRITE;
853 /* the use of V4L2_CTRL_FLAG_NEXT_CTRL asks for the controls to be sorted */
854 static int vidioc_queryctrl(struct file *file, void *priv,
855 struct v4l2_queryctrl *q_ctrl)
857 struct gspca_dev *gspca_dev = priv;
862 if (id & V4L2_CTRL_FLAG_NEXT_CTRL) {
863 id &= V4L2_CTRL_ID_MASK;
865 for (i = 0; i < gspca_dev->sd_desc->nctrls; i++) {
866 if (id >= gspca_dev->sd_desc->ctrls[i].qctrl.id) {
868 &gspca_dev->sd_desc->ctrls[i].qctrl,
875 for (i = 0; i < gspca_dev->sd_desc->nctrls; i++) {
876 if (id == gspca_dev->sd_desc->ctrls[i].qctrl.id) {
878 &gspca_dev->sd_desc->ctrls[i].qctrl,
883 if (id >= V4L2_CID_BASE
884 && id <= V4L2_CID_LASTP1) {
885 q_ctrl->flags |= V4L2_CTRL_FLAG_DISABLED;
891 static int vidioc_s_ctrl(struct file *file, void *priv,
892 struct v4l2_control *ctrl)
894 struct gspca_dev *gspca_dev = priv;
895 const struct ctrl *ctrls;
898 for (i = 0, ctrls = gspca_dev->sd_desc->ctrls;
899 i < gspca_dev->sd_desc->nctrls;
901 if (ctrl->id != ctrls->qctrl.id)
903 if (ctrl->value < ctrls->qctrl.minimum
904 && ctrl->value > ctrls->qctrl.maximum)
906 PDEBUG(D_CONF, "set ctrl [%08x] = %d", ctrl->id, ctrl->value);
907 if (mutex_lock_interruptible(&gspca_dev->usb_lock))
909 ret = ctrls->set(gspca_dev, ctrl->value);
910 mutex_unlock(&gspca_dev->usb_lock);
916 static int vidioc_g_ctrl(struct file *file, void *priv,
917 struct v4l2_control *ctrl)
919 struct gspca_dev *gspca_dev = priv;
921 const struct ctrl *ctrls;
924 for (i = 0, ctrls = gspca_dev->sd_desc->ctrls;
925 i < gspca_dev->sd_desc->nctrls;
927 if (ctrl->id != ctrls->qctrl.id)
929 if (mutex_lock_interruptible(&gspca_dev->usb_lock))
931 ret = ctrls->get(gspca_dev, &ctrl->value);
932 mutex_unlock(&gspca_dev->usb_lock);
938 static int vidioc_querymenu(struct file *file, void *priv,
939 struct v4l2_querymenu *qmenu)
941 struct gspca_dev *gspca_dev = priv;
943 if (!gspca_dev->sd_desc->querymenu)
945 return gspca_dev->sd_desc->querymenu(gspca_dev, qmenu);
948 static int vidioc_enum_input(struct file *file, void *priv,
949 struct v4l2_input *input)
951 struct gspca_dev *gspca_dev = priv;
953 if (input->index != 0)
955 memset(input, 0, sizeof *input);
956 input->type = V4L2_INPUT_TYPE_CAMERA;
957 strncpy(input->name, gspca_dev->sd_desc->name,
962 static int vidioc_g_input(struct file *file, void *priv, unsigned int *i)
968 static int vidioc_s_input(struct file *file, void *priv, unsigned int i)
975 static int vidioc_reqbufs(struct file *file, void *priv,
976 struct v4l2_requestbuffers *rb)
978 struct gspca_dev *gspca_dev = priv;
981 if (rb->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
983 switch (rb->memory) {
984 case GSPCA_MEMORY_READ:
985 case V4L2_MEMORY_MMAP:
986 case V4L2_MEMORY_USERPTR:
991 if (mutex_lock_interruptible(&gspca_dev->queue_lock))
994 /* only one file may do capture */
995 if ((gspca_dev->capt_file != NULL && gspca_dev->capt_file != file)
996 || gspca_dev->streaming) {
1001 if (rb->count == 0) { /* unrequest */
1002 for (i = 0; i < gspca_dev->nframes; i++) {
1003 if (gspca_dev->frame[i].vma_use_count) {
1008 frame_free(gspca_dev);
1009 gspca_dev->capt_file = NULL;
1011 if (gspca_dev->nframes != 0) {
1015 gspca_dev->memory = rb->memory;
1016 ret = frame_alloc(gspca_dev, rb->count);
1018 rb->count = gspca_dev->nframes;
1019 gspca_dev->capt_file = file;
1023 mutex_unlock(&gspca_dev->queue_lock);
1024 PDEBUG(D_STREAM, "reqbufs st:%d c:%d", ret, rb->count);
1028 static int vidioc_querybuf(struct file *file, void *priv,
1029 struct v4l2_buffer *v4l2_buf)
1031 struct gspca_dev *gspca_dev = priv;
1032 struct gspca_frame *frame;
1034 if (v4l2_buf->type != V4L2_BUF_TYPE_VIDEO_CAPTURE
1035 || v4l2_buf->index < 0
1036 || v4l2_buf->index >= gspca_dev->nframes)
1039 frame = &gspca_dev->frame[v4l2_buf->index];
1040 memcpy(v4l2_buf, &frame->v4l2_buf, sizeof *v4l2_buf);
1044 static int vidioc_streamon(struct file *file, void *priv,
1045 enum v4l2_buf_type buf_type)
1047 struct gspca_dev *gspca_dev = priv;
1050 if (buf_type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1052 if (mutex_lock_interruptible(&gspca_dev->queue_lock))
1053 return -ERESTARTSYS;
1054 if (!gspca_dev->present) {
1058 if (gspca_dev->nframes == 0) {
1062 if (gspca_dev->capt_file != file) {
1066 if (!gspca_dev->streaming) {
1067 ret = gspca_init_transfer(gspca_dev);
1071 #ifdef CONFIG_VIDEO_ADV_DEBUG
1072 if (gspca_debug & D_STREAM) {
1073 PDEBUG_MODE("stream on OK",
1081 mutex_unlock(&gspca_dev->queue_lock);
1085 static int vidioc_streamoff(struct file *file, void *priv,
1086 enum v4l2_buf_type buf_type)
1088 struct gspca_dev *gspca_dev = priv;
1091 if (buf_type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1093 if (!gspca_dev->streaming)
1095 if (mutex_lock_interruptible(&gspca_dev->queue_lock))
1096 return -ERESTARTSYS;
1097 if (mutex_lock_interruptible(&gspca_dev->usb_lock)) {
1101 if (gspca_dev->capt_file != file) {
1105 gspca_stream_off(gspca_dev);
1108 mutex_unlock(&gspca_dev->usb_lock);
1110 mutex_unlock(&gspca_dev->queue_lock);
1114 static int vidioc_g_jpegcomp(struct file *file, void *priv,
1115 struct v4l2_jpegcompression *jpegcomp)
1117 struct gspca_dev *gspca_dev = priv;
1120 if (!gspca_dev->sd_desc->get_jcomp)
1122 if (mutex_lock_interruptible(&gspca_dev->usb_lock))
1123 return -ERESTARTSYS;
1124 ret = gspca_dev->sd_desc->get_jcomp(gspca_dev, jpegcomp);
1125 mutex_unlock(&gspca_dev->usb_lock);
1129 static int vidioc_s_jpegcomp(struct file *file, void *priv,
1130 struct v4l2_jpegcompression *jpegcomp)
1132 struct gspca_dev *gspca_dev = priv;
1135 if (mutex_lock_interruptible(&gspca_dev->usb_lock))
1136 return -ERESTARTSYS;
1137 if (!gspca_dev->sd_desc->set_jcomp)
1139 ret = gspca_dev->sd_desc->set_jcomp(gspca_dev, jpegcomp);
1140 mutex_unlock(&gspca_dev->usb_lock);
1144 static int vidioc_g_parm(struct file *filp, void *priv,
1145 struct v4l2_streamparm *parm)
1147 struct gspca_dev *gspca_dev = priv;
1149 memset(parm, 0, sizeof *parm);
1150 parm->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1151 parm->parm.capture.readbuffers = gspca_dev->nbufread;
1155 static int vidioc_s_parm(struct file *filp, void *priv,
1156 struct v4l2_streamparm *parm)
1158 struct gspca_dev *gspca_dev = priv;
1161 n = parm->parm.capture.readbuffers;
1162 if (n == 0 || n > GSPCA_MAX_FRAMES)
1163 parm->parm.capture.readbuffers = gspca_dev->nbufread;
1165 gspca_dev->nbufread = n;
1169 static int vidioc_s_std(struct file *filp, void *priv,
1175 #ifdef CONFIG_VIDEO_V4L1_COMPAT
1176 static int vidiocgmbuf(struct file *file, void *priv,
1177 struct video_mbuf *mbuf)
1179 struct gspca_dev *gspca_dev = file->private_data;
1182 PDEBUG(D_STREAM, "cgmbuf");
1183 if (gspca_dev->nframes == 0) {
1187 struct v4l2_format fmt;
1189 memset(&fmt, 0, sizeof fmt);
1190 fmt.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1191 i = gspca_dev->cam.nmodes - 1; /* highest mode */
1192 fmt.fmt.pix.width = gspca_dev->cam.cam_mode[i].width;
1193 fmt.fmt.pix.height = gspca_dev->cam.cam_mode[i].height;
1194 fmt.fmt.pix.pixelformat = V4L2_PIX_FMT_BGR24;
1195 ret = vidioc_s_fmt_vid_cap(file, priv, &fmt);
1200 struct v4l2_requestbuffers rb;
1202 memset(&rb, 0, sizeof rb);
1204 rb.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1205 rb.memory = V4L2_MEMORY_MMAP;
1206 ret = vidioc_reqbufs(file, priv, &rb);
1211 mbuf->frames = gspca_dev->nframes;
1212 mbuf->size = gspca_dev->frsz * gspca_dev->nframes;
1213 for (i = 0; i < mbuf->frames; i++)
1214 mbuf->offsets[i] = gspca_dev->frame[i].v4l2_buf.m.offset;
1219 static int dev_mmap(struct file *file, struct vm_area_struct *vma)
1221 struct gspca_dev *gspca_dev = file->private_data;
1222 struct gspca_frame *frame;
1224 unsigned long addr, start, size;
1227 start = vma->vm_start;
1228 size = vma->vm_end - vma->vm_start;
1229 PDEBUG(D_STREAM, "mmap start:%08x size:%d", (int) start, (int) size);
1231 if (mutex_lock_interruptible(&gspca_dev->queue_lock))
1232 return -ERESTARTSYS;
1233 if (!gspca_dev->present) {
1237 if (gspca_dev->capt_file != file) {
1243 for (i = 0; i < gspca_dev->nframes; ++i) {
1244 if (gspca_dev->frame[i].v4l2_buf.memory != V4L2_MEMORY_MMAP) {
1245 PDEBUG(D_STREAM, "mmap bad memory type");
1248 if ((gspca_dev->frame[i].v4l2_buf.m.offset >> PAGE_SHIFT)
1250 frame = &gspca_dev->frame[i];
1254 if (frame == NULL) {
1255 PDEBUG(D_STREAM, "mmap no frame buffer found");
1259 #ifdef CONFIG_VIDEO_V4L1_COMPAT
1260 /* v4l1 maps all the buffers */
1262 || size != frame->v4l2_buf.length * gspca_dev->nframes)
1264 if (size != frame->v4l2_buf.length) {
1265 PDEBUG(D_STREAM, "mmap bad size");
1271 * - VM_IO marks the area as being a mmaped region for I/O to a
1272 * device. It also prevents the region from being core dumped.
1274 vma->vm_flags |= VM_IO;
1276 addr = (unsigned long) frame->data;
1278 page = vmalloc_to_page((void *) addr);
1279 ret = vm_insert_page(vma, start, page);
1287 vma->vm_ops = &gspca_vm_ops;
1288 vma->vm_private_data = frame;
1292 mutex_unlock(&gspca_dev->queue_lock);
1297 * wait for a video frame
1299 * If a frame is ready, its index is returned.
1301 static int frame_wait(struct gspca_dev *gspca_dev,
1304 struct gspca_frame *frame;
1307 /* check if a frame is ready */
1308 i = gspca_dev->fr_o;
1309 j = gspca_dev->fr_queue[i];
1310 frame = &gspca_dev->frame[j];
1311 if (frame->v4l2_buf.flags & V4L2_BUF_FLAG_DONE) {
1312 atomic_dec(&gspca_dev->nevent);
1315 if (nonblock_ing) /* no frame yet */
1318 /* wait till a frame is ready */
1320 ret = wait_event_interruptible_timeout(gspca_dev->wq,
1321 atomic_read(&gspca_dev->nevent) > 0,
1322 msecs_to_jiffies(3000));
1325 return ret; /* interrupt */
1326 return -EIO; /* timeout */
1328 atomic_dec(&gspca_dev->nevent);
1329 if (!gspca_dev->streaming || !gspca_dev->present)
1331 i = gspca_dev->fr_o;
1332 j = gspca_dev->fr_queue[i];
1333 frame = &gspca_dev->frame[j];
1334 if (frame->v4l2_buf.flags & V4L2_BUF_FLAG_DONE)
1338 gspca_dev->fr_o = (i + 1) % gspca_dev->nframes;
1339 PDEBUG(D_FRAM, "frame wait q:%d i:%d o:%d",
1344 if (gspca_dev->sd_desc->dq_callback)
1345 gspca_dev->sd_desc->dq_callback(gspca_dev);
1351 * dequeue a video buffer
1353 * If nonblock_ing is false, block until a buffer is available.
1355 static int vidioc_dqbuf(struct file *file, void *priv,
1356 struct v4l2_buffer *v4l2_buf)
1358 struct gspca_dev *gspca_dev = priv;
1359 struct gspca_frame *frame;
1362 PDEBUG(D_FRAM, "dqbuf");
1363 if (v4l2_buf->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1365 if (v4l2_buf->memory != gspca_dev->memory)
1367 if (!gspca_dev->streaming)
1369 if (gspca_dev->capt_file != file) {
1375 if (mutex_lock_interruptible(&gspca_dev->read_lock))
1376 return -ERESTARTSYS;
1378 ret = frame_wait(gspca_dev, file->f_flags & O_NONBLOCK);
1381 i = ret; /* frame index */
1382 frame = &gspca_dev->frame[i];
1383 if (gspca_dev->memory == V4L2_MEMORY_USERPTR) {
1384 if (copy_to_user((__u8 *) frame->v4l2_buf.m.userptr,
1386 frame->v4l2_buf.bytesused)) {
1387 PDEBUG(D_ERR|D_STREAM,
1388 "dqbuf cp to user failed");
1393 frame->v4l2_buf.flags &= ~V4L2_BUF_FLAG_DONE;
1394 memcpy(v4l2_buf, &frame->v4l2_buf, sizeof *v4l2_buf);
1395 PDEBUG(D_FRAM, "dqbuf %d", i);
1398 mutex_unlock(&gspca_dev->read_lock);
1403 * queue a video buffer
1405 * Attempting to queue a buffer that has already been
1406 * queued will return -EINVAL.
1408 static int vidioc_qbuf(struct file *file, void *priv,
1409 struct v4l2_buffer *v4l2_buf)
1411 struct gspca_dev *gspca_dev = priv;
1412 struct gspca_frame *frame;
1415 PDEBUG(D_FRAM, "qbuf %d", v4l2_buf->index);
1416 if (v4l2_buf->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1419 index = v4l2_buf->index;
1420 if ((unsigned) index >= gspca_dev->nframes) {
1422 "qbuf idx %d >= %d", index, gspca_dev->nframes);
1425 frame = &gspca_dev->frame[index];
1427 if (v4l2_buf->memory != frame->v4l2_buf.memory) {
1428 PDEBUG(D_FRAM, "qbuf bad memory type");
1431 if (gspca_dev->capt_file != file)
1434 if (mutex_lock_interruptible(&gspca_dev->queue_lock))
1435 return -ERESTARTSYS;
1437 if (frame->v4l2_buf.flags & BUF_ALL_FLAGS) {
1438 PDEBUG(D_FRAM, "qbuf bad state");
1443 frame->v4l2_buf.flags |= V4L2_BUF_FLAG_QUEUED;
1444 /* frame->v4l2_buf.flags &= ~V4L2_BUF_FLAG_DONE; */
1446 if (frame->v4l2_buf.memory == V4L2_MEMORY_USERPTR) {
1447 frame->v4l2_buf.m.userptr = v4l2_buf->m.userptr;
1448 frame->v4l2_buf.length = v4l2_buf->length;
1451 /* put the buffer in the 'queued' queue */
1452 i = gspca_dev->fr_q;
1453 gspca_dev->fr_queue[i] = index;
1454 gspca_dev->fr_q = (i + 1) % gspca_dev->nframes;
1455 PDEBUG(D_FRAM, "qbuf q:%d i:%d o:%d",
1460 v4l2_buf->flags |= V4L2_BUF_FLAG_QUEUED;
1461 v4l2_buf->flags &= ~V4L2_BUF_FLAG_DONE;
1464 mutex_unlock(&gspca_dev->queue_lock);
1469 * allocate the resources for read()
1471 static int read_alloc(struct gspca_dev *gspca_dev,
1474 struct v4l2_buffer v4l2_buf;
1477 PDEBUG(D_STREAM, "read alloc");
1478 if (gspca_dev->nframes == 0) {
1479 struct v4l2_requestbuffers rb;
1481 memset(&rb, 0, sizeof rb);
1482 rb.count = gspca_dev->nbufread;
1483 rb.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1484 rb.memory = GSPCA_MEMORY_READ;
1485 ret = vidioc_reqbufs(file, gspca_dev, &rb);
1487 PDEBUG(D_STREAM, "read reqbuf err %d", ret);
1490 memset(&v4l2_buf, 0, sizeof v4l2_buf);
1491 v4l2_buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1492 v4l2_buf.memory = GSPCA_MEMORY_READ;
1493 for (i = 0; i < gspca_dev->nbufread; i++) {
1496 gspca_dev->frame[i].v4l2_buf.flags |=
1497 V4L2_BUF_FLAG_MAPPED;
1498 ret = vidioc_qbuf(file, gspca_dev, &v4l2_buf);
1500 PDEBUG(D_STREAM, "read qbuf err: %d", ret);
1504 gspca_dev->memory = GSPCA_MEMORY_READ;
1507 /* start streaming */
1508 ret = vidioc_streamon(file, gspca_dev, V4L2_BUF_TYPE_VIDEO_CAPTURE);
1510 PDEBUG(D_STREAM, "read streamon err %d", ret);
1514 static unsigned int dev_poll(struct file *file, poll_table *wait)
1516 struct gspca_dev *gspca_dev = file->private_data;
1519 PDEBUG(D_FRAM, "poll");
1521 poll_wait(file, &gspca_dev->wq, wait);
1522 if (!gspca_dev->present)
1525 /* if not streaming, the user would use read() */
1526 if (!gspca_dev->streaming) {
1527 if (gspca_dev->memory != GSPCA_MEMORY_NO) {
1528 ret = POLLERR; /* not the 1st time */
1531 ret = read_alloc(gspca_dev, file);
1538 if (mutex_lock_interruptible(&gspca_dev->queue_lock) != 0)
1540 if (!gspca_dev->present) {
1545 i = gspca_dev->fr_o;
1546 i = gspca_dev->fr_queue[i];
1547 if (gspca_dev->frame[i].v4l2_buf.flags & V4L2_BUF_FLAG_DONE)
1548 ret = POLLIN | POLLRDNORM; /* something to read */
1552 mutex_unlock(&gspca_dev->queue_lock);
1556 static ssize_t dev_read(struct file *file, char __user *data,
1557 size_t count, loff_t *ppos)
1559 struct gspca_dev *gspca_dev = file->private_data;
1560 struct gspca_frame *frame;
1561 struct v4l2_buffer v4l2_buf;
1562 struct timeval timestamp;
1565 PDEBUG(D_FRAM, "read (%zd)", count);
1566 if (!gspca_dev->present)
1568 switch (gspca_dev->memory) {
1569 case GSPCA_MEMORY_NO: /* first time */
1570 ret = read_alloc(gspca_dev, file);
1574 case GSPCA_MEMORY_READ:
1575 if (gspca_dev->capt_file == file)
1583 jiffies_to_timeval(get_jiffies_64(), ×tamp);
1587 memset(&v4l2_buf, 0, sizeof v4l2_buf);
1588 v4l2_buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1589 v4l2_buf.memory = GSPCA_MEMORY_READ;
1590 ret = vidioc_dqbuf(file, gspca_dev, &v4l2_buf);
1592 PDEBUG(D_STREAM, "read dqbuf err %d", ret);
1596 /* if the process slept for more than 1 second,
1597 * get anewer frame */
1598 frame = &gspca_dev->frame[v4l2_buf.index];
1600 break; /* avoid infinite loop */
1601 if (frame->v4l2_buf.timestamp.tv_sec >= timestamp.tv_sec)
1603 ret = vidioc_qbuf(file, gspca_dev, &v4l2_buf);
1605 PDEBUG(D_STREAM, "read qbuf err %d", ret);
1610 /* copy the frame */
1611 if (count > frame->v4l2_buf.bytesused)
1612 count = frame->v4l2_buf.bytesused;
1613 ret = copy_to_user(data, frame->data, count);
1615 PDEBUG(D_ERR|D_STREAM,
1616 "read cp to user lack %d / %zd", ret, count);
1622 /* in each case, requeue the buffer */
1623 ret2 = vidioc_qbuf(file, gspca_dev, &v4l2_buf);
1629 static void dev_release(struct video_device *vfd)
1634 static struct file_operations dev_fops = {
1635 .owner = THIS_MODULE,
1637 .release = dev_close,
1640 .ioctl = video_ioctl2,
1641 #ifdef CONFIG_COMPAT
1642 .compat_ioctl = v4l_compat_ioctl32,
1644 .llseek = no_llseek,
1648 static struct video_device gspca_template = {
1649 .name = "gspca main driver",
1650 .type = VID_TYPE_CAPTURE,
1652 .release = dev_release, /* mandatory */
1654 .vidioc_querycap = vidioc_querycap,
1655 .vidioc_dqbuf = vidioc_dqbuf,
1656 .vidioc_qbuf = vidioc_qbuf,
1657 .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap,
1658 .vidioc_try_fmt_vid_cap = vidioc_try_fmt_vid_cap,
1659 .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap,
1660 .vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap,
1661 .vidioc_streamon = vidioc_streamon,
1662 .vidioc_queryctrl = vidioc_queryctrl,
1663 .vidioc_g_ctrl = vidioc_g_ctrl,
1664 .vidioc_s_ctrl = vidioc_s_ctrl,
1665 .vidioc_querymenu = vidioc_querymenu,
1666 .vidioc_enum_input = vidioc_enum_input,
1667 .vidioc_g_input = vidioc_g_input,
1668 .vidioc_s_input = vidioc_s_input,
1669 .vidioc_reqbufs = vidioc_reqbufs,
1670 .vidioc_querybuf = vidioc_querybuf,
1671 .vidioc_streamoff = vidioc_streamoff,
1672 .vidioc_g_jpegcomp = vidioc_g_jpegcomp,
1673 .vidioc_s_jpegcomp = vidioc_s_jpegcomp,
1674 .vidioc_g_parm = vidioc_g_parm,
1675 .vidioc_s_parm = vidioc_s_parm,
1676 .vidioc_s_std = vidioc_s_std,
1677 #ifdef CONFIG_VIDEO_V4L1_COMPAT
1678 .vidiocgmbuf = vidiocgmbuf,
1683 * probe and create a new gspca device
1685 * This function must be called by the sub-driver when it is
1686 * called for probing a new device.
1688 int gspca_dev_probe(struct usb_interface *intf,
1689 const struct usb_device_id *id,
1690 const struct sd_desc *sd_desc,
1692 struct module *module)
1694 struct usb_interface_descriptor *interface;
1695 struct gspca_dev *gspca_dev;
1696 struct usb_device *dev = interface_to_usbdev(intf);
1699 PDEBUG(D_PROBE, "probing %04x:%04x", id->idVendor, id->idProduct);
1701 /* we don't handle multi-config cameras */
1702 if (dev->descriptor.bNumConfigurations != 1)
1704 interface = &intf->cur_altsetting->desc;
1705 if (interface->bInterfaceNumber > 0)
1708 /* create the device */
1709 if (dev_size < sizeof *gspca_dev)
1710 dev_size = sizeof *gspca_dev;
1711 gspca_dev = kzalloc(dev_size, GFP_KERNEL);
1712 if (gspca_dev == NULL) {
1713 err("couldn't kzalloc gspca struct");
1716 gspca_dev->dev = dev;
1717 gspca_dev->iface = interface->bInterfaceNumber;
1718 gspca_dev->nbalt = intf->num_altsetting;
1719 gspca_dev->sd_desc = sd_desc;
1720 /* gspca_dev->users = 0; (done by kzalloc) */
1721 gspca_dev->nbufread = 2;
1723 /* configure the subdriver */
1724 ret = gspca_dev->sd_desc->config(gspca_dev, id);
1727 ret = gspca_set_alt0(gspca_dev);
1730 gspca_set_default_mode(gspca_dev);
1732 mutex_init(&gspca_dev->usb_lock);
1733 mutex_init(&gspca_dev->read_lock);
1734 mutex_init(&gspca_dev->queue_lock);
1735 init_waitqueue_head(&gspca_dev->wq);
1737 /* init video stuff */
1738 memcpy(&gspca_dev->vdev, &gspca_template, sizeof gspca_template);
1739 gspca_dev->vdev.dev = &dev->dev;
1740 memcpy(&gspca_dev->fops, &dev_fops, sizeof gspca_dev->fops);
1741 gspca_dev->vdev.fops = &gspca_dev->fops;
1742 gspca_dev->fops.owner = module; /* module protection */
1743 ret = video_register_device(&gspca_dev->vdev,
1747 err("video_register_device err %d", ret);
1751 gspca_dev->present = 1;
1752 usb_set_intfdata(intf, gspca_dev);
1753 PDEBUG(D_PROBE, "probe ok");
1759 EXPORT_SYMBOL(gspca_dev_probe);
1764 * This function must be called by the sub-driver
1765 * when the device disconnects, after the specific resources are freed.
1767 void gspca_disconnect(struct usb_interface *intf)
1769 struct gspca_dev *gspca_dev = usb_get_intfdata(intf);
1773 gspca_dev->present = 0;
1774 mutex_lock(&gspca_dev->queue_lock);
1775 mutex_lock(&gspca_dev->usb_lock);
1776 gspca_dev->streaming = 0;
1777 destroy_urbs(gspca_dev);
1778 mutex_unlock(&gspca_dev->usb_lock);
1779 mutex_unlock(&gspca_dev->queue_lock);
1780 while (gspca_dev->users != 0) { /* wait until fully closed */
1781 atomic_inc(&gspca_dev->nevent);
1782 wake_up_interruptible(&gspca_dev->wq); /* wake processes */
1785 /* We don't want people trying to open up the device */
1786 video_unregister_device(&gspca_dev->vdev);
1787 /* Free the memory */
1789 PDEBUG(D_PROBE, "disconnect complete");
1791 EXPORT_SYMBOL(gspca_disconnect);
1793 /* -- module insert / remove -- */
1794 static int __init gspca_init(void)
1796 info("main v%s registered", version);
1799 static void __exit gspca_exit(void)
1801 info("main deregistered");
1804 module_init(gspca_init);
1805 module_exit(gspca_exit);
1807 #ifdef CONFIG_VIDEO_ADV_DEBUG
1808 module_param_named(debug, gspca_debug, int, 0644);
1809 MODULE_PARM_DESC(debug,
1810 "Debug (bit) 0x01:error 0x02:probe 0x04:config"
1811 " 0x08:stream 0x10:frame 0x20:packet 0x40:USBin 0x80:USBout"