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, 7)
46 static const char version[] = "2.1.7";
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");
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");
564 static void gspca_set_default_mode(struct gspca_dev *gspca_dev)
568 i = gspca_dev->cam.nmodes - 1; /* take the highest mode */
569 gspca_dev->curr_mode = i;
570 gspca_dev->width = gspca_dev->cam.cam_mode[i].width;
571 gspca_dev->height = gspca_dev->cam.cam_mode[i].height;
572 gspca_dev->pixfmt = gspca_dev->cam.cam_mode[i].pixelformat;
575 static int wxh_to_mode(struct gspca_dev *gspca_dev,
576 int width, int height)
580 for (i = gspca_dev->cam.nmodes; --i > 0; ) {
581 if (width >= gspca_dev->cam.cam_mode[i].width
582 && height >= gspca_dev->cam.cam_mode[i].height)
589 * search a mode with the right pixel format
591 static int gspca_get_mode(struct gspca_dev *gspca_dev,
597 modeU = modeD = mode;
598 while ((modeU < gspca_dev->cam.nmodes) || modeD >= 0) {
600 if (gspca_dev->cam.cam_mode[modeD].pixelformat
604 if (++modeU < gspca_dev->cam.nmodes) {
605 if (gspca_dev->cam.cam_mode[modeU].pixelformat
613 static int vidioc_enum_fmt_vid_cap(struct file *file, void *priv,
614 struct v4l2_fmtdesc *fmtdesc)
616 struct gspca_dev *gspca_dev = priv;
620 /* give an index to each format */
623 for (i = gspca_dev->cam.nmodes; --i >= 0; ) {
624 fmt_tb[index] = gspca_dev->cam.cam_mode[i].pixelformat;
627 if (fmt_tb[j] == fmt_tb[index])
632 if (fmtdesc->index == index)
633 break; /* new format */
635 if (index >= sizeof fmt_tb / sizeof fmt_tb[0])
640 return -EINVAL; /* no more format */
642 fmtdesc->pixelformat = fmt_tb[index];
643 if (gspca_is_compressed(fmt_tb[index]))
644 fmtdesc->flags = V4L2_FMT_FLAG_COMPRESSED;
645 fmtdesc->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
646 fmtdesc->description[0] = fmtdesc->pixelformat & 0xff;
647 fmtdesc->description[1] = (fmtdesc->pixelformat >> 8) & 0xff;
648 fmtdesc->description[2] = (fmtdesc->pixelformat >> 16) & 0xff;
649 fmtdesc->description[3] = fmtdesc->pixelformat >> 24;
650 fmtdesc->description[4] = '\0';
654 static int vidioc_g_fmt_vid_cap(struct file *file, void *priv,
655 struct v4l2_format *fmt)
657 struct gspca_dev *gspca_dev = priv;
660 if (fmt->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
662 mode = gspca_dev->curr_mode;
663 memcpy(&fmt->fmt.pix, &gspca_dev->cam.cam_mode[mode],
664 sizeof fmt->fmt.pix);
668 static int try_fmt_vid_cap(struct gspca_dev *gspca_dev,
669 struct v4l2_format *fmt)
671 int w, h, mode, mode2;
673 if (fmt->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
675 w = fmt->fmt.pix.width;
676 h = fmt->fmt.pix.height;
678 #ifdef CONFIG_VIDEO_ADV_DEBUG
679 if (gspca_debug & D_CONF)
680 PDEBUG_MODE("try fmt cap", fmt->fmt.pix.pixelformat, w, h);
682 /* search the closest mode for width and height */
683 mode = wxh_to_mode(gspca_dev, w, h);
685 /* OK if right palette */
686 if (gspca_dev->cam.cam_mode[mode].pixelformat
687 != fmt->fmt.pix.pixelformat) {
689 /* else, search the closest mode with the same pixel format */
690 mode2 = gspca_get_mode(gspca_dev, mode,
691 fmt->fmt.pix.pixelformat);
695 ; * no chance, return this mode */
697 memcpy(&fmt->fmt.pix, &gspca_dev->cam.cam_mode[mode],
698 sizeof fmt->fmt.pix);
699 return mode; /* used when s_fmt */
702 static int vidioc_try_fmt_vid_cap(struct file *file,
704 struct v4l2_format *fmt)
706 struct gspca_dev *gspca_dev = priv;
709 ret = try_fmt_vid_cap(gspca_dev, fmt);
715 static int vidioc_s_fmt_vid_cap(struct file *file, void *priv,
716 struct v4l2_format *fmt)
718 struct gspca_dev *gspca_dev = priv;
721 if (mutex_lock_interruptible(&gspca_dev->queue_lock))
724 ret = try_fmt_vid_cap(gspca_dev, fmt);
728 if (gspca_dev->nframes != 0
729 && fmt->fmt.pix.sizeimage > gspca_dev->frsz) {
734 if (ret == gspca_dev->curr_mode) {
736 goto out; /* same mode */
739 if (gspca_dev->streaming) {
743 gspca_dev->width = fmt->fmt.pix.width;
744 gspca_dev->height = fmt->fmt.pix.height;
745 gspca_dev->pixfmt = fmt->fmt.pix.pixelformat;
746 gspca_dev->curr_mode = ret;
750 mutex_unlock(&gspca_dev->queue_lock);
754 static int dev_open(struct inode *inode, struct file *file)
756 struct gspca_dev *gspca_dev;
759 PDEBUG(D_STREAM, "%s open", current->comm);
760 gspca_dev = (struct gspca_dev *) video_devdata(file);
761 if (mutex_lock_interruptible(&gspca_dev->queue_lock))
763 if (!gspca_dev->present) {
768 /* if not done yet, initialize the sensor */
769 if (gspca_dev->users == 0) {
770 if (mutex_lock_interruptible(&gspca_dev->usb_lock)) {
774 ret = gspca_dev->sd_desc->open(gspca_dev);
775 mutex_unlock(&gspca_dev->usb_lock);
777 PDEBUG(D_ERR|D_CONF, "init device failed %d", ret);
780 } else if (gspca_dev->users > 4) { /* (arbitrary value) */
785 file->private_data = gspca_dev;
786 #ifdef CONFIG_VIDEO_ADV_DEBUG
787 /* activate the v4l2 debug */
788 if (gspca_debug & D_V4L2)
789 gspca_dev->vdev.debug |= 3;
791 gspca_dev->vdev.debug &= ~3;
794 mutex_unlock(&gspca_dev->queue_lock);
796 PDEBUG(D_ERR|D_STREAM, "open failed err %d", ret);
798 PDEBUG(D_STREAM, "open done");
802 static int dev_close(struct inode *inode, struct file *file)
804 struct gspca_dev *gspca_dev = file->private_data;
806 PDEBUG(D_STREAM, "%s close", current->comm);
807 if (mutex_lock_interruptible(&gspca_dev->queue_lock))
811 /* if the file did the capture, free the streaming resources */
812 if (gspca_dev->capt_file == file) {
813 mutex_lock(&gspca_dev->usb_lock);
814 if (gspca_dev->streaming)
815 gspca_stream_off(gspca_dev);
816 gspca_dev->sd_desc->close(gspca_dev);
817 mutex_unlock(&gspca_dev->usb_lock);
818 frame_free(gspca_dev);
819 gspca_dev->capt_file = NULL;
820 gspca_dev->memory = GSPCA_MEMORY_NO;
822 file->private_data = NULL;
823 mutex_unlock(&gspca_dev->queue_lock);
824 PDEBUG(D_STREAM, "close done");
828 static int vidioc_querycap(struct file *file, void *priv,
829 struct v4l2_capability *cap)
831 struct gspca_dev *gspca_dev = priv;
833 memset(cap, 0, sizeof *cap);
834 strncpy(cap->driver, gspca_dev->sd_desc->name, sizeof cap->driver);
835 strncpy(cap->card, gspca_dev->cam.dev_name, sizeof cap->card);
836 strncpy(cap->bus_info, gspca_dev->dev->bus->bus_name,
837 sizeof cap->bus_info);
838 cap->version = DRIVER_VERSION_NUMBER;
839 cap->capabilities = V4L2_CAP_VIDEO_CAPTURE
841 | V4L2_CAP_READWRITE;
845 /* the use of V4L2_CTRL_FLAG_NEXT_CTRL asks for the controls to be sorted */
846 static int vidioc_queryctrl(struct file *file, void *priv,
847 struct v4l2_queryctrl *q_ctrl)
849 struct gspca_dev *gspca_dev = priv;
854 if (id & V4L2_CTRL_FLAG_NEXT_CTRL) {
855 id &= V4L2_CTRL_ID_MASK;
857 for (i = 0; i < gspca_dev->sd_desc->nctrls; i++) {
858 if (id >= gspca_dev->sd_desc->ctrls[i].qctrl.id) {
860 &gspca_dev->sd_desc->ctrls[i].qctrl,
867 for (i = 0; i < gspca_dev->sd_desc->nctrls; i++) {
868 if (id == gspca_dev->sd_desc->ctrls[i].qctrl.id) {
870 &gspca_dev->sd_desc->ctrls[i].qctrl,
875 if (id >= V4L2_CID_BASE
876 && id <= V4L2_CID_LASTP1) {
877 q_ctrl->flags |= V4L2_CTRL_FLAG_DISABLED;
883 static int vidioc_s_ctrl(struct file *file, void *priv,
884 struct v4l2_control *ctrl)
886 struct gspca_dev *gspca_dev = priv;
887 const struct ctrl *ctrls;
890 for (i = 0, ctrls = gspca_dev->sd_desc->ctrls;
891 i < gspca_dev->sd_desc->nctrls;
893 if (ctrl->id != ctrls->qctrl.id)
895 if (ctrl->value < ctrls->qctrl.minimum
896 && ctrl->value > ctrls->qctrl.maximum)
898 PDEBUG(D_CONF, "set ctrl [%08x] = %d", ctrl->id, ctrl->value);
899 if (mutex_lock_interruptible(&gspca_dev->usb_lock))
901 ret = ctrls->set(gspca_dev, ctrl->value);
902 mutex_unlock(&gspca_dev->usb_lock);
908 static int vidioc_g_ctrl(struct file *file, void *priv,
909 struct v4l2_control *ctrl)
911 struct gspca_dev *gspca_dev = priv;
913 const struct ctrl *ctrls;
916 for (i = 0, ctrls = gspca_dev->sd_desc->ctrls;
917 i < gspca_dev->sd_desc->nctrls;
919 if (ctrl->id != ctrls->qctrl.id)
921 if (mutex_lock_interruptible(&gspca_dev->usb_lock))
923 ret = ctrls->get(gspca_dev, &ctrl->value);
924 mutex_unlock(&gspca_dev->usb_lock);
930 static int vidioc_querymenu(struct file *file, void *priv,
931 struct v4l2_querymenu *qmenu)
933 struct gspca_dev *gspca_dev = priv;
935 if (!gspca_dev->sd_desc->querymenu)
937 return gspca_dev->sd_desc->querymenu(gspca_dev, qmenu);
940 static int vidioc_enum_input(struct file *file, void *priv,
941 struct v4l2_input *input)
943 struct gspca_dev *gspca_dev = priv;
945 if (input->index != 0)
947 memset(input, 0, sizeof *input);
948 input->type = V4L2_INPUT_TYPE_CAMERA;
949 strncpy(input->name, gspca_dev->sd_desc->name,
954 static int vidioc_g_input(struct file *file, void *priv, unsigned int *i)
960 static int vidioc_s_input(struct file *file, void *priv, unsigned int i)
967 static int vidioc_reqbufs(struct file *file, void *priv,
968 struct v4l2_requestbuffers *rb)
970 struct gspca_dev *gspca_dev = priv;
973 if (rb->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
975 switch (rb->memory) {
976 case GSPCA_MEMORY_READ: /* (internal call) */
977 case V4L2_MEMORY_MMAP:
978 case V4L2_MEMORY_USERPTR:
983 if (mutex_lock_interruptible(&gspca_dev->queue_lock))
986 if (gspca_dev->memory != GSPCA_MEMORY_NO
987 && gspca_dev->memory != rb->memory) {
992 /* only one file may do the capture */
993 if (gspca_dev->capt_file != NULL
994 && gspca_dev->capt_file != file) {
999 /* if allocated, the buffers must not be mapped */
1000 for (i = 0; i < gspca_dev->nframes; i++) {
1001 if (gspca_dev->frame[i].vma_use_count) {
1007 /* stop streaming */
1008 if (gspca_dev->streaming) {
1009 mutex_lock(&gspca_dev->usb_lock);
1010 gspca_stream_off(gspca_dev);
1011 mutex_unlock(&gspca_dev->usb_lock);
1014 /* free the previous allocated buffers, if any */
1015 if (gspca_dev->nframes != 0) {
1016 frame_free(gspca_dev);
1017 gspca_dev->capt_file = NULL;
1019 if (rb->count == 0) /* unrequest */
1021 gspca_dev->memory = rb->memory;
1022 ret = frame_alloc(gspca_dev, rb->count);
1024 rb->count = gspca_dev->nframes;
1025 gspca_dev->capt_file = file;
1028 mutex_unlock(&gspca_dev->queue_lock);
1029 PDEBUG(D_STREAM, "reqbufs st:%d c:%d", ret, rb->count);
1033 static int vidioc_querybuf(struct file *file, void *priv,
1034 struct v4l2_buffer *v4l2_buf)
1036 struct gspca_dev *gspca_dev = priv;
1037 struct gspca_frame *frame;
1039 if (v4l2_buf->type != V4L2_BUF_TYPE_VIDEO_CAPTURE
1040 || v4l2_buf->index < 0
1041 || v4l2_buf->index >= gspca_dev->nframes)
1044 frame = &gspca_dev->frame[v4l2_buf->index];
1045 memcpy(v4l2_buf, &frame->v4l2_buf, sizeof *v4l2_buf);
1049 static int vidioc_streamon(struct file *file, void *priv,
1050 enum v4l2_buf_type buf_type)
1052 struct gspca_dev *gspca_dev = priv;
1055 if (buf_type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1057 if (mutex_lock_interruptible(&gspca_dev->queue_lock))
1058 return -ERESTARTSYS;
1059 if (!gspca_dev->present) {
1063 if (gspca_dev->nframes == 0) {
1067 if (!gspca_dev->streaming) {
1068 ret = gspca_init_transfer(gspca_dev);
1072 #ifdef CONFIG_VIDEO_ADV_DEBUG
1073 if (gspca_debug & D_STREAM) {
1074 PDEBUG_MODE("stream on OK",
1082 mutex_unlock(&gspca_dev->queue_lock);
1086 static int vidioc_streamoff(struct file *file, void *priv,
1087 enum v4l2_buf_type buf_type)
1089 struct gspca_dev *gspca_dev = priv;
1092 if (buf_type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1094 if (!gspca_dev->streaming)
1096 if (mutex_lock_interruptible(&gspca_dev->queue_lock))
1097 return -ERESTARTSYS;
1099 /* stop streaming */
1100 if (mutex_lock_interruptible(&gspca_dev->usb_lock)) {
1104 gspca_stream_off(gspca_dev);
1105 mutex_unlock(&gspca_dev->usb_lock);
1107 /* empty the application queues */
1108 for (i = 0; i < gspca_dev->nframes; i++)
1109 gspca_dev->frame[i].v4l2_buf.flags &= ~BUF_ALL_FLAGS;
1110 gspca_dev->fr_i = gspca_dev->fr_o = gspca_dev->fr_q = 0;
1111 gspca_dev->last_packet_type = DISCARD_PACKET;
1112 gspca_dev->sequence = 0;
1113 atomic_set(&gspca_dev->nevent, 0);
1116 mutex_unlock(&gspca_dev->queue_lock);
1120 static int vidioc_g_jpegcomp(struct file *file, void *priv,
1121 struct v4l2_jpegcompression *jpegcomp)
1123 struct gspca_dev *gspca_dev = priv;
1126 if (!gspca_dev->sd_desc->get_jcomp)
1128 if (mutex_lock_interruptible(&gspca_dev->usb_lock))
1129 return -ERESTARTSYS;
1130 ret = gspca_dev->sd_desc->get_jcomp(gspca_dev, jpegcomp);
1131 mutex_unlock(&gspca_dev->usb_lock);
1135 static int vidioc_s_jpegcomp(struct file *file, void *priv,
1136 struct v4l2_jpegcompression *jpegcomp)
1138 struct gspca_dev *gspca_dev = priv;
1141 if (mutex_lock_interruptible(&gspca_dev->usb_lock))
1142 return -ERESTARTSYS;
1143 if (!gspca_dev->sd_desc->set_jcomp)
1145 ret = gspca_dev->sd_desc->set_jcomp(gspca_dev, jpegcomp);
1146 mutex_unlock(&gspca_dev->usb_lock);
1150 static int vidioc_g_parm(struct file *filp, void *priv,
1151 struct v4l2_streamparm *parm)
1153 struct gspca_dev *gspca_dev = priv;
1155 memset(parm, 0, sizeof *parm);
1156 parm->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1157 parm->parm.capture.readbuffers = gspca_dev->nbufread;
1161 static int vidioc_s_parm(struct file *filp, void *priv,
1162 struct v4l2_streamparm *parm)
1164 struct gspca_dev *gspca_dev = priv;
1167 n = parm->parm.capture.readbuffers;
1168 if (n == 0 || n > GSPCA_MAX_FRAMES)
1169 parm->parm.capture.readbuffers = gspca_dev->nbufread;
1171 gspca_dev->nbufread = n;
1175 static int vidioc_s_std(struct file *filp, void *priv,
1181 #ifdef CONFIG_VIDEO_V4L1_COMPAT
1182 static int vidiocgmbuf(struct file *file, void *priv,
1183 struct video_mbuf *mbuf)
1185 struct gspca_dev *gspca_dev = file->private_data;
1188 PDEBUG(D_STREAM, "cgmbuf");
1189 if (gspca_dev->nframes == 0) {
1193 struct v4l2_format fmt;
1195 memset(&fmt, 0, sizeof fmt);
1196 fmt.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1197 i = gspca_dev->cam.nmodes - 1; /* highest mode */
1198 fmt.fmt.pix.width = gspca_dev->cam.cam_mode[i].width;
1199 fmt.fmt.pix.height = gspca_dev->cam.cam_mode[i].height;
1200 fmt.fmt.pix.pixelformat = V4L2_PIX_FMT_BGR24;
1201 ret = vidioc_s_fmt_vid_cap(file, priv, &fmt);
1206 struct v4l2_requestbuffers rb;
1208 memset(&rb, 0, sizeof rb);
1210 rb.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1211 rb.memory = V4L2_MEMORY_MMAP;
1212 ret = vidioc_reqbufs(file, priv, &rb);
1217 mbuf->frames = gspca_dev->nframes;
1218 mbuf->size = gspca_dev->frsz * gspca_dev->nframes;
1219 for (i = 0; i < mbuf->frames; i++)
1220 mbuf->offsets[i] = gspca_dev->frame[i].v4l2_buf.m.offset;
1225 static int dev_mmap(struct file *file, struct vm_area_struct *vma)
1227 struct gspca_dev *gspca_dev = file->private_data;
1228 struct gspca_frame *frame;
1230 unsigned long addr, start, size;
1233 start = vma->vm_start;
1234 size = vma->vm_end - vma->vm_start;
1235 PDEBUG(D_STREAM, "mmap start:%08x size:%d", (int) start, (int) size);
1237 if (mutex_lock_interruptible(&gspca_dev->queue_lock))
1238 return -ERESTARTSYS;
1239 if (!gspca_dev->present) {
1243 if (gspca_dev->capt_file != file) {
1249 for (i = 0; i < gspca_dev->nframes; ++i) {
1250 if (gspca_dev->frame[i].v4l2_buf.memory != V4L2_MEMORY_MMAP) {
1251 PDEBUG(D_STREAM, "mmap bad memory type");
1254 if ((gspca_dev->frame[i].v4l2_buf.m.offset >> PAGE_SHIFT)
1256 frame = &gspca_dev->frame[i];
1260 if (frame == NULL) {
1261 PDEBUG(D_STREAM, "mmap no frame buffer found");
1265 #ifdef CONFIG_VIDEO_V4L1_COMPAT
1266 /* v4l1 maps all the buffers */
1268 || size != frame->v4l2_buf.length * gspca_dev->nframes)
1270 if (size != frame->v4l2_buf.length) {
1271 PDEBUG(D_STREAM, "mmap bad size");
1277 * - VM_IO marks the area as being a mmaped region for I/O to a
1278 * device. It also prevents the region from being core dumped.
1280 vma->vm_flags |= VM_IO;
1282 addr = (unsigned long) frame->data;
1284 page = vmalloc_to_page((void *) addr);
1285 ret = vm_insert_page(vma, start, page);
1293 vma->vm_ops = &gspca_vm_ops;
1294 vma->vm_private_data = frame;
1298 mutex_unlock(&gspca_dev->queue_lock);
1303 * wait for a video frame
1305 * If a frame is ready, its index is returned.
1307 static int frame_wait(struct gspca_dev *gspca_dev,
1310 struct gspca_frame *frame;
1313 /* check if a frame is ready */
1314 i = gspca_dev->fr_o;
1315 j = gspca_dev->fr_queue[i];
1316 frame = &gspca_dev->frame[j];
1317 if (frame->v4l2_buf.flags & V4L2_BUF_FLAG_DONE) {
1318 atomic_dec(&gspca_dev->nevent);
1321 if (nonblock_ing) /* no frame yet */
1324 /* wait till a frame is ready */
1326 ret = wait_event_interruptible_timeout(gspca_dev->wq,
1327 atomic_read(&gspca_dev->nevent) > 0,
1328 msecs_to_jiffies(3000));
1331 return ret; /* interrupt */
1332 return -EIO; /* timeout */
1334 atomic_dec(&gspca_dev->nevent);
1335 if (!gspca_dev->streaming || !gspca_dev->present)
1337 i = gspca_dev->fr_o;
1338 j = gspca_dev->fr_queue[i];
1339 frame = &gspca_dev->frame[j];
1340 if (frame->v4l2_buf.flags & V4L2_BUF_FLAG_DONE)
1344 gspca_dev->fr_o = (i + 1) % gspca_dev->nframes;
1345 PDEBUG(D_FRAM, "frame wait q:%d i:%d o:%d",
1350 if (gspca_dev->sd_desc->dq_callback) {
1351 mutex_lock(&gspca_dev->usb_lock);
1352 gspca_dev->sd_desc->dq_callback(gspca_dev);
1353 mutex_unlock(&gspca_dev->usb_lock);
1359 * dequeue a video buffer
1361 * If nonblock_ing is false, block until a buffer is available.
1363 static int vidioc_dqbuf(struct file *file, void *priv,
1364 struct v4l2_buffer *v4l2_buf)
1366 struct gspca_dev *gspca_dev = priv;
1367 struct gspca_frame *frame;
1370 PDEBUG(D_FRAM, "dqbuf");
1371 if (v4l2_buf->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1373 if (v4l2_buf->memory != gspca_dev->memory)
1376 /* if not streaming, be sure the application will not loop forever */
1377 if (!(file->f_flags & O_NONBLOCK)
1378 && !gspca_dev->streaming && gspca_dev->users == 1)
1381 /* only the capturing file may dequeue */
1382 if (gspca_dev->capt_file != file)
1385 /* only one dequeue / read at a time */
1386 if (mutex_lock_interruptible(&gspca_dev->read_lock))
1387 return -ERESTARTSYS;
1389 ret = frame_wait(gspca_dev, file->f_flags & O_NONBLOCK);
1392 i = ret; /* frame index */
1393 frame = &gspca_dev->frame[i];
1394 if (gspca_dev->memory == V4L2_MEMORY_USERPTR) {
1395 if (copy_to_user((__u8 *) frame->v4l2_buf.m.userptr,
1397 frame->v4l2_buf.bytesused)) {
1398 PDEBUG(D_ERR|D_STREAM,
1399 "dqbuf cp to user failed");
1404 frame->v4l2_buf.flags &= ~V4L2_BUF_FLAG_DONE;
1405 memcpy(v4l2_buf, &frame->v4l2_buf, sizeof *v4l2_buf);
1406 PDEBUG(D_FRAM, "dqbuf %d", i);
1409 mutex_unlock(&gspca_dev->read_lock);
1414 * queue a video buffer
1416 * Attempting to queue a buffer that has already been
1417 * queued will return -EINVAL.
1419 static int vidioc_qbuf(struct file *file, void *priv,
1420 struct v4l2_buffer *v4l2_buf)
1422 struct gspca_dev *gspca_dev = priv;
1423 struct gspca_frame *frame;
1426 PDEBUG(D_FRAM, "qbuf %d", v4l2_buf->index);
1427 if (v4l2_buf->type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1430 if (mutex_lock_interruptible(&gspca_dev->queue_lock))
1431 return -ERESTARTSYS;
1433 index = v4l2_buf->index;
1434 if ((unsigned) index >= gspca_dev->nframes) {
1436 "qbuf idx %d >= %d", index, gspca_dev->nframes);
1440 if (v4l2_buf->memory != gspca_dev->memory) {
1441 PDEBUG(D_FRAM, "qbuf bad memory type");
1446 frame = &gspca_dev->frame[index];
1447 if (frame->v4l2_buf.flags & BUF_ALL_FLAGS) {
1448 PDEBUG(D_FRAM, "qbuf bad state");
1453 frame->v4l2_buf.flags |= V4L2_BUF_FLAG_QUEUED;
1454 /* frame->v4l2_buf.flags &= ~V4L2_BUF_FLAG_DONE; */
1456 if (frame->v4l2_buf.memory == V4L2_MEMORY_USERPTR) {
1457 frame->v4l2_buf.m.userptr = v4l2_buf->m.userptr;
1458 frame->v4l2_buf.length = v4l2_buf->length;
1461 /* put the buffer in the 'queued' queue */
1462 i = gspca_dev->fr_q;
1463 gspca_dev->fr_queue[i] = index;
1464 gspca_dev->fr_q = (i + 1) % gspca_dev->nframes;
1465 PDEBUG(D_FRAM, "qbuf q:%d i:%d o:%d",
1470 v4l2_buf->flags |= V4L2_BUF_FLAG_QUEUED;
1471 v4l2_buf->flags &= ~V4L2_BUF_FLAG_DONE;
1474 mutex_unlock(&gspca_dev->queue_lock);
1479 * allocate the resources for read()
1481 static int read_alloc(struct gspca_dev *gspca_dev,
1484 struct v4l2_buffer v4l2_buf;
1487 PDEBUG(D_STREAM, "read alloc");
1488 if (gspca_dev->nframes == 0) {
1489 struct v4l2_requestbuffers rb;
1491 memset(&rb, 0, sizeof rb);
1492 rb.count = gspca_dev->nbufread;
1493 rb.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1494 rb.memory = GSPCA_MEMORY_READ;
1495 ret = vidioc_reqbufs(file, gspca_dev, &rb);
1497 PDEBUG(D_STREAM, "read reqbuf err %d", ret);
1500 memset(&v4l2_buf, 0, sizeof v4l2_buf);
1501 v4l2_buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1502 v4l2_buf.memory = GSPCA_MEMORY_READ;
1503 for (i = 0; i < gspca_dev->nbufread; i++) {
1505 ret = vidioc_qbuf(file, gspca_dev, &v4l2_buf);
1507 PDEBUG(D_STREAM, "read qbuf err: %d", ret);
1511 gspca_dev->memory = GSPCA_MEMORY_READ;
1514 /* start streaming */
1515 ret = vidioc_streamon(file, gspca_dev, V4L2_BUF_TYPE_VIDEO_CAPTURE);
1517 PDEBUG(D_STREAM, "read streamon err %d", ret);
1521 static unsigned int dev_poll(struct file *file, poll_table *wait)
1523 struct gspca_dev *gspca_dev = file->private_data;
1526 PDEBUG(D_FRAM, "poll");
1528 poll_wait(file, &gspca_dev->wq, wait);
1529 if (!gspca_dev->present)
1532 /* if reqbufs is not done, the user would use read() */
1533 if (gspca_dev->nframes == 0) {
1534 if (gspca_dev->memory != GSPCA_MEMORY_NO)
1535 return POLLERR; /* not the 1st time */
1536 ret = read_alloc(gspca_dev, file);
1541 if (mutex_lock_interruptible(&gspca_dev->queue_lock) != 0)
1543 if (!gspca_dev->present) {
1548 /* check the next incoming buffer */
1549 i = gspca_dev->fr_o;
1550 i = gspca_dev->fr_queue[i];
1551 if (gspca_dev->frame[i].v4l2_buf.flags & V4L2_BUF_FLAG_DONE)
1552 ret = POLLIN | POLLRDNORM; /* something to read */
1556 mutex_unlock(&gspca_dev->queue_lock);
1560 static ssize_t dev_read(struct file *file, char __user *data,
1561 size_t count, loff_t *ppos)
1563 struct gspca_dev *gspca_dev = file->private_data;
1564 struct gspca_frame *frame;
1565 struct v4l2_buffer v4l2_buf;
1566 struct timeval timestamp;
1569 PDEBUG(D_FRAM, "read (%zd)", count);
1570 if (!gspca_dev->present)
1572 switch (gspca_dev->memory) {
1573 case GSPCA_MEMORY_NO: /* first time */
1574 ret = read_alloc(gspca_dev, file);
1578 case GSPCA_MEMORY_READ:
1579 if (gspca_dev->capt_file == file)
1587 jiffies_to_timeval(get_jiffies_64(), ×tamp);
1591 memset(&v4l2_buf, 0, sizeof v4l2_buf);
1592 v4l2_buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1593 v4l2_buf.memory = GSPCA_MEMORY_READ;
1594 ret = vidioc_dqbuf(file, gspca_dev, &v4l2_buf);
1596 PDEBUG(D_STREAM, "read dqbuf err %d", ret);
1600 /* if the process slept for more than 1 second,
1601 * get anewer frame */
1602 frame = &gspca_dev->frame[v4l2_buf.index];
1604 break; /* avoid infinite loop */
1605 if (frame->v4l2_buf.timestamp.tv_sec >= timestamp.tv_sec)
1607 ret = vidioc_qbuf(file, gspca_dev, &v4l2_buf);
1609 PDEBUG(D_STREAM, "read qbuf err %d", ret);
1614 /* copy the frame */
1615 if (count > frame->v4l2_buf.bytesused)
1616 count = frame->v4l2_buf.bytesused;
1617 ret = copy_to_user(data, frame->data, count);
1619 PDEBUG(D_ERR|D_STREAM,
1620 "read cp to user lack %d / %zd", ret, count);
1626 /* in each case, requeue the buffer */
1627 ret2 = vidioc_qbuf(file, gspca_dev, &v4l2_buf);
1633 static void dev_release(struct video_device *vfd)
1638 static struct file_operations dev_fops = {
1639 .owner = THIS_MODULE,
1641 .release = dev_close,
1644 .ioctl = video_ioctl2,
1645 #ifdef CONFIG_COMPAT
1646 .compat_ioctl = v4l_compat_ioctl32,
1648 .llseek = no_llseek,
1652 static struct video_device gspca_template = {
1653 .name = "gspca main driver",
1654 .type = VID_TYPE_CAPTURE,
1656 .release = dev_release, /* mandatory */
1658 .vidioc_querycap = vidioc_querycap,
1659 .vidioc_dqbuf = vidioc_dqbuf,
1660 .vidioc_qbuf = vidioc_qbuf,
1661 .vidioc_enum_fmt_vid_cap = vidioc_enum_fmt_vid_cap,
1662 .vidioc_try_fmt_vid_cap = vidioc_try_fmt_vid_cap,
1663 .vidioc_g_fmt_vid_cap = vidioc_g_fmt_vid_cap,
1664 .vidioc_s_fmt_vid_cap = vidioc_s_fmt_vid_cap,
1665 .vidioc_streamon = vidioc_streamon,
1666 .vidioc_queryctrl = vidioc_queryctrl,
1667 .vidioc_g_ctrl = vidioc_g_ctrl,
1668 .vidioc_s_ctrl = vidioc_s_ctrl,
1669 .vidioc_querymenu = vidioc_querymenu,
1670 .vidioc_enum_input = vidioc_enum_input,
1671 .vidioc_g_input = vidioc_g_input,
1672 .vidioc_s_input = vidioc_s_input,
1673 .vidioc_reqbufs = vidioc_reqbufs,
1674 .vidioc_querybuf = vidioc_querybuf,
1675 .vidioc_streamoff = vidioc_streamoff,
1676 .vidioc_g_jpegcomp = vidioc_g_jpegcomp,
1677 .vidioc_s_jpegcomp = vidioc_s_jpegcomp,
1678 .vidioc_g_parm = vidioc_g_parm,
1679 .vidioc_s_parm = vidioc_s_parm,
1680 .vidioc_s_std = vidioc_s_std,
1681 #ifdef CONFIG_VIDEO_V4L1_COMPAT
1682 .vidiocgmbuf = vidiocgmbuf,
1687 * probe and create a new gspca device
1689 * This function must be called by the sub-driver when it is
1690 * called for probing a new device.
1692 int gspca_dev_probe(struct usb_interface *intf,
1693 const struct usb_device_id *id,
1694 const struct sd_desc *sd_desc,
1696 struct module *module)
1698 struct usb_interface_descriptor *interface;
1699 struct gspca_dev *gspca_dev;
1700 struct usb_device *dev = interface_to_usbdev(intf);
1703 PDEBUG(D_PROBE, "probing %04x:%04x", id->idVendor, id->idProduct);
1705 /* we don't handle multi-config cameras */
1706 if (dev->descriptor.bNumConfigurations != 1)
1708 interface = &intf->cur_altsetting->desc;
1709 if (interface->bInterfaceNumber > 0)
1712 /* create the device */
1713 if (dev_size < sizeof *gspca_dev)
1714 dev_size = sizeof *gspca_dev;
1715 gspca_dev = kzalloc(dev_size, GFP_KERNEL);
1716 if (gspca_dev == NULL) {
1717 err("couldn't kzalloc gspca struct");
1720 gspca_dev->dev = dev;
1721 gspca_dev->iface = interface->bInterfaceNumber;
1722 gspca_dev->nbalt = intf->num_altsetting;
1723 gspca_dev->sd_desc = sd_desc;
1724 /* gspca_dev->users = 0; (done by kzalloc) */
1725 gspca_dev->nbufread = 2;
1727 /* configure the subdriver */
1728 ret = gspca_dev->sd_desc->config(gspca_dev, id);
1731 ret = gspca_set_alt0(gspca_dev);
1734 gspca_set_default_mode(gspca_dev);
1736 mutex_init(&gspca_dev->usb_lock);
1737 mutex_init(&gspca_dev->read_lock);
1738 mutex_init(&gspca_dev->queue_lock);
1739 init_waitqueue_head(&gspca_dev->wq);
1741 /* init video stuff */
1742 memcpy(&gspca_dev->vdev, &gspca_template, sizeof gspca_template);
1743 gspca_dev->vdev.dev = &dev->dev;
1744 memcpy(&gspca_dev->fops, &dev_fops, sizeof gspca_dev->fops);
1745 gspca_dev->vdev.fops = &gspca_dev->fops;
1746 gspca_dev->fops.owner = module; /* module protection */
1747 ret = video_register_device(&gspca_dev->vdev,
1751 err("video_register_device err %d", ret);
1755 gspca_dev->present = 1;
1756 usb_set_intfdata(intf, gspca_dev);
1757 PDEBUG(D_PROBE, "probe ok");
1763 EXPORT_SYMBOL(gspca_dev_probe);
1768 * This function must be called by the sub-driver
1769 * when the device disconnects, after the specific resources are freed.
1771 void gspca_disconnect(struct usb_interface *intf)
1773 struct gspca_dev *gspca_dev = usb_get_intfdata(intf);
1777 gspca_dev->present = 0;
1778 mutex_lock(&gspca_dev->queue_lock);
1779 mutex_lock(&gspca_dev->usb_lock);
1780 gspca_dev->streaming = 0;
1781 destroy_urbs(gspca_dev);
1782 mutex_unlock(&gspca_dev->usb_lock);
1783 mutex_unlock(&gspca_dev->queue_lock);
1784 while (gspca_dev->users != 0) { /* wait until fully closed */
1785 atomic_inc(&gspca_dev->nevent);
1786 wake_up_interruptible(&gspca_dev->wq); /* wake processes */
1789 /* We don't want people trying to open up the device */
1790 video_unregister_device(&gspca_dev->vdev);
1791 /* Free the memory */
1793 PDEBUG(D_PROBE, "disconnect complete");
1795 EXPORT_SYMBOL(gspca_disconnect);
1797 /* -- cam driver utility functions -- */
1799 /* auto gain and exposure algorithm based on the knee algorithm described here:
1800 http://ytse.tricolour.net/docs/LowLightOptimization.html
1802 Returns 0 if no changes were made, 1 if the gain and or exposure settings
1804 int gspca_auto_gain_n_exposure(struct gspca_dev *gspca_dev, int avg_lum,
1805 int desired_avg_lum, int deadzone, int gain_knee, int exposure_knee)
1807 int i, steps, gain, orig_gain, exposure, orig_exposure, autogain;
1808 const struct ctrl *gain_ctrl = NULL;
1809 const struct ctrl *exposure_ctrl = NULL;
1810 const struct ctrl *autogain_ctrl = NULL;
1813 for (i = 0; i < gspca_dev->sd_desc->nctrls; i++) {
1814 if (gspca_dev->sd_desc->ctrls[i].qctrl.id == V4L2_CID_GAIN)
1815 gain_ctrl = &gspca_dev->sd_desc->ctrls[i];
1816 if (gspca_dev->sd_desc->ctrls[i].qctrl.id == V4L2_CID_EXPOSURE)
1817 exposure_ctrl = &gspca_dev->sd_desc->ctrls[i];
1818 if (gspca_dev->sd_desc->ctrls[i].qctrl.id == V4L2_CID_AUTOGAIN)
1819 autogain_ctrl = &gspca_dev->sd_desc->ctrls[i];
1821 if (!gain_ctrl || !exposure_ctrl || !autogain_ctrl) {
1822 PDEBUG(D_ERR, "Error: gspca_auto_gain_n_exposure called "
1823 "on cam without (auto)gain/exposure");
1827 if (gain_ctrl->get(gspca_dev, &gain) ||
1828 exposure_ctrl->get(gspca_dev, &exposure) ||
1829 autogain_ctrl->get(gspca_dev, &autogain) || !autogain)
1833 orig_exposure = exposure;
1835 /* If we are of a multiple of deadzone, do multiple steps to reach the
1836 desired lumination fast (with the risc of a slight overshoot) */
1837 steps = abs(desired_avg_lum - avg_lum) / deadzone;
1839 PDEBUG(D_FRAM, "autogain: lum: %d, desired: %d, steps: %d\n",
1840 avg_lum, desired_avg_lum, steps);
1842 for (i = 0; i < steps; i++) {
1843 if (avg_lum > desired_avg_lum) {
1844 if (gain > gain_knee)
1846 else if (exposure > exposure_knee)
1848 else if (gain > gain_ctrl->qctrl.default_value)
1850 else if (exposure > exposure_ctrl->qctrl.minimum)
1852 else if (gain > gain_ctrl->qctrl.minimum)
1857 if (gain < gain_ctrl->qctrl.default_value)
1859 else if (exposure < exposure_knee)
1861 else if (gain < gain_knee)
1863 else if (exposure < exposure_ctrl->qctrl.maximum)
1865 else if (gain < gain_ctrl->qctrl.maximum)
1872 if (gain != orig_gain) {
1873 gain_ctrl->set(gspca_dev, gain);
1876 if (exposure != orig_exposure) {
1877 exposure_ctrl->set(gspca_dev, exposure);
1883 EXPORT_SYMBOL(gspca_auto_gain_n_exposure);
1885 /* -- module insert / remove -- */
1886 static int __init gspca_init(void)
1888 info("main v%s registered", version);
1891 static void __exit gspca_exit(void)
1893 info("main deregistered");
1896 module_init(gspca_init);
1897 module_exit(gspca_exit);
1899 #ifdef CONFIG_VIDEO_ADV_DEBUG
1900 module_param_named(debug, gspca_debug, int, 0644);
1901 MODULE_PARM_DESC(debug,
1902 "Debug (bit) 0x01:error 0x02:probe 0x04:config"
1903 " 0x08:stream 0x10:frame 0x20:packet 0x40:USBin 0x80:USBout"